diff --git a/app/Helpers/CacheControl.php b/app/Helpers/CacheControl.php new file mode 100644 index 0000000..67cd7e1 --- /dev/null +++ b/app/Helpers/CacheControl.php @@ -0,0 +1,42 @@ +page) ? (int) [$request->page] : 1; + $queryParams = $request->query(); + ksort($queryParams); + $queryString = http_build_query($queryParams); + $roleCacheKey = CacheKey::getRoleCacheKey(); + $key = $roleCacheKey . md5(serialize([$queryString])); - if (! empty($request->search)) { - $q = $request->search; - $roles = Role::with(['permissions' => function ($query) { - $query->select('id', 'name'); - }])->where('name', 'LIKE', '%'.$q.'%')->orderBy('id', 'desc')->paginate(10); - - return Inertia::render('Dashboard/Role/Index', ['roles' => $roles]); - } - - $key = CacheKey::getRoleCacheKey(); - $cacheKey = $key.md5(serialize([$currentPage])); - - $roles = CacheControl::init($key)->remember($cacheKey, 10, function () { + $roles = Cache::remember($key, now()->addDay(), function () use ($request) { return Role::with(['permissions' => function ($query) { $query->select('id', 'name'); - }])->orderBy('id', 'desc')->paginate(10); + }]) + ->when($request->has('search'), function ($query) use ($request) { + $query->where('name', 'LIKE', '%' . $request->input('search') . '%'); + }) + ->orderBy($request->input('orderBy', 'id'), $request->input('order', 'desc')) + ->paginate(10) + ->withQueryString(); }); - Session::put('last_visited_url', $request->fullUrl()); + CacheControl::updateCacheKeys($roleCacheKey, $key); return Inertia::render('Dashboard/Role/Index')->with(['roles' => RoleResource::collection($roles)]); } @@ -64,7 +63,6 @@ public function index(Request $request) /** * Show the form for creating a new resource. * - * @return \Illuminate\Http\Response */ public function create() { @@ -89,7 +87,6 @@ public function create() * Store a newly created resource in storage. * * @param \Illuminate\Http\Request $request - * @return \Illuminate\Http\Response */ public function store(RoleStoreRequest $request) { @@ -120,7 +117,6 @@ public function show(Role $role) * Show the form for editing the specified resource. * * @param int $id - * @return \Illuminate\Http\Response */ public function edit(Role $role) { @@ -152,7 +148,6 @@ public function edit(Role $role) * * @param \Illuminate\Http\Request $request * @param int $id - * @return \Illuminate\Http\Response */ public function update(RoleUpdateRequest $request, Role $role) { @@ -177,7 +172,6 @@ public function update(RoleUpdateRequest $request, Role $role) * Remove the specified resource from storage. * * @param int $id - * @return \Illuminate\Http\Response */ public function destroy(Role $role) { diff --git a/app/Http/Controllers/User/UserController.php b/app/Http/Controllers/User/UserController.php index 819f05e..41ea39c 100644 --- a/app/Http/Controllers/User/UserController.php +++ b/app/Http/Controllers/User/UserController.php @@ -2,9 +2,9 @@ namespace App\Http\Controllers\User; -use AnisAronno\LaravelCacheMaster\CacheControl; use AnisAronno\MediaHelper\Facades\Media; use App\Enums\UserStatus; +use App\Helpers\CacheControl; use App\Helpers\CacheKey; use App\Http\Controllers\InertiaApplicationController; use App\Http\Requests\User\UserStoreRequest; @@ -13,6 +13,7 @@ use App\Models\Role; use App\Models\User; use Illuminate\Http\Request; +use Illuminate\Support\Facades\Cache; use Illuminate\Support\Facades\Redirect; use Illuminate\Support\Facades\Session; use Inertia\Inertia; @@ -33,34 +34,44 @@ public function __construct() /** * Display a listing of the resource. * - */ + * @param Request $request + */ public function index(Request $request) { - $currentPage = isset($request->page) ? (int) [$request->page] : 1; - - - if (! empty($request->search)) { - $q = $request->search; - $users = User::with(['roles'])->where('name', 'LIKE', '%'.$q.'%')->orWhere('email', 'LIKE', '%'.$q.'%')->orderBy('id', 'desc')->paginate(10); - - return Inertia::render('Dashboard/User/Index', ['users' => $users]); - } - $key = CacheKey::getUserCacheKey(); - $cacheKey = $key.md5(serialize([$currentPage])); - - $users = CacheControl::init($key)->remember($cacheKey, 10, function () { - return User::with(['roles'])->orderBy('id', 'desc')->paginate(10); + $queryParams = $request->query(); + ksort($queryParams); + $queryString = http_build_query($queryParams); + $userCacheKey = CacheKey::getUserCacheKey(); + $key = $userCacheKey . md5(serialize([$queryString])); + + $users = Cache::remember($key, now()->addDay(), function () use ($request) { + return User::with(['roles']) + ->when($request->has('search'), function ($query) use ($request) { + $query->where(function ($subQuery) use ($request) { + $subQuery->where('name', 'LIKE', '%' . $request->input('search') . '%') + ->orWhere('email', 'LIKE', '%' . $request->input('search') . '%'); + }); + }) + ->when($request->has('startDate') && $request->has('endDate'), function ($query) use ($request) { + $query->whereBetween('created_at', [ + new \DateTime($request->input('startDate')), + new \DateTime($request->input('endDate')) + ]); + }) + ->orderBy($request->input('orderBy', 'id'), $request->input('order', 'desc')) + ->paginate(10) + ->withQueryString(); }); - Session::put('last_visited_url', $request->fullUrl()); + CacheControl::updateCacheKeys($userCacheKey, $key); return Inertia::render('Dashboard/User/Index')->with(['users' => UserResources::collection($users)]); } + /** * Show the form for creating a new resource. * - * @return \Illuminate\Http\Response */ public function create() { @@ -74,7 +85,6 @@ public function create() * Store a newly created resource in storage. * * @param \Illuminate\Http\Request $request - * @return \Illuminate\Http\Response */ public function store(UserStoreRequest $request) { @@ -110,7 +120,6 @@ public function show(User $user) * Show the form for editing the specified resource. * * @param int $id - * @return \Illuminate\Http\Response */ public function edit(User $user) { @@ -132,7 +141,6 @@ public function edit(User $user) * * @param \Illuminate\Http\Request $request * @param int $id - * @return \Illuminate\Http\Response */ public function update(UserUpdateRequest $request, User $user) { @@ -164,7 +172,6 @@ public function update(UserUpdateRequest $request, User $user) * Remove the specified resource from storage. * * @param int $id - * @return \Illuminate\Http\Response */ public function destroy(User $user) { @@ -185,7 +192,6 @@ public function destroy(User $user) * Summary of avatarUpdate * * @param User $user - * @return \Illuminate\Http\RedirectResponse */ public function avatarUpdate(Request $request, User $user) { @@ -206,7 +212,6 @@ public function avatarUpdate(Request $request, User $user) * Remove the specified user avatar. * * @param int $id - * @return \Illuminate\Http\Response */ public function avatarDelete(User $user) { diff --git a/app/Observers/OptionObserver.php b/app/Observers/OptionObserver.php index 79936f3..90f09f3 100644 --- a/app/Observers/OptionObserver.php +++ b/app/Observers/OptionObserver.php @@ -2,7 +2,7 @@ namespace App\Observers; -use AnisAronno\LaravelCacheMaster\CacheControl; +use App\Helpers\CacheControl; use App\Helpers\CacheKey; use App\Models\Option; @@ -23,7 +23,7 @@ public function __construct() */ public function created(Option $option) { - CacheControl::forgetCache($this->optionsCacheKey); + CacheControl::clearCache($this->optionsCacheKey); } /** @@ -34,7 +34,7 @@ public function created(Option $option) */ public function updated(Option $option) { - CacheControl::forgetCache($this->optionsCacheKey); + CacheControl::clearCache($this->optionsCacheKey); } /** @@ -45,7 +45,7 @@ public function updated(Option $option) */ public function deleted(Option $option) { - CacheControl::forgetCache($this->optionsCacheKey); + CacheControl::clearCache($this->optionsCacheKey); } /** @@ -56,7 +56,7 @@ public function deleted(Option $option) */ public function restored(Option $option) { - CacheControl::forgetCache($this->optionsCacheKey); + CacheControl::clearCache($this->optionsCacheKey); } /** @@ -67,7 +67,7 @@ public function restored(Option $option) */ public function forceDeleted(Option $option) { - CacheControl::forgetCache($this->optionsCacheKey); + CacheControl::clearCache($this->optionsCacheKey); } } diff --git a/app/Observers/RoleObserver.php b/app/Observers/RoleObserver.php index 9a2dc8b..4204c31 100644 --- a/app/Observers/RoleObserver.php +++ b/app/Observers/RoleObserver.php @@ -2,7 +2,7 @@ namespace App\Observers; -use AnisAronno\LaravelCacheMaster\CacheControl; +use App\Helpers\CacheControl; use App\Helpers\CacheKey; use Spatie\Permission\Contracts\Role; @@ -26,8 +26,8 @@ public function __construct() */ public function created(Role $role) { - CacheControl::forgetCache($this->roleCacheKey); - CacheControl::forgetCache($this->userCacheKey); + CacheControl::clearCache($this->roleCacheKey); + CacheControl::clearCache($this->userCacheKey); } /** @@ -38,8 +38,8 @@ public function created(Role $role) */ public function updated(Role $role) { - CacheControl::forgetCache($this->roleCacheKey); - CacheControl::forgetCache($this->userCacheKey); + CacheControl::clearCache($this->roleCacheKey); + CacheControl::clearCache($this->userCacheKey); } /** @@ -50,8 +50,8 @@ public function updated(Role $role) */ public function deleted(Role $role) { - CacheControl::forgetCache($this->roleCacheKey); - CacheControl::forgetCache($this->userCacheKey); + CacheControl::clearCache($this->roleCacheKey); + CacheControl::clearCache($this->userCacheKey); } /** @@ -62,8 +62,8 @@ public function deleted(Role $role) */ public function restored(Role $role) { - CacheControl::forgetCache($this->roleCacheKey); - CacheControl::forgetCache($this->userCacheKey); + CacheControl::clearCache($this->roleCacheKey); + CacheControl::clearCache($this->userCacheKey); } /** @@ -74,7 +74,7 @@ public function restored(Role $role) */ public function forceDeleted(Role $role) { - CacheControl::forgetCache($this->roleCacheKey); - CacheControl::forgetCache($this->userCacheKey); + CacheControl::clearCache($this->roleCacheKey); + CacheControl::clearCache($this->userCacheKey); } } diff --git a/app/Observers/User/UserObserver.php b/app/Observers/User/UserObserver.php index 6e9eb43..c853018 100644 --- a/app/Observers/User/UserObserver.php +++ b/app/Observers/User/UserObserver.php @@ -2,8 +2,8 @@ namespace App\Observers\User; -use AnisAronno\LaravelCacheMaster\CacheControl; use AnisAronno\MediaHelper\Facades\Media; +use App\Helpers\CacheControl; use App\Helpers\CacheKey; use App\Models\User; @@ -24,7 +24,7 @@ public function __construct() */ public function created(User $user) { - CacheControl::forgetCache($this->key); + CacheControl::clearCache($this->key); } /** @@ -35,7 +35,7 @@ public function created(User $user) */ public function updated(User $user) { - CacheControl::forgetCache($this->key); + CacheControl::clearCache($this->key); } /** @@ -46,7 +46,7 @@ public function updated(User $user) */ public function deleted(User $user) { - CacheControl::forgetCache($this->key); + CacheControl::clearCache($this->key); Media::delete($user->avatar); } @@ -59,7 +59,7 @@ public function deleted(User $user) */ public function restored(User $user) { - CacheControl::forgetCache($this->key); + CacheControl::clearCache($this->key); } /** @@ -70,7 +70,7 @@ public function restored(User $user) */ public function forceDeleted(User $user) { - CacheControl::forgetCache($this->key); + CacheControl::clearCache($this->key); Media::delete($user->avatar); } diff --git a/app/Traits/OptionTransform.php b/app/Traits/OptionTransform.php index 54982df..e456c6d 100644 --- a/app/Traits/OptionTransform.php +++ b/app/Traits/OptionTransform.php @@ -2,68 +2,60 @@ namespace App\Traits; -use AnisAronno\LaravelCacheMaster\CacheControl; use App\Enums\SettingsFields; +use App\Helpers\CacheControl; use App\Helpers\CacheKey; +use Illuminate\Support\Facades\Cache; use Illuminate\Support\Facades\Artisan; trait OptionTransform { public static function getOption(string $key) { - $key = CacheKey::getOptionsCacheKey(); - $cacheKey = $key.md5(serialize(['getOption'])); + $baseCacheKey = CacheKey::getOptionsCacheKey(); + $cacheKey = $baseCacheKey . md5(serialize(['getOption', $key])); - try { - $option = CacheControl::init($key)->remember($cacheKey, now()->addDay(), function () use ($key) { - return self::where('option_key', $key)->first(); - - }); - logger()->debug($option['option_value']); - return $option['option_value']; - - } catch (\Throwable $th) { - return false; - } + $option = Cache::remember($cacheKey, now()->addDay(), function () use ($key) { + $option = self::where('option_key', $key)->first(); + return $option ? $option['option_value'] : null; + }); + CacheControl::updateCacheKeys($baseCacheKey, $cacheKey); + return $option; } public static function getAllOptions() { - $key = CacheKey::getOptionsCacheKey(); - $cacheKey = $key.md5(serialize(['getAllOptions'])); - - try { - $options = CacheControl::init($key)->remember($cacheKey, 10, function () { - $response = self::select('option_value', 'option_key')->orderBy('option_key', 'asc')->get()->flatMap(function ($name) { - return [$name->option_key => $name->option_value]; - }); - - return $response; - }); - - if ($options) { - return $options; - } else { - return []; - } - } catch (\Throwable $th) { - return []; - } + $baseCacheKey = CacheKey::getOptionsCacheKey(); + $cacheKey = $baseCacheKey . md5(serialize(['getAllOptions'])); + + $options = Cache::remember($cacheKey, now()->addDay(), function () { + return self::select('option_value', 'option_key') + ->orderBy('option_key', 'asc') + ->get() + ->pluck('option_value', 'option_key') + ->toArray(); + }); + + CacheControl::updateCacheKeys($baseCacheKey, $cacheKey); + return $options; } public static function updateOption(string $key, $value = '') { try { $option = self::where('option_key', $key)->first(); - $option->option_value = $value; + if ($option) { + $option->option_value = $value; + $result = $option->save(); + } if ($key == 'language') { Artisan::call('cache:clear'); Artisan::call('config:clear'); } - return $option->save(); + return $result ?? false; } catch (\Throwable $th) { return false; } @@ -71,10 +63,8 @@ public static function updateOption(string $key, $value = '') public static function setOption(string $key, $value = '') { - $data = ['option_key' => $key, 'option_value' => $value]; - try { - return self::create($data); + return self::create(['option_key' => $key, 'option_value' => $value]); } catch (\Throwable $th) { return false; } @@ -82,27 +72,21 @@ public static function setOption(string $key, $value = '') public static function getSettings() { - $settingFields = SettingsFields::values(); - - $key = CacheKey::getOptionsCacheKey(); - $cacheKey = $key.md5(serialize(['getSettings'])); - - try { - $options = CacheControl::init($key)->remember($cacheKey, now()->addDay(), function () use ($settingFields) { - $response = self::select('option_value', 'option_key')->whereIn('option_key', $settingFields)->orderBy('option_key', 'asc')->get()->flatMap(function ($name) { - return [$name->option_key => $name->option_value]; - }); - - return $response; - }); - - if ($options) { - return $options; - } else { - return []; - } - } catch (\Throwable $th) { - return []; - } - } + $baseCacheKey = CacheKey::getOptionsCacheKey(); + $cacheKey = $baseCacheKey . md5(serialize(['getSettings'])); + + $settings = Cache::remember($cacheKey, now()->addDay(), function () { + $settingFields = SettingsFields::values(); + + return self::select('option_value', 'option_key') + ->whereIn('option_key', $settingFields) + ->orderBy('option_key', 'asc') + ->get() + ->pluck('option_value', 'option_key') + ->toArray(); + }); + + CacheControl::updateCacheKeys($baseCacheKey, $cacheKey); + return $settings; + } } diff --git a/composer.json b/composer.json index dfbf4f4..de12b53 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "anisaronno/multipurpose-admin-panel-boilerplate", "type": "project", "description": "Application with laravel-10, vue-3, vite -4 , inertia 1, typescript, tailwind-3", - "version": "0.1.7", + "version": "0.2.0", "keywords": [ "laravel", "vuejs", @@ -20,7 +20,6 @@ "license": "MIT", "require": { "php": "^8.1.0", - "anisaronno/laravel-cache-control": "^0.0.1", "anisaronno/laravel-media-helper": "^0.1.0", "guzzlehttp/guzzle": "^7.2", "inertiajs/inertia-laravel": "^0.6.3", diff --git a/composer.lock b/composer.lock index 916de4d..761a59b 100644 --- a/composer.lock +++ b/composer.lock @@ -4,72 +4,8 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "a251049be8422ee18fce0c0ddbe70b63", + "content-hash": "0363abf7aa258281ef13812a2d998c3f", "packages": [ - { - "name": "anisaronno/laravel-cache-control", - "version": "0.0.1", - "source": { - "type": "git", - "url": "https://github.com/anisAronno/laravel-cache-control.git", - "reference": "80536c6fedb18da8f22d2f24c9162a5708a662a4" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/anisAronno/laravel-cache-control/zipball/80536c6fedb18da8f22d2f24c9162a5708a662a4", - "reference": "80536c6fedb18da8f22d2f24c9162a5708a662a4", - "shasum": "" - }, - "require": { - "laravel/framework": "^8.0|^9.0|^10.0", - "php": "^7.4|^8.0" - }, - "require-dev": { - "mockery/mockery": "^1.4", - "orchestra/testbench": "^8.0", - "pestphp/pest": "^1.21", - "phpunit/phpunit": "^9.0" - }, - "type": "library", - "extra": { - "laravel": { - "providers": [ - "AnisAronno\\LaravelCacheMaster\\CacheMasterServiceProvider" - ] - } - }, - "autoload": { - "psr-4": { - "AnisAronno\\LaravelCacheMaster\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "MD. Anichur Rahaman", - "email": "contact@anichur.com", - "homepage": "https://anichur.com", - "role": "Developer" - } - ], - "description": "A Laravel package for efficient caching control and management.", - "homepage": "https://github.com/anisAronno/laravel-cache-control", - "keywords": [ - "cache", - "laravel", - "laravel-cache", - "redis", - "wedevs" - ], - "support": { - "issues": "https://github.com/anisAronno/laravel-cache-control/issues", - "source": "https://github.com/anisAronno/laravel-cache-control/tree/v0.0.1" - }, - "time": "2023-10-13T04:38:27+00:00" - }, { "name": "anisaronno/laravel-media-helper", "version": "0.1.0", @@ -9637,5 +9573,5 @@ "php": "^8.1.0" }, "platform-dev": [], - "plugin-api-version": "2.3.0" + "plugin-api-version": "2.6.0" } diff --git a/package-lock.json b/package-lock.json index 3990f50..3faf3ae 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4,6 +4,7 @@ "requires": true, "packages": { "": { + "name": "multipurpose-admin-panel-boilerplate", "dependencies": { "@fortawesome/fontawesome-svg-core": "^6.2.1", "@fortawesome/free-brands-svg-icons": "^6.2.1", @@ -42,10 +43,74 @@ "node": ">=6.0.0" } }, + "node_modules/@esbuild/android-arm": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz", + "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", + "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz", + "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", + "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, "node_modules/@esbuild/darwin-x64": { - "version": "0.16.12", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.16.12.tgz", - "integrity": "sha512-ApGRA6X5txIcxV0095X4e4KKv87HAEXfuDRcGTniDWUUN+qPia8sl/BqG/0IomytQWajnUn4C7TOwHduk/FXBQ==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", + "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", "cpu": [ "x64" ], @@ -58,6 +123,278 @@ "node": ">=12" } }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", + "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", + "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", + "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", + "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", + "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", + "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", + "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", + "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", + "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", + "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", + "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", + "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", + "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", + "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", + "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", + "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", + "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, "node_modules/@fortawesome/fontawesome-common-types": { "version": "6.2.1", "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-6.2.1.tgz", @@ -512,11 +849,11 @@ } }, "node_modules/axios": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.3.4.tgz", - "integrity": "sha512-toYm+Bsyl6VC5wSkfkbbNB6ROv7KY93PEBBL6xyDczaIHasAiv4wPqQ/c4RjoQzipxRD2W5g21cOqQulZ7rHwQ==", + "version": "1.6.7", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.7.tgz", + "integrity": "sha512-/hDJGff6/c7u0hDkvkGxR/oy6CbCs8ziCsC7SqmhjfozqiJGc8Z11wrv9z9lYfY4K8l+H9TpjcMDX0xOZmx+RA==", "dependencies": { - "follow-redirects": "^1.15.0", + "follow-redirects": "^1.15.4", "form-data": "^4.0.0", "proxy-from-env": "^1.1.0" } @@ -730,9 +1067,9 @@ "dev": true }, "node_modules/esbuild": { - "version": "0.16.12", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.16.12.tgz", - "integrity": "sha512-eq5KcuXajf2OmivCl4e89AD3j8fbV+UTE9vczEzq5haA07U9oOTzBWlh3+6ZdjJR7Rz2QfWZ2uxZyhZxBgJ4+g==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", + "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", "dev": true, "hasInstallScript": true, "bin": { @@ -742,28 +1079,28 @@ "node": ">=12" }, "optionalDependencies": { - "@esbuild/android-arm": "0.16.12", - "@esbuild/android-arm64": "0.16.12", - "@esbuild/android-x64": "0.16.12", - "@esbuild/darwin-arm64": "0.16.12", - "@esbuild/darwin-x64": "0.16.12", - "@esbuild/freebsd-arm64": "0.16.12", - "@esbuild/freebsd-x64": "0.16.12", - "@esbuild/linux-arm": "0.16.12", - "@esbuild/linux-arm64": "0.16.12", - "@esbuild/linux-ia32": "0.16.12", - "@esbuild/linux-loong64": "0.16.12", - "@esbuild/linux-mips64el": "0.16.12", - "@esbuild/linux-ppc64": "0.16.12", - "@esbuild/linux-riscv64": "0.16.12", - "@esbuild/linux-s390x": "0.16.12", - "@esbuild/linux-x64": "0.16.12", - "@esbuild/netbsd-x64": "0.16.12", - "@esbuild/openbsd-x64": "0.16.12", - "@esbuild/sunos-x64": "0.16.12", - "@esbuild/win32-arm64": "0.16.12", - "@esbuild/win32-ia32": "0.16.12", - "@esbuild/win32-x64": "0.16.12" + "@esbuild/android-arm": "0.18.20", + "@esbuild/android-arm64": "0.18.20", + "@esbuild/android-x64": "0.18.20", + "@esbuild/darwin-arm64": "0.18.20", + "@esbuild/darwin-x64": "0.18.20", + "@esbuild/freebsd-arm64": "0.18.20", + "@esbuild/freebsd-x64": "0.18.20", + "@esbuild/linux-arm": "0.18.20", + "@esbuild/linux-arm64": "0.18.20", + "@esbuild/linux-ia32": "0.18.20", + "@esbuild/linux-loong64": "0.18.20", + "@esbuild/linux-mips64el": "0.18.20", + "@esbuild/linux-ppc64": "0.18.20", + "@esbuild/linux-riscv64": "0.18.20", + "@esbuild/linux-s390x": "0.18.20", + "@esbuild/linux-x64": "0.18.20", + "@esbuild/netbsd-x64": "0.18.20", + "@esbuild/openbsd-x64": "0.18.20", + "@esbuild/sunos-x64": "0.18.20", + "@esbuild/win32-arm64": "0.18.20", + "@esbuild/win32-ia32": "0.18.20", + "@esbuild/win32-x64": "0.18.20" } }, "node_modules/escalade": { @@ -826,9 +1163,9 @@ } }, "node_modules/follow-redirects": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", - "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "version": "1.15.5", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.5.tgz", + "integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==", "funding": [ { "type": "individual", @@ -1088,9 +1425,15 @@ } }, "node_modules/nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "bin": { "nanoid": "bin/nanoid.cjs" }, @@ -1172,9 +1515,9 @@ } }, "node_modules/postcss": { - "version": "8.4.20", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.20.tgz", - "integrity": "sha512-6Q04AXR1212bXr5fh03u8aAwbLxAQNGQ/Q1LNa0VfOI06ZAlhPHtQvE4OIdpj4kLThXilalPnmDSOD65DcHt+g==", + "version": "8.4.33", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.33.tgz", + "integrity": "sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==", "funding": [ { "type": "opencollective", @@ -1183,10 +1526,14 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ], "dependencies": { - "nanoid": "^3.3.4", + "nanoid": "^3.3.7", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" }, @@ -1385,9 +1732,9 @@ } }, "node_modules/rollup": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.9.0.tgz", - "integrity": "sha512-nGGylpmblyjTpF4lEUPgmOw6OVxRvnI6Iuuh6Lz4O/X66cVOX1XJSsqP1YamxQ+mPuFE7qJxLFDSCk8rNv5dDw==", + "version": "3.29.4", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.4.tgz", + "integrity": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==", "dev": true, "bin": { "rollup": "dist/bin/rollup" @@ -1551,15 +1898,14 @@ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" }, "node_modules/vite": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/vite/-/vite-4.0.3.tgz", - "integrity": "sha512-HvuNv1RdE7deIfQb8mPk51UKjqptO/4RXZ5yXSAvurd5xOckwS/gg8h9Tky3uSbnjYTgUm0hVCet1cyhKd73ZA==", + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/vite/-/vite-4.5.2.tgz", + "integrity": "sha512-tBCZBNSBbHQkaGyhGCDUGqeo2ph8Fstyp6FMSvTtsXeZSPpSMGlviAOav2hxVTqFcx8Hj/twtWKsMJXNY0xI8w==", "dev": true, "dependencies": { - "esbuild": "^0.16.3", - "postcss": "^8.4.20", - "resolve": "^1.22.1", - "rollup": "^3.7.0" + "esbuild": "^0.18.10", + "postcss": "^8.4.27", + "rollup": "^3.27.1" }, "bin": { "vite": "bin/vite.js" @@ -1567,12 +1913,16 @@ "engines": { "node": "^14.18.0 || >=16.0.0" }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, "optionalDependencies": { "fsevents": "~2.3.2" }, "peerDependencies": { "@types/node": ">= 14", "less": "*", + "lightningcss": "^1.21.0", "sass": "*", "stylus": "*", "sugarss": "*", @@ -1585,6 +1935,9 @@ "less": { "optional": true }, + "lightningcss": { + "optional": true + }, "sass": { "optional": true }, diff --git a/public/build/assets/About-a17a7e67.js b/public/build/assets/About-a17a7e67.js deleted file mode 100644 index 931cc91..0000000 --- a/public/build/assets/About-a17a7e67.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as o}from"./_plugin-vue_export-helper-c27b6911.js";import{o as a,g as r,d as t,t as e}from"./app-a07534fc.js";const c={},d={class:"container mx-auto p-6 bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50"},i={class:"grid grid-col sm:grid-cols-2 gap-5 bg-cyan-50 text-gray-900 dark:bg-gray-800 dark:text-gray-50"},n={class:"p-5 sm:p-10"},l=["src"],_={class:"p-5 sm:p-10"},g={class:"text-4xl mb-5 underline underline-offset-8 decoration-slate-500"},p={class:"text-md text-gray-700 dark:text-gray-400"};function u(s,m){return a(),r("div",d,[t("div",i,[t("div",n,[t("img",{class:"w-full h-auto rounded-md",src:s.$page.props.global.options.about_image,alt:"About Picture"},null,8,l)]),t("div",_,[t("h1",g,e(s.__("about.us.title")),1),t("p",p,e(s.__("about.us.description")),1)])])])}const f=o(c,[["render",u]]);export{f as default}; diff --git a/public/build/assets/Address-69546a1b.js b/public/build/assets/Address-69546a1b.js deleted file mode 100644 index 7b56e1d..0000000 --- a/public/build/assets/Address-69546a1b.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as y}from"./DeleteForm-95cf9c02.js";import{_ as b}from"./Dropdown-47fab125.js";import w from"./EditForm-f3b2b2c3.js";import v from"./Form-055ef52e.js";import{p as n,r as k,o as a,g as i,d as t,c as f,h as g,a as d,e as c,F as V,m as C,t as s,w as u}from"./app-a07534fc.js";import"./DangerButton-1432f67e.js";import"./SecondaryButton-e6cce7b4.js";import"./InputError-819a2731.js";import"./InputLabel-0d88b11e.js";import"./Textarea-1fe62e1d.js";import"./TextInput-6d371888.js";import"./useCountries-62ba1c05.js";import"./default.css_vue_type_style_index_0_src_true_lang-5ba86734.js";const A={class:"flex justify-between"},B=t("div",null,[t("h2",{class:"text-lg font-medium text-gray-900 dark:text-gray-100"}," Address "),t("p",{class:"mt-1 text-sm text-gray-600 dark:text-gray-400"}," Update your Address. ")],-1),j={class:"flex flex-wrap"},N={class:"w-full border border-gray-200 rounded-lg shadow-md bg-white text-gray-900 dark:bg-gray-800 dark:text-gray-50 dark:border-gray-700"},$={class:"flex justify-between px-4 pt-4 relative"},z={class:"text-2xl border-b-2 border-stone-600 pb-1"},M=t("span",{class:"inline-flex rounded-md"},[t("button",{id:"dropdownButton","data-dropdown-toggle":"dropdown",class:"inline-block text-gray-500 dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-700 focus:ring-4 focus:outline-none focus:ring-gray-200 dark:focus:ring-gray-700 rounded-lg text-sm p-1.5",type:"button"},[t("span",{class:"sr-only"},"Open dropdown"),t("svg",{class:"w-6 h-6","aria-hidden":"true",fill:"currentColor",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},[t("path",{d:"M6 10a2 2 0 11-4 0 2 2 0 014 0zM12 10a2 2 0 11-4 0 2 2 0 014 0zM16 12a2 2 0 100-4 2 2 0 000 4z"})])])],-1),D={class:"py-3 space-y-3","aria-labelledby":"dropdownButton"},E={class:"flex justify-center"},U={class:"flex justify-center"},F={class:"cursor-pointer"},O={class:"bg-white text-gray-900 dark:bg-gray-800 dark:text-gray-50 p-5 space-y-3"},S={class:"flex gap-5 w-full"},q=t("h2",null,"Address :",-1),L={class:"break-all break-words"},T={class:"flex gap-5 w-full"},Z=t("h2",null,"City :",-1),G={class:"break-all"},H={class:"flex gap-5 w-full"},I=t("h2",null,"State :",-1),J={class:"break-all"},K={class:"flex gap-5 w-full"},P=t("h2",null,"District :",-1),Q={class:"break-all"},R={class:"flex gap-5 w-full"},W=t("h2",null,"Zip Code :",-1),X={class:"break-all"},Y={class:"flex gap-5 w-full"},tt=t("h2",null,"Country :",-1),et={class:"break-all"},mt={__name:"Address",props:{addresses:Object},setup(m){n(null);const l=n(!1),r=n(!1),h=()=>{r.value=!0},x=()=>{l.value=!0};return(st,o)=>{const _=k("font-awesome-icon");return a(),i("section",null,[t("header",A,[B,t("div",null,[r.value?(a(),f(v,{key:0,modelValue:r.value,"onUpdate:modelValue":o[0]||(o[0]=e=>r.value=e)},null,8,["modelValue"])):g("",!0),t("span",{class:"btn btn-primary cursor-pointer",onClick:h},[d(_,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),c("Add New Address ")])])]),t("div",j,[(a(!0),i(V,null,C(m.addresses,e=>(a(),i("div",{class:"p-5 gap-5 w-1/2",key:e.id},[l.value?(a(),f(w,{key:0,modelValue:l.value,"onUpdate:modelValue":o[1]||(o[1]=p=>l.value=p),address:e,onBlur:o[2]||(o[2]=p=>l.value!=!0),tabindex:"-1"},null,8,["modelValue","address"])):g("",!0),t("div",N,[t("div",$,[t("h2",z,s(e.title),1),d(b,{align:"right",width:"48"},{trigger:u(()=>[M]),content:u(()=>[t("ul",D,[t("li",E,[t("div",{class:"btn btn-primary flex gap-3 cursor-pointer",onClick:x},[d(_,{icon:"fa-solid fa-pen-to-square",class:"text-white text-lg inline-block"}),c("Edit ")])]),t("li",U,[t("div",F,[d(y,{class:"w-full",data:{id:e.id,model:"address"}},{default:u(()=>[c("Delete")]),_:2},1032,["data"])])])])]),_:2},1024)]),t("div",O,[t("div",S,[q,t("p",L,s(e.address),1)]),t("div",T,[Z,t("p",G,s(e.city),1)]),t("div",H,[I,t("p",J,s(e.state),1)]),t("div",K,[P,t("p",Q,s(e.district),1)]),t("div",R,[W,t("p",X,s(e.zip_code),1)]),t("div",Y,[tt,t("p",et,s(e.country),1)])])])]))),128))])])}}};export{mt as default}; diff --git a/public/build/assets/Address-ac1bdf18.js b/public/build/assets/Address-ac1bdf18.js deleted file mode 100644 index 21e9ca1..0000000 --- a/public/build/assets/Address-ac1bdf18.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as y}from"./DeleteForm-3a0f2fad.js";import{_ as b}from"./Dropdown-7d23bb7e.js";import w from"./EditForm-f283bead.js";import v from"./Form-c1471be5.js";import{i as n,h as i,b as t,c as f,q as g,a as d,d as c,F as k,m as V,o as a,t as s,w as u,k as C}from"./app-4f9e7dfc.js";import"./DangerButton-c925b039.js";import"./SecondaryButton-5f2daf35.js";import"./InputLabel-5969cc22.js";import"./Textarea-01085d86.js";import"./TextInput-5a299594.js";import"./useCountries-7f78595f.js";import"./default.css_vue_type_style_index_0_src_true_lang-51e34c56.js";const A={class:"flex justify-between"},B=t("div",null,[t("h2",{class:"text-lg font-medium text-gray-900 dark:text-gray-100"}," Address "),t("p",{class:"mt-1 text-sm text-gray-600 dark:text-gray-400"}," Update your Address. ")],-1),j={class:"flex flex-wrap"},N={class:"w-full border border-gray-200 rounded-lg shadow-md bg-white text-gray-900 dark:bg-gray-800 dark:text-gray-50 dark:border-gray-700"},$={class:"flex justify-between px-4 pt-4 relative"},z={class:"text-2xl border-b-2 border-stone-600 pb-1"},M=t("span",{class:"inline-flex rounded-md"},[t("button",{id:"dropdownButton","data-dropdown-toggle":"dropdown",class:"inline-block text-gray-500 dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-700 focus:ring-4 focus:outline-none focus:ring-gray-200 dark:focus:ring-gray-700 rounded-lg text-sm p-1.5",type:"button"},[t("span",{class:"sr-only"},"Open dropdown"),t("svg",{class:"w-6 h-6","aria-hidden":"true",fill:"currentColor",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},[t("path",{d:"M6 10a2 2 0 11-4 0 2 2 0 014 0zM12 10a2 2 0 11-4 0 2 2 0 014 0zM16 12a2 2 0 100-4 2 2 0 000 4z"})])])],-1),D={class:"py-3 space-y-3","aria-labelledby":"dropdownButton"},E={class:"flex justify-center"},U={class:"flex justify-center"},q={class:"cursor-pointer"},F={class:"bg-white text-gray-900 dark:bg-gray-800 dark:text-gray-50 p-5 space-y-3"},O={class:"flex gap-5 w-full"},S=t("h2",null,"Address :",-1),L={class:"break-all break-words"},T={class:"flex gap-5 w-full"},Z=t("h2",null,"City :",-1),G={class:"break-all"},H={class:"flex gap-5 w-full"},I=t("h2",null,"State :",-1),J={class:"break-all"},K={class:"flex gap-5 w-full"},P=t("h2",null,"District :",-1),Q={class:"break-all"},R={class:"flex gap-5 w-full"},W=t("h2",null,"Zip Code :",-1),X={class:"break-all"},Y={class:"flex gap-5 w-full"},tt=t("h2",null,"Country :",-1),et={class:"break-all"},gt={__name:"Address",props:{addresses:Object},setup(m){n(null);const l=n(!1),r=n(!1),h=()=>{r.value=!0},x=()=>{l.value=!0};return(st,o)=>{const _=C("font-awesome-icon");return a(),i("section",null,[t("header",A,[B,t("div",null,[r.value?(a(),f(v,{key:0,modelValue:r.value,"onUpdate:modelValue":o[0]||(o[0]=e=>r.value=e)},null,8,["modelValue"])):g("",!0),t("span",{class:"btn btn-primary cursor-pointer",onClick:h},[d(_,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),c("Add New Address ")])])]),t("div",j,[(a(!0),i(k,null,V(m.addresses,e=>(a(),i("div",{class:"p-5 gap-5 w-1/2",key:e.id},[l.value?(a(),f(w,{key:0,modelValue:l.value,"onUpdate:modelValue":o[1]||(o[1]=p=>l.value=p),address:e,onBlur:o[2]||(o[2]=p=>l.value!=!0),tabindex:"-1"},null,8,["modelValue","address"])):g("",!0),t("div",N,[t("div",$,[t("h2",z,s(e.title),1),d(b,{align:"right",width:"48"},{trigger:u(()=>[M]),content:u(()=>[t("ul",D,[t("li",E,[t("div",{class:"btn btn-primary flex gap-3 cursor-pointer",onClick:x},[d(_,{icon:"fa-solid fa-pen-to-square",class:"text-white text-lg inline-block"}),c("Edit ")])]),t("li",U,[t("div",q,[d(y,{class:"w-full",data:{id:e.id,model:"address"}},{default:u(()=>[c("Delete")]),_:2},1032,["data"])])])])]),_:2},1024)]),t("div",F,[t("div",O,[S,t("p",L,s(e.address),1)]),t("div",T,[Z,t("p",G,s(e.city),1)]),t("div",H,[I,t("p",J,s(e.state),1)]),t("div",K,[P,t("p",Q,s(e.district),1)]),t("div",R,[W,t("p",X,s(e.zip_code),1)]),t("div",Y,[tt,t("p",et,s(e.country),1)])])])]))),128))])])}}};export{gt as default}; diff --git a/public/build/assets/Address-b68f5097.js b/public/build/assets/Address-b68f5097.js new file mode 100644 index 0000000..329696a --- /dev/null +++ b/public/build/assets/Address-b68f5097.js @@ -0,0 +1 @@ +import{_ as y}from"./DeleteForm-ea1de4c5.js";import{_ as b}from"./Dropdown-a96f453e.js";import w from"./EditForm-8ba96d26.js";import v from"./Form-db1e14f4.js";import{p as n,f as i,b as t,c as f,g,a as d,d as c,F as k,q as V,o as a,t as s,w as u,r as C}from"./app-4dfa7f3b.js";import"./DangerButton-9faead77.js";import"./SecondaryButton-c5891444.js";import"./InputLabel-fec82426.js";import"./Textarea-f6994d96.js";import"./TextInput-fb418c8e.js";import"./useCountries-759a7ea1.js";import"./default.css_vue_type_style_index_0_src_true_lang-5d8f90ba.js";const A={class:"flex justify-between"},B=t("div",null,[t("h2",{class:"text-lg font-medium text-gray-900 dark:text-gray-100"}," Address "),t("p",{class:"mt-1 text-sm text-gray-600 dark:text-gray-400"}," Update your Address. ")],-1),j={class:"flex flex-wrap"},N={class:"w-full border border-gray-200 rounded-lg shadow-md bg-white text-gray-900 dark:bg-gray-800 dark:text-gray-50 dark:border-gray-700"},$={class:"flex justify-between px-4 pt-4 relative"},z={class:"text-2xl border-b-2 border-stone-600 pb-1"},M=t("span",{class:"inline-flex rounded-md"},[t("button",{id:"dropdownButton","data-dropdown-toggle":"dropdown",class:"inline-block text-gray-500 dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-700 focus:ring-4 focus:outline-none focus:ring-gray-200 dark:focus:ring-gray-700 rounded-lg text-sm p-1.5",type:"button"},[t("span",{class:"sr-only"},"Open dropdown"),t("svg",{class:"w-6 h-6","aria-hidden":"true",fill:"currentColor",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},[t("path",{d:"M6 10a2 2 0 11-4 0 2 2 0 014 0zM12 10a2 2 0 11-4 0 2 2 0 014 0zM16 12a2 2 0 100-4 2 2 0 000 4z"})])])],-1),D={class:"py-3 space-y-3","aria-labelledby":"dropdownButton"},E={class:"flex justify-center"},U={class:"flex justify-center"},q={class:"cursor-pointer"},F={class:"bg-white text-gray-900 dark:bg-gray-800 dark:text-gray-50 p-5 space-y-3"},O={class:"flex gap-5 w-full"},S=t("h2",null,"Address :",-1),L={class:"break-all break-words"},T={class:"flex gap-5 w-full"},Z=t("h2",null,"City :",-1),G={class:"break-all"},H={class:"flex gap-5 w-full"},I=t("h2",null,"State :",-1),J={class:"break-all"},K={class:"flex gap-5 w-full"},P=t("h2",null,"District :",-1),Q={class:"break-all"},R={class:"flex gap-5 w-full"},W=t("h2",null,"Zip Code :",-1),X={class:"break-all"},Y={class:"flex gap-5 w-full"},tt=t("h2",null,"Country :",-1),et={class:"break-all"},gt={__name:"Address",props:{addresses:Object},setup(m){n(null);const l=n(!1),r=n(!1),h=()=>{r.value=!0},x=()=>{l.value=!0};return(st,o)=>{const _=C("font-awesome-icon");return a(),i("section",null,[t("header",A,[B,t("div",null,[r.value?(a(),f(v,{key:0,modelValue:r.value,"onUpdate:modelValue":o[0]||(o[0]=e=>r.value=e)},null,8,["modelValue"])):g("",!0),t("span",{class:"btn btn-primary cursor-pointer",onClick:h},[d(_,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),c("Add New Address ")])])]),t("div",j,[(a(!0),i(k,null,V(m.addresses,e=>(a(),i("div",{class:"p-5 gap-5 w-1/2",key:e.id},[l.value?(a(),f(w,{key:0,modelValue:l.value,"onUpdate:modelValue":o[1]||(o[1]=p=>l.value=p),address:e,onBlur:o[2]||(o[2]=p=>l.value!=!0),tabindex:"-1"},null,8,["modelValue","address"])):g("",!0),t("div",N,[t("div",$,[t("h2",z,s(e.title),1),d(b,{align:"right",width:"48"},{trigger:u(()=>[M]),content:u(()=>[t("ul",D,[t("li",E,[t("div",{class:"btn btn-primary flex gap-3 cursor-pointer",onClick:x},[d(_,{icon:"fa-solid fa-pen-to-square",class:"text-white text-lg inline-block"}),c("Edit ")])]),t("li",U,[t("div",q,[d(y,{class:"w-full",data:{id:e.id,model:"address"}},{default:u(()=>[c("Delete")]),_:2},1032,["data"])])])])]),_:2},1024)]),t("div",F,[t("div",O,[S,t("p",L,s(e.address),1)]),t("div",T,[Z,t("p",G,s(e.city),1)]),t("div",H,[I,t("p",J,s(e.state),1)]),t("div",K,[P,t("p",Q,s(e.district),1)]),t("div",R,[W,t("p",X,s(e.zip_code),1)]),t("div",Y,[tt,t("p",et,s(e.country),1)])])])]))),128))])])}}};export{gt as default}; diff --git a/public/build/assets/ApplicationLogo-1c8f1468.js b/public/build/assets/ApplicationLogo-77a8e36b.js similarity index 54% rename from public/build/assets/ApplicationLogo-1c8f1468.js rename to public/build/assets/ApplicationLogo-77a8e36b.js index 43887d0..3a4eb90 100644 --- a/public/build/assets/ApplicationLogo-1c8f1468.js +++ b/public/build/assets/ApplicationLogo-77a8e36b.js @@ -1 +1 @@ -import{d as e}from"./defaultFile-106f3fb6.js";import{o as l,h as s,u as r}from"./app-4f9e7dfc.js";const a=["src"],_={__name:"ApplicationLogo",setup(t){return(o,n)=>(l(),s("img",{src:o.$page.props.global.options.logo||r(e).logo,alt:"logo",class:"rounded-full"},null,8,a))}};export{_}; +import{d as e}from"./defaultFile-2b6c57d3.js";import{o as l,f as s,u as r}from"./app-4dfa7f3b.js";const a=["src"],_={__name:"ApplicationLogo",setup(t){return(o,n)=>(l(),s("img",{src:o.$page.props.global.options.logo||r(e).logo,alt:"logo",class:"rounded-full"},null,8,a))}};export{_}; diff --git a/public/build/assets/AuthenticatedLayout-6151d358.js b/public/build/assets/AuthenticatedLayout-6151d358.js new file mode 100644 index 0000000..daf7fdd --- /dev/null +++ b/public/build/assets/AuthenticatedLayout-6151d358.js @@ -0,0 +1,4 @@ +import{I as ur,K as dr,L as cr,F as q,M as fr,R as pr,S as vr,N as gr,D as $t,O as hr,T as mr,P as yr,V as br,Q as wr,U as _r,W as xr,Y as $r,Z as kt,_ as kr,h as k,$ as Sr,c as J,g as _e,f as x,b as d,a0 as Or,a1 as Er,a2 as Pr,a3 as Cr,a4 as Mr,a5 as Ar,d as re,a as $,a6 as Tr,a7 as Dr,a8 as j,a9 as Fr,aa as Br,ab as Lr,ac as jr,ad as Nr,ae as Ir,af as Rr,ag as Hr,H as St,ah as Ot,ai as Vr,aj as Ur,ak as T,al as zr,am as Wr,an as qr,ao as Gr,ap as z,aq as Qr,ar as Kr,as as Jr,at as Yr,k as Et,au as Xr,av as Zr,aw as en,ax as tn,ay as rn,E as nn,s as De,n as M,az as an,aA as on,aB as ln,aC as sn,aD as un,aE as dn,aF as cn,aG as fn,A as D,aH as pn,aI as vn,aJ as Pt,aK as gn,C as X,aL as hn,o as y,aM as mn,aN as G,aO as yn,aP as bn,aQ as wn,aR as Ct,aS as _n,p as m,aT as xn,aU as $n,q as oe,m as xe,r as Qe,aV as kn,aW as fe,aX as Sn,aY as On,aZ as En,a_ as Pn,a$ as Cn,b0 as Mn,b1 as An,b2 as Mt,b3 as Tn,b4 as Dn,b5 as Fn,t as le,b6 as Bn,b7 as Ln,b8 as jn,b9 as Nn,G as In,ba as Rn,bb as Hn,u as S,bc as Vn,bd as Un,be as zn,bf as Wn,bg as qn,bh as Gn,j as Qn,bi as Kn,bj as Jn,bk as At,B as Yn,z as Ke,bl as Xn,bm as Zn,y as Y,bn as R,bo as ea,bp as ta,bq as ra,w as E,br as na,i as Fe,x as aa,bs as oa,e as la,bt as sa,bu as ia,l as be,J as et,v as ua,X as da}from"./app-4dfa7f3b.js";import{_ as ca}from"./Toast-645f4c7b.js";import{_ as Tt}from"./ApplicationLogo-77a8e36b.js";import{a as fa}from"./useCountries-759a7ea1.js";import{_ as pa}from"./Dropdown-a96f453e.js";const va=()=>{},ga=Object.freeze(Object.defineProperty({__proto__:null,BaseTransition:ur,Comment:dr,EffectScope:cr,Fragment:q,KeepAlive:fr,ReactiveEffect:pr,Static:vr,Suspense:gr,Teleport:$t,Text:hr,Transition:mr,TransitionGroup:yr,VueElement:br,callWithAsyncErrorHandling:wr,callWithErrorHandling:_r,camelize:xr,capitalize:$r,cloneVNode:kt,compatUtils:kr,compile:va,computed:k,createApp:Sr,createBlock:J,createCommentVNode:_e,createElementBlock:x,createElementVNode:d,createHydrationRenderer:Or,createPropsRestProxy:Er,createRenderer:Pr,createSSRApp:Cr,createSlots:Mr,createStaticVNode:Ar,createTextVNode:re,createVNode:$,customRef:Tr,defineAsyncComponent:Dr,defineComponent:j,defineCustomElement:Fr,defineEmits:Br,defineExpose:Lr,defineProps:jr,defineSSRCustomElement:Nr,get devtools(){return Ir},effect:Rr,effectScope:Hr,getCurrentInstance:St,getCurrentScope:Ot,getTransitionRawChildren:Vr,guardReactiveProps:Ur,h:T,handleError:zr,hydrate:Wr,initCustomFormatter:qr,initDirectivesForSSR:Gr,inject:z,isMemoSame:Qr,isProxy:Kr,isReactive:Jr,isReadonly:Yr,isRef:Et,isRuntimeOnly:Xr,isShallow:Zr,isVNode:en,markRaw:tn,mergeDefaults:rn,mergeProps:nn,nextTick:De,normalizeClass:M,normalizeProps:an,normalizeStyle:on,onActivated:ln,onBeforeMount:sn,onBeforeUnmount:un,onBeforeUpdate:dn,onDeactivated:cn,onErrorCaptured:fn,onMounted:D,onRenderTracked:pn,onRenderTriggered:vn,onScopeDispose:Pt,onServerPrefetch:gn,onUnmounted:X,onUpdated:hn,openBlock:y,popScopeId:mn,provide:G,proxyRefs:yn,pushScopeId:bn,queuePostFlushCb:wn,reactive:Ct,readonly:_n,ref:m,registerRuntimeCompiler:xn,render:$n,renderList:oe,renderSlot:xe,resolveComponent:Qe,resolveDirective:kn,resolveDynamicComponent:fe,resolveFilter:Sn,resolveTransitionHooks:On,setBlockTracking:En,setDevtoolsHook:Pn,setTransitionHooks:Cn,shallowReactive:Mn,shallowReadonly:An,shallowRef:Mt,ssrContextKey:Tn,ssrUtils:Dn,stop:Fn,toDisplayString:le,toHandlerKey:Bn,toHandlers:Ln,toRaw:jn,toRef:Nn,toRefs:In,transformVNodeArgs:Rn,triggerRef:Hn,unref:S,useAttrs:Vn,useCssModule:Un,useCssVars:zn,useSSRContext:Wn,useSlots:qn,useTransitionState:Gn,vModelCheckbox:Qn,vModelDynamic:Kn,vModelRadio:Jn,vModelSelect:At,vModelText:Yn,vShow:Ke,version:Xn,warn:Zn,watch:Y,watchEffect:R,watchPostEffect:ea,watchSyncEffect:ta,withAsyncContext:ra,withCtx:E,withDefaults:na,withDirectives:Fe,withKeys:aa,withMemo:oa,withModifiers:la,withScopeId:sa},Symbol.toStringTag,{value:"Module"})),Dt=(e,t)=>{const r=e.__vccOpts||e;for(const[n,o]of t)r[n]=o;return r},ha={},ma={"aria-hidden":"true",class:"w-full h-full text-gray-200 animate-spin fill-blue-600",viewBox:"0 0 100 101",fill:"none",xmlns:"http://www.w3.org/2000/svg"},ya=d("path",{d:"M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z",fill:"currentColor"},null,-1),ba=d("path",{d:"M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z",fill:"currentFill"},null,-1),wa=[ya,ba];function _a(e,t){return y(),x("svg",ma,wa)}const xa=Dt(ha,[["render",_a]]),ne=ia(ga),{createElementVNode:$a,openBlock:ka,createElementBlock:Sa}=ne;var Oa=function(t,r){return ka(),Sa("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true"},[$a("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M19.5 5.25l-7.5 7.5-7.5-7.5m15 6l-7.5 7.5-7.5-7.5"})])};const{createElementVNode:Ea,openBlock:Pa,createElementBlock:Ca}=ne;var Ma=function(t,r){return Pa(),Ca("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true"},[Ea("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M11.25 4.5l7.5 7.5-7.5 7.5m-6-15l7.5 7.5-7.5 7.5"})])};const{createElementVNode:Aa,openBlock:Ta,createElementBlock:Da}=ne;var Fa=function(t,r){return Ta(),Da("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true"},[Aa("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M4.5 12a7.5 7.5 0 0015 0m-15 0a7.5 7.5 0 1115 0m-15 0H3m16.5 0H21m-1.5 0H12m-8.457 3.077l1.41-.513m14.095-5.13l1.41-.513M5.106 17.785l1.15-.964m11.49-9.642l1.149-.964M7.501 19.795l.75-1.3m7.5-12.99l.75-1.3m-6.063 16.658l.26-1.477m2.605-14.772l.26-1.477m0 17.726l-.26-1.477M10.698 4.614l-.26-1.477M16.5 19.794l-.75-1.299M7.5 4.205L12 12m6.894 5.785l-1.149-.964M6.256 7.178l-1.15-.964m15.352 8.864l-1.41-.513M4.954 9.435l-1.41-.514M12.002 12l-3.75 6.495"})])};const{createElementVNode:Ba,openBlock:La,createElementBlock:ja}=ne;var Na=function(t,r){return La(),ja("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true"},[Ba("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M2.25 12l8.954-8.955c.44-.439 1.152-.439 1.591 0L21.75 12M4.5 9.75v10.125c0 .621.504 1.125 1.125 1.125H9.75v-4.875c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21h4.125c.621 0 1.125-.504 1.125-1.125V9.75M8.25 21h8.25"})])};const{createElementVNode:Ia,openBlock:Ra,createElementBlock:Ha}=ne;var Va=function(t,r){return Ra(),Ha("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true"},[Ia("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 9v6m3-3H9m12 0a9 9 0 11-18 0 9 9 0 0118 0z"})])};const{createElementVNode:Ua,openBlock:za,createElementBlock:Wa}=ne;var qa=function(t,r){return za(),Wa("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true"},[Ua("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M18 18.72a9.094 9.094 0 003.741-.479 3 3 0 00-4.682-2.72m.94 3.198l.001.031c0 .225-.012.447-.037.666A11.944 11.944 0 0112 21c-2.17 0-4.207-.576-5.963-1.584A6.062 6.062 0 016 18.719m12 0a5.971 5.971 0 00-.941-3.197m0 0A5.995 5.995 0 0012 12.75a5.995 5.995 0 00-5.058 2.772m0 0a3 3 0 00-4.681 2.72 8.986 8.986 0 003.74.477m.94-3.197a5.971 5.971 0 00-.94 3.197M15 6.75a3 3 0 11-6 0 3 3 0 016 0zm6 3a2.25 2.25 0 11-4.5 0 2.25 2.25 0 014.5 0zm-13.5 0a2.25 2.25 0 11-4.5 0 2.25 2.25 0 014.5 0z"})])};const{createElementVNode:Ga,openBlock:Qa,createElementBlock:Ka}=ne;var Ja=function(t,r){return Qa(),Ka("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true"},[Ga("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15 19.128a9.38 9.38 0 002.625.372 9.337 9.337 0 004.121-.952 4.125 4.125 0 00-7.533-2.493M15 19.128v-.003c0-1.113-.285-2.16-.786-3.07M15 19.128v.106A12.318 12.318 0 018.624 21c-2.331 0-4.512-.645-6.374-1.766l-.001-.109a6.375 6.375 0 0111.964-3.07M12 6.375a3.375 3.375 0 11-6.75 0 3.375 3.375 0 016.75 0zm8.25 2.25a2.625 2.625 0 11-5.25 0 2.625 2.625 0 015.25 0z"})])};const{createElementVNode:Ya,openBlock:Xa,createElementBlock:Za}=ne;var eo=function(t,r){return Xa(),Za("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true"},[Ya("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M6 18L18 6M6 6l12 12"})])},Ft=Oa,Bt=Ma,tt=Fa,to=Na,rt=Va,nt=qa,at=Ja,ro=eo;const no={class:"flex flex-grow flex-col overflow-y-auto bg-indigo-700 pt-5"},ao={class:"flex flex-shrink-0 items-center px-4"},oo={class:"mt-5 flex flex-1 flex-col"},lo={class:"flex-1 space-y-1 px-2 pb-4"},so={key:0},io=["onMouseover","onMouseout"],uo={key:0,class:"absolute right-0 mr-2"},co={key:1,class:"absolute right-0 mr-2"},fo={key:1},po={__name:"DesktopMenu",props:{navigation:Object,isOpenSidebar:Boolean},setup(e){return(t,r)=>(y(),x("div",{class:M(["hidden md:fixed md:inset-y-0 md:flex md:flex-col",e.isOpenSidebar?"md:w-64":"md:w-20"])},[d("div",no,[d("div",ao,[$(S(be),{href:t.route("dashboard")},{default:E(()=>[$(Tt,{class:"block h-12 w-auto fill-current text-gray-800 dark:text-gray-200"})]),_:1},8,["href"])]),d("div",oo,[d("nav",lo,[e.isOpenSidebar?(y(),x("div",so,[(y(!0),x(q,null,oe(e.navigation,n=>{var o;return y(),x("div",{key:n.name,class:M([n.current?"bg-indigo-600 text-white p-0.5 rounded-sm":""]),onMouseover:a=>t.$emit("toggleCurrent",n),onMouseout:a=>t.$emit("toggleCurrent",n)},[$(S(be),{href:t.route(n.route),class:M([n.current?"bg-indigo-800 text-white":"text-indigo-100 hover:bg-indigo-600","group flex items-center px-2 py-2 text-sm font-medium rounded-md"])},{default:E(()=>{var a,l;return[(y(),J(fe(n.icon),{class:"mr-3 h-6 w-6 flex-shrink-0 text-indigo-300","aria-hidden":"true"})),re(" "+le(n.name)+" ",1),n.current&&((a=n==null?void 0:n.children)==null?void 0:a.length)>0?(y(),x("span",uo,[$(S(Ft),{class:"mr-3 h-4 w-4 flex-shrink-0 text-indigo-300","aria-hidden":"true"})])):!n.current&&((l=n==null?void 0:n.children)==null?void 0:l.length)>0?(y(),x("span",co,[$(S(Bt),{class:"mr-3 h-4 w-4 flex-shrink-0 text-indigo-300","aria-hidden":"true"})])):_e("",!0)]}),_:2},1032,["href","class"]),Fe(d("div",{class:M(["p-2 my-1 mx-3 border border-indigo-600 rounded-md bg-indigo-700 shadow-md",{"transition duration-500 ease-in-out":n.current}])},[(y(!0),x(q,null,oe(n.children,a=>(y(),x("div",{"aria-level":"childreen",key:a.name,class:"px-2 py-1"},[$(S(be),{href:t.route(a.route),class:M([[a.current?"bg-indigo-800 text-white":"text-indigo-100 bg-indigo-600 hover:bg-indigo-600"],"px-1 py-1.5 group flex items-center text-sm font-medium rounded-md"])},{default:E(()=>[(y(),J(fe(a.icon),{class:"mr-3 h-4 w-4 flex-shrink-0 text-indigo-300","aria-hidden":"true"})),re(" "+le(a.name),1)]),_:2},1032,["href","class"])]))),128))],2),[[Ke,n.current&&((o=n==null?void 0:n.children)==null?void 0:o.length)>0]])],42,io)}),128))])):(y(),x("div",fo,[(y(!0),x(q,null,oe(e.navigation,n=>(y(),x("div",{key:n.name,class:M([n.current?"bg-indigo-600 text-white p-0.5 rounded-sm my-2":""])},[$(S(be),{href:t.route(n.route),class:M([n.current?"bg-indigo-800 text-white":"text-indigo-100 hover:bg-indigo-600","group flex items-center px-3 py-3 text-sm font-medium rounded-md"])},{default:E(()=>[(y(),J(fe(n.icon),{class:"mr-3 h-8 w-8 flex-shrink-0 text-indigo-300","aria-hidden":"true"}))]),_:2},1032,["href","class"])],2))),128))]))])])])],2))}};var ot;const Lt=typeof window<"u",vo=e=>typeof e=="function",go=e=>typeof e=="string",ho=()=>{};Lt&&((ot=window==null?void 0:window.navigator)!=null&&ot.userAgent)&&/iP(ad|hone|od)/.test(window.navigator.userAgent);function Ce(e){return typeof e=="function"?e():S(e)}function mo(e,t){function r(...n){e(()=>t.apply(this,n),{fn:t,thisArg:this,args:n})}return r}const jt=e=>e();function yo(e=jt){const t=m(!0);function r(){t.value=!1}function n(){t.value=!0}return{isActive:t,pause:r,resume:n,eventFilter:(...a)=>{t.value&&e(...a)}}}function bo(e){return e}function Nt(e){return Ot()?(Pt(e),!0):!1}function wo(e){return typeof e=="function"?k(e):m(e)}function It(e,t=!0){St()?D(e):t?e():De(e)}function _o(e=!1,t={}){const{truthyValue:r=!0,falsyValue:n=!1}=t,o=Et(e),a=m(e);function l(s){if(arguments.length)return a.value=s,a.value;{const i=Ce(r);return a.value=a.value===i?Ce(n):i,a.value}}return o?l:[a,l]}var lt=Object.getOwnPropertySymbols,xo=Object.prototype.hasOwnProperty,$o=Object.prototype.propertyIsEnumerable,ko=(e,t)=>{var r={};for(var n in e)xo.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(e!=null&<)for(var n of lt(e))t.indexOf(n)<0&&$o.call(e,n)&&(r[n]=e[n]);return r};function So(e,t,r={}){const n=r,{eventFilter:o=jt}=n,a=ko(n,["eventFilter"]);return Y(e,mo(o,t),a)}var Oo=Object.defineProperty,Eo=Object.defineProperties,Po=Object.getOwnPropertyDescriptors,Me=Object.getOwnPropertySymbols,Rt=Object.prototype.hasOwnProperty,Ht=Object.prototype.propertyIsEnumerable,st=(e,t,r)=>t in e?Oo(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,Co=(e,t)=>{for(var r in t||(t={}))Rt.call(t,r)&&st(e,r,t[r]);if(Me)for(var r of Me(t))Ht.call(t,r)&&st(e,r,t[r]);return e},Mo=(e,t)=>Eo(e,Po(t)),Ao=(e,t)=>{var r={};for(var n in e)Rt.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(e!=null&&Me)for(var n of Me(e))t.indexOf(n)<0&&Ht.call(e,n)&&(r[n]=e[n]);return r};function To(e,t,r={}){const n=r,{eventFilter:o}=n,a=Ao(n,["eventFilter"]),{eventFilter:l,pause:s,resume:i,isActive:u}=yo(o);return{stop:So(e,t,Mo(Co({},a),{eventFilter:l})),pause:s,resume:i,isActive:u}}function Do(e){var t;const r=Ce(e);return(t=r==null?void 0:r.$el)!=null?t:r}const ve=Lt?window:void 0;function Fo(...e){let t,r,n,o;if(go(e[0])||Array.isArray(e[0])?([r,n,o]=e,t=ve):[t,r,n,o]=e,!t)return ho;Array.isArray(r)||(r=[r]),Array.isArray(n)||(n=[n]);const a=[],l=()=>{a.forEach(c=>c()),a.length=0},s=(c,p,g)=>(c.addEventListener(p,g,o),()=>c.removeEventListener(p,g,o)),i=Y(()=>Do(t),c=>{l(),c&&a.push(...r.flatMap(p=>n.map(g=>s(c,p,g))))},{immediate:!0,flush:"post"}),u=()=>{i(),l()};return Nt(u),u}function Bo(e,t=!1){const r=m(),n=()=>r.value=!!e();return n(),It(n,t),r}function Lo(e,t={}){const{window:r=ve}=t,n=Bo(()=>r&&"matchMedia"in r&&typeof r.matchMedia=="function");let o;const a=m(!1),l=()=>{o&&("removeEventListener"in o?o.removeEventListener("change",s):o.removeListener(s))},s=()=>{n.value&&(l(),o=r.matchMedia(wo(e).value),a.value=o.matches,"addEventListener"in o?o.addEventListener("change",s):o.addListener(s))};return R(s),Nt(()=>l()),a}const Re=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},He="__vueuse_ssr_handlers__";Re[He]=Re[He]||{};const jo=Re[He];function Vt(e,t){return jo[e]||t}function No(e){return e==null?"any":e instanceof Set?"set":e instanceof Map?"map":e instanceof Date?"date":typeof e=="boolean"?"boolean":typeof e=="string"?"string":typeof e=="object"?"object":Number.isNaN(e)?"any":"number"}var Io=Object.defineProperty,it=Object.getOwnPropertySymbols,Ro=Object.prototype.hasOwnProperty,Ho=Object.prototype.propertyIsEnumerable,ut=(e,t,r)=>t in e?Io(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,dt=(e,t)=>{for(var r in t||(t={}))Ro.call(t,r)&&ut(e,r,t[r]);if(it)for(var r of it(t))Ho.call(t,r)&&ut(e,r,t[r]);return e};const Vo={boolean:{read:e=>e==="true",write:e=>String(e)},object:{read:e=>JSON.parse(e),write:e=>JSON.stringify(e)},number:{read:e=>Number.parseFloat(e),write:e=>String(e)},any:{read:e=>e,write:e=>String(e)},string:{read:e=>e,write:e=>String(e)},map:{read:e=>new Map(JSON.parse(e)),write:e=>JSON.stringify(Array.from(e.entries()))},set:{read:e=>new Set(JSON.parse(e)),write:e=>JSON.stringify(Array.from(e))},date:{read:e=>new Date(e),write:e=>e.toISOString()}};function Uo(e,t,r,n={}){var o;const{flush:a="pre",deep:l=!0,listenToStorageChanges:s=!0,writeDefaults:i=!0,mergeDefaults:u=!1,shallow:c,window:p=ve,eventFilter:g,onError:h=v=>{console.error(v)}}=n,f=(c?Mt:m)(t);if(!r)try{r=Vt("getDefaultStorage",()=>{var v;return(v=ve)==null?void 0:v.localStorage})()}catch(v){h(v)}if(!r)return f;const w=Ce(t),P=No(w),C=(o=n.serializer)!=null?o:Vo[P],{pause:F,resume:N}=To(f,()=>B(f.value),{flush:a,deep:l,eventFilter:g});return p&&s&&Fo(p,"storage",W),W(),f;function B(v){try{if(v==null)r.removeItem(e);else{const b=C.write(v),_=r.getItem(e);_!==b&&(r.setItem(e,b),p&&(p==null||p.dispatchEvent(new StorageEvent("storage",{key:e,oldValue:_,newValue:b,storageArea:r}))))}}catch(b){h(b)}}function A(v){const b=v?v.newValue:r.getItem(e);if(b==null)return i&&w!==null&&r.setItem(e,C.write(w)),w;if(!v&&u){const _=C.read(b);return vo(u)?u(_,w):P==="object"&&!Array.isArray(_)?dt(dt({},w),_):_}else return typeof b!="string"?b:C.read(b)}function W(v){if(!(v&&v.storageArea!==r)){if(v&&v.key==null){f.value=w;return}if(!(v&&v.key!==e)){F();try{f.value=A(v)}catch(b){h(b)}finally{v?De(N):N()}}}}}function Ut(e){return Lo("(prefers-color-scheme: dark)",e)}var zo=Object.defineProperty,ct=Object.getOwnPropertySymbols,Wo=Object.prototype.hasOwnProperty,qo=Object.prototype.propertyIsEnumerable,ft=(e,t,r)=>t in e?zo(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,Go=(e,t)=>{for(var r in t||(t={}))Wo.call(t,r)&&ft(e,r,t[r]);if(ct)for(var r of ct(t))qo.call(t,r)&&ft(e,r,t[r]);return e};function Qo(e={}){const{selector:t="html",attribute:r="class",initialValue:n="auto",window:o=ve,storage:a,storageKey:l="vueuse-color-scheme",listenToStorageChanges:s=!0,storageRef:i,emitAuto:u}=e,c=Go({auto:"",light:"light",dark:"dark"},e.modes||{}),p=Ut({window:o}),g=k(()=>p.value?"dark":"light"),h=i||(l==null?m(n):Uo(l,n,a,{window:o,listenToStorageChanges:s})),f=k({get(){return h.value==="auto"&&!u?g.value:h.value},set(F){h.value=F}}),w=Vt("updateHTMLAttrs",(F,N,B)=>{const A=o==null?void 0:o.document.querySelector(F);if(A)if(N==="class"){const W=B.split(/\s/g);Object.values(c).flatMap(v=>(v||"").split(/\s/g)).filter(Boolean).forEach(v=>{W.includes(v)?A.classList.add(v):A.classList.remove(v)})}else A.setAttribute(N,B)});function P(F){var N;const B=F==="auto"?g.value:F;w(t,r,(N=c[B])!=null?N:B)}function C(F){e.onChanged?e.onChanged(F,P):P(F)}return Y(f,C,{flush:"post",immediate:!0}),u&&Y(g,()=>C(f.value),{flush:"post"}),It(()=>C(f.value)),f}var Ko=Object.defineProperty,Jo=Object.defineProperties,Yo=Object.getOwnPropertyDescriptors,pt=Object.getOwnPropertySymbols,Xo=Object.prototype.hasOwnProperty,Zo=Object.prototype.propertyIsEnumerable,vt=(e,t,r)=>t in e?Ko(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,el=(e,t)=>{for(var r in t||(t={}))Xo.call(t,r)&&vt(e,r,t[r]);if(pt)for(var r of pt(t))Zo.call(t,r)&&vt(e,r,t[r]);return e},tl=(e,t)=>Jo(e,Yo(t));function rl(e={}){const{valueDark:t="dark",valueLight:r="",window:n=ve}=e,o=Qo(tl(el({},e),{onChanged:(s,i)=>{var u;e.onChanged?(u=e.onChanged)==null||u.call(e,s==="dark"):i(s)},modes:{dark:t,light:r}})),a=Ut({window:n});return k({get(){return o.value==="dark"},set(s){s===a.value?o.value="auto":o.value=s?"dark":"light"}})}var gt;(function(e){e.UP="UP",e.RIGHT="RIGHT",e.DOWN="DOWN",e.LEFT="LEFT",e.NONE="NONE"})(gt||(gt={}));var nl=Object.defineProperty,ht=Object.getOwnPropertySymbols,al=Object.prototype.hasOwnProperty,ol=Object.prototype.propertyIsEnumerable,mt=(e,t,r)=>t in e?nl(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,ll=(e,t)=>{for(var r in t||(t={}))al.call(t,r)&&mt(e,r,t[r]);if(ht)for(var r of ht(t))ol.call(t,r)&&mt(e,r,t[r]);return e};const sl={easeInSine:[.12,0,.39,0],easeOutSine:[.61,1,.88,1],easeInOutSine:[.37,0,.63,1],easeInQuad:[.11,0,.5,0],easeOutQuad:[.5,1,.89,1],easeInOutQuad:[.45,0,.55,1],easeInCubic:[.32,0,.67,0],easeOutCubic:[.33,1,.68,1],easeInOutCubic:[.65,0,.35,1],easeInQuart:[.5,0,.75,0],easeOutQuart:[.25,1,.5,1],easeInOutQuart:[.76,0,.24,1],easeInQuint:[.64,0,.78,0],easeOutQuint:[.22,1,.36,1],easeInOutQuint:[.83,0,.17,1],easeInExpo:[.7,0,.84,0],easeOutExpo:[.16,1,.3,1],easeInOutExpo:[.87,0,.13,1],easeInCirc:[.55,0,1,.45],easeOutCirc:[0,.55,.45,1],easeInOutCirc:[.85,0,.15,1],easeInBack:[.36,0,.66,-.56],easeOutBack:[.34,1.56,.64,1],easeInOutBack:[.68,-.6,.32,1.6]};ll({linear:bo},sl);const il=d("i",{"inline-block":"","align-middle":"",i:"dark:carbon-moon carbon-sun"},null,-1),ul={class:"grid place-content-center text-gray-500 dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-700 focus:outline-none focus:ring-4 focus:ring-gray-200 dark:focus:ring-gray-700 rounded-lg text-sm p-1.5"},dl={key:0,class:"w-5 h-5"},cl=d("svg",{"aria-hidden":"true",id:"theme-toggle-light-icon",class:"w-5 h-5",fill:"white",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},[d("path",{d:"M10 2a1 1 0 011 1v1a1 1 0 11-2 0V3a1 1 0 011-1zm4 8a4 4 0 11-8 0 4 4 0 018 0zm-.464 4.95l.707.707a1 1 0 001.414-1.414l-.707-.707a1 1 0 00-1.414 1.414zm2.12-10.607a1 1 0 010 1.414l-.706.707a1 1 0 11-1.414-1.414l.707-.707a1 1 0 011.414 0zM17 11a1 1 0 100-2h-1a1 1 0 100 2h1zm-7 4a1 1 0 011 1v1a1 1 0 11-2 0v-1a1 1 0 011-1zM5.05 6.464A1 1 0 106.465 5.05l-.708-.707a1 1 0 00-1.414 1.414l.707.707zm1.414 8.486l-.707.707a1 1 0 01-1.414-1.414l.707-.707a1 1 0 011.414 1.414zM4 11a1 1 0 100-2H3a1 1 0 000 2h1z","fill-rule":"evenodd","clip-rule":"evenodd"})],-1),fl=[cl],pl={key:1,class:"w-5 h-5"},vl=d("svg",{"aria-hidden":"true",id:"theme-toggle-dark-icon",class:"w-5 h-5",fill:"currentColor",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},[d("path",{d:"M17.293 13.293A8 8 0 016.707 2.707a8.001 8.001 0 1010.586 10.586z"})],-1),gl=[vl],hl={__name:"DarkMode",setup(e){const t=rl(),r=_o(t);return(n,o)=>(y(),x("button",{onClick:o[0]||(o[0]=a=>S(r)()),class:"w-8 h-8"},[il,d("span",ul,[S(t)?(y(),x("div",dl,fl)):(y(),x("div",pl,gl))])]))}},ml={class:"p-2 sm:p-4"},yl=["value","selected"],bl={__name:"SelectLanguage",setup(e){var a;const t=et().props;t==null||t.global.options;const r=fa(t.languages),n=ua({language:(a=et().props)==null?void 0:a.language}),o=l=>{n.post(route("language.store"),{language:l})};return(l,s)=>(y(),x("div",ml,[Fe(d("select",{name:"language",id:"language","onUpdate:modelValue":s[0]||(s[0]=i=>S(n).language=i),onChange:o,class:"text-gray-900 dark:text-gray-50 bg-gray-50 dark:bg-gray-800 rounded-lg"},[(y(!0),x(q,null,oe(S(r),i=>(y(),x("option",{value:i.value,key:i.value,selected:i.value===l.$page.props.language},le(i.label),9,yl))),128))],544),[[At,S(n).language]])]))}},wl={};function _l(e,t){const r=Qe("Link");return y(),J(r,{class:"block w-full px-4 py-2 text-left text-sm leading-5 text-gray-700 dark:text-gray-300 hover:bg-gray-100 dark:hover:bg-gray-800 focus:outline-none focus:bg-gray-100 dark:focus:bg-gray-800 transition duration-150 ease-in-out"},{default:E(()=>[xe(e.$slots,"default")]),_:3})}const yt=Dt(wl,[["render",_l]]),xl={__name:"NavLink",props:["href","active"],setup(e){const t=e,r=k(()=>t.active?"inline-flex items-center px-1 pt-1 border-b-2 border-indigo-400 dark:border-indigo-600 text-sm font-medium leading-5 text-gray-900 dark:text-gray-100 focus:outline-none focus:border-indigo-700 transition duration-150 ease-in-out":"inline-flex items-center px-1 pt-1 border-b-2 border-transparent text-sm font-medium leading-5 text-gray-500 dark:text-gray-400 hover:text-gray-700 dark:hover:text-gray-300 hover:border-gray-300 dark:hover:border-gray-700 focus:outline-none focus:text-gray-700 dark:focus:text-gray-300 focus:border-gray-300 dark:focus:border-gray-700 transition duration-150 ease-in-out");return(n,o)=>{const a=Qe("Link");return y(),J(a,{href:e.href,class:M(S(r))},{default:E(()=>[xe(n.$slots,"default")]),_:3},8,["href","class"])}}},$l={class:"bg-white dark:bg-gray-800 border-b border-gray-100 dark:border-gray-700"},kl={class:"max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"},Sl={class:"flex justify-between h-16"},Ol={class:"flex"},El={class:"shrink-0 flex items-center"},Pl={class:"h-6 w-6",stroke:"currentColor",fill:"none",viewBox:"0 0 24 24"},Cl={class:"hidden space-x-8 sm:-my-px sm:ml-10 sm:flex"},Ml={class:"sm:space-y-5 ml-5 space-x-8"},Al={class:"flex items-center sm:ml-6 justify-center"},Tl={class:"ml-3 relative"},Dl={class:"inline-flex rounded-md"},Fl={type:"button",class:"inline-flex items-center px-1 md:px-3 py-2 border border-transparent text-sm leading-4 font-medium rounded-md text-gray-500 bg-white dark:bg-gray-800 dark:text-gray-100 hover:text-gray-700 dark:hover:text-gray-300 focus:outline-none transition ease-in-out duration-150 capitalize"},Bl=["src","alt"],Ll={class:"hidden md:block"},jl=d("svg",{class:":ml-2 h-4 w-4",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor"},[d("path",{"fill-rule":"evenodd",d:"M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z","clip-rule":"evenodd"})],-1),Nl={__name:"Header",props:{isOpenSidebar:Boolean},setup(e){return(t,r)=>(y(),x("div",$l,[d("div",kl,[d("div",Sl,[d("div",Ol,[d("div",El,[d("button",{onClick:r[0]||(r[0]=n=>t.$emit("toggleMenu",!0)),class:"inline-flex items-center justify-center p-2 rounded-md text-gray-400 dark:text-gray-500 hover:text-gray-500 dark:hover:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-900 focus:outline-none focus:bg-gray-100 dark:focus:bg-gray-900 focus:text-gray-500 dark:focus:text-gray-400 transition duration-150 ease-in-out"},[(y(),x("svg",Pl,[d("path",{class:M({"md:hidden":e.isOpenSidebar,"inline-flex":!e.isOpenSidebar}),"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M4 6h16M4 12h16M4 18h16"},null,2),d("path",{class:M([{"md:hidden":!e.isOpenSidebar,"inline-flex":e.isOpenSidebar},"hidden md:block"]),"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M6 18L18 6M6 6l12 12"},null,2)]))])]),d("div",Cl,[$(xl,{href:t.route("home"),active:!0},{default:E(()=>[re(" Visit website ")]),_:1},8,["href"])]),d("div",Ml,[$(bl)])]),d("div",Al,[$(hl),d("div",Tl,[$(pa,{align:"right",width:"48"},{trigger:E(()=>[d("span",Dl,[d("button",Fl,[d("img",{src:t.$page.props.auth.user.avatar,alt:t.$page.props.auth.user.name,class:"w-8 h-8 rounded-full mr-1 md:mr-2"},null,8,Bl),d("span",Ll,le(t.$page.props.auth.user.name),1),jl])])]),content:E(()=>[$(yt,{href:t.route("profile.edit")},{default:E(()=>[re(" Profile ")]),_:1},8,["href"]),$(yt,{href:t.route("logout"),method:"post",as:"button"},{default:E(()=>[re(" Log Out ")]),_:1},8,["href"])]),_:1})])])])])]))}};function U(e,t,...r){if(e in t){let o=t[e];return typeof o=="function"?o(...r):o}let n=new Error(`Tried to handle "${e}" but there is no handler defined. Only defined handlers are: ${Object.keys(t).map(o=>`"${o}"`).join(", ")}.`);throw Error.captureStackTrace&&Error.captureStackTrace(n,U),n}var Ae=(e=>(e[e.None=0]="None",e[e.RenderStrategy=1]="RenderStrategy",e[e.Static=2]="Static",e))(Ae||{}),te=(e=>(e[e.Unmount=0]="Unmount",e[e.Hidden=1]="Hidden",e))(te||{});function H({visible:e=!0,features:t=0,ourProps:r,theirProps:n,...o}){var a;let l=Wt(n,r),s=Object.assign(o,{props:l});if(e||t&2&&l.static)return je(s);if(t&1){let i=(a=l.unmount)==null||a?0:1;return U(i,{0(){return null},1(){return je({...o,props:{...l,hidden:!0,style:{display:"none"}}})}})}return je(s)}function je({props:e,attrs:t,slots:r,slot:n,name:o}){var a,l;let{as:s,...i}=qt(e,["unmount","static"]),u=(a=r.default)==null?void 0:a.call(r,n),c={};if(n){let p=!1,g=[];for(let[h,f]of Object.entries(n))typeof f=="boolean"&&(p=!0),f===!0&&g.push(h);p&&(c["data-headlessui-state"]=g.join(" "))}if(s==="template"){if(u=zt(u??[]),Object.keys(i).length>0||Object.keys(t).length>0){let[p,...g]=u??[];if(!Il(p)||g.length>0)throw new Error(['Passing props on "template"!',"",`The current component <${o} /> is rendering a "template".`,"However we need to passthrough the following props:",Object.keys(i).concat(Object.keys(t)).map(w=>w.trim()).filter((w,P,C)=>C.indexOf(w)===P).sort((w,P)=>w.localeCompare(P)).map(w=>` - ${w}`).join(` +`),"","You can apply a few solutions:",['Add an `as="..."` prop, to ensure that we render an actual element instead of a "template".',"Render a single element as the child so that we can forward the props onto that element."].map(w=>` - ${w}`).join(` +`)].join(` +`));let h=Wt((l=p.props)!=null?l:{},i),f=kt(p,h);for(let w in h)w.startsWith("on")&&(f.props||(f.props={}),f.props[w]=h[w]);return f}return Array.isArray(u)&&u.length===1?u[0]:u}return T(s,Object.assign({},i,c),{default:()=>u})}function zt(e){return e.flatMap(t=>t.type===q?zt(t.children):[t])}function Wt(...e){if(e.length===0)return{};if(e.length===1)return e[0];let t={},r={};for(let n of e)for(let o in n)o.startsWith("on")&&typeof n[o]=="function"?(r[o]!=null||(r[o]=[]),r[o].push(n[o])):t[o]=n[o];if(t.disabled||t["aria-disabled"])return Object.assign(t,Object.fromEntries(Object.keys(r).map(n=>[n,void 0])));for(let n in r)Object.assign(t,{[n](o,...a){let l=r[n];for(let s of l){if(o instanceof Event&&o.defaultPrevented)return;s(o,...a)}}});return t}function qt(e,t=[]){let r=Object.assign({},e);for(let n of t)n in r&&delete r[n];return r}function Il(e){return e==null?!1:typeof e.type=="string"||typeof e.type=="object"||typeof e.type=="function"}let Rl=0;function Hl(){return++Rl}function ie(){return Hl()}var Gt=(e=>(e.Space=" ",e.Enter="Enter",e.Escape="Escape",e.Backspace="Backspace",e.Delete="Delete",e.ArrowLeft="ArrowLeft",e.ArrowUp="ArrowUp",e.ArrowRight="ArrowRight",e.ArrowDown="ArrowDown",e.Home="Home",e.End="End",e.PageUp="PageUp",e.PageDown="PageDown",e.Tab="Tab",e))(Gt||{});function Q(e){var t;return e==null||e.value==null?null:(t=e.value.$el)!=null?t:e.value}let Qt=Symbol("Context");var se=(e=>(e[e.Open=0]="Open",e[e.Closed=1]="Closed",e))(se||{});function Vl(){return Je()!==null}function Je(){return z(Qt,null)}function Ul(e){G(Qt,e)}let zl=class{constructor(){this.current=this.detect(),this.currentId=0}set(t){this.current!==t&&(this.currentId=0,this.current=t)}reset(){this.set(this.detect())}nextId(){return++this.currentId}get isServer(){return this.current==="server"}get isClient(){return this.current==="client"}detect(){return typeof window>"u"||typeof document>"u"?"server":"client"}},$e=new zl;function ge(e){if($e.isServer)return null;if(e instanceof Node)return e.ownerDocument;if(e!=null&&e.hasOwnProperty("value")){let t=Q(e);if(t)return t.ownerDocument}return document}let Ve=["[contentEditable=true]","[tabindex]","a[href]","area[href]","button:not([disabled])","iframe","input:not([disabled])","select:not([disabled])","textarea:not([disabled])"].map(e=>`${e}:not([tabindex='-1'])`).join(",");var ee=(e=>(e[e.First=1]="First",e[e.Previous=2]="Previous",e[e.Next=4]="Next",e[e.Last=8]="Last",e[e.WrapAround=16]="WrapAround",e[e.NoScroll=32]="NoScroll",e))(ee||{}),Kt=(e=>(e[e.Error=0]="Error",e[e.Overflow=1]="Overflow",e[e.Success=2]="Success",e[e.Underflow=3]="Underflow",e))(Kt||{}),Wl=(e=>(e[e.Previous=-1]="Previous",e[e.Next=1]="Next",e))(Wl||{});function ql(e=document.body){return e==null?[]:Array.from(e.querySelectorAll(Ve)).sort((t,r)=>Math.sign((t.tabIndex||Number.MAX_SAFE_INTEGER)-(r.tabIndex||Number.MAX_SAFE_INTEGER)))}var Jt=(e=>(e[e.Strict=0]="Strict",e[e.Loose=1]="Loose",e))(Jt||{});function Gl(e,t=0){var r;return e===((r=ge(e))==null?void 0:r.body)?!1:U(t,{0(){return e.matches(Ve)},1(){let n=e;for(;n!==null;){if(n.matches(Ve))return!0;n=n.parentElement}return!1}})}function pe(e){e==null||e.focus({preventScroll:!0})}let Ql=["textarea","input"].join(",");function Kl(e){var t,r;return(r=(t=e==null?void 0:e.matches)==null?void 0:t.call(e,Ql))!=null?r:!1}function Jl(e,t=r=>r){return e.slice().sort((r,n)=>{let o=t(r),a=t(n);if(o===null||a===null)return 0;let l=o.compareDocumentPosition(a);return l&Node.DOCUMENT_POSITION_FOLLOWING?-1:l&Node.DOCUMENT_POSITION_PRECEDING?1:0})}function Ee(e,t,{sorted:r=!0,relativeTo:n=null,skipElements:o=[]}={}){var a;let l=(a=Array.isArray(e)?e.length>0?e[0].ownerDocument:document:e==null?void 0:e.ownerDocument)!=null?a:document,s=Array.isArray(e)?r?Jl(e):e:ql(e);o.length>0&&s.length>1&&(s=s.filter(f=>!o.includes(f))),n=n??l.activeElement;let i=(()=>{if(t&5)return 1;if(t&10)return-1;throw new Error("Missing Focus.First, Focus.Previous, Focus.Next or Focus.Last")})(),u=(()=>{if(t&1)return 0;if(t&2)return Math.max(0,s.indexOf(n))-1;if(t&4)return Math.max(0,s.indexOf(n))+1;if(t&8)return s.length-1;throw new Error("Missing Focus.First, Focus.Previous, Focus.Next or Focus.Last")})(),c=t&32?{preventScroll:!0}:{},p=0,g=s.length,h;do{if(p>=g||p+g<=0)return 0;let f=u+p;if(t&16)f=(f+g)%g;else{if(f<0)return 3;if(f>=g)return 1}h=s[f],h==null||h.focus(c),p+=i}while(h!==l.activeElement);return t&6&&Kl(h)&&h.select(),h.hasAttribute("tabindex")||h.setAttribute("tabindex","0"),2}function Ne(e,t,r){$e.isServer||R(n=>{document.addEventListener(e,t,r),n(()=>document.removeEventListener(e,t,r))})}function Yl(e,t,r=k(()=>!0)){function n(a,l){if(!r.value||a.defaultPrevented)return;let s=l(a);if(s===null||!s.getRootNode().contains(s))return;let i=function u(c){return typeof c=="function"?u(c()):Array.isArray(c)||c instanceof Set?c:[c]}(e);for(let u of i){if(u===null)continue;let c=u instanceof HTMLElement?u:Q(u);if(c!=null&&c.contains(s)||a.composed&&a.composedPath().includes(c))return}return!Gl(s,Jt.Loose)&&s.tabIndex!==-1&&a.preventDefault(),t(a,s)}let o=m(null);Ne("mousedown",a=>{var l,s;r.value&&(o.value=((s=(l=a.composedPath)==null?void 0:l.call(a))==null?void 0:s[0])||a.target)},!0),Ne("click",a=>{!o.value||(n(a,()=>o.value),o.value=null)},!0),Ne("blur",a=>n(a,()=>window.document.activeElement instanceof HTMLIFrameElement?window.document.activeElement:null),!0)}var Te=(e=>(e[e.None=1]="None",e[e.Focusable=2]="Focusable",e[e.Hidden=4]="Hidden",e))(Te||{});let Ue=j({name:"Hidden",props:{as:{type:[Object,String],default:"div"},features:{type:Number,default:1}},setup(e,{slots:t,attrs:r}){return()=>{let{features:n,...o}=e,a={"aria-hidden":(n&2)===2?!0:void 0,style:{position:"fixed",top:1,left:1,width:1,height:0,padding:0,margin:-1,overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",borderWidth:"0",...(n&4)===4&&(n&2)!==2&&{display:"none"}}};return H({ourProps:a,theirProps:o,slot:{},attrs:r,slots:t,name:"Hidden"})}}});function Xl(e,t,r){$e.isServer||R(n=>{window.addEventListener(e,t,r),n(()=>window.removeEventListener(e,t,r))})}var we=(e=>(e[e.Forwards=0]="Forwards",e[e.Backwards=1]="Backwards",e))(we||{});function Zl(){let e=m(0);return Xl("keydown",t=>{t.key==="Tab"&&(e.value=t.shiftKey?1:0)}),e}function Yt(e,t,r,n){$e.isServer||R(o=>{e=e??window,e.addEventListener(t,r,n),o(()=>e.removeEventListener(t,r,n))})}function es(e){typeof queueMicrotask=="function"?queueMicrotask(e):Promise.resolve().then(e).catch(t=>setTimeout(()=>{throw t}))}var Xt=(e=>(e[e.None=1]="None",e[e.InitialFocus=2]="InitialFocus",e[e.TabLock=4]="TabLock",e[e.FocusLock=8]="FocusLock",e[e.RestoreFocus=16]="RestoreFocus",e[e.All=30]="All",e))(Xt||{});let ye=Object.assign(j({name:"FocusTrap",props:{as:{type:[Object,String],default:"div"},initialFocus:{type:Object,default:null},features:{type:Number,default:30},containers:{type:Object,default:m(new Set)}},inheritAttrs:!1,setup(e,{attrs:t,slots:r,expose:n}){let o=m(null);n({el:o,$el:o});let a=k(()=>ge(o));ts({ownerDocument:a},k(()=>!!(e.features&16)));let l=rs({ownerDocument:a,container:o,initialFocus:k(()=>e.initialFocus)},k(()=>!!(e.features&2)));ns({ownerDocument:a,container:o,containers:e.containers,previousActiveElement:l},k(()=>!!(e.features&8)));let s=Zl();function i(g){let h=Q(o);h&&(f=>f())(()=>{U(s.value,{[we.Forwards]:()=>{Ee(h,ee.First,{skipElements:[g.relatedTarget]})},[we.Backwards]:()=>{Ee(h,ee.Last,{skipElements:[g.relatedTarget]})}})})}let u=m(!1);function c(g){g.key==="Tab"&&(u.value=!0,requestAnimationFrame(()=>{u.value=!1}))}function p(g){var h;let f=new Set((h=e.containers)==null?void 0:h.value);f.add(o);let w=g.relatedTarget;w instanceof HTMLElement&&w.dataset.headlessuiFocusGuard!=="true"&&(Zt(f,w)||(u.value?Ee(Q(o),U(s.value,{[we.Forwards]:()=>ee.Next,[we.Backwards]:()=>ee.Previous})|ee.WrapAround,{relativeTo:g.target}):g.target instanceof HTMLElement&&pe(g.target)))}return()=>{let g={},h={ref:o,onKeydown:c,onFocusout:p},{features:f,initialFocus:w,containers:P,...C}=e;return T(q,[!!(f&4)&&T(Ue,{as:"button",type:"button","data-headlessui-focus-guard":!0,onFocus:i,features:Te.Focusable}),H({ourProps:h,theirProps:{...t,...C},slot:g,attrs:t,slots:r,name:"FocusTrap"}),!!(f&4)&&T(Ue,{as:"button",type:"button","data-headlessui-focus-guard":!0,onFocus:i,features:Te.Focusable})])}}}),{features:Xt});function ts({ownerDocument:e},t){let r=m(null);function n(){var a;r.value||(r.value=(a=e.value)==null?void 0:a.activeElement)}function o(){!r.value||(pe(r.value),r.value=null)}D(()=>{Y(t,(a,l)=>{a!==l&&(a?n():o())},{immediate:!0})}),X(o)}function rs({ownerDocument:e,container:t,initialFocus:r},n){let o=m(null),a=m(!1);return D(()=>a.value=!0),X(()=>a.value=!1),D(()=>{Y([t,r,n],(l,s)=>{if(l.every((u,c)=>(s==null?void 0:s[c])===u)||!n.value)return;let i=Q(t);!i||es(()=>{var u,c;if(!a.value)return;let p=Q(r),g=(u=e.value)==null?void 0:u.activeElement;if(p){if(p===g){o.value=g;return}}else if(i.contains(g)){o.value=g;return}p?pe(p):Ee(i,ee.First|ee.NoScroll)===Kt.Error&&console.warn("There are no focusable elements inside the "),o.value=(c=e.value)==null?void 0:c.activeElement})},{immediate:!0,flush:"post"})}),o}function ns({ownerDocument:e,container:t,containers:r,previousActiveElement:n},o){var a;Yt((a=e.value)==null?void 0:a.defaultView,"focus",l=>{if(!o.value)return;let s=new Set(r==null?void 0:r.value);s.add(t);let i=n.value;if(!i)return;let u=l.target;u&&u instanceof HTMLElement?Zt(s,u)?(n.value=u,pe(u)):(l.preventDefault(),l.stopPropagation(),pe(i)):pe(n.value)},!0)}function Zt(e,t){var r;for(let n of e)if((r=n.value)!=null&&r.contains(t))return!0;return!1}let bt="body > *",ce=new Set,Z=new Map;function wt(e){e.setAttribute("aria-hidden","true"),e.inert=!0}function _t(e){let t=Z.get(e);!t||(t["aria-hidden"]===null?e.removeAttribute("aria-hidden"):e.setAttribute("aria-hidden",t["aria-hidden"]),e.inert=t.inert)}function as(e,t=m(!0)){R(r=>{if(!t.value||!e.value)return;let n=e.value,o=ge(n);if(o){ce.add(n);for(let a of Z.keys())a.contains(n)&&(_t(a),Z.delete(a));o.querySelectorAll(bt).forEach(a=>{if(a instanceof HTMLElement){for(let l of ce)if(a.contains(l))return;ce.size===1&&(Z.set(a,{"aria-hidden":a.getAttribute("aria-hidden"),inert:a.inert}),wt(a))}}),r(()=>{if(ce.delete(n),ce.size>0)o.querySelectorAll(bt).forEach(a=>{if(a instanceof HTMLElement&&!Z.has(a)){for(let l of ce)if(a.contains(l))return;Z.set(a,{"aria-hidden":a.getAttribute("aria-hidden"),inert:a.inert}),wt(a)}});else for(let a of Z.keys())_t(a),Z.delete(a)})}})}let er=Symbol("ForcePortalRootContext");function os(){return z(er,!1)}let ze=j({name:"ForcePortalRoot",props:{as:{type:[Object,String],default:"template"},force:{type:Boolean,default:!1}},setup(e,{slots:t,attrs:r}){return G(er,e.force),()=>{let{force:n,...o}=e;return H({theirProps:o,ourProps:{},slot:{},slots:t,attrs:r,name:"ForcePortalRoot"})}}});function ls(e){let t=ge(e);if(!t){if(e===null)return null;throw new Error(`[Headless UI]: Cannot find ownerDocument for contextElement: ${e}`)}let r=t.getElementById("headlessui-portal-root");if(r)return r;let n=t.createElement("div");return n.setAttribute("id","headlessui-portal-root"),t.body.appendChild(n)}let tr=j({name:"Portal",props:{as:{type:[Object,String],default:"div"}},setup(e,{slots:t,attrs:r}){let n=m(null),o=k(()=>ge(n)),a=os(),l=z(rr,null),s=m(a===!0||l==null?ls(n.value):l.resolveTarget());return R(()=>{a||l!=null&&(s.value=l.resolveTarget())}),X(()=>{var i,u;let c=(i=o.value)==null?void 0:i.getElementById("headlessui-portal-root");!c||s.value===c&&s.value.children.length<=0&&((u=s.value.parentElement)==null||u.removeChild(s.value))}),()=>{if(s.value===null)return null;let i={ref:n,"data-headlessui-portal":""};return T($t,{to:s.value},H({ourProps:i,theirProps:e,slot:{},attrs:r,slots:t,name:"Portal"}))}}}),rr=Symbol("PortalGroupContext"),ss=j({name:"PortalGroup",props:{as:{type:[Object,String],default:"template"},target:{type:Object,default:null}},setup(e,{attrs:t,slots:r}){let n=Ct({resolveTarget(){return e.target}});return G(rr,n),()=>{let{target:o,...a}=e;return H({theirProps:a,ourProps:{},slot:{},attrs:t,slots:r,name:"PortalGroup"})}}}),nr=Symbol("StackContext");var We=(e=>(e[e.Add=0]="Add",e[e.Remove=1]="Remove",e))(We||{});function is(){return z(nr,()=>{})}function us({type:e,enabled:t,element:r,onUpdate:n}){let o=is();function a(...l){n==null||n(...l),o(...l)}D(()=>{Y(t,(l,s)=>{l?a(0,e,r):s===!0&&a(1,e,r)},{immediate:!0,flush:"sync"})}),X(()=>{t.value&&a(1,e,r)}),G(nr,a)}let ar=Symbol("DescriptionContext");function ds(){let e=z(ar,null);if(e===null)throw new Error("Missing parent");return e}function cs({slot:e=m({}),name:t="Description",props:r={}}={}){let n=m([]);function o(a){return n.value.push(a),()=>{let l=n.value.indexOf(a);l!==-1&&n.value.splice(l,1)}}return G(ar,{register:o,slot:e,name:t,props:r}),k(()=>n.value.length>0?n.value.join(" "):void 0)}j({name:"Description",props:{as:{type:[Object,String],default:"p"},id:{type:String,default:()=>`headlessui-description-${ie()}`}},setup(e,{attrs:t,slots:r}){let n=ds();return D(()=>X(n.register(e.id))),()=>{let{name:o="Description",slot:a=m({}),props:l={}}=n,{id:s,...i}=e,u={...Object.entries(l).reduce((c,[p,g])=>Object.assign(c,{[p]:S(g)}),{}),id:s};return H({ourProps:u,theirProps:i,slot:a.value,attrs:t,slots:r,name:o})}}});function Ye(){let e=[],t=[],r={enqueue(n){t.push(n)},addEventListener(n,o,a,l){return n.addEventListener(o,a,l),r.add(()=>n.removeEventListener(o,a,l))},requestAnimationFrame(...n){let o=requestAnimationFrame(...n);r.add(()=>cancelAnimationFrame(o))},nextFrame(...n){r.requestAnimationFrame(()=>{r.requestAnimationFrame(...n)})},setTimeout(...n){let o=setTimeout(...n);r.add(()=>clearTimeout(o))},add(n){e.push(n)},dispose(){for(let n of e.splice(0))n()},async workQueue(){for(let n of t.splice(0))await n()}};return r}function fs(){return/iPhone/gi.test(window.navigator.platform)||/Mac/gi.test(window.navigator.platform)&&window.navigator.maxTouchPoints>0}var ps=(e=>(e[e.Open=0]="Open",e[e.Closed=1]="Closed",e))(ps||{});let qe=Symbol("DialogContext");function ke(e){let t=z(qe,null);if(t===null){let r=new Error(`<${e} /> is missing a parent component.`);throw Error.captureStackTrace&&Error.captureStackTrace(r,ke),r}return t}let Se="DC8F892D-2EBD-447C-A4C8-A03058436FF4",vs=j({name:"Dialog",inheritAttrs:!1,props:{as:{type:[Object,String],default:"div"},static:{type:Boolean,default:!1},unmount:{type:Boolean,default:!0},open:{type:[Boolean,String],default:Se},initialFocus:{type:Object,default:null},id:{type:String,default:()=>`headlessui-dialog-${ie()}`}},emits:{close:e=>!0},setup(e,{emit:t,attrs:r,slots:n,expose:o}){var a;let l=m(!1);D(()=>{l.value=!0});let s=m(0),i=Je(),u=k(()=>e.open===Se&&i!==null?U(i.value,{[se.Open]:!0,[se.Closed]:!1}):e.open),c=m(new Set),p=m(null),g=m(null),h=k(()=>ge(p));if(o({el:p,$el:p}),!(e.open!==Se||i!==null))throw new Error("You forgot to provide an `open` prop to the `Dialog`.");if(typeof u.value!="boolean")throw new Error(`You provided an \`open\` prop to the \`Dialog\`, but the value is not a boolean. Received: ${u.value===Se?void 0:e.open}`);let f=k(()=>l.value&&u.value?0:1),w=k(()=>f.value===0),P=k(()=>s.value>1),C=z(qe,null)!==null,F=k(()=>P.value?"parent":"leaf");as(p,k(()=>P.value?w.value:!1)),us({type:"Dialog",enabled:k(()=>f.value===0),element:p,onUpdate:(v,b,_)=>{if(b==="Dialog")return U(v,{[We.Add](){c.value.add(_),s.value+=1},[We.Remove](){c.value.delete(_),s.value-=1}})}});let N=cs({name:"DialogDescription",slot:k(()=>({open:u.value}))}),B=m(null),A={titleId:B,panelRef:m(null),dialogState:f,setTitleId(v){B.value!==v&&(B.value=v)},close(){t("close",!1)}};G(qe,A);function W(){var v,b,_;return[...Array.from((b=(v=h.value)==null?void 0:v.querySelectorAll("html > *, body > *, [data-headlessui-portal]"))!=null?b:[]).filter(O=>!(O===document.body||O===document.head||!(O instanceof HTMLElement)||O.contains(Q(g))||A.panelRef.value&&O.contains(A.panelRef.value))),(_=A.panelRef.value)!=null?_:p.value]}return Yl(()=>W(),(v,b)=>{A.close(),De(()=>b==null?void 0:b.focus())},k(()=>f.value===0&&!P.value)),Yt((a=h.value)==null?void 0:a.defaultView,"keydown",v=>{v.defaultPrevented||v.key===Gt.Escape&&f.value===0&&(P.value||(v.preventDefault(),v.stopPropagation(),A.close()))}),R(v=>{var b;if(f.value!==0||C)return;let _=h.value;if(!_)return;let O=Ye(),L=window.pageYOffset;function ue(V,I,K){let he=V.style.getPropertyValue(I);return Object.assign(V.style,{[I]:K}),O.add(()=>{Object.assign(V.style,{[I]:he})})}let de=_==null?void 0:_.documentElement,Le=((b=_.defaultView)!=null?b:window).innerWidth-de.clientWidth;if(ue(de,"overflow","hidden"),Le>0){let V=de.clientWidth-de.offsetWidth,I=Le-V;ue(de,"paddingRight",`${I}px`)}if(fs()){ue(_.body,"marginTop",`-${L}px`),window.scrollTo(0,0);let V=null;O.addEventListener(_,"click",I=>{if(I.target instanceof HTMLElement)try{let K=I.target.closest("a");if(!K)return;let{hash:he}=new URL(K.href),me=_.querySelector(he);me&&!W().some(ir=>ir.contains(me))&&(V=me)}catch{}},!0),O.addEventListener(_,"touchmove",I=>{I.target instanceof HTMLElement&&!W().some(K=>K.contains(I.target))&&I.preventDefault()},{passive:!1}),O.add(()=>{window.scrollTo(0,window.pageYOffset+L),V&&V.isConnected&&(V.scrollIntoView({block:"nearest"}),V=null)})}v(O.dispose)}),R(v=>{if(f.value!==0)return;let b=Q(p);if(!b)return;let _=new IntersectionObserver(O=>{for(let L of O)L.boundingClientRect.x===0&&L.boundingClientRect.y===0&&L.boundingClientRect.width===0&&L.boundingClientRect.height===0&&A.close()});_.observe(b),v(()=>_.disconnect())}),()=>{let{id:v,open:b,initialFocus:_,...O}=e,L={...r,ref:p,id:v,role:"dialog","aria-modal":f.value===0?!0:void 0,"aria-labelledby":B.value,"aria-describedby":N.value},ue={open:f.value===0};return T(ze,{force:!0},()=>[T(tr,()=>T(ss,{target:p.value},()=>T(ze,{force:!1},()=>T(ye,{initialFocus:_,containers:c,features:w.value?U(F.value,{parent:ye.features.RestoreFocus,leaf:ye.features.All&~ye.features.FocusLock}):ye.features.None},()=>H({ourProps:L,theirProps:O,slot:ue,attrs:r,slots:n,visible:f.value===0,features:Ae.RenderStrategy|Ae.Static,name:"Dialog"}))))),T(Ue,{features:Te.Hidden,ref:g})])}}});j({name:"DialogOverlay",props:{as:{type:[Object,String],default:"div"},id:{type:String,default:()=>`headlessui-dialog-overlay-${ie()}`}},setup(e,{attrs:t,slots:r}){let n=ke("DialogOverlay");function o(a){a.target===a.currentTarget&&(a.preventDefault(),a.stopPropagation(),n.close())}return()=>{let{id:a,...l}=e;return H({ourProps:{id:a,"aria-hidden":!0,onClick:o},theirProps:l,slot:{open:n.dialogState.value===0},attrs:t,slots:r,name:"DialogOverlay"})}}});j({name:"DialogBackdrop",props:{as:{type:[Object,String],default:"div"},id:{type:String,default:()=>`headlessui-dialog-backdrop-${ie()}`}},inheritAttrs:!1,setup(e,{attrs:t,slots:r,expose:n}){let o=ke("DialogBackdrop"),a=m(null);return n({el:a,$el:a}),D(()=>{if(o.panelRef.value===null)throw new Error("A component is being used, but a component is missing.")}),()=>{let{id:l,...s}=e,i={id:l,ref:a,"aria-hidden":!0};return T(ze,{force:!0},()=>T(tr,()=>H({ourProps:i,theirProps:{...t,...s},slot:{open:o.dialogState.value===0},attrs:t,slots:r,name:"DialogBackdrop"})))}}});let gs=j({name:"DialogPanel",props:{as:{type:[Object,String],default:"div"},id:{type:String,default:()=>`headlessui-dialog-panel-${ie()}`}},setup(e,{attrs:t,slots:r,expose:n}){let o=ke("DialogPanel");n({el:o.panelRef,$el:o.panelRef});function a(l){l.stopPropagation()}return()=>{let{id:l,...s}=e,i={id:l,ref:o.panelRef,onClick:a};return H({ourProps:i,theirProps:s,slot:{open:o.dialogState.value===0},attrs:t,slots:r,name:"DialogPanel"})}}});j({name:"DialogTitle",props:{as:{type:[Object,String],default:"h2"},id:{type:String,default:()=>`headlessui-dialog-title-${ie()}`}},setup(e,{attrs:t,slots:r}){let n=ke("DialogTitle");return D(()=>{n.setTitleId(e.id),X(()=>n.setTitleId(null))}),()=>{let{id:o,...a}=e;return H({ourProps:{id:o},theirProps:a,slot:{open:n.dialogState.value===0},attrs:t,slots:r,name:"DialogTitle"})}}});function hs(e){let t={called:!1};return(...r)=>{if(!t.called)return t.called=!0,e(...r)}}function Ie(e,...t){e&&t.length>0&&e.classList.add(...t)}function Oe(e,...t){e&&t.length>0&&e.classList.remove(...t)}var Ge=(e=>(e.Finished="finished",e.Cancelled="cancelled",e))(Ge||{});function ms(e,t){let r=Ye();if(!e)return r.dispose;let{transitionDuration:n,transitionDelay:o}=getComputedStyle(e),[a,l]=[n,o].map(s=>{let[i=0]=s.split(",").filter(Boolean).map(u=>u.includes("ms")?parseFloat(u):parseFloat(u)*1e3).sort((u,c)=>c-u);return i});return a!==0?r.setTimeout(()=>t("finished"),a+l):t("finished"),r.add(()=>t("cancelled")),r.dispose}function xt(e,t,r,n,o,a){let l=Ye(),s=a!==void 0?hs(a):()=>{};return Oe(e,...o),Ie(e,...t,...r),l.nextFrame(()=>{Oe(e,...r),Ie(e,...n),l.add(ms(e,i=>(Oe(e,...n,...t),Ie(e,...o),s(i))))}),l.add(()=>Oe(e,...t,...r,...n,...o)),l.add(()=>s("cancelled")),l.dispose}function ae(e=""){return e.split(" ").filter(t=>t.trim().length>1)}let Xe=Symbol("TransitionContext");var ys=(e=>(e.Visible="visible",e.Hidden="hidden",e))(ys||{});function bs(){return z(Xe,null)!==null}function ws(){let e=z(Xe,null);if(e===null)throw new Error("A is used but it is missing a parent .");return e}function _s(){let e=z(Ze,null);if(e===null)throw new Error("A is used but it is missing a parent .");return e}let Ze=Symbol("NestingContext");function Be(e){return"children"in e?Be(e.children):e.value.filter(({state:t})=>t==="visible").length>0}function or(e){let t=m([]),r=m(!1);D(()=>r.value=!0),X(()=>r.value=!1);function n(a,l=te.Hidden){let s=t.value.findIndex(({id:i})=>i===a);s!==-1&&(U(l,{[te.Unmount](){t.value.splice(s,1)},[te.Hidden](){t.value[s].state="hidden"}}),!Be(t)&&r.value&&(e==null||e()))}function o(a){let l=t.value.find(({id:s})=>s===a);return l?l.state!=="visible"&&(l.state="visible"):t.value.push({id:a,state:"visible"}),()=>n(a,te.Unmount)}return{children:t,register:o,unregister:n}}let lr=Ae.RenderStrategy,Pe=j({props:{as:{type:[Object,String],default:"div"},show:{type:[Boolean],default:null},unmount:{type:[Boolean],default:!0},appear:{type:[Boolean],default:!1},enter:{type:[String],default:""},enterFrom:{type:[String],default:""},enterTo:{type:[String],default:""},entered:{type:[String],default:""},leave:{type:[String],default:""},leaveFrom:{type:[String],default:""},leaveTo:{type:[String],default:""}},emits:{beforeEnter:()=>!0,afterEnter:()=>!0,beforeLeave:()=>!0,afterLeave:()=>!0},setup(e,{emit:t,attrs:r,slots:n,expose:o}){if(!bs()&&Vl())return()=>T(sr,{...e,onBeforeEnter:()=>t("beforeEnter"),onAfterEnter:()=>t("afterEnter"),onBeforeLeave:()=>t("beforeLeave"),onAfterLeave:()=>t("afterLeave")},n);let a=m(null),l=m("visible"),s=k(()=>e.unmount?te.Unmount:te.Hidden);o({el:a,$el:a});let{show:i,appear:u}=ws(),{register:c,unregister:p}=_s(),g={value:!0},h=ie(),f={value:!1},w=or(()=>{f.value||(l.value="hidden",p(h),t("afterLeave"))});D(()=>{let b=c(h);X(b)}),R(()=>{if(s.value===te.Hidden&&h){if(i&&l.value!=="visible"){l.value="visible";return}U(l.value,{hidden:()=>p(h),visible:()=>c(h)})}});let P=ae(e.enter),C=ae(e.enterFrom),F=ae(e.enterTo),N=ae(e.entered),B=ae(e.leave),A=ae(e.leaveFrom),W=ae(e.leaveTo);D(()=>{R(()=>{if(l.value==="visible"){let b=Q(a);if(b instanceof Comment&&b.data==="")throw new Error("Did you forget to passthrough the `ref` to the actual DOM node?")}})});function v(b){let _=g.value&&!u.value,O=Q(a);!O||!(O instanceof HTMLElement)||_||(f.value=!0,i.value&&t("beforeEnter"),i.value||t("beforeLeave"),b(i.value?xt(O,P,C,F,N,L=>{f.value=!1,L===Ge.Finished&&t("afterEnter")}):xt(O,B,A,W,N,L=>{f.value=!1,L===Ge.Finished&&(Be(w)||(l.value="hidden",p(h),t("afterLeave")))})))}return D(()=>{Y([i],(b,_,O)=>{v(O),g.value=!1},{immediate:!0})}),G(Ze,w),Ul(k(()=>U(l.value,{visible:se.Open,hidden:se.Closed}))),()=>{let{appear:b,show:_,enter:O,enterFrom:L,enterTo:ue,entered:de,leave:Le,leaveFrom:V,leaveTo:I,...K}=e,he={ref:a},me={...K,...u&&i&&$e.isServer?{class:M([K.class,...P,...C])}:{}};return H({theirProps:me,ourProps:he,slot:{},slots:n,attrs:r,features:lr,visible:l.value==="visible",name:"TransitionChild"})}}}),xs=Pe,sr=j({inheritAttrs:!1,props:{as:{type:[Object,String],default:"div"},show:{type:[Boolean],default:null},unmount:{type:[Boolean],default:!0},appear:{type:[Boolean],default:!1},enter:{type:[String],default:""},enterFrom:{type:[String],default:""},enterTo:{type:[String],default:""},entered:{type:[String],default:""},leave:{type:[String],default:""},leaveFrom:{type:[String],default:""},leaveTo:{type:[String],default:""}},emits:{beforeEnter:()=>!0,afterEnter:()=>!0,beforeLeave:()=>!0,afterLeave:()=>!0},setup(e,{emit:t,attrs:r,slots:n}){let o=Je(),a=k(()=>e.show===null&&o!==null?U(o.value,{[se.Open]:!0,[se.Closed]:!1}):e.show);R(()=>{if(![!0,!1].includes(a.value))throw new Error('A is used but it is missing a `:show="true | false"` prop.')});let l=m(a.value?"visible":"hidden"),s=or(()=>{l.value="hidden"}),i=m(!0),u={show:a,appear:k(()=>e.appear||!i.value)};return D(()=>{R(()=>{i.value=!1,a.value?l.value="visible":Be(s)||(l.value="hidden")})}),G(Ze,s),G(Xe,u),()=>{let c=qt(e,["show","appear","unmount","onBeforeEnter","onBeforeLeave","onAfterEnter","onAfterLeave"]),p={unmount:e.unmount};return H({ourProps:{...p,as:"template"},theirProps:{},slot:{},slots:{...n,default:()=>[T(xs,{onBeforeEnter:()=>t("beforeEnter"),onAfterEnter:()=>t("afterEnter"),onBeforeLeave:()=>t("beforeLeave"),onAfterLeave:()=>t("afterLeave"),...r,...p,...c},n.default)]},attrs:{},features:lr,visible:l.value==="visible",name:"Transition"})}}});const $s=d("div",{class:"fixed inset-0 bg-gray-600 bg-opacity-75"},null,-1),ks={class:"fixed inset-0 z-40 flex"},Ss={class:"absolute top-0 right-0 -mr-12 pt-2"},Os=d("span",{class:"sr-only"},"Close sidebar",-1),Es={class:"flex flex-shrink-0 items-center px-4"},Ps={class:"mt-5 h-0 flex-1 overflow-y-auto"},Cs={class:"space-y-1 px-2"},Ms=["onClick"],As={key:0,class:"absolute right-0 mr-2"},Ts={key:1,class:"absolute right-0 mr-2"},Ds=d("div",{class:"w-14 flex-shrink-0","aria-hidden":"true"},null,-1),Fs={__name:"MobileMenu",props:{navigation:Object,sidebarOpen:Boolean},setup(e){return(t,r)=>(y(),J(S(sr),{as:"template",show:e.sidebarOpen},{default:E(()=>[$(S(vs),{as:"div",class:"relative z-40 md:hidden",onClose:r[1]||(r[1]=n=>t.$emit("toggleMobileMenu",!1)),onBlur:r[2]||(r[2]=n=>e.sidebarOpen!=!0),tabindex:"-1"},{default:E(()=>[$(S(Pe),{as:"template",enter:"transition-opacity ease-linear duration-300","enter-from":"opacity-0","enter-to":"opacity-100",leave:"transition-opacity ease-linear duration-300","leave-from":"opacity-100","leave-to":"opacity-0"},{default:E(()=>[$s]),_:1}),d("div",ks,[$(S(Pe),{as:"template",enter:"transition ease-in-out duration-300 transform","enter-from":"-translate-x-full","enter-to":"translate-x-0",leave:"transition ease-in-out duration-300 transform","leave-from":"translate-x-0","leave-to":"-translate-x-full"},{default:E(()=>[$(S(gs),{class:"relative flex w-full max-w-xs flex-1 flex-col bg-indigo-700 pt-5 pb-4"},{default:E(()=>[$(S(Pe),{as:"template",enter:"ease-in-out duration-300","enter-from":"opacity-0","enter-to":"opacity-100",leave:"ease-in-out duration-300","leave-from":"opacity-100","leave-to":"opacity-0"},{default:E(()=>[d("div",Ss,[d("button",{type:"button",class:"ml-1 flex h-10 w-10 items-center justify-center rounded-full focus:outline-none focus:ring-2 focus:ring-inset focus:ring-white",onClick:r[0]||(r[0]=n=>t.$emit("toggleMobileMenu",!1))},[Os,$(S(ro),{class:"h-6 w-6 text-white","aria-hidden":"true"})])])]),_:1}),d("div",Es,[$(Tt,{class:"h-8 auto"})]),d("div",Ps,[d("nav",Cs,[(y(!0),x(q,null,oe(e.navigation,n=>{var o,a,l;return y(),x("div",{key:n.name,class:M([n.current?"bg-indigo-600 text-white p-0.5 rounded-sm":""]),onClick:s=>t.$emit("toggleCurrent",n)},[d("div",{class:M([n.current?"bg-indigo-800 text-white":"text-indigo-100 hover:bg-indigo-600","group flex items-center px-2 py-2 text-sm font-medium rounded-md"])},[(y(),J(fe(n.icon),{class:"mr-3 h-6 w-6 flex-shrink-0 text-indigo-300","aria-hidden":"true"})),re(" "+le(n.name)+" ",1),n.current&&((o=n==null?void 0:n.children)==null?void 0:o.length)>0?(y(),x("span",As,[$(S(Ft),{class:"mr-3 h-4 w-4 flex-shrink-0 text-indigo-300","aria-hidden":"true"})])):!n.current&&((a=n==null?void 0:n.children)==null?void 0:a.length)>0?(y(),x("span",Ts,[$(S(Bt),{class:"mr-3 h-4 w-4 flex-shrink-0 text-indigo-300","aria-hidden":"true"})])):_e("",!0)],2),Fe(d("div",{class:M(["p-2 my-1 mx-3 border border-indigo-600 rounded-md bg-indigo-700 shadow-md",{"transition duration-500 ease-in-out":n.current}])},[(y(!0),x(q,null,oe(n.children,s=>(y(),x("div",{"aria-level":"childreen",key:s.name,class:"px-2 py-1"},[$(S(be),{href:t.route(s.route),class:M([[s.current?"bg-indigo-800 text-white":"text-indigo-100 bg-indigo-600 hover:bg-indigo-600"],"px-1 py-1.5 group flex items-center text-sm font-medium rounded-md"])},{default:E(()=>[(y(),J(fe(s.icon),{class:"mr-3 h-4 w-4 flex-shrink-0 text-indigo-300","aria-hidden":"true"})),re(" "+le(s.name),1)]),_:2},1032,["href","class"])]))),128))],2),[[Ke,n.current&&((l=n==null?void 0:n.children)==null?void 0:l.length)>0]])],10,Ms)}),128))])])]),_:1})]),_:1}),Ds])]),_:1})]),_:1},8,["show"]))}},Bs=["href"],Ls={key:0,class:"fixed top-0 left-0 right-0 bottom-0 w-full h-screen z-50 overflow-hidden bg-gray-900 opacity-75 flex flex-col items-center justify-center"},js={class:"w-10 h-10"},Ns={class:"py-6 bg-white dark:bg-gray-900 dark:text-white"},Is={key:0,class:"mx-auto max-w-7xl px-4 sm:px-6 md:px-8"},Rs={class:"mx-auto max-w-7xl px-4 sm:px-6 md:px-8"},Hs={class:"py-4"},Vs={class:"h-full rounded-lg border-4 border-dashed border-gray-200"},Ks={__name:"AuthenticatedLayout",setup(e){const t=m([{name:"Dashboard",route:"dashboard",icon:to,current:route().current("dashboard")},{name:"User",route:"user.index",icon:at,current:route().current("user.index")||route().current("user.create")||route().current("user.edit")||route().current("user.show"),children:[{name:"All User",route:"user.index",icon:at,current:route().current("user.index")},{name:"Create",route:"user.create",icon:rt,current:route().current("user.create")}]},{name:"Role",route:"role.index",icon:nt,current:route().current("role.index")||route().current("role.create")||route().current("role.edit")||route().current("role.show"),children:[{name:"Role",route:"role.index",icon:nt,current:route().current("role.index")},{name:"Create",route:"role.create",icon:rt,current:route().current("role.create")}]},{name:"Settings",route:"options.index",icon:tt,current:route().current("options.index"),children:[{name:"Settings",route:"options.index",icon:tt,current:route().current("options.index")}]}]),r=m(!1),n=m(!1),o=m(!1);function a(s){n&&s.route.split(".")[0]!=route().current().split(".")[0]&&(s.current=!s.current)}function l(s=!0){o.value=s}return D(()=>{l()}),(s,i)=>(y(),x(q,null,[$(S(da),null,{default:E(()=>[d("link",{rel:"icon",type:"image/svg+xml",href:s.$page.props.global.options.fav_icon},null,8,Bs)]),_:1}),d("div",null,[o.value?_e("",!0):(y(),x("div",Ls,[d("span",js,[$(xa)])])),$(ca),d("div",null,[$(Fs,{sidebarOpen:r.value,navigation:t.value,onToggleMobileMenu:i[0]||(i[0]=u=>r.value=!r.value),onToggleCurrent:a},null,8,["sidebarOpen","navigation"]),$(po,{navigation:t.value,isOpenSidebar:n.value,onToggleCurrent:a},null,8,["navigation","isOpenSidebar"]),d("div",{class:M(["flex flex-1 flex-col dark:bg-gray-900 dark:text-white",n.value?"md:pl-64":"md:pl-20"])},[$(Nl,{onToggleMenu:i[1]||(i[1]=u=>(r.value=!r.value,n.value=!n.value)),isOpenSidebar:n.value},null,8,["isOpenSidebar"]),d("main",null,[d("div",Ns,[s.$slots.header?(y(),x("div",Is,[xe(s.$slots,"header")])):_e("",!0),d("div",Rs,[d("div",Hs,[d("div",Vs,[xe(s.$slots,"default")])])])])])],2)])])],64))}};export{Ks as _,Dt as a}; diff --git a/public/build/assets/AuthenticatedLayout-bb1b77c9.js b/public/build/assets/AuthenticatedLayout-bb1b77c9.js deleted file mode 100644 index b7dcf67..0000000 --- a/public/build/assets/AuthenticatedLayout-bb1b77c9.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as K,u as Q,L as X}from"./DarkMode-9ce27e49.js";import{a as E,_ as Y}from"./Toast-95869260.js";import{o as t,g as o,d as r,l as R,a as l,w as d,b as u,L as _,F as k,m as $,n as m,j as x,c as g,G as v,e as w,t as M,h as j,y as W,r as q,k as B,i as Z,p as L,z as ee,H as re}from"./app-a07534fc.js";import{_ as te}from"./Dropdown-47fab125.js";import{_ as ne}from"./_plugin-vue_export-helper-c27b6911.js";import{U as oe,h as z,G as ie,S as ae}from"./transition-26ae2105.js";import{r as se}from"./use-root-containers-d6d195ba.js";import{r as A}from"./EnvelopeIcon-fcce7294.js";function D(i,n){return t(),o("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true"},[r("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 6.042A8.967 8.967 0 006 3.75c-1.052 0-2.062.18-3 .512v14.25A8.987 8.987 0 016 18c2.305 0 4.408.867 6 2.292m0-14.25a8.966 8.966 0 016-2.292c1.052 0 2.062.18 3 .512v14.25A8.987 8.987 0 0018 18a8.967 8.967 0 00-6 2.292m0-14.25v14.25"})])}function I(i,n){return t(),o("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true"},[r("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M19.5 5.25l-7.5 7.5-7.5-7.5m15 6l-7.5 7.5-7.5-7.5"})])}function J(i,n){return t(),o("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true"},[r("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M11.25 4.5l7.5 7.5-7.5 7.5m-6-15l7.5 7.5-7.5 7.5"})])}function y(i,n){return t(),o("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true"},[r("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M4.5 12a7.5 7.5 0 0015 0m-15 0a7.5 7.5 0 1115 0m-15 0H3m16.5 0H21m-1.5 0H12m-8.457 3.077l1.41-.513m14.095-5.13l1.41-.513M5.106 17.785l1.15-.964m11.49-9.642l1.149-.964M7.501 19.795l.75-1.3m7.5-12.99l.75-1.3m-6.063 16.658l.26-1.477m2.605-14.772l.26-1.477m0 17.726l-.26-1.477M10.698 4.614l-.26-1.477M16.5 19.794l-.75-1.299M7.5 4.205L12 12m6.894 5.785l-1.149-.964M6.256 7.178l-1.15-.964m15.352 8.864l-1.41-.513M4.954 9.435l-1.41-.514M12.002 12l-3.75 6.495"})])}function de(i,n){return t(),o("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true"},[r("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M2.25 12l8.954-8.955c.44-.439 1.152-.439 1.591 0L21.75 12M4.5 9.75v10.125c0 .621.504 1.125 1.125 1.125H9.75v-4.875c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21h4.125c.621 0 1.125-.504 1.125-1.125V9.75M8.25 21h8.25"})])}function T(i,n){return t(),o("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true"},[r("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 18v-5.25m0 0a6.01 6.01 0 001.5-.189m-1.5.189a6.01 6.01 0 01-1.5-.189m3.75 7.478a12.06 12.06 0 01-4.5 0m3.75 2.383a14.406 14.406 0 01-3 0M14.25 18v-.192c0-.983.658-1.823 1.508-2.316a7.5 7.5 0 10-7.517 0c.85.493 1.509 1.333 1.509 2.316V18"})])}function N(i,n){return t(),o("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true"},[r("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M8.25 6.75h12M8.25 12h12m-12 5.25h12M3.75 6.75h.007v.008H3.75V6.75zm.375 0a.375.375 0 11-.75 0 .375.375 0 01.75 0zM3.75 12h.007v.008H3.75V12zm.375 0a.375.375 0 11-.75 0 .375.375 0 01.75 0zm-.375 5.25h.007v.008H3.75v-.008zm.375 0a.375.375 0 11-.75 0 .375.375 0 01.75 0z"})])}function b(i,n){return t(),o("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true"},[r("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 9v6m3-3H9m12 0a9 9 0 11-18 0 9 9 0 0118 0z"})])}function F(i,n){return t(),o("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true"},[r("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M2.25 3h1.386c.51 0 .955.343 1.087.835l.383 1.437M7.5 14.25a3 3 0 00-3 3h15.75m-12.75-3h11.218c1.121-2.3 2.1-4.684 2.924-7.138a60.114 60.114 0 00-16.536-1.84M7.5 14.25L5.106 5.272M6 20.25a.75.75 0 11-1.5 0 .75.75 0 011.5 0zm12.75 0a.75.75 0 11-1.5 0 .75.75 0 011.5 0z"})])}function G(i,n){return t(),o("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true"},[r("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M18 18.72a9.094 9.094 0 003.741-.479 3 3 0 00-4.682-2.72m.94 3.198l.001.031c0 .225-.012.447-.037.666A11.944 11.944 0 0112 21c-2.17 0-4.207-.576-5.963-1.584A6.062 6.062 0 016 18.719m12 0a5.971 5.971 0 00-.941-3.197m0 0A5.995 5.995 0 0012 12.75a5.995 5.995 0 00-5.058 2.772m0 0a3 3 0 00-4.681 2.72 8.986 8.986 0 003.74.477m.94-3.197a5.971 5.971 0 00-.94 3.197M15 6.75a3 3 0 11-6 0 3 3 0 016 0zm6 3a2.25 2.25 0 11-4.5 0 2.25 2.25 0 014.5 0zm-13.5 0a2.25 2.25 0 11-4.5 0 2.25 2.25 0 014.5 0z"})])}function U(i,n){return t(),o("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true"},[r("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15 19.128a9.38 9.38 0 002.625.372 9.337 9.337 0 004.121-.952 4.125 4.125 0 00-7.533-2.493M15 19.128v-.003c0-1.113-.285-2.16-.786-3.07M15 19.128v.106A12.318 12.318 0 018.624 21c-2.331 0-4.512-.645-6.374-1.766l-.001-.109a6.375 6.375 0 0111.964-3.07M12 6.375a3.375 3.375 0 11-6.75 0 3.375 3.375 0 016.75 0zm8.25 2.25a2.625 2.625 0 11-5.25 0 2.625 2.625 0 015.25 0z"})])}const le={class:"flex flex-grow flex-col overflow-y-auto bg-indigo-700 pt-5"},ue={class:"flex flex-shrink-0 items-center px-4"},ce={class:"mt-5 flex flex-1 flex-col"},me={class:"flex-1 space-y-1 px-2 pb-4"},ge={key:0},he=["onClick"],pe={key:0,class:"absolute right-0 top-3 cursor-pointer text-indigo-300 hover:text-indigo-50 hover:scale-110"},fe={key:1},xe={__name:"DesktopMenu",props:{navigation:Object,isOpenSidebar:Boolean},setup(i){return(n,s)=>{const c=R("can");return t(),o("div",{class:m(["hidden md:fixed md:inset-y-0 md:flex md:flex-col",i.isOpenSidebar?"md:w-64":"md:w-20"])},[r("div",le,[r("div",ue,[l(u(_),{href:n.route("dashboard")},{default:d(()=>[l(E,{class:"block h-12 w-auto fill-current text-gray-800 dark:text-gray-200"})]),_:1},8,["href"])]),r("div",ce,[r("nav",me,[i.isOpenSidebar?(t(),o("div",ge,[(t(!0),o(k,null,$(i.navigation,e=>{var h,f,p;return t(),o("div",{key:e.name,class:m([[e.current?"bg-indigo-600 text-white p-0.5 rounded-sm":""],"relative"]),onClick:a=>n.$emit("toggleSidebar",e)},[x((t(),g(u(_),{href:n.route(e.route),class:m([e.current?"bg-indigo-800 text-white":"text-indigo-100 hover:bg-indigo-600","group flex items-center px-2 py-2 text-sm font-medium rounded-md"])},{default:d(()=>[(t(),g(v(e.icon),{class:"mr-3 h-6 w-6 flex-shrink-0 text-indigo-300","aria-hidden":"true"})),w(" "+M(e.name),1)]),_:2},1032,["href","class"])),[[c,e.permission]]),((h=e==null?void 0:e.children)==null?void 0:h.length)>0?(t(),o("span",pe,[(t(),g(v(e.current&&((f=e==null?void 0:e.children)==null?void 0:f.length)>0?u(I):u(J)),{class:"mr-3 h-4 w-4 flex-shrink-0","aria-hidden":"true"}))])):j("",!0),x(r("div",{class:m(["p-2 my-1 mx-3 border border-indigo-600 rounded-md bg-indigo-700 shadow-md",{"transition duration-500 ease-in-out":e.current}])},[(t(!0),o(k,null,$(e.children,a=>(t(),o("div",{"aria-level":"childreen",key:a.name,class:"px-2 py-1"},[x((t(),g(u(_),{href:n.route(a.route),class:m([[a.current?"bg-indigo-800 text-white":"text-indigo-100 bg-indigo-600 hover:bg-indigo-600"],"px-1 py-1.5 group flex items-center text-sm font-medium rounded-md"])},{default:d(()=>[(t(),g(v(a.icon),{class:"mr-3 h-4 w-4 flex-shrink-0 text-indigo-300","aria-hidden":"true"})),w(" "+M(a.name),1)]),_:2},1032,["href","class"])),[[c,a.permission]])]))),128))],2),[[W,e.current&&((p=e==null?void 0:e.children)==null?void 0:p.length)>0]])],10,he)}),128))])):(t(),o("div",fe,[(t(!0),o(k,null,$(i.navigation,e=>(t(),o("div",{key:e.name,class:m([e.current?"bg-indigo-600 text-white p-0.5 rounded-sm my-2":""])},[x((t(),g(u(_),{href:n.route(e.route),class:m([e.current?"bg-indigo-800 text-white":"text-indigo-100 hover:bg-indigo-600","group flex items-center px-3 py-3 text-sm font-medium rounded-md"])},{default:d(()=>[(t(),g(v(e.icon),{class:"mr-3 h-8 w-8 flex-shrink-0 text-indigo-300","aria-hidden":"true"}))]),_:2},1032,["href","class"])),[[c,e.permission]])],2))),128))]))])])])],2)}}},ve={};function we(i,n){const s=q("Link");return t(),g(s,{class:"block w-full px-4 py-2 text-left text-sm leading-5 text-gray-700 dark:text-gray-300 hover:bg-gray-100 dark:hover:bg-gray-800 focus:outline-none focus:bg-gray-100 dark:focus:bg-gray-800 transition duration-150 ease-in-out"},{default:d(()=>[B(i.$slots,"default")]),_:3})}const P=ne(ve,[["render",we]]),be={__name:"NavLink",props:["href","active"],setup(i){const n=i,s=Z(()=>n.active?"inline-flex items-center px-1 pt-1 border-b-2 border-indigo-400 dark:border-indigo-600 text-sm font-medium leading-5 text-gray-900 dark:text-gray-100 focus:outline-none focus:border-indigo-700 transition duration-150 ease-in-out":"inline-flex items-center px-1 pt-1 border-b-2 border-transparent text-sm font-medium leading-5 text-gray-500 dark:text-gray-400 hover:text-gray-700 dark:hover:text-gray-300 hover:border-gray-300 dark:hover:border-gray-700 focus:outline-none focus:text-gray-700 dark:focus:text-gray-300 focus:border-gray-300 dark:focus:border-gray-700 transition duration-150 ease-in-out");return(c,e)=>{const h=q("Link");return t(),g(h,{href:i.href,class:m(s.value)},{default:d(()=>[B(c.$slots,"default")]),_:3},8,["href","class"])}}},_e={class:"bg-white dark:bg-gray-800 border-b border-gray-100 dark:border-gray-700"},ke={class:"max-w-full mx-auto px-4 sm:px-6 lg:px-8"},ye={class:"flex justify-between h-16"},$e={class:"flex"},Me={class:"shrink-0 flex items-center"},Ce={class:"h-6 w-6",stroke:"currentColor",fill:"none",viewBox:"0 0 24 24"},Se={class:"hidden space-x-8 sm:-my-px sm:ml-10 sm:flex"},Le={class:"flex items-center sm:ml-6 justify-center"},je={class:"ml-3 relative"},Be={class:"inline-flex rounded-md"},ze={type:"button",class:"inline-flex items-center px-1 md:px-3 py-2 border border-transparent text-sm leading-4 font-medium rounded-md text-gray-500 bg-white dark:bg-gray-800 dark:text-gray-100 hover:text-gray-700 dark:hover:text-gray-300 focus:outline-none transition ease-in-out duration-150 capitalize"},Oe=["src","alt"],He={class:"hidden md:block"},Ve=r("svg",{class:":ml-2 h-4 w-4",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor"},[r("path",{"fill-rule":"evenodd",d:"M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z","clip-rule":"evenodd"})],-1),Ae={__name:"Header",props:{isOpenSidebar:Boolean},setup(i){return(n,s)=>(t(),o("div",_e,[r("div",ke,[r("div",ye,[r("div",$e,[r("div",Me,[r("button",{onClick:s[0]||(s[0]=c=>n.$emit("toggleMenu",!0)),class:"inline-flex items-center justify-center p-2 rounded-md text-gray-400 dark:text-gray-500 hover:text-gray-500 dark:hover:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-900 focus:outline-none focus:bg-gray-100 dark:focus:bg-gray-900 focus:text-gray-500 dark:focus:text-gray-400 transition duration-150 ease-in-out"},[(t(),o("svg",Ce,[r("path",{class:m({"md:hidden":i.isOpenSidebar,"inline-flex":!i.isOpenSidebar}),"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M4 6h16M4 12h16M4 18h16"},null,2),r("path",{class:m([{"md:hidden":!i.isOpenSidebar,"inline-flex":i.isOpenSidebar},"hidden md:block"]),"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M6 18L18 6M6 6l12 12"},null,2)]))])]),r("div",Se,[l(be,{target:"_blank",href:n.route("home"),active:!0},{default:d(()=>[w(" Visit website ")]),_:1},8,["href"])])]),r("div",Le,[l(K),r("div",je,[l(te,{align:"right",width:"48"},{trigger:d(()=>[r("span",Be,[r("button",ze,[r("img",{src:n.$page.props.auth.user.avatar,alt:n.$page.props.auth.user.name,class:"w-8 h-8 rounded-full mr-1 md:mr-2"},null,8,Oe),r("span",He,M(n.$page.props.auth.user.name),1),Ve])])]),content:d(()=>[l(P,{href:n.route("profile.edit")},{default:d(()=>[w(" Profile ")]),_:1},8,["href"]),l(P,{href:n.route("logout"),method:"post",as:"button"},{default:d(()=>[w(" Log Out ")]),_:1},8,["href"])]),_:1})])])])])]))}},De=r("div",{class:"fixed inset-0 bg-gray-600 bg-opacity-75"},null,-1),Te={class:"fixed inset-0 z-40 flex"},Ne={class:"absolute top-0 right-0 -mr-12 pt-2"},Fe=r("span",{class:"sr-only"},"Close sidebar",-1),Ge={class:"flex flex-shrink-0 items-center px-4"},Ue={class:"mt-5 h-0 flex-1 overflow-y-auto"},Pe={class:"space-y-1 px-2"},Ee=["onClick"],Re={key:0,class:"absolute right-0 top-3 cursor-pointer text-indigo-300 hover:text-indigo-50 hover:scale-110"},We=r("div",{class:"w-14 flex-shrink-0","aria-hidden":"true"},null,-1),qe={__name:"MobileMenu",props:{navigation:Object,sidebarOpen:Boolean},setup(i){return(n,s)=>{const c=R("can");return t(),g(u(ae),{as:"template",show:i.sidebarOpen},{default:d(()=>[l(u(oe),{as:"div",class:"relative z-40 md:hidden",onClose:s[1]||(s[1]=e=>n.$emit("toggleMobileMenu",!1)),onBlur:s[2]||(s[2]=e=>i.sidebarOpen!=!0),tabindex:"-1"},{default:d(()=>[l(u(z),{as:"template",enter:"transition-opacity ease-linear duration-300","enter-from":"opacity-0","enter-to":"opacity-100",leave:"transition-opacity ease-linear duration-300","leave-from":"opacity-100","leave-to":"opacity-0"},{default:d(()=>[De]),_:1}),r("div",Te,[l(u(z),{as:"template",enter:"transition ease-in-out duration-300 transform","enter-from":"-translate-x-full","enter-to":"translate-x-0",leave:"transition ease-in-out duration-300 transform","leave-from":"translate-x-0","leave-to":"-translate-x-full"},{default:d(()=>[l(u(ie),{class:"relative flex w-full max-w-xs flex-1 flex-col bg-indigo-700 pt-5 pb-4"},{default:d(()=>[l(u(z),{as:"template",enter:"ease-in-out duration-300","enter-from":"opacity-0","enter-to":"opacity-100",leave:"ease-in-out duration-300","leave-from":"opacity-100","leave-to":"opacity-0"},{default:d(()=>[r("div",Ne,[r("button",{type:"button",class:"ml-1 flex h-10 w-10 items-center justify-center rounded-full focus:outline-none focus:ring-2 focus:ring-inset focus:ring-white",onClick:s[0]||(s[0]=e=>n.$emit("toggleMobileMenu",!1))},[Fe,l(u(se),{class:"h-6 w-6 text-white","aria-hidden":"true"})])])]),_:1}),r("div",Ge,[l(E,{class:"h-8 auto"})]),r("div",Ue,[r("nav",Pe,[(t(!0),o(k,null,$(i.navigation,e=>{var h,f,p;return t(),o("div",{key:e.name,class:m([[e.current?"bg-indigo-600 text-white p-0.5 rounded-sm":""],"relative"]),onClick:a=>n.$emit("toggleSidebar",e)},[x((t(),g(u(_),{href:n.route(e.route),class:m([e.current?"bg-indigo-800 text-white":"text-indigo-100 hover:bg-indigo-600","group flex items-center px-2 py-2 text-sm font-medium rounded-md"])},{default:d(()=>[(t(),g(v(e.icon),{class:"mr-3 h-6 w-6 flex-shrink-0 text-indigo-300","aria-hidden":"true"})),w(" "+M(e.name),1)]),_:2},1032,["href","class"])),[[c,e.permission]]),((h=e==null?void 0:e.children)==null?void 0:h.length)>0?(t(),o("span",Re,[(t(),g(v(e.current&&((f=e==null?void 0:e.children)==null?void 0:f.length)>0?u(I):u(J)),{class:"mr-3 h-4 w-4 flex-shrink-0","aria-hidden":"true"}))])):j("",!0),x(r("div",{class:m(["p-2 my-1 mx-3 border border-indigo-600 rounded-md bg-indigo-700 shadow-md",{"transition duration-500 ease-in-out":e.current}])},[(t(!0),o(k,null,$(e.children,a=>(t(),o("div",{"aria-level":"childreen",key:a.name,class:"px-2 py-1"},[x((t(),g(u(_),{href:n.route(a.route),class:m([[a.current?"bg-indigo-800 text-white":"text-indigo-100 bg-indigo-600 hover:bg-indigo-600"],"px-1 py-1.5 group flex items-center text-sm font-medium rounded-md"])},{default:d(()=>[(t(),g(v(a.icon),{class:"mr-3 h-4 w-4 flex-shrink-0 text-indigo-300","aria-hidden":"true"})),w(" "+M(a.name),1)]),_:2},1032,["href","class"])),[[c,a.permission]])]))),128))],2),[[W,e.current&&((p=e==null?void 0:e.children)==null?void 0:p.length)>0]])],10,Ee)}),128))])])]),_:1})]),_:1}),We])]),_:1})]),_:1},8,["show"])}}},Ie=["href"],Je={key:0,class:"fixed top-0 left-0 right-0 bottom-0 w-full h-screen z-50 overflow-hidden bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50 opacity-75 flex flex-col items-center justify-center"},Ke={class:"w-10 h-10"},Qe={class:"py-6 bg-white dark:bg-gray-900 dark:text-white"},Xe={key:0,class:"mx-auto max-w-full px-4 sm:px-6 md:px-8"},Ye={class:"mx-auto max-w-full px-4 sm:px-6 md:px-8"},Ze={class:"py-4"},er={class:"h-full rounded-lg border-4 border-dashed border-gray-200 bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50"},lr={__name:"AuthenticatedLayout",setup(i){const{width:n}=Q(),s=L(!1),c=L(!1),e=L(!1);n.value>1400&&(c.value=!0);function h(a){c&&a.route.split(".").slice(0,2).join(".")!=route().current().split(".").slice(0,2).join(".")&&setTimeout(()=>{a.current=!a.current},50)}function f(a=!0){e.value=a}ee(()=>{f()});const p=L([{name:"Dashboard",route:"dashboard",permission:"dashboard.view",icon:de,current:route().current("dashboard")},{name:"User",route:"admin.user.index",permission:"user.view",icon:U,current:route().current("admin.user.index")||route().current("admin.user.create")||route().current("admin.user.edit")||route().current("admin.user.show"),children:[{name:"User List",route:"admin.user.index",permission:"user.view",icon:U,current:route().current("admin.user.index")},{name:"Create",route:"admin.user.create",permission:"user.create",icon:b,current:route().current("admin.user.create")}]},{name:"Role",route:"admin.role.index",permission:"role.view",icon:G,current:route().current("admin.role.index")||route().current("admin.role.create")||route().current("admin.role.edit")||route().current("admin.role.show"),children:[{name:"Role List",route:"admin.role.index",permission:"role.view",icon:G,current:route().current("admin.role.index")},{name:"Create",route:"admin.role.create",permission:"role.create",icon:b,current:route().current("admin.role.create")}]},{name:"Category",route:"admin.category.index",permission:"category.view",icon:N,current:route().current("admin.category.index")||route().current("admin.category.create")||route().current("admin.category.edit")||route().current("admin.category.show"),children:[{name:"Category List",route:"admin.category.index",permission:"category.view",icon:N,current:route().current("admin.category.index")},{name:"Create",route:"admin.category.create",permission:"category.create",icon:b,current:route().current("admin.category.create")}]},{name:"Product",route:"admin.product.index",permission:"product.view",icon:F,current:route().current("admin.product.index")||route().current("admin.product.create")||route().current("admin.product.edit")||route().current("admin.product.show"),children:[{name:"Product List",route:"admin.product.index",permission:"product.view",icon:F,current:route().current("admin.product.index")},{name:"Create",route:"admin.product.create",permission:"product.create",icon:b,current:route().current("admin.product.create")}]},{name:"Blog",route:"admin.blog.index",permission:"blog.view",icon:D,current:route().current("admin.blog.index")||route().current("admin.blog.create")||route().current("admin.blog.edit")||route().current("admin.blog.show"),children:[{name:"Blog List",route:"admin.blog.index",permission:"blog.view",icon:D,current:route().current("admin.blog.index")},{name:"Create",route:"admin.blog.create",permission:"blog.create",icon:b,current:route().current("admin.blog.create")}]},{name:"Special Features",route:"admin.special-feature.index",permission:"options.view",icon:T,current:route().current("admin.special-feature.index")||route().current("admin.special-feature.create")||route().current("admin.special-feature.edit")||route().current("admin.special-feature.show"),children:[{name:"Special Features List",route:"admin.special-feature.index",permission:"options.view",icon:T,current:route().current("admin.special-feature.index")},{name:"Create",route:"admin.special-feature.create",permission:"options.create",icon:b,current:route().current("admin.special-feature.create")}]},{name:"Message",route:"admin.contact.index",permission:"contact.view",icon:A,current:route().current("admin.contact.index"),children:[{name:"Message",route:"admin.contact.index",permission:"contact.view",icon:A,current:route().current("admin.contact.index")}]},{name:"Settings",route:"admin.option.index",permission:"options.view",icon:y,current:route().current("admin.option.index")||route().current("admin.option.general")||route().current("admin.option.general")||route().current("admin.option.social")||route().current("admin.option.model"),children:[{name:"Application Settings",route:"admin.option.index",permission:"options.create",icon:y,current:route().current("admin.option.index")},{name:"General Settings",route:"admin.option.general",permission:"options.create",icon:y,current:route().current("admin.option.general")},{name:"Social Settings",route:"admin.option.social",permission:"options.create",icon:y,current:route().current("admin.option.social")},{name:"Extra Settings",route:"admin.option.model",permission:"options.create",icon:y,current:route().current("admin.option.model")}]}]);return(a,C)=>(t(),o(k,null,[l(u(re),null,{default:d(()=>{var S,O,H,V;return[r("link",{rel:"icon",type:"image/svg+xml",href:(V=(H=(O=(S=a.$page)==null?void 0:S.props)==null?void 0:O.global)==null?void 0:H.options)==null?void 0:V.fav_icon},null,8,Ie)]}),_:1}),r("div",null,[e.value?j("",!0):(t(),o("div",Je,[r("span",Ke,[l(X)])])),l(Y),r("div",null,[l(qe,{sidebarOpen:s.value,navigation:p.value,onToggleMobileMenu:C[0]||(C[0]=S=>s.value=!s.value),onToggleSidebar:h},null,8,["sidebarOpen","navigation"]),l(xe,{navigation:p.value,isOpenSidebar:c.value,onToggleSidebar:h},null,8,["navigation","isOpenSidebar"]),r("div",{class:m(["flex flex-1 flex-col dark:bg-gray-900 dark:text-white",c.value?"md:pl-64":"md:pl-20"])},[l(Ae,{onToggleMenu:C[1]||(C[1]=S=>(s.value=!s.value,c.value=!c.value)),isOpenSidebar:c.value},null,8,["isOpenSidebar"]),r("main",null,[r("div",Qe,[a.$slots.header?(t(),o("div",Xe,[B(a.$slots,"header")])):j("",!0),r("div",Ye,[r("div",Ze,[r("div",er,[B(a.$slots,"default")])])])])])],2)])])],64))}};export{lr as _}; diff --git a/public/build/assets/AuthenticatedLayout-bb6d5f84.js b/public/build/assets/AuthenticatedLayout-bb6d5f84.js deleted file mode 100644 index eac252b..0000000 --- a/public/build/assets/AuthenticatedLayout-bb6d5f84.js +++ /dev/null @@ -1,4 +0,0 @@ -import{o as g,h as b,b as d,a as x,w as E,u as O,z as ge,F as G,m as ue,n as A,c as X,A as me,d as ne,t as ce,q as $e,f as We,g as bt,y as Zt,i as w,B as Xt,j as L,C as qe,D as er,E as tr,s as $,G as ee,H as V,I as rr,J as Ye,v as nr,K as or,k as _t,r as Oe,L as ar,M as F,N as q,P as Q,Q as I,l as te,R as lr,p as ir,X as sr}from"./app-4f9e7dfc.js";import{_ as ur}from"./Toast-3242a059.js";import{_ as xt}from"./ApplicationLogo-1c8f1468.js";import{u as dr}from"./useCountries-7f78595f.js";import{_ as cr}from"./Dropdown-7d23bb7e.js";const $t=(e,t)=>{const r=e.__vccOpts||e;for(const[n,a]of t)r[n]=a;return r},fr={},pr={"aria-hidden":"true",class:"w-full h-full text-gray-200 animate-spin fill-blue-600",viewBox:"0 0 100 101",fill:"none",xmlns:"http://www.w3.org/2000/svg"},vr=d("path",{d:"M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z",fill:"currentColor"},null,-1),gr=d("path",{d:"M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z",fill:"currentFill"},null,-1),hr=[vr,gr];function mr(e,t){return g(),b("svg",pr,hr)}const wr=$t(fr,[["render",mr]]);function Ot(e,t){return g(),b("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true"},[d("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M19.5 5.25l-7.5 7.5-7.5-7.5m15 6l-7.5 7.5-7.5-7.5"})])}function kt(e,t){return g(),b("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true"},[d("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M11.25 4.5l7.5 7.5-7.5 7.5m-6-15l7.5 7.5-7.5 7.5"})])}function Ze(e,t){return g(),b("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true"},[d("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M4.5 12a7.5 7.5 0 0015 0m-15 0a7.5 7.5 0 1115 0m-15 0H3m16.5 0H21m-1.5 0H12m-8.457 3.077l1.41-.513m14.095-5.13l1.41-.513M5.106 17.785l1.15-.964m11.49-9.642l1.149-.964M7.501 19.795l.75-1.3m7.5-12.99l.75-1.3m-6.063 16.658l.26-1.477m2.605-14.772l.26-1.477m0 17.726l-.26-1.477M10.698 4.614l-.26-1.477M16.5 19.794l-.75-1.299M7.5 4.205L12 12m6.894 5.785l-1.149-.964M6.256 7.178l-1.15-.964m15.352 8.864l-1.41-.513M4.954 9.435l-1.41-.514M12.002 12l-3.75 6.495"})])}function yr(e,t){return g(),b("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true"},[d("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M2.25 12l8.954-8.955c.44-.439 1.152-.439 1.591 0L21.75 12M4.5 9.75v10.125c0 .621.504 1.125 1.125 1.125H9.75v-4.875c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21h4.125c.621 0 1.125-.504 1.125-1.125V9.75M8.25 21h8.25"})])}function Xe(e,t){return g(),b("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true"},[d("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 9v6m3-3H9m12 0a9 9 0 11-18 0 9 9 0 0118 0z"})])}function et(e,t){return g(),b("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true"},[d("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M18 18.72a9.094 9.094 0 003.741-.479 3 3 0 00-4.682-2.72m.94 3.198l.001.031c0 .225-.012.447-.037.666A11.944 11.944 0 0112 21c-2.17 0-4.207-.576-5.963-1.584A6.062 6.062 0 016 18.719m12 0a5.971 5.971 0 00-.941-3.197m0 0A5.995 5.995 0 0012 12.75a5.995 5.995 0 00-5.058 2.772m0 0a3 3 0 00-4.681 2.72 8.986 8.986 0 003.74.477m.94-3.197a5.971 5.971 0 00-.94 3.197M15 6.75a3 3 0 11-6 0 3 3 0 016 0zm6 3a2.25 2.25 0 11-4.5 0 2.25 2.25 0 014.5 0zm-13.5 0a2.25 2.25 0 11-4.5 0 2.25 2.25 0 014.5 0z"})])}function tt(e,t){return g(),b("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true"},[d("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M15 19.128a9.38 9.38 0 002.625.372 9.337 9.337 0 004.121-.952 4.125 4.125 0 00-7.533-2.493M15 19.128v-.003c0-1.113-.285-2.16-.786-3.07M15 19.128v.106A12.318 12.318 0 018.624 21c-2.331 0-4.512-.645-6.374-1.766l-.001-.109a6.375 6.375 0 0111.964-3.07M12 6.375a3.375 3.375 0 11-6.75 0 3.375 3.375 0 016.75 0zm8.25 2.25a2.625 2.625 0 11-5.25 0 2.625 2.625 0 015.25 0z"})])}function br(e,t){return g(),b("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true"},[d("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M6 18L18 6M6 6l12 12"})])}const _r={class:"flex flex-grow flex-col overflow-y-auto bg-indigo-700 pt-5"},xr={class:"flex flex-shrink-0 items-center px-4"},$r={class:"mt-5 flex flex-1 flex-col"},Or={class:"flex-1 space-y-1 px-2 pb-4"},kr={key:0},Sr=["onMouseover","onMouseout"],Er={key:0,class:"absolute right-0 mr-2"},Pr={key:1,class:"absolute right-0 mr-2"},Cr={key:1},Ar={__name:"DesktopMenu",props:{navigation:Object,isOpenSidebar:Boolean},setup(e){return(t,r)=>(g(),b("div",{class:A(["hidden md:fixed md:inset-y-0 md:flex md:flex-col",e.isOpenSidebar?"md:w-64":"md:w-20"])},[d("div",_r,[d("div",xr,[x(O(ge),{href:t.route("dashboard")},{default:E(()=>[x(xt,{class:"block h-12 w-auto fill-current text-gray-800 dark:text-gray-200"})]),_:1},8,["href"])]),d("div",$r,[d("nav",Or,[e.isOpenSidebar?(g(),b("div",kr,[(g(!0),b(G,null,ue(e.navigation,n=>{var a;return g(),b("div",{key:n.name,class:A([n.current?"bg-indigo-600 text-white p-0.5 rounded-sm":""]),onMouseover:o=>t.$emit("toggleCurrent",n),onMouseout:o=>t.$emit("toggleCurrent",n)},[x(O(ge),{href:t.route(n.route),class:A([n.current?"bg-indigo-800 text-white":"text-indigo-100 hover:bg-indigo-600","group flex items-center px-2 py-2 text-sm font-medium rounded-md"])},{default:E(()=>{var o,l;return[(g(),X(me(n.icon),{class:"mr-3 h-6 w-6 flex-shrink-0 text-indigo-300","aria-hidden":"true"})),ne(" "+ce(n.name)+" ",1),n.current&&((o=n==null?void 0:n.children)==null?void 0:o.length)>0?(g(),b("span",Er,[x(O(Ot),{class:"mr-3 h-4 w-4 flex-shrink-0 text-indigo-300","aria-hidden":"true"})])):!n.current&&((l=n==null?void 0:n.children)==null?void 0:l.length)>0?(g(),b("span",Pr,[x(O(kt),{class:"mr-3 h-4 w-4 flex-shrink-0 text-indigo-300","aria-hidden":"true"})])):$e("",!0)]}),_:2},1032,["href","class"]),We(d("div",{class:A(["p-2 my-1 mx-3 border border-indigo-600 rounded-md bg-indigo-700 shadow-md",{"transition duration-500 ease-in-out":n.current}])},[(g(!0),b(G,null,ue(n.children,o=>(g(),b("div",{"aria-level":"childreen",key:o.name,class:"px-2 py-1"},[x(O(ge),{href:t.route(o.route),class:A([[o.current?"bg-indigo-800 text-white":"text-indigo-100 bg-indigo-600 hover:bg-indigo-600"],"px-1 py-1.5 group flex items-center text-sm font-medium rounded-md"])},{default:E(()=>[(g(),X(me(o.icon),{class:"mr-3 h-4 w-4 flex-shrink-0 text-indigo-300","aria-hidden":"true"})),ne(" "+ce(o.name),1)]),_:2},1032,["href","class"])]))),128))],2),[[bt,n.current&&((a=n==null?void 0:n.children)==null?void 0:a.length)>0]])],42,Sr)}),128))])):(g(),b("div",Cr,[(g(!0),b(G,null,ue(e.navigation,n=>(g(),b("div",{key:n.name,class:A([n.current?"bg-indigo-600 text-white p-0.5 rounded-sm my-2":""])},[x(O(ge),{href:t.route(n.route),class:A([n.current?"bg-indigo-800 text-white":"text-indigo-100 hover:bg-indigo-600","group flex items-center px-3 py-3 text-sm font-medium rounded-md"])},{default:E(()=>[(g(),X(me(n.icon),{class:"mr-3 h-8 w-8 flex-shrink-0 text-indigo-300","aria-hidden":"true"}))]),_:2},1032,["href","class"])],2))),128))]))])])])],2))}};var rt;const St=typeof window<"u",Fr=e=>typeof e=="function",Lr=e=>typeof e=="string",Mr=()=>{};St&&((rt=window==null?void 0:window.navigator)!=null&&rt.userAgent)&&/iP(ad|hone|od)/.test(window.navigator.userAgent);function ke(e){return typeof e=="function"?e():O(e)}function jr(e,t){function r(...n){e(()=>t.apply(this,n),{fn:t,thisArg:this,args:n})}return r}const Et=e=>e();function Tr(e=Et){const t=w(!0);function r(){t.value=!1}function n(){t.value=!0}return{isActive:t,pause:r,resume:n,eventFilter:(...o)=>{t.value&&e(...o)}}}function Dr(e){return e}function Pt(e){return er()?(tr(e),!0):!1}function Nr(e){return typeof e=="function"?$(e):w(e)}function Ct(e,t=!0){Xt()?L(e):t?e():qe(e)}function Br(e=!1,t={}){const{truthyValue:r=!0,falsyValue:n=!1}=t,a=Zt(e),o=w(e);function l(i){if(arguments.length)return o.value=i,o.value;{const s=ke(r);return o.value=o.value===s?ke(n):s,o.value}}return a?l:[o,l]}var nt=Object.getOwnPropertySymbols,Ir=Object.prototype.hasOwnProperty,Rr=Object.prototype.propertyIsEnumerable,Hr=(e,t)=>{var r={};for(var n in e)Ir.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(e!=null&&nt)for(var n of nt(e))t.indexOf(n)<0&&Rr.call(e,n)&&(r[n]=e[n]);return r};function zr(e,t,r={}){const n=r,{eventFilter:a=Et}=n,o=Hr(n,["eventFilter"]);return ee(e,jr(a,t),o)}var Vr=Object.defineProperty,Ur=Object.defineProperties,Wr=Object.getOwnPropertyDescriptors,Se=Object.getOwnPropertySymbols,At=Object.prototype.hasOwnProperty,Ft=Object.prototype.propertyIsEnumerable,ot=(e,t,r)=>t in e?Vr(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,qr=(e,t)=>{for(var r in t||(t={}))At.call(t,r)&&ot(e,r,t[r]);if(Se)for(var r of Se(t))Ft.call(t,r)&&ot(e,r,t[r]);return e},Gr=(e,t)=>Ur(e,Wr(t)),Qr=(e,t)=>{var r={};for(var n in e)At.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(e!=null&&Se)for(var n of Se(e))t.indexOf(n)<0&&Ft.call(e,n)&&(r[n]=e[n]);return r};function Jr(e,t,r={}){const n=r,{eventFilter:a}=n,o=Qr(n,["eventFilter"]),{eventFilter:l,pause:i,resume:s,isActive:u}=Tr(a);return{stop:zr(e,t,Gr(qr({},o),{eventFilter:l})),pause:i,resume:s,isActive:u}}function Kr(e){var t;const r=ke(e);return(t=r==null?void 0:r.$el)!=null?t:r}const fe=St?window:void 0;function Yr(...e){let t,r,n,a;if(Lr(e[0])||Array.isArray(e[0])?([r,n,a]=e,t=fe):[t,r,n,a]=e,!t)return Mr;Array.isArray(r)||(r=[r]),Array.isArray(n)||(n=[n]);const o=[],l=()=>{o.forEach(c=>c()),o.length=0},i=(c,v,p)=>(c.addEventListener(v,p,a),()=>c.removeEventListener(v,p,a)),s=ee(()=>Kr(t),c=>{l(),c&&o.push(...r.flatMap(v=>n.map(p=>i(c,v,p))))},{immediate:!0,flush:"post"}),u=()=>{s(),l()};return Pt(u),u}function Zr(e,t=!1){const r=w(),n=()=>r.value=Boolean(e());return n(),Ct(n,t),r}function Xr(e,t={}){const{window:r=fe}=t,n=Zr(()=>r&&"matchMedia"in r&&typeof r.matchMedia=="function");let a;const o=w(!1),l=()=>{a&&("removeEventListener"in a?a.removeEventListener("change",i):a.removeListener(i))},i=()=>{n.value&&(l(),a=r.matchMedia(Nr(e).value),o.value=a.matches,"addEventListener"in a?a.addEventListener("change",i):a.addListener(i))};return V(i),Pt(()=>l()),o}const Ne=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},Be="__vueuse_ssr_handlers__";Ne[Be]=Ne[Be]||{};const en=Ne[Be];function Lt(e,t){return en[e]||t}function tn(e){return e==null?"any":e instanceof Set?"set":e instanceof Map?"map":e instanceof Date?"date":typeof e=="boolean"?"boolean":typeof e=="string"?"string":typeof e=="object"?"object":Number.isNaN(e)?"any":"number"}var rn=Object.defineProperty,at=Object.getOwnPropertySymbols,nn=Object.prototype.hasOwnProperty,on=Object.prototype.propertyIsEnumerable,lt=(e,t,r)=>t in e?rn(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,it=(e,t)=>{for(var r in t||(t={}))nn.call(t,r)&<(e,r,t[r]);if(at)for(var r of at(t))on.call(t,r)&<(e,r,t[r]);return e};const an={boolean:{read:e=>e==="true",write:e=>String(e)},object:{read:e=>JSON.parse(e),write:e=>JSON.stringify(e)},number:{read:e=>Number.parseFloat(e),write:e=>String(e)},any:{read:e=>e,write:e=>String(e)},string:{read:e=>e,write:e=>String(e)},map:{read:e=>new Map(JSON.parse(e)),write:e=>JSON.stringify(Array.from(e.entries()))},set:{read:e=>new Set(JSON.parse(e)),write:e=>JSON.stringify(Array.from(e))},date:{read:e=>new Date(e),write:e=>e.toISOString()}};function ln(e,t,r,n={}){var a;const{flush:o="pre",deep:l=!0,listenToStorageChanges:i=!0,writeDefaults:s=!0,mergeDefaults:u=!1,shallow:c,window:v=fe,eventFilter:p,onError:m=f=>{console.error(f)}}=n,h=(c?rr:w)(t);if(!r)try{r=Lt("getDefaultStorage",()=>{var f;return(f=fe)==null?void 0:f.localStorage})()}catch(f){m(f)}if(!r)return h;const S=ke(t),D=tn(S),M=(a=n.serializer)!=null?a:an[D],{pause:C,resume:N}=Jr(h,()=>j(h.value),{flush:o,deep:l,eventFilter:p});return v&&i&&Yr(v,"storage",U),U(),h;function j(f){try{if(f==null)r.removeItem(e);else{const y=M.write(f),_=r.getItem(e);_!==y&&(r.setItem(e,y),v&&(v==null||v.dispatchEvent(new StorageEvent("storage",{key:e,oldValue:_,newValue:y,storageArea:r}))))}}catch(y){m(y)}}function P(f){const y=f?f.newValue:r.getItem(e);if(y==null)return s&&S!==null&&r.setItem(e,M.write(S)),S;if(!f&&u){const _=M.read(y);return Fr(u)?u(_,S):D==="object"&&!Array.isArray(_)?it(it({},S),_):_}else return typeof y!="string"?y:M.read(y)}function U(f){if(!(f&&f.storageArea!==r)){if(f&&f.key==null){h.value=S;return}if(!(f&&f.key!==e)){C();try{h.value=P(f)}catch(y){m(y)}finally{f?qe(N):N()}}}}}function Mt(e){return Xr("(prefers-color-scheme: dark)",e)}var sn=Object.defineProperty,st=Object.getOwnPropertySymbols,un=Object.prototype.hasOwnProperty,dn=Object.prototype.propertyIsEnumerable,ut=(e,t,r)=>t in e?sn(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,cn=(e,t)=>{for(var r in t||(t={}))un.call(t,r)&&ut(e,r,t[r]);if(st)for(var r of st(t))dn.call(t,r)&&ut(e,r,t[r]);return e};function fn(e={}){const{selector:t="html",attribute:r="class",initialValue:n="auto",window:a=fe,storage:o,storageKey:l="vueuse-color-scheme",listenToStorageChanges:i=!0,storageRef:s,emitAuto:u}=e,c=cn({auto:"",light:"light",dark:"dark"},e.modes||{}),v=Mt({window:a}),p=$(()=>v.value?"dark":"light"),m=s||(l==null?w(n):ln(l,n,o,{window:a,listenToStorageChanges:i})),h=$({get(){return m.value==="auto"&&!u?p.value:m.value},set(C){m.value=C}}),S=Lt("updateHTMLAttrs",(C,N,j)=>{const P=a==null?void 0:a.document.querySelector(C);if(P)if(N==="class"){const U=j.split(/\s/g);Object.values(c).flatMap(f=>(f||"").split(/\s/g)).filter(Boolean).forEach(f=>{U.includes(f)?P.classList.add(f):P.classList.remove(f)})}else P.setAttribute(N,j)});function D(C){var N;const j=C==="auto"?p.value:C;S(t,r,(N=c[j])!=null?N:j)}function M(C){e.onChanged?e.onChanged(C,D):D(C)}return ee(h,M,{flush:"post",immediate:!0}),u&&ee(p,()=>M(h.value),{flush:"post"}),Ct(()=>M(h.value)),h}var pn=Object.defineProperty,vn=Object.defineProperties,gn=Object.getOwnPropertyDescriptors,dt=Object.getOwnPropertySymbols,hn=Object.prototype.hasOwnProperty,mn=Object.prototype.propertyIsEnumerable,ct=(e,t,r)=>t in e?pn(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,wn=(e,t)=>{for(var r in t||(t={}))hn.call(t,r)&&ct(e,r,t[r]);if(dt)for(var r of dt(t))mn.call(t,r)&&ct(e,r,t[r]);return e},yn=(e,t)=>vn(e,gn(t));function bn(e={}){const{valueDark:t="dark",valueLight:r="",window:n=fe}=e,a=fn(yn(wn({},e),{onChanged:(i,s)=>{var u;e.onChanged?(u=e.onChanged)==null||u.call(e,i==="dark"):s(i)},modes:{dark:t,light:r}})),o=Mt({window:n});return $({get(){return a.value==="dark"},set(i){i===o.value?a.value="auto":a.value=i?"dark":"light"}})}var ft;(function(e){e.UP="UP",e.RIGHT="RIGHT",e.DOWN="DOWN",e.LEFT="LEFT",e.NONE="NONE"})(ft||(ft={}));var _n=Object.defineProperty,pt=Object.getOwnPropertySymbols,xn=Object.prototype.hasOwnProperty,$n=Object.prototype.propertyIsEnumerable,vt=(e,t,r)=>t in e?_n(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,On=(e,t)=>{for(var r in t||(t={}))xn.call(t,r)&&vt(e,r,t[r]);if(pt)for(var r of pt(t))$n.call(t,r)&&vt(e,r,t[r]);return e};const kn={easeInSine:[.12,0,.39,0],easeOutSine:[.61,1,.88,1],easeInOutSine:[.37,0,.63,1],easeInQuad:[.11,0,.5,0],easeOutQuad:[.5,1,.89,1],easeInOutQuad:[.45,0,.55,1],easeInCubic:[.32,0,.67,0],easeOutCubic:[.33,1,.68,1],easeInOutCubic:[.65,0,.35,1],easeInQuart:[.5,0,.75,0],easeOutQuart:[.25,1,.5,1],easeInOutQuart:[.76,0,.24,1],easeInQuint:[.64,0,.78,0],easeOutQuint:[.22,1,.36,1],easeInOutQuint:[.83,0,.17,1],easeInExpo:[.7,0,.84,0],easeOutExpo:[.16,1,.3,1],easeInOutExpo:[.87,0,.13,1],easeInCirc:[.55,0,1,.45],easeOutCirc:[0,.55,.45,1],easeInOutCirc:[.85,0,.15,1],easeInBack:[.36,0,.66,-.56],easeOutBack:[.34,1.56,.64,1],easeInOutBack:[.68,-.6,.32,1.6]};On({linear:Dr},kn);const Sn=d("i",{"inline-block":"","align-middle":"",i:"dark:carbon-moon carbon-sun"},null,-1),En={class:"grid place-content-center text-gray-500 dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-700 focus:outline-none focus:ring-4 focus:ring-gray-200 dark:focus:ring-gray-700 rounded-lg text-sm p-1.5"},Pn={key:0,class:"w-5 h-5"},Cn=d("svg",{"aria-hidden":"true",id:"theme-toggle-light-icon",class:"w-5 h-5",fill:"white",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},[d("path",{d:"M10 2a1 1 0 011 1v1a1 1 0 11-2 0V3a1 1 0 011-1zm4 8a4 4 0 11-8 0 4 4 0 018 0zm-.464 4.95l.707.707a1 1 0 001.414-1.414l-.707-.707a1 1 0 00-1.414 1.414zm2.12-10.607a1 1 0 010 1.414l-.706.707a1 1 0 11-1.414-1.414l.707-.707a1 1 0 011.414 0zM17 11a1 1 0 100-2h-1a1 1 0 100 2h1zm-7 4a1 1 0 011 1v1a1 1 0 11-2 0v-1a1 1 0 011-1zM5.05 6.464A1 1 0 106.465 5.05l-.708-.707a1 1 0 00-1.414 1.414l.707.707zm1.414 8.486l-.707.707a1 1 0 01-1.414-1.414l.707-.707a1 1 0 011.414 1.414zM4 11a1 1 0 100-2H3a1 1 0 000 2h1z","fill-rule":"evenodd","clip-rule":"evenodd"})],-1),An=[Cn],Fn={key:1,class:"w-5 h-5"},Ln=d("svg",{"aria-hidden":"true",id:"theme-toggle-dark-icon",class:"w-5 h-5",fill:"currentColor",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},[d("path",{d:"M17.293 13.293A8 8 0 016.707 2.707a8.001 8.001 0 1010.586 10.586z"})],-1),Mn=[Ln],jn={__name:"DarkMode",setup(e){const t=bn(),r=Br(t);return(n,a)=>(g(),b("button",{onClick:a[0]||(a[0]=o=>O(r)()),class:"w-8 h-8"},[Sn,d("span",En,[O(t)?(g(),b("div",Pn,An)):(g(),b("div",Fn,Mn))])]))}},Tn={class:"p-2 sm:p-4"},Dn=["value","selected"],Nn={__name:"SelectLanguage",setup(e){var o;const t=Ye().props;t==null||t.global.options;const r=dr(t.languages),n=nr({language:(o=Ye().props)==null?void 0:o.language}),a=l=>{n.post(route("language.store"),{language:l})};return(l,i)=>(g(),b("div",Tn,[We(d("select",{name:"language",id:"language","onUpdate:modelValue":i[0]||(i[0]=s=>O(n).language=s),onChange:a,class:"text-gray-900 dark:text-gray-50 bg-gray-50 dark:bg-gray-800 rounded-lg"},[(g(!0),b(G,null,ue(O(r),s=>(g(),b("option",{value:s.value,key:s.value,selected:s.value===l.$page.props.language},ce(s.label),9,Dn))),128))],544),[[or,O(n).language]])]))}},Bn={};function In(e,t){const r=_t("Link");return g(),X(r,{class:"block w-full px-4 py-2 text-left text-sm leading-5 text-gray-700 dark:text-gray-300 hover:bg-gray-100 dark:hover:bg-gray-800 focus:outline-none focus:bg-gray-100 dark:focus:bg-gray-800 transition duration-150 ease-in-out"},{default:E(()=>[Oe(e.$slots,"default")]),_:3})}const gt=$t(Bn,[["render",In]]),Rn={__name:"NavLink",props:["href","active"],setup(e){const t=e,r=$(()=>t.active?"inline-flex items-center px-1 pt-1 border-b-2 border-indigo-400 dark:border-indigo-600 text-sm font-medium leading-5 text-gray-900 dark:text-gray-100 focus:outline-none focus:border-indigo-700 transition duration-150 ease-in-out":"inline-flex items-center px-1 pt-1 border-b-2 border-transparent text-sm font-medium leading-5 text-gray-500 dark:text-gray-400 hover:text-gray-700 dark:hover:text-gray-300 hover:border-gray-300 dark:hover:border-gray-700 focus:outline-none focus:text-gray-700 dark:focus:text-gray-300 focus:border-gray-300 dark:focus:border-gray-700 transition duration-150 ease-in-out");return(n,a)=>{const o=_t("Link");return g(),X(o,{href:e.href,class:A(O(r))},{default:E(()=>[Oe(n.$slots,"default")]),_:3},8,["href","class"])}}},Hn={class:"bg-white dark:bg-gray-800 border-b border-gray-100 dark:border-gray-700"},zn={class:"max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"},Vn={class:"flex justify-between h-16"},Un={class:"flex"},Wn={class:"shrink-0 flex items-center"},qn={class:"h-6 w-6",stroke:"currentColor",fill:"none",viewBox:"0 0 24 24"},Gn={class:"hidden space-x-8 sm:-my-px sm:ml-10 sm:flex"},Qn={class:"sm:space-y-5 ml-5 space-x-8"},Jn={class:"flex items-center sm:ml-6 justify-center"},Kn={class:"ml-3 relative"},Yn={class:"inline-flex rounded-md"},Zn={type:"button",class:"inline-flex items-center px-1 md:px-3 py-2 border border-transparent text-sm leading-4 font-medium rounded-md text-gray-500 bg-white dark:bg-gray-800 dark:text-gray-100 hover:text-gray-700 dark:hover:text-gray-300 focus:outline-none transition ease-in-out duration-150 capitalize"},Xn=["src","alt"],eo={class:"hidden md:block"},to=d("svg",{class:":ml-2 h-4 w-4",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor"},[d("path",{"fill-rule":"evenodd",d:"M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z","clip-rule":"evenodd"})],-1),ro={__name:"Header",props:{isOpenSidebar:Boolean},setup(e){return(t,r)=>(g(),b("div",Hn,[d("div",zn,[d("div",Vn,[d("div",Un,[d("div",Wn,[d("button",{onClick:r[0]||(r[0]=n=>t.$emit("toggleMenu",!0)),class:"inline-flex items-center justify-center p-2 rounded-md text-gray-400 dark:text-gray-500 hover:text-gray-500 dark:hover:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-900 focus:outline-none focus:bg-gray-100 dark:focus:bg-gray-900 focus:text-gray-500 dark:focus:text-gray-400 transition duration-150 ease-in-out"},[(g(),b("svg",qn,[d("path",{class:A({"md:hidden":e.isOpenSidebar,"inline-flex":!e.isOpenSidebar}),"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M4 6h16M4 12h16M4 18h16"},null,2),d("path",{class:A([{"md:hidden":!e.isOpenSidebar,"inline-flex":e.isOpenSidebar},"hidden md:block"]),"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M6 18L18 6M6 6l12 12"},null,2)]))])]),d("div",Gn,[x(Rn,{href:t.route("home"),active:!0},{default:E(()=>[ne(" Visit website ")]),_:1},8,["href"])]),d("div",Qn,[x(Nn)])]),d("div",Jn,[x(jn),d("div",Kn,[x(cr,{align:"right",width:"48"},{trigger:E(()=>[d("span",Yn,[d("button",Zn,[d("img",{src:t.$page.props.auth.user.avatar,alt:t.$page.props.auth.user.name,class:"w-8 h-8 rounded-full mr-1 md:mr-2"},null,8,Xn),d("span",eo,ce(t.$page.props.auth.user.name),1),to])])]),content:E(()=>[x(gt,{href:t.route("profile.edit")},{default:E(()=>[ne(" Profile ")]),_:1},8,["href"]),x(gt,{href:t.route("logout"),method:"post",as:"button"},{default:E(()=>[ne(" Log Out ")]),_:1},8,["href"])]),_:1})])])])])]))}};function z(e,t,...r){if(e in t){let a=t[e];return typeof a=="function"?a(...r):a}let n=new Error(`Tried to handle "${e}" but there is no handler defined. Only defined handlers are: ${Object.keys(t).map(a=>`"${a}"`).join(", ")}.`);throw Error.captureStackTrace&&Error.captureStackTrace(n,z),n}var Ee=(e=>(e[e.None=0]="None",e[e.RenderStrategy=1]="RenderStrategy",e[e.Static=2]="Static",e))(Ee||{}),Z=(e=>(e[e.Unmount=0]="Unmount",e[e.Hidden=1]="Hidden",e))(Z||{});function R({visible:e=!0,features:t=0,ourProps:r,theirProps:n,...a}){var o;let l=no(n,r),i=Object.assign(a,{props:l});if(e||t&2&&l.static)return je(i);if(t&1){let s=(o=l.unmount)==null||o?0:1;return z(s,{[0](){return null},[1](){return je({...a,props:{...l,hidden:!0,style:{display:"none"}}})}})}return je(i)}function je({props:e,attrs:t,slots:r,slot:n,name:a}){var o;let{as:l,...i}=Tt(e,["unmount","static"]),s=(o=r.default)==null?void 0:o.call(r,n),u={};if(n){let c=!1,v=[];for(let[p,m]of Object.entries(n))typeof m=="boolean"&&(c=!0),m===!0&&v.push(p);c&&(u["data-headlessui-state"]=v.join(" "))}if(l==="template"){if(s=jt(s??[]),Object.keys(i).length>0||Object.keys(t).length>0){let[c,...v]=s??[];if(!oo(c)||v.length>0)throw new Error(['Passing props on "template"!',"",`The current component <${a} /> is rendering a "template".`,"However we need to passthrough the following props:",Object.keys(i).concat(Object.keys(t)).sort((p,m)=>p.localeCompare(m)).map(p=>` - ${p}`).join(` -`),"","You can apply a few solutions:",['Add an `as="..."` prop, to ensure that we render an actual element instead of a "template".',"Render a single element as the child so that we can forward the props onto that element."].map(p=>` - ${p}`).join(` -`)].join(` -`));return ar(c,Object.assign({},i,u))}return Array.isArray(s)&&s.length===1?s[0]:s}return F(l,Object.assign({},i,u),{default:()=>s})}function jt(e){return e.flatMap(t=>t.type===G?jt(t.children):[t])}function no(...e){if(e.length===0)return{};if(e.length===1)return e[0];let t={},r={};for(let n of e)for(let a in n)a.startsWith("on")&&typeof n[a]=="function"?(r[a]!=null||(r[a]=[]),r[a].push(n[a])):t[a]=n[a];if(t.disabled||t["aria-disabled"])return Object.assign(t,Object.fromEntries(Object.keys(r).map(n=>[n,void 0])));for(let n in r)Object.assign(t,{[n](a,...o){let l=r[n];for(let i of l){if(a instanceof Event&&a.defaultPrevented)return;i(a,...o)}}});return t}function Tt(e,t=[]){let r=Object.assign({},e);for(let n of t)n in r&&delete r[n];return r}function oo(e){return e==null?!1:typeof e.type=="string"||typeof e.type=="object"||typeof e.type=="function"}let ao=0;function lo(){return++ao}function ae(){return lo()}var Dt=(e=>(e.Space=" ",e.Enter="Enter",e.Escape="Escape",e.Backspace="Backspace",e.Delete="Delete",e.ArrowLeft="ArrowLeft",e.ArrowUp="ArrowUp",e.ArrowRight="ArrowRight",e.ArrowDown="ArrowDown",e.Home="Home",e.End="End",e.PageUp="PageUp",e.PageDown="PageDown",e.Tab="Tab",e))(Dt||{});function W(e){var t;return e==null||e.value==null?null:(t=e.value.$el)!=null?t:e.value}let Nt=Symbol("Context");var oe=(e=>(e[e.Open=0]="Open",e[e.Closed=1]="Closed",e))(oe||{});function io(){return Ge()!==null}function Ge(){return q(Nt,null)}function so(e){Q(Nt,e)}const Ce=typeof window>"u"||typeof document>"u";function pe(e){if(Ce)return null;if(e instanceof Node)return e.ownerDocument;if(e!=null&&e.hasOwnProperty("value")){let t=W(e);if(t)return t.ownerDocument}return document}let Ie=["[contentEditable=true]","[tabindex]","a[href]","area[href]","button:not([disabled])","iframe","input:not([disabled])","select:not([disabled])","textarea:not([disabled])"].map(e=>`${e}:not([tabindex='-1'])`).join(",");var Y=(e=>(e[e.First=1]="First",e[e.Previous=2]="Previous",e[e.Next=4]="Next",e[e.Last=8]="Last",e[e.WrapAround=16]="WrapAround",e[e.NoScroll=32]="NoScroll",e))(Y||{}),Bt=(e=>(e[e.Error=0]="Error",e[e.Overflow=1]="Overflow",e[e.Success=2]="Success",e[e.Underflow=3]="Underflow",e))(Bt||{}),uo=(e=>(e[e.Previous=-1]="Previous",e[e.Next=1]="Next",e))(uo||{});function co(e=document.body){return e==null?[]:Array.from(e.querySelectorAll(Ie)).sort((t,r)=>Math.sign((t.tabIndex||Number.MAX_SAFE_INTEGER)-(r.tabIndex||Number.MAX_SAFE_INTEGER)))}var It=(e=>(e[e.Strict=0]="Strict",e[e.Loose=1]="Loose",e))(It||{});function fo(e,t=0){var r;return e===((r=pe(e))==null?void 0:r.body)?!1:z(t,{[0](){return e.matches(Ie)},[1](){let n=e;for(;n!==null;){if(n.matches(Ie))return!0;n=n.parentElement}return!1}})}function de(e){e==null||e.focus({preventScroll:!0})}let po=["textarea","input"].join(",");function vo(e){var t,r;return(r=(t=e==null?void 0:e.matches)==null?void 0:t.call(e,po))!=null?r:!1}function go(e,t=r=>r){return e.slice().sort((r,n)=>{let a=t(r),o=t(n);if(a===null||o===null)return 0;let l=a.compareDocumentPosition(o);return l&Node.DOCUMENT_POSITION_FOLLOWING?-1:l&Node.DOCUMENT_POSITION_PRECEDING?1:0})}function _e(e,t,{sorted:r=!0,relativeTo:n=null,skipElements:a=[]}={}){var o;let l=(o=Array.isArray(e)?e.length>0?e[0].ownerDocument:document:e==null?void 0:e.ownerDocument)!=null?o:document,i=Array.isArray(e)?r?go(e):e:co(e);a.length>0&&(i=i.filter(h=>!a.includes(h))),n=n??l.activeElement;let s=(()=>{if(t&5)return 1;if(t&10)return-1;throw new Error("Missing Focus.First, Focus.Previous, Focus.Next or Focus.Last")})(),u=(()=>{if(t&1)return 0;if(t&2)return Math.max(0,i.indexOf(n))-1;if(t&4)return Math.max(0,i.indexOf(n))+1;if(t&8)return i.length-1;throw new Error("Missing Focus.First, Focus.Previous, Focus.Next or Focus.Last")})(),c=t&32?{preventScroll:!0}:{},v=0,p=i.length,m;do{if(v>=p||v+p<=0)return 0;let h=u+v;if(t&16)h=(h+p)%p;else{if(h<0)return 3;if(h>=p)return 1}m=i[h],m==null||m.focus(c),v+=s}while(m!==l.activeElement);return t&6&&vo(m)&&m.select(),m.hasAttribute("tabindex")||m.setAttribute("tabindex","0"),2}function Te(e,t,r){Ce||V(n=>{document.addEventListener(e,t,r),n(()=>document.removeEventListener(e,t,r))})}function ho(e,t,r=$(()=>!0)){function n(o,l){if(!r.value||o.defaultPrevented)return;let i=l(o);if(i===null||!i.getRootNode().contains(i))return;let s=function u(c){return typeof c=="function"?u(c()):Array.isArray(c)||c instanceof Set?c:[c]}(e);for(let u of s){if(u===null)continue;let c=u instanceof HTMLElement?u:W(u);if(c!=null&&c.contains(i)||o.composed&&o.composedPath().includes(c))return}return!fo(i,It.Loose)&&i.tabIndex!==-1&&o.preventDefault(),t(o,i)}let a=w(null);Te("mousedown",o=>{var l,i;r.value&&(a.value=((i=(l=o.composedPath)==null?void 0:l.call(o))==null?void 0:i[0])||o.target)},!0),Te("click",o=>{!a.value||(n(o,()=>a.value),a.value=null)},!0),Te("blur",o=>n(o,()=>window.document.activeElement instanceof HTMLIFrameElement?window.document.activeElement:null),!0)}var Pe=(e=>(e[e.None=1]="None",e[e.Focusable=2]="Focusable",e[e.Hidden=4]="Hidden",e))(Pe||{});let Re=I({name:"Hidden",props:{as:{type:[Object,String],default:"div"},features:{type:Number,default:1}},setup(e,{slots:t,attrs:r}){return()=>{let{features:n,...a}=e,o={"aria-hidden":(n&2)===2?!0:void 0,style:{position:"fixed",top:1,left:1,width:1,height:0,padding:0,margin:-1,overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",borderWidth:"0",...(n&4)===4&&(n&2)!==2&&{display:"none"}}};return R({ourProps:o,theirProps:a,slot:{},attrs:r,slots:t,name:"Hidden"})}}});function mo(e,t,r){Ce||V(n=>{window.addEventListener(e,t,r),n(()=>window.removeEventListener(e,t,r))})}var he=(e=>(e[e.Forwards=0]="Forwards",e[e.Backwards=1]="Backwards",e))(he||{});function wo(){let e=w(0);return mo("keydown",t=>{t.key==="Tab"&&(e.value=t.shiftKey?1:0)}),e}function Rt(e,t,r,n){Ce||V(a=>{e=e??window,e.addEventListener(t,r,n),a(()=>e.removeEventListener(t,r,n))})}function yo(e){typeof queueMicrotask=="function"?queueMicrotask(e):Promise.resolve().then(e).catch(t=>setTimeout(()=>{throw t}))}var Ht=(e=>(e[e.None=1]="None",e[e.InitialFocus=2]="InitialFocus",e[e.TabLock=4]="TabLock",e[e.FocusLock=8]="FocusLock",e[e.RestoreFocus=16]="RestoreFocus",e[e.All=30]="All",e))(Ht||{});let ve=Object.assign(I({name:"FocusTrap",props:{as:{type:[Object,String],default:"div"},initialFocus:{type:Object,default:null},features:{type:Number,default:30},containers:{type:Object,default:w(new Set)}},inheritAttrs:!1,setup(e,{attrs:t,slots:r,expose:n}){let a=w(null);n({el:a,$el:a});let o=$(()=>pe(a));bo({ownerDocument:o},$(()=>Boolean(e.features&16)));let l=_o({ownerDocument:o,container:a,initialFocus:$(()=>e.initialFocus)},$(()=>Boolean(e.features&2)));xo({ownerDocument:o,container:a,containers:e.containers,previousActiveElement:l},$(()=>Boolean(e.features&8)));let i=wo();function s(p){let m=W(a);m&&(h=>h())(()=>{z(i.value,{[he.Forwards]:()=>_e(m,Y.First,{skipElements:[p.relatedTarget]}),[he.Backwards]:()=>_e(m,Y.Last,{skipElements:[p.relatedTarget]})})})}let u=w(!1);function c(p){p.key==="Tab"&&(u.value=!0,requestAnimationFrame(()=>{u.value=!1}))}function v(p){var m;let h=new Set((m=e.containers)==null?void 0:m.value);h.add(a);let S=p.relatedTarget;!S||S.dataset.headlessuiFocusGuard!=="true"&&(zt(h,S)||(u.value?_e(W(a),z(i.value,{[he.Forwards]:()=>Y.Next,[he.Backwards]:()=>Y.Previous})|Y.WrapAround,{relativeTo:p.target}):p.target instanceof HTMLElement&&de(p.target)))}return()=>{let p={},m={ref:a,onKeydown:c,onFocusout:v},{features:h,initialFocus:S,containers:D,...M}=e;return F(G,[Boolean(h&4)&&F(Re,{as:"button",type:"button","data-headlessui-focus-guard":!0,onFocus:s,features:Pe.Focusable}),R({ourProps:m,theirProps:{...t,...M},slot:p,attrs:t,slots:r,name:"FocusTrap"}),Boolean(h&4)&&F(Re,{as:"button",type:"button","data-headlessui-focus-guard":!0,onFocus:s,features:Pe.Focusable})])}}}),{features:Ht});function bo({ownerDocument:e},t){let r=w(null);function n(){var o;r.value||(r.value=(o=e.value)==null?void 0:o.activeElement)}function a(){!r.value||(de(r.value),r.value=null)}L(()=>{ee(t,(o,l)=>{o!==l&&(o?n():a())},{immediate:!0})}),te(a)}function _o({ownerDocument:e,container:t,initialFocus:r},n){let a=w(null),o=w(!1);return L(()=>o.value=!0),te(()=>o.value=!1),L(()=>{ee([t,r,n],(l,i)=>{if(l.every((u,c)=>(i==null?void 0:i[c])===u)||!n.value)return;let s=W(t);!s||yo(()=>{var u,c;if(!o.value)return;let v=W(r),p=(u=e.value)==null?void 0:u.activeElement;if(v){if(v===p){a.value=p;return}}else if(s.contains(p)){a.value=p;return}v?de(v):_e(s,Y.First|Y.NoScroll)===Bt.Error&&console.warn("There are no focusable elements inside the "),a.value=(c=e.value)==null?void 0:c.activeElement})},{immediate:!0,flush:"post"})}),a}function xo({ownerDocument:e,container:t,containers:r,previousActiveElement:n},a){var o;Rt((o=e.value)==null?void 0:o.defaultView,"focus",l=>{if(!a.value)return;let i=new Set(r==null?void 0:r.value);i.add(t);let s=n.value;if(!s)return;let u=l.target;u&&u instanceof HTMLElement?zt(i,u)?(n.value=u,de(u)):(l.preventDefault(),l.stopPropagation(),de(s)):de(n.value)},!0)}function zt(e,t){var r;for(let n of e)if((r=n.value)!=null&&r.contains(t))return!0;return!1}let ht="body > *",se=new Set,K=new Map;function mt(e){e.setAttribute("aria-hidden","true"),e.inert=!0}function wt(e){let t=K.get(e);!t||(t["aria-hidden"]===null?e.removeAttribute("aria-hidden"):e.setAttribute("aria-hidden",t["aria-hidden"]),e.inert=t.inert)}function $o(e,t=w(!0)){V(r=>{if(!t.value||!e.value)return;let n=e.value,a=pe(n);if(a){se.add(n);for(let o of K.keys())o.contains(n)&&(wt(o),K.delete(o));a.querySelectorAll(ht).forEach(o=>{if(o instanceof HTMLElement){for(let l of se)if(o.contains(l))return;se.size===1&&(K.set(o,{"aria-hidden":o.getAttribute("aria-hidden"),inert:o.inert}),mt(o))}}),r(()=>{if(se.delete(n),se.size>0)a.querySelectorAll(ht).forEach(o=>{if(o instanceof HTMLElement&&!K.has(o)){for(let l of se)if(o.contains(l))return;K.set(o,{"aria-hidden":o.getAttribute("aria-hidden"),inert:o.inert}),mt(o)}});else for(let o of K.keys())wt(o),K.delete(o)})}})}let Vt=Symbol("ForcePortalRootContext");function Oo(){return q(Vt,!1)}let He=I({name:"ForcePortalRoot",props:{as:{type:[Object,String],default:"template"},force:{type:Boolean,default:!1}},setup(e,{slots:t,attrs:r}){return Q(Vt,e.force),()=>{let{force:n,...a}=e;return R({theirProps:a,ourProps:{},slot:{},slots:t,attrs:r,name:"ForcePortalRoot"})}}});function ko(e){let t=pe(e);if(!t){if(e===null)return null;throw new Error(`[Headless UI]: Cannot find ownerDocument for contextElement: ${e}`)}let r=t.getElementById("headlessui-portal-root");if(r)return r;let n=t.createElement("div");return n.setAttribute("id","headlessui-portal-root"),t.body.appendChild(n)}let Ut=I({name:"Portal",props:{as:{type:[Object,String],default:"div"}},setup(e,{slots:t,attrs:r}){let n=w(null),a=$(()=>pe(n)),o=Oo(),l=q(Wt,null),i=w(o===!0||l==null?ko(n.value):l.resolveTarget());return V(()=>{o||l!=null&&(i.value=l.resolveTarget())}),te(()=>{var s,u;let c=(s=a.value)==null?void 0:s.getElementById("headlessui-portal-root");!c||i.value===c&&i.value.children.length<=0&&((u=i.value.parentElement)==null||u.removeChild(i.value))}),()=>{if(i.value===null)return null;let s={ref:n,"data-headlessui-portal":""};return F(lr,{to:i.value},R({ourProps:s,theirProps:e,slot:{},attrs:r,slots:t,name:"Portal"}))}}}),Wt=Symbol("PortalGroupContext"),So=I({name:"PortalGroup",props:{as:{type:[Object,String],default:"template"},target:{type:Object,default:null}},setup(e,{attrs:t,slots:r}){let n=ir({resolveTarget(){return e.target}});return Q(Wt,n),()=>{let{target:a,...o}=e;return R({theirProps:o,ourProps:{},slot:{},attrs:t,slots:r,name:"PortalGroup"})}}}),qt=Symbol("StackContext");var ze=(e=>(e[e.Add=0]="Add",e[e.Remove=1]="Remove",e))(ze||{});function Eo(){return q(qt,()=>{})}function Po({type:e,enabled:t,element:r,onUpdate:n}){let a=Eo();function o(...l){n==null||n(...l),a(...l)}L(()=>{ee(t,(l,i)=>{l?o(0,e,r):i===!0&&o(1,e,r)},{immediate:!0,flush:"sync"})}),te(()=>{t.value&&o(1,e,r)}),Q(qt,o)}let Gt=Symbol("DescriptionContext");function Co(){let e=q(Gt,null);if(e===null)throw new Error("Missing parent");return e}function Ao({slot:e=w({}),name:t="Description",props:r={}}={}){let n=w([]);function a(o){return n.value.push(o),()=>{let l=n.value.indexOf(o);l!==-1&&n.value.splice(l,1)}}return Q(Gt,{register:a,slot:e,name:t,props:r}),$(()=>n.value.length>0?n.value.join(" "):void 0)}let pa=I({name:"Description",props:{as:{type:[Object,String],default:"p"},id:{type:String,default:()=>`headlessui-description-${ae()}`}},setup(e,{attrs:t,slots:r}){let n=Co();return L(()=>te(n.register(e.id))),()=>{let{name:a="Description",slot:o=w({}),props:l={}}=n,{id:i,...s}=e,u={...Object.entries(l).reduce((c,[v,p])=>Object.assign(c,{[v]:O(p)}),{}),id:i};return R({ourProps:u,theirProps:s,slot:o.value,attrs:t,slots:r,name:a})}}});function Qe(){let e=[],t=[],r={enqueue(n){t.push(n)},addEventListener(n,a,o,l){return n.addEventListener(a,o,l),r.add(()=>n.removeEventListener(a,o,l))},requestAnimationFrame(...n){let a=requestAnimationFrame(...n);r.add(()=>cancelAnimationFrame(a))},nextFrame(...n){r.requestAnimationFrame(()=>{r.requestAnimationFrame(...n)})},setTimeout(...n){let a=setTimeout(...n);r.add(()=>clearTimeout(a))},add(n){e.push(n)},dispose(){for(let n of e.splice(0))n()},async workQueue(){for(let n of t.splice(0))await n()}};return r}function Fo(){return/iPhone/gi.test(window.navigator.platform)||/Mac/gi.test(window.navigator.platform)&&window.navigator.maxTouchPoints>0}var Lo=(e=>(e[e.Open=0]="Open",e[e.Closed=1]="Closed",e))(Lo||{});let Ve=Symbol("DialogContext");function we(e){let t=q(Ve,null);if(t===null){let r=new Error(`<${e} /> is missing a parent component.`);throw Error.captureStackTrace&&Error.captureStackTrace(r,we),r}return t}let ye="DC8F892D-2EBD-447C-A4C8-A03058436FF4",Mo=I({name:"Dialog",inheritAttrs:!1,props:{as:{type:[Object,String],default:"div"},static:{type:Boolean,default:!1},unmount:{type:Boolean,default:!0},open:{type:[Boolean,String],default:ye},initialFocus:{type:Object,default:null},id:{type:String,default:()=>`headlessui-dialog-${ae()}`}},emits:{close:e=>!0},setup(e,{emit:t,attrs:r,slots:n,expose:a}){var o;let l=w(!1);L(()=>{l.value=!0});let i=w(0),s=Ge(),u=$(()=>e.open===ye&&s!==null?z(s.value,{[oe.Open]:!0,[oe.Closed]:!1}):e.open),c=w(new Set),v=w(null),p=w(null),m=$(()=>pe(v));if(a({el:v,$el:v}),!(e.open!==ye||s!==null))throw new Error("You forgot to provide an `open` prop to the `Dialog`.");if(typeof u.value!="boolean")throw new Error(`You provided an \`open\` prop to the \`Dialog\`, but the value is not a boolean. Received: ${u.value===ye?void 0:e.open}`);let h=$(()=>l.value&&u.value?0:1),S=$(()=>h.value===0),D=$(()=>i.value>1),M=q(Ve,null)!==null,C=$(()=>D.value?"parent":"leaf");$o(v,$(()=>D.value?S.value:!1)),Po({type:"Dialog",enabled:$(()=>h.value===0),element:v,onUpdate:(f,y,_)=>{if(y==="Dialog")return z(f,{[ze.Add](){c.value.add(_),i.value+=1},[ze.Remove](){c.value.delete(_),i.value-=1}})}});let N=Ao({name:"DialogDescription",slot:$(()=>({open:u.value}))}),j=w(null),P={titleId:j,panelRef:w(null),dialogState:h,setTitleId(f){j.value!==f&&(j.value=f)},close(){t("close",!1)}};Q(Ve,P);function U(){var f,y,_;return[...Array.from((y=(f=m.value)==null?void 0:f.querySelectorAll("body > *, [data-headlessui-portal]"))!=null?y:[]).filter(k=>!(!(k instanceof HTMLElement)||k.contains(W(p))||P.panelRef.value&&k.contains(P.panelRef.value))),(_=P.panelRef.value)!=null?_:v.value]}return ho(()=>U(),(f,y)=>{P.close(),qe(()=>y==null?void 0:y.focus())},$(()=>h.value===0&&!D.value)),Rt((o=m.value)==null?void 0:o.defaultView,"keydown",f=>{f.defaultPrevented||f.key===Dt.Escape&&h.value===0&&(D.value||(f.preventDefault(),f.stopPropagation(),P.close()))}),V(f=>{var y;if(h.value!==0||M)return;let _=m.value;if(!_)return;let k=Qe(),T=window.pageYOffset;function le(H,B,J){let Le=H.style.getPropertyValue(B);return Object.assign(H.style,{[B]:J}),k.add(()=>{Object.assign(H.style,{[B]:Le})})}let ie=_==null?void 0:_.documentElement,Fe=((y=_.defaultView)!=null?y:window).innerWidth-ie.clientWidth;if(le(ie,"overflow","hidden"),Fe>0){let H=ie.clientWidth-ie.offsetWidth,B=Fe-H;le(ie,"paddingRight",`${B}px`)}if(Fo()){le(_.body,"marginTop",`-${T}px`),window.scrollTo(0,0);let H=null;k.addEventListener(_,"click",B=>{if(B.target instanceof HTMLElement)try{let J=B.target.closest("a");if(!J)return;let{hash:Le}=new URL(J.href),Me=_.querySelector(Le);Me&&!U().some(Yt=>Yt.contains(Me))&&(H=Me)}catch{}},!0),k.addEventListener(_,"touchmove",B=>{B.target instanceof HTMLElement&&!U().some(J=>J.contains(B.target))&&B.preventDefault()},{passive:!1}),k.add(()=>{window.scrollTo(0,window.pageYOffset+T),H&&H.isConnected&&(H.scrollIntoView({block:"nearest"}),H=null)})}f(k.dispose)}),V(f=>{if(h.value!==0)return;let y=W(v);if(!y)return;let _=new IntersectionObserver(k=>{for(let T of k)T.boundingClientRect.x===0&&T.boundingClientRect.y===0&&T.boundingClientRect.width===0&&T.boundingClientRect.height===0&&P.close()});_.observe(y),f(()=>_.disconnect())}),()=>{let{id:f,open:y,initialFocus:_,...k}=e,T={...r,ref:v,id:f,role:"dialog","aria-modal":h.value===0?!0:void 0,"aria-labelledby":j.value,"aria-describedby":N.value},le={open:h.value===0};return F(He,{force:!0},()=>[F(Ut,()=>F(So,{target:v.value},()=>F(He,{force:!1},()=>F(ve,{initialFocus:_,containers:c,features:S.value?z(C.value,{parent:ve.features.RestoreFocus,leaf:ve.features.All&~ve.features.FocusLock}):ve.features.None},()=>R({ourProps:T,theirProps:k,slot:le,attrs:r,slots:n,visible:h.value===0,features:Ee.RenderStrategy|Ee.Static,name:"Dialog"}))))),F(Re,{features:Pe.Hidden,ref:p})])}}});I({name:"DialogOverlay",props:{as:{type:[Object,String],default:"div"},id:{type:String,default:()=>`headlessui-dialog-overlay-${ae()}`}},setup(e,{attrs:t,slots:r}){let n=we("DialogOverlay");function a(o){o.target===o.currentTarget&&(o.preventDefault(),o.stopPropagation(),n.close())}return()=>{let{id:o,...l}=e;return R({ourProps:{id:o,"aria-hidden":!0,onClick:a},theirProps:l,slot:{open:n.dialogState.value===0},attrs:t,slots:r,name:"DialogOverlay"})}}});I({name:"DialogBackdrop",props:{as:{type:[Object,String],default:"div"},id:{type:String,default:()=>`headlessui-dialog-backdrop-${ae()}`}},inheritAttrs:!1,setup(e,{attrs:t,slots:r,expose:n}){let a=we("DialogBackdrop"),o=w(null);return n({el:o,$el:o}),L(()=>{if(a.panelRef.value===null)throw new Error("A component is being used, but a component is missing.")}),()=>{let{id:l,...i}=e,s={id:l,ref:o,"aria-hidden":!0};return F(He,{force:!0},()=>F(Ut,()=>R({ourProps:s,theirProps:{...t,...i},slot:{open:a.dialogState.value===0},attrs:t,slots:r,name:"DialogBackdrop"})))}}});let jo=I({name:"DialogPanel",props:{as:{type:[Object,String],default:"div"},id:{type:String,default:()=>`headlessui-dialog-panel-${ae()}`}},setup(e,{attrs:t,slots:r,expose:n}){let a=we("DialogPanel");n({el:a.panelRef,$el:a.panelRef});function o(l){l.stopPropagation()}return()=>{let{id:l,...i}=e,s={id:l,ref:a.panelRef,onClick:o};return R({ourProps:s,theirProps:i,slot:{open:a.dialogState.value===0},attrs:t,slots:r,name:"DialogPanel"})}}});I({name:"DialogTitle",props:{as:{type:[Object,String],default:"h2"},id:{type:String,default:()=>`headlessui-dialog-title-${ae()}`}},setup(e,{attrs:t,slots:r}){let n=we("DialogTitle");return L(()=>{n.setTitleId(e.id),te(()=>n.setTitleId(null))}),()=>{let{id:a,...o}=e;return R({ourProps:{id:a},theirProps:o,slot:{open:n.dialogState.value===0},attrs:t,slots:r,name:"DialogTitle"})}}});function To(e){let t={called:!1};return(...r)=>{if(!t.called)return t.called=!0,e(...r)}}function De(e,...t){e&&t.length>0&&e.classList.add(...t)}function be(e,...t){e&&t.length>0&&e.classList.remove(...t)}var Ue=(e=>(e.Finished="finished",e.Cancelled="cancelled",e))(Ue||{});function Do(e,t){let r=Qe();if(!e)return r.dispose;let{transitionDuration:n,transitionDelay:a}=getComputedStyle(e),[o,l]=[n,a].map(i=>{let[s=0]=i.split(",").filter(Boolean).map(u=>u.includes("ms")?parseFloat(u):parseFloat(u)*1e3).sort((u,c)=>c-u);return s});return o!==0?r.setTimeout(()=>t("finished"),o+l):t("finished"),r.add(()=>t("cancelled")),r.dispose}function yt(e,t,r,n,a,o){let l=Qe(),i=o!==void 0?To(o):()=>{};return be(e,...a),De(e,...t,...r),l.nextFrame(()=>{be(e,...r),De(e,...n),l.add(Do(e,s=>(be(e,...n,...t),De(e,...a),i(s))))}),l.add(()=>be(e,...t,...r,...n,...a)),l.add(()=>i("cancelled")),l.dispose}function re(e=""){return e.split(" ").filter(t=>t.trim().length>1)}let Je=Symbol("TransitionContext");var No=(e=>(e.Visible="visible",e.Hidden="hidden",e))(No||{});function Bo(){return q(Je,null)!==null}function Io(){let e=q(Je,null);if(e===null)throw new Error("A is used but it is missing a parent .");return e}function Ro(){let e=q(Ke,null);if(e===null)throw new Error("A is used but it is missing a parent .");return e}let Ke=Symbol("NestingContext");function Ae(e){return"children"in e?Ae(e.children):e.value.filter(({state:t})=>t==="visible").length>0}function Qt(e){let t=w([]),r=w(!1);L(()=>r.value=!0),te(()=>r.value=!1);function n(o,l=Z.Hidden){let i=t.value.findIndex(({id:s})=>s===o);i!==-1&&(z(l,{[Z.Unmount](){t.value.splice(i,1)},[Z.Hidden](){t.value[i].state="hidden"}}),!Ae(t)&&r.value&&(e==null||e()))}function a(o){let l=t.value.find(({id:i})=>i===o);return l?l.state!=="visible"&&(l.state="visible"):t.value.push({id:o,state:"visible"}),()=>n(o,Z.Unmount)}return{children:t,register:a,unregister:n}}let Jt=Ee.RenderStrategy,xe=I({props:{as:{type:[Object,String],default:"div"},show:{type:[Boolean],default:null},unmount:{type:[Boolean],default:!0},appear:{type:[Boolean],default:!1},enter:{type:[String],default:""},enterFrom:{type:[String],default:""},enterTo:{type:[String],default:""},entered:{type:[String],default:""},leave:{type:[String],default:""},leaveFrom:{type:[String],default:""},leaveTo:{type:[String],default:""}},emits:{beforeEnter:()=>!0,afterEnter:()=>!0,beforeLeave:()=>!0,afterLeave:()=>!0},setup(e,{emit:t,attrs:r,slots:n,expose:a}){if(!Bo()&&io())return()=>F(Kt,{...e,onBeforeEnter:()=>t("beforeEnter"),onAfterEnter:()=>t("afterEnter"),onBeforeLeave:()=>t("beforeLeave"),onAfterLeave:()=>t("afterLeave")},n);let o=w(null),l=w("visible"),i=$(()=>e.unmount?Z.Unmount:Z.Hidden);a({el:o,$el:o});let{show:s,appear:u}=Io(),{register:c,unregister:v}=Ro(),p={value:!0},m=ae(),h={value:!1},S=Qt(()=>{h.value||(l.value="hidden",v(m),t("afterLeave"))});L(()=>{let y=c(m);te(y)}),V(()=>{if(i.value===Z.Hidden&&m){if(s&&l.value!=="visible"){l.value="visible";return}z(l.value,{hidden:()=>v(m),visible:()=>c(m)})}});let D=re(e.enter),M=re(e.enterFrom),C=re(e.enterTo),N=re(e.entered),j=re(e.leave),P=re(e.leaveFrom),U=re(e.leaveTo);L(()=>{V(()=>{if(l.value==="visible"){let y=W(o);if(y instanceof Comment&&y.data==="")throw new Error("Did you forget to passthrough the `ref` to the actual DOM node?")}})});function f(y){let _=p.value&&!u.value,k=W(o);!k||!(k instanceof HTMLElement)||_||(h.value=!0,s.value&&t("beforeEnter"),s.value||t("beforeLeave"),y(s.value?yt(k,D,M,C,N,T=>{h.value=!1,T===Ue.Finished&&t("afterEnter")}):yt(k,j,P,U,N,T=>{h.value=!1,T===Ue.Finished&&(Ae(S)||(l.value="hidden",v(m),t("afterLeave")))})))}return L(()=>{ee([s],(y,_,k)=>{f(k),p.value=!1},{immediate:!0})}),Q(Ke,S),so($(()=>z(l.value,{visible:oe.Open,hidden:oe.Closed}))),()=>{let{appear:y,show:_,enter:k,enterFrom:T,enterTo:le,entered:ie,leave:Fe,leaveFrom:H,leaveTo:B,...J}=e;return R({theirProps:J,ourProps:{ref:o},slot:{},slots:n,attrs:r,features:Jt,visible:l.value==="visible",name:"TransitionChild"})}}}),Ho=xe,Kt=I({inheritAttrs:!1,props:{as:{type:[Object,String],default:"div"},show:{type:[Boolean],default:null},unmount:{type:[Boolean],default:!0},appear:{type:[Boolean],default:!1},enter:{type:[String],default:""},enterFrom:{type:[String],default:""},enterTo:{type:[String],default:""},entered:{type:[String],default:""},leave:{type:[String],default:""},leaveFrom:{type:[String],default:""},leaveTo:{type:[String],default:""}},emits:{beforeEnter:()=>!0,afterEnter:()=>!0,beforeLeave:()=>!0,afterLeave:()=>!0},setup(e,{emit:t,attrs:r,slots:n}){let a=Ge(),o=$(()=>e.show===null&&a!==null?z(a.value,{[oe.Open]:!0,[oe.Closed]:!1}):e.show);V(()=>{if(![!0,!1].includes(o.value))throw new Error('A is used but it is missing a `:show="true | false"` prop.')});let l=w(o.value?"visible":"hidden"),i=Qt(()=>{l.value="hidden"}),s=w(!0),u={show:o,appear:$(()=>e.appear||!s.value)};return L(()=>{V(()=>{s.value=!1,o.value?l.value="visible":Ae(i)||(l.value="hidden")})}),Q(Ke,i),Q(Je,u),()=>{let c=Tt(e,["show","appear","unmount","onBeforeEnter","onBeforeLeave","onAfterEnter","onAfterLeave"]),v={unmount:e.unmount};return R({ourProps:{...v,as:"template"},theirProps:{},slot:{},slots:{...n,default:()=>[F(Ho,{onBeforeEnter:()=>t("beforeEnter"),onAfterEnter:()=>t("afterEnter"),onBeforeLeave:()=>t("beforeLeave"),onAfterLeave:()=>t("afterLeave"),...r,...v,...c},n.default)]},attrs:{},features:Jt,visible:l.value==="visible",name:"Transition"})}}});const zo=d("div",{class:"fixed inset-0 bg-gray-600 bg-opacity-75"},null,-1),Vo={class:"fixed inset-0 z-40 flex"},Uo={class:"absolute top-0 right-0 -mr-12 pt-2"},Wo=d("span",{class:"sr-only"},"Close sidebar",-1),qo={class:"flex flex-shrink-0 items-center px-4"},Go={class:"mt-5 h-0 flex-1 overflow-y-auto"},Qo={class:"space-y-1 px-2"},Jo=["onClick"],Ko={key:0,class:"absolute right-0 mr-2"},Yo={key:1,class:"absolute right-0 mr-2"},Zo=d("div",{class:"w-14 flex-shrink-0","aria-hidden":"true"},null,-1),Xo={__name:"MobileMenu",props:{navigation:Object,sidebarOpen:Boolean},setup(e){return(t,r)=>(g(),X(O(Kt),{as:"template",show:e.sidebarOpen},{default:E(()=>[x(O(Mo),{as:"div",class:"relative z-40 md:hidden",onClose:r[1]||(r[1]=n=>t.$emit("toggleMobileMenu",!1)),onBlur:r[2]||(r[2]=n=>e.sidebarOpen!=!0),tabindex:"-1"},{default:E(()=>[x(O(xe),{as:"template",enter:"transition-opacity ease-linear duration-300","enter-from":"opacity-0","enter-to":"opacity-100",leave:"transition-opacity ease-linear duration-300","leave-from":"opacity-100","leave-to":"opacity-0"},{default:E(()=>[zo]),_:1}),d("div",Vo,[x(O(xe),{as:"template",enter:"transition ease-in-out duration-300 transform","enter-from":"-translate-x-full","enter-to":"translate-x-0",leave:"transition ease-in-out duration-300 transform","leave-from":"translate-x-0","leave-to":"-translate-x-full"},{default:E(()=>[x(O(jo),{class:"relative flex w-full max-w-xs flex-1 flex-col bg-indigo-700 pt-5 pb-4"},{default:E(()=>[x(O(xe),{as:"template",enter:"ease-in-out duration-300","enter-from":"opacity-0","enter-to":"opacity-100",leave:"ease-in-out duration-300","leave-from":"opacity-100","leave-to":"opacity-0"},{default:E(()=>[d("div",Uo,[d("button",{type:"button",class:"ml-1 flex h-10 w-10 items-center justify-center rounded-full focus:outline-none focus:ring-2 focus:ring-inset focus:ring-white",onClick:r[0]||(r[0]=n=>t.$emit("toggleMobileMenu",!1))},[Wo,x(O(br),{class:"h-6 w-6 text-white","aria-hidden":"true"})])])]),_:1}),d("div",qo,[x(xt,{class:"h-8 auto"})]),d("div",Go,[d("nav",Qo,[(g(!0),b(G,null,ue(e.navigation,n=>{var a,o,l;return g(),b("div",{key:n.name,class:A([n.current?"bg-indigo-600 text-white p-0.5 rounded-sm":""]),onClick:i=>t.$emit("toggleCurrent",n)},[d("div",{class:A([n.current?"bg-indigo-800 text-white":"text-indigo-100 hover:bg-indigo-600","group flex items-center px-2 py-2 text-sm font-medium rounded-md"])},[(g(),X(me(n.icon),{class:"mr-3 h-6 w-6 flex-shrink-0 text-indigo-300","aria-hidden":"true"})),ne(" "+ce(n.name)+" ",1),n.current&&((a=n==null?void 0:n.children)==null?void 0:a.length)>0?(g(),b("span",Ko,[x(O(Ot),{class:"mr-3 h-4 w-4 flex-shrink-0 text-indigo-300","aria-hidden":"true"})])):!n.current&&((o=n==null?void 0:n.children)==null?void 0:o.length)>0?(g(),b("span",Yo,[x(O(kt),{class:"mr-3 h-4 w-4 flex-shrink-0 text-indigo-300","aria-hidden":"true"})])):$e("",!0)],2),We(d("div",{class:A(["p-2 my-1 mx-3 border border-indigo-600 rounded-md bg-indigo-700 shadow-md",{"transition duration-500 ease-in-out":n.current}])},[(g(!0),b(G,null,ue(n.children,i=>(g(),b("div",{"aria-level":"childreen",key:i.name,class:"px-2 py-1"},[x(O(ge),{href:t.route(i.route),class:A([[i.current?"bg-indigo-800 text-white":"text-indigo-100 bg-indigo-600 hover:bg-indigo-600"],"px-1 py-1.5 group flex items-center text-sm font-medium rounded-md"])},{default:E(()=>[(g(),X(me(i.icon),{class:"mr-3 h-4 w-4 flex-shrink-0 text-indigo-300","aria-hidden":"true"})),ne(" "+ce(i.name),1)]),_:2},1032,["href","class"])]))),128))],2),[[bt,n.current&&((l=n==null?void 0:n.children)==null?void 0:l.length)>0]])],10,Jo)}),128))])])]),_:1})]),_:1}),Zo])]),_:1})]),_:1},8,["show"]))}},ea=["href"],ta={key:0,class:"fixed top-0 left-0 right-0 bottom-0 w-full h-screen z-50 overflow-hidden bg-gray-900 opacity-75 flex flex-col items-center justify-center"},ra={class:"w-10 h-10"},na={class:"py-6 bg-white dark:bg-gray-900 dark:text-white"},oa={key:0,class:"mx-auto max-w-7xl px-4 sm:px-6 md:px-8"},aa={class:"mx-auto max-w-7xl px-4 sm:px-6 md:px-8"},la={class:"py-4"},ia={class:"h-full rounded-lg border-4 border-dashed border-gray-200"},va={__name:"AuthenticatedLayout",setup(e){const t=w([{name:"Dashboard",route:"dashboard",icon:yr,current:route().current("dashboard")},{name:"User",route:"user.index",icon:tt,current:route().current("user.index")||route().current("user.create")||route().current("user.edit")||route().current("user.show"),children:[{name:"All User",route:"user.index",icon:tt,current:route().current("user.index")},{name:"Create",route:"user.create",icon:Xe,current:route().current("user.create")}]},{name:"Role",route:"role.index",icon:et,current:route().current("role.index")||route().current("role.create")||route().current("role.edit")||route().current("role.show"),children:[{name:"Role",route:"role.index",icon:et,current:route().current("role.index")},{name:"Create",route:"role.create",icon:Xe,current:route().current("role.create")}]},{name:"Settings",route:"options.index",icon:Ze,current:route().current("options.index"),children:[{name:"Settings",route:"options.index",icon:Ze,current:route().current("options.index")}]}]),r=w(!1),n=w(!1),a=w(!1);function o(i){n&&i.route.split(".")[0]!=route().current().split(".")[0]&&(i.current=!i.current)}function l(i=!0){a.value=i}return L(()=>{l()}),(i,s)=>(g(),b(G,null,[x(O(sr),null,{default:E(()=>[d("link",{rel:"icon",type:"image/svg+xml",href:i.$page.props.global.options.fav_icon},null,8,ea)]),_:1}),d("div",null,[a.value?$e("",!0):(g(),b("div",ta,[d("span",ra,[x(wr)])])),x(ur),d("div",null,[x(Xo,{sidebarOpen:r.value,navigation:t.value,onToggleMobileMenu:s[0]||(s[0]=u=>r.value=!r.value),onToggleCurrent:o},null,8,["sidebarOpen","navigation"]),x(Ar,{navigation:t.value,isOpenSidebar:n.value,onToggleCurrent:o},null,8,["navigation","isOpenSidebar"]),d("div",{class:A(["flex flex-1 flex-col dark:bg-gray-900 dark:text-white",n.value?"md:pl-64":"md:pl-20"])},[x(ro,{onToggleMenu:s[1]||(s[1]=u=>(r.value=!r.value,n.value=!n.value)),isOpenSidebar:n.value},null,8,["isOpenSidebar"]),d("main",null,[d("div",na,[i.$slots.header?(g(),b("div",oa,[Oe(i.$slots,"header")])):$e("",!0),d("div",aa,[d("div",la,[d("div",ia,[Oe(i.$slots,"default")])])])])])],2)])])],64))}};export{va as _,$t as a}; diff --git a/public/build/assets/Blog-cfa35f18.js b/public/build/assets/Blog-cfa35f18.js deleted file mode 100644 index 7a092be..0000000 --- a/public/build/assets/Blog-cfa35f18.js +++ /dev/null @@ -1 +0,0 @@ -import{_}from"./Pagination-efa838c1.js";import{r as m,o as l,g as i,d as s,t as e,F as x,m as h,c as g,h as u,a as r,w as d}from"./app-a07534fc.js";const f={class:"bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50 py-6 sm:py-10 lg:py-12"},p={class:"mx-auto max-w-md px-6 text-center sm:max-w-3xl lg:max-w-full lg:px-8"},y={class:"text-lg font-semibold text-cyan-600"},w={class:"mt-2 text-3xl font-bold tracking-tight text-gray-900 dark:text-gray-200 sm:text-4xl"},k={class:"mx-auto mt-5 max-w-prose text-xl text-gray-500"},v={class:"mx-auto mt-12 grid max-w-md gap-8 px-6 sm:max-w-lg lg:max-w-full lg:grid-cols-3 lg:px-8"},b={class:"flex-shrink-0"},j=["src"],B={class:"flex flex-1 flex-col justify-between bg-white p-6"},C={class:"flex-1"},L={class:"text-xl font-semibold text-gray-900"},N={class:"mt-3 text-base text-gray-500"},V={class:"mt-6 flex items-center"},F={class:"flex-shrink-0"},D=["src","alt"],E={class:"ml-3"},O={class:"text-sm font-medium text-gray-900"},S=["href"],$={class:"flex space-x-1 text-sm text-gray-500"},G={__name:"Blog",props:{blogs:Object},setup(o){return(a,q)=>{const n=m("Link");return l(),i("div",f,[s("div",p,[s("h2",y,e(a.__("blog.heading")),1),s("p",w,e(a.__("blog.sub_heading")),1),s("p",k,e(a.__("blog.description")),1)]),s("div",v,[(l(!0),i(x,null,h(o.blogs.data,t=>{var c;return l(),i("div",{key:t.id,class:"flex flex-col overflow-hidden rounded-lg shadow-lg"},[s("div",b,[r(n,{href:a.route("blog.show",t.slug)},{default:d(()=>[s("img",{class:"h-48 w-full object-cover",src:t.image,alt:""},null,8,j)]),_:2},1032,["href"])]),s("div",B,[s("div",C,[r(n,{href:a.route("blog.show",t.slug),class:"mt-2 block"},{default:d(()=>[s("p",L,e(t.title),1)]),_:2},1032,["href"]),s("p",N,e(t.description.split(" ").slice(0,15).join(" ")+" ..."),1)]),s("div",V,[s("div",F,[s("span",null,[s("img",{class:"h-10 w-10 rounded-full",src:t.user.avatar,alt:t.user.name},null,8,D)])]),s("div",E,[s("p",O,[s("a",{href:(c=t.user)==null?void 0:c.href,class:"hover:underline"},e(t.user.name),9,S)]),s("div",$,[s("span",null,e(t.created_at),1)])])])])])}),128))]),o.blogs.last_page>1?(l(),g(_,{key:0,class:"my-5 dark:text-white flex justify-end p-3",links:o.blogs.links},null,8,["links"])):u("",!0)])}}};export{G as default}; diff --git a/public/build/assets/BlogShow-1bb4cfa9.js b/public/build/assets/BlogShow-1bb4cfa9.js deleted file mode 100644 index b94523e..0000000 --- a/public/build/assets/BlogShow-1bb4cfa9.js +++ /dev/null @@ -1 +0,0 @@ -import{o as a,g as l,d as t,t as e}from"./app-a07534fc.js";const o={class:"container mx-auto p-6 bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50"},c={class:"grid grid-col sm:grid-cols-2 gap-5 bg-cyan-100 text-gray-900 dark:bg-gray-800 dark:text-gray-50"},n={class:"p-5 sm:p-10"},d=["src","alt"],i={class:"p-5 sm:p-10"},r={"aria-level":"blog-content"},g={class:"text-4xl mb-5 underline underline-offset-8 decoration-slate-500"},m={class:"text-md text-gray-700 dark:text-gray-400 break-all text-justify"},h={class:"mt-6 flex items-center"},_={class:"flex-shrink-0"},x=["src","alt"],u={class:"ml-3"},b={class:"text-sm font-medium text-gray-900 dark:text-gray-300 mb-0.5"},y={class:"hover:underline"},v={class:"flex space-x-1 text-sm text-gray-500"},w={__name:"BlogShow",props:{blog:Object},setup(s){return(f,k)=>(a(),l("div",o,[t("div",c,[t("div",n,[t("img",{class:"w-96 h-auto rounded-md",src:s.blog.image,alt:s.blog.title},null,8,d)]),t("div",i,[t("div",r,[t("h1",g,e(s.blog.title),1),t("p",m,e(s.blog.description),1)]),t("div",h,[t("div",_,[t("span",null,[t("img",{class:"h-10 w-10 rounded-full",src:s.blog.user.avatar,alt:s.blog.user.name},null,8,x)])]),t("div",u,[t("p",b,[t("span",y,e(s.blog.user.name),1)]),t("div",v,[t("span",null,e(s.blog.created_at),1)])])])])])]))}};export{w as default}; diff --git a/public/build/assets/Category-7e67090f.js b/public/build/assets/Category-7e67090f.js deleted file mode 100644 index 8c9a9a0..0000000 --- a/public/build/assets/Category-7e67090f.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as n}from"./Pagination-efa838c1.js";import{r as d,o as s,g as l,d as e,F as g,m,c as o,h as p,w as h,t as r}from"./app-a07534fc.js";const u={class:"bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50"},_={class:"mx-auto max-w-xl px-4 sm:px-6 lg:max-w-full lg:px-8 py-6 sm:py-10 lg:py-12"},x={class:"mt-10 space-y-12 lg:grid lg:grid-cols-3 lg:gap-x-8 lg:space-y-0 gap-10"},f={"aria-hidden":"true",class:"aspect-w-3 aspect-h-2 overflow-hidden rounded-lg group-hover:opacity-75 lg:aspect-w-5 lg:aspect-h-6"},k=["src","alt"],y={class:"mt-4 text-base font-semibold text-gray-900 dark:text-white"},w={class:"mt-2 text-sm text-gray-500"},B={__name:"Category",props:{categories:Object},setup(a){return(c,b)=>{const i=d("Link");return s(),l("div",u,[e("div",_,[e("div",x,[(s(!0),l(g,null,m(a.categories.data,t=>(s(),o(i,{key:t.title,href:c.route("category.show",t.slug),class:"group block mb-5"},{default:h(()=>[e("div",f,[e("img",{src:t.image,alt:t.title,class:"h-full w-full object-cover object-center"},null,8,k)]),e("h3",y,r(t.title),1),e("p",w,r(t.description),1)]),_:2},1032,["href"]))),128))]),a.categories.last_page>1?(s(),o(n,{key:0,class:"my-5 dark:text-white flex justify-end p-3",links:a.categories.links},null,8,["links"])):p("",!0)])])}}};export{B as default}; diff --git a/public/build/assets/CategoryList-73e6e756.js b/public/build/assets/CategoryList-73e6e756.js deleted file mode 100644 index bd06dc9..0000000 --- a/public/build/assets/CategoryList-73e6e756.js +++ /dev/null @@ -1 +0,0 @@ -import{p as v,A as h,o as l,g as n,d as s,n as u,b as c,F as i,m as g,e as w,t as m,h as x}from"./app-a07534fc.js";const S={class:"bg-white dark:bg-gray-900 text-gray-900 dark:text-gray-50"},j=["onClick"],V=["src","alt"],$={key:0,class:"ml-4"},B=["onClick"],L={class:"flex gap-2 justify-start place-items-center"},N=["src","alt"],A={key:0,class:"ml-4"},F=["onClick"],P={class:"flex gap-2 justify-start place-items-center"},q=["src","alt"],E={__name:"CategoryList",props:{categories:Object},emits:["selectedCatSlug"],setup(b,{emit:f}){let r=v("");const C=h().url,y=new URLSearchParams(C.value.split("?")[1]);r.value=y.get("category")||"";function o(p){f("selectedCatSlug",p)}return(p,d)=>(l(),n("div",S,[s("h3",{class:"mb-3 mt-5 font-semibold cursor-pointer",onClick:d[0]||(d[0]=e=>o(null))},[s("span",{class:u(["dark:text-gray-200 text-lg border-b-gray-500 border-b pb-1",c(r).length==0?" !text-cyan-300":""])}," Show All ",2)]),(l(!0),n(i,null,g(b.categories,e=>{var _;return l(),n("div",{key:e.slug,class:"mb-4"},[s("div",{class:u(["font-normal sm:font-semibold cursor-pointer text-sm sm:text-lg md:text-lg flex gap-2 justify-start place-items-center",c(r)==e.slug?" text-cyan-400":""]),onClick:t=>o(e.slug)},[w(m(e.label)+" ",1),s("img",{class:"w-4 h-4 rounded-sm",src:e.image,alt:e.slug},null,8,V)],10,j),((_=e==null?void 0:e.children)==null?void 0:_.length)>0?(l(),n("div",$,[s("ul",null,[(l(!0),n(i,null,g(e.children.slice(0,10),t=>{var k;return l(),n("li",{key:t.slug},[s("span",{onClick:a=>o(t.slug),class:u(["cursor-pointer",c(r)==t.slug?" text-cyan-400":""])},[s("span",L,[s("span",null,"- "+m(t.label),1),s("img",{class:"w-4 h-4 rounded-sm",src:t.image,alt:t.slug},null,8,N)])],10,B),((k=t==null?void 0:t.children)==null?void 0:k.length)>0?(l(),n("div",A,[s("ul",null,[(l(!0),n(i,null,g(t.children.slice(0,10),a=>(l(),n("li",{key:a.slug},[s("span",{onClick:z=>o(a.slug),class:u(["cursor-pointer",c(r)==a.slug?" text-cyan-400":""])},[s("span",P,[s("span",null," -- "+m(a.label),1),s("img",{class:"w-4 h-4 rounded-sm",src:a.image,alt:a.slug},null,8,q)])],10,F)]))),128))])])):x("",!0)])}),128))])])):x("",!0)])}),128))]))}};export{E as default}; diff --git a/public/build/assets/ConfirmPassword-5b5d5ab0.js b/public/build/assets/ConfirmPassword-5b5d5ab0.js deleted file mode 100644 index db4d354..0000000 --- a/public/build/assets/ConfirmPassword-5b5d5ab0.js +++ /dev/null @@ -1 +0,0 @@ -import{u as l,o as p,c as _,w as i,a,b as o,H as c,d as r,t as m,e as f,n as u,f as w}from"./app-a07534fc.js";import{_ as b}from"./InputError-819a2731.js";import{_ as g}from"./InputLabel-0d88b11e.js";import{_ as h}from"./PrimaryButton-f1dd44c4.js";import{_ as v}from"./TextInput-6d371888.js";import{_ as y}from"./GuestLayout-8f04497b.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";const V={class:"mb-4 text-sm text-gray-600 dark:text-gray-400"},x=["onSubmit"],$={class:"flex justify-end mt-4"},z={__name:"ConfirmPassword",setup(k){const s=l({password:""}),d=()=>{s.post(route("password.confirm"),{onFinish:()=>s.reset()})};return(e,t)=>(p(),_(y,null,{default:i(()=>[a(o(c),{title:"Confirm Password"}),r("div",V,m(e.__("confirm_password.heading")),1),r("form",{onSubmit:w(d,["prevent"])},[r("div",null,[a(g,{for:"password",value:e.__("confirm_password.password")},null,8,["value"]),a(v,{id:"password",type:"password",class:"mt-1 block w-full",modelValue:o(s).password,"onUpdate:modelValue":t[0]||(t[0]=n=>o(s).password=n),required:"",autocomplete:"current-password",autofocus:""},null,8,["modelValue"]),a(b,{class:"mt-2",message:o(s).errors.password},null,8,["message"])]),r("div",$,[a(h,{class:u(["ml-4",{"opacity-25":o(s).processing}]),disabled:o(s).processing},{default:i(()=>[f(m(e.__("confirm_password.submit")),1)]),_:1},8,["class","disabled"])])],40,x)]),_:1}))}};export{z as default}; diff --git a/public/build/assets/ConfirmPassword-ef9aeee9.js b/public/build/assets/ConfirmPassword-e580eab0.js similarity index 73% rename from public/build/assets/ConfirmPassword-ef9aeee9.js rename to public/build/assets/ConfirmPassword-e580eab0.js index f5c79d9..af534e8 100644 --- a/public/build/assets/ConfirmPassword-ef9aeee9.js +++ b/public/build/assets/ConfirmPassword-e580eab0.js @@ -1 +1 @@ -import{v as l,c as p,w as i,o as _,a,u as o,X as c,b as r,t as m,d as u,n as f,e as w}from"./app-4f9e7dfc.js";import{_ as b,a as g}from"./InputLabel-5969cc22.js";import{_ as v}from"./PrimaryButton-89a514d8.js";import{_ as h}from"./TextInput-5a299594.js";import{_ as y}from"./GuestLayout-4014bb8c.js";import"./ApplicationLogo-1c8f1468.js";import"./defaultFile-106f3fb6.js";import"./Toast-3242a059.js";import"./toast-c1edb8fd.js";const V={class:"mb-4 text-sm text-gray-600 dark:text-gray-400"},x=["onSubmit"],$={class:"flex justify-end mt-4"},F={__name:"ConfirmPassword",setup(k){const s=l({password:""}),d=()=>{s.post(route("password.confirm"),{onFinish:()=>s.reset()})};return(e,t)=>(_(),p(y,null,{default:i(()=>[a(o(c),{title:"Confirm Password"}),r("div",V,m(e.__("confirm_password.heading")),1),r("form",{onSubmit:w(d,["prevent"])},[r("div",null,[a(b,{for:"password",value:e.__("confirm_password.password")},null,8,["value"]),a(h,{id:"password",type:"password",class:"mt-1 block w-full",modelValue:o(s).password,"onUpdate:modelValue":t[0]||(t[0]=n=>o(s).password=n),required:"",autocomplete:"current-password",autofocus:""},null,8,["modelValue"]),a(g,{class:"mt-2",message:o(s).errors.password},null,8,["message"])]),r("div",$,[a(v,{class:f(["ml-4",{"opacity-25":o(s).processing}]),disabled:o(s).processing},{default:i(()=>[u(m(e.__("confirm_password.submit")),1)]),_:1},8,["class","disabled"])])],40,x)]),_:1}))}};export{F as default}; +import{v as l,c as p,w as i,o as _,a,u as o,X as c,b as r,t as m,d as u,n as f,e as w}from"./app-4dfa7f3b.js";import{_ as b,a as g}from"./InputLabel-fec82426.js";import{_ as v}from"./PrimaryButton-2b535c8b.js";import{_ as h}from"./TextInput-fb418c8e.js";import{_ as y}from"./GuestLayout-ac5d3072.js";import"./ApplicationLogo-77a8e36b.js";import"./defaultFile-2b6c57d3.js";import"./Toast-645f4c7b.js";import"./toast-ded66f04.js";const V={class:"mb-4 text-sm text-gray-600 dark:text-gray-400"},x=["onSubmit"],$={class:"flex justify-end mt-4"},F={__name:"ConfirmPassword",setup(k){const s=l({password:""}),d=()=>{s.post(route("password.confirm"),{onFinish:()=>s.reset()})};return(e,t)=>(_(),p(y,null,{default:i(()=>[a(o(c),{title:"Confirm Password"}),r("div",V,m(e.__("confirm_password.heading")),1),r("form",{onSubmit:w(d,["prevent"])},[r("div",null,[a(b,{for:"password",value:e.__("confirm_password.password")},null,8,["value"]),a(h,{id:"password",type:"password",class:"mt-1 block w-full",modelValue:o(s).password,"onUpdate:modelValue":t[0]||(t[0]=n=>o(s).password=n),required:"",autocomplete:"current-password",autofocus:""},null,8,["modelValue"]),a(g,{class:"mt-2",message:o(s).errors.password},null,8,["message"])]),r("div",$,[a(v,{class:f(["ml-4",{"opacity-25":o(s).processing}]),disabled:o(s).processing},{default:i(()=>[u(m(e.__("confirm_password.submit")),1)]),_:1},8,["class","disabled"])])],40,x)]),_:1}))}};export{F as default}; diff --git a/public/build/assets/Contact-43cd18c6.js b/public/build/assets/Contact-43cd18c6.js deleted file mode 100644 index 748ad5e..0000000 --- a/public/build/assets/Contact-43cd18c6.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as d}from"./_plugin-vue_export-helper-c27b6911.js";import{r as t,o as r,g as i,d as s,t as o,a,w as n,_ as m,e as p}from"./app-a07534fc.js";const h={},_={"aria-labelledby":"sale-heading",class:"border-b-2 border-cyan-100 bg-clip-border"},g={class:"overflow-hidden pt-32 sm:pt-14 bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50"},x={class:"bg-cyan-50 text-gray-900 dark:bg-gray-800 dark:text-gray-50"},f={class:"mx-auto max-w-full px-4 sm:px-6 lg:px-8"},b={class:"relative pt-48 pb-16 sm:pb-24"},v={id:"sale-heading",class:"text-2xl font-bold tracking-tight md:text-3xl break-all overflow-hidden"},u={class:"inline-flex rounded-md shadow mt-5"},w={class:"absolute -top-32 left-1/2 -translate-x-1/2 transform sm:top-6 sm:translate-x-0"},y={class:"ml-24 flex min-w-max space-x-6 sm:ml-3 lg:space-x-8"},k={class:"flex space-x-6 sm:flex-col sm:space-x-0 sm:space-y-6 lg:space-y-8"},j={class:"flex-shrink-0"},N=["src"],V={class:"mt-6 flex-shrink-0 sm:mt-0"},$=["src"],B={class:"flex space-x-6 sm:-mt-20 sm:flex-col sm:space-x-0 sm:space-y-6 lg:space-y-8"},C={class:"flex-shrink-0"},L=["src"],S={class:"mt-6 flex-shrink-0 sm:mt-0"},q=["src"],D=m('
',1);function E(e,T){const c=t("font-awesome-icon"),l=t("Link");return r(),i("section",_,[s("div",g,[s("div",x,[s("div",f,[s("div",b,[s("div",null,[s("h2",v,o(e.__("contact.section.title")),1),s("div",u,[a(l,{href:e.route("contact"),class:"inline-flex items-center justify-center rounded-md border border-transparent bg-white px-5 py-3 text-base font-medium text-gray-900 hover:bg-gray-50"},{default:n(()=>[p(o(e.__("contact.section.link_text"))+" ",1),a(c,{icon:"fa-solid fa-arrow-up-right-from-square",class:"-mr-1 ml-3 h-4 w-4 text-gray-400"})]),_:1},8,["href"])])]),s("div",w,[s("div",y,[s("div",k,[s("div",j,[s("img",{class:"h-64 w-64 rounded-lg object-cover md:h-72 md:w-72",src:e.$page.props.global.options.model_one,alt:""},null,8,N)]),s("div",V,[s("img",{class:"h-64 w-64 rounded-lg object-cover md:h-72 md:w-72",src:e.$page.props.global.options.model_two,alt:""},null,8,$)])]),s("div",B,[s("div",C,[s("img",{class:"h-64 w-64 rounded-lg object-cover md:h-72 md:w-72",src:e.$page.props.global.options.model_three,alt:""},null,8,L)]),s("div",S,[s("img",{class:"h-64 w-64 rounded-lg object-cover md:h-72 md:w-72",src:e.$page.props.global.options.model_four,alt:""},null,8,q)])]),D])])])])])])])}const F=d(h,[["render",E]]);export{F as default}; diff --git a/public/build/assets/ContactForm-415d55a2.js b/public/build/assets/ContactForm-415d55a2.js deleted file mode 100644 index e2bd4dc..0000000 --- a/public/build/assets/ContactForm-415d55a2.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as r}from"./SocialLink-414cdd14.js";import d from"./Form-63bc343c.js";import{o as i,g as l,d as t,t as e,a as o,b as a,_ as c}from"./app-a07534fc.js";import{r as p}from"./EnvelopeIcon-fcce7294.js";import"./InputError-819a2731.js";function h(n,s){return i(),l("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true"},[t("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M2.25 6.75c0 8.284 6.716 15 15 15h2.25a2.25 2.25 0 002.25-2.25v-1.372c0-.516-.351-.966-.852-1.091l-4.423-1.106c-.44-.11-.902.055-1.173.417l-.97 1.293c-.282.376-.769.542-1.21.38a12.035 12.035 0 01-7.143-7.143c-.162-.441.004-.928.38-1.21l1.293-.97c.363-.271.527-.734.417-1.173L6.963 3.102a1.125 1.125 0 00-1.091-.852H4.5A2.25 2.25 0 002.25 4.5v2.25z"})])}const f={class:"bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50"},g={class:"mx-auto max-w-full py-6 px-6 sm:py-10 lg:px-8"},_={class:"relative bg-cyan-50 dark:bg-gray-800 text-gray-900 dark:text-gray-50 shadow-xl"},x={class:"sr-only"},u={class:"grid grid-cols-1 lg:grid-cols-3"},m={class:"relative overflow-hidden bg-cyan-700 py-10 px-6 sm:px-10 xl:p-12"},v=c('',3),w={class:"text-lg font-medium text-white"},y={class:"mt-6 max-w-3xl text-base text-cyan-50 break-words"},b={class:"mt-8 space-y-6"},k={class:"sr-only"},M={class:"flex text-base text-cyan-50"},B={class:"ml-3"},L=t("dt",null,[t("span",{class:"sr-only"},"Email")],-1),G={class:"flex text-base text-cyan-50"},U={class:"ml-3"},$={class:"grid justify-start"},V={__name:"ContactForm",setup(n){return(s,S)=>(i(),l("div",f,[t("div",g,[t("div",_,[t("h2",x,e(s.__("contact.form.mobile_title")),1),t("div",u,[t("div",m,[v,t("h3",w,e(s.__("contact.information.title")),1),t("p",y,e(s.$page.props.global.options.address),1),t("dl",b,[t("dt",null,[t("span",k,e(s.__("contact.phone")),1)]),t("dd",M,[o(a(h),{class:"h-6 w-6 flex-shrink-0 text-cyan-200","aria-hidden":"true"}),t("span",B,e(s.$page.props.global.options.phone),1)]),L,t("dd",G,[o(a(p),{class:"h-6 w-6 flex-shrink-0 text-cyan-200","aria-hidden":"true"}),t("span",U,e(s.$page.props.global.options.email),1)])]),t("div",$,[o(r)])]),o(d)])])])]))}};export{V as default}; diff --git a/public/build/assets/Create-12911497.js b/public/build/assets/Create-12911497.js deleted file mode 100644 index 99bc8ca..0000000 --- a/public/build/assets/Create-12911497.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as l}from"./AuthenticatedLayout-bb1b77c9.js";import d from"./CreateUserForm-11ae6dde.js";import{r as o,l as _,o as a,g as p,a as e,b as x,w as s,F as f,H as h,d as t,j as u,c as w,e as g}from"./app-a07534fc.js";import"./DarkMode-9ce27e49.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";import"./InputError-819a2731.js";import"./InputLabel-0d88b11e.js";import"./PrimaryButton-f1dd44c4.js";import"./TextInput-6d371888.js";import"./default.css_vue_type_style_index_0_src_true_lang-5ba86734.js";const v=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Create User ",-1),k={class:"py-12"},b={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},y={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},C={class:"sm:flex sm:items-center"},A=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," Create User "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," Create a new users with roles. ")],-1),B={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none"},M={__name:"Create",props:{roles:Object,statusArr:Object},setup(r){return(i,V)=>{const m=o("font-awesome-icon"),n=o("Link"),c=_("can");return a(),p(f,null,[e(x(h),{title:"User"}),e(l,null,{header:s(()=>[v]),default:s(()=>[t("div",k,[t("div",b,[t("div",y,[t("div",C,[A,t("div",B,[u((a(),w(n,{href:i.route("admin.user.index"),class:"btn btn-primary"},{default:s(()=>[e(m,{icon:"fa-solid fa-eye",class:"mr-1"}),g(" View All ")]),_:1},8,["href"])),[[c,"user.view"]])])]),e(d,{roles:r.roles,statusArr:r.statusArr},null,8,["roles","statusArr"])])])])]),_:1})],64)}}};export{M as default}; diff --git a/public/build/assets/Create-6d67c484.js b/public/build/assets/Create-6b288998.js similarity index 55% rename from public/build/assets/Create-6d67c484.js rename to public/build/assets/Create-6b288998.js index bcebe5e..9b671bb 100644 --- a/public/build/assets/Create-6d67c484.js +++ b/public/build/assets/Create-6b288998.js @@ -1 +1 @@ -import{_ as l}from"./AuthenticatedLayout-bb6d5f84.js";import m from"./CreateRoleForm-57cb1411.js";import{h as p,a as s,u as c,w as o,F as _,o as d,X as u,b as t,d as h,k as i}from"./app-4f9e7dfc.js";import"./Toast-3242a059.js";import"./toast-c1edb8fd.js";import"./ApplicationLogo-1c8f1468.js";import"./defaultFile-106f3fb6.js";import"./useCountries-7f78595f.js";import"./Dropdown-7d23bb7e.js";import"./InputLabel-5969cc22.js";import"./PrimaryButton-89a514d8.js";import"./TextInput-5a299594.js";const x=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Create Role ",-1),g={class:"py-12"},f={class:"max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6"},w={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},b={class:"sm:flex sm:items-center"},k=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," Create Role "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," Create a new roles with permission. ")],-1),y={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none"},$={__name:"Create",props:{permissionWithGroup:Object,permissions:Object,all_group:Object,total_permissions:String,total_group:String},setup(e){return(a,v)=>{const r=i("font-awesome-icon"),n=i("Link");return d(),p(_,null,[s(c(u),{title:"Role"}),s(l,null,{header:o(()=>[x]),default:o(()=>[t("div",g,[t("div",f,[t("div",w,[t("div",b,[k,t("div",y,[s(n,{href:a.route("role.index"),class:"btn btn-primary"},{default:o(()=>[s(r,{icon:"fa-solid fa-eye",class:"mr-1"}),h(" View All ")]),_:1},8,["href"])])]),s(m,{permissionWithGroup:e.permissionWithGroup,permissions:e.permissions,all_group:e.all_group,total_permissions:e.total_permissions,total_group:e.total_group},null,8,["permissionWithGroup","permissions","all_group","total_permissions","total_group"])])])])]),_:1})],64)}}};export{$ as default}; +import{_ as l}from"./AuthenticatedLayout-6151d358.js";import m from"./CreateRoleForm-65c8dc46.js";import{f as p,a as s,u as c,w as o,F as _,o as d,X as u,b as t,d as h,r as i}from"./app-4dfa7f3b.js";import"./Toast-645f4c7b.js";import"./toast-ded66f04.js";import"./ApplicationLogo-77a8e36b.js";import"./defaultFile-2b6c57d3.js";import"./useCountries-759a7ea1.js";import"./Dropdown-a96f453e.js";import"./InputLabel-fec82426.js";import"./PrimaryButton-2b535c8b.js";import"./TextInput-fb418c8e.js";const x=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Create Role ",-1),f={class:"py-12"},g={class:"max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6"},w={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},b={class:"sm:flex sm:items-center"},k=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," Create Role "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," Create a new roles with permission. ")],-1),y={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none"},$={__name:"Create",props:{permissionWithGroup:Object,permissions:Object,all_group:Object,total_permissions:String,total_group:String},setup(e){return(r,v)=>{const a=i("font-awesome-icon"),n=i("Link");return d(),p(_,null,[s(c(u),{title:"Role"}),s(l,null,{header:o(()=>[x]),default:o(()=>[t("div",f,[t("div",g,[t("div",w,[t("div",b,[k,t("div",y,[s(n,{href:r.route("role.index"),class:"btn btn-primary"},{default:o(()=>[s(a,{icon:"fa-solid fa-eye",class:"mr-1"}),h(" View All ")]),_:1},8,["href"])])]),s(m,{permissionWithGroup:e.permissionWithGroup,permissions:e.permissions,all_group:e.all_group,total_permissions:e.total_permissions,total_group:e.total_group},null,8,["permissionWithGroup","permissions","all_group","total_permissions","total_group"])])])])]),_:1})],64)}}};export{$ as default}; diff --git a/public/build/assets/Create-7b872147.js b/public/build/assets/Create-7b872147.js deleted file mode 100644 index b36e670..0000000 --- a/public/build/assets/Create-7b872147.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as n}from"./AuthenticatedLayout-bb1b77c9.js";import l from"./CreateSpecialFeatureForm-fdbe2f52.js";import{r as a,o as c,g as p,a as e,b as d,w as s,F as _,H as u,d as t,e as x}from"./app-a07534fc.js";import"./DarkMode-9ce27e49.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";import"./InputError-819a2731.js";import"./InputLabel-0d88b11e.js";import"./PrimaryButton-f1dd44c4.js";import"./Textarea-1fe62e1d.js";import"./TextInput-6d371888.js";import"./default.css_vue_type_style_index_0_src_true_lang-5ba86734.js";const f=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Create Special Feature ",-1),h={class:"py-12"},g={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},w={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},k={class:"sm:flex sm:items-center"},y=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," Create Special Feature "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," Create a new Special Feature. ")],-1),b={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none"},I={__name:"Create",props:{statusArr:Object},setup(o){return(r,v)=>{const i=a("font-awesome-icon"),m=a("Link");return c(),p(_,null,[e(d(u),{title:"Special Feature"}),e(n,null,{header:s(()=>[f]),default:s(()=>[t("div",h,[t("div",g,[t("div",w,[t("div",k,[y,t("div",b,[e(m,{href:r.route("admin.user.index"),class:"btn btn-primary"},{default:s(()=>[e(i,{icon:"fa-solid fa-eye",class:"mr-1"}),x(" View All ")]),_:1},8,["href"])])]),e(l,{statusArr:o.statusArr},null,8,["statusArr"])])])])]),_:1})],64)}}};export{I as default}; diff --git a/public/build/assets/Create-87cddc76.js b/public/build/assets/Create-87cddc76.js deleted file mode 100644 index d150122..0000000 --- a/public/build/assets/Create-87cddc76.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as n}from"./AuthenticatedLayout-bb6d5f84.js";import l from"./CreateUserForm-f683078a.js";import{h as c,a as e,u as d,w as s,F as _,o as p,X as x,b as t,d as h,k as r}from"./app-4f9e7dfc.js";import"./Toast-3242a059.js";import"./toast-c1edb8fd.js";import"./ApplicationLogo-1c8f1468.js";import"./defaultFile-106f3fb6.js";import"./useCountries-7f78595f.js";import"./Dropdown-7d23bb7e.js";import"./InputLabel-5969cc22.js";import"./PrimaryButton-89a514d8.js";import"./TextInput-5a299594.js";import"./default.css_vue_type_style_index_0_src_true_lang-51e34c56.js";const f=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Create User ",-1),u={class:"py-12"},w={class:"max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6"},g={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},k={class:"sm:flex sm:items-center"},b=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," Create User "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," Create a new users with roles. ")],-1),y={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none"},X={__name:"Create",props:{roles:Object,statusArr:Object},setup(o){return(a,v)=>{const i=r("font-awesome-icon"),m=r("Link");return p(),c(_,null,[e(d(x),{title:"User"}),e(n,null,{header:s(()=>[f]),default:s(()=>[t("div",u,[t("div",w,[t("div",g,[t("div",k,[b,t("div",y,[e(m,{href:a.route("user.index"),class:"btn btn-primary"},{default:s(()=>[e(i,{icon:"fa-solid fa-eye",class:"mr-1"}),h(" View All ")]),_:1},8,["href"])])]),e(l,{roles:o.roles,statusArr:o.statusArr},null,8,["roles","statusArr"])])])])]),_:1})],64)}}};export{X as default}; diff --git a/public/build/assets/Create-a4c309a0.js b/public/build/assets/Create-a4c309a0.js deleted file mode 100644 index 1ee8bbb..0000000 --- a/public/build/assets/Create-a4c309a0.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as l}from"./AuthenticatedLayout-bb1b77c9.js";import d from"./CreateBlogForm-7746d3ec.js";import{r,l as p,o,g as _,a as e,b as f,w as a,F as g,H as u,d as t,j as x,c as h,e as w}from"./app-a07534fc.js";import"./DarkMode-9ce27e49.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";import"./InputError-819a2731.js";import"./InputLabel-0d88b11e.js";import"./PrimaryButton-f1dd44c4.js";import"./Textarea-1fe62e1d.js";import"./TextInput-6d371888.js";import"./default.css_vue_type_style_index_0_src_true_lang-5ba86734.js";const b=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Create Blog ",-1),v={class:"py-12"},k={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},y={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},A={class:"sm:flex sm:items-center"},B=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," Create Blog "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," Create a new blog. ")],-1),C={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none"},Q={__name:"Create",props:{statusArr:Object,featuredArr:Object,categories:Object},setup(s){return(i,j)=>{const c=r("font-awesome-icon"),m=r("Link"),n=p("can");return o(),_(g,null,[e(f(u),{title:"Blog"}),e(l,null,{header:a(()=>[b]),default:a(()=>[t("div",v,[t("div",k,[t("div",y,[t("div",A,[B,t("div",C,[x((o(),h(m,{href:i.route("admin.blog.index"),class:"btn btn-primary"},{default:a(()=>[e(c,{icon:"fa-solid fa-eye",class:"mr-1"}),w(" View All ")]),_:1},8,["href"])),[[n,"blog.view"]])])]),e(d,{statusArr:s.statusArr,featuredArr:s.featuredArr,categories:s.categories},null,8,["statusArr","featuredArr","categories"])])])])]),_:1})],64)}}};export{Q as default}; diff --git a/public/build/assets/Create-be5f35a2.js b/public/build/assets/Create-be5f35a2.js deleted file mode 100644 index 430023f..0000000 --- a/public/build/assets/Create-be5f35a2.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as l}from"./AuthenticatedLayout-bb1b77c9.js";import d from"./CreateCategoryForm-b24838b3.js";import{r as a,l as p,o,g as _,a as e,b as f,w as r,F as u,H as x,d as t,j as g,c as h,e as w}from"./app-a07534fc.js";import"./DarkMode-9ce27e49.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";import"./InputError-819a2731.js";import"./InputLabel-0d88b11e.js";import"./PrimaryButton-f1dd44c4.js";import"./Textarea-1fe62e1d.js";import"./TextInput-6d371888.js";import"./default.css_vue_type_style_index_0_src_true_lang-5ba86734.js";const y=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Create Catgory ",-1),v={class:"py-12"},b={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},k={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},C={class:"sm:flex sm:items-center"},A=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," Create Catgory "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," Create a new Category. ")],-1),j={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none"},Q={__name:"Create",props:{statusArr:Object,featuredArr:Object,categories:Object},setup(s){return(i,B)=>{const c=a("font-awesome-icon"),m=a("Link"),n=p("can");return o(),_(u,null,[e(f(x),{title:"Catgory"}),e(l,null,{header:r(()=>[y]),default:r(()=>[t("div",v,[t("div",b,[t("div",k,[t("div",C,[A,t("div",j,[g((o(),h(m,{href:i.route("admin.user.index"),class:"btn btn-primary"},{default:r(()=>[e(c,{icon:"fa-solid fa-eye",class:"mr-1"}),w(" View All ")]),_:1},8,["href"])),[[n,"category.view"]])])]),e(d,{statusArr:s.statusArr,featuredArr:s.featuredArr,categories:s.categories},null,8,["statusArr","featuredArr","categories"])])])])]),_:1})],64)}}};export{Q as default}; diff --git a/public/build/assets/Create-de05b94b.js b/public/build/assets/Create-de05b94b.js deleted file mode 100644 index 45aa2a1..0000000 --- a/public/build/assets/Create-de05b94b.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as c}from"./AuthenticatedLayout-bb1b77c9.js";import p from"./CreateRoleForm-9ed0cd2b.js";import{r as i,l as _,o as r,g as d,a as s,b as u,w as o,F as h,H as g,d as t,j as x,c as f,e as w}from"./app-a07534fc.js";import"./DarkMode-9ce27e49.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";import"./InputError-819a2731.js";import"./InputLabel-0d88b11e.js";import"./PrimaryButton-f1dd44c4.js";import"./TextInput-6d371888.js";const v=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Create Role ",-1),b={class:"py-12"},k={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},y={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},C={class:"sm:flex sm:items-center"},j=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," Create Role "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," Create a new roles with permission. ")],-1),B={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none"},I={__name:"Create",props:{permissionWithGroup:Object,permissions:Object,all_group:Object,total_permissions:String,total_group:String},setup(e){return(a,G)=>{const l=i("font-awesome-icon"),n=i("Link"),m=_("can");return r(),d(h,null,[s(u(g),{title:"Role"}),s(c,null,{header:o(()=>[v]),default:o(()=>[t("div",b,[t("div",k,[t("div",y,[t("div",C,[j,t("div",B,[x((r(),f(n,{href:a.route("admin.role.index"),class:"btn btn-primary"},{default:o(()=>[s(l,{icon:"fa-solid fa-eye",class:"mr-1"}),w(" View All ")]),_:1},8,["href"])),[[m,"role.create"]])])]),s(p,{permissionWithGroup:e.permissionWithGroup,permissions:e.permissions,all_group:e.all_group,total_permissions:e.total_permissions,total_group:e.total_group},null,8,["permissionWithGroup","permissions","all_group","total_permissions","total_group"])])])])]),_:1})],64)}}};export{I as default}; diff --git a/public/build/assets/Create-f0946e76.js b/public/build/assets/Create-f0946e76.js deleted file mode 100644 index 91baedd..0000000 --- a/public/build/assets/Create-f0946e76.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as d}from"./AuthenticatedLayout-bb1b77c9.js";import l from"./CreateProductForm-4e152d3f.js";import{r as a,l as p,o,g as _,a as e,b as u,w as r,F as f,H as x,d as t,j as h,c as g,e as w}from"./app-a07534fc.js";import"./DarkMode-9ce27e49.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";import"./InputError-819a2731.js";import"./InputLabel-0d88b11e.js";import"./PrimaryButton-f1dd44c4.js";import"./Textarea-1fe62e1d.js";import"./TextInput-6d371888.js";import"./default.css_vue_type_style_index_0_src_true_lang-5ba86734.js";const v=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Create Product ",-1),b={class:"py-12"},k={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},y={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},A={class:"sm:flex sm:items-center"},C=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," Create Product "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," Create a new products. ")],-1),j={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none"},Q={__name:"Create",props:{categories:Object,statusArr:Object,featuredArr:Object},setup(s){return(i,B)=>{const c=a("font-awesome-icon"),m=a("Link"),n=p("can");return o(),_(f,null,[e(u(x),{title:"Product"}),e(d,null,{header:r(()=>[v]),default:r(()=>[t("div",b,[t("div",k,[t("div",y,[t("div",A,[C,t("div",j,[h((o(),g(m,{href:i.route("admin.product.index"),class:"btn btn-primary"},{default:r(()=>[e(c,{icon:"fa-solid fa-eye",class:"mr-1"}),w(" View All ")]),_:1},8,["href"])),[[n,"product.view"]])])]),e(l,{categories:s.categories,statusArr:s.statusArr,featuredArr:s.featuredArr},null,8,["categories","statusArr","featuredArr"])])])])]),_:1})],64)}}};export{Q as default}; diff --git a/public/build/assets/Create-f4bb1d5f.js b/public/build/assets/Create-f4bb1d5f.js new file mode 100644 index 0000000..0dde85b --- /dev/null +++ b/public/build/assets/Create-f4bb1d5f.js @@ -0,0 +1 @@ +import{_ as n}from"./AuthenticatedLayout-6151d358.js";import l from"./CreateUserForm-5f18902b.js";import{f as c,a as e,u as d,w as s,F as _,o as p,X as x,b as t,d as f,r}from"./app-4dfa7f3b.js";import"./Toast-645f4c7b.js";import"./toast-ded66f04.js";import"./ApplicationLogo-77a8e36b.js";import"./defaultFile-2b6c57d3.js";import"./useCountries-759a7ea1.js";import"./Dropdown-a96f453e.js";import"./InputLabel-fec82426.js";import"./PrimaryButton-2b535c8b.js";import"./TextInput-fb418c8e.js";import"./default.css_vue_type_style_index_0_src_true_lang-5d8f90ba.js";const h=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Create User ",-1),u={class:"py-12"},w={class:"max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6"},g={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},b={class:"sm:flex sm:items-center"},k=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," Create User "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," Create a new users with roles. ")],-1),y={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none"},X={__name:"Create",props:{roles:Object,statusArr:Object},setup(o){return(a,v)=>{const i=r("font-awesome-icon"),m=r("Link");return p(),c(_,null,[e(d(x),{title:"User"}),e(n,null,{header:s(()=>[h]),default:s(()=>[t("div",u,[t("div",w,[t("div",g,[t("div",b,[k,t("div",y,[e(m,{href:a.route("user.index"),class:"btn btn-primary"},{default:s(()=>[e(i,{icon:"fa-solid fa-eye",class:"mr-1"}),f(" View All ")]),_:1},8,["href"])])]),e(l,{roles:o.roles,statusArr:o.statusArr},null,8,["roles","statusArr"])])])])]),_:1})],64)}}};export{X as default}; diff --git a/public/build/assets/CreateBlogForm-7746d3ec.js b/public/build/assets/CreateBlogForm-7746d3ec.js deleted file mode 100644 index 32f7c9a..0000000 --- a/public/build/assets/CreateBlogForm-7746d3ec.js +++ /dev/null @@ -1 +0,0 @@ -import{p as r,u as V,o as b,g as _,d as o,a as t,b as s,w as x,T as I,f as S,e as j,h as B}from"./app-a07534fc.js";import{_ as c}from"./InputError-819a2731.js";import{_ as i}from"./InputLabel-0d88b11e.js";import{_ as U}from"./PrimaryButton-f1dd44c4.js";import{_ as P}from"./Textarea-1fe62e1d.js";import{_ as T}from"./TextInput-6d371888.js";import{d as C}from"./defaultFile-233481e1.js";import{s as m}from"./default.css_vue_type_style_index_0_src_true_lang-5ba86734.js";const F={class:"dark:text-white"},$=["onSubmit"],A={class:"mt-10 sm:mt-0"},L={class:"overflow-hidden shadow sm:rounded-md"},N={class:"bg-white dark:bg-gray-800 px-4 py-5 sm:p-6"},O={class:"grid grid-cols-6 gap-6 mb-10"},E={class:"col-span-6 sm:col-span-3"},R={class:"col-span-6 sm:col-span-3"},z={class:"col-span-6 sm:col-span-3 flex items-center justify-between"},D={class:"inline-block h-24 w-24 overflow-hidden rounded-full bg-gray-100"},M=["src"],q={class:"col-span-6 sm:col-span-3 lg:col-span-3 mb-20"},G={class:"col-span-6 sm:col-span-3 lg:col-span-3"},H={class:"col-span-6 sm:col-span-3 lg:col-span-3"},J={class:"flex items-center justify-end pr-5 py-5"},K={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},oe={__name:"CreateBlogForm",props:{statusArr:Object,featuredArr:Object,categories:Object},setup(n){const y=n,d=r(null),u=r(null),p=r(null),k=r(null),v=r(null),f=r(null),e=V({title:"",description:"",image:"",imagePreview:C.placeholder,status:"",is_featured:!1,categories:[]}),h=g=>{const l=g.target.files[0];e.imagePreview=URL.createObjectURL(l)},w=()=>{e.post(route("admin.blog.store"),{preserveScroll:!0,onSuccess:()=>e.reset(),onError:()=>{e.errors.title&&d.value.focus(),e.errors.description&&u.value.focus(),e.errors.status&&k.value.focus(),e.errors.is_featured&&(e.reset("is_featured"),v.value.focus()),e.errors.image&&p.value.focus(),e.errors.categories&&f.value.focus()}})};return(g,l)=>(b(),_("section",F,[o("form",{onSubmit:S(w,["prevent"]),class:"mt-6 space-y-6 p-3"},[o("div",A,[o("div",L,[o("div",N,[o("div",O,[o("div",E,[t(i,{for:"title",value:"Title :",class:"block text-sm font-medium text-gray-700"}),t(T,{id:"title",ref_key:"titleInput",ref:d,modelValue:s(e).title,"onUpdate:modelValue":l[0]||(l[0]=a=>s(e).title=a),type:"text",class:"mt-1 block w-full",autocomplete:"title"},null,8,["modelValue"]),t(c,{message:s(e).errors.title,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),o("div",R,[t(i,{for:"description",value:"Description :",class:"block text-sm font-medium text-gray-700"}),t(P,{id:"description",ref_key:"descriptionInput",ref:u,modelValue:s(e).description,"onUpdate:modelValue":l[1]||(l[1]=a=>s(e).description=a),type:"text",class:"mt-1 block w-full",autocomplete:"description"},null,8,["modelValue"]),t(c,{message:s(e).errors.description,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),o("div",z,[o("div",null,[t(i,{for:"image",value:"Image :",class:"block text-sm font-medium text-gray-700"}),o("input",{id:"image",type:"file",class:"mt-1 block form-controll cursor-pointer",onChange:h,ref_key:"imageInput",ref:p,onInput:l[2]||(l[2]=a=>s(e).image=a.target.files[0])},null,544),t(c,{message:s(e).errors.image,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),o("span",D,[o("img",{src:s(e).imagePreview,class:"w-full h-full object-contain"},null,8,M)])]),o("div",q,[t(i,{for:"categories",value:"Category :",class:"block text-sm font-medium text-gray-700 mb-1"}),t(s(m),{modelValue:s(e).categories,"onUpdate:modelValue":l[3]||(l[3]=a=>s(e).categories=a),options:y.categories,selected:s(e).categories,ref_key:"categoryInput",ref:f,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-gray-900",mode:"tags",searchable:!0,"close-on-select":!1},null,8,["modelValue","options","selected"]),t(c,{message:s(e).errors.categories,class:"mt-2 col-start-2 col-span-4 absolute z-5"},null,8,["message"])]),o("div",G,[t(i,{for:"status",value:"Status :",class:"block text-sm font-medium text-gray-700 mb-1"}),t(s(m),{modelValue:s(e).status,"onUpdate:modelValue":l[4]||(l[4]=a=>s(e).status=a),options:n.statusArr,selected:s(e).status,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-800",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"}},null,8,["modelValue","options","selected"]),t(c,{message:s(e).errors.status,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),o("div",H,[t(i,{for:"status",value:"Is Featured ?",class:"block text-sm font-medium text-gray-700 mb-1"}),t(s(m),{modelValue:s(e).is_featured,"onUpdate:modelValue":l[5]||(l[5]=a=>s(e).is_featured=a),options:n.featuredArr,selected:s(e).is_featured,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-800",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"}},null,8,["modelValue","options","selected"]),t(c,{message:s(e).errors.is_featured,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])])])])])]),o("div",J,[t(U,{disabled:s(e).processing},{default:x(()=>[j("Submit")]),_:1},8,["disabled"]),t(I,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:x(()=>[s(e).recentlySuccessful?(b(),_("p",K," Saved. ")):B("",!0)]),_:1})])],40,$)]))}};export{oe as default}; diff --git a/public/build/assets/CreateCategoryForm-b24838b3.js b/public/build/assets/CreateCategoryForm-b24838b3.js deleted file mode 100644 index a1f66a1..0000000 --- a/public/build/assets/CreateCategoryForm-b24838b3.js +++ /dev/null @@ -1 +0,0 @@ -import{p as n,u as h,o as g,g as b,d as o,a as t,b as s,w as _,T as w,f as V,e as I,h as S}from"./app-a07534fc.js";import{_ as r}from"./InputError-819a2731.js";import{_ as i}from"./InputLabel-0d88b11e.js";import{_ as j}from"./PrimaryButton-f1dd44c4.js";import{_ as C}from"./Textarea-1fe62e1d.js";import{_ as P}from"./TextInput-6d371888.js";import{d as T}from"./defaultFile-233481e1.js";import{s as d}from"./default.css_vue_type_style_index_0_src_true_lang-5ba86734.js";const U={class:"dark:text-white"},B=["onSubmit"],F={class:"mt-10 sm:mt-0"},L={class:"shadow sm:rounded-md pb-2 overflow-auto"},$={class:"bg-white dark:bg-gray-800 px-4 py-5 sm:p-6"},A={class:"grid grid-cols-6 gap-6 mb-10"},N={class:"col-span-6 sm:col-span-3"},O={class:"col-span-6 sm:col-span-3"},E={class:"col-span-6 sm:col-span-3 flex items-center justify-between"},R={class:"inline-block h-24 w-24 overflow-hidden rounded-full bg-gray-100"},D=["src"],M={class:"col-span-6 sm:col-span-3 lg:col-span-3"},q={class:"col-span-6 sm:col-span-3 lg:col-span-3"},z={class:"col-span-6 sm:col-span-3 lg:col-span-3"},G={class:"flex items-center justify-end pr-5 py-5"},H={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},se={__name:"CreateCategoryForm",props:{statusArr:Object,featuredArr:Object,categories:Object},setup(c){const m=n(null),u=n(null),p=n(null),x=n(null),y=n(null),e=h({title:"",description:"",image:"",imagePreview:T.placeholder,status:"",parent_id:"",is_featured:!1}),k=f=>{const a=f.target.files[0];e.imagePreview=URL.createObjectURL(a)},v=()=>{e.post(route("admin.category.store"),{preserveScroll:!0,onSuccess:()=>e.reset(),onError:()=>{e.errors.title&&m.value.focus(),e.errors.description&&u.value.focus(),e.errors.status&&x.value.focus(),e.errors.is_featured&&(e.reset("is_featured"),y.value.focus()),e.errors.image&&p.value.focus(),e.errors.parent_id&&parent_id.value.focus()}})};return(f,a)=>(g(),b("section",U,[o("form",{onSubmit:V(v,["prevent"]),class:"mt-6 space-y-6 p-3"},[o("div",F,[o("div",L,[o("div",$,[o("div",A,[o("div",N,[t(i,{for:"title",value:"Title :",class:"block text-sm font-medium text-gray-700"}),t(P,{id:"title",ref_key:"titleInput",ref:m,modelValue:s(e).title,"onUpdate:modelValue":a[0]||(a[0]=l=>s(e).title=l),type:"text",class:"mt-1 block w-full",autocomplete:"title"},null,8,["modelValue"]),t(r,{message:s(e).errors.title,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),o("div",O,[t(i,{for:"description",value:"Description :",class:"block text-sm font-medium text-gray-700"}),t(C,{id:"description",ref_key:"descriptionInput",ref:u,modelValue:s(e).description,"onUpdate:modelValue":a[1]||(a[1]=l=>s(e).description=l),type:"text",class:"mt-1 block w-full",autocomplete:"description"},null,8,["modelValue"]),t(r,{message:s(e).errors.description,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),o("div",E,[o("div",null,[t(i,{for:"image",value:"Image :",class:"block text-sm font-medium text-gray-700"}),o("input",{id:"image",type:"file",class:"mt-1 block form-controll cursor-pointer",onChange:k,ref_key:"imageInput",ref:p,onInput:a[2]||(a[2]=l=>s(e).image=l.target.files[0])},null,544),t(r,{message:s(e).errors.image,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),o("span",R,[o("img",{src:s(e).imagePreview,class:"w-full h-full object-contain"},null,8,D)])]),o("div",M,[t(i,{for:"parent_id",value:"Parent Category :",class:"block text-sm font-medium text-gray-700 mb-1"}),t(s(d),{modelValue:s(e).parent_id,"onUpdate:modelValue":a[3]||(a[3]=l=>s(e).parent_id=l),options:c.categories,selected:s(e).parent_id,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-800",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"}},null,8,["modelValue","options","selected"]),t(r,{message:s(e).errors.parent_id,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),o("div",q,[t(i,{for:"status",value:"Status :",class:"block text-sm font-medium text-gray-700 mb-1"}),t(s(d),{modelValue:s(e).status,"onUpdate:modelValue":a[4]||(a[4]=l=>s(e).status=l),options:c.statusArr,selected:s(e).status,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-800",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"}},null,8,["modelValue","options","selected"]),t(r,{message:s(e).errors.status,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),o("div",z,[t(i,{for:"status",value:"Is Featured ?",class:"block text-sm font-medium text-gray-700 mb-1"}),t(s(d),{modelValue:s(e).is_featured,"onUpdate:modelValue":a[5]||(a[5]=l=>s(e).is_featured=l),options:c.featuredArr,selected:s(e).is_featured,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-800",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"}},null,8,["modelValue","options","selected"]),t(r,{message:s(e).errors.is_featured,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])])])])])]),o("div",G,[t(j,{disabled:s(e).processing},{default:_(()=>[I("Submit")]),_:1},8,["disabled"]),t(w,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:_(()=>[s(e).recentlySuccessful?(g(),b("p",H," Saved. ")):S("",!0)]),_:1})])],40,B)]))}};export{se as default}; diff --git a/public/build/assets/CreateProductForm-4e152d3f.js b/public/build/assets/CreateProductForm-4e152d3f.js deleted file mode 100644 index 6ca0ebb..0000000 --- a/public/build/assets/CreateProductForm-4e152d3f.js +++ /dev/null @@ -1 +0,0 @@ -import{p as r,u as V,o as b,g as _,d as o,a as t,b as s,w as x,T as I,f as P,e as S,h as j}from"./app-a07534fc.js";import{_ as c}from"./InputError-819a2731.js";import{_ as i}from"./InputLabel-0d88b11e.js";import{_ as U}from"./PrimaryButton-f1dd44c4.js";import{_ as T}from"./Textarea-1fe62e1d.js";import{_ as B}from"./TextInput-6d371888.js";import{d as C}from"./defaultFile-233481e1.js";import{s as d}from"./default.css_vue_type_style_index_0_src_true_lang-5ba86734.js";const F={class:"dark:text-white"},$=["onSubmit"],A={class:"mt-10 sm:mt-0"},L={class:"overflow-hidden shadow sm:rounded-md"},N={class:"bg-white dark:bg-gray-800 px-4 py-5 sm:p-6"},O={class:"grid grid-cols-6 gap-6"},E={class:"col-span-6 sm:col-span-3"},R={class:"col-span-6 sm:col-span-3"},z={class:"col-span-6 sm:col-span-3 lg:col-span-3 mb-20"},D={class:"col-span-6 sm:col-span-3 lg:col-span-3"},M={class:"col-span-6 sm:col-span-3 flex items-center justify-between"},q={class:"inline-block h-24 w-24 overflow-hidden rounded-full bg-gray-100"},G=["src"],H={class:"col-span-6 sm:col-span-3 lg:col-span-3"},J={class:"flex items-center justify-end pr-5 py-5"},K={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},oe={__name:"CreateProductForm",props:{categories:Object,statusArr:Object,featuredArr:Object},setup(n){const y=n,m=r(null),u=r(null),p=r(null),k=r(null),f=r(null),v=r(null),e=V({title:"",description:"",image:"",imagePreview:C.placeholder,status:"",is_featured:!1,categories:[]}),h=g=>{const l=g.target.files[0];e.imagePreview=URL.createObjectURL(l)},w=()=>{e.post(route("admin.product.store"),{preserveScroll:!0,onSuccess:()=>e.reset(),onError:()=>{e.errors.title&&m.value.focus(),e.errors.description&&u.value.focus(),e.errors.status&&k.value.focus(),e.errors.is_featured&&(e.reset("is_featured"),v.value.focus()),e.errors.categories&&f.value.focus(),e.errors.image&&p.value.focus()}})};return(g,l)=>(b(),_("section",F,[o("form",{onSubmit:P(w,["prevent"]),class:"mt-6 space-y-6 p-3"},[o("div",A,[o("div",L,[o("div",N,[o("div",O,[o("div",E,[t(i,{for:"title",value:"Title :",class:"block text-sm font-medium text-gray-700"}),t(B,{id:"title",ref_key:"titleInput",ref:m,modelValue:s(e).title,"onUpdate:modelValue":l[0]||(l[0]=a=>s(e).title=a),type:"text",class:"mt-1 block w-full",autocomplete:"title"},null,8,["modelValue"]),t(c,{message:s(e).errors.title,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),o("div",R,[t(i,{for:"description",value:"Description :",class:"block text-sm font-medium text-gray-700"}),t(T,{id:"description",ref_key:"descriptionInput",ref:u,modelValue:s(e).description,"onUpdate:modelValue":l[1]||(l[1]=a=>s(e).description=a),type:"text",class:"mt-1 block w-full",autocomplete:"description"},null,8,["modelValue"]),t(c,{message:s(e).errors.description,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),o("div",z,[t(i,{for:"categories",value:"Category :",class:"block text-sm font-medium text-gray-700 mb-1"}),t(s(d),{modelValue:s(e).categories,"onUpdate:modelValue":l[2]||(l[2]=a=>s(e).categories=a),options:y.categories,selected:s(e).categories,ref_key:"categoryInput",ref:f,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-gray-900",mode:"tags",searchable:!0,"close-on-select":!1},null,8,["modelValue","options","selected"]),t(c,{message:s(e).errors.categories,class:"mt-2 col-start-2 col-span-4 absolute z-5"},null,8,["message"])]),o("div",D,[t(i,{for:"status",value:"Status :",class:"block text-sm font-medium text-gray-700 mb-1"}),t(s(d),{modelValue:s(e).status,"onUpdate:modelValue":l[3]||(l[3]=a=>s(e).status=a),options:n.statusArr,selected:s(e).status,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-800",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"}},null,8,["modelValue","options","selected"]),t(c,{message:s(e).errors.status,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),o("div",M,[o("div",null,[t(i,{for:"image",value:"Image :",class:"block text-sm font-medium text-gray-700"}),o("input",{id:"image",type:"file",class:"mt-1 block form-controll cursor-pointer",onChange:h,ref_key:"imageInput",ref:p,onInput:l[4]||(l[4]=a=>s(e).image=a.target.files[0])},null,544),t(c,{message:s(e).errors.image,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),o("span",q,[o("img",{src:s(e).imagePreview,class:"w-full h-full object-contain"},null,8,G)])]),o("div",H,[t(i,{for:"status",value:"Is Featured ?",class:"block text-sm font-medium text-gray-700 mb-1"}),t(s(d),{modelValue:s(e).is_featured,"onUpdate:modelValue":l[5]||(l[5]=a=>s(e).is_featured=a),options:n.featuredArr,selected:s(e).is_featured,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-800",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"}},null,8,["modelValue","options","selected"]),t(c,{message:s(e).errors.is_featured,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])])])])])]),o("div",J,[t(U,{disabled:s(e).processing},{default:x(()=>[S("Submit")]),_:1},8,["disabled"]),t(I,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:x(()=>[s(e).recentlySuccessful?(b(),_("p",K," Saved. ")):j("",!0)]),_:1})])],40,$)]))}};export{oe as default}; diff --git a/public/build/assets/CreateRoleForm-57cb1411.js b/public/build/assets/CreateRoleForm-65c8dc46.js similarity index 66% rename from public/build/assets/CreateRoleForm-57cb1411.js rename to public/build/assets/CreateRoleForm-65c8dc46.js index 083aa92..c5e678c 100644 --- a/public/build/assets/CreateRoleForm-57cb1411.js +++ b/public/build/assets/CreateRoleForm-65c8dc46.js @@ -1 +1 @@ -import{v as W,G as $,h as u,b as c,a as m,u as o,f as v,x as b,F as x,m as k,w as y,S as j,e as G,o as p,d as E,q as O}from"./app-4f9e7dfc.js";import{a as C,_ as d}from"./InputLabel-5969cc22.js";import{_ as U}from"./PrimaryButton-89a514d8.js";import{_ as B}from"./TextInput-5a299594.js";const F=["onSubmit"],R={class:"grid grid-cols-6 justify-items-start gap-1"},z={class:"flex items-center gap-1 my-5"},I=["checked"],M={class:"grid md:grid-cols-4 grid-cols-3 gap-5 pr-5 sm:pr-0"},N={class:"flex items-center gap-1 mb-5"},T=["value","checked","onClick"],q=["value","onUpdate:modelValue"],A={class:"flex items-center justify-end pr-5 py-5"},D={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},Q={__name:"CreateRoleForm",props:{permissionWithGroup:Object,permissions:Object,all_group:Object,total_permissions:String,total_group:String},setup(g){const i=g,e=W({name:"",permissions:[],group_name:[],is_all_selected:!1}),S=t=>{t?(e.permissions=_.clone(i.permissions),e.group_name=_.clone(i.all_group)):(e.permissions=[],e.group_name=[])},h=t=>{let l="";for(const s in i.permissionWithGroup){let a=i.permissionWithGroup[s].find(r=>r.name==t);a&&(l=a==null?void 0:a.group_name)}return l};$(()=>e.permissions,(t,l)=>{let s="";l.length>t.length?s=h(_.difference(l,t)[0]):l.length-1});t.length==i.permissions.length?(e.is_all_selected=!0,e.group_name=_.clone(i.all_group)):e.is_all_selected=!1,n&&(a==null?void 0:a.length)!==(r==null?void 0:r.length)?_.remove(e.group_name,f=>f===s):!n&&(a==null?void 0:a.length)==(r==null?void 0:r.length)&&(_.includes(e.group_name,s)||e.group_name.push(s))});const V=t=>{let l=i.permissionWithGroup[t];_.includes(e.group_name,t)?(_.remove(e.group_name,s=>s===t),_.forEach(l,function(s){_.remove(e.permissions,n=>n===s.name)})):(e.group_name.push(t),_.forEach(l,function(s){_.includes(e.permissions,s.name)||e.permissions.push(s.name)})),e.group_name.length==i.total_group?e.is_all_selected=!0:e.is_all_selected=!1},w=()=>{e.post(route("role.store"),{preserveScroll:!0,onSuccess:()=>e.reset(),onError:()=>{e.errors.name&&(e.reset("name"),nameInput.value.focus()),e.errors.permissions&&e.reset("permissions")}})};return(t,l)=>(p(),u("section",null,[c("form",{onSubmit:G(w,["prevent"]),class:"mt-6 space-y-6 p-3"},[c("div",R,[m(d,{for:"current_password",value:"Role Name :",class:"text-xl self-center"}),m(B,{id:"name",ref:"nameInput",modelValue:o(e).name,"onUpdate:modelValue":l[0]||(l[0]=s=>o(e).name=s),type:"text",class:"mt-1 block w-full col-span-5",autocomplete:"name"},null,8,["modelValue"]),m(C,{message:o(e).errors.name,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),c("div",z,[m(d,{for:"is_all_selected",value:"Select All",class:"text-2xl capitalize mr-2"}),v(c("input",{type:"checkbox",id:"is_all_selected","onUpdate:modelValue":l[1]||(l[1]=s=>o(e).is_all_selected=s),class:"checkbox w-6 h-6",checked:o(e).is_all_selected,onChange:l[2]||(l[2]=s=>S(o(e).is_all_selected))},null,40,I),[[b,o(e).is_all_selected]]),m(C,{message:o(e).errors.permissions,class:"mt-2 col-start-2 col-span-4 ml-3"},null,8,["message"])]),c("div",M,[(p(!0),u(x,null,k(g.permissionWithGroup,(s,n)=>(p(),u("div",{key:n},[c("div",N,[c("input",{type:"checkbox",id:"group_name",value:o(e).group_name,class:"checkbox mr-1 w-5 h-5",checked:o(e).group_name.includes(n),onClick:a=>V(n)},null,8,T),m(d,{for:"group_name",value:n,class:"text-xl capitalize border-b-2 border-gray-700 border-spacing-2 pb-0.5"},null,8,["value"])]),(p(!0),u(x,null,k(s,a=>(p(),u("div",{key:a.id,class:"flex"},[v(c("input",{type:"checkbox",id:"permissions",value:a.name,"onUpdate:modelValue":r=>o(e).permissions=r,class:"checkbox mr-1"},null,8,q),[[b,o(e).permissions]]),m(d,{for:"permissions",value:a.name},null,8,["value"])]))),128))]))),128))]),c("div",A,[m(U,{disabled:o(e).processing},{default:y(()=>[E("Submit")]),_:1},8,["disabled"]),m(j,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:y(()=>[o(e).recentlySuccessful?(p(),u("p",D," Saved. ")):O("",!0)]),_:1})])],40,F)]))}};export{Q as default}; +import{v as j,y as W,f as u,b as c,a as m,u as o,i as v,j as b,F as x,q as k,w as y,T as $,e as E,o as p,d as G,g as O}from"./app-4dfa7f3b.js";import{a as C,_ as d}from"./InputLabel-fec82426.js";import{_ as U}from"./PrimaryButton-2b535c8b.js";import{_ as B}from"./TextInput-fb418c8e.js";const F=["onSubmit"],R={class:"grid grid-cols-6 justify-items-start gap-1"},T={class:"flex items-center gap-1 my-5"},z=["checked"],I={class:"grid md:grid-cols-4 grid-cols-3 gap-5 pr-5 sm:pr-0"},M={class:"flex items-center gap-1 mb-5"},N=["value","checked","onClick"],q=["value","onUpdate:modelValue"],A={class:"flex items-center justify-end pr-5 py-5"},D={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},Q={__name:"CreateRoleForm",props:{permissionWithGroup:Object,permissions:Object,all_group:Object,total_permissions:String,total_group:String},setup(g){const i=g,e=j({name:"",permissions:[],group_name:[],is_all_selected:!1}),V=t=>{t?(e.permissions=_.clone(i.permissions),e.group_name=_.clone(i.all_group)):(e.permissions=[],e.group_name=[])},h=t=>{let l="";for(const s in i.permissionWithGroup){let a=i.permissionWithGroup[s].find(r=>r.name==t);a&&(l=a==null?void 0:a.group_name)}return l};W(()=>e.permissions,(t,l)=>{let s="";l.length>t.length?s=h(_.difference(l,t)[0]):l.length-1});t.length==i.permissions.length?(e.is_all_selected=!0,e.group_name=_.clone(i.all_group)):e.is_all_selected=!1,n&&(a==null?void 0:a.length)!==(r==null?void 0:r.length)?_.remove(e.group_name,f=>f===s):!n&&(a==null?void 0:a.length)==(r==null?void 0:r.length)&&(_.includes(e.group_name,s)||e.group_name.push(s))});const w=t=>{let l=i.permissionWithGroup[t];_.includes(e.group_name,t)?(_.remove(e.group_name,s=>s===t),_.forEach(l,function(s){_.remove(e.permissions,n=>n===s.name)})):(e.group_name.push(t),_.forEach(l,function(s){_.includes(e.permissions,s.name)||e.permissions.push(s.name)})),e.group_name.length==i.total_group?e.is_all_selected=!0:e.is_all_selected=!1},S=()=>{e.post(route("role.store"),{preserveScroll:!0,onSuccess:()=>e.reset(),onError:()=>{e.errors.name&&(e.reset("name"),nameInput.value.focus()),e.errors.permissions&&e.reset("permissions")}})};return(t,l)=>(p(),u("section",null,[c("form",{onSubmit:E(S,["prevent"]),class:"mt-6 space-y-6 p-3"},[c("div",R,[m(d,{for:"current_password",value:"Role Name :",class:"text-xl self-center"}),m(B,{id:"name",ref:"nameInput",modelValue:o(e).name,"onUpdate:modelValue":l[0]||(l[0]=s=>o(e).name=s),type:"text",class:"mt-1 block w-full col-span-5",autocomplete:"name"},null,8,["modelValue"]),m(C,{message:o(e).errors.name,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),c("div",T,[m(d,{for:"is_all_selected",value:"Select All",class:"text-2xl capitalize mr-2"}),v(c("input",{type:"checkbox",id:"is_all_selected","onUpdate:modelValue":l[1]||(l[1]=s=>o(e).is_all_selected=s),class:"checkbox w-6 h-6",checked:o(e).is_all_selected,onChange:l[2]||(l[2]=s=>V(o(e).is_all_selected))},null,40,z),[[b,o(e).is_all_selected]]),m(C,{message:o(e).errors.permissions,class:"mt-2 col-start-2 col-span-4 ml-3"},null,8,["message"])]),c("div",I,[(p(!0),u(x,null,k(g.permissionWithGroup,(s,n)=>(p(),u("div",{key:n},[c("div",M,[c("input",{type:"checkbox",id:"group_name",value:o(e).group_name,class:"checkbox mr-1 w-5 h-5",checked:o(e).group_name.includes(n),onClick:a=>w(n)},null,8,N),m(d,{for:"group_name",value:n,class:"text-xl capitalize border-b-2 border-gray-700 border-spacing-2 pb-0.5"},null,8,["value"])]),(p(!0),u(x,null,k(s,a=>(p(),u("div",{key:a.id,class:"flex"},[v(c("input",{type:"checkbox",id:"permissions",value:a.name,"onUpdate:modelValue":r=>o(e).permissions=r,class:"checkbox mr-1"},null,8,q),[[b,o(e).permissions]]),m(d,{for:"permissions",value:a.name},null,8,["value"])]))),128))]))),128))]),c("div",A,[m(U,{disabled:o(e).processing},{default:y(()=>[G("Submit")]),_:1},8,["disabled"]),m($,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:y(()=>[o(e).recentlySuccessful?(p(),u("p",D," Saved. ")):O("",!0)]),_:1})])],40,F)]))}};export{Q as default}; diff --git a/public/build/assets/CreateRoleForm-9ed0cd2b.js b/public/build/assets/CreateRoleForm-9ed0cd2b.js deleted file mode 100644 index 4945972..0000000 --- a/public/build/assets/CreateRoleForm-9ed0cd2b.js +++ /dev/null @@ -1 +0,0 @@ -import{u as j,x as W,o as u,g as p,d as c,a as m,b as a,j as v,v as b,F as x,m as k,w as y,T as $,f as E,e as F,h as G}from"./app-a07534fc.js";import{_ as C}from"./InputError-819a2731.js";import{_ as d}from"./InputLabel-0d88b11e.js";import{_ as O}from"./PrimaryButton-f1dd44c4.js";import{_ as U}from"./TextInput-6d371888.js";const B=["onSubmit"],R={class:"grid grid-cols-6 justify-items-start gap-1"},T={class:"flex items-center gap-1 my-5"},z=["checked"],I={class:"grid md:grid-cols-4 grid-cols-3 gap-5 pr-5 sm:pr-0"},M={class:"flex items-center gap-1 mb-5"},N=["value","checked","onClick"],A=["value","onUpdate:modelValue"],D={class:"flex items-center justify-end pr-5 py-5"},L={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},X={__name:"CreateRoleForm",props:{permissionWithGroup:Object,permissions:Object,all_group:Object,total_permissions:String,total_group:String},setup(g){const i=g,e=j({name:"",permissions:[],group_name:[],is_all_selected:!1}),V=t=>{t?(e.permissions=_.clone(i.permissions),e.group_name=_.clone(i.all_group)):(e.permissions=[],e.group_name=[])},h=t=>{let l="";for(const s in i.permissionWithGroup){let o=i.permissionWithGroup[s].find(r=>r.name==t);o&&(l=o==null?void 0:o.group_name)}return l};W(()=>e.permissions,(t,l)=>{let s="";l.length>t.length?s=h(_.difference(l,t)[0]):l.length-1});t.length==i.permissions.length?(e.is_all_selected=!0,e.group_name=_.clone(i.all_group)):e.is_all_selected=!1,n&&(o==null?void 0:o.length)!==(r==null?void 0:r.length)?_.remove(e.group_name,f=>f===s):!n&&(o==null?void 0:o.length)==(r==null?void 0:r.length)&&(_.includes(e.group_name,s)||e.group_name.push(s))});const w=t=>{let l=i.permissionWithGroup[t];_.includes(e.group_name,t)?(_.remove(e.group_name,s=>s===t),_.forEach(l,function(s){_.remove(e.permissions,n=>n===s.name)})):(e.group_name.push(t),_.forEach(l,function(s){_.includes(e.permissions,s.name)||e.permissions.push(s.name)})),e.group_name.length==i.total_group?e.is_all_selected=!0:e.is_all_selected=!1},S=()=>{e.post(route("admin.role.store"),{preserveScroll:!0,onSuccess:()=>e.reset(),onError:()=>{e.errors.name&&(e.reset("name"),nameInput.value.focus()),e.errors.permissions&&e.reset("permissions")}})};return(t,l)=>(u(),p("section",null,[c("form",{onSubmit:E(S,["prevent"]),class:"mt-6 space-y-6 p-3"},[c("div",R,[m(d,{for:"current_password",value:"Role Name :",class:"text-xl self-center"}),m(U,{id:"name",ref:"nameInput",modelValue:a(e).name,"onUpdate:modelValue":l[0]||(l[0]=s=>a(e).name=s),type:"text",class:"mt-1 block w-full col-span-5",autocomplete:"name"},null,8,["modelValue"]),m(C,{message:a(e).errors.name,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),c("div",T,[m(d,{for:"is_all_selected",value:"Select All",class:"text-2xl capitalize mr-2"}),v(c("input",{type:"checkbox",id:"is_all_selected","onUpdate:modelValue":l[1]||(l[1]=s=>a(e).is_all_selected=s),class:"checkbox w-6 h-6",checked:a(e).is_all_selected,onChange:l[2]||(l[2]=s=>V(a(e).is_all_selected))},null,40,z),[[b,a(e).is_all_selected]]),m(C,{message:a(e).errors.permissions,class:"mt-2 col-start-2 col-span-4 ml-3"},null,8,["message"])]),c("div",I,[(u(!0),p(x,null,k(g.permissionWithGroup,(s,n)=>(u(),p("div",{key:n},[c("div",M,[c("input",{type:"checkbox",id:"group_name",value:a(e).group_name,class:"checkbox mr-1 w-5 h-5",checked:a(e).group_name.includes(n),onClick:o=>w(n)},null,8,N),m(d,{for:"group_name",value:n,class:"text-xl capitalize border-b-2 border-gray-700 border-spacing-2 pb-0.5"},null,8,["value"])]),(u(!0),p(x,null,k(s,o=>(u(),p("div",{key:o.id,class:"flex"},[v(c("input",{type:"checkbox",id:"permissions",value:o.name,"onUpdate:modelValue":r=>a(e).permissions=r,class:"checkbox mr-1"},null,8,A),[[b,a(e).permissions]]),m(d,{for:"permissions",value:o.name},null,8,["value"])]))),128))]))),128))]),c("div",D,[m(O,{disabled:a(e).processing},{default:y(()=>[F("Submit")]),_:1},8,["disabled"]),m($,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:y(()=>[a(e).recentlySuccessful?(u(),p("p",L," Saved. ")):G("",!0)]),_:1})])],40,B)]))}};export{X as default}; diff --git a/public/build/assets/CreateSpecialFeatureForm-fdbe2f52.js b/public/build/assets/CreateSpecialFeatureForm-fdbe2f52.js deleted file mode 100644 index c7b9930..0000000 --- a/public/build/assets/CreateSpecialFeatureForm-fdbe2f52.js +++ /dev/null @@ -1 +0,0 @@ -import{p as r,u as x,o as p,g as f,d as t,a as o,b as s,w as g,T as h,f as k,e as w,h as V}from"./app-a07534fc.js";import{_ as i}from"./InputError-819a2731.js";import{_ as n}from"./InputLabel-0d88b11e.js";import{_ as I}from"./PrimaryButton-f1dd44c4.js";import{_ as S}from"./Textarea-1fe62e1d.js";import{_ as j}from"./TextInput-6d371888.js";import{d as C}from"./defaultFile-233481e1.js";import{s as T}from"./default.css_vue_type_style_index_0_src_true_lang-5ba86734.js";const U={class:"dark:text-white"},$=["onSubmit"],B={class:"mt-10 sm:mt-0"},F={class:"overflow-hidden shadow sm:rounded-md"},N={class:"bg-white dark:bg-gray-800 px-4 py-5 sm:p-6"},P={class:"grid grid-cols-6 gap-6 mb-10"},L={class:"col-span-6 sm:col-span-3"},A={class:"col-span-6 sm:col-span-3 lg:col-span-3"},E={class:"col-span-6 sm:col-span-3"},O={class:"col-span-6 sm:col-span-3 flex items-center justify-between"},R={class:"inline-block h-24 w-24 overflow-hidden rounded-full bg-gray-100"},D=["src"],M={class:"flex items-center justify-end pr-5 py-5"},q={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},Y={__name:"CreateSpecialFeatureForm",props:{statusArr:Object},setup(_){const c=r(null),m=r(null),d=r(null),b=r(null),e=x({title:"",description:"",image:"",imagePreview:C.placeholder,status:""}),y=u=>{const a=u.target.files[0];e.imagePreview=URL.createObjectURL(a)},v=()=>{e.post(route("admin.special-feature.store"),{preserveScroll:!0,onSuccess:()=>e.reset(),onError:()=>{e.errors.title&&c.value.focus(),e.errors.description&&m.value.focus(),e.errors.status&&b.value.focus(),e.errors.image&&d.value.focus()}})};return(u,a)=>(p(),f("section",U,[t("form",{onSubmit:k(v,["prevent"]),class:"mt-6 space-y-6 p-3"},[t("div",B,[t("div",F,[t("div",N,[t("div",P,[t("div",L,[o(n,{for:"title",value:"Title :",class:"block text-sm font-medium text-gray-700"}),o(j,{id:"title",ref_key:"titleInput",ref:c,modelValue:s(e).title,"onUpdate:modelValue":a[0]||(a[0]=l=>s(e).title=l),type:"text",class:"mt-1 block w-full",autocomplete:"title"},null,8,["modelValue"]),o(i,{message:s(e).errors.title,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),t("div",A,[o(n,{for:"status",value:"Status :",class:"block text-sm font-medium text-gray-700 mb-1"}),o(s(T),{modelValue:s(e).status,"onUpdate:modelValue":a[1]||(a[1]=l=>s(e).status=l),options:_.statusArr,selected:s(e).status,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-800",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"}},null,8,["modelValue","options","selected"]),o(i,{message:s(e).errors.status,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),t("div",E,[o(n,{for:"description",value:"Description :",class:"block text-sm font-medium text-gray-700"}),o(S,{id:"description",ref_key:"descriptionInput",ref:m,modelValue:s(e).description,"onUpdate:modelValue":a[2]||(a[2]=l=>s(e).description=l),type:"text",class:"mt-1 block w-full",autocomplete:"description"},null,8,["modelValue"]),o(i,{message:s(e).errors.description,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),t("div",O,[t("div",null,[o(n,{for:"image",value:"Image :",class:"block text-sm font-medium text-gray-700"}),t("input",{id:"image",type:"file",class:"mt-1 block form-controll cursor-pointer",onChange:y,ref_key:"imageInput",ref:d,onInput:a[3]||(a[3]=l=>s(e).image=l.target.files[0])},null,544),o(i,{message:s(e).errors.image,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),t("span",R,[t("img",{src:s(e).imagePreview,class:"w-full h-full object-contain"},null,8,D)])])])])])]),t("div",M,[o(I,{disabled:s(e).processing},{default:g(()=>[w("Submit")]),_:1},8,["disabled"]),o(h,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:g(()=>[s(e).recentlySuccessful?(p(),f("p",q," Saved. ")):V("",!0)]),_:1})])],40,$)]))}};export{Y as default}; diff --git a/public/build/assets/CreateUserForm-11ae6dde.js b/public/build/assets/CreateUserForm-11ae6dde.js deleted file mode 100644 index df6d5e9..0000000 --- a/public/build/assets/CreateUserForm-11ae6dde.js +++ /dev/null @@ -1 +0,0 @@ -import{p as c,u as I,o as _,g as v,d as t,a,b as e,w,T as U,f as S,e as j,h as P}from"./app-a07534fc.js";import{_ as r}from"./InputError-819a2731.js";import{_ as n}from"./InputLabel-0d88b11e.js";import{_ as C}from"./PrimaryButton-f1dd44c4.js";import{_ as m}from"./TextInput-6d371888.js";import{d as N}from"./defaultFile-233481e1.js";import{s as b}from"./default.css_vue_type_style_index_0_src_true_lang-5ba86734.js";const B={class:"dark:text-white"},T=["onSubmit"],$={class:"mt-10 sm:mt-0"},A={class:"overflow-hidden shadow sm:rounded-md"},E={class:"bg-white dark:bg-gray-800 px-4 py-5 sm:p-6"},F={class:"grid grid-cols-6 gap-6"},L={class:"col-span-6 sm:col-span-3"},O={class:"col-span-6 sm:col-span-3"},R={class:"col-span-6 sm:col-span-3 flex items-center justify-between"},z={class:"inline-block h-24 w-24 overflow-hidden rounded-full bg-gray-100"},M=["src"],q={class:"col-span-6 sm:col-span-3 grid grid-cols-6 gap-5 items-center justify-between relative"},D={class:"col-span-3"},G={class:"col-span-3"},H={class:"col-span-6 sm:col-span-3 lg:col-span-3"},J={class:"col-span-6 sm:col-span-3 lg:col-span-3"},K={class:"flex items-center justify-end pr-5 py-5"},Q={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},ts={__name:"CreateUserForm",props:{roles:Object,statusArr:Object},setup(d){const y=d,u=c(null),p=c(null),f=c(null),x=c(null),k=c(null),i=c(null),s=I({name:"",email:"",avatar:"",avatarPreview:N.avatar,status:"",password:"",password_confirmation:"",roles:[]}),h=g=>{const o=g.target.files[0];s.avatarPreview=URL.createObjectURL(o)},V=()=>{s.post(route("admin.user.store"),{preserveScroll:!0,onSuccess:()=>s.reset(),onError:()=>{s.errors.name&&u.value.focus(),s.errors.email&&p.value.focus(),s.errors.status&&x.value.focus(),s.errors.password&&(s.reset("password"),s.reset("password_confirmation"),i.value.focus()),s.errors.roles&&k.value.focus(),s.errors.avatar&&f.value.focus()}})};return(g,o)=>(_(),v("section",B,[t("form",{onSubmit:S(V,["prevent"]),class:"mt-6 space-y-6 p-3"},[t("div",$,[t("div",A,[t("div",E,[t("div",F,[t("div",L,[a(n,{for:"name",value:"Name :",class:"block text-sm font-medium text-gray-700"}),a(m,{id:"name",ref_key:"nameInput",ref:u,modelValue:e(s).name,"onUpdate:modelValue":o[0]||(o[0]=l=>e(s).name=l),type:"text",class:"mt-1 block w-full",autocomplete:"name"},null,8,["modelValue"]),a(r,{message:e(s).errors.name,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),t("div",O,[a(n,{for:"email",value:"Email :",class:"block text-sm font-medium text-gray-700"}),a(m,{id:"email",ref_key:"emailInput",ref:p,modelValue:e(s).email,"onUpdate:modelValue":o[1]||(o[1]=l=>e(s).email=l),type:"text",class:"mt-1 block w-full",autocomplete:"email"},null,8,["modelValue"]),a(r,{message:e(s).errors.email,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),t("div",R,[t("div",null,[a(n,{for:"avatar",value:"Avatar :",class:"block text-sm font-medium text-gray-700"}),t("input",{id:"avatar",type:"file",class:"mt-1 block form-controll cursor-pointer",onChange:h,ref_key:"avatarInput",ref:f,onInput:o[2]||(o[2]=l=>e(s).avatar=l.target.files[0])},null,544),a(r,{message:e(s).errors.avatar,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),t("span",z,[t("img",{src:e(s).avatarPreview,class:"w-full h-full object-contain"},null,8,M)])]),t("div",q,[t("div",D,[a(n,{for:"roles",value:"Role :",class:"block text-sm font-medium text-gray-700 mb-1"}),a(e(b),{modelValue:e(s).roles,"onUpdate:modelValue":o[3]||(o[3]=l=>e(s).roles=l),options:y.roles,selected:e(s).roles,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-gray-900",mode:"tags",searchable:!0,"close-on-select":!1},null,8,["modelValue","options","selected"]),a(r,{message:e(s).errors.roles,class:"mt-2 col-start-2 col-span-4 absolute z-5"},null,8,["message"])]),t("div",G,[a(n,{for:"status",value:"Status :",class:"block text-sm font-medium text-gray-700 mb-1"}),a(e(b),{modelValue:e(s).status,"onUpdate:modelValue":o[4]||(o[4]=l=>e(s).status=l),options:d.statusArr,selected:e(s).status,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-800",singleLabelText:"bg-[#10B981] text-white rounded py-0.5 px-3 text-sm font-semibold"}},null,8,["modelValue","options","selected"]),a(r,{message:e(s).errors.status,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])])]),t("div",H,[a(n,{for:"password",value:"Password :",class:"block text-sm font-medium text-gray-700"}),a(m,{id:"password",ref_key:"passwordInput",ref:i,modelValue:e(s).password,"onUpdate:modelValue":o[5]||(o[5]=l=>e(s).password=l),type:"password",class:"mt-1 block w-full",autocomplete:"password"},null,8,["modelValue"]),a(r,{message:e(s).errors.password,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),t("div",J,[a(n,{for:"password_confirmation",value:"Password Confirmation :",class:"block text-sm font-medium text-gray-700"}),a(m,{id:"password_confirmation",ref_key:"passwordInput",ref:i,modelValue:e(s).password_confirmation,"onUpdate:modelValue":o[6]||(o[6]=l=>e(s).password_confirmation=l),type:"password",class:"mt-1 block w-full",autocomplete:"password_confirmation"},null,8,["modelValue"]),a(r,{message:e(s).errors.password_confirmation,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])])])])])]),t("div",K,[a(C,{disabled:e(s).processing},{default:w(()=>[j("Submit")]),_:1},8,["disabled"]),a(U,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:w(()=>[e(s).recentlySuccessful?(_(),v("p",Q," Saved. ")):P("",!0)]),_:1})])],40,T)]))}};export{ts as default}; diff --git a/public/build/assets/CreateUserForm-f683078a.js b/public/build/assets/CreateUserForm-5f18902b.js similarity index 75% rename from public/build/assets/CreateUserForm-f683078a.js rename to public/build/assets/CreateUserForm-5f18902b.js index 583b46f..e629877 100644 --- a/public/build/assets/CreateUserForm-f683078a.js +++ b/public/build/assets/CreateUserForm-5f18902b.js @@ -1 +1 @@ -import{i as c,v as I,h as v,b as t,a,u as e,w as _,S as U,e as S,o as w,d as j,q as P}from"./app-4f9e7dfc.js";import{a as r,_ as n}from"./InputLabel-5969cc22.js";import{_ as C}from"./PrimaryButton-89a514d8.js";import{_ as m}from"./TextInput-5a299594.js";import{d as N}from"./defaultFile-106f3fb6.js";import{s as b}from"./default.css_vue_type_style_index_0_src_true_lang-51e34c56.js";const B={class:"dark:text-white"},$=["onSubmit"],A={class:"mt-10 sm:mt-0"},E={class:"overflow-hidden shadow sm:rounded-md"},L={class:"bg-white dark:bg-gray-800 px-4 py-5 sm:p-6"},O={class:"grid grid-cols-6 gap-6"},R={class:"col-span-6 sm:col-span-3"},T={class:"col-span-6 sm:col-span-3"},F={class:"col-span-6 sm:col-span-3 flex items-center justify-between"},q={class:"inline-block h-24 w-24 overflow-hidden rounded-full bg-gray-100"},z=["src"],M={class:"col-span-6 sm:col-span-3 grid grid-cols-6 gap-5 items-center justify-between relative"},D={class:"col-span-3"},G={class:"col-span-3"},H={class:"col-span-6 sm:col-span-3 lg:col-span-3"},J={class:"col-span-6 sm:col-span-3 lg:col-span-3"},K={class:"flex items-center justify-end pr-5 py-5"},Q={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},as={__name:"CreateUserForm",props:{roles:Object,statusArr:Object},setup(d){const y=d,u=c(null),p=c(null),f=c(null),x=c(null),k=c(null),i=c(null),s=I({name:"",email:"",avatar:"",avatarPreview:N.avatar,status:"",password:"",password_confirmation:"",roles:[]}),h=g=>{const o=g.target.files[0];s.avatarPreview=URL.createObjectURL(o)},V=()=>{s.post(route("user.store"),{preserveScroll:!0,onSuccess:()=>s.reset(),onError:()=>{s.errors.name&&u.value.focus(),s.errors.email&&p.value.focus(),s.errors.status&&x.value.focus(),s.errors.password&&(s.reset("password"),s.reset("password_confirmation"),i.value.focus()),s.errors.roles&&k.value.focus(),s.errors.avatar&&f.value.focus()}})};return(g,o)=>(w(),v("section",B,[t("form",{onSubmit:S(V,["prevent"]),class:"mt-6 space-y-6 p-3"},[t("div",A,[t("div",E,[t("div",L,[t("div",O,[t("div",R,[a(n,{for:"name",value:"Name :",class:"block text-sm font-medium text-gray-700"}),a(m,{id:"name",ref_key:"nameInput",ref:u,modelValue:e(s).name,"onUpdate:modelValue":o[0]||(o[0]=l=>e(s).name=l),type:"text",class:"mt-1 block w-full",autocomplete:"name"},null,8,["modelValue"]),a(r,{message:e(s).errors.name,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),t("div",T,[a(n,{for:"email",value:"Email :",class:"block text-sm font-medium text-gray-700"}),a(m,{id:"email",ref_key:"emailInput",ref:p,modelValue:e(s).email,"onUpdate:modelValue":o[1]||(o[1]=l=>e(s).email=l),type:"text",class:"mt-1 block w-full",autocomplete:"email"},null,8,["modelValue"]),a(r,{message:e(s).errors.email,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),t("div",F,[t("div",null,[a(n,{for:"avatar",value:"Avatar :",class:"block text-sm font-medium text-gray-700"}),t("input",{id:"avatar",type:"file",class:"mt-1 block form-controll cursor-pointer",onChange:h,ref_key:"avatarInput",ref:f,onInput:o[2]||(o[2]=l=>e(s).avatar=l.target.files[0])},null,544),a(r,{message:e(s).errors.avatar,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),t("span",q,[t("img",{src:e(s).avatarPreview,class:"w-full h-full object-contain"},null,8,z)])]),t("div",M,[t("div",D,[a(n,{for:"roles",value:"Role :",class:"block text-sm font-medium text-gray-700 mb-1"}),a(e(b),{modelValue:e(s).roles,"onUpdate:modelValue":o[3]||(o[3]=l=>e(s).roles=l),options:y.roles,selected:e(s).roles,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-gray-900",mode:"tags",searchable:!0,"close-on-select":!1},null,8,["modelValue","options","selected"]),a(r,{message:e(s).errors.roles,class:"mt-2 col-start-2 col-span-4 absolute z-5"},null,8,["message"])]),t("div",G,[a(n,{for:"status",value:"Status :",class:"block text-sm font-medium text-gray-700 mb-1"}),a(e(b),{modelValue:e(s).status,"onUpdate:modelValue":o[4]||(o[4]=l=>e(s).status=l),options:d.statusArr,selected:e(s).status,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-700",singleLabelText:"bg-[#10B981] text-white rounded py-0.5 px-3 text-sm font-semibold"}},null,8,["modelValue","options","selected","classes"]),a(r,{message:e(s).errors.status,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])])]),t("div",H,[a(n,{for:"password",value:"Password :",class:"block text-sm font-medium text-gray-700"}),a(m,{id:"password",ref_key:"passwordInput",ref:i,modelValue:e(s).password,"onUpdate:modelValue":o[5]||(o[5]=l=>e(s).password=l),type:"password",class:"mt-1 block w-full",autocomplete:"password"},null,8,["modelValue"]),a(r,{message:e(s).errors.password,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),t("div",J,[a(n,{for:"password_confirmation",value:"Password Confirmation :",class:"block text-sm font-medium text-gray-700"}),a(m,{id:"password_confirmation",ref_key:"passwordInput",ref:i,modelValue:e(s).password_confirmation,"onUpdate:modelValue":o[6]||(o[6]=l=>e(s).password_confirmation=l),type:"password",class:"mt-1 block w-full",autocomplete:"password_confirmation"},null,8,["modelValue"]),a(r,{message:e(s).errors.password_confirmation,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])])])])])]),t("div",K,[a(C,{disabled:e(s).processing},{default:_(()=>[j("Submit")]),_:1},8,["disabled"]),a(U,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:_(()=>[e(s).recentlySuccessful?(w(),v("p",Q," Saved. ")):P("",!0)]),_:1})])],40,$)]))}};export{as as default}; +import{p as c,v as I,f as v,b as t,a,u as e,w as _,T as U,e as S,o as w,d as j,g as P}from"./app-4dfa7f3b.js";import{a as r,_ as n}from"./InputLabel-fec82426.js";import{_ as C}from"./PrimaryButton-2b535c8b.js";import{_ as m}from"./TextInput-fb418c8e.js";import{d as N}from"./defaultFile-2b6c57d3.js";import{s as b}from"./default.css_vue_type_style_index_0_src_true_lang-5d8f90ba.js";const B={class:"dark:text-white"},T=["onSubmit"],$={class:"mt-10 sm:mt-0"},A={class:"overflow-hidden shadow sm:rounded-md"},E={class:"bg-white dark:bg-gray-800 px-4 py-5 sm:p-6"},L={class:"grid grid-cols-6 gap-6"},O={class:"col-span-6 sm:col-span-3"},R={class:"col-span-6 sm:col-span-3"},F={class:"col-span-6 sm:col-span-3 flex items-center justify-between"},z={class:"inline-block h-24 w-24 overflow-hidden rounded-full bg-gray-100"},M=["src"],q={class:"col-span-6 sm:col-span-3 grid grid-cols-6 gap-5 items-center justify-between relative"},D={class:"col-span-3"},G={class:"col-span-3"},H={class:"col-span-6 sm:col-span-3 lg:col-span-3"},J={class:"col-span-6 sm:col-span-3 lg:col-span-3"},K={class:"flex items-center justify-end pr-5 py-5"},Q={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},as={__name:"CreateUserForm",props:{roles:Object,statusArr:Object},setup(d){const y=d,u=c(null),p=c(null),f=c(null),x=c(null),k=c(null),i=c(null),s=I({name:"",email:"",avatar:"",avatarPreview:N.avatar,status:"",password:"",password_confirmation:"",roles:[]}),V=g=>{const o=g.target.files[0];s.avatarPreview=URL.createObjectURL(o)},h=()=>{s.post(route("user.store"),{preserveScroll:!0,onSuccess:()=>s.reset(),onError:()=>{s.errors.name&&u.value.focus(),s.errors.email&&p.value.focus(),s.errors.status&&x.value.focus(),s.errors.password&&(s.reset("password"),s.reset("password_confirmation"),i.value.focus()),s.errors.roles&&k.value.focus(),s.errors.avatar&&f.value.focus()}})};return(g,o)=>(w(),v("section",B,[t("form",{onSubmit:S(h,["prevent"]),class:"mt-6 space-y-6 p-3"},[t("div",$,[t("div",A,[t("div",E,[t("div",L,[t("div",O,[a(n,{for:"name",value:"Name :",class:"block text-sm font-medium text-gray-700"}),a(m,{id:"name",ref_key:"nameInput",ref:u,modelValue:e(s).name,"onUpdate:modelValue":o[0]||(o[0]=l=>e(s).name=l),type:"text",class:"mt-1 block w-full",autocomplete:"name"},null,8,["modelValue"]),a(r,{message:e(s).errors.name,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),t("div",R,[a(n,{for:"email",value:"Email :",class:"block text-sm font-medium text-gray-700"}),a(m,{id:"email",ref_key:"emailInput",ref:p,modelValue:e(s).email,"onUpdate:modelValue":o[1]||(o[1]=l=>e(s).email=l),type:"text",class:"mt-1 block w-full",autocomplete:"email"},null,8,["modelValue"]),a(r,{message:e(s).errors.email,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),t("div",F,[t("div",null,[a(n,{for:"avatar",value:"Avatar :",class:"block text-sm font-medium text-gray-700"}),t("input",{id:"avatar",type:"file",class:"mt-1 block form-controll cursor-pointer",onChange:V,ref_key:"avatarInput",ref:f,onInput:o[2]||(o[2]=l=>e(s).avatar=l.target.files[0])},null,544),a(r,{message:e(s).errors.avatar,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),t("span",z,[t("img",{src:e(s).avatarPreview,class:"w-full h-full object-contain"},null,8,M)])]),t("div",q,[t("div",D,[a(n,{for:"roles",value:"Role :",class:"block text-sm font-medium text-gray-700 mb-1"}),a(e(b),{modelValue:e(s).roles,"onUpdate:modelValue":o[3]||(o[3]=l=>e(s).roles=l),options:y.roles,selected:e(s).roles,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-gray-900",mode:"tags",searchable:!0,"close-on-select":!1},null,8,["modelValue","options","selected"]),a(r,{message:e(s).errors.roles,class:"mt-2 col-start-2 col-span-4 absolute z-5"},null,8,["message"])]),t("div",G,[a(n,{for:"status",value:"Status :",class:"block text-sm font-medium text-gray-700 mb-1"}),a(e(b),{modelValue:e(s).status,"onUpdate:modelValue":o[4]||(o[4]=l=>e(s).status=l),options:d.statusArr,selected:e(s).status,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-700",singleLabelText:"bg-[#10B981] text-white rounded py-0.5 px-3 text-sm font-semibold"}},null,8,["modelValue","options","selected","classes"]),a(r,{message:e(s).errors.status,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])])]),t("div",H,[a(n,{for:"password",value:"Password :",class:"block text-sm font-medium text-gray-700"}),a(m,{id:"password",ref_key:"passwordInput",ref:i,modelValue:e(s).password,"onUpdate:modelValue":o[5]||(o[5]=l=>e(s).password=l),type:"password",class:"mt-1 block w-full",autocomplete:"password"},null,8,["modelValue"]),a(r,{message:e(s).errors.password,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),t("div",J,[a(n,{for:"password_confirmation",value:"Password Confirmation :",class:"block text-sm font-medium text-gray-700"}),a(m,{id:"password_confirmation",ref_key:"passwordInput",ref:i,modelValue:e(s).password_confirmation,"onUpdate:modelValue":o[6]||(o[6]=l=>e(s).password_confirmation=l),type:"password",class:"mt-1 block w-full",autocomplete:"password_confirmation"},null,8,["modelValue"]),a(r,{message:e(s).errors.password_confirmation,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])])])])])]),t("div",K,[a(C,{disabled:e(s).processing},{default:_(()=>[j("Submit")]),_:1},8,["disabled"]),a(U,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:_(()=>[e(s).recentlySuccessful?(w(),v("p",Q," Saved. ")):P("",!0)]),_:1})])],40,T)]))}};export{as as default}; diff --git a/public/build/assets/DangerButton-1432f67e.js b/public/build/assets/DangerButton-9faead77.js similarity index 75% rename from public/build/assets/DangerButton-1432f67e.js rename to public/build/assets/DangerButton-9faead77.js index f19a0f2..b454cbb 100644 --- a/public/build/assets/DangerButton-1432f67e.js +++ b/public/build/assets/DangerButton-9faead77.js @@ -1 +1 @@ -import{o as n,g as o,k as s}from"./app-a07534fc.js";const r=["type"],c={__name:"DangerButton",props:{type:{type:String,default:"submit"}},setup(t){return(e,a)=>(n(),o("button",{type:t.type,class:"btn btn-danger"},[s(e.$slots,"default")],8,r))}};export{c as _}; +import{o as n,f as o,m as s}from"./app-4dfa7f3b.js";const r=["type"],c={__name:"DangerButton",props:{type:{type:String,default:"submit"}},setup(t){return(e,a)=>(n(),o("button",{type:t.type,class:"btn btn-danger"},[s(e.$slots,"default")],8,r))}};export{c as _}; diff --git a/public/build/assets/DangerButton-c925b039.js b/public/build/assets/DangerButton-c925b039.js deleted file mode 100644 index b7cbb54..0000000 --- a/public/build/assets/DangerButton-c925b039.js +++ /dev/null @@ -1 +0,0 @@ -import{o as n,h as o,r}from"./app-4f9e7dfc.js";const s=["type"],c={__name:"DangerButton",props:{type:{type:String,default:"submit"}},setup(t){return(e,a)=>(n(),o("button",{type:t.type,class:"btn btn-danger"},[r(e.$slots,"default")],8,s))}};export{c as _}; diff --git a/public/build/assets/DarkMode-9ce27e49.js b/public/build/assets/DarkMode-9ce27e49.js deleted file mode 100644 index 4e596a2..0000000 --- a/public/build/assets/DarkMode-9ce27e49.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as ue}from"./_plugin-vue_export-helper-c27b6911.js";import{o as k,g as M,d as b,I as ce,z as fe,q as te,b as L,J as de,K as pe,M as ve,p as y,N as _e,i as A,x as N,O as ge,P as he}from"./app-a07534fc.js";const me={},we={"aria-hidden":"true",class:"w-full h-full text-gray-200 animate-spin fill-blue-600",viewBox:"0 0 100 101",fill:"none",xmlns:"http://www.w3.org/2000/svg"},ye=b("path",{d:"M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z",fill:"currentColor"},null,-1),Oe=b("path",{d:"M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z",fill:"currentFill"},null,-1),Pe=[ye,Oe];function be(e,t){return k(),M("svg",we,Pe)}const Et=ue(me,[["render",be]]);var W;const re=typeof window<"u",Se=e=>typeof e=="function",Ce=e=>typeof e=="string",$e=()=>{};re&&((W=window==null?void 0:window.navigator)!=null&&W.userAgent)&&/iP(ad|hone|od)/.test(window.navigator.userAgent);function j(e){return typeof e=="function"?e():L(e)}function Ee(e,t){function r(...n){return new Promise((a,o)=>{Promise.resolve(e(()=>t.apply(this,n),{fn:t,thisArg:this,args:n})).then(a).catch(o)})}return r}const ne=e=>e();function Ie(e=ne){const t=y(!0);function r(){t.value=!1}function n(){t.value=!0}const a=(...o)=>{t.value&&e(...o)};return{isActive:_e(t),pause:r,resume:n,eventFilter:a}}function je(e){return e}function ae(e){return de()?(pe(e),!0):!1}function ke(e){return typeof e=="function"?A(e):y(e)}function V(e,t=!0){ce()?fe(e):t?e():te(e)}function Me(e=!1,t={}){const{truthyValue:r=!0,falsyValue:n=!1}=t,a=ve(e),o=y(e);function l(s){if(arguments.length)return o.value=s,o.value;{const u=j(r);return o.value=o.value===u?j(n):u,o.value}}return a?l:[o,l]}var B=Object.getOwnPropertySymbols,Ae=Object.prototype.hasOwnProperty,Ne=Object.prototype.propertyIsEnumerable,xe=(e,t)=>{var r={};for(var n in e)Ae.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(e!=null&&B)for(var n of B(e))t.indexOf(n)<0&&Ne.call(e,n)&&(r[n]=e[n]);return r};function De(e,t,r={}){const n=r,{eventFilter:a=ne}=n,o=xe(n,["eventFilter"]);return N(e,Ee(a,t),o)}var ze=Object.defineProperty,Le=Object.defineProperties,Fe=Object.getOwnPropertyDescriptors,x=Object.getOwnPropertySymbols,oe=Object.prototype.hasOwnProperty,se=Object.prototype.propertyIsEnumerable,Q=(e,t,r)=>t in e?ze(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,Te=(e,t)=>{for(var r in t||(t={}))oe.call(t,r)&&Q(e,r,t[r]);if(x)for(var r of x(t))se.call(t,r)&&Q(e,r,t[r]);return e},Ve=(e,t)=>Le(e,Fe(t)),We=(e,t)=>{var r={};for(var n in e)oe.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(e!=null&&x)for(var n of x(e))t.indexOf(n)<0&&se.call(e,n)&&(r[n]=e[n]);return r};function Be(e,t,r={}){const n=r,{eventFilter:a}=n,o=We(n,["eventFilter"]),{eventFilter:l,pause:s,resume:u,isActive:c}=Ie(a);return{stop:De(e,t,Ve(Te({},o),{eventFilter:l})),pause:s,resume:u,isActive:c}}function Qe(e){var t;const r=j(e);return(t=r==null?void 0:r.$el)!=null?t:r}const $=re?window:void 0;function D(...e){let t,r,n,a;if(Ce(e[0])||Array.isArray(e[0])?([r,n,a]=e,t=$):[t,r,n,a]=e,!t)return $e;Array.isArray(r)||(r=[r]),Array.isArray(n)||(n=[n]);const o=[],l=()=>{o.forEach(f=>f()),o.length=0},s=(f,p,h,v)=>(f.addEventListener(p,h,v),()=>f.removeEventListener(p,h,v)),u=N(()=>[Qe(t),j(a)],([f,p])=>{l(),f&&o.push(...r.flatMap(h=>n.map(v=>s(f,h,v,p))))},{immediate:!0,flush:"post"}),c=()=>{u(),l()};return ae(c),c}function Re(e,t=!1){const r=y(),n=()=>r.value=!!e();return n(),V(n,t),r}function He(e,t={}){const{window:r=$}=t,n=Re(()=>r&&"matchMedia"in r&&typeof r.matchMedia=="function");let a;const o=y(!1),l=()=>{a&&("removeEventListener"in a?a.removeEventListener("change",s):a.removeListener(s))},s=()=>{n.value&&(l(),a=r.matchMedia(ke(e).value),o.value=a.matches,"addEventListener"in a?a.addEventListener("change",s):a.addListener(s))};return ge(s),ae(()=>l()),o}const F=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},T="__vueuse_ssr_handlers__";F[T]=F[T]||{};const Je=F[T];function ie(e,t){return Je[e]||t}function Ke(e){return e==null?"any":e instanceof Set?"set":e instanceof Map?"map":e instanceof Date?"date":typeof e=="boolean"?"boolean":typeof e=="string"?"string":typeof e=="object"?"object":Number.isNaN(e)?"any":"number"}var Ue=Object.defineProperty,R=Object.getOwnPropertySymbols,Ze=Object.prototype.hasOwnProperty,qe=Object.prototype.propertyIsEnumerable,H=(e,t,r)=>t in e?Ue(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,J=(e,t)=>{for(var r in t||(t={}))Ze.call(t,r)&&H(e,r,t[r]);if(R)for(var r of R(t))qe.call(t,r)&&H(e,r,t[r]);return e};const Ge={boolean:{read:e=>e==="true",write:e=>String(e)},object:{read:e=>JSON.parse(e),write:e=>JSON.stringify(e)},number:{read:e=>Number.parseFloat(e),write:e=>String(e)},any:{read:e=>e,write:e=>String(e)},string:{read:e=>e,write:e=>String(e)},map:{read:e=>new Map(JSON.parse(e)),write:e=>JSON.stringify(Array.from(e.entries()))},set:{read:e=>new Set(JSON.parse(e)),write:e=>JSON.stringify(Array.from(e))},date:{read:e=>new Date(e),write:e=>e.toISOString()}},K="vueuse-storage";function Xe(e,t,r,n={}){var a;const{flush:o="pre",deep:l=!0,listenToStorageChanges:s=!0,writeDefaults:u=!0,mergeDefaults:c=!1,shallow:f,window:p=$,eventFilter:h,onError:v=i=>{console.error(i)}}=n,_=(f?he:y)(t);if(!r)try{r=ie("getDefaultStorage",()=>{var i;return(i=$)==null?void 0:i.localStorage})()}catch(i){v(i)}if(!r)return _;const m=j(t),I=Ke(m),O=(a=n.serializer)!=null?a:Ge[I],{pause:g,resume:P}=Be(_,()=>S(_.value),{flush:o,deep:l,eventFilter:h});return p&&s&&(D(p,"storage",w),D(p,K,z)),w(),_;function S(i){try{if(i==null)r.removeItem(e);else{const d=O.write(i),C=r.getItem(e);C!==d&&(r.setItem(e,d),p&&p.dispatchEvent(new CustomEvent(K,{detail:{key:e,oldValue:C,newValue:d,storageArea:r}})))}}catch(d){v(d)}}function E(i){const d=i?i.newValue:r.getItem(e);if(d==null)return u&&m!==null&&r.setItem(e,O.write(m)),m;if(!i&&c){const C=O.read(d);return Se(c)?c(C,m):I==="object"&&!Array.isArray(C)?J(J({},m),C):C}else return typeof d!="string"?d:O.read(d)}function z(i){w(i.detail)}function w(i){if(!(i&&i.storageArea!==r)){if(i&&i.key==null){_.value=m;return}if(!(i&&i.key!==e)){g();try{_.value=E(i)}catch(d){v(d)}finally{i?te(P):P()}}}}}function le(e){return He("(prefers-color-scheme: dark)",e)}var Ye=Object.defineProperty,U=Object.getOwnPropertySymbols,et=Object.prototype.hasOwnProperty,tt=Object.prototype.propertyIsEnumerable,Z=(e,t,r)=>t in e?Ye(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,rt=(e,t)=>{for(var r in t||(t={}))et.call(t,r)&&Z(e,r,t[r]);if(U)for(var r of U(t))tt.call(t,r)&&Z(e,r,t[r]);return e};function nt(e={}){const{selector:t="html",attribute:r="class",initialValue:n="auto",window:a=$,storage:o,storageKey:l="vueuse-color-scheme",listenToStorageChanges:s=!0,storageRef:u,emitAuto:c}=e,f=rt({auto:"",light:"light",dark:"dark"},e.modes||{}),p=le({window:a}),h=A(()=>p.value?"dark":"light"),v=u||(l==null?y(n):Xe(l,n,o,{window:a,listenToStorageChanges:s})),_=A({get(){return v.value==="auto"&&!c?h.value:v.value},set(g){v.value=g}}),m=ie("updateHTMLAttrs",(g,P,S)=>{const E=a==null?void 0:a.document.querySelector(g);if(E)if(P==="class"){const z=S.split(/\s/g);Object.values(f).flatMap(w=>(w||"").split(/\s/g)).filter(Boolean).forEach(w=>{z.includes(w)?E.classList.add(w):E.classList.remove(w)})}else E.setAttribute(P,S)});function I(g){var P;const S=g==="auto"?h.value:g;m(t,r,(P=f[S])!=null?P:S)}function O(g){e.onChanged?e.onChanged(g,I):I(g)}return N(_,O,{flush:"post",immediate:!0}),c&&N(h,()=>O(_.value),{flush:"post"}),V(()=>O(_.value)),_}var at=Object.defineProperty,ot=Object.defineProperties,st=Object.getOwnPropertyDescriptors,q=Object.getOwnPropertySymbols,it=Object.prototype.hasOwnProperty,lt=Object.prototype.propertyIsEnumerable,G=(e,t,r)=>t in e?at(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,ut=(e,t)=>{for(var r in t||(t={}))it.call(t,r)&&G(e,r,t[r]);if(q)for(var r of q(t))lt.call(t,r)&&G(e,r,t[r]);return e},ct=(e,t)=>ot(e,st(t));function ft(e={}){const{valueDark:t="dark",valueLight:r="",window:n=$}=e,a=nt(ct(ut({},e),{onChanged:(s,u)=>{var c;e.onChanged?(c=e.onChanged)==null||c.call(e,s==="dark"):u(s)},modes:{dark:t,light:r}})),o=le({window:n});return A({get(){return a.value==="dark"},set(s){s===o.value?a.value="auto":a.value=s?"dark":"light"}})}var X;(function(e){e.UP="UP",e.RIGHT="RIGHT",e.DOWN="DOWN",e.LEFT="LEFT",e.NONE="NONE"})(X||(X={}));var dt=Object.defineProperty,Y=Object.getOwnPropertySymbols,pt=Object.prototype.hasOwnProperty,vt=Object.prototype.propertyIsEnumerable,ee=(e,t,r)=>t in e?dt(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,_t=(e,t)=>{for(var r in t||(t={}))pt.call(t,r)&&ee(e,r,t[r]);if(Y)for(var r of Y(t))vt.call(t,r)&&ee(e,r,t[r]);return e};const gt={easeInSine:[.12,0,.39,0],easeOutSine:[.61,1,.88,1],easeInOutSine:[.37,0,.63,1],easeInQuad:[.11,0,.5,0],easeOutQuad:[.5,1,.89,1],easeInOutQuad:[.45,0,.55,1],easeInCubic:[.32,0,.67,0],easeOutCubic:[.33,1,.68,1],easeInOutCubic:[.65,0,.35,1],easeInQuart:[.5,0,.75,0],easeOutQuart:[.25,1,.5,1],easeInOutQuart:[.76,0,.24,1],easeInQuint:[.64,0,.78,0],easeOutQuint:[.22,1,.36,1],easeInOutQuint:[.83,0,.17,1],easeInExpo:[.7,0,.84,0],easeOutExpo:[.16,1,.3,1],easeInOutExpo:[.87,0,.13,1],easeInCirc:[.55,0,1,.45],easeOutCirc:[0,.55,.45,1],easeInOutCirc:[.85,0,.15,1],easeInBack:[.36,0,.66,-.56],easeOutBack:[.34,1.56,.64,1],easeInOutBack:[.68,-.6,.32,1.6]};_t({linear:je},gt);function It(e={}){const{window:t=$,initialWidth:r=1/0,initialHeight:n=1/0,listenOrientation:a=!0,includeScrollbar:o=!0}=e,l=y(r),s=y(n),u=()=>{t&&(o?(l.value=t.innerWidth,s.value=t.innerHeight):(l.value=t.document.documentElement.clientWidth,s.value=t.document.documentElement.clientHeight))};return u(),V(u),D("resize",u,{passive:!0}),a&&D("orientationchange",u,{passive:!0}),{width:l,height:s}}const ht=b("i",{"inline-block":"","align-middle":"",i:"dark:carbon-moon carbon-sun"},null,-1),mt={class:"grid place-content-center text-gray-500 dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-700 focus:outline-none focus:ring-4 focus:ring-gray-200 dark:focus:ring-gray-700 rounded-lg text-sm p-1.5"},wt={key:0,class:"w-5 h-5"},yt=b("svg",{"aria-hidden":"true",id:"theme-toggle-light-icon",class:"w-5 h-5",fill:"white",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},[b("path",{d:"M10 2a1 1 0 011 1v1a1 1 0 11-2 0V3a1 1 0 011-1zm4 8a4 4 0 11-8 0 4 4 0 018 0zm-.464 4.95l.707.707a1 1 0 001.414-1.414l-.707-.707a1 1 0 00-1.414 1.414zm2.12-10.607a1 1 0 010 1.414l-.706.707a1 1 0 11-1.414-1.414l.707-.707a1 1 0 011.414 0zM17 11a1 1 0 100-2h-1a1 1 0 100 2h1zm-7 4a1 1 0 011 1v1a1 1 0 11-2 0v-1a1 1 0 011-1zM5.05 6.464A1 1 0 106.465 5.05l-.708-.707a1 1 0 00-1.414 1.414l.707.707zm1.414 8.486l-.707.707a1 1 0 01-1.414-1.414l.707-.707a1 1 0 011.414 1.414zM4 11a1 1 0 100-2H3a1 1 0 000 2h1z","fill-rule":"evenodd","clip-rule":"evenodd"})],-1),Ot=[yt],Pt={key:1,class:"w-5 h-5"},bt=b("svg",{"aria-hidden":"true",id:"theme-toggle-dark-icon",class:"w-5 h-5",fill:"currentColor",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},[b("path",{d:"M17.293 13.293A8 8 0 016.707 2.707a8.001 8.001 0 1010.586 10.586z"})],-1),St=[bt],jt={__name:"DarkMode",setup(e){const t=ft(),r=Me(t);return(n,a)=>(k(),M("button",{onClick:a[0]||(a[0]=o=>L(r)()),class:"w-8 h-8"},[ht,b("span",mt,[L(t)?(k(),M("div",wt,Ot)):(k(),M("div",Pt,St))])]))}};export{Et as L,jt as _,It as u}; diff --git a/public/build/assets/DeleteForm-3a0f2fad.js b/public/build/assets/DeleteForm-3a0f2fad.js deleted file mode 100644 index d3447c2..0000000 --- a/public/build/assets/DeleteForm-3a0f2fad.js +++ /dev/null @@ -1 +0,0 @@ -import{i as v,v as w,o as y,h as x,a as e,w as t,r as k,e as C,b as o,t as g,d,n as $,u as m,k as b}from"./app-4f9e7dfc.js";import{_ as f}from"./DangerButton-c925b039.js";import{a as S,_ as D}from"./SecondaryButton-5f2daf35.js";const B={class:"p-6"},N={class:"text-lg font-medium text-gray-900 dark:text-gray-100"},V=o("p",{class:"mt-1 text-sm text-gray-600 dark:text-gray-400"}," Once is deleted, all of its resources and data will be permanently deleted. ",-1),j={class:"mt-6 flex justify-end"},z={__name:"DeleteForm",props:{data:Object},emits:["success"],setup(a,{emit:u}){const _=a,l=v(!1),s=w({}),p=()=>{l.value=!0},h=r=>{s.delete(route(`${_.data.model}.destroy`,r),{preserveScroll:!0,onSuccess:()=>n(),onError:()=>passwordInput.value.focus(),onFinish:()=>s.reset()})},n=()=>{l.value=!1,u("success",!0)};return(r,c)=>{const i=b("font-awesome-icon");return y(),x("section",null,[e(f,{onClick:C(p,["prevent"])},{default:t(()=>[e(i,{icon:"fa-solid fa-trash",class:"mr-1"}),k(r.$slots,"default")]),_:3},8,["onClick"]),e(D,{show:l.value,onClose:n},{default:t(()=>[o("div",B,[o("h2",N," Are you sure you want to delete this "+g(a.data.model)+"? ",1),V,o("div",j,[e(S,{onClick:n},{default:t(()=>[d(" Cancel ")]),_:1}),e(f,{class:$(["ml-3",{"opacity-25":m(s).processing}]),disabled:m(s).processing,onClick:c[0]||(c[0]=E=>h(a.data.id))},{default:t(()=>[e(i,{icon:"fa-solid fa-trash",class:"mr-1"}),d(" Delete ")]),_:1},8,["class","disabled"])])])]),_:1},8,["show"])])}}};export{z as _}; diff --git a/public/build/assets/DeleteForm-95cf9c02.js b/public/build/assets/DeleteForm-95cf9c02.js deleted file mode 100644 index 4cc8e42..0000000 --- a/public/build/assets/DeleteForm-95cf9c02.js +++ /dev/null @@ -1 +0,0 @@ -import{p as w,u as y,r as v,o as x,g,a as e,w as t,k,f as C,d as o,t as $,e as i,n as b,b as m}from"./app-a07534fc.js";import{_ as f}from"./DangerButton-1432f67e.js";import{a as S,_ as D}from"./SecondaryButton-e6cce7b4.js";const B={class:"p-6"},F={class:"text-lg font-medium text-gray-900 dark:text-gray-100"},N=o("p",{class:"mt-1 text-sm text-gray-600 dark:text-gray-400"}," Once is deleted, all of its resources and data will be permanently deleted. ",-1),V={class:"mt-6 flex justify-end"},z={__name:"DeleteForm",props:{data:Object},emits:["success"],setup(a,{emit:u}){const _=a,l=w(!1),s=y(),p=()=>{l.value=!0},h=r=>{s.delete(route(`admin.${_.data.model}.destroy`,r),{preserveScroll:!0,onSuccess:()=>n(),onError:()=>passwordInput.value.focus(),onFinish:()=>s.reset()})},n=()=>{l.value=!1,u("success",!0)};return(r,c)=>{const d=v("font-awesome-icon");return x(),g("section",null,[e(f,{onClick:C(p,["prevent"])},{default:t(()=>[e(d,{icon:"fa-solid fa-trash",class:"mr-1"}),k(r.$slots,"default")]),_:3},8,["onClick"]),e(D,{show:l.value,onClose:n},{default:t(()=>[o("div",B,[o("h2",F," Are you sure you want to delete this "+$(a.data.model)+"? ",1),N,o("div",V,[e(S,{onClick:n},{default:t(()=>[i(" Cancel ")]),_:1}),e(f,{class:b(["ml-3",{"opacity-25":m(s).processing}]),disabled:m(s).processing,onClick:c[0]||(c[0]=j=>h(a.data.id))},{default:t(()=>[e(d,{icon:"fa-solid fa-trash",class:"mr-1"}),i(" Delete ")]),_:1},8,["class","disabled"])])])]),_:1},8,["show"])])}}};export{z as _}; diff --git a/public/build/assets/DeleteForm-ea1de4c5.js b/public/build/assets/DeleteForm-ea1de4c5.js new file mode 100644 index 0000000..b9661a5 --- /dev/null +++ b/public/build/assets/DeleteForm-ea1de4c5.js @@ -0,0 +1 @@ +import{p as v,v as w,o as y,f as x,a as e,w as t,m as C,e as g,b as o,t as k,d as i,n as $,u as m,r as b}from"./app-4dfa7f3b.js";import{_ as f}from"./DangerButton-9faead77.js";import{a as S,_ as D}from"./SecondaryButton-c5891444.js";const B={class:"p-6"},N={class:"text-lg font-medium text-gray-900 dark:text-gray-100"},V=o("p",{class:"mt-1 text-sm text-gray-600 dark:text-gray-400"}," Once is deleted, all of its resources and data will be permanently deleted. ",-1),j={class:"mt-6 flex justify-end"},z={__name:"DeleteForm",props:{data:Object},emits:["success"],setup(a,{emit:u}){const _=a,l=v(!1),s=w({}),p=()=>{l.value=!0},h=r=>{s.delete(route(`${_.data.model}.destroy`,r),{preserveScroll:!0,onSuccess:()=>n(),onError:()=>passwordInput.value.focus(),onFinish:()=>s.reset()})},n=()=>{l.value=!1,u("success",!0)};return(r,c)=>{const d=b("font-awesome-icon");return y(),x("section",null,[e(f,{onClick:g(p,["prevent"])},{default:t(()=>[e(d,{icon:"fa-solid fa-trash",class:"mr-1"}),C(r.$slots,"default")]),_:3},8,["onClick"]),e(D,{show:l.value,onClose:n},{default:t(()=>[o("div",B,[o("h2",N," Are you sure you want to delete this "+k(a.data.model)+"? ",1),V,o("div",j,[e(S,{onClick:n},{default:t(()=>[i(" Cancel ")]),_:1}),e(f,{class:$(["ml-3",{"opacity-25":m(s).processing}]),disabled:m(s).processing,onClick:c[0]||(c[0]=E=>h(a.data.id))},{default:t(()=>[e(d,{icon:"fa-solid fa-trash",class:"mr-1"}),i(" Delete ")]),_:1},8,["class","disabled"])])])]),_:1},8,["show"])])}}};export{z as _}; diff --git a/public/build/assets/DeleteUserForm-53e5b122.js b/public/build/assets/DeleteUserForm-53e5b122.js deleted file mode 100644 index c5593d9..0000000 --- a/public/build/assets/DeleteUserForm-53e5b122.js +++ /dev/null @@ -1 +0,0 @@ -import{p as u,u as f,o as y,g as w,a as t,w as a,d as s,q as x,e as c,b as o,s as g,n as h}from"./app-a07534fc.js";import{_ as m}from"./DangerButton-1432f67e.js";import{_ as k}from"./InputError-819a2731.js";import{_ as v}from"./InputLabel-0d88b11e.js";import{_ as C,a as b}from"./SecondaryButton-e6cce7b4.js";import{_ as D}from"./TextInput-6d371888.js";const V={class:"space-y-6"},$=s("header",null,[s("h2",{class:"text-lg font-medium text-gray-900 dark:text-gray-100"},"Delete Account"),s("p",{class:"mt-1 text-sm text-gray-600 dark:text-gray-400"}," Once your account is deleted, all of its resources and data will be permanently deleted. Before deleting your account, please download any data or information that you wish to retain. ")],-1),U={class:"p-6"},A=s("h2",{class:"text-lg font-medium text-gray-900 dark:text-gray-100"}," Are you sure you want to delete your account? ",-1),B=s("p",{class:"mt-1 text-sm text-gray-600 dark:text-gray-400"}," Once your account is deleted, all of its resources and data will be permanently deleted. Please enter your password to confirm you would like to permanently delete your account. ",-1),F={class:"mt-6"},K={class:"mt-6 flex justify-end"},q={__name:"DeleteUserForm",setup(N){const r=u(!1),l=u(null),e=f({password:""}),p=()=>{r.value=!0,x(()=>l.value.focus())},d=()=>{e.delete(route("profile.destroy"),{preserveScroll:!0,onSuccess:()=>n(),onError:()=>l.value.focus(),onFinish:()=>e.reset()})},n=()=>{r.value=!1,e.reset()};return(P,i)=>(y(),w("section",V,[$,t(m,{onClick:p},{default:a(()=>[c("Delete Account")]),_:1}),t(C,{show:r.value,onClose:n},{default:a(()=>[s("div",U,[A,B,s("div",F,[t(v,{for:"password",value:"Password",class:"sr-only"}),t(D,{id:"password",ref_key:"passwordInput",ref:l,modelValue:o(e).password,"onUpdate:modelValue":i[0]||(i[0]=_=>o(e).password=_),type:"password",class:"mt-1 block w-3/4",placeholder:"Password",onKeyup:g(d,["enter"])},null,8,["modelValue","onKeyup"]),t(k,{message:o(e).errors.password,class:"mt-2"},null,8,["message"])]),s("div",K,[t(b,{onClick:n},{default:a(()=>[c(" Cancel ")]),_:1}),t(m,{class:h(["ml-3",{"opacity-25":o(e).processing}]),disabled:o(e).processing,onClick:d},{default:a(()=>[c(" Delete Account ")]),_:1},8,["class","disabled"])])])]),_:1},8,["show"])]))}};export{q as default}; diff --git a/public/build/assets/DeleteUserForm-e105ce78.js b/public/build/assets/DeleteUserForm-7e8af7aa.js similarity index 62% rename from public/build/assets/DeleteUserForm-e105ce78.js rename to public/build/assets/DeleteUserForm-7e8af7aa.js index 5471ecf..4d2e4e6 100644 --- a/public/build/assets/DeleteUserForm-e105ce78.js +++ b/public/build/assets/DeleteUserForm-7e8af7aa.js @@ -1 +1 @@ -import{i as u,v as f,h as y,a as t,w as a,b as s,C as w,o as h,d as c,u as o,U as x,n as g}from"./app-4f9e7dfc.js";import{_ as m}from"./DangerButton-c925b039.js";import{_ as k,a as v}from"./InputLabel-5969cc22.js";import{_ as C,a as b}from"./SecondaryButton-5f2daf35.js";import{_ as D}from"./TextInput-5a299594.js";const U={class:"space-y-6"},V=s("header",null,[s("h2",{class:"text-lg font-medium text-gray-900 dark:text-gray-100"}," Delete Account "),s("p",{class:"mt-1 text-sm text-gray-600 dark:text-gray-400"}," Once your account is deleted, all of its resources and data will be permanently deleted. Before deleting your account, please download any data or information that you wish to retain. ")],-1),$={class:"p-6"},A=s("h2",{class:"text-lg font-medium text-gray-900 dark:text-gray-100"}," Are you sure you want to delete your account? ",-1),B=s("p",{class:"mt-1 text-sm text-gray-600 dark:text-gray-400"}," Once your account is deleted, all of its resources and data will be permanently deleted. Please enter your password to confirm you would like to permanently delete your account. ",-1),K={class:"mt-6"},N={class:"mt-6 flex justify-end"},j={__name:"DeleteUserForm",setup(P){const r=u(!1),l=u(null),e=f({password:""}),_=()=>{r.value=!0,w(()=>l.value.focus())},d=()=>{e.delete(route("profile.destroy"),{preserveScroll:!0,onSuccess:()=>n(),onError:()=>l.value.focus(),onFinish:()=>e.reset()})},n=()=>{r.value=!1,e.reset()};return(E,i)=>(h(),y("section",U,[V,t(m,{onClick:_},{default:a(()=>[c("Delete Account")]),_:1}),t(C,{show:r.value,onClose:n},{default:a(()=>[s("div",$,[A,B,s("div",K,[t(k,{for:"password",value:"Password",class:"sr-only"}),t(D,{id:"password",ref_key:"passwordInput",ref:l,modelValue:o(e).password,"onUpdate:modelValue":i[0]||(i[0]=p=>o(e).password=p),type:"password",class:"mt-1 block w-3/4",placeholder:"Password",onKeyup:x(d,["enter"])},null,8,["modelValue","onKeyup"]),t(v,{message:o(e).errors.password,class:"mt-2"},null,8,["message"])]),s("div",N,[t(b,{onClick:n},{default:a(()=>[c(" Cancel ")]),_:1}),t(m,{class:g(["ml-3",{"opacity-25":o(e).processing}]),disabled:o(e).processing,onClick:d},{default:a(()=>[c(" Delete Account ")]),_:1},8,["class","disabled"])])])]),_:1},8,["show"])]))}};export{j as default}; +import{p as u,v as f,f as y,a as t,w as a,b as s,s as w,o as x,d as c,u as o,x as h,n as g}from"./app-4dfa7f3b.js";import{_ as m}from"./DangerButton-9faead77.js";import{_ as k,a as v}from"./InputLabel-fec82426.js";import{_ as C,a as b}from"./SecondaryButton-c5891444.js";import{_ as D}from"./TextInput-fb418c8e.js";const V={class:"space-y-6"},$=s("header",null,[s("h2",{class:"text-lg font-medium text-gray-900 dark:text-gray-100"}," Delete Account "),s("p",{class:"mt-1 text-sm text-gray-600 dark:text-gray-400"}," Once your account is deleted, all of its resources and data will be permanently deleted. Before deleting your account, please download any data or information that you wish to retain. ")],-1),U={class:"p-6"},A=s("h2",{class:"text-lg font-medium text-gray-900 dark:text-gray-100"}," Are you sure you want to delete your account? ",-1),B=s("p",{class:"mt-1 text-sm text-gray-600 dark:text-gray-400"}," Once your account is deleted, all of its resources and data will be permanently deleted. Please enter your password to confirm you would like to permanently delete your account. ",-1),K={class:"mt-6"},N={class:"mt-6 flex justify-end"},j={__name:"DeleteUserForm",setup(P){const r=u(!1),l=u(null),e=f({password:""}),p=()=>{r.value=!0,w(()=>l.value.focus())},d=()=>{e.delete(route("profile.destroy"),{preserveScroll:!0,onSuccess:()=>n(),onError:()=>l.value.focus(),onFinish:()=>e.reset()})},n=()=>{r.value=!1,e.reset()};return(E,i)=>(x(),y("section",V,[$,t(m,{onClick:p},{default:a(()=>[c("Delete Account")]),_:1}),t(C,{show:r.value,onClose:n},{default:a(()=>[s("div",U,[A,B,s("div",K,[t(k,{for:"password",value:"Password",class:"sr-only"}),t(D,{id:"password",ref_key:"passwordInput",ref:l,modelValue:o(e).password,"onUpdate:modelValue":i[0]||(i[0]=_=>o(e).password=_),type:"password",class:"mt-1 block w-3/4",placeholder:"Password",onKeyup:h(d,["enter"])},null,8,["modelValue","onKeyup"]),t(v,{message:o(e).errors.password,class:"mt-2"},null,8,["message"])]),s("div",N,[t(b,{onClick:n},{default:a(()=>[c(" Cancel ")]),_:1}),t(m,{class:g(["ml-3",{"opacity-25":o(e).processing}]),disabled:o(e).processing,onClick:d},{default:a(()=>[c(" Delete Account ")]),_:1},8,["class","disabled"])])])]),_:1},8,["show"])]))}};export{j as default}; diff --git a/public/build/assets/Dropdown-47fab125.js b/public/build/assets/Dropdown-47fab125.js deleted file mode 100644 index 172b48a..0000000 --- a/public/build/assets/Dropdown-47fab125.js +++ /dev/null @@ -1 +0,0 @@ -import{z as p,C as m,i as r,p as w,o as y,g as k,d as a,k as d,j as c,y as u,a as C,w as h,n as v,T as E}from"./app-a07534fc.js";const $={class:"relative"},z={__name:"Dropdown",props:{align:{default:"right"},width:{default:"48"},contentClasses:{default:()=>["py-1","bg-white dark:bg-gray-700"]}},setup(o){const n=o,l=s=>{e.value&&s.key==="Escape"&&(e.value=!1)};p(()=>document.addEventListener("keydown",l)),m(()=>document.removeEventListener("keydown",l));const f=r(()=>({48:"w-48"})[n.width.toString()]),g=r(()=>n.align==="left"?"origin-top-left left-0":n.align==="right"?"origin-top-right right-0":"origin-top"),e=w(!1);return(s,t)=>(y(),k("div",$,[a("div",{onClick:t[0]||(t[0]=i=>e.value=!e.value)},[d(s.$slots,"trigger")]),c(a("div",{class:"fixed inset-0 z-40",onClick:t[1]||(t[1]=i=>e.value=!1)},null,512),[[u,e.value]]),C(E,{"enter-active-class":"transition ease-out duration-200","enter-from-class":"transform opacity-0 scale-95","enter-to-class":"transform opacity-100 scale-100","leave-active-class":"transition ease-in duration-75","leave-from-class":"transform opacity-100 scale-100","leave-to-class":"transform opacity-0 scale-95"},{default:h(()=>[c(a("div",{class:v(["absolute z-50 mt-2 rounded-md shadow-lg",[f.value,g.value]]),style:{display:"none"},onClick:t[2]||(t[2]=i=>e.value=!1)},[a("div",{class:v(["rounded-md ring-1 ring-black ring-opacity-5",o.contentClasses])},[d(s.$slots,"content")],2)],2),[[u,e.value]])]),_:3})]))}};export{z as _}; diff --git a/public/build/assets/Dropdown-7d23bb7e.js b/public/build/assets/Dropdown-7d23bb7e.js deleted file mode 100644 index 74842de..0000000 --- a/public/build/assets/Dropdown-7d23bb7e.js +++ /dev/null @@ -1 +0,0 @@ -import{j as p,l as w,s as i,i as y,o as k,h,b as a,r as d,f as c,g as u,a as C,w as b,n as v,u as f,S as E}from"./app-4f9e7dfc.js";const $={class:"relative"},z={__name:"Dropdown",props:{align:{default:"right"},width:{default:"48"},contentClasses:{default:()=>["py-1","bg-white dark:bg-gray-700"]}},setup(o){const n=o,l=t=>{e.value&&t.key==="Escape"&&(e.value=!1)};p(()=>document.addEventListener("keydown",l)),w(()=>document.removeEventListener("keydown",l));const g=i(()=>({48:"w-48"})[n.width.toString()]),m=i(()=>n.align==="left"?"origin-top-left left-0":n.align==="right"?"origin-top-right right-0":"origin-top"),e=y(!1);return(t,s)=>(k(),h("div",$,[a("div",{onClick:s[0]||(s[0]=r=>e.value=!e.value)},[d(t.$slots,"trigger")]),c(a("div",{class:"fixed inset-0 z-40",onClick:s[1]||(s[1]=r=>e.value=!1)},null,512),[[u,e.value]]),C(E,{"enter-active-class":"transition ease-out duration-200","enter-from-class":"transform opacity-0 scale-95","enter-to-class":"transform opacity-100 scale-100","leave-active-class":"transition ease-in duration-75","leave-from-class":"transform opacity-100 scale-100","leave-to-class":"transform opacity-0 scale-95"},{default:b(()=>[c(a("div",{class:v(["absolute z-50 mt-2 rounded-md shadow-lg",[f(g),f(m)]]),style:{display:"none"},onClick:s[2]||(s[2]=r=>e.value=!1)},[a("div",{class:v(["rounded-md ring-1 ring-black ring-opacity-5",o.contentClasses])},[d(t.$slots,"content")],2)],2),[[u,e.value]])]),_:3})]))}};export{z as _}; diff --git a/public/build/assets/Dropdown-a96f453e.js b/public/build/assets/Dropdown-a96f453e.js new file mode 100644 index 0000000..3f03719 --- /dev/null +++ b/public/build/assets/Dropdown-a96f453e.js @@ -0,0 +1 @@ +import{A as g,C as w,h as r,p as y,o as k,f as C,b as a,m as d,i as c,z as u,a as h,w as b,n as v,u as f,T as E}from"./app-4dfa7f3b.js";const $={class:"relative"},B={__name:"Dropdown",props:{align:{default:"right"},width:{default:"48"},contentClasses:{default:()=>["py-1","bg-white dark:bg-gray-700"]}},setup(o){const n=o,l=s=>{e.value&&s.key==="Escape"&&(e.value=!1)};g(()=>document.addEventListener("keydown",l)),w(()=>document.removeEventListener("keydown",l));const m=r(()=>({48:"w-48"})[n.width.toString()]),p=r(()=>n.align==="left"?"origin-top-left left-0":n.align==="right"?"origin-top-right right-0":"origin-top"),e=y(!1);return(s,t)=>(k(),C("div",$,[a("div",{onClick:t[0]||(t[0]=i=>e.value=!e.value)},[d(s.$slots,"trigger")]),c(a("div",{class:"fixed inset-0 z-40",onClick:t[1]||(t[1]=i=>e.value=!1)},null,512),[[u,e.value]]),h(E,{"enter-active-class":"transition ease-out duration-200","enter-from-class":"transform opacity-0 scale-95","enter-to-class":"transform opacity-100 scale-100","leave-active-class":"transition ease-in duration-75","leave-from-class":"transform opacity-100 scale-100","leave-to-class":"transform opacity-0 scale-95"},{default:b(()=>[c(a("div",{class:v(["absolute z-50 mt-2 rounded-md shadow-lg",[f(m),f(p)]]),style:{display:"none"},onClick:t[2]||(t[2]=i=>e.value=!1)},[a("div",{class:v(["rounded-md ring-1 ring-black ring-opacity-5",o.contentClasses])},[d(s.$slots,"content")],2)],2),[[u,e.value]])]),_:3})]))}};export{B as _}; diff --git a/public/build/assets/Edit-1a863e50.js b/public/build/assets/Edit-1a863e50.js deleted file mode 100644 index 23458d9..0000000 --- a/public/build/assets/Edit-1a863e50.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as u}from"./AuthenticatedLayout-bb1b77c9.js";import f from"./EditProductForm-dc6868ad.js";import{r as p,l as h,o as a,g as _,a as e,b as x,w as s,F as g,H as w,d as t,j as m,c as n,e as l}from"./app-a07534fc.js";import"./DarkMode-9ce27e49.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";import"./Image-ef3ae8a1.js";import"./DangerButton-1432f67e.js";import"./SecondaryButton-e6cce7b4.js";import"./InputError-819a2731.js";import"./InputLabel-0d88b11e.js";import"./PrimaryButton-f1dd44c4.js";import"./Textarea-1fe62e1d.js";import"./TextInput-6d371888.js";import"./default.css_vue_type_style_index_0_src_true_lang-5ba86734.js";const b=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Edit Product ",-1),y={class:"py-12"},v={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},k={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},A={class:"sm:flex sm:items-center"},j=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," Edit Product "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," Edit a new users with categories. ")],-1),B={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-1 sm:space-x-2 space-y-2 sm:space-y-0"},U={__name:"Edit",props:{product:Object,categories:Object,statusArr:Object,featuredArr:Object},setup(r){return(o,E)=>{const i=p("font-awesome-icon"),c=p("Link"),d=h("can");return a(),_(g,null,[e(x(w),{title:"Product"}),e(u,null,{header:s(()=>[b]),default:s(()=>[t("div",y,[t("div",v,[t("div",k,[t("div",A,[j,t("div",B,[m((a(),n(c,{href:o.route("admin.product.show",r.product.id),class:"btn btn-primary"},{default:s(()=>[e(i,{icon:"fa-solid fa-eye",class:"mr-1"}),l(" Back ")]),_:1},8,["href"])),[[d,"product.view"]]),m((a(),n(c,{href:o.route("admin.product.create"),class:"btn btn-primary"},{default:s(()=>[e(i,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),l(" Create New ")]),_:1},8,["href"])),[[d,"product.create"]]),m((a(),n(c,{href:o.route("admin.product.index"),class:"btn btn-primary"},{default:s(()=>[e(i,{icon:"fa-solid fa-eye",class:"mr-1"}),l(" View All ")]),_:1},8,["href"])),[[d,"product.view"]])])]),e(f,{product:r.product,categories:r.categories,statusArr:r.statusArr,featuredArr:r.featuredArr},null,8,["product","categories","statusArr","featuredArr"])])])])]),_:1})],64)}}};export{U as default}; diff --git a/public/build/assets/Edit-33810b33.js b/public/build/assets/Edit-33810b33.js deleted file mode 100644 index 58f904a..0000000 --- a/public/build/assets/Edit-33810b33.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as p}from"./AuthenticatedLayout-bb1b77c9.js";import g from"./EditBlogForm-2803ec71.js";import{r as f,l as u,o,g as b,a as e,b as h,w as a,F as _,H as x,d as t,j as m,c as n,e as d}from"./app-a07534fc.js";import"./DarkMode-9ce27e49.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";import"./Image-ef3ae8a1.js";import"./DangerButton-1432f67e.js";import"./SecondaryButton-e6cce7b4.js";import"./InputError-819a2731.js";import"./InputLabel-0d88b11e.js";import"./PrimaryButton-f1dd44c4.js";import"./Textarea-1fe62e1d.js";import"./TextInput-6d371888.js";import"./default.css_vue_type_style_index_0_src_true_lang-5ba86734.js";const w=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Edit Blog ",-1),y={class:"py-12"},v={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},k={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},A={class:"sm:flex sm:items-center"},B=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," Edit Blog "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," Edit a new users with blog. ")],-1),j={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-1 sm:space-x-2 space-y-2 sm:space-y-0"},U={__name:"Edit",props:{blog:Object,statusArr:Object,featuredArr:Object,categories:Object},setup(s){return(r,E)=>{const i=f("font-awesome-icon"),c=f("Link"),l=u("can");return o(),b(_,null,[e(h(x),{title:"Blog"}),e(p,null,{header:a(()=>[w]),default:a(()=>[t("div",y,[t("div",v,[t("div",k,[t("div",A,[B,t("div",j,[m((o(),n(c,{href:r.route("admin.blog.show",s.blog.id),class:"btn btn-primary"},{default:a(()=>[e(i,{icon:"fa-solid fa-eye",class:"mr-1"}),d(" Back ")]),_:1},8,["href"])),[[l,"blog.view"]]),m((o(),n(c,{href:r.route("admin.blog.create"),class:"btn btn-primary"},{default:a(()=>[e(i,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),d(" Create New ")]),_:1},8,["href"])),[[l,"blog.create"]]),m((o(),n(c,{href:r.route("admin.blog.index"),class:"btn btn-primary"},{default:a(()=>[e(i,{icon:"fa-solid fa-eye",class:"mr-1"}),d(" View All ")]),_:1},8,["href"])),[[l,"blog.view"]])])]),e(g,{blog:s.blog,statusArr:s.statusArr,featuredArr:s.featuredArr,categories:s.categories},null,8,["blog","statusArr","featuredArr","categories"])])])])]),_:1})],64)}}};export{U as default}; diff --git a/public/build/assets/Edit-00a2220e.js b/public/build/assets/Edit-6f1431ac.js similarity index 67% rename from public/build/assets/Edit-00a2220e.js rename to public/build/assets/Edit-6f1431ac.js index 0a0f8a8..283063e 100644 --- a/public/build/assets/Edit-00a2220e.js +++ b/public/build/assets/Edit-6f1431ac.js @@ -1 +1 @@ -import{_ as c}from"./AuthenticatedLayout-bb6d5f84.js";import n from"./EditUserForm-5c6c4bab.js";import{h as d,a as e,u as p,w as s,F as u,o as f,X as h,b as t,d as m,k as l}from"./app-4f9e7dfc.js";import"./Toast-3242a059.js";import"./toast-c1edb8fd.js";import"./ApplicationLogo-1c8f1468.js";import"./defaultFile-106f3fb6.js";import"./useCountries-7f78595f.js";import"./Dropdown-7d23bb7e.js";import"./Image-b36d5d14.js";import"./DangerButton-c925b039.js";import"./SecondaryButton-5f2daf35.js";import"./InputLabel-5969cc22.js";import"./PrimaryButton-89a514d8.js";import"./TextInput-5a299594.js";import"./default.css_vue_type_style_index_0_src_true_lang-51e34c56.js";const _=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Edit User ",-1),x={class:"py-12"},w={class:"max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6"},b={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},y={class:"sm:flex sm:items-center"},g=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," Edit User "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," Edit a new users with roles. ")],-1),k={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-1 sm:space-x-2 space-y-2 sm:space-y-0"},D={__name:"Edit",props:{user:Object,roleArr:Object,statusArr:Object},setup(r){return(a,A)=>{const o=l("font-awesome-icon"),i=l("Link");return f(),d(u,null,[e(p(h),{title:"User"}),e(c,null,{header:s(()=>[_]),default:s(()=>[t("div",x,[t("div",w,[t("div",b,[t("div",y,[g,t("div",k,[e(i,{href:a.route("user.show",r.user.id),class:"btn btn-primary"},{default:s(()=>[e(o,{icon:"fa-solid fa-eye",class:"mr-1"}),m(" Back ")]),_:1},8,["href"]),e(i,{href:a.route("user.create"),class:"btn btn-primary"},{default:s(()=>[e(o,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),m(" Create New ")]),_:1},8,["href"]),e(i,{href:a.route("user.index"),class:"btn btn-primary"},{default:s(()=>[e(o,{icon:"fa-solid fa-eye",class:"mr-1"}),m(" View All ")]),_:1},8,["href"])])]),e(n,{user:r.user,roleArr:r.roleArr,statusArr:r.statusArr},null,8,["user","roleArr","statusArr"])])])])]),_:1})],64)}}};export{D as default}; +import{_ as c}from"./AuthenticatedLayout-6151d358.js";import n from"./EditUserForm-940e8ccc.js";import{f as d,a as e,u as p,w as s,F as u,o as f,X as h,b as t,d as m,r as l}from"./app-4dfa7f3b.js";import"./Toast-645f4c7b.js";import"./toast-ded66f04.js";import"./ApplicationLogo-77a8e36b.js";import"./defaultFile-2b6c57d3.js";import"./useCountries-759a7ea1.js";import"./Dropdown-a96f453e.js";import"./Image-ad5bc90a.js";import"./DangerButton-9faead77.js";import"./SecondaryButton-c5891444.js";import"./InputLabel-fec82426.js";import"./PrimaryButton-2b535c8b.js";import"./TextInput-fb418c8e.js";import"./default.css_vue_type_style_index_0_src_true_lang-5d8f90ba.js";const _=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Edit User ",-1),x={class:"py-12"},w={class:"max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6"},b={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},y={class:"sm:flex sm:items-center"},g=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," Edit User "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," Edit a new users with roles. ")],-1),k={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-1 sm:space-x-2 space-y-2 sm:space-y-0"},D={__name:"Edit",props:{user:Object,roleArr:Object,statusArr:Object},setup(r){return(a,A)=>{const o=l("font-awesome-icon"),i=l("Link");return f(),d(u,null,[e(p(h),{title:"User"}),e(c,null,{header:s(()=>[_]),default:s(()=>[t("div",x,[t("div",w,[t("div",b,[t("div",y,[g,t("div",k,[e(i,{href:a.route("user.show",r.user.id),class:"btn btn-primary"},{default:s(()=>[e(o,{icon:"fa-solid fa-eye",class:"mr-1"}),m(" Back ")]),_:1},8,["href"]),e(i,{href:a.route("user.create"),class:"btn btn-primary"},{default:s(()=>[e(o,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),m(" Create New ")]),_:1},8,["href"]),e(i,{href:a.route("user.index"),class:"btn btn-primary"},{default:s(()=>[e(o,{icon:"fa-solid fa-eye",class:"mr-1"}),m(" View All ")]),_:1},8,["href"])])]),e(n,{user:r.user,roleArr:r.roleArr,statusArr:r.statusArr},null,8,["user","roleArr","statusArr"])])])])]),_:1})],64)}}};export{D as default}; diff --git a/public/build/assets/Edit-70457d27.js b/public/build/assets/Edit-70457d27.js deleted file mode 100644 index 9587b06..0000000 --- a/public/build/assets/Edit-70457d27.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as u}from"./AuthenticatedLayout-bb1b77c9.js";import f from"./EditUserForm-c8abdbad.js";import{r as p,l as _,o as a,g as h,a as t,b as x,w as s,F as w,H as b,d as e,j as l,c as n,e as d}from"./app-a07534fc.js";import"./DarkMode-9ce27e49.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";import"./Image-ef3ae8a1.js";import"./DangerButton-1432f67e.js";import"./SecondaryButton-e6cce7b4.js";import"./InputError-819a2731.js";import"./InputLabel-0d88b11e.js";import"./PrimaryButton-f1dd44c4.js";import"./TextInput-6d371888.js";import"./default.css_vue_type_style_index_0_src_true_lang-5ba86734.js";const y=e("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Edit User ",-1),g={class:"py-12"},v={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},k={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},A={class:"sm:flex sm:items-center"},B=e("div",{class:"sm:flex-auto"},[e("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," Edit User "),e("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," Edit a new users with roles. ")],-1),E={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-1 sm:space-x-2 space-y-2 sm:space-y-0"},R={__name:"Edit",props:{user:Object,roleArr:Object,statusArr:Object},setup(r){return(o,j)=>{const i=p("font-awesome-icon"),c=p("Link"),m=_("can");return a(),h(w,null,[t(x(b),{title:"User"}),t(u,null,{header:s(()=>[y]),default:s(()=>[e("div",g,[e("div",v,[e("div",k,[e("div",A,[B,e("div",E,[l((a(),n(c,{href:o.route("admin.user.show",r.user.id),class:"btn btn-primary"},{default:s(()=>[t(i,{icon:"fa-solid fa-eye",class:"mr-1"}),d(" Back ")]),_:1},8,["href"])),[[m,"user.view"]]),l((a(),n(c,{href:o.route("admin.user.create"),class:"btn btn-primary"},{default:s(()=>[t(i,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),d(" Create New ")]),_:1},8,["href"])),[[m,"user.create"]]),l((a(),n(c,{href:o.route("admin.user.index"),class:"btn btn-primary"},{default:s(()=>[t(i,{icon:"fa-solid fa-eye",class:"mr-1"}),d(" View All ")]),_:1},8,["href"])),[[m,"user.view"]])])]),t(f,{user:r.user,roleArr:r.roleArr,statusArr:r.statusArr},null,8,["user","roleArr","statusArr"])])])])]),_:1})],64)}}};export{R as default}; diff --git a/public/build/assets/Edit-b030da15.js b/public/build/assets/Edit-7d4087ac.js similarity index 51% rename from public/build/assets/Edit-b030da15.js rename to public/build/assets/Edit-7d4087ac.js index d15ede2..b21545a 100644 --- a/public/build/assets/Edit-b030da15.js +++ b/public/build/assets/Edit-7d4087ac.js @@ -1 +1 @@ -import{_ as o}from"./AuthenticatedLayout-bb6d5f84.js";import l from"./Address-ac1bdf18.js";import d from"./DeleteUserForm-e105ce78.js";import n from"./ProfilePicture-964db75d.js";import c from"./UpdatePasswordForm-f37a16db.js";import u from"./UpdateProfileInformationForm-a1bf3652.js";import{h as a,a as s,u as p,w as r,F as g,o as m,X as f,b as t,q as h}from"./app-4f9e7dfc.js";import"./Toast-3242a059.js";import"./toast-c1edb8fd.js";import"./ApplicationLogo-1c8f1468.js";import"./defaultFile-106f3fb6.js";import"./useCountries-7f78595f.js";import"./Dropdown-7d23bb7e.js";import"./DeleteForm-3a0f2fad.js";import"./DangerButton-c925b039.js";import"./SecondaryButton-5f2daf35.js";import"./EditForm-f283bead.js";import"./InputLabel-5969cc22.js";import"./Textarea-01085d86.js";import"./TextInput-5a299594.js";import"./default.css_vue_type_style_index_0_src_true_lang-51e34c56.js";import"./Form-c1471be5.js";import"./PrimaryButton-89a514d8.js";const _=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Profile ",-1),w={class:"py-12"},x={class:"max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6"},y={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg"},b={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg"},v={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg"},k={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg"},$={key:0,class:"p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg"},T={__name:"Edit",props:{mustVerifyEmail:Boolean,status:String,genderArr:Object,addresses:Object},setup(e){return(i,V)=>(m(),a(g,null,[s(p(f),{title:"Profile"}),s(o,null,{header:r(()=>[_]),default:r(()=>[t("div",w,[t("div",x,[t("div",y,[s(n,{"must-verify-email":e.mustVerifyEmail,status:e.status,class:"max-w-full"},null,8,["must-verify-email","status"])]),t("div",b,[s(u,{"must-verify-email":e.mustVerifyEmail,status:e.status,genderArr:e.genderArr,class:"max-w-xl"},null,8,["must-verify-email","status","genderArr"])]),t("div",v,[s(c,{class:"max-w-xl"})]),t("div",k,[s(l,{class:"max-w-full min-w-full",addresses:e.addresses},null,8,["addresses"])]),i.$page.props.auth.user.isDeletable?(m(),a("div",$,[s(d,{class:"max-w-xl"})])):h("",!0)])])]),_:1})],64))}};export{T as default}; +import{_ as o}from"./AuthenticatedLayout-6151d358.js";import l from"./Address-b68f5097.js";import d from"./DeleteUserForm-7e8af7aa.js";import n from"./ProfilePicture-edc5c3e1.js";import c from"./UpdatePasswordForm-7abd1f0b.js";import u from"./UpdateProfileInformationForm-92277dfa.js";import{f as a,a as s,u as p,w as r,F as g,o as m,X as f,b as t,g as _}from"./app-4dfa7f3b.js";import"./Toast-645f4c7b.js";import"./toast-ded66f04.js";import"./ApplicationLogo-77a8e36b.js";import"./defaultFile-2b6c57d3.js";import"./useCountries-759a7ea1.js";import"./Dropdown-a96f453e.js";import"./DeleteForm-ea1de4c5.js";import"./DangerButton-9faead77.js";import"./SecondaryButton-c5891444.js";import"./EditForm-8ba96d26.js";import"./InputLabel-fec82426.js";import"./Textarea-f6994d96.js";import"./TextInput-fb418c8e.js";import"./default.css_vue_type_style_index_0_src_true_lang-5d8f90ba.js";import"./Form-db1e14f4.js";import"./PrimaryButton-2b535c8b.js";const h=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Profile ",-1),w={class:"py-12"},x={class:"max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6"},y={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg"},b={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg"},v={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg"},k={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg"},$={key:0,class:"p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg"},T={__name:"Edit",props:{mustVerifyEmail:Boolean,status:String,genderArr:Object,addresses:Object},setup(e){return(i,V)=>(m(),a(g,null,[s(p(f),{title:"Profile"}),s(o,null,{header:r(()=>[h]),default:r(()=>[t("div",w,[t("div",x,[t("div",y,[s(n,{"must-verify-email":e.mustVerifyEmail,status:e.status,class:"max-w-full"},null,8,["must-verify-email","status"])]),t("div",b,[s(u,{"must-verify-email":e.mustVerifyEmail,status:e.status,genderArr:e.genderArr,class:"max-w-xl"},null,8,["must-verify-email","status","genderArr"])]),t("div",v,[s(c,{class:"max-w-xl"})]),t("div",k,[s(l,{class:"max-w-full min-w-full",addresses:e.addresses},null,8,["addresses"])]),i.$page.props.auth.user.isDeletable?(m(),a("div",$,[s(d,{class:"max-w-xl"})])):_("",!0)])])]),_:1})],64))}};export{T as default}; diff --git a/public/build/assets/Edit-8348abc7.js b/public/build/assets/Edit-8348abc7.js deleted file mode 100644 index aa727d2..0000000 --- a/public/build/assets/Edit-8348abc7.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as f}from"./AuthenticatedLayout-bb1b77c9.js";import u from"./EditRoleForm-d2dd272f.js";import{r as d,l as _,o as r,g as h,a as s,b as g,w as o,F as x,H as w,d as e,j as m,c,e as p}from"./app-a07534fc.js";import"./DarkMode-9ce27e49.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";import"./InputError-819a2731.js";import"./InputLabel-0d88b11e.js";import"./PrimaryButton-f1dd44c4.js";import"./TextInput-6d371888.js";const b=e("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Role Edit ",-1),y={class:"py-12"},v={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},k={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},j={class:"sm:flex sm:items-center"},A=e("div",{class:"sm:flex-auto"},[e("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," Create Role "),e("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," Create a new roles with permission. ")],-1),C={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-1 sm:space-x-2 space-y-2 sm:space-y-0"},I={__name:"Edit",props:{permissionWithGroup:Object,permissions:Object,all_group:Object,total_permissions:String,total_group:String,role:Object,permissionArr:Object},setup(t){return(i,O)=>{const a=d("font-awesome-icon"),l=d("Link"),n=_("can");return r(),h(x,null,[s(g(w),{title:"Role"}),s(f,null,{header:o(()=>[b]),default:o(()=>[e("div",y,[e("div",v,[e("div",k,[e("div",j,[A,e("div",C,[m((r(),c(l,{href:i.route("admin.role.show",t.role.id),class:"btn btn-primary"},{default:o(()=>[s(a,{icon:"fa-solid fa-eye",class:"mr-1"}),p(" back ")]),_:1},8,["href"])),[[n,"role.view"]]),m((r(),c(l,{href:i.route("admin.role.create"),class:"btn btn-primary"},{default:o(()=>[s(a,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),p(" Create New ")]),_:1},8,["href"])),[[n,"role.create"]]),m((r(),c(l,{href:i.route("admin.role.index"),class:"btn btn-primary"},{default:o(()=>[s(a,{icon:"fa-solid fa-eye",class:"mr-1"}),p(" View All ")]),_:1},8,["href"])),[[n,"role.view"]])])]),s(u,{permissionWithGroup:t.permissionWithGroup,permissions:t.permissions,all_group:t.all_group,total_permissions:t.total_permissions,total_group:t.total_group,role:t.role,permissionArr:t.permissionArr},null,8,["permissionWithGroup","permissions","all_group","total_permissions","total_group","role","permissionArr"])])])])]),_:1})],64)}}};export{I as default}; diff --git a/public/build/assets/Edit-9b622481.js b/public/build/assets/Edit-9b622481.js deleted file mode 100644 index df08f31..0000000 --- a/public/build/assets/Edit-9b622481.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as p}from"./AuthenticatedLayout-bb1b77c9.js";import g from"./EditCategoryForm-d429dba0.js";import{r as f,l as u,o as s,g as y,a as e,b as h,w as r,F as _,H as x,d as t,j as n,c as l,e as d}from"./app-a07534fc.js";import"./DarkMode-9ce27e49.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";import"./Image-ef3ae8a1.js";import"./DangerButton-1432f67e.js";import"./SecondaryButton-e6cce7b4.js";import"./InputError-819a2731.js";import"./InputLabel-0d88b11e.js";import"./PrimaryButton-f1dd44c4.js";import"./Textarea-1fe62e1d.js";import"./TextInput-6d371888.js";import"./default.css_vue_type_style_index_0_src_true_lang-5ba86734.js";const w=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Edit Category ",-1),b={class:"py-12"},v={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},k={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},A={class:"sm:flex sm:items-center"},C=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," Edit Category "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," Edit a new users with category. ")],-1),j={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-1 sm:space-x-2 space-y-2 sm:space-y-0"},U={__name:"Edit",props:{category:Object,statusArr:Object,featuredArr:Object,categories:Object},setup(a){return(o,B)=>{const i=f("font-awesome-icon"),c=f("Link"),m=u("can");return s(),y(_,null,[e(h(x),{title:"Category"}),e(p,null,{header:r(()=>[w]),default:r(()=>[t("div",b,[t("div",v,[t("div",k,[t("div",A,[C,t("div",j,[n((s(),l(c,{href:o.route("admin.category.show",a.category.id),class:"btn btn-primary"},{default:r(()=>[e(i,{icon:"fa-solid fa-eye",class:"mr-1"}),d(" Back ")]),_:1},8,["href"])),[[m,"category.view"]]),n((s(),l(c,{href:o.route("admin.category.create"),class:"btn btn-primary"},{default:r(()=>[e(i,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),d(" Create New ")]),_:1},8,["href"])),[[m,"category.create"]]),n((s(),l(c,{href:o.route("admin.category.index"),class:"btn btn-primary"},{default:r(()=>[e(i,{icon:"fa-solid fa-eye",class:"mr-1"}),d(" View All ")]),_:1},8,["href"])),[[m,"category.view"]])])]),e(g,{category:a.category,statusArr:a.statusArr,featuredArr:a.featuredArr,categories:a.categories},null,8,["category","statusArr","featuredArr","categories"])])])])]),_:1})],64)}}};export{U as default}; diff --git a/public/build/assets/Edit-bb5f8871.js b/public/build/assets/Edit-bb5f8871.js deleted file mode 100644 index 90ba535..0000000 --- a/public/build/assets/Edit-bb5f8871.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as l}from"./AuthenticatedLayout-bb1b77c9.js";import n from"./EditSpecialFeatureForm-d52451ae.js";import{r as m,o as p,g as d,a as e,b as u,w as a,F as f,H as _,d as t,e as c}from"./app-a07534fc.js";import"./DarkMode-9ce27e49.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";import"./Image-ef3ae8a1.js";import"./DangerButton-1432f67e.js";import"./SecondaryButton-e6cce7b4.js";import"./InputError-819a2731.js";import"./InputLabel-0d88b11e.js";import"./PrimaryButton-f1dd44c4.js";import"./Textarea-1fe62e1d.js";import"./TextInput-6d371888.js";import"./default.css_vue_type_style_index_0_src_true_lang-5ba86734.js";const h=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Edit Special Feature ",-1),x={class:"py-12"},w={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},y={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},b={class:"sm:flex sm:items-center"},g=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," Edit Special Feature "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," Edit a new users with special feature. ")],-1),k={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-1 sm:space-x-2 space-y-2 sm:space-y-0"},M={__name:"Edit",props:{specialFeature:Object,statusArr:Object},setup(s){return(r,F)=>{const i=m("font-awesome-icon"),o=m("Link");return p(),d(f,null,[e(u(_),{title:"Special Feature"}),e(l,null,{header:a(()=>[h]),default:a(()=>[t("div",x,[t("div",w,[t("div",y,[t("div",b,[g,t("div",k,[e(o,{href:r.route("admin.special-feature.show",s.specialFeature.id),class:"btn btn-primary"},{default:a(()=>[e(i,{icon:"fa-solid fa-eye",class:"mr-1"}),c(" Back ")]),_:1},8,["href"]),e(o,{href:r.route("admin.special-feature.create"),class:"btn btn-primary"},{default:a(()=>[e(i,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),c(" Create New ")]),_:1},8,["href"]),e(o,{href:r.route("admin.special-feature.index"),class:"btn btn-primary"},{default:a(()=>[e(i,{icon:"fa-solid fa-eye",class:"mr-1"}),c(" View All ")]),_:1},8,["href"])])]),e(n,{specialFeature:s.specialFeature,statusArr:s.statusArr},null,8,["specialFeature","statusArr"])])])])]),_:1})],64)}}};export{M as default}; diff --git a/public/build/assets/Edit-ff0e627d.js b/public/build/assets/Edit-c621b3c5.js similarity index 75% rename from public/build/assets/Edit-ff0e627d.js rename to public/build/assets/Edit-c621b3c5.js index c45b6df..7607c4c 100644 --- a/public/build/assets/Edit-ff0e627d.js +++ b/public/build/assets/Edit-c621b3c5.js @@ -1 +1 @@ -import{_ as m}from"./AuthenticatedLayout-bb6d5f84.js";import c from"./EditRoleForm-8ba9a8ef.js";import{h as p,a as e,u as d,w as o,F as u,o as f,X as h,b as t,d as l,k as n}from"./app-4f9e7dfc.js";import"./Toast-3242a059.js";import"./toast-c1edb8fd.js";import"./ApplicationLogo-1c8f1468.js";import"./defaultFile-106f3fb6.js";import"./useCountries-7f78595f.js";import"./Dropdown-7d23bb7e.js";import"./InputLabel-5969cc22.js";import"./PrimaryButton-89a514d8.js";import"./TextInput-5a299594.js";const _=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Role Edit ",-1),x={class:"py-12"},g={class:"max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6"},b={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},w={class:"sm:flex sm:items-center"},y=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," Create Role "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," Create a new roles with permission. ")],-1),k={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-1 sm:space-x-2 space-y-2 sm:space-y-0"},L={__name:"Edit",props:{permissionWithGroup:Object,permissions:Object,all_group:Object,total_permissions:String,total_group:String,role:Object,permissionArr:Object},setup(s){return(r,v)=>{const i=n("font-awesome-icon"),a=n("Link");return f(),p(u,null,[e(d(h),{title:"Role"}),e(m,null,{header:o(()=>[_]),default:o(()=>[t("div",x,[t("div",g,[t("div",b,[t("div",w,[y,t("div",k,[e(a,{href:r.route("role.show",s.role.id),class:"btn btn-primary"},{default:o(()=>[e(i,{icon:"fa-solid fa-eye",class:"mr-1"}),l(" back ")]),_:1},8,["href"]),e(a,{href:r.route("role.create"),class:"btn btn-primary"},{default:o(()=>[e(i,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),l(" Create New ")]),_:1},8,["href"]),e(a,{href:r.route("role.index"),class:"btn btn-primary"},{default:o(()=>[e(i,{icon:"fa-solid fa-eye",class:"mr-1"}),l(" View All ")]),_:1},8,["href"])])]),e(c,{permissionWithGroup:s.permissionWithGroup,permissions:s.permissions,all_group:s.all_group,total_permissions:s.total_permissions,total_group:s.total_group,role:s.role,permissionArr:s.permissionArr},null,8,["permissionWithGroup","permissions","all_group","total_permissions","total_group","role","permissionArr"])])])])]),_:1})],64)}}};export{L as default}; +import{_ as m}from"./AuthenticatedLayout-6151d358.js";import c from"./EditRoleForm-72875eaa.js";import{f as p,a as e,u as d,w as o,F as f,o as u,X as h,b as t,d as l,r as n}from"./app-4dfa7f3b.js";import"./Toast-645f4c7b.js";import"./toast-ded66f04.js";import"./ApplicationLogo-77a8e36b.js";import"./defaultFile-2b6c57d3.js";import"./useCountries-759a7ea1.js";import"./Dropdown-a96f453e.js";import"./InputLabel-fec82426.js";import"./PrimaryButton-2b535c8b.js";import"./TextInput-fb418c8e.js";const _=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Role Edit ",-1),x={class:"py-12"},g={class:"max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6"},b={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},w={class:"sm:flex sm:items-center"},y=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," Create Role "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," Create a new roles with permission. ")],-1),k={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-1 sm:space-x-2 space-y-2 sm:space-y-0"},L={__name:"Edit",props:{permissionWithGroup:Object,permissions:Object,all_group:Object,total_permissions:String,total_group:String,role:Object,permissionArr:Object},setup(s){return(r,v)=>{const i=n("font-awesome-icon"),a=n("Link");return u(),p(f,null,[e(d(h),{title:"Role"}),e(m,null,{header:o(()=>[_]),default:o(()=>[t("div",x,[t("div",g,[t("div",b,[t("div",w,[y,t("div",k,[e(a,{href:r.route("role.show",s.role.id),class:"btn btn-primary"},{default:o(()=>[e(i,{icon:"fa-solid fa-eye",class:"mr-1"}),l(" back ")]),_:1},8,["href"]),e(a,{href:r.route("role.create"),class:"btn btn-primary"},{default:o(()=>[e(i,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),l(" Create New ")]),_:1},8,["href"]),e(a,{href:r.route("role.index"),class:"btn btn-primary"},{default:o(()=>[e(i,{icon:"fa-solid fa-eye",class:"mr-1"}),l(" View All ")]),_:1},8,["href"])])]),e(c,{permissionWithGroup:s.permissionWithGroup,permissions:s.permissions,all_group:s.all_group,total_permissions:s.total_permissions,total_group:s.total_group,role:s.role,permissionArr:s.permissionArr},null,8,["permissionWithGroup","permissions","all_group","total_permissions","total_group","role","permissionArr"])])])])]),_:1})],64)}}};export{L as default}; diff --git a/public/build/assets/Edit-f266ceda.js b/public/build/assets/Edit-f266ceda.js deleted file mode 100644 index 3ac89ca..0000000 --- a/public/build/assets/Edit-f266ceda.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as o}from"./AuthenticatedLayout-bb1b77c9.js";import l from"./Address-69546a1b.js";import d from"./DeleteUserForm-53e5b122.js";import n from"./ProfilePicture-e34cb9e1.js";import c from"./UpdatePasswordForm-a62e0f9c.js";import p from"./UpdateProfileInformationForm-956c29bd.js";import{o as e,g as r,a as s,b as u,w as m,F as g,H as f,d as t,h}from"./app-a07534fc.js";import"./DarkMode-9ce27e49.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";import"./DeleteForm-95cf9c02.js";import"./DangerButton-1432f67e.js";import"./SecondaryButton-e6cce7b4.js";import"./EditForm-f3b2b2c3.js";import"./InputError-819a2731.js";import"./InputLabel-0d88b11e.js";import"./Textarea-1fe62e1d.js";import"./TextInput-6d371888.js";import"./useCountries-62ba1c05.js";import"./default.css_vue_type_style_index_0_src_true_lang-5ba86734.js";import"./Form-055ef52e.js";import"./PrimaryButton-f1dd44c4.js";const _=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Profile ",-1),w={class:"py-12"},x={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},y={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg"},b={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg"},v={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg"},k={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg"},$={key:0,class:"p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg"},ss={__name:"Edit",props:{mustVerifyEmail:Boolean,status:String,genderArr:Object,addresses:Object},setup(a){return(i,V)=>(e(),r(g,null,[s(u(f),{title:"Profile"}),s(o,null,{header:m(()=>[_]),default:m(()=>[t("div",w,[t("div",x,[t("div",y,[s(n,{"must-verify-email":a.mustVerifyEmail,status:a.status,class:"max-w-full"},null,8,["must-verify-email","status"])]),t("div",b,[s(p,{"must-verify-email":a.mustVerifyEmail,status:a.status,genderArr:a.genderArr,class:"max-w-xl"},null,8,["must-verify-email","status","genderArr"])]),t("div",v,[s(c,{class:"max-w-xl"})]),t("div",k,[s(l,{class:"max-w-full min-w-full",addresses:a.addresses},null,8,["addresses"])]),i.$page.props.auth.user.isDeletable?(e(),r("div",$,[s(d,{class:"max-w-xl"})])):h("",!0)])])]),_:1})],64))}};export{ss as default}; diff --git a/public/build/assets/EditBlogForm-2803ec71.js b/public/build/assets/EditBlogForm-2803ec71.js deleted file mode 100644 index 4a14972..0000000 --- a/public/build/assets/EditBlogForm-2803ec71.js +++ /dev/null @@ -1 +0,0 @@ -import{p as i,u as h,o as _,g as y,d as l,a as t,b as s,w as x,T as V,f as w,e as I,h as B}from"./app-a07534fc.js";import{_ as S}from"./Image-ef3ae8a1.js";import{_ as n}from"./InputError-819a2731.js";import{_ as d}from"./InputLabel-0d88b11e.js";import{_ as U}from"./PrimaryButton-f1dd44c4.js";import{_ as j}from"./Textarea-1fe62e1d.js";import{_ as T}from"./TextInput-6d371888.js";import{d as $}from"./defaultFile-233481e1.js";import{s as m}from"./default.css_vue_type_style_index_0_src_true_lang-5ba86734.js";import"./DangerButton-1432f67e.js";import"./SecondaryButton-e6cce7b4.js";import"./toast-49ee1775.js";const A={class:"dark:text-white"},F=["onSubmit"],N={class:"mt-10 sm:mt-0"},O={class:"overflow-hidden shadow sm:rounded-md"},P={class:"bg-white dark:bg-gray-800 px-4 py-5 sm:p-6"},C={class:"grid grid-cols-6 gap-6"},E={class:"col-span-6 sm:col-span-3"},D={class:"col-span-6 sm:col-span-3"},L={class:"col-span-6 sm:col-span-3 lg:col-span-3 mb-20"},z={class:"col-span-6 sm:col-span-3 lg:col-span-3"},M={class:"col-span-6 sm:col-span-3 lg:col-span-3"},q={class:"col-span-6 sm:col-span-3 flex items-center justify-center"},G={class:"flex items-center justify-end pr-5 py-5"},H={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},ae={__name:"EditBlogForm",props:{blog:Object,statusArr:Object,featuredArr:Object,categories:Object},setup(c){const r=c,u=i(null),p=i(null),f=i(null),g=i(null),k=i(null),b=i(null),e=h({title:r.blog.title,description:r.blog.description,oldImage:r.blog.image,imagePreview:r.blog.image||$.placeholder,status:r.blog.status,is_featured:r.blog.is_featured,categories:r.blog.categoryArr}),v=()=>{e.post(route("admin.blog.update",r.blog.id),{preserveScroll:!0,onSuccess:()=>e.reset(),onError:()=>{e.errors.title&&u.value.focus(),e.errors.description&&p.value.focus(),e.errors.status&&g.value.focus(),e.errors.is_featured&&(e.reset("is_featured"),k.value.focus()),e.errors.categories&&b.value.focus(),e.errors.image&&f.value.focus()}})};return(J,o)=>(_(),y("section",A,[l("form",{onSubmit:w(v,["prevent"]),class:"mt-6 space-y-6 p-3"},[l("div",N,[l("div",O,[l("div",P,[l("div",C,[l("div",E,[t(d,{for:"title",value:"Title :",class:"block text-sm font-medium text-gray-700"}),t(T,{id:"title",ref_key:"titleInput",ref:u,modelValue:s(e).title,"onUpdate:modelValue":o[0]||(o[0]=a=>s(e).title=a),type:"text",class:"mt-1 block w-full",autocomplete:"title"},null,8,["modelValue"]),t(n,{message:s(e).errors.title,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),l("div",D,[t(d,{for:"description",value:"Description :",class:"block text-sm font-medium text-gray-700"}),t(j,{id:"description",ref_key:"descriptionInput",ref:p,modelValue:s(e).description,"onUpdate:modelValue":o[1]||(o[1]=a=>s(e).description=a),type:"text",class:"mt-1 block w-full",autocomplete:"description"},null,8,["modelValue"]),t(n,{message:s(e).errors.description,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),l("div",L,[t(d,{for:"categories",value:"Category :",class:"block text-sm font-medium text-gray-700 mb-1"}),t(s(m),{modelValue:s(e).categories,"onUpdate:modelValue":o[2]||(o[2]=a=>s(e).categories=a),options:r.categories,selected:s(e).categories,placeholder:"Pick some...",ref_key:"categoryInput",ref:b,class:"block w-full multiselect-green form-controll dark:text-gray-900",mode:"tags",searchable:!0,"close-on-select":!1},null,8,["modelValue","options","selected"]),t(n,{message:s(e).errors.categories,class:"mt-2 col-start-2 col-span-4 absolute z-5"},null,8,["message"])]),l("div",z,[t(d,{for:"status",value:"Status :",class:"block text-sm font-medium text-gray-700 mb-1"}),t(s(m),{modelValue:s(e).status,"onUpdate:modelValue":o[3]||(o[3]=a=>s(e).status=a),options:c.statusArr,selected:s(e).status,ref_key:"statusInput",ref:g,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-800",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"}},null,8,["modelValue","options","selected"]),t(n,{message:s(e).errors.status,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),l("div",M,[t(d,{for:"status",value:"Is Featured ?",class:"block text-sm font-medium text-gray-700 mb-1"}),t(s(m),{modelValue:s(e).is_featured,"onUpdate:modelValue":o[4]||(o[4]=a=>s(e).is_featured=a),options:c.featuredArr,selected:s(e).is_featured,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-800",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"}},null,8,["modelValue","options","selected"]),t(n,{message:s(e).errors.is_featured,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),l("div",q,[t(S,{id:c.blog.id,alt:c.blog.title,field:"image",route:"blog.image",isDeleteable:!0,modelValue:s(e).oldImage,"onUpdate:modelValue":o[5]||(o[5]=a=>s(e).oldImage=a),ref_key:"imageInput",ref:f,class:"w-48 h-48 rounded-full overflow-clip bg-red-500"},null,8,["id","alt","modelValue"])])])])])]),l("div",G,[t(U,{disabled:s(e).processing},{default:x(()=>[I("Update")]),_:1},8,["disabled"]),t(V,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:x(()=>[s(e).recentlySuccessful?(_(),y("p",H," Saved. ")):B("",!0)]),_:1})])],40,F)]))}};export{ae as default}; diff --git a/public/build/assets/EditCategoryForm-d429dba0.js b/public/build/assets/EditCategoryForm-d429dba0.js deleted file mode 100644 index aea03dd..0000000 --- a/public/build/assets/EditCategoryForm-d429dba0.js +++ /dev/null @@ -1 +0,0 @@ -import{p as d,u as v,o as b,g as y,d as o,a as s,b as t,w as _,T as h,f as V,e as w,h as I}from"./app-a07534fc.js";import{_ as S}from"./Image-ef3ae8a1.js";import{_ as c}from"./InputError-819a2731.js";import{_ as n}from"./InputLabel-0d88b11e.js";import{_ as T}from"./PrimaryButton-f1dd44c4.js";import{_ as U}from"./Textarea-1fe62e1d.js";import{_ as j}from"./TextInput-6d371888.js";import{d as B}from"./defaultFile-233481e1.js";import{s as m}from"./default.css_vue_type_style_index_0_src_true_lang-5ba86734.js";import"./DangerButton-1432f67e.js";import"./SecondaryButton-e6cce7b4.js";import"./toast-49ee1775.js";const $={class:"dark:text-white"},C=["onSubmit"],F={class:"mt-10 sm:mt-0"},P={class:"overflow-hidden shadow sm:rounded-md"},A={class:"bg-white dark:bg-gray-800 px-4 py-5 sm:p-6"},N={class:"grid grid-cols-6 gap-6"},O={class:"col-span-6 sm:col-span-3"},E={class:"col-span-6 sm:col-span-3"},L={class:"col-span-6 sm:col-span-3 lg:col-span-3"},D={class:"col-span-6 sm:col-span-3 lg:col-span-3"},M={class:"col-span-6 sm:col-span-3 lg:col-span-3"},q={class:"col-span-6 sm:col-span-3 flex items-center justify-between"},z={class:"flex items-center justify-end pr-5 py-5"},G={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},oe={__name:"EditCategoryForm",props:{category:Object,statusArr:Object,featuredArr:Object,categories:Object},setup(i){const r=i,u=d(null),p=d(null),f=d(null),g=d(null),x=d(null),e=v({title:r.category.title,description:r.category.description,oldImage:r.category.image,imagePreview:r.category.image||B.placeholder,status:r.category.status,is_featured:r.category.is_featured,parent_id:r.category.parent_id}),k=()=>{e.post(route("admin.category.update",r.category.id),{preserveScroll:!0,onSuccess:()=>e.reset(),onError:()=>{e.errors.title&&u.value.focus(),e.errors.description&&p.value.focus(),e.errors.status&&g.value.focus(),e.errors.is_featured&&(e.reset("is_featured"),x.value.focus()),e.errors.image&&f.value.focus(),e.errors.parent_id&&parentIdInput.value.focus()}})};return(H,a)=>(b(),y("section",$,[o("form",{onSubmit:V(k,["prevent"]),class:"mt-6 space-y-6 p-3"},[o("div",F,[o("div",P,[o("div",A,[o("div",N,[o("div",O,[s(n,{for:"title",value:"Title :",class:"block text-sm font-medium text-gray-700"}),s(j,{id:"title",ref_key:"titleInput",ref:u,modelValue:t(e).title,"onUpdate:modelValue":a[0]||(a[0]=l=>t(e).title=l),type:"text",class:"mt-1 block w-full",autocomplete:"title"},null,8,["modelValue"]),s(c,{message:t(e).errors.title,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),o("div",E,[s(n,{for:"description",value:"Description :",class:"block text-sm font-medium text-gray-700"}),s(U,{id:"description",ref_key:"descriptionInput",ref:p,modelValue:t(e).description,"onUpdate:modelValue":a[1]||(a[1]=l=>t(e).description=l),type:"text",class:"mt-1 block w-full",autocomplete:"description"},null,8,["modelValue"]),s(c,{message:t(e).errors.description,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),o("div",L,[s(n,{for:"parent_id",value:"Parent Category :",class:"block text-sm font-medium text-gray-700 mb-1"}),s(t(m),{modelValue:t(e).parent_id,"onUpdate:modelValue":a[2]||(a[2]=l=>t(e).parent_id=l),options:i.categories,selected:t(e).parent_id,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-800",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"}},null,8,["modelValue","options","selected"]),s(c,{message:t(e).errors.parent_id,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),o("div",D,[s(n,{for:"status",value:"Status :",class:"block text-sm font-medium text-gray-700 mb-1"}),s(t(m),{modelValue:t(e).status,"onUpdate:modelValue":a[3]||(a[3]=l=>t(e).status=l),options:i.statusArr,selected:t(e).status,ref_key:"statusInput",ref:g,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-800",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"}},null,8,["modelValue","options","selected"]),s(c,{message:t(e).errors.status,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),o("div",M,[s(n,{for:"status",value:"Is Featured ?",class:"block text-sm font-medium text-gray-700 mb-1"}),s(t(m),{modelValue:t(e).is_featured,"onUpdate:modelValue":a[4]||(a[4]=l=>t(e).is_featured=l),options:i.featuredArr,selected:t(e).is_featured,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-800",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"}},null,8,["modelValue","options","selected"]),s(c,{message:t(e).errors.is_featured,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),o("div",q,[s(S,{id:i.category.id,alt:i.category.title,field:"image",route:"category.image",isDeleteable:!0,modelValue:t(e).oldImage,"onUpdate:modelValue":a[5]||(a[5]=l=>t(e).oldImage=l),ref_key:"imageInput",ref:f,class:"w-48 h-48 rounded-full overflow-clip bg-red-500"},null,8,["id","alt","modelValue"])])])])])]),o("div",z,[s(T,{disabled:t(e).processing},{default:_(()=>[w("Update")]),_:1},8,["disabled"]),s(h,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:_(()=>[t(e).recentlySuccessful?(b(),y("p",G," Saved. ")):I("",!0)]),_:1})])],40,C)]))}};export{oe as default}; diff --git a/public/build/assets/EditForm-8ba96d26.js b/public/build/assets/EditForm-8ba96d26.js new file mode 100644 index 0000000..92f4907 --- /dev/null +++ b/public/build/assets/EditForm-8ba96d26.js @@ -0,0 +1 @@ +import{p as i,v as N,y as S,f as T,a as t,w as K,o as F,b as r,u as s,x as c,d as j,n as A}from"./app-4dfa7f3b.js";import{_ as u,a as n}from"./InputLabel-fec82426.js";import{_ as L,a as M}from"./SecondaryButton-c5891444.js";import{_ as P}from"./Textarea-f6994d96.js";import{_ as p}from"./TextInput-fb418c8e.js";import{u as R}from"./useCountries-759a7ea1.js";import{s as Z}from"./default.css_vue_type_style_index_0_src_true_lang-5d8f90ba.js";const q={class:"p-6 bg-white text-gray-900 dark:bg-gray-800 dark:text-gray-50"},D={action:""},G={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},H={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},J={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},O={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},Q={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},W={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},X={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},Y={class:"mt-6 flex justify-end"},ee=["disabled"],ie={__name:"EditForm",props:["modelValue","address"],emits:["update:modelValue"],setup(f,{emit:C}){var x,w,h,z,I,U;const d=f,{userCountry:m,countries:$}=R(),y=()=>{C("update:modelValue",!1)},_=i(null),g=i(null),V=i(null),v=i(null),b=i(null),B=i(null),k=i(null),e=N({title:(x=d.address)==null?void 0:x.title,address:(w=d.address)==null?void 0:w.address,city:(h=d.address)==null?void 0:h.city,state:(z=d.address)==null?void 0:z.state,district:(I=d.address)==null?void 0:I.district,zip_code:(U=d.address)==null?void 0:U.zip_code,country:m==null?void 0:m.country});S(()=>d.address,l=>{l&&(e.title=l.title,e.address=l.address,e.city=l.city,e.state=l.state,e.district=l.district,e.zip_code=l.zip_code,e.country=l.country)});const E=l=>{e.post(route("address.update",d.address.id),{preserveScroll:!0,onSuccess:()=>y(),onError:()=>{e.errors.title&&_.value.focus(),e.errors.address&&g.value.focus(),e.errors.city&&V.value.focus(),e.errors.state&&v.value.focus(),e.errors.district&&b.value.focus(),e.errors.zip_code&&B.value.focus(),e.errors.country&&k.value.focus()},onFinish:()=>e.reset()})};return(l,o)=>(F(),T("section",null,[t(L,{show:f.modelValue,onClose:y},{default:K(()=>[r("div",q,[r("form",D,[r("div",G,[t(u,{for:"title",value:"Title: ",class:"text-xl"}),t(p,{id:"title",ref_key:"titleInput",ref:_,modelValue:s(e).title,"onUpdate:modelValue":o[0]||(o[0]=a=>s(e).title=a),type:"title",class:"block w-full h-8 p-1",onKeyup:c(l.deleteUser,["enter"])},null,8,["modelValue","onKeyup"]),t(n,{message:s(e).errors.title,class:"mt-2"},null,8,["message"])]),r("div",H,[t(u,{for:"address",value:"Address: ",class:"text-xl"}),t(P,{id:"address",ref_key:"addresslInput",ref:g,modelValue:s(e).address,"onUpdate:modelValue":o[1]||(o[1]=a=>s(e).address=a),type:"address",class:"block w-full h-8 p-1",onKeyup:c(l.deleteUser,["enter"])},null,8,["modelValue","onKeyup"]),t(n,{message:s(e).errors.address,class:"mt-2"},null,8,["message"])]),r("div",J,[t(u,{for:"city",value:"city: ",class:"text-xl"}),t(p,{id:"city",ref_key:"cityInput",ref:V,modelValue:s(e).city,"onUpdate:modelValue":o[2]||(o[2]=a=>s(e).city=a),type:"city",class:"block w-full h-8 p-1",onKeyup:c(l.deleteUser,["enter"])},null,8,["modelValue","onKeyup"]),t(n,{message:s(e).errors.city,class:"mt-2"},null,8,["message"])]),r("div",O,[t(u,{for:"state",value:"State: ",class:"text-xl"}),t(p,{id:"state",ref_key:"stateInput",ref:v,modelValue:s(e).state,"onUpdate:modelValue":o[3]||(o[3]=a=>s(e).state=a),type:"state",class:"block w-full p-1",onKeyup:c(l.deleteUser,["enter"])},null,8,["modelValue","onKeyup"]),t(n,{message:s(e).errors.state,class:"mt-2"},null,8,["message"])]),r("div",Q,[t(u,{for:"district",value:"district: ",class:"text-xl"}),t(p,{id:"district",ref_key:"districtInput",ref:b,modelValue:s(e).district,"onUpdate:modelValue":o[4]||(o[4]=a=>s(e).district=a),type:"district",class:"block w-full h-8 p-1",onKeyup:c(l.deleteUser,["enter"])},null,8,["modelValue","onKeyup"]),t(n,{message:s(e).errors.district,class:"mt-2"},null,8,["message"])]),r("div",W,[t(u,{for:"zip_code",value:"Zip Code: ",class:"text-xl"}),t(p,{id:"zip_code",ref:"zipCodeInput",modelValue:s(e).zip_code,"onUpdate:modelValue":o[5]||(o[5]=a=>s(e).zip_code=a),type:"zip_code",class:"block w-full h-8 p-1",onKeyup:c(l.deleteUser,["enter"])},null,8,["modelValue","onKeyup"]),t(n,{message:s(e).errors.zip_code,class:"mt-2"},null,8,["message"])]),r("div",X,[t(u,{for:"country",value:"Country: ",class:"text-xl"}),t(s(Z),{modelValue:s(e).country,"onUpdate:modelValue":o[6]||(o[6]=a=>s(e).country=a),options:s($),selected:s(e).country,placeholder:"Pick some...",ref_key:"countryInput",ref:k,class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-700",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"},id:"country"},null,8,["modelValue","options","selected","classes"]),t(n,{message:s(e).errors.country,class:"mt-2"},null,8,["message"])]),r("div",Y,[t(M,{onClick:y},{default:K(()=>[j(" Cancel ")]),_:1}),r("button",{class:A(["ml-3 btn btn-primary",{"opacity-25":s(e).processing}]),disabled:s(e).processing,onClick:E}," Update ",10,ee)])])])]),_:1},8,["show"])]))}};export{ie as default}; diff --git a/public/build/assets/EditForm-f283bead.js b/public/build/assets/EditForm-f283bead.js deleted file mode 100644 index 1aa92a3..0000000 --- a/public/build/assets/EditForm-f283bead.js +++ /dev/null @@ -1 +0,0 @@ -import{i,v as N,G as S,h as T,a as t,w as K,o as F,b as r,u as s,U as c,d as j,n as A}from"./app-4f9e7dfc.js";import{_ as u,a as n}from"./InputLabel-5969cc22.js";import{_ as G,a as L}from"./SecondaryButton-5f2daf35.js";import{_ as M}from"./Textarea-01085d86.js";import{_ as p}from"./TextInput-5a299594.js";import{a as P}from"./useCountries-7f78595f.js";import{s as R}from"./default.css_vue_type_style_index_0_src_true_lang-51e34c56.js";const Z={class:"p-6 bg-white text-gray-900 dark:bg-gray-800 dark:text-gray-50"},q={action:""},D={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},H={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},J={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},O={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},Q={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},W={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},X={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},Y={class:"mt-6 flex justify-end"},ee=["disabled"],ie={__name:"EditForm",props:["modelValue","address"],emits:["update:modelValue"],setup(f,{emit:C}){var w,x,h,U,z,I;const d=f,{userCountry:m,countries:$}=P(),y=()=>{C("update:modelValue",!1)},_=i(null),g=i(null),V=i(null),v=i(null),b=i(null),B=i(null),k=i(null),e=N({title:(w=d.address)==null?void 0:w.title,address:(x=d.address)==null?void 0:x.address,city:(h=d.address)==null?void 0:h.city,state:(U=d.address)==null?void 0:U.state,district:(z=d.address)==null?void 0:z.district,zip_code:(I=d.address)==null?void 0:I.zip_code,country:m==null?void 0:m.country});S(()=>d.address,l=>{l&&(e.title=l.title,e.address=l.address,e.city=l.city,e.state=l.state,e.district=l.district,e.zip_code=l.zip_code,e.country=l.country)});const E=l=>{e.post(route("address.update",d.address.id),{preserveScroll:!0,onSuccess:()=>y(),onError:()=>{e.errors.title&&_.value.focus(),e.errors.address&&g.value.focus(),e.errors.city&&V.value.focus(),e.errors.state&&v.value.focus(),e.errors.district&&b.value.focus(),e.errors.zip_code&&B.value.focus(),e.errors.country&&k.value.focus()},onFinish:()=>e.reset()})};return(l,o)=>(F(),T("section",null,[t(G,{show:f.modelValue,onClose:y},{default:K(()=>[r("div",Z,[r("form",q,[r("div",D,[t(u,{for:"title",value:"Title: ",class:"text-xl"}),t(p,{id:"title",ref_key:"titleInput",ref:_,modelValue:s(e).title,"onUpdate:modelValue":o[0]||(o[0]=a=>s(e).title=a),type:"title",class:"block w-full h-8 p-1",onKeyup:c(l.deleteUser,["enter"])},null,8,["modelValue","onKeyup"]),t(n,{message:s(e).errors.title,class:"mt-2"},null,8,["message"])]),r("div",H,[t(u,{for:"address",value:"Address: ",class:"text-xl"}),t(M,{id:"address",ref_key:"addresslInput",ref:g,modelValue:s(e).address,"onUpdate:modelValue":o[1]||(o[1]=a=>s(e).address=a),type:"address",class:"block w-full h-8 p-1",onKeyup:c(l.deleteUser,["enter"])},null,8,["modelValue","onKeyup"]),t(n,{message:s(e).errors.address,class:"mt-2"},null,8,["message"])]),r("div",J,[t(u,{for:"city",value:"city: ",class:"text-xl"}),t(p,{id:"city",ref_key:"cityInput",ref:V,modelValue:s(e).city,"onUpdate:modelValue":o[2]||(o[2]=a=>s(e).city=a),type:"city",class:"block w-full h-8 p-1",onKeyup:c(l.deleteUser,["enter"])},null,8,["modelValue","onKeyup"]),t(n,{message:s(e).errors.city,class:"mt-2"},null,8,["message"])]),r("div",O,[t(u,{for:"state",value:"State: ",class:"text-xl"}),t(p,{id:"state",ref_key:"stateInput",ref:v,modelValue:s(e).state,"onUpdate:modelValue":o[3]||(o[3]=a=>s(e).state=a),type:"state",class:"block w-full p-1",onKeyup:c(l.deleteUser,["enter"])},null,8,["modelValue","onKeyup"]),t(n,{message:s(e).errors.state,class:"mt-2"},null,8,["message"])]),r("div",Q,[t(u,{for:"district",value:"district: ",class:"text-xl"}),t(p,{id:"district",ref_key:"districtInput",ref:b,modelValue:s(e).district,"onUpdate:modelValue":o[4]||(o[4]=a=>s(e).district=a),type:"district",class:"block w-full h-8 p-1",onKeyup:c(l.deleteUser,["enter"])},null,8,["modelValue","onKeyup"]),t(n,{message:s(e).errors.district,class:"mt-2"},null,8,["message"])]),r("div",W,[t(u,{for:"zip_code",value:"Zip Code: ",class:"text-xl"}),t(p,{id:"zip_code",ref:"zipCodeInput",modelValue:s(e).zip_code,"onUpdate:modelValue":o[5]||(o[5]=a=>s(e).zip_code=a),type:"zip_code",class:"block w-full h-8 p-1",onKeyup:c(l.deleteUser,["enter"])},null,8,["modelValue","onKeyup"]),t(n,{message:s(e).errors.zip_code,class:"mt-2"},null,8,["message"])]),r("div",X,[t(u,{for:"country",value:"Country: ",class:"text-xl"}),t(s(R),{modelValue:s(e).country,"onUpdate:modelValue":o[6]||(o[6]=a=>s(e).country=a),options:s($),selected:s(e).country,placeholder:"Pick some...",ref_key:"countryInput",ref:k,class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-700",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"},id:"country"},null,8,["modelValue","options","selected","classes"]),t(n,{message:s(e).errors.country,class:"mt-2"},null,8,["message"])]),r("div",Y,[t(L,{onClick:y},{default:K(()=>[j(" Cancel ")]),_:1}),r("button",{class:A(["ml-3 btn btn-primary",{"opacity-25":s(e).processing}]),disabled:s(e).processing,onClick:E}," Update ",10,ee)])])])]),_:1},8,["show"])]))}};export{ie as default}; diff --git a/public/build/assets/EditForm-f3b2b2c3.js b/public/build/assets/EditForm-f3b2b2c3.js deleted file mode 100644 index 7ea369d..0000000 --- a/public/build/assets/EditForm-f3b2b2c3.js +++ /dev/null @@ -1 +0,0 @@ -import{p as i,u as F,x as N,o as S,g as T,a as t,w as K,d as r,b as s,s as c,e as j,n as A}from"./app-a07534fc.js";import{_ as u}from"./InputError-819a2731.js";import{_ as n}from"./InputLabel-0d88b11e.js";import{_ as L,a as M}from"./SecondaryButton-e6cce7b4.js";import{_ as P}from"./Textarea-1fe62e1d.js";import{_ as p}from"./TextInput-6d371888.js";import{u as R}from"./useCountries-62ba1c05.js";import{s as Z}from"./default.css_vue_type_style_index_0_src_true_lang-5ba86734.js";const q={class:"p-6 bg-white text-gray-900 dark:bg-gray-800 dark:text-gray-50"},D={action:""},G={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},H={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},J={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},O={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},Q={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},W={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},X={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},Y={class:"mt-6 flex justify-end"},ee=["disabled"],ue={__name:"EditForm",props:["modelValue","address"],emits:["update:modelValue"],setup(f,{emit:C}){var x,w,h,z,I,U;const d=f,{userCountry:m,countries:$}=R(),y=()=>{C("update:modelValue",!1)},_=i(null),g=i(null),V=i(null),b=i(null),k=i(null),B=i(null),v=i(null),e=F({title:(x=d.address)==null?void 0:x.title,address:(w=d.address)==null?void 0:w.address,city:(h=d.address)==null?void 0:h.city,state:(z=d.address)==null?void 0:z.state,district:(I=d.address)==null?void 0:I.district,zip_code:(U=d.address)==null?void 0:U.zip_code,country:m==null?void 0:m.country});N(()=>d.address,l=>{l&&(e.title=l.title,e.address=l.address,e.city=l.city,e.state=l.state,e.district=l.district,e.zip_code=l.zip_code,e.country=l.country)});const E=l=>{e.post(route("address.update",d.address.id),{preserveScroll:!0,onSuccess:()=>y(),onError:()=>{e.errors.title&&_.value.focus(),e.errors.address&&g.value.focus(),e.errors.city&&V.value.focus(),e.errors.state&&b.value.focus(),e.errors.district&&k.value.focus(),e.errors.zip_code&&B.value.focus(),e.errors.country&&v.value.focus()},onFinish:()=>e.reset()})};return(l,o)=>(S(),T("section",null,[t(L,{show:f.modelValue,onClose:y},{default:K(()=>[r("div",q,[r("form",D,[r("div",G,[t(n,{for:"title",value:"Title: ",class:"text-xl"}),t(p,{id:"title",ref_key:"titleInput",ref:_,modelValue:s(e).title,"onUpdate:modelValue":o[0]||(o[0]=a=>s(e).title=a),type:"title",class:"block w-full h-8 p-1",onKeyup:c(l.deleteUser,["enter"])},null,8,["modelValue","onKeyup"]),t(u,{message:s(e).errors.title,class:"mt-2"},null,8,["message"])]),r("div",H,[t(n,{for:"address",value:"Address: ",class:"text-xl"}),t(P,{id:"address",ref_key:"addresslInput",ref:g,modelValue:s(e).address,"onUpdate:modelValue":o[1]||(o[1]=a=>s(e).address=a),type:"address",class:"block w-full h-8 p-1",onKeyup:c(l.deleteUser,["enter"])},null,8,["modelValue","onKeyup"]),t(u,{message:s(e).errors.address,class:"mt-2"},null,8,["message"])]),r("div",J,[t(n,{for:"city",value:"city: ",class:"text-xl"}),t(p,{id:"city",ref_key:"cityInput",ref:V,modelValue:s(e).city,"onUpdate:modelValue":o[2]||(o[2]=a=>s(e).city=a),type:"city",class:"block w-full h-8 p-1",onKeyup:c(l.deleteUser,["enter"])},null,8,["modelValue","onKeyup"]),t(u,{message:s(e).errors.city,class:"mt-2"},null,8,["message"])]),r("div",O,[t(n,{for:"state",value:"State: ",class:"text-xl"}),t(p,{id:"state",ref_key:"stateInput",ref:b,modelValue:s(e).state,"onUpdate:modelValue":o[3]||(o[3]=a=>s(e).state=a),type:"state",class:"block w-full p-1",onKeyup:c(l.deleteUser,["enter"])},null,8,["modelValue","onKeyup"]),t(u,{message:s(e).errors.state,class:"mt-2"},null,8,["message"])]),r("div",Q,[t(n,{for:"district",value:"district: ",class:"text-xl"}),t(p,{id:"district",ref_key:"districtInput",ref:k,modelValue:s(e).district,"onUpdate:modelValue":o[4]||(o[4]=a=>s(e).district=a),type:"district",class:"block w-full h-8 p-1",onKeyup:c(l.deleteUser,["enter"])},null,8,["modelValue","onKeyup"]),t(u,{message:s(e).errors.district,class:"mt-2"},null,8,["message"])]),r("div",W,[t(n,{for:"zip_code",value:"Zip Code: ",class:"text-xl"}),t(p,{id:"zip_code",ref:"zipCodeInput",modelValue:s(e).zip_code,"onUpdate:modelValue":o[5]||(o[5]=a=>s(e).zip_code=a),type:"zip_code",class:"block w-full h-8 p-1",onKeyup:c(l.deleteUser,["enter"])},null,8,["modelValue","onKeyup"]),t(u,{message:s(e).errors.zip_code,class:"mt-2"},null,8,["message"])]),r("div",X,[t(n,{for:"country",value:"Country: ",class:"text-xl"}),t(s(Z),{modelValue:s(e).country,"onUpdate:modelValue":o[6]||(o[6]=a=>s(e).country=a),options:s($),selected:s(e).country,placeholder:"Pick some...",ref_key:"countryInput",ref:v,class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-800",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"},id:"country"},null,8,["modelValue","options","selected"]),t(u,{message:s(e).errors.country,class:"mt-2"},null,8,["message"])]),r("div",Y,[t(M,{onClick:y},{default:K(()=>[j(" Cancel ")]),_:1}),r("button",{class:A(["ml-3 btn btn-primary",{"opacity-25":s(e).processing}]),disabled:s(e).processing,onClick:E}," Update ",10,ee)])])])]),_:1},8,["show"])]))}};export{ue as default}; diff --git a/public/build/assets/EditProductForm-dc6868ad.js b/public/build/assets/EditProductForm-dc6868ad.js deleted file mode 100644 index 2593f68..0000000 --- a/public/build/assets/EditProductForm-dc6868ad.js +++ /dev/null @@ -1 +0,0 @@ -import{p as i,u as h,o as _,g as y,d as l,a as s,b as t,w as x,T as V,f as w,e as I,h as S}from"./app-a07534fc.js";import{_ as U}from"./Image-ef3ae8a1.js";import{_ as d}from"./InputError-819a2731.js";import{_ as u}from"./InputLabel-0d88b11e.js";import{_ as j}from"./PrimaryButton-f1dd44c4.js";import{_ as P}from"./Textarea-1fe62e1d.js";import{_ as T}from"./TextInput-6d371888.js";import{d as $}from"./defaultFile-233481e1.js";import{s as n}from"./default.css_vue_type_style_index_0_src_true_lang-5ba86734.js";import"./DangerButton-1432f67e.js";import"./SecondaryButton-e6cce7b4.js";import"./toast-49ee1775.js";const A={class:"dark:text-white"},B=["onSubmit"],F={class:"mt-10 sm:mt-0"},N={class:"overflow-hidden shadow sm:rounded-md"},O={class:"bg-white dark:bg-gray-800 px-4 py-5 sm:p-6"},C={class:"grid grid-cols-6 gap-6"},E={class:"col-span-6 sm:col-span-3"},D={class:"col-span-6 sm:col-span-3"},L={class:"col-span-6 sm:col-span-3 lg:col-span-3 mb-20"},z={class:"col-span-6 sm:col-span-3 lg:col-span-3"},M={class:"col-span-6 sm:col-span-3 flex items-center justify-center"},q={class:"col-span-6 sm:col-span-3 lg:col-span-3"},G={class:"flex items-center justify-end pr-5 py-5"},H={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},ae={__name:"EditProductForm",props:{product:Object,categories:Object,statusArr:Object,featuredArr:Object},setup(c){const r=c,m=i(null),p=i(null),f=i(null),g=i(null),b=i(null),k=i(null),e=h({title:r.product.title,description:r.product.description,oldImage:r.product.image,imagePreview:r.product.image||$.placeholder,status:r.product.status,is_featured:r.product.is_featured,categories:r.product.categoryArr}),v=()=>{e.post(route("admin.product.update",r.product.id),{preserveScroll:!0,onSuccess:()=>e.reset(),onError:()=>{e.errors.title&&m.value.focus(),e.errors.description&&p.value.focus(),e.errors.status&&g.value.focus(),e.errors.is_featured&&(e.reset("is_featured"),k.value.focus()),e.errors.categories&&b.value.focus(),e.errors.image&&f.value.focus()}})};return(J,o)=>(_(),y("section",A,[l("form",{onSubmit:w(v,["prevent"]),class:"mt-6 space-y-6 p-3"},[l("div",F,[l("div",N,[l("div",O,[l("div",C,[l("div",E,[s(u,{for:"title",value:"Title :",class:"block text-sm font-medium text-gray-700"}),s(T,{id:"title",ref_key:"titleInput",ref:m,modelValue:t(e).title,"onUpdate:modelValue":o[0]||(o[0]=a=>t(e).title=a),type:"text",class:"mt-1 block w-full",autocomplete:"title"},null,8,["modelValue"]),s(d,{message:t(e).errors.title,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),l("div",D,[s(u,{for:"description",value:"Description :",class:"block text-sm font-medium text-gray-700"}),s(P,{id:"description",ref_key:"descriptionInput",ref:p,modelValue:t(e).description,"onUpdate:modelValue":o[1]||(o[1]=a=>t(e).description=a),type:"text",class:"mt-1 block w-full",autocomplete:"description"},null,8,["modelValue"]),s(d,{message:t(e).errors.description,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),l("div",L,[s(u,{for:"categories",value:"Category :",class:"block text-sm font-medium text-gray-700 mb-1"}),s(t(n),{modelValue:t(e).categories,"onUpdate:modelValue":o[2]||(o[2]=a=>t(e).categories=a),options:r.categories,selected:t(e).categories,placeholder:"Pick some...",ref_key:"categoryInput",ref:b,class:"block w-full multiselect-green form-controll dark:text-gray-900",mode:"tags",searchable:!0,"close-on-select":!1},null,8,["modelValue","options","selected"]),s(d,{message:t(e).errors.categories,class:"mt-2 col-start-2 col-span-4 absolute z-5"},null,8,["message"])]),l("div",z,[s(u,{for:"status",value:"Status :",class:"block text-sm font-medium text-gray-700 mb-1"}),s(t(n),{modelValue:t(e).status,"onUpdate:modelValue":o[3]||(o[3]=a=>t(e).status=a),options:c.statusArr,selected:t(e).status,ref_key:"statusInput",ref:g,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-800",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"}},null,8,["modelValue","options","selected"]),s(d,{message:t(e).errors.status,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),l("div",M,[s(U,{id:c.product.id,alt:c.product.title,field:"image",route:"product.image",isDeleteable:!0,modelValue:c.product.oldImage,"onUpdate:modelValue":o[4]||(o[4]=a=>c.product.oldImage=a),ref_key:"imageInput",ref:f,class:"w-48 h-48 rounded-full overflow-clip bg-red-500"},null,8,["id","alt","modelValue"])]),l("div",q,[s(u,{for:"status",value:"Is Featured ?",class:"block text-sm font-medium text-gray-700 mb-1"}),s(t(n),{modelValue:t(e).is_featured,"onUpdate:modelValue":o[5]||(o[5]=a=>t(e).is_featured=a),options:c.featuredArr,selected:t(e).is_featured,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-800",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"}},null,8,["modelValue","options","selected"]),s(d,{message:t(e).errors.is_featured,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])])])])])]),l("div",G,[s(j,{disabled:t(e).processing},{default:x(()=>[I("Update")]),_:1},8,["disabled"]),s(V,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:x(()=>[t(e).recentlySuccessful?(_(),y("p",H," Saved. ")):S("",!0)]),_:1})])],40,B)]))}};export{ae as default}; diff --git a/public/build/assets/EditRoleForm-8ba9a8ef.js b/public/build/assets/EditRoleForm-72875eaa.js similarity index 76% rename from public/build/assets/EditRoleForm-8ba9a8ef.js rename to public/build/assets/EditRoleForm-72875eaa.js index 1d5abd0..6620bd5 100644 --- a/public/build/assets/EditRoleForm-8ba9a8ef.js +++ b/public/build/assets/EditRoleForm-72875eaa.js @@ -1 +1 @@ -import{v as j,j as W,G as O,h as p,b as c,a as m,u as r,f as v,x as b,F as x,m as k,w as y,S as U,e as $,o as u,d as E,q as A}from"./app-4f9e7dfc.js";import{a as V,_ as d}from"./InputLabel-5969cc22.js";import{_ as B}from"./PrimaryButton-89a514d8.js";import{_ as F}from"./TextInput-5a299594.js";const M=["onSubmit"],R={class:"grid grid-cols-6 justify-items-start gap-1"},z={class:"flex items-center gap-1 my-5"},I=["checked"],N={class:"grid md:grid-cols-4 grid-cols-3 gap-5 pr-5 sm:pr-0"},T={class:"flex items-center gap-1 mb-5"},q=["value","checked","onClick"],D=["value","onUpdate:modelValue"],L={class:"flex items-center justify-end pr-5 py-5"},J={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},Z={__name:"EditRoleForm",props:{permissionWithGroup:Object,permissions:Object,all_group:Object,total_permissions:String,total_group:String,role:Object,permissionArr:Object},setup(g){const n=g,e=j({id:n.role.id,name:n.role.name,permissions:n.permissionArr,group_name:[],is_all_selected:n.permissionArr.length==n.permissions.length});W(()=>{C()});const w=t=>{t?(e.permissions=_.clone(n.permissions),e.group_name=_.clone(n.all_group)):(e.permissions=[],e.group_name=[])},h=t=>{let l="";for(const s in n.permissionWithGroup){let o=n.permissionWithGroup[s].find(i=>i.name==t);o&&(l=o==null?void 0:o.group_name)}return l},C=()=>{for(const t in n.permissionWithGroup){let l=_.includes(e.group_name,t),s=n.permissionWithGroup[t],a=_.filter(e.permissions,function(o){return o.indexOf(t)>-1});!l&&(s==null?void 0:s.length)==(a==null?void 0:a.length)&&e.group_name.push(t)}};O(()=>e.permissions,(t,l)=>{let s="";l.length>t.length?s=h(_.difference(l,t)[0]):l.length-1});t.length==n.permissions.length?(e.is_all_selected=!0,e.group_name=_.clone(n.all_group)):e.is_all_selected=!1,a&&(o==null?void 0:o.length)!==(i==null?void 0:i.length)?_.remove(e.group_name,f=>f===s):!a&&(o==null?void 0:o.length)==(i==null?void 0:i.length)&&(_.includes(e.group_name,s)||e.group_name.push(s))});const G=t=>{let l=n.permissionWithGroup[t];_.includes(e.group_name,t)?(_.remove(e.group_name,s=>s===t),_.forEach(l,function(s){_.remove(e.permissions,a=>a===s.name)})):(e.group_name.push(t),_.forEach(l,function(s){_.includes(e.permissions,s.name)||e.permissions.push(s.name)})),e.group_name.length==n.total_group?e.is_all_selected=!0:e.is_all_selected=!1},S=()=>{e.post(route("role.update",e.id),{preserveScroll:!0,onSuccess:()=>e.reset(),onError:()=>{e.errors.name&&(e.reset("name"),nameInput.value.focus()),e.errors.permissions&&e.reset("permissions")}})};return(t,l)=>(u(),p("section",null,[c("form",{onSubmit:$(S,["prevent"]),class:"mt-6 space-y-6 p-3"},[c("div",R,[m(d,{for:"current_password",value:"Role Name :",class:"text-xl self-center"}),m(F,{id:"name",ref:"nameInput",modelValue:r(e).name,"onUpdate:modelValue":l[0]||(l[0]=s=>r(e).name=s),type:"text",class:"mt-1 block w-full col-span-5",autocomplete:"name"},null,8,["modelValue"]),m(V,{message:r(e).errors.name,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),c("div",z,[m(d,{for:"is_all_selected",value:"Select All",class:"text-2xl capitalize mr-2"}),v(c("input",{type:"checkbox",id:"is_all_selected","onUpdate:modelValue":l[1]||(l[1]=s=>r(e).is_all_selected=s),class:"checkbox w-6 h-6",checked:r(e).is_all_selected,onChange:l[2]||(l[2]=s=>w(r(e).is_all_selected))},null,40,I),[[b,r(e).is_all_selected]]),m(V,{message:r(e).errors.permissions,class:"mt-2 col-start-2 col-span-4 ml-3"},null,8,["message"])]),c("div",N,[(u(!0),p(x,null,k(g.permissionWithGroup,(s,a)=>(u(),p("div",{key:a},[c("div",T,[c("input",{type:"checkbox",id:"group_name",value:r(e).group_name,class:"checkbox mr-1 w-5 h-5",checked:r(e).group_name.includes(a),onClick:o=>G(a)},null,8,q),m(d,{for:"group_name",value:a,class:"text-xl capitalize border-b-2 border-gray-700 border-spacing-2 pb-0.5"},null,8,["value"])]),(u(!0),p(x,null,k(s,o=>(u(),p("div",{key:o.id,class:"flex"},[v(c("input",{type:"checkbox",id:"permissions",value:o.name,"onUpdate:modelValue":i=>r(e).permissions=i,class:"checkbox mr-1"},null,8,D),[[b,r(e).permissions]]),m(d,{for:"permissions",value:o.name},null,8,["value"])]))),128))]))),128))]),c("div",L,[m(B,{disabled:r(e).processing},{default:y(()=>[E("Update")]),_:1},8,["disabled"]),m(U,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:y(()=>[r(e).recentlySuccessful?(u(),p("p",J," Updated. ")):A("",!0)]),_:1})])],40,M)]))}};export{Z as default}; +import{v as S,A as W,y as O,f as p,b as c,a as m,u as r,i as v,j as b,F as x,q as k,w as y,T as U,e as $,o as u,d as E,g as A}from"./app-4dfa7f3b.js";import{a as V,_ as d}from"./InputLabel-fec82426.js";import{_ as B}from"./PrimaryButton-2b535c8b.js";import{_ as F}from"./TextInput-fb418c8e.js";const M=["onSubmit"],R={class:"grid grid-cols-6 justify-items-start gap-1"},T={class:"flex items-center gap-1 my-5"},z=["checked"],I={class:"grid md:grid-cols-4 grid-cols-3 gap-5 pr-5 sm:pr-0"},N={class:"flex items-center gap-1 mb-5"},q=["value","checked","onClick"],D=["value","onUpdate:modelValue"],L={class:"flex items-center justify-end pr-5 py-5"},J={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},Z={__name:"EditRoleForm",props:{permissionWithGroup:Object,permissions:Object,all_group:Object,total_permissions:String,total_group:String,role:Object,permissionArr:Object},setup(g){const n=g,e=S({id:n.role.id,name:n.role.name,permissions:n.permissionArr,group_name:[],is_all_selected:n.permissionArr.length==n.permissions.length});W(()=>{C()});const w=t=>{t?(e.permissions=_.clone(n.permissions),e.group_name=_.clone(n.all_group)):(e.permissions=[],e.group_name=[])},h=t=>{let l="";for(const s in n.permissionWithGroup){let o=n.permissionWithGroup[s].find(i=>i.name==t);o&&(l=o==null?void 0:o.group_name)}return l},C=()=>{for(const t in n.permissionWithGroup){let l=_.includes(e.group_name,t),s=n.permissionWithGroup[t],a=_.filter(e.permissions,function(o){return o.indexOf(t)>-1});!l&&(s==null?void 0:s.length)==(a==null?void 0:a.length)&&e.group_name.push(t)}};O(()=>e.permissions,(t,l)=>{let s="";l.length>t.length?s=h(_.difference(l,t)[0]):l.length-1});t.length==n.permissions.length?(e.is_all_selected=!0,e.group_name=_.clone(n.all_group)):e.is_all_selected=!1,a&&(o==null?void 0:o.length)!==(i==null?void 0:i.length)?_.remove(e.group_name,f=>f===s):!a&&(o==null?void 0:o.length)==(i==null?void 0:i.length)&&(_.includes(e.group_name,s)||e.group_name.push(s))});const j=t=>{let l=n.permissionWithGroup[t];_.includes(e.group_name,t)?(_.remove(e.group_name,s=>s===t),_.forEach(l,function(s){_.remove(e.permissions,a=>a===s.name)})):(e.group_name.push(t),_.forEach(l,function(s){_.includes(e.permissions,s.name)||e.permissions.push(s.name)})),e.group_name.length==n.total_group?e.is_all_selected=!0:e.is_all_selected=!1},G=()=>{e.post(route("role.update",e.id),{preserveScroll:!0,onSuccess:()=>e.reset(),onError:()=>{e.errors.name&&(e.reset("name"),nameInput.value.focus()),e.errors.permissions&&e.reset("permissions")}})};return(t,l)=>(u(),p("section",null,[c("form",{onSubmit:$(G,["prevent"]),class:"mt-6 space-y-6 p-3"},[c("div",R,[m(d,{for:"current_password",value:"Role Name :",class:"text-xl self-center"}),m(F,{id:"name",ref:"nameInput",modelValue:r(e).name,"onUpdate:modelValue":l[0]||(l[0]=s=>r(e).name=s),type:"text",class:"mt-1 block w-full col-span-5",autocomplete:"name"},null,8,["modelValue"]),m(V,{message:r(e).errors.name,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),c("div",T,[m(d,{for:"is_all_selected",value:"Select All",class:"text-2xl capitalize mr-2"}),v(c("input",{type:"checkbox",id:"is_all_selected","onUpdate:modelValue":l[1]||(l[1]=s=>r(e).is_all_selected=s),class:"checkbox w-6 h-6",checked:r(e).is_all_selected,onChange:l[2]||(l[2]=s=>w(r(e).is_all_selected))},null,40,z),[[b,r(e).is_all_selected]]),m(V,{message:r(e).errors.permissions,class:"mt-2 col-start-2 col-span-4 ml-3"},null,8,["message"])]),c("div",I,[(u(!0),p(x,null,k(g.permissionWithGroup,(s,a)=>(u(),p("div",{key:a},[c("div",N,[c("input",{type:"checkbox",id:"group_name",value:r(e).group_name,class:"checkbox mr-1 w-5 h-5",checked:r(e).group_name.includes(a),onClick:o=>j(a)},null,8,q),m(d,{for:"group_name",value:a,class:"text-xl capitalize border-b-2 border-gray-700 border-spacing-2 pb-0.5"},null,8,["value"])]),(u(!0),p(x,null,k(s,o=>(u(),p("div",{key:o.id,class:"flex"},[v(c("input",{type:"checkbox",id:"permissions",value:o.name,"onUpdate:modelValue":i=>r(e).permissions=i,class:"checkbox mr-1"},null,8,D),[[b,r(e).permissions]]),m(d,{for:"permissions",value:o.name},null,8,["value"])]))),128))]))),128))]),c("div",L,[m(B,{disabled:r(e).processing},{default:y(()=>[E("Update")]),_:1},8,["disabled"]),m(U,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:y(()=>[r(e).recentlySuccessful?(u(),p("p",J," Updated. ")):A("",!0)]),_:1})])],40,M)]))}};export{Z as default}; diff --git a/public/build/assets/EditRoleForm-d2dd272f.js b/public/build/assets/EditRoleForm-d2dd272f.js deleted file mode 100644 index 903181a..0000000 --- a/public/build/assets/EditRoleForm-d2dd272f.js +++ /dev/null @@ -1 +0,0 @@ -import{u as S,z as W,x as O,o as p,g as u,d as c,a as m,b as r,j as v,v as b,F as x,m as k,w as y,T as U,f as $,e as E,h as F}from"./app-a07534fc.js";import{_ as V}from"./InputError-819a2731.js";import{_ as d}from"./InputLabel-0d88b11e.js";import{_ as z}from"./PrimaryButton-f1dd44c4.js";import{_ as A}from"./TextInput-6d371888.js";const B=["onSubmit"],M={class:"grid grid-cols-6 justify-items-start gap-1"},R={class:"flex items-center gap-1 my-5"},T=["checked"],I={class:"grid md:grid-cols-4 grid-cols-3 gap-5 pr-5 sm:pr-0"},N={class:"flex items-center gap-1 mb-5"},D=["value","checked","onClick"],L=["value","onUpdate:modelValue"],q={class:"flex items-center justify-end pr-5 py-5"},J={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},H={__name:"EditRoleForm",props:{permissionWithGroup:Object,permissions:Object,all_group:Object,total_permissions:String,total_group:String,role:Object,permissionArr:Object},setup(g){const n=g,e=S({id:n.role.id,name:n.role.name,permissions:n.permissionArr,group_name:[],is_all_selected:n.permissionArr.length==n.permissions.length});W(()=>{C()});const w=t=>{t?(e.permissions=_.clone(n.permissions),e.group_name=_.clone(n.all_group)):(e.permissions=[],e.group_name=[])},h=t=>{let l="";for(const s in n.permissionWithGroup){let o=n.permissionWithGroup[s].find(i=>i.name==t);o&&(l=o==null?void 0:o.group_name)}return l},C=()=>{for(const t in n.permissionWithGroup){let l=_.includes(e.group_name,t),s=n.permissionWithGroup[t],a=_.filter(e.permissions,function(o){return o.indexOf(t)>-1});!l&&(s==null?void 0:s.length)==(a==null?void 0:a.length)&&e.group_name.push(t)}};O(()=>e.permissions,(t,l)=>{let s="";l.length>t.length?s=h(_.difference(l,t)[0]):l.length-1});t.length==n.permissions.length?(e.is_all_selected=!0,e.group_name=_.clone(n.all_group)):e.is_all_selected=!1,a&&(o==null?void 0:o.length)!==(i==null?void 0:i.length)?_.remove(e.group_name,f=>f===s):!a&&(o==null?void 0:o.length)==(i==null?void 0:i.length)&&(_.includes(e.group_name,s)||e.group_name.push(s))});const j=t=>{let l=n.permissionWithGroup[t];_.includes(e.group_name,t)?(_.remove(e.group_name,s=>s===t),_.forEach(l,function(s){_.remove(e.permissions,a=>a===s.name)})):(e.group_name.push(t),_.forEach(l,function(s){_.includes(e.permissions,s.name)||e.permissions.push(s.name)})),e.group_name.length==n.total_group?e.is_all_selected=!0:e.is_all_selected=!1},G=()=>{e.post(route("admin.role.update",e.id),{preserveScroll:!0,onSuccess:()=>e.reset(),onError:()=>{e.errors.name&&(e.reset("name"),nameInput.value.focus()),e.errors.permissions&&e.reset("permissions")}})};return(t,l)=>(p(),u("section",null,[c("form",{onSubmit:$(G,["prevent"]),class:"mt-6 space-y-6 p-3"},[c("div",M,[m(d,{for:"current_password",value:"Role Name :",class:"text-xl self-center"}),m(A,{id:"name",ref:"nameInput",modelValue:r(e).name,"onUpdate:modelValue":l[0]||(l[0]=s=>r(e).name=s),type:"text",class:"mt-1 block w-full col-span-5",autocomplete:"name"},null,8,["modelValue"]),m(V,{message:r(e).errors.name,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),c("div",R,[m(d,{for:"is_all_selected",value:"Select All",class:"text-2xl capitalize mr-2"}),v(c("input",{type:"checkbox",id:"is_all_selected","onUpdate:modelValue":l[1]||(l[1]=s=>r(e).is_all_selected=s),class:"checkbox w-6 h-6",checked:r(e).is_all_selected,onChange:l[2]||(l[2]=s=>w(r(e).is_all_selected))},null,40,T),[[b,r(e).is_all_selected]]),m(V,{message:r(e).errors.permissions,class:"mt-2 col-start-2 col-span-4 ml-3"},null,8,["message"])]),c("div",I,[(p(!0),u(x,null,k(g.permissionWithGroup,(s,a)=>(p(),u("div",{key:a},[c("div",N,[c("input",{type:"checkbox",id:"group_name",value:r(e).group_name,class:"checkbox mr-1 w-5 h-5",checked:r(e).group_name.includes(a),onClick:o=>j(a)},null,8,D),m(d,{for:"group_name",value:a,class:"text-xl capitalize border-b-2 border-gray-700 border-spacing-2 pb-0.5"},null,8,["value"])]),(p(!0),u(x,null,k(s,o=>(p(),u("div",{key:o.id,class:"flex"},[v(c("input",{type:"checkbox",id:"permissions",value:o.name,"onUpdate:modelValue":i=>r(e).permissions=i,class:"checkbox mr-1"},null,8,L),[[b,r(e).permissions]]),m(d,{for:"permissions",value:o.name},null,8,["value"])]))),128))]))),128))]),c("div",q,[m(z,{disabled:r(e).processing},{default:y(()=>[E("Update")]),_:1},8,["disabled"]),m(U,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:y(()=>[r(e).recentlySuccessful?(p(),u("p",J," Updated. ")):F("",!0)]),_:1})])],40,B)]))}};export{H as default}; diff --git a/public/build/assets/EditSpecialFeatureForm-d52451ae.js b/public/build/assets/EditSpecialFeatureForm-d52451ae.js deleted file mode 100644 index ad6d346..0000000 --- a/public/build/assets/EditSpecialFeatureForm-d52451ae.js +++ /dev/null @@ -1 +0,0 @@ -import{p as c,u as y,o as g,g as _,d as a,a as s,b as t,w as b,T as v,f as k,e as h,h as V}from"./app-a07534fc.js";import{_ as w}from"./Image-ef3ae8a1.js";import{_ as n}from"./InputError-819a2731.js";import{_ as d}from"./InputLabel-0d88b11e.js";import{_ as F}from"./PrimaryButton-f1dd44c4.js";import{_ as I}from"./Textarea-1fe62e1d.js";import{_ as S}from"./TextInput-6d371888.js";import{d as $}from"./defaultFile-233481e1.js";import{s as T}from"./default.css_vue_type_style_index_0_src_true_lang-5ba86734.js";import"./DangerButton-1432f67e.js";import"./SecondaryButton-e6cce7b4.js";import"./toast-49ee1775.js";const U={class:"dark:text-white"},j=["onSubmit"],B={class:"mt-10 sm:mt-0"},N={class:"overflow-hidden shadow sm:rounded-md"},E={class:"bg-white dark:bg-gray-800 px-4 py-5 sm:p-6"},A={class:"grid grid-cols-6 gap-6 mb-25"},C={class:"col-span-6 sm:col-span-3"},D={class:"col-span-6 sm:col-span-3 lg:col-span-3"},O={class:"col-span-6 sm:col-span-3"},P={class:"col-span-6 sm:col-span-3 flex items-center justify-center"},L={class:"flex items-center justify-end pr-5 py-5"},M={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},te={__name:"EditSpecialFeatureForm",props:{specialFeature:Object,statusArr:Object},setup(i){const r=i,m=c(null),u=c(null),p=c(null),f=c(null),e=y({title:r.specialFeature.title,description:r.specialFeature.description,oldImage:r.specialFeature.image,imagePreview:r.specialFeature.image||$.placeholder,status:r.specialFeature.status}),x=()=>{e.post(route("admin.special-feature.update",r.specialFeature.id),{preserveScroll:!0,onSuccess:()=>e.reset(),onError:()=>{e.errors.title&&m.value.focus(),e.errors.description&&u.value.focus(),e.errors.status&&f.value.focus(),e.errors.image&&p.value.focus()}})};return(q,o)=>(g(),_("section",U,[a("form",{onSubmit:k(x,["prevent"]),class:"mt-6 space-y-6 p-3"},[a("div",B,[a("div",N,[a("div",E,[a("div",A,[a("div",C,[s(d,{for:"title",value:"Title :",class:"block text-sm font-medium text-gray-700"}),s(S,{id:"title",ref_key:"titleInput",ref:m,modelValue:t(e).title,"onUpdate:modelValue":o[0]||(o[0]=l=>t(e).title=l),type:"text",class:"mt-1 block w-full",autocomplete:"title"},null,8,["modelValue"]),s(n,{message:t(e).errors.title,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),a("div",D,[s(d,{for:"status",value:"Status :",class:"block text-sm font-medium text-gray-700 mb-1"}),s(t(T),{modelValue:t(e).status,"onUpdate:modelValue":o[1]||(o[1]=l=>t(e).status=l),options:i.statusArr,selected:t(e).status,ref_key:"statusInput",ref:f,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-800",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"}},null,8,["modelValue","options","selected"]),s(n,{message:t(e).errors.status,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),a("div",O,[s(d,{for:"description",value:"Description :",class:"block text-sm font-medium text-gray-700"}),s(I,{id:"description",ref_key:"descriptionInput",ref:u,modelValue:t(e).description,"onUpdate:modelValue":o[2]||(o[2]=l=>t(e).description=l),type:"text",class:"mt-1 block w-full",autocomplete:"description"},null,8,["modelValue"]),s(n,{message:t(e).errors.description,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),a("div",P,[s(w,{id:i.specialFeature.id,alt:i.specialFeature.title,field:"image",route:"special-feature.image",isDeleteable:!0,modelValue:t(e).oldImage,"onUpdate:modelValue":o[3]||(o[3]=l=>t(e).oldImage=l),ref_key:"imageInput",ref:p,class:"w-48 h-48 rounded-full overflow-clip bg-red-500"},null,8,["id","alt","modelValue"])])])])])]),a("div",L,[s(F,{disabled:t(e).processing},{default:b(()=>[h("Update")]),_:1},8,["disabled"]),s(v,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:b(()=>[t(e).recentlySuccessful?(g(),_("p",M," Saved. ")):V("",!0)]),_:1})])],40,j)]))}};export{te as default}; diff --git a/public/build/assets/EditUserForm-5c6c4bab.js b/public/build/assets/EditUserForm-5c6c4bab.js deleted file mode 100644 index 9ba44c6..0000000 --- a/public/build/assets/EditUserForm-5c6c4bab.js +++ /dev/null @@ -1 +0,0 @@ -import{i as n,v as k,h as d,b as a,a as t,u as s,q as g,w as x,S as V,e as w,o as u,d as U}from"./app-4f9e7dfc.js";import{_ as S}from"./Image-b36d5d14.js";import{a as c,_ as i}from"./InputLabel-5969cc22.js";import{_ as A}from"./PrimaryButton-89a514d8.js";import{_}from"./TextInput-5a299594.js";import{s as b}from"./default.css_vue_type_style_index_0_src_true_lang-51e34c56.js";import"./DangerButton-c925b039.js";import"./SecondaryButton-5f2daf35.js";import"./defaultFile-106f3fb6.js";import"./toast-c1edb8fd.js";const I={class:"dark:text-white"},j=["onSubmit"],N={class:"mt-10 sm:mt-0"},$={class:"shadow sm:rounded-md"},B={class:"bg-white dark:bg-gray-800 px-4 py-5 sm:p-6"},E={class:"grid grid-cols-6 gap-6"},O={class:"col-span-6 sm:col-span-3"},P={class:"col-span-6 sm:col-span-3"},T={class:"col-span-6 sm:col-span-3"},C={class:"p-4 space-x-5 shadow flex items-center min-h-full h-[150px]"},q=a("div",{class:"text-2x block text-center text-2xl"}," Avatar: ",-1),D={class:"col-span-6 sm:col-span-3 grid grid-cols-6 gap-5 items-center justify-between"},F={key:0,class:"col-span-3"},L={class:"col-span-3"},M={class:"flex items-center justify-end pr-5 py-5"},R={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},se={__name:"EditUserForm",props:{roleArr:Object,user:Object,statusArr:Object},setup(r){const m=r,p=n(null),f=n(null),v=n(null),y=n(null),e=k({name:m.user.name,email:m.user.email,status:m.user.status,roles:m.user.has_roles}),h=()=>{e.post(route("user.update",m.user.id),{preserveScroll:!0,onSuccess:()=>e.reset(),onError:()=>{e.errors.name&&p.value.focus(),e.errors.email&&f.value.focus(),e.errors.status&&v.value.focus(),e.errors.roles&&y.value.focus()}})};return(z,l)=>(u(),d("section",I,[a("form",{onSubmit:w(h,["prevent"]),class:"mt-6 space-y-6 p-3"},[a("div",N,[a("div",$,[a("div",B,[a("div",E,[a("div",O,[t(i,{for:"name",value:"Name :",class:"block text-sm font-medium text-gray-700"}),t(_,{id:"name",ref_key:"nameInput",ref:p,modelValue:s(e).name,"onUpdate:modelValue":l[0]||(l[0]=o=>s(e).name=o),type:"text",class:"mt-1 block w-full",autocomplete:"name"},null,8,["modelValue"]),t(c,{message:s(e).errors.name,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),a("div",P,[t(i,{for:"email",value:"Email :",class:"block text-sm font-medium text-gray-700"}),t(_,{id:"email",ref_key:"emailInput",ref:f,modelValue:s(e).email,"onUpdate:modelValue":l[1]||(l[1]=o=>s(e).email=o),type:"text",class:"mt-1 block w-full",autocomplete:"email"},null,8,["modelValue"]),t(c,{message:s(e).errors.email,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),a("div",T,[a("div",C,[q,t(S,{id:r.user.id,field:"avatar",isDeleteable:!0,modelValue:r.user.avatar,"onUpdate:modelValue":l[2]||(l[2]=o=>r.user.avatar=o),route:"user.image",class:"w-32 h-32 rounded-full overflow-clip bg-red-500"},null,8,["id","modelValue"])])]),a("div",D,[r.roleArr.length>0?(u(),d("div",F,[t(i,{for:"roles",value:"Role :",class:"block text-sm font-medium text-gray-700 mb-1"}),t(s(b),{modelValue:s(e).roles,"onUpdate:modelValue":l[3]||(l[3]=o=>s(e).roles=o),options:r.roleArr,selected:s(e).roles,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-gray-900",mode:"tags",searchable:!0,"close-on-select":!1},null,8,["modelValue","options","selected"]),t(c,{message:s(e).errors.roles,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])])):g("",!0),a("div",L,[t(i,{for:"status",value:"Status :",class:"block text-sm font-medium text-gray-700 mb-1"}),t(s(b),{modelValue:s(e).status,"onUpdate:modelValue":l[4]||(l[4]=o=>s(e).status=o),options:r.statusArr,selected:s(e).status,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-700",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"}},null,8,["modelValue","options","selected","classes"]),t(c,{message:s(e).errors.status,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])])])])])])]),a("div",M,[t(A,{disabled:s(e).processing},{default:x(()=>[U("Update")]),_:1},8,["disabled"]),t(V,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:x(()=>[s(e).recentlySuccessful?(u(),d("p",R," Ppdated. ")):g("",!0)]),_:1})])],40,j)]))}};export{se as default}; diff --git a/public/build/assets/EditUserForm-940e8ccc.js b/public/build/assets/EditUserForm-940e8ccc.js new file mode 100644 index 0000000..8cbd9fc --- /dev/null +++ b/public/build/assets/EditUserForm-940e8ccc.js @@ -0,0 +1 @@ +import{p as n,v as h,f as d,b as a,a as t,u as s,g,w as x,T as V,e as w,o as u,d as U}from"./app-4dfa7f3b.js";import{_ as A}from"./Image-ad5bc90a.js";import{a as c,_ as i}from"./InputLabel-fec82426.js";import{_ as I}from"./PrimaryButton-2b535c8b.js";import{_}from"./TextInput-fb418c8e.js";import{s as b}from"./default.css_vue_type_style_index_0_src_true_lang-5d8f90ba.js";import"./DangerButton-9faead77.js";import"./SecondaryButton-c5891444.js";import"./defaultFile-2b6c57d3.js";import"./toast-ded66f04.js";const S={class:"dark:text-white"},j=["onSubmit"],N={class:"mt-10 sm:mt-0"},$={class:"shadow sm:rounded-md"},B={class:"bg-white dark:bg-gray-800 px-4 py-5 sm:p-6"},E={class:"grid grid-cols-6 gap-6"},T={class:"col-span-6 sm:col-span-3"},O={class:"col-span-6 sm:col-span-3"},P={class:"col-span-6 sm:col-span-3"},C={class:"p-4 space-x-5 shadow flex items-center min-h-full h-[150px]"},D=a("div",{class:"text-2x block text-center text-2xl"}," Avatar: ",-1),F={class:"col-span-6 sm:col-span-3 grid grid-cols-6 gap-5 items-center justify-between"},L={key:0,class:"col-span-3"},M={class:"col-span-3"},R={class:"flex items-center justify-end pr-5 py-5"},q={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},se={__name:"EditUserForm",props:{roleArr:Object,user:Object,statusArr:Object},setup(r){const m=r,p=n(null),f=n(null),v=n(null),y=n(null),e=h({name:m.user.name,email:m.user.email,status:m.user.status,roles:m.user.has_roles}),k=()=>{e.post(route("user.update",m.user.id),{preserveScroll:!0,onSuccess:()=>e.reset(),onError:()=>{e.errors.name&&p.value.focus(),e.errors.email&&f.value.focus(),e.errors.status&&v.value.focus(),e.errors.roles&&y.value.focus()}})};return(z,l)=>(u(),d("section",S,[a("form",{onSubmit:w(k,["prevent"]),class:"mt-6 space-y-6 p-3"},[a("div",N,[a("div",$,[a("div",B,[a("div",E,[a("div",T,[t(i,{for:"name",value:"Name :",class:"block text-sm font-medium text-gray-700"}),t(_,{id:"name",ref_key:"nameInput",ref:p,modelValue:s(e).name,"onUpdate:modelValue":l[0]||(l[0]=o=>s(e).name=o),type:"text",class:"mt-1 block w-full",autocomplete:"name"},null,8,["modelValue"]),t(c,{message:s(e).errors.name,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),a("div",O,[t(i,{for:"email",value:"Email :",class:"block text-sm font-medium text-gray-700"}),t(_,{id:"email",ref_key:"emailInput",ref:f,modelValue:s(e).email,"onUpdate:modelValue":l[1]||(l[1]=o=>s(e).email=o),type:"text",class:"mt-1 block w-full",autocomplete:"email"},null,8,["modelValue"]),t(c,{message:s(e).errors.email,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),a("div",P,[a("div",C,[D,t(A,{id:r.user.id,field:"avatar",isDeleteable:!0,modelValue:r.user.avatar,"onUpdate:modelValue":l[2]||(l[2]=o=>r.user.avatar=o),route:"user.image",class:"w-32 h-32 rounded-full overflow-clip bg-red-500"},null,8,["id","modelValue"])])]),a("div",F,[r.roleArr.length>0?(u(),d("div",L,[t(i,{for:"roles",value:"Role :",class:"block text-sm font-medium text-gray-700 mb-1"}),t(s(b),{modelValue:s(e).roles,"onUpdate:modelValue":l[3]||(l[3]=o=>s(e).roles=o),options:r.roleArr,selected:s(e).roles,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-gray-900",mode:"tags",searchable:!0,"close-on-select":!1},null,8,["modelValue","options","selected"]),t(c,{message:s(e).errors.roles,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])])):g("",!0),a("div",M,[t(i,{for:"status",value:"Status :",class:"block text-sm font-medium text-gray-700 mb-1"}),t(s(b),{modelValue:s(e).status,"onUpdate:modelValue":l[4]||(l[4]=o=>s(e).status=o),options:r.statusArr,selected:s(e).status,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-700",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"}},null,8,["modelValue","options","selected","classes"]),t(c,{message:s(e).errors.status,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])])])])])])]),a("div",R,[t(I,{disabled:s(e).processing},{default:x(()=>[U("Update")]),_:1},8,["disabled"]),t(V,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:x(()=>[s(e).recentlySuccessful?(u(),d("p",q," Ppdated. ")):g("",!0)]),_:1})])],40,j)]))}};export{se as default}; diff --git a/public/build/assets/EditUserForm-c8abdbad.js b/public/build/assets/EditUserForm-c8abdbad.js deleted file mode 100644 index 0f26713..0000000 --- a/public/build/assets/EditUserForm-c8abdbad.js +++ /dev/null @@ -1 +0,0 @@ -import{p as n,u as k,o as d,g as u,d as a,a as t,b as s,h as g,w as x,T as V,f as w,e as U}from"./app-a07534fc.js";import{_ as A}from"./Image-ef3ae8a1.js";import{_ as c}from"./InputError-819a2731.js";import{_ as i}from"./InputLabel-0d88b11e.js";import{_ as I}from"./PrimaryButton-f1dd44c4.js";import{_}from"./TextInput-6d371888.js";import{s as b}from"./default.css_vue_type_style_index_0_src_true_lang-5ba86734.js";import"./DangerButton-1432f67e.js";import"./SecondaryButton-e6cce7b4.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";const S={class:"dark:text-white"},j=["onSubmit"],N={class:"mt-10 sm:mt-0"},$={class:"shadow sm:rounded-md"},B={class:"bg-white dark:bg-gray-800 px-4 py-5 sm:p-6"},E={class:"grid grid-cols-6 gap-6"},T={class:"col-span-6 sm:col-span-3"},O={class:"col-span-6 sm:col-span-3"},P={class:"col-span-6 sm:col-span-3"},C={class:"p-4 space-x-5 shadow flex items-center min-h-full h-[150px]"},F=a("div",{class:"text-2x block text-center text-2xl"}," Avatar: ",-1),D={class:"col-span-6 sm:col-span-3 grid grid-cols-6 gap-5 items-center justify-between"},L={key:0,class:"col-span-3"},M={class:"col-span-3"},R={class:"flex items-center justify-end pr-5 py-5"},q={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},te={__name:"EditUserForm",props:{roleArr:Object,user:Object,statusArr:Object},setup(r){const m=r,p=n(null),f=n(null),v=n(null),y=n(null),e=k({name:m.user.name,email:m.user.email,status:m.user.status,roles:m.user.has_roles}),h=()=>{e.post(route("admin.user.update",m.user.id),{preserveScroll:!0,onSuccess:()=>e.reset(),onError:()=>{e.errors.name&&p.value.focus(),e.errors.email&&f.value.focus(),e.errors.status&&v.value.focus(),e.errors.roles&&y.value.focus()}})};return(z,l)=>(d(),u("section",S,[a("form",{onSubmit:w(h,["prevent"]),class:"mt-6 space-y-6 p-3"},[a("div",N,[a("div",$,[a("div",B,[a("div",E,[a("div",T,[t(i,{for:"name",value:"Name :",class:"block text-sm font-medium text-gray-700"}),t(_,{id:"name",ref_key:"nameInput",ref:p,modelValue:s(e).name,"onUpdate:modelValue":l[0]||(l[0]=o=>s(e).name=o),type:"text",class:"mt-1 block w-full",autocomplete:"name"},null,8,["modelValue"]),t(c,{message:s(e).errors.name,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),a("div",O,[t(i,{for:"email",value:"Email :",class:"block text-sm font-medium text-gray-700"}),t(_,{id:"email",ref_key:"emailInput",ref:f,modelValue:s(e).email,"onUpdate:modelValue":l[1]||(l[1]=o=>s(e).email=o),type:"text",class:"mt-1 block w-full",autocomplete:"email"},null,8,["modelValue"]),t(c,{message:s(e).errors.email,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),a("div",P,[a("div",C,[F,t(A,{id:r.user.id,field:"avatar",isDeleteable:!0,modelValue:r.user.avatar,"onUpdate:modelValue":l[2]||(l[2]=o=>r.user.avatar=o),route:"user.image",class:"w-32 h-32 rounded-full overflow-clip bg-red-500"},null,8,["id","modelValue"])])]),a("div",D,[r.roleArr.length>0?(d(),u("div",L,[t(i,{for:"roles",value:"Role :",class:"block text-sm font-medium text-gray-700 mb-1"}),t(s(b),{modelValue:s(e).roles,"onUpdate:modelValue":l[3]||(l[3]=o=>s(e).roles=o),options:r.roleArr,selected:s(e).roles,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-gray-900",mode:"tags",searchable:!0,"close-on-select":!1},null,8,["modelValue","options","selected"]),t(c,{message:s(e).errors.roles,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])])):g("",!0),a("div",M,[t(i,{for:"status",value:"Status :",class:"block text-sm font-medium text-gray-700 mb-1"}),t(s(b),{modelValue:s(e).status,"onUpdate:modelValue":l[4]||(l[4]=o=>s(e).status=o),options:r.statusArr,selected:s(e).status,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-800",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"}},null,8,["modelValue","options","selected"]),t(c,{message:s(e).errors.status,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])])])])])])]),a("div",R,[t(I,{disabled:s(e).processing},{default:x(()=>[U("Update")]),_:1},8,["disabled"]),t(V,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:x(()=>[s(e).recentlySuccessful?(d(),u("p",q," Ppdated. ")):g("",!0)]),_:1})])],40,j)]))}};export{te as default}; diff --git a/public/build/assets/EnvelopeIcon-fcce7294.js b/public/build/assets/EnvelopeIcon-fcce7294.js deleted file mode 100644 index 6ab0a01..0000000 --- a/public/build/assets/EnvelopeIcon-fcce7294.js +++ /dev/null @@ -1 +0,0 @@ -import{o as e,g as r,d as o}from"./app-a07534fc.js";function s(a,t){return e(),r("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true"},[o("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M21.75 6.75v10.5a2.25 2.25 0 01-2.25 2.25h-15a2.25 2.25 0 01-2.25-2.25V6.75m19.5 0A2.25 2.25 0 0019.5 4.5h-15a2.25 2.25 0 00-2.25 2.25m19.5 0v.243a2.25 2.25 0 01-1.07 1.916l-7.5 4.615a2.25 2.25 0 01-2.36 0L3.32 8.91a2.25 2.25 0 01-1.07-1.916V6.75"})])}export{s as r}; diff --git a/public/build/assets/Feature-08a626c7.js b/public/build/assets/Feature-08a626c7.js deleted file mode 100644 index 6a8d144..0000000 --- a/public/build/assets/Feature-08a626c7.js +++ /dev/null @@ -1 +0,0 @@ -import{o as a,g as r,d as t,t as s,F as o,m as c}from"./app-a07534fc.js";const i={"aria-labelledby":"perks-heading",class:"border-t border-b border-gray-200 dark:border-gray-700 bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50"},n={class:"text-center mt-5"},g={class:"text-2xl md:text-4xl mb-2"},m={class:"mx-auto max-w-full py-8 px-4 sm:px-4 sm:py-12 lg:px-8"},_={class:"grid grid-cols-1 gap-y-12 sm:grid-cols-2 sm:gap-x-6 lg:grid-cols-4 lg:gap-x-8 lg:gap-y-0"},x={class:"md:flex-shrink-0"},p={class:"grid place-content-center"},y=["src","alt"],h={class:"mt-6 md:mt-0 md:ml-4 lg:mt-6 lg:ml-0"},b={class:"text-base font-medium text-gray-900 dark:text-gray-100"},u={class:"mt-3 text-sm text-gray-500 dark:text-gray-300"},v={__name:"Feature",props:{specialFeatures:Object},setup(d){return(l,k)=>(a(),r("section",i,[t("div",n,[t("h1",g,s(l.__("special.feature.title")),1),t("p",null,s(l.__("special.feature.description")),1)]),t("div",m,[t("div",_,[(a(!0),r(o,null,c(d.specialFeatures,e=>(a(),r("div",{key:e.id,class:"py-24 px-4 sm:px-6 sm:py-24 lg:px-8 text-center md:flex md:items-start md:text-left lg:block lg:text-center bg-cyan-50 dark:bg-gray-800"},[t("div",x,[t("div",p,[t("img",{src:e.image,alt:e.title,class:"w-12 h-12 md:w-16 md:h-16 rounded-full"},null,8,y)])]),t("div",h,[t("h3",b,s(e.title),1),t("p",u,s(e.description),1)])]))),128))])])]))}};export{v as default}; diff --git a/public/build/assets/FeatureProducts-a35935b7.js b/public/build/assets/FeatureProducts-a35935b7.js deleted file mode 100644 index 3aa86f5..0000000 --- a/public/build/assets/FeatureProducts-a35935b7.js +++ /dev/null @@ -1 +0,0 @@ -import{r as g,o as s,g as a,d as e,t as o,F as m,m as u,h,a as i,w as n,e as _}from"./app-a07534fc.js";const p={key:0,class:"bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50 mt-5"},x={class:"mx-auto max-w-full overflow-hidden sm:px-6 lg:px-8"},f={class:"text-center mb-5 md:mb-7"},b={class:"text-2xl md:text-4xl mb-2"},y={class:"-mx-px grid grid-cols-2 border-l border-gray-200 sm:mx-0 md:grid-cols-3 lg:grid-cols-4"},k={class:"aspect-w-1 aspect-h-1 overflow-hidden rounded-lg bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50 group-hover:opacity-75"},v=["src","alt"],w={class:"pt-10 pb-4 text-center"},N={class:"text-sm font-medium bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50"},j={__name:"FeatureProducts",props:{featuredProducts:Object},setup(d){return(r,P)=>{var l;const c=g("Link");return((l=d.featuredProducts)==null?void 0:l.length)>0?(s(),a("div",p,[e("div",x,[e("div",f,[e("h1",b,o(r.__("featured.product.title")),1),e("p",null,o(r.__("featured.product.description")),1)]),e("div",y,[(s(!0),a(m,null,u(d.featuredProducts,t=>(s(),a("div",{key:t.id,class:"group border border-gray-200 p-4 sm:p-6 mr-[1px] sm:mr-0"},[e("div",k,[i(c,{href:r.route("product.show",t.slug)},{default:n(()=>[e("img",{src:t.image,alt:t.image,class:"h-full w-full object-cover object-center"},null,8,v)]),_:2},1032,["href"])]),e("div",w,[e("h3",N,[i(c,{href:r.route("product.show",t.slug)},{default:n(()=>[_(o(t.title),1)]),_:2},1032,["href"])])])]))),128))])])])):h("",!0)}}};export{j as default}; diff --git a/public/build/assets/FeaturedBlog-66eaae95.js b/public/build/assets/FeaturedBlog-66eaae95.js deleted file mode 100644 index a68a513..0000000 --- a/public/build/assets/FeaturedBlog-66eaae95.js +++ /dev/null @@ -1 +0,0 @@ -import{r as u,o as l,g as o,d as e,t as s,F as h,m,a as c,w as d,e as f}from"./app-a07534fc.js";const g={class:"relative bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50 py-6 sm:py-10"},p={class:"relative"},v={class:"mx-auto max-w-md px-6 text-center sm:max-w-3xl lg:max-w-full lg:px-8"},w={class:"text-lg font-semibold text-cyan-600"},y={class:"mt-2 text-3xl font-bold tracking-tight text-gray-900 dark:text-gray-200 sm:text-4xl"},k={class:"mx-auto mt-5 max-w-prose text-xl text-gray-500"},b={class:"mx-auto mt-12 grid max-w-md gap-8 px-6 sm:max-w-lg lg:max-w-full lg:grid-cols-3 lg:px-8"},B={class:"flex-shrink-0"},N=["src"],j={class:"flex flex-1 flex-col justify-between bg-white p-6"},F={class:"flex-1"},L=["href"],V={class:"text-xl font-semibold text-gray-900"},C={class:"mt-3 text-base text-gray-500"},D={class:"mt-6 flex items-center"},E={class:"flex-shrink-0"},O=["href"],S=["src","alt"],T={class:"ml-3"},q={class:"text-sm font-medium text-gray-900"},z=["href"],A={class:"flex space-x-1 text-sm text-gray-500"},I={__name:"FeaturedBlog",props:{featuredBlog:Object},setup(x){return(a,G)=>{const r=u("Link");return l(),o("div",g,[e("div",p,[e("div",v,[e("h2",w,s(a.__("blog.heading")),1),e("p",y,s(a.__("blog.sub_heading")),1),e("p",k,s(a.__("blog.description")),1)]),e("div",b,[(l(!0),o(h,null,m(x.featuredBlog,t=>{var n,_;return l(),o("div",{key:t.id,class:"flex flex-col overflow-hidden rounded-lg shadow-lg"},[e("div",B,[c(r,{href:a.route("blog.show",t.slug)},{default:d(()=>[e("img",{class:"h-48 w-full object-cover",src:t.image,alt:""},null,8,N)]),_:2},1032,["href"])]),e("div",j,[e("div",F,[(l(!0),o(h,null,m(t.categories.slice(0,3),i=>(l(),o("p",{className:"text-sm font-medium text-blue-500",key:i.id},[c(r,{href:a.route("category.show",i.slug),className:"hover:underline"},{default:d(()=>[f(s(i.title),1)]),_:2},1032,["href"])]))),128)),e("a",{href:t.href,class:"mt-2 block"},[c(r,{href:a.route("blog.show",t.slug),class:"mt-2 block"},{default:d(()=>[e("p",V,s(t.title),1)]),_:2},1032,["href"]),e("p",C,s(t.description.split(" ").slice(0,15).join(" ")+" ..."),1)],8,L)]),e("div",D,[e("div",E,[e("a",{href:(n=t.user)==null?void 0:n.href},[e("img",{class:"h-10 w-10 rounded-full",src:t.user.avatar,alt:t.user.name},null,8,S)],8,O)]),e("div",T,[e("p",q,[e("a",{href:(_=t.user)==null?void 0:_.href,class:"hover:underline"},s(t.user.name),9,z)]),e("div",A,[e("span",null,s(t.created_at),1)])])])])])}),128))])])])}}};export{I as default}; diff --git a/public/build/assets/FeaturedCategory-5ba4c5b6.js b/public/build/assets/FeaturedCategory-5ba4c5b6.js deleted file mode 100644 index eddc17c..0000000 --- a/public/build/assets/FeaturedCategory-5ba4c5b6.js +++ /dev/null @@ -1 +0,0 @@ -import{r as n,o,g as c,d as e,t as s,F as d,m,h as g,c as h,w as p}from"./app-a07534fc.js";const _={key:0,class:"bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50 my-5 sm:my-5 md:lg-3"},u={class:"mx-auto max-w-xl px-4 sm:px-6 lg:max-w-full lg:px-8 py-2 sm:py-3 lg:py-5"},x={class:"text-center mb-5 lg:mb-10"},y={class:"text-2xl md:text-4xl mb-2"},f={class:"flex flex-wrap gap-10 justify-center"},w={"aria-hidden":"true",class:"aspect-w-3 aspect-h-3 overflow-hidden rounded-lg group-hover:opacity-75 lg:aspect-w-6 lg:aspect-h-6"},b=["src","alt"],k={class:"mt-4 text-base font-semibold text-gray-900 dark:text-gray-100"},v={class:"mt-2 text-sm text-gray-500"},C={__name:"FeaturedCategory",props:{categories:Object},setup(r){return(a,j)=>{var l;const i=n("Link");return((l=r.categories)==null?void 0:l.length)>0?(o(),c("div",_,[e("div",u,[e("div",x,[e("h1",y,s(a.__("featured.category.title")),1),e("p",null,s(a.__("featured.category.description")),1)]),e("div",f,[(o(!0),c(d,null,m(r.categories,t=>(o(),h(i,{key:t.title,href:a.route("category.show",t.slug),class:"group block mb-2 md:mb-5 w-96"},{default:p(()=>[e("div",w,[e("img",{src:t.image,alt:t.title,class:"h-80 w-80 sm:h-80 sm:w-80 lg:h-96 lg:w-96 object-center object-cover"},null,8,b)]),e("h3",k,s(t.title),1),e("p",v,s(t.description),1)]),_:2},1032,["href"]))),128))])])])):g("",!0)}}};export{C as default}; diff --git a/public/build/assets/ForgotPassword-c6af8439.js b/public/build/assets/ForgotPassword-3b139713.js similarity index 75% rename from public/build/assets/ForgotPassword-c6af8439.js rename to public/build/assets/ForgotPassword-3b139713.js index 3df74ab..7a7c7f1 100644 --- a/public/build/assets/ForgotPassword-c6af8439.js +++ b/public/build/assets/ForgotPassword-3b139713.js @@ -1 +1 @@ -import{v as p,c as d,w as i,o as l,a as s,u as o,X as k,b as r,t as a,h as y,q as c,d as m,n as x,e as h,k as v}from"./app-4f9e7dfc.js";import{_ as b,a as w}from"./InputLabel-5969cc22.js";import{_ as V}from"./PrimaryButton-89a514d8.js";import{_ as B}from"./TextInput-5a299594.js";import{_ as $}from"./GuestLayout-4014bb8c.js";import"./ApplicationLogo-1c8f1468.js";import"./defaultFile-106f3fb6.js";import"./Toast-3242a059.js";import"./toast-c1edb8fd.js";const C={class:"mb-4 text-sm text-gray-600 dark:text-gray-400"},N={key:0,class:"mb-4 font-medium text-sm text-green-600 dark:text-green-400"},S=["onSubmit"],j={class:"flex items-center justify-end mt-4"},q={class:"flex items-center justify-between mt-5 space-x-2"},U={__name:"ForgotPassword",props:{status:String,canRegister:Boolean},setup(n){const t=p({email:""}),g=()=>{t.post(route("password.email"))};return(e,f)=>{const u=v("Link");return l(),d($,null,{default:i(()=>[s(o(k),{title:"Forgot Password"}),r("div",C,a(e.__("forget.heading")),1),n.status?(l(),y("div",N,a(n.status),1)):c("",!0),r("form",{onSubmit:h(g,["prevent"])},[r("div",null,[s(b,{for:"email",value:e.__("forget.form.email")},null,8,["value"]),s(B,{id:"email",type:"email",class:"mt-1 block w-full",modelValue:o(t).email,"onUpdate:modelValue":f[0]||(f[0]=_=>o(t).email=_),required:"",autofocus:"",autocomplete:"username"},null,8,["modelValue"]),s(w,{class:"mt-2",message:o(t).errors.email},null,8,["message"])]),r("div",j,[s(V,{class:x({"opacity-25":o(t).processing}),disabled:o(t).processing},{default:i(()=>[m(a(e.__("forget.link")),1)]),_:1},8,["class","disabled"])]),r("div",q,[s(u,{class:"underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800",href:e.route("login")},{default:i(()=>[m(a(e.__("forget.login_link_text")),1)]),_:1},8,["href"]),n.canRegister?(l(),d(u,{key:0,href:e.route("register"),class:"underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800"},{default:i(()=>[m(a(e.__("forget.registration_link")),1)]),_:1},8,["href"])):c("",!0)])],40,S)]),_:1})}}};export{U as default}; +import{v as p,c as d,w as i,o as l,a as s,u as o,X as k,b as r,t as a,f as y,g as c,d as m,n as x,e as h,r as v}from"./app-4dfa7f3b.js";import{_ as b,a as w}from"./InputLabel-fec82426.js";import{_ as V}from"./PrimaryButton-2b535c8b.js";import{_ as B}from"./TextInput-fb418c8e.js";import{_ as $}from"./GuestLayout-ac5d3072.js";import"./ApplicationLogo-77a8e36b.js";import"./defaultFile-2b6c57d3.js";import"./Toast-645f4c7b.js";import"./toast-ded66f04.js";const C={class:"mb-4 text-sm text-gray-600 dark:text-gray-400"},N={key:0,class:"mb-4 font-medium text-sm text-green-600 dark:text-green-400"},S=["onSubmit"],j={class:"flex items-center justify-end mt-4"},F={class:"flex items-center justify-between mt-5 space-x-2"},U={__name:"ForgotPassword",props:{status:String,canRegister:Boolean},setup(n){const t=p({email:""}),g=()=>{t.post(route("password.email"))};return(e,f)=>{const u=v("Link");return l(),d($,null,{default:i(()=>[s(o(k),{title:"Forgot Password"}),r("div",C,a(e.__("forget.heading")),1),n.status?(l(),y("div",N,a(n.status),1)):c("",!0),r("form",{onSubmit:h(g,["prevent"])},[r("div",null,[s(b,{for:"email",value:e.__("forget.form.email")},null,8,["value"]),s(B,{id:"email",type:"email",class:"mt-1 block w-full",modelValue:o(t).email,"onUpdate:modelValue":f[0]||(f[0]=_=>o(t).email=_),required:"",autofocus:"",autocomplete:"username"},null,8,["modelValue"]),s(w,{class:"mt-2",message:o(t).errors.email},null,8,["message"])]),r("div",j,[s(V,{class:x({"opacity-25":o(t).processing}),disabled:o(t).processing},{default:i(()=>[m(a(e.__("forget.link")),1)]),_:1},8,["class","disabled"])]),r("div",F,[s(u,{class:"underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800",href:e.route("login")},{default:i(()=>[m(a(e.__("forget.login_link_text")),1)]),_:1},8,["href"]),n.canRegister?(l(),d(u,{key:0,href:e.route("register"),class:"underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800"},{default:i(()=>[m(a(e.__("forget.registration_link")),1)]),_:1},8,["href"])):c("",!0)])],40,S)]),_:1})}}};export{U as default}; diff --git a/public/build/assets/ForgotPassword-ddf38d38.js b/public/build/assets/ForgotPassword-ddf38d38.js deleted file mode 100644 index 57912cf..0000000 --- a/public/build/assets/ForgotPassword-ddf38d38.js +++ /dev/null @@ -1 +0,0 @@ -import{u as p,r as k,o as l,c as d,w as i,a as s,b as o,H as y,d as r,t as a,g as x,h as c,e as m,n as h,f as v}from"./app-a07534fc.js";import{_ as b}from"./InputError-819a2731.js";import{_ as w}from"./InputLabel-0d88b11e.js";import{_ as V}from"./PrimaryButton-f1dd44c4.js";import{_ as B}from"./TextInput-6d371888.js";import{_ as $}from"./GuestLayout-8f04497b.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";const C={class:"mb-4 text-sm text-gray-600 dark:text-gray-400"},N={key:0,class:"mb-4 font-medium text-sm text-green-600 dark:text-green-400"},S=["onSubmit"],F={class:"flex items-center justify-end mt-4"},j={class:"flex items-center justify-between mt-5 space-x-2"},T={__name:"ForgotPassword",props:{status:String,canRegister:Boolean},setup(n){const t=p({email:""}),g=()=>{t.post(route("password.email"))};return(e,f)=>{const u=k("Link");return l(),d($,null,{default:i(()=>[s(o(y),{title:"Forgot Password"}),r("div",C,a(e.__("forget.heading")),1),n.status?(l(),x("div",N,a(n.status),1)):c("",!0),r("form",{onSubmit:v(g,["prevent"])},[r("div",null,[s(w,{for:"email",value:e.__("forget.form.email")},null,8,["value"]),s(B,{id:"email",type:"email",class:"mt-1 block w-full",modelValue:o(t).email,"onUpdate:modelValue":f[0]||(f[0]=_=>o(t).email=_),required:"",autofocus:"",autocomplete:"username"},null,8,["modelValue"]),s(b,{class:"mt-2",message:o(t).errors.email},null,8,["message"])]),r("div",F,[s(V,{class:h({"opacity-25":o(t).processing}),disabled:o(t).processing},{default:i(()=>[m(a(e.__("forget.link")),1)]),_:1},8,["class","disabled"])]),r("div",j,[s(u,{class:"underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800",href:e.route("login")},{default:i(()=>[m(a(e.__("forget.login_link_text")),1)]),_:1},8,["href"]),n.canRegister?(l(),d(u,{key:0,href:e.route("register"),class:"underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800"},{default:i(()=>[m(a(e.__("forget.registration_link")),1)]),_:1},8,["href"])):c("",!0)])],40,S)]),_:1})}}};export{T as default}; diff --git a/public/build/assets/Form-055ef52e.js b/public/build/assets/Form-055ef52e.js deleted file mode 100644 index aa07617..0000000 --- a/public/build/assets/Form-055ef52e.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as r}from"./InputError-819a2731.js";import{_ as d}from"./InputLabel-0d88b11e.js";import{_ as h,a as z}from"./SecondaryButton-e6cce7b4.js";import{_ as C}from"./Textarea-1fe62e1d.js";import{_ as c}from"./TextInput-6d371888.js";import{u as U}from"./useCountries-62ba1c05.js";import{p as u,u as $,o as B,g as F,a as t,w as V,d as a,b as s,e as N,n as S}from"./app-a07534fc.js";import{s as T}from"./default.css_vue_type_style_index_0_src_true_lang-5ba86734.js";const E={class:"p-6 bg-white text-gray-900 dark:bg-gray-800 dark:text-gray-50"},j={action:""},A={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},L={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},M={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},P={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},R={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},Z={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},q={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},D={class:"mt-6 flex justify-end"},G=["disabled"],ee={__name:"Form",props:["modelValue"],emits:["update:modelValue"],setup(k,{emit:v}){const{userCountry:i,countries:b}=U(),n=()=>{v("update:modelValue",!1)},p=u(null),m=u(null),f=u(null),y=u(null),_=u(null),g=u(null),x=u(null),e=$({title:"",address:"",city:"",state:"",district:"",zip_code:"",country:i==null?void 0:i.country}),w=I=>{e.post(route("address.store"),{preserveScroll:!0,onSuccess:()=>n(),onError:()=>{e.errors.title&&p.value.focus(),e.errors.address&&m.value.focus(),e.errors.city&&f.value.focus(),e.errors.state&&y.value.focus(),e.errors.district&&_.value.focus(),e.errors.zip_code&&g.value.focus(),e.errors.country&&x.value.focus()},onFinish:()=>e.reset()})};return(I,l)=>(B(),F("section",null,[t(h,{show:k.modelValue,onClose:n},{default:V(()=>[a("div",E,[a("form",j,[a("div",A,[t(d,{for:"title",value:"Title: ",class:"text-xl"}),t(c,{id:"title",ref_key:"titleInput",ref:p,modelValue:s(e).title,"onUpdate:modelValue":l[0]||(l[0]=o=>s(e).title=o),type:"title",class:"block w-full h-8 p-1",placeholder:"Input your address title"},null,8,["modelValue"]),t(r,{message:s(e).errors.title,class:"mt-2"},null,8,["message"])]),a("div",L,[t(d,{for:"address",value:"Address: ",class:"text-xl"}),t(C,{id:"address",ref_key:"addresslInput",ref:m,modelValue:s(e).address,"onUpdate:modelValue":l[1]||(l[1]=o=>s(e).address=o),type:"address",class:"block w-full h-8 p-1",placeholder:"Input your address"},null,8,["modelValue"]),t(r,{message:s(e).errors.address,class:"mt-2"},null,8,["message"])]),a("div",M,[t(d,{for:"city",value:"city: ",class:"text-xl"}),t(c,{id:"city",ref_key:"cityInput",ref:f,modelValue:s(e).city,"onUpdate:modelValue":l[2]||(l[2]=o=>s(e).city=o),type:"city",class:"block w-full h-8 p-1",placeholder:"Input your city"},null,8,["modelValue"]),t(r,{message:s(e).errors.city,class:"mt-2"},null,8,["message"])]),a("div",P,[t(d,{for:"state",value:"State: ",class:"text-xl"}),t(c,{id:"state",ref_key:"stateInput",ref:y,modelValue:s(e).state,"onUpdate:modelValue":l[3]||(l[3]=o=>s(e).state=o),type:"state",class:"block w-full p-1",placeholder:"Input your state"},null,8,["modelValue"]),t(r,{message:s(e).errors.state,class:"mt-2"},null,8,["message"])]),a("div",R,[t(d,{for:"district",value:"district: ",class:"text-xl"}),t(c,{id:"district",ref_key:"districtInput",ref:_,modelValue:s(e).district,"onUpdate:modelValue":l[4]||(l[4]=o=>s(e).district=o),type:"district",class:"block w-full h-8 p-1",placeholder:"Input your district"},null,8,["modelValue"]),t(r,{message:s(e).errors.district,class:"mt-2"},null,8,["message"])]),a("div",Z,[t(d,{for:"zip_code",value:"Zip Code: ",class:"text-xl"}),t(c,{id:"zip_code",ref_key:"zipCodeInput",ref:g,modelValue:s(e).zip_code,"onUpdate:modelValue":l[5]||(l[5]=o=>s(e).zip_code=o),type:"zip_code",class:"block w-full h-8 p-1",placeholder:"Input your zip code"},null,8,["modelValue"]),t(r,{message:s(e).errors.zip_code,class:"mt-2"},null,8,["message"])]),a("div",q,[t(d,{for:"country",value:"Country: ",class:"text-xl"}),t(s(T),{modelValue:s(e).country,"onUpdate:modelValue":l[6]||(l[6]=o=>s(e).country=o),options:s(b),selected:s(e).country,ref_key:"countryInput",ref:x,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-800",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"},id:"country"},null,8,["modelValue","options","selected"]),t(r,{message:s(e).errors.country,class:"mt-2"},null,8,["message"])]),a("div",D,[t(z,{onClick:n},{default:V(()=>[N(" Cancel ")]),_:1}),a("button",{class:S(["ml-3 btn btn-primary",{"opacity-25":s(e).processing}]),disabled:s(e).processing,onClick:l[7]||(l[7]=o=>w())}," Create ",10,G)])])])]),_:1},8,["show"])]))}};export{ee as default}; diff --git a/public/build/assets/Form-63bc343c.js b/public/build/assets/Form-63bc343c.js deleted file mode 100644 index f190be4..0000000 --- a/public/build/assets/Form-63bc343c.js +++ /dev/null @@ -1 +0,0 @@ -import{p as l,u as x,o as h,g as k,d as e,t as r,j as m,Z as c,b as t,a as i,f as v}from"./app-a07534fc.js";import{_ as d}from"./InputError-819a2731.js";const w={class:"py-10 px-6 sm:px-10 lg:col-span-2 xl:p-12"},j={class:"text-lg font-medium text-gray-900 dark:text-gray-50"},I=["onSubmit"],V={for:"first-name",class:"block text-sm font-medium text-gray-900 dark:text-gray-50"},N={class:"mt-1"},S={class:"flex justify-between"},U={for:"last-name",class:"block text-sm font-medium text-gray-900 dark:text-gray-50"},B={id:"last-name-optional",class:"text-sm text-gray-500 dark:text-gray-300"},D={class:"mt-1"},E={for:"email",class:"block text-sm font-medium text-gray-900 dark:text-gray-50"},F={class:"mt-1"},M={class:"flex justify-between"},T={for:"phone",class:"block text-sm font-medium text-gray-900 dark:text-gray-50"},C={id:"phone-optional",class:"text-sm text-gray-500 dark:text-gray-300"},O={class:"mt-1"},P={class:"sm:col-span-2"},Z={for:"subject",class:"block text-sm font-medium text-gray-900 dark:text-gray-50"},$={class:"mt-1"},q={class:"sm:col-span-2"},z={class:"flex justify-between"},A={for:"message",class:"block text-sm font-medium text-gray-900 dark:text-gray-50"},G={id:"message-max",class:"text-sm text-gray-500 dark:text-gray-300"},H={class:"mt-1"},J={class:"sm:col-span-2 sm:flex sm:justify-end"},K={type:"submit",class:"mt-2 inline-flex w-full items-center justify-center rounded-md border border-transparent bg-cyan-600 px-6 py-3 text-base font-medium text-white shadow-sm hover:bg-cyan-700 focus:outline-none focus:ring-2 focus:ring-cyan-500 focus:ring-offset-2 sm:w-auto"},W={__name:"Form",setup(L){const u=l(null),f=l(null),p=l(null),_=l(null),g=l(null),y=l(null),s=x({first_name:"",last_name:"",email:"",phone:"",subject:"",message:""}),b=()=>{s.post(route("contact.store"),{preserveScroll:!0,onSuccess:()=>s.reset(),onError:()=>{s.errors.first_name&&u.value.focus(),s.errors.last_name&&f.value.focus(),s.errors.email&&p.value.focus(),s.errors.phone&&_.value.focus(),s.errors.subject&&g.value.focus(),s.errors.message&&y.value.focus()}})};return(o,a)=>(h(),k("div",w,[e("h3",j,r(o.__("contact.form.title")),1),e("form",{onSubmit:v(b,["prevent"]),method:"POST",class:"mt-6 grid grid-cols-1 gap-y-6 sm:grid-cols-2 sm:gap-x-8"},[e("div",null,[e("label",V,r(o.__("contact.form.first_name")),1),e("div",N,[m(e("input",{type:"text",name:"first-name",id:"first-name",ref_key:"firstNameInput",ref:u,"onUpdate:modelValue":a[0]||(a[0]=n=>t(s).first_name=n),autocomplete:"given-first_name",class:"block w-full rounded-md border-gray-300 py-3 px-4 text-gray-900 shadow-sm focus:border-cyan-500 focus:ring-cyan-500"},null,512),[[c,t(s).first_name]]),i(d,{message:t(s).errors.first_name,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])])]),e("div",null,[e("div",S,[e("label",U,r(o.__("contact.form.last_name")),1),e("span",B,r(o.__("contact.form.last_name_optional")),1)]),e("div",D,[m(e("input",{type:"text",name:"last-name",id:"last-name",ref_key:"lastNameInput",ref:f,"onUpdate:modelValue":a[1]||(a[1]=n=>t(s).last_name=n),autocomplete:"family-last_name",class:"block w-full rounded-md border-gray-300 py-3 px-4 text-gray-900 shadow-sm focus:border-cyan-500 focus:ring-cyan-500"},null,512),[[c,t(s).last_name]]),i(d,{message:t(s).errors.last_name,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])])]),e("div",null,[e("label",E,r(o.__("contact.form.email")),1),e("div",F,[m(e("input",{id:"email",name:"email",type:"email",ref_key:"emailInput",ref:p,"onUpdate:modelValue":a[2]||(a[2]=n=>t(s).email=n),autocomplete:"email",class:"block w-full rounded-md border-gray-300 py-3 px-4 text-gray-900 shadow-sm focus:border-cyan-500 focus:ring-cyan-500"},null,512),[[c,t(s).email]]),i(d,{message:t(s).errors.email,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])])]),e("div",null,[e("div",M,[e("label",T,r(o.__("contact.form.phone")),1),e("span",C,r(o.__("contact.form.phone_optional")),1)]),e("div",O,[m(e("input",{type:"text",name:"phone",id:"phone",ref_key:"phoneInput",ref:_,"onUpdate:modelValue":a[3]||(a[3]=n=>t(s).phone=n),autocomplete:"tel",class:"block w-full rounded-md border-gray-300 py-3 px-4 text-gray-900 shadow-sm focus:border-cyan-500 focus:ring-cyan-500","aria-describedby":"phone-optional"},null,512),[[c,t(s).phone]]),i(d,{message:t(s).errors.phone,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])])]),e("div",P,[e("label",Z,r(o.__("contact.form.subject")),1),e("div",$,[m(e("input",{type:"text",name:"subject",id:"subject",ref_key:"subjectInput",ref:g,"onUpdate:modelValue":a[4]||(a[4]=n=>t(s).subject=n),class:"block w-full rounded-md border-gray-300 py-3 px-4 text-gray-900 shadow-sm focus:border-cyan-500 focus:ring-cyan-500"},null,512),[[c,t(s).subject]]),i(d,{message:t(s).errors.subject,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])])]),e("div",q,[e("div",z,[e("label",A,r(o.__("contact.form.message")),1),e("span",G,r(o.__("contact.form.subject_taxt_max")),1)]),e("div",H,[m(e("textarea",{id:"message",name:"message",rows:"4",ref_key:"messageInput",ref:y,"onUpdate:modelValue":a[5]||(a[5]=n=>t(s).message=n),class:"block w-full rounded-md border-gray-300 py-3 px-4 text-gray-900 shadow-sm focus:border-cyan-500 focus:ring-cyan-500","aria-describedby":"message-max"},null,512),[[c,t(s).message]]),i(d,{message:t(s).errors.message,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])])]),e("div",J,[e("button",K,r(o.__("contact.form.submit")),1)])],40,I)]))}};export{W as default}; diff --git a/public/build/assets/Form-c1471be5.js b/public/build/assets/Form-db1e14f4.js similarity index 90% rename from public/build/assets/Form-c1471be5.js rename to public/build/assets/Form-db1e14f4.js index 8f1dcbd..78c68dc 100644 --- a/public/build/assets/Form-c1471be5.js +++ b/public/build/assets/Form-db1e14f4.js @@ -1 +1 @@ -import{_ as r,a as d}from"./InputLabel-5969cc22.js";import{_ as h,a as z}from"./SecondaryButton-5f2daf35.js";import{_ as C}from"./Textarea-01085d86.js";import{_ as u}from"./TextInput-5a299594.js";import{a as U}from"./useCountries-7f78595f.js";import{i as c,v as $,h as B,a as t,w as V,o as N,b as a,u as s,d as S,n as T}from"./app-4f9e7dfc.js";import{s as E}from"./default.css_vue_type_style_index_0_src_true_lang-51e34c56.js";const F={class:"p-6 bg-white text-gray-900 dark:bg-gray-800 dark:text-gray-50"},j={action:""},A={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},L={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},M={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},P={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},R={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},Z={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},q={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},D={class:"mt-6 flex justify-end"},G=["disabled"],Y={__name:"Form",props:["modelValue"],emits:["update:modelValue"],setup(v,{emit:k}){const{userCountry:i,countries:b}=U(),n=()=>{k("update:modelValue",!1)},p=c(null),m=c(null),f=c(null),y=c(null),_=c(null),g=c(null),x=c(null),e=$({title:"",address:"",city:"",state:"",district:"",zip_code:"",country:i==null?void 0:i.country}),w=I=>{e.post(route("address.store"),{preserveScroll:!0,onSuccess:()=>n(),onError:()=>{e.errors.title&&p.value.focus(),e.errors.address&&m.value.focus(),e.errors.city&&f.value.focus(),e.errors.state&&y.value.focus(),e.errors.district&&_.value.focus(),e.errors.zip_code&&g.value.focus(),e.errors.country&&x.value.focus()},onFinish:()=>e.reset()})};return(I,l)=>(N(),B("section",null,[t(h,{show:v.modelValue,onClose:n},{default:V(()=>[a("div",F,[a("form",j,[a("div",A,[t(r,{for:"title",value:"Title: ",class:"text-xl"}),t(u,{id:"title",ref_key:"titleInput",ref:p,modelValue:s(e).title,"onUpdate:modelValue":l[0]||(l[0]=o=>s(e).title=o),type:"title",class:"block w-full h-8 p-1",placeholder:"Input your address title"},null,8,["modelValue"]),t(d,{message:s(e).errors.title,class:"mt-2"},null,8,["message"])]),a("div",L,[t(r,{for:"address",value:"Address: ",class:"text-xl"}),t(C,{id:"address",ref_key:"addresslInput",ref:m,modelValue:s(e).address,"onUpdate:modelValue":l[1]||(l[1]=o=>s(e).address=o),type:"address",class:"block w-full h-8 p-1",placeholder:"Input your address"},null,8,["modelValue"]),t(d,{message:s(e).errors.address,class:"mt-2"},null,8,["message"])]),a("div",M,[t(r,{for:"city",value:"city: ",class:"text-xl"}),t(u,{id:"city",ref_key:"cityInput",ref:f,modelValue:s(e).city,"onUpdate:modelValue":l[2]||(l[2]=o=>s(e).city=o),type:"city",class:"block w-full h-8 p-1",placeholder:"Input your city"},null,8,["modelValue"]),t(d,{message:s(e).errors.city,class:"mt-2"},null,8,["message"])]),a("div",P,[t(r,{for:"state",value:"State: ",class:"text-xl"}),t(u,{id:"state",ref_key:"stateInput",ref:y,modelValue:s(e).state,"onUpdate:modelValue":l[3]||(l[3]=o=>s(e).state=o),type:"state",class:"block w-full p-1",placeholder:"Input your state"},null,8,["modelValue"]),t(d,{message:s(e).errors.state,class:"mt-2"},null,8,["message"])]),a("div",R,[t(r,{for:"district",value:"district: ",class:"text-xl"}),t(u,{id:"district",ref_key:"districtInput",ref:_,modelValue:s(e).district,"onUpdate:modelValue":l[4]||(l[4]=o=>s(e).district=o),type:"district",class:"block w-full h-8 p-1",placeholder:"Input your district"},null,8,["modelValue"]),t(d,{message:s(e).errors.district,class:"mt-2"},null,8,["message"])]),a("div",Z,[t(r,{for:"zip_code",value:"Zip Code: ",class:"text-xl"}),t(u,{id:"zip_code",ref_key:"zipCodeInput",ref:g,modelValue:s(e).zip_code,"onUpdate:modelValue":l[5]||(l[5]=o=>s(e).zip_code=o),type:"zip_code",class:"block w-full h-8 p-1",placeholder:"Input your zip code"},null,8,["modelValue"]),t(d,{message:s(e).errors.zip_code,class:"mt-2"},null,8,["message"])]),a("div",q,[t(r,{for:"country",value:"Country: ",class:"text-xl"}),t(s(E),{modelValue:s(e).country,"onUpdate:modelValue":l[6]||(l[6]=o=>s(e).country=o),options:s(b),selected:s(e).country,ref_key:"countryInput",ref:x,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-700",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"},id:"country"},null,8,["modelValue","options","selected","classes"]),t(d,{message:s(e).errors.country,class:"mt-2"},null,8,["message"])]),a("div",D,[t(z,{onClick:n},{default:V(()=>[S(" Cancel ")]),_:1}),a("button",{class:T(["ml-3 btn btn-primary",{"opacity-25":s(e).processing}]),disabled:s(e).processing,onClick:l[7]||(l[7]=o=>w())}," Create ",10,G)])])])]),_:1},8,["show"])]))}};export{Y as default}; +import{_ as r,a as d}from"./InputLabel-fec82426.js";import{_ as h,a as z}from"./SecondaryButton-c5891444.js";import{_ as C}from"./Textarea-f6994d96.js";import{_ as u}from"./TextInput-fb418c8e.js";import{u as U}from"./useCountries-759a7ea1.js";import{p as c,v as $,f as B,a as t,w as V,o as N,b as a,u as s,d as S,n as T}from"./app-4dfa7f3b.js";import{s as E}from"./default.css_vue_type_style_index_0_src_true_lang-5d8f90ba.js";const F={class:"p-6 bg-white text-gray-900 dark:bg-gray-800 dark:text-gray-50"},j={action:""},A={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},L={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},M={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},P={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},R={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},Z={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},q={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},D={class:"mt-6 flex justify-end"},G=["disabled"],Y={__name:"Form",props:["modelValue"],emits:["update:modelValue"],setup(v,{emit:k}){const{userCountry:i,countries:b}=U(),n=()=>{k("update:modelValue",!1)},p=c(null),m=c(null),f=c(null),y=c(null),_=c(null),g=c(null),x=c(null),e=$({title:"",address:"",city:"",state:"",district:"",zip_code:"",country:i==null?void 0:i.country}),w=I=>{e.post(route("address.store"),{preserveScroll:!0,onSuccess:()=>n(),onError:()=>{e.errors.title&&p.value.focus(),e.errors.address&&m.value.focus(),e.errors.city&&f.value.focus(),e.errors.state&&y.value.focus(),e.errors.district&&_.value.focus(),e.errors.zip_code&&g.value.focus(),e.errors.country&&x.value.focus()},onFinish:()=>e.reset()})};return(I,l)=>(N(),B("section",null,[t(h,{show:v.modelValue,onClose:n},{default:V(()=>[a("div",F,[a("form",j,[a("div",A,[t(r,{for:"title",value:"Title: ",class:"text-xl"}),t(u,{id:"title",ref_key:"titleInput",ref:p,modelValue:s(e).title,"onUpdate:modelValue":l[0]||(l[0]=o=>s(e).title=o),type:"title",class:"block w-full h-8 p-1",placeholder:"Input your address title"},null,8,["modelValue"]),t(d,{message:s(e).errors.title,class:"mt-2"},null,8,["message"])]),a("div",L,[t(r,{for:"address",value:"Address: ",class:"text-xl"}),t(C,{id:"address",ref_key:"addresslInput",ref:m,modelValue:s(e).address,"onUpdate:modelValue":l[1]||(l[1]=o=>s(e).address=o),type:"address",class:"block w-full h-8 p-1",placeholder:"Input your address"},null,8,["modelValue"]),t(d,{message:s(e).errors.address,class:"mt-2"},null,8,["message"])]),a("div",M,[t(r,{for:"city",value:"city: ",class:"text-xl"}),t(u,{id:"city",ref_key:"cityInput",ref:f,modelValue:s(e).city,"onUpdate:modelValue":l[2]||(l[2]=o=>s(e).city=o),type:"city",class:"block w-full h-8 p-1",placeholder:"Input your city"},null,8,["modelValue"]),t(d,{message:s(e).errors.city,class:"mt-2"},null,8,["message"])]),a("div",P,[t(r,{for:"state",value:"State: ",class:"text-xl"}),t(u,{id:"state",ref_key:"stateInput",ref:y,modelValue:s(e).state,"onUpdate:modelValue":l[3]||(l[3]=o=>s(e).state=o),type:"state",class:"block w-full p-1",placeholder:"Input your state"},null,8,["modelValue"]),t(d,{message:s(e).errors.state,class:"mt-2"},null,8,["message"])]),a("div",R,[t(r,{for:"district",value:"district: ",class:"text-xl"}),t(u,{id:"district",ref_key:"districtInput",ref:_,modelValue:s(e).district,"onUpdate:modelValue":l[4]||(l[4]=o=>s(e).district=o),type:"district",class:"block w-full h-8 p-1",placeholder:"Input your district"},null,8,["modelValue"]),t(d,{message:s(e).errors.district,class:"mt-2"},null,8,["message"])]),a("div",Z,[t(r,{for:"zip_code",value:"Zip Code: ",class:"text-xl"}),t(u,{id:"zip_code",ref_key:"zipCodeInput",ref:g,modelValue:s(e).zip_code,"onUpdate:modelValue":l[5]||(l[5]=o=>s(e).zip_code=o),type:"zip_code",class:"block w-full h-8 p-1",placeholder:"Input your zip code"},null,8,["modelValue"]),t(d,{message:s(e).errors.zip_code,class:"mt-2"},null,8,["message"])]),a("div",q,[t(r,{for:"country",value:"Country: ",class:"text-xl"}),t(s(E),{modelValue:s(e).country,"onUpdate:modelValue":l[6]||(l[6]=o=>s(e).country=o),options:s(b),selected:s(e).country,ref_key:"countryInput",ref:x,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-700",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"},id:"country"},null,8,["modelValue","options","selected","classes"]),t(d,{message:s(e).errors.country,class:"mt-2"},null,8,["message"])]),a("div",D,[t(z,{onClick:n},{default:V(()=>[S(" Cancel ")]),_:1}),a("button",{class:T(["ml-3 btn btn-primary",{"opacity-25":s(e).processing}]),disabled:s(e).processing,onClick:l[7]||(l[7]=o=>w())}," Create ",10,G)])])])]),_:1},8,["show"])]))}};export{Y as default}; diff --git a/public/build/assets/GeneralSettingsForm-1239d561.js b/public/build/assets/GeneralSettingsForm-1239d561.js deleted file mode 100644 index a3c9805..0000000 --- a/public/build/assets/GeneralSettingsForm-1239d561.js +++ /dev/null @@ -1 +0,0 @@ -import{A as _,u as f,o as d,g as u,d as o,a,b as s,w as p,T as g,f as x,e as y,h as V}from"./app-a07534fc.js";import{_ as i}from"./InputError-819a2731.js";import{_ as n}from"./InputLabel-0d88b11e.js";import{_ as v}from"./PrimaryButton-f1dd44c4.js";import{_ as w}from"./Textarea-1fe62e1d.js";import{_ as r}from"./TextInput-6d371888.js";const b=o("header",{class:"text-center sm:text-left"},[o("h2",{class:"text-lg font-medium text-gray-900 dark:text-gray-100"}," Site Settings "),o("p",{class:"text-sm text-gray-600 dark:text-gray-400"}," Change Your Web Site Details ")],-1),k={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},h={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},z={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},S={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},U={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},q={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},N={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},$={class:"flex items-center justify-center gap-4 py-5 sm:py-10 flex-auto col-span-full"},T={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},M={__name:"GeneralSettingsForm",setup(B){const m=_().props.value.global.options,e=f({site_name:m.site_name,site_title:m.site_title,address:m.address,email:m.email,phone:m.phone,organization_name:m.organization_name,map:m.map});return(c,t)=>(d(),u("section",null,[b,o("form",{onSubmit:t[7]||(t[7]=x(l=>s(e).patch(c.route("admin.option.bulk.update")),["prevent"])),class:"mt-6 grid auto-cols-auto sm:grid-cols-2 gap-5 justify-between"},[o("div",k,[a(n,{class:"text-xl",for:"site_name",value:"Site Name:"}),a(r,{id:"site_name",type:"text",class:"block w-full",modelValue:s(e).site_name,"onUpdate:modelValue":t[0]||(t[0]=l=>s(e).site_name=l),required:"",autofocus:"",autocomplete:"site_name"},null,8,["modelValue"]),a(i,{class:"mt-2",message:s(e).errors.site_name},null,8,["message"])]),o("div",h,[a(n,{class:"text-xl",for:"site_title",value:"Site Title:"}),a(r,{id:"site_title",type:"text",class:"block w-full",modelValue:s(e).site_title,"onUpdate:modelValue":t[1]||(t[1]=l=>s(e).site_title=l),required:"",autocomplete:"site_title"},null,8,["modelValue"]),a(i,{class:"mt-2",message:s(e).errors.site_title},null,8,["message"])]),o("div",z,[a(n,{class:"text-xl",for:"email",value:"Email:"}),a(r,{id:"email",type:"email",class:"block w-full",modelValue:s(e).email,"onUpdate:modelValue":t[2]||(t[2]=l=>s(e).email=l),required:"",autocomplete:"email"},null,8,["modelValue"]),a(i,{class:"mt-2",message:s(e).errors.email},null,8,["message"])]),o("div",S,[a(n,{class:"text-xl",for:"phone",value:"Phone:"}),a(r,{id:"phone",type:"text",class:"block w-full",modelValue:s(e).phone,"onUpdate:modelValue":t[3]||(t[3]=l=>s(e).phone=l),required:"",autocomplete:"phone"},null,8,["modelValue"]),a(i,{class:"mt-2",message:s(e).errors.phone},null,8,["message"])]),o("div",U,[a(n,{class:"text-xl",for:"organization_name",value:"Organization Name: "}),a(r,{id:"organization_name",type:"text",class:"block w-full",modelValue:s(e).organization_name,"onUpdate:modelValue":t[4]||(t[4]=l=>s(e).organization_name=l),required:"",autocomplete:"organization_name"},null,8,["modelValue"]),a(i,{class:"mt-2",message:s(e).errors.organization_name},null,8,["message"])]),o("div",q,[a(n,{class:"text-xl",for:"map",value:"Google Map Location: "}),a(r,{id:"map",type:"text",class:"block w-full",modelValue:s(e).map,"onUpdate:modelValue":t[5]||(t[5]=l=>s(e).map=l),required:"",autocomplete:"map"},null,8,["modelValue"]),a(i,{class:"mt-2",message:s(e).errors.map},null,8,["message"])]),o("div",N,[a(n,{class:"text-xl",for:"address",value:"Address: "}),a(w,{id:"address",type:"text",class:"block w-full",modelValue:s(e).address,"onUpdate:modelValue":t[6]||(t[6]=l=>s(e).address=l),required:"",autocomplete:"address"},null,8,["modelValue"]),a(i,{class:"mt-2",message:s(e).errors.address},null,8,["message"])]),o("div",$,[a(v,{class:"btn btn-primary w-32 h-12 sm:w-40 sm:h-14 sm:text-xl",disabled:s(e).processing},{default:p(()=>[y("Update")]),_:1},8,["disabled"]),a(g,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:p(()=>[s(e).recentlySuccessful?(d(),u("p",T," Saved. ")):V("",!0)]),_:1})])],32)]))}};export{M as default}; diff --git a/public/build/assets/GeneraleSettings-022c4bdd.js b/public/build/assets/GeneraleSettings-022c4bdd.js deleted file mode 100644 index 8c49771..0000000 --- a/public/build/assets/GeneraleSettings-022c4bdd.js +++ /dev/null @@ -1 +0,0 @@ -import{S as r}from"./Sync-acecb079.js";import{_ as i}from"./AuthenticatedLayout-bb1b77c9.js";import m from"./GeneralSettingsForm-1239d561.js";import n from"./Images-a8768f13.js";import{A as p,r as l,o as c,g as d,a as e,b as _,w as s,F as h,H as g,d as t}from"./app-a07534fc.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./DarkMode-9ce27e49.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";import"./InputError-819a2731.js";import"./InputLabel-0d88b11e.js";import"./PrimaryButton-f1dd44c4.js";import"./Textarea-1fe62e1d.js";import"./TextInput-6d371888.js";import"./Image-ef3ae8a1.js";import"./DangerButton-1432f67e.js";import"./SecondaryButton-e6cce7b4.js";const u={class:"flex justify-between"},f=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," General Settings ",-1),x=t("span",null,"Cache Clear",-1),b={class:"py-12"},v={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},w={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg"},y={class:"py-12"},k={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},S={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg"},U={__name:"GeneraleSettings",setup(C){return p().props.value.global.options,(o,B)=>{const a=l("Link");return c(),d(h,null,[e(_(g),{title:"Settings"}),e(i,null,{header:s(()=>[t("div",u,[f,e(a,{href:o.route("cache.clear"),class:"flex items-center gap-1 text-blue-700 hover:text-blue-500 text-md"},{default:s(()=>[e(r,{class:"w-5 h-5 animate-spin"}),x]),_:1},8,["href"])])]),default:s(()=>[t("div",b,[t("div",v,[t("div",w,[e(n)])])]),t("div",y,[t("div",k,[t("div",S,[e(m)])])])]),_:1})],64)}}};export{U as default}; diff --git a/public/build/assets/Goal-09255514.js b/public/build/assets/Goal-09255514.js deleted file mode 100644 index ee37964..0000000 --- a/public/build/assets/Goal-09255514.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as e}from"./_plugin-vue_export-helper-c27b6911.js";import{o as a,g as i,d as t,t as o}from"./app-a07534fc.js";const n={},c={class:"container mx-auto p-6 bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50"},r={class:"grid grid-col sm:grid-cols-2 gap-5 bg-cyan-50 text-gray-900 dark:bg-gray-800 dark:text-gray-50"},l={class:"p-5 sm:p-10"},d={class:"mb-6"},_={class:"text-xl font-medium mb-2"},g={class:"text-lg text-gray-700 dark:text-gray-400"},m={class:"mb-6"},p={class:"text-xl font-medium mb-2"},u={class:"text-lg text-gray-700 dark:text-gray-400"},h={class:"text-xl font-medium mb-2"},b={class:"text-lg list-disc text-gray-700 dark:text-gray-400"},x={class:"p-5 sm:p-10"},y=["src"];function f(s,k){return a(),i("div",c,[t("div",r,[t("div",l,[t("section",d,[t("h2",_,o(s.__("about.vision.title","Vision")),1),t("p",g,o(s.__("about.vision.description")),1)]),t("section",m,[t("h2",p,o(s.__("about.mission.title")),1),t("p",u,o(s.__("about.mission.description")),1)]),t("section",null,[t("h2",h,o(s.__("about.goal.title")),1),t("ul",b,o(s.__("about.goal.description")),1)])]),t("div",x,[t("img",{class:"w-full h-auto rounded-md",src:s.$page.props.global.options.vission_mission_image,alt:"About Picture"},null,8,y)])])])}const w=e(n,[["render",f]]);export{w as default}; diff --git a/public/build/assets/GuestLayout-8f04497b.js b/public/build/assets/GuestLayout-8f04497b.js deleted file mode 100644 index 1d37104..0000000 --- a/public/build/assets/GuestLayout-8f04497b.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as n,a as r}from"./Toast-95869260.js";import{r as l,o as c,g as i,a as e,w as t,d as s,b as m,H as d,k as _,F as f}from"./app-a07534fc.js";const p=["href"],u={class:"min-h-screen flex flex-col sm:justify-center items-center pt-6 sm:pt-0 bg-gray-100 dark:bg-gray-900"},g={class:"w-full sm:max-w-md mt-6 px-6 py-4 bg-white dark:bg-gray-800 shadow-md overflow-hidden sm:rounded-lg"},v={__name:"GuestLayout",setup(h){return(a,k)=>{const o=l("Link");return c(),i(f,null,[e(m(d),null,{default:t(()=>[s("link",{rel:"icon",type:"image/svg+xml",href:a.$page.props.global.options.fav_icon},null,8,p)]),_:1}),s("div",u,[e(n),s("div",null,[e(o,{href:"/"},{default:t(()=>[e(r,{class:"w-20 h-20 fill-current text-gray-500"})]),_:1})]),s("div",g,[_(a.$slots,"default")])])],64)}}};export{v as _}; diff --git a/public/build/assets/GuestLayout-4014bb8c.js b/public/build/assets/GuestLayout-ac5d3072.js similarity index 61% rename from public/build/assets/GuestLayout-4014bb8c.js rename to public/build/assets/GuestLayout-ac5d3072.js index 4163473..3adbe5a 100644 --- a/public/build/assets/GuestLayout-4014bb8c.js +++ b/public/build/assets/GuestLayout-ac5d3072.js @@ -1 +1 @@ -import{_ as r}from"./ApplicationLogo-1c8f1468.js";import{_ as n}from"./Toast-3242a059.js";import{o as l,h as i,a as e,w as a,b as s,u as m,X as c,r as _,F as d,k as f}from"./app-4f9e7dfc.js";const p=["href"],u={class:"min-h-screen flex flex-col sm:justify-center items-center pt-6 sm:pt-0 bg-gray-100 dark:bg-gray-900"},g={class:"w-full sm:max-w-md mt-6 px-6 py-4 bg-white dark:bg-gray-800 shadow-md overflow-hidden sm:rounded-lg"},x={__name:"GuestLayout",setup(h){return(t,k)=>{const o=f("Link");return l(),i(d,null,[e(m(c),null,{default:a(()=>[s("link",{rel:"icon",type:"image/svg+xml",href:t.$page.props.global.options.fav_icon},null,8,p)]),_:1}),s("div",u,[e(n),s("div",null,[e(o,{href:"/"},{default:a(()=>[e(r,{class:"w-20 h-20 fill-current text-gray-500"})]),_:1})]),s("div",g,[_(t.$slots,"default")])])],64)}}};export{x as _}; +import{_ as r}from"./ApplicationLogo-77a8e36b.js";import{_ as n}from"./Toast-645f4c7b.js";import{o as l,f as m,a as e,w as a,b as s,u as i,X as c,m as _,F as d,r as f}from"./app-4dfa7f3b.js";const p=["href"],u={class:"min-h-screen flex flex-col sm:justify-center items-center pt-6 sm:pt-0 bg-gray-100 dark:bg-gray-900"},g={class:"w-full sm:max-w-md mt-6 px-6 py-4 bg-white dark:bg-gray-800 shadow-md overflow-hidden sm:rounded-lg"},x={__name:"GuestLayout",setup(h){return(t,w)=>{const o=f("Link");return l(),m(d,null,[e(i(c),null,{default:a(()=>[s("link",{rel:"icon",type:"image/svg+xml",href:t.$page.props.global.options.fav_icon},null,8,p)]),_:1}),s("div",u,[e(n),s("div",null,[e(o,{href:"/"},{default:a(()=>[e(r,{class:"w-20 h-20 fill-current text-gray-500"})]),_:1})]),s("div",g,[_(t.$slots,"default")])])],64)}}};export{x as _}; diff --git a/public/build/assets/Hero-92ba1f8c.js b/public/build/assets/Hero-92ba1f8c.js deleted file mode 100644 index cfffdf9..0000000 --- a/public/build/assets/Hero-92ba1f8c.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s}from"./_plugin-vue_export-helper-c27b6911.js";import{o,g as r,d as t,k as a}from"./app-a07534fc.js";const c={},n={class:"bg-cyan-50 text-gray-900 dark:bg-cyan-700 dark:text-gray-50 lg:overflow-hidden px-[10%]"},l={class:"sm:py-5 lg:py-10 grid place-items-center"},d={class:"mt-4 text-4xl font-bold tracking-tight sm:my-5 sm:text-6xl lg:my-6 xl:text-6xl my-3"};function i(e,m){return o(),r("div",n,[t("div",l,[t("h1",d,[a(e.$slots,"default")])])])}const g=s(c,[["render",i]]);export{g as H}; diff --git a/public/build/assets/Image-b36d5d14.js b/public/build/assets/Image-ad5bc90a.js similarity index 86% rename from public/build/assets/Image-b36d5d14.js rename to public/build/assets/Image-ad5bc90a.js index 44e264a..37200af 100644 --- a/public/build/assets/Image-b36d5d14.js +++ b/public/build/assets/Image-ad5bc90a.js @@ -1 +1 @@ -import{i as _,v as V,k as S,o as m,h as v,a as r,w as u,e as $,b as o,d as w,n as P,u as i,c as j,q as y}from"./app-4f9e7dfc.js";import{_ as x}from"./DangerButton-c925b039.js";import{a as q,_ as D}from"./SecondaryButton-5f2daf35.js";import{d as k}from"./defaultFile-106f3fb6.js";import{t as b}from"./toast-c1edb8fd.js";const I={class:"p-6"},N=o("h2",{class:"text-lg font-medium text-gray-900 dark:text-gray-100"}," Are you sure you want to delete this? ",-1),B=o("p",{class:"mt-1 text-sm text-gray-600 dark:text-gray-400"}," Once is deleted, all of its resources and data will be permanently deleted. ",-1),E={class:"mt-6 flex justify-end"},U={__name:"DeleteImage",props:{id:String|Number,route:String,field:String,modelValue:String},emits:["update:modelValue"],setup(t,{emit:f}){const n=t,s=_(!1),l=V({field:n.field,modelValue:n.modelValue}),d=()=>{s.value=!0},e=()=>{l.delete(route(`${n.route}.destroy`,n.id),{preserveScroll:!0,onSuccess:()=>c(),onError:()=>passwordInput.value.focus(),onFinish:()=>f("update:modelValue",k.placeholder)})},c=()=>{l.reset(),s.value=!1};return(h,p)=>{const a=S("font-awesome-icon");return m(),v("section",null,[r(x,{onClick:$(d,["prevent"])},{default:u(()=>[r(a,{icon:"fa-solid fa-trash",class:"mr-1"})]),_:1},8,["onClick"]),r(D,{show:s.value,onClose:c},{default:u(()=>[o("div",I,[N,B,o("div",E,[r(q,{onClick:c},{default:u(()=>[w(" Cancel ")]),_:1}),r(x,{class:P(["ml-3",{"opacity-25":i(l).processing}]),disabled:i(l).processing,onClick:e},{default:u(()=>[r(a,{icon:"fa-solid fa-trash",class:"mr-1"}),w(" Delete ")]),_:1},8,["class","disabled"])])])]),_:1},8,["show"])])}}},F={class:"flex items-center justify-center overflow-hidden bg-gray-100 relative group min-w-sm max-w-xl h-full"},L=["src","alt"],M={class:"min-w-sm max-w-xl h-full absolute flex items-center justify-center transition-all transform translate-y-8 opacity-0 group-hover:opacity-100 group-hover:translate-y-0 space-x-3"},O=["for"],R=["id"],z={key:0},K={__name:"Image",props:{modelValue:String,id:{type:[Number,String],default:"logo",require:!0},alt:{type:String,default:"image",require:!1},route:{type:String,default:"options",require:!1},field:{type:String,default:"option_value",require:!1},isDeleteable:{type:Boolean,default:!1,require:!1}},emits:["update:modelValue"],setup(t,{expose:f,emit:n}){const s=t,l=_(null),d=_(k.placeholder);f({focus:()=>l.value.focus()});const e=V({id:s.id,field:s.field,image:"",imagePreview:s.modelValue||d.value}),c=p=>{const a=p.target.files[0];e.imagePreview=URL.createObjectURL(a),e.post(route(`${s.route}.update`,s.id),{preserveScroll:!0,onSuccess:()=>h(),onError:()=>{e.errors.image&&(b.add({message:e.errors.image}),l.value.focus(),e.reset()),b.add({message:"Something went wrong!",success:!1})}})},h=()=>{n("update:modelValue",e.imagePreview)};return(p,a)=>{const C=S("font-awesome-icon");return m(),v("section",null,[o("div",F,[o("img",{src:i(e).imagePreview,alt:t.alt,class:"min-w-sm max-w-xl h-full inset-0 group-hover:opacity-50 shadow-md shadow-gray-900 object-cover object-center"},null,8,L),o("div",M,[o("div",null,[o("label",{for:t.id,class:"btn btn-primary cursor-pointer"},[r(C,{icon:"fa-solid fa-rotate"})],8,O),o("input",{id:t.id,type:"file",name:"image",class:"mt-1 form-controll cursor-pointer hidden",onChange:c,ref_key:"input",ref:l,onInput:a[0]||(a[0]=g=>i(e).image=g.target.files[0])},null,40,R)]),t.isDeleteable?(m(),v("span",z,[i(e).imagePreview!=d.value?(m(),j(U,{key:0,class:"cursor-pointer",id:t.id,route:t.route,field:t.field,modelValue:i(e).imagePreview,"onUpdate:modelValue":a[1]||(a[1]=g=>i(e).imagePreview=g)},null,8,["id","route","field","modelValue"])):y("",!0)])):y("",!0)])])])}}};export{K as _}; +import{p as _,v as V,r as S,o as m,f as v,a as r,w as u,e as $,b as o,d as w,n as P,u as i,c as j,g as y}from"./app-4dfa7f3b.js";import{_ as x}from"./DangerButton-9faead77.js";import{a as D,_ as I}from"./SecondaryButton-c5891444.js";import{d as k}from"./defaultFile-2b6c57d3.js";import{t as b}from"./toast-ded66f04.js";const N={class:"p-6"},q=o("h2",{class:"text-lg font-medium text-gray-900 dark:text-gray-100"}," Are you sure you want to delete this? ",-1),B=o("p",{class:"mt-1 text-sm text-gray-600 dark:text-gray-400"}," Once is deleted, all of its resources and data will be permanently deleted. ",-1),E={class:"mt-6 flex justify-end"},U={__name:"DeleteImage",props:{id:String|Number,route:String,field:String,modelValue:String},emits:["update:modelValue"],setup(t,{emit:f}){const n=t,s=_(!1),l=V({field:n.field,modelValue:n.modelValue}),d=()=>{s.value=!0},e=()=>{l.delete(route(`${n.route}.destroy`,n.id),{preserveScroll:!0,onSuccess:()=>c(),onError:()=>passwordInput.value.focus(),onFinish:()=>f("update:modelValue",k.placeholder)})},c=()=>{l.reset(),s.value=!1};return(h,p)=>{const a=S("font-awesome-icon");return m(),v("section",null,[r(x,{onClick:$(d,["prevent"])},{default:u(()=>[r(a,{icon:"fa-solid fa-trash",class:"mr-1"})]),_:1},8,["onClick"]),r(I,{show:s.value,onClose:c},{default:u(()=>[o("div",N,[q,B,o("div",E,[r(D,{onClick:c},{default:u(()=>[w(" Cancel ")]),_:1}),r(x,{class:P(["ml-3",{"opacity-25":i(l).processing}]),disabled:i(l).processing,onClick:e},{default:u(()=>[r(a,{icon:"fa-solid fa-trash",class:"mr-1"}),w(" Delete ")]),_:1},8,["class","disabled"])])])]),_:1},8,["show"])])}}},F={class:"flex items-center justify-center overflow-hidden bg-gray-100 relative group min-w-sm max-w-xl h-full"},L=["src","alt"],M={class:"min-w-sm max-w-xl h-full absolute flex items-center justify-center transition-all transform translate-y-8 opacity-0 group-hover:opacity-100 group-hover:translate-y-0 space-x-3"},O=["for"],R=["id"],z={key:0},K={__name:"Image",props:{modelValue:String,id:{type:[Number,String],default:"logo",require:!0},alt:{type:String,default:"image",require:!1},route:{type:String,default:"options",require:!1},field:{type:String,default:"option_value",require:!1},isDeleteable:{type:Boolean,default:!1,require:!1}},emits:["update:modelValue"],setup(t,{expose:f,emit:n}){const s=t,l=_(null),d=_(k.placeholder);f({focus:()=>l.value.focus()});const e=V({id:s.id,field:s.field,image:"",imagePreview:s.modelValue||d.value}),c=p=>{const a=p.target.files[0];e.imagePreview=URL.createObjectURL(a),e.post(route(`${s.route}.update`,s.id),{preserveScroll:!0,onSuccess:()=>h(),onError:()=>{e.errors.image&&(b.add({message:e.errors.image}),l.value.focus(),e.reset()),b.add({message:"Something went wrong!",success:!1})}})},h=()=>{n("update:modelValue",e.imagePreview)};return(p,a)=>{const C=S("font-awesome-icon");return m(),v("section",null,[o("div",F,[o("img",{src:i(e).imagePreview,alt:t.alt,class:"min-w-sm max-w-xl h-full inset-0 group-hover:opacity-50 shadow-md shadow-gray-900 object-cover object-center"},null,8,L),o("div",M,[o("div",null,[o("label",{for:t.id,class:"btn btn-primary cursor-pointer"},[r(C,{icon:"fa-solid fa-rotate"})],8,O),o("input",{id:t.id,type:"file",name:"image",class:"mt-1 form-controll cursor-pointer hidden",onChange:c,ref_key:"input",ref:l,onInput:a[0]||(a[0]=g=>i(e).image=g.target.files[0])},null,40,R)]),t.isDeleteable?(m(),v("span",z,[i(e).imagePreview!=d.value?(m(),j(U,{key:0,class:"cursor-pointer",id:t.id,route:t.route,field:t.field,modelValue:i(e).imagePreview,"onUpdate:modelValue":a[1]||(a[1]=g=>i(e).imagePreview=g)},null,8,["id","route","field","modelValue"])):y("",!0)])):y("",!0)])])])}}};export{K as _}; diff --git a/public/build/assets/Image-ef3ae8a1.js b/public/build/assets/Image-ef3ae8a1.js deleted file mode 100644 index 1231f33..0000000 --- a/public/build/assets/Image-ef3ae8a1.js +++ /dev/null @@ -1 +0,0 @@ -import{p as _,u as V,r as S,o as m,g as h,a as r,w as u,f as $,d as o,e as w,n as P,b as i,c as j,h as y}from"./app-a07534fc.js";import{_ as x}from"./DangerButton-1432f67e.js";import{a as D,_ as I}from"./SecondaryButton-e6cce7b4.js";import{d as k}from"./defaultFile-233481e1.js";import{t as b}from"./toast-49ee1775.js";const N={class:"p-6"},q=o("h2",{class:"text-lg font-medium text-gray-900 dark:text-gray-100"}," Are you sure you want to delete this? ",-1),B=o("p",{class:"mt-1 text-sm text-gray-600 dark:text-gray-400"}," Once is deleted, all of its resources and data will be permanently deleted. ",-1),E={class:"mt-6 flex justify-end"},F={__name:"DeleteImage",props:{id:String|Number,route:String,field:String,modelValue:String},emits:["update:modelValue"],setup(t,{emit:f}){const n=t,s=_(!1),l=V({field:n.field,modelValue:n.modelValue}),d=()=>{s.value=!0},e=()=>{l.delete(route(`admin.${n.route}.destroy`,n.id),{preserveScroll:!0,onSuccess:()=>c(),onError:()=>passwordInput.value.focus(),onFinish:()=>f("update:modelValue",k.placeholder)})},c=()=>{l.reset(),s.value=!1};return(v,p)=>{const a=S("font-awesome-icon");return m(),h("section",null,[r(x,{onClick:$(d,["prevent"])},{default:u(()=>[r(a,{icon:"fa-solid fa-trash",class:"mr-1"})]),_:1},8,["onClick"]),r(I,{show:s.value,onClose:c},{default:u(()=>[o("div",N,[q,B,o("div",E,[r(D,{onClick:c},{default:u(()=>[w(" Cancel ")]),_:1}),r(x,{class:P(["ml-3",{"opacity-25":i(l).processing}]),disabled:i(l).processing,onClick:e},{default:u(()=>[r(a,{icon:"fa-solid fa-trash",class:"mr-1"}),w(" Delete ")]),_:1},8,["class","disabled"])])])]),_:1},8,["show"])])}}},U={class:"flex items-center justify-center overflow-hidden bg-gray-100 relative group min-w-sm max-w-xl h-full"},L=["src","alt"],M={class:"min-w-sm max-w-xl h-full absolute flex items-center justify-center transition-all transform translate-y-8 opacity-0 group-hover:opacity-100 group-hover:translate-y-0 space-x-3"},O=["for"],R=["id"],z={key:0},K={__name:"Image",props:{modelValue:String,id:{type:[Number,String],default:"logo",require:!0},alt:{type:String,default:"image",require:!1},route:{type:String,default:"option",require:!1},field:{type:String,default:"option_value",require:!1},isDeleteable:{type:Boolean,default:!1,require:!1}},emits:["update:modelValue"],setup(t,{expose:f,emit:n}){const s=t,l=_(null),d=_(k.placeholder);f({focus:()=>l.value.focus()});const e=V({id:s.id,field:s.field,image:"",imagePreview:s.modelValue||d.value}),c=p=>{const a=p.target.files[0];e.imagePreview=URL.createObjectURL(a),e.post(route(`admin.${s.route}.update`,s.id),{preserveScroll:!0,onSuccess:()=>v(),onError:()=>{e.errors.image&&(b.add({message:e.errors.image}),l.value.focus(),e.reset()),b.add({message:"Something went wrong!",success:!1})}})},v=()=>{n("update:modelValue",e.imagePreview)};return(p,a)=>{const C=S("font-awesome-icon");return m(),h("section",null,[o("div",U,[o("img",{src:i(e).imagePreview,alt:t.alt,class:"min-w-sm max-w-xl h-full inset-0 group-hover:opacity-50 shadow-md shadow-gray-900 object-cover object-center"},null,8,L),o("div",M,[o("div",null,[o("label",{for:t.id,class:"btn btn-primary cursor-pointer"},[r(C,{icon:"fa-solid fa-rotate"})],8,O),o("input",{id:t.id,type:"file",name:"image",class:"mt-1 form-controll cursor-pointer hidden",onChange:c,ref_key:"input",ref:l,onInput:a[0]||(a[0]=g=>i(e).image=g.target.files[0])},null,40,R)]),t.isDeleteable?(m(),h("span",z,[i(e).imagePreview!=d.value?(m(),j(F,{key:0,class:"cursor-pointer",id:t.id,route:t.route,field:t.field,modelValue:i(e).imagePreview,"onUpdate:modelValue":a[1]||(a[1]=g=>i(e).imagePreview=g)},null,8,["id","route","field","modelValue"])):y("",!0)])):y("",!0)])])])}}};export{K as _}; diff --git a/public/build/assets/Images-a8768f13.js b/public/build/assets/Images-a8768f13.js deleted file mode 100644 index 3db816d..0000000 --- a/public/build/assets/Images-a8768f13.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as a}from"./Image-ef3ae8a1.js";import{A as n,o as i,g as r,d as t,a as d,b as o}from"./app-a07534fc.js";import"./DangerButton-1432f67e.js";import"./SecondaryButton-e6cce7b4.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";const c={class:"max-w-full mx-auto flex flex-wrap justify-around items-center bg-white dark:bg-gray-800 text-black dark:text-white sm:space-x-2 space-y-2 sm:space-y-0"},p={class:"p-4 space-x-5 shadow flex-1 min-h-full grid place-items-center h-[300px]"},m=t("div",{class:"text-2x block text-center text-2xl"},"Logo",-1),u={class:"p-4 space-x-5 shadow flex-1 min-h-full grid place-items-center h-[300px]"},x=t("div",{class:"text-2x block text-center text-2xl"},"Fav Icon",-1),f={class:"p-4 space-x-5 shadow flex-1 min-h-full grid place-items-center h-[300px]"},_=t("div",{class:"text-2x block text-center text-2xl"},"Banner",-1),B={__name:"Images",setup(b){const e=n().props.value.global.options;return(g,l)=>(i(),r("div",c,[t("div",p,[m,d(a,{id:"logo",field:"logo",isDeleteable:!0,modelValue:o(e).logo,"onUpdate:modelValue":l[0]||(l[0]=s=>o(e).logo=s),class:"w-48 h-48 rounded-full overflow-clip bg-red-500"},null,8,["modelValue"])]),t("div",u,[x,d(a,{id:"fav_icon",field:"fav_icon",isDeleteable:!0,modelValue:o(e).fav_icon,"onUpdate:modelValue":l[1]||(l[1]=s=>o(e).fav_icon=s),class:"w-48 h-48 rounded-full overflow-clip bg-red-500"},null,8,["modelValue"])]),t("div",f,[_,d(a,{id:"banner",field:"banner",isDeleteable:!0,modelValue:o(e).banner,"onUpdate:modelValue":l[2]||(l[2]=s=>o(e).banner=s),class:"w-48 h-48 rounded-sm overflow-clip bg-red-500"},null,8,["modelValue"])])]))}};export{B as default}; diff --git a/public/build/assets/Images-d22622b7.js b/public/build/assets/Images-ec051a23.js similarity index 80% rename from public/build/assets/Images-d22622b7.js rename to public/build/assets/Images-ec051a23.js index 8bc5381..2c5f524 100644 --- a/public/build/assets/Images-d22622b7.js +++ b/public/build/assets/Images-ec051a23.js @@ -1 +1 @@ -import{_ as a}from"./Image-b36d5d14.js";import{J as d,h as i,b as t,a as n,u as o,o as r}from"./app-4f9e7dfc.js";import"./DangerButton-c925b039.js";import"./SecondaryButton-5f2daf35.js";import"./defaultFile-106f3fb6.js";import"./toast-c1edb8fd.js";const c={class:"max-w-7xl mx-auto flex flex-wrap justify-around items-center bg-white dark:bg-gray-800 text-black dark:text-white sm:space-x-2 space-y-2 sm:space-y-0"},p={class:"p-4 space-x-5 shadow flex-1 min-h-full grid place-items-center h-[300px]"},x=t("div",{class:"text-2x block text-center text-2xl"},"Logo",-1),m={class:"p-4 space-x-5 shadow flex-1 min-h-full grid place-items-center h-[300px]"},u=t("div",{class:"text-2x block text-center text-2xl"},"Fav Icon",-1),f={class:"p-4 space-x-5 shadow flex-1 min-h-full grid place-items-center h-[300px]"},_=t("div",{class:"text-2x block text-center text-2xl"},"Banner",-1),B={__name:"Images",setup(b){const e=d().props.global.options;return(h,l)=>(r(),i("div",c,[t("div",p,[x,n(a,{id:"logo",field:"logo",isDeleteable:!0,modelValue:o(e).logo,"onUpdate:modelValue":l[0]||(l[0]=s=>o(e).logo=s),class:"w-48 h-48 rounded-full overflow-clip bg-red-500"},null,8,["modelValue"])]),t("div",m,[u,n(a,{id:"fav_icon",field:"fav_icon",isDeleteable:!0,modelValue:o(e).fav_icon,"onUpdate:modelValue":l[1]||(l[1]=s=>o(e).fav_icon=s),class:"w-48 h-48 rounded-full overflow-clip bg-red-500"},null,8,["modelValue"])]),t("div",f,[_,n(a,{id:"banner",field:"banner",isDeleteable:!0,modelValue:o(e).banner,"onUpdate:modelValue":l[2]||(l[2]=s=>o(e).banner=s),class:"w-48 h-48 rounded-full overflow-clip bg-red-500"},null,8,["modelValue"])])]))}};export{B as default}; +import{_ as a}from"./Image-ad5bc90a.js";import{J as d,f as i,b as t,a as n,u as o,o as r}from"./app-4dfa7f3b.js";import"./DangerButton-9faead77.js";import"./SecondaryButton-c5891444.js";import"./defaultFile-2b6c57d3.js";import"./toast-ded66f04.js";const c={class:"max-w-7xl mx-auto flex flex-wrap justify-around items-center bg-white dark:bg-gray-800 text-black dark:text-white sm:space-x-2 space-y-2 sm:space-y-0"},p={class:"p-4 space-x-5 shadow flex-1 min-h-full grid place-items-center h-[300px]"},x=t("div",{class:"text-2x block text-center text-2xl"},"Logo",-1),m={class:"p-4 space-x-5 shadow flex-1 min-h-full grid place-items-center h-[300px]"},u=t("div",{class:"text-2x block text-center text-2xl"},"Fav Icon",-1),f={class:"p-4 space-x-5 shadow flex-1 min-h-full grid place-items-center h-[300px]"},_=t("div",{class:"text-2x block text-center text-2xl"},"Banner",-1),B={__name:"Images",setup(b){const e=d().props.global.options;return(g,l)=>(r(),i("div",c,[t("div",p,[x,n(a,{id:"logo",field:"logo",isDeleteable:!0,modelValue:o(e).logo,"onUpdate:modelValue":l[0]||(l[0]=s=>o(e).logo=s),class:"w-48 h-48 rounded-full overflow-clip bg-red-500"},null,8,["modelValue"])]),t("div",m,[u,n(a,{id:"fav_icon",field:"fav_icon",isDeleteable:!0,modelValue:o(e).fav_icon,"onUpdate:modelValue":l[1]||(l[1]=s=>o(e).fav_icon=s),class:"w-48 h-48 rounded-full overflow-clip bg-red-500"},null,8,["modelValue"])]),t("div",f,[_,n(a,{id:"banner",field:"banner",isDeleteable:!0,modelValue:o(e).banner,"onUpdate:modelValue":l[2]||(l[2]=s=>o(e).banner=s),class:"w-48 h-48 rounded-full overflow-clip bg-red-500"},null,8,["modelValue"])])]))}};export{B as default}; diff --git a/public/build/assets/Index-06349fa9.js b/public/build/assets/Index-06349fa9.js deleted file mode 100644 index 0c456e1..0000000 --- a/public/build/assets/Index-06349fa9.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as k}from"./DeleteForm-95cf9c02.js";import{_ as D}from"./Pagination-efa838c1.js";import{_ as N}from"./Search-d7ef8e63.js";import{A as v,r as y,l as j,o as e,g as a,a as o,b,w as n,F as x,H as A,d as t,j as m,c as d,e as f,m as w,t as p,h}from"./app-a07534fc.js";import{_ as V}from"./AuthenticatedLayout-bb1b77c9.js";import"./DangerButton-1432f67e.js";import"./SecondaryButton-e6cce7b4.js";import"./DarkMode-9ce27e49.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";function B(l){const i=new Date(l),u={year:"numeric",month:"short",day:"numeric",hour:"2-digit",minute:"2-digit",hour12:!0};return i.toLocaleDateString(v().props.value.global.options.language,u)}const C=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," User ",-1),L={class:"py-12 dark:text-white"},$={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},S={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},U={class:"px-4 sm:px-6 lg:px-8"},E={class:"sm:flex sm:items-center"},F=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," User "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," A list of all the users. ")],-1),H={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-1 sm:space-x-2 space-y-2 sm:space-y-0"},R={class:"mt-8 flex flex-col"},T={class:"-my-2 -mx-4 overflow-x-auto sm:-mx-6 lg:-mx-8"},q={class:"inline-block min-w-full py-2 align-middle md:px-6 lg:px-8"},z={class:"flex items-center justify-between pb-4 bg-white dark:bg-gray-800 pt-3 pr-0.5"},I=t("div",{class:"flex-1"},null,-1),O={class:"flex-auto"},P={key:0,class:"relative overflow-hidden shadow ring-1 ring-black ring-opacity-5 md:rounded-lg"},G={class:"min-w-full table-auto divide-y divide-gray-300 p-3"},J=t("thead",{class:"bg-gray-50 w-full"},[t("tr",null,[t("th",{scope:"col",class:"py-3.5 pr-3 pl-3 text-left text-base font-bold text-gray-900"}," Name "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Email "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Avatar "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Role "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Status "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Date Time "),t("th",{scope:"col",class:"px-3 w-[20%] py-3.5 text-center text-base font-bold text-gray-900"}," Action ")])],-1),K={class:"divide-y divide-gray-200 bg-white w-full"},M=["id"],Q={class:"min-w-[10%] text-left p-4 font-semibold text-gray-900 capitalize"},W={class:"min-w-[10%] p-3 text-md text-gray-500"},X={class:"min-w-[10%] p-3 text-md text-gray-500"},Y=["src","alt"],Z={class:"min-w-[40%] p-3 text-md text-gray-500"},tt={class:"min-w-[10%] p-3 text-md text-gray-500"},et={class:"min-w-[10%] p-3 text-md text-gray-500"},st={class:"min-w-[10%] max-w-[30%] text-right text-sm font-medium"},at={class:"flex justify-end flex-wrap gap-2 pr-3"},ot={key:0,class:"bg-gray-50 min-w-full"},lt={colspan:"7",class:"w-[100%]"},it={key:1,class:"h-32 grid place-items-center text-2xl"},nt=t("p",null,"Result not found",-1),dt=[nt],Nt={__name:"Index",props:{users:Object},setup(l){return v().props.value.global.options,(i,u)=>{const c=y("font-awesome-icon"),_=y("Link"),r=j("can");return e(),a(x,null,[o(b(A),{title:"User"}),o(V,null,{header:n(()=>[C]),default:n(()=>[t("div",L,[t("div",$,[t("div",S,[t("div",U,[t("div",E,[F,t("div",H,[m((e(),d(_,{href:i.route("admin.user.create"),class:"btn btn-primary"},{default:n(()=>[o(c,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),f(" Create New ")]),_:1},8,["href"])),[[r,"user.create"]]),m((e(),d(_,{href:i.route("admin.user.index"),class:"btn btn-primary"},{default:n(()=>[o(c,{icon:"fa-solid fa-eye",class:"mr-1"}),f(" View All ")]),_:1},8,["href"])),[[r,"user.view"]])])]),t("div",R,[t("div",T,[t("div",q,[t("div",z,[I,t("div",O,[o(N)])]),l.users.data.length>0?(e(),a("div",P,[t("table",G,[J,t("tbody",K,[(e(!0),a(x,null,w(l.users.data,s=>(e(),a("tr",{key:s.id,id:s.id},[t("td",Q,p(s.name),1),t("td",W,p(s.email),1),t("td",X,[t("img",{src:s.avatar,alt:s.avatar,class:"w-16 h-16"},null,8,Y)]),t("td",Z,[(e(!0),a(x,null,w(s.roles,g=>(e(),a("div",{key:g.id,class:"mr-2"},[o(c,{icon:"fa-solid fa-user-shield",class:"text-blue-400"}),f(" "+p(g.name),1)]))),128))]),t("td",tt,p(s.status),1),t("td",et,p(b(B)(s.created_at)),1),t("td",st,[t("div",at,[t("div",null,[m((e(),d(_,{href:i.route("admin.user.show",s.id),class:"btn btn-info"},{default:n(()=>[o(c,{icon:"fa-solid fa-eye",class:"mr-1"})]),_:2},1032,["href"])),[[r,"user.view"]])]),t("div",null,[m((e(),d(_,{href:i.route("admin.user.edit",s.id),class:"btn btn-primary"},{default:n(()=>[o(c,{icon:"fa-solid fa-pen-to-square",class:"mr-1"})]),_:2},1032,["href"])),[[r,"user.edit"]])]),s.is_deletable?m((e(),d(k,{key:0,data:{id:s.id,model:"user"}},null,8,["data"])),[[r,"user.delete"]]):h("",!0)])])],8,M))),128))]),l.users.last_page>1?(e(),a("tfoot",ot,[t("tr",null,[t("td",lt,[l.users.last_page>1?(e(),d(D,{key:0,class:"mt-6 dark:text-white flex justify-end p-3",links:l.users.links},null,8,["links"])):h("",!0)])])])):h("",!0)])])):(e(),a("div",it,dt))])])])])])])])]),_:1})],64)}}};export{Nt as default}; diff --git a/public/build/assets/Index-095646b0.js b/public/build/assets/Index-095646b0.js deleted file mode 100644 index 40291f3..0000000 --- a/public/build/assets/Index-095646b0.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as y}from"./DeleteForm-95cf9c02.js";import{_ as w}from"./Pagination-efa838c1.js";import{_ as b}from"./Search-d7ef8e63.js";import{_ as v}from"./AuthenticatedLayout-bb1b77c9.js";import{r as f,l as k,o as s,g as i,a,b as C,w as o,F as h,H as j,d as t,j as d,c as n,e as g,m as N,t as r,h as u}from"./app-a07534fc.js";import"./DangerButton-1432f67e.js";import"./SecondaryButton-e6cce7b4.js";import"./DarkMode-9ce27e49.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";const V=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Categories ",-1),B={class:"py-12 dark:text-white"},D={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},$={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},A={class:"px-4 sm:px-6 lg:px-8"},F={class:"sm:flex sm:items-center"},L=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," Categories "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," A list of all the categories. ")],-1),T={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-1 sm:space-x-2 space-y-2 sm:space-y-0"},z={class:"mt-8 flex flex-col"},H={class:"-my-2 -mx-4 overflow-x-auto sm:-mx-6 lg:-mx-8"},I={class:"inline-block min-w-full py-2 align-middle md:px-6 lg:px-8"},S={class:"flex items-center justify-between pb-4 bg-white text-black dark:bg-gray-800 dark:text-white pt-3 pr-0.5"},q=t("div",{class:"flex-1"},null,-1),E={class:"flex-auto"},O={key:0,class:"relative overflow-hidden shadow ring-1 ring-black ring-opacity-5 md:rounded-lg"},P={class:"min-w-full table-auto divide-y divide-gray-300 p-3"},R=t("thead",{class:"bg-gray-50 w-full"},[t("tr",null,[t("th",{scope:"col",class:"py-3.5 pr-3 pl-3 text-left text-base font-bold text-gray-900"}," Title "),t("th",{scope:"col",class:"py-3.5 pr-3 pl-3 text-left text-base font-bold text-gray-900"}," Parent Category "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Image "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Featured "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Status "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Date Time "),t("th",{scope:"col",class:"px-3 w-[20%] py-3.5 text-center text-base font-bold text-gray-900"}," Action ")])],-1),G={class:"divide-y divide-gray-200 bg-white w-full"},J=["id"],K={class:"min-w-[10%] text-left p-4 font-semibold text-gray-900 capitalize"},M={class:"min-w-[10%] text-left p-4 font-semibold text-gray-900 capitalize"},Q={class:"min-w-[10%] p-3 text-md text-gray-500"},U=["src","alt"],W={class:"min-w-[10%] p-3 text-md text-gray-500"},X={class:"min-w-[10%] p-3 text-md text-gray-500"},Y={class:"min-w-[10%] p-3 text-md text-gray-500"},Z={class:"whitespace-nowrap min-w-[10%] max-w-[30%] text-right text-sm font-medium"},tt={class:"flex justify-end flex-wrap gap-2 pr-3"},et={key:0,class:"bg-gray-50 min-w-full"},st={colspan:"7",class:"w-[100%]"},at={key:1,class:"h-32 grid place-items-center text-2xl"},it=t("p",null,"Result not found",-1),ot=[it],kt={__name:"Index",props:{categories:Object},setup(l){return(m,lt)=>{const _=f("font-awesome-icon"),p=f("Link"),c=k("can");return s(),i(h,null,[a(C(j),{title:"Categories"}),a(v,null,{header:o(()=>[V]),default:o(()=>[t("div",B,[t("div",D,[t("div",$,[t("div",A,[t("div",F,[L,t("div",T,[d((s(),n(p,{href:m.route("admin.category.create"),class:"btn btn-primary"},{default:o(()=>[a(_,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),g(" Create New ")]),_:1},8,["href"])),[[c,"category.create"]]),d((s(),n(p,{href:m.route("admin.category.index"),class:"btn btn-primary"},{default:o(()=>[a(_,{icon:"fa-solid fa-eye",class:"mr-1"}),g(" View All ")]),_:1},8,["href"])),[[c,"category.view"]])])]),t("div",z,[t("div",H,[t("div",I,[t("div",S,[q,t("div",E,[a(b)])]),l.categories.data.length>0?(s(),i("div",O,[t("table",P,[R,t("tbody",G,[(s(!0),i(h,null,N(l.categories.data,e=>{var x;return s(),i("tr",{key:e.id,id:e.id},[t("td",K,r(e.title),1),t("td",M,r((x=e==null?void 0:e.parent)==null?void 0:x.title),1),t("td",Q,[t("img",{src:e.image,alt:e.image,class:"w-16 h-16"},null,8,U)]),t("td",W,r(e.is_featured),1),t("td",X,r(e.status),1),t("td",Y,r(e.created_at),1),t("td",Z,[t("div",tt,[t("div",null,[d((s(),n(p,{href:m.route("admin.category.show",e.id),class:"btn btn-info"},{default:o(()=>[a(_,{icon:"fa-solid fa-eye",class:"mr-1"})]),_:2},1032,["href"])),[[c,"category.view"]])]),t("div",null,[d((s(),n(p,{href:m.route("admin.category.edit",e.id),class:"btn btn-primary"},{default:o(()=>[a(_,{icon:"fa-solid fa-pen-to-square",class:"mr-1"})]),_:2},1032,["href"])),[[c,"category.edit"]])]),d(a(y,{data:{id:e.id,model:"category"}},null,8,["data"]),[[c,"category.delete"]])])])],8,J)}),128))]),l.categories.last_page>1?(s(),i("tfoot",et,[t("tr",null,[t("td",st,[l.categories.last_page>1?(s(),n(w,{key:0,class:"mt-6 dark:text-white flex justify-end p-3",links:l.categories.links},null,8,["links"])):u("",!0)])])])):u("",!0)])])):(s(),i("div",at,ot))])])])])])])])]),_:1})],64)}}};export{kt as default}; diff --git a/public/build/assets/Index-0cc626cd.js b/public/build/assets/Index-0cc626cd.js deleted file mode 100644 index 24ab50e..0000000 --- a/public/build/assets/Index-0cc626cd.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as d}from"./_plugin-vue_export-helper-c27b6911.js";import{r as g,o,g as i,d as t,a,w as r,t as s,S as m,b as _,H as x,c as p,h as u,F as f}from"./app-a07534fc.js";import{_ as b}from"./MasterLayout.vue_vue_type_script_setup_true_lang-71c3fc2e.js";import h from"./FeaturedBlog-66eaae95.js";import y from"./FeaturedCategory-5ba4c5b6.js";import k from"./Feature-08a626c7.js";import w from"./FeatureProducts-a35935b7.js";import"./DarkMode-9ce27e49.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./use-root-containers-d6d195ba.js";import"./SocialLink-414cdd14.js";const v={},B={class:"bg-cyan-50 text-gray-900 dark:bg-gray-900 dark:text-gray-50 pt-10 sm:pt-16 lg:overflow-hidden lg:pt-8 lg:pb-14 bg-cover bg-center pb-10"},$={class:"mx-auto max-w-full lg:px-8"},C={class:"lg:grid lg:grid-cols-2 lg:gap-8"},F={class:"mx-auto max-w-md px-6 sm:max-w-2xl sm:text-center lg:flex lg:items-center lg:px-0 lg:text-left"},j={class:"lg:py-24"},O={class:"rounded-full bg-gradient-to-r from-teal-500 to-cyan-600 px-3 py-0.5 text-sm font-semibold leading-5 text-white"},P={class:"ml-4 text-sm"},N={class:"mt-4 text-4xl font-bold tracking-tight lg:dark:text-white lg:text-gray-800 sm:mt-5 sm:text-6xl lg:mt-6 xl:text-6xl text-cyan-400 bg-blend-saturation lg:bg-transparent p-2 lg:p-0"},V={class:"block"},H={class:"block bg-gradient-to-r from-teal-400 to-cyan-500 bg-clip-text pb-3 text-transparent sm:pb-5"},I={class:"text-base lg:text-gray-500 lg:dark:text-gray-300 sm:text-xl lg:text-lg xl:text-xl text-cyan-300 bg-[rgba(255, 230, 180, 0.1)] bg-blend-saturation lg:bg-transparent p-2 lg:p-0 hidden lg:block"},L={class:"mt-12 sm:-mb-48 lg:relative lg:m-0"},S={class:"mx-auto max-w-md px-6 sm:max-w-2xl lg:max-w-none lg:px-0"},D=["src"];function E(e,n){const c=g("font-awesome-icon"),l=g("Link");return o(),i("div",B,[t("div",$,[t("div",C,[t("div",F,[t("div",j,[a(l,{href:e.route("contact"),class:"inline-flex items-center rounded-full p-1 pr-2 text-gray-900 dark:text-white bg-gray-200 dark:bg-black hover:text-gray-500 dark:hover:text-gray-500 sm:text-base lg:text-sm xl:text-base"},{default:r(()=>[t("span",O,s(e.__("banner.contact")),1),t("span",P,s(e.__("banner.to_contact")),1),a(c,{icon:"fa-solid fa-chevron-right ",class:"ml-2 h-3 mt-1 w-3 text-gray-500"})]),_:1},8,["href"]),t("h1",N,[t("span",V,s(e.__("banner.title_1")),1),t("span",H,s(e.__("banner.title_2")),1)]),t("p",I,s(e.__("banner.sub_title")),1)])]),t("div",L,[t("div",S,[t("img",{class:"w-full lg:absolute lg:inset-y-0 lg:left-0 lg:h-full lg:w-auto lg:max-w-none",src:e.$page.props.global.options.banner,alt:"Banner Image"},null,8,D)])])])])])}const q=d(v,[["render",E]]),z={class:"bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50"},tt=m({__name:"Index",props:{featuredProducts:Object,featuredCategory:Object,featuredBlog:Object,specialFeatures:Object},setup(e){return(n,c)=>(o(),i(f,null,[a(_(x),null,{default:r(()=>[t("title",null,s(n.__("home.title")),1)]),_:1}),a(b,null,{default:r(()=>{var l;return[t("div",z,[a(q),((l=e.featuredCategory)==null?void 0:l.length)>0?(o(),p(y,{key:0,categories:e.featuredCategory},null,8,["categories"])):u("",!0),a(k,{specialFeatures:e.specialFeatures},null,8,["specialFeatures"]),a(w,{featuredProducts:e.featuredProducts},null,8,["featuredProducts"]),a(h,{featuredBlog:e.featuredBlog},null,8,["featuredBlog"])])]}),_:1})],64))}});export{tt as default}; diff --git a/public/build/assets/Index-0d4616a8.js b/public/build/assets/Index-0d4616a8.js deleted file mode 100644 index 8458a78..0000000 --- a/public/build/assets/Index-0d4616a8.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as w}from"./DeleteForm-95cf9c02.js";import{_ as v}from"./Pagination-efa838c1.js";import{_ as k}from"./Search-d7ef8e63.js";import{_ as B}from"./AuthenticatedLayout-bb1b77c9.js";import{r as g,l as j,o as e,g as l,a,b as C,w as o,F as h,H as N,d as t,j as n,c as r,e as _,m as u,t as m,h as y}from"./app-a07534fc.js";import"./DangerButton-1432f67e.js";import"./SecondaryButton-e6cce7b4.js";import"./DarkMode-9ce27e49.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";const V=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Blog ",-1),D={class:"py-12 dark:text-white"},$={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},A={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},F={class:"px-4 sm:px-6 lg:px-8"},L={class:"sm:flex sm:items-center"},T=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," Blog "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," A list of all the blogs. ")],-1),H={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-1 sm:space-x-2 space-y-2 sm:space-y-0"},I={class:"mt-8 flex flex-col"},S={class:"-my-2 -mx-4 overflow-x-auto sm:-mx-6 lg:-mx-8"},q={class:"inline-block min-w-full py-2 align-middle md:px-6 lg:px-8"},z={class:"flex items-center justify-between pb-4 bg-white text-black dark:bg-gray-800 dark:text-white pt-3 pr-0.5"},E=t("div",{class:"flex-1"},null,-1),O={class:"flex-auto"},R={key:0,class:"relative overflow-hidden shadow ring-1 ring-black ring-opacity-5 md:rounded-lg"},G={class:"min-w-full table-auto divide-y divide-gray-300 p-3"},J=t("thead",{class:"bg-gray-50 w-full"},[t("tr",null,[t("th",{scope:"col",class:"py-3.5 pr-3 pl-3 text-left text-base font-bold text-gray-900"}," Title "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Image "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Featured "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Category "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Status "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Date Time "),t("th",{scope:"col",class:"px-3 w-[20%] py-3.5 text-center text-base font-bold text-gray-900"}," Action ")])],-1),K={class:"divide-y divide-gray-200 bg-white w-full"},M=["id"],P={class:"max-w-[20%] break-all text-left p-4 font-semibold capitalize"},Q={class:"min-w-[10%] p-3 text-md text-gray-500"},U=["src","alt"],W={class:"min-w-[10%] p-3 text-md text-gray-500"},X={class:"min-w-[40%] p-3 text-md text-gray-500"},Y={class:"min-w-[10%] p-3 text-md text-gray-500"},Z={class:"min-w-[10%] p-3 text-md text-gray-500"},tt={class:"max-w-[20%] break-all text-right text-sm font-medium"},et={class:"flex justify-end flex-wrap gap-2 pr-3"},st={key:0,class:"bg-gray-50 min-w-full"},at={colspan:"7",class:"w-[100%]"},lt={key:1,class:"h-32 grid place-items-center text-2xl"},ot=t("p",null,"Result not found",-1),it=[ot],Bt={__name:"Index",props:{blogs:Object},setup(x){return(i,dt)=>{const f=g("font-awesome-icon"),d=g("Link"),c=j("can");return e(),l(h,null,[a(C(N),{title:"Blog"}),a(B,null,{header:o(()=>[V]),default:o(()=>[t("div",D,[t("div",$,[t("div",A,[t("div",F,[t("div",L,[T,t("div",H,[n((e(),r(d,{href:i.route("admin.blog.create"),class:"btn btn-primary"},{default:o(()=>[a(f,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),_(" Create New ")]),_:1},8,["href"])),[[c,"blog.create"]]),n((e(),r(d,{href:i.route("admin.blog.index"),class:"btn btn-primary"},{default:o(()=>[a(f,{icon:"fa-solid fa-eye",class:"mr-1"}),_(" View All ")]),_:1},8,["href"])),[[c,"blog.view"]])])]),t("div",I,[t("div",S,[t("div",q,[t("div",z,[E,t("div",O,[a(k)])]),x.blogs.data.length>0?(e(),l("div",R,[t("table",G,[J,t("tbody",K,[(e(!0),l(h,null,u(x.blogs.data,s=>(e(),l("tr",{key:s.id,id:s.id},[t("td",P,[n((e(),r(d,{href:i.route("admin.blog.show",s.id),class:"text-gray-50 dark:text-gray-800"},{default:o(()=>[_(m(s.title),1)]),_:2},1032,["href"])),[[c,"blog.view"]])]),t("td",Q,[t("img",{src:s.image,alt:s.image,class:"w-16 h-16"},null,8,U)]),t("td",W,m(s.is_featured),1),t("td",X,[(e(!0),l(h,null,u(s.categories,(p,b)=>(e(),l("div",{key:p.id,class:"mr-2"},[_(m(b+1+".")+" ",1),a(d,{class:"text-blue-500",href:i.route("admin.category.show",p.id)},{default:o(()=>[_(m(p.title),1)]),_:2},1032,["href"])]))),128))]),t("td",Y,m(s.status),1),t("td",Z,m(s.created_at),1),t("td",tt,[t("div",et,[t("div",null,[n((e(),r(d,{href:i.route("admin.blog.show",s.id),class:"btn btn-info"},{default:o(()=>[a(f,{icon:"fa-solid fa-eye",class:"mr-1"})]),_:2},1032,["href"])),[[c,"blog.view"]])]),t("div",null,[n((e(),r(d,{href:i.route("admin.blog.edit",s.id),class:"btn btn-primary"},{default:o(()=>[a(f,{icon:"fa-solid fa-pen-to-square",class:"mr-1"})]),_:2},1032,["href"])),[[c,"blog.edit"]])]),n(a(w,{data:{id:s.id,model:"blog"}},null,8,["data"]),[[c,"blog.delete"]])])])],8,M))),128))]),x.blogs.last_page>1?(e(),l("tfoot",st,[t("tr",null,[t("td",at,[x.blogs.last_page>1?(e(),r(v,{key:0,class:"mt-6 dark:text-white flex justify-end p-3",links:x.blogs.links},null,8,["links"])):y("",!0)])])])):y("",!0)])])):(e(),l("div",lt,it))])])])])])])])]),_:1})],64)}}};export{Bt as default}; diff --git a/public/build/assets/Index-3ccccc34.js b/public/build/assets/Index-3ccccc34.js new file mode 100644 index 0000000..1431968 --- /dev/null +++ b/public/build/assets/Index-3ccccc34.js @@ -0,0 +1 @@ +import{_ as d}from"./Toast-645f4c7b.js";import{a8 as c,f as o,a,w as s,u as r,b as e,F as p,o as l,X as u,d as n,l as i}from"./app-4dfa7f3b.js";import"./toast-ded66f04.js";const h=e("title",null,"Home",-1),g=["href"],f={class:"relative sm:items-center sm:pt-0"},_={class:"absolute right-5 top-20 p-5"},m={key:0},x={key:1},b=e("div",{class:"flex gap-5 flex-col justify-center items-center h-screen -mt-20 dark:text-white w-full"},[e("span",{class:"text-bold text-4xl"},"Admin Panel Starter"),e("a",{class:"text-xl text-blue-500",href:"https://github.com/anisAronno/multipurpose-admin-panel-boilerplate",target:"_blank"}," Go Github ")],-1),w=c({__name:"Index",props:{canLogin:Boolean,canRegister:Boolean,laravelVersion:String,phpVersion:String},setup(k){return(t,y)=>(l(),o(p,null,[a(r(u),null,{default:s(()=>[h,e("link",{rel:"icon",type:"image/svg+xml",href:t.$page.props.global.options.fav_icon},null,8,g)]),_:1}),a(d),e("div",f,[e("div",_,[t.$page.props.auth.user?(l(),o("div",m,[a(r(i),{href:t.route("dashboard"),class:"text-lg text-gray-900 dark:text-gray-500 underline"},{default:s(()=>[n("Dashboard")]),_:1},8,["href"])])):(l(),o("div",x,[a(r(i),{href:t.route("login"),class:"text-lg text-gray-900 dark:text-gray-500 underline"},{default:s(()=>[n("Log in")]),_:1},8,["href"]),a(r(i),{href:t.route("register"),class:"ml-4 text-lg text-gray-900 dark:text-gray-500 underline"},{default:s(()=>[n("Register")]),_:1},8,["href"])]))]),b])],64))}});export{w as default}; diff --git a/public/build/assets/Index-4ad81822.js b/public/build/assets/Index-4ad81822.js deleted file mode 100644 index 5fa089b..0000000 --- a/public/build/assets/Index-4ad81822.js +++ /dev/null @@ -1 +0,0 @@ -import{H as l}from"./Hero-92ba1f8c.js";import{_ as i}from"./MasterLayout.vue_vue_type_script_setup_true_lang-71c3fc2e.js";import m from"./Blog-cfa35f18.js";import{S as n,o as p,g as _,a as t,w as e,d as a,t as r,b as d,H as c,e as g,F as u}from"./app-a07534fc.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./DarkMode-9ce27e49.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./use-root-containers-d6d195ba.js";import"./SocialLink-414cdd14.js";import"./Pagination-efa838c1.js";const f={class:"bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50"},$=n({__name:"Index",props:{blogs:Object},setup(s){return(o,b)=>(p(),_(u,null,[t(d(c),null,{default:e(()=>[a("title",null,r(o.__("blog.title")),1)]),_:1}),t(i,null,{default:e(()=>[a("div",f,[t(l,null,{default:e(()=>[g(r(o.__("hero.blog")),1)]),_:1}),t(m,{blogs:s.blogs},null,8,["blogs"])])]),_:1})],64))}});export{$ as default}; diff --git a/public/build/assets/Index-4b08fec0.js b/public/build/assets/Index-4b08fec0.js deleted file mode 100644 index 20ab08f..0000000 --- a/public/build/assets/Index-4b08fec0.js +++ /dev/null @@ -1 +0,0 @@ -import{H as m}from"./Hero-92ba1f8c.js";import{_ as i}from"./MasterLayout.vue_vue_type_script_setup_true_lang-71c3fc2e.js";import n from"./ContactForm-415d55a2.js";import p from"./Map-c88096a7.js";import{S as l,o as s,g as _,a as t,w as e,d as a,t as r,b as c,H as f,e as u,F as d}from"./app-a07534fc.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./DarkMode-9ce27e49.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./use-root-containers-d6d195ba.js";import"./SocialLink-414cdd14.js";import"./Form-63bc343c.js";import"./InputError-819a2731.js";import"./EnvelopeIcon-fcce7294.js";const E=l({__name:"Index",setup(H){return(o,g)=>(s(),_(d,null,[t(c(f),null,{default:e(()=>[a("title",null,r(o.__("contact.title")),1)]),_:1}),t(i,null,{default:e(()=>[a("div",null,[t(m,null,{default:e(()=>[u(r(o.__("hero.contact")),1)]),_:1}),t(n),t(p)])]),_:1})],64))}});export{E as default}; diff --git a/public/build/assets/Index-64da5719.js b/public/build/assets/Index-64da5719.js deleted file mode 100644 index e6f29d3..0000000 --- a/public/build/assets/Index-64da5719.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as b}from"./DeleteForm-95cf9c02.js";import{_ as w}from"./Pagination-efa838c1.js";import{_ as v}from"./Search-d7ef8e63.js";import{_ as k}from"./AuthenticatedLayout-bb1b77c9.js";import{r as g,l as N,o as e,g as a,a as o,b as R,w as l,F as p,H as j,d as t,j as n,c as i,e as h,m as y,t as x,h as f}from"./app-a07534fc.js";import"./DangerButton-1432f67e.js";import"./SecondaryButton-e6cce7b4.js";import"./DarkMode-9ce27e49.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";const V=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Roles ",-1),B={class:"py-12 dark:text-white"},C={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},D={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},$={class:"px-4 sm:px-6 lg:px-8"},A={class:"sm:flex sm:items-center"},L=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," Roles "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," A list of all the Roles. ")],-1),F={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-1 sm:space-x-2 space-y-2 sm:space-y-0"},H={class:"mt-8 flex flex-col"},T={class:"-my-2 -mx-4 overflow-x-auto sm:-mx-6 lg:-mx-8"},q={class:"inline-block min-w-full py-2 align-middle md:px-6 lg:px-8"},z={class:"flex items-center justify-between pb-4 bg-white dark:bg-gray-800 pt-3 pr-0.5"},E=t("div",{class:"flex-1"},null,-1),I={class:"flex-auto"},O={key:0,class:"relative overflow-hidden shadow ring-1 ring-black ring-opacity-5 md:rounded-lg"},S={class:"min-w-full table-auto divide-y divide-gray-300 p-3"},G=t("thead",{class:"bg-gray-50"},[t("tr",null,[t("th",{scope:"col",class:"py-3.5 pr-3 pl-3 text-left text-base font-bold text-gray-900"}," Name "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Role "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Date Time "),t("th",{scope:"col",class:"px-3 py-3.5 text-center text-base font-bold text-gray-900"}," Action ")])],-1),J={key:0,class:"divide-y divide-gray-200 bg-white"},K=["id"],M={class:"w-[15%] text-left p-4 font-semibold text-gray-900 capitalize"},P={class:"w-60% whitespace-normal p-3 text-md text-gray-500 grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 2xl:grid-cols-4"},Q={class:"w-[15%] text-left p-4 text-gray-900"},U={class:"w-[10%] text-right text-sm font-medium"},W={class:"flex justify-end flex-wrap gap-2 pr-3"},X={key:0},Y={class:"bg-gray-50"},Z={colspan:"4",class:"w-[100%]"},tt={key:1,class:"h-32 grid place-items-center text-2xl"},et=t("p",null,"Result not found",-1),st=[et],bt={__name:"Index",props:{roles:Object},setup(d){return(m,at)=>{const c=g("font-awesome-icon"),_=g("Link"),r=N("can");return e(),a(p,null,[o(R(j),{title:"Role"}),o(k,null,{header:l(()=>[V]),default:l(()=>[t("div",B,[t("div",C,[t("div",D,[t("div",$,[t("div",A,[L,t("div",F,[n((e(),i(_,{href:m.route("admin.role.create"),class:"btn btn-primary"},{default:l(()=>[o(c,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),h(" Create New ")]),_:1},8,["href"])),[[r,"role.create"]]),n((e(),i(_,{href:m.route("admin.role.index"),class:"btn btn-primary"},{default:l(()=>[o(c,{icon:"fa-solid fa-eye",class:"mr-1"}),h(" View All ")]),_:1},8,["href"])),[[r,"role.view"]])])]),t("div",H,[t("div",T,[t("div",q,[t("div",z,[E,t("div",I,[o(v)])]),d.roles.data.length>0?(e(),a("div",O,[t("table",S,[G,d.roles.data.length>0?(e(),a("tbody",J,[(e(!0),a(p,null,y(d.roles.data,s=>(e(),a("tr",{key:s.id,id:s.id},[t("td",M,x(s.name),1),t("td",P,[(e(!0),a(p,null,y(s.permissions,u=>(e(),a("p",{key:u.id,class:"mr-2"},[o(c,{icon:"fa-solid fa-user-shield",class:"text-blue-400"}),h(" "+x(u.name),1)]))),128))]),t("td",Q,x(s.created_at),1),t("td",U,[t("div",W,[t("div",null,[n((e(),i(_,{href:m.route("admin.role.show",s.id),class:"btn btn-info"},{default:l(()=>[o(c,{icon:"fa-solid fa-eye",class:"mr-1"})]),_:2},1032,["href"])),[[r,"role.view"]])]),s.is_editable?(e(),a("div",X,[n((e(),i(_,{href:m.route("admin.role.edit",s.id),class:"btn btn-primary"},{default:l(()=>[o(c,{icon:"fa-solid fa-pen-to-square",class:"mr-1"})]),_:2},1032,["href"])),[[r,"role.edit"]])])):f("",!0),s.is_deletable?n((e(),i(b,{key:1,data:{id:s.id,model:"role"}},null,8,["data"])),[[r,"role.delete"]]):f("",!0)])])],8,K))),128))])):f("",!0),t("tfoot",Y,[t("tr",null,[t("td",Z,[d.roles.last_page>1?(e(),i(w,{key:0,class:"mt-6 dark:text-white flex justify-end p-3",links:d.roles.links},null,8,["links"])):f("",!0)])])])])])):(e(),a("div",tt,st))])])])])])])])]),_:1})],64)}}};export{bt as default}; diff --git a/public/build/assets/Index-6785bc84.js b/public/build/assets/Index-6785bc84.js deleted file mode 100644 index 06a23e8..0000000 --- a/public/build/assets/Index-6785bc84.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as g}from"./DeleteForm-95cf9c02.js";import{_ as y}from"./Pagination-efa838c1.js";import{_ as w}from"./Search-d7ef8e63.js";import{_ as u}from"./AuthenticatedLayout-bb1b77c9.js";import{r as x,l as b,o as s,g as o,a,b as v,w as c,F as p,H as k,d as t,j as _,c as h,e as j,m as C,t as l,h as f}from"./app-a07534fc.js";import"./DangerButton-1432f67e.js";import"./SecondaryButton-e6cce7b4.js";import"./DarkMode-9ce27e49.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";const N=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Contacts ",-1),V={class:"py-12 dark:text-white"},B={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},D={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},$={class:"px-4 sm:px-6 lg:px-8"},A={class:"sm:flex sm:items-center"},L=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," Contacts "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," A list of all the contacts. ")],-1),E={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-1 sm:space-x-2 space-y-2 sm:space-y-0"},F={class:"mt-8 flex flex-col"},H={class:"-my-2 -mx-4 overflow-x-auto sm:-mx-6 lg:-mx-8"},S={class:"inline-block min-w-full py-2 align-middle md:px-6 lg:px-8"},T={class:"flex items-center justify-between pb-4 bg-white text-black dark:bg-gray-800 dark:text-white pt-3 pr-0.5"},z=t("div",{class:"flex-1"},null,-1),I={class:"flex-auto"},M={key:0,class:"relative overflow-hidden shadow ring-1 ring-black ring-opacity-5 md:rounded-lg"},O={class:"min-w-full table-auto divide-y divide-gray-300 p-3"},P=t("thead",{class:"bg-gray-50 w-full"},[t("tr",null,[t("th",{scope:"col",class:"py-3.5 pr-3 pl-3 text-left text-base font-bold text-gray-900"}," Name "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900 break-words"}," Email "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Phone "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Subject "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Message "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Date Time "),t("th",{scope:"col",class:"px-3 w-[20%] py-3.5 text-center text-base font-bold text-gray-900"}," Action ")])],-1),R={class:"divide-y divide-gray-200 bg-white w-full"},q=["id"],G={class:"min-w-[10%] whitespace-nowrap text-left p-2 lg:p-3 font-semibold text-gray-900 capitalize"},J={class:"min-w-[10%] text-left p-2 lg:p-3 font-md text-gray-900"},K={class:"min-w-[10%] text-left p-2 lg:p-3 text-md text-gray-500"},Q={class:"min-w-[10%] text-left p-2 lg:p-3 text-md text-gray-500"},U={class:"min-w-[50%] text-left p-2 lg:p-3 text-md text-gray-500"},W={class:"break-words w-10"},X={class:"min-w-[10%] whitespace-nowrap p-3 text-md text-gray-500"},Y={class:"whitespace-nowrap min-w-[10%] max-w-[30%] text-right text-sm font-medium"},Z={class:"flex justify-end flex-wrap gap-2 pr-3"},tt={key:0,class:"bg-gray-50 min-w-full"},et={colspan:"7",class:"w-[100%]"},st={key:1,class:"h-32 grid place-items-center text-2xl"},at=t("p",null,"Result not found",-1),ot=[at],vt={__name:"Index",props:{contacts:Object},setup(i){return(n,lt)=>{const d=x("font-awesome-icon"),r=x("Link"),m=b("can");return s(),o(p,null,[a(v(k),{title:"Contacts"}),a(u,null,{header:c(()=>[N]),default:c(()=>[t("div",V,[t("div",B,[t("div",D,[t("div",$,[t("div",A,[L,t("div",E,[_((s(),h(r,{href:n.route("admin.contact.index"),class:"btn btn-primary"},{default:c(()=>[a(d,{icon:"fa-solid fa-eye",class:"mr-1"}),j(" View All ")]),_:1},8,["href"])),[[m,"contact.view"]])])]),t("div",F,[t("div",H,[t("div",S,[t("div",T,[z,t("div",I,[a(w)])]),i.contacts.data.length>0?(s(),o("div",M,[t("table",O,[P,t("tbody",R,[(s(!0),o(p,null,C(i.contacts.data,e=>(s(),o("tr",{key:e.id,id:e.id},[t("td",G,l(e.name),1),t("td",J,l(e.email),1),t("td",K,l(e.phone),1),t("td",Q,l(e.subject),1),t("td",U,[t("span",W,l(e.message?e.message.split(" ").slice(0,10).join(" ")+"...":""),1)]),t("td",X,l(e.created_at),1),t("td",Y,[t("div",Z,[t("div",null,[a(r,{href:n.route("admin.contact.show",e.id),class:"btn btn-info"},{default:c(()=>[a(d,{icon:"fa-solid fa-eye",class:"mr-1"})]),_:2},1032,["href"])]),_(a(g,{data:{id:e.id,model:"contact"}},null,8,["data"]),[[m,"contact.delete"]])])])],8,q))),128))]),i.contacts.last_page>1?(s(),o("tfoot",tt,[t("tr",null,[t("td",et,[i.contacts.last_page>1?(s(),h(y,{key:0,class:"mt-6 dark:text-white flex justify-end p-3",links:i.contacts.links},null,8,["links"])):f("",!0)])])])):f("",!0)])])):(s(),o("div",st,ot))])])])])])])])]),_:1})],64)}}};export{vt as default}; diff --git a/public/build/assets/Index-e6a53418.js b/public/build/assets/Index-72e4d42d.js similarity index 82% rename from public/build/assets/Index-e6a53418.js rename to public/build/assets/Index-72e4d42d.js index c716d0a..e26d7b9 100644 --- a/public/build/assets/Index-e6a53418.js +++ b/public/build/assets/Index-72e4d42d.js @@ -1 +1 @@ -import{_ as u}from"./DeleteForm-3a0f2fad.js";import{_ as g,a as y}from"./Search-b0de8abf.js";import{_ as b}from"./AuthenticatedLayout-bb6d5f84.js";import{h as o,a as e,u as w,w as l,F as m,o as s,X as v,b as t,d as _,m as p,t as f,q as r,c as k,k as x}from"./app-4f9e7dfc.js";import"./DangerButton-c925b039.js";import"./SecondaryButton-5f2daf35.js";import"./Toast-3242a059.js";import"./toast-c1edb8fd.js";import"./ApplicationLogo-1c8f1468.js";import"./defaultFile-106f3fb6.js";import"./useCountries-7f78595f.js";import"./Dropdown-7d23bb7e.js";const N=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Roles ",-1),R={class:"py-12 dark:text-white"},V={class:"max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6"},j={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},B={class:"px-4 sm:px-6 lg:px-8"},C={class:"sm:flex sm:items-center"},$=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," Roles "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," A list of all the Roles. ")],-1),A={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-1 sm:space-x-2 space-y-2 sm:space-y-0"},D={class:"mt-8 flex flex-col"},L={class:"-my-2 -mx-4 overflow-x-auto sm:-mx-6 lg:-mx-8"},q={class:"inline-block min-w-full py-2 align-middle md:px-6 lg:px-8"},E={class:"flex items-center justify-between pb-4 bg-white dark:bg-gray-800 pt-3 pr-0.5"},F=t("div",{class:"flex-1"},null,-1),T={class:"flex-auto"},z={key:0,class:"relative overflow-hidden shadow ring-1 ring-black ring-opacity-5 md:rounded-lg"},I={class:"min-w-full table-auto divide-y divide-gray-300 p-3"},O=t("thead",{class:"bg-gray-50"},[t("tr",null,[t("th",{scope:"col",class:"py-3.5 pr-3 pl-3 text-left text-base font-bold text-gray-900"}," Name "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Role "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Date Time "),t("th",{scope:"col",class:"px-3 py-3.5 text-center text-base font-bold text-gray-900"}," Action ")])],-1),S={key:0,class:"divide-y divide-gray-200 bg-white"},X=["id"],G={class:"w-[15%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},H={class:"w-60% whitespace-normal p-3 text-md text-gray-500 grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 2xl:grid-cols-4"},J={class:"w-[15%] text-left p-4 text-gray-900"},K={class:"w-[10%] whitespace-nowrap text-right text-sm font-medium"},M={class:"flex justify-end flex-wrap gap-2 pr-3"},P={key:0},Q={key:1,class:"bg-gray-50 min-w-full"},U={colspan:"16",class:"w-[100%]"},W={key:1,class:"h-32 grid place-items-center text-2xl"},Y=t("p",null,"Result not found",-1),Z=[Y],ft={__name:"Index",props:{roles:Object},setup(i){return(c,tt)=>{const d=x("font-awesome-icon"),n=x("Link");return s(),o(m,null,[e(w(v),{title:"Role"}),e(b,null,{header:l(()=>[N]),default:l(()=>[t("div",R,[t("div",V,[t("div",j,[t("div",B,[t("div",C,[$,t("div",A,[e(n,{href:c.route("role.create"),class:"btn btn-primary"},{default:l(()=>[e(d,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),_(" Create New ")]),_:1},8,["href"]),e(n,{href:c.route("role.index"),class:"btn btn-primary"},{default:l(()=>[e(d,{icon:"fa-solid fa-eye",class:"mr-1"}),_(" View All ")]),_:1},8,["href"])])]),t("div",D,[t("div",L,[t("div",q,[t("div",E,[F,t("div",T,[e(g)])]),i.roles.data.length>0?(s(),o("div",z,[t("table",I,[O,i.roles.data.length>0?(s(),o("tbody",S,[(s(!0),o(m,null,p(i.roles.data,a=>(s(),o("tr",{key:a.id,id:a.id},[t("td",G,f(a.name),1),t("td",H,[(s(!0),o(m,null,p(a.permissions,h=>(s(),o("p",{key:h.id,class:"mr-2"},[e(d,{icon:"fa-solid fa-user-shield",class:"text-blue-400"}),_(" "+f(h.name),1)]))),128))]),t("td",J,f(a.created_at),1),t("td",K,[t("div",M,[t("div",null,[e(n,{href:c.route("role.show",a.id),class:"btn btn-info"},{default:l(()=>[e(d,{icon:"fa-solid fa-eye",class:"mr-1"})]),_:2},1032,["href"])]),a.isEditable?(s(),o("div",P,[e(n,{href:c.route("role.edit",a.id),class:"btn btn-primary"},{default:l(()=>[e(d,{icon:"fa-solid fa-pen-to-square",class:"mr-1"})]),_:2},1032,["href"])])):r("",!0),a.isDeletable?(s(),k(u,{key:1,data:{id:a.id,model:"role"}},null,8,["data"])):r("",!0)])])],8,X))),128))])):r("",!0),i.roles.meta.last_page>1?(s(),o("tfoot",Q,[t("tr",null,[t("td",U,[e(y,{class:"mt-6 dark:text-white flex justify-end p-3",meta:i.roles.meta},null,8,["meta"])])])])):r("",!0)])])):(s(),o("div",W,Z))])])])])])])])]),_:1})],64)}}};export{ft as default}; +import{_ as u}from"./DeleteForm-ea1de4c5.js";import{_ as g,a as y}from"./Search-662cc140.js";import{_ as b}from"./AuthenticatedLayout-6151d358.js";import{f as o,a as e,u as w,w as l,F as m,o as s,X as v,b as t,d as _,q as h,t as f,g as r,c as k,r as x}from"./app-4dfa7f3b.js";import"./DangerButton-9faead77.js";import"./SecondaryButton-c5891444.js";import"./Toast-645f4c7b.js";import"./toast-ded66f04.js";import"./ApplicationLogo-77a8e36b.js";import"./defaultFile-2b6c57d3.js";import"./useCountries-759a7ea1.js";import"./Dropdown-a96f453e.js";const N=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Roles ",-1),R={class:"py-12 dark:text-white"},V={class:"max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6"},j={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},B={class:"px-4 sm:px-6 lg:px-8"},C={class:"sm:flex sm:items-center"},$=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," Roles "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," A list of all the Roles. ")],-1),A={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-1 sm:space-x-2 space-y-2 sm:space-y-0"},D={class:"mt-8 flex flex-col"},L={class:"-my-2 -mx-4 overflow-x-auto sm:-mx-6 lg:-mx-8"},q={class:"inline-block min-w-full py-2 align-middle md:px-6 lg:px-8"},E={class:"flex items-center justify-between pb-4 bg-white dark:bg-gray-800 pt-3 pr-0.5"},F=t("div",{class:"flex-1"},null,-1),T={class:"flex-auto"},z={key:0,class:"relative overflow-hidden shadow ring-1 ring-black ring-opacity-5 md:rounded-lg"},I={class:"min-w-full table-auto divide-y divide-gray-300 p-3"},O=t("thead",{class:"bg-gray-50"},[t("tr",null,[t("th",{scope:"col",class:"py-3.5 pr-3 pl-3 text-left text-base font-bold text-gray-900"}," Name "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Role "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Date Time "),t("th",{scope:"col",class:"px-3 py-3.5 text-center text-base font-bold text-gray-900"}," Action ")])],-1),S={key:0,class:"divide-y divide-gray-200 bg-white"},X=["id"],G={class:"w-[15%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},H={class:"w-60% whitespace-normal p-3 text-md text-gray-500 grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 2xl:grid-cols-4"},J={class:"w-[15%] text-left p-4 text-gray-900"},K={class:"w-[10%] whitespace-nowrap text-right text-sm font-medium"},M={class:"flex justify-end flex-wrap gap-2 pr-3"},P={key:0},Q={key:1,class:"bg-gray-50 min-w-full"},U={colspan:"16",class:"w-[100%]"},W={key:1,class:"h-32 grid place-items-center text-2xl"},Y=t("p",null,"Result not found",-1),Z=[Y],ft={__name:"Index",props:{roles:Object},setup(i){return(c,tt)=>{const d=x("font-awesome-icon"),n=x("Link");return s(),o(m,null,[e(w(v),{title:"Role"}),e(b,null,{header:l(()=>[N]),default:l(()=>[t("div",R,[t("div",V,[t("div",j,[t("div",B,[t("div",C,[$,t("div",A,[e(n,{href:c.route("role.create"),class:"btn btn-primary"},{default:l(()=>[e(d,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),_(" Create New ")]),_:1},8,["href"]),e(n,{href:c.route("role.index"),class:"btn btn-primary"},{default:l(()=>[e(d,{icon:"fa-solid fa-eye",class:"mr-1"}),_(" View All ")]),_:1},8,["href"])])]),t("div",D,[t("div",L,[t("div",q,[t("div",E,[F,t("div",T,[e(g)])]),i.roles.data.length>0?(s(),o("div",z,[t("table",I,[O,i.roles.data.length>0?(s(),o("tbody",S,[(s(!0),o(m,null,h(i.roles.data,a=>(s(),o("tr",{key:a.id,id:a.id},[t("td",G,f(a.name),1),t("td",H,[(s(!0),o(m,null,h(a.permissions,p=>(s(),o("p",{key:p.id,class:"mr-2"},[e(d,{icon:"fa-solid fa-user-shield",class:"text-blue-400"}),_(" "+f(p.name),1)]))),128))]),t("td",J,f(a.created_at),1),t("td",K,[t("div",M,[t("div",null,[e(n,{href:c.route("role.show",a.id),class:"btn btn-info"},{default:l(()=>[e(d,{icon:"fa-solid fa-eye",class:"mr-1"})]),_:2},1032,["href"])]),a.isEditable?(s(),o("div",P,[e(n,{href:c.route("role.edit",a.id),class:"btn btn-primary"},{default:l(()=>[e(d,{icon:"fa-solid fa-pen-to-square",class:"mr-1"})]),_:2},1032,["href"])])):r("",!0),a.isDeletable?(s(),k(u,{key:1,data:{id:a.id,model:"role"}},null,8,["data"])):r("",!0)])])],8,X))),128))])):r("",!0),i.roles.meta.last_page>1?(s(),o("tfoot",Q,[t("tr",null,[t("td",U,[e(y,{class:"mt-6 dark:text-white flex justify-end p-3",meta:i.roles.meta},null,8,["meta"])])])])):r("",!0)])])):(s(),o("div",W,Z))])])])])])])])]),_:1})],64)}}};export{ft as default}; diff --git a/public/build/assets/Index-6d188f0e.js b/public/build/assets/Index-817ab34a.js similarity index 64% rename from public/build/assets/Index-6d188f0e.js rename to public/build/assets/Index-817ab34a.js index 8a5a1a6..956ccb7 100644 --- a/public/build/assets/Index-6d188f0e.js +++ b/public/build/assets/Index-817ab34a.js @@ -1 +1 @@ -import{_ as r}from"./AuthenticatedLayout-bb6d5f84.js";import{h as d,a as s,u as i,w as a,F as _,o as l,X as n,b as t,t as o}from"./app-4f9e7dfc.js";import"./Toast-3242a059.js";import"./toast-c1edb8fd.js";import"./ApplicationLogo-1c8f1468.js";import"./defaultFile-106f3fb6.js";import"./useCountries-7f78595f.js";import"./Dropdown-7d23bb7e.js";const m={class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"},c={class:"py-12 h-screen"},p={class:"max-w-7xl mx-auto sm:px-6 lg:px-8"},h={class:"bg-white dark:bg-gray-800 overflow-hidden shadow-sm sm:rounded-lg"},g={class:"p-6 text-gray-900 dark:text-gray-100"},F={__name:"Index",setup(x){return(e,u)=>(l(),d(_,null,[s(i(n),{title:"Dashboard"}),s(r,null,{header:a(()=>[t("h2",m,o(e.__("dashboard")),1)]),default:a(()=>[t("div",c,[t("div",p,[t("div",h,[t("div",g,o(e.__("welcome_message")),1)])])])]),_:1})],64))}};export{F as default}; +import{_ as r}from"./AuthenticatedLayout-6151d358.js";import{f as d,a as s,u as i,w as a,F as _,o as l,X as n,b as t,t as o}from"./app-4dfa7f3b.js";import"./Toast-645f4c7b.js";import"./toast-ded66f04.js";import"./ApplicationLogo-77a8e36b.js";import"./defaultFile-2b6c57d3.js";import"./useCountries-759a7ea1.js";import"./Dropdown-a96f453e.js";const m={class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"},c={class:"py-12 h-screen"},p={class:"max-w-7xl mx-auto sm:px-6 lg:px-8"},h={class:"bg-white dark:bg-gray-800 overflow-hidden shadow-sm sm:rounded-lg"},g={class:"p-6 text-gray-900 dark:text-gray-100"},F={__name:"Index",setup(x){return(e,u)=>(l(),d(_,null,[s(i(n),{title:"Dashboard"}),s(r,null,{header:a(()=>[t("h2",m,o(e.__("dashboard")),1)]),default:a(()=>[t("div",c,[t("div",p,[t("div",h,[t("div",g,o(e.__("welcome_message")),1)])])])]),_:1})],64))}};export{F as default}; diff --git a/public/build/assets/Index-91882f12.js b/public/build/assets/Index-91882f12.js deleted file mode 100644 index bca4b82..0000000 --- a/public/build/assets/Index-91882f12.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as w}from"./DeleteForm-95cf9c02.js";import{_ as v}from"./Pagination-efa838c1.js";import{_ as k}from"./Search-d7ef8e63.js";import{_ as j}from"./AuthenticatedLayout-bb1b77c9.js";import{r as u,l as C,o as e,g as o,a,b as N,w as l,F as f,H as V,d as t,j as m,c as h,e as p,m as g,t as i,h as y}from"./app-a07534fc.js";import"./DangerButton-1432f67e.js";import"./SecondaryButton-e6cce7b4.js";import"./DarkMode-9ce27e49.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";const B=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Products ",-1),D={class:"py-12 dark:text-white"},$={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},A={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},F={class:"px-4 sm:px-6 lg:px-8"},L={class:"sm:flex sm:items-center"},P=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," Products "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," A list of all the products. ")],-1),T={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-1 sm:space-x-2 space-y-2 sm:space-y-0"},H={class:"mt-8 flex flex-col"},I={class:"-my-2 -mx-4 overflow-x-auto sm:-mx-6 lg:-mx-8"},S={class:"inline-block min-w-full py-2 align-middle md:px-6 lg:px-8"},q={class:"flex items-center justify-between pb-4 bg-white text-black dark:bg-gray-800 dark:text-white pt-3 pr-0.5"},z=t("div",{class:"flex-1"},null,-1),E={class:"flex-auto"},O={key:0,class:"relative overflow-hidden shadow ring-1 ring-black ring-opacity-5 md:rounded-lg"},R={class:"min-w-full table-auto divide-y divide-gray-300 p-3"},G=t("thead",{class:"bg-gray-50 w-full"},[t("tr",null,[t("th",{scope:"col",class:"py-3.5 pr-3 pl-3 text-left text-base font-bold text-gray-900"}," Title "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Image "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Category "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Status "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Featured "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Date Time "),t("th",{scope:"col",class:"px-3 w-[20%] py-3.5 text-center text-base font-bold text-gray-900"}," Action ")])],-1),J={class:"divide-y divide-gray-200 bg-white w-full"},K=["id"],M={class:"min-w-[10%] text-left p-4 font-semibold text-gray-900 capitalize"},Q={class:"min-w-[10%] p-3 text-md text-gray-500"},U=["src","alt"],W={class:"min-w-[40%] p-3 text-md text-gray-500"},X={class:"min-w-[10%] p-3 text-md text-gray-500"},Y={class:"min-w-[10%] p-3 text-md text-gray-500"},Z={class:"min-w-[10%] p-3 text-md text-gray-500"},tt={class:"min-w-[10%] max-w-[30%] text-right text-sm font-medium"},et={class:"flex justify-end flex-wrap gap-2 pr-3"},st={key:0,class:"bg-gray-50 min-w-full"},at={colspan:"7",class:"w-[100%]"},ot={key:1,class:"h-32 grid place-items-center text-2xl"},lt=t("p",null,"Result not found",-1),it=[lt],jt={__name:"Index",props:{products:Object},setup(d){return(c,dt)=>{const _=u("font-awesome-icon"),n=u("Link"),r=C("can");return e(),o(f,null,[a(N(V),{title:"Products"}),a(j,null,{header:l(()=>[B]),default:l(()=>[t("div",D,[t("div",$,[t("div",A,[t("div",F,[t("div",L,[P,t("div",T,[m((e(),h(n,{href:c.route("admin.product.create"),class:"btn btn-primary"},{default:l(()=>[a(_,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),p(" Create New ")]),_:1},8,["href"])),[[r,"product.create"]]),m((e(),h(n,{href:c.route("admin.product.index"),class:"btn btn-primary"},{default:l(()=>[a(_,{icon:"fa-solid fa-eye",class:"mr-1"}),p(" View All ")]),_:1},8,["href"])),[[r,"product.view"]])])]),t("div",H,[t("div",I,[t("div",S,[t("div",q,[z,t("div",E,[a(k)])]),d.products.data.length>0?(e(),o("div",O,[t("table",R,[G,t("tbody",J,[(e(!0),o(f,null,g(d.products.data,s=>(e(),o("tr",{key:s.id,id:s.id},[t("td",M,i(s.title),1),t("td",Q,[t("img",{src:s.image,alt:s.image,class:"w-16 h-16"},null,8,U)]),t("td",W,[(e(!0),o(f,null,g(s.categories,(x,b)=>(e(),o("div",{key:x.id,class:"mr-2"},[p(i(b+1+".")+" ",1),a(n,{class:"text-blue-500",href:c.route("admin.category.show",x.id)},{default:l(()=>[p(i(x.title),1)]),_:2},1032,["href"])]))),128))]),t("td",X,i(s.is_featured),1),t("td",Y,i(s.status),1),t("td",Z,i(s.created_at),1),t("td",tt,[t("div",et,[m((e(),o("div",null,[a(n,{href:c.route("admin.product.show",s.id),class:"btn btn-info"},{default:l(()=>[a(_,{icon:"fa-solid fa-eye",class:"mr-1"})]),_:2},1032,["href"])])),[[r,"product.view"]]),m((e(),o("div",null,[a(n,{href:c.route("admin.product.edit",s.id),class:"btn btn-primary"},{default:l(()=>[a(_,{icon:"fa-solid fa-pen-to-square",class:"mr-1"})]),_:2},1032,["href"])])),[[r,"product.edit"]]),m(a(w,{data:{id:s.id,model:"product"}},null,8,["data"]),[[r,"product.delete"]])])])],8,K))),128))]),d.products.last_page>1?(e(),o("tfoot",st,[t("tr",null,[t("td",at,[d.products.last_page>1?(e(),h(v,{key:0,class:"mt-6 dark:text-white flex justify-end p-3",links:d.products.links},null,8,["links"])):y("",!0)])])])):y("",!0)])])):(e(),o("div",ot,it))])])])])])])])]),_:1})],64)}}};export{jt as default}; diff --git a/public/build/assets/Index-968f43bb.js b/public/build/assets/Index-968f43bb.js deleted file mode 100644 index 901f6ed..0000000 --- a/public/build/assets/Index-968f43bb.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as x}from"./DeleteForm-95cf9c02.js";import{_ as h}from"./Pagination-efa838c1.js";import{_ as u}from"./Search-d7ef8e63.js";import{_ as g}from"./AuthenticatedLayout-bb1b77c9.js";import{r as m,o as a,g as o,a as s,b as w,w as i,F as p,H as y,d as t,e as _,m as b,t as r,c as k,h as f}from"./app-a07534fc.js";import"./DangerButton-1432f67e.js";import"./SecondaryButton-e6cce7b4.js";import"./DarkMode-9ce27e49.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";const v=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Special Features ",-1),j={class:"py-12 dark:text-white"},N={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},S={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},V={class:"px-4 sm:px-6 lg:px-8"},B={class:"sm:flex sm:items-center"},C=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," Special Features "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," A list of all the special features. ")],-1),$={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-1 sm:space-x-2 space-y-2 sm:space-y-0"},A={class:"mt-8 flex flex-col"},D={class:"-my-2 -mx-4 overflow-x-auto sm:-mx-6 lg:-mx-8"},L={class:"inline-block min-w-full py-2 align-middle md:px-6 lg:px-8"},T={class:"flex items-center justify-between pb-4 bg-white text-black dark:bg-gray-800 dark:text-white pt-3 pr-0.5"},H=t("div",{class:"flex-1"},null,-1),I={class:"flex-auto"},q={key:0,class:"relative overflow-hidden shadow ring-1 ring-black ring-opacity-5 md:rounded-lg"},z={class:"min-w-full table-auto divide-y divide-gray-300 p-3"},E=t("thead",{class:"bg-gray-50 w-full"},[t("tr",null,[t("th",{scope:"col",class:"py-3.5 pr-3 pl-3 text-left text-base font-bold text-gray-900"}," Title "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900 break-words"}," Description "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Image "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Status "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Date Time "),t("th",{scope:"col",class:"px-3 w-[20%] py-3.5 text-center text-base font-bold text-gray-900"}," Action ")])],-1),O={class:"divide-y divide-gray-200 bg-white w-full"},R=["id"],F={class:"min-w-[10%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},G={class:"min-w-[10%] p-3 text-md text-gray-500"},J={class:"break-words w-10"},K={class:"whitespace-nowrap min-w-[10%] p-3 text-md text-gray-500"},M=["src","alt"],P={class:"min-w-[10%] whitespace-nowrap p-3 text-md text-gray-500"},Q={class:"min-w-[10%] whitespace-nowrap p-3 text-md text-gray-500"},U={class:"whitespace-nowrap min-w-[10%] max-w-[30%] text-right text-sm font-medium"},W={class:"flex justify-end flex-wrap gap-2 pr-3"},X={key:0,class:"bg-gray-50 min-w-full"},Y={colspan:"7",class:"w-[100%]"},Z={key:1,class:"h-32 grid place-items-center text-2xl"},tt=t("p",null,"Result not found",-1),et=[tt],wt={__name:"Index",props:{specialFeatures:Object},setup(l){return(c,st)=>{const n=m("font-awesome-icon"),d=m("Link");return a(),o(p,null,[s(w(y),{title:"Special Features"}),s(g,null,{header:i(()=>[v]),default:i(()=>[t("div",j,[t("div",N,[t("div",S,[t("div",V,[t("div",B,[C,t("div",$,[s(d,{href:c.route("admin.special-feature.create"),class:"btn btn-primary"},{default:i(()=>[s(n,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),_(" Create New ")]),_:1},8,["href"]),s(d,{href:c.route("admin.special-feature.index"),class:"btn btn-primary"},{default:i(()=>[s(n,{icon:"fa-solid fa-eye",class:"mr-1"}),_(" View All ")]),_:1},8,["href"])])]),t("div",A,[t("div",D,[t("div",L,[t("div",T,[H,t("div",I,[s(u)])]),l.specialFeatures.data.length>0?(a(),o("div",q,[t("table",z,[E,t("tbody",O,[(a(!0),o(p,null,b(l.specialFeatures.data,e=>(a(),o("tr",{key:e.id,id:e.id},[t("td",F,r(e.title),1),t("td",G,[t("span",J,r(e.description?e.description.split(" ").slice(0,10).join(" ")+"...":""),1)]),t("td",K,[t("img",{src:e.image,alt:e.image,class:"w-16 h-16"},null,8,M)]),t("td",P,r(e.status),1),t("td",Q,r(e.created_at),1),t("td",U,[t("div",W,[t("div",null,[s(d,{href:c.route("admin.special-feature.show",e.id),class:"btn btn-info"},{default:i(()=>[s(n,{icon:"fa-solid fa-eye",class:"mr-1"})]),_:2},1032,["href"])]),t("div",null,[s(d,{href:c.route("admin.special-feature.edit",e.id),class:"btn btn-primary"},{default:i(()=>[s(n,{icon:"fa-solid fa-pen-to-square",class:"mr-1"})]),_:2},1032,["href"])]),s(x,{data:{id:e.id,model:"special-feature"}},null,8,["data"])])])],8,R))),128))]),l.specialFeatures.last_page>1?(a(),o("tfoot",X,[t("tr",null,[t("td",Y,[l.specialFeatures.last_page>1?(a(),k(h,{key:0,class:"mt-6 dark:text-white flex justify-end p-3",links:l.specialFeatures.links},null,8,["links"])):f("",!0)])])])):f("",!0)])])):(a(),o("div",Z,et))])])])])])])])]),_:1})],64)}}};export{wt as default}; diff --git a/public/build/assets/Index-e44d8e3c.js b/public/build/assets/Index-a48d9968.js similarity index 83% rename from public/build/assets/Index-e44d8e3c.js rename to public/build/assets/Index-a48d9968.js index eb1cdb7..8c46254 100644 --- a/public/build/assets/Index-e44d8e3c.js +++ b/public/build/assets/Index-a48d9968.js @@ -1 +1 @@ -import{_ as y}from"./DeleteForm-3a0f2fad.js";import{_ as w,a as g}from"./Search-b0de8abf.js";import{_ as b}from"./AuthenticatedLayout-bb6d5f84.js";import{h as o,a as s,u as v,w as l,F as m,o as a,X as k,b as t,d as p,m as h,t as c,c as N,q as f,k as u}from"./app-4f9e7dfc.js";import"./DangerButton-c925b039.js";import"./SecondaryButton-5f2daf35.js";import"./Toast-3242a059.js";import"./toast-c1edb8fd.js";import"./ApplicationLogo-1c8f1468.js";import"./defaultFile-106f3fb6.js";import"./useCountries-7f78595f.js";import"./Dropdown-7d23bb7e.js";const V=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," User ",-1),j={class:"py-12 dark:text-white"},A={class:"max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6"},B={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},C={class:"px-4 sm:px-6 lg:px-8"},$={class:"sm:flex sm:items-center"},D=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," User "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," A list of all the users. ")],-1),L={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-1 sm:space-x-2 space-y-2 sm:space-y-0"},U={class:"mt-8 flex flex-col"},q={class:"-my-2 -mx-4 overflow-x-auto sm:-mx-6 lg:-mx-8"},E={class:"inline-block min-w-full py-2 align-middle md:px-6 lg:px-8"},F={class:"flex items-center justify-between pb-4 bg-white dark:bg-gray-800 pt-3 pr-0.5"},R=t("div",{class:"flex-1"},null,-1),S={class:"flex-auto"},T={key:0,class:"relative overflow-hidden shadow ring-1 ring-black ring-opacity-5 md:rounded-lg"},z={class:"min-w-full table-auto divide-y divide-gray-300 p-3"},I=t("thead",{class:"bg-gray-50 w-full"},[t("tr",null,[t("th",{scope:"col",class:"py-3.5 pr-3 pl-3 text-left text-base font-bold text-gray-900"}," Name "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Email "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Avatar "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Role "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Status "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Date Time "),t("th",{scope:"col",class:"px-3 w-[20%] py-3.5 text-center text-base font-bold text-gray-900"}," Action ")])],-1),O={class:"divide-y divide-gray-200 bg-white w-full"},X=["id"],G={class:"min-w-[10%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},H={class:"min-w-[10%] whitespace-nowrap p-3 text-md text-gray-500"},J={class:"whitespace-nowrap min-w-[10%] p-3 text-md text-gray-500"},K=["src","alt"],M={class:"min-w-[40%] whitespace-nowrap p-3 text-md text-gray-500"},P={class:"min-w-[10%] whitespace-nowrap p-3 text-md text-gray-500"},Q={class:"min-w-[10%] whitespace-nowrap p-3 text-md text-gray-500"},W={class:"whitespace-nowrap min-w-[10%] max-w-[30%] text-right text-sm font-medium"},Y={class:"flex justify-end flex-wrap gap-2 pr-3"},Z={key:0,class:"bg-gray-50 min-w-full"},tt={colspan:"16",class:"w-[100%]"},et={key:1,class:"h-32 grid place-items-center text-2xl"},st=t("p",null,"Result not found",-1),at=[st],ut={__name:"Index",props:{users:Object},setup(n){return(d,ot)=>{const i=u("font-awesome-icon"),r=u("Link");return a(),o(m,null,[s(v(k),{title:"User"}),s(b,null,{header:l(()=>[V]),default:l(()=>{var x;return[t("div",j,[t("div",A,[t("div",B,[t("div",C,[t("div",$,[D,t("div",L,[s(r,{href:d.route("user.create"),class:"btn btn-primary"},{default:l(()=>[s(i,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),p(" Create New ")]),_:1},8,["href"]),s(r,{href:d.route("user.index"),class:"btn btn-primary"},{default:l(()=>[s(i,{icon:"fa-solid fa-eye",class:"mr-1"}),p(" View All ")]),_:1},8,["href"])])]),t("div",U,[t("div",q,[t("div",E,[t("div",F,[R,t("div",S,[s(w)])]),((x=n.users.data)==null?void 0:x.length)>0?(a(),o("div",T,[t("table",z,[I,t("tbody",O,[(a(!0),o(m,null,h(n.users.data,e=>(a(),o("tr",{key:e.id,id:e.id},[t("td",G,c(e.name),1),t("td",H,c(e.email),1),t("td",J,[t("img",{src:e.avatar,alt:e.avatar,class:"w-16 h-16"},null,8,K)]),t("td",M,[(a(!0),o(m,null,h(e.roles,_=>(a(),o("div",{key:_.id,class:"mr-2"},[s(i,{icon:"fa-solid fa-user-shield",class:"text-blue-400"}),p(" "+c(_.name),1)]))),128))]),t("td",P,c(e.status),1),t("td",Q,c(e.created_at),1),t("td",W,[t("div",Y,[t("div",null,[s(r,{href:d.route("user.show",e.id),class:"btn btn-info"},{default:l(()=>[s(i,{icon:"fa-solid fa-eye",class:"mr-1"})]),_:2},1032,["href"])]),t("div",null,[s(r,{href:d.route("user.edit",e.id),class:"btn btn-primary"},{default:l(()=>[s(i,{icon:"fa-solid fa-pen-to-square",class:"mr-1"})]),_:2},1032,["href"])]),e.isDeletable?(a(),N(y,{key:0,data:{id:e.id,model:"user"}},null,8,["data"])):f("",!0)])])],8,X))),128))]),n.users.meta.last_page>1?(a(),o("tfoot",Z,[t("tr",null,[t("td",tt,[s(g,{class:"mt-6 dark:text-white flex justify-end p-3",meta:n.users.meta},null,8,["meta"])])])])):f("",!0)])])):(a(),o("div",et,at))])])])])])])])]}),_:1})],64)}}};export{ut as default}; +import{_ as y}from"./DeleteForm-ea1de4c5.js";import{_ as w,a as g}from"./Search-662cc140.js";import{_ as b}from"./AuthenticatedLayout-6151d358.js";import{f as o,a as s,u as v,w as l,F as m,o as a,X as k,b as t,d as p,q as f,t as c,c as N,g as h,r as u}from"./app-4dfa7f3b.js";import"./DangerButton-9faead77.js";import"./SecondaryButton-c5891444.js";import"./Toast-645f4c7b.js";import"./toast-ded66f04.js";import"./ApplicationLogo-77a8e36b.js";import"./defaultFile-2b6c57d3.js";import"./useCountries-759a7ea1.js";import"./Dropdown-a96f453e.js";const V=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," User ",-1),j={class:"py-12 dark:text-white"},A={class:"max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6"},B={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},C={class:"px-4 sm:px-6 lg:px-8"},$={class:"sm:flex sm:items-center"},D=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," User "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," A list of all the users. ")],-1),L={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-1 sm:space-x-2 space-y-2 sm:space-y-0"},U={class:"mt-8 flex flex-col"},q={class:"-my-2 -mx-4 overflow-x-auto sm:-mx-6 lg:-mx-8"},E={class:"inline-block min-w-full py-2 align-middle md:px-6 lg:px-8"},F={class:"flex items-center justify-between pb-4 bg-white dark:bg-gray-800 pt-3 pr-0.5"},R=t("div",{class:"flex-1"},null,-1),S={class:"flex-auto"},T={key:0,class:"relative overflow-hidden shadow ring-1 ring-black ring-opacity-5 md:rounded-lg"},z={class:"min-w-full table-auto divide-y divide-gray-300 p-3"},I=t("thead",{class:"bg-gray-50 w-full"},[t("tr",null,[t("th",{scope:"col",class:"py-3.5 pr-3 pl-3 text-left text-base font-bold text-gray-900"}," Name "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Email "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Avatar "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Role "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Status "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Date Time "),t("th",{scope:"col",class:"px-3 w-[20%] py-3.5 text-center text-base font-bold text-gray-900"}," Action ")])],-1),O={class:"divide-y divide-gray-200 bg-white w-full"},X=["id"],G={class:"min-w-[10%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},H={class:"min-w-[10%] whitespace-nowrap p-3 text-md text-gray-500"},J={class:"whitespace-nowrap min-w-[10%] p-3 text-md text-gray-500"},K=["src","alt"],M={class:"min-w-[40%] whitespace-nowrap p-3 text-md text-gray-500"},P={class:"min-w-[10%] whitespace-nowrap p-3 text-md text-gray-500"},Q={class:"min-w-[10%] whitespace-nowrap p-3 text-md text-gray-500"},W={class:"whitespace-nowrap min-w-[10%] max-w-[30%] text-right text-sm font-medium"},Y={class:"flex justify-end flex-wrap gap-2 pr-3"},Z={key:0,class:"bg-gray-50 min-w-full"},tt={colspan:"16",class:"w-[100%]"},et={key:1,class:"h-32 grid place-items-center text-2xl"},st=t("p",null,"Result not found",-1),at=[st],ut={__name:"Index",props:{users:Object},setup(n){return(d,ot)=>{const i=u("font-awesome-icon"),r=u("Link");return a(),o(m,null,[s(v(k),{title:"User"}),s(b,null,{header:l(()=>[V]),default:l(()=>{var x;return[t("div",j,[t("div",A,[t("div",B,[t("div",C,[t("div",$,[D,t("div",L,[s(r,{href:d.route("user.create"),class:"btn btn-primary"},{default:l(()=>[s(i,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),p(" Create New ")]),_:1},8,["href"]),s(r,{href:d.route("user.index"),class:"btn btn-primary"},{default:l(()=>[s(i,{icon:"fa-solid fa-eye",class:"mr-1"}),p(" View All ")]),_:1},8,["href"])])]),t("div",U,[t("div",q,[t("div",E,[t("div",F,[R,t("div",S,[s(w)])]),((x=n.users.data)==null?void 0:x.length)>0?(a(),o("div",T,[t("table",z,[I,t("tbody",O,[(a(!0),o(m,null,f(n.users.data,e=>(a(),o("tr",{key:e.id,id:e.id},[t("td",G,c(e.name),1),t("td",H,c(e.email),1),t("td",J,[t("img",{src:e.avatar,alt:e.avatar,class:"w-16 h-16"},null,8,K)]),t("td",M,[(a(!0),o(m,null,f(e.roles,_=>(a(),o("div",{key:_.id,class:"mr-2"},[s(i,{icon:"fa-solid fa-user-shield",class:"text-blue-400"}),p(" "+c(_.name),1)]))),128))]),t("td",P,c(e.status),1),t("td",Q,c(e.created_at),1),t("td",W,[t("div",Y,[t("div",null,[s(r,{href:d.route("user.show",e.id),class:"btn btn-info"},{default:l(()=>[s(i,{icon:"fa-solid fa-eye",class:"mr-1"})]),_:2},1032,["href"])]),t("div",null,[s(r,{href:d.route("user.edit",e.id),class:"btn btn-primary"},{default:l(()=>[s(i,{icon:"fa-solid fa-pen-to-square",class:"mr-1"})]),_:2},1032,["href"])]),e.isDeletable?(a(),N(y,{key:0,data:{id:e.id,model:"user"}},null,8,["data"])):h("",!0)])])],8,X))),128))]),n.users.meta.last_page>1?(a(),o("tfoot",Z,[t("tr",null,[t("td",tt,[s(g,{class:"mt-6 dark:text-white flex justify-end p-3",meta:n.users.meta},null,8,["meta"])])])])):h("",!0)])])):(a(),o("div",et,at))])])])])])])])]}),_:1})],64)}}};export{ut as default}; diff --git a/public/build/assets/Index-a5f0c092.js b/public/build/assets/Index-a5f0c092.js deleted file mode 100644 index 3dd3cf8..0000000 --- a/public/build/assets/Index-a5f0c092.js +++ /dev/null @@ -1 +0,0 @@ -import{H as i}from"./Hero-92ba1f8c.js";import{_ as m}from"./MasterLayout.vue_vue_type_script_setup_true_lang-71c3fc2e.js";import l from"./Category-7e67090f.js";import{S as n,o as c,g as _,a,w as r,d as t,t as o,b as d,H as p,e as g,F as x}from"./app-a07534fc.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./DarkMode-9ce27e49.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./use-root-containers-d6d195ba.js";import"./SocialLink-414cdd14.js";import"./Pagination-efa838c1.js";const u={class:"bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50"},f={class:"mx-auto max-w-md px-6 text-center sm:max-w-3xl lg:max-w-full lg:px-8 mt-5 md:mt-10"},y={class:"text-3xl font-bold tracking-tight text-gray-900 dark:text-gray-200 sm:text-4xl"},h={class:"mx-auto mt-5 max-w-prose text-xl text-gray-500"},D=n({__name:"Index",props:{categories:Object},setup(s){return(e,w)=>(c(),_(x,null,[a(d(p),null,{default:r(()=>[t("title",null,o(e.__("category.title")),1)]),_:1}),a(m,null,{default:r(()=>[t("div",u,[a(i,null,{default:r(()=>[g(o(e.__("hero.category")),1)]),_:1}),t("div",f,[t("p",y,o(e.__("category.heading")),1),t("p",h,o(e.__("category.description")),1)]),a(l,{categories:s.categories},null,8,["categories"])])]),_:1})],64))}});export{D as default}; diff --git a/public/build/assets/Index-c763992e.js b/public/build/assets/Index-c763992e.js deleted file mode 100644 index 97bfb54..0000000 --- a/public/build/assets/Index-c763992e.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s}from"./AuthenticatedLayout-bb1b77c9.js";import{o,g as i,a,b as d,w as e,F as l,H as m,d as t,t as n}from"./app-a07534fc.js";import"./DarkMode-9ce27e49.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";const p={class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"},c=t("div",{class:"py-12 h-screen"},[t("div",{class:"max-w-full mx-auto sm:px-6 lg:px-8"},[t("div",{class:"bg-white dark:bg-gray-800 overflow-hidden shadow-sm sm:rounded-lg"},[t("div",{class:"p-6 text-gray-900 dark:text-gray-100"}," You're logged in! ")])])],-1),F={__name:"Index",setup(_){return(r,g)=>(o(),i(l,null,[a(d(m),{title:"Dashboard"}),a(s,null,{header:e(()=>[t("h2",p,n(r.__("dashboard")),1)]),default:e(()=>[c]),_:1})],64))}};export{F as default}; diff --git a/public/build/assets/Index-d980b195.js b/public/build/assets/Index-d980b195.js deleted file mode 100644 index 9bb44b5..0000000 --- a/public/build/assets/Index-d980b195.js +++ /dev/null @@ -1 +0,0 @@ -import{H as s}from"./Hero-92ba1f8c.js";import{_ as i}from"./MasterLayout.vue_vue_type_script_setup_true_lang-71c3fc2e.js";import m from"./About-a17a7e67.js";import l from"./Goal-09255514.js";import{S as n,o as p,g as u,a as t,w as e,d as o,t as r,b as _,H as d,e as f,F as c}from"./app-a07534fc.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./DarkMode-9ce27e49.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./use-root-containers-d6d195ba.js";import"./SocialLink-414cdd14.js";const g={class:"bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50"},v=n({__name:"Index",setup(b){return(a,h)=>(p(),u(c,null,[t(_(d),null,{default:e(()=>[o("title",null,r(a.__("about.title")),1)]),_:1}),t(i,null,{default:e(()=>[o("div",g,[t(s,null,{default:e(()=>[f(r(a.__("hero.about","About us")),1)]),_:1}),t(m),t(l)])]),_:1})],64))}});export{v as default}; diff --git a/public/build/assets/Index-da8e71ca.js b/public/build/assets/Index-da8e71ca.js deleted file mode 100644 index f4c5c8f..0000000 --- a/public/build/assets/Index-da8e71ca.js +++ /dev/null @@ -1 +0,0 @@ -import{S as i}from"./Sync-acecb079.js";import{_ as l}from"./AuthenticatedLayout-bb1b77c9.js";import n from"./SettingsForm-9e4047b4.js";import{A as c,r as m,o as p,g as u,a as e,b as d,w as o,F as f,H as _,d as t}from"./app-a07534fc.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./DarkMode-9ce27e49.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";import"./InputError-819a2731.js";import"./InputLabel-0d88b11e.js";import"./PrimaryButton-f1dd44c4.js";import"./useCountries-62ba1c05.js";import"./default.css_vue_type_style_index_0_src_true_lang-5ba86734.js";const g={class:"flex justify-between"},h=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Application Settings ",-1),x=t("span",null,"Cache Clear",-1),b={class:"py-12"},S={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},v={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg"},z={__name:"Index",props:{roleArr:Object,socialLoginFields:Object,userDefaultStatus:Object},setup(s){return c().props.value.global.options,(a,w)=>{const r=m("Link");return p(),u(f,null,[e(d(_),{title:"Settings"}),e(l,null,{header:o(()=>[t("div",g,[h,e(r,{href:a.route("cache.clear"),class:"flex items-center gap-1 text-blue-700 hover:text-blue-500 text-md"},{default:o(()=>[e(i,{class:"w-5 h-5 animate-spin"}),x]),_:1},8,["href"])])]),default:o(()=>[t("div",b,[t("div",S,[t("div",v,[e(n,{roleArr:s.roleArr,socialLoginFields:s.socialLoginFields,userDefaultStatus:s.userDefaultStatus},null,8,["roleArr","socialLoginFields","userDefaultStatus"])])])])]),_:1})],64)}}};export{z as default}; diff --git a/public/build/assets/Index-dcf1ae79.js b/public/build/assets/Index-dcf1ae79.js deleted file mode 100644 index a6b9c1a..0000000 --- a/public/build/assets/Index-dcf1ae79.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as d}from"./Toast-3242a059.js";import{Q as c,h as o,a,w as s,u as r,b as e,F as p,o as n,X as u,d as l,z as i}from"./app-4f9e7dfc.js";import"./toast-c1edb8fd.js";const h=e("title",null,"Home",-1),g=["href"],_={class:"relative sm:items-center sm:pt-0"},f={class:"absolute right-5 top-20 p-5"},m={key:0},x={key:1},b=e("div",{class:"flex gap-5 flex-col justify-center items-center h-screen -mt-20 dark:text-white w-full"},[e("span",{class:"text-bold text-4xl"},"Admin Panel Starter"),e("a",{class:"text-xl text-blue-500",href:"https://github.com/anisAronno/multipurpose-admin-panel-boilerplate",target:"_blank"}," Go Github ")],-1),w=c({__name:"Index",props:{canLogin:Boolean,canRegister:Boolean,laravelVersion:String,phpVersion:String},setup(k){return(t,y)=>(n(),o(p,null,[a(r(u),null,{default:s(()=>[h,e("link",{rel:"icon",type:"image/svg+xml",href:t.$page.props.global.options.fav_icon},null,8,g)]),_:1}),a(d),e("div",_,[e("div",f,[t.$page.props.auth.user?(n(),o("div",m,[a(r(i),{href:t.route("dashboard"),class:"text-lg text-gray-900 dark:text-gray-500 underline"},{default:s(()=>[l("Dashboard")]),_:1},8,["href"])])):(n(),o("div",x,[a(r(i),{href:t.route("login"),class:"text-lg text-gray-900 dark:text-gray-500 underline"},{default:s(()=>[l("Log in")]),_:1},8,["href"]),a(r(i),{href:t.route("register"),class:"ml-4 text-lg text-gray-900 dark:text-gray-500 underline"},{default:s(()=>[l("Register")]),_:1},8,["href"])]))]),b])],64))}});export{w as default}; diff --git a/public/build/assets/Index-f145d4df.js b/public/build/assets/Index-f145d4df.js deleted file mode 100644 index eb2c517..0000000 --- a/public/build/assets/Index-f145d4df.js +++ /dev/null @@ -1 +0,0 @@ -import{H as h}from"./Hero-92ba1f8c.js";import{_ as y}from"./MasterLayout.vue_vue_type_script_setup_true_lang-71c3fc2e.js";import b from"./Products-f4fea842.js";import{p as k,A as v,i as w,o as r,g as l,a as n,w as d,b as V,F as H,d as s,t as a,H as j,e as p}from"./app-a07534fc.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./DarkMode-9ce27e49.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./use-root-containers-d6d195ba.js";import"./SocialLink-414cdd14.js";import"./Pagination-efa838c1.js";import"./Search-d7ef8e63.js";import"./transition-26ae2105.js";import"./CategoryList-73e6e756.js";const A={class:"bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50"},B={class:"pt-10"},C={class:"mx-auto max-w-md px-6 text-center sm:max-w-3xl lg:max-w-full lg:px-8"},N={class:"text-xl font-semibold tracking-tight text-gray-900 dark:text-gray-200"},O={key:0},S={class:"text-xl font-bold sm:text-2xl text-cyan-400"},E={key:1,class:"text-2xl"},F={class:"mx-auto mt-5 max-w-prose text-xl text-gray-500"},P={key:0},$={key:1},Y={__name:"Index",props:{products:Object,categories:Object},setup(c){const g=c;let m=k("");const x=v().url,f=new URLSearchParams(x.value.split("?")[1]);m.value=f.get("category")||"";function _(t,u){for(let e of Object.values(t)){if(e.slug==u)return e;if(Array.isArray(e.children)){let o=_(e.children,u);if(o)return o}}return null}const i=w(()=>{const t=_(g.categories,m.value);return t||null});return(t,u)=>(r(),l(H,null,[n(V(j),null,{default:d(()=>[s("title",null,a(t.__("product.title")),1)]),_:1}),n(y,null,{default:d(()=>{var e,o;return[s("div",A,[n(h,null,{default:d(()=>[p(a(t.__("hero.product")),1)]),_:1}),s("div",B,[s("div",C,[s("p",N,[(e=i.value)!=null&&e.label?(r(),l("span",O,[p(" Explore "),s("span",S,"  "+a(i.value.label)+"  ",1),p(" in our Collection!")])):(r(),l("span",E,a(t.__("product.heading")),1))]),s("p",F,[(o=i.value)!=null&&o.description?(r(),l("span",P,a(i.value.description),1)):(r(),l("span",$,a(t.__("product.description")),1))])]),n(b,{products:c.products,categories:c.categories},null,8,["products","categories"])])])]}),_:1})],64))}};export{Y as default}; diff --git a/public/build/assets/Index-287ea20c.js b/public/build/assets/Index-fc7878c4.js similarity index 67% rename from public/build/assets/Index-287ea20c.js rename to public/build/assets/Index-fc7878c4.js index 12780f0..2bda9ab 100644 --- a/public/build/assets/Index-287ea20c.js +++ b/public/build/assets/Index-fc7878c4.js @@ -1 +1 @@ -import{a as n,_ as c}from"./AuthenticatedLayout-bb6d5f84.js";import{o as i,h as r,b as t,J as m,a as e,u as d,w as o,F as p,X as _,k as u}from"./app-4f9e7dfc.js";import h from"./Images-d22622b7.js";import f from"./SettingsForm-42deddc6.js";import"./Toast-3242a059.js";import"./toast-c1edb8fd.js";import"./ApplicationLogo-1c8f1468.js";import"./defaultFile-106f3fb6.js";import"./useCountries-7f78595f.js";import"./Dropdown-7d23bb7e.js";import"./Image-b36d5d14.js";import"./DangerButton-c925b039.js";import"./SecondaryButton-5f2daf35.js";import"./InputLabel-5969cc22.js";import"./PrimaryButton-89a514d8.js";import"./Textarea-01085d86.js";import"./TextInput-5a299594.js";import"./default.css_vue_type_style_index_0_src_true_lang-51e34c56.js";const x={},g={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24px",height:"24px",fill:"#0000FF"},C=t("path",{d:"M 11 0 C 10.74 0 10.483969 0.10196875 10.292969 0.29296875 L 7.2929688 3.2929688 C 6.9019688 3.6839688 6.9019687 4.3170313 7.2929688 4.7070312 L 10.292969 7.7070312 C 10.578969 7.9930312 11.007812 8.0778281 11.382812 7.9238281 C 11.756813 7.7688281 12 7.405 12 7 L 12 5 C 15.877484 5 19 8.1225161 19 12 C 19 13.025799 18.774981 13.99479 18.376953 14.876953 A 1.0001 1.0001 0 1 0 20.199219 15.699219 C 20.707191 14.573382 21 13.320201 21 12 C 21 7.0414839 16.958516 3 12 3 L 12 1 C 12 0.596 11.756812 0.23117187 11.382812 0.076171875 C 11.258813 0.025171875 11.129 0 11 0 z M 4.7265625 7.6992188 A 1.0001 1.0001 0 0 0 3.8007812 8.3007812 C 3.2928092 9.426618 3 10.679799 3 12 C 3 16.958516 7.0414839 21 12 21 L 12 23 C 12 23.404 12.243188 23.768828 12.617188 23.923828 C 12.741187 23.974828 12.871 24 13 24 C 13.26 24 13.516031 23.898031 13.707031 23.707031 L 16.707031 20.707031 C 17.098031 20.316031 17.098031 19.683969 16.707031 19.292969 L 13.707031 16.292969 C 13.421031 16.006969 12.992188 15.922172 12.617188 16.076172 C 12.243187 16.231172 12 16.596 12 17 L 12 19 C 8.1225161 19 5 15.877484 5 12 C 5 10.974201 5.225019 10.00521 5.6230469 9.1230469 A 1.0001 1.0001 0 0 0 4.7265625 7.6992188 z"},null,-1),w=[C];function L(s,a){return i(),r("svg",g,w)}const b=n(x,[["render",L]]),v={class:"flex justify-between"},y=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Settings ",-1),k=t("span",null,"Cache Clear",-1),F={class:"py-12"},A={class:"max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6"},$={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg"},S={class:"py-12"},j={class:"max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6"},B={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg"},W={__name:"Index",props:{roleArr:Object,socialLoginFields:Object,userDefaultStatus:Object},setup(s){return m().props.global.options,(a,D)=>{const l=u("Link");return i(),r(p,null,[e(d(_),{title:"Profile"}),e(c,null,{header:o(()=>[t("div",v,[y,e(l,{href:a.route("cache.clear"),class:"flex items-center gap-1 text-blue-700 hover:text-blue-500 text-md"},{default:o(()=>[e(b,{class:"w-5 h-5 animate-spin"}),k]),_:1},8,["href"])])]),default:o(()=>[t("div",F,[t("div",A,[t("div",$,[e(h)])])]),t("div",S,[t("div",j,[t("div",B,[e(f,{roleArr:s.roleArr,socialLoginFields:s.socialLoginFields,userDefaultStatus:s.userDefaultStatus},null,8,["roleArr","socialLoginFields","userDefaultStatus"])])])])]),_:1})],64)}}};export{W as default}; +import{a as n,_ as c}from"./AuthenticatedLayout-6151d358.js";import{o as r,f as i,b as t,J as m,a as e,u as d,w as o,F as p,X as _,r as u}from"./app-4dfa7f3b.js";import h from"./Images-ec051a23.js";import f from"./SettingsForm-a6914011.js";import"./Toast-645f4c7b.js";import"./toast-ded66f04.js";import"./ApplicationLogo-77a8e36b.js";import"./defaultFile-2b6c57d3.js";import"./useCountries-759a7ea1.js";import"./Dropdown-a96f453e.js";import"./Image-ad5bc90a.js";import"./DangerButton-9faead77.js";import"./SecondaryButton-c5891444.js";import"./InputLabel-fec82426.js";import"./PrimaryButton-2b535c8b.js";import"./Textarea-f6994d96.js";import"./TextInput-fb418c8e.js";import"./default.css_vue_type_style_index_0_src_true_lang-5d8f90ba.js";const x={},g={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24px",height:"24px",fill:"#0000FF"},C=t("path",{d:"M 11 0 C 10.74 0 10.483969 0.10196875 10.292969 0.29296875 L 7.2929688 3.2929688 C 6.9019688 3.6839688 6.9019687 4.3170313 7.2929688 4.7070312 L 10.292969 7.7070312 C 10.578969 7.9930312 11.007812 8.0778281 11.382812 7.9238281 C 11.756813 7.7688281 12 7.405 12 7 L 12 5 C 15.877484 5 19 8.1225161 19 12 C 19 13.025799 18.774981 13.99479 18.376953 14.876953 A 1.0001 1.0001 0 1 0 20.199219 15.699219 C 20.707191 14.573382 21 13.320201 21 12 C 21 7.0414839 16.958516 3 12 3 L 12 1 C 12 0.596 11.756812 0.23117187 11.382812 0.076171875 C 11.258813 0.025171875 11.129 0 11 0 z M 4.7265625 7.6992188 A 1.0001 1.0001 0 0 0 3.8007812 8.3007812 C 3.2928092 9.426618 3 10.679799 3 12 C 3 16.958516 7.0414839 21 12 21 L 12 23 C 12 23.404 12.243188 23.768828 12.617188 23.923828 C 12.741187 23.974828 12.871 24 13 24 C 13.26 24 13.516031 23.898031 13.707031 23.707031 L 16.707031 20.707031 C 17.098031 20.316031 17.098031 19.683969 16.707031 19.292969 L 13.707031 16.292969 C 13.421031 16.006969 12.992188 15.922172 12.617188 16.076172 C 12.243187 16.231172 12 16.596 12 17 L 12 19 C 8.1225161 19 5 15.877484 5 12 C 5 10.974201 5.225019 10.00521 5.6230469 9.1230469 A 1.0001 1.0001 0 0 0 4.7265625 7.6992188 z"},null,-1),w=[C];function L(s,a){return r(),i("svg",g,w)}const b=n(x,[["render",L]]),v={class:"flex justify-between"},y=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Settings ",-1),F=t("span",null,"Cache Clear",-1),k={class:"py-12"},A={class:"max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6"},$={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg"},S={class:"py-12"},j={class:"max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6"},B={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg"},W={__name:"Index",props:{roleArr:Object,socialLoginFields:Object,userDefaultStatus:Object},setup(s){return m().props.global.options,(a,D)=>{const l=u("Link");return r(),i(p,null,[e(d(_),{title:"Profile"}),e(c,null,{header:o(()=>[t("div",v,[y,e(l,{href:a.route("cache.clear"),class:"flex items-center gap-1 text-blue-700 hover:text-blue-500 text-md"},{default:o(()=>[e(b,{class:"w-5 h-5 animate-spin"}),F]),_:1},8,["href"])])]),default:o(()=>[t("div",k,[t("div",A,[t("div",$,[e(h)])])]),t("div",S,[t("div",j,[t("div",B,[e(f,{roleArr:s.roleArr,socialLoginFields:s.socialLoginFields,userDefaultStatus:s.userDefaultStatus},null,8,["roleArr","socialLoginFields","userDefaultStatus"])])])])]),_:1})],64)}}};export{W as default}; diff --git a/public/build/assets/InputError-819a2731.js b/public/build/assets/InputError-819a2731.js deleted file mode 100644 index d55888c..0000000 --- a/public/build/assets/InputError-819a2731.js +++ /dev/null @@ -1 +0,0 @@ -import{j as s,y as t,o as a,g as r,d as o,t as c}from"./app-a07534fc.js";const n={class:"text-sm text-red-600 dark:text-red-400"},l={__name:"InputError",props:["message"],setup(e){return(i,m)=>s((a(),r("div",null,[o("p",n,c(e.message),1)],512)),[[t,e.message]])}};export{l as _}; diff --git a/public/build/assets/InputLabel-0d88b11e.js b/public/build/assets/InputLabel-0d88b11e.js deleted file mode 100644 index 4ebf1e9..0000000 --- a/public/build/assets/InputLabel-0d88b11e.js +++ /dev/null @@ -1 +0,0 @@ -import{o as e,g as t,t as o,k as n}from"./app-a07534fc.js";const l={class:"block font-medium text-sm text-gray-700 dark:text-gray-300"},r={key:0},c={key:1},i={__name:"InputLabel",props:["value"],setup(a){return(s,_)=>(e(),t("label",l,[a.value?(e(),t("span",r,o(a.value),1)):(e(),t("span",c,[n(s.$slots,"default")]))]))}};export{i as _}; diff --git a/public/build/assets/InputLabel-5969cc22.js b/public/build/assets/InputLabel-fec82426.js similarity index 76% rename from public/build/assets/InputLabel-5969cc22.js rename to public/build/assets/InputLabel-fec82426.js index 9cdad36..8f5cad3 100644 --- a/public/build/assets/InputLabel-5969cc22.js +++ b/public/build/assets/InputLabel-fec82426.js @@ -1 +1 @@ -import{f as n,g as c,o as t,h as s,b as l,t as r,r as _}from"./app-4f9e7dfc.js";const i={class:"text-sm text-red-600 dark:text-red-400"},h={__name:"InputError",props:["message"],setup(e){return(a,o)=>n((t(),s("div",null,[l("p",i,r(e.message),1)],512)),[[c,e.message]])}},m={class:"block font-medium text-sm text-gray-700 dark:text-gray-300"},u={key:0},d={key:1},x={__name:"InputLabel",props:["value"],setup(e){return(a,o)=>(t(),s("label",m,[e.value?(t(),s("span",u,r(e.value),1)):(t(),s("span",d,[_(a.$slots,"default")]))]))}};export{x as _,h as a}; +import{i as n,z as c,o as t,f as s,b as l,t as r,m as _}from"./app-4dfa7f3b.js";const i={class:"text-sm text-red-600 dark:text-red-400"},h={__name:"InputError",props:["message"],setup(e){return(a,o)=>n((t(),s("div",null,[l("p",i,r(e.message),1)],512)),[[c,e.message]])}},m={class:"block font-medium text-sm text-gray-700 dark:text-gray-300"},u={key:0},d={key:1},x={__name:"InputLabel",props:["value"],setup(e){return(a,o)=>(t(),s("label",m,[e.value?(t(),s("span",u,r(e.value),1)):(t(),s("span",d,[_(a.$slots,"default")]))]))}};export{x as _,h as a}; diff --git a/public/build/assets/Login-7aa449f0.js b/public/build/assets/Login-7aa449f0.js deleted file mode 100644 index f4f1f34..0000000 --- a/public/build/assets/Login-7aa449f0.js +++ /dev/null @@ -1 +0,0 @@ -import{s as v,f as x,x as w,u as s,o as d,h,y as V,v as B,c,w as u,a,X as $,t as i,q as f,b as n,z as p,d as g,n as C,e as R}from"./app-4f9e7dfc.js";import{_,a as k}from"./InputLabel-5969cc22.js";import{_ as q}from"./PrimaryButton-89a514d8.js";import{_ as y}from"./TextInput-5a299594.js";import{_ as N}from"./GuestLayout-4014bb8c.js";import"./ApplicationLogo-1c8f1468.js";import"./defaultFile-106f3fb6.js";import"./Toast-3242a059.js";import"./toast-c1edb8fd.js";const S=["value"],U={__name:"Checkbox",props:{checked:{type:[Array,Boolean],default:!1},value:{default:null}},emits:["update:checked"],setup(l,{emit:e}){const m=l,o=v({get(){return m.checked},set(t){e("update:checked",t)}});return(t,r)=>x((d(),h("input",{type:"checkbox",value:l.value,"onUpdate:modelValue":r[0]||(r[0]=b=>V(o)?o.value=b:null),class:"rounded dark:bg-gray-900 border-gray-300 dark:border-gray-700 text-indigo-600 shadow-sm focus:ring-indigo-500 dark:focus:ring-indigo-600 dark:focus:ring-offset-gray-800"},null,8,S)),[[w,s(o)]])}},L={key:0,class:"mb-4 font-medium text-sm text-green-600"},z=["onSubmit"],D={class:"mt-4"},M={class:"block mt-4"},P={class:"flex items-center"},j={class:"ml-2 text-sm text-gray-600 dark:text-gray-400"},A={class:"flex items-center justify-end mt-4 space-x-2"},O={__name:"Login",props:{canResetPassword:Boolean,status:String,canRegister:Boolean},setup(l){const e=B({email:"",password:"",remember:!1}),m=()=>{e.post(route("login"),{onFinish:()=>e.reset("password")})};return(o,t)=>(d(),c(N,null,{default:u(()=>[a(s($),{title:"Log in"}),l.status?(d(),h("div",L,i(l.status),1)):f("",!0),n("form",{onSubmit:R(m,["prevent"])},[n("div",null,[a(_,{for:"email",value:o.__("login.form.email")},null,8,["value"]),a(y,{id:"email",type:"email",class:"mt-1 block w-full",modelValue:s(e).email,"onUpdate:modelValue":t[0]||(t[0]=r=>s(e).email=r),required:"",autofocus:"",autocomplete:"username"},null,8,["modelValue"]),a(k,{class:"mt-2",message:s(e).errors.email},null,8,["message"])]),n("div",D,[a(_,{for:"password",value:o.__("login.form.password")},null,8,["value"]),a(y,{id:"password",type:"password",class:"mt-1 block w-full",modelValue:s(e).password,"onUpdate:modelValue":t[1]||(t[1]=r=>s(e).password=r),required:"",autocomplete:"current-password"},null,8,["modelValue"]),a(k,{class:"mt-2",message:s(e).errors.password},null,8,["message"])]),n("div",M,[n("label",P,[a(U,{name:"remember",checked:s(e).remember,"onUpdate:checked":t[2]||(t[2]=r=>s(e).remember=r)},null,8,["checked"]),n("span",j,i(o.__("login.remember_me")),1)])]),n("div",A,[l.canRegister?(d(),c(s(p),{key:0,href:o.route("register"),class:"underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800 flex-1"},{default:u(()=>[g(i(o.__("login.registration_link")),1)]),_:1},8,["href"])):f("",!0),l.canResetPassword?(d(),c(s(p),{key:1,href:o.route("password.request"),class:"underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800"},{default:u(()=>[g(i(o.__("login.forget_link")),1)]),_:1},8,["href"])):f("",!0),a(q,{class:C(["ml-4",{"opacity-25":s(e).processing}]),disabled:s(e).processing},{default:u(()=>[g(i(o.__("login.submit","Log in")),1)]),_:1},8,["class","disabled"])])],40,z)]),_:1}))}};export{O as default}; diff --git a/public/build/assets/Login-b6d9da9a.js b/public/build/assets/Login-b6d9da9a.js new file mode 100644 index 0000000..53b1a5f --- /dev/null +++ b/public/build/assets/Login-b6d9da9a.js @@ -0,0 +1 @@ +import{h as v,i as x,j as w,u as s,o as d,f as h,k as V,v as B,c,w as u,a,X as $,t as i,g as f,b as n,l as p,d as g,n as C,e as R}from"./app-4dfa7f3b.js";import{_,a as k}from"./InputLabel-fec82426.js";import{_ as N}from"./PrimaryButton-2b535c8b.js";import{_ as y}from"./TextInput-fb418c8e.js";import{_ as S}from"./GuestLayout-ac5d3072.js";import"./ApplicationLogo-77a8e36b.js";import"./defaultFile-2b6c57d3.js";import"./Toast-645f4c7b.js";import"./toast-ded66f04.js";const U=["value"],q={__name:"Checkbox",props:{checked:{type:[Array,Boolean],default:!1},value:{default:null}},emits:["update:checked"],setup(l,{emit:e}){const m=l,o=v({get(){return m.checked},set(t){e("update:checked",t)}});return(t,r)=>x((d(),h("input",{type:"checkbox",value:l.value,"onUpdate:modelValue":r[0]||(r[0]=b=>V(o)?o.value=b:null),class:"rounded dark:bg-gray-900 border-gray-300 dark:border-gray-700 text-indigo-600 shadow-sm focus:ring-indigo-500 dark:focus:ring-indigo-600 dark:focus:ring-offset-gray-800"},null,8,U)),[[w,s(o)]])}},L={key:0,class:"mb-4 font-medium text-sm text-green-600"},j=["onSubmit"],D={class:"mt-4"},M={class:"block mt-4"},P={class:"flex items-center"},z={class:"ml-2 text-sm text-gray-600 dark:text-gray-400"},A={class:"flex items-center justify-end mt-4 space-x-2"},O={__name:"Login",props:{canResetPassword:Boolean,status:String,canRegister:Boolean},setup(l){const e=B({email:"",password:"",remember:!1}),m=()=>{e.post(route("login"),{onFinish:()=>e.reset("password")})};return(o,t)=>(d(),c(S,null,{default:u(()=>[a(s($),{title:"Log in"}),l.status?(d(),h("div",L,i(l.status),1)):f("",!0),n("form",{onSubmit:R(m,["prevent"])},[n("div",null,[a(_,{for:"email",value:o.__("login.form.email")},null,8,["value"]),a(y,{id:"email",type:"email",class:"mt-1 block w-full",modelValue:s(e).email,"onUpdate:modelValue":t[0]||(t[0]=r=>s(e).email=r),required:"",autofocus:"",autocomplete:"username"},null,8,["modelValue"]),a(k,{class:"mt-2",message:s(e).errors.email},null,8,["message"])]),n("div",D,[a(_,{for:"password",value:o.__("login.form.password")},null,8,["value"]),a(y,{id:"password",type:"password",class:"mt-1 block w-full",modelValue:s(e).password,"onUpdate:modelValue":t[1]||(t[1]=r=>s(e).password=r),required:"",autocomplete:"current-password"},null,8,["modelValue"]),a(k,{class:"mt-2",message:s(e).errors.password},null,8,["message"])]),n("div",M,[n("label",P,[a(q,{name:"remember",checked:s(e).remember,"onUpdate:checked":t[2]||(t[2]=r=>s(e).remember=r)},null,8,["checked"]),n("span",z,i(o.__("login.remember_me")),1)])]),n("div",A,[l.canRegister?(d(),c(s(p),{key:0,href:o.route("register"),class:"underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800 flex-1"},{default:u(()=>[g(i(o.__("login.registration_link")),1)]),_:1},8,["href"])):f("",!0),l.canResetPassword?(d(),c(s(p),{key:1,href:o.route("password.request"),class:"underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800"},{default:u(()=>[g(i(o.__("login.forget_link")),1)]),_:1},8,["href"])):f("",!0),a(N,{class:C(["ml-4",{"opacity-25":s(e).processing}]),disabled:s(e).processing},{default:u(()=>[g(i(o.__("login.submit","Log in")),1)]),_:1},8,["class","disabled"])])],40,j)]),_:1}))}};export{O as default}; diff --git a/public/build/assets/Login-e20b366c.js b/public/build/assets/Login-e20b366c.js deleted file mode 100644 index ec30a41..0000000 --- a/public/build/assets/Login-e20b366c.js +++ /dev/null @@ -1 +0,0 @@ -import{i as v,j as x,v as w,o as d,g as h,u as V,c,w as u,a as t,b as s,H as B,t as i,h as f,d as n,L as p,e as g,n as $,f as C}from"./app-a07534fc.js";import{_}from"./InputError-819a2731.js";import{_ as k}from"./InputLabel-0d88b11e.js";import{_ as L}from"./PrimaryButton-f1dd44c4.js";import{_ as y}from"./TextInput-6d371888.js";import{_ as N}from"./GuestLayout-8f04497b.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";const R=["value"],S={__name:"Checkbox",props:{checked:{type:[Array,Boolean],default:!1},value:{default:null}},emits:["update:checked"],setup(l,{emit:e}){const m=l,o=v({get(){return m.checked},set(a){e("update:checked",a)}});return(a,r)=>x((d(),h("input",{type:"checkbox",value:l.value,"onUpdate:modelValue":r[0]||(r[0]=b=>o.value=b),class:"rounded dark:bg-gray-900 border-gray-300 dark:border-gray-700 text-indigo-600 shadow-sm focus:ring-indigo-500 dark:focus:ring-indigo-600 dark:focus:ring-offset-gray-800"},null,8,R)),[[w,o.value]])}},U={key:0,class:"mb-4 font-medium text-sm text-green-600"},q=["onSubmit"],j={class:"mt-4"},D={class:"block mt-4"},F={class:"flex items-center"},H={class:"ml-2 text-sm text-gray-600 dark:text-gray-400"},M={class:"flex items-center justify-end mt-4 space-x-2"},O={__name:"Login",props:{canResetPassword:Boolean,status:String,canRegister:Boolean},setup(l){const e=V({email:"",password:"",remember:!1}),m=()=>{e.post(route("login"),{onFinish:()=>e.reset("password")})};return(o,a)=>(d(),c(N,null,{default:u(()=>[t(s(B),{title:"Log in"}),l.status?(d(),h("div",U,i(l.status),1)):f("",!0),n("form",{onSubmit:C(m,["prevent"])},[n("div",null,[t(k,{for:"email",value:o.__("login.form.email")},null,8,["value"]),t(y,{id:"email",type:"email",class:"mt-1 block w-full",modelValue:s(e).email,"onUpdate:modelValue":a[0]||(a[0]=r=>s(e).email=r),required:"",autofocus:"",autocomplete:"username"},null,8,["modelValue"]),t(_,{class:"mt-2",message:s(e).errors.email},null,8,["message"])]),n("div",j,[t(k,{for:"password",value:o.__("login.form.password")},null,8,["value"]),t(y,{id:"password",type:"password",class:"mt-1 block w-full",modelValue:s(e).password,"onUpdate:modelValue":a[1]||(a[1]=r=>s(e).password=r),required:"",autocomplete:"current-password"},null,8,["modelValue"]),t(_,{class:"mt-2",message:s(e).errors.password},null,8,["message"])]),n("div",D,[n("label",F,[t(S,{name:"remember",checked:s(e).remember,"onUpdate:checked":a[2]||(a[2]=r=>s(e).remember=r)},null,8,["checked"]),n("span",H,i(o.__("login.remember_me")),1)])]),n("div",M,[l.canRegister?(d(),c(s(p),{key:0,href:o.route("register"),class:"underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800 flex-1"},{default:u(()=>[g(i(o.__("login.registration_link")),1)]),_:1},8,["href"])):f("",!0),l.canResetPassword?(d(),c(s(p),{key:1,href:o.route("password.request"),class:"underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800"},{default:u(()=>[g(i(o.__("login.forget_link")),1)]),_:1},8,["href"])):f("",!0),t(L,{class:$(["ml-4",{"opacity-25":s(e).processing}]),disabled:s(e).processing},{default:u(()=>[g(i(o.__("login.submit","Log in")),1)]),_:1},8,["class","disabled"])])],40,q)]),_:1}))}};export{O as default}; diff --git a/public/build/assets/Map-c88096a7.js b/public/build/assets/Map-c88096a7.js deleted file mode 100644 index f742d7f..0000000 --- a/public/build/assets/Map-c88096a7.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as r}from"./_plugin-vue_export-helper-c27b6911.js";import{o as t,g as a,d as e}from"./app-a07534fc.js";const s={},c={class:"bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50"},l={class:"mx-auto max-w-full py-6 px-6 sm:py-10 lg:px-8"},n=["src"];function p(o,d){return t(),a("div",c,[e("div",l,[e("iframe",{src:`https://maps.google.com/maps?q=${o.$page.props.global.options.map}&z=15&output=embed`,width:"100%",height:"400",style:{border:"0"},allowfullscreen:"",loading:"lazy",referrerpolicy:"no-referrer-when-downgrade"},null,8,n)])])}const g=r(s,[["render",p]]);export{g as default}; diff --git a/public/build/assets/MasterLayout.vue_vue_type_script_setup_true_lang-71c3fc2e.js b/public/build/assets/MasterLayout.vue_vue_type_script_setup_true_lang-71c3fc2e.js deleted file mode 100644 index 2504ad8..0000000 --- a/public/build/assets/MasterLayout.vue_vue_type_script_setup_true_lang-71c3fc2e.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as se,L as $e}from"./DarkMode-9ce27e49.js";import{a as ke,_ as Se}from"./Toast-95869260.js";import{o as _,g as S,d as i,p as k,z as q,O as U,S as X,i as C,V as ce,U as A,C as de,F as G,W as ee,r as te,a as m,w,b as E,m as oe,c as N,e as L,t as T,n as pe,h as ve,T as Ee,H as Fe,k as Ce}from"./app-a07534fc.js";import{o,m as ae,q as ne,u as V,i as Le,l as Y,V as Be,b as Oe,E as Ie,F as je,w as Te,s as De,H as le,t as z,n as fe,f as J,a as Q,P as D,N as O,p as Me,e as ue,g as j,d as I,T as Z,r as He}from"./use-root-containers-d6d195ba.js";import{_ as Ne}from"./SocialLink-414cdd14.js";function Ae(r,n){return _(),S("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","stroke-width":"1.5",stroke:"currentColor","aria-hidden":"true"},[i("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5"})])}function ie(r,n){if(r)return r;let s=n??"button";if(typeof s=="string"&&s.toLowerCase()==="button")return"button"}function Ve(r,n){let s=k(ie(r.value.type,r.value.as));return q(()=>{s.value=ie(r.value.type,r.value.as)}),U(()=>{var p;s.value||o(n)&&o(n)instanceof HTMLButtonElement&&!((p=o(n))!=null&&p.hasAttribute("type"))&&(s.value="button")}),s}var Ge=(r=>(r[r.Open=0]="Open",r[r.Closed=1]="Closed",r))(Ge||{});let me=Symbol("PopoverContext");function re(r){let n=ee(me,null);if(n===null){let s=new Error(`<${r} /> is missing a parent <${be.name} /> component.`);throw Error.captureStackTrace&&Error.captureStackTrace(s,re),s}return n}let Ke=Symbol("PopoverGroupContext");function he(){return ee(Ke,null)}let ge=Symbol("PopoverPanelContext");function ze(){return ee(ge,null)}let be=X({name:"Popover",props:{as:{type:[Object,String],default:"div"}},setup(r,{slots:n,attrs:s,expose:p}){var t;let e=k(null);p({el:e,$el:e});let x=k(1),b=k(null),M=k(null),$=k(null),y=k(null),B=C(()=>ae(e)),H=C(()=>{var a,u;if(!o(b)||!o(y))return!1;for(let W of document.querySelectorAll("body > *"))if(Number(W==null?void 0:W.contains(o(b)))^Number(W==null?void 0:W.contains(o(y))))return!0;let d=ne(),P=d.indexOf(o(b)),R=(P+d.length-1)%d.length,xe=(P+1)%d.length,we=d[R],Pe=d[xe];return!((a=o(y))!=null&&a.contains(we))&&!((u=o(y))!=null&&u.contains(Pe))}),g={popoverState:x,buttonId:k(null),panelId:k(null),panel:y,button:b,isPortalled:H,beforePanelSentinel:M,afterPanelSentinel:$,togglePopover(){x.value=V(x.value,{0:1,1:0})},closePopover(){x.value!==1&&(x.value=1)},close(a){g.closePopover();let u=(()=>a?a instanceof HTMLElement?a:a.value instanceof HTMLElement?o(a):o(g.button):o(g.button))();u==null||u.focus()}};ce(me,g),Le(C(()=>V(x.value,{0:Y.Open,1:Y.Closed})));let K={buttonId:g.buttonId,panelId:g.panelId,close(){g.closePopover()}},F=he(),v=F==null?void 0:F.registerPopover,[h,c]=Be(),l=Oe({portals:h,defaultContainers:[b,y]});function f(){var a,u,d,P;return(P=F==null?void 0:F.isFocusWithinPopoverGroup())!=null?P:((a=B.value)==null?void 0:a.activeElement)&&(((u=o(b))==null?void 0:u.contains(B.value.activeElement))||((d=o(y))==null?void 0:d.contains(B.value.activeElement)))}return U(()=>v==null?void 0:v(K)),Ie((t=B.value)==null?void 0:t.defaultView,"focus",a=>{var u,d;a.target!==window&&a.target instanceof HTMLElement&&x.value===0&&(f()||b&&y&&(l.contains(a.target)||(u=o(g.beforePanelSentinel))!=null&&u.contains(a.target)||(d=o(g.afterPanelSentinel))!=null&&d.contains(a.target)||g.closePopover()))},!0),je(l.resolveContainers,(a,u)=>{var d;g.closePopover(),Te(u,De.Loose)||(a.preventDefault(),(d=o(b))==null||d.focus())},C(()=>x.value===0)),()=>{let a={open:x.value===0,close:g.close};return A(c,{},()=>le({theirProps:{...r,...s},ourProps:{ref:e},slot:a,slots:n,attrs:s,name:"Popover"}))}}}),ye=X({name:"PopoverButton",props:{as:{type:[Object,String],default:"button"},disabled:{type:[Boolean],default:!1},id:{type:String,default:()=>`headlessui-popover-button-${z()}`}},inheritAttrs:!1,setup(r,{attrs:n,slots:s,expose:p}){let t=re("PopoverButton"),e=C(()=>ae(t.button));p({el:t.button,$el:t.button}),q(()=>{t.buttonId.value=r.id}),de(()=>{t.buttonId.value=null});let x=he(),b=x==null?void 0:x.closeOthers,M=ze(),$=C(()=>M===null?!1:M.value===t.panelId.value),y=k(null),B=`headlessui-focus-sentinel-${z()}`;$.value||U(()=>{t.button.value=y.value});let H=Ve(C(()=>({as:r.as,type:n.type})),y);function g(l){var f,a,u,d,P;if($.value){if(t.popoverState.value===1)return;switch(l.key){case j.Space:case j.Enter:l.preventDefault(),(a=(f=l.target).click)==null||a.call(f),t.closePopover(),(u=o(t.button))==null||u.focus();break}}else switch(l.key){case j.Space:case j.Enter:l.preventDefault(),l.stopPropagation(),t.popoverState.value===1&&(b==null||b(t.buttonId.value)),t.togglePopover();break;case j.Escape:if(t.popoverState.value!==0)return b==null?void 0:b(t.buttonId.value);if(!o(t.button)||(d=e.value)!=null&&d.activeElement&&!((P=o(t.button))!=null&&P.contains(e.value.activeElement)))return;l.preventDefault(),l.stopPropagation(),t.closePopover();break}}function K(l){$.value||l.key===j.Space&&l.preventDefault()}function F(l){var f,a;r.disabled||($.value?(t.closePopover(),(f=o(t.button))==null||f.focus()):(l.preventDefault(),l.stopPropagation(),t.popoverState.value===1&&(b==null||b(t.buttonId.value)),t.togglePopover(),(a=o(t.button))==null||a.focus()))}function v(l){l.preventDefault(),l.stopPropagation()}let h=fe();function c(){let l=o(t.panel);if(!l)return;function f(){V(h.value,{[I.Forwards]:()=>D(l,O.First),[I.Backwards]:()=>D(l,O.Last)})===Z.Error&&D(ne().filter(a=>a.dataset.headlessuiFocusGuard!=="true"),V(h.value,{[I.Forwards]:O.Next,[I.Backwards]:O.Previous}),{relativeTo:o(t.button)})}f()}return()=>{let l=t.popoverState.value===0,f={open:l},{id:a,...u}=r,d=$.value?{ref:y,type:H.value,onKeydown:g,onClick:F}:{ref:y,id:a,type:H.value,"aria-expanded":r.disabled?void 0:t.popoverState.value===0,"aria-controls":o(t.panel)?t.panelId.value:void 0,disabled:r.disabled?!0:void 0,onKeydown:g,onKeyup:K,onClick:F,onMousedown:v};return A(G,[le({ourProps:d,theirProps:{...n,...u},slot:f,attrs:n,slots:s,name:"PopoverButton"}),l&&!$.value&&t.isPortalled.value&&A(J,{id:B,features:Q.Focusable,"data-headlessui-focus-guard":!0,as:"button",type:"button",onFocus:c})])}}}),Re=X({name:"PopoverPanel",props:{as:{type:[Object,String],default:"div"},static:{type:Boolean,default:!1},unmount:{type:Boolean,default:!0},focus:{type:Boolean,default:!1},id:{type:String,default:()=>`headlessui-popover-panel-${z()}`}},inheritAttrs:!1,setup(r,{attrs:n,slots:s,expose:p}){let{focus:t}=r,e=re("PopoverPanel"),x=C(()=>ae(e.panel)),b=`headlessui-focus-sentinel-before-${z()}`,M=`headlessui-focus-sentinel-after-${z()}`;p({el:e.panel,$el:e.panel}),q(()=>{e.panelId.value=r.id}),de(()=>{e.panelId.value=null}),ce(ge,e.panelId),U(()=>{var v,h;if(!t||e.popoverState.value!==0||!e.panel)return;let c=(v=x.value)==null?void 0:v.activeElement;(h=o(e.panel))!=null&&h.contains(c)||D(o(e.panel),O.First)});let $=Me(),y=C(()=>$!==null?($.value&Y.Open)===Y.Open:e.popoverState.value===0);function B(v){var h,c;switch(v.key){case j.Escape:if(e.popoverState.value!==0||!o(e.panel)||x.value&&!((h=o(e.panel))!=null&&h.contains(x.value.activeElement)))return;v.preventDefault(),v.stopPropagation(),e.closePopover(),(c=o(e.button))==null||c.focus();break}}function H(v){var h,c,l,f,a;let u=v.relatedTarget;u&&o(e.panel)&&((h=o(e.panel))!=null&&h.contains(u)||(e.closePopover(),((l=(c=o(e.beforePanelSentinel))==null?void 0:c.contains)!=null&&l.call(c,u)||(a=(f=o(e.afterPanelSentinel))==null?void 0:f.contains)!=null&&a.call(f,u))&&u.focus({preventScroll:!0})))}let g=fe();function K(){let v=o(e.panel);if(!v)return;function h(){V(g.value,{[I.Forwards]:()=>{var c;D(v,O.First)===Z.Error&&((c=o(e.afterPanelSentinel))==null||c.focus())},[I.Backwards]:()=>{var c;(c=o(e.button))==null||c.focus({preventScroll:!0})}})}h()}function F(){let v=o(e.panel);if(!v)return;function h(){V(g.value,{[I.Forwards]:()=>{let c=o(e.button),l=o(e.panel);if(!c)return;let f=ne(),a=f.indexOf(c),u=f.slice(0,a+1),d=[...f.slice(a+1),...u];for(let P of d.slice())if(P.dataset.headlessuiFocusGuard==="true"||l!=null&&l.contains(P)){let R=d.indexOf(P);R!==-1&&d.splice(R,1)}D(d,O.First,{sorted:!1})},[I.Backwards]:()=>{var c;D(v,O.Previous)===Z.Error&&((c=o(e.button))==null||c.focus())}})}h()}return()=>{let v={open:e.popoverState.value===0,close:e.close},{id:h,focus:c,...l}=r,f={ref:e.panel,id:h,onKeydown:B,onFocusout:t&&e.popoverState.value===0?H:void 0,tabIndex:-1};return le({ourProps:f,theirProps:{...n,...l},attrs:n,slot:v,slots:{...s,default:(...a)=>{var u;return[A(G,[y.value&&e.isPortalled.value&&A(J,{id:b,ref:e.beforePanelSentinel,features:Q.Focusable,"data-headlessui-focus-guard":!0,as:"button",type:"button",onFocus:K}),(u=s.default)==null?void 0:u.call(s,...a),y.value&&e.isPortalled.value&&A(J,{id:M,ref:e.afterPanelSentinel,features:Q.Focusable,"data-headlessui-focus-guard":!0,as:"button",type:"button",onFocus:F})])]}},features:ue.RenderStrategy|ue.Static,visible:y.value,name:"PopoverPanel"})}}});const We={class:"relative mx-auto flex max-w-full items-center justify-between px-6","aria-label":"Global"},Ye={class:"flex flex-1 items-center"},qe={class:"flex w-full items-center justify-between md:w-auto"},Ue=i("span",{class:"sr-only"},"Your Company",-1),Xe=["src","alt"],Je={class:"-mr-2 flex items-center md:hidden"},Qe=i("span",{class:"sr-only"},"Open main menu",-1),Ze={class:"hidden space-x-8 md:ml-10 md:flex"},et={key:0,class:"hidden md:flex md:items-center md:space-x-6"},tt={key:1,class:"hidden md:flex md:items-center md:space-x-6"},ot={__name:"Menu",props:{navigation:Object},setup(r){return(n,s)=>{const p=te("Link");return _(),S("nav",We,[i("div",Ye,[i("div",qe,[m(p,{href:n.route("home")},{default:w(()=>[Ue,i("img",{class:"h-8 w-auto sm:h-10",src:n.$page.props.global.options.logo,alt:n.$page.props.global.options.site_name},null,8,Xe)]),_:1},8,["href"]),m(se,{class:"mx-2 md:hidden"}),i("div",Je,[m(E(ye),{class:"focus-ring-inset inline-flex items-center justify-center rounded-md bg-gray-900 p-2 text-gray-400 hover:bg-gray-800 focus:outline-none focus:ring-2 focus:ring-white"},{default:w(()=>[Qe,m(E(Ae),{class:"h-6 w-6","aria-hidden":"true"})]),_:1})])]),i("div",Ze,[(_(!0),S(G,null,oe(r.navigation,t=>(_(),N(p,{key:t.name,href:n.route(t.route),class:pe(n.route().current()==t.route?"text-base font-medium text-cyan-300 hover:text-cyan-600 underline decoration-cyan-300 underline-offset-4 ":"text-base font-medium hover:text-cyan-300 hover:underline hover:decoration-cyan-300 hover:underline-offset-4 ")},{default:w(()=>[L(T(t.name),1)]),_:2},1032,["href","class"]))),128))])]),m(se,{class:"mx-2 hidden md:block"}),n.$page.props.auth.user?(_(),S("div",et,[m(p,{href:n.route("dashboard"),class:"text-base font-medium hover:text-gray-800 dark:hover:text-gray-300 hover:scale-105"},{default:w(()=>[L("Dashboard")]),_:1},8,["href"])])):(_(),S("div",tt,[m(p,{href:n.route("login"),class:"text-base font-medium hover:text-gray-800 dark:hover:text-gray-300 hover:scale-105"},{default:w(()=>[L("Log in")]),_:1},8,["href"]),n.$page.props.global.options.any_one_can_register==!0?(_(),N(p,{key:0,href:n.route("register"),class:"inline-flex items-center rounded-md border border-transparent bg-gray-600 px-4 py-2 text-base font-medium text-gray-100 hover:bg-gray-700"},{default:w(()=>[L("Registration")]),_:1},8,["href"])):ve("",!0)]))])}}},at=[{name:"Home",route:"home"},{name:"About",route:"about"},{name:"Products",route:"products"},{name:"Blog",route:"blog"},{name:"Contact",route:"contact"}];function _e(){return{navigation:at}}const nt={class:"bg-cyan-100 text-gray-900 dark:bg-gray-900 dark:text-gray-50 pt-6 pb-3"},lt={class:"overflow-hidden rounded-lg bg-white dark:bg-gray-800 shadow-md ring-1 ring-black ring-opacity-5"},rt={class:"flex items-center justify-between px-5 pt-4"},st={class:"-mr-2"},ut=i("span",{class:"sr-only"},"Close menu",-1),it={class:"pt-5 pb-6"},ct={class:"space-y-1 px-2"},dt={class:"mt-6 px-5"},pt={__name:"Header",setup(r){const{navigation:n}=_e();return(s,p)=>{const t=te("Link");return _(),N(E(be),{as:"header",class:"relative"},{default:w(()=>[i("div",nt,[m(ot,{navigation:E(n)},null,8,["navigation"])]),m(Ee,{"enter-active-class":"duration-150 ease-out","enter-from-class":"opacity-0 scale-95","enter-to-class":"opacity-100 scale-100","leave-active-class":"duration-100 ease-in","leave-from-class":"opacity-100 scale-100","leave-to-class":"opacity-0 scale-95"},{default:w(()=>[m(E(Re),{focus:"",class:"absolute inset-x-0 top-0 origin-top transform p-2 transition md:hidden"},{default:w(()=>[i("div",lt,[i("div",rt,[i("div",null,[m(ke,{class:"h-12 w-12"})]),i("div",st,[m(E(ye),{class:"inline-flex items-center justify-center rounded-md bg-white p-2 text-gray-400 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-cyan-600"},{default:w(()=>[ut,m(E(He),{class:"h-6 w-6","aria-hidden":"true"})]),_:1})])]),i("div",it,[i("div",ct,[(_(!0),S(G,null,oe(E(n),e=>(_(),N(t,{key:e.name,href:s.route(e.route),class:pe(s.route().current()==e.route?"block rounded-md px-3 py-2 text-base font-medium text-cyan-300 hover:text-cyan-600 underline decoration-cyan-300 underline-offset-4 ":"block rounded-md px-3 py-2 text-base font-medium text-gray-900 dark:text-gray-50 hover:text-cyan-300 hover:underline hover:decoration-cyan-300 hover:underline-offset-4")},{default:w(()=>[L(T(e.name),1)]),_:2},1032,["href","class"]))),128))]),i("div",dt,[s.$page.props.auth.user?(_(),N(t,{key:0,href:s.route("dashboard"),class:"block w-full rounded-md bg-gradient-to-r from-teal-500 to-cyan-600 py-3 px-4 text-center font-medium text-white shadow hover:from-teal-600 hover:to-cyan-700"},{default:w(()=>[L("Go Dashboard")]),_:1},8,["href"])):(_(),N(t,{key:1,href:s.route("login"),class:"block w-full rounded-md bg-gradient-to-r from-teal-500 to-cyan-600 py-3 px-4 text-center font-medium text-white shadow hover:from-teal-600 hover:to-cyan-700"},{default:w(()=>[L("Log in")]),_:1},8,["href"]))])])])]),_:1})]),_:1})]),_:1})}}},vt={class:"mx-auto w-full overflow-hidden py-20 px-6 sm:py-24 lg:px-8 bg-cyan-100 text-gray-900 dark:bg-gray-900 dark:text-gray-50"},ft={class:"-mb-6 columns-2 sm:flex sm:justify-center sm:space-x-12","aria-label":"Footer"},mt={class:"mt-10 text-center text-md leading-5 text-gray-600 dark:text-gray-400"},ht={class:"text-center text-sm mt-3 leading-5 text-gray-500"},gt=i("a",{class:"text-md text-blue-600",target:"_blank",href:"https://anichur.com"},"Anichur Rahaman",-1),bt={__name:"Footer",setup(r){const{navigation:n}=_e();return(s,p)=>{const t=te("Link");return _(),S("footer",null,[i("div",vt,[i("nav",ft,[(_(!0),S(G,null,oe(E(n),e=>(_(),S("div",{key:e.name,class:"pb-6"},[m(t,{href:e.route,class:"text-sm leading-6 text-gray-800 dark:text-gray-600 hover:text-gray-900 dark:hover:text-gray-50"},{default:w(()=>[L(T(e.name),1)]),_:2},1032,["href"])]))),128))]),m(Ne),i("p",mt," © "+T(s.currentYear)+" "+T(s.$page.props.global.options.organization_name)+". "+T(s.__("footer.copyright.text")),1),i("p",ht,[L(T(s.__("footer.design.developed_by"))+" ",1),gt])])])}}},yt=["href"],_t={key:0,class:"fixed top-0 left-0 right-0 bottom-0 w-full h-screen z-50 overflow-hidden bg-gray-900 opacity-75 flex flex-col items-center justify-center"},xt={class:"w-10 h-10"},wt={class:"bg-white"},Pt={class:"relative overflow-hidden"},Ct=X({__name:"MasterLayout",setup(r){const n=k(!1);function s(p=!0){n.value=p}return q(()=>{s()}),(p,t)=>(_(),S(G,null,[m(E(Fe),null,{default:w(()=>[i("link",{rel:"icon",type:"image/svg+xml",href:p.$page.props.global.options.fav_icon},null,8,yt)]),_:1}),n.value?ve("",!0):(_(),S("div",_t,[i("span",xt,[m($e)])])),m(Se),i("div",wt,[i("div",Pt,[m(pt),i("main",null,[Ce(p.$slots,"default")]),m(bt)])])],64))}});export{Ct as _}; diff --git a/public/build/assets/ModelControll-05ff1d4e.js b/public/build/assets/ModelControll-05ff1d4e.js deleted file mode 100644 index e826f33..0000000 --- a/public/build/assets/ModelControll-05ff1d4e.js +++ /dev/null @@ -1 +0,0 @@ -import{S as m}from"./Sync-acecb079.js";import{_ as d}from"./Image-ef3ae8a1.js";import{_ as c}from"./AuthenticatedLayout-bb1b77c9.js";import{A as u,r as x,o as p,g as _,a as i,b as t,w as a,F as h,H as f,d as e}from"./app-a07534fc.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./DangerButton-1432f67e.js";import"./SecondaryButton-e6cce7b4.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./DarkMode-9ce27e49.js";import"./Toast-95869260.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";const g={class:"flex justify-between"},b=e("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Page Content ",-1),w=e("span",null,"Cache Clear",-1),v={class:"py-12"},V={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},k={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg"},y=e("h2",{class:"text-center text-2xl underline underline-offset-4"}," Model Picture ",-1),M={class:"max-w-full mx-auto flex flex-wrap justify-around items-center bg-white dark:bg-gray-800 text-black dark:text-white sm:space-x-2 space-y-2 sm:space-y-0"},C={class:"p-4 space-x-5 shadow flex-1 min-h-full grid place-items-center h-[300px]"},D=e("div",{class:"text-2x block text-center text-2xl"}," First Model ",-1),U={class:"p-4 space-x-5 shadow flex-1 min-h-full grid place-items-center h-[300px]"},P=e("div",{class:"text-2x block text-center text-2xl"}," Second Model ",-1),F={class:"p-4 space-x-5 shadow flex-1 min-h-full grid place-items-center h-[300px]"},S=e("div",{class:"text-2x block text-center text-2xl"}," Third Model ",-1),j={class:"p-4 space-x-5 shadow flex-1 min-h-full grid place-items-center h-[300px]"},A=e("div",{class:"text-2x block text-center text-2xl"}," Fourth Model ",-1),B=e("h2",{class:"text-center text-2xl underline underline-offset-4 mt-5 xl:mt-10"}," About Page Picture ",-1),H={class:"max-w-full mx-auto flex flex-wrap justify-around items-center bg-white dark:bg-gray-800 text-black dark:text-white sm:space-x-2 space-y-2 sm:space-y-0"},I={class:"p-4 space-x-5 shadow flex-1 min-h-full grid place-items-center h-[300px]"},L=e("div",{class:"text-2x block text-center text-2xl"}," About us Image ",-1),N={class:"p-4 space-x-5 shadow flex-1 min-h-full grid place-items-center h-[300px]"},$=e("div",{class:"text-2x block text-center text-2xl"}," Vision Mission Image ",-1),le={__name:"ModelControll",setup(E){const l=u().props.value.global.options;return(n,s)=>{const r=x("Link");return p(),_(h,null,[i(t(f),{title:"Settings"}),i(c,null,{header:a(()=>[e("div",g,[b,i(r,{href:n.route("cache.clear"),class:"flex items-center gap-1 text-blue-700 hover:text-blue-500 text-md"},{default:a(()=>[i(m,{class:"w-5 h-5 animate-spin"}),w]),_:1},8,["href"])])]),default:a(()=>[e("div",v,[e("div",V,[e("div",k,[y,e("div",M,[e("div",C,[D,i(d,{id:"model_one",field:"model_one",isDeleteable:!0,modelValue:t(l).model_one,"onUpdate:modelValue":s[0]||(s[0]=o=>t(l).model_one=o),class:"w-48 h-48 rounded-sm overflow-clip bg-red-500"},null,8,["modelValue"])]),e("div",U,[P,i(d,{id:"model_two",field:"model_two",isDeleteable:!0,modelValue:t(l).model_two,"onUpdate:modelValue":s[1]||(s[1]=o=>t(l).model_two=o),class:"w-48 h-48 rounded-sm overflow-clip bg-red-500"},null,8,["modelValue"])]),e("div",F,[S,i(d,{id:"model_three",field:"model_three",isDeleteable:!0,modelValue:t(l).model_three,"onUpdate:modelValue":s[2]||(s[2]=o=>t(l).model_three=o),class:"w-48 h-48 rounded-sm overflow-clip bg-red-500"},null,8,["modelValue"])]),e("div",j,[A,i(d,{id:"model_four",field:"model_four",isDeleteable:!0,modelValue:t(l).model_four,"onUpdate:modelValue":s[3]||(s[3]=o=>t(l).model_four=o),class:"w-48 h-48 rounded-sm overflow-clip bg-red-500"},null,8,["modelValue"])])]),B,e("div",H,[e("div",I,[L,i(d,{id:"about_image",field:"about_image",isDeleteable:!0,modelValue:t(l).about_image,"onUpdate:modelValue":s[4]||(s[4]=o=>t(l).about_image=o),class:"w-48 h-48 rounded-sm overflow-clip bg-red-500"},null,8,["modelValue"])]),e("div",N,[$,i(d,{id:"vission_mission_image",field:"vission_mission_image",isDeleteable:!0,modelValue:t(l).vission_mission_image,"onUpdate:modelValue":s[5]||(s[5]=o=>t(l).vission_mission_image=o),class:"w-48 h-48 rounded-sm overflow-clip bg-red-500"},null,8,["modelValue"])])])])])])]),_:1})],64)}}};export{le as default}; diff --git a/public/build/assets/Pagination-efa838c1.js b/public/build/assets/Pagination-efa838c1.js deleted file mode 100644 index f1df16d..0000000 --- a/public/build/assets/Pagination-efa838c1.js +++ /dev/null @@ -1 +0,0 @@ -import{r as c,o as r,g as t,d as o,F as l,m as g,c as m,w as u,n as h,h as _}from"./app-a07534fc.js";const b={key:0},k={class:"flex flex-wrap -mb-1"},x=["innerHTML"],p=["innerHTML"],v={__name:"Pagination",props:{links:Array},setup(a){return(n,y)=>{var s;const d=c("Link");return((s=a.links)==null?void 0:s.length)>3?(r(),t("div",b,[o("div",k,[(r(!0),t(l,null,g(a.links,(e,i)=>(r(),t(l,{key:i},[e.url===null?(r(),t("div",{key:0,class:"mr-1 mb-1 px-4 py-3 text-sm leading-4 text-gray-400 border rounded dark:text-white dark:bg-gray-700 hover:dark:bg-gray-800",innerHTML:n.__(e.label)},null,8,x)):(r(),m(d,{key:1,class:h(["mr-1 mb-1 px-4 py-3 text-sm leading-4 border rounded hover:bg-white focus:border-indigo-500 focus:text-indigo-500 dark:text-white dark:bg-gray-700 hover:dark:bg-gray-800",{"bg-blue-700 text-white dark:text-white dark:bg-blue-700":e.active}]),href:e.url},{default:u(()=>[o("span",{innerHTML:n.__(e.label)},null,8,p)]),_:2},1032,["class","href"]))],64))),128))])])):_("",!0)}}};export{v as _}; diff --git a/public/build/assets/PrimaryButton-89a514d8.js b/public/build/assets/PrimaryButton-2b535c8b.js similarity index 75% rename from public/build/assets/PrimaryButton-89a514d8.js rename to public/build/assets/PrimaryButton-2b535c8b.js index 8bdb2a1..a51344e 100644 --- a/public/build/assets/PrimaryButton-89a514d8.js +++ b/public/build/assets/PrimaryButton-2b535c8b.js @@ -1 +1 @@ -import{o as r,h as o,r as s}from"./app-4f9e7dfc.js";const n=["type"],c={__name:"PrimaryButton",props:{type:{type:String,default:"submit"}},setup(t){return(e,a)=>(r(),o("button",{type:t.type,class:"btn btn-primary"},[s(e.$slots,"default")],8,n))}};export{c as _}; +import{o as r,f as o,m as s}from"./app-4dfa7f3b.js";const n=["type"],c={__name:"PrimaryButton",props:{type:{type:String,default:"submit"}},setup(t){return(e,a)=>(r(),o("button",{type:t.type,class:"btn btn-primary"},[s(e.$slots,"default")],8,n))}};export{c as _}; diff --git a/public/build/assets/PrimaryButton-f1dd44c4.js b/public/build/assets/PrimaryButton-f1dd44c4.js deleted file mode 100644 index 034fafa..0000000 --- a/public/build/assets/PrimaryButton-f1dd44c4.js +++ /dev/null @@ -1 +0,0 @@ -import{o as r,g as o,k as s}from"./app-a07534fc.js";const n=["type"],c={__name:"PrimaryButton",props:{type:{type:String,default:"submit"}},setup(t){return(e,a)=>(r(),o("button",{type:t.type,class:"btn btn-primary"},[s(e.$slots,"default")],8,n))}};export{c as _}; diff --git a/public/build/assets/Products-f4fea842.js b/public/build/assets/Products-f4fea842.js deleted file mode 100644 index 6c0e14e..0000000 --- a/public/build/assets/Products-f4fea842.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as y}from"./Pagination-efa838c1.js";import{o as d,c as p,w as i,a as s,d as e,b as o,e as v,t as f,k as b,u as k,p as w,A as $,g as c,M as h,F as V,m as S,h as C,L as _}from"./app-a07534fc.js";import{_ as j}from"./Search-d7ef8e63.js";import{h as B,G as L,V as N,U as M,S as O}from"./transition-26ae2105.js";import{r as P}from"./use-root-containers-d6d195ba.js";import x from"./CategoryList-73e6e756.js";const F=e("div",{class:"fixed inset-0"},null,-1),U={class:"fixed inset-0 overflow-hidden"},E={class:"absolute inset-0 overflow-hidden"},G={class:"pointer-events-none fixed inset-y-0 right-0 flex max-w-full pl-10"},R={class:"flex h-full flex-col overflow-y-scroll bg-white dark:bg-gray-900 py-6 shadow-xl"},T={class:"px-4 sm:px-6"},q={class:"flex items-start justify-between"},z={class:"ml-3 flex h-7 items-center"},A=e("span",{class:"sr-only"},"Close panel",-1),D={class:"relative mt-6 flex-1 px-4 sm:px-6"},H={__name:"SideOverlay",props:{modelValue:Object,title:{require:!1,default:"Heading Title",type:String}},emits:["update:modelValue"],setup(l){return(r,t)=>(d(),p(o(O),{as:"template",show:l.modelValue},{default:i(()=>[s(o(M),{as:"div",class:"relative z-10",onClose:t[1]||(t[1]=m=>r.$emit("update:modelValue",!1))},{default:i(()=>[F,e("div",U,[e("div",E,[e("div",G,[s(o(B),{as:"template",enter:"transform transition ease-in-out duration-500 sm:duration-700","enter-from":"translate-x-full","enter-to":"translate-x-0",leave:"transform transition ease-in-out duration-500 sm:duration-700","leave-from":"translate-x-0","leave-to":"translate-x-full"},{default:i(()=>[s(o(L),{class:"pointer-events-auto w-screen max-w-md"},{default:i(()=>[e("div",R,[e("div",T,[e("div",q,[s(o(N),{class:"text-base font-semibold leading-6 text-gray-900 dark:text-white"},{default:i(()=>[v(f(l.title),1)]),_:1}),e("div",z,[e("button",{type:"button",class:"rounded-md bg-white dark:bg-gray-900 text-gray-900 dark:text-gray-50 hover:text-gray-500 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2",onClick:t[0]||(t[0]=m=>r.$emit("update:modelValue",!1))},[A,s(o(P),{class:"h-6 w-6","aria-hidden":"true"})])])])]),e("div",D,[b(r.$slots,"default")])])]),_:3})]),_:3})])])])]),_:3})]),_:3},8,["show"]))}},I={class:"bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50"},J={class:"mx-auto max-w-full overflow-hidden sm:px-6 lg:px-8"},K={class:"sr-only"},Q={class:"my-10"},W={class:"flex justify-around sm:justify-end mx-0"},X=e("svg",{class:"h-10 w-10",stroke:"currentColor",fill:"none",viewBox:"0 0 24 24"},[e("path",{class:"block md:hidden","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M4 6h16M4 12h16M4 18h16"})],-1),Y=[X],Z={class:"grid col-span-1 sm:grid-cols-6 mx-2 sm:mx-0"},ee={class:"col-span-2 overflow-hidden px-2 break-words break-all hidden sm:block"},te=e("h2",{class:"my-5"},[e("span",{class:"font-bold dark:text-gray-200 text-2xl border-b-gray-500 border-b pb-1"}," Category List ")],-1),se={class:"col-span-4"},oe={key:0,class:"-mx-px grid grid-cols-1 sm:grid-cols-2 border-l border-gray-200 sm:mx-0 md:grid-cols-3 lg:grid-cols-4"},ae={class:"aspect-w-1 aspect-h-1 overflow-hidden rounded-lg bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50 group-hover:opacity-75"},le=["src","alt"],re={class:"pt-10 pb-4 text-center"},ie={class:"text-sm font-medium bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50"},de={key:1,class:"-mx-px min-h-full text-2xl grid place-items-center text-red-500"},ne=e("p",null,"No products found. Please refine your search.",-1),ce=[ne],xe={__name:"Products",props:{products:Object,categories:Object},setup(l){const r=k({category:""});let t=w(!1);const m=$().url.value.split("?")[0];function g(n){r.category=n,r.get(m,{preserveScroll:!0,onSuccess:()=>r.reset(),onError:()=>{console.log(r.errors.category)}})}return(n,u)=>(d(),c("div",I,[e("div",J,[e("h2",K,f(n.__("product.mobile_title")),1),e("div",Q,[e("div",W,[s(j),e("span",{onClick:u[0]||(u[0]=a=>h(t)?t.value=!o(t):t=!o(t)),class:"block sm:hidden w-12"},Y)]),s(H,{modelValue:o(t),"onUpdate:modelValue":u[1]||(u[1]=a=>h(t)?t.value=a:t=a),title:"Category List"},{default:i(()=>[s(x,{categories:l.categories,onSelectedCatSlug:g},null,8,["categories"])]),_:1},8,["modelValue"])]),e("div",Z,[e("div",ee,[te,s(x,{categories:l.categories,onSelectedCatSlug:g},null,8,["categories"])]),e("div",se,[l.products.data.length>0?(d(),c("div",oe,[(d(!0),c(V,null,S(l.products.data,a=>(d(),c("div",{key:a.id,class:"group border border-gray-200 p-4 sm:p-6"},[e("div",ae,[s(o(_),{href:n.route("product.show",a.slug)},{default:i(()=>[e("img",{src:a.image,alt:a.image,class:"h-full w-full object-cover object-center"},null,8,le)]),_:2},1032,["href"])]),e("div",re,[e("h3",ie,[s(o(_),{href:n.route("product.show",a.slug)},{default:i(()=>[v(f(a.title),1)]),_:2},1032,["href"])])])]))),128))])):(d(),c("div",de,ce))])]),l.products.last_page>1?(d(),p(y,{key:0,class:"mt-6 dark:text-white flex justify-end p-3",links:l.products.links},null,8,["links"])):C("",!0)])]))}};export{xe as default}; diff --git a/public/build/assets/ProductsShow-82a655a4.js b/public/build/assets/ProductsShow-82a655a4.js deleted file mode 100644 index 2bbadb8..0000000 --- a/public/build/assets/ProductsShow-82a655a4.js +++ /dev/null @@ -1 +0,0 @@ -import{o as a,g as o,d as t,t as s}from"./app-a07534fc.js";const r={class:"container mx-auto p-6 bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50"},c={class:"grid grid-col sm:grid-cols-2 gap-5 bg-cyan-100 text-gray-900 dark:bg-gray-800 dark:text-gray-50"},d={class:"p-5 sm:p-10"},i=["src","alt"],l={class:"p-5 sm:p-10"},n={class:"text-4xl mb-5 underline underline-offset-8 decoration-slate-500"},g={class:"text-md text-gray-700 dark:text-gray-400 break-all text-justify"},_={__name:"ProductsShow",props:{product:Object},setup(e){return(u,m)=>(a(),o("div",r,[t("div",c,[t("div",d,[t("img",{class:"w-96 h-auto rounded-md",src:e.product.image,alt:e.product.title},null,8,i)]),t("div",l,[t("h1",n,s(e.product.title),1),t("p",g,s(e.product.description),1)])])]))}};export{_ as default}; diff --git a/public/build/assets/ProfilePicture-964db75d.js b/public/build/assets/ProfilePicture-964db75d.js deleted file mode 100644 index b535fde..0000000 --- a/public/build/assets/ProfilePicture-964db75d.js +++ /dev/null @@ -1 +0,0 @@ -import{i as m,J as _,v as g,h as n,b as e,e as y,a as r,u as a,w as f,S as h,q as d,o as c,d as w}from"./app-4f9e7dfc.js";import{_ as x}from"./DeleteForm-3a0f2fad.js";import{a as b,_ as P}from"./InputLabel-5969cc22.js";import{_ as k}from"./PrimaryButton-89a514d8.js";import{d as $}from"./defaultFile-106f3fb6.js";import"./DangerButton-c925b039.js";import"./SecondaryButton-5f2daf35.js";const I=e("header",null,[e("h2",{class:"text-lg font-medium text-gray-900 dark:text-gray-100"}," Profile Picture "),e("p",{class:"mt-1 text-sm text-gray-600 dark:text-gray-400"}," Update your account's profile Picture. ")],-1),S={class:"flex flex-wrap sm:justify-between sm:items-center w-full space-y-5"},U={class:"flex items-center gap-4"},V={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},j={class:"flex-1 w-full order-first sm:order-last"},B={class:"flex items-center justify-center w-32 h-32 sm:w-40 sm:h-40 overflow-hidden rounded-full bg-gray-100 relative group"},N=["src"],C={key:0,class:"w-full h-full absolute grid place-items-center transition-all transform translate-y-8 opacity-0 group-hover:opacity-100 group-hover:translate-y-0"},M={__name:"ProfilePicture",props:{mustVerifyEmail:Boolean,status:String},setup(E){const p=m(null),u=m($.avatar),o=_().props.auth.user,t=g({avatar:o.avatar,avatarPreview:o.avatar}),v=l=>{const s=l.target.files[0];t.avatarPreview=URL.createObjectURL(s)};return(l,s)=>(c(),n("section",null,[I,e("div",S,[e("form",{onSubmit:s[1]||(s[1]=y(i=>a(t).post(l.route("profile.image")),["prevent"])),class:"mt-6 space-y-6 flex-1"},[e("div",null,[r(P,{for:"avatar",value:"Avatar"}),e("input",{type:"file",name:"avatar",class:"mt-1 block form-controll cursor-pointer",onChange:v,ref_key:"avatarInput",ref:p,onInput:s[0]||(s[0]=i=>a(t).avatar=i.target.files[0])},null,544),r(b,{class:"mt-2",message:a(t).errors.avatar},null,8,["message"])]),e("div",U,[r(k,{disabled:a(t).processing},{default:f(()=>[w("Update")]),_:1},8,["disabled"]),r(h,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:f(()=>[a(t).recentlySuccessful?(c(),n("p",V," Update. ")):d("",!0)]),_:1})])],32),e("div",j,[e("span",B,[e("img",{src:a(t).avatarPreview,alt:"",class:"w-full h-full object-contain inset-0 group-hover:opacity-50 shadow-md shadow-gray-900"},null,8,N),u.value!=a(t).avatarPreview?(c(),n("span",C,[r(x,{class:"cursor-pointer",data:{id:a(o).id,model:"user.image"},onSuccess:s[2]||(s[2]=i=>a(t).avatarPreview=u.value)},null,8,["data"])])):d("",!0)])])])]))}};export{M as default}; diff --git a/public/build/assets/ProfilePicture-e34cb9e1.js b/public/build/assets/ProfilePicture-e34cb9e1.js deleted file mode 100644 index de23cfd..0000000 --- a/public/build/assets/ProfilePicture-e34cb9e1.js +++ /dev/null @@ -1 +0,0 @@ -import{p as m,A as _,u as g,o as n,g as c,d as e,f as y,a as r,b as t,w as f,T as h,h as p,e as w}from"./app-a07534fc.js";import{_ as x}from"./DeleteForm-95cf9c02.js";import{_ as P}from"./InputError-819a2731.js";import{_ as b}from"./InputLabel-0d88b11e.js";import{_ as k}from"./PrimaryButton-f1dd44c4.js";import{d as $}from"./defaultFile-233481e1.js";import"./DangerButton-1432f67e.js";import"./SecondaryButton-e6cce7b4.js";const I=e("header",null,[e("h2",{class:"text-lg font-medium text-gray-900 dark:text-gray-100"}," Profile Picture "),e("p",{class:"mt-1 text-sm text-gray-600 dark:text-gray-400"}," Update your account's profile Picture. ")],-1),U={class:"flex flex-wrap sm:justify-between sm:items-center w-full space-y-5"},V={class:"flex items-center gap-4"},j={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},B={class:"flex-1 w-full order-first sm:order-last"},N={class:"flex items-center justify-center w-32 h-32 sm:w-40 sm:h-40 overflow-hidden rounded-full bg-gray-100 relative group"},S=["src"],C={key:0,class:"w-full h-full absolute grid place-items-center transition-all transform translate-y-8 opacity-0 group-hover:opacity-100 group-hover:translate-y-0"},z={__name:"ProfilePicture",props:{mustVerifyEmail:Boolean,status:String},setup(T){const d=m(null),u=m($.avatar),o=_().props.value.auth.user,a=g({avatar:o.avatar,avatarPreview:o.avatar}),v=l=>{const s=l.target.files[0];a.avatarPreview=URL.createObjectURL(s)};return(l,s)=>(n(),c("section",null,[I,e("div",U,[e("form",{onSubmit:s[1]||(s[1]=y(i=>t(a).post(l.route("profile.image")),["prevent"])),class:"mt-6 space-y-6 flex-1"},[e("div",null,[r(b,{for:"avatar",value:"Avatar"}),e("input",{type:"file",name:"avatar",class:"mt-1 block form-controll cursor-pointer",onChange:v,ref_key:"avatarInput",ref:d,onInput:s[0]||(s[0]=i=>t(a).avatar=i.target.files[0])},null,544),r(P,{class:"mt-2",message:t(a).errors.avatar},null,8,["message"])]),e("div",V,[r(k,{disabled:t(a).processing},{default:f(()=>[w("Update")]),_:1},8,["disabled"]),r(h,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:f(()=>[t(a).recentlySuccessful?(n(),c("p",j," Update. ")):p("",!0)]),_:1})])],32),e("div",B,[e("span",N,[e("img",{src:t(a).avatarPreview,alt:"",class:"w-full h-full object-contain inset-0 group-hover:opacity-50 shadow-md shadow-gray-900"},null,8,S),u.value!=t(a).avatarPreview?(n(),c("span",C,[r(x,{class:"cursor-pointer",data:{id:t(o).id,model:"user.image"},onSuccess:s[2]||(s[2]=i=>t(a).avatarPreview=u.value)},null,8,["data"])])):p("",!0)])])])]))}};export{z as default}; diff --git a/public/build/assets/ProfilePicture-edc5c3e1.js b/public/build/assets/ProfilePicture-edc5c3e1.js new file mode 100644 index 0000000..e62b9c3 --- /dev/null +++ b/public/build/assets/ProfilePicture-edc5c3e1.js @@ -0,0 +1 @@ +import{p as m,J as _,v as g,f as n,b as e,e as y,a as r,u as a,w as f,T as w,g as d,o as c,d as h}from"./app-4dfa7f3b.js";import{_ as x}from"./DeleteForm-ea1de4c5.js";import{a as b,_ as P}from"./InputLabel-fec82426.js";import{_ as k}from"./PrimaryButton-2b535c8b.js";import{d as $}from"./defaultFile-2b6c57d3.js";import"./DangerButton-9faead77.js";import"./SecondaryButton-c5891444.js";const I=e("header",null,[e("h2",{class:"text-lg font-medium text-gray-900 dark:text-gray-100"}," Profile Picture "),e("p",{class:"mt-1 text-sm text-gray-600 dark:text-gray-400"}," Update your account's profile Picture. ")],-1),U={class:"flex flex-wrap sm:justify-between sm:items-center w-full space-y-5"},V={class:"flex items-center gap-4"},j={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},B={class:"flex-1 w-full order-first sm:order-last"},N={class:"flex items-center justify-center w-32 h-32 sm:w-40 sm:h-40 overflow-hidden rounded-full bg-gray-100 relative group"},S=["src"],C={key:0,class:"w-full h-full absolute grid place-items-center transition-all transform translate-y-8 opacity-0 group-hover:opacity-100 group-hover:translate-y-0"},O={__name:"ProfilePicture",props:{mustVerifyEmail:Boolean,status:String},setup(T){const p=m(null),u=m($.avatar),o=_().props.auth.user,t=g({avatar:o.avatar,avatarPreview:o.avatar}),v=l=>{const s=l.target.files[0];t.avatarPreview=URL.createObjectURL(s)};return(l,s)=>(c(),n("section",null,[I,e("div",U,[e("form",{onSubmit:s[1]||(s[1]=y(i=>a(t).post(l.route("profile.image")),["prevent"])),class:"mt-6 space-y-6 flex-1"},[e("div",null,[r(P,{for:"avatar",value:"Avatar"}),e("input",{type:"file",name:"avatar",class:"mt-1 block form-controll cursor-pointer",onChange:v,ref_key:"avatarInput",ref:p,onInput:s[0]||(s[0]=i=>a(t).avatar=i.target.files[0])},null,544),r(b,{class:"mt-2",message:a(t).errors.avatar},null,8,["message"])]),e("div",V,[r(k,{disabled:a(t).processing},{default:f(()=>[h("Update")]),_:1},8,["disabled"]),r(w,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:f(()=>[a(t).recentlySuccessful?(c(),n("p",j," Update. ")):d("",!0)]),_:1})])],32),e("div",B,[e("span",N,[e("img",{src:a(t).avatarPreview,alt:"",class:"w-full h-full object-contain inset-0 group-hover:opacity-50 shadow-md shadow-gray-900"},null,8,S),u.value!=a(t).avatarPreview?(c(),n("span",C,[r(x,{class:"cursor-pointer",data:{id:a(o).id,model:"user.image"},onSuccess:s[2]||(s[2]=i=>a(t).avatarPreview=u.value)},null,8,["data"])])):d("",!0)])])])]))}};export{O as default}; diff --git a/public/build/assets/Register-a41f6389.js b/public/build/assets/Register-1000d6d8.js similarity index 86% rename from public/build/assets/Register-a41f6389.js rename to public/build/assets/Register-1000d6d8.js index f23e2ee..73afc4f 100644 --- a/public/build/assets/Register-a41f6389.js +++ b/public/build/assets/Register-1000d6d8.js @@ -1 +1 @@ -import{v as c,c as _,w as d,o as g,a as o,u as s,X as w,b as t,d as u,t as f,z as v,n as V,e as y}from"./app-4f9e7dfc.js";import{_ as m,a as i}from"./InputLabel-5969cc22.js";import{_ as b}from"./PrimaryButton-89a514d8.js";import{_ as n}from"./TextInput-5a299594.js";import{_ as k}from"./GuestLayout-4014bb8c.js";import"./ApplicationLogo-1c8f1468.js";import"./defaultFile-106f3fb6.js";import"./Toast-3242a059.js";import"./toast-c1edb8fd.js";const h=["onSubmit"],$={class:"mt-4"},q={class:"mt-4"},x={class:"mt-4"},U={class:"flex items-center justify-end mt-4"},T={__name:"Register",setup(B){const e=c({name:"",email:"",password:"",password_confirmation:"",terms:!1}),p=()=>{e.post(route("register"),{onFinish:()=>e.reset("password","password_confirmation")})};return(r,a)=>(g(),_(k,null,{default:d(()=>[o(s(w),{title:"Register"}),t("form",{onSubmit:y(p,["prevent"])},[t("div",null,[o(m,{for:"name",value:r.__("register.form.name")},null,8,["value"]),o(n,{id:"name",type:"text",class:"mt-1 block w-full",modelValue:s(e).name,"onUpdate:modelValue":a[0]||(a[0]=l=>s(e).name=l),required:"",autofocus:"",autocomplete:"name"},null,8,["modelValue"]),o(i,{class:"mt-2",message:s(e).errors.name},null,8,["message"])]),t("div",$,[o(m,{for:"email",value:r.__("register.form.email")},null,8,["value"]),o(n,{id:"email",type:"email",class:"mt-1 block w-full",modelValue:s(e).email,"onUpdate:modelValue":a[1]||(a[1]=l=>s(e).email=l),required:"",autocomplete:"username"},null,8,["modelValue"]),o(i,{class:"mt-2",message:s(e).errors.email},null,8,["message"])]),t("div",q,[o(m,{for:"password",value:r.__("register.form.password")},null,8,["value"]),o(n,{id:"password",type:"password",class:"mt-1 block w-full",modelValue:s(e).password,"onUpdate:modelValue":a[2]||(a[2]=l=>s(e).password=l),required:"",autocomplete:"new-password"},null,8,["modelValue"]),o(i,{class:"mt-2",message:s(e).errors.password},null,8,["message"])]),t("div",x,[o(m,{for:"password_confirmation",value:r.__("register.form.confirm_password")},null,8,["value"]),o(n,{id:"password_confirmation",type:"password",class:"mt-1 block w-full",modelValue:s(e).password_confirmation,"onUpdate:modelValue":a[3]||(a[3]=l=>s(e).password_confirmation=l),required:"",autocomplete:"new-password"},null,8,["modelValue"]),o(i,{class:"mt-2",message:s(e).errors.password_confirmation},null,8,["message"])]),t("div",U,[o(s(v),{href:r.route("login"),class:"underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800"},{default:d(()=>[u(f(r.__("register.login_link")),1)]),_:1},8,["href"]),o(b,{class:V(["ml-4",{"opacity-25":s(e).processing}]),disabled:s(e).processing},{default:d(()=>[u(f(r.__("register.submit")),1)]),_:1},8,["class","disabled"])])],40,h)]),_:1}))}};export{T as default}; +import{v as c,c as _,w as d,o as g,a as o,u as s,X as w,b as t,d as u,t as f,l as v,n as V,e as y}from"./app-4dfa7f3b.js";import{_ as m,a as i}from"./InputLabel-fec82426.js";import{_ as b}from"./PrimaryButton-2b535c8b.js";import{_ as n}from"./TextInput-fb418c8e.js";import{_ as k}from"./GuestLayout-ac5d3072.js";import"./ApplicationLogo-77a8e36b.js";import"./defaultFile-2b6c57d3.js";import"./Toast-645f4c7b.js";import"./toast-ded66f04.js";const h=["onSubmit"],$={class:"mt-4"},q={class:"mt-4"},x={class:"mt-4"},U={class:"flex items-center justify-end mt-4"},T={__name:"Register",setup(B){const e=c({name:"",email:"",password:"",password_confirmation:"",terms:!1}),p=()=>{e.post(route("register"),{onFinish:()=>e.reset("password","password_confirmation")})};return(r,a)=>(g(),_(k,null,{default:d(()=>[o(s(w),{title:"Register"}),t("form",{onSubmit:y(p,["prevent"])},[t("div",null,[o(m,{for:"name",value:r.__("register.form.name")},null,8,["value"]),o(n,{id:"name",type:"text",class:"mt-1 block w-full",modelValue:s(e).name,"onUpdate:modelValue":a[0]||(a[0]=l=>s(e).name=l),required:"",autofocus:"",autocomplete:"name"},null,8,["modelValue"]),o(i,{class:"mt-2",message:s(e).errors.name},null,8,["message"])]),t("div",$,[o(m,{for:"email",value:r.__("register.form.email")},null,8,["value"]),o(n,{id:"email",type:"email",class:"mt-1 block w-full",modelValue:s(e).email,"onUpdate:modelValue":a[1]||(a[1]=l=>s(e).email=l),required:"",autocomplete:"username"},null,8,["modelValue"]),o(i,{class:"mt-2",message:s(e).errors.email},null,8,["message"])]),t("div",q,[o(m,{for:"password",value:r.__("register.form.password")},null,8,["value"]),o(n,{id:"password",type:"password",class:"mt-1 block w-full",modelValue:s(e).password,"onUpdate:modelValue":a[2]||(a[2]=l=>s(e).password=l),required:"",autocomplete:"new-password"},null,8,["modelValue"]),o(i,{class:"mt-2",message:s(e).errors.password},null,8,["message"])]),t("div",x,[o(m,{for:"password_confirmation",value:r.__("register.form.confirm_password")},null,8,["value"]),o(n,{id:"password_confirmation",type:"password",class:"mt-1 block w-full",modelValue:s(e).password_confirmation,"onUpdate:modelValue":a[3]||(a[3]=l=>s(e).password_confirmation=l),required:"",autocomplete:"new-password"},null,8,["modelValue"]),o(i,{class:"mt-2",message:s(e).errors.password_confirmation},null,8,["message"])]),t("div",U,[o(s(v),{href:r.route("login"),class:"underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800"},{default:d(()=>[u(f(r.__("register.login_link")),1)]),_:1},8,["href"]),o(b,{class:V(["ml-4",{"opacity-25":s(e).processing}]),disabled:s(e).processing},{default:d(()=>[u(f(r.__("register.submit")),1)]),_:1},8,["class","disabled"])])],40,h)]),_:1}))}};export{T as default}; diff --git a/public/build/assets/Register-5c3f874d.js b/public/build/assets/Register-5c3f874d.js deleted file mode 100644 index 4671920..0000000 --- a/public/build/assets/Register-5c3f874d.js +++ /dev/null @@ -1 +0,0 @@ -import{u as c,o as _,c as g,w as d,a as o,b as s,H as w,d as t,e as u,t as f,L as v,n as V,f as y}from"./app-a07534fc.js";import{_ as m}from"./InputError-819a2731.js";import{_ as i}from"./InputLabel-0d88b11e.js";import{_ as b}from"./PrimaryButton-f1dd44c4.js";import{_ as n}from"./TextInput-6d371888.js";import{_ as k}from"./GuestLayout-8f04497b.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";const h=["onSubmit"],$={class:"mt-4"},q={class:"mt-4"},x={class:"mt-4"},U={class:"flex items-center justify-end mt-4"},D={__name:"Register",setup(B){const e=c({name:"",email:"",password:"",password_confirmation:"",terms:!1}),p=()=>{e.post(route("register"),{onFinish:()=>e.reset("password","password_confirmation")})};return(r,a)=>(_(),g(k,null,{default:d(()=>[o(s(w),{title:"Register"}),t("form",{onSubmit:y(p,["prevent"])},[t("div",null,[o(i,{for:"name",value:r.__("register.form.name")},null,8,["value"]),o(n,{id:"name",type:"text",class:"mt-1 block w-full",modelValue:s(e).name,"onUpdate:modelValue":a[0]||(a[0]=l=>s(e).name=l),required:"",autofocus:"",autocomplete:"name"},null,8,["modelValue"]),o(m,{class:"mt-2",message:s(e).errors.name},null,8,["message"])]),t("div",$,[o(i,{for:"email",value:r.__("register.form.email")},null,8,["value"]),o(n,{id:"email",type:"email",class:"mt-1 block w-full",modelValue:s(e).email,"onUpdate:modelValue":a[1]||(a[1]=l=>s(e).email=l),required:"",autocomplete:"username"},null,8,["modelValue"]),o(m,{class:"mt-2",message:s(e).errors.email},null,8,["message"])]),t("div",q,[o(i,{for:"password",value:r.__("register.form.password")},null,8,["value"]),o(n,{id:"password",type:"password",class:"mt-1 block w-full",modelValue:s(e).password,"onUpdate:modelValue":a[2]||(a[2]=l=>s(e).password=l),required:"",autocomplete:"new-password"},null,8,["modelValue"]),o(m,{class:"mt-2",message:s(e).errors.password},null,8,["message"])]),t("div",x,[o(i,{for:"password_confirmation",value:r.__("register.form.confirm_password")},null,8,["value"]),o(n,{id:"password_confirmation",type:"password",class:"mt-1 block w-full",modelValue:s(e).password_confirmation,"onUpdate:modelValue":a[3]||(a[3]=l=>s(e).password_confirmation=l),required:"",autocomplete:"new-password"},null,8,["modelValue"]),o(m,{class:"mt-2",message:s(e).errors.password_confirmation},null,8,["message"])]),t("div",U,[o(s(v),{href:r.route("login"),class:"underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800"},{default:d(()=>[u(f(r.__("register.login_link")),1)]),_:1},8,["href"]),o(b,{class:V(["ml-4",{"opacity-25":s(e).processing}]),disabled:s(e).processing},{default:d(()=>[u(f(r.__("register.submit")),1)]),_:1},8,["class","disabled"])])],40,h)]),_:1}))}};export{D as default}; diff --git a/public/build/assets/ResetPassword-27cbe975.js b/public/build/assets/ResetPassword-40395e1a.js similarity index 82% rename from public/build/assets/ResetPassword-27cbe975.js rename to public/build/assets/ResetPassword-40395e1a.js index d4dcd4c..e31e27e 100644 --- a/public/build/assets/ResetPassword-27cbe975.js +++ b/public/build/assets/ResetPassword-40395e1a.js @@ -1 +1 @@ -import{v as f,c as _,w as p,o as w,a as o,u as e,X as v,b as l,d as V,t as g,n as b,e as k}from"./app-4f9e7dfc.js";import{_ as i,a as m}from"./InputLabel-5969cc22.js";import{_ as y}from"./PrimaryButton-89a514d8.js";import{_ as n}from"./TextInput-5a299594.js";import{_ as S}from"./GuestLayout-4014bb8c.js";import"./ApplicationLogo-1c8f1468.js";import"./defaultFile-106f3fb6.js";import"./Toast-3242a059.js";import"./toast-c1edb8fd.js";const $=["onSubmit"],q={class:"mt-4"},B={class:"mt-4"},N={class:"flex items-center justify-end mt-4"},F={__name:"ResetPassword",props:{email:String,token:String},setup(u){const d=u,s=f({token:d.token,email:d.email,password:"",password_confirmation:""}),c=()=>{s.post(route("password.store"),{onFinish:()=>s.reset("password","password_confirmation")})};return(t,a)=>(w(),_(S,null,{default:p(()=>[o(e(v),{title:"Reset Password"}),l("form",{onSubmit:k(c,["prevent"])},[l("div",null,[o(i,{for:"email",value:t.__("reset.form.email")},null,8,["value"]),o(n,{id:"email",type:"email",class:"mt-1 block w-full",modelValue:e(s).email,"onUpdate:modelValue":a[0]||(a[0]=r=>e(s).email=r),required:"",autofocus:"",autocomplete:"email"},null,8,["modelValue"]),o(m,{class:"mt-2",message:e(s).errors.email},null,8,["message"])]),l("div",q,[o(i,{for:"password",value:t.__("reset.form.password")},null,8,["value"]),o(n,{id:"password",type:"password",class:"mt-1 block w-full",modelValue:e(s).password,"onUpdate:modelValue":a[1]||(a[1]=r=>e(s).password=r),required:"",autocomplete:"new-password"},null,8,["modelValue"]),o(m,{class:"mt-2",message:e(s).errors.password},null,8,["message"])]),l("div",B,[o(i,{for:"password_confirmation",value:t.__("reset.form.confirm_password")},null,8,["value"]),o(n,{id:"password_confirmation",type:"password",class:"mt-1 block w-full",modelValue:e(s).password_confirmation,"onUpdate:modelValue":a[2]||(a[2]=r=>e(s).password_confirmation=r),required:"",autocomplete:"new-password"},null,8,["modelValue"]),o(m,{class:"mt-2",message:e(s).errors.password_confirmation},null,8,["message"])]),l("div",N,[o(y,{class:b({"opacity-25":e(s).processing}),disabled:e(s).processing},{default:p(()=>[V(g(t.__("reset.submit")),1)]),_:1},8,["class","disabled"])])],40,$)]),_:1}))}};export{F as default}; +import{v as f,c as _,w as p,o as w,a as o,u as e,X as v,b as l,d as V,t as g,n as b,e as k}from"./app-4dfa7f3b.js";import{_ as i,a as m}from"./InputLabel-fec82426.js";import{_ as y}from"./PrimaryButton-2b535c8b.js";import{_ as n}from"./TextInput-fb418c8e.js";import{_ as S}from"./GuestLayout-ac5d3072.js";import"./ApplicationLogo-77a8e36b.js";import"./defaultFile-2b6c57d3.js";import"./Toast-645f4c7b.js";import"./toast-ded66f04.js";const $=["onSubmit"],q={class:"mt-4"},B={class:"mt-4"},N={class:"flex items-center justify-end mt-4"},F={__name:"ResetPassword",props:{email:String,token:String},setup(u){const d=u,s=f({token:d.token,email:d.email,password:"",password_confirmation:""}),c=()=>{s.post(route("password.store"),{onFinish:()=>s.reset("password","password_confirmation")})};return(t,a)=>(w(),_(S,null,{default:p(()=>[o(e(v),{title:"Reset Password"}),l("form",{onSubmit:k(c,["prevent"])},[l("div",null,[o(i,{for:"email",value:t.__("reset.form.email")},null,8,["value"]),o(n,{id:"email",type:"email",class:"mt-1 block w-full",modelValue:e(s).email,"onUpdate:modelValue":a[0]||(a[0]=r=>e(s).email=r),required:"",autofocus:"",autocomplete:"email"},null,8,["modelValue"]),o(m,{class:"mt-2",message:e(s).errors.email},null,8,["message"])]),l("div",q,[o(i,{for:"password",value:t.__("reset.form.password")},null,8,["value"]),o(n,{id:"password",type:"password",class:"mt-1 block w-full",modelValue:e(s).password,"onUpdate:modelValue":a[1]||(a[1]=r=>e(s).password=r),required:"",autocomplete:"new-password"},null,8,["modelValue"]),o(m,{class:"mt-2",message:e(s).errors.password},null,8,["message"])]),l("div",B,[o(i,{for:"password_confirmation",value:t.__("reset.form.confirm_password")},null,8,["value"]),o(n,{id:"password_confirmation",type:"password",class:"mt-1 block w-full",modelValue:e(s).password_confirmation,"onUpdate:modelValue":a[2]||(a[2]=r=>e(s).password_confirmation=r),required:"",autocomplete:"new-password"},null,8,["modelValue"]),o(m,{class:"mt-2",message:e(s).errors.password_confirmation},null,8,["message"])]),l("div",N,[o(y,{class:b({"opacity-25":e(s).processing}),disabled:e(s).processing},{default:p(()=>[V(g(t.__("reset.submit")),1)]),_:1},8,["class","disabled"])])],40,$)]),_:1}))}};export{F as default}; diff --git a/public/build/assets/ResetPassword-cdde87ce.js b/public/build/assets/ResetPassword-cdde87ce.js deleted file mode 100644 index bb7694c..0000000 --- a/public/build/assets/ResetPassword-cdde87ce.js +++ /dev/null @@ -1 +0,0 @@ -import{u as c,o as _,c as w,w as p,a as o,b as e,H as V,d as l,e as g,t as v,n as b,f as k}from"./app-a07534fc.js";import{_ as m}from"./InputError-819a2731.js";import{_ as i}from"./InputLabel-0d88b11e.js";import{_ as y}from"./PrimaryButton-f1dd44c4.js";import{_ as n}from"./TextInput-6d371888.js";import{_ as S}from"./GuestLayout-8f04497b.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";const $=["onSubmit"],q={class:"mt-4"},B={class:"mt-4"},N={class:"flex items-center justify-end mt-4"},z={__name:"ResetPassword",props:{email:String,token:String},setup(u){const d=u,s=c({token:d.token,email:d.email,password:"",password_confirmation:""}),f=()=>{s.post(route("password.store"),{onFinish:()=>s.reset("password","password_confirmation")})};return(t,a)=>(_(),w(S,null,{default:p(()=>[o(e(V),{title:"Reset Password"}),l("form",{onSubmit:k(f,["prevent"])},[l("div",null,[o(i,{for:"email",value:t.__("reset.form.email")},null,8,["value"]),o(n,{id:"email",type:"email",class:"mt-1 block w-full",modelValue:e(s).email,"onUpdate:modelValue":a[0]||(a[0]=r=>e(s).email=r),required:"",autofocus:"",autocomplete:"email"},null,8,["modelValue"]),o(m,{class:"mt-2",message:e(s).errors.email},null,8,["message"])]),l("div",q,[o(i,{for:"password",value:t.__("reset.form.password")},null,8,["value"]),o(n,{id:"password",type:"password",class:"mt-1 block w-full",modelValue:e(s).password,"onUpdate:modelValue":a[1]||(a[1]=r=>e(s).password=r),required:"",autocomplete:"new-password"},null,8,["modelValue"]),o(m,{class:"mt-2",message:e(s).errors.password},null,8,["message"])]),l("div",B,[o(i,{for:"password_confirmation",value:t.__("reset.form.confirm_password")},null,8,["value"]),o(n,{id:"password_confirmation",type:"password",class:"mt-1 block w-full",modelValue:e(s).password_confirmation,"onUpdate:modelValue":a[2]||(a[2]=r=>e(s).password_confirmation=r),required:"",autocomplete:"new-password"},null,8,["modelValue"]),o(m,{class:"mt-2",message:e(s).errors.password_confirmation},null,8,["message"])]),l("div",N,[o(y,{class:b({"opacity-25":e(s).processing}),disabled:e(s).processing},{default:p(()=>[g(v(t.__("reset.submit")),1)]),_:1},8,["class","disabled"])])],40,$)]),_:1}))}};export{z as default}; diff --git a/public/build/assets/Search-662cc140.js b/public/build/assets/Search-662cc140.js new file mode 100644 index 0000000..b3a3852 --- /dev/null +++ b/public/build/assets/Search-662cc140.js @@ -0,0 +1 @@ +import{r as _,o as a,f as o,b as e,t as h,F as m,q as k,c as w,w as S,n as L,g as v,v as M,p as B,J as T,y as $,u,d as C,i as H,B as z}from"./app-4dfa7f3b.js";const V={key:0,class:"flex justify-between"},N={class:"text-gray-900 dark:text-gray-900"},j={class:"flex flex-wrap -mb-1"},q=["innerHTML"],A=["innerHTML"],K={__name:"Pagination",props:{meta:Array},setup(r){return(t,c)=>{var d;const l=_("Link");return((d=r.meta.links)==null?void 0:d.length)>3?(a(),o("div",V,[e("div",N,[e("p",null," Showing "+h(r.meta.from)+" to "+h(r.meta.to)+" of "+h(r.meta.total)+" results ",1)]),e("div",j,[(a(!0),o(m,null,k(r.meta.links,(s,i)=>(a(),o(m,{key:i},[s.url===null?(a(),o("div",{key:0,class:"mr-1 mb-1 px-2 py-2 text-sm leading-4 text-gray-400 border rounded dark:text-white dark:bg-gray-700 hover:dark:bg-gray-800",innerHTML:t.__(s.label)},null,8,q)):(a(),w(l,{key:1,"preserve-scroll":"",class:L(["mr-1 mb-1 px-3 py-2 text-sm leading-4 border rounded focus:border-indigo-500 focus:text-indigo-500 dark:text-white dark:bg-gray-700 hover:dark:bg-gray-800 hover:bg-gray-700 hover:text-gray-100",{"text-white bg-blue-700 dark:text-white dark:bg-blue-700":s.active}]),href:s.url??""},{default:S(()=>[e("span",{innerHTML:s.label},null,8,A)]),_:2},1032,["class","href"]))],64))),128))])])):v("",!0)}}},D={class:"flex flex-col-reverse sm:flex-row space-x-2 justify-between items-center"},E={class:"mt-5 sm:mt-0"},F={key:0,class:"text-lg"},I={class:"font-bold dark:text-yellow-400 text-blue-900"},O={class:"sm:float-right"},J=e("label",{for:"table-search",class:"sr-only"},"Search",-1),P={class:"relative"},Q=e("div",{class:"absolute inset-y-0 left-0 flex items-center pl-3 pointer-events-none"},[e("svg",{class:"w-5 h-5 text-gray-500 dark:text-gray-400","aria-hidden":"true",fill:"currentColor",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},[e("path",{"fill-rule":"evenodd",d:"M8 4a4 4 0 100 8 4 4 0 000-8zM2 8a6 6 0 1110.89 3.476l4.817 4.817a1 1 0 01-1.414 1.414l-4.816-4.816A6 6 0 012 8z","clip-rule":"evenodd"})])],-1),U=["placeholder"],R={__name:"Search",props:{placeholder:{type:String,require:!1,default:"Search..."}},setup(r){var i,g,f,p,x;const t=M({search:""});let c=B("");const l=T().url,d=(i=l.value)==null?void 0:i.split("?")[0];if(((g=l.value)==null?void 0:g.indexOf("?"))!=-1){let n=(f=l.value)==null?void 0:f.split("?")[1];(n==null?void 0:n.indexOf("search"))!=-1&&(c.value=(x=(p=l.value)==null?void 0:p.split("?")[1])==null?void 0:x.split("=")[1])}$(()=>t.search,n=>{s()});const s=()=>{t.get(d,{preserveScroll:!0,onSuccess:()=>t.reset(),onError:()=>{t.errors.search&&searchInput.value.focus()}})};return(n,b)=>(a(),o("div",D,[e("div",E,[u(c)?(a(),o("p",F,[C(" Search result for: "),e("span",I,h(u(c)),1)])):v("",!0)]),e("div",O,[J,e("div",P,[Q,H(e("input",{type:"text",id:"table-search-users",class:"block p-2 pl-10 text-sm text-gray-900 border border-gray-300 rounded-lg w-80 bg-gray-50 focus:ring-blue-500 focus:border-blue-500 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500",placeholder:r.placeholder,"onUpdate:modelValue":b[0]||(b[0]=y=>u(t).search=y),ref:"searchInput"},null,8,U),[[z,u(t).search,void 0,{lazy:!0}]])])])]))}};export{R as _,K as a}; diff --git a/public/build/assets/Search-b0de8abf.js b/public/build/assets/Search-b0de8abf.js deleted file mode 100644 index 7738804..0000000 --- a/public/build/assets/Search-b0de8abf.js +++ /dev/null @@ -1 +0,0 @@ -import{k as y,o as a,h as o,b as e,t as h,F as x,m as k,c as w,w as S,n as L,q as v,v as M,i as T,J as $,G as B,u,d as C,f as H,Y as z}from"./app-4f9e7dfc.js";const V={key:0,class:"flex justify-between"},N={class:"text-gray-900 dark:text-gray-900"},j={class:"flex flex-wrap -mb-1"},q=["innerHTML"],A=["innerHTML"],Y={__name:"Pagination",props:{meta:Array},setup(r){return(t,c)=>{var d;const l=y("Link");return((d=r.meta.links)==null?void 0:d.length)>3?(a(),o("div",V,[e("div",N,[e("p",null," Showing "+h(r.meta.from)+" to "+h(r.meta.to)+" of "+h(r.meta.total)+" results ",1)]),e("div",j,[(a(!0),o(x,null,k(r.meta.links,(s,i)=>(a(),o(x,{key:i},[s.url===null?(a(),o("div",{key:0,class:"mr-1 mb-1 px-2 py-2 text-sm leading-4 text-gray-400 border rounded dark:text-white dark:bg-gray-700 hover:dark:bg-gray-800",innerHTML:t.__(s.label)},null,8,q)):(a(),w(l,{key:1,"preserve-scroll":"",class:L(["mr-1 mb-1 px-3 py-2 text-sm leading-4 border rounded focus:border-indigo-500 focus:text-indigo-500 dark:text-white dark:bg-gray-700 hover:dark:bg-gray-800 hover:bg-gray-700 hover:text-gray-100",{"text-white bg-blue-700 dark:text-white dark:bg-blue-700":s.active}]),href:s.url??""},{default:S(()=>[e("span",{innerHTML:t.__(s.label)},null,8,A)]),_:2},1032,["class","href"]))],64))),128))])])):v("",!0)}}},D={class:"flex flex-col-reverse sm:flex-row space-x-2 justify-between items-center"},E={class:"mt-5 sm:mt-0"},F={key:0,class:"text-lg"},I={class:"font-bold dark:text-yellow-400 text-blue-900"},O={class:"sm:float-right"},G=e("label",{for:"table-search",class:"sr-only"},"Search",-1),J={class:"relative"},P=e("div",{class:"absolute inset-y-0 left-0 flex items-center pl-3 pointer-events-none"},[e("svg",{class:"w-5 h-5 text-gray-500 dark:text-gray-400","aria-hidden":"true",fill:"currentColor",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},[e("path",{"fill-rule":"evenodd",d:"M8 4a4 4 0 100 8 4 4 0 000-8zM2 8a6 6 0 1110.89 3.476l4.817 4.817a1 1 0 01-1.414 1.414l-4.816-4.816A6 6 0 012 8z","clip-rule":"evenodd"})])],-1),Q=["placeholder"],K={__name:"Search",props:{placeholder:{type:String,require:!1,default:"Search..."}},setup(r){var i,g,f,m,b;const t=M({search:""});let c=T("");const l=$().url,d=(i=l.value)==null?void 0:i.split("?")[0];if(((g=l.value)==null?void 0:g.indexOf("?"))!=-1){let n=(f=l.value)==null?void 0:f.split("?")[1];(n==null?void 0:n.indexOf("search"))!=-1&&(c.value=(b=(m=l.value)==null?void 0:m.split("?")[1])==null?void 0:b.split("=")[1])}B(()=>t.search,n=>{s()});const s=()=>{t.get(d,{preserveScroll:!0,onSuccess:()=>t.reset(),onError:()=>{t.errors.search&&searchInput.value.focus()}})};return(n,p)=>(a(),o("div",D,[e("div",E,[u(c)?(a(),o("p",F,[C(" Search result for: "),e("span",I,h(u(c)),1)])):v("",!0)]),e("div",O,[G,e("div",J,[P,H(e("input",{type:"text",id:"table-search-users",class:"block p-2 pl-10 text-sm text-gray-900 border border-gray-300 rounded-lg w-80 bg-gray-50 focus:ring-blue-500 focus:border-blue-500 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500",placeholder:r.placeholder,"onUpdate:modelValue":p[0]||(p[0]=_=>u(t).search=_),ref:"searchInput"},null,8,Q),[[z,u(t).search,void 0,{lazy:!0}]])])])]))}};export{K as _,Y as a}; diff --git a/public/build/assets/Search-d7ef8e63.js b/public/build/assets/Search-d7ef8e63.js deleted file mode 100644 index 503e59c..0000000 --- a/public/build/assets/Search-d7ef8e63.js +++ /dev/null @@ -1 +0,0 @@ -import{u as f,p as g,A as v,x as _,o,g as l,d as e,e as m,t as x,h as b,j as y,Z as w,b as c}from"./app-a07534fc.js";const k={class:"flex flex-col-reverse sm:flex-row space-x-2 justify-between items-center"},S={class:"mt-5 sm:mt-0"},B={key:0,class:"text-lg"},V={class:"font-bold dark:text-yellow-400 text-blue-900"},z={class:"sm:float-right"},M=e("label",{for:"table-search",class:"sr-only"},"Search",-1),N={class:"relative"},j=e("div",{class:"absolute inset-y-0 left-0 flex items-center pl-3 pointer-events-none"},[e("svg",{class:"w-5 h-5 text-gray-500 dark:text-gray-400","aria-hidden":"true",fill:"currentColor",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},[e("path",{"fill-rule":"evenodd",d:"M8 4a4 4 0 100 8 4 4 0 000-8zM2 8a6 6 0 1110.89 3.476l4.817 4.817a1 1 0 01-1.414 1.414l-4.816-4.816A6 6 0 012 8z","clip-rule":"evenodd"})])],-1),q=["placeholder"],C={__name:"Search",props:{placeholder:{type:String,require:!1,default:"Search..."}},setup(n){const r=f({search:""}),s=g(""),t=v().url,d=new URLSearchParams(t.value.split("?")[1]);s.value=d.get("search")||"";const u=t.value.split("?")[0];_(()=>r.search,h=>{i()});const i=()=>{r.get(u,{preserveScroll:!0,onSuccess:()=>r.reset(),onError:()=>{r.errors.search&&searchInput.value.focus()}})};return(h,a)=>(o(),l("div",k,[e("div",S,[s.value?(o(),l("p",B,[m(" Search result for: "),e("span",V,x(s.value),1)])):b("",!0)]),e("div",z,[M,e("div",N,[j,y(e("input",{type:"text",id:"table-search-users",class:"block p-2 pl-10 text-sm text-gray-900 border border-gray-300 rounded-lg w-80 bg-gray-50 focus:ring-blue-500 focus:border-blue-500 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500",placeholder:n.placeholder,"onUpdate:modelValue":a[0]||(a[0]=p=>c(r).search=p),ref:"searchInput"},null,8,q),[[w,c(r).search,void 0,{lazy:!0}]])])])]))}};export{C as _}; diff --git a/public/build/assets/SecondaryButton-5f2daf35.js b/public/build/assets/SecondaryButton-c5891444.js similarity index 72% rename from public/build/assets/SecondaryButton-5f2daf35.js rename to public/build/assets/SecondaryButton-c5891444.js index 5dc29d6..56ad3c2 100644 --- a/public/build/assets/SecondaryButton-5f2daf35.js +++ b/public/build/assets/SecondaryButton-c5891444.js @@ -1 +1 @@ -import{G as w,j as p,l as h,s as v,o as u,c as x,a as l,w as n,f as c,g as r,b as a,S as i,n as b,u as g,r as y,q as _,R as k,h as B}from"./app-4f9e7dfc.js";const S={class:"fixed inset-0 overflow-y-auto px-4 py-6 sm:px-0 z-50","scroll-region":""},C=a("div",{class:"absolute inset-0 bg-gray-500 dark:bg-gray-900 opacity-75"},null,-1),E=[C],W={__name:"Modal",props:{show:{type:Boolean,default:!1},maxWidth:{type:String,default:"2xl"},closeable:{type:Boolean,default:!0}},emits:["close"],setup(e,{emit:t}){const s=e;w(()=>s.show,()=>{s.show?document.body.style.overflow="hidden":document.body.style.overflow=null});const d=()=>{s.closeable&&t("close")},m=o=>{o.key==="Escape"&&s.show&&d()};p(()=>document.addEventListener("keydown",m)),h(()=>{document.removeEventListener("keydown",m),document.body.style.overflow=null});const f=v(()=>({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"})[s.maxWidth]);return(o,N)=>(u(),x(k,{to:"body"},[l(i,{"leave-active-class":"duration-200"},{default:n(()=>[c(a("div",S,[l(i,{"enter-active-class":"ease-out duration-300","enter-from-class":"opacity-0","enter-to-class":"opacity-100","leave-active-class":"ease-in duration-200","leave-from-class":"opacity-100","leave-to-class":"opacity-0"},{default:n(()=>[c(a("div",{class:"fixed inset-0 transform transition-all",onClick:d},E,512),[[r,e.show]])]),_:1}),l(i,{"enter-active-class":"ease-out duration-300","enter-from-class":"opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95","enter-to-class":"opacity-100 translate-y-0 sm:scale-100","leave-active-class":"ease-in duration-200","leave-from-class":"opacity-100 translate-y-0 sm:scale-100","leave-to-class":"opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"},{default:n(()=>[c(a("div",{class:b(["mb-6 bg-white dark:bg-gray-800 rounded-lg overflow-hidden shadow-xl transform transition-all sm:w-full sm:mx-auto",g(f)])},[e.show?y(o.$slots,"default",{key:0}):_("",!0)],2),[[r,e.show]])]),_:3})],512),[[r,e.show]])]),_:3})]))}},$=["type"],z={__name:"SecondaryButton",props:{type:{type:String,default:"button"}},setup(e){return(t,s)=>(u(),B("button",{type:e.type,class:"btn btn-secondary"},[y(t.$slots,"default")],8,$))}};export{W as _,z as a}; +import{y as w,A as p,C as h,h as v,o as u,c as x,a as l,w as n,i as c,z as r,b as a,T as i,n as b,u as g,m as y,g as _,D as k,f as B}from"./app-4dfa7f3b.js";const C={class:"fixed inset-0 overflow-y-auto px-4 py-6 sm:px-0 z-50","scroll-region":""},E=a("div",{class:"absolute inset-0 bg-gray-500 dark:bg-gray-900 opacity-75"},null,-1),S=[E],T={__name:"Modal",props:{show:{type:Boolean,default:!1},maxWidth:{type:String,default:"2xl"},closeable:{type:Boolean,default:!0}},emits:["close"],setup(e,{emit:t}){const s=e;w(()=>s.show,()=>{s.show?document.body.style.overflow="hidden":document.body.style.overflow=null});const d=()=>{s.closeable&&t("close")},m=o=>{o.key==="Escape"&&s.show&&d()};p(()=>document.addEventListener("keydown",m)),h(()=>{document.removeEventListener("keydown",m),document.body.style.overflow=null});const f=v(()=>({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"})[s.maxWidth]);return(o,z)=>(u(),x(k,{to:"body"},[l(i,{"leave-active-class":"duration-200"},{default:n(()=>[c(a("div",C,[l(i,{"enter-active-class":"ease-out duration-300","enter-from-class":"opacity-0","enter-to-class":"opacity-100","leave-active-class":"ease-in duration-200","leave-from-class":"opacity-100","leave-to-class":"opacity-0"},{default:n(()=>[c(a("div",{class:"fixed inset-0 transform transition-all",onClick:d},S,512),[[r,e.show]])]),_:1}),l(i,{"enter-active-class":"ease-out duration-300","enter-from-class":"opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95","enter-to-class":"opacity-100 translate-y-0 sm:scale-100","leave-active-class":"ease-in duration-200","leave-from-class":"opacity-100 translate-y-0 sm:scale-100","leave-to-class":"opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"},{default:n(()=>[c(a("div",{class:b(["mb-6 bg-white dark:bg-gray-800 rounded-lg overflow-hidden shadow-xl transform transition-all sm:w-full sm:mx-auto",g(f)])},[e.show?y(o.$slots,"default",{key:0}):_("",!0)],2),[[r,e.show]])]),_:3})],512),[[r,e.show]])]),_:3})]))}},$=["type"],V={__name:"SecondaryButton",props:{type:{type:String,default:"button"}},setup(e){return(t,s)=>(u(),B("button",{type:e.type,class:"btn btn-secondary"},[y(t.$slots,"default")],8,$))}};export{T as _,V as a}; diff --git a/public/build/assets/SecondaryButton-e6cce7b4.js b/public/build/assets/SecondaryButton-e6cce7b4.js deleted file mode 100644 index b161dce..0000000 --- a/public/build/assets/SecondaryButton-e6cce7b4.js +++ /dev/null @@ -1 +0,0 @@ -import{x as w,z as p,C as v,i as h,o as u,c as x,a as l,w as n,j as c,y as r,d as a,T as i,n as b,k as y,h as g,Y as _,g as k}from"./app-a07534fc.js";const B={class:"fixed inset-0 overflow-y-auto px-4 py-6 sm:px-0 z-50","scroll-region":""},C=a("div",{class:"absolute inset-0 bg-gray-500 dark:bg-gray-900 opacity-75"},null,-1),E=[C],N={__name:"Modal",props:{show:{type:Boolean,default:!1},maxWidth:{type:String,default:"2xl"},closeable:{type:Boolean,default:!0}},emits:["close"],setup(e,{emit:t}){const s=e;w(()=>s.show,()=>{s.show?document.body.style.overflow="hidden":document.body.style.overflow=null});const d=()=>{s.closeable&&t("close")},m=o=>{o.key==="Escape"&&s.show&&d()};p(()=>document.addEventListener("keydown",m)),v(()=>{document.removeEventListener("keydown",m),document.body.style.overflow=null});const f=h(()=>({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"})[s.maxWidth]);return(o,$)=>(u(),x(_,{to:"body"},[l(i,{"leave-active-class":"duration-200"},{default:n(()=>[c(a("div",B,[l(i,{"enter-active-class":"ease-out duration-300","enter-from-class":"opacity-0","enter-to-class":"opacity-100","leave-active-class":"ease-in duration-200","leave-from-class":"opacity-100","leave-to-class":"opacity-0"},{default:n(()=>[c(a("div",{class:"fixed inset-0 transform transition-all",onClick:d},E,512),[[r,e.show]])]),_:1}),l(i,{"enter-active-class":"ease-out duration-300","enter-from-class":"opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95","enter-to-class":"opacity-100 translate-y-0 sm:scale-100","leave-active-class":"ease-in duration-200","leave-from-class":"opacity-100 translate-y-0 sm:scale-100","leave-to-class":"opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"},{default:n(()=>[c(a("div",{class:b(["mb-6 bg-white dark:bg-gray-800 rounded-lg overflow-hidden shadow-xl transform transition-all sm:w-full sm:mx-auto",f.value])},[e.show?y(o.$slots,"default",{key:0}):g("",!0)],2),[[r,e.show]])]),_:3})],512),[[r,e.show]])]),_:3})]))}},S=["type"],T={__name:"SecondaryButton",props:{type:{type:String,default:"button"}},setup(e){return(t,s)=>(u(),k("button",{type:e.type,class:"btn btn-secondary"},[y(t.$slots,"default")],8,S))}};export{N as _,T as a}; diff --git a/public/build/assets/SettingsForm-9e4047b4.js b/public/build/assets/SettingsForm-9e4047b4.js deleted file mode 100644 index f8d9805..0000000 --- a/public/build/assets/SettingsForm-9e4047b4.js +++ /dev/null @@ -1 +0,0 @@ -import{o as d,g as m,d as o,n as x,A as S,u as L,a as s,b as e,h as y,e as b,t as U,w as k,T,f as C}from"./app-a07534fc.js";import{_ as n}from"./InputError-819a2731.js";import{_ as i}from"./InputLabel-0d88b11e.js";import{_ as j}from"./PrimaryButton-f1dd44c4.js";import{a as z,u as A}from"./useCountries-62ba1c05.js";import{d as B}from"./defaultFile-233481e1.js";import{s as c}from"./default.css_vue_type_style_index_0_src_true_lang-5ba86734.js";const _={__name:"Toggle",props:{modelValue:{type:Boolean}},emits:["update:modelValue"],setup(u,{emit:f}){const g=u;function p(){f("update:modelValue",!g.modelValue)}return(w,V)=>(d(),m("div",{class:x([u.modelValue==!0?"bg-green-600":"bg-gray-300","w-14 transition-all duration-500 h-8 flex items-center rounded-full p-1 cursor-pointer"]),onClick:p},[o("div",{class:x([{"translate-x-6":u.modelValue==!0},"w-6 h-6 transition-all duration-500 transform bg-white rounded-full shadow-md"])},null,2)],2))}},D={class:"relative"},P=o("header",{class:"text-center sm:text-left"},[o("h2",{class:"text-lg font-medium text-gray-900 dark:text-gray-100"}," Site Settings "),o("p",{class:"text-sm text-gray-600 dark:text-gray-400"}," Change Your Web Site Details ")],-1),F={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full flex justify-between items-center"},$={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},N={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full flex justify-between items-center"},O={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},Z={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},R={class:"flex justify-between items-center"},W={key:0},E={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},G={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},J={class:"flex justify-between items-center"},M=["href"],Y={class:"flex items-center justify-center gap-4 py-5 sm:py-10 flex-auto col-span-full"},q={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},se={__name:"SettingsForm",props:{roleArr:Object,socialLoginFields:Object,userDefaultStatus:Object},setup(u){const{userCountry:f,timeZoneList:g,userTimeZone:p,countries:w,countryWithCode:V}=A(),r=S().props.value.global.options,h=z(r.existing_language_file),l=L({site_url:r.site_url,time_zone:r.time_zone,language:r.language,languageArray:h,user_default_role:r.user_default_role,any_one_can_register:r.any_one_can_register,pagination_limit:r.pagination_limit,user_default_status:r.user_default_status,collect_user_location:r.collect_user_location,allow_social_login:r.allow_social_login,social_login_fields:JSON.parse(r.social_login_fields||[""])});return(v,t)=>(d(),m("section",D,[P,o("form",{onSubmit:t[8]||(t[8]=C(a=>e(l).patch(v.route("admin.option.bulk.update")),["prevent"])),class:"mt-6 grid auto-cols-auto sm:grid-cols-2 gap-5 justify-between"},[o("div",F,[s(i,{class:"text-xl",for:"any_one_can_register",value:"Any One Can Register? :"}),s(_,{id:"any_one_can_register",modelValue:e(l).any_one_can_register,"onUpdate:modelValue":t[0]||(t[0]=a=>e(l).any_one_can_register=a)},null,8,["modelValue"]),s(n,{class:"mt-2",message:e(l).errors.any_one_can_register},null,8,["message"])]),o("div",$,[s(i,{class:"text-xl",for:"user_default_role",value:"User Default Role:"}),s(e(c),{modelValue:e(l).user_default_role,"onUpdate:modelValue":t[1]||(t[1]=a=>e(l).user_default_role=a),options:u.roleArr,selected:e(l).user_default_role,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-800",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"},id:"user_default_role"},null,8,["modelValue","options","selected"]),s(n,{class:"mt-2",message:e(l).errors.user_default_role},null,8,["message"])]),o("div",N,[s(i,{class:"text-xl",for:"collect_user_location",value:"Collect User Location:"}),s(_,{id:"collect_user_location",modelValue:e(l).collect_user_location,"onUpdate:modelValue":t[2]||(t[2]=a=>e(l).collect_user_location=a)},null,8,["modelValue"]),s(n,{class:"mt-2",message:e(l).errors.collect_user_location},null,8,["message"])]),o("div",O,[s(i,{class:"text-xl",for:"user_default_status",value:"User Default Status:"}),s(e(c),{modelValue:e(l).user_default_status,"onUpdate:modelValue":t[3]||(t[3]=a=>e(l).user_default_status=a),options:u.userDefaultStatus,selected:e(l).user_default_status,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-800",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"},id:"user_default_status"},null,8,["modelValue","options","selected"]),s(n,{class:"mt-2",message:e(l).errors.user_default_status},null,8,["message"])]),o("div",Z,[o("div",R,[s(i,{class:"text-xl",for:"allow_social_login",value:"Active Social Login: "}),s(_,{id:"allow_social_login",modelValue:e(l).allow_social_login,"onUpdate:modelValue":t[4]||(t[4]=a=>e(l).allow_social_login=a)},null,8,["modelValue"]),s(n,{class:"mt-2",message:e(l).errors.allow_social_login},null,8,["message"])]),e(l).allow_social_login==!0?(d(),m("div",W,[s(i,{class:"text-xl block font-medium text-gray-700 mb-1",for:"social_login_fields",value:"Select Social Login Provider :"}),s(e(c),{modelValue:e(l).social_login_fields,"onUpdate:modelValue":t[5]||(t[5]=a=>e(l).social_login_fields=a),options:u.socialLoginFields,selected:e(l).social_login_fields,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-gray-900",mode:"tags",searchable:!0,"close-on-select":!1,id:"social_login_fields"},null,8,["modelValue","options","selected"]),s(n,{message:e(l).errors.social_login_fields,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])])):y("",!0),b(" "+U(e(l).map),1)]),o("div",E,[s(i,{class:"text-xl block font-medium text-gray-700 mb-1",for:"time_zone",value:"Select Time Zone :"}),s(e(c),{modelValue:e(l).time_zone,"onUpdate:modelValue":t[6]||(t[6]=a=>e(l).time_zone=a),options:e(g),selected:e(l).time_zone,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-800",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"},id:"time_zone"},null,8,["modelValue","options","selected"]),s(n,{message:e(l).errors.time_zone,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),o("div",G,[o("div",J,[s(i,{class:"text-xl",for:"languages",value:"Application Default Language:"}),o("a",{target:"_blank",href:`${e(B).site_url}/languages`,class:"text-blue-500 underline underline-offset-4 decoration-slate-500 animate-pulse"},"Go For Translation ",8,M)]),s(e(c),{modelValue:e(l).language,"onUpdate:modelValue":t[7]||(t[7]=a=>e(l).language=a),options:e(l).languageArray,selected:e(l).language,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-800",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"},id:"language"},null,8,["modelValue","options","selected"]),s(n,{class:"mt-2",message:e(l).errors.language},null,8,["message"])]),o("div",Y,[s(j,{class:"btn btn-primary w-32 h-12 sm:w-40 sm:h-14 sm:text-xl",disabled:e(l).processing},{default:k(()=>[b("Update")]),_:1},8,["disabled"]),s(T,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:k(()=>[e(l).recentlySuccessful?(d(),m("p",q," Saved. ")):y("",!0)]),_:1})])],32)]))}};export{se as default}; diff --git a/public/build/assets/SettingsForm-42deddc6.js b/public/build/assets/SettingsForm-a6914011.js similarity index 90% rename from public/build/assets/SettingsForm-42deddc6.js rename to public/build/assets/SettingsForm-a6914011.js index c36ce87..62d406a 100644 --- a/public/build/assets/SettingsForm-42deddc6.js +++ b/public/build/assets/SettingsForm-a6914011.js @@ -1 +1 @@ -import{o as _,h as g,b as o,n as b,J as S,v as U,a as s,u as e,q as V,w,S as L,e as T,d as C}from"./app-4f9e7dfc.js";import{a as n,_ as i}from"./InputLabel-5969cc22.js";import{_ as j}from"./PrimaryButton-89a514d8.js";import{_ as A}from"./Textarea-01085d86.js";import{_ as d}from"./TextInput-5a299594.js";import{u as B,a as $}from"./useCountries-7f78595f.js";import{d as q}from"./defaultFile-106f3fb6.js";import{s as m}from"./default.css_vue_type_style_index_0_src_true_lang-51e34c56.js";const f={__name:"Toggle",props:{modelValue:{type:Boolean}},emits:["update:modelValue"],setup(u,{emit:x}){const p=u;function y(){x("update:modelValue",!p.modelValue)}return(k,v)=>(_(),g("div",{class:b([u.modelValue==!0?"bg-green-600":"bg-gray-300","w-14 transition-all duration-500 h-8 flex items-center rounded-full p-1 cursor-pointer"]),onClick:y},[o("div",{class:b([{"translate-x-6":u.modelValue==!0},"w-6 h-6 transition-all duration-500 transform bg-white rounded-full shadow-md"])},null,2)],2))}},N=o("header",{class:"text-center sm:text-left"},[o("h2",{class:"text-lg font-medium text-gray-900 dark:text-gray-100"}," Site Settings "),o("p",{class:"text-sm text-gray-600 dark:text-gray-400"}," Change Your Web Site Details ")],-1),P={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},O={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},D={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},F={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},Z={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},E={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},J={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full flex justify-between items-center"},R={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},W={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full flex justify-between items-center"},G={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},M={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},Y={class:"flex justify-between items-center"},H={key:0},I={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},K={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},Q={class:"flex justify-between items-center"},X=["href"],ee={class:"flex items-center justify-center gap-4 py-5 sm:py-10 flex-auto col-span-full"},le={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},de={__name:"SettingsForm",props:{roleArr:Object,socialLoginFields:Object,userDefaultStatus:Object},setup(u){const{userCountry:x,timeZoneList:p,userTimeZone:y,countries:k,countryWithCode:v}=$(),c=S().props,r=c==null?void 0:c.global.options,h=B(c.languages),l=U({site_name:r.site_name,site_title:r.site_title,site_url:r.site_url,address:r.address,email:r.email,phone:r.phone,time_zone:r.time_zone,language:r.language,languageArray:h,user_default_role:r.user_default_role,any_one_can_register:r.any_one_can_register,pagination_limit:r.pagination_limit,organization_name:r.organization_name,user_default_status:r.user_default_status,collect_user_location:r.collect_user_location,allow_social_login:r.allow_social_login,social_login_fields:JSON.parse(r.social_login_fields||[""])});return(z,t)=>(_(),g("section",null,[N,o("form",{onSubmit:t[14]||(t[14]=T(a=>e(l).patch(z.route("options.bulk.update")),["prevent"])),class:"mt-6 grid auto-cols-auto sm:grid-cols-2 gap-5 justify-between"},[o("div",P,[s(i,{class:"text-xl",for:"site_name",value:"Site Name:"}),s(d,{id:"site_name",type:"text",class:"block w-full",modelValue:e(l).site_name,"onUpdate:modelValue":t[0]||(t[0]=a=>e(l).site_name=a),required:"",autofocus:"",autocomplete:"site_name"},null,8,["modelValue"]),s(n,{class:"mt-2",message:e(l).errors.site_name},null,8,["message"])]),o("div",O,[s(i,{class:"text-xl",for:"site_title",value:"Site Title:"}),s(d,{id:"site_title",type:"text",class:"block w-full",modelValue:e(l).site_title,"onUpdate:modelValue":t[1]||(t[1]=a=>e(l).site_title=a),required:"",autocomplete:"site_title"},null,8,["modelValue"]),s(n,{class:"mt-2",message:e(l).errors.site_title},null,8,["message"])]),o("div",D,[s(i,{class:"text-xl",for:"email",value:"Email:"}),s(d,{id:"email",type:"email",class:"block w-full",modelValue:e(l).email,"onUpdate:modelValue":t[2]||(t[2]=a=>e(l).email=a),required:"",autocomplete:"email"},null,8,["modelValue"]),s(n,{class:"mt-2",message:e(l).errors.email},null,8,["message"])]),o("div",F,[s(i,{class:"text-xl",for:"phone",value:"Phone:"}),s(d,{id:"phone",type:"text",class:"block w-full",modelValue:e(l).phone,"onUpdate:modelValue":t[3]||(t[3]=a=>e(l).phone=a),required:"",autocomplete:"phone"},null,8,["modelValue"]),s(n,{class:"mt-2",message:e(l).errors.phone},null,8,["message"])]),o("div",Z,[s(i,{class:"text-xl",for:"organization_name",value:"Organization Name: "}),s(d,{id:"organization_name",type:"text",class:"block w-full",modelValue:e(l).organization_name,"onUpdate:modelValue":t[4]||(t[4]=a=>e(l).organization_name=a),required:"",autocomplete:"organization_name"},null,8,["modelValue"]),s(n,{class:"mt-2",message:e(l).errors.organization_name},null,8,["message"])]),o("div",E,[s(i,{class:"text-xl",for:"address",value:"Address: "}),s(A,{id:"address",type:"text",class:"block w-full",modelValue:e(l).address,"onUpdate:modelValue":t[5]||(t[5]=a=>e(l).address=a),required:"",autocomplete:"address"},null,8,["modelValue"]),s(n,{class:"mt-2",message:e(l).errors.email},null,8,["message"])]),o("div",J,[s(i,{class:"text-xl",for:"any_one_can_register",value:"Any One Can Register? :"}),s(f,{id:"any_one_can_register",modelValue:e(l).any_one_can_register,"onUpdate:modelValue":t[6]||(t[6]=a=>e(l).any_one_can_register=a)},null,8,["modelValue"]),s(n,{class:"mt-2",message:e(l).errors.any_one_can_register},null,8,["message"])]),o("div",R,[s(i,{class:"text-xl",for:"user_default_role",value:"User Default Role:"}),s(e(m),{modelValue:e(l).user_default_role,"onUpdate:modelValue":t[7]||(t[7]=a=>e(l).user_default_role=a),options:u.roleArr,selected:e(l).user_default_role,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-700",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"},id:"user_default_role"},null,8,["modelValue","options","selected","classes"]),s(n,{class:"mt-2",message:e(l).errors.user_default_role},null,8,["message"])]),o("div",W,[s(i,{class:"text-xl",for:"collect_user_location",value:"Collect User Location:"}),s(f,{id:"collect_user_location",modelValue:e(l).collect_user_location,"onUpdate:modelValue":t[8]||(t[8]=a=>e(l).collect_user_location=a)},null,8,["modelValue"]),s(n,{class:"mt-2",message:e(l).errors.collect_user_location},null,8,["message"])]),o("div",G,[s(i,{class:"text-xl",for:"user_default_status",value:"User Default Status:"}),s(e(m),{modelValue:e(l).user_default_status,"onUpdate:modelValue":t[9]||(t[9]=a=>e(l).user_default_status=a),options:u.userDefaultStatus,selected:e(l).user_default_status,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-700",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"},id:"user_default_status"},null,8,["modelValue","options","selected","classes"]),s(n,{class:"mt-2",message:e(l).errors.user_default_status},null,8,["message"])]),o("div",M,[o("div",Y,[s(i,{class:"text-xl",for:"allow_social_login",value:"Active Social Login: "}),s(f,{id:"allow_social_login",modelValue:e(l).allow_social_login,"onUpdate:modelValue":t[10]||(t[10]=a=>e(l).allow_social_login=a)},null,8,["modelValue"]),s(n,{class:"mt-2",message:e(l).errors.allow_social_login},null,8,["message"])]),e(l).allow_social_login==!0?(_(),g("div",H,[s(i,{class:"text-xl block font-medium text-gray-700 mb-1",for:"social_login_fields",value:"Select Social Login Provider :"}),s(e(m),{modelValue:e(l).social_login_fields,"onUpdate:modelValue":t[11]||(t[11]=a=>e(l).social_login_fields=a),options:u.socialLoginFields,selected:e(l).social_login_fields,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-gray-900",mode:"tags",searchable:!0,"close-on-select":!1,id:"social_login_fields"},null,8,["modelValue","options","selected"]),s(n,{message:e(l).errors.social_login_fields,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])])):V("",!0)]),o("div",I,[s(i,{class:"text-xl block font-medium text-gray-700 mb-1",for:"time_zone",value:"Select Time Zone :"}),s(e(m),{modelValue:e(l).time_zone,"onUpdate:modelValue":t[12]||(t[12]=a=>e(l).time_zone=a),options:e(p),selected:e(l).time_zone,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-700",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"},id:"time_zone"},null,8,["modelValue","options","selected","classes"]),s(n,{message:e(l).errors.time_zone,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),o("div",K,[o("div",Q,[s(i,{class:"text-xl",for:"languages",value:"Application Default Language:"}),o("a",{target:"_blank",href:`${e(q).site_url}/languages`,class:"text-blue-500 underline underline-offset-4 decoration-slate-500 animate-pulse"},"Go For Translation ",8,X)]),s(e(m),{modelValue:e(l).language,"onUpdate:modelValue":t[13]||(t[13]=a=>e(l).language=a),options:e(l).languageArray,selected:e(l).language,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-700",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"},id:"language"},null,8,["modelValue","options","selected","classes"]),s(n,{class:"mt-2",message:e(l).errors.language},null,8,["message"])]),o("div",ee,[s(j,{class:"btn btn-primary w-32 h-12 sm:w-40 sm:h-14 sm:text-xl",disabled:e(l).processing},{default:w(()=>[C("Update")]),_:1},8,["disabled"]),s(L,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:w(()=>[e(l).recentlySuccessful?(_(),g("p",le," Saved. ")):V("",!0)]),_:1})])],32)]))}};export{de as default}; +import{o as _,f as g,b as o,n as b,J as U,v as S,a as s,u as e,g as V,w,T as L,e as T,d as C}from"./app-4dfa7f3b.js";import{a as n,_ as i}from"./InputLabel-fec82426.js";import{_ as j}from"./PrimaryButton-2b535c8b.js";import{_ as A}from"./Textarea-f6994d96.js";import{_ as d}from"./TextInput-fb418c8e.js";import{a as B,u as $}from"./useCountries-759a7ea1.js";import{d as N}from"./defaultFile-2b6c57d3.js";import{s as m}from"./default.css_vue_type_style_index_0_src_true_lang-5d8f90ba.js";const f={__name:"Toggle",props:{modelValue:{type:Boolean}},emits:["update:modelValue"],setup(u,{emit:x}){const p=u;function y(){x("update:modelValue",!p.modelValue)}return(k,v)=>(_(),g("div",{class:b([u.modelValue==!0?"bg-green-600":"bg-gray-300","w-14 transition-all duration-500 h-8 flex items-center rounded-full p-1 cursor-pointer"]),onClick:y},[o("div",{class:b([{"translate-x-6":u.modelValue==!0},"w-6 h-6 transition-all duration-500 transform bg-white rounded-full shadow-md"])},null,2)],2))}},P=o("header",{class:"text-center sm:text-left"},[o("h2",{class:"text-lg font-medium text-gray-900 dark:text-gray-100"}," Site Settings "),o("p",{class:"text-sm text-gray-600 dark:text-gray-400"}," Change Your Web Site Details ")],-1),q={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},O={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},D={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},F={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},Z={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},E={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},J={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full flex justify-between items-center"},R={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},W={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full flex justify-between items-center"},G={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},M={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},Y={class:"flex justify-between items-center"},H={key:0},I={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},K={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},Q={class:"flex justify-between items-center"},X=["href"],ee={class:"flex items-center justify-center gap-4 py-5 sm:py-10 flex-auto col-span-full"},le={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},de={__name:"SettingsForm",props:{roleArr:Object,socialLoginFields:Object,userDefaultStatus:Object},setup(u){const{userCountry:x,timeZoneList:p,userTimeZone:y,countries:k,countryWithCode:v}=$(),c=U().props,r=c==null?void 0:c.global.options,h=B(c.languages),l=S({site_name:r.site_name,site_title:r.site_title,site_url:r.site_url,address:r.address,email:r.email,phone:r.phone,time_zone:r.time_zone,language:r.language,languageArray:h,user_default_role:r.user_default_role,any_one_can_register:r.any_one_can_register,pagination_limit:r.pagination_limit,organization_name:r.organization_name,user_default_status:r.user_default_status,collect_user_location:r.collect_user_location,allow_social_login:r.allow_social_login,social_login_fields:JSON.parse(r.social_login_fields||[""])});return(z,t)=>(_(),g("section",null,[P,o("form",{onSubmit:t[14]||(t[14]=T(a=>e(l).patch(z.route("options.bulk.update")),["prevent"])),class:"mt-6 grid auto-cols-auto sm:grid-cols-2 gap-5 justify-between"},[o("div",q,[s(i,{class:"text-xl",for:"site_name",value:"Site Name:"}),s(d,{id:"site_name",type:"text",class:"block w-full",modelValue:e(l).site_name,"onUpdate:modelValue":t[0]||(t[0]=a=>e(l).site_name=a),required:"",autofocus:"",autocomplete:"site_name"},null,8,["modelValue"]),s(n,{class:"mt-2",message:e(l).errors.site_name},null,8,["message"])]),o("div",O,[s(i,{class:"text-xl",for:"site_title",value:"Site Title:"}),s(d,{id:"site_title",type:"text",class:"block w-full",modelValue:e(l).site_title,"onUpdate:modelValue":t[1]||(t[1]=a=>e(l).site_title=a),required:"",autocomplete:"site_title"},null,8,["modelValue"]),s(n,{class:"mt-2",message:e(l).errors.site_title},null,8,["message"])]),o("div",D,[s(i,{class:"text-xl",for:"email",value:"Email:"}),s(d,{id:"email",type:"email",class:"block w-full",modelValue:e(l).email,"onUpdate:modelValue":t[2]||(t[2]=a=>e(l).email=a),required:"",autocomplete:"email"},null,8,["modelValue"]),s(n,{class:"mt-2",message:e(l).errors.email},null,8,["message"])]),o("div",F,[s(i,{class:"text-xl",for:"phone",value:"Phone:"}),s(d,{id:"phone",type:"text",class:"block w-full",modelValue:e(l).phone,"onUpdate:modelValue":t[3]||(t[3]=a=>e(l).phone=a),required:"",autocomplete:"phone"},null,8,["modelValue"]),s(n,{class:"mt-2",message:e(l).errors.phone},null,8,["message"])]),o("div",Z,[s(i,{class:"text-xl",for:"organization_name",value:"Organization Name: "}),s(d,{id:"organization_name",type:"text",class:"block w-full",modelValue:e(l).organization_name,"onUpdate:modelValue":t[4]||(t[4]=a=>e(l).organization_name=a),required:"",autocomplete:"organization_name"},null,8,["modelValue"]),s(n,{class:"mt-2",message:e(l).errors.organization_name},null,8,["message"])]),o("div",E,[s(i,{class:"text-xl",for:"address",value:"Address: "}),s(A,{id:"address",type:"text",class:"block w-full",modelValue:e(l).address,"onUpdate:modelValue":t[5]||(t[5]=a=>e(l).address=a),required:"",autocomplete:"address"},null,8,["modelValue"]),s(n,{class:"mt-2",message:e(l).errors.email},null,8,["message"])]),o("div",J,[s(i,{class:"text-xl",for:"any_one_can_register",value:"Any One Can Register? :"}),s(f,{id:"any_one_can_register",modelValue:e(l).any_one_can_register,"onUpdate:modelValue":t[6]||(t[6]=a=>e(l).any_one_can_register=a)},null,8,["modelValue"]),s(n,{class:"mt-2",message:e(l).errors.any_one_can_register},null,8,["message"])]),o("div",R,[s(i,{class:"text-xl",for:"user_default_role",value:"User Default Role:"}),s(e(m),{modelValue:e(l).user_default_role,"onUpdate:modelValue":t[7]||(t[7]=a=>e(l).user_default_role=a),options:u.roleArr,selected:e(l).user_default_role,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-700",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"},id:"user_default_role"},null,8,["modelValue","options","selected","classes"]),s(n,{class:"mt-2",message:e(l).errors.user_default_role},null,8,["message"])]),o("div",W,[s(i,{class:"text-xl",for:"collect_user_location",value:"Collect User Location:"}),s(f,{id:"collect_user_location",modelValue:e(l).collect_user_location,"onUpdate:modelValue":t[8]||(t[8]=a=>e(l).collect_user_location=a)},null,8,["modelValue"]),s(n,{class:"mt-2",message:e(l).errors.collect_user_location},null,8,["message"])]),o("div",G,[s(i,{class:"text-xl",for:"user_default_status",value:"User Default Status:"}),s(e(m),{modelValue:e(l).user_default_status,"onUpdate:modelValue":t[9]||(t[9]=a=>e(l).user_default_status=a),options:u.userDefaultStatus,selected:e(l).user_default_status,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-700",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"},id:"user_default_status"},null,8,["modelValue","options","selected","classes"]),s(n,{class:"mt-2",message:e(l).errors.user_default_status},null,8,["message"])]),o("div",M,[o("div",Y,[s(i,{class:"text-xl",for:"allow_social_login",value:"Active Social Login: "}),s(f,{id:"allow_social_login",modelValue:e(l).allow_social_login,"onUpdate:modelValue":t[10]||(t[10]=a=>e(l).allow_social_login=a)},null,8,["modelValue"]),s(n,{class:"mt-2",message:e(l).errors.allow_social_login},null,8,["message"])]),e(l).allow_social_login==!0?(_(),g("div",H,[s(i,{class:"text-xl block font-medium text-gray-700 mb-1",for:"social_login_fields",value:"Select Social Login Provider :"}),s(e(m),{modelValue:e(l).social_login_fields,"onUpdate:modelValue":t[11]||(t[11]=a=>e(l).social_login_fields=a),options:u.socialLoginFields,selected:e(l).social_login_fields,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-gray-900",mode:"tags",searchable:!0,"close-on-select":!1,id:"social_login_fields"},null,8,["modelValue","options","selected"]),s(n,{message:e(l).errors.social_login_fields,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])])):V("",!0)]),o("div",I,[s(i,{class:"text-xl block font-medium text-gray-700 mb-1",for:"time_zone",value:"Select Time Zone :"}),s(e(m),{modelValue:e(l).time_zone,"onUpdate:modelValue":t[12]||(t[12]=a=>e(l).time_zone=a),options:e(p),selected:e(l).time_zone,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-700",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"},id:"time_zone"},null,8,["modelValue","options","selected","classes"]),s(n,{message:e(l).errors.time_zone,class:"mt-2 col-start-2 col-span-4"},null,8,["message"])]),o("div",K,[o("div",Q,[s(i,{class:"text-xl",for:"languages",value:"Application Default Language:"}),o("a",{target:"_blank",href:`${e(N).site_url}/languages`,class:"text-blue-500 underline underline-offset-4 decoration-slate-500 animate-pulse"},"Go For Translation ",8,X)]),s(e(m),{modelValue:e(l).language,"onUpdate:modelValue":t[13]||(t[13]=a=>e(l).language=a),options:e(l).languageArray,selected:e(l).language,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-700",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"},id:"language"},null,8,["modelValue","options","selected","classes"]),s(n,{class:"mt-2",message:e(l).errors.language},null,8,["message"])]),o("div",ee,[s(j,{class:"btn btn-primary w-32 h-12 sm:w-40 sm:h-14 sm:text-xl",disabled:e(l).processing},{default:w(()=>[C("Update")]),_:1},8,["disabled"]),s(L,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:w(()=>[e(l).recentlySuccessful?(_(),g("p",le," Saved. ")):V("",!0)]),_:1})])],32)]))}};export{de as default}; diff --git a/public/build/assets/Show-0366965b.js b/public/build/assets/Show-0366965b.js deleted file mode 100644 index 24dfd45..0000000 --- a/public/build/assets/Show-0366965b.js +++ /dev/null @@ -1 +0,0 @@ -import{H as x}from"./Hero-92ba1f8c.js";import{_ as f}from"./MasterLayout.vue_vue_type_script_setup_true_lang-71c3fc2e.js";import{r as b,o as r,g as a,a as d,w as i,b as p,F as h,d as t,t as o,H as w,e as c,h as n,m as _}from"./app-a07534fc.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./DarkMode-9ce27e49.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./use-root-containers-d6d195ba.js";import"./SocialLink-414cdd14.js";const k={class:"bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50"},v={class:"break-words leading-none font-normal md:font-semibold text-lg"},j={class:"text-blue-600 dark:text-blue-400"},H={key:0,class:"pt-5"},N={class:"mx-auto max-w-md px-6 text-center sm:max-w-3xl lg:max-w-full lg:px-8"},V={key:0,class:"mx-auto mt-5 max-w-prose text-xl text-gray-500"},B={class:"mx-auto max-w-full overflow-hidden sm:px-6 lg:px-8 sm:py-6 lg:py-8"},C={class:"sr-only"},L={key:0},F={class:"text-2xl my-5 lg:mb-8 text-center underline underline-offset-8 decoration-gray-500"},S={class:"text-blue-500"},D={key:0,class:"-mx-px grid grid-cols-2 border-l border-gray-200 sm:mx-0 md:grid-cols-3 lg:grid-cols-4 gap-5"},E={class:"aspect-w-1 aspect-h-1 overflow-hidden rounded-lg bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50 group-hover:opacity-75"},O=["src","alt"],T={class:"pt-10 pb-4 text-center"},$={class:"text-sm font-medium bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50"},q={key:1},z={class:"text-2xl my-5 lg:my-8 text-center underline underline-offset-8 decoration-gray-500"},A={class:"text-blue-500"},G={key:0,class:"-mx-px grid grid-cols-2 border-l border-gray-200 sm:mx-0 md:grid-cols-3 lg:grid-cols-4 gap-5"},I={class:"aspect-w-1 aspect-h-1 overflow-hidden rounded-lg bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50 group-hover:opacity-75"},J=["src","alt"],K={class:"pt-10 pb-4 text-center"},M={class:"text-sm font-medium bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50"},ot={__name:"Show",props:{category:Object},setup(e){return(l,P)=>{const g=b("Link");return r(),a(h,null,[d(p(w),null,{default:i(()=>[t("title",null,o(e.category.title),1)]),_:1}),d(f,null,{default:i(()=>{var u,m,y;return[t("div",k,[d(x,null,{default:i(()=>[t("span",v,[c(o(l.__("category_show.title_1"))+" ",1),t("span",j,o(e.category.title),1),c(" "+o(l.__("category_show.title_2")),1)])]),_:1}),((u=e.category.description)==null?void 0:u.length)>0?(r(),a("div",H,[t("div",N,[e.category.description.length>0?(r(),a("p",V,o(e.category.description),1)):n("",!0)])])):n("",!0),t("div",B,[t("h2",C,o(l.__("category.mobile_title")),1),((m=e.category.products)==null?void 0:m.length)>0?(r(),a("div",L,[t("h2",F,[c(o(l.__("category.product_title"))+" ",1),t("span",S,o(e.category.title),1)]),e.category.products.length>0?(r(),a("div",D,[(r(!0),a(h,null,_(e.category.products,s=>(r(),a("div",{key:s.id,class:"group border border-gray-200 p-4 sm:p-6"},[t("div",E,[d(g,{href:l.route("product.show",s.slug)},{default:i(()=>[t("img",{src:s.image,alt:s.title,class:"h-full w-full object-cover object-center"},null,8,O)]),_:2},1032,["href"])]),t("div",T,[t("h3",$,[d(g,{href:l.route("product.show",s.slug)},{default:i(()=>[c(o(s.title),1)]),_:2},1032,["href"])])])]))),128))])):n("",!0)])):n("",!0),((y=e.category.blogs)==null?void 0:y.length)>0?(r(),a("div",q,[t("h2",z,[c(o(l.__("category.blog_title"))+" ",1),t("span",A,o(e.category.title),1)]),e.category.blogs?(r(),a("div",G,[(r(!0),a(h,null,_(e.category.blogs,s=>(r(),a("div",{key:s.id,class:"group border border-gray-200 p-4 sm:p-6"},[t("div",I,[d(g,{href:l.route("blog.show",s.slug)},{default:i(()=>[t("img",{src:s.image,alt:s.title,class:"h-full w-full object-cover object-center"},null,8,J)]),_:2},1032,["href"])]),t("div",K,[t("h3",M,[d(g,{href:l.route("product.show",s.slug)},{default:i(()=>[c(o(s.title),1)]),_:2},1032,["href"])])])]))),128))])):n("",!0)])):n("",!0)])])]}),_:1})],64)}}};export{ot as default}; diff --git a/public/build/assets/Show-4cedc20b.js b/public/build/assets/Show-4125432d.js similarity index 71% rename from public/build/assets/Show-4cedc20b.js rename to public/build/assets/Show-4125432d.js index 3984a0d..a43458d 100644 --- a/public/build/assets/Show-4cedc20b.js +++ b/public/build/assets/Show-4125432d.js @@ -1 +1 @@ -import{_ as x}from"./AuthenticatedLayout-bb6d5f84.js";import{h as d,a as t,u as _,w as s,F as m,o as n,X as f,b as e,d as a,t as h,m as g,k as p}from"./app-4f9e7dfc.js";import"./Toast-3242a059.js";import"./toast-c1edb8fd.js";import"./ApplicationLogo-1c8f1468.js";import"./defaultFile-106f3fb6.js";import"./useCountries-7f78595f.js";import"./Dropdown-7d23bb7e.js";const u=e("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Show Role ",-1),w={class:"py-12 dark:text-white"},y={class:"max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6"},b={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},v={class:"sm:flex sm:items-center mb-5"},k=e("div",{class:"sm:flex-auto"},[e("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," View Role and permission "),e("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," View roles with permission. ")],-1),V={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-2"},N={class:"mt-8 flex flex-col"},R={class:"-my-2 -mx-4 overflow-x-auto sm:-mx-6 lg:-mx-8"},B={class:"inline-block min-w-full py-2 align-middle md:px-6 lg:px-8"},C={class:"relative overflow-hidden shadow ring-1 ring-black ring-opacity-5 md:rounded-lg"},L={class:"min-w-full table-auto divide-y divide-gray-300 p-3"},S=e("thead",{class:"bg-gray-50"},[e("tr",null,[e("th",{scope:"col",class:"py-3.5 pr-3 pl-3 text-left text-base font-bold text-gray-900"}," Role Name "),e("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Permissions ")])],-1),E={class:"divide-y divide-gray-200 bg-white"},F={class:"w-[20%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},j={class:"w-60% whitespace-normal p-3 text-md text-gray-500 grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 xl:grid-cols-4"},G={__name:"Show",props:{role:Object},setup(l){return(i,q)=>{const o=p("font-awesome-icon"),r=p("Link");return n(),d(m,null,[t(_(f),{title:"Role"}),t(x,null,{header:s(()=>[u]),default:s(()=>[e("div",w,[e("div",y,[e("div",b,[e("div",v,[k,e("div",V,[t(r,{href:i.route("role.edit",l.role.id),class:"btn btn-primary"},{default:s(()=>[t(o,{icon:"fa-solid fa-pen-to-square",class:"mr-1"}),a(" Edit ")]),_:1},8,["href"]),t(r,{href:i.route("role.create"),class:"btn btn-primary"},{default:s(()=>[t(o,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),a(" Create New ")]),_:1},8,["href"]),t(r,{href:i.route("role.index"),class:"btn btn-primary"},{default:s(()=>[t(o,{icon:"fa-solid fa-eye",class:"mr-1"}),a(" View All ")]),_:1},8,["href"])])]),e("div",N,[e("div",R,[e("div",B,[e("div",C,[e("table",L,[S,e("tbody",E,[e("tr",null,[e("td",F,h(l.role.name),1),e("td",j,[(n(!0),d(m,null,g(l.role.permissions,c=>(n(),d("p",{key:c.id,class:"mr-2"},[t(o,{icon:"fa-solid fa-user-shield",class:"text-blue-400"}),a(" "+h(c.name),1)]))),128))])])])])])])])])])])])]),_:1})],64)}}};export{G as default}; +import{_ as x}from"./AuthenticatedLayout-6151d358.js";import{f as d,a as t,u as f,w as s,F as m,o as n,X as _,b as e,d as a,t as p,q as g,r as h}from"./app-4dfa7f3b.js";import"./Toast-645f4c7b.js";import"./toast-ded66f04.js";import"./ApplicationLogo-77a8e36b.js";import"./defaultFile-2b6c57d3.js";import"./useCountries-759a7ea1.js";import"./Dropdown-a96f453e.js";const u=e("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Show Role ",-1),w={class:"py-12 dark:text-white"},y={class:"max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6"},b={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},v={class:"sm:flex sm:items-center mb-5"},k=e("div",{class:"sm:flex-auto"},[e("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," View Role and permission "),e("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," View roles with permission. ")],-1),V={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-2"},N={class:"mt-8 flex flex-col"},R={class:"-my-2 -mx-4 overflow-x-auto sm:-mx-6 lg:-mx-8"},B={class:"inline-block min-w-full py-2 align-middle md:px-6 lg:px-8"},C={class:"relative overflow-hidden shadow ring-1 ring-black ring-opacity-5 md:rounded-lg"},L={class:"min-w-full table-auto divide-y divide-gray-300 p-3"},S=e("thead",{class:"bg-gray-50"},[e("tr",null,[e("th",{scope:"col",class:"py-3.5 pr-3 pl-3 text-left text-base font-bold text-gray-900"}," Role Name "),e("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Permissions ")])],-1),q={class:"divide-y divide-gray-200 bg-white"},E={class:"w-[20%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},F={class:"w-60% whitespace-normal p-3 text-md text-gray-500 grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 xl:grid-cols-4"},G={__name:"Show",props:{role:Object},setup(l){return(i,j)=>{const o=h("font-awesome-icon"),r=h("Link");return n(),d(m,null,[t(f(_),{title:"Role"}),t(x,null,{header:s(()=>[u]),default:s(()=>[e("div",w,[e("div",y,[e("div",b,[e("div",v,[k,e("div",V,[t(r,{href:i.route("role.edit",l.role.id),class:"btn btn-primary"},{default:s(()=>[t(o,{icon:"fa-solid fa-pen-to-square",class:"mr-1"}),a(" Edit ")]),_:1},8,["href"]),t(r,{href:i.route("role.create"),class:"btn btn-primary"},{default:s(()=>[t(o,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),a(" Create New ")]),_:1},8,["href"]),t(r,{href:i.route("role.index"),class:"btn btn-primary"},{default:s(()=>[t(o,{icon:"fa-solid fa-eye",class:"mr-1"}),a(" View All ")]),_:1},8,["href"])])]),e("div",N,[e("div",R,[e("div",B,[e("div",C,[e("table",L,[S,e("tbody",q,[e("tr",null,[e("td",E,p(l.role.name),1),e("td",F,[(n(!0),d(m,null,g(l.role.permissions,c=>(n(),d("p",{key:c.id,class:"mr-2"},[t(o,{icon:"fa-solid fa-user-shield",class:"text-blue-400"}),a(" "+p(c.name),1)]))),128))])])])])])])])])])])])]),_:1})],64)}}};export{G as default}; diff --git a/public/build/assets/Show-60e5b2b8.js b/public/build/assets/Show-60e5b2b8.js deleted file mode 100644 index 5d18042..0000000 --- a/public/build/assets/Show-60e5b2b8.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as g}from"./AuthenticatedLayout-bb1b77c9.js";import{r as f,l as y,o as s,g as m,a,b as w,w as o,F as u,H as b,d as t,j as x,c as h,e as i,t as c,m as v}from"./app-a07534fc.js";import"./DarkMode-9ce27e49.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";const k=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Show Product ",-1),V={class:"py-12 dark:text-white"},B={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},C={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},D={class:"sm:flex sm:items-center mb-5"},N=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," View Product "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," View products with category. ")],-1),P={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-1 sm:space-x-2 space-y-2 sm:space-y-0"},S={class:"mt-8 flex flex-col"},z={class:"-my-2 -mx-4 overflow-x-auto sm:-mx-6 lg:-mx-8"},L={class:"inline-block min-w-full py-2 align-middle md:px-6 lg:px-8"},j={class:"relative overflow-hidden shadow ring-1 ring-black ring-opacity-5 md:rounded-lg"},E={class:"min-w-full table-auto divide-y divide-gray-300 p-3"},F=t("thead",{class:"bg-gray-50"},[t("tr",null,[t("th",{scope:"col",class:"py-3.5 pr-3 pl-3 text-left text-base font-bold text-gray-900"}," Product Title "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Description "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Image "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Status "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Category ")])],-1),H={class:"divide-y divide-gray-200 bg-white"},T={class:"w-[20%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},q={class:"w-[20%] text-gray-900"},A={class:"w-[20%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},I=["src"],O={class:"w-[20%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},$={class:"whitespace-normal p-3 text-md text-gray-500"},et={__name:"Show",props:{product:Object},setup(e){return(l,G)=>{const d=f("font-awesome-icon"),r=f("Link"),n=y("can");return s(),m(u,null,[a(w(b),{title:"Product"}),a(g,null,{header:o(()=>[k]),default:o(()=>[t("div",V,[t("div",B,[t("div",C,[t("div",D,[N,t("div",P,[x((s(),h(r,{href:l.route("admin.product.edit",e.product.id),class:"btn btn-primary"},{default:o(()=>[a(d,{icon:"fa-solid fa-pen-to-square",class:"mr-1"}),i(" Edit ")]),_:1},8,["href"])),[[n,"product.edit"]]),x((s(),h(r,{href:l.route("admin.product.create"),class:"btn btn-primary"},{default:o(()=>[a(d,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),i(" Create New ")]),_:1},8,["href"])),[[n,"product.create"]]),x((s(),h(r,{href:l.route("admin.product.index"),class:"btn btn-primary"},{default:o(()=>[a(d,{icon:"fa-solid fa-eye",class:"mr-1"}),i(" View All ")]),_:1},8,["href"])),[[n,"product.view"]])])]),t("div",S,[t("div",z,[t("div",L,[t("div",j,[t("table",E,[F,t("tbody",H,[t("tr",null,[t("td",T,c(e.product.title),1),t("td",q,c(e.product.description),1),t("td",A,[t("img",{src:e.product.image,alt:"",class:"w-16 h-16"},null,8,I)]),t("td",O,c(e.product.status),1),t("td",$,[(s(!0),m(u,null,v(e.product.categories,(p,_)=>(s(),m("div",{key:p.id,class:"mr-2"},[i(c(_+1+".")+" ",1),a(r,{class:"text-blue-500",href:l.route("admin.category.show",p.id)},{default:o(()=>[i(c(p.title),1)]),_:2},1032,["href"])]))),128))])])])])])])])])])])])]),_:1})],64)}}};export{et as default}; diff --git a/public/build/assets/Show-76450a39.js b/public/build/assets/Show-76450a39.js deleted file mode 100644 index a8a32da..0000000 --- a/public/build/assets/Show-76450a39.js +++ /dev/null @@ -1 +0,0 @@ -import{_}from"./AuthenticatedLayout-bb1b77c9.js";import{r as f,l as w,o as s,g as m,a,b as y,w as o,F as u,H as g,d as t,j as p,c as x,e as l,t as r,m as b}from"./app-a07534fc.js";import"./DarkMode-9ce27e49.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";const v=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Show User ",-1),k={class:"py-12 dark:text-white"},V={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},N={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},z={class:"sm:flex sm:items-center mb-5"},B=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," View User "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," View users with role. ")],-1),S={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-1 sm:space-x-2 space-y-2 sm:space-y-0"},U={class:"mt-8 flex flex-col"},C={class:"-my-2 -mx-4 overflow-x-auto sm:-mx-6 lg:-mx-8"},D={class:"inline-block min-w-full py-2 align-middle md:px-6 lg:px-8"},E={class:"relative overflow-hidden shadow ring-1 ring-black ring-opacity-5 md:rounded-lg"},L={class:"min-w-full table-auto divide-y divide-gray-300 p-3"},j=t("thead",{class:"bg-gray-50"},[t("tr",null,[t("th",{scope:"col",class:"py-3.5 pr-3 pl-3 text-left text-base font-bold text-gray-900"}," User Name "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Email "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Avatar "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Status "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Roles ")])],-1),A={class:"divide-y divide-gray-200 bg-white"},F={class:"w-[20%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},H={class:"w-[20%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},q={class:"w-[20%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},O=["src"],R={class:"w-[20%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},T={class:"whitespace-normal p-3 text-md text-gray-500"},tt={__name:"Show",props:{user:Object},setup(e){return(c,$)=>{const i=f("font-awesome-icon"),d=f("Link"),n=w("can");return s(),m(u,null,[a(y(g),{title:"User"}),a(_,null,{header:o(()=>[v]),default:o(()=>[t("div",k,[t("div",V,[t("div",N,[t("div",z,[B,t("div",S,[p((s(),x(d,{href:c.route("admin.user.edit",e.user.id),class:"btn btn-primary"},{default:o(()=>[a(i,{icon:"fa-solid fa-pen-to-square",class:"mr-1"}),l(" Edit ")]),_:1},8,["href"])),[[n,"user.edit"]]),p((s(),x(d,{href:c.route("admin.user.create"),class:"btn btn-primary"},{default:o(()=>[a(i,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),l(" Create New ")]),_:1},8,["href"])),[[n,"user.create"]]),p((s(),x(d,{href:c.route("admin.user.index"),class:"btn btn-primary"},{default:o(()=>[a(i,{icon:"fa-solid fa-eye",class:"mr-1"}),l(" View All ")]),_:1},8,["href"])),[[n,"user.view"]])])]),t("div",U,[t("div",C,[t("div",D,[t("div",E,[t("table",L,[j,t("tbody",A,[t("tr",null,[t("td",F,r(e.user.name),1),t("td",H,r(e.user.email),1),t("td",q,[t("img",{src:e.user.avatar,alt:"",class:"w-16 h-16"},null,8,O)]),t("td",R,r(e.user.status),1),t("td",T,[(s(!0),m(u,null,b(e.user.roles,h=>(s(),m("div",{key:h.id,class:"mr-2"},[a(i,{icon:"fa-solid fa-user-shield",class:"text-blue-400"}),l(" "+r(h.name),1)]))),128))])])])])])])])])])])])]),_:1})],64)}}};export{tt as default}; diff --git a/public/build/assets/Show-772d9526.js b/public/build/assets/Show-772d9526.js deleted file mode 100644 index 9680b18..0000000 --- a/public/build/assets/Show-772d9526.js +++ /dev/null @@ -1 +0,0 @@ -import{H as u}from"./Hero-92ba1f8c.js";import{_ as c}from"./MasterLayout.vue_vue_type_script_setup_true_lang-71c3fc2e.js";import d from"./FeatureProducts-a35935b7.js";import s from"./ProductsShow-82a655a4.js";import{S as i,o as l,g as m,a as t,w as r,d as a,t as o,b as n,H as f,e as p,F as _}from"./app-a07534fc.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./DarkMode-9ce27e49.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./use-root-containers-d6d195ba.js";import"./SocialLink-414cdd14.js";const g={class:"bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50"},C=i({__name:"Show",props:{product:Object,featuredProducts:Object},setup(e){return(x,b)=>(l(),m(_,null,[t(n(f),null,{default:r(()=>[a("title",null,o(e.product.title),1)]),_:1}),t(c,null,{default:r(()=>[a("div",g,[t(u,null,{default:r(()=>[p(o(e.product.title),1)]),_:1}),t(s,{product:e.product},null,8,["product"]),t(d,{featuredProducts:e.featuredProducts},null,8,["featuredProducts"])])]),_:1})],64))}});export{C as default}; diff --git a/public/build/assets/Show-8eec24cd.js b/public/build/assets/Show-8eec24cd.js deleted file mode 100644 index 3f39034..0000000 --- a/public/build/assets/Show-8eec24cd.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as g}from"./AuthenticatedLayout-bb1b77c9.js";import{r as h,l as x,o,g as y,a as s,b as f,w as a,F as _,H as w,d as t,j as n,c as d,e as m,t as p}from"./app-a07534fc.js";import"./DarkMode-9ce27e49.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";const u=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Show Category ",-1),b={class:"py-12 dark:text-white h-full min-h-screen"},v={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},k={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},C={class:"sm:flex sm:items-center mb-5"},V=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," View Category "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," View products with category. ")],-1),B={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-1 sm:space-x-2 space-y-2 sm:space-y-0"},D={class:"mt-8 flex flex-col"},N={class:"-my-2 -mx-4 overflow-x-auto sm:-mx-6 lg:-mx-8"},S={class:"inline-block min-w-full py-2 align-middle md:px-6 lg:px-8"},z={class:"relative overflow-hidden shadow ring-1 ring-black ring-opacity-5 md:rounded-lg"},j={class:"min-w-full table-auto divide-y divide-gray-300 p-3"},E=t("thead",{class:"bg-gray-50"},[t("tr",null,[t("th",{scope:"col",class:"py-3.5 pr-3 pl-3 text-left text-base font-bold text-gray-900"}," Category Title "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Description "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Image "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Status ")])],-1),F={class:"divide-y divide-gray-200 bg-white"},H={class:"w-[20%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},L={class:"w-[20%] text-gray-900"},T={class:"w-[20%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},q=["src"],A={class:"w-[20%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},X={__name:"Show",props:{category:Object},setup(e){return(i,I)=>{const c=h("font-awesome-icon"),l=h("Link"),r=x("can");return o(),y(_,null,[s(f(w),{title:"Category"}),s(g,null,{header:a(()=>[u]),default:a(()=>[t("div",b,[t("div",v,[t("div",k,[t("div",C,[V,t("div",B,[n((o(),d(l,{href:i.route("admin.category.edit",e.category.id),class:"btn btn-primary"},{default:a(()=>[s(c,{icon:"fa-solid fa-pen-to-square",class:"mr-1"}),m(" Edit ")]),_:1},8,["href"])),[[r,"category.edit"]]),n((o(),d(l,{href:i.route("admin.category.create"),class:"btn btn-primary"},{default:a(()=>[s(c,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),m(" Create New ")]),_:1},8,["href"])),[[r,"category.create"]]),n((o(),d(l,{href:i.route("admin.category.index"),class:"btn btn-primary"},{default:a(()=>[s(c,{icon:"fa-solid fa-eye",class:"mr-1"}),m(" View All ")]),_:1},8,["href"])),[[r,"category.view"]])])]),t("div",D,[t("div",N,[t("div",S,[t("div",z,[t("table",j,[E,t("tbody",F,[t("tr",null,[t("td",H,p(e.category.title),1),t("td",L,p(e.category.description),1),t("td",T,[t("img",{src:e.category.image,alt:"",class:"w-16 h-16"},null,8,q)]),t("td",A,p(e.category.status),1)])])])])])])])])])])]),_:1})],64)}}};export{X as default}; diff --git a/public/build/assets/Show-a750eabb.js b/public/build/assets/Show-a750eabb.js deleted file mode 100644 index 6ceddbc..0000000 --- a/public/build/assets/Show-a750eabb.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as d}from"./AuthenticatedLayout-bb1b77c9.js";import{r as c,o as r,g as m,a as o,b as x,w as a,F as p,H as h,d as t,e as _,t as s}from"./app-a07534fc.js";import"./DarkMode-9ce27e49.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";const f=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Show Contact ",-1),g={class:"py-12 dark:text-white h-full min-h-screen"},y={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},w={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},b={class:"sm:flex sm:items-center mb-5"},u=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," View Contact "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," View products with contact. ")],-1),v={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-1 sm:space-x-2 space-y-2 sm:space-y-0"},k={class:"mt-8 flex flex-col"},V={class:"-my-2 -mx-4 overflow-x-auto sm:-mx-6 lg:-mx-8"},C={class:"inline-block min-w-full py-2 align-middle md:px-6 lg:px-8"},N={class:"relative overflow-hidden shadow ring-1 ring-black ring-opacity-5 md:rounded-lg"},S={class:"min-w-full table-auto divide-y divide-gray-300 p-3"},j=t("thead",{class:"bg-gray-50"},[t("tr",null,[t("th",{scope:"col",class:"py-3.5 pr-3 pl-3 text-left text-base font-bold text-gray-900"}," Name "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Email "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Phone "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Subject "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Message ")])],-1),B={class:"divide-y divide-gray-200 bg-white"},E={class:"w-[15%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},F={class:"w-[15%] text-left text-gray-900"},H={class:"w-[15%] text-left p-4 text-gray-900"},L={class:"w-[15%] text-left p-4 text-gray-900"},z={class:"w-[40%] text-gray-900"},Q={__name:"Show",props:{contact:Object},setup(e){return(l,A)=>{const i=c("font-awesome-icon"),n=c("Link");return r(),m(p,null,[o(x(h),{title:"Contact"}),o(d,null,{header:a(()=>[f]),default:a(()=>[t("div",g,[t("div",y,[t("div",w,[t("div",b,[u,t("div",v,[o(n,{href:l.route("admin.contact.index"),class:"btn btn-primary"},{default:a(()=>[o(i,{icon:"fa-solid fa-eye",class:"mr-1"}),_(" View All ")]),_:1},8,["href"])])]),t("div",k,[t("div",V,[t("div",C,[t("div",N,[t("table",S,[j,t("tbody",B,[t("tr",null,[t("td",E,s(e.contact.name),1),t("td",F,s(e.contact.email),1),t("td",H,s(e.contact.phone),1),t("td",L,s(e.contact.subject),1),t("td",z,s(e.contact.message),1)])])])])])])])])])])]),_:1})],64)}}};export{Q as default}; diff --git a/public/build/assets/Show-a9827fa1.js b/public/build/assets/Show-a9827fa1.js deleted file mode 100644 index 285819c..0000000 --- a/public/build/assets/Show-a9827fa1.js +++ /dev/null @@ -1 +0,0 @@ -import{H as l}from"./Hero-92ba1f8c.js";import{_ as i}from"./MasterLayout.vue_vue_type_script_setup_true_lang-71c3fc2e.js";import s from"./BlogShow-1bb4cfa9.js";import{S as m,o as n,g as c,a as t,w as a,d as o,t as r,b as d,H as g,e as p,F as u}from"./app-a07534fc.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./DarkMode-9ce27e49.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./use-root-containers-d6d195ba.js";import"./SocialLink-414cdd14.js";const f={class:"bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-50"},F=m({__name:"Show",props:{blog:Object},setup(e){return(_,b)=>(n(),c(u,null,[t(d(g),null,{default:a(()=>[o("title",null,r(e.blog.title),1)]),_:1}),t(i,null,{default:a(()=>[o("div",f,[t(l,null,{default:a(()=>[p(r(e.blog.title),1)]),_:1}),t(s,{blog:e.blog},null,8,["blog"])])]),_:1})],64))}});export{F as default}; diff --git a/public/build/assets/Show-c350d33f.js b/public/build/assets/Show-c350d33f.js deleted file mode 100644 index 40c0c26..0000000 --- a/public/build/assets/Show-c350d33f.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as n}from"./AuthenticatedLayout-bb1b77c9.js";import{r as d,o as p,g as m,a as e,b as f,w as a,F as h,H as x,d as t,e as c,t as r}from"./app-a07534fc.js";import"./DarkMode-9ce27e49.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";const u=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Show Special Feature ",-1),_={class:"py-12 dark:text-white h-full min-h-screen"},g={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},w={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},y={class:"sm:flex sm:items-center mb-5"},b=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," View Special Feature "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," View products with special feature. ")],-1),v={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-1 sm:space-x-2 space-y-2 sm:space-y-0"},k={class:"mt-8 flex flex-col"},F={class:"-my-2 -mx-4 overflow-x-auto sm:-mx-6 lg:-mx-8"},S={class:"inline-block min-w-full py-2 align-middle md:px-6 lg:px-8"},V={class:"relative overflow-hidden shadow ring-1 ring-black ring-opacity-5 md:rounded-lg"},N={class:"min-w-full table-auto divide-y divide-gray-300 p-3"},z=t("thead",{class:"bg-gray-50"},[t("tr",null,[t("th",{scope:"col",class:"py-3.5 pr-3 pl-3 text-left text-base font-bold text-gray-900"}," Special Feature Title "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Description "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Image "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Status ")])],-1),B={class:"divide-y divide-gray-200 bg-white"},C={class:"w-[20%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},D={class:"w-[20%] text-gray-900"},E={class:"w-[20%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},H=["src"],L={class:"w-[20%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},Q={__name:"Show",props:{specialFeature:Object},setup(s){return(i,T)=>{const o=d("font-awesome-icon"),l=d("Link");return p(),m(h,null,[e(f(x),{title:"Special Feature"}),e(n,null,{header:a(()=>[u]),default:a(()=>[t("div",_,[t("div",g,[t("div",w,[t("div",y,[b,t("div",v,[e(l,{href:i.route("admin.special-feature.edit",s.specialFeature.id),class:"btn btn-primary"},{default:a(()=>[e(o,{icon:"fa-solid fa-pen-to-square",class:"mr-1"}),c(" Edit ")]),_:1},8,["href"]),e(l,{href:i.route("admin.special-feature.create"),class:"btn btn-primary"},{default:a(()=>[e(o,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),c(" Create New ")]),_:1},8,["href"]),e(l,{href:i.route("admin.special-feature.index"),class:"btn btn-primary"},{default:a(()=>[e(o,{icon:"fa-solid fa-eye",class:"mr-1"}),c(" View All ")]),_:1},8,["href"])])]),t("div",k,[t("div",F,[t("div",S,[t("div",V,[t("table",N,[z,t("tbody",B,[t("tr",null,[t("td",C,r(s.specialFeature.title),1),t("td",D,r(s.specialFeature.description),1),t("td",E,[t("img",{src:s.specialFeature.image,alt:"",class:"w-16 h-16"},null,8,H)]),t("td",L,r(s.specialFeature.status),1)])])])])])])])])])])]),_:1})],64)}}};export{Q as default}; diff --git a/public/build/assets/Show-da528fa5.js b/public/build/assets/Show-da528fa5.js deleted file mode 100644 index 70a0209..0000000 --- a/public/build/assets/Show-da528fa5.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as g}from"./AuthenticatedLayout-bb1b77c9.js";import{r as _,l as u,o as t,g as n,a as s,b as w,w as o,F as f,H as y,d as e,j as m,c as p,e as i,t as x,m as b}from"./app-a07534fc.js";import"./DarkMode-9ce27e49.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";const v=e("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Show Role ",-1),k={class:"py-12 dark:text-white"},V={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},N={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},B={class:"sm:flex sm:items-center mb-5"},R=e("div",{class:"sm:flex-auto"},[e("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," View Role and permission "),e("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," View roles with permission. ")],-1),C={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-2"},D={class:"mt-8 flex flex-col"},L={class:"-my-2 -mx-4 overflow-x-auto sm:-mx-6 lg:-mx-8"},S={class:"inline-block min-w-full py-2 align-middle md:px-6 lg:px-8"},j={class:"relative overflow-hidden shadow ring-1 ring-black ring-opacity-5 md:rounded-lg"},E={class:"min-w-full table-auto divide-y divide-gray-300 p-3"},F=e("thead",{class:"bg-gray-50"},[e("tr",null,[e("th",{scope:"col",class:"py-3.5 pr-3 pl-3 text-left text-base font-bold text-gray-900"}," Role Name "),e("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Permissions ")])],-1),H={class:"divide-y divide-gray-200 bg-white"},q={class:"w-[20%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},z={class:"w-60% whitespace-normal p-3 text-md text-gray-500 grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 xl:grid-cols-4"},W={__name:"Show",props:{role:Object},setup(l){return(r,A)=>{const a=_("font-awesome-icon"),d=_("Link"),c=u("can");return t(),n(f,null,[s(w(y),{title:"Role"}),s(g,null,{header:o(()=>[v]),default:o(()=>[e("div",k,[e("div",V,[e("div",N,[e("div",B,[R,e("div",C,[m((t(),p(d,{href:r.route("admin.role.edit",l.role.id),class:"btn btn-primary"},{default:o(()=>[s(a,{icon:"fa-solid fa-pen-to-square",class:"mr-1"}),i(" Edit ")]),_:1},8,["href"])),[[c,"role.edit"]]),m((t(),p(d,{href:r.route("admin.role.create"),class:"btn btn-primary"},{default:o(()=>[s(a,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),i(" Create New ")]),_:1},8,["href"])),[[c,"role.create"]]),m((t(),p(d,{href:r.route("admin.role.index"),class:"btn btn-primary"},{default:o(()=>[s(a,{icon:"fa-solid fa-eye",class:"mr-1"}),i(" View All ")]),_:1},8,["href"])),[[c,"role.view"]])])]),e("div",D,[e("div",L,[e("div",S,[e("div",j,[e("table",E,[F,e("tbody",H,[e("tr",null,[e("td",q,x(l.role.name),1),e("td",z,[(t(!0),n(f,null,b(l.role.permissions,h=>(t(),n("p",{key:h.id,class:"mr-2"},[s(a,{icon:"fa-solid fa-user-shield",class:"text-blue-400"}),i(" "+x(h.name),1)]))),128))])])])])])])])])])])])]),_:1})],64)}}};export{W as default}; diff --git a/public/build/assets/Show-7b08f33c.js b/public/build/assets/Show-fc868b7d.js similarity index 78% rename from public/build/assets/Show-7b08f33c.js rename to public/build/assets/Show-fc868b7d.js index 9619dc9..46e3bff 100644 --- a/public/build/assets/Show-7b08f33c.js +++ b/public/build/assets/Show-fc868b7d.js @@ -1 +1 @@ -import{_ as h}from"./AuthenticatedLayout-bb6d5f84.js";import{h as d,a as e,u as f,w as a,F as x,o as n,X as u,b as t,d as l,t as i,m as _,k as p}from"./app-4f9e7dfc.js";import"./Toast-3242a059.js";import"./toast-c1edb8fd.js";import"./ApplicationLogo-1c8f1468.js";import"./defaultFile-106f3fb6.js";import"./useCountries-7f78595f.js";import"./Dropdown-7d23bb7e.js";const y=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Show User ",-1),w={class:"py-12 dark:text-white"},g={class:"max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6"},b={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},v={class:"sm:flex sm:items-center mb-5"},k=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," View User "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," View users with role. ")],-1),V={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-1 sm:space-x-2 space-y-2 sm:space-y-0"},N={class:"mt-8 flex flex-col"},z={class:"-my-2 -mx-4 overflow-x-auto sm:-mx-6 lg:-mx-8"},S={class:"inline-block min-w-full py-2 align-middle md:px-6 lg:px-8"},U={class:"relative overflow-hidden shadow ring-1 ring-black ring-opacity-5 md:rounded-lg"},B={class:"min-w-full table-auto divide-y divide-gray-300 p-3"},C=t("thead",{class:"bg-gray-50"},[t("tr",null,[t("th",{scope:"col",class:"py-3.5 pr-3 pl-3 text-left text-base font-bold text-gray-900"}," User Name "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Email "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Avatar "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Status "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Roles ")])],-1),E={class:"divide-y divide-gray-200 bg-white"},L={class:"w-[20%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},A={class:"w-[20%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},F={class:"w-[20%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},j=["src"],q={class:"w-[20%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},D={class:"whitespace-normal p-3 text-md text-gray-500"},K={__name:"Show",props:{user:Object},setup(s){return(r,O)=>{const o=p("font-awesome-icon"),c=p("Link");return n(),d(x,null,[e(f(u),{title:"User"}),e(h,null,{header:a(()=>[y]),default:a(()=>[t("div",w,[t("div",g,[t("div",b,[t("div",v,[k,t("div",V,[e(c,{href:r.route("user.edit",s.user.id),class:"btn btn-primary"},{default:a(()=>[e(o,{icon:"fa-solid fa-pen-to-square",class:"mr-1"}),l(" Edit ")]),_:1},8,["href"]),e(c,{href:r.route("user.create"),class:"btn btn-primary"},{default:a(()=>[e(o,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),l(" Create New ")]),_:1},8,["href"]),e(c,{href:r.route("user.index"),class:"btn btn-primary"},{default:a(()=>[e(o,{icon:"fa-solid fa-eye",class:"mr-1"}),l(" View All ")]),_:1},8,["href"])])]),t("div",N,[t("div",z,[t("div",S,[t("div",U,[t("table",B,[C,t("tbody",E,[t("tr",null,[t("td",L,i(s.user.name),1),t("td",A,i(s.user.email),1),t("td",F,[t("img",{src:s.user.avatar,alt:"",class:"w-16 h-16"},null,8,j)]),t("td",q,i(s.user.status),1),t("td",D,[(n(!0),d(x,null,_(s.user.roles,m=>(n(),d("div",{key:m.id,class:"mr-2"},[e(o,{icon:"fa-solid fa-user-shield",class:"text-blue-400"}),l(" "+i(m.name),1)]))),128))])])])])])])])])])])])]),_:1})],64)}}};export{K as default}; +import{_ as h}from"./AuthenticatedLayout-6151d358.js";import{f as d,a as e,u as f,w as a,F as x,o as n,X as u,b as t,d as l,t as i,q as _,r as p}from"./app-4dfa7f3b.js";import"./Toast-645f4c7b.js";import"./toast-ded66f04.js";import"./ApplicationLogo-77a8e36b.js";import"./defaultFile-2b6c57d3.js";import"./useCountries-759a7ea1.js";import"./Dropdown-a96f453e.js";const y=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Show User ",-1),w={class:"py-12 dark:text-white"},g={class:"max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6"},b={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},v={class:"sm:flex sm:items-center mb-5"},k=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," View User "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," View users with role. ")],-1),V={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-1 sm:space-x-2 space-y-2 sm:space-y-0"},N={class:"mt-8 flex flex-col"},z={class:"-my-2 -mx-4 overflow-x-auto sm:-mx-6 lg:-mx-8"},S={class:"inline-block min-w-full py-2 align-middle md:px-6 lg:px-8"},U={class:"relative overflow-hidden shadow ring-1 ring-black ring-opacity-5 md:rounded-lg"},B={class:"min-w-full table-auto divide-y divide-gray-300 p-3"},C=t("thead",{class:"bg-gray-50"},[t("tr",null,[t("th",{scope:"col",class:"py-3.5 pr-3 pl-3 text-left text-base font-bold text-gray-900"}," User Name "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Email "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Avatar "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Status "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Roles ")])],-1),E={class:"divide-y divide-gray-200 bg-white"},L={class:"w-[20%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},q={class:"w-[20%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},A={class:"w-[20%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},F=["src"],j={class:"w-[20%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},D={class:"whitespace-normal p-3 text-md text-gray-500"},K={__name:"Show",props:{user:Object},setup(s){return(r,O)=>{const o=p("font-awesome-icon"),c=p("Link");return n(),d(x,null,[e(f(u),{title:"User"}),e(h,null,{header:a(()=>[y]),default:a(()=>[t("div",w,[t("div",g,[t("div",b,[t("div",v,[k,t("div",V,[e(c,{href:r.route("user.edit",s.user.id),class:"btn btn-primary"},{default:a(()=>[e(o,{icon:"fa-solid fa-pen-to-square",class:"mr-1"}),l(" Edit ")]),_:1},8,["href"]),e(c,{href:r.route("user.create"),class:"btn btn-primary"},{default:a(()=>[e(o,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),l(" Create New ")]),_:1},8,["href"]),e(c,{href:r.route("user.index"),class:"btn btn-primary"},{default:a(()=>[e(o,{icon:"fa-solid fa-eye",class:"mr-1"}),l(" View All ")]),_:1},8,["href"])])]),t("div",N,[t("div",z,[t("div",S,[t("div",U,[t("table",B,[C,t("tbody",E,[t("tr",null,[t("td",L,i(s.user.name),1),t("td",q,i(s.user.email),1),t("td",A,[t("img",{src:s.user.avatar,alt:"",class:"w-16 h-16"},null,8,F)]),t("td",j,i(s.user.status),1),t("td",D,[(n(!0),d(x,null,_(s.user.roles,m=>(n(),d("div",{key:m.id,class:"mr-2"},[e(o,{icon:"fa-solid fa-user-shield",class:"text-blue-400"}),l(" "+i(m.name),1)]))),128))])])])])])])])])])])])]),_:1})],64)}}};export{K as default}; diff --git a/public/build/assets/Show-ff335342.js b/public/build/assets/Show-ff335342.js deleted file mode 100644 index 5d65e1a..0000000 --- a/public/build/assets/Show-ff335342.js +++ /dev/null @@ -1 +0,0 @@ -import{_}from"./AuthenticatedLayout-bb1b77c9.js";import{r as g,l as w,o as s,g as p,a as o,b as y,w as a,F as f,H as u,d as t,j as h,c as x,e as l,t as i,m as v}from"./app-a07534fc.js";import"./DarkMode-9ce27e49.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";const k=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Show Blog ",-1),B={class:"py-12 dark:text-white h-full min-h-screen"},V={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},C={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 dark:text-white shadow sm:rounded-lg"},D={class:"sm:flex sm:items-center mb-5"},N=t("div",{class:"sm:flex-auto"},[t("h1",{class:"text-xl font-semibold text-gray-900 dark:text-white"}," View Blog "),t("p",{class:"mt-2 text-sm text-gray-700 dark:text-white"}," View products with blog. ")],-1),S={class:"mt-4 sm:mt-0 sm:ml-16 sm:flex-none space-x-1 sm:space-x-2 space-y-2 sm:space-y-0"},z={class:"mt-8 flex flex-col"},L={class:"-my-2 -mx-4 overflow-x-auto sm:-mx-6 lg:-mx-8"},j={class:"inline-block min-w-full py-2 align-middle md:px-6 lg:px-8"},E={class:"relative overflow-hidden shadow ring-1 ring-black ring-opacity-5 md:rounded-lg"},F={class:"min-w-full table-auto divide-y divide-gray-300 p-3"},H=t("thead",{class:"bg-gray-50"},[t("tr",null,[t("th",{scope:"col",class:"py-3.5 pr-3 pl-3 text-left text-base font-bold text-gray-900"}," Blog Title "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Description "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Image "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Status "),t("th",{scope:"col",class:"px-3 py-3.5 text-left text-base font-bold text-gray-900"}," Category ")])],-1),T={class:"divide-y divide-gray-200 bg-white"},q={class:"w-[20%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},A={class:"w-[20%] text-gray-900"},I={class:"w-[20%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},O=["src"],$={class:"w-[20%] whitespace-nowrap text-left p-4 font-semibold text-gray-900 capitalize"},G={class:"whitespace-normal p-3 text-md text-gray-500"},et={__name:"Show",props:{blog:Object},setup(e){return(c,J)=>{const d=g("font-awesome-icon"),r=g("Link"),n=w("can");return s(),p(f,null,[o(y(u),{title:"Blog"}),o(_,null,{header:a(()=>[k]),default:a(()=>[t("div",B,[t("div",V,[t("div",C,[t("div",D,[N,t("div",S,[h((s(),x(r,{href:c.route("admin.blog.edit",e.blog.id),class:"btn btn-primary"},{default:a(()=>[o(d,{icon:"fa-solid fa-pen-to-square",class:"mr-1"}),l(" Edit ")]),_:1},8,["href"])),[[n,"blog.edit"]]),h((s(),x(r,{href:c.route("admin.blog.create"),class:"btn btn-primary"},{default:a(()=>[o(d,{icon:"fa-solid fa-circle-plus",class:"mr-1"}),l(" Create New ")]),_:1},8,["href"])),[[n,"blog.create"]]),h((s(),x(r,{href:c.route("admin.blog.index"),class:"btn btn-primary"},{default:a(()=>[o(d,{icon:"fa-solid fa-eye",class:"mr-1"}),l(" View All ")]),_:1},8,["href"])),[[n,"blog.view"]])])]),t("div",z,[t("div",L,[t("div",j,[t("div",E,[t("table",F,[H,t("tbody",T,[t("tr",null,[t("td",q,i(e.blog.title),1),t("td",A,i(e.blog.description),1),t("td",I,[t("img",{src:e.blog.image,alt:"",class:"w-16 h-16"},null,8,O)]),t("td",$,i(e.blog.status),1),t("td",G,[(s(!0),p(f,null,v(e.blog.categories,(m,b)=>(s(),p("div",{key:m.id,class:"mr-2"},[l(i(b+1+".")+" ",1),o(r,{class:"text-blue-500",href:c.route("admin.category.show",m.id)},{default:a(()=>[l(i(m.title),1)]),_:2},1032,["href"])]))),128))])])])])])])])])])])])]),_:1})],64)}}};export{et as default}; diff --git a/public/build/assets/SocialLink-414cdd14.js b/public/build/assets/SocialLink-414cdd14.js deleted file mode 100644 index cf54173..0000000 --- a/public/build/assets/SocialLink-414cdd14.js +++ /dev/null @@ -1 +0,0 @@ -import{S as a,U as e,A as d,o as t,g as c,F as v,m as p,d as h,t as f,c as g,G as m,b as _}from"./app-a07534fc.js";const C=[{name:"Facebook",href:"#",icon:a({render:()=>e("svg",{fill:"currentColor",viewBox:"0 0 24 24"},[e("path",{"fill-rule":"evenodd",d:"M22 12c0-5.523-4.477-10-10-10S2 6.477 2 12c0 4.991 3.657 9.128 8.438 9.878v-6.987h-2.54V12h2.54V9.797c0-2.506 1.492-3.89 3.777-3.89 1.094 0 2.238.195 2.238.195v2.46h-1.26c-1.243 0-1.63.771-1.63 1.562V12h2.773l-.443 2.89h-2.33v6.988C18.343 21.128 22 16.991 22 12z","clip-rule":"evenodd"})])})},{name:"Instagram",href:"#",icon:a({render:()=>e("svg",{fill:"currentColor",viewBox:"0 0 24 24"},[e("path",{"fill-rule":"evenodd",d:"M12.315 2c2.43 0 2.784.013 3.808.06 1.064.049 1.791.218 2.427.465a4.902 4.902 0 011.772 1.153 4.902 4.902 0 011.153 1.772c.247.636.416 1.363.465 2.427.048 1.067.06 1.407.06 4.123v.08c0 2.643-.012 2.987-.06 4.043-.049 1.064-.218 1.791-.465 2.427a4.902 4.902 0 01-1.153 1.772 4.902 4.902 0 01-1.772 1.153c-.636.247-1.363.416-2.427.465-1.067.048-1.407.06-4.123.06h-.08c-2.643 0-2.987-.012-4.043-.06-1.064-.049-1.791-.218-2.427-.465a4.902 4.902 0 01-1.772-1.153 4.902 4.902 0 01-1.153-1.772c-.247-.636-.416-1.363-.465-2.427-.047-1.024-.06-1.379-.06-3.808v-.63c0-2.43.013-2.784.06-3.808.049-1.064.218-1.791.465-2.427a4.902 4.902 0 011.153-1.772A4.902 4.902 0 015.45 2.525c.636-.247 1.363-.416 2.427-.465C8.901 2.013 9.256 2 11.685 2h.63zm-.081 1.802h-.468c-2.456 0-2.784.011-3.807.058-.975.045-1.504.207-1.857.344-.467.182-.8.398-1.15.748-.35.35-.566.683-.748 1.15-.137.353-.3.882-.344 1.857-.047 1.023-.058 1.351-.058 3.807v.468c0 2.456.011 2.784.058 3.807.045.975.207 1.504.344 1.857.182.466.399.8.748 1.15.35.35.683.566 1.15.748.353.137.882.3 1.857.344 1.054.048 1.37.058 4.041.058h.08c2.597 0 2.917-.01 3.96-.058.976-.045 1.505-.207 1.858-.344.466-.182.8-.398 1.15-.748.35-.35.566-.683.748-1.15.137-.353.3-.882.344-1.857.048-1.055.058-1.37.058-4.041v-.08c0-2.597-.01-2.917-.058-3.96-.045-.976-.207-1.505-.344-1.858a3.097 3.097 0 00-.748-1.15 3.098 3.098 0 00-1.15-.748c-.353-.137-.882-.3-1.857-.344-1.023-.047-1.351-.058-3.807-.058zM12 6.865a5.135 5.135 0 110 10.27 5.135 5.135 0 010-10.27zm0 1.802a3.333 3.333 0 100 6.666 3.333 3.333 0 000-6.666zm5.338-3.205a1.2 1.2 0 110 2.4 1.2 1.2 0 010-2.4z","clip-rule":"evenodd"})])})},{name:"Twitter",href:"#",icon:a({render:()=>e("svg",{fill:"currentColor",viewBox:"0 0 24 24"},[e("path",{d:"M8.29 20.251c7.547 0 11.675-6.253 11.675-11.675 0-.178 0-.355-.012-.53A8.348 8.348 0 0022 5.92a8.19 8.19 0 01-2.357.646 4.118 4.118 0 001.804-2.27 8.224 8.224 0 01-2.605.996 4.107 4.107 0 00-6.993 3.743 11.65 11.65 0 01-8.457-4.287 4.106 4.106 0 001.27 5.477A4.072 4.072 0 012.8 9.713v.052a4.105 4.105 0 003.292 4.022 4.095 4.095 0 01-1.853.07 4.108 4.108 0 003.834 2.85A8.233 8.233 0 012 18.407a11.616 11.616 0 006.29 1.84"})])})},{name:"GitHub",href:"#",icon:a({render:()=>e("svg",{fill:"currentColor",viewBox:"0 0 24 24"},[e("path",{"fill-rule":"evenodd",d:"M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.988 1.029-2.688-.103-.253-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z","clip-rule":"evenodd"})])})},{name:"YouTube",href:"#",icon:a({render:()=>e("svg",{fill:"currentColor",viewBox:"0 0 24 24"},[e("path",{"fill-rule":"evenodd",d:"M19.812 5.418c.861.23 1.538.907 1.768 1.768C21.998 8.746 22 12 22 12s0 3.255-.418 4.814a2.504 2.504 0 0 1-1.768 1.768c-1.56.419-7.814.419-7.814.419s-6.255 0-7.814-.419a2.505 2.505 0 0 1-1.768-1.768C2 15.255 2 12 2 12s0-3.255.417-4.814a2.507 2.507 0 0 1 1.768-1.768C5.744 5 11.998 5 11.998 5s6.255 0 7.814.418ZM15.194 12 10 15V9l5.194 3Z","clip-rule":"evenodd"})])})},{name:"Linkedin",href:"#",icon:a({render:()=>e("svg",{fill:"currentColor",viewBox:"0 0 24 24"},[e("path",{"fill-rule":"evenodd",d:"M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 0 1-2.063-2.065 2.064 2.064 0 1 1 2.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24H22.225c.979 0 1.771-.773 1.771-1.729v-20.542C23.996.774 23.204 0 22.225 0z","clip-rule":"evenodd"})])})}];function x(){return{socialLink:C}}const b={class:"mt-10 flex justify-center space-x-5 lg:space-x-7 2xl:space-x-10"},k=["href"],w={class:"sr-only"},B={__name:"SocialLink",setup(z){const{socialLink:i}=x(),r=d(),s={facebook:r.props.value.global.options.facebook_url,github:r.props.value.global.options.github_url,instagram:r.props.value.global.options.instagram_url,linkedin:r.props.value.global.options.linkedin_url,twitter:r.props.value.global.options.twitter_url,youtube:r.props.value.global.options.youtube_channel_url},u=i.filter(n=>{const o=s[n.name.toLowerCase()];return!o||o==="#"?!1:/^(https?:\/\/)?([\da-z.-]+)\.([a-z.]{2,6})([/\w .-]*)*\/?$/i.test(o)}).map(n=>{const o=s[n.name.toLowerCase()];return{...n,href:o}});return(n,o)=>(t(),c("div",b,[(t(!0),c(v,null,p(_(u),l=>(t(),c("a",{target:"_blank",key:l.name,href:l.href,class:"text-gray-300 hover:text-gray-400 dark:hover:text-gray-200"},[h("span",w,f(l.name),1),(t(),g(m(l.icon),{class:"h-6 w-6","aria-hidden":"true"}))],8,k))),128))]))}};export{B as _}; diff --git a/public/build/assets/SocialSettingsForm-24148417.js b/public/build/assets/SocialSettingsForm-24148417.js deleted file mode 100644 index 29c4777..0000000 --- a/public/build/assets/SocialSettingsForm-24148417.js +++ /dev/null @@ -1 +0,0 @@ -import{A as p,u as g,o as m,g as c,d as o,a as t,b as l,w as d,T as f,f as x,e as b,h as y}from"./app-a07534fc.js";import{_ as r}from"./InputError-819a2731.js";import{_ as n}from"./InputLabel-0d88b11e.js";import{_ as k}from"./PrimaryButton-f1dd44c4.js";import{_ as i}from"./TextInput-6d371888.js";const w={class:"relative"},h=o("header",{class:"text-center sm:text-left"},[o("h2",{class:"text-lg font-medium text-gray-900 dark:text-gray-100"}," Social Settings "),o("p",{class:"text-sm text-gray-600 dark:text-gray-400"}," Change Your Web Site Details ")],-1),V={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},v={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},S={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},L={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},U={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},$={class:"p-2 sm:p-4 space-y-2 sm:space-y-5 w-full"},C={class:"flex items-center justify-center gap-4 py-5 sm:py-10 flex-auto col-span-full"},N={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},D={__name:"SocialSettingsForm",setup(T){const u=p().props.value.global.options,e=g({facebook_url:u.facebook_url,instagram_url:u.instagram_url,twitter_url:u.twitter_url,youtube_channel_url:u.youtube_channel_url,linkedin_url:u.linkedin_url,github_url:u.github_url});return(_,s)=>(m(),c("section",w,[h,o("form",{onSubmit:s[6]||(s[6]=x(a=>l(e).patch(_.route("admin.option.bulk.update")),["prevent"])),class:"mt-6 grid auto-cols-auto sm:grid-cols-2 gap-5 justify-between"},[o("div",V,[t(n,{class:"text-md sm:text-lg lg:text-xl",for:"facebook_url",value:"Facebook Link: "}),t(i,{id:"facebook_url",type:"text",class:"block w-full",modelValue:l(e).facebook_url,"onUpdate:modelValue":s[0]||(s[0]=a=>l(e).facebook_url=a),autocomplete:"facebook_url"},null,8,["modelValue"]),t(r,{class:"mt-2",message:l(e).errors.facebook_url},null,8,["message"])]),o("div",v,[t(n,{class:"text-md sm:text-lg lg:text-xl",for:"instagram_url",value:"Instagram Link: "}),t(i,{id:"instagram_url",type:"text",class:"block w-full",modelValue:l(e).instagram_url,"onUpdate:modelValue":s[1]||(s[1]=a=>l(e).instagram_url=a),autocomplete:"instagram_url"},null,8,["modelValue"]),t(r,{class:"mt-2",message:l(e).errors.instagram_url},null,8,["message"])]),o("div",S,[t(n,{class:"text-md sm:text-lg lg:text-xl",for:"twitter_url",value:"Twitter Link: "}),t(i,{id:"twitter_url",type:"text",class:"block w-full",modelValue:l(e).twitter_url,"onUpdate:modelValue":s[2]||(s[2]=a=>l(e).twitter_url=a),autocomplete:"twitter_url"},null,8,["modelValue"]),t(r,{class:"mt-2",message:l(e).errors.twitter_url},null,8,["message"])]),o("div",L,[t(n,{class:"text-md sm:text-lg lg:text-xl",for:"youtube_channel_url",value:"Youtube Channel Link: "}),t(i,{id:"youtube_channel_url",type:"text",class:"block w-full",modelValue:l(e).youtube_channel_url,"onUpdate:modelValue":s[3]||(s[3]=a=>l(e).youtube_channel_url=a),autocomplete:"youtube_channel_url"},null,8,["modelValue"]),t(r,{class:"mt-2",message:l(e).errors.youtube_channel_url},null,8,["message"])]),o("div",U,[t(n,{class:"text-md sm:text-lg lg:text-xl",for:"linkedin_url",value:"Linkedin Link: "}),t(i,{id:"linkedin_url",type:"text",class:"block w-full",modelValue:l(e).linkedin_url,"onUpdate:modelValue":s[4]||(s[4]=a=>l(e).linkedin_url=a),autocomplete:"linkedin_url"},null,8,["modelValue"]),t(r,{class:"mt-2",message:l(e).errors.linkedin_url},null,8,["message"])]),o("div",$,[t(n,{class:"text-md sm:text-lg lg:text-xl",for:"github_url",value:"Github Link: "}),t(i,{id:"github_url",type:"text",class:"block w-full",modelValue:l(e).github_url,"onUpdate:modelValue":s[5]||(s[5]=a=>l(e).github_url=a),autocomplete:"github_url"},null,8,["modelValue"]),t(r,{class:"mt-2",message:l(e).errors.github_url},null,8,["message"])]),o("div",C,[t(k,{class:"btn btn-primary w-32 h-12 sm:w-40 sm:h-14 sm:text-xl",disabled:l(e).processing},{default:d(()=>[b("Update")]),_:1},8,["disabled"]),t(f,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:d(()=>[l(e).recentlySuccessful?(m(),c("p",N," Saved. ")):y("",!0)]),_:1})])],32)]))}};export{D as default}; diff --git a/public/build/assets/SocialeSettings-f204efbe.js b/public/build/assets/SocialeSettings-f204efbe.js deleted file mode 100644 index 3f61255..0000000 --- a/public/build/assets/SocialeSettings-f204efbe.js +++ /dev/null @@ -1 +0,0 @@ -import{S as r}from"./Sync-acecb079.js";import{_ as i}from"./AuthenticatedLayout-bb1b77c9.js";import n from"./SocialSettingsForm-24148417.js";import{A as l,r as m,o as p,g as c,a as e,b as _,w as s,F as d,H as h,d as t}from"./app-a07534fc.js";import"./_plugin-vue_export-helper-c27b6911.js";import"./DarkMode-9ce27e49.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";import"./Dropdown-47fab125.js";import"./transition-26ae2105.js";import"./use-root-containers-d6d195ba.js";import"./EnvelopeIcon-fcce7294.js";import"./InputError-819a2731.js";import"./InputLabel-0d88b11e.js";import"./PrimaryButton-f1dd44c4.js";import"./TextInput-6d371888.js";const u={class:"flex justify-between"},f=t("h2",{class:"font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"}," Socail Settings ",-1),g=t("span",null,"Cache Clear",-1),x={class:"py-12"},b={class:"max-w-full mx-auto sm:px-6 lg:px-8 space-y-6"},v={class:"p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg"},G={__name:"SocialeSettings",setup(w){return l().props.value.global.options,(o,y)=>{const a=m("Link");return p(),c(d,null,[e(_(h),{title:"Settings"}),e(i,null,{header:s(()=>[t("div",u,[f,e(a,{href:o.route("cache.clear"),class:"flex items-center gap-1 text-blue-700 hover:text-blue-500 text-md"},{default:s(()=>[e(r,{class:"w-5 h-5 animate-spin"}),g]),_:1},8,["href"])])]),default:s(()=>[t("div",x,[t("div",b,[t("div",v,[e(n)])])])]),_:1})],64)}}};export{G as default}; diff --git a/public/build/assets/Sync-acecb079.js b/public/build/assets/Sync-acecb079.js deleted file mode 100644 index 601dc1b..0000000 --- a/public/build/assets/Sync-acecb079.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as t}from"./_plugin-vue_export-helper-c27b6911.js";import{o as e,g as o,d as s}from"./app-a07534fc.js";const C={},c={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24px",height:"24px",fill:"#0000FF"},n=s("path",{d:"M 11 0 C 10.74 0 10.483969 0.10196875 10.292969 0.29296875 L 7.2929688 3.2929688 C 6.9019688 3.6839688 6.9019687 4.3170313 7.2929688 4.7070312 L 10.292969 7.7070312 C 10.578969 7.9930312 11.007812 8.0778281 11.382812 7.9238281 C 11.756813 7.7688281 12 7.405 12 7 L 12 5 C 15.877484 5 19 8.1225161 19 12 C 19 13.025799 18.774981 13.99479 18.376953 14.876953 A 1.0001 1.0001 0 1 0 20.199219 15.699219 C 20.707191 14.573382 21 13.320201 21 12 C 21 7.0414839 16.958516 3 12 3 L 12 1 C 12 0.596 11.756812 0.23117187 11.382812 0.076171875 C 11.258813 0.025171875 11.129 0 11 0 z M 4.7265625 7.6992188 A 1.0001 1.0001 0 0 0 3.8007812 8.3007812 C 3.2928092 9.426618 3 10.679799 3 12 C 3 16.958516 7.0414839 21 12 21 L 12 23 C 12 23.404 12.243188 23.768828 12.617188 23.923828 C 12.741187 23.974828 12.871 24 13 24 C 13.26 24 13.516031 23.898031 13.707031 23.707031 L 16.707031 20.707031 C 17.098031 20.316031 17.098031 19.683969 16.707031 19.292969 L 13.707031 16.292969 C 13.421031 16.006969 12.992188 15.922172 12.617188 16.076172 C 12.243187 16.231172 12 16.596 12 17 L 12 19 C 8.1225161 19 5 15.877484 5 12 C 5 10.974201 5.225019 10.00521 5.6230469 9.1230469 A 1.0001 1.0001 0 0 0 4.7265625 7.6992188 z"},null,-1),r=[n];function _(a,i){return e(),o("svg",c,r)}const p=t(C,[["render",_]]);export{p as S}; diff --git a/public/build/assets/TextInput-6d371888.js b/public/build/assets/TextInput-6d371888.js deleted file mode 100644 index 528418d..0000000 --- a/public/build/assets/TextInput-6d371888.js +++ /dev/null @@ -1 +0,0 @@ -import{p as s,z as n,o as r,g as p}from"./app-a07534fc.js";const m=["value"],f={__name:"TextInput",props:["modelValue"],emits:["update:modelValue"],setup(u,{expose:o}){const e=s(null);return n(()=>{e.value.hasAttribute("autofocus")&&e.value.focus()}),o({focus:()=>e.value.focus()}),(l,t)=>(r(),p("input",{class:"form-controll",value:u.modelValue,onInput:t[0]||(t[0]=a=>l.$emit("update:modelValue",a.target.value)),ref_key:"input",ref:e},null,40,m))}};export{f as _}; diff --git a/public/build/assets/TextInput-5a299594.js b/public/build/assets/TextInput-fb418c8e.js similarity index 54% rename from public/build/assets/TextInput-5a299594.js rename to public/build/assets/TextInput-fb418c8e.js index f10e492..ae23e22 100644 --- a/public/build/assets/TextInput-5a299594.js +++ b/public/build/assets/TextInput-fb418c8e.js @@ -1 +1 @@ -import{i as n,j as s,o as r,h as p}from"./app-4f9e7dfc.js";const m=["value"],f={__name:"TextInput",props:["modelValue"],emits:["update:modelValue"],setup(u,{expose:o}){const e=n(null);return s(()=>{e.value.hasAttribute("autofocus")&&e.value.focus()}),o({focus:()=>e.value.focus()}),(l,t)=>(r(),p("input",{class:"form-controll",value:u.modelValue,onInput:t[0]||(t[0]=a=>l.$emit("update:modelValue",a.target.value)),ref_key:"input",ref:e},null,40,m))}};export{f as _}; +import{p as n,A as s,o as r,f as p}from"./app-4dfa7f3b.js";const f=["value"],c={__name:"TextInput",props:["modelValue"],emits:["update:modelValue"],setup(u,{expose:o}){const e=n(null);return s(()=>{e.value.hasAttribute("autofocus")&&e.value.focus()}),o({focus:()=>e.value.focus()}),(l,t)=>(r(),p("input",{class:"form-controll",value:u.modelValue,onInput:t[0]||(t[0]=a=>l.$emit("update:modelValue",a.target.value)),ref_key:"input",ref:e},null,40,f))}};export{c as _}; diff --git a/public/build/assets/Textarea-1fe62e1d.js b/public/build/assets/Textarea-1fe62e1d.js deleted file mode 100644 index 56fef03..0000000 --- a/public/build/assets/Textarea-1fe62e1d.js +++ /dev/null @@ -1 +0,0 @@ -import{p as s,z as r,o as n,g as p}from"./app-a07534fc.js";const c=["value"],f={__name:"Textarea",props:["modelValue"],emits:["update:modelValue"],setup(t,{expose:a}){const e=s(null);return r(()=>{e.value.hasAttribute("autofocus")&&e.value.focus()}),a({focus:()=>e.value.focus()}),(u,o)=>(n(),p("textarea",{class:"form-controll",value:t.modelValue,onInput:o[0]||(o[0]=l=>u.$emit("update:modelValue",l.target.value)),ref_key:"input",ref:e,cols:"20",rows:"5"},null,40,c))}};export{f as _}; diff --git a/public/build/assets/Textarea-01085d86.js b/public/build/assets/Textarea-f6994d96.js similarity index 65% rename from public/build/assets/Textarea-01085d86.js rename to public/build/assets/Textarea-f6994d96.js index 0e09243..369d15b 100644 --- a/public/build/assets/Textarea-01085d86.js +++ b/public/build/assets/Textarea-f6994d96.js @@ -1 +1 @@ -import{i as s,j as r,o as n,h as c}from"./app-4f9e7dfc.js";const m=["value"],p={__name:"Textarea",props:["modelValue"],emits:["update:modelValue"],setup(t,{expose:a}){const e=s(null);return r(()=>{e.value.hasAttribute("autofocus")&&e.value.focus()}),a({focus:()=>e.value.focus()}),(u,o)=>(n(),c("textarea",{class:"form-controll",value:t.modelValue,onInput:o[0]||(o[0]=l=>u.$emit("update:modelValue",l.target.value)),ref_key:"input",ref:e,cols:"20",rows:"5"},null,40,m))}};export{p as _}; +import{p as s,A as r,o as n,f as c}from"./app-4dfa7f3b.js";const f=["value"],p={__name:"Textarea",props:["modelValue"],emits:["update:modelValue"],setup(t,{expose:a}){const e=s(null);return r(()=>{e.value.hasAttribute("autofocus")&&e.value.focus()}),a({focus:()=>e.value.focus()}),(u,o)=>(n(),c("textarea",{class:"form-controll",value:t.modelValue,onInput:o[0]||(o[0]=l=>u.$emit("update:modelValue",l.target.value)),ref_key:"input",ref:e,cols:"20",rows:"5"},null,40,f))}};export{p as _}; diff --git a/public/build/assets/Toast-3242a059.js b/public/build/assets/Toast-3242a059.js deleted file mode 100644 index 3308603..0000000 --- a/public/build/assets/Toast-3242a059.js +++ /dev/null @@ -1 +0,0 @@ -import{j as h,o as a,h as o,b as e,t as c,J as v,O as p,l as x,c as g,w as f,F as w,m as y,u as _,T as b}from"./app-4f9e7dfc.js";import{t as n}from"./toast-c1edb8fd.js";const k={key:0,class:"flex items-center rounded-lg bg-white p-4 text-gray-500 shadow dark:bg-gray-800 dark:text-gray-400",role:"alert"},L=e("div",{class:"inline-flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-lg bg-blue-100 text-blue-500 dark:bg-blue-800 dark:text-blue-200"},[e("svg",{"aria-hidden":"true",class:"h-5 w-5",fill:"currentColor",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},[e("path",{"fill-rule":"evenodd",d:"M12.395 2.553a1 1 0 00-1.45-.385c-.345.23-.614.558-.822.88-.214.33-.403.713-.57 1.116-.334.804-.614 1.768-.84 2.734a31.365 31.365 0 00-.613 3.58 2.64 2.64 0 01-.945-1.067c-.328-.68-.398-1.534-.398-2.654A1 1 0 005.05 6.05 6.981 6.981 0 003 11a7 7 0 1011.95-4.95c-.592-.591-.98-.985-1.348-1.467-.363-.476-.724-1.063-1.207-2.03zM12.12 15.12A3 3 0 017 13s.879.5 2.5.5c0-1 .5-4 1.25-4.5.5 1 .786 1.293 1.371 1.879A2.99 2.99 0 0113 13a2.99 2.99 0 01-.879 2.121z","clip-rule":"evenodd"})]),e("span",{class:"sr-only"},"Fire icon")],-1),C={class:"ml-3 text-sm font-normal"},B=e("span",{class:"sr-only"},"Close",-1),z=e("svg",{"aria-hidden":"true",class:"h-5 w-5",fill:"currentColor",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},[e("path",{"fill-rule":"evenodd",d:"M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z","clip-rule":"evenodd"})],-1),M=[B,z],T={key:1,id:"toast-danger",class:"flex items-center w-full max-w-xs p-4 mb-4 text-gray-500 bg-white rounded-lg shadow dark:text-gray-400 dark:bg-gray-800",role:"alert"},F=e("div",{class:"inline-flex items-center justify-center flex-shrink-0 w-8 h-8 text-red-500 bg-red-100 rounded-lg dark:bg-red-800 dark:text-red-200"},[e("svg",{"aria-hidden":"true",class:"w-5 h-5",fill:"currentColor",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},[e("path",{"fill-rule":"evenodd",d:"M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z","clip-rule":"evenodd"})]),e("span",{class:"sr-only"},"Error icon")],-1),j={class:"ml-3 text-sm font-normal"},A=e("button",{type:"button",class:"ml-auto -mx-1.5 -my-1.5 bg-white text-gray-400 hover:text-gray-900 rounded-lg focus:ring-2 focus:ring-gray-300 p-1.5 hover:bg-gray-100 inline-flex h-8 w-8 dark:text-gray-500 dark:hover:text-white dark:bg-gray-800 dark:hover:bg-gray-700","data-dismiss-target":"#toast-danger","aria-label":"Close"},[e("span",{class:"sr-only"},"Close"),e("svg",{"aria-hidden":"true",class:"w-5 h-5",fill:"currentColor",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},[e("path",{"fill-rule":"evenodd",d:"M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z","clip-rule":"evenodd"})])],-1),E={__name:"ToastListItem",props:{message:String,success:Boolean,duration:{type:Number,default:2e3,required:!1}},emits:["remove"],setup(i,{emit:s}){const t=i;return h(()=>{setTimeout(()=>s("remove"),t.duration)}),(d,r)=>(a(),o("div",null,[t.success?(a(),o("div",k,[L,e("div",C,c(t.message),1),e("button",{onClick:r[0]||(r[0]=u=>s("remove")),type:"button",class:"-mx-1.5 -my-1.5 ml-auto inline-flex h-8 w-8 rounded-lg bg-white p-1.5 text-gray-400 hover:bg-gray-100 hover:text-gray-900 focus:ring-2 focus:ring-gray-300 dark:bg-gray-800 dark:text-gray-500 dark:hover:bg-gray-700 dark:hover:text-white","data-dismiss-target":"#toast-default","aria-label":"Close"},M)])):(a(),o("div",T,[F,e("div",j,c(t.message),1),A]))]))}},R={__name:"Toast",setup(i){const s=v();let t=p.on("finish",()=>{s.props.flash.message&&n.add({message:s.props.flash.message,success:s.props.flash.success})});x(()=>t());function d(r){n.remove(r)}return(r,u)=>(a(),g(b,{tag:"div","enter-from-class":"translate-x-full opacity-0","enter-active-class":"duration-500","leave-active-class":"duration-500","leave-to-class":"translate-x-full opacity-0",class:"fixed top-4 right-4 z-50 w-full max-w-xs space-y-4"},{default:f(()=>[(a(!0),o(w,null,y(_(n).items,(l,m)=>(a(),g(E,{key:l.key,message:l.message,success:l.success,duration:2e3,onRemove:$=>d(m)},null,8,["message","success","onRemove"]))),128))]),_:1}))}};export{R as _}; diff --git a/public/build/assets/Toast-645f4c7b.js b/public/build/assets/Toast-645f4c7b.js new file mode 100644 index 0000000..73f6f9c --- /dev/null +++ b/public/build/assets/Toast-645f4c7b.js @@ -0,0 +1 @@ +import{A as h,o as a,f as o,b as e,t as c,J as v,bv as p,C as x,c as g,w as f,F as w,q as y,u as _,P as b}from"./app-4dfa7f3b.js";import{t as n}from"./toast-ded66f04.js";const k={key:0,class:"flex items-center rounded-lg bg-white p-4 text-gray-500 shadow dark:bg-gray-800 dark:text-gray-400",role:"alert"},L=e("div",{class:"inline-flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-lg bg-blue-100 text-blue-500 dark:bg-blue-800 dark:text-blue-200"},[e("svg",{"aria-hidden":"true",class:"h-5 w-5",fill:"currentColor",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},[e("path",{"fill-rule":"evenodd",d:"M12.395 2.553a1 1 0 00-1.45-.385c-.345.23-.614.558-.822.88-.214.33-.403.713-.57 1.116-.334.804-.614 1.768-.84 2.734a31.365 31.365 0 00-.613 3.58 2.64 2.64 0 01-.945-1.067c-.328-.68-.398-1.534-.398-2.654A1 1 0 005.05 6.05 6.981 6.981 0 003 11a7 7 0 1011.95-4.95c-.592-.591-.98-.985-1.348-1.467-.363-.476-.724-1.063-1.207-2.03zM12.12 15.12A3 3 0 017 13s.879.5 2.5.5c0-1 .5-4 1.25-4.5.5 1 .786 1.293 1.371 1.879A2.99 2.99 0 0113 13a2.99 2.99 0 01-.879 2.121z","clip-rule":"evenodd"})]),e("span",{class:"sr-only"},"Fire icon")],-1),C={class:"ml-3 text-sm font-normal"},B=e("span",{class:"sr-only"},"Close",-1),z=e("svg",{"aria-hidden":"true",class:"h-5 w-5",fill:"currentColor",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},[e("path",{"fill-rule":"evenodd",d:"M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z","clip-rule":"evenodd"})],-1),M=[B,z],A={key:1,id:"toast-danger",class:"flex items-center w-full max-w-xs p-4 mb-4 text-gray-500 bg-white rounded-lg shadow dark:text-gray-400 dark:bg-gray-800",role:"alert"},F=e("div",{class:"inline-flex items-center justify-center flex-shrink-0 w-8 h-8 text-red-500 bg-red-100 rounded-lg dark:bg-red-800 dark:text-red-200"},[e("svg",{"aria-hidden":"true",class:"w-5 h-5",fill:"currentColor",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},[e("path",{"fill-rule":"evenodd",d:"M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z","clip-rule":"evenodd"})]),e("span",{class:"sr-only"},"Error icon")],-1),T={class:"ml-3 text-sm font-normal"},E=e("button",{type:"button",class:"ml-auto -mx-1.5 -my-1.5 bg-white text-gray-400 hover:text-gray-900 rounded-lg focus:ring-2 focus:ring-gray-300 p-1.5 hover:bg-gray-100 inline-flex h-8 w-8 dark:text-gray-500 dark:hover:text-white dark:bg-gray-800 dark:hover:bg-gray-700","data-dismiss-target":"#toast-danger","aria-label":"Close"},[e("span",{class:"sr-only"},"Close"),e("svg",{"aria-hidden":"true",class:"w-5 h-5",fill:"currentColor",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},[e("path",{"fill-rule":"evenodd",d:"M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z","clip-rule":"evenodd"})])],-1),$={__name:"ToastListItem",props:{message:String,success:Boolean,duration:{type:Number,default:2e3,required:!1}},emits:["remove"],setup(i,{emit:s}){const t=i;return h(()=>{setTimeout(()=>s("remove"),t.duration)}),(d,r)=>(a(),o("div",null,[t.success?(a(),o("div",k,[L,e("div",C,c(t.message),1),e("button",{onClick:r[0]||(r[0]=u=>s("remove")),type:"button",class:"-mx-1.5 -my-1.5 ml-auto inline-flex h-8 w-8 rounded-lg bg-white p-1.5 text-gray-400 hover:bg-gray-100 hover:text-gray-900 focus:ring-2 focus:ring-gray-300 dark:bg-gray-800 dark:text-gray-500 dark:hover:bg-gray-700 dark:hover:text-white","data-dismiss-target":"#toast-default","aria-label":"Close"},M)])):(a(),o("div",A,[F,e("div",T,c(t.message),1),E]))]))}},R={__name:"Toast",setup(i){const s=v();let t=p.on("finish",()=>{s.props.flash.message&&n.add({message:s.props.flash.message,success:s.props.flash.success})});x(()=>t());function d(r){n.remove(r)}return(r,u)=>(a(),g(b,{tag:"div","enter-from-class":"translate-x-full opacity-0","enter-active-class":"duration-500","leave-active-class":"duration-500","leave-to-class":"translate-x-full opacity-0",class:"fixed top-4 right-4 z-50 w-full max-w-xs space-y-4"},{default:f(()=>[(a(!0),o(w,null,y(_(n).items,(l,m)=>(a(),g($,{key:l.key,message:l.message,success:l.success,duration:2e3,onRemove:j=>d(m)},null,8,["message","success","onRemove"]))),128))]),_:1}))}};export{R as _}; diff --git a/public/build/assets/Toast-95869260.js b/public/build/assets/Toast-95869260.js deleted file mode 100644 index b442967..0000000 --- a/public/build/assets/Toast-95869260.js +++ /dev/null @@ -1 +0,0 @@ -import{d as h}from"./defaultFile-233481e1.js";import{o as a,g as o,b as g,z as v,d as e,t as c,A as f,B as x,C as _,c as u,w,F as y,m as b,D as k}from"./app-a07534fc.js";import{t as i}from"./toast-49ee1775.js";const L=["src"],q={__name:"ApplicationLogo",setup(l){return(s,t)=>(a(),o("img",{src:s.$page.props.global.options.logo||g(h).logo,alt:"logo",class:"rounded-full"},null,8,L))}},C={key:0,class:"flex items-center rounded-lg bg-white p-4 text-gray-500 shadow dark:bg-gray-800 dark:text-gray-400",role:"alert"},B=e("div",{class:"inline-flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-lg bg-blue-100 text-blue-500 dark:bg-blue-800 dark:text-blue-200"},[e("svg",{"aria-hidden":"true",class:"h-5 w-5",fill:"currentColor",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},[e("path",{"fill-rule":"evenodd",d:"M12.395 2.553a1 1 0 00-1.45-.385c-.345.23-.614.558-.822.88-.214.33-.403.713-.57 1.116-.334.804-.614 1.768-.84 2.734a31.365 31.365 0 00-.613 3.58 2.64 2.64 0 01-.945-1.067c-.328-.68-.398-1.534-.398-2.654A1 1 0 005.05 6.05 6.981 6.981 0 003 11a7 7 0 1011.95-4.95c-.592-.591-.98-.985-1.348-1.467-.363-.476-.724-1.063-1.207-2.03zM12.12 15.12A3 3 0 017 13s.879.5 2.5.5c0-1 .5-4 1.25-4.5.5 1 .786 1.293 1.371 1.879A2.99 2.99 0 0113 13a2.99 2.99 0 01-.879 2.121z","clip-rule":"evenodd"})]),e("span",{class:"sr-only"},"Fire icon")],-1),z={class:"ml-3 text-sm font-normal"},M=e("span",{class:"sr-only"},"Close",-1),$=e("svg",{"aria-hidden":"true",class:"h-5 w-5",fill:"currentColor",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},[e("path",{"fill-rule":"evenodd",d:"M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z","clip-rule":"evenodd"})],-1),A=[M,$],F={key:1,id:"toast-danger",class:"flex items-center w-full max-w-xs p-4 mb-4 text-gray-500 bg-white rounded-lg shadow dark:text-gray-400 dark:bg-gray-800",role:"alert"},T=e("div",{class:"inline-flex items-center justify-center flex-shrink-0 w-8 h-8 text-red-500 bg-red-100 rounded-lg dark:bg-red-800 dark:text-red-200"},[e("svg",{"aria-hidden":"true",class:"w-5 h-5",fill:"currentColor",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},[e("path",{"fill-rule":"evenodd",d:"M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z","clip-rule":"evenodd"})]),e("span",{class:"sr-only"},"Error icon")],-1),E={class:"ml-3 text-sm font-normal"},j=e("button",{type:"button",class:"ml-auto -mx-1.5 -my-1.5 bg-white text-gray-400 hover:text-gray-900 rounded-lg focus:ring-2 focus:ring-gray-300 p-1.5 hover:bg-gray-100 inline-flex h-8 w-8 dark:text-gray-500 dark:hover:text-white dark:bg-gray-800 dark:hover:bg-gray-700","data-dismiss-target":"#toast-danger","aria-label":"Close"},[e("span",{class:"sr-only"},"Close"),e("svg",{"aria-hidden":"true",class:"w-5 h-5",fill:"currentColor",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},[e("path",{"fill-rule":"evenodd",d:"M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z","clip-rule":"evenodd"})])],-1),D={__name:"ToastListItem",props:{message:String,success:Boolean,duration:{type:Number,default:2e3,required:!1}},emits:["remove"],setup(l,{emit:s}){const t=l;return v(()=>{setTimeout(()=>s("remove"),t.duration)}),(d,r)=>(a(),o("div",null,[t.success?(a(),o("div",C,[B,e("div",z,c(t.message),1),e("button",{onClick:r[0]||(r[0]=m=>s("remove")),type:"button",class:"-mx-1.5 -my-1.5 ml-auto inline-flex h-8 w-8 rounded-lg bg-white p-1.5 text-gray-400 hover:bg-gray-100 hover:text-gray-900 focus:ring-2 focus:ring-gray-300 dark:bg-gray-800 dark:text-gray-500 dark:hover:bg-gray-700 dark:hover:text-white","data-dismiss-target":"#toast-default","aria-label":"Close"},A)])):(a(),o("div",F,[T,e("div",E,c(t.message),1),j]))]))}},G={__name:"Toast",setup(l){const s=f();let t=x.Inertia.on("finish",()=>{s.props.value.flash.message&&i.add({message:s.props.value.flash.message,success:s.props.value.flash.success})});_(()=>t());function d(r){i.remove(r)}return(r,m)=>(a(),u(k,{tag:"div","enter-from-class":"translate-x-full opacity-0","enter-active-class":"duration-500","leave-active-class":"duration-500","leave-to-class":"translate-x-full opacity-0",class:"fixed top-4 right-4 z-50 w-full max-w-xs space-y-4"},{default:w(()=>[(a(!0),o(y,null,b(g(i).items,(n,p)=>(a(),u(D,{key:n.key,message:n.message,success:n.success,duration:2e3,onRemove:I=>d(p)},null,8,["message","success","onRemove"]))),128))]),_:1}))}};export{G as _,q as a}; diff --git a/public/build/assets/UpdatePasswordForm-f37a16db.js b/public/build/assets/UpdatePasswordForm-7abd1f0b.js similarity index 84% rename from public/build/assets/UpdatePasswordForm-f37a16db.js rename to public/build/assets/UpdatePasswordForm-7abd1f0b.js index d76b7cd..84fb9e6 100644 --- a/public/build/assets/UpdatePasswordForm-f37a16db.js +++ b/public/build/assets/UpdatePasswordForm-7abd1f0b.js @@ -1 +1 @@ -import{i as c,v as _,h as m,b as a,a as e,u as r,w as i,S as y,e as g,o as w,d as v,q as x}from"./app-4f9e7dfc.js";import{a as l,_ as n}from"./InputLabel-5969cc22.js";import{_ as V}from"./PrimaryButton-89a514d8.js";import{_ as d}from"./TextInput-5a299594.js";const k=a("header",null,[a("h2",{class:"text-lg font-medium text-gray-900 dark:text-gray-100"}," Update Password "),a("p",{class:"mt-1 text-sm text-gray-600 dark:text-gray-400"}," Ensure your account is using a long, random password to stay secure. ")],-1),b=["onSubmit"],P={class:"flex items-center gap-4"},S={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},B={__name:"UpdatePasswordForm",setup(N){const u=c(null),p=c(null),s=_({current_password:"",password:"",password_confirmation:""}),f=()=>{s.put(route("password.update"),{preserveScroll:!0,onSuccess:()=>s.reset(),onError:()=>{s.errors.password&&(s.reset("password","password_confirmation"),u.value.focus()),s.errors.current_password&&(s.reset("current_password"),p.value.focus())}})};return(U,o)=>(w(),m("section",null,[k,a("form",{onSubmit:g(f,["prevent"]),class:"mt-6 space-y-6"},[a("div",null,[e(n,{for:"current_password",value:"Current Password"}),e(d,{id:"current_password",ref_key:"currentPasswordInput",ref:p,modelValue:r(s).current_password,"onUpdate:modelValue":o[0]||(o[0]=t=>r(s).current_password=t),type:"password",class:"mt-1 block w-full",autocomplete:"current-password"},null,8,["modelValue"]),e(l,{message:r(s).errors.current_password,class:"mt-2"},null,8,["message"])]),a("div",null,[e(n,{for:"password",value:"New Password"}),e(d,{id:"password",ref_key:"passwordInput",ref:u,modelValue:r(s).password,"onUpdate:modelValue":o[1]||(o[1]=t=>r(s).password=t),type:"password",class:"mt-1 block w-full",autocomplete:"new-password"},null,8,["modelValue"]),e(l,{message:r(s).errors.password,class:"mt-2"},null,8,["message"])]),a("div",null,[e(n,{for:"password_confirmation",value:"Confirm Password"}),e(d,{id:"password_confirmation",modelValue:r(s).password_confirmation,"onUpdate:modelValue":o[2]||(o[2]=t=>r(s).password_confirmation=t),type:"password",class:"mt-1 block w-full",autocomplete:"new-password"},null,8,["modelValue"]),e(l,{message:r(s).errors.password_confirmation,class:"mt-2"},null,8,["message"])]),a("div",P,[e(V,{disabled:r(s).processing},{default:i(()=>[v("Save")]),_:1},8,["disabled"]),e(y,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:i(()=>[r(s).recentlySuccessful?(w(),m("p",S," Saved. ")):x("",!0)]),_:1})])],40,b)]))}};export{B as default}; +import{p as c,v as _,f as m,b as a,a as e,u as r,w as i,T as g,e as y,o as w,d as v,g as x}from"./app-4dfa7f3b.js";import{a as l,_ as n}from"./InputLabel-fec82426.js";import{_ as V}from"./PrimaryButton-2b535c8b.js";import{_ as d}from"./TextInput-fb418c8e.js";const k=a("header",null,[a("h2",{class:"text-lg font-medium text-gray-900 dark:text-gray-100"}," Update Password "),a("p",{class:"mt-1 text-sm text-gray-600 dark:text-gray-400"}," Ensure your account is using a long, random password to stay secure. ")],-1),b=["onSubmit"],P={class:"flex items-center gap-4"},S={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},B={__name:"UpdatePasswordForm",setup(N){const u=c(null),p=c(null),s=_({current_password:"",password:"",password_confirmation:""}),f=()=>{s.put(route("password.update"),{preserveScroll:!0,onSuccess:()=>s.reset(),onError:()=>{s.errors.password&&(s.reset("password","password_confirmation"),u.value.focus()),s.errors.current_password&&(s.reset("current_password"),p.value.focus())}})};return(U,o)=>(w(),m("section",null,[k,a("form",{onSubmit:y(f,["prevent"]),class:"mt-6 space-y-6"},[a("div",null,[e(n,{for:"current_password",value:"Current Password"}),e(d,{id:"current_password",ref_key:"currentPasswordInput",ref:p,modelValue:r(s).current_password,"onUpdate:modelValue":o[0]||(o[0]=t=>r(s).current_password=t),type:"password",class:"mt-1 block w-full",autocomplete:"current-password"},null,8,["modelValue"]),e(l,{message:r(s).errors.current_password,class:"mt-2"},null,8,["message"])]),a("div",null,[e(n,{for:"password",value:"New Password"}),e(d,{id:"password",ref_key:"passwordInput",ref:u,modelValue:r(s).password,"onUpdate:modelValue":o[1]||(o[1]=t=>r(s).password=t),type:"password",class:"mt-1 block w-full",autocomplete:"new-password"},null,8,["modelValue"]),e(l,{message:r(s).errors.password,class:"mt-2"},null,8,["message"])]),a("div",null,[e(n,{for:"password_confirmation",value:"Confirm Password"}),e(d,{id:"password_confirmation",modelValue:r(s).password_confirmation,"onUpdate:modelValue":o[2]||(o[2]=t=>r(s).password_confirmation=t),type:"password",class:"mt-1 block w-full",autocomplete:"new-password"},null,8,["modelValue"]),e(l,{message:r(s).errors.password_confirmation,class:"mt-2"},null,8,["message"])]),a("div",P,[e(V,{disabled:r(s).processing},{default:i(()=>[v("Save")]),_:1},8,["disabled"]),e(g,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:i(()=>[r(s).recentlySuccessful?(w(),m("p",S," Saved. ")):x("",!0)]),_:1})])],40,b)]))}};export{B as default}; diff --git a/public/build/assets/UpdatePasswordForm-a62e0f9c.js b/public/build/assets/UpdatePasswordForm-a62e0f9c.js deleted file mode 100644 index 39ec47c..0000000 --- a/public/build/assets/UpdatePasswordForm-a62e0f9c.js +++ /dev/null @@ -1 +0,0 @@ -import{p as c,u as _,o as m,g as i,d as o,a as e,b as r,w,T as g,f as y,e as v,h as x}from"./app-a07534fc.js";import{_ as l}from"./InputError-819a2731.js";import{_ as n}from"./InputLabel-0d88b11e.js";import{_ as V}from"./PrimaryButton-f1dd44c4.js";import{_ as d}from"./TextInput-6d371888.js";const k=o("header",null,[o("h2",{class:"text-lg font-medium text-gray-900 dark:text-gray-100"},"Update Password"),o("p",{class:"mt-1 text-sm text-gray-600 dark:text-gray-400"}," Ensure your account is using a long, random password to stay secure. ")],-1),b=["onSubmit"],P={class:"flex items-center gap-4"},S={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},E={__name:"UpdatePasswordForm",setup(N){const u=c(null),p=c(null),s=_({current_password:"",password:"",password_confirmation:""}),f=()=>{s.put(route("password.update"),{preserveScroll:!0,onSuccess:()=>s.reset(),onError:()=>{s.errors.password&&(s.reset("password","password_confirmation"),u.value.focus()),s.errors.current_password&&(s.reset("current_password"),p.value.focus())}})};return(U,a)=>(m(),i("section",null,[k,o("form",{onSubmit:y(f,["prevent"]),class:"mt-6 space-y-6"},[o("div",null,[e(n,{for:"current_password",value:"Current Password"}),e(d,{id:"current_password",ref_key:"currentPasswordInput",ref:p,modelValue:r(s).current_password,"onUpdate:modelValue":a[0]||(a[0]=t=>r(s).current_password=t),type:"password",class:"mt-1 block w-full",autocomplete:"current-password"},null,8,["modelValue"]),e(l,{message:r(s).errors.current_password,class:"mt-2"},null,8,["message"])]),o("div",null,[e(n,{for:"password",value:"New Password"}),e(d,{id:"password",ref_key:"passwordInput",ref:u,modelValue:r(s).password,"onUpdate:modelValue":a[1]||(a[1]=t=>r(s).password=t),type:"password",class:"mt-1 block w-full",autocomplete:"new-password"},null,8,["modelValue"]),e(l,{message:r(s).errors.password,class:"mt-2"},null,8,["message"])]),o("div",null,[e(n,{for:"password_confirmation",value:"Confirm Password"}),e(d,{id:"password_confirmation",modelValue:r(s).password_confirmation,"onUpdate:modelValue":a[2]||(a[2]=t=>r(s).password_confirmation=t),type:"password",class:"mt-1 block w-full",autocomplete:"new-password"},null,8,["modelValue"]),e(l,{message:r(s).errors.password_confirmation,class:"mt-2"},null,8,["message"])]),o("div",P,[e(V,{disabled:r(s).processing},{default:w(()=>[v("Save")]),_:1},8,["disabled"]),e(g,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:w(()=>[r(s).recentlySuccessful?(m(),i("p",S,"Saved.")):x("",!0)]),_:1})])],40,b)]))}};export{E as default}; diff --git a/public/build/assets/UpdateProfileInformationForm-a1bf3652.js b/public/build/assets/UpdateProfileInformationForm-92277dfa.js similarity index 80% rename from public/build/assets/UpdateProfileInformationForm-a1bf3652.js rename to public/build/assets/UpdateProfileInformationForm-92277dfa.js index cdc3748..0b2b769 100644 --- a/public/build/assets/UpdateProfileInformationForm-a1bf3652.js +++ b/public/build/assets/UpdateProfileInformationForm-92277dfa.js @@ -1 +1 @@ -import{J as v,v as k,h as n,b as s,a,u as e,d as i,w as m,f as _,g as h,q as x,S as b,e as V,o as d,z as w}from"./app-4f9e7dfc.js";import{a as u,_ as c}from"./InputLabel-5969cc22.js";import{_ as S}from"./PrimaryButton-89a514d8.js";import{_ as y}from"./TextInput-5a299594.js";import{s as B}from"./default.css_vue_type_style_index_0_src_true_lang-51e34c56.js";const N=s("header",null,[s("h2",{class:"text-lg font-medium text-gray-900 dark:text-gray-100"}," Profile Information "),s("p",{class:"mt-1 text-sm text-gray-600 dark:text-gray-400"}," Update your account's profile information and email address. ")],-1),U={key:0},$={class:"text-sm mt-2 text-gray-800 dark:text-gray-200"},E={class:"mt-2 font-medium text-sm text-green-600 dark:text-green-400"},q={class:"flex items-center gap-4"},A={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},z={__name:"UpdateProfileInformationForm",props:{mustVerifyEmail:Boolean,status:String,genderArr:Object},setup(f){const g=f,l=v().props.auth.user,t=k({name:l.name,email:l.email,gender:l.gender});return(p,r)=>(d(),n("section",null,[N,s("form",{onSubmit:r[3]||(r[3]=V(o=>e(t).patch(p.route("profile.update")),["prevent"])),class:"mt-6 space-y-6"},[s("div",null,[a(c,{for:"name",value:"Name"}),a(y,{id:"name",type:"text",class:"mt-1 block w-full",modelValue:e(t).name,"onUpdate:modelValue":r[0]||(r[0]=o=>e(t).name=o),required:"",autofocus:"",autocomplete:"name"},null,8,["modelValue"]),a(u,{class:"mt-2",message:e(t).errors.name},null,8,["message"])]),s("div",null,[a(c,{for:"email",value:"Email"}),a(y,{id:"email",type:"email",class:"mt-1 block w-full",modelValue:e(t).email,"onUpdate:modelValue":r[1]||(r[1]=o=>e(t).email=o),required:"",autocomplete:"email"},null,8,["modelValue"]),a(u,{class:"mt-2",message:e(t).errors.email},null,8,["message"])]),s("div",null,[a(c,{for:"gender",value:"Gender"}),a(e(B),{modelValue:e(t).gender,"onUpdate:modelValue":r[2]||(r[2]=o=>e(t).gender=o),options:f.genderArr,selected:e(t).gender,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-700",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"},id:"gender"},null,8,["modelValue","options","selected","classes"]),a(u,{class:"mt-2",message:e(t).errors.name},null,8,["message"])]),g.mustVerifyEmail&&e(l).email_verified_at===null?(d(),n("div",U,[s("p",$,[i(" Your email address is unverified. "),a(e(w),{href:p.route("verification.send"),method:"post",as:"button",class:"underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800"},{default:m(()=>[i(" Click here to re-send the verification email. ")]),_:1},8,["href"])]),_(s("div",E," A new verification link has been sent to your email address. ",512),[[h,g.status==="verification-link-sent"]])])):x("",!0),s("div",q,[a(S,{disabled:e(t).processing},{default:m(()=>[i("Save")]),_:1},8,["disabled"]),a(b,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:m(()=>[e(t).recentlySuccessful?(d(),n("p",A," Saved. ")):x("",!0)]),_:1})])],32)]))}};export{z as default}; +import{J as v,v as k,f as n,b as s,a,u as e,d as i,w as m,i as _,z as b,g as x,T as h,e as V,o as d,l as w}from"./app-4dfa7f3b.js";import{a as u,_ as c}from"./InputLabel-fec82426.js";import{_ as S}from"./PrimaryButton-2b535c8b.js";import{_ as y}from"./TextInput-fb418c8e.js";import{s as B}from"./default.css_vue_type_style_index_0_src_true_lang-5d8f90ba.js";const N=s("header",null,[s("h2",{class:"text-lg font-medium text-gray-900 dark:text-gray-100"}," Profile Information "),s("p",{class:"mt-1 text-sm text-gray-600 dark:text-gray-400"}," Update your account's profile information and email address. ")],-1),U={key:0},$={class:"text-sm mt-2 text-gray-800 dark:text-gray-200"},E={class:"mt-2 font-medium text-sm text-green-600 dark:text-green-400"},T={class:"flex items-center gap-4"},A={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},z={__name:"UpdateProfileInformationForm",props:{mustVerifyEmail:Boolean,status:String,genderArr:Object},setup(f){const g=f,l=v().props.auth.user,t=k({name:l.name,email:l.email,gender:l.gender});return(p,r)=>(d(),n("section",null,[N,s("form",{onSubmit:r[3]||(r[3]=V(o=>e(t).patch(p.route("profile.update")),["prevent"])),class:"mt-6 space-y-6"},[s("div",null,[a(c,{for:"name",value:"Name"}),a(y,{id:"name",type:"text",class:"mt-1 block w-full",modelValue:e(t).name,"onUpdate:modelValue":r[0]||(r[0]=o=>e(t).name=o),required:"",autofocus:"",autocomplete:"name"},null,8,["modelValue"]),a(u,{class:"mt-2",message:e(t).errors.name},null,8,["message"])]),s("div",null,[a(c,{for:"email",value:"Email"}),a(y,{id:"email",type:"email",class:"mt-1 block w-full",modelValue:e(t).email,"onUpdate:modelValue":r[1]||(r[1]=o=>e(t).email=o),required:"",autocomplete:"email"},null,8,["modelValue"]),a(u,{class:"mt-2",message:e(t).errors.email},null,8,["message"])]),s("div",null,[a(c,{for:"gender",value:"Gender"}),a(e(B),{modelValue:e(t).gender,"onUpdate:modelValue":r[2]||(r[2]=o=>e(t).gender=o),options:f.genderArr,selected:e(t).gender,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-700",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"},id:"gender"},null,8,["modelValue","options","selected","classes"]),a(u,{class:"mt-2",message:e(t).errors.name},null,8,["message"])]),g.mustVerifyEmail&&e(l).email_verified_at===null?(d(),n("div",U,[s("p",$,[i(" Your email address is unverified. "),a(e(w),{href:p.route("verification.send"),method:"post",as:"button",class:"underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800"},{default:m(()=>[i(" Click here to re-send the verification email. ")]),_:1},8,["href"])]),_(s("div",E," A new verification link has been sent to your email address. ",512),[[b,g.status==="verification-link-sent"]])])):x("",!0),s("div",T,[a(S,{disabled:e(t).processing},{default:m(()=>[i("Save")]),_:1},8,["disabled"]),a(h,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:m(()=>[e(t).recentlySuccessful?(d(),n("p",A," Saved. ")):x("",!0)]),_:1})])],32)]))}};export{z as default}; diff --git a/public/build/assets/UpdateProfileInformationForm-956c29bd.js b/public/build/assets/UpdateProfileInformationForm-956c29bd.js deleted file mode 100644 index c476284..0000000 --- a/public/build/assets/UpdateProfileInformationForm-956c29bd.js +++ /dev/null @@ -1 +0,0 @@ -import{A as v,u as k,o as n,g as i,d as s,a,b as e,e as m,w as d,j as _,y as h,h as x,T as b,f as V,L as w}from"./app-a07534fc.js";import{_ as u}from"./InputError-819a2731.js";import{_ as c}from"./InputLabel-0d88b11e.js";import{_ as S}from"./PrimaryButton-f1dd44c4.js";import{_ as y}from"./TextInput-6d371888.js";import{s as B}from"./default.css_vue_type_style_index_0_src_true_lang-5ba86734.js";const N=s("header",null,[s("h2",{class:"text-lg font-medium text-gray-900 dark:text-gray-100"}," Profile Information "),s("p",{class:"mt-1 text-sm text-gray-600 dark:text-gray-400"}," Update your account's profile information and email address. ")],-1),U={key:0},$={class:"text-sm mt-2 text-gray-800 dark:text-gray-200"},A={class:"mt-2 font-medium text-sm text-green-600 dark:text-green-400"},E={class:"flex items-center gap-4"},P={key:0,class:"text-sm text-gray-600 dark:text-gray-400"},I={__name:"UpdateProfileInformationForm",props:{mustVerifyEmail:Boolean,status:String,genderArr:Object},setup(f){const g=f,l=v().props.value.auth.user,t=k({name:l.name,email:l.email,gender:l.gender});return(p,r)=>(n(),i("section",null,[N,s("form",{onSubmit:r[3]||(r[3]=V(o=>e(t).patch(p.route("profile.update")),["prevent"])),class:"mt-6 space-y-6"},[s("div",null,[a(c,{for:"name",value:"Name"}),a(y,{id:"name",type:"text",class:"mt-1 block w-full",modelValue:e(t).name,"onUpdate:modelValue":r[0]||(r[0]=o=>e(t).name=o),required:"",autofocus:"",autocomplete:"name"},null,8,["modelValue"]),a(u,{class:"mt-2",message:e(t).errors.name},null,8,["message"])]),s("div",null,[a(c,{for:"email",value:"Email"}),a(y,{id:"email",type:"email",class:"mt-1 block w-full",modelValue:e(t).email,"onUpdate:modelValue":r[1]||(r[1]=o=>e(t).email=o),required:"",autocomplete:"email"},null,8,["modelValue"]),a(u,{class:"mt-2",message:e(t).errors.email},null,8,["message"])]),s("div",null,[a(c,{for:"gender",value:"Gender"}),a(e(B),{modelValue:e(t).gender,"onUpdate:modelValue":r[2]||(r[2]=o=>e(t).gender=o),options:f.genderArr,selected:e(t).gender,placeholder:"Pick some...",class:"block w-full multiselect-green form-controll dark:text-black",searchable:!0,classes:{search:" border-none border-l-0 rounded-sm mr-2 text-gray-900 bg-gray-200 dark:text-gray-50 dark:bg-gray-800",singleLabelText:" bg-[#10B981] rounded py-0.5 px-3 text-sm text-white font-semibold"},id:"gender"},null,8,["modelValue","options","selected"]),a(u,{class:"mt-2",message:e(t).errors.name},null,8,["message"])]),g.mustVerifyEmail&&e(l).email_verified_at===null?(n(),i("div",U,[s("p",$,[m(" Your email address is unverified. "),a(e(w),{href:p.route("verification.send"),method:"post",as:"button",class:"underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800"},{default:d(()=>[m(" Click here to re-send the verification email. ")]),_:1},8,["href"])]),_(s("div",A," A new verification link has been sent to your email address. ",512),[[h,g.status==="verification-link-sent"]])])):x("",!0),s("div",E,[a(S,{disabled:e(t).processing},{default:d(()=>[m("Save")]),_:1},8,["disabled"]),a(b,{"enter-from-class":"opacity-0","leave-to-class":"opacity-0",class:"transition ease-in-out"},{default:d(()=>[e(t).recentlySuccessful?(n(),i("p",P," Saved. ")):x("",!0)]),_:1})])],32)]))}};export{I as default}; diff --git a/public/build/assets/VerifyEmail-ee87b938.js b/public/build/assets/VerifyEmail-00e7e64f.js similarity index 54% rename from public/build/assets/VerifyEmail-ee87b938.js rename to public/build/assets/VerifyEmail-00e7e64f.js index 84a123b..bfb81b4 100644 --- a/public/build/assets/VerifyEmail-ee87b938.js +++ b/public/build/assets/VerifyEmail-00e7e64f.js @@ -1 +1 @@ -import{v as u,s as _,c as g,w as a,o as n,a as i,u as t,X as p,b as r,t as s,h as y,q as h,d as m,n as v,z as k,e as x}from"./app-4f9e7dfc.js";import{_ as b}from"./PrimaryButton-89a514d8.js";import{_ as V}from"./GuestLayout-4014bb8c.js";import"./ApplicationLogo-1c8f1468.js";import"./defaultFile-106f3fb6.js";import"./Toast-3242a059.js";import"./toast-c1edb8fd.js";const S={class:"mb-4 text-sm text-gray-600 dark:text-gray-400"},w={key:0,class:"mb-4 font-medium text-sm text-green-600 dark:text-green-400"},B=["onSubmit"],N={class:"mt-4 flex items-center justify-between"},M={__name:"VerifyEmail",props:{status:String},setup(c){const d=c,o=u(),f=()=>{o.post(route("verification.send"))},l=_(()=>d.status==="verification-link-sent");return(e,C)=>(n(),g(V,null,{default:a(()=>[i(t(p),{title:"Email Verification"}),r("div",S,s(e.__("verify_email.heading")),1),t(l)?(n(),y("div",w,s(e.__("verify_email.message")),1)):h("",!0),r("form",{onSubmit:x(f,["prevent"])},[r("div",N,[i(b,{class:v({"opacity-25":t(o).processing}),disabled:t(o).processing},{default:a(()=>[m(s(e.__("verify_email.resend_link")),1)]),_:1},8,["class","disabled"]),i(t(k),{href:e.route("logout"),method:"post",as:"button",class:"underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800"},{default:a(()=>[m(s(e.__("verify_email.log_out","Log out")),1)]),_:1},8,["href"])])],40,B)]),_:1}))}};export{M as default}; +import{v as u,h as _,c as g,w as a,o as n,a as i,u as t,X as p,b as r,t as s,f as y,g as h,d as m,n as v,l as k,e as x}from"./app-4dfa7f3b.js";import{_ as b}from"./PrimaryButton-2b535c8b.js";import{_ as V}from"./GuestLayout-ac5d3072.js";import"./ApplicationLogo-77a8e36b.js";import"./defaultFile-2b6c57d3.js";import"./Toast-645f4c7b.js";import"./toast-ded66f04.js";const S={class:"mb-4 text-sm text-gray-600 dark:text-gray-400"},w={key:0,class:"mb-4 font-medium text-sm text-green-600 dark:text-green-400"},B=["onSubmit"],N={class:"mt-4 flex items-center justify-between"},T={__name:"VerifyEmail",props:{status:String},setup(c){const f=c,o=u(),d=()=>{o.post(route("verification.send"))},l=_(()=>f.status==="verification-link-sent");return(e,C)=>(n(),g(V,null,{default:a(()=>[i(t(p),{title:"Email Verification"}),r("div",S,s(e.__("verify_email.heading")),1),t(l)?(n(),y("div",w,s(e.__("verify_email.message")),1)):h("",!0),r("form",{onSubmit:x(d,["prevent"])},[r("div",N,[i(b,{class:v({"opacity-25":t(o).processing}),disabled:t(o).processing},{default:a(()=>[m(s(e.__("verify_email.resend_link")),1)]),_:1},8,["class","disabled"]),i(t(k),{href:e.route("logout"),method:"post",as:"button",class:"underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800"},{default:a(()=>[m(s(e.__("verify_email.log_out","Log out")),1)]),_:1},8,["href"])])],40,B)]),_:1}))}};export{T as default}; diff --git a/public/build/assets/VerifyEmail-a7d0d2a8.js b/public/build/assets/VerifyEmail-a7d0d2a8.js deleted file mode 100644 index 93e15b2..0000000 --- a/public/build/assets/VerifyEmail-a7d0d2a8.js +++ /dev/null @@ -1 +0,0 @@ -import{u,i as _,o as n,c as g,w as o,a as i,b as t,H as p,d as r,t as s,g as y,h,e as m,n as v,L as k,f as x}from"./app-a07534fc.js";import{_ as b}from"./PrimaryButton-f1dd44c4.js";import{_ as V}from"./GuestLayout-8f04497b.js";import"./Toast-95869260.js";import"./defaultFile-233481e1.js";import"./toast-49ee1775.js";const S={class:"mb-4 text-sm text-gray-600 dark:text-gray-400"},w={key:0,class:"mb-4 font-medium text-sm text-green-600 dark:text-green-400"},B=["onSubmit"],L={class:"mt-4 flex items-center justify-between"},D={__name:"VerifyEmail",props:{status:String},setup(c){const d=c,a=u(),f=()=>{a.post(route("verification.send"))},l=_(()=>d.status==="verification-link-sent");return(e,N)=>(n(),g(V,null,{default:o(()=>[i(t(p),{title:"Email Verification"}),r("div",S,s(e.__("verify_email.heading")),1),l.value?(n(),y("div",w,s(e.__("verify_email.message")),1)):h("",!0),r("form",{onSubmit:x(f,["prevent"])},[r("div",L,[i(b,{class:v({"opacity-25":t(a).processing}),disabled:t(a).processing},{default:o(()=>[m(s(e.__("verify_email.resend_link")),1)]),_:1},8,["class","disabled"]),i(t(k),{href:e.route("logout"),method:"post",as:"button",class:"underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800"},{default:o(()=>[m(s(e.__("verify_email.log_out","Log out")),1)]),_:1},8,["href"])])],40,B)]),_:1}))}};export{D as default}; diff --git a/public/build/assets/_plugin-vue_export-helper-c27b6911.js b/public/build/assets/_plugin-vue_export-helper-c27b6911.js deleted file mode 100644 index 718edd3..0000000 --- a/public/build/assets/_plugin-vue_export-helper-c27b6911.js +++ /dev/null @@ -1 +0,0 @@ -const s=(t,r)=>{const o=t.__vccOpts||t;for(const[c,e]of r)o[c]=e;return o};export{s as _}; diff --git a/public/build/assets/app-1b89a99c.css b/public/build/assets/app-1b89a99c.css deleted file mode 100644 index 6b17b09..0000000 --- a/public/build/assets/app-1b89a99c.css +++ /dev/null @@ -1 +0,0 @@ -*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-feature-settings:normal}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}[type=text],[type=email],[type=url],[type=password],[type=number],[type=date],[type=datetime-local],[type=month],[type=search],[type=tel],[type=time],[type=week],[multiple],textarea,select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#6b7280;border-width:1px;border-radius:0;padding:.5rem .75rem;font-size:1rem;line-height:1.5rem;--tw-shadow: 0 0 #0000}[type=text]:focus,[type=email]:focus,[type=url]:focus,[type=password]:focus,[type=number]:focus,[type=date]:focus,[type=datetime-local]:focus,[type=month]:focus,[type=search]:focus,[type=tel]:focus,[type=time]:focus,[type=week]:focus,[multiple]:focus,textarea:focus,select:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-inset: var(--tw-empty, );--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: #2563eb;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);border-color:#2563eb}input::-moz-placeholder,textarea::-moz-placeholder{color:#6b7280;opacity:1}input::placeholder,textarea::placeholder{color:#6b7280;opacity:1}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-date-and-time-value{min-height:1.5em}::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{padding-top:0;padding-bottom:0}select{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;padding-right:2.5rem;-webkit-print-color-adjust:exact;print-color-adjust:exact}[multiple]{background-image:initial;background-position:initial;background-repeat:unset;background-size:initial;padding-right:.75rem;-webkit-print-color-adjust:unset;print-color-adjust:unset}[type=checkbox],[type=radio]{-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:0;-webkit-print-color-adjust:exact;print-color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none;flex-shrink:0;height:1rem;width:1rem;color:#2563eb;background-color:#fff;border-color:#6b7280;border-width:1px;--tw-shadow: 0 0 #0000}[type=checkbox]{border-radius:0}[type=radio]{border-radius:100%}[type=checkbox]:focus,[type=radio]:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-inset: var(--tw-empty, );--tw-ring-offset-width: 2px;--tw-ring-offset-color: #fff;--tw-ring-color: #2563eb;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}[type=checkbox]:checked,[type=radio]:checked{border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}[type=checkbox]:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e")}[type=radio]:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e")}[type=checkbox]:checked:hover,[type=checkbox]:checked:focus,[type=radio]:checked:hover,[type=radio]:checked:focus{border-color:transparent;background-color:currentColor}[type=checkbox]:indeterminate{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}[type=checkbox]:indeterminate:hover,[type=checkbox]:indeterminate:focus{border-color:transparent;background-color:currentColor}[type=file]{background:unset;border-color:inherit;border-width:0;border-radius:0;padding:0;font-size:unset;line-height:inherit}[type=file]:focus{outline:1px solid ButtonText;outline:1px auto -webkit-focus-ring-color}*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.pointer-events-none{pointer-events:none}.visible{visibility:visible}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.inset-0{top:0px;right:0px;bottom:0px;left:0px}.inset-y-0{top:0px;bottom:0px}.top-0{top:0px}.right-0{right:0px}.left-0{left:0px}.top-4{top:1rem}.right-4{right:1rem}.bottom-0{bottom:0px}.right-5{right:1.25rem}.top-20{top:5rem}.z-0{z-index:0}.z-40{z-index:40}.z-50{z-index:50}.z-10{z-index:10}.order-first{order:-9999}.col-span-5{grid-column:span 5 / span 5}.col-span-4{grid-column:span 4 / span 4}.col-span-full{grid-column:1 / -1}.col-span-6{grid-column:span 6 / span 6}.col-span-3{grid-column:span 3 / span 3}.col-start-2{grid-column-start:2}.mx-auto{margin-left:auto;margin-right:auto}.-mx-1\.5{margin-left:-.375rem;margin-right:-.375rem}.-my-1\.5{margin-top:-.375rem;margin-bottom:-.375rem}.-mx-1{margin-left:-.25rem;margin-right:-.25rem}.-my-1{margin-top:-.25rem;margin-bottom:-.25rem}.my-1{margin-top:.25rem;margin-bottom:.25rem}.mx-3{margin-left:.75rem;margin-right:.75rem}.my-2{margin-top:.5rem;margin-bottom:.5rem}.-my-2{margin-top:-.5rem;margin-bottom:-.5rem}.-mx-4{margin-left:-1rem;margin-right:-1rem}.my-5{margin-top:1.25rem;margin-bottom:1.25rem}.ml-3{margin-left:.75rem}.-ml-px{margin-left:-1px}.ml-1{margin-left:.25rem}.mt-2{margin-top:.5rem}.mr-2{margin-right:.5rem}.ml-2{margin-left:.5rem}.mt-4{margin-top:1rem}.ml-4{margin-left:1rem}.mt-8{margin-top:2rem}.ml-12{margin-left:3rem}.-mt-px{margin-top:-1px}.mr-1{margin-right:.25rem}.mt-1{margin-top:.25rem}.mt-6{margin-top:1.5rem}.mb-6{margin-bottom:1.5rem}.-mb-1{margin-bottom:-.25rem}.mb-1{margin-bottom:.25rem}.mt-5{margin-top:1.25rem}.ml-auto{margin-left:auto}.mb-4{margin-bottom:1rem}.mr-3{margin-right:.75rem}.ml-5{margin-left:1.25rem}.-mr-12{margin-right:-3rem}.mb-5{margin-bottom:1.25rem}.-mt-20{margin-top:-5rem}.mt-10{margin-top:2.5rem}.block{display:block}.inline-block{display:inline-block}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.hidden{display:none}.h-5{height:1.25rem}.h-8{height:2rem}.h-16{height:4rem}.h-4{height:1rem}.h-24{height:6rem}.h-full{height:100%}.h-6{height:1.5rem}.h-\[8px\]{height:8px}.h-screen{height:100vh}.h-10{height:2.5rem}.h-20{height:5rem}.h-12{height:3rem}.h-0{height:0px}.h-32{height:8rem}.h-\[300px\]{height:300px}.h-48{height:12rem}.h-\[150px\]{height:150px}.min-h-screen{min-height:100vh}.min-h-full{min-height:100%}.w-5{width:1.25rem}.w-8{width:2rem}.w-auto{width:auto}.w-4{width:1rem}.w-1\/2{width:50%}.w-1\/5{width:20%}.w-48{width:12rem}.w-full{width:100%}.w-24{width:6rem}.w-80{width:20rem}.w-14{width:3.5rem}.w-6{width:1.5rem}.w-\[8px\]{width:8px}.w-10{width:2.5rem}.w-20{width:5rem}.w-\[15\%\]{width:15%}.w-60{width:15rem}.w-\[10\%\]{width:10%}.w-\[100\%\]{width:100%}.w-\[20\%\]{width:20%}.w-16{width:4rem}.w-3\/4{width:75%}.w-32{width:8rem}.min-w-full{min-width:100%}.min-w-\[10\%\]{min-width:10%}.min-w-\[40\%\]{min-width:40%}.max-w-xl{max-width:36rem}.max-w-6xl{max-width:72rem}.max-w-xs{max-width:20rem}.max-w-7xl{max-width:80rem}.max-w-full{max-width:100%}.max-w-\[30\%\]{max-width:30%}.flex-1{flex:1 1 0%}.flex-auto{flex:1 1 auto}.flex-shrink-0,.shrink-0{flex-shrink:0}.shrink{flex-shrink:1}.flex-grow{flex-grow:1}.table-auto{table-layout:auto}.border-spacing-2{--tw-border-spacing-x: .5rem;--tw-border-spacing-y: .5rem;border-spacing:var(--tw-border-spacing-x) var(--tw-border-spacing-y)}.origin-top-left{transform-origin:top left}.origin-top-right{transform-origin:top right}.origin-top{transform-origin:top}.translate-y-4{--tw-translate-y: 1rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-y-0{--tw-translate-y: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-x-full{--tw-translate-x: 100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-x-6{--tw-translate-x: 1.5rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-y-8{--tw-translate-y: 2rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-translate-x-full{--tw-translate-x: -100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-x-0{--tw-translate-x: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.rotate-45{--tw-rotate: 45deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.scale-95{--tw-scale-x: .95;--tw-scale-y: .95;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.scale-100{--tw-scale-x: 1;--tw-scale-y: 1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes spin{to{transform:rotate(360deg)}}.animate-spin{animation:spin 1s linear infinite}@keyframes pulse{50%{opacity:.5}}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}.cursor-default{cursor:default}.cursor-pointer{cursor:pointer}.auto-cols-auto{grid-auto-columns:auto}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.flex-row-reverse{flex-direction:row-reverse}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-wrap{flex-wrap:wrap}.place-content-center{place-content:center}.place-items-center{place-items:center}.items-center{align-items:center}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.justify-around{justify-content:space-around}.justify-items-start{justify-items:start}.justify-items-center{justify-items:center}.gap-2{gap:.5rem}.gap-1{gap:.25rem}.gap-5{gap:1.25rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(.5rem * var(--tw-space-x-reverse));margin-left:calc(.5rem * calc(1 - var(--tw-space-x-reverse)))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(1rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem * var(--tw-space-y-reverse))}.space-x-3>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(.75rem * var(--tw-space-x-reverse));margin-left:calc(.75rem * calc(1 - var(--tw-space-x-reverse)))}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(.25rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.25rem * var(--tw-space-y-reverse))}.space-x-8>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(2rem * var(--tw-space-x-reverse));margin-left:calc(2rem * calc(1 - var(--tw-space-x-reverse)))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.5rem * var(--tw-space-y-reverse))}.space-x-1>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(.25rem * var(--tw-space-x-reverse));margin-left:calc(.25rem * calc(1 - var(--tw-space-x-reverse)))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem * var(--tw-space-y-reverse))}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(.75rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.75rem * var(--tw-space-y-reverse))}.space-y-5>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.25rem * var(--tw-space-y-reverse))}.space-x-5>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(1.25rem * var(--tw-space-x-reverse));margin-left:calc(1.25rem * calc(1 - var(--tw-space-x-reverse)))}.divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse: 0;border-top-width:calc(1px * calc(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(1px * var(--tw-divide-y-reverse))}.divide-gray-300>:not([hidden])~:not([hidden]){--tw-divide-opacity: 1;border-color:rgb(209 213 219 / var(--tw-divide-opacity))}.divide-gray-200>:not([hidden])~:not([hidden]){--tw-divide-opacity: 1;border-color:rgb(229 231 235 / var(--tw-divide-opacity))}.self-center{align-self:center}.overflow-hidden{overflow:hidden}.overflow-clip{overflow:clip}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.whitespace-normal{white-space:normal}.whitespace-nowrap{white-space:nowrap}.break-words{overflow-wrap:break-word}.break-all{word-break:break-all}.rounded-md{border-radius:.375rem}.rounded-lg{border-radius:.5rem}.rounded-full{border-radius:9999px}.rounded{border-radius:.25rem}.rounded-sm{border-radius:.125rem}.rounded-l-md{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}.rounded-r-md{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}.border{border-width:1px}.border-4{border-width:4px}.border-t{border-top-width:1px}.border-r{border-right-width:1px}.border-b-2{border-bottom-width:2px}.border-l-4{border-left-width:4px}.border-b{border-bottom-width:1px}.border-l-0{border-left-width:0px}.border-dashed{border-style:dashed}.border-none{border-style:none}.border-gray-300{--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.border-gray-200{--tw-border-opacity: 1;border-color:rgb(229 231 235 / var(--tw-border-opacity))}.border-gray-400{--tw-border-opacity: 1;border-color:rgb(156 163 175 / var(--tw-border-opacity))}.border-indigo-400{--tw-border-opacity: 1;border-color:rgb(129 140 248 / var(--tw-border-opacity))}.border-transparent{border-color:transparent}.border-indigo-600{--tw-border-opacity: 1;border-color:rgb(79 70 229 / var(--tw-border-opacity))}.border-gray-100{--tw-border-opacity: 1;border-color:rgb(243 244 246 / var(--tw-border-opacity))}.border-stone-600{--tw-border-opacity: 1;border-color:rgb(87 83 78 / var(--tw-border-opacity))}.border-gray-700{--tw-border-opacity: 1;border-color:rgb(55 65 81 / var(--tw-border-opacity))}.bg-white{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.bg-gray-100{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.bg-gray-500{--tw-bg-opacity: 1;background-color:rgb(107 114 128 / var(--tw-bg-opacity))}.bg-blue-700{--tw-bg-opacity: 1;background-color:rgb(29 78 216 / var(--tw-bg-opacity))}.bg-indigo-50{--tw-bg-opacity: 1;background-color:rgb(238 242 255 / var(--tw-bg-opacity))}.bg-gray-50{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.bg-blue-100{--tw-bg-opacity: 1;background-color:rgb(219 234 254 / var(--tw-bg-opacity))}.bg-red-100{--tw-bg-opacity: 1;background-color:rgb(254 226 226 / var(--tw-bg-opacity))}.bg-green-600{--tw-bg-opacity: 1;background-color:rgb(22 163 74 / var(--tw-bg-opacity))}.bg-gray-300{--tw-bg-opacity: 1;background-color:rgb(209 213 219 / var(--tw-bg-opacity))}.bg-gray-700{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.bg-gray-900{--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity))}.bg-indigo-700{--tw-bg-opacity: 1;background-color:rgb(67 56 202 / var(--tw-bg-opacity))}.bg-indigo-600{--tw-bg-opacity: 1;background-color:rgb(79 70 229 / var(--tw-bg-opacity))}.bg-indigo-800{--tw-bg-opacity: 1;background-color:rgb(55 48 163 / var(--tw-bg-opacity))}.bg-gray-600{--tw-bg-opacity: 1;background-color:rgb(75 85 99 / var(--tw-bg-opacity))}.bg-gray-200{--tw-bg-opacity: 1;background-color:rgb(229 231 235 / var(--tw-bg-opacity))}.bg-\[\#10B981\]{--tw-bg-opacity: 1;background-color:rgb(16 185 129 / var(--tw-bg-opacity))}.bg-red-500{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}.bg-opacity-60{--tw-bg-opacity: .6}.bg-opacity-75{--tw-bg-opacity: .75}.fill-current{fill:currentColor}.fill-blue-600{fill:#2563eb}.object-contain{-o-object-fit:contain;object-fit:contain}.object-cover{-o-object-fit:cover;object-fit:cover}.object-center{-o-object-position:center;object-position:center}.p-6{padding:1.5rem}.p-4{padding:1rem}.p-1\.5{padding:.375rem}.p-1{padding:.25rem}.p-2{padding:.5rem}.p-0\.5{padding:.125rem}.p-0{padding:0}.p-3{padding:.75rem}.p-5{padding:1.25rem}.px-4{padding-left:1rem;padding-right:1rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.py-4{padding-top:1rem;padding-bottom:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-6{padding-top:1.5rem;padding-bottom:1.5rem}.px-1{padding-left:.25rem;padding-right:.25rem}.px-3{padding-left:.75rem;padding-right:.75rem}.py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-12{padding-top:3rem;padding-bottom:3rem}.py-3\.5{padding-top:.875rem;padding-bottom:.875rem}.py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.py-0{padding-top:0;padding-bottom:0}.py-5{padding-top:1.25rem;padding-bottom:1.25rem}.pt-8{padding-top:2rem}.pr-2{padding-right:.5rem}.pt-1{padding-top:.25rem}.pl-3{padding-left:.75rem}.pr-4{padding-right:1rem}.pl-10{padding-left:2.5rem}.pt-6{padding-top:1.5rem}.pt-5{padding-top:1.25rem}.pb-4{padding-bottom:1rem}.pt-2{padding-top:.5rem}.pt-3{padding-top:.75rem}.pr-0\.5{padding-right:.125rem}.pr-0{padding-right:0}.pr-3{padding-right:.75rem}.pt-4{padding-top:1rem}.pb-1{padding-bottom:.25rem}.pr-5{padding-right:1.25rem}.pb-0\.5{padding-bottom:.125rem}.pb-0{padding-bottom:0}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.align-middle{vertical-align:middle}.font-sans{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji"}.text-sm{font-size:.875rem;line-height:1.25rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-base{font-size:1rem;line-height:1.5rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-2xl{font-size:1.5rem;line-height:2rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.font-medium{font-weight:500}.font-semibold{font-weight:600}.font-thin{font-weight:100}.font-bold{font-weight:700}.font-normal{font-weight:400}.uppercase{text-transform:uppercase}.capitalize{text-transform:capitalize}.leading-5{line-height:1.25rem}.leading-7{line-height:1.75rem}.leading-4{line-height:1rem}.leading-tight{line-height:1.25}.tracking-wider{letter-spacing:.05em}.text-gray-500{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.text-gray-200{--tw-text-opacity: 1;color:rgb(229 231 235 / var(--tw-text-opacity))}.text-gray-300{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.text-gray-600{--tw-text-opacity: 1;color:rgb(75 85 99 / var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity: 1;color:rgb(17 24 39 / var(--tw-text-opacity))}.text-indigo-600{--tw-text-opacity: 1;color:rgb(79 70 229 / var(--tw-text-opacity))}.text-red-600{--tw-text-opacity: 1;color:rgb(220 38 38 / var(--tw-text-opacity))}.text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.text-indigo-700{--tw-text-opacity: 1;color:rgb(67 56 202 / var(--tw-text-opacity))}.text-blue-900{--tw-text-opacity: 1;color:rgb(30 58 138 / var(--tw-text-opacity))}.text-blue-500{--tw-text-opacity: 1;color:rgb(59 130 246 / var(--tw-text-opacity))}.text-red-500{--tw-text-opacity: 1;color:rgb(239 68 68 / var(--tw-text-opacity))}.text-gray-800{--tw-text-opacity: 1;color:rgb(31 41 55 / var(--tw-text-opacity))}.text-indigo-100{--tw-text-opacity: 1;color:rgb(224 231 255 / var(--tw-text-opacity))}.text-indigo-300{--tw-text-opacity: 1;color:rgb(165 180 252 / var(--tw-text-opacity))}.text-green-600{--tw-text-opacity: 1;color:rgb(22 163 74 / var(--tw-text-opacity))}.text-blue-400{--tw-text-opacity: 1;color:rgb(96 165 250 / var(--tw-text-opacity))}.text-blue-700{--tw-text-opacity: 1;color:rgb(29 78 216 / var(--tw-text-opacity))}.text-black{--tw-text-opacity: 1;color:rgb(0 0 0 / var(--tw-text-opacity))}.underline{text-decoration-line:underline}.decoration-slate-500{text-decoration-color:#64748b}.underline-offset-4{text-underline-offset:4px}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.opacity-25{opacity:.25}.opacity-0{opacity:0}.opacity-100{opacity:1}.opacity-75{opacity:.75}.shadow-sm{--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow{--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-md{--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-xl{--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-gray-900{--tw-shadow-color: #111827;--tw-shadow: var(--tw-shadow-colored)}.ring-1{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.ring-gray-300{--tw-ring-opacity: 1;--tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity))}.ring-black{--tw-ring-opacity: 1;--tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity))}.ring-opacity-5{--tw-ring-opacity: .05}.blur{--tw-blur: blur(8px);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-150{transition-duration:.15s}.duration-200{transition-duration:.2s}.duration-75{transition-duration:75ms}.duration-300{transition-duration:.3s}.duration-500{transition-duration:.5s}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.ease-linear{transition-timing-function:linear}.btn{display:inline-flex;align-items:center;border-radius:.375rem;padding:.5rem 1rem;font-size:1rem;line-height:1.5rem;font-weight:500;text-transform:uppercase;letter-spacing:.1em;--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow);transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-duration:.15s;transition-timing-function:cubic-bezier(.4,0,.2,1)}.btn:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000);--tw-ring-offset-width: 2px}.btn:disabled{opacity:.25}.btn-primary{--tw-bg-opacity: 1;background-color:rgb(29 78 216 / var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.btn-primary:hover{--tw-bg-opacity: 1;background-color:rgb(30 64 175 / var(--tw-bg-opacity))}.btn-primary:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000);--tw-ring-opacity: 1;--tw-ring-color: rgb(147 197 253 / var(--tw-ring-opacity))}.dark .btn-primary{--tw-bg-opacity: 1;background-color:rgb(37 99 235 / var(--tw-bg-opacity))}.dark .btn-primary:hover{--tw-bg-opacity: 1;background-color:rgb(29 78 216 / var(--tw-bg-opacity))}.dark .btn-primary:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(30 64 175 / var(--tw-ring-opacity))}.btn-secondary{border-width:1px;--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.btn-secondary:hover{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.dark .btn-secondary{--tw-border-opacity: 1;border-color:rgb(107 114 128 / var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.dark .btn-secondary:hover{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.btn-danger{border-width:1px;border-color:transparent;--tw-bg-opacity: 1;background-color:rgb(220 38 38 / var(--tw-bg-opacity));text-transform:uppercase;letter-spacing:.1em;--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.btn-danger:hover{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}.btn-danger:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity))}.btn-danger:active{--tw-bg-opacity: 1;background-color:rgb(185 28 28 / var(--tw-bg-opacity))}.dark .btn-danger:focus{--tw-ring-offset-color: #1f2937}.btn-info{border-width:1px;border-color:transparent;--tw-bg-opacity: 1;background-color:rgb(2 132 199 / var(--tw-bg-opacity));text-transform:uppercase;letter-spacing:.1em;--tw-text-opacity: 1;color:rgb(249 250 251 / var(--tw-text-opacity))}.btn-info:hover{--tw-bg-opacity: 1;background-color:rgb(14 165 233 / var(--tw-bg-opacity))}.btn-info:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000);--tw-ring-opacity: 1;--tw-ring-color: rgb(125 211 252 / var(--tw-ring-opacity))}.btn-info:active{--tw-bg-opacity: 1;background-color:rgb(7 89 133 / var(--tw-bg-opacity))}.dark .btn-info:focus{--tw-ring-offset-color: #7dd3fc}.btn-light{border-width:1px;--tw-border-opacity: 1;border-color:rgb(107 114 128 / var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgb(17 24 39 / var(--tw-text-opacity))}.btn-light:hover{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.dark .btn-light{--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgb(17 24 39 / var(--tw-text-opacity))}.dark .btn-light:hover{--tw-bg-opacity: 1;background-color:rgb(229 231 235 / var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgb(31 41 55 / var(--tw-text-opacity))}.form-controll{border-radius:.375rem;--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity));--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.form-controll:focus{--tw-border-opacity: 1;border-color:rgb(99 102 241 / var(--tw-border-opacity));--tw-ring-opacity: 1;--tw-ring-color: rgb(99 102 241 / var(--tw-ring-opacity))}.dark .form-controll{--tw-border-opacity: 1;border-color:rgb(55 65 81 / var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.dark .form-controll:focus{--tw-border-opacity: 1;border-color:rgb(79 70 229 / var(--tw-border-opacity));--tw-ring-opacity: 1;--tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity))}.checkbox{border-radius:.25rem;--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity));--tw-text-opacity: 1;color:rgb(79 70 229 / var(--tw-text-opacity));--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.checkbox:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(99 102 241 / var(--tw-ring-opacity))}.dark .checkbox{--tw-border-opacity: 1;border-color:rgb(55 65 81 / var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity))}.dark .checkbox:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity));--tw-ring-offset-color: #1f2937}.unChecked{display:inline-block;height:1rem;width:1rem;--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity));padding:.5rem;--tw-text-opacity: 1;color:rgb(0 0 0 / var(--tw-text-opacity))}.dark .unChecked{--tw-text-opacity: 1;color:rgb(249 250 251 / var(--tw-text-opacity))}.checked{height:1rem;width:1rem;--tw-bg-opacity: 1;background-color:rgb(37 99 235 / var(--tw-bg-opacity));padding:.5rem;--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.hover\:border-gray-300:hover{--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.hover\:bg-gray-100:hover{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.hover\:bg-gray-700:hover{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.hover\:bg-gray-50:hover{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.hover\:bg-indigo-600:hover{--tw-bg-opacity: 1;background-color:rgb(79 70 229 / var(--tw-bg-opacity))}.hover\:text-gray-500:hover{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.hover\:text-gray-400:hover{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.hover\:text-gray-700:hover{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.hover\:text-gray-100:hover{--tw-text-opacity: 1;color:rgb(243 244 246 / var(--tw-text-opacity))}.hover\:text-gray-800:hover{--tw-text-opacity: 1;color:rgb(31 41 55 / var(--tw-text-opacity))}.hover\:text-gray-900:hover{--tw-text-opacity: 1;color:rgb(17 24 39 / var(--tw-text-opacity))}.hover\:text-blue-500:hover{--tw-text-opacity: 1;color:rgb(59 130 246 / var(--tw-text-opacity))}.focus\:z-10:focus{z-index:10}.focus\:border-blue-300:focus{--tw-border-opacity: 1;border-color:rgb(147 197 253 / var(--tw-border-opacity))}.focus\:border-indigo-700:focus{--tw-border-opacity: 1;border-color:rgb(67 56 202 / var(--tw-border-opacity))}.focus\:border-gray-300:focus{--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.focus\:border-indigo-500:focus{--tw-border-opacity: 1;border-color:rgb(99 102 241 / var(--tw-border-opacity))}.focus\:border-blue-500:focus{--tw-border-opacity: 1;border-color:rgb(59 130 246 / var(--tw-border-opacity))}.focus\:bg-gray-100:focus{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.focus\:bg-indigo-100:focus{--tw-bg-opacity: 1;background-color:rgb(224 231 255 / var(--tw-bg-opacity))}.focus\:bg-gray-50:focus{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.focus\:text-gray-700:focus{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.focus\:text-indigo-500:focus{--tw-text-opacity: 1;color:rgb(99 102 241 / var(--tw-text-opacity))}.focus\:text-indigo-800:focus{--tw-text-opacity: 1;color:rgb(55 48 163 / var(--tw-text-opacity))}.focus\:text-gray-800:focus{--tw-text-opacity: 1;color:rgb(31 41 55 / var(--tw-text-opacity))}.focus\:text-gray-500:focus{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:ring:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus\:ring-4:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus\:ring-2:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus\:ring-inset:focus{--tw-ring-inset: inset}.focus\:ring-indigo-500:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(99 102 241 / var(--tw-ring-opacity))}.focus\:ring-gray-200:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity))}.focus\:ring-blue-500:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity))}.focus\:ring-gray-300:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity))}.focus\:ring-white:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity))}.focus\:ring-offset-2:focus{--tw-ring-offset-width: 2px}.active\:bg-gray-100:active{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.active\:text-gray-700:active{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.active\:text-gray-500:active{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.group:hover .group-hover\:translate-y-0{--tw-translate-y: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.group:hover .group-hover\:opacity-50{opacity:.5}.group:hover .group-hover\:opacity-100{opacity:1}.dark .dark\:border-gray-700{--tw-border-opacity: 1;border-color:rgb(55 65 81 / var(--tw-border-opacity))}.dark .dark\:border-indigo-600{--tw-border-opacity: 1;border-color:rgb(79 70 229 / var(--tw-border-opacity))}.dark .dark\:border-gray-600{--tw-border-opacity: 1;border-color:rgb(75 85 99 / var(--tw-border-opacity))}.dark .dark\:bg-gray-900{--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity))}.dark .dark\:bg-gray-700{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.dark .dark\:bg-gray-800{--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity))}.dark .dark\:bg-blue-700{--tw-bg-opacity: 1;background-color:rgb(29 78 216 / var(--tw-bg-opacity))}.dark .dark\:bg-indigo-900\/50{background-color:#312e8180}.dark .dark\:bg-blue-800{--tw-bg-opacity: 1;background-color:rgb(30 64 175 / var(--tw-bg-opacity))}.dark .dark\:bg-red-800{--tw-bg-opacity: 1;background-color:rgb(153 27 27 / var(--tw-bg-opacity))}.dark .dark\:text-gray-400{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.dark .dark\:text-gray-100{--tw-text-opacity: 1;color:rgb(243 244 246 / var(--tw-text-opacity))}.dark .dark\:text-gray-300{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.dark .dark\:text-red-400{--tw-text-opacity: 1;color:rgb(248 113 113 / var(--tw-text-opacity))}.dark .dark\:text-gray-900{--tw-text-opacity: 1;color:rgb(17 24 39 / var(--tw-text-opacity))}.dark .dark\:text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.dark .dark\:text-indigo-300{--tw-text-opacity: 1;color:rgb(165 180 252 / var(--tw-text-opacity))}.dark .dark\:text-yellow-400{--tw-text-opacity: 1;color:rgb(250 204 21 / var(--tw-text-opacity))}.dark .dark\:text-gray-50{--tw-text-opacity: 1;color:rgb(249 250 251 / var(--tw-text-opacity))}.dark .dark\:text-blue-200{--tw-text-opacity: 1;color:rgb(191 219 254 / var(--tw-text-opacity))}.dark .dark\:text-gray-500{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.dark .dark\:text-red-200{--tw-text-opacity: 1;color:rgb(254 202 202 / var(--tw-text-opacity))}.dark .dark\:text-gray-200{--tw-text-opacity: 1;color:rgb(229 231 235 / var(--tw-text-opacity))}.dark .dark\:text-green-400{--tw-text-opacity: 1;color:rgb(74 222 128 / var(--tw-text-opacity))}.dark .dark\:text-black{--tw-text-opacity: 1;color:rgb(0 0 0 / var(--tw-text-opacity))}.dark .dark\:placeholder-gray-400::-moz-placeholder{--tw-placeholder-opacity: 1;color:rgb(156 163 175 / var(--tw-placeholder-opacity))}.dark .dark\:placeholder-gray-400::placeholder{--tw-placeholder-opacity: 1;color:rgb(156 163 175 / var(--tw-placeholder-opacity))}.dark .dark\:hover\:border-gray-700:hover{--tw-border-opacity: 1;border-color:rgb(55 65 81 / var(--tw-border-opacity))}.dark .dark\:hover\:border-gray-600:hover{--tw-border-opacity: 1;border-color:rgb(75 85 99 / var(--tw-border-opacity))}.dark .dark\:hover\:bg-gray-700:hover{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.dark .dark\:hover\:bg-gray-800:hover,.dark .hover\:dark\:bg-gray-800:hover{--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity))}.dark .dark\:hover\:bg-gray-900:hover{--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity))}.dark .dark\:hover\:text-gray-300:hover{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.dark .dark\:hover\:text-gray-200:hover{--tw-text-opacity: 1;color:rgb(229 231 235 / var(--tw-text-opacity))}.dark .dark\:hover\:text-white:hover{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.dark .dark\:hover\:text-gray-400:hover{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.dark .dark\:hover\:text-gray-100:hover{--tw-text-opacity: 1;color:rgb(243 244 246 / var(--tw-text-opacity))}.dark .dark\:focus\:border-gray-700:focus{--tw-border-opacity: 1;border-color:rgb(55 65 81 / var(--tw-border-opacity))}.dark .dark\:focus\:border-indigo-300:focus{--tw-border-opacity: 1;border-color:rgb(165 180 252 / var(--tw-border-opacity))}.dark .dark\:focus\:border-gray-600:focus{--tw-border-opacity: 1;border-color:rgb(75 85 99 / var(--tw-border-opacity))}.dark .dark\:focus\:border-blue-500:focus{--tw-border-opacity: 1;border-color:rgb(59 130 246 / var(--tw-border-opacity))}.dark .dark\:focus\:bg-gray-800:focus{--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity))}.dark .dark\:focus\:bg-indigo-900:focus{--tw-bg-opacity: 1;background-color:rgb(49 46 129 / var(--tw-bg-opacity))}.dark .dark\:focus\:bg-gray-700:focus{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.dark .dark\:focus\:bg-gray-900:focus{--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity))}.dark .dark\:focus\:text-gray-300:focus{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.dark .dark\:focus\:text-indigo-200:focus{--tw-text-opacity: 1;color:rgb(199 210 254 / var(--tw-text-opacity))}.dark .dark\:focus\:text-gray-200:focus{--tw-text-opacity: 1;color:rgb(229 231 235 / var(--tw-text-opacity))}.dark .dark\:focus\:text-gray-400:focus{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.dark .dark\:focus\:ring-indigo-600:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity))}.dark .dark\:focus\:ring-gray-700:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(55 65 81 / var(--tw-ring-opacity))}.dark .dark\:focus\:ring-blue-500:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity))}.dark .dark\:focus\:ring-offset-gray-800:focus{--tw-ring-offset-color: #1f2937}@media (min-width: 640px){.sm\:order-last{order:9999}.sm\:col-span-3{grid-column:span 3 / span 3}.sm\:float-right{float:right}.sm\:mx-auto{margin-left:auto;margin-right:auto}.sm\:-my-px{margin-top:-1px;margin-bottom:-1px}.sm\:-mx-6{margin-left:-1.5rem;margin-right:-1.5rem}.sm\:mt-0{margin-top:0}.sm\:ml-10{margin-left:2.5rem}.sm\:ml-6{margin-left:1.5rem}.sm\:ml-16{margin-left:4rem}.sm\:flex{display:flex}.sm\:hidden{display:none}.sm\:h-40{height:10rem}.sm\:h-14{height:3.5rem}.sm\:w-full{width:100%}.sm\:w-40{width:10rem}.sm\:max-w-sm{max-width:24rem}.sm\:max-w-md{max-width:28rem}.sm\:max-w-lg{max-width:32rem}.sm\:max-w-xl{max-width:36rem}.sm\:max-w-2xl{max-width:42rem}.sm\:flex-1{flex:1 1 0%}.sm\:flex-auto{flex:1 1 auto}.sm\:flex-none{flex:none}.sm\:translate-y-0{--tw-translate-y: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:scale-95{--tw-scale-x: .95;--tw-scale-y: .95;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:scale-100{--tw-scale-x: 1;--tw-scale-y: 1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:flex-row{flex-direction:row}.sm\:items-center{align-items:center}.sm\:justify-start{justify-content:flex-start}.sm\:justify-center{justify-content:center}.sm\:justify-between{justify-content:space-between}.sm\:space-y-5>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.25rem * var(--tw-space-y-reverse))}.sm\:space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(.5rem * var(--tw-space-x-reverse));margin-left:calc(.5rem * calc(1 - var(--tw-space-x-reverse)))}.sm\:space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(0px * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(0px * var(--tw-space-y-reverse))}.sm\:rounded-lg{border-radius:.5rem}.sm\:rounded-md{border-radius:.375rem}.sm\:p-4{padding:1rem}.sm\:p-8{padding:2rem}.sm\:p-6{padding:1.5rem}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:px-0{padding-left:0;padding-right:0}.sm\:py-10{padding-top:2.5rem;padding-bottom:2.5rem}.sm\:pt-0{padding-top:0}.sm\:pr-0{padding-right:0}.sm\:text-left{text-align:left}.sm\:text-xl{font-size:1.25rem;line-height:1.75rem}}@media (min-width: 768px){.md\:fixed{position:fixed}.md\:inset-y-0{top:0px;bottom:0px}.md\:mr-2{margin-right:.5rem}.md\:block{display:block}.md\:flex{display:flex}.md\:hidden{display:none}.md\:w-64{width:16rem}.md\:w-20{width:5rem}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.md\:flex-col{flex-direction:column}.md\:rounded-lg{border-radius:.5rem}.md\:px-8{padding-left:2rem;padding-right:2rem}.md\:px-3{padding-left:.75rem;padding-right:.75rem}.md\:px-6{padding-left:1.5rem;padding-right:1.5rem}.md\:pl-64{padding-left:16rem}.md\:pl-20{padding-left:5rem}}@media (min-width: 1024px){.lg\:col-span-3{grid-column:span 3 / span 3}.lg\:-mx-8{margin-left:-2rem;margin-right:-2rem}.lg\:flex{display:flex}.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.lg\:px-8{padding-left:2rem;padding-right:2rem}}@media (min-width: 1280px){.xl\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}}@media (min-width: 1536px){.\32xl\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}} diff --git a/public/build/assets/app-3ed25553.css b/public/build/assets/app-3ed25553.css new file mode 100644 index 0000000..38441a7 --- /dev/null +++ b/public/build/assets/app-3ed25553.css @@ -0,0 +1 @@ +*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-feature-settings:normal}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}[type=text],[type=email],[type=url],[type=password],[type=number],[type=date],[type=datetime-local],[type=month],[type=search],[type=tel],[type=time],[type=week],[multiple],textarea,select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#6b7280;border-width:1px;border-radius:0;padding:.5rem .75rem;font-size:1rem;line-height:1.5rem;--tw-shadow: 0 0 #0000}[type=text]:focus,[type=email]:focus,[type=url]:focus,[type=password]:focus,[type=number]:focus,[type=date]:focus,[type=datetime-local]:focus,[type=month]:focus,[type=search]:focus,[type=tel]:focus,[type=time]:focus,[type=week]:focus,[multiple]:focus,textarea:focus,select:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-inset: var(--tw-empty, );--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: #2563eb;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);border-color:#2563eb}input::-moz-placeholder,textarea::-moz-placeholder{color:#6b7280;opacity:1}input::placeholder,textarea::placeholder{color:#6b7280;opacity:1}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-date-and-time-value{min-height:1.5em}::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{padding-top:0;padding-bottom:0}select{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;padding-right:2.5rem;-webkit-print-color-adjust:exact;print-color-adjust:exact}[multiple]{background-image:initial;background-position:initial;background-repeat:unset;background-size:initial;padding-right:.75rem;-webkit-print-color-adjust:unset;print-color-adjust:unset}[type=checkbox],[type=radio]{-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:0;-webkit-print-color-adjust:exact;print-color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none;flex-shrink:0;height:1rem;width:1rem;color:#2563eb;background-color:#fff;border-color:#6b7280;border-width:1px;--tw-shadow: 0 0 #0000}[type=checkbox]{border-radius:0}[type=radio]{border-radius:100%}[type=checkbox]:focus,[type=radio]:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-inset: var(--tw-empty, );--tw-ring-offset-width: 2px;--tw-ring-offset-color: #fff;--tw-ring-color: #2563eb;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}[type=checkbox]:checked,[type=radio]:checked{border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}[type=checkbox]:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e")}[type=radio]:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e")}[type=checkbox]:checked:hover,[type=checkbox]:checked:focus,[type=radio]:checked:hover,[type=radio]:checked:focus{border-color:transparent;background-color:currentColor}[type=checkbox]:indeterminate{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}[type=checkbox]:indeterminate:hover,[type=checkbox]:indeterminate:focus{border-color:transparent;background-color:currentColor}[type=file]{background:unset;border-color:inherit;border-width:0;border-radius:0;padding:0;font-size:unset;line-height:inherit}[type=file]:focus{outline:1px solid ButtonText;outline:1px auto -webkit-focus-ring-color}*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.pointer-events-none{pointer-events:none}.visible{visibility:visible}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.inset-0{top:0;right:0;bottom:0;left:0}.inset-y-0{top:0;bottom:0}.top-0{top:0}.right-0{right:0}.left-0{left:0}.top-4{top:1rem}.right-4{right:1rem}.bottom-0{bottom:0}.right-5{right:1.25rem}.top-20{top:5rem}.z-0{z-index:0}.z-40{z-index:40}.z-50{z-index:50}.z-10{z-index:10}.order-first{order:-9999}.col-span-5{grid-column:span 5 / span 5}.col-span-4{grid-column:span 4 / span 4}.col-span-full{grid-column:1 / -1}.col-span-6{grid-column:span 6 / span 6}.col-span-3{grid-column:span 3 / span 3}.col-start-2{grid-column-start:2}.mx-auto{margin-left:auto;margin-right:auto}.-mx-1\.5{margin-left:-.375rem;margin-right:-.375rem}.-my-1\.5{margin-top:-.375rem;margin-bottom:-.375rem}.-mx-1{margin-left:-.25rem;margin-right:-.25rem}.-my-1{margin-top:-.25rem;margin-bottom:-.25rem}.my-1{margin-top:.25rem;margin-bottom:.25rem}.mx-3{margin-left:.75rem;margin-right:.75rem}.my-2{margin-top:.5rem;margin-bottom:.5rem}.-my-2{margin-top:-.5rem;margin-bottom:-.5rem}.-mx-4{margin-left:-1rem;margin-right:-1rem}.my-5{margin-top:1.25rem;margin-bottom:1.25rem}.ml-3{margin-left:.75rem}.-ml-px{margin-left:-1px}.ml-1{margin-left:.25rem}.mt-2{margin-top:.5rem}.mr-2{margin-right:.5rem}.ml-2{margin-left:.5rem}.mt-4{margin-top:1rem}.ml-4{margin-left:1rem}.mt-8{margin-top:2rem}.ml-12{margin-left:3rem}.-mt-px{margin-top:-1px}.mr-1{margin-right:.25rem}.mt-1{margin-top:.25rem}.mt-6{margin-top:1.5rem}.mb-6{margin-bottom:1.5rem}.-mb-1{margin-bottom:-.25rem}.mb-1{margin-bottom:.25rem}.mt-5{margin-top:1.25rem}.ml-auto{margin-left:auto}.mb-4{margin-bottom:1rem}.mr-3{margin-right:.75rem}.ml-5{margin-left:1.25rem}.-mr-12{margin-right:-3rem}.mb-5{margin-bottom:1.25rem}.-mt-20{margin-top:-5rem}.mt-10{margin-top:2.5rem}.block{display:block}.inline-block{display:inline-block}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.hidden{display:none}.h-5{height:1.25rem}.h-8{height:2rem}.h-16{height:4rem}.h-4{height:1rem}.h-24{height:6rem}.h-full{height:100%}.h-6{height:1.5rem}.h-\[8px\]{height:8px}.h-screen{height:100vh}.h-10{height:2.5rem}.h-20{height:5rem}.h-12{height:3rem}.h-0{height:0px}.h-32{height:8rem}.h-\[300px\]{height:300px}.h-48{height:12rem}.h-\[150px\]{height:150px}.min-h-screen{min-height:100vh}.min-h-full{min-height:100%}.w-5{width:1.25rem}.w-8{width:2rem}.w-auto{width:auto}.w-4{width:1rem}.w-1\/2{width:50%}.w-1\/5{width:20%}.w-48{width:12rem}.w-full{width:100%}.w-24{width:6rem}.w-80{width:20rem}.w-14{width:3.5rem}.w-6{width:1.5rem}.w-\[8px\]{width:8px}.w-10{width:2.5rem}.w-20{width:5rem}.w-\[15\%\]{width:15%}.w-60{width:15rem}.w-\[10\%\]{width:10%}.w-\[100\%\]{width:100%}.w-\[20\%\]{width:20%}.w-16{width:4rem}.w-3\/4{width:75%}.w-32{width:8rem}.min-w-full{min-width:100%}.min-w-\[10\%\]{min-width:10%}.min-w-\[40\%\]{min-width:40%}.max-w-xl{max-width:36rem}.max-w-6xl{max-width:72rem}.max-w-xs{max-width:20rem}.max-w-7xl{max-width:80rem}.max-w-full{max-width:100%}.max-w-\[30\%\]{max-width:30%}.flex-1{flex:1 1 0%}.flex-auto{flex:1 1 auto}.flex-shrink-0,.shrink-0{flex-shrink:0}.shrink{flex-shrink:1}.flex-grow{flex-grow:1}.table-auto{table-layout:auto}.border-spacing-2{--tw-border-spacing-x: .5rem;--tw-border-spacing-y: .5rem;border-spacing:var(--tw-border-spacing-x) var(--tw-border-spacing-y)}.origin-top-left{transform-origin:top left}.origin-top-right{transform-origin:top right}.origin-top{transform-origin:top}.translate-y-4{--tw-translate-y: 1rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-y-0{--tw-translate-y: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-x-full{--tw-translate-x: 100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-x-6{--tw-translate-x: 1.5rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-y-8{--tw-translate-y: 2rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-translate-x-full{--tw-translate-x: -100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-x-0{--tw-translate-x: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.rotate-45{--tw-rotate: 45deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.scale-95{--tw-scale-x: .95;--tw-scale-y: .95;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.scale-100{--tw-scale-x: 1;--tw-scale-y: 1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes spin{to{transform:rotate(360deg)}}.animate-spin{animation:spin 1s linear infinite}@keyframes pulse{50%{opacity:.5}}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}.cursor-default{cursor:default}.cursor-pointer{cursor:pointer}.auto-cols-auto{grid-auto-columns:auto}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.flex-row-reverse{flex-direction:row-reverse}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-wrap{flex-wrap:wrap}.place-content-center{place-content:center}.place-items-center{place-items:center}.items-center{align-items:center}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.justify-around{justify-content:space-around}.justify-items-start{justify-items:start}.justify-items-center{justify-items:center}.gap-2{gap:.5rem}.gap-1{gap:.25rem}.gap-5{gap:1.25rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(.5rem * var(--tw-space-x-reverse));margin-left:calc(.5rem * calc(1 - var(--tw-space-x-reverse)))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(1rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem * var(--tw-space-y-reverse))}.space-x-3>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(.75rem * var(--tw-space-x-reverse));margin-left:calc(.75rem * calc(1 - var(--tw-space-x-reverse)))}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(.25rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.25rem * var(--tw-space-y-reverse))}.space-x-8>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(2rem * var(--tw-space-x-reverse));margin-left:calc(2rem * calc(1 - var(--tw-space-x-reverse)))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.5rem * var(--tw-space-y-reverse))}.space-x-1>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(.25rem * var(--tw-space-x-reverse));margin-left:calc(.25rem * calc(1 - var(--tw-space-x-reverse)))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem * var(--tw-space-y-reverse))}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(.75rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.75rem * var(--tw-space-y-reverse))}.space-y-5>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.25rem * var(--tw-space-y-reverse))}.space-x-5>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(1.25rem * var(--tw-space-x-reverse));margin-left:calc(1.25rem * calc(1 - var(--tw-space-x-reverse)))}.divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse: 0;border-top-width:calc(1px * calc(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(1px * var(--tw-divide-y-reverse))}.divide-gray-300>:not([hidden])~:not([hidden]){--tw-divide-opacity: 1;border-color:rgb(209 213 219 / var(--tw-divide-opacity))}.divide-gray-200>:not([hidden])~:not([hidden]){--tw-divide-opacity: 1;border-color:rgb(229 231 235 / var(--tw-divide-opacity))}.self-center{align-self:center}.overflow-hidden{overflow:hidden}.overflow-clip{overflow:clip}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.whitespace-normal{white-space:normal}.whitespace-nowrap{white-space:nowrap}.break-words{overflow-wrap:break-word}.break-all{word-break:break-all}.rounded-md{border-radius:.375rem}.rounded-lg{border-radius:.5rem}.rounded-full{border-radius:9999px}.rounded{border-radius:.25rem}.rounded-sm{border-radius:.125rem}.rounded-l-md{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}.rounded-r-md{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}.border{border-width:1px}.border-4{border-width:4px}.border-t{border-top-width:1px}.border-r{border-right-width:1px}.border-b-2{border-bottom-width:2px}.border-l-4{border-left-width:4px}.border-b{border-bottom-width:1px}.border-l-0{border-left-width:0px}.border-dashed{border-style:dashed}.border-none{border-style:none}.border-gray-300{--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.border-gray-200{--tw-border-opacity: 1;border-color:rgb(229 231 235 / var(--tw-border-opacity))}.border-gray-400{--tw-border-opacity: 1;border-color:rgb(156 163 175 / var(--tw-border-opacity))}.border-indigo-400{--tw-border-opacity: 1;border-color:rgb(129 140 248 / var(--tw-border-opacity))}.border-transparent{border-color:transparent}.border-indigo-600{--tw-border-opacity: 1;border-color:rgb(79 70 229 / var(--tw-border-opacity))}.border-gray-100{--tw-border-opacity: 1;border-color:rgb(243 244 246 / var(--tw-border-opacity))}.border-stone-600{--tw-border-opacity: 1;border-color:rgb(87 83 78 / var(--tw-border-opacity))}.border-gray-700{--tw-border-opacity: 1;border-color:rgb(55 65 81 / var(--tw-border-opacity))}.bg-white{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.bg-gray-100{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.bg-gray-500{--tw-bg-opacity: 1;background-color:rgb(107 114 128 / var(--tw-bg-opacity))}.bg-blue-700{--tw-bg-opacity: 1;background-color:rgb(29 78 216 / var(--tw-bg-opacity))}.bg-indigo-50{--tw-bg-opacity: 1;background-color:rgb(238 242 255 / var(--tw-bg-opacity))}.bg-gray-50{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.bg-blue-100{--tw-bg-opacity: 1;background-color:rgb(219 234 254 / var(--tw-bg-opacity))}.bg-red-100{--tw-bg-opacity: 1;background-color:rgb(254 226 226 / var(--tw-bg-opacity))}.bg-green-600{--tw-bg-opacity: 1;background-color:rgb(22 163 74 / var(--tw-bg-opacity))}.bg-gray-300{--tw-bg-opacity: 1;background-color:rgb(209 213 219 / var(--tw-bg-opacity))}.bg-gray-700{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.bg-gray-900{--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity))}.bg-indigo-700{--tw-bg-opacity: 1;background-color:rgb(67 56 202 / var(--tw-bg-opacity))}.bg-indigo-600{--tw-bg-opacity: 1;background-color:rgb(79 70 229 / var(--tw-bg-opacity))}.bg-indigo-800{--tw-bg-opacity: 1;background-color:rgb(55 48 163 / var(--tw-bg-opacity))}.bg-gray-600{--tw-bg-opacity: 1;background-color:rgb(75 85 99 / var(--tw-bg-opacity))}.bg-gray-200{--tw-bg-opacity: 1;background-color:rgb(229 231 235 / var(--tw-bg-opacity))}.bg-\[\#10B981\]{--tw-bg-opacity: 1;background-color:rgb(16 185 129 / var(--tw-bg-opacity))}.bg-red-500{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}.bg-opacity-60{--tw-bg-opacity: .6}.bg-opacity-75{--tw-bg-opacity: .75}.fill-current{fill:currentColor}.fill-blue-600{fill:#2563eb}.object-contain{-o-object-fit:contain;object-fit:contain}.object-cover{-o-object-fit:cover;object-fit:cover}.object-center{-o-object-position:center;object-position:center}.p-6{padding:1.5rem}.p-4{padding:1rem}.p-1\.5{padding:.375rem}.p-1{padding:.25rem}.p-2{padding:.5rem}.p-0\.5{padding:.125rem}.p-0{padding:0}.p-3{padding:.75rem}.p-5{padding:1.25rem}.px-4{padding-left:1rem;padding-right:1rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.py-4{padding-top:1rem;padding-bottom:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-6{padding-top:1.5rem;padding-bottom:1.5rem}.px-1{padding-left:.25rem;padding-right:.25rem}.px-3{padding-left:.75rem;padding-right:.75rem}.py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-12{padding-top:3rem;padding-bottom:3rem}.py-3\.5{padding-top:.875rem;padding-bottom:.875rem}.py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.py-0{padding-top:0;padding-bottom:0}.py-5{padding-top:1.25rem;padding-bottom:1.25rem}.pt-8{padding-top:2rem}.pr-2{padding-right:.5rem}.pt-1{padding-top:.25rem}.pl-3{padding-left:.75rem}.pr-4{padding-right:1rem}.pl-10{padding-left:2.5rem}.pt-6{padding-top:1.5rem}.pt-5{padding-top:1.25rem}.pb-4{padding-bottom:1rem}.pt-2{padding-top:.5rem}.pt-3{padding-top:.75rem}.pr-0\.5{padding-right:.125rem}.pr-0{padding-right:0}.pr-3{padding-right:.75rem}.pt-4{padding-top:1rem}.pb-1{padding-bottom:.25rem}.pr-5{padding-right:1.25rem}.pb-0\.5{padding-bottom:.125rem}.pb-0{padding-bottom:0}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.align-middle{vertical-align:middle}.font-sans{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji"}.text-sm{font-size:.875rem;line-height:1.25rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-base{font-size:1rem;line-height:1.5rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-2xl{font-size:1.5rem;line-height:2rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.font-medium{font-weight:500}.font-semibold{font-weight:600}.font-thin{font-weight:100}.font-bold{font-weight:700}.font-normal{font-weight:400}.uppercase{text-transform:uppercase}.capitalize{text-transform:capitalize}.leading-5{line-height:1.25rem}.leading-7{line-height:1.75rem}.leading-4{line-height:1rem}.leading-tight{line-height:1.25}.tracking-wider{letter-spacing:.05em}.text-gray-500{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.text-gray-200{--tw-text-opacity: 1;color:rgb(229 231 235 / var(--tw-text-opacity))}.text-gray-300{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.text-gray-600{--tw-text-opacity: 1;color:rgb(75 85 99 / var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity: 1;color:rgb(17 24 39 / var(--tw-text-opacity))}.text-indigo-600{--tw-text-opacity: 1;color:rgb(79 70 229 / var(--tw-text-opacity))}.text-red-600{--tw-text-opacity: 1;color:rgb(220 38 38 / var(--tw-text-opacity))}.text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.text-indigo-700{--tw-text-opacity: 1;color:rgb(67 56 202 / var(--tw-text-opacity))}.text-blue-900{--tw-text-opacity: 1;color:rgb(30 58 138 / var(--tw-text-opacity))}.text-blue-500{--tw-text-opacity: 1;color:rgb(59 130 246 / var(--tw-text-opacity))}.text-red-500{--tw-text-opacity: 1;color:rgb(239 68 68 / var(--tw-text-opacity))}.text-gray-800{--tw-text-opacity: 1;color:rgb(31 41 55 / var(--tw-text-opacity))}.text-indigo-100{--tw-text-opacity: 1;color:rgb(224 231 255 / var(--tw-text-opacity))}.text-indigo-300{--tw-text-opacity: 1;color:rgb(165 180 252 / var(--tw-text-opacity))}.text-green-600{--tw-text-opacity: 1;color:rgb(22 163 74 / var(--tw-text-opacity))}.text-blue-400{--tw-text-opacity: 1;color:rgb(96 165 250 / var(--tw-text-opacity))}.text-blue-700{--tw-text-opacity: 1;color:rgb(29 78 216 / var(--tw-text-opacity))}.text-black{--tw-text-opacity: 1;color:rgb(0 0 0 / var(--tw-text-opacity))}.underline{text-decoration-line:underline}.decoration-slate-500{text-decoration-color:#64748b}.underline-offset-4{text-underline-offset:4px}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.opacity-25{opacity:.25}.opacity-0{opacity:0}.opacity-100{opacity:1}.opacity-75{opacity:.75}.shadow-sm{--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow{--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-md{--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-xl{--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-gray-900{--tw-shadow-color: #111827;--tw-shadow: var(--tw-shadow-colored)}.ring-1{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.ring-gray-300{--tw-ring-opacity: 1;--tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity))}.ring-black{--tw-ring-opacity: 1;--tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity))}.ring-opacity-5{--tw-ring-opacity: .05}.blur{--tw-blur: blur(8px);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-150{transition-duration:.15s}.duration-200{transition-duration:.2s}.duration-75{transition-duration:75ms}.duration-300{transition-duration:.3s}.duration-500{transition-duration:.5s}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.ease-linear{transition-timing-function:linear}.btn{display:inline-flex;align-items:center;border-radius:.375rem;padding:.5rem 1rem;font-size:1rem;line-height:1.5rem;font-weight:500;text-transform:uppercase;letter-spacing:.1em;--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow);transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-duration:.15s;transition-timing-function:cubic-bezier(.4,0,.2,1)}.btn:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000);--tw-ring-offset-width: 2px}.btn:disabled{opacity:.25}.btn-primary{--tw-bg-opacity: 1;background-color:rgb(29 78 216 / var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.btn-primary:hover{--tw-bg-opacity: 1;background-color:rgb(30 64 175 / var(--tw-bg-opacity))}.btn-primary:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000);--tw-ring-opacity: 1;--tw-ring-color: rgb(147 197 253 / var(--tw-ring-opacity))}.dark .btn-primary{--tw-bg-opacity: 1;background-color:rgb(37 99 235 / var(--tw-bg-opacity))}.dark .btn-primary:hover{--tw-bg-opacity: 1;background-color:rgb(29 78 216 / var(--tw-bg-opacity))}.dark .btn-primary:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(30 64 175 / var(--tw-ring-opacity))}.btn-secondary{border-width:1px;--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.btn-secondary:hover{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.dark .btn-secondary{--tw-border-opacity: 1;border-color:rgb(107 114 128 / var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.dark .btn-secondary:hover{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.btn-danger{border-width:1px;border-color:transparent;--tw-bg-opacity: 1;background-color:rgb(220 38 38 / var(--tw-bg-opacity));text-transform:uppercase;letter-spacing:.1em;--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.btn-danger:hover{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}.btn-danger:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity))}.btn-danger:active{--tw-bg-opacity: 1;background-color:rgb(185 28 28 / var(--tw-bg-opacity))}.dark .btn-danger:focus{--tw-ring-offset-color: #1f2937}.btn-info{border-width:1px;border-color:transparent;--tw-bg-opacity: 1;background-color:rgb(2 132 199 / var(--tw-bg-opacity));text-transform:uppercase;letter-spacing:.1em;--tw-text-opacity: 1;color:rgb(249 250 251 / var(--tw-text-opacity))}.btn-info:hover{--tw-bg-opacity: 1;background-color:rgb(14 165 233 / var(--tw-bg-opacity))}.btn-info:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000);--tw-ring-opacity: 1;--tw-ring-color: rgb(125 211 252 / var(--tw-ring-opacity))}.btn-info:active{--tw-bg-opacity: 1;background-color:rgb(7 89 133 / var(--tw-bg-opacity))}.dark .btn-info:focus{--tw-ring-offset-color: #7dd3fc}.btn-light{border-width:1px;--tw-border-opacity: 1;border-color:rgb(107 114 128 / var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgb(17 24 39 / var(--tw-text-opacity))}.btn-light:hover{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.dark .btn-light{--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgb(17 24 39 / var(--tw-text-opacity))}.dark .btn-light:hover{--tw-bg-opacity: 1;background-color:rgb(229 231 235 / var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgb(31 41 55 / var(--tw-text-opacity))}.form-controll{border-radius:.375rem;--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity));--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.form-controll:focus{--tw-border-opacity: 1;border-color:rgb(99 102 241 / var(--tw-border-opacity));--tw-ring-opacity: 1;--tw-ring-color: rgb(99 102 241 / var(--tw-ring-opacity))}.dark .form-controll{--tw-border-opacity: 1;border-color:rgb(55 65 81 / var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.dark .form-controll:focus{--tw-border-opacity: 1;border-color:rgb(79 70 229 / var(--tw-border-opacity));--tw-ring-opacity: 1;--tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity))}.checkbox{border-radius:.25rem;--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity));--tw-text-opacity: 1;color:rgb(79 70 229 / var(--tw-text-opacity));--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.checkbox:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(99 102 241 / var(--tw-ring-opacity))}.dark .checkbox{--tw-border-opacity: 1;border-color:rgb(55 65 81 / var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity))}.dark .checkbox:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity));--tw-ring-offset-color: #1f2937}.unChecked{display:inline-block;height:1rem;width:1rem;--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity));padding:.5rem;--tw-text-opacity: 1;color:rgb(0 0 0 / var(--tw-text-opacity))}.dark .unChecked{--tw-text-opacity: 1;color:rgb(249 250 251 / var(--tw-text-opacity))}.checked{height:1rem;width:1rem;--tw-bg-opacity: 1;background-color:rgb(37 99 235 / var(--tw-bg-opacity));padding:.5rem;--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.hover\:border-gray-300:hover{--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.hover\:bg-gray-100:hover{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.hover\:bg-gray-700:hover{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.hover\:bg-gray-50:hover{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.hover\:bg-indigo-600:hover{--tw-bg-opacity: 1;background-color:rgb(79 70 229 / var(--tw-bg-opacity))}.hover\:text-gray-500:hover{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.hover\:text-gray-400:hover{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.hover\:text-gray-700:hover{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.hover\:text-gray-100:hover{--tw-text-opacity: 1;color:rgb(243 244 246 / var(--tw-text-opacity))}.hover\:text-gray-800:hover{--tw-text-opacity: 1;color:rgb(31 41 55 / var(--tw-text-opacity))}.hover\:text-gray-900:hover{--tw-text-opacity: 1;color:rgb(17 24 39 / var(--tw-text-opacity))}.hover\:text-blue-500:hover{--tw-text-opacity: 1;color:rgb(59 130 246 / var(--tw-text-opacity))}.focus\:z-10:focus{z-index:10}.focus\:border-blue-300:focus{--tw-border-opacity: 1;border-color:rgb(147 197 253 / var(--tw-border-opacity))}.focus\:border-indigo-700:focus{--tw-border-opacity: 1;border-color:rgb(67 56 202 / var(--tw-border-opacity))}.focus\:border-gray-300:focus{--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.focus\:border-indigo-500:focus{--tw-border-opacity: 1;border-color:rgb(99 102 241 / var(--tw-border-opacity))}.focus\:border-blue-500:focus{--tw-border-opacity: 1;border-color:rgb(59 130 246 / var(--tw-border-opacity))}.focus\:bg-gray-100:focus{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.focus\:bg-indigo-100:focus{--tw-bg-opacity: 1;background-color:rgb(224 231 255 / var(--tw-bg-opacity))}.focus\:bg-gray-50:focus{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.focus\:text-gray-700:focus{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.focus\:text-indigo-500:focus{--tw-text-opacity: 1;color:rgb(99 102 241 / var(--tw-text-opacity))}.focus\:text-indigo-800:focus{--tw-text-opacity: 1;color:rgb(55 48 163 / var(--tw-text-opacity))}.focus\:text-gray-800:focus{--tw-text-opacity: 1;color:rgb(31 41 55 / var(--tw-text-opacity))}.focus\:text-gray-500:focus{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:ring:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus\:ring-4:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus\:ring-2:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus\:ring-inset:focus{--tw-ring-inset: inset}.focus\:ring-indigo-500:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(99 102 241 / var(--tw-ring-opacity))}.focus\:ring-gray-200:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity))}.focus\:ring-blue-500:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity))}.focus\:ring-gray-300:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity))}.focus\:ring-white:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity))}.focus\:ring-offset-2:focus{--tw-ring-offset-width: 2px}.active\:bg-gray-100:active{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.active\:text-gray-700:active{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.active\:text-gray-500:active{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.group:hover .group-hover\:translate-y-0{--tw-translate-y: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.group:hover .group-hover\:opacity-50{opacity:.5}.group:hover .group-hover\:opacity-100{opacity:1}.dark .dark\:border-gray-700{--tw-border-opacity: 1;border-color:rgb(55 65 81 / var(--tw-border-opacity))}.dark .dark\:border-indigo-600{--tw-border-opacity: 1;border-color:rgb(79 70 229 / var(--tw-border-opacity))}.dark .dark\:border-gray-600{--tw-border-opacity: 1;border-color:rgb(75 85 99 / var(--tw-border-opacity))}.dark .dark\:bg-gray-900{--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity))}.dark .dark\:bg-gray-700{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.dark .dark\:bg-gray-800{--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity))}.dark .dark\:bg-blue-700{--tw-bg-opacity: 1;background-color:rgb(29 78 216 / var(--tw-bg-opacity))}.dark .dark\:bg-indigo-900\/50{background-color:#312e8180}.dark .dark\:bg-blue-800{--tw-bg-opacity: 1;background-color:rgb(30 64 175 / var(--tw-bg-opacity))}.dark .dark\:bg-red-800{--tw-bg-opacity: 1;background-color:rgb(153 27 27 / var(--tw-bg-opacity))}.dark .dark\:text-gray-400{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.dark .dark\:text-gray-100{--tw-text-opacity: 1;color:rgb(243 244 246 / var(--tw-text-opacity))}.dark .dark\:text-gray-300{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.dark .dark\:text-red-400{--tw-text-opacity: 1;color:rgb(248 113 113 / var(--tw-text-opacity))}.dark .dark\:text-gray-900{--tw-text-opacity: 1;color:rgb(17 24 39 / var(--tw-text-opacity))}.dark .dark\:text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.dark .dark\:text-indigo-300{--tw-text-opacity: 1;color:rgb(165 180 252 / var(--tw-text-opacity))}.dark .dark\:text-yellow-400{--tw-text-opacity: 1;color:rgb(250 204 21 / var(--tw-text-opacity))}.dark .dark\:text-gray-50{--tw-text-opacity: 1;color:rgb(249 250 251 / var(--tw-text-opacity))}.dark .dark\:text-blue-200{--tw-text-opacity: 1;color:rgb(191 219 254 / var(--tw-text-opacity))}.dark .dark\:text-gray-500{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.dark .dark\:text-red-200{--tw-text-opacity: 1;color:rgb(254 202 202 / var(--tw-text-opacity))}.dark .dark\:text-gray-200{--tw-text-opacity: 1;color:rgb(229 231 235 / var(--tw-text-opacity))}.dark .dark\:text-green-400{--tw-text-opacity: 1;color:rgb(74 222 128 / var(--tw-text-opacity))}.dark .dark\:text-black{--tw-text-opacity: 1;color:rgb(0 0 0 / var(--tw-text-opacity))}.dark .dark\:placeholder-gray-400::-moz-placeholder{--tw-placeholder-opacity: 1;color:rgb(156 163 175 / var(--tw-placeholder-opacity))}.dark .dark\:placeholder-gray-400::placeholder{--tw-placeholder-opacity: 1;color:rgb(156 163 175 / var(--tw-placeholder-opacity))}.dark .dark\:hover\:border-gray-700:hover{--tw-border-opacity: 1;border-color:rgb(55 65 81 / var(--tw-border-opacity))}.dark .dark\:hover\:border-gray-600:hover{--tw-border-opacity: 1;border-color:rgb(75 85 99 / var(--tw-border-opacity))}.dark .dark\:hover\:bg-gray-700:hover{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.dark .dark\:hover\:bg-gray-800:hover,.dark .hover\:dark\:bg-gray-800:hover{--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity))}.dark .dark\:hover\:bg-gray-900:hover{--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity))}.dark .dark\:hover\:text-gray-300:hover{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.dark .dark\:hover\:text-gray-200:hover{--tw-text-opacity: 1;color:rgb(229 231 235 / var(--tw-text-opacity))}.dark .dark\:hover\:text-white:hover{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.dark .dark\:hover\:text-gray-400:hover{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.dark .dark\:hover\:text-gray-100:hover{--tw-text-opacity: 1;color:rgb(243 244 246 / var(--tw-text-opacity))}.dark .dark\:focus\:border-gray-700:focus{--tw-border-opacity: 1;border-color:rgb(55 65 81 / var(--tw-border-opacity))}.dark .dark\:focus\:border-indigo-300:focus{--tw-border-opacity: 1;border-color:rgb(165 180 252 / var(--tw-border-opacity))}.dark .dark\:focus\:border-gray-600:focus{--tw-border-opacity: 1;border-color:rgb(75 85 99 / var(--tw-border-opacity))}.dark .dark\:focus\:border-blue-500:focus{--tw-border-opacity: 1;border-color:rgb(59 130 246 / var(--tw-border-opacity))}.dark .dark\:focus\:bg-gray-800:focus{--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity))}.dark .dark\:focus\:bg-indigo-900:focus{--tw-bg-opacity: 1;background-color:rgb(49 46 129 / var(--tw-bg-opacity))}.dark .dark\:focus\:bg-gray-700:focus{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.dark .dark\:focus\:bg-gray-900:focus{--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity))}.dark .dark\:focus\:text-gray-300:focus{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.dark .dark\:focus\:text-indigo-200:focus{--tw-text-opacity: 1;color:rgb(199 210 254 / var(--tw-text-opacity))}.dark .dark\:focus\:text-gray-200:focus{--tw-text-opacity: 1;color:rgb(229 231 235 / var(--tw-text-opacity))}.dark .dark\:focus\:text-gray-400:focus{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.dark .dark\:focus\:ring-indigo-600:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity))}.dark .dark\:focus\:ring-gray-700:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(55 65 81 / var(--tw-ring-opacity))}.dark .dark\:focus\:ring-blue-500:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity))}.dark .dark\:focus\:ring-offset-gray-800:focus{--tw-ring-offset-color: #1f2937}@media (min-width: 640px){.sm\:order-last{order:9999}.sm\:col-span-3{grid-column:span 3 / span 3}.sm\:float-right{float:right}.sm\:mx-auto{margin-left:auto;margin-right:auto}.sm\:-my-px{margin-top:-1px;margin-bottom:-1px}.sm\:-mx-6{margin-left:-1.5rem;margin-right:-1.5rem}.sm\:mt-0{margin-top:0}.sm\:ml-10{margin-left:2.5rem}.sm\:ml-6{margin-left:1.5rem}.sm\:ml-16{margin-left:4rem}.sm\:flex{display:flex}.sm\:hidden{display:none}.sm\:h-40{height:10rem}.sm\:h-14{height:3.5rem}.sm\:w-full{width:100%}.sm\:w-40{width:10rem}.sm\:max-w-sm{max-width:24rem}.sm\:max-w-md{max-width:28rem}.sm\:max-w-lg{max-width:32rem}.sm\:max-w-xl{max-width:36rem}.sm\:max-w-2xl{max-width:42rem}.sm\:flex-1{flex:1 1 0%}.sm\:flex-auto{flex:1 1 auto}.sm\:flex-none{flex:none}.sm\:translate-y-0{--tw-translate-y: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:scale-95{--tw-scale-x: .95;--tw-scale-y: .95;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:scale-100{--tw-scale-x: 1;--tw-scale-y: 1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:flex-row{flex-direction:row}.sm\:items-center{align-items:center}.sm\:justify-start{justify-content:flex-start}.sm\:justify-center{justify-content:center}.sm\:justify-between{justify-content:space-between}.sm\:space-y-5>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.25rem * var(--tw-space-y-reverse))}.sm\:space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(.5rem * var(--tw-space-x-reverse));margin-left:calc(.5rem * calc(1 - var(--tw-space-x-reverse)))}.sm\:space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(0px * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(0px * var(--tw-space-y-reverse))}.sm\:rounded-lg{border-radius:.5rem}.sm\:rounded-md{border-radius:.375rem}.sm\:p-4{padding:1rem}.sm\:p-8{padding:2rem}.sm\:p-6{padding:1.5rem}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:px-0{padding-left:0;padding-right:0}.sm\:py-10{padding-top:2.5rem;padding-bottom:2.5rem}.sm\:pt-0{padding-top:0}.sm\:pr-0{padding-right:0}.sm\:text-left{text-align:left}.sm\:text-xl{font-size:1.25rem;line-height:1.75rem}}@media (min-width: 768px){.md\:fixed{position:fixed}.md\:inset-y-0{top:0;bottom:0}.md\:mr-2{margin-right:.5rem}.md\:block{display:block}.md\:flex{display:flex}.md\:hidden{display:none}.md\:w-64{width:16rem}.md\:w-20{width:5rem}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.md\:flex-col{flex-direction:column}.md\:rounded-lg{border-radius:.5rem}.md\:px-8{padding-left:2rem;padding-right:2rem}.md\:px-3{padding-left:.75rem;padding-right:.75rem}.md\:px-6{padding-left:1.5rem;padding-right:1.5rem}.md\:pl-64{padding-left:16rem}.md\:pl-20{padding-left:5rem}}@media (min-width: 1024px){.lg\:col-span-3{grid-column:span 3 / span 3}.lg\:-mx-8{margin-left:-2rem;margin-right:-2rem}.lg\:flex{display:flex}.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.lg\:px-8{padding-left:2rem;padding-right:2rem}}@media (min-width: 1280px){.xl\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}}@media (min-width: 1536px){.\32xl\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}} diff --git a/public/build/assets/app-4f9e7dfc.js b/public/build/assets/app-4dfa7f3b.js similarity index 61% rename from public/build/assets/app-4f9e7dfc.js rename to public/build/assets/app-4dfa7f3b.js index 889c56a..afad62c 100644 --- a/public/build/assets/app-4f9e7dfc.js +++ b/public/build/assets/app-4dfa7f3b.js @@ -1,34 +1,37 @@ -const _b="modulepreload",kb=function(c){return"http://multipurpose-admin-panel-boilerplate.test/build/"+c},Gs={},X2=function(e,r,t){if(!r||r.length===0)return e();const s=document.getElementsByTagName("link");return Promise.all(r.map(i=>{if(i=kb(i),i in Gs)return;Gs[i]=!0;const f=i.endsWith(".css"),l=f?'[rel="stylesheet"]':"";if(!!t)for(let v=s.length-1;v>=0;v--){const H=s[v];if(H.href===i&&(!f||H.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${i}"]${l}`))return;const m=document.createElement("link");if(m.rel=f?"stylesheet":_b,f||(m.as="script",m.crossOrigin=""),m.href=i,document.head.appendChild(m),f)return new Promise((v,H)=>{m.addEventListener("load",v),m.addEventListener("error",()=>H(new Error(`Unable to preload CSS for ${i}`)))})})).then(()=>e())};var m4=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function Tb(c){if(c.__esModule)return c;var e=c.default;if(typeof e=="function"){var r=function t(){if(this instanceof t){var s=[null];s.push.apply(s,arguments);var i=Function.bind.apply(e,s);return new i}return e.apply(this,arguments)};r.prototype=e.prototype}else r={};return Object.defineProperty(r,"__esModule",{value:!0}),Object.keys(c).forEach(function(t){var s=Object.getOwnPropertyDescriptor(c,t);Object.defineProperty(r,t,s.get?s:{enumerable:!0,get:function(){return c[t]}})}),r}var Tc={},Pb={get exports(){return Tc},set exports(c){Tc=c}};/** +const gx="modulepreload",Vx=function(c){return"http://multipurpose-admin-panel-boilerplate.test/build/"+c},Ci={},X2=function(e,r,n){if(!r||r.length===0)return e();const s=document.getElementsByTagName("link");return Promise.all(r.map(i=>{if(i=Vx(i),i in Ci)return;Ci[i]=!0;const f=i.endsWith(".css"),l=f?'[rel="stylesheet"]':"";if(!!n)for(let v=s.length-1;v>=0;v--){const d=s[v];if(d.href===i&&(!f||d.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${i}"]${l}`))return;const m=document.createElement("link");if(m.rel=f?"stylesheet":gx,f||(m.as="script",m.crossOrigin=""),m.href=i,document.head.appendChild(m),f)return new Promise((v,d)=>{m.addEventListener("load",v),m.addEventListener("error",()=>d(new Error(`Unable to preload CSS for ${i}`)))})})).then(()=>e()).catch(i=>{const f=new Event("vite:preloadError",{cancelable:!0});if(f.payload=i,window.dispatchEvent(f),!f.defaultPrevented)throw i})};var d4=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function m7(c){return c&&c.__esModule&&Object.prototype.hasOwnProperty.call(c,"default")?c.default:c}function Mx(c){if(c.__esModule)return c;var e=c.default;if(typeof e=="function"){var r=function n(){return this instanceof n?Reflect.construct(e,arguments,this.constructor):e.apply(this,arguments)};r.prototype=e.prototype}else r={};return Object.defineProperty(r,"__esModule",{value:!0}),Object.keys(c).forEach(function(n){var s=Object.getOwnPropertyDescriptor(c,n);Object.defineProperty(r,n,s.get?s:{enumerable:!0,get:function(){return c[n]}})}),r}var Kc={exports:{}};/** * @license * Lodash * Copyright OpenJS Foundation and other contributors * Released under MIT license * Based on Underscore.js 1.8.3 * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - */(function(c,e){(function(){var r,t="4.17.21",s=200,i="Unsupported core-js use. Try https://npms.io/search?q=ponyfill.",f="Expected a function",l="Invalid `variable` option passed into `_.template`",h="__lodash_hash_undefined__",m=500,v="__lodash_placeholder__",H=1,C=2,x=4,M=1,b=2,P=1,L=2,S=4,E=8,B=16,G=32,c2=64,U=128,F=256,e2=512,s2=30,v2="...",r2=800,H2=16,t2=1,Y2=2,A2=3,B2=1/0,b2=9007199254740991,E1=17976931348623157e292,P2=0/0,m1=4294967295,G1=m1-1,j1=m1>>>1,r6=[["ary",U],["bind",P],["bindKey",L],["curry",E],["curryRight",B],["flip",e2],["partial",G],["partialRight",c2],["rearg",F]],R2="[object Arguments]",C1="[object Array]",i3="[object AsyncFunction]",V1="[object Boolean]",O1="[object Date]",o3="[object DOMException]",i4="[object Error]",w="[object Function]",_="[object GeneratorFunction]",R="[object Map]",K="[object Number]",X="[object Null]",J="[object Object]",a2="[object Promise]",Q="[object Proxy]",Z="[object RegExp]",j="[object Set]",u2="[object String]",i2="[object Symbol]",l2="[object Undefined]",d2="[object WeakMap]",x2="[object WeakSet]",_2="[object ArrayBuffer]",S2="[object DataView]",J2="[object Float32Array]",a1="[object Float64Array]",c4="[object Int8Array]",G4="[object Int16Array]",v4="[object Int32Array]",A4="[object Uint8Array]",f1="[object Uint8ClampedArray]",L1="[object Uint16Array]",d4="[object Uint32Array]",b3=/\b__p \+= '';/g,H4=/\b(__p \+=) '' \+/g,a6=/(__e\(.*?\)|\b__t\)) \+\n'';/g,n6=/&(?:amp|lt|gt|quot|#39);/g,f3=/[&<>"']/g,D6=RegExp(n6.source),x3=RegExp(f3.source),I6=/<%-([\s\S]+?)%>/g,U6=/<%([\s\S]+?)%>/g,t6=/<%=([\s\S]+?)%>/g,l3=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,S8=/^\w*$/,j4=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,W6=/[\\^$.*+?()[\]{}|]/g,O0=RegExp(W6.source),$6=/^\s+/,w8=/\s/,q6=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,y1=/\{\n\/\* \[wrapped with (.+)\] \*/,R0=/,? & /,F0=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,B0=/[()=,{}\[\]\/\s]/,D0=/\\(\\)?/g,I0=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,b1=/\w*$/,U0=/^[-+]0x[0-9a-f]+$/i,W0=/^0b[01]+$/i,$0=/^\[object .+?Constructor\]$/,q0=/^0o[0-7]+$/i,G0=/^(?:0|[1-9]\d*)$/,K1=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,s6=/($^)/,j0=/['\n\r\u2028\u2029\\]/g,i6="\\ud800-\\udfff",K0="\\u0300-\\u036f",X0="\\ufe20-\\ufe2f",o6="\\u20d0-\\u20ff",G6=K0+X0+o6,S3="\\u2700-\\u27bf",z4="a-z\\xdf-\\xf6\\xf8-\\xff",j6="\\xac\\xb1\\xd7\\xf7",Y0="\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf",J0="\\u2000-\\u206f",Q0=" \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",N8="A-Z\\xc0-\\xd6\\xd8-\\xde",A8="\\ufe0e\\ufe0f",w3=j6+Y0+J0+Q0,N3="['’]",A3="["+i6+"]",K6="["+w3+"]",_3="["+G6+"]",_8="\\d+",Z0="["+S3+"]",k8="["+z4+"]",T8="[^"+i6+w3+_8+S3+z4+N8+"]",k3="\\ud83c[\\udffb-\\udfff]",c5="(?:"+_3+"|"+k3+")",P8="[^"+i6+"]",K4="(?:\\ud83c[\\udde6-\\uddff]){2}",e4="[\\ud800-\\udbff][\\udc00-\\udfff]",X1="["+N8+"]",_4="\\u200d",E8="(?:"+k8+"|"+T8+")",k4="(?:"+X1+"|"+T8+")",O8="(?:"+N3+"(?:d|ll|m|re|s|t|ve))?",R8="(?:"+N3+"(?:D|LL|M|RE|S|T|VE))?",F8=c5+"?",B8="["+A8+"]?",D8="(?:"+_4+"(?:"+[P8,K4,e4].join("|")+")"+B8+F8+")*",R1="\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",I8="\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])",X6=B8+F8+D8,f6="(?:"+[Z0,K4,e4].join("|")+")"+X6,Y6="(?:"+[P8+_3+"?",_3,K4,e4,A3].join("|")+")",l6=RegExp(N3,"g"),e5=RegExp(_3,"g"),u6=RegExp(k3+"(?="+k3+")|"+Y6+X6,"g"),J6=RegExp([X1+"?"+k8+"+"+O8+"(?="+[K6,X1,"$"].join("|")+")",k4+"+"+R8+"(?="+[K6,X1+E8,"$"].join("|")+")",X1+"?"+E8+"+"+O8,X1+"+"+R8,I8,R1,_8,f6].join("|"),"g"),U8=RegExp("["+_4+i6+G6+A8+"]"),T4=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,W8=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],Q6=-1,c1={};c1[J2]=c1[a1]=c1[c4]=c1[G4]=c1[v4]=c1[A4]=c1[f1]=c1[L1]=c1[d4]=!0,c1[R2]=c1[C1]=c1[_2]=c1[V1]=c1[S2]=c1[O1]=c1[i4]=c1[w]=c1[R]=c1[K]=c1[J]=c1[Z]=c1[j]=c1[u2]=c1[d2]=!1;var Q2={};Q2[R2]=Q2[C1]=Q2[_2]=Q2[S2]=Q2[V1]=Q2[O1]=Q2[J2]=Q2[a1]=Q2[c4]=Q2[G4]=Q2[v4]=Q2[R]=Q2[K]=Q2[J]=Q2[Z]=Q2[j]=Q2[u2]=Q2[i2]=Q2[A4]=Q2[f1]=Q2[L1]=Q2[d4]=!0,Q2[i4]=Q2[w]=Q2[d2]=!1;var p={À:"A",Á:"A",Â:"A",Ã:"A",Ä:"A",Å:"A",à:"a",á:"a",â:"a",ã:"a",ä:"a",å:"a",Ç:"C",ç:"c",Ð:"D",ð:"d",È:"E",É:"E",Ê:"E",Ë:"E",è:"e",é:"e",ê:"e",ë:"e",Ì:"I",Í:"I",Î:"I",Ï:"I",ì:"i",í:"i",î:"i",ï:"i",Ñ:"N",ñ:"n",Ò:"O",Ó:"O",Ô:"O",Õ:"O",Ö:"O",Ø:"O",ò:"o",ó:"o",ô:"o",õ:"o",ö:"o",ø:"o",Ù:"U",Ú:"U",Û:"U",Ü:"U",ù:"u",ú:"u",û:"u",ü:"u",Ý:"Y",ý:"y",ÿ:"y",Æ:"Ae",æ:"ae",Þ:"Th",þ:"th",ß:"ss",Ā:"A",Ă:"A",Ą:"A",ā:"a",ă:"a",ą:"a",Ć:"C",Ĉ:"C",Ċ:"C",Č:"C",ć:"c",ĉ:"c",ċ:"c",č:"c",Ď:"D",Đ:"D",ď:"d",đ:"d",Ē:"E",Ĕ:"E",Ė:"E",Ę:"E",Ě:"E",ē:"e",ĕ:"e",ė:"e",ę:"e",ě:"e",Ĝ:"G",Ğ:"G",Ġ:"G",Ģ:"G",ĝ:"g",ğ:"g",ġ:"g",ģ:"g",Ĥ:"H",Ħ:"H",ĥ:"h",ħ:"h",Ĩ:"I",Ī:"I",Ĭ:"I",Į:"I",İ:"I",ĩ:"i",ī:"i",ĭ:"i",į:"i",ı:"i",Ĵ:"J",ĵ:"j",Ķ:"K",ķ:"k",ĸ:"k",Ĺ:"L",Ļ:"L",Ľ:"L",Ŀ:"L",Ł:"L",ĺ:"l",ļ:"l",ľ:"l",ŀ:"l",ł:"l",Ń:"N",Ņ:"N",Ň:"N",Ŋ:"N",ń:"n",ņ:"n",ň:"n",ŋ:"n",Ō:"O",Ŏ:"O",Ő:"O",ō:"o",ŏ:"o",ő:"o",Ŕ:"R",Ŗ:"R",Ř:"R",ŕ:"r",ŗ:"r",ř:"r",Ś:"S",Ŝ:"S",Ş:"S",Š:"S",ś:"s",ŝ:"s",ş:"s",š:"s",Ţ:"T",Ť:"T",Ŧ:"T",ţ:"t",ť:"t",ŧ:"t",Ũ:"U",Ū:"U",Ŭ:"U",Ů:"U",Ű:"U",Ų:"U",ũ:"u",ū:"u",ŭ:"u",ů:"u",ű:"u",ų:"u",Ŵ:"W",ŵ:"w",Ŷ:"Y",ŷ:"y",Ÿ:"Y",Ź:"Z",Ż:"Z",Ž:"Z",ź:"z",ż:"z",ž:"z",IJ:"IJ",ij:"ij",Œ:"Oe",œ:"oe",ʼn:"'n",ſ:"s"},g={"&":"&","<":"<",">":">",'"':""","'":"'"},N={"&":"&","<":"<",">":">",""":'"',"'":"'"},D={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},C2=parseFloat,m2=parseInt,E2=typeof m4=="object"&&m4&&m4.Object===Object&&m4,U2=typeof self=="object"&&self&&self.Object===Object&&self,O2=E2||U2||Function("return this")(),$2=e&&!e.nodeType&&e,l1=$2&&!0&&c&&!c.nodeType&&c,F1=l1&&l1.exports===$2,h1=F1&&E2.process,e1=function(){try{var k=l1&&l1.require&&l1.require("util").types;return k||h1&&h1.binding&&h1.binding("util")}catch{}}(),M1=e1&&e1.isArrayBuffer,X4=e1&&e1.isDate,P4=e1&&e1.isMap,u3=e1&&e1.isRegExp,r5=e1&&e1.isSet,Z6=e1&&e1.isTypedArray;function A1(k,I,O){switch(O.length){case 0:return k.call(I);case 1:return k.call(I,O[0]);case 2:return k.call(I,O[0],O[1]);case 3:return k.call(I,O[0],O[1],O[2])}return k.apply(I,O)}function cg(k,I,O,o2){for(var L2=-1,K2=k==null?0:k.length;++L2-1}function Pe(k,I,O){for(var o2=-1,L2=k==null?0:k.length;++o2-1;);return O}function ct(k,I){for(var O=k.length;O--&&$8(I,k[O],0)>-1;);return O}function fg(k,I){for(var O=k.length,o2=0;O--;)k[O]===I&&++o2;return o2}var lg=Fe(p),ug=Fe(g);function hg(k){return"\\"+D[k]}function pg(k,I){return k==null?r:k[I]}function q8(k){return U8.test(k)}function mg(k){return T4.test(k)}function vg(k){for(var I,O=[];!(I=k.next()).done;)O.push(I.value);return O}function Ue(k){var I=-1,O=Array(k.size);return k.forEach(function(o2,L2){O[++I]=[L2,o2]}),O}function et(k,I){return function(O){return k(I(O))}}function m6(k,I){for(var O=-1,o2=k.length,L2=0,K2=[];++O-1}function rV(a,n){var o=this.__data__,u=T7(o,a);return u<0?(++this.size,o.push([a,n])):o[u][1]=n,this}T3.prototype.clear=Qg,T3.prototype.delete=Zg,T3.prototype.get=cV,T3.prototype.has=eV,T3.prototype.set=rV;function P3(a){var n=-1,o=a==null?0:a.length;for(this.clear();++n=n?a:n)),a}function F4(a,n,o,u,d,V){var y,A=n&H,T=n&C,$=n&x;if(o&&(y=d?o(a,u,d,V):o(a)),y!==r)return y;if(!p1(a))return a;var q=y2(a);if(q){if(y=sM(a),!A)return o4(a,y)}else{var Y=J1(a),n2=Y==w||Y==_;if(V6(a))return Rt(a,A);if(Y==J||Y==R2||n2&&!d){if(y=T||n2?{}:rs(a),!A)return T?XV(a,zV(y,a)):KV(a,pt(y,a))}else{if(!Q2[Y])return d?a:{};y=iM(a,Y,A)}}V||(V=new J4);var h2=V.get(a);if(h2)return h2;V.set(a,y),_s(a)?a.forEach(function(M2){y.add(F4(M2,n,o,M2,a,V))}):Ns(a)&&a.forEach(function(M2,F2){y.set(F2,F4(M2,n,o,F2,a,V))});var V2=$?T?m9:p9:T?l4:_1,k2=q?r:V2(a);return E4(k2||a,function(M2,F2){k2&&(F2=M2,M2=a[F2]),f5(y,F2,F4(M2,n,o,F2,a,V))}),y}function gV(a){var n=_1(a);return function(o){return mt(o,a,n)}}function mt(a,n,o){var u=o.length;if(a==null)return!u;for(a=n1(a);u--;){var d=o[u],V=n[d],y=a[d];if(y===r&&!(d in a)||!V(y))return!1}return!0}function vt(a,n,o){if(typeof a!="function")throw new O4(f);return d5(function(){a.apply(r,o)},n)}function l5(a,n,o,u){var d=-1,V=d7,y=!0,A=a.length,T=[],$=n.length;if(!A)return T;o&&(n=u1(n,g4(o))),u?(V=Pe,y=!1):n.length>=s&&(V=a5,y=!1,n=new r8(n));c:for(;++dd?0:d+o),u=u===r||u>d?d:w2(u),u<0&&(u+=d),u=o>u?0:Ts(u);o0&&o(A)?n>1?B1(A,n-1,o,u,d):p6(d,A):u||(d[d.length]=A)}return d}var Xe=Wt(),zt=Wt(!0);function h3(a,n){return a&&Xe(a,n,_1)}function Ye(a,n){return a&&zt(a,n,_1)}function E7(a,n){return h6(n,function(o){return B3(a[o])})}function n8(a,n){n=z6(n,a);for(var o=0,u=n.length;a!=null&&on}function CV(a,n){return a!=null&&r1.call(a,n)}function LV(a,n){return a!=null&&n in n1(a)}function yV(a,n,o){return a>=Y1(n,o)&&a=120&&q.length>=120)?new r8(y&&q):r}q=a[0];var Y=-1,n2=A[0];c:for(;++Y-1;)A!==a&&x7.call(A,T,1),x7.call(a,T,1);return a}function Nt(a,n){for(var o=a?n.length:0,u=o-1;o--;){var d=n[o];if(o==u||d!==V){var V=d;F3(d)?x7.call(a,d,1):s9(a,d)}}return a}function a9(a,n){return a+N7(ft()*(n-a+1))}function RV(a,n,o,u){for(var d=-1,V=S1(w7((n-a)/(o||1)),0),y=O(V);V--;)y[u?V:++d]=a,a+=o;return y}function n9(a,n){var o="";if(!a||n<1||n>b2)return o;do n%2&&(o+=a),n=N7(n/2),n&&(a+=a);while(n);return o}function T2(a,n){return M9(ts(a,n,u4),a+"")}function FV(a){return ht(r0(a))}function BV(a,n){var o=r0(a);return G7(o,a8(n,0,o.length))}function p5(a,n,o,u){if(!p1(a))return a;n=z6(n,a);for(var d=-1,V=n.length,y=V-1,A=a;A!=null&&++dd?0:d+n),o=o>d?d:o,o<0&&(o+=d),d=n>o?0:o-n>>>0,n>>>=0;for(var V=O(d);++u>>1,y=a[V];y!==null&&!M4(y)&&(o?y<=n:y=s){var $=n?null:ZV(a);if($)return z7($);y=!1,d=a5,T=new r8}else T=n?[]:A;c:for(;++u=u?a:B4(a,n,o)}var Ot=Ag||function(a){return O2.clearTimeout(a)};function Rt(a,n){if(n)return a.slice();var o=a.length,u=nt?nt(o):new a.constructor(o);return a.copy(u),u}function l9(a){var n=new a.constructor(a.byteLength);return new y7(n).set(new y7(a)),n}function $V(a,n){var o=n?l9(a.buffer):a.buffer;return new a.constructor(o,a.byteOffset,a.byteLength)}function qV(a){var n=new a.constructor(a.source,b1.exec(a));return n.lastIndex=a.lastIndex,n}function GV(a){return o5?n1(o5.call(a)):{}}function Ft(a,n){var o=n?l9(a.buffer):a.buffer;return new a.constructor(o,a.byteOffset,a.length)}function Bt(a,n){if(a!==n){var o=a!==r,u=a===null,d=a===a,V=M4(a),y=n!==r,A=n===null,T=n===n,$=M4(n);if(!A&&!$&&!V&&a>n||V&&y&&T&&!A&&!$||u&&y&&T||!o&&T||!d)return 1;if(!u&&!V&&!$&&a=A)return T;var $=o[u];return T*($=="desc"?-1:1)}}return a.index-n.index}function Dt(a,n,o,u){for(var d=-1,V=a.length,y=o.length,A=-1,T=n.length,$=S1(V-y,0),q=O(T+$),Y=!u;++A1?o[d-1]:r,y=d>2?o[2]:r;for(V=a.length>3&&typeof V=="function"?(d--,V):r,y&&a4(o[0],o[1],y)&&(V=d<3?r:V,d=1),n=n1(n);++u-1?d[V?n[y]:y]:r}}function Gt(a){return R3(function(n){var o=n.length,u=o,d=R4.prototype.thru;for(a&&n.reverse();u--;){var V=n[u];if(typeof V!="function")throw new O4(f);if(d&&!y&&$7(V)=="wrapper")var y=new R4([],!0)}for(u=y?u:o;++u1&&W2.reverse(),q&&TA))return!1;var $=V.get(a),q=V.get(n);if($&&q)return $==n&&q==a;var Y=-1,n2=!0,h2=o&b?new r8:r;for(V.set(a,n),V.set(n,a);++Y1?"& ":"")+n[u],n=n.join(o>2?", ":" "),a.replace(q6,`{ -/* [wrapped with `+n+`] */ -`)}function fM(a){return y2(a)||i8(a)||!!(it&&a&&a[it])}function F3(a,n){var o=typeof a;return n=n??b2,!!n&&(o=="number"||o!="symbol"&&G0.test(a))&&a>-1&&a%1==0&&a0){if(++n>=r2)return arguments[0]}else n=0;return a.apply(r,arguments)}}function G7(a,n){var o=-1,u=a.length,d=u-1;for(n=n===r?u:n;++o1?a[n-1]:r;return o=typeof o=="function"?(a.pop(),o):r,Hs(a,o)});function zs(a){var n=z(a);return n.__chain__=!0,n}function VC(a,n){return n(a),a}function j7(a,n){return n(a)}var MC=R3(function(a){var n=a.length,o=n?a[0]:0,u=this.__wrapped__,d=function(V){return Ke(V,a)};return n>1||this.__actions__.length||!(u instanceof D2)||!F3(o)?this.thru(d):(u=u.slice(o,+o+(n?1:0)),u.__actions__.push({func:j7,args:[d],thisArg:r}),new R4(u,this.__chain__).thru(function(V){return n&&!V.length&&V.push(r),V}))});function CC(){return zs(this)}function LC(){return new R4(this.value(),this.__chain__)}function yC(){this.__values__===r&&(this.__values__=ks(this.value()));var a=this.__index__>=this.__values__.length,n=a?r:this.__values__[this.__index__++];return{done:a,value:n}}function bC(){return this}function xC(a){for(var n,o=this;o instanceof k7;){var u=us(o);u.__index__=0,u.__values__=r,n?d.__wrapped__=u:n=u;var d=u;o=o.__wrapped__}return d.__wrapped__=a,n}function SC(){var a=this.__wrapped__;if(a instanceof D2){var n=a;return this.__actions__.length&&(n=new D2(this)),n=n.reverse(),n.__actions__.push({func:j7,args:[C9],thisArg:r}),new R4(n,this.__chain__)}return this.thru(C9)}function wC(){return Pt(this.__wrapped__,this.__actions__)}var NC=B7(function(a,n,o){r1.call(a,o)?++a[o]:E3(a,o,1)});function AC(a,n,o){var u=y2(a)?jn:VV;return o&&a4(a,n,o)&&(n=r),u(a,g2(n,3))}function _C(a,n){var o=y2(a)?h6:Ht;return o(a,g2(n,3))}var kC=qt(hs),TC=qt(ps);function PC(a,n){return B1(K7(a,n),1)}function EC(a,n){return B1(K7(a,n),B2)}function OC(a,n,o){return o=o===r?1:w2(o),B1(K7(a,n),o)}function gs(a,n){var o=y2(a)?E4:d6;return o(a,g2(n,3))}function Vs(a,n){var o=y2(a)?eg:dt;return o(a,g2(n,3))}var RC=B7(function(a,n,o){r1.call(a,o)?a[o].push(n):E3(a,o,[n])});function FC(a,n,o,u){a=f4(a)?a:r0(a),o=o&&!u?w2(o):0;var d=a.length;return o<0&&(o=S1(d+o,0)),Z7(a)?o<=d&&a.indexOf(n,o)>-1:!!d&&$8(a,n,o)>-1}var BC=T2(function(a,n,o){var u=-1,d=typeof n=="function",V=f4(a)?O(a.length):[];return d6(a,function(y){V[++u]=d?A1(n,y,o):u5(y,n,o)}),V}),DC=B7(function(a,n,o){E3(a,o,n)});function K7(a,n){var o=y2(a)?u1:Lt;return o(a,g2(n,3))}function IC(a,n,o,u){return a==null?[]:(y2(n)||(n=n==null?[]:[n]),o=u?r:o,y2(o)||(o=o==null?[]:[o]),St(a,n,o))}var UC=B7(function(a,n,o){a[o?0:1].push(n)},function(){return[[],[]]});function WC(a,n,o){var u=y2(a)?Ee:Jn,d=arguments.length<3;return u(a,g2(n,4),o,d,d6)}function $C(a,n,o){var u=y2(a)?rg:Jn,d=arguments.length<3;return u(a,g2(n,4),o,d,dt)}function qC(a,n){var o=y2(a)?h6:Ht;return o(a,J7(g2(n,3)))}function GC(a){var n=y2(a)?ht:FV;return n(a)}function jC(a,n,o){(o?a4(a,n,o):n===r)?n=1:n=w2(n);var u=y2(a)?vV:BV;return u(a,n)}function KC(a){var n=y2(a)?dV:IV;return n(a)}function XC(a){if(a==null)return 0;if(f4(a))return Z7(a)?G8(a):a.length;var n=J1(a);return n==R||n==j?a.size:c9(a).length}function YC(a,n,o){var u=y2(a)?Oe:UV;return o&&a4(a,n,o)&&(n=r),u(a,g2(n,3))}var JC=T2(function(a,n){if(a==null)return[];var o=n.length;return o>1&&a4(a,n[0],n[1])?n=[]:o>2&&a4(n[0],n[1],n[2])&&(n=[n[0]]),St(a,B1(n,1),[])}),X7=_g||function(){return O2.Date.now()};function QC(a,n){if(typeof n!="function")throw new O4(f);return a=w2(a),function(){if(--a<1)return n.apply(this,arguments)}}function Ms(a,n,o){return n=o?r:n,n=a&&n==null?a.length:n,O3(a,U,r,r,r,r,n)}function Cs(a,n){var o;if(typeof n!="function")throw new O4(f);return a=w2(a),function(){return--a>0&&(o=n.apply(this,arguments)),a<=1&&(n=r),o}}var y9=T2(function(a,n,o){var u=P;if(o.length){var d=m6(o,c0(y9));u|=G}return O3(a,u,n,o,d)}),Ls=T2(function(a,n,o){var u=P|L;if(o.length){var d=m6(o,c0(Ls));u|=G}return O3(n,u,a,o,d)});function ys(a,n,o){n=o?r:n;var u=O3(a,E,r,r,r,r,r,n);return u.placeholder=ys.placeholder,u}function bs(a,n,o){n=o?r:n;var u=O3(a,B,r,r,r,r,r,n);return u.placeholder=bs.placeholder,u}function xs(a,n,o){var u,d,V,y,A,T,$=0,q=!1,Y=!1,n2=!0;if(typeof a!="function")throw new O4(f);n=I4(n)||0,p1(o)&&(q=!!o.leading,Y="maxWait"in o,V=Y?S1(I4(o.maxWait)||0,n):V,n2="trailing"in o?!!o.trailing:n2);function h2(z1){var Z4=u,I3=d;return u=d=r,$=z1,y=a.apply(I3,Z4),y}function V2(z1){return $=z1,A=d5(F2,n),q?h2(z1):y}function k2(z1){var Z4=z1-T,I3=z1-$,qs=n-Z4;return Y?Y1(qs,V-I3):qs}function M2(z1){var Z4=z1-T,I3=z1-$;return T===r||Z4>=n||Z4<0||Y&&I3>=V}function F2(){var z1=X7();if(M2(z1))return W2(z1);A=d5(F2,k2(z1))}function W2(z1){return A=r,n2&&u?h2(z1):(u=d=r,y)}function C4(){A!==r&&Ot(A),$=0,u=T=d=A=r}function n4(){return A===r?y:W2(X7())}function L4(){var z1=X7(),Z4=M2(z1);if(u=arguments,d=this,T=z1,Z4){if(A===r)return V2(T);if(Y)return Ot(A),A=d5(F2,n),h2(T)}return A===r&&(A=d5(F2,n)),y}return L4.cancel=C4,L4.flush=n4,L4}var ZC=T2(function(a,n){return vt(a,1,n)}),cL=T2(function(a,n,o){return vt(a,I4(n)||0,o)});function eL(a){return O3(a,e2)}function Y7(a,n){if(typeof a!="function"||n!=null&&typeof n!="function")throw new O4(f);var o=function(){var u=arguments,d=n?n.apply(this,u):u[0],V=o.cache;if(V.has(d))return V.get(d);var y=a.apply(this,u);return o.cache=V.set(d,y)||V,y};return o.cache=new(Y7.Cache||P3),o}Y7.Cache=P3;function J7(a){if(typeof a!="function")throw new O4(f);return function(){var n=arguments;switch(n.length){case 0:return!a.call(this);case 1:return!a.call(this,n[0]);case 2:return!a.call(this,n[0],n[1]);case 3:return!a.call(this,n[0],n[1],n[2])}return!a.apply(this,n)}}function rL(a){return Cs(2,a)}var aL=WV(function(a,n){n=n.length==1&&y2(n[0])?u1(n[0],g4(g2())):u1(B1(n,1),g4(g2()));var o=n.length;return T2(function(u){for(var d=-1,V=Y1(u.length,o);++d=n}),i8=Vt(function(){return arguments}())?Vt:function(a){return v1(a)&&r1.call(a,"callee")&&!st.call(a,"callee")},y2=O.isArray,zL=M1?g4(M1):xV;function f4(a){return a!=null&&Q7(a.length)&&!B3(a)}function H1(a){return v1(a)&&f4(a)}function gL(a){return a===!0||a===!1||v1(a)&&r4(a)==V1}var V6=Tg||O9,VL=X4?g4(X4):SV;function ML(a){return v1(a)&&a.nodeType===1&&!H5(a)}function CL(a){if(a==null)return!0;if(f4(a)&&(y2(a)||typeof a=="string"||typeof a.splice=="function"||V6(a)||e0(a)||i8(a)))return!a.length;var n=J1(a);if(n==R||n==j)return!a.size;if(v5(a))return!c9(a).length;for(var o in a)if(r1.call(a,o))return!1;return!0}function LL(a,n){return h5(a,n)}function yL(a,n,o){o=typeof o=="function"?o:r;var u=o?o(a,n):r;return u===r?h5(a,n,r,o):!!u}function x9(a){if(!v1(a))return!1;var n=r4(a);return n==i4||n==o3||typeof a.message=="string"&&typeof a.name=="string"&&!H5(a)}function bL(a){return typeof a=="number"&&ot(a)}function B3(a){if(!p1(a))return!1;var n=r4(a);return n==w||n==_||n==i3||n==Q}function ws(a){return typeof a=="number"&&a==w2(a)}function Q7(a){return typeof a=="number"&&a>-1&&a%1==0&&a<=b2}function p1(a){var n=typeof a;return a!=null&&(n=="object"||n=="function")}function v1(a){return a!=null&&typeof a=="object"}var Ns=P4?g4(P4):NV;function xL(a,n){return a===n||Ze(a,n,d9(n))}function SL(a,n,o){return o=typeof o=="function"?o:r,Ze(a,n,d9(n),o)}function wL(a){return As(a)&&a!=+a}function NL(a){if(hM(a))throw new L2(i);return Mt(a)}function AL(a){return a===null}function _L(a){return a==null}function As(a){return typeof a=="number"||v1(a)&&r4(a)==K}function H5(a){if(!v1(a)||r4(a)!=J)return!1;var n=b7(a);if(n===null)return!0;var o=r1.call(n,"constructor")&&n.constructor;return typeof o=="function"&&o instanceof o&&M7.call(o)==Sg}var S9=u3?g4(u3):AV;function kL(a){return ws(a)&&a>=-b2&&a<=b2}var _s=r5?g4(r5):_V;function Z7(a){return typeof a=="string"||!y2(a)&&v1(a)&&r4(a)==u2}function M4(a){return typeof a=="symbol"||v1(a)&&r4(a)==i2}var e0=Z6?g4(Z6):kV;function TL(a){return a===r}function PL(a){return v1(a)&&J1(a)==d2}function EL(a){return v1(a)&&r4(a)==x2}var OL=W7(e9),RL=W7(function(a,n){return a<=n});function ks(a){if(!a)return[];if(f4(a))return Z7(a)?Y4(a):o4(a);if(n5&&a[n5])return vg(a[n5]());var n=J1(a),o=n==R?Ue:n==j?z7:r0;return o(a)}function D3(a){if(!a)return a===0?a:0;if(a=I4(a),a===B2||a===-B2){var n=a<0?-1:1;return n*E1}return a===a?a:0}function w2(a){var n=D3(a),o=n%1;return n===n?o?n-o:n:0}function Ts(a){return a?a8(w2(a),0,m1):0}function I4(a){if(typeof a=="number")return a;if(M4(a))return P2;if(p1(a)){var n=typeof a.valueOf=="function"?a.valueOf():a;a=p1(n)?n+"":n}if(typeof a!="string")return a===0?a:+a;a=Qn(a);var o=W0.test(a);return o||q0.test(a)?m2(a.slice(2),o?2:8):U0.test(a)?P2:+a}function Ps(a){return p3(a,l4(a))}function FL(a){return a?a8(w2(a),-b2,b2):a===0?a:0}function Z2(a){return a==null?"":V4(a)}var BL=Q8(function(a,n){if(v5(n)||f4(n)){p3(n,_1(n),a);return}for(var o in n)r1.call(n,o)&&f5(a,o,n[o])}),Es=Q8(function(a,n){p3(n,l4(n),a)}),cc=Q8(function(a,n,o,u){p3(n,l4(n),a,u)}),DL=Q8(function(a,n,o,u){p3(n,_1(n),a,u)}),IL=R3(Ke);function UL(a,n){var o=J8(a);return n==null?o:pt(o,n)}var WL=T2(function(a,n){a=n1(a);var o=-1,u=n.length,d=u>2?n[2]:r;for(d&&a4(n[0],n[1],d)&&(u=1);++o1),V}),p3(a,m9(a),o),u&&(o=F4(o,H|C|x,cM));for(var d=n.length;d--;)s9(o,n[d]);return o});function iy(a,n){return Rs(a,J7(g2(n)))}var oy=R3(function(a,n){return a==null?{}:EV(a,n)});function Rs(a,n){if(a==null)return{};var o=u1(m9(a),function(u){return[u]});return n=g2(n),wt(a,o,function(u,d){return n(u,d[0])})}function fy(a,n,o){n=z6(n,a);var u=-1,d=n.length;for(d||(d=1,a=r);++un){var u=a;a=n,n=u}if(o||a%1||n%1){var d=ft();return Y1(a+d*(n-a+C2("1e-"+((d+"").length-1))),n)}return a9(a,n)}var Vy=Z8(function(a,n,o){return n=n.toLowerCase(),a+(o?Ds(n):n)});function Ds(a){return A9(Z2(a).toLowerCase())}function Is(a){return a=Z2(a),a&&a.replace(K1,lg).replace(e5,"")}function My(a,n,o){a=Z2(a),n=V4(n);var u=a.length;o=o===r?u:a8(w2(o),0,u);var d=o;return o-=n.length,o>=0&&a.slice(o,d)==n}function Cy(a){return a=Z2(a),a&&x3.test(a)?a.replace(f3,ug):a}function Ly(a){return a=Z2(a),a&&O0.test(a)?a.replace(W6,"\\$&"):a}var yy=Z8(function(a,n,o){return a+(o?"-":"")+n.toLowerCase()}),by=Z8(function(a,n,o){return a+(o?" ":"")+n.toLowerCase()}),xy=$t("toLowerCase");function Sy(a,n,o){a=Z2(a),n=w2(n);var u=n?G8(a):0;if(!n||u>=n)return a;var d=(n-u)/2;return U7(N7(d),o)+a+U7(w7(d),o)}function wy(a,n,o){a=Z2(a),n=w2(n);var u=n?G8(a):0;return n&&u>>0,o?(a=Z2(a),a&&(typeof n=="string"||n!=null&&!S9(n))&&(n=V4(n),!n&&q8(a))?g6(Y4(a),0,o):a.split(n,o)):[]}var Ey=Z8(function(a,n,o){return a+(o?" ":"")+A9(n)});function Oy(a,n,o){return a=Z2(a),o=o==null?0:a8(w2(o),0,a.length),n=V4(n),a.slice(o,o+n.length)==n}function Ry(a,n,o){var u=z.templateSettings;o&&a4(a,n,o)&&(n=r),a=Z2(a),n=cc({},n,u,Jt);var d=cc({},n.imports,u.imports,Jt),V=_1(d),y=Ie(d,V),A,T,$=0,q=n.interpolate||s6,Y="__p += '",n2=We((n.escape||s6).source+"|"+q.source+"|"+(q===t6?I0:s6).source+"|"+(n.evaluate||s6).source+"|$","g"),h2="//# sourceURL="+(r1.call(n,"sourceURL")?(n.sourceURL+"").replace(/\s/g," "):"lodash.templateSources["+ ++Q6+"]")+` -`;a.replace(n2,function(M2,F2,W2,C4,n4,L4){return W2||(W2=C4),Y+=a.slice($,L4).replace(j0,hg),F2&&(A=!0,Y+=`' + + */Kc.exports;(function(c,e){(function(){var r,n="4.17.21",s=200,i="Unsupported core-js use. Try https://npms.io/search?q=ponyfill.",f="Expected a function",l="Invalid `variable` option passed into `_.template`",u="__lodash_hash_undefined__",m=500,v="__lodash_placeholder__",d=1,M=2,x=4,V=1,b=2,k=1,y=2,C=4,A=8,E=16,B=32,q=64,I=128,R=256,Q=512,a2=30,i2="...",r2=800,H2=16,t2=1,Y2=2,A2=3,B2=1/0,x2=9007199254740991,O1=17976931348623157e292,T2=0/0,d1=4294967295,G1=d1-1,K1=d1>>>1,o6=[["ary",I],["bind",k],["bindKey",y],["curry",A],["curryRight",E],["flip",Q],["partial",B],["partialRight",q],["rearg",R]],R2="[object Arguments]",b1="[object Array]",l3="[object AsyncFunction]",C1="[object Boolean]",R1="[object Date]",u3="[object DOMException]",f4="[object Error]",w="[object Function]",P="[object GeneratorFunction]",D="[object Map]",X="[object Number]",Y="[object Null]",Z="[object Object]",n2="[object Promise]",c2="[object Proxy]",e2="[object RegExp]",K="[object Set]",h2="[object String]",o2="[object Symbol]",u2="[object Undefined]",z2="[object WeakMap]",S2="[object WeakSet]",_2="[object ArrayBuffer]",w2="[object DataView]",J2="[object Float32Array]",a1="[object Float64Array]",r4="[object Int8Array]",J4="[object Int16Array]",z4="[object Int32Array]",T4="[object Uint8Array]",f1="[object Uint8ClampedArray]",x1="[object Uint16Array]",g4="[object Uint32Array]",N3=/\b__p \+= '';/g,V4=/\b(__p \+=) '' \+/g,f6=/(__e\(.*?\)|\b__t\)) \+\n'';/g,l6=/&(?:amp|lt|gt|quot|#39);/g,h3=/[&<>"']/g,K6=RegExp(l6.source),A3=RegExp(h3.source),X6=/<%-([\s\S]+?)%>/g,Y6=/<%([\s\S]+?)%>/g,u6=/<%=([\s\S]+?)%>/g,p3=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,R8=/^\w*$/,Q4=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,J6=/[\\^$.*+?()[\]{}|]/g,Y0=RegExp(J6.source),Q6=/^\s+/,F8=/\s/,Z6=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,S1=/\{\n\/\* \[wrapped with (.+)\] \*/,J0=/,? & /,Q0=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,Z0=/[()=,{}\[\]\/\s]/,c5=/\\(\\)?/g,e5=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,w1=/\w*$/,r5=/^[-+]0x[0-9a-f]+$/i,a5=/^0b[01]+$/i,n5=/^\[object .+?Constructor\]$/,t5=/^0o[0-7]+$/i,s5=/^(?:0|[1-9]\d*)$/,X1=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,h6=/($^)/,i5=/['\n\r\u2028\u2029\\]/g,p6="\\ud800-\\udfff",o5="\\u0300-\\u036f",f5="\\ufe20-\\ufe2f",m6="\\u20d0-\\u20ff",c8=o5+f5+m6,_3="\\u2700-\\u27bf",M4="a-z\\xdf-\\xf6\\xf8-\\xff",e8="\\xac\\xb1\\xd7\\xf7",l5="\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf",u5="\\u2000-\\u206f",h5=" \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",B8="A-Z\\xc0-\\xd6\\xd8-\\xde",D8="\\ufe0e\\ufe0f",k3=e8+l5+u5+h5,P3="['’]",T3="["+p6+"]",r8="["+k3+"]",E3="["+c8+"]",I8="\\d+",p5="["+_3+"]",U8="["+M4+"]",W8="[^"+p6+k3+I8+_3+M4+B8+"]",O3="\\ud83c[\\udffb-\\udfff]",m5="(?:"+E3+"|"+O3+")",$8="[^"+p6+"]",Z4="(?:\\ud83c[\\udde6-\\uddff]){2}",a4="[\\ud800-\\udbff][\\udc00-\\udfff]",Y1="["+B8+"]",E4="\\u200d",q8="(?:"+U8+"|"+W8+")",O4="(?:"+Y1+"|"+W8+")",j8="(?:"+P3+"(?:d|ll|m|re|s|t|ve))?",G8="(?:"+P3+"(?:D|LL|M|RE|S|T|VE))?",K8=m5+"?",X8="["+D8+"]?",Y8="(?:"+E4+"(?:"+[$8,Z4,a4].join("|")+")"+X8+K8+")*",F1="\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",J8="\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])",a8=X8+K8+Y8,v6="(?:"+[p5,Z4,a4].join("|")+")"+a8,n8="(?:"+[$8+E3+"?",E3,Z4,a4,T3].join("|")+")",d6=RegExp(P3,"g"),v5=RegExp(E3,"g"),H6=RegExp(O3+"(?="+O3+")|"+n8+a8,"g"),t8=RegExp([Y1+"?"+U8+"+"+j8+"(?="+[r8,Y1,"$"].join("|")+")",O4+"+"+G8+"(?="+[r8,Y1+q8,"$"].join("|")+")",Y1+"?"+q8+"+"+j8,Y1+"+"+G8,J8,F1,I8,v6].join("|"),"g"),Q8=RegExp("["+E4+p6+c8+D8+"]"),R4=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,Z8=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],s8=-1,c1={};c1[J2]=c1[a1]=c1[r4]=c1[J4]=c1[z4]=c1[T4]=c1[f1]=c1[x1]=c1[g4]=!0,c1[R2]=c1[b1]=c1[_2]=c1[C1]=c1[w2]=c1[R1]=c1[f4]=c1[w]=c1[D]=c1[X]=c1[Z]=c1[e2]=c1[K]=c1[h2]=c1[z2]=!1;var Q2={};Q2[R2]=Q2[b1]=Q2[_2]=Q2[w2]=Q2[C1]=Q2[R1]=Q2[J2]=Q2[a1]=Q2[r4]=Q2[J4]=Q2[z4]=Q2[D]=Q2[X]=Q2[Z]=Q2[e2]=Q2[K]=Q2[h2]=Q2[o2]=Q2[T4]=Q2[f1]=Q2[x1]=Q2[g4]=!0,Q2[f4]=Q2[w]=Q2[z2]=!1;var p={À:"A",Á:"A",Â:"A",Ã:"A",Ä:"A",Å:"A",à:"a",á:"a",â:"a",ã:"a",ä:"a",å:"a",Ç:"C",ç:"c",Ð:"D",ð:"d",È:"E",É:"E",Ê:"E",Ë:"E",è:"e",é:"e",ê:"e",ë:"e",Ì:"I",Í:"I",Î:"I",Ï:"I",ì:"i",í:"i",î:"i",ï:"i",Ñ:"N",ñ:"n",Ò:"O",Ó:"O",Ô:"O",Õ:"O",Ö:"O",Ø:"O",ò:"o",ó:"o",ô:"o",õ:"o",ö:"o",ø:"o",Ù:"U",Ú:"U",Û:"U",Ü:"U",ù:"u",ú:"u",û:"u",ü:"u",Ý:"Y",ý:"y",ÿ:"y",Æ:"Ae",æ:"ae",Þ:"Th",þ:"th",ß:"ss",Ā:"A",Ă:"A",Ą:"A",ā:"a",ă:"a",ą:"a",Ć:"C",Ĉ:"C",Ċ:"C",Č:"C",ć:"c",ĉ:"c",ċ:"c",č:"c",Ď:"D",Đ:"D",ď:"d",đ:"d",Ē:"E",Ĕ:"E",Ė:"E",Ę:"E",Ě:"E",ē:"e",ĕ:"e",ė:"e",ę:"e",ě:"e",Ĝ:"G",Ğ:"G",Ġ:"G",Ģ:"G",ĝ:"g",ğ:"g",ġ:"g",ģ:"g",Ĥ:"H",Ħ:"H",ĥ:"h",ħ:"h",Ĩ:"I",Ī:"I",Ĭ:"I",Į:"I",İ:"I",ĩ:"i",ī:"i",ĭ:"i",į:"i",ı:"i",Ĵ:"J",ĵ:"j",Ķ:"K",ķ:"k",ĸ:"k",Ĺ:"L",Ļ:"L",Ľ:"L",Ŀ:"L",Ł:"L",ĺ:"l",ļ:"l",ľ:"l",ŀ:"l",ł:"l",Ń:"N",Ņ:"N",Ň:"N",Ŋ:"N",ń:"n",ņ:"n",ň:"n",ŋ:"n",Ō:"O",Ŏ:"O",Ő:"O",ō:"o",ŏ:"o",ő:"o",Ŕ:"R",Ŗ:"R",Ř:"R",ŕ:"r",ŗ:"r",ř:"r",Ś:"S",Ŝ:"S",Ş:"S",Š:"S",ś:"s",ŝ:"s",ş:"s",š:"s",Ţ:"T",Ť:"T",Ŧ:"T",ţ:"t",ť:"t",ŧ:"t",Ũ:"U",Ū:"U",Ŭ:"U",Ů:"U",Ű:"U",Ų:"U",ũ:"u",ū:"u",ŭ:"u",ů:"u",ű:"u",ų:"u",Ŵ:"W",ŵ:"w",Ŷ:"Y",ŷ:"y",Ÿ:"Y",Ź:"Z",Ż:"Z",Ž:"Z",ź:"z",ż:"z",ž:"z",IJ:"IJ",ij:"ij",Œ:"Oe",œ:"oe",ʼn:"'n",ſ:"s"},g={"&":"&","<":"<",">":">",'"':""","'":"'"},N={"&":"&","<":"<",">":">",""":'"',"'":"'"},U={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},C2=parseFloat,d2=parseInt,E2=typeof d4=="object"&&d4&&d4.Object===Object&&d4,U2=typeof self=="object"&&self&&self.Object===Object&&self,O2=E2||U2||Function("return this")(),$2=e&&!e.nodeType&&e,l1=$2&&!0&&c&&!c.nodeType&&c,B1=l1&&l1.exports===$2,p1=B1&&E2.process,e1=function(){try{var T=l1&&l1.require&&l1.require("util").types;return T||p1&&p1.binding&&p1.binding("util")}catch{}}(),L1=e1&&e1.isArrayBuffer,c3=e1&&e1.isDate,F4=e1&&e1.isMap,m3=e1&&e1.isRegExp,d5=e1&&e1.isSet,i8=e1&&e1.isTypedArray;function P1(T,W,F){switch(F.length){case 0:return T.call(W);case 1:return T.call(W,F[0]);case 2:return T.call(W,F[0],F[1]);case 3:return T.call(W,F[0],F[1],F[2])}return T.apply(W,F)}function Ug(T,W,F,f2){for(var y2=-1,K2=T==null?0:T.length;++y2-1}function t9(T,W,F){for(var f2=-1,y2=T==null?0:T.length;++f2-1;);return F}function At(T,W){for(var F=T.length;F--&&c0(W,T[F],0)>-1;);return F}function Jg(T,W){for(var F=T.length,f2=0;F--;)T[F]===W&&++f2;return f2}var Qg=f9(p),Zg=f9(g);function cV(T){return"\\"+U[T]}function eV(T,W){return T==null?r:T[W]}function e0(T){return Q8.test(T)}function rV(T){return R4.test(T)}function aV(T){for(var W,F=[];!(W=T.next()).done;)F.push(W.value);return F}function p9(T){var W=-1,F=Array(T.size);return T.forEach(function(f2,y2){F[++W]=[y2,f2]}),F}function _t(T,W){return function(F){return T(W(F))}}function V6(T,W){for(var F=-1,f2=T.length,y2=0,K2=[];++F-1}function $V(a,t){var o=this.__data__,h=G7(o,a);return h<0?(++this.size,o.push([a,t])):o[h][1]=t,this}R3.prototype.clear=DV,R3.prototype.delete=IV,R3.prototype.get=UV,R3.prototype.has=WV,R3.prototype.set=$V;function F3(a){var t=-1,o=a==null?0:a.length;for(this.clear();++t=t?a:t)),a}function U4(a,t,o,h,H,L){var S,_=t&d,O=t&M,$=t&x;if(o&&(S=H?o(a,h,H,L):o(a)),S!==r)return S;if(!m1(a))return a;var j=b2(a);if(j){if(S=KM(a),!_)return l4(a,S)}else{var J=Q1(a),s2=J==w||J==P;if(x6(a))return ps(a,_);if(J==Z||J==R2||s2&&!H){if(S=O||s2?{}:ks(a),!_)return O?RM(a,sM(S,a)):OM(a,Wt(S,a))}else{if(!Q2[J])return H?a:{};S=XM(a,J,_)}}L||(L=new r3);var m2=L.get(a);if(m2)return m2;L.set(a,S),ii(a)?a.forEach(function(M2){S.add(U4(M2,t,o,M2,a,L))}):ti(a)&&a.forEach(function(M2,F2){S.set(F2,U4(M2,t,o,F2,a,L))});var V2=$?O?B9:F9:O?h4:T1,k2=j?r:V2(a);return B4(k2||a,function(M2,F2){k2&&(F2=M2,M2=a[F2]),L5(S,F2,U4(M2,t,o,F2,a,L))}),S}function iM(a){var t=T1(a);return function(o){return $t(o,a,t)}}function $t(a,t,o){var h=o.length;if(a==null)return!h;for(a=t1(a);h--;){var H=o[h],L=t[H],S=a[H];if(S===r&&!(H in a)||!L(S))return!1}return!0}function qt(a,t,o){if(typeof a!="function")throw new D4(f);return A5(function(){a.apply(r,o)},t)}function y5(a,t,o,h){var H=-1,L=A7,S=!0,_=a.length,O=[],$=t.length;if(!_)return O;o&&(t=u1(t,C4(o))),h?(L=t9,S=!1):t.length>=s&&(L=H5,S=!1,t=new l8(t));c:for(;++H<_;){var j=a[H],J=o==null?j:o(j);if(j=h||j!==0?j:0,S&&J===J){for(var s2=$;s2--;)if(t[s2]===J)continue c;O.push(j)}else L(t,J,h)||O.push(j)}return O}var C6=zs(v3),jt=zs(M9,!0);function oM(a,t){var o=!0;return C6(a,function(h,H,L){return o=!!t(h,H,L),o}),o}function K7(a,t,o){for(var h=-1,H=a.length;++hH?0:H+o),h=h===r||h>H?H:N2(h),h<0&&(h+=H),h=o>h?0:fi(h);o0&&o(_)?t>1?D1(_,t-1,o,h,H):g6(H,_):h||(H[H.length]=_)}return H}var V9=gs(),Kt=gs(!0);function v3(a,t){return a&&V9(a,t,T1)}function M9(a,t){return a&&Kt(a,t,T1)}function X7(a,t){return z6(t,function(o){return W3(a[o])})}function h8(a,t){t=y6(t,a);for(var o=0,h=t.length;a!=null&&ot}function lM(a,t){return a!=null&&r1.call(a,t)}function uM(a,t){return a!=null&&t in t1(a)}function hM(a,t,o){return a>=J1(t,o)&&a=120&&j.length>=120)?new l8(S&&j):r}j=a[0];var J=-1,s2=_[0];c:for(;++J-1;)_!==a&&D7.call(_,O,1),D7.call(a,O,1);return a}function ts(a,t){for(var o=a?t.length:0,h=o-1;o--;){var H=t[o];if(o==h||H!==L){var L=H;U3(H)?D7.call(a,H,1):_9(a,H)}}return a}function w9(a,t){return a+W7(Bt()*(t-a+1))}function bM(a,t,o,h){for(var H=-1,L=A1(U7((t-a)/(o||1)),0),S=F(L);L--;)S[h?L:++H]=a,a+=o;return S}function N9(a,t){var o="";if(!a||t<1||t>x2)return o;do t%2&&(o+=a),t=W7(t/2),t&&(a+=a);while(t);return o}function P2(a,t){return j9(Es(a,t,p4),a+"")}function xM(a){return Ut(h0(a))}function SM(a,t){var o=h0(a);return sc(o,u8(t,0,o.length))}function S5(a,t,o,h){if(!m1(a))return a;t=y6(t,a);for(var H=-1,L=t.length,S=L-1,_=a;_!=null&&++HH?0:H+t),o=o>H?H:o,o<0&&(o+=H),H=t>o?0:o-t>>>0,t>>>=0;for(var L=F(H);++h>>1,S=a[L];S!==null&&!y4(S)&&(o?S<=t:S=s){var $=t?null:IM(a);if($)return k7($);S=!1,H=H5,O=new l8}else O=t?[]:_;c:for(;++h=h?a:W4(a,t,o)}var hs=zV||function(a){return O2.clearTimeout(a)};function ps(a,t){if(t)return a.slice();var o=a.length,h=Tt?Tt(o):new a.constructor(o);return a.copy(h),h}function E9(a){var t=new a.constructor(a.byteLength);return new F7(t).set(new F7(a)),t}function kM(a,t){var o=t?E9(a.buffer):a.buffer;return new a.constructor(o,a.byteOffset,a.byteLength)}function PM(a){var t=new a.constructor(a.source,w1.exec(a));return t.lastIndex=a.lastIndex,t}function TM(a){return C5?t1(C5.call(a)):{}}function ms(a,t){var o=t?E9(a.buffer):a.buffer;return new a.constructor(o,a.byteOffset,a.length)}function vs(a,t){if(a!==t){var o=a!==r,h=a===null,H=a===a,L=y4(a),S=t!==r,_=t===null,O=t===t,$=y4(t);if(!_&&!$&&!L&&a>t||L&&S&&O&&!_&&!$||h&&S&&O||!o&&O||!H)return 1;if(!h&&!L&&!$&&a=_)return O;var $=o[h];return O*($=="desc"?-1:1)}}return a.index-t.index}function ds(a,t,o,h){for(var H=-1,L=a.length,S=o.length,_=-1,O=t.length,$=A1(L-S,0),j=F(O+$),J=!h;++_1?o[H-1]:r,S=H>2?o[2]:r;for(L=a.length>3&&typeof L=="function"?(H--,L):r,S&&t4(o[0],o[1],S)&&(L=H<3?r:L,H=1),t=t1(t);++h-1?H[L?t[S]:S]:r}}function Cs(a){return I3(function(t){var o=t.length,h=o,H=I4.prototype.thru;for(a&&t.reverse();h--;){var L=t[h];if(typeof L!="function")throw new D4(f);if(H&&!S&&nc(L)=="wrapper")var S=new I4([],!0)}for(h=S?h:o;++h1&&W2.reverse(),j&&O_))return!1;var $=L.get(a),j=L.get(t);if($&&j)return $==t&&j==a;var J=-1,s2=!0,m2=o&b?new l8:r;for(L.set(a,t),L.set(t,a);++J<_;){var V2=a[J],k2=t[J];if(h)var M2=S?h(k2,V2,J,t,a,L):h(V2,k2,J,a,t,L);if(M2!==r){if(M2)continue;s2=!1;break}if(m2){if(!i9(t,function(F2,W2){if(!H5(m2,W2)&&(V2===F2||H(V2,F2,o,h,L)))return m2.push(W2)})){s2=!1;break}}else if(!(V2===k2||H(V2,k2,o,h,L))){s2=!1;break}}return L.delete(a),L.delete(t),s2}function WM(a,t,o,h,H,L,S){switch(o){case w2:if(a.byteLength!=t.byteLength||a.byteOffset!=t.byteOffset)return!1;a=a.buffer,t=t.buffer;case _2:return!(a.byteLength!=t.byteLength||!L(new F7(a),new F7(t)));case C1:case R1:case X:return a3(+a,+t);case f4:return a.name==t.name&&a.message==t.message;case e2:case h2:return a==t+"";case D:var _=p9;case K:var O=h&V;if(_||(_=k7),a.size!=t.size&&!O)return!1;var $=S.get(a);if($)return $==t;h|=b,S.set(a,t);var j=Ns(_(a),_(t),h,H,L,S);return S.delete(a),j;case o2:if(C5)return C5.call(a)==C5.call(t)}return!1}function $M(a,t,o,h,H,L){var S=o&V,_=F9(a),O=_.length,$=F9(t),j=$.length;if(O!=j&&!S)return!1;for(var J=O;J--;){var s2=_[J];if(!(S?s2 in t:r1.call(t,s2)))return!1}var m2=L.get(a),V2=L.get(t);if(m2&&V2)return m2==t&&V2==a;var k2=!0;L.set(a,t),L.set(t,a);for(var M2=S;++J1?"& ":"")+t[h],t=t.join(o>2?", ":" "),a.replace(Z6,`{ +/* [wrapped with `+t+`] */ +`)}function JM(a){return b2(a)||v8(a)||!!(Rt&&a&&a[Rt])}function U3(a,t){var o=typeof a;return t=t??x2,!!t&&(o=="number"||o!="symbol"&&s5.test(a))&&a>-1&&a%1==0&&a0){if(++t>=r2)return arguments[0]}else t=0;return a.apply(r,arguments)}}function sc(a,t){var o=-1,h=a.length,H=h-1;for(t=t===r?h:t;++o1?a[t-1]:r;return o=typeof o=="function"?(a.pop(),o):r,Gs(a,o)});function Ks(a){var t=z(a);return t.__chain__=!0,t}function oL(a,t){return t(a),a}function ic(a,t){return t(a)}var fL=I3(function(a){var t=a.length,o=t?a[0]:0,h=this.__wrapped__,H=function(L){return g9(L,a)};return t>1||this.__actions__.length||!(h instanceof D2)||!U3(o)?this.thru(H):(h=h.slice(o,+o+(t?1:0)),h.__actions__.push({func:ic,args:[H],thisArg:r}),new I4(h,this.__chain__).thru(function(L){return t&&!L.length&&L.push(r),L}))});function lL(){return Ks(this)}function uL(){return new I4(this.value(),this.__chain__)}function hL(){this.__values__===r&&(this.__values__=oi(this.value()));var a=this.__index__>=this.__values__.length,t=a?r:this.__values__[this.__index__++];return{done:a,value:t}}function pL(){return this}function mL(a){for(var t,o=this;o instanceof j7;){var h=Is(o);h.__index__=0,h.__values__=r,t?H.__wrapped__=h:t=h;var H=h;o=o.__wrapped__}return H.__wrapped__=a,t}function vL(){var a=this.__wrapped__;if(a instanceof D2){var t=a;return this.__actions__.length&&(t=new D2(this)),t=t.reverse(),t.__actions__.push({func:ic,args:[G9],thisArg:r}),new I4(t,this.__chain__)}return this.thru(G9)}function dL(){return ls(this.__wrapped__,this.__actions__)}var HL=Z7(function(a,t,o){r1.call(a,o)?++a[o]:B3(a,o,1)});function zL(a,t,o){var h=b2(a)?Lt:oM;return o&&t4(a,t,o)&&(t=r),h(a,g2(t,3))}function gL(a,t){var o=b2(a)?z6:Gt;return o(a,g2(t,3))}var VL=Ms(Us),ML=Ms(Ws);function CL(a,t){return D1(oc(a,t),1)}function LL(a,t){return D1(oc(a,t),B2)}function yL(a,t,o){return o=o===r?1:N2(o),D1(oc(a,t),o)}function Xs(a,t){var o=b2(a)?B4:C6;return o(a,g2(t,3))}function Ys(a,t){var o=b2(a)?Wg:jt;return o(a,g2(t,3))}var bL=Z7(function(a,t,o){r1.call(a,o)?a[o].push(t):B3(a,o,[t])});function xL(a,t,o,h){a=u4(a)?a:h0(a),o=o&&!h?N2(o):0;var H=a.length;return o<0&&(o=A1(H+o,0)),pc(a)?o<=H&&a.indexOf(t,o)>-1:!!H&&c0(a,t,o)>-1}var SL=P2(function(a,t,o){var h=-1,H=typeof t=="function",L=u4(a)?F(a.length):[];return C6(a,function(S){L[++h]=H?P1(t,S,o):b5(S,t,o)}),L}),wL=Z7(function(a,t,o){B3(a,o,t)});function oc(a,t){var o=b2(a)?u1:Zt;return o(a,g2(t,3))}function NL(a,t,o,h){return a==null?[]:(b2(t)||(t=t==null?[]:[t]),o=h?r:o,b2(o)||(o=o==null?[]:[o]),as(a,t,o))}var AL=Z7(function(a,t,o){a[o?0:1].push(t)},function(){return[[],[]]});function _L(a,t,o){var h=b2(a)?s9:St,H=arguments.length<3;return h(a,g2(t,4),o,H,C6)}function kL(a,t,o){var h=b2(a)?$g:St,H=arguments.length<3;return h(a,g2(t,4),o,H,jt)}function PL(a,t){var o=b2(a)?z6:Gt;return o(a,uc(g2(t,3)))}function TL(a){var t=b2(a)?Ut:xM;return t(a)}function EL(a,t,o){(o?t4(a,t,o):t===r)?t=1:t=N2(t);var h=b2(a)?aM:SM;return h(a,t)}function OL(a){var t=b2(a)?nM:NM;return t(a)}function RL(a){if(a==null)return 0;if(u4(a))return pc(a)?r0(a):a.length;var t=Q1(a);return t==D||t==K?a.size:b9(a).length}function FL(a,t,o){var h=b2(a)?i9:AM;return o&&t4(a,t,o)&&(t=r),h(a,g2(t,3))}var BL=P2(function(a,t){if(a==null)return[];var o=t.length;return o>1&&t4(a,t[0],t[1])?t=[]:o>2&&t4(t[0],t[1],t[2])&&(t=[t[0]]),as(a,D1(t,1),[])}),fc=gV||function(){return O2.Date.now()};function DL(a,t){if(typeof t!="function")throw new D4(f);return a=N2(a),function(){if(--a<1)return t.apply(this,arguments)}}function Js(a,t,o){return t=o?r:t,t=a&&t==null?a.length:t,D3(a,I,r,r,r,r,t)}function Qs(a,t){var o;if(typeof t!="function")throw new D4(f);return a=N2(a),function(){return--a>0&&(o=t.apply(this,arguments)),a<=1&&(t=r),o}}var X9=P2(function(a,t,o){var h=k;if(o.length){var H=V6(o,l0(X9));h|=B}return D3(a,h,t,o,H)}),Zs=P2(function(a,t,o){var h=k|y;if(o.length){var H=V6(o,l0(Zs));h|=B}return D3(t,h,a,o,H)});function ci(a,t,o){t=o?r:t;var h=D3(a,A,r,r,r,r,r,t);return h.placeholder=ci.placeholder,h}function ei(a,t,o){t=o?r:t;var h=D3(a,E,r,r,r,r,r,t);return h.placeholder=ei.placeholder,h}function ri(a,t,o){var h,H,L,S,_,O,$=0,j=!1,J=!1,s2=!0;if(typeof a!="function")throw new D4(f);t=q4(t)||0,m1(o)&&(j=!!o.leading,J="maxWait"in o,L=J?A1(q4(o.maxWait)||0,t):L,s2="trailing"in o?!!o.trailing:s2);function m2(M1){var n3=h,q3=H;return h=H=r,$=M1,S=a.apply(q3,n3),S}function V2(M1){return $=M1,_=A5(F2,t),j?m2(M1):S}function k2(M1){var n3=M1-O,q3=M1-$,Mi=t-n3;return J?J1(Mi,L-q3):Mi}function M2(M1){var n3=M1-O,q3=M1-$;return O===r||n3>=t||n3<0||J&&q3>=L}function F2(){var M1=fc();if(M2(M1))return W2(M1);_=A5(F2,k2(M1))}function W2(M1){return _=r,s2&&h?m2(M1):(h=H=r,S)}function b4(){_!==r&&hs(_),$=0,h=O=H=_=r}function s4(){return _===r?S:W2(fc())}function x4(){var M1=fc(),n3=M2(M1);if(h=arguments,H=this,O=M1,n3){if(_===r)return V2(O);if(J)return hs(_),_=A5(F2,t),m2(O)}return _===r&&(_=A5(F2,t)),S}return x4.cancel=b4,x4.flush=s4,x4}var IL=P2(function(a,t){return qt(a,1,t)}),UL=P2(function(a,t,o){return qt(a,q4(t)||0,o)});function WL(a){return D3(a,Q)}function lc(a,t){if(typeof a!="function"||t!=null&&typeof t!="function")throw new D4(f);var o=function(){var h=arguments,H=t?t.apply(this,h):h[0],L=o.cache;if(L.has(H))return L.get(H);var S=a.apply(this,h);return o.cache=L.set(H,S)||L,S};return o.cache=new(lc.Cache||F3),o}lc.Cache=F3;function uc(a){if(typeof a!="function")throw new D4(f);return function(){var t=arguments;switch(t.length){case 0:return!a.call(this);case 1:return!a.call(this,t[0]);case 2:return!a.call(this,t[0],t[1]);case 3:return!a.call(this,t[0],t[1],t[2])}return!a.apply(this,t)}}function $L(a){return Qs(2,a)}var qL=_M(function(a,t){t=t.length==1&&b2(t[0])?u1(t[0],C4(g2())):u1(D1(t,1),C4(g2()));var o=t.length;return P2(function(h){for(var H=-1,L=J1(h.length,o);++H=t}),v8=Yt(function(){return arguments}())?Yt:function(a){return H1(a)&&r1.call(a,"callee")&&!Ot.call(a,"callee")},b2=F.isArray,sy=L1?C4(L1):mM;function u4(a){return a!=null&&hc(a.length)&&!W3(a)}function V1(a){return H1(a)&&u4(a)}function iy(a){return a===!0||a===!1||H1(a)&&n4(a)==C1}var x6=MV||ir,oy=c3?C4(c3):vM;function fy(a){return H1(a)&&a.nodeType===1&&!_5(a)}function ly(a){if(a==null)return!0;if(u4(a)&&(b2(a)||typeof a=="string"||typeof a.splice=="function"||x6(a)||u0(a)||v8(a)))return!a.length;var t=Q1(a);if(t==D||t==K)return!a.size;if(N5(a))return!b9(a).length;for(var o in a)if(r1.call(a,o))return!1;return!0}function uy(a,t){return x5(a,t)}function hy(a,t,o){o=typeof o=="function"?o:r;var h=o?o(a,t):r;return h===r?x5(a,t,r,o):!!h}function J9(a){if(!H1(a))return!1;var t=n4(a);return t==f4||t==u3||typeof a.message=="string"&&typeof a.name=="string"&&!_5(a)}function py(a){return typeof a=="number"&&Ft(a)}function W3(a){if(!m1(a))return!1;var t=n4(a);return t==w||t==P||t==l3||t==c2}function ni(a){return typeof a=="number"&&a==N2(a)}function hc(a){return typeof a=="number"&&a>-1&&a%1==0&&a<=x2}function m1(a){var t=typeof a;return a!=null&&(t=="object"||t=="function")}function H1(a){return a!=null&&typeof a=="object"}var ti=F4?C4(F4):HM;function my(a,t){return a===t||y9(a,t,I9(t))}function vy(a,t,o){return o=typeof o=="function"?o:r,y9(a,t,I9(t),o)}function dy(a){return si(a)&&a!=+a}function Hy(a){if(cC(a))throw new y2(i);return Jt(a)}function zy(a){return a===null}function gy(a){return a==null}function si(a){return typeof a=="number"||H1(a)&&n4(a)==X}function _5(a){if(!H1(a)||n4(a)!=Z)return!1;var t=B7(a);if(t===null)return!0;var o=r1.call(t,"constructor")&&t.constructor;return typeof o=="function"&&o instanceof o&&E7.call(o)==vV}var Q9=m3?C4(m3):zM;function Vy(a){return ni(a)&&a>=-x2&&a<=x2}var ii=d5?C4(d5):gM;function pc(a){return typeof a=="string"||!b2(a)&&H1(a)&&n4(a)==h2}function y4(a){return typeof a=="symbol"||H1(a)&&n4(a)==o2}var u0=i8?C4(i8):VM;function My(a){return a===r}function Cy(a){return H1(a)&&Q1(a)==z2}function Ly(a){return H1(a)&&n4(a)==S2}var yy=ac(x9),by=ac(function(a,t){return a<=t});function oi(a){if(!a)return[];if(u4(a))return pc(a)?e3(a):l4(a);if(z5&&a[z5])return aV(a[z5]());var t=Q1(a),o=t==D?p9:t==K?k7:h0;return o(a)}function $3(a){if(!a)return a===0?a:0;if(a=q4(a),a===B2||a===-B2){var t=a<0?-1:1;return t*O1}return a===a?a:0}function N2(a){var t=$3(a),o=t%1;return t===t?o?t-o:t:0}function fi(a){return a?u8(N2(a),0,d1):0}function q4(a){if(typeof a=="number")return a;if(y4(a))return T2;if(m1(a)){var t=typeof a.valueOf=="function"?a.valueOf():a;a=m1(t)?t+"":t}if(typeof a!="string")return a===0?a:+a;a=wt(a);var o=a5.test(a);return o||t5.test(a)?d2(a.slice(2),o?2:8):r5.test(a)?T2:+a}function li(a){return d3(a,h4(a))}function xy(a){return a?u8(N2(a),-x2,x2):a===0?a:0}function Z2(a){return a==null?"":L4(a)}var Sy=o0(function(a,t){if(N5(t)||u4(t)){d3(t,T1(t),a);return}for(var o in t)r1.call(t,o)&&L5(a,o,t[o])}),ui=o0(function(a,t){d3(t,h4(t),a)}),mc=o0(function(a,t,o,h){d3(t,h4(t),a,h)}),wy=o0(function(a,t,o,h){d3(t,T1(t),a,h)}),Ny=I3(g9);function Ay(a,t){var o=i0(a);return t==null?o:Wt(o,t)}var _y=P2(function(a,t){a=t1(a);var o=-1,h=t.length,H=h>2?t[2]:r;for(H&&t4(t[0],t[1],H)&&(h=1);++o1),L}),d3(a,B9(a),o),h&&(o=U4(o,d|M|x,UM));for(var H=t.length;H--;)_9(o,t[H]);return o});function Xy(a,t){return pi(a,uc(g2(t)))}var Yy=I3(function(a,t){return a==null?{}:LM(a,t)});function pi(a,t){if(a==null)return{};var o=u1(B9(a),function(h){return[h]});return t=g2(t),ns(a,o,function(h,H){return t(h,H[0])})}function Jy(a,t,o){t=y6(t,a);var h=-1,H=t.length;for(H||(H=1,a=r);++ht){var h=a;a=t,t=h}if(o||a%1||t%1){var H=Bt();return J1(a+H*(t-a+C2("1e-"+((H+"").length-1))),t)}return w9(a,t)}var ob=f0(function(a,t,o){return t=t.toLowerCase(),a+(o?di(t):t)});function di(a){return er(Z2(a).toLowerCase())}function Hi(a){return a=Z2(a),a&&a.replace(X1,Qg).replace(v5,"")}function fb(a,t,o){a=Z2(a),t=L4(t);var h=a.length;o=o===r?h:u8(N2(o),0,h);var H=o;return o-=t.length,o>=0&&a.slice(o,H)==t}function lb(a){return a=Z2(a),a&&A3.test(a)?a.replace(h3,Zg):a}function ub(a){return a=Z2(a),a&&Y0.test(a)?a.replace(J6,"\\$&"):a}var hb=f0(function(a,t,o){return a+(o?"-":"")+t.toLowerCase()}),pb=f0(function(a,t,o){return a+(o?" ":"")+t.toLowerCase()}),mb=Vs("toLowerCase");function vb(a,t,o){a=Z2(a),t=N2(t);var h=t?r0(a):0;if(!t||h>=t)return a;var H=(t-h)/2;return rc(W7(H),o)+a+rc(U7(H),o)}function db(a,t,o){a=Z2(a),t=N2(t);var h=t?r0(a):0;return t&&h>>0,o?(a=Z2(a),a&&(typeof t=="string"||t!=null&&!Q9(t))&&(t=L4(t),!t&&e0(a))?b6(e3(a),0,o):a.split(t,o)):[]}var Lb=f0(function(a,t,o){return a+(o?" ":"")+er(t)});function yb(a,t,o){return a=Z2(a),o=o==null?0:u8(N2(o),0,a.length),t=L4(t),a.slice(o,o+t.length)==t}function bb(a,t,o){var h=z.templateSettings;o&&t4(a,t,o)&&(t=r),a=Z2(a),t=mc({},t,h,Ss);var H=mc({},t.imports,h.imports,Ss),L=T1(H),S=h9(H,L),_,O,$=0,j=t.interpolate||h6,J="__p += '",s2=m9((t.escape||h6).source+"|"+j.source+"|"+(j===u6?e5:h6).source+"|"+(t.evaluate||h6).source+"|$","g"),m2="//# sourceURL="+(r1.call(t,"sourceURL")?(t.sourceURL+"").replace(/\s/g," "):"lodash.templateSources["+ ++s8+"]")+` +`;a.replace(s2,function(M2,F2,W2,b4,s4,x4){return W2||(W2=b4),J+=a.slice($,x4).replace(i5,cV),F2&&(_=!0,J+=`' + __e(`+F2+`) + -'`),n4&&(T=!0,Y+=`'; -`+n4+`; -__p += '`),W2&&(Y+=`' + +'`),s4&&(O=!0,J+=`'; +`+s4+`; +__p += '`),W2&&(J+=`' + ((__t = (`+W2+`)) == null ? '' : __t) + -'`),$=L4+M2.length,M2}),Y+=`'; -`;var V2=r1.call(n,"variable")&&n.variable;if(!V2)Y=`with (obj) { -`+Y+` +'`),$=x4+M2.length,M2}),J+=`'; +`;var V2=r1.call(t,"variable")&&t.variable;if(!V2)J=`with (obj) { +`+J+` } -`;else if(B0.test(V2))throw new L2(l);Y=(T?Y.replace(b3,""):Y).replace(H4,"$1").replace(a6,"$1;"),Y="function("+(V2||"obj")+`) { +`;else if(Z0.test(V2))throw new y2(l);J=(O?J.replace(N3,""):J).replace(V4,"$1").replace(f6,"$1;"),J="function("+(V2||"obj")+`) { `+(V2?"":`obj || (obj = {}); -`)+"var __t, __p = ''"+(A?", __e = _.escape":"")+(T?`, __j = Array.prototype.join; +`)+"var __t, __p = ''"+(_?", __e = _.escape":"")+(O?`, __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } `:`; -`)+Y+`return __p -}`;var k2=Ws(function(){return K2(V,h2+"return "+Y).apply(r,y)});if(k2.source=Y,x9(k2))throw k2;return k2}function Fy(a){return Z2(a).toLowerCase()}function By(a){return Z2(a).toUpperCase()}function Dy(a,n,o){if(a=Z2(a),a&&(o||n===r))return Qn(a);if(!a||!(n=V4(n)))return a;var u=Y4(a),d=Y4(n),V=Zn(u,d),y=ct(u,d)+1;return g6(u,V,y).join("")}function Iy(a,n,o){if(a=Z2(a),a&&(o||n===r))return a.slice(0,rt(a)+1);if(!a||!(n=V4(n)))return a;var u=Y4(a),d=ct(u,Y4(n))+1;return g6(u,0,d).join("")}function Uy(a,n,o){if(a=Z2(a),a&&(o||n===r))return a.replace($6,"");if(!a||!(n=V4(n)))return a;var u=Y4(a),d=Zn(u,Y4(n));return g6(u,d).join("")}function Wy(a,n){var o=s2,u=v2;if(p1(n)){var d="separator"in n?n.separator:d;o="length"in n?w2(n.length):o,u="omission"in n?V4(n.omission):u}a=Z2(a);var V=a.length;if(q8(a)){var y=Y4(a);V=y.length}if(o>=V)return a;var A=o-G8(u);if(A<1)return u;var T=y?g6(y,0,A).join(""):a.slice(0,A);if(d===r)return T+u;if(y&&(A+=T.length-A),S9(d)){if(a.slice(A).search(d)){var $,q=T;for(d.global||(d=We(d.source,Z2(b1.exec(d))+"g")),d.lastIndex=0;$=d.exec(q);)var Y=$.index;T=T.slice(0,Y===r?A:Y)}}else if(a.indexOf(V4(d),A)!=A){var n2=T.lastIndexOf(d);n2>-1&&(T=T.slice(0,n2))}return T+u}function $y(a){return a=Z2(a),a&&D6.test(a)?a.replace(n6,gg):a}var qy=Z8(function(a,n,o){return a+(o?" ":"")+n.toUpperCase()}),A9=$t("toUpperCase");function Us(a,n,o){return a=Z2(a),n=o?r:n,n===r?mg(a)?Cg(a):tg(a):a.match(n)||[]}var Ws=T2(function(a,n){try{return A1(a,r,n)}catch(o){return x9(o)?o:new L2(o)}}),Gy=R3(function(a,n){return E4(n,function(o){o=m3(o),E3(a,o,y9(a[o],a))}),a});function jy(a){var n=a==null?0:a.length,o=g2();return a=n?u1(a,function(u){if(typeof u[1]!="function")throw new O4(f);return[o(u[0]),u[1]]}):[],T2(function(u){for(var d=-1;++db2)return[];var o=m1,u=Y1(a,m1);n=g2(n),a-=m1;for(var d=De(u,n);++o0||n<0)?new D2(o):(a<0?o=o.takeRight(-a):a&&(o=o.drop(a)),n!==r&&(n=w2(n),o=n<0?o.dropRight(-n):o.take(n-a)),o)},D2.prototype.takeRightWhile=function(a){return this.reverse().takeWhile(a).reverse()},D2.prototype.toArray=function(){return this.take(m1)},h3(D2.prototype,function(a,n){var o=/^(?:filter|find|map|reject)|While$/.test(n),u=/^(?:head|last)$/.test(n),d=z[u?"take"+(n=="last"?"Right":""):n],V=u||/^find/.test(n);d&&(z.prototype[n]=function(){var y=this.__wrapped__,A=u?[1]:arguments,T=y instanceof D2,$=A[0],q=T||y2(y),Y=function(F2){var W2=d.apply(z,p6([F2],A));return u&&n2?W2[0]:W2};q&&o&&typeof $=="function"&&$.length!=1&&(T=q=!1);var n2=this.__chain__,h2=!!this.__actions__.length,V2=V&&!n2,k2=T&&!h2;if(!V&&q){y=k2?y:new D2(this);var M2=a.apply(y,A);return M2.__actions__.push({func:j7,args:[Y],thisArg:r}),new R4(M2,n2)}return V2&&k2?a.apply(this,A):(M2=this.thru(Y),V2?u?M2.value()[0]:M2.value():M2)})}),E4(["pop","push","shift","sort","splice","unshift"],function(a){var n=g7[a],o=/^(?:push|sort|unshift)$/.test(a)?"tap":"thru",u=/^(?:pop|shift)$/.test(a);z.prototype[a]=function(){var d=arguments;if(u&&!this.__chain__){var V=this.value();return n.apply(y2(V)?V:[],d)}return this[o](function(y){return n.apply(y2(y)?y:[],d)})}}),h3(D2.prototype,function(a,n){var o=z[n];if(o){var u=o.name+"";r1.call(Y8,u)||(Y8[u]=[]),Y8[u].push({name:n,func:o})}}),Y8[D7(r,L).name]=[{name:"wrapper",func:r}],D2.prototype.clone=$g,D2.prototype.reverse=qg,D2.prototype.value=Gg,z.prototype.at=MC,z.prototype.chain=CC,z.prototype.commit=LC,z.prototype.next=yC,z.prototype.plant=xC,z.prototype.reverse=SC,z.prototype.toJSON=z.prototype.valueOf=z.prototype.value=wC,z.prototype.first=z.prototype.head,n5&&(z.prototype[n5]=bC),z},j8=Lg();l1?((l1.exports=j8)._=j8,$2._=j8):O2._=j8}).call(m4)})(Pb,Tc);const Eb=Tc;function Go(c,e){return function(){return c.apply(e,arguments)}}const{toString:jo}=Object.prototype,{getPrototypeOf:ea}=Object,ra=(c=>e=>{const r=jo.call(e);return c[r]||(c[r]=r.slice(8,-1).toLowerCase())})(Object.create(null)),Q3=c=>(c=c.toLowerCase(),e=>ra(e)===c),ce=c=>e=>typeof e===c,{isArray:N0}=Array,F5=ce("undefined");function Ob(c){return c!==null&&!F5(c)&&c.constructor!==null&&!F5(c.constructor)&&T6(c.constructor.isBuffer)&&c.constructor.isBuffer(c)}const Ko=Q3("ArrayBuffer");function Rb(c){let e;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?e=ArrayBuffer.isView(c):e=c&&c.buffer&&Ko(c.buffer),e}const Fb=ce("string"),T6=ce("function"),Xo=ce("number"),aa=c=>c!==null&&typeof c=="object",Bb=c=>c===!0||c===!1,Lc=c=>{if(ra(c)!=="object")return!1;const e=ea(c);return(e===null||e===Object.prototype||Object.getPrototypeOf(e)===null)&&!(Symbol.toStringTag in c)&&!(Symbol.iterator in c)},Db=Q3("Date"),Ib=Q3("File"),Ub=Q3("Blob"),Wb=Q3("FileList"),$b=c=>aa(c)&&T6(c.pipe),qb=c=>{const e="[object FormData]";return c&&(typeof FormData=="function"&&c instanceof FormData||jo.call(c)===e||T6(c.toString)&&c.toString()===e)},Gb=Q3("URLSearchParams"),jb=c=>c.trim?c.trim():c.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function r7(c,e,{allOwnKeys:r=!1}={}){if(c===null||typeof c>"u")return;let t,s;if(typeof c!="object"&&(c=[c]),N0(c))for(t=0,s=c.length;t0;)if(s=r[t],e===s.toLowerCase())return s;return null}const Jo=(()=>typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global)(),Qo=c=>!F5(c)&&c!==Jo;function ur(){const{caseless:c}=Qo(this)&&this||{},e={},r=(t,s)=>{const i=c&&Yo(e,s)||s;Lc(e[i])&&Lc(t)?e[i]=ur(e[i],t):Lc(t)?e[i]=ur({},t):N0(t)?e[i]=t.slice():e[i]=t};for(let t=0,s=arguments.length;t(r7(e,(s,i)=>{r&&T6(s)?c[i]=Go(s,r):c[i]=s},{allOwnKeys:t}),c),Xb=c=>(c.charCodeAt(0)===65279&&(c=c.slice(1)),c),Yb=(c,e,r,t)=>{c.prototype=Object.create(e.prototype,t),c.prototype.constructor=c,Object.defineProperty(c,"super",{value:e.prototype}),r&&Object.assign(c.prototype,r)},Jb=(c,e,r,t)=>{let s,i,f;const l={};if(e=e||{},c==null)return e;do{for(s=Object.getOwnPropertyNames(c),i=s.length;i-- >0;)f=s[i],(!t||t(f,c,e))&&!l[f]&&(e[f]=c[f],l[f]=!0);c=r!==!1&&ea(c)}while(c&&(!r||r(c,e))&&c!==Object.prototype);return e},Qb=(c,e,r)=>{c=String(c),(r===void 0||r>c.length)&&(r=c.length),r-=e.length;const t=c.indexOf(e,r);return t!==-1&&t===r},Zb=c=>{if(!c)return null;if(N0(c))return c;let e=c.length;if(!Xo(e))return null;const r=new Array(e);for(;e-- >0;)r[e]=c[e];return r},cx=(c=>e=>c&&e instanceof c)(typeof Uint8Array<"u"&&ea(Uint8Array)),ex=(c,e)=>{const t=(c&&c[Symbol.iterator]).call(c);let s;for(;(s=t.next())&&!s.done;){const i=s.value;e.call(c,i[0],i[1])}},rx=(c,e)=>{let r;const t=[];for(;(r=c.exec(e))!==null;)t.push(r);return t},ax=Q3("HTMLFormElement"),nx=c=>c.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(r,t,s){return t.toUpperCase()+s}),js=(({hasOwnProperty:c})=>(e,r)=>c.call(e,r))(Object.prototype),tx=Q3("RegExp"),Zo=(c,e)=>{const r=Object.getOwnPropertyDescriptors(c),t={};r7(r,(s,i)=>{e(s,i,c)!==!1&&(t[i]=s)}),Object.defineProperties(c,t)},sx=c=>{Zo(c,(e,r)=>{if(T6(c)&&["arguments","caller","callee"].indexOf(r)!==-1)return!1;const t=c[r];if(T6(t)){if(e.enumerable=!1,"writable"in e){e.writable=!1;return}e.set||(e.set=()=>{throw Error("Can not rewrite read-only method '"+r+"'")})}})},ix=(c,e)=>{const r={},t=s=>{s.forEach(i=>{r[i]=!0})};return N0(c)?t(c):t(String(c).split(e)),r},ox=()=>{},fx=(c,e)=>(c=+c,Number.isFinite(c)?c:e),R9="abcdefghijklmnopqrstuvwxyz",Ks="0123456789",cf={DIGIT:Ks,ALPHA:R9,ALPHA_DIGIT:R9+R9.toUpperCase()+Ks},lx=(c=16,e=cf.ALPHA_DIGIT)=>{let r="";const{length:t}=e;for(;c--;)r+=e[Math.random()*t|0];return r};function ux(c){return!!(c&&T6(c.append)&&c[Symbol.toStringTag]==="FormData"&&c[Symbol.iterator])}const hx=c=>{const e=new Array(10),r=(t,s)=>{if(aa(t)){if(e.indexOf(t)>=0)return;if(!("toJSON"in t)){e[s]=t;const i=N0(t)?[]:{};return r7(t,(f,l)=>{const h=r(f,s+1);!F5(h)&&(i[l]=h)}),e[s]=void 0,i}}return t};return r(c,0)},W={isArray:N0,isArrayBuffer:Ko,isBuffer:Ob,isFormData:qb,isArrayBufferView:Rb,isString:Fb,isNumber:Xo,isBoolean:Bb,isObject:aa,isPlainObject:Lc,isUndefined:F5,isDate:Db,isFile:Ib,isBlob:Ub,isRegExp:tx,isFunction:T6,isStream:$b,isURLSearchParams:Gb,isTypedArray:cx,isFileList:Wb,forEach:r7,merge:ur,extend:Kb,trim:jb,stripBOM:Xb,inherits:Yb,toFlatObject:Jb,kindOf:ra,kindOfTest:Q3,endsWith:Qb,toArray:Zb,forEachEntry:ex,matchAll:rx,isHTMLForm:ax,hasOwnProperty:js,hasOwnProp:js,reduceDescriptors:Zo,freezeMethods:sx,toObjectSet:ix,toCamelCase:nx,noop:ox,toFiniteNumber:fx,findKey:Yo,global:Jo,isContextDefined:Qo,ALPHABET:cf,generateString:lx,isSpecCompliantForm:ux,toJSONObject:hx};function G2(c,e,r,t,s){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=c,this.name="AxiosError",e&&(this.code=e),r&&(this.config=r),t&&(this.request=t),s&&(this.response=s)}W.inherits(G2,Error,{toJSON:function(){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.response&&this.response.status?this.response.status:null}}});const ef=G2.prototype,rf={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(c=>{rf[c]={value:c}});Object.defineProperties(G2,rf);Object.defineProperty(ef,"isAxiosError",{value:!0});G2.from=(c,e,r,t,s,i)=>{const f=Object.create(ef);return W.toFlatObject(c,f,function(h){return h!==Error.prototype},l=>l!=="isAxiosError"),G2.call(f,c.message,e,r,t,s),f.cause=c,f.name=c.name,i&&Object.assign(f,i),f};const px=null;function hr(c){return W.isPlainObject(c)||W.isArray(c)}function af(c){return W.endsWith(c,"[]")?c.slice(0,-2):c}function Xs(c,e,r){return c?c.concat(e).map(function(s,i){return s=af(s),!r&&i?"["+s+"]":s}).join(r?".":""):e}function mx(c){return W.isArray(c)&&!c.some(hr)}const vx=W.toFlatObject(W,{},null,function(e){return/^is[A-Z]/.test(e)});function ee(c,e,r){if(!W.isObject(c))throw new TypeError("target must be an object");e=e||new FormData,r=W.toFlatObject(r,{metaTokens:!0,dots:!1,indexes:!1},!1,function(b,P){return!W.isUndefined(P[b])});const t=r.metaTokens,s=r.visitor||v,i=r.dots,f=r.indexes,h=(r.Blob||typeof Blob<"u"&&Blob)&&W.isSpecCompliantForm(e);if(!W.isFunction(s))throw new TypeError("visitor must be a function");function m(M){if(M===null)return"";if(W.isDate(M))return M.toISOString();if(!h&&W.isBlob(M))throw new G2("Blob is not supported. Use a Buffer instead.");return W.isArrayBuffer(M)||W.isTypedArray(M)?h&&typeof Blob=="function"?new Blob([M]):Buffer.from(M):M}function v(M,b,P){let L=M;if(M&&!P&&typeof M=="object"){if(W.endsWith(b,"{}"))b=t?b:b.slice(0,-2),M=JSON.stringify(M);else if(W.isArray(M)&&mx(M)||(W.isFileList(M)||W.endsWith(b,"[]"))&&(L=W.toArray(M)))return b=af(b),L.forEach(function(E,B){!(W.isUndefined(E)||E===null)&&e.append(f===!0?Xs([b],B,i):f===null?b:b+"[]",m(E))}),!1}return hr(M)?!0:(e.append(Xs(P,b,i),m(M)),!1)}const H=[],C=Object.assign(vx,{defaultVisitor:v,convertValue:m,isVisitable:hr});function x(M,b){if(!W.isUndefined(M)){if(H.indexOf(M)!==-1)throw Error("Circular reference detected in "+b.join("."));H.push(M),W.forEach(M,function(L,S){(!(W.isUndefined(L)||L===null)&&s.call(e,L,W.isString(S)?S.trim():S,b,C))===!0&&x(L,b?b.concat(S):[S])}),H.pop()}}if(!W.isObject(c))throw new TypeError("data must be an object");return x(c),e}function Ys(c){const e={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(c).replace(/[!'()~]|%20|%00/g,function(t){return e[t]})}function na(c,e){this._pairs=[],c&&ee(c,this,e)}const nf=na.prototype;nf.append=function(e,r){this._pairs.push([e,r])};nf.toString=function(e){const r=e?function(t){return e.call(this,t,Ys)}:Ys;return this._pairs.map(function(s){return r(s[0])+"="+r(s[1])},"").join("&")};function dx(c){return encodeURIComponent(c).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function tf(c,e,r){if(!e)return c;const t=r&&r.encode||dx,s=r&&r.serialize;let i;if(s?i=s(e,r):i=W.isURLSearchParams(e)?e.toString():new na(e,r).toString(t),i){const f=c.indexOf("#");f!==-1&&(c=c.slice(0,f)),c+=(c.indexOf("?")===-1?"?":"&")+i}return c}class Hx{constructor(){this.handlers=[]}use(e,r,t){return this.handlers.push({fulfilled:e,rejected:r,synchronous:t?t.synchronous:!1,runWhen:t?t.runWhen:null}),this.handlers.length-1}eject(e){this.handlers[e]&&(this.handlers[e]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(e){W.forEach(this.handlers,function(t){t!==null&&e(t)})}}const Js=Hx,sf={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},zx=typeof URLSearchParams<"u"?URLSearchParams:na,gx=FormData,Vx=(()=>{let c;return typeof navigator<"u"&&((c=navigator.product)==="ReactNative"||c==="NativeScript"||c==="NS")?!1:typeof window<"u"&&typeof document<"u"})(),Mx=(()=>typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function")(),C3={isBrowser:!0,classes:{URLSearchParams:zx,FormData:gx,Blob},isStandardBrowserEnv:Vx,isStandardBrowserWebWorkerEnv:Mx,protocols:["http","https","file","blob","url","data"]};function Cx(c,e){return ee(c,new C3.classes.URLSearchParams,Object.assign({visitor:function(r,t,s,i){return C3.isNode&&W.isBuffer(r)?(this.append(t,r.toString("base64")),!1):i.defaultVisitor.apply(this,arguments)}},e))}function Lx(c){return W.matchAll(/\w+|\[(\w*)]/g,c).map(e=>e[0]==="[]"?"":e[1]||e[0])}function yx(c){const e={},r=Object.keys(c);let t;const s=r.length;let i;for(t=0;t=r.length;return f=!f&&W.isArray(s)?s.length:f,h?(W.hasOwnProp(s,f)?s[f]=[s[f],t]:s[f]=t,!l):((!s[f]||!W.isObject(s[f]))&&(s[f]=[]),e(r,t,s[f],i)&&W.isArray(s[f])&&(s[f]=yx(s[f])),!l)}if(W.isFormData(c)&&W.isFunction(c.entries)){const r={};return W.forEachEntry(c,(t,s)=>{e(Lx(t),s,r,0)}),r}return null}const bx={"Content-Type":void 0};function xx(c,e,r){if(W.isString(c))try{return(e||JSON.parse)(c),W.trim(c)}catch(t){if(t.name!=="SyntaxError")throw t}return(r||JSON.stringify)(c)}const re={transitional:sf,adapter:["xhr","http"],transformRequest:[function(e,r){const t=r.getContentType()||"",s=t.indexOf("application/json")>-1,i=W.isObject(e);if(i&&W.isHTMLForm(e)&&(e=new FormData(e)),W.isFormData(e))return s&&s?JSON.stringify(of(e)):e;if(W.isArrayBuffer(e)||W.isBuffer(e)||W.isStream(e)||W.isFile(e)||W.isBlob(e))return e;if(W.isArrayBufferView(e))return e.buffer;if(W.isURLSearchParams(e))return r.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),e.toString();let l;if(i){if(t.indexOf("application/x-www-form-urlencoded")>-1)return Cx(e,this.formSerializer).toString();if((l=W.isFileList(e))||t.indexOf("multipart/form-data")>-1){const h=this.env&&this.env.FormData;return ee(l?{"files[]":e}:e,h&&new h,this.formSerializer)}}return i||s?(r.setContentType("application/json",!1),xx(e)):e}],transformResponse:[function(e){const r=this.transitional||re.transitional,t=r&&r.forcedJSONParsing,s=this.responseType==="json";if(e&&W.isString(e)&&(t&&!this.responseType||s)){const f=!(r&&r.silentJSONParsing)&&s;try{return JSON.parse(e)}catch(l){if(f)throw l.name==="SyntaxError"?G2.from(l,G2.ERR_BAD_RESPONSE,this,null,this.response):l}}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:C3.classes.FormData,Blob:C3.classes.Blob},validateStatus:function(e){return e>=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*"}}};W.forEach(["delete","get","head"],function(e){re.headers[e]={}});W.forEach(["post","put","patch"],function(e){re.headers[e]=W.merge(bx)});const ta=re,Sx=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"]),wx=c=>{const e={};let r,t,s;return c&&c.split(` -`).forEach(function(f){s=f.indexOf(":"),r=f.substring(0,s).trim().toLowerCase(),t=f.substring(s+1).trim(),!(!r||e[r]&&Sx[r])&&(r==="set-cookie"?e[r]?e[r].push(t):e[r]=[t]:e[r]=e[r]?e[r]+", "+t:t)}),e},Qs=Symbol("internals");function z5(c){return c&&String(c).trim().toLowerCase()}function yc(c){return c===!1||c==null?c:W.isArray(c)?c.map(yc):String(c)}function Nx(c){const e=Object.create(null),r=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let t;for(;t=r.exec(c);)e[t[1]]=t[2];return e}function Ax(c){return/^[-_a-zA-Z]+$/.test(c.trim())}function F9(c,e,r,t){if(W.isFunction(t))return t.call(this,e,r);if(W.isString(e)){if(W.isString(t))return e.indexOf(t)!==-1;if(W.isRegExp(t))return t.test(e)}}function _x(c){return c.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(e,r,t)=>r.toUpperCase()+t)}function kx(c,e){const r=W.toCamelCase(" "+e);["get","set","has"].forEach(t=>{Object.defineProperty(c,t+r,{value:function(s,i,f){return this[t].call(this,e,s,i,f)},configurable:!0})})}class ae{constructor(e){e&&this.set(e)}set(e,r,t){const s=this;function i(l,h,m){const v=z5(h);if(!v)throw new Error("header name must be a non-empty string");const H=W.findKey(s,v);(!H||s[H]===void 0||m===!0||m===void 0&&s[H]!==!1)&&(s[H||h]=yc(l))}const f=(l,h)=>W.forEach(l,(m,v)=>i(m,v,h));return W.isPlainObject(e)||e instanceof this.constructor?f(e,r):W.isString(e)&&(e=e.trim())&&!Ax(e)?f(wx(e),r):e!=null&&i(r,e,t),this}get(e,r){if(e=z5(e),e){const t=W.findKey(this,e);if(t){const s=this[t];if(!r)return s;if(r===!0)return Nx(s);if(W.isFunction(r))return r.call(this,s,t);if(W.isRegExp(r))return r.exec(s);throw new TypeError("parser must be boolean|regexp|function")}}}has(e,r){if(e=z5(e),e){const t=W.findKey(this,e);return!!(t&&this[t]!==void 0&&(!r||F9(this,this[t],t,r)))}return!1}delete(e,r){const t=this;let s=!1;function i(f){if(f=z5(f),f){const l=W.findKey(t,f);l&&(!r||F9(t,t[l],l,r))&&(delete t[l],s=!0)}}return W.isArray(e)?e.forEach(i):i(e),s}clear(e){const r=Object.keys(this);let t=r.length,s=!1;for(;t--;){const i=r[t];(!e||F9(this,this[i],i,e))&&(delete this[i],s=!0)}return s}normalize(e){const r=this,t={};return W.forEach(this,(s,i)=>{const f=W.findKey(t,i);if(f){r[f]=yc(s),delete r[i];return}const l=e?_x(i):String(i).trim();l!==i&&delete r[i],r[l]=yc(s),t[l]=!0}),this}concat(...e){return this.constructor.concat(this,...e)}toJSON(e){const r=Object.create(null);return W.forEach(this,(t,s)=>{t!=null&&t!==!1&&(r[s]=e&&W.isArray(t)?t.join(", "):t)}),r}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([e,r])=>e+": "+r).join(` -`)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(e){return e instanceof this?e:new this(e)}static concat(e,...r){const t=new this(e);return r.forEach(s=>t.set(s)),t}static accessor(e){const t=(this[Qs]=this[Qs]={accessors:{}}).accessors,s=this.prototype;function i(f){const l=z5(f);t[l]||(kx(s,f),t[l]=!0)}return W.isArray(e)?e.forEach(i):i(e),this}}ae.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);W.freezeMethods(ae.prototype);W.freezeMethods(ae);const G3=ae;function B9(c,e){const r=this||ta,t=e||r,s=G3.from(t.headers);let i=t.data;return W.forEach(c,function(l){i=l.call(r,i,s.normalize(),e?e.status:void 0)}),s.normalize(),i}function ff(c){return!!(c&&c.__CANCEL__)}function a7(c,e,r){G2.call(this,c??"canceled",G2.ERR_CANCELED,e,r),this.name="CanceledError"}W.inherits(a7,G2,{__CANCEL__:!0});function Tx(c,e,r){const t=r.config.validateStatus;!r.status||!t||t(r.status)?c(r):e(new G2("Request failed with status code "+r.status,[G2.ERR_BAD_REQUEST,G2.ERR_BAD_RESPONSE][Math.floor(r.status/100)-4],r.config,r.request,r))}const Px=C3.isStandardBrowserEnv?function(){return{write:function(r,t,s,i,f,l){const h=[];h.push(r+"="+encodeURIComponent(t)),W.isNumber(s)&&h.push("expires="+new Date(s).toGMTString()),W.isString(i)&&h.push("path="+i),W.isString(f)&&h.push("domain="+f),l===!0&&h.push("secure"),document.cookie=h.join("; ")},read:function(r){const t=document.cookie.match(new RegExp("(^|;\\s*)("+r+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(r){this.write(r,"",Date.now()-864e5)}}}():function(){return{write:function(){},read:function(){return null},remove:function(){}}}();function Ex(c){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(c)}function Ox(c,e){return e?c.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):c}function lf(c,e){return c&&!Ex(e)?Ox(c,e):e}const Rx=C3.isStandardBrowserEnv?function(){const e=/(msie|trident)/i.test(navigator.userAgent),r=document.createElement("a");let t;function s(i){let f=i;return e&&(r.setAttribute("href",f),f=r.href),r.setAttribute("href",f),{href:r.href,protocol:r.protocol?r.protocol.replace(/:$/,""):"",host:r.host,search:r.search?r.search.replace(/^\?/,""):"",hash:r.hash?r.hash.replace(/^#/,""):"",hostname:r.hostname,port:r.port,pathname:r.pathname.charAt(0)==="/"?r.pathname:"/"+r.pathname}}return t=s(window.location.href),function(f){const l=W.isString(f)?s(f):f;return l.protocol===t.protocol&&l.host===t.host}}():function(){return function(){return!0}}();function Fx(c){const e=/^([-+\w]{1,25})(:?\/\/|:)/.exec(c);return e&&e[1]||""}function Bx(c,e){c=c||10;const r=new Array(c),t=new Array(c);let s=0,i=0,f;return e=e!==void 0?e:1e3,function(h){const m=Date.now(),v=t[i];f||(f=m),r[s]=h,t[s]=m;let H=i,C=0;for(;H!==s;)C+=r[H++],H=H%c;if(s=(s+1)%c,s===i&&(i=(i+1)%c),m-f{const i=s.loaded,f=s.lengthComputable?s.total:void 0,l=i-r,h=t(l),m=i<=f;r=i;const v={loaded:i,total:f,progress:f?i/f:void 0,bytes:l,rate:h||void 0,estimated:h&&f&&m?(f-i)/h:void 0,event:s};v[e?"download":"upload"]=!0,c(v)}}const Dx=typeof XMLHttpRequest<"u",Ix=Dx&&function(c){return new Promise(function(r,t){let s=c.data;const i=G3.from(c.headers).normalize(),f=c.responseType;let l;function h(){c.cancelToken&&c.cancelToken.unsubscribe(l),c.signal&&c.signal.removeEventListener("abort",l)}W.isFormData(s)&&(C3.isStandardBrowserEnv||C3.isStandardBrowserWebWorkerEnv)&&i.setContentType(!1);let m=new XMLHttpRequest;if(c.auth){const x=c.auth.username||"",M=c.auth.password?unescape(encodeURIComponent(c.auth.password)):"";i.set("Authorization","Basic "+btoa(x+":"+M))}const v=lf(c.baseURL,c.url);m.open(c.method.toUpperCase(),tf(v,c.params,c.paramsSerializer),!0),m.timeout=c.timeout;function H(){if(!m)return;const x=G3.from("getAllResponseHeaders"in m&&m.getAllResponseHeaders()),b={data:!f||f==="text"||f==="json"?m.responseText:m.response,status:m.status,statusText:m.statusText,headers:x,config:c,request:m};Tx(function(L){r(L),h()},function(L){t(L),h()},b),m=null}if("onloadend"in m?m.onloadend=H:m.onreadystatechange=function(){!m||m.readyState!==4||m.status===0&&!(m.responseURL&&m.responseURL.indexOf("file:")===0)||setTimeout(H)},m.onabort=function(){m&&(t(new G2("Request aborted",G2.ECONNABORTED,c,m)),m=null)},m.onerror=function(){t(new G2("Network Error",G2.ERR_NETWORK,c,m)),m=null},m.ontimeout=function(){let M=c.timeout?"timeout of "+c.timeout+"ms exceeded":"timeout exceeded";const b=c.transitional||sf;c.timeoutErrorMessage&&(M=c.timeoutErrorMessage),t(new G2(M,b.clarifyTimeoutError?G2.ETIMEDOUT:G2.ECONNABORTED,c,m)),m=null},C3.isStandardBrowserEnv){const x=(c.withCredentials||Rx(v))&&c.xsrfCookieName&&Px.read(c.xsrfCookieName);x&&i.set(c.xsrfHeaderName,x)}s===void 0&&i.setContentType(null),"setRequestHeader"in m&&W.forEach(i.toJSON(),function(M,b){m.setRequestHeader(b,M)}),W.isUndefined(c.withCredentials)||(m.withCredentials=!!c.withCredentials),f&&f!=="json"&&(m.responseType=c.responseType),typeof c.onDownloadProgress=="function"&&m.addEventListener("progress",Zs(c.onDownloadProgress,!0)),typeof c.onUploadProgress=="function"&&m.upload&&m.upload.addEventListener("progress",Zs(c.onUploadProgress)),(c.cancelToken||c.signal)&&(l=x=>{m&&(t(!x||x.type?new a7(null,c,m):x),m.abort(),m=null)},c.cancelToken&&c.cancelToken.subscribe(l),c.signal&&(c.signal.aborted?l():c.signal.addEventListener("abort",l)));const C=Fx(v);if(C&&C3.protocols.indexOf(C)===-1){t(new G2("Unsupported protocol "+C+":",G2.ERR_BAD_REQUEST,c));return}m.send(s||null)})},bc={http:px,xhr:Ix};W.forEach(bc,(c,e)=>{if(c){try{Object.defineProperty(c,"name",{value:e})}catch{}Object.defineProperty(c,"adapterName",{value:e})}});const Ux={getAdapter:c=>{c=W.isArray(c)?c:[c];const{length:e}=c;let r,t;for(let s=0;sc instanceof G3?c.toJSON():c;function z0(c,e){e=e||{};const r={};function t(m,v,H){return W.isPlainObject(m)&&W.isPlainObject(v)?W.merge.call({caseless:H},m,v):W.isPlainObject(v)?W.merge({},v):W.isArray(v)?v.slice():v}function s(m,v,H){if(W.isUndefined(v)){if(!W.isUndefined(m))return t(void 0,m,H)}else return t(m,v,H)}function i(m,v){if(!W.isUndefined(v))return t(void 0,v)}function f(m,v){if(W.isUndefined(v)){if(!W.isUndefined(m))return t(void 0,m)}else return t(void 0,v)}function l(m,v,H){if(H in e)return t(m,v);if(H in c)return t(void 0,m)}const h={url:i,method:i,data:i,baseURL:f,transformRequest:f,transformResponse:f,paramsSerializer:f,timeout:f,timeoutMessage:f,withCredentials: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:l,headers:(m,v)=>s(ei(m),ei(v),!0)};return W.forEach(Object.keys(c).concat(Object.keys(e)),function(v){const H=h[v]||s,C=H(c[v],e[v],v);W.isUndefined(C)&&H!==l||(r[v]=C)}),r}const uf="1.3.2",sa={};["object","boolean","number","function","string","symbol"].forEach((c,e)=>{sa[c]=function(t){return typeof t===c||"a"+(e<1?"n ":" ")+c}});const ri={};sa.transitional=function(e,r,t){function s(i,f){return"[Axios v"+uf+"] Transitional option '"+i+"'"+f+(t?". "+t:"")}return(i,f,l)=>{if(e===!1)throw new G2(s(f," has been removed"+(r?" in "+r:"")),G2.ERR_DEPRECATED);return r&&!ri[f]&&(ri[f]=!0,console.warn(s(f," has been deprecated since v"+r+" and will be removed in the near future"))),e?e(i,f,l):!0}};function Wx(c,e,r){if(typeof c!="object")throw new G2("options must be an object",G2.ERR_BAD_OPTION_VALUE);const t=Object.keys(c);let s=t.length;for(;s-- >0;){const i=t[s],f=e[i];if(f){const l=c[i],h=l===void 0||f(l,i,c);if(h!==!0)throw new G2("option "+i+" must be "+h,G2.ERR_BAD_OPTION_VALUE);continue}if(r!==!0)throw new G2("Unknown option "+i,G2.ERR_BAD_OPTION)}}const pr={assertOptions:Wx,validators:sa},M6=pr.validators;class Pc{constructor(e){this.defaults=e,this.interceptors={request:new Js,response:new Js}}request(e,r){typeof e=="string"?(r=r||{},r.url=e):r=e||{},r=z0(this.defaults,r);const{transitional:t,paramsSerializer:s,headers:i}=r;t!==void 0&&pr.assertOptions(t,{silentJSONParsing:M6.transitional(M6.boolean),forcedJSONParsing:M6.transitional(M6.boolean),clarifyTimeoutError:M6.transitional(M6.boolean)},!1),s!==void 0&&pr.assertOptions(s,{encode:M6.function,serialize:M6.function},!0),r.method=(r.method||this.defaults.method||"get").toLowerCase();let f;f=i&&W.merge(i.common,i[r.method]),f&&W.forEach(["delete","get","head","post","put","patch","common"],M=>{delete i[M]}),r.headers=G3.concat(f,i);const l=[];let h=!0;this.interceptors.request.forEach(function(b){typeof b.runWhen=="function"&&b.runWhen(r)===!1||(h=h&&b.synchronous,l.unshift(b.fulfilled,b.rejected))});const m=[];this.interceptors.response.forEach(function(b){m.push(b.fulfilled,b.rejected)});let v,H=0,C;if(!h){const M=[ci.bind(this),void 0];for(M.unshift.apply(M,l),M.push.apply(M,m),C=M.length,v=Promise.resolve(r);H{if(!t._listeners)return;let i=t._listeners.length;for(;i-- >0;)t._listeners[i](s);t._listeners=null}),this.promise.then=s=>{let i;const f=new Promise(l=>{t.subscribe(l),i=l}).then(s);return f.cancel=function(){t.unsubscribe(i)},f},e(function(i,f,l){t.reason||(t.reason=new a7(i,f,l),r(t.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(e){if(this.reason){e(this.reason);return}this._listeners?this._listeners.push(e):this._listeners=[e]}unsubscribe(e){if(!this._listeners)return;const r=this._listeners.indexOf(e);r!==-1&&this._listeners.splice(r,1)}static source(){let e;return{token:new ia(function(s){e=s}),cancel:e}}}const $x=ia;function qx(c){return function(r){return c.apply(null,r)}}function Gx(c){return W.isObject(c)&&c.isAxiosError===!0}const mr={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};Object.entries(mr).forEach(([c,e])=>{mr[e]=c});const jx=mr;function hf(c){const e=new xc(c),r=Go(xc.prototype.request,e);return W.extend(r,xc.prototype,e,{allOwnKeys:!0}),W.extend(r,e,null,{allOwnKeys:!0}),r.create=function(s){return hf(z0(c,s))},r}const w1=hf(ta);w1.Axios=xc;w1.CanceledError=a7;w1.CancelToken=$x;w1.isCancel=ff;w1.VERSION=uf;w1.toFormData=ee;w1.AxiosError=G2;w1.Cancel=w1.CanceledError;w1.all=function(e){return Promise.all(e)};w1.spread=qx;w1.isAxiosError=Gx;w1.mergeConfig=z0;w1.AxiosHeaders=G3;w1.formToJSON=c=>of(W.isHTMLForm(c)?new FormData(c):c);w1.HttpStatusCode=jx;w1.default=w1;const vr=w1;window._=Eb;window.axios=vr;window.axios.defaults.headers.common["X-Requested-With"]="XMLHttpRequest";function ai(c,e){var r=Object.keys(c);if(Object.getOwnPropertySymbols){var t=Object.getOwnPropertySymbols(c);e&&(t=t.filter(function(s){return Object.getOwnPropertyDescriptor(c,s).enumerable})),r.push.apply(r,t)}return r}function f2(c){for(var e=1;ec.length)&&(e=c.length);for(var r=0,t=new Array(e);r-1;s--){var i=r[s],f=(i.tagName||"").toUpperCase();["STYLE","LINK"].indexOf(f)>-1&&(t=i)}return o1.head.insertBefore(e,t),c}}var zS="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";function W5(){for(var c=12,e="";c-- >0;)e+=zS[Math.random()*62|0];return e}function A0(c){for(var e=[],r=(c||[]).length>>>0;r--;)e[r]=c[r];return e}function pa(c){return c.classList?A0(c.classList):(c.getAttribute("class")||"").split(" ").filter(function(e){return e})}function yf(c){return"".concat(c).replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(//g,">")}function gS(c){return Object.keys(c||{}).reduce(function(e,r){return e+"".concat(r,'="').concat(yf(c[r]),'" ')},"").trim()}function ne(c){return Object.keys(c||{}).reduce(function(e,r){return e+"".concat(r,": ").concat(c[r].trim(),";")},"")}function ma(c){return c.size!==L3.size||c.x!==L3.x||c.y!==L3.y||c.rotate!==L3.rotate||c.flipX||c.flipY}function VS(c){var e=c.transform,r=c.containerWidth,t=c.iconWidth,s={transform:"translate(".concat(r/2," 256)")},i="translate(".concat(e.x*32,", ").concat(e.y*32,") "),f="scale(".concat(e.size/16*(e.flipX?-1:1),", ").concat(e.size/16*(e.flipY?-1:1),") "),l="rotate(".concat(e.rotate," 0 0)"),h={transform:"".concat(i," ").concat(f," ").concat(l)},m={transform:"translate(".concat(t/2*-1," -256)")};return{outer:s,inner:h,path:m}}function MS(c){var e=c.transform,r=c.width,t=r===void 0?Hr:r,s=c.height,i=s===void 0?Hr:s,f=c.startCentered,l=f===void 0?!1:f,h="";return l&&Hf?h+="translate(".concat(e.x/C6-t/2,"em, ").concat(e.y/C6-i/2,"em) "):l?h+="translate(calc(-50% + ".concat(e.x/C6,"em), calc(-50% + ").concat(e.y/C6,"em)) "):h+="translate(".concat(e.x/C6,"em, ").concat(e.y/C6,"em) "),h+="scale(".concat(e.size/C6*(e.flipX?-1:1),", ").concat(e.size/C6*(e.flipY?-1:1),") "),h+="rotate(".concat(e.rotate,"deg) "),h}var CS=`:root, :host { +`)+J+`return __p +}`;var k2=gi(function(){return K2(L,m2+"return "+J).apply(r,S)});if(k2.source=J,J9(k2))throw k2;return k2}function xb(a){return Z2(a).toLowerCase()}function Sb(a){return Z2(a).toUpperCase()}function wb(a,t,o){if(a=Z2(a),a&&(o||t===r))return wt(a);if(!a||!(t=L4(t)))return a;var h=e3(a),H=e3(t),L=Nt(h,H),S=At(h,H)+1;return b6(h,L,S).join("")}function Nb(a,t,o){if(a=Z2(a),a&&(o||t===r))return a.slice(0,kt(a)+1);if(!a||!(t=L4(t)))return a;var h=e3(a),H=At(h,e3(t))+1;return b6(h,0,H).join("")}function Ab(a,t,o){if(a=Z2(a),a&&(o||t===r))return a.replace(Q6,"");if(!a||!(t=L4(t)))return a;var h=e3(a),H=Nt(h,e3(t));return b6(h,H).join("")}function _b(a,t){var o=a2,h=i2;if(m1(t)){var H="separator"in t?t.separator:H;o="length"in t?N2(t.length):o,h="omission"in t?L4(t.omission):h}a=Z2(a);var L=a.length;if(e0(a)){var S=e3(a);L=S.length}if(o>=L)return a;var _=o-r0(h);if(_<1)return h;var O=S?b6(S,0,_).join(""):a.slice(0,_);if(H===r)return O+h;if(S&&(_+=O.length-_),Q9(H)){if(a.slice(_).search(H)){var $,j=O;for(H.global||(H=m9(H.source,Z2(w1.exec(H))+"g")),H.lastIndex=0;$=H.exec(j);)var J=$.index;O=O.slice(0,J===r?_:J)}}else if(a.indexOf(L4(H),_)!=_){var s2=O.lastIndexOf(H);s2>-1&&(O=O.slice(0,s2))}return O+h}function kb(a){return a=Z2(a),a&&K6.test(a)?a.replace(l6,iV):a}var Pb=f0(function(a,t,o){return a+(o?" ":"")+t.toUpperCase()}),er=Vs("toUpperCase");function zi(a,t,o){return a=Z2(a),t=o?r:t,t===r?rV(a)?lV(a):Gg(a):a.match(t)||[]}var gi=P2(function(a,t){try{return P1(a,r,t)}catch(o){return J9(o)?o:new y2(o)}}),Tb=I3(function(a,t){return B4(t,function(o){o=H3(o),B3(a,o,X9(a[o],a))}),a});function Eb(a){var t=a==null?0:a.length,o=g2();return a=t?u1(a,function(h){if(typeof h[1]!="function")throw new D4(f);return[o(h[0]),h[1]]}):[],P2(function(h){for(var H=-1;++Hx2)return[];var o=d1,h=J1(a,d1);t=g2(t),a-=d1;for(var H=u9(h,t);++o0||t<0)?new D2(o):(a<0?o=o.takeRight(-a):a&&(o=o.drop(a)),t!==r&&(t=N2(t),o=t<0?o.dropRight(-t):o.take(t-a)),o)},D2.prototype.takeRightWhile=function(a){return this.reverse().takeWhile(a).reverse()},D2.prototype.toArray=function(){return this.take(d1)},v3(D2.prototype,function(a,t){var o=/^(?:filter|find|map|reject)|While$/.test(t),h=/^(?:head|last)$/.test(t),H=z[h?"take"+(t=="last"?"Right":""):t],L=h||/^find/.test(t);H&&(z.prototype[t]=function(){var S=this.__wrapped__,_=h?[1]:arguments,O=S instanceof D2,$=_[0],j=O||b2(S),J=function(F2){var W2=H.apply(z,g6([F2],_));return h&&s2?W2[0]:W2};j&&o&&typeof $=="function"&&$.length!=1&&(O=j=!1);var s2=this.__chain__,m2=!!this.__actions__.length,V2=L&&!s2,k2=O&&!m2;if(!L&&j){S=k2?S:new D2(this);var M2=a.apply(S,_);return M2.__actions__.push({func:ic,args:[J],thisArg:r}),new I4(M2,s2)}return V2&&k2?a.apply(this,_):(M2=this.thru(J),V2?h?M2.value()[0]:M2.value():M2)})}),B4(["pop","push","shift","sort","splice","unshift"],function(a){var t=P7[a],o=/^(?:push|sort|unshift)$/.test(a)?"tap":"thru",h=/^(?:pop|shift)$/.test(a);z.prototype[a]=function(){var H=arguments;if(h&&!this.__chain__){var L=this.value();return t.apply(b2(L)?L:[],H)}return this[o](function(S){return t.apply(b2(S)?S:[],H)})}}),v3(D2.prototype,function(a,t){var o=z[t];if(o){var h=o.name+"";r1.call(s0,h)||(s0[h]=[]),s0[h].push({name:t,func:o})}}),s0[cc(r,y).name]=[{name:"wrapper",func:r}],D2.prototype.clone=kV,D2.prototype.reverse=PV,D2.prototype.value=TV,z.prototype.at=fL,z.prototype.chain=lL,z.prototype.commit=uL,z.prototype.next=hL,z.prototype.plant=mL,z.prototype.reverse=vL,z.prototype.toJSON=z.prototype.valueOf=z.prototype.value=dL,z.prototype.first=z.prototype.head,z5&&(z.prototype[z5]=pL),z},a0=uV();l1?((l1.exports=a0)._=a0,$2._=a0):O2._=a0}).call(d4)})(Kc,Kc.exports);var Cx=Kc.exports;const Lx=m7(Cx);function bf(c,e){return function(){return c.apply(e,arguments)}}const{toString:yx}=Object.prototype,{getPrototypeOf:Pa}=Object,me=(c=>e=>{const r=yx.call(e);return c[r]||(c[r]=r.slice(8,-1).toLowerCase())})(Object.create(null)),w3=c=>(c=c.toLowerCase(),e=>me(e)===c),ve=c=>e=>typeof e===c,{isArray:$0}=Array,Z5=ve("undefined");function bx(c){return c!==null&&!Z5(c)&&c.constructor!==null&&!Z5(c.constructor)&&X4(c.constructor.isBuffer)&&c.constructor.isBuffer(c)}const xf=w3("ArrayBuffer");function xx(c){let e;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?e=ArrayBuffer.isView(c):e=c&&c.buffer&&xf(c.buffer),e}const Sx=ve("string"),X4=ve("function"),Sf=ve("number"),de=c=>c!==null&&typeof c=="object",wx=c=>c===!0||c===!1,Bc=c=>{if(me(c)!=="object")return!1;const e=Pa(c);return(e===null||e===Object.prototype||Object.getPrototypeOf(e)===null)&&!(Symbol.toStringTag in c)&&!(Symbol.iterator in c)},Nx=w3("Date"),Ax=w3("File"),_x=w3("Blob"),kx=w3("FileList"),Px=c=>de(c)&&X4(c.pipe),Tx=c=>{let e;return c&&(typeof FormData=="function"&&c instanceof FormData||X4(c.append)&&((e=me(c))==="formdata"||e==="object"&&X4(c.toString)&&c.toString()==="[object FormData]"))},Ex=w3("URLSearchParams"),Ox=c=>c.trim?c.trim():c.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function v7(c,e,{allOwnKeys:r=!1}={}){if(c===null||typeof c>"u")return;let n,s;if(typeof c!="object"&&(c=[c]),$0(c))for(n=0,s=c.length;n0;)if(s=r[n],e===s.toLowerCase())return s;return null}const Nf=(()=>typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global)(),Af=c=>!Z5(c)&&c!==Nf;function Rr(){const{caseless:c}=Af(this)&&this||{},e={},r=(n,s)=>{const i=c&&wf(e,s)||s;Bc(e[i])&&Bc(n)?e[i]=Rr(e[i],n):Bc(n)?e[i]=Rr({},n):$0(n)?e[i]=n.slice():e[i]=n};for(let n=0,s=arguments.length;n(v7(e,(s,i)=>{r&&X4(s)?c[i]=bf(s,r):c[i]=s},{allOwnKeys:n}),c),Fx=c=>(c.charCodeAt(0)===65279&&(c=c.slice(1)),c),Bx=(c,e,r,n)=>{c.prototype=Object.create(e.prototype,n),c.prototype.constructor=c,Object.defineProperty(c,"super",{value:e.prototype}),r&&Object.assign(c.prototype,r)},Dx=(c,e,r,n)=>{let s,i,f;const l={};if(e=e||{},c==null)return e;do{for(s=Object.getOwnPropertyNames(c),i=s.length;i-- >0;)f=s[i],(!n||n(f,c,e))&&!l[f]&&(e[f]=c[f],l[f]=!0);c=r!==!1&&Pa(c)}while(c&&(!r||r(c,e))&&c!==Object.prototype);return e},Ix=(c,e,r)=>{c=String(c),(r===void 0||r>c.length)&&(r=c.length),r-=e.length;const n=c.indexOf(e,r);return n!==-1&&n===r},Ux=c=>{if(!c)return null;if($0(c))return c;let e=c.length;if(!Sf(e))return null;const r=new Array(e);for(;e-- >0;)r[e]=c[e];return r},Wx=(c=>e=>c&&e instanceof c)(typeof Uint8Array<"u"&&Pa(Uint8Array)),$x=(c,e)=>{const n=(c&&c[Symbol.iterator]).call(c);let s;for(;(s=n.next())&&!s.done;){const i=s.value;e.call(c,i[0],i[1])}},qx=(c,e)=>{let r;const n=[];for(;(r=c.exec(e))!==null;)n.push(r);return n},jx=w3("HTMLFormElement"),Gx=c=>c.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(r,n,s){return n.toUpperCase()+s}),Li=(({hasOwnProperty:c})=>(e,r)=>c.call(e,r))(Object.prototype),Kx=w3("RegExp"),_f=(c,e)=>{const r=Object.getOwnPropertyDescriptors(c),n={};v7(r,(s,i)=>{let f;(f=e(s,i,c))!==!1&&(n[i]=f||s)}),Object.defineProperties(c,n)},Xx=c=>{_f(c,(e,r)=>{if(X4(c)&&["arguments","caller","callee"].indexOf(r)!==-1)return!1;const n=c[r];if(X4(n)){if(e.enumerable=!1,"writable"in e){e.writable=!1;return}e.set||(e.set=()=>{throw Error("Can not rewrite read-only method '"+r+"'")})}})},Yx=(c,e)=>{const r={},n=s=>{s.forEach(i=>{r[i]=!0})};return $0(c)?n(c):n(String(c).split(e)),r},Jx=()=>{},Qx=(c,e)=>(c=+c,Number.isFinite(c)?c:e),or="abcdefghijklmnopqrstuvwxyz",yi="0123456789",kf={DIGIT:yi,ALPHA:or,ALPHA_DIGIT:or+or.toUpperCase()+yi},Zx=(c=16,e=kf.ALPHA_DIGIT)=>{let r="";const{length:n}=e;for(;c--;)r+=e[Math.random()*n|0];return r};function cS(c){return!!(c&&X4(c.append)&&c[Symbol.toStringTag]==="FormData"&&c[Symbol.iterator])}const eS=c=>{const e=new Array(10),r=(n,s)=>{if(de(n)){if(e.indexOf(n)>=0)return;if(!("toJSON"in n)){e[s]=n;const i=$0(n)?[]:{};return v7(n,(f,l)=>{const u=r(f,s+1);!Z5(u)&&(i[l]=u)}),e[s]=void 0,i}}return n};return r(c,0)},rS=w3("AsyncFunction"),aS=c=>c&&(de(c)||X4(c))&&X4(c.then)&&X4(c.catch),G={isArray:$0,isArrayBuffer:xf,isBuffer:bx,isFormData:Tx,isArrayBufferView:xx,isString:Sx,isNumber:Sf,isBoolean:wx,isObject:de,isPlainObject:Bc,isUndefined:Z5,isDate:Nx,isFile:Ax,isBlob:_x,isRegExp:Kx,isFunction:X4,isStream:Px,isURLSearchParams:Ex,isTypedArray:Wx,isFileList:kx,forEach:v7,merge:Rr,extend:Rx,trim:Ox,stripBOM:Fx,inherits:Bx,toFlatObject:Dx,kindOf:me,kindOfTest:w3,endsWith:Ix,toArray:Ux,forEachEntry:$x,matchAll:qx,isHTMLForm:jx,hasOwnProperty:Li,hasOwnProp:Li,reduceDescriptors:_f,freezeMethods:Xx,toObjectSet:Yx,toCamelCase:Gx,noop:Jx,toFiniteNumber:Qx,findKey:wf,global:Nf,isContextDefined:Af,ALPHABET:kf,generateString:Zx,isSpecCompliantForm:cS,toJSONObject:eS,isAsyncFn:rS,isThenable:aS};function q2(c,e,r,n,s){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=c,this.name="AxiosError",e&&(this.code=e),r&&(this.config=r),n&&(this.request=n),s&&(this.response=s)}G.inherits(q2,Error,{toJSON:function(){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:G.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const Pf=q2.prototype,Tf={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(c=>{Tf[c]={value:c}});Object.defineProperties(q2,Tf);Object.defineProperty(Pf,"isAxiosError",{value:!0});q2.from=(c,e,r,n,s,i)=>{const f=Object.create(Pf);return G.toFlatObject(c,f,function(u){return u!==Error.prototype},l=>l!=="isAxiosError"),q2.call(f,c.message,e,r,n,s),f.cause=c,f.name=c.name,i&&Object.assign(f,i),f};const nS=null;function Fr(c){return G.isPlainObject(c)||G.isArray(c)}function Ef(c){return G.endsWith(c,"[]")?c.slice(0,-2):c}function bi(c,e,r){return c?c.concat(e).map(function(s,i){return s=Ef(s),!r&&i?"["+s+"]":s}).join(r?".":""):e}function tS(c){return G.isArray(c)&&!c.some(Fr)}const sS=G.toFlatObject(G,{},null,function(e){return/^is[A-Z]/.test(e)});function He(c,e,r){if(!G.isObject(c))throw new TypeError("target must be an object");e=e||new FormData,r=G.toFlatObject(r,{metaTokens:!0,dots:!1,indexes:!1},!1,function(b,k){return!G.isUndefined(k[b])});const n=r.metaTokens,s=r.visitor||v,i=r.dots,f=r.indexes,u=(r.Blob||typeof Blob<"u"&&Blob)&&G.isSpecCompliantForm(e);if(!G.isFunction(s))throw new TypeError("visitor must be a function");function m(V){if(V===null)return"";if(G.isDate(V))return V.toISOString();if(!u&&G.isBlob(V))throw new q2("Blob is not supported. Use a Buffer instead.");return G.isArrayBuffer(V)||G.isTypedArray(V)?u&&typeof Blob=="function"?new Blob([V]):Buffer.from(V):V}function v(V,b,k){let y=V;if(V&&!k&&typeof V=="object"){if(G.endsWith(b,"{}"))b=n?b:b.slice(0,-2),V=JSON.stringify(V);else if(G.isArray(V)&&tS(V)||(G.isFileList(V)||G.endsWith(b,"[]"))&&(y=G.toArray(V)))return b=Ef(b),y.forEach(function(A,E){!(G.isUndefined(A)||A===null)&&e.append(f===!0?bi([b],E,i):f===null?b:b+"[]",m(A))}),!1}return Fr(V)?!0:(e.append(bi(k,b,i),m(V)),!1)}const d=[],M=Object.assign(sS,{defaultVisitor:v,convertValue:m,isVisitable:Fr});function x(V,b){if(!G.isUndefined(V)){if(d.indexOf(V)!==-1)throw Error("Circular reference detected in "+b.join("."));d.push(V),G.forEach(V,function(y,C){(!(G.isUndefined(y)||y===null)&&s.call(e,y,G.isString(C)?C.trim():C,b,M))===!0&&x(y,b?b.concat(C):[C])}),d.pop()}}if(!G.isObject(c))throw new TypeError("data must be an object");return x(c),e}function xi(c){const e={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(c).replace(/[!'()~]|%20|%00/g,function(n){return e[n]})}function Ta(c,e){this._pairs=[],c&&He(c,this,e)}const Of=Ta.prototype;Of.append=function(e,r){this._pairs.push([e,r])};Of.toString=function(e){const r=e?function(n){return e.call(this,n,xi)}:xi;return this._pairs.map(function(s){return r(s[0])+"="+r(s[1])},"").join("&")};function iS(c){return encodeURIComponent(c).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function Rf(c,e,r){if(!e)return c;const n=r&&r.encode||iS,s=r&&r.serialize;let i;if(s?i=s(e,r):i=G.isURLSearchParams(e)?e.toString():new Ta(e,r).toString(n),i){const f=c.indexOf("#");f!==-1&&(c=c.slice(0,f)),c+=(c.indexOf("?")===-1?"?":"&")+i}return c}class oS{constructor(){this.handlers=[]}use(e,r,n){return this.handlers.push({fulfilled:e,rejected:r,synchronous:n?n.synchronous:!1,runWhen:n?n.runWhen:null}),this.handlers.length-1}eject(e){this.handlers[e]&&(this.handlers[e]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(e){G.forEach(this.handlers,function(n){n!==null&&e(n)})}}const Si=oS,Ff={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},fS=typeof URLSearchParams<"u"?URLSearchParams:Ta,lS=typeof FormData<"u"?FormData:null,uS=typeof Blob<"u"?Blob:null,hS={isBrowser:!0,classes:{URLSearchParams:fS,FormData:lS,Blob:uS},protocols:["http","https","file","blob","url","data"]},Bf=typeof window<"u"&&typeof document<"u",pS=(c=>Bf&&["ReactNative","NativeScript","NS"].indexOf(c)<0)(typeof navigator<"u"&&navigator.product),mS=(()=>typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function")(),vS=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:Bf,hasStandardBrowserEnv:pS,hasStandardBrowserWebWorkerEnv:mS},Symbol.toStringTag,{value:"Module"})),x3={...vS,...hS};function dS(c,e){return He(c,new x3.classes.URLSearchParams,Object.assign({visitor:function(r,n,s,i){return x3.isNode&&G.isBuffer(r)?(this.append(n,r.toString("base64")),!1):i.defaultVisitor.apply(this,arguments)}},e))}function HS(c){return G.matchAll(/\w+|\[(\w*)]/g,c).map(e=>e[0]==="[]"?"":e[1]||e[0])}function zS(c){const e={},r=Object.keys(c);let n;const s=r.length;let i;for(n=0;n=r.length;return f=!f&&G.isArray(s)?s.length:f,u?(G.hasOwnProp(s,f)?s[f]=[s[f],n]:s[f]=n,!l):((!s[f]||!G.isObject(s[f]))&&(s[f]=[]),e(r,n,s[f],i)&&G.isArray(s[f])&&(s[f]=zS(s[f])),!l)}if(G.isFormData(c)&&G.isFunction(c.entries)){const r={};return G.forEachEntry(c,(n,s)=>{e(HS(n),s,r,0)}),r}return null}function gS(c,e,r){if(G.isString(c))try{return(e||JSON.parse)(c),G.trim(c)}catch(n){if(n.name!=="SyntaxError")throw n}return(r||JSON.stringify)(c)}const Ea={transitional:Ff,adapter:["xhr","http"],transformRequest:[function(e,r){const n=r.getContentType()||"",s=n.indexOf("application/json")>-1,i=G.isObject(e);if(i&&G.isHTMLForm(e)&&(e=new FormData(e)),G.isFormData(e))return s?JSON.stringify(Df(e)):e;if(G.isArrayBuffer(e)||G.isBuffer(e)||G.isStream(e)||G.isFile(e)||G.isBlob(e))return e;if(G.isArrayBufferView(e))return e.buffer;if(G.isURLSearchParams(e))return r.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),e.toString();let l;if(i){if(n.indexOf("application/x-www-form-urlencoded")>-1)return dS(e,this.formSerializer).toString();if((l=G.isFileList(e))||n.indexOf("multipart/form-data")>-1){const u=this.env&&this.env.FormData;return He(l?{"files[]":e}:e,u&&new u,this.formSerializer)}}return i||s?(r.setContentType("application/json",!1),gS(e)):e}],transformResponse:[function(e){const r=this.transitional||Ea.transitional,n=r&&r.forcedJSONParsing,s=this.responseType==="json";if(e&&G.isString(e)&&(n&&!this.responseType||s)){const f=!(r&&r.silentJSONParsing)&&s;try{return JSON.parse(e)}catch(l){if(f)throw l.name==="SyntaxError"?q2.from(l,q2.ERR_BAD_RESPONSE,this,null,this.response):l}}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:x3.classes.FormData,Blob:x3.classes.Blob},validateStatus:function(e){return e>=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};G.forEach(["delete","get","head","post","put","patch"],c=>{Ea.headers[c]={}});const Oa=Ea,VS=G.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"]),MS=c=>{const e={};let r,n,s;return c&&c.split(` +`).forEach(function(f){s=f.indexOf(":"),r=f.substring(0,s).trim().toLowerCase(),n=f.substring(s+1).trim(),!(!r||e[r]&&VS[r])&&(r==="set-cookie"?e[r]?e[r].push(n):e[r]=[n]:e[r]=e[r]?e[r]+", "+n:n)}),e},wi=Symbol("internals");function k5(c){return c&&String(c).trim().toLowerCase()}function Dc(c){return c===!1||c==null?c:G.isArray(c)?c.map(Dc):String(c)}function CS(c){const e=Object.create(null),r=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let n;for(;n=r.exec(c);)e[n[1]]=n[2];return e}const LS=c=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(c.trim());function fr(c,e,r,n,s){if(G.isFunction(n))return n.call(this,e,r);if(s&&(e=r),!!G.isString(e)){if(G.isString(n))return e.indexOf(n)!==-1;if(G.isRegExp(n))return n.test(e)}}function yS(c){return c.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(e,r,n)=>r.toUpperCase()+n)}function bS(c,e){const r=G.toCamelCase(" "+e);["get","set","has"].forEach(n=>{Object.defineProperty(c,n+r,{value:function(s,i,f){return this[n].call(this,e,s,i,f)},configurable:!0})})}class ze{constructor(e){e&&this.set(e)}set(e,r,n){const s=this;function i(l,u,m){const v=k5(u);if(!v)throw new Error("header name must be a non-empty string");const d=G.findKey(s,v);(!d||s[d]===void 0||m===!0||m===void 0&&s[d]!==!1)&&(s[d||u]=Dc(l))}const f=(l,u)=>G.forEach(l,(m,v)=>i(m,v,u));return G.isPlainObject(e)||e instanceof this.constructor?f(e,r):G.isString(e)&&(e=e.trim())&&!LS(e)?f(MS(e),r):e!=null&&i(r,e,n),this}get(e,r){if(e=k5(e),e){const n=G.findKey(this,e);if(n){const s=this[n];if(!r)return s;if(r===!0)return CS(s);if(G.isFunction(r))return r.call(this,s,n);if(G.isRegExp(r))return r.exec(s);throw new TypeError("parser must be boolean|regexp|function")}}}has(e,r){if(e=k5(e),e){const n=G.findKey(this,e);return!!(n&&this[n]!==void 0&&(!r||fr(this,this[n],n,r)))}return!1}delete(e,r){const n=this;let s=!1;function i(f){if(f=k5(f),f){const l=G.findKey(n,f);l&&(!r||fr(n,n[l],l,r))&&(delete n[l],s=!0)}}return G.isArray(e)?e.forEach(i):i(e),s}clear(e){const r=Object.keys(this);let n=r.length,s=!1;for(;n--;){const i=r[n];(!e||fr(this,this[i],i,e,!0))&&(delete this[i],s=!0)}return s}normalize(e){const r=this,n={};return G.forEach(this,(s,i)=>{const f=G.findKey(n,i);if(f){r[f]=Dc(s),delete r[i];return}const l=e?yS(i):String(i).trim();l!==i&&delete r[i],r[l]=Dc(s),n[l]=!0}),this}concat(...e){return this.constructor.concat(this,...e)}toJSON(e){const r=Object.create(null);return G.forEach(this,(n,s)=>{n!=null&&n!==!1&&(r[s]=e&&G.isArray(n)?n.join(", "):n)}),r}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([e,r])=>e+": "+r).join(` +`)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(e){return e instanceof this?e:new this(e)}static concat(e,...r){const n=new this(e);return r.forEach(s=>n.set(s)),n}static accessor(e){const n=(this[wi]=this[wi]={accessors:{}}).accessors,s=this.prototype;function i(f){const l=k5(f);n[l]||(bS(s,f),n[l]=!0)}return G.isArray(e)?e.forEach(i):i(e),this}}ze.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);G.reduceDescriptors(ze.prototype,({value:c},e)=>{let r=e[0].toUpperCase()+e.slice(1);return{get:()=>c,set(n){this[r]=n}}});G.freezeMethods(ze);const J3=ze;function lr(c,e){const r=this||Oa,n=e||r,s=J3.from(n.headers);let i=n.data;return G.forEach(c,function(l){i=l.call(r,i,s.normalize(),e?e.status:void 0)}),s.normalize(),i}function If(c){return!!(c&&c.__CANCEL__)}function d7(c,e,r){q2.call(this,c??"canceled",q2.ERR_CANCELED,e,r),this.name="CanceledError"}G.inherits(d7,q2,{__CANCEL__:!0});function xS(c,e,r){const n=r.config.validateStatus;!r.status||!n||n(r.status)?c(r):e(new q2("Request failed with status code "+r.status,[q2.ERR_BAD_REQUEST,q2.ERR_BAD_RESPONSE][Math.floor(r.status/100)-4],r.config,r.request,r))}const SS=x3.hasStandardBrowserEnv?{write(c,e,r,n,s,i){const f=[c+"="+encodeURIComponent(e)];G.isNumber(r)&&f.push("expires="+new Date(r).toGMTString()),G.isString(n)&&f.push("path="+n),G.isString(s)&&f.push("domain="+s),i===!0&&f.push("secure"),document.cookie=f.join("; ")},read(c){const e=document.cookie.match(new RegExp("(^|;\\s*)("+c+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove(c){this.write(c,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function wS(c){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(c)}function NS(c,e){return e?c.replace(/\/?\/$/,"")+"/"+e.replace(/^\/+/,""):c}function Uf(c,e){return c&&!wS(e)?NS(c,e):e}const AS=x3.hasStandardBrowserEnv?function(){const e=/(msie|trident)/i.test(navigator.userAgent),r=document.createElement("a");let n;function s(i){let f=i;return e&&(r.setAttribute("href",f),f=r.href),r.setAttribute("href",f),{href:r.href,protocol:r.protocol?r.protocol.replace(/:$/,""):"",host:r.host,search:r.search?r.search.replace(/^\?/,""):"",hash:r.hash?r.hash.replace(/^#/,""):"",hostname:r.hostname,port:r.port,pathname:r.pathname.charAt(0)==="/"?r.pathname:"/"+r.pathname}}return n=s(window.location.href),function(f){const l=G.isString(f)?s(f):f;return l.protocol===n.protocol&&l.host===n.host}}():function(){return function(){return!0}}();function _S(c){const e=/^([-+\w]{1,25})(:?\/\/|:)/.exec(c);return e&&e[1]||""}function kS(c,e){c=c||10;const r=new Array(c),n=new Array(c);let s=0,i=0,f;return e=e!==void 0?e:1e3,function(u){const m=Date.now(),v=n[i];f||(f=m),r[s]=u,n[s]=m;let d=i,M=0;for(;d!==s;)M+=r[d++],d=d%c;if(s=(s+1)%c,s===i&&(i=(i+1)%c),m-f{const i=s.loaded,f=s.lengthComputable?s.total:void 0,l=i-r,u=n(l),m=i<=f;r=i;const v={loaded:i,total:f,progress:f?i/f:void 0,bytes:l,rate:u||void 0,estimated:u&&f&&m?(f-i)/u:void 0,event:s};v[e?"download":"upload"]=!0,c(v)}}const PS=typeof XMLHttpRequest<"u",TS=PS&&function(c){return new Promise(function(r,n){let s=c.data;const i=J3.from(c.headers).normalize();let{responseType:f,withXSRFToken:l}=c,u;function m(){c.cancelToken&&c.cancelToken.unsubscribe(u),c.signal&&c.signal.removeEventListener("abort",u)}let v;if(G.isFormData(s)){if(x3.hasStandardBrowserEnv||x3.hasStandardBrowserWebWorkerEnv)i.setContentType(!1);else if((v=i.getContentType())!==!1){const[b,...k]=v?v.split(";").map(y=>y.trim()).filter(Boolean):[];i.setContentType([b||"multipart/form-data",...k].join("; "))}}let d=new XMLHttpRequest;if(c.auth){const b=c.auth.username||"",k=c.auth.password?unescape(encodeURIComponent(c.auth.password)):"";i.set("Authorization","Basic "+btoa(b+":"+k))}const M=Uf(c.baseURL,c.url);d.open(c.method.toUpperCase(),Rf(M,c.params,c.paramsSerializer),!0),d.timeout=c.timeout;function x(){if(!d)return;const b=J3.from("getAllResponseHeaders"in d&&d.getAllResponseHeaders()),y={data:!f||f==="text"||f==="json"?d.responseText:d.response,status:d.status,statusText:d.statusText,headers:b,config:c,request:d};xS(function(A){r(A),m()},function(A){n(A),m()},y),d=null}if("onloadend"in d?d.onloadend=x:d.onreadystatechange=function(){!d||d.readyState!==4||d.status===0&&!(d.responseURL&&d.responseURL.indexOf("file:")===0)||setTimeout(x)},d.onabort=function(){d&&(n(new q2("Request aborted",q2.ECONNABORTED,c,d)),d=null)},d.onerror=function(){n(new q2("Network Error",q2.ERR_NETWORK,c,d)),d=null},d.ontimeout=function(){let k=c.timeout?"timeout of "+c.timeout+"ms exceeded":"timeout exceeded";const y=c.transitional||Ff;c.timeoutErrorMessage&&(k=c.timeoutErrorMessage),n(new q2(k,y.clarifyTimeoutError?q2.ETIMEDOUT:q2.ECONNABORTED,c,d)),d=null},x3.hasStandardBrowserEnv&&(l&&G.isFunction(l)&&(l=l(c)),l||l!==!1&&AS(M))){const b=c.xsrfHeaderName&&c.xsrfCookieName&&SS.read(c.xsrfCookieName);b&&i.set(c.xsrfHeaderName,b)}s===void 0&&i.setContentType(null),"setRequestHeader"in d&&G.forEach(i.toJSON(),function(k,y){d.setRequestHeader(y,k)}),G.isUndefined(c.withCredentials)||(d.withCredentials=!!c.withCredentials),f&&f!=="json"&&(d.responseType=c.responseType),typeof c.onDownloadProgress=="function"&&d.addEventListener("progress",Ni(c.onDownloadProgress,!0)),typeof c.onUploadProgress=="function"&&d.upload&&d.upload.addEventListener("progress",Ni(c.onUploadProgress)),(c.cancelToken||c.signal)&&(u=b=>{d&&(n(!b||b.type?new d7(null,c,d):b),d.abort(),d=null)},c.cancelToken&&c.cancelToken.subscribe(u),c.signal&&(c.signal.aborted?u():c.signal.addEventListener("abort",u)));const V=_S(M);if(V&&x3.protocols.indexOf(V)===-1){n(new q2("Unsupported protocol "+V+":",q2.ERR_BAD_REQUEST,c));return}d.send(s||null)})},Br={http:nS,xhr:TS};G.forEach(Br,(c,e)=>{if(c){try{Object.defineProperty(c,"name",{value:e})}catch{}Object.defineProperty(c,"adapterName",{value:e})}});const Ai=c=>`- ${c}`,ES=c=>G.isFunction(c)||c===null||c===!1,Wf={getAdapter:c=>{c=G.isArray(c)?c:[c];const{length:e}=c;let r,n;const s={};for(let i=0;i`adapter ${l} `+(u===!1?"is not supported by the environment":"is not available in the build"));let f=e?i.length>1?`since : +`+i.map(Ai).join(` +`):" "+Ai(i[0]):"as no adapter specified";throw new q2("There is no suitable adapter to dispatch the request "+f,"ERR_NOT_SUPPORT")}return n},adapters:Br};function ur(c){if(c.cancelToken&&c.cancelToken.throwIfRequested(),c.signal&&c.signal.aborted)throw new d7(null,c)}function _i(c){return ur(c),c.headers=J3.from(c.headers),c.data=lr.call(c,c.transformRequest),["post","put","patch"].indexOf(c.method)!==-1&&c.headers.setContentType("application/x-www-form-urlencoded",!1),Wf.getAdapter(c.adapter||Oa.adapter)(c).then(function(n){return ur(c),n.data=lr.call(c,c.transformResponse,n),n.headers=J3.from(n.headers),n},function(n){return If(n)||(ur(c),n&&n.response&&(n.response.data=lr.call(c,c.transformResponse,n.response),n.response.headers=J3.from(n.response.headers))),Promise.reject(n)})}const ki=c=>c instanceof J3?c.toJSON():c;function k0(c,e){e=e||{};const r={};function n(m,v,d){return G.isPlainObject(m)&&G.isPlainObject(v)?G.merge.call({caseless:d},m,v):G.isPlainObject(v)?G.merge({},v):G.isArray(v)?v.slice():v}function s(m,v,d){if(G.isUndefined(v)){if(!G.isUndefined(m))return n(void 0,m,d)}else return n(m,v,d)}function i(m,v){if(!G.isUndefined(v))return n(void 0,v)}function f(m,v){if(G.isUndefined(v)){if(!G.isUndefined(m))return n(void 0,m)}else return n(void 0,v)}function l(m,v,d){if(d in e)return n(m,v);if(d in c)return n(void 0,m)}const u={url:i,method:i,data:i,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:l,headers:(m,v)=>s(ki(m),ki(v),!0)};return G.forEach(Object.keys(Object.assign({},c,e)),function(v){const d=u[v]||s,M=d(c[v],e[v],v);G.isUndefined(M)&&d!==l||(r[v]=M)}),r}const $f="1.6.7",Ra={};["object","boolean","number","function","string","symbol"].forEach((c,e)=>{Ra[c]=function(n){return typeof n===c||"a"+(e<1?"n ":" ")+c}});const Pi={};Ra.transitional=function(e,r,n){function s(i,f){return"[Axios v"+$f+"] Transitional option '"+i+"'"+f+(n?". "+n:"")}return(i,f,l)=>{if(e===!1)throw new q2(s(f," has been removed"+(r?" in "+r:"")),q2.ERR_DEPRECATED);return r&&!Pi[f]&&(Pi[f]=!0,console.warn(s(f," has been deprecated since v"+r+" and will be removed in the near future"))),e?e(i,f,l):!0}};function OS(c,e,r){if(typeof c!="object")throw new q2("options must be an object",q2.ERR_BAD_OPTION_VALUE);const n=Object.keys(c);let s=n.length;for(;s-- >0;){const i=n[s],f=e[i];if(f){const l=c[i],u=l===void 0||f(l,i,c);if(u!==!0)throw new q2("option "+i+" must be "+u,q2.ERR_BAD_OPTION_VALUE);continue}if(r!==!0)throw new q2("Unknown option "+i,q2.ERR_BAD_OPTION)}}const Dr={assertOptions:OS,validators:Ra},S6=Dr.validators;class Xc{constructor(e){this.defaults=e,this.interceptors={request:new Si,response:new Si}}async request(e,r){try{return await this._request(e,r)}catch(n){if(n instanceof Error){let s;Error.captureStackTrace?Error.captureStackTrace(s={}):s=new Error;const i=s.stack?s.stack.replace(/^.+\n/,""):"";n.stack?i&&!String(n.stack).endsWith(i.replace(/^.+\n.+\n/,""))&&(n.stack+=` +`+i):n.stack=i}throw n}}_request(e,r){typeof e=="string"?(r=r||{},r.url=e):r=e||{},r=k0(this.defaults,r);const{transitional:n,paramsSerializer:s,headers:i}=r;n!==void 0&&Dr.assertOptions(n,{silentJSONParsing:S6.transitional(S6.boolean),forcedJSONParsing:S6.transitional(S6.boolean),clarifyTimeoutError:S6.transitional(S6.boolean)},!1),s!=null&&(G.isFunction(s)?r.paramsSerializer={serialize:s}:Dr.assertOptions(s,{encode:S6.function,serialize:S6.function},!0)),r.method=(r.method||this.defaults.method||"get").toLowerCase();let f=i&&G.merge(i.common,i[r.method]);i&&G.forEach(["delete","get","head","post","put","patch","common"],V=>{delete i[V]}),r.headers=J3.concat(f,i);const l=[];let u=!0;this.interceptors.request.forEach(function(b){typeof b.runWhen=="function"&&b.runWhen(r)===!1||(u=u&&b.synchronous,l.unshift(b.fulfilled,b.rejected))});const m=[];this.interceptors.response.forEach(function(b){m.push(b.fulfilled,b.rejected)});let v,d=0,M;if(!u){const V=[_i.bind(this),void 0];for(V.unshift.apply(V,l),V.push.apply(V,m),M=V.length,v=Promise.resolve(r);d{if(!n._listeners)return;let i=n._listeners.length;for(;i-- >0;)n._listeners[i](s);n._listeners=null}),this.promise.then=s=>{let i;const f=new Promise(l=>{n.subscribe(l),i=l}).then(s);return f.cancel=function(){n.unsubscribe(i)},f},e(function(i,f,l){n.reason||(n.reason=new d7(i,f,l),r(n.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(e){if(this.reason){e(this.reason);return}this._listeners?this._listeners.push(e):this._listeners=[e]}unsubscribe(e){if(!this._listeners)return;const r=this._listeners.indexOf(e);r!==-1&&this._listeners.splice(r,1)}static source(){let e;return{token:new Fa(function(s){e=s}),cancel:e}}}const RS=Fa;function FS(c){return function(r){return c.apply(null,r)}}function BS(c){return G.isObject(c)&&c.isAxiosError===!0}const Ir={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};Object.entries(Ir).forEach(([c,e])=>{Ir[e]=c});const DS=Ir;function qf(c){const e=new Ic(c),r=bf(Ic.prototype.request,e);return G.extend(r,Ic.prototype,e,{allOwnKeys:!0}),G.extend(r,e,null,{allOwnKeys:!0}),r.create=function(s){return qf(k0(c,s))},r}const y1=qf(Oa);y1.Axios=Ic;y1.CanceledError=d7;y1.CancelToken=RS;y1.isCancel=If;y1.VERSION=$f;y1.toFormData=He;y1.AxiosError=q2;y1.Cancel=y1.CanceledError;y1.all=function(e){return Promise.all(e)};y1.spread=FS;y1.isAxiosError=BS;y1.mergeConfig=k0;y1.AxiosHeaders=J3;y1.formToJSON=c=>Df(G.isHTMLForm(c)?new FormData(c):c);y1.getAdapter=Wf.getAdapter;y1.HttpStatusCode=DS;y1.default=y1;const Ur=y1;window._=Lx;window.axios=Ur;window.axios.defaults.headers.common["X-Requested-With"]="XMLHttpRequest";function Ti(c,e){var r=Object.keys(c);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(c);e&&(n=n.filter(function(s){return Object.getOwnPropertyDescriptor(c,s).enumerable})),r.push.apply(r,n)}return r}function l2(c){for(var e=1;ec.length)&&(e=c.length);for(var r=0,n=new Array(e);r-1;s--){var i=r[s],f=(i.tagName||"").toUpperCase();["STYLE","LINK"].indexOf(f)>-1&&(n=i)}return o1.head.insertBefore(e,n),c}}var uw="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";function n7(){for(var c=12,e="";c-- >0;)e+=uw[Math.random()*62|0];return e}function q0(c){for(var e=[],r=(c||[]).length>>>0;r--;)e[r]=c[r];return e}function $a(c){return c.classList?q0(c.classList):(c.getAttribute("class")||"").split(" ").filter(function(e){return e})}function al(c){return"".concat(c).replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(//g,">")}function hw(c){return Object.keys(c||{}).reduce(function(e,r){return e+"".concat(r,'="').concat(al(c[r]),'" ')},"").trim()}function ge(c){return Object.keys(c||{}).reduce(function(e,r){return e+"".concat(r,": ").concat(c[r].trim(),";")},"")}function qa(c){return c.size!==S3.size||c.x!==S3.x||c.y!==S3.y||c.rotate!==S3.rotate||c.flipX||c.flipY}function pw(c){var e=c.transform,r=c.containerWidth,n=c.iconWidth,s={transform:"translate(".concat(r/2," 256)")},i="translate(".concat(e.x*32,", ").concat(e.y*32,") "),f="scale(".concat(e.size/16*(e.flipX?-1:1),", ").concat(e.size/16*(e.flipY?-1:1),") "),l="rotate(".concat(e.rotate," 0 0)"),u={transform:"".concat(i," ").concat(f," ").concat(l)},m={transform:"translate(".concat(n/2*-1," -256)")};return{outer:s,inner:u,path:m}}function mw(c){var e=c.transform,r=c.width,n=r===void 0?$r:r,s=c.height,i=s===void 0?$r:s,f=c.startCentered,l=f===void 0?!1:f,u="";return l&&Yf?u+="translate(".concat(e.x/w6-n/2,"em, ").concat(e.y/w6-i/2,"em) "):l?u+="translate(calc(-50% + ".concat(e.x/w6,"em), calc(-50% + ").concat(e.y/w6,"em)) "):u+="translate(".concat(e.x/w6,"em, ").concat(e.y/w6,"em) "),u+="scale(".concat(e.size/w6*(e.flipX?-1:1),", ").concat(e.size/w6*(e.flipY?-1:1),") "),u+="rotate(".concat(e.rotate,"deg) "),u}var vw=`:root, :host { --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Solid"; --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Regular"; --fa-font-light: normal 300 1em/1 "Font Awesome 6 Light"; @@ -780,14 +783,14 @@ svg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa { .fad.fa-inverse, .fa-duotone.fa-inverse { color: var(--fa-inverse, #fff); -}`;function bf(){var c=zf,e=gf,r=p2.cssPrefix,t=p2.replacementClass,s=CS;if(r!==c||t!==e){var i=new RegExp("\\.".concat(c,"\\-"),"g"),f=new RegExp("\\--".concat(c,"\\-"),"g"),l=new RegExp("\\.".concat(e),"g");s=s.replace(i,".".concat(r,"-")).replace(f,"--".concat(r,"-")).replace(l,".".concat(t))}return s}var li=!1;function I9(){p2.autoAddCss&&!li&&(HS(bf()),li=!0)}var LS={mixout:function(){return{dom:{css:bf,insertCss:I9}}},hooks:function(){return{beforeDOMElementCreation:function(){I9()},beforeI2svg:function(){I9()}}}},X3=P6||{};X3[K3]||(X3[K3]={});X3[K3].styles||(X3[K3].styles={});X3[K3].hooks||(X3[K3].hooks={});X3[K3].shims||(X3[K3].shims=[]);var a3=X3[K3],xf=[],yS=function c(){o1.removeEventListener("DOMContentLoaded",c),Oc=1,xf.map(function(e){return e()})},Oc=!1;Z3&&(Oc=(o1.documentElement.doScroll?/^loaded|^c/:/^loaded|^i|^c/).test(o1.readyState),Oc||o1.addEventListener("DOMContentLoaded",yS));function bS(c){Z3&&(Oc?setTimeout(c,0):xf.push(c))}function s7(c){var e=c.tag,r=c.attributes,t=r===void 0?{}:r,s=c.children,i=s===void 0?[]:s;return typeof c=="string"?yf(c):"<".concat(e," ").concat(gS(t),">").concat(i.map(s7).join(""),"")}function ui(c,e,r){if(c&&c[e]&&c[e][r])return{prefix:e,iconName:r,icon:c[e][r]}}var xS=function(e,r){return function(t,s,i,f){return e.call(r,t,s,i,f)}},U9=function(e,r,t,s){var i=Object.keys(e),f=i.length,l=s!==void 0?xS(r,s):r,h,m,v;for(t===void 0?(h=1,v=e[i[0]]):(h=0,v=t);h=55296&&s<=56319&&r=55296&&t<=56319&&r>e+1&&(s=c.charCodeAt(e+1),s>=56320&&s<=57343)?(t-55296)*1024+s-56320+65536:t}function hi(c){return Object.keys(c).reduce(function(e,r){var t=c[r],s=!!t.icon;return s?e[t.iconName]=t.icon:e[r]=t,e},{})}function Vr(c,e){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},t=r.skipHooks,s=t===void 0?!1:t,i=hi(e);typeof a3.hooks.addPack=="function"&&!s?a3.hooks.addPack(c,hi(e)):a3.styles[c]=f2(f2({},a3.styles[c]||{}),i),c==="fas"&&Vr("fa",e)}var ic,oc,fc,i0=a3.styles,NS=a3.shims,AS=(ic={},N1(ic,i1,Object.values(I5[i1])),N1(ic,d1,Object.values(I5[d1])),ic),va=null,Sf={},wf={},Nf={},Af={},_f={},_S=(oc={},N1(oc,i1,Object.keys(B5[i1])),N1(oc,d1,Object.keys(B5[d1])),oc);function kS(c){return~hS.indexOf(c)}function TS(c,e){var r=e.split("-"),t=r[0],s=r.slice(1).join("-");return t===c&&s!==""&&!kS(s)?s:null}var kf=function(){var e=function(i){return U9(i0,function(f,l,h){return f[h]=U9(l,i,{}),f},{})};Sf=e(function(s,i,f){if(i[3]&&(s[i[3]]=f),i[2]){var l=i[2].filter(function(h){return typeof h=="number"});l.forEach(function(h){s[h.toString(16)]=f})}return s}),wf=e(function(s,i,f){if(s[f]=f,i[2]){var l=i[2].filter(function(h){return typeof h=="string"});l.forEach(function(h){s[h]=f})}return s}),_f=e(function(s,i,f){var l=i[2];return s[f]=f,l.forEach(function(h){s[h]=f}),s});var r="far"in i0||p2.autoFetchSvg,t=U9(NS,function(s,i){var f=i[0],l=i[1],h=i[2];return l==="far"&&!r&&(l="fas"),typeof f=="string"&&(s.names[f]={prefix:l,iconName:h}),typeof f=="number"&&(s.unicodes[f.toString(16)]={prefix:l,iconName:h}),s},{names:{},unicodes:{}});Nf=t.names,Af=t.unicodes,va=te(p2.styleDefault,{family:p2.familyDefault})};dS(function(c){va=te(c.styleDefault,{family:p2.familyDefault})});kf();function da(c,e){return(Sf[c]||{})[e]}function PS(c,e){return(wf[c]||{})[e]}function H8(c,e){return(_f[c]||{})[e]}function Tf(c){return Nf[c]||{prefix:null,iconName:null}}function ES(c){var e=Af[c],r=da("fas",c);return e||(r?{prefix:"fas",iconName:r}:null)||{prefix:null,iconName:null}}function E6(){return va}var Ha=function(){return{prefix:null,iconName:null,rest:[]}};function te(c){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=e.family,t=r===void 0?i1:r,s=B5[t][c],i=D5[t][c]||D5[t][s],f=c in a3.styles?c:null;return i||f||null}var pi=(fc={},N1(fc,i1,Object.keys(I5[i1])),N1(fc,d1,Object.keys(I5[d1])),fc);function se(c){var e,r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},t=r.skipLookups,s=t===void 0?!1:t,i=(e={},N1(e,i1,"".concat(p2.cssPrefix,"-").concat(i1)),N1(e,d1,"".concat(p2.cssPrefix,"-").concat(d1)),e),f=null,l=i1;(c.includes(i[i1])||c.some(function(m){return pi[i1].includes(m)}))&&(l=i1),(c.includes(i[d1])||c.some(function(m){return pi[d1].includes(m)}))&&(l=d1);var h=c.reduce(function(m,v){var H=TS(p2.cssPrefix,v);if(i0[v]?(v=AS[l].includes(v)?sS[l][v]:v,f=v,m.prefix=v):_S[l].indexOf(v)>-1?(f=v,m.prefix=te(v,{family:l})):H?m.iconName=H:v!==p2.replacementClass&&v!==i[i1]&&v!==i[d1]&&m.rest.push(v),!s&&m.prefix&&m.iconName){var C=f==="fa"?Tf(m.iconName):{},x=H8(m.prefix,m.iconName);C.prefix&&(f=null),m.iconName=C.iconName||x||m.iconName,m.prefix=C.prefix||m.prefix,m.prefix==="far"&&!i0.far&&i0.fas&&!p2.autoFetchSvg&&(m.prefix="fas")}return m},Ha());return(c.includes("fa-brands")||c.includes("fab"))&&(h.prefix="fab"),(c.includes("fa-duotone")||c.includes("fad"))&&(h.prefix="fad"),!h.prefix&&l===d1&&(i0.fass||p2.autoFetchSvg)&&(h.prefix="fass",h.iconName=H8(h.prefix,h.iconName)||h.iconName),(h.prefix==="fa"||f==="fa")&&(h.prefix=E6()||"fas"),h}var OS=function(){function c(){Kx(this,c),this.definitions={}}return Xx(c,[{key:"add",value:function(){for(var r=this,t=arguments.length,s=new Array(t),i=0;i0&&v.forEach(function(H){typeof H=="string"&&(r[l][H]=m)}),r[l][h]=m}),r}}]),c}(),mi=[],o0={},l0={},RS=Object.keys(l0);function FS(c,e){var r=e.mixoutsTo;return mi=c,o0={},Object.keys(l0).forEach(function(t){RS.indexOf(t)===-1&&delete l0[t]}),mi.forEach(function(t){var s=t.mixout?t.mixout():{};if(Object.keys(s).forEach(function(f){typeof s[f]=="function"&&(r[f]=s[f]),Ec(s[f])==="object"&&Object.keys(s[f]).forEach(function(l){r[f]||(r[f]={}),r[f][l]=s[f][l]})}),t.hooks){var i=t.hooks();Object.keys(i).forEach(function(f){o0[f]||(o0[f]=[]),o0[f].push(i[f])})}t.provides&&t.provides(l0)}),r}function Mr(c,e){for(var r=arguments.length,t=new Array(r>2?r-2:0),s=2;s1?e-1:0),t=1;t0&&arguments[0]!==void 0?arguments[0]:{};return Z3?(b8("beforeI2svg",e),Y3("pseudoElements2svg",e),Y3("i2svg",e)):Promise.reject("Operation requires a DOM of some kind.")},watch:function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},r=e.autoReplaceSvgRoot;p2.autoReplaceSvg===!1&&(p2.autoReplaceSvg=!0),p2.observeMutations=!0,bS(function(){US({autoReplaceSvgRoot:r}),b8("watch",e)})}},IS={icon:function(e){if(e===null)return null;if(Ec(e)==="object"&&e.prefix&&e.iconName)return{prefix:e.prefix,iconName:H8(e.prefix,e.iconName)||e.iconName};if(Array.isArray(e)&&e.length===2){var r=e[1].indexOf("fa-")===0?e[1].slice(3):e[1],t=te(e[0]);return{prefix:t,iconName:H8(t,r)||r}}if(typeof e=="string"&&(e.indexOf("".concat(p2.cssPrefix,"-"))>-1||e.match(iS))){var s=se(e.split(" "),{skipLookups:!0});return{prefix:s.prefix||E6(),iconName:H8(s.prefix,s.iconName)||s.iconName}}if(typeof e=="string"){var i=E6();return{prefix:i,iconName:H8(i,e)||e}}}},N4={noAuto:BS,config:p2,dom:DS,parse:IS,library:Pf,findIconDefinition:Cr,toHtml:s7},US=function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},r=e.autoReplaceSvgRoot,t=r===void 0?o1:r;(Object.keys(a3.styles).length>0||p2.autoFetchSvg)&&Z3&&p2.autoReplaceSvg&&N4.dom.i2svg({node:t})};function ie(c,e){return Object.defineProperty(c,"abstract",{get:e}),Object.defineProperty(c,"html",{get:function(){return c.abstract.map(function(t){return s7(t)})}}),Object.defineProperty(c,"node",{get:function(){if(Z3){var t=o1.createElement("div");return t.innerHTML=c.html,t.children}}}),c}function WS(c){var e=c.children,r=c.main,t=c.mask,s=c.attributes,i=c.styles,f=c.transform;if(ma(f)&&r.found&&!t.found){var l=r.width,h=r.height,m={x:l/h/2,y:.5};s.style=ne(f2(f2({},i),{},{"transform-origin":"".concat(m.x+f.x/16,"em ").concat(m.y+f.y/16,"em")}))}return[{tag:"svg",attributes:s,children:e}]}function $S(c){var e=c.prefix,r=c.iconName,t=c.children,s=c.attributes,i=c.symbol,f=i===!0?"".concat(e,"-").concat(p2.cssPrefix,"-").concat(r):i;return[{tag:"svg",attributes:{style:"display: none;"},children:[{tag:"symbol",attributes:f2(f2({},s),{},{id:f}),children:t}]}]}function za(c){var e=c.icons,r=e.main,t=e.mask,s=c.prefix,i=c.iconName,f=c.transform,l=c.symbol,h=c.title,m=c.maskId,v=c.titleId,H=c.extra,C=c.watchable,x=C===void 0?!1:C,M=t.found?t:r,b=M.width,P=M.height,L=s==="fak",S=[p2.replacementClass,i?"".concat(p2.cssPrefix,"-").concat(i):""].filter(function(e2){return H.classes.indexOf(e2)===-1}).filter(function(e2){return e2!==""||!!e2}).concat(H.classes).join(" "),E={children:[],attributes:f2(f2({},H.attributes),{},{"data-prefix":s,"data-icon":i,class:S,role:H.attributes.role||"img",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 ".concat(b," ").concat(P)})},B=L&&!~H.classes.indexOf("fa-fw")?{width:"".concat(b/P*16*.0625,"em")}:{};x&&(E.attributes[y8]=""),h&&(E.children.push({tag:"title",attributes:{id:E.attributes["aria-labelledby"]||"title-".concat(v||W5())},children:[h]}),delete E.attributes.title);var G=f2(f2({},E),{},{prefix:s,iconName:i,main:r,mask:t,maskId:m,transform:f,symbol:l,styles:f2(f2({},B),H.styles)}),c2=t.found&&r.found?Y3("generateAbstractMask",G)||{children:[],attributes:{}}:Y3("generateAbstractIcon",G)||{children:[],attributes:{}},U=c2.children,F=c2.attributes;return G.children=U,G.attributes=F,l?$S(G):WS(G)}function vi(c){var e=c.content,r=c.width,t=c.height,s=c.transform,i=c.title,f=c.extra,l=c.watchable,h=l===void 0?!1:l,m=f2(f2(f2({},f.attributes),i?{title:i}:{}),{},{class:f.classes.join(" ")});h&&(m[y8]="");var v=f2({},f.styles);ma(s)&&(v.transform=MS({transform:s,startCentered:!0,width:r,height:t}),v["-webkit-transform"]=v.transform);var H=ne(v);H.length>0&&(m.style=H);var C=[];return C.push({tag:"span",attributes:m,children:[e]}),i&&C.push({tag:"span",attributes:{class:"sr-only"},children:[i]}),C}function qS(c){var e=c.content,r=c.title,t=c.extra,s=f2(f2(f2({},t.attributes),r?{title:r}:{}),{},{class:t.classes.join(" ")}),i=ne(t.styles);i.length>0&&(s.style=i);var f=[];return f.push({tag:"span",attributes:s,children:[e]}),r&&f.push({tag:"span",attributes:{class:"sr-only"},children:[r]}),f}var W9=a3.styles;function Lr(c){var e=c[0],r=c[1],t=c.slice(4),s=oa(t,1),i=s[0],f=null;return Array.isArray(i)?f={tag:"g",attributes:{class:"".concat(p2.cssPrefix,"-").concat(d8.GROUP)},children:[{tag:"path",attributes:{class:"".concat(p2.cssPrefix,"-").concat(d8.SECONDARY),fill:"currentColor",d:i[0]}},{tag:"path",attributes:{class:"".concat(p2.cssPrefix,"-").concat(d8.PRIMARY),fill:"currentColor",d:i[1]}}]}:f={tag:"path",attributes:{fill:"currentColor",d:i}},{found:!0,width:e,height:r,icon:f}}var GS={found:!1,width:512,height:512};function jS(c,e){!Vf&&!p2.showMissingIcons&&c&&console.error('Icon with name "'.concat(c,'" and prefix "').concat(e,'" is missing.'))}function yr(c,e){var r=e;return e==="fa"&&p2.styleDefault!==null&&(e=E6()),new Promise(function(t,s){if(Y3("missingIconAbstract"),r==="fa"){var i=Tf(c)||{};c=i.iconName||c,e=i.prefix||e}if(c&&e&&W9[e]&&W9[e][c]){var f=W9[e][c];return t(Lr(f))}jS(c,e),t(f2(f2({},GS),{},{icon:p2.showMissingIcons&&c?Y3("missingIconAbstract")||{}:{}}))})}var di=function(){},br=p2.measurePerformance&&ec&&ec.mark&&ec.measure?ec:{mark:di,measure:di},y5='FA "6.2.1"',KS=function(e){return br.mark("".concat(y5," ").concat(e," begins")),function(){return Ef(e)}},Ef=function(e){br.mark("".concat(y5," ").concat(e," ends")),br.measure("".concat(y5," ").concat(e),"".concat(y5," ").concat(e," begins"),"".concat(y5," ").concat(e," ends"))},ga={begin:KS,end:Ef},Sc=function(){};function Hi(c){var e=c.getAttribute?c.getAttribute(y8):null;return typeof e=="string"}function XS(c){var e=c.getAttribute?c.getAttribute(la):null,r=c.getAttribute?c.getAttribute(ua):null;return e&&r}function YS(c){return c&&c.classList&&c.classList.contains&&c.classList.contains(p2.replacementClass)}function JS(){if(p2.autoReplaceSvg===!0)return wc.replace;var c=wc[p2.autoReplaceSvg];return c||wc.replace}function QS(c){return o1.createElementNS("http://www.w3.org/2000/svg",c)}function ZS(c){return o1.createElement(c)}function Of(c){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=e.ceFn,t=r===void 0?c.tag==="svg"?QS:ZS:r;if(typeof c=="string")return o1.createTextNode(c);var s=t(c.tag);Object.keys(c.attributes||[]).forEach(function(f){s.setAttribute(f,c.attributes[f])});var i=c.children||[];return i.forEach(function(f){s.appendChild(Of(f,{ceFn:t}))}),s}function cw(c){var e=" ".concat(c.outerHTML," ");return e="".concat(e,"Font Awesome fontawesome.com "),e}var wc={replace:function(e){var r=e[0];if(r.parentNode)if(e[1].forEach(function(s){r.parentNode.insertBefore(Of(s),r)}),r.getAttribute(y8)===null&&p2.keepOriginalSource){var t=o1.createComment(cw(r));r.parentNode.replaceChild(t,r)}else r.remove()},nest:function(e){var r=e[0],t=e[1];if(~pa(r).indexOf(p2.replacementClass))return wc.replace(e);var s=new RegExp("".concat(p2.cssPrefix,"-.*"));if(delete t[0].attributes.id,t[0].attributes.class){var i=t[0].attributes.class.split(" ").reduce(function(l,h){return h===p2.replacementClass||h.match(s)?l.toSvg.push(h):l.toNode.push(h),l},{toNode:[],toSvg:[]});t[0].attributes.class=i.toSvg.join(" "),i.toNode.length===0?r.removeAttribute("class"):r.setAttribute("class",i.toNode.join(" "))}var f=t.map(function(l){return s7(l)}).join(` -`);r.setAttribute(y8,""),r.innerHTML=f}};function zi(c){c()}function Rf(c,e){var r=typeof e=="function"?e:Sc;if(c.length===0)r();else{var t=zi;p2.mutateApproach===nS&&(t=P6.requestAnimationFrame||zi),t(function(){var s=JS(),i=ga.begin("mutate");c.map(s),i(),r()})}}var Va=!1;function Ff(){Va=!0}function xr(){Va=!1}var Rc=null;function gi(c){if(oi&&p2.observeMutations){var e=c.treeCallback,r=e===void 0?Sc:e,t=c.nodeCallback,s=t===void 0?Sc:t,i=c.pseudoElementsCallback,f=i===void 0?Sc:i,l=c.observeMutationsRoot,h=l===void 0?o1:l;Rc=new oi(function(m){if(!Va){var v=E6();A0(m).forEach(function(H){if(H.type==="childList"&&H.addedNodes.length>0&&!Hi(H.addedNodes[0])&&(p2.searchPseudoElements&&f(H.target),r(H.target)),H.type==="attributes"&&H.target.parentNode&&p2.searchPseudoElements&&f(H.target.parentNode),H.type==="attributes"&&Hi(H.target)&&~uS.indexOf(H.attributeName))if(H.attributeName==="class"&&XS(H.target)){var C=se(pa(H.target)),x=C.prefix,M=C.iconName;H.target.setAttribute(la,x||v),M&&H.target.setAttribute(ua,M)}else YS(H.target)&&s(H.target)})}}),Z3&&Rc.observe(h,{childList:!0,attributes:!0,characterData:!0,subtree:!0})}}function ew(){Rc&&Rc.disconnect()}function rw(c){var e=c.getAttribute("style"),r=[];return e&&(r=e.split(";").reduce(function(t,s){var i=s.split(":"),f=i[0],l=i.slice(1);return f&&l.length>0&&(t[f]=l.join(":").trim()),t},{})),r}function aw(c){var e=c.getAttribute("data-prefix"),r=c.getAttribute("data-icon"),t=c.innerText!==void 0?c.innerText.trim():"",s=se(pa(c));return s.prefix||(s.prefix=E6()),e&&r&&(s.prefix=e,s.iconName=r),s.iconName&&s.prefix||(s.prefix&&t.length>0&&(s.iconName=PS(s.prefix,c.innerText)||da(s.prefix,gr(c.innerText))),!s.iconName&&p2.autoFetchSvg&&c.firstChild&&c.firstChild.nodeType===Node.TEXT_NODE&&(s.iconName=c.firstChild.data)),s}function nw(c){var e=A0(c.attributes).reduce(function(s,i){return s.name!=="class"&&s.name!=="style"&&(s[i.name]=i.value),s},{}),r=c.getAttribute("title"),t=c.getAttribute("data-fa-title-id");return p2.autoA11y&&(r?e["aria-labelledby"]="".concat(p2.replacementClass,"-title-").concat(t||W5()):(e["aria-hidden"]="true",e.focusable="false")),e}function tw(){return{iconName:null,title:null,titleId:null,prefix:null,transform:L3,symbol:!1,mask:{iconName:null,prefix:null,rest:[]},maskId:null,extra:{classes:[],styles:{},attributes:{}}}}function Vi(c){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{styleParser:!0},r=aw(c),t=r.iconName,s=r.prefix,i=r.rest,f=nw(c),l=Mr("parseNodeAttributes",{},c),h=e.styleParser?rw(c):[];return f2({iconName:t,title:c.getAttribute("title"),titleId:c.getAttribute("data-fa-title-id"),prefix:s,transform:L3,mask:{iconName:null,prefix:null,rest:[]},maskId:null,symbol:!1,extra:{classes:i,styles:h,attributes:f}},l)}var sw=a3.styles;function Bf(c){var e=p2.autoReplaceSvg==="nest"?Vi(c,{styleParser:!1}):Vi(c);return~e.extra.classes.indexOf(Mf)?Y3("generateLayersText",c,e):Y3("generateSvgReplacementMutation",c,e)}var O6=new Set;ha.map(function(c){O6.add("fa-".concat(c))});Object.keys(B5[i1]).map(O6.add.bind(O6));Object.keys(B5[d1]).map(O6.add.bind(O6));O6=n7(O6);function Mi(c){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null;if(!Z3)return Promise.resolve();var r=o1.documentElement.classList,t=function(H){return r.add("".concat(fi,"-").concat(H))},s=function(H){return r.remove("".concat(fi,"-").concat(H))},i=p2.autoFetchSvg?O6:ha.map(function(v){return"fa-".concat(v)}).concat(Object.keys(sw));i.includes("fa")||i.push("fa");var f=[".".concat(Mf,":not([").concat(y8,"])")].concat(i.map(function(v){return".".concat(v,":not([").concat(y8,"])")})).join(", ");if(f.length===0)return Promise.resolve();var l=[];try{l=A0(c.querySelectorAll(f))}catch{}if(l.length>0)t("pending"),s("complete");else return Promise.resolve();var h=ga.begin("onTree"),m=l.reduce(function(v,H){try{var C=Bf(H);C&&v.push(C)}catch(x){Vf||x.name==="MissingIcon"&&console.error(x)}return v},[]);return new Promise(function(v,H){Promise.all(m).then(function(C){Rf(C,function(){t("active"),t("complete"),s("pending"),typeof e=="function"&&e(),h(),v()})}).catch(function(C){h(),H(C)})})}function iw(c){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null;Bf(c).then(function(r){r&&Rf([r],e)})}function ow(c){return function(e){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},t=(e||{}).icon?e:Cr(e||{}),s=r.mask;return s&&(s=(s||{}).icon?s:Cr(s||{})),c(t,f2(f2({},r),{},{mask:s}))}}var fw=function(e){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},t=r.transform,s=t===void 0?L3:t,i=r.symbol,f=i===void 0?!1:i,l=r.mask,h=l===void 0?null:l,m=r.maskId,v=m===void 0?null:m,H=r.title,C=H===void 0?null:H,x=r.titleId,M=x===void 0?null:x,b=r.classes,P=b===void 0?[]:b,L=r.attributes,S=L===void 0?{}:L,E=r.styles,B=E===void 0?{}:E;if(e){var G=e.prefix,c2=e.iconName,U=e.icon;return ie(f2({type:"icon"},e),function(){return b8("beforeDOMElementCreation",{iconDefinition:e,params:r}),p2.autoA11y&&(C?S["aria-labelledby"]="".concat(p2.replacementClass,"-title-").concat(M||W5()):(S["aria-hidden"]="true",S.focusable="false")),za({icons:{main:Lr(U),mask:h?Lr(h.icon):{found:!1,width:null,height:null,icon:{}}},prefix:G,iconName:c2,transform:f2(f2({},L3),s),symbol:f,title:C,maskId:v,titleId:M,extra:{attributes:S,styles:B,classes:P}})})}},lw={mixout:function(){return{icon:ow(fw)}},hooks:function(){return{mutationObserverCallbacks:function(r){return r.treeCallback=Mi,r.nodeCallback=iw,r}}},provides:function(e){e.i2svg=function(r){var t=r.node,s=t===void 0?o1:t,i=r.callback,f=i===void 0?function(){}:i;return Mi(s,f)},e.generateSvgReplacementMutation=function(r,t){var s=t.iconName,i=t.title,f=t.titleId,l=t.prefix,h=t.transform,m=t.symbol,v=t.mask,H=t.maskId,C=t.extra;return new Promise(function(x,M){Promise.all([yr(s,l),v.iconName?yr(v.iconName,v.prefix):Promise.resolve({found:!1,width:512,height:512,icon:{}})]).then(function(b){var P=oa(b,2),L=P[0],S=P[1];x([r,za({icons:{main:L,mask:S},prefix:l,iconName:s,transform:h,symbol:m,maskId:H,title:i,titleId:f,extra:C,watchable:!0})])}).catch(M)})},e.generateAbstractIcon=function(r){var t=r.children,s=r.attributes,i=r.main,f=r.transform,l=r.styles,h=ne(l);h.length>0&&(s.style=h);var m;return ma(f)&&(m=Y3("generateAbstractTransformGrouping",{main:i,transform:f,containerWidth:i.width,iconWidth:i.width})),t.push(m||i.icon),{children:t,attributes:s}}}},uw={mixout:function(){return{layer:function(r){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},s=t.classes,i=s===void 0?[]:s;return ie({type:"layer"},function(){b8("beforeDOMElementCreation",{assembler:r,params:t});var f=[];return r(function(l){Array.isArray(l)?l.map(function(h){f=f.concat(h.abstract)}):f=f.concat(l.abstract)}),[{tag:"span",attributes:{class:["".concat(p2.cssPrefix,"-layers")].concat(n7(i)).join(" ")},children:f}]})}}}},hw={mixout:function(){return{counter:function(r){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},s=t.title,i=s===void 0?null:s,f=t.classes,l=f===void 0?[]:f,h=t.attributes,m=h===void 0?{}:h,v=t.styles,H=v===void 0?{}:v;return ie({type:"counter",content:r},function(){return b8("beforeDOMElementCreation",{content:r,params:t}),qS({content:r.toString(),title:i,extra:{attributes:m,styles:H,classes:["".concat(p2.cssPrefix,"-layers-counter")].concat(n7(l))}})})}}}},pw={mixout:function(){return{text:function(r){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},s=t.transform,i=s===void 0?L3:s,f=t.title,l=f===void 0?null:f,h=t.classes,m=h===void 0?[]:h,v=t.attributes,H=v===void 0?{}:v,C=t.styles,x=C===void 0?{}:C;return ie({type:"text",content:r},function(){return b8("beforeDOMElementCreation",{content:r,params:t}),vi({content:r,transform:f2(f2({},L3),i),title:l,extra:{attributes:H,styles:x,classes:["".concat(p2.cssPrefix,"-layers-text")].concat(n7(m))}})})}}},provides:function(e){e.generateLayersText=function(r,t){var s=t.title,i=t.transform,f=t.extra,l=null,h=null;if(Hf){var m=parseInt(getComputedStyle(r).fontSize,10),v=r.getBoundingClientRect();l=v.width/m,h=v.height/m}return p2.autoA11y&&!s&&(f.attributes["aria-hidden"]="true"),Promise.resolve([r,vi({content:r.innerHTML,width:l,height:h,transform:i,title:s,extra:f,watchable:!0})])}}},mw=new RegExp('"',"ug"),Ci=[1105920,1112319];function vw(c){var e=c.replace(mw,""),r=wS(e,0),t=r>=Ci[0]&&r<=Ci[1],s=e.length===2?e[0]===e[1]:!1;return{value:gr(s?e[0]:e),isSecondary:t||s}}function Li(c,e){var r="".concat(aS).concat(e.replace(":","-"));return new Promise(function(t,s){if(c.getAttribute(r)!==null)return t();var i=A0(c.children),f=i.filter(function(U){return U.getAttribute(zr)===e})[0],l=P6.getComputedStyle(c,e),h=l.getPropertyValue("font-family").match(oS),m=l.getPropertyValue("font-weight"),v=l.getPropertyValue("content");if(f&&!h)return c.removeChild(f),t();if(h&&v!=="none"&&v!==""){var H=l.getPropertyValue("content"),C=~["Sharp"].indexOf(h[2])?d1:i1,x=~["Solid","Regular","Light","Thin","Duotone","Brands","Kit"].indexOf(h[2])?D5[C][h[2].toLowerCase()]:fS[C][m],M=vw(H),b=M.value,P=M.isSecondary,L=h[0].startsWith("FontAwesome"),S=da(x,b),E=S;if(L){var B=ES(b);B.iconName&&B.prefix&&(S=B.iconName,x=B.prefix)}if(S&&!P&&(!f||f.getAttribute(la)!==x||f.getAttribute(ua)!==E)){c.setAttribute(r,E),f&&c.removeChild(f);var G=tw(),c2=G.extra;c2.attributes[zr]=e,yr(S,x).then(function(U){var F=za(f2(f2({},G),{},{icons:{main:U,mask:Ha()},prefix:x,iconName:E,extra:c2,watchable:!0})),e2=o1.createElement("svg");e==="::before"?c.insertBefore(e2,c.firstChild):c.appendChild(e2),e2.outerHTML=F.map(function(s2){return s7(s2)}).join(` -`),c.removeAttribute(r),t()}).catch(s)}else t()}else t()})}function dw(c){return Promise.all([Li(c,"::before"),Li(c,"::after")])}function Hw(c){return c.parentNode!==document.head&&!~tS.indexOf(c.tagName.toUpperCase())&&!c.getAttribute(zr)&&(!c.parentNode||c.parentNode.tagName!=="svg")}function yi(c){if(Z3)return new Promise(function(e,r){var t=A0(c.querySelectorAll("*")).filter(Hw).map(dw),s=ga.begin("searchPseudoElements");Ff(),Promise.all(t).then(function(){s(),xr(),e()}).catch(function(){s(),xr(),r()})})}var zw={hooks:function(){return{mutationObserverCallbacks:function(r){return r.pseudoElementsCallback=yi,r}}},provides:function(e){e.pseudoElements2svg=function(r){var t=r.node,s=t===void 0?o1:t;p2.searchPseudoElements&&yi(s)}}},bi=!1,gw={mixout:function(){return{dom:{unwatch:function(){Ff(),bi=!0}}}},hooks:function(){return{bootstrap:function(){gi(Mr("mutationObserverCallbacks",{}))},noAuto:function(){ew()},watch:function(r){var t=r.observeMutationsRoot;bi?xr():gi(Mr("mutationObserverCallbacks",{observeMutationsRoot:t}))}}}},xi=function(e){var r={size:16,x:0,y:0,flipX:!1,flipY:!1,rotate:0};return e.toLowerCase().split(" ").reduce(function(t,s){var i=s.toLowerCase().split("-"),f=i[0],l=i.slice(1).join("-");if(f&&l==="h")return t.flipX=!0,t;if(f&&l==="v")return t.flipY=!0,t;if(l=parseFloat(l),isNaN(l))return t;switch(f){case"grow":t.size=t.size+l;break;case"shrink":t.size=t.size-l;break;case"left":t.x=t.x-l;break;case"right":t.x=t.x+l;break;case"up":t.y=t.y-l;break;case"down":t.y=t.y+l;break;case"rotate":t.rotate=t.rotate+l;break}return t},r)},Vw={mixout:function(){return{parse:{transform:function(r){return xi(r)}}}},hooks:function(){return{parseNodeAttributes:function(r,t){var s=t.getAttribute("data-fa-transform");return s&&(r.transform=xi(s)),r}}},provides:function(e){e.generateAbstractTransformGrouping=function(r){var t=r.main,s=r.transform,i=r.containerWidth,f=r.iconWidth,l={transform:"translate(".concat(i/2," 256)")},h="translate(".concat(s.x*32,", ").concat(s.y*32,") "),m="scale(".concat(s.size/16*(s.flipX?-1:1),", ").concat(s.size/16*(s.flipY?-1:1),") "),v="rotate(".concat(s.rotate," 0 0)"),H={transform:"".concat(h," ").concat(m," ").concat(v)},C={transform:"translate(".concat(f/2*-1," -256)")},x={outer:l,inner:H,path:C};return{tag:"g",attributes:f2({},x.outer),children:[{tag:"g",attributes:f2({},x.inner),children:[{tag:t.icon.tag,children:t.icon.children,attributes:f2(f2({},t.icon.attributes),x.path)}]}]}}}},$9={x:0,y:0,width:"100%",height:"100%"};function Si(c){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0;return c.attributes&&(c.attributes.fill||e)&&(c.attributes.fill="black"),c}function Mw(c){return c.tag==="g"?c.children:[c]}var Cw={hooks:function(){return{parseNodeAttributes:function(r,t){var s=t.getAttribute("data-fa-mask"),i=s?se(s.split(" ").map(function(f){return f.trim()})):Ha();return i.prefix||(i.prefix=E6()),r.mask=i,r.maskId=t.getAttribute("data-fa-mask-id"),r}}},provides:function(e){e.generateAbstractMask=function(r){var t=r.children,s=r.attributes,i=r.main,f=r.mask,l=r.maskId,h=r.transform,m=i.width,v=i.icon,H=f.width,C=f.icon,x=VS({transform:h,containerWidth:H,iconWidth:m}),M={tag:"rect",attributes:f2(f2({},$9),{},{fill:"white"})},b=v.children?{children:v.children.map(Si)}:{},P={tag:"g",attributes:f2({},x.inner),children:[Si(f2({tag:v.tag,attributes:f2(f2({},v.attributes),x.path)},b))]},L={tag:"g",attributes:f2({},x.outer),children:[P]},S="mask-".concat(l||W5()),E="clip-".concat(l||W5()),B={tag:"mask",attributes:f2(f2({},$9),{},{id:S,maskUnits:"userSpaceOnUse",maskContentUnits:"userSpaceOnUse"}),children:[M,L]},G={tag:"defs",children:[{tag:"clipPath",attributes:{id:E},children:Mw(C)},B]};return t.push(G,{tag:"rect",attributes:f2({fill:"currentColor","clip-path":"url(#".concat(E,")"),mask:"url(#".concat(S,")")},$9)}),{children:t,attributes:s}}}},Lw={provides:function(e){var r=!1;P6.matchMedia&&(r=P6.matchMedia("(prefers-reduced-motion: reduce)").matches),e.missingIconAbstract=function(){var t=[],s={fill:"currentColor"},i={attributeType:"XML",repeatCount:"indefinite",dur:"2s"};t.push({tag:"path",attributes:f2(f2({},s),{},{d:"M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z"})});var f=f2(f2({},i),{},{attributeName:"opacity"}),l={tag:"circle",attributes:f2(f2({},s),{},{cx:"256",cy:"364",r:"28"}),children:[]};return r||l.children.push({tag:"animate",attributes:f2(f2({},i),{},{attributeName:"r",values:"28;14;28;28;14;28;"})},{tag:"animate",attributes:f2(f2({},f),{},{values:"1;0;1;1;0;1;"})}),t.push(l),t.push({tag:"path",attributes:f2(f2({},s),{},{opacity:"1",d:"M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z"}),children:r?[]:[{tag:"animate",attributes:f2(f2({},f),{},{values:"1;0;0;0;0;1;"})}]}),r||t.push({tag:"path",attributes:f2(f2({},s),{},{opacity:"0",d:"M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z"}),children:[{tag:"animate",attributes:f2(f2({},f),{},{values:"0;0;1;1;0;0;"})}]}),{tag:"g",attributes:{class:"missing"},children:t}}}},yw={hooks:function(){return{parseNodeAttributes:function(r,t){var s=t.getAttribute("data-fa-symbol"),i=s===null?!1:s===""?!0:s;return r.symbol=i,r}}}},bw=[LS,lw,uw,hw,pw,zw,gw,Vw,Cw,Lw,yw];FS(bw,{mixoutsTo:N4});N4.noAuto;var Df=N4.config,xw=N4.library;N4.dom;var Fc=N4.parse;N4.findIconDefinition;N4.toHtml;var Sw=N4.icon;N4.layer;var ww=N4.text;N4.counter;var Nw={prefix:"fas",iconName:"0",icon:[320,512,[],"30","M0 192C0 103.6 71.6 32 160 32s160 71.6 160 160V320c0 88.4-71.6 160-160 160S0 408.4 0 320V192zM160 96c-53 0-96 43-96 96V320c0 53 43 96 96 96s96-43 96-96V192c0-53-43-96-96-96z"]},Aw={prefix:"fas",iconName:"1",icon:[256,512,[],"31","M160 64c0-11.8-6.5-22.6-16.9-28.2s-23-5-32.9 1.6l-96 64C-.5 111.2-4.4 131 5.4 145.8s29.7 18.7 44.4 8.9L96 123.8V416H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96 96c17.7 0 32-14.3 32-32s-14.3-32-32-32H160V64z"]},_w={prefix:"fas",iconName:"2",icon:[320,512,[],"32","M142.9 96c-21.5 0-42.2 8.5-57.4 23.8L54.6 150.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L40.2 74.5C67.5 47.3 104.4 32 142.9 32C223 32 288 97 288 177.1c0 38.5-15.3 75.4-42.5 102.6L109.3 416H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9L200.2 234.5c15.2-15.2 23.8-35.9 23.8-57.4c0-44.8-36.3-81.1-81.1-81.1z"]},kw={prefix:"fas",iconName:"3",icon:[448,512,[],"33","M64 64c0-17.7 14.3-32 32-32H336c13.2 0 25 8.1 29.8 20.4s1.5 26.3-8.2 35.2L226.3 208H248c75.1 0 136 60.9 136 136s-60.9 136-136 136H169.4c-42.4 0-81.2-24-100.2-61.9l-1.9-3.8c-7.9-15.8-1.5-35 14.3-42.9s35-1.5 42.9 14.3l1.9 3.8c8.1 16.3 24.8 26.5 42.9 26.5H248c39.8 0 72-32.2 72-72s-32.2-72-72-72H144c-13.2 0-25-8.1-29.8-20.4s-1.5-26.3 8.2-35.2L253.7 96H96C78.3 96 64 81.7 64 64z"]},Tw={prefix:"fas",iconName:"4",icon:[384,512,[],"34","M189 77.6c7.5-16 .7-35.1-15.3-42.6s-35.1-.7-42.6 15.3L3 322.4c-4.7 9.9-3.9 21.5 1.9 30.8S21 368 32 368H256v80c0 17.7 14.3 32 32 32s32-14.3 32-32V368h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H320V160c0-17.7-14.3-32-32-32s-32 14.3-32 32V304H82.4L189 77.6z"]},Pw={prefix:"fas",iconName:"5",icon:[320,512,[],"35","M32.5 58.3C35.3 43.1 48.5 32 64 32H256c17.7 0 32 14.3 32 32s-14.3 32-32 32H90.7L70.3 208H184c75.1 0 136 60.9 136 136s-60.9 136-136 136H100.5c-39.4 0-75.4-22.3-93-57.5l-4.1-8.2c-7.9-15.8-1.5-35 14.3-42.9s35-1.5 42.9 14.3l4.1 8.2c6.8 13.6 20.6 22.1 35.8 22.1H184c39.8 0 72-32.2 72-72s-32.2-72-72-72H32c-9.5 0-18.5-4.2-24.6-11.5s-8.6-16.9-6.9-26.2l32-176z"]},Ew={prefix:"fas",iconName:"6",icon:[320,512,[],"36","M232.4 84.7c11.4-13.5 9.7-33.7-3.8-45.1s-33.7-9.7-45.1 3.8L38.6 214.7C14.7 242.9 1.1 278.4 .1 315.2c0 1.4-.1 2.9-.1 4.3c0 .2 0 .3 0 .5c0 88.4 71.6 160 160 160s160-71.6 160-160c0-85.5-67.1-155.4-151.5-159.8l63.9-75.6zM64 320c0-53 43-96 96-96s96 43 96 96s-43 96-96 96s-96-43-96-96z"]},Ow={prefix:"fas",iconName:"7",icon:[320,512,[],"37","M0 64C0 46.3 14.3 32 32 32H288c11.5 0 22 6.1 27.7 16.1s5.7 22.2-.1 32.1l-224 384c-8.9 15.3-28.5 20.4-43.8 11.5s-20.4-28.5-11.5-43.8L232.3 96H32C14.3 96 0 81.7 0 64z"]},Rw={prefix:"fas",iconName:"8",icon:[320,512,[],"38","M304 160c0-70.7-57.3-128-128-128H144C73.3 32 16 89.3 16 160c0 34.6 13.7 66 36 89C20.5 272.3 0 309.8 0 352c0 70.7 57.3 128 128 128h64c70.7 0 128-57.3 128-128c0-42.2-20.5-79.7-52-103c22.3-23 36-54.4 36-89zM176.1 288H192c35.3 0 64 28.7 64 64s-28.7 64-64 64H128c-35.3 0-64-28.7-64-64s28.7-64 64-64h15.9c0 0 .1 0 .1 0h32c0 0 .1 0 .1 0zm0-64c0 0 0 0 0 0H144c0 0 0 0 0 0c-35.3 0-64-28.7-64-64c0-35.3 28.7-64 64-64h32c35.3 0 64 28.7 64 64c0 35.3-28.6 64-64 64z"]},Fw={prefix:"fas",iconName:"9",icon:[320,512,[],"39","M64 192c0 53 43 96 96 96s96-43 96-96s-43-96-96-96s-96 43-96 96zm87.5 159.8C67.1 347.4 0 277.5 0 192C0 103.6 71.6 32 160 32s160 71.6 160 160c0 2.6-.1 5.3-.2 7.9c-1.7 35.7-15.2 70-38.4 97.4l-145 171.4c-11.4 13.5-31.6 15.2-45.1 3.8s-15.2-31.6-3.8-45.1l63.9-75.6z"]},Bw={prefix:"fas",iconName:"fill-drip",icon:[576,512,[],"f576","M41.4 9.4C53.9-3.1 74.1-3.1 86.6 9.4L168 90.7l53.1-53.1c28.1-28.1 73.7-28.1 101.8 0L474.3 189.1c28.1 28.1 28.1 73.7 0 101.8L283.9 481.4c-37.5 37.5-98.3 37.5-135.8 0L30.6 363.9c-37.5-37.5-37.5-98.3 0-135.8L122.7 136 41.4 54.6c-12.5-12.5-12.5-32.8 0-45.3zm176 221.3L168 181.3 75.9 273.4c-4.2 4.2-7 9.3-8.4 14.6H386.7l42.3-42.3c3.1-3.1 3.1-8.2 0-11.3L277.7 82.9c-3.1-3.1-8.2-3.1-11.3 0L213.3 136l49.4 49.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0zM512 512c-35.3 0-64-28.7-64-64c0-25.2 32.6-79.6 51.2-108.7c6-9.4 19.5-9.4 25.5 0C543.4 368.4 576 422.8 576 448c0 35.3-28.7 64-64 64z"]},Dw={prefix:"fas",iconName:"arrows-to-circle",icon:[640,512,[],"e4bd","M9.4 9.4C21.9-3.1 42.1-3.1 54.6 9.4L160 114.7V96c0-17.7 14.3-32 32-32s32 14.3 32 32v96c0 4.3-.9 8.5-2.4 12.2c-1.6 3.7-3.8 7.3-6.9 10.3l-.1 .1c-3.1 3-6.6 5.3-10.3 6.9c-3.8 1.6-7.9 2.4-12.2 2.4H96c-17.7 0-32-14.3-32-32s14.3-32 32-32h18.7L9.4 54.6C-3.1 42.1-3.1 21.9 9.4 9.4zM384 256c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zM114.7 352H96c-17.7 0-32-14.3-32-32s14.3-32 32-32h96 0l.1 0c8.8 0 16.7 3.6 22.5 9.3l.1 .1c3 3.1 5.3 6.6 6.9 10.3c1.6 3.8 2.4 7.9 2.4 12.2v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V397.3L54.6 502.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L114.7 352zM416 96c0-17.7 14.3-32 32-32s32 14.3 32 32v18.7L585.4 9.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L525.3 160H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H448c-8.8 0-16.8-3.6-22.6-9.3l-.1-.1c-3-3.1-5.3-6.6-6.9-10.3s-2.4-7.8-2.4-12.2l0-.1v0V96zM525.3 352L630.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L480 397.3V416c0 17.7-14.3 32-32 32s-32-14.3-32-32V320v0c0 0 0-.1 0-.1c0-4.3 .9-8.4 2.4-12.2c1.6-3.8 3.9-7.3 6.9-10.4c5.8-5.8 13.7-9.3 22.5-9.4c0 0 .1 0 .1 0h0 96c17.7 0 32 14.3 32 32s-14.3 32-32 32H525.3z"]},If={prefix:"fas",iconName:"circle-chevron-right",icon:[512,512,["chevron-circle-right"],"f138","M0 256C0 397.4 114.6 512 256 512s256-114.6 256-256S397.4 0 256 0S0 114.6 0 256zM241 377c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l87-87-87-87c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L345 239c9.4 9.4 9.4 24.6 0 33.9L241 377z"]},Iw=If,Uw={prefix:"fas",iconName:"at",icon:[512,512,[61946],"40","M256 64C150 64 64 150 64 256s86 192 192 192c17.7 0 32 14.3 32 32s-14.3 32-32 32C114.6 512 0 397.4 0 256S114.6 0 256 0S512 114.6 512 256v32c0 53-43 96-96 96c-29.3 0-55.6-13.2-73.2-33.9C320 371.1 289.5 384 256 384c-70.7 0-128-57.3-128-128s57.3-128 128-128c27.9 0 53.7 8.9 74.7 24.1c5.7-5 13.1-8.1 21.3-8.1c17.7 0 32 14.3 32 32v80 32c0 17.7 14.3 32 32 32s32-14.3 32-32V256c0-106-86-192-192-192zm64 192c0-35.3-28.7-64-64-64s-64 28.7-64 64s28.7 64 64 64s64-28.7 64-64z"]},Uf={prefix:"fas",iconName:"trash-can",icon:[448,512,[61460,"trash-alt"],"f2ed","M135.2 17.7C140.6 6.8 151.7 0 163.8 0H284.2c12.1 0 23.2 6.8 28.6 17.7L320 32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64S14.3 32 32 32h96l7.2-14.3zM32 128H416V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V128zm96 64c-8.8 0-16 7.2-16 16V432c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16zm96 0c-8.8 0-16 7.2-16 16V432c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16zm96 0c-8.8 0-16 7.2-16 16V432c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16z"]},Ww=Uf,$w={prefix:"fas",iconName:"text-height",icon:[576,512,[],"f034","M32 32C14.3 32 0 46.3 0 64v64c0 17.7 14.3 32 32 32s32-14.3 32-32V96h64l0 320H96c-17.7 0-32 14.3-32 32s14.3 32 32 32H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H192l0-320h64v32c0 17.7 14.3 32 32 32s32-14.3 32-32V64c0-17.7-14.3-32-32-32H160 32zm470.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8h32V352H416c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l64 64c12.5 12.5 32.8 12.5 45.3 0l64-64c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8H512V160h32c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-64-64z"]},Wf={prefix:"fas",iconName:"user-xmark",icon:[640,512,["user-times"],"f235","M352 128c0 70.7-57.3 128-128 128s-128-57.3-128-128S153.3 0 224 0s128 57.3 128 128zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM471 143c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z"]},qw=Wf,Gw={prefix:"fas",iconName:"stethoscope",icon:[576,512,[129658],"f0f1","M142.4 21.9c5.6 16.8-3.5 34.9-20.2 40.5L96 71.1V192c0 53 43 96 96 96s96-43 96-96V71.1l-26.1-8.7c-16.8-5.6-25.8-23.7-20.2-40.5s23.7-25.8 40.5-20.2l26.1 8.7C334.4 19.1 352 43.5 352 71.1V192c0 77.2-54.6 141.6-127.3 156.7C231 404.6 278.4 448 336 448c61.9 0 112-50.1 112-112V265.3c-28.3-12.3-48-40.5-48-73.3c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V336c0 97.2-78.8 176-176 176c-92.9 0-168.9-71.9-175.5-163.1C87.2 334.2 32 269.6 32 192V71.1c0-27.5 17.6-52 43.8-60.7l26.1-8.7c16.8-5.6 34.9 3.5 40.5 20.2zM480 224c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z"]},$f={prefix:"fas",iconName:"message",icon:[512,512,["comment-alt"],"f27a","M64 0C28.7 0 0 28.7 0 64V352c0 35.3 28.7 64 64 64h96v80c0 6.1 3.4 11.6 8.8 14.3s11.9 2.1 16.8-1.5L309.3 416H448c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64z"]},jw=$f,Kw={prefix:"fas",iconName:"info",icon:[192,512,[],"f129","M144 80c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48zM0 224c0-17.7 14.3-32 32-32H96c17.7 0 32 14.3 32 32V448h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H64V256H32c-17.7 0-32-14.3-32-32z"]},qf={prefix:"fas",iconName:"down-left-and-up-right-to-center",icon:[512,512,["compress-alt"],"f422","M473 7c-9.4-9.4-24.6-9.4-33.9 0l-87 87L313 55c-6.9-6.9-17.2-8.9-26.2-5.2S272 62.3 272 72V216c0 13.3 10.7 24 24 24H440c9.7 0 18.5-5.8 22.2-14.8s1.7-19.3-5.2-26.2l-39-39 87-87c9.4-9.4 9.4-24.6 0-33.9L473 7zM216 272H72c-9.7 0-18.5 5.8-22.2 14.8s-1.7 19.3 5.2 26.2l39 39L7 439c-9.4 9.4-9.4 24.6 0 33.9l32 32c9.4 9.4 24.6 9.4 33.9 0l87-87 39 39c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V296c0-13.3-10.7-24-24-24z"]},Xw=qf,Yw={prefix:"fas",iconName:"explosion",icon:[576,512,[],"e4e9","M499.6 11.3c6.7-10.7 20.5-14.5 31.7-8.5s15.8 19.5 10.6 31L404.8 338.6c2.2 2.3 4.3 4.7 6.3 7.1l97.2-54.7c10.5-5.9 23.6-3.1 30.9 6.4s6.3 23-2.2 31.5l-87 87H378.5c-13.2-37.3-48.7-64-90.5-64s-77.4 26.7-90.5 64H117.8L42.3 363.7c-9.7-6.7-13.1-19.6-7.9-30.3s17.4-15.9 28.7-12.4l97.2 30.4c3-3.9 6.1-7.7 9.4-11.3L107.4 236.3c-6.1-10.1-3.9-23.1 5.1-30.7s22.2-7.5 31.1 .1L246 293.6c1.5-.4 3-.8 4.5-1.1l13.6-142.7c1.2-12.3 11.5-21.7 23.9-21.7s22.7 9.4 23.9 21.7l13.5 141.9L499.6 11.3zM64 448v0H512v0h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H64zM288 0c13.3 0 24 10.7 24 24V72c0 13.3-10.7 24-24 24s-24-10.7-24-24V24c0-13.3 10.7-24 24-24z"]},Ma={prefix:"fas",iconName:"file-lines",icon:[384,512,[128441,128462,61686,"file-alt","file-text"],"f15c","M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM112 256H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16z"]},Jw=Ma,Qw=Ma,Zw={prefix:"fas",iconName:"wave-square",icon:[640,512,[],"f83e","M128 64c0-17.7 14.3-32 32-32H320c17.7 0 32 14.3 32 32V416h96V256c0-17.7 14.3-32 32-32H608c17.7 0 32 14.3 32 32s-14.3 32-32 32H512V448c0 17.7-14.3 32-32 32H320c-17.7 0-32-14.3-32-32V96H192V256c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h96V64z"]},cN={prefix:"fas",iconName:"ring",icon:[512,512,[],"f70b","M64 208c0 7.8 4.4 18.7 17.1 30.3C126.5 214.1 188.9 200 256 200s129.5 14.1 174.9 38.3C443.6 226.7 448 215.8 448 208c0-12.3-10.8-32-47.9-50.6C364.9 139.8 314 128 256 128s-108.9 11.8-144.1 29.4C74.8 176 64 195.7 64 208zm192 40c-47 0-89.3 7.6-122.9 19.7C166.3 280.2 208.8 288 256 288s89.7-7.8 122.9-20.3C345.3 255.6 303 248 256 248zM0 208c0-49.6 39.4-85.8 83.3-107.8C129.1 77.3 190.3 64 256 64s126.9 13.3 172.7 36.2c43.9 22 83.3 58.2 83.3 107.8v96c0 49.6-39.4 85.8-83.3 107.8C382.9 434.7 321.7 448 256 448s-126.9-13.3-172.7-36.2C39.4 389.8 0 353.6 0 304V208z"]},eN={prefix:"fas",iconName:"building-un",icon:[384,512,[],"e4d9","M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM237.3 71.1l34.7 52V80c0-8.8 7.2-16 16-16s16 7.2 16 16v96c0 7.1-4.6 13.3-11.4 15.3s-14-.6-17.9-6.4l-34.7-52V176c0 8.8-7.2 16-16 16s-16-7.2-16-16V80c0-7.1 4.6-13.3 11.4-15.3s14 .6 17.9 6.4zM112 80v64c0 8.8 7.2 16 16 16s16-7.2 16-16V80c0-8.8 7.2-16 16-16s16 7.2 16 16v64c0 26.5-21.5 48-48 48s-48-21.5-48-48V80c0-8.8 7.2-16 16-16s16 7.2 16 16z"]},rN={prefix:"fas",iconName:"dice-three",icon:[448,512,[9858],"f527","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm64 160c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm128 64c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm64 128c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},Gf={prefix:"fas",iconName:"calendar-days",icon:[448,512,["calendar-alt"],"f073","M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zm64 80v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zm128 0v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16zm144-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H336zM64 400v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zm144-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16H208zm112 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16H336c-8.8 0-16 7.2-16 16z"]},aN=Gf,nN={prefix:"fas",iconName:"anchor-circle-check",icon:[640,512,[],"e4aa","M256 96c0-17.7 14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32s-32-14.3-32-32zm85.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h32V448H208c-53 0-96-43-96-96v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7V352c0 88.4 71.6 160 160 160h80 80c8.2 0 16.3-.6 24.2-1.8c-22.2-16.2-40.4-37.5-53-62.2H320V368 240h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H341.1zM640 368c0-79.5-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144s144-64.5 144-144zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z"]},tN={prefix:"fas",iconName:"building-circle-arrow-right",icon:[640,512,[],"e4d1","M0 48C0 21.5 21.5 0 48 0H336c26.5 0 48 21.5 48 48V232.2c-39.1 32.3-64 81.1-64 135.8c0 49.5 20.4 94.2 53.3 126.2C364.5 505.1 351.1 512 336 512H240V432c0-26.5-21.5-48-48-48s-48 21.5-48 48v80H48c-26.5 0-48-21.5-48-48V48zM80 224c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H80zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H176c-8.8 0-16 7.2-16 16zm112-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H272zM64 112v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zM176 96c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H176zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16zM640 368c0 79.5-64.5 144-144 144s-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144zM492.7 300.7c-6.2 6.2-6.2 16.4 0 22.6L521.4 352H432c-8.8 0-16 7.2-16 16s7.2 16 16 16h89.4l-28.7 28.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l56-56c6.2-6.2 6.2-16.4 0-22.6l-56-56c-6.2-6.2-16.4-6.2-22.6 0z"]},jf={prefix:"fas",iconName:"volleyball",icon:[512,512,[127952,"volleyball-ball"],"f45f","M511.8 267.4c-26.1 8.7-53.4 13.8-81 15.1c9.2-105.3-31.5-204.2-103.2-272.4C434.1 41.1 512 139.5 512 256c0 3.8-.1 7.6-.2 11.4zm-3.9 34.7c-5.8 32-17.6 62-34.2 88.7c-97.5 48.5-217.7 42.6-311.9-24.5c23.7-36.2 55.4-67.7 94.5-91.8c79.9 43.2 170.1 50.8 251.6 27.6zm-236-55.5c-2.5-90.9-41.1-172.7-101.9-231.7C196.8 5.2 225.8 0 256 0c2.7 0 5.3 0 7.9 .1c90.8 60.2 145.7 167.2 134.7 282.3c-43.1-2.4-86.4-14.1-126.8-35.9zM138 28.8c20.6 18.3 38.7 39.4 53.7 62.6C95.9 136.1 30.6 220.8 7.3 316.9C2.5 297.4 0 277 0 256C0 157.2 56 71.5 138 28.8zm69.6 90.5c19.5 38.6 31 81.9 32.3 127.7C162.5 294.6 110.9 368.9 90.2 451C66 430.4 45.6 405.4 30.4 377.2c6.7-108.7 71.9-209.9 177.1-257.9zM256 512c-50.7 0-98-14.7-137.8-40.2c5.6-27 14.8-53.1 27.4-77.7C232.2 454.6 338.1 468.8 433 441c-46 44-108.3 71-177 71z"]},sN=jf,iN={prefix:"fas",iconName:"arrows-up-to-line",icon:[640,512,[],"e4c2","M64 96l512 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L64 32C46.3 32 32 46.3 32 64s14.3 32 32 32zM41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L128 237.3 128 448c0 17.7 14.3 32 32 32s32-14.3 32-32l0-210.7 41.4 41.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0l-96 96zm320 45.3c12.5 12.5 32.8 12.5 45.3 0L448 237.3 448 448c0 17.7 14.3 32 32 32s32-14.3 32-32l0-210.7 41.4 41.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3z"]},Kf={prefix:"fas",iconName:"sort-down",icon:[320,512,["sort-desc"],"f0dd","M182.6 470.6c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-9.2-9.2-11.9-22.9-6.9-34.9s16.6-19.8 29.6-19.8H288c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9l-128 128z"]},oN=Kf,Xf={prefix:"fas",iconName:"circle-minus",icon:[512,512,["minus-circle"],"f056","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM184 232H328c13.3 0 24 10.7 24 24s-10.7 24-24 24H184c-13.3 0-24-10.7-24-24s10.7-24 24-24z"]},fN=Xf,lN={prefix:"fas",iconName:"door-open",icon:[576,512,[],"f52b","M320 32c0-9.9-4.5-19.2-12.3-25.2S289.8-1.4 280.2 1l-179.9 45C79 51.3 64 70.5 64 92.5V448H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H96 288h32V480 32zM256 256c0 17.7-10.7 32-24 32s-24-14.3-24-32s10.7-32 24-32s24 14.3 24 32zm96-128h96V480v32h32 64c17.7 0 32-14.3 32-32s-14.3-32-32-32H512V128c0-35.3-28.7-64-64-64H352v64z"]},Yf={prefix:"fas",iconName:"right-from-bracket",icon:[512,512,["sign-out-alt"],"f2f5","M160 96c17.7 0 32-14.3 32-32s-14.3-32-32-32H96C43 32 0 75 0 128V384c0 53 43 96 96 96h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H96c-17.7 0-32-14.3-32-32l0-256c0-17.7 14.3-32 32-32h64zM504.5 273.4c4.8-4.5 7.5-10.8 7.5-17.4s-2.7-12.9-7.5-17.4l-144-136c-7-6.6-17.2-8.4-26-4.6s-14.5 12.5-14.5 22v72H192c-17.7 0-32 14.3-32 32l0 64c0 17.7 14.3 32 32 32H320v72c0 9.6 5.7 18.2 14.5 22s19 2 26-4.6l144-136z"]},uN=Yf,hN={prefix:"fas",iconName:"atom",icon:[448,512,[9883],"f5d2","M258.9 412.3c-16.7 33.8-31 35.7-34.9 35.7s-18.1-1.9-34.9-35.7c11.4-3.9 23.1-8.4 34.9-13.5c11.8 5.1 23.4 9.7 34.9 13.5zM252.8 312c-9.7 5.8-19.3 11.2-28.8 16c-9.4-4.8-19-10.2-28.8-16c-12.1-7.3-23.6-14.8-34.2-22.4c-.7-10.8-1-22-1-33.6s.4-22.7 1-33.6c10.6-7.6 22.1-15.1 34.2-22.4c9.7-5.8 19.3-11.2 28.8-16c9.4 4.8 19 10.2 28.8 16c12.1 7.3 23.6 14.8 34.2 22.4c.7 10.8 1 22 1 33.6s-.4 22.7-1 33.6c-10.6 7.6-22.1 15.1-34.2 22.4zm184.8 72c20.7-37.1 9.4-82.8-23.6-128c33-45.2 44.3-90.9 23.6-128c-20.2-36.3-62.5-49.3-115.2-43.2C300.4 32.7 266.8 0 224 0s-76.4 32.7-98.4 84.8c-52.7-6.1-95 6.8-115.2 43.2C-10.3 165.1 1 210.8 34 256C1 301.2-10.3 346.9 10.4 384c20.2 36.3 62.5 49.3 115.2 43.2c22 52.1 55.7 84.8 98.4 84.8s76.4-32.7 98.4-84.8c52.7 6.1 95-6.8 115.2-43.2zm-67.8-79.2c18.9 30.2 14.2 44 11.9 48.1c-1.6 2.9-8.4 13-40.2 11.7c2.8-13.1 5-26.9 6.7-41.2c7.6-6.1 14.8-12.3 21.6-18.6zm11.9-145.7c2.3 4.2 7 17.9-11.9 48.1c-6.8-6.3-14-12.5-21.6-18.6c-1.7-14.3-3.9-28-6.7-41.2c31.8-1.4 38.6 8.7 40.2 11.7zM224 64c3.9 0 18.1 1.9 34.9 35.7c-11.4 3.9-23.1 8.4-34.9 13.5c-11.8-5.1-23.4-9.7-34.9-13.5C205.9 65.9 220.1 64 224 64zM106.5 147.5c-2.8 13.1-5 26.9-6.7 41.2c-7.6 6.1-14.8 12.3-21.6 18.6C59.4 177 64 163.3 66.3 159.1c1.6-2.9 8.4-13 40.2-11.7zM66.3 352.9c-2.3-4.2-7-17.9 11.9-48.1c6.8 6.3 14 12.5 21.6 18.6c1.7 14.2 3.9 28 6.7 41.2c-31.8 1.4-38.6-8.7-40.2-11.7zM224 288c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z"]},pN={prefix:"fas",iconName:"soap",icon:[512,512,[129532],"e06e","M208 96c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zM320 256c35.3 0 64-28.7 64-64s-28.7-64-64-64s-64 28.7-64 64s28.7 64 64 64zM416 32c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zm0 160c0 27.6-11.7 52.5-30.4 70.1C422.1 275.7 448 310.8 448 352c0 53-43 96-96 96H160c-53 0-96-43-96-96s43-96 96-96h88.4c-15.2-17-24.4-39.4-24.4-64H96c-53 0-96 43-96 96V416c0 53 43 96 96 96H416c53 0 96-43 96-96V288c0-53-43-96-96-96zM160 288c-35.3 0-64 28.7-64 64s28.7 64 64 64H352c35.3 0 64-28.7 64-64s-28.7-64-64-64H320 160z"]},Jf={prefix:"fas",iconName:"icons",icon:[576,512,["heart-music-camera-bolt"],"f86d","M532.3 7.3C539.7 13.3 544 22.4 544 32V176c0 26.5-28.7 48-64 48s-64-21.5-64-48s28.7-48 64-48V71L384 90.2V208c0 26.5-28.7 48-64 48s-64-21.5-64-48s28.7-48 64-48V64c0-15.3 10.8-28.4 25.7-31.4l160-32c9.4-1.9 19.1 .6 26.6 6.6zM106.7 304l11.8-17.8c5.9-8.9 15.9-14.2 26.6-14.2h61.7c10.7 0 20.7 5.3 26.6 14.2L245.3 304H272c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H80c-26.5 0-48-21.5-48-48V352c0-26.5 21.5-48 48-48h26.7zM224 408c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM510.7 278.3L472.3 368H528c6.7 0 12.6 4.1 15 10.4s.6 13.3-4.4 17.7l-128 112c-5.6 4.9-13.9 5.3-19.9 .9s-8.2-12.4-5.3-19.2L423.7 400H368c-6.7 0-12.6-4.1-15-10.4s-.6-13.3 4.4-17.7l128-112c5.6-4.9 13.9-5.3 19.9-.9s8.2 12.4 5.3 19.2zm-339-59.2c-6.5 6.5-17 6.5-23 0L51.9 119.2c-28-29-26.5-76.9 5-103.9c27-23.5 68.4-19 93.4 6.5l10 10.5 9.5-10.5c25-25.5 65.9-30 93.9-6.5c31 27 32.5 74.9 4.5 103.9l-96.4 99.9z"]},mN=Jf,Qf={prefix:"fas",iconName:"microphone-lines-slash",icon:[640,512,["microphone-alt-slash"],"f539","M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L472.1 344.7c15.2-26 23.9-56.3 23.9-88.7V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v24 16c0 21.2-5.1 41.1-14.2 58.7L416 300.8V256H358.9l-34.5-27c2.9-3.1 7-5 11.6-5h80V192H336c-8.8 0-16-7.2-16-16s7.2-16 16-16h80V128H336c-8.8 0-16-7.2-16-16s7.2-16 16-16h80c0-53-43-96-96-96s-96 43-96 96v54.3L38.8 5.1zm362.5 407l-43.1-33.9C346.1 382 333.3 384 320 384c-70.7 0-128-57.3-128-128v-8.7L144.7 210c-.5 1.9-.7 3.9-.7 6v40c0 89.1 66.2 162.7 152 174.4V464H248c-13.3 0-24 10.7-24 24s10.7 24 24 24h72 72c13.3 0 24-10.7 24-24s-10.7-24-24-24H344V430.4c20.4-2.8 39.7-9.1 57.3-18.2z"]},vN=Qf,dN={prefix:"fas",iconName:"bridge-circle-check",icon:[640,512,[],"e4c9","M64 32C46.3 32 32 46.3 32 64s14.3 32 32 32h40v64H32V288c53 0 96 43 96 96v64c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V384c0-53 43-96 96-96c6.3 0 12.4 .6 18.3 1.7C367.1 231.8 426.9 192 496 192c42.5 0 81.6 15.1 112 40.2V160H536V96h40c17.7 0 32-14.3 32-32s-14.3-32-32-32H64zM488 96v64H408V96h80zM360 96v64H280V96h80zM232 96v64H152V96h80zM640 368c0-79.5-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144s144-64.5 144-144zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z"]},HN={prefix:"fas",iconName:"pump-medical",icon:[448,512,[],"e06a","M128 32v96H256V96h60.1c4.2 0 8.3 1.7 11.3 4.7l33.9 33.9c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L372.7 55.4c-15-15-35.4-23.4-56.6-23.4H256c0-17.7-14.3-32-32-32H160c-17.7 0-32 14.3-32 32zM117.4 160c-33.3 0-61 25.5-63.8 58.7L35 442.7C31.9 480 61.3 512 98.8 512H285.2c37.4 0 66.9-32 63.8-69.3l-18.7-224c-2.8-33.2-30.5-58.7-63.8-58.7H117.4zM216 280v32h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H216v32c0 13.3-10.7 24-24 24s-24-10.7-24-24V360H136c-13.3 0-24-10.7-24-24s10.7-24 24-24h32V280c0-13.3 10.7-24 24-24s24 10.7 24 24z"]},zN={prefix:"fas",iconName:"fingerprint",icon:[512,512,[],"f577","M48 256C48 141.1 141.1 48 256 48c69.3 0 130.6 33.8 168.5 86c7.8 10.7 22.8 13.1 33.5 5.3s13.1-22.8 5.3-33.5C416.8 41.7 341.3 0 256 0C114.6 0 0 114.6 0 256v8c0 13.3 10.7 24 24 24s24-10.7 24-24v-8zm458.5-52.9c-2.7-13-15.5-21.3-28.4-18.5s-21.3 15.5-18.5 28.4c2.9 13.9 4.5 28.3 4.5 43.1v8c0 13.3 10.7 24 24 24s24-10.7 24-24v-8c0-18.1-1.9-35.8-5.5-52.9zM222.1 128.2c10.8-2.9 22.1-4.4 33.9-4.4c73 0 132.2 59.2 132.2 132.2c0 31.1-1.9 62.4-3.9 86c-1 11.8-2 21.6-2.7 28.4c-.4 3.4-.7 6.1-.9 7.9l-.2 2-.1 .5 0 .1 0 0 0 0c-1.6 13.2 7.7 25.1 20.8 26.8s25.1-7.7 26.8-20.8l-23.8-3c23.8 3 23.8 3 23.8 3l0 0 0 0 0 0 0-.2 .1-.6 .3-2.2c.2-1.9 .5-4.8 .9-8.3c.8-7.2 1.8-17.4 2.8-29.6c2-24.4 4.1-57.1 4.1-90c0-99.5-80.7-180.2-180.2-180.2c-15.9 0-31.4 2.1-46.2 6c-12.8 3.4-20.5 16.5-17.1 29.3s16.5 20.5 29.3 17.1zm-74.5 52.1c7.6-10.9 5-25.8-5.9-33.4s-25.8-5-33.4 5.9C87.9 182 75.8 217.6 75.8 256c0 30.1-3.8 58.6-7.6 79.7c-1.9 10.5-3.8 19.1-5.2 24.9c-.7 2.9-1.3 5.2-1.7 6.7c-.2 .7-.3 1.3-.4 1.6l-.1 .4 0 .1 0 0c-3.6 12.7 3.7 26 16.5 29.7s26-3.7 29.7-16.5L83.8 376c23.1 6.6 23.1 6.6 23.1 6.6l0 0 0 0 0-.1 0-.2 .2-.6c.1-.5 .3-1.2 .6-2.1c.5-1.8 1.2-4.4 1.9-7.7c1.6-6.6 3.7-16.1 5.8-27.6c4.2-22.9 8.4-54.4 8.4-88.3c0-28.2 8.8-54.3 23.8-75.7zM256 200c30.9 0 56 25.1 56 56c0 47.1-2.7 86.3-5.5 113.6c-1.4 13.7-2.7 24.3-3.7 31.6c-.5 3.6-.9 6.3-1.2 8.1c-.1 .9-.2 1.6-.3 2l-.1 .5 0 .1 0 0 0 0 0 0c-2.3 13.1 6.5 25.5 19.5 27.8s25.5-6.4 27.8-19.5L324.8 416c23.6 4.1 23.6 4.1 23.6 4.1l0 0 0 0 0-.1 0-.2 .1-.7c.1-.6 .2-1.4 .4-2.4c.3-2.1 .8-5.1 1.3-9c1.1-7.8 2.5-19.1 4-33.4c2.9-28.7 5.7-69.5 5.7-118.4c0-57.4-46.6-104-104-104s-104 46.6-104 104c0 46.7-3.9 83.4-7.7 108.4c-1.9 12.5-3.8 21.9-5.2 28.2c-.7 3.1-1.3 5.5-1.6 6.9c-.2 .7-.3 1.3-.4 1.6l-.1 .3c-3.6 12.7 3.7 26 16.5 29.7s26-3.7 29.7-16.5L160 408c23.1 6.6 23.1 6.6 23.1 6.6l0 0 0 0 0-.1 .1-.2 .2-.7c.1-.5 .3-1.3 .6-2.3c.5-2 1.2-4.8 2-8.4c1.6-7.2 3.7-17.8 5.8-31.3c3-19.2 5.9-44.6 7.3-75.3c.6-12.6 .9-26 .9-40.3c0-30.9 25.1-56 56-56zm24 56c0-13.3-10.7-24-24-24s-24 10.7-24 24c0 45.4-2.6 83.4-6.3 114.5L202 478.3l0 0c-5.3 12.1 .1 26.2 12.2 31.6c12.1 5.4 26.3-.1 31.7-12.2L224 488c21.9 9.7 21.9 9.7 21.9 9.7l0 0 0 0 0-.1 .1-.3 .4-.9c.3-.8 .7-1.8 1.2-3.1c1-2.7 2.4-6.5 4-11.5c3.3-10.1 7.5-24.9 11.7-44.7C271.8 397.3 280 337.6 280 256zM225.7 370.5s0 0 0 0L256 232 225.7 370.5zm0 0c-2.7 22.5-5.9 41.3-9.2 56.6c-3.8 18.2-7.6 31.3-10.3 39.8c-1.4 4.2-2.5 7.3-3.2 9.2c-.4 .9-.6 1.6-.8 2l-.1 .4 23.6-107.9z"]},gN={prefix:"fas",iconName:"hand-point-right",icon:[512,512,[],"f0a4","M480 96c17.7 0 32 14.3 32 32s-14.3 32-32 32l-208 0 0-64 208 0zM320 288c17.7 0 32 14.3 32 32s-14.3 32-32 32H256c-17.7 0-32-14.3-32-32s14.3-32 32-32h64zm64-64c0 17.7-14.3 32-32 32H304c-17.7 0-32-14.3-32-32s14.3-32 32-32h48c17.7 0 32 14.3 32 32zM288 384c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32h64zm-88-96l.6 0c-5.4 9.4-8.6 20.3-8.6 32c0 13.2 4 25.4 10.8 35.6C177.9 364.3 160 388.1 160 416c0 11.7 3.1 22.6 8.6 32H160C71.6 448 0 376.4 0 288l0-61.7c0-42.4 16.9-83.1 46.9-113.1l11.6-11.6C82.5 77.5 115.1 64 149 64l27 0c35.3 0 64 28.7 64 64v88c0 22.1-17.9 40-40 40s-40-17.9-40-40V160c0-8.8-7.2-16-16-16s-16 7.2-16 16v56c0 39.8 32.2 72 72 72z"]},Zf={prefix:"fas",iconName:"magnifying-glass-location",icon:[512,512,["search-location"],"f689","M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM288 176c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 48.8 46.5 111.6 68.6 138.6c6 7.3 16.8 7.3 22.7 0c22.1-27 68.6-89.8 68.6-138.6zm-48 0c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32z"]},VN=Zf,cl={prefix:"fas",iconName:"forward-step",icon:[320,512,["step-forward"],"f051","M52.5 440.6c-9.5 7.9-22.8 9.7-34.1 4.4S0 428.4 0 416V96C0 83.6 7.2 72.3 18.4 67s24.5-3.6 34.1 4.4l192 160L256 241V96c0-17.7 14.3-32 32-32s32 14.3 32 32V416c0 17.7-14.3 32-32 32s-32-14.3-32-32V271l-11.5 9.6-192 160z"]},MN=cl,el={prefix:"fas",iconName:"face-smile-beam",icon:[512,512,[128522,"smile-beam"],"f5b8","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM164.1 325.5C182 346.2 212.6 368 256 368s74-21.8 91.9-42.5c5.8-6.7 15.9-7.4 22.6-1.6s7.4 15.9 1.6 22.6C349.8 372.1 311.1 400 256 400s-93.8-27.9-116.1-53.5c-5.8-6.7-5.1-16.8 1.6-22.6s16.8-5.1 22.6 1.6zm53.5-96.7l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z"]},CN=el,LN={prefix:"fas",iconName:"flag-checkered",icon:[448,512,[127937],"f11e","M32 0C49.7 0 64 14.3 64 32V48l69-17.2c38.1-9.5 78.3-5.1 113.5 12.5c46.3 23.2 100.8 23.2 147.1 0l9.6-4.8C423.8 28.1 448 43.1 448 66.1V345.8c0 13.3-8.3 25.3-20.8 30l-34.7 13c-46.2 17.3-97.6 14.6-141.7-7.4c-37.9-19-81.4-23.7-122.5-13.4L64 384v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V400 334 64 32C0 14.3 14.3 0 32 0zM64 187.1l64-13.9v65.5L64 252.6V318l48.8-12.2c5.1-1.3 10.1-2.4 15.2-3.3V238.7l38.9-8.4c8.3-1.8 16.7-2.5 25.1-2.1l0-64c13.6 .4 27.2 2.6 40.4 6.4l23.6 6.9v66.7l-41.7-12.3c-7.3-2.1-14.8-3.4-22.3-3.8v71.4c21.8 1.9 43.3 6.7 64 14.4V244.2l22.7 6.7c13.5 4 27.3 6.4 41.3 7.4V194c-7.8-.8-15.6-2.3-23.2-4.5l-40.8-12v-62c-13-3.8-25.8-8.8-38.2-15c-8.2-4.1-16.9-7-25.8-8.8v72.4c-13-.4-26 .8-38.7 3.6L128 173.2V98L64 114v73.1zM320 335.7c16.8 1.5 33.9-.7 50-6.8l14-5.2V251.9l-7.9 1.8c-18.4 4.3-37.3 5.7-56.1 4.5v77.4zm64-149.4V115.4c-20.9 6.1-42.4 9.1-64 9.1V194c13.9 1.4 28 .5 41.7-2.6l22.3-5.2z"]},rl={prefix:"fas",iconName:"football",icon:[512,512,[127944,"football-ball"],"f44e","M247.5 25.4c-13.5 3.3-26.4 7.2-38.6 11.7C142.9 61.6 96.7 103.6 66 153.6c-18.3 29.8-30.9 62.3-39.2 95.4L264.5 486.6c13.5-3.3 26.4-7.2 38.6-11.7c66-24.5 112.2-66.5 142.9-116.5c18.3-29.8 30.9-62.3 39.1-95.3L247.5 25.4zM495.2 205.3c6.1-56.8 1.4-112.2-7.7-156.4c-2.7-12.9-13-22.9-26.1-25.1c-58.2-9.7-109.9-12-155.6-7.9L495.2 205.3zM206.1 496L16.8 306.7c-6.1 56.8-1.4 112.2 7.7 156.4c2.7 12.9 13 22.9 26.1 25.1c58.2 9.7 109.9 12 155.6 7.9zm54.6-331.3c6.2-6.2 16.4-6.2 22.6 0l64 64c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0l-64-64c-6.2-6.2-6.2-16.4 0-22.6zm-48 48c6.2-6.2 16.4-6.2 22.6 0l64 64c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0l-64-64c-6.2-6.2-6.2-16.4 0-22.6zm-48 48c6.2-6.2 16.4-6.2 22.6 0l64 64c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0l-64-64c-6.2-6.2-6.2-16.4 0-22.6z"]},yN=rl,bN={prefix:"fas",iconName:"school-circle-exclamation",icon:[640,512,[],"e56c","M337.8 5.4C327-1.8 313-1.8 302.2 5.4L166.3 96H48C21.5 96 0 117.5 0 144V464c0 26.5 21.5 48 48 48H320v0H256V416c0-35.3 28.7-64 64-64l.3 0h.5c3.4-37.7 18.7-72.1 42.2-99.1C350.2 260 335.6 264 320 264c-48.6 0-88-39.4-88-88s39.4-88 88-88s88 39.4 88 88c0 18.3-5.6 35.3-15.1 49.4c29-21 64.6-33.4 103.1-33.4c59.5 0 112.1 29.6 144 74.8V144c0-26.5-21.5-48-48-48H473.7L337.8 5.4zM96 192h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V208c0-8.8 7.2-16 16-16zm0 128h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zM320 128c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H336V144c0-8.8-7.2-16-16-16zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z"]},xN={prefix:"fas",iconName:"crop",icon:[512,512,[],"f125","M448 109.3l54.6-54.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L402.7 64 160 64v64l178.7 0L128 338.7V32c0-17.7-14.3-32-32-32S64 14.3 64 32V64H32C14.3 64 0 78.3 0 96s14.3 32 32 32H64V384c0 35.3 28.7 64 64 64H352V384H173.3L384 173.3 384 480c0 17.7 14.3 32 32 32s32-14.3 32-32V448h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H448l0-274.7z"]},al={prefix:"fas",iconName:"angles-down",icon:[448,512,["angle-double-down"],"f103","M246.6 470.6c-12.5 12.5-32.8 12.5-45.3 0l-160-160c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L224 402.7 361.4 265.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-160 160zm160-352l-160 160c-12.5 12.5-32.8 12.5-45.3 0l-160-160c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L224 210.7 361.4 73.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3z"]},SN=al,wN={prefix:"fas",iconName:"users-rectangle",icon:[640,512,[],"e594","M96 0C43 0 0 43 0 96V416c0 53 43 96 96 96H544c53 0 96-43 96-96V96c0-53-43-96-96-96H96zM64 96c0-17.7 14.3-32 32-32H544c17.7 0 32 14.3 32 32V416c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V96zm159.8 80c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM96 309.3c0 14.7 11.9 26.7 26.7 26.7h56.1c8-34.1 32.8-61.7 65.2-73.6c-7.5-4.1-16.2-6.4-25.3-6.4H149.3C119.9 256 96 279.9 96 309.3zM461.2 336h56.1c14.7 0 26.7-11.9 26.7-26.7c0-29.5-23.9-53.3-53.3-53.3H421.3c-9.2 0-17.8 2.3-25.3 6.4c32.4 11.9 57.2 39.5 65.2 73.6zM372 289c-3.9-.7-7.9-1-12-1H280c-4.1 0-8.1 .3-12 1c-26 4.4-47.3 22.7-55.9 47c-2.7 7.5-4.1 15.6-4.1 24c0 13.3 10.7 24 24 24H408c13.3 0 24-10.7 24-24c0-8.4-1.4-16.5-4.1-24c-8.6-24.3-29.9-42.6-55.9-47zM512 176c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM320 256c35.3 0 64-28.7 64-64s-28.7-64-64-64s-64 28.7-64 64s28.7 64 64 64z"]},NN={prefix:"fas",iconName:"people-roof",icon:[640,512,[],"e537","M335.5 4l288 160c15.4 8.6 21 28.1 12.4 43.5s-28.1 21-43.5 12.4L320 68.6 47.5 220c-15.4 8.6-34.9 3-43.5-12.4s-3-34.9 12.4-43.5L304.5 4c9.7-5.4 21.4-5.4 31.1 0zM320 240c-22.1 0-40-17.9-40-40s17.9-40 40-40s40 17.9 40 40s-17.9 40-40 40zM144 336c-22.1 0-40-17.9-40-40s17.9-40 40-40s40 17.9 40 40s-17.9 40-40 40zm392-40c0 22.1-17.9 40-40 40s-40-17.9-40-40s17.9-40 40-40s40 17.9 40 40zM226.9 491.4L200 441.5V480c0 17.7-14.3 32-32 32H120c-17.7 0-32-14.3-32-32V441.5L61.1 491.4c-6.3 11.7-20.8 16-32.5 9.8s-16-20.8-9.8-32.5l37.9-70.3c15.3-28.5 45.1-46.3 77.5-46.3h19.5c16.3 0 31.9 4.5 45.4 12.6l33.6-62.3c15.3-28.5 45.1-46.3 77.5-46.3h19.5c32.4 0 62.1 17.8 77.5 46.3l33.6 62.3c13.5-8.1 29.1-12.6 45.4-12.6h19.5c32.4 0 62.1 17.8 77.5 46.3l37.9 70.3c6.3 11.7 1.9 26.2-9.8 32.5s-26.2 1.9-32.5-9.8L552 441.5V480c0 17.7-14.3 32-32 32H472c-17.7 0-32-14.3-32-32V441.5l-26.9 49.9c-6.3 11.7-20.8 16-32.5 9.8s-16-20.8-9.8-32.5l36.3-67.5c-1.7-1.7-3.2-3.6-4.3-5.8L376 345.5V400c0 17.7-14.3 32-32 32H296c-17.7 0-32-14.3-32-32V345.5l-26.9 49.9c-1.2 2.2-2.6 4.1-4.3 5.8l36.3 67.5c6.3 11.7 1.9 26.2-9.8 32.5s-26.2 1.9-32.5-9.8z"]},AN={prefix:"fas",iconName:"people-line",icon:[640,512,[],"e534","M360 72c0-22.1-17.9-40-40-40s-40 17.9-40 40s17.9 40 40 40s40-17.9 40-40zM144 208c22.1 0 40-17.9 40-40s-17.9-40-40-40s-40 17.9-40 40s17.9 40 40 40zM32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zM496 208c22.1 0 40-17.9 40-40s-17.9-40-40-40s-40 17.9-40 40s17.9 40 40 40zM200 313.5l26.9 49.9c6.3 11.7 20.8 16 32.5 9.8s16-20.8 9.8-32.5l-36.3-67.5c1.7-1.7 3.2-3.6 4.3-5.8L264 217.5V272c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32V217.5l26.9 49.9c1.2 2.2 2.6 4.1 4.3 5.8l-36.3 67.5c-6.3 11.7-1.9 26.2 9.8 32.5s26.2 1.9 32.5-9.8L440 313.5V352c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32V313.5l26.9 49.9c6.3 11.7 20.8 16 32.5 9.8s16-20.8 9.8-32.5l-37.9-70.3c-15.3-28.5-45.1-46.3-77.5-46.3H486.2c-16.3 0-31.9 4.5-45.4 12.6l-33.6-62.3c-15.3-28.5-45.1-46.3-77.5-46.3H310.2c-32.4 0-62.1 17.8-77.5 46.3l-33.6 62.3c-13.5-8.1-29.1-12.6-45.4-12.6H134.2c-32.4 0-62.1 17.8-77.5 46.3L18.9 340.6c-6.3 11.7-1.9 26.2 9.8 32.5s26.2 1.9 32.5-9.8L88 313.5V352c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32V313.5z"]},nl={prefix:"fas",iconName:"beer-mug-empty",icon:[512,512,["beer"],"f0fc","M32 64c0-17.7 14.3-32 32-32H352c17.7 0 32 14.3 32 32V96h51.2c42.4 0 76.8 34.4 76.8 76.8V274.9c0 30.4-17.9 57.9-45.6 70.2L384 381.7V416c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V64zM384 311.6l56.4-25.1c4.6-2.1 7.6-6.6 7.6-11.7V172.8c0-7.1-5.7-12.8-12.8-12.8H384V311.6zM160 144c0-8.8-7.2-16-16-16s-16 7.2-16 16V368c0 8.8 7.2 16 16 16s16-7.2 16-16V144zm64 0c0-8.8-7.2-16-16-16s-16 7.2-16 16V368c0 8.8 7.2 16 16 16s16-7.2 16-16V144zm64 0c0-8.8-7.2-16-16-16s-16 7.2-16 16V368c0 8.8 7.2 16 16 16s16-7.2 16-16V144z"]},_N=nl,kN={prefix:"fas",iconName:"diagram-predecessor",icon:[512,512,[],"e477","M448 416l0-64L64 352l0 64 384 0zm0 64L64 480c-35.3 0-64-28.7-64-64l0-64c0-35.3 28.7-64 64-64l384 0c35.3 0 64 28.7 64 64l0 64c0 35.3-28.7 64-64 64zM288 160c0 35.3-28.7 64-64 64L64 224c-35.3 0-64-28.7-64-64L0 96C0 60.7 28.7 32 64 32l144 0 16 0 144 0c44.2 0 80 35.8 80 80l0 16 38.1 0c21.4 0 32.1 25.9 17 41L433 239c-9.4 9.4-24.6 9.4-33.9 0L329 169c-15.1-15.1-4.4-41 17-41l38.1 0 0-16c0-8.8-7.2-16-16-16l-80 0 0 64z"]},tl={prefix:"fas",iconName:"arrow-up-long",icon:[384,512,["long-arrow-up"],"f176","M214.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L160 109.3V480c0 17.7 14.3 32 32 32s32-14.3 32-32V109.3l73.4 73.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-128-128z"]},TN=tl,sl={prefix:"fas",iconName:"fire-flame-simple",icon:[384,512,["burn"],"f46a","M372.5 256.5l-.7-1.9C337.8 160.8 282 76.5 209.1 8.5l-3.3-3C202.1 2 197.1 0 192 0s-10.1 2-13.8 5.5l-3.3 3C102 76.5 46.2 160.8 12.2 254.6l-.7 1.9C3.9 277.3 0 299.4 0 321.6C0 426.7 86.8 512 192 512s192-85.3 192-190.4c0-22.2-3.9-44.2-11.5-65.1zm-90.8 49.5c4.1 9.3 6.2 19.4 6.2 29.5c0 53-43 96.5-96 96.5s-96-43.5-96-96.5c0-10.1 2.1-20.3 6.2-29.5l1.9-4.3c15.8-35.4 37.9-67.7 65.3-95.1l8.9-8.9c3.6-3.6 8.5-5.6 13.6-5.6s10 2 13.6 5.6l8.9 8.9c27.4 27.4 49.6 59.7 65.3 95.1l1.9 4.3z"]},PN=sl,il={prefix:"fas",iconName:"person",icon:[320,512,[129485,"male"],"f183","M208 48c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48zM152 352V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l58.3 97c9.1 15.1 4.2 34.8-10.9 43.9s-34.8 4.2-43.9-10.9L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152z"]},EN=il,ON={prefix:"fas",iconName:"laptop",icon:[640,512,[128187],"f109","M128 32C92.7 32 64 60.7 64 96V352h64V96H512V352h64V96c0-35.3-28.7-64-64-64H128zM19.2 384C8.6 384 0 392.6 0 403.2C0 445.6 34.4 480 76.8 480H563.2c42.4 0 76.8-34.4 76.8-76.8c0-10.6-8.6-19.2-19.2-19.2H19.2z"]},RN={prefix:"fas",iconName:"file-csv",icon:[384,512,[],"f6dd","M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM80 224H96c22.1 0 40 17.9 40 40v8c0 8.8-7.2 16-16 16s-16-7.2-16-16v-8c0-4.4-3.6-8-8-8H80c-4.4 0-8 3.6-8 8v80c0 4.4 3.6 8 8 8H96c4.4 0 8-3.6 8-8v-8c0-8.8 7.2-16 16-16s16 7.2 16 16v8c0 22.1-17.9 40-40 40H80c-22.1 0-40-17.9-40-40V264c0-22.1 17.9-40 40-40zm72 46.4c0-25.6 20.8-46.4 46.4-46.4H216c8.8 0 16 7.2 16 16s-7.2 16-16 16H198.4c-7.9 0-14.4 6.4-14.4 14.4c0 5.2 2.8 9.9 7.2 12.5l25.4 14.5c14.4 8.3 23.4 23.6 23.4 40.3c0 25.6-20.8 46.4-46.4 46.4H168c-8.8 0-16-7.2-16-16s7.2-16 16-16h25.6c7.9 0 14.4-6.4 14.4-14.4c0-5.2-2.8-9.9-7.2-12.5l-25.4-14.5C160.9 302.4 152 287 152 270.4zM280 240v31.6c0 23 5.5 45.6 16 66c10.5-20.3 16-42.9 16-66V240c0-8.8 7.2-16 16-16s16 7.2 16 16v31.6c0 34.7-10.3 68.7-29.6 97.6l-5.1 7.7c-3 4.5-8 7.1-13.3 7.1s-10.3-2.7-13.3-7.1l-5.1-7.7c-19.3-28.9-29.6-62.9-29.6-97.6V240c0-8.8 7.2-16 16-16s16 7.2 16 16z"]},FN={prefix:"fas",iconName:"menorah",icon:[640,512,[],"f676","M20.8 7.4C22.8 2.9 27.1 0 32 0s9.2 2.9 11.2 7.4L61.3 49.7c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32S0 81.7 0 64V62.8c0-4.5 .9-8.9 2.7-13.1L20.8 7.4zm96 0C118.8 2.9 123.1 0 128 0s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32s-32-14.3-32-32V62.8c0-4.5 .9-8.9 2.7-13.1L116.8 7.4zm77.8 42.4L212.8 7.4C214.8 2.9 219.1 0 224 0s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32s-32-14.3-32-32V62.8c0-4.5 .9-8.9 2.7-13.1zM308.8 7.4C310.8 2.9 315.1 0 320 0s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32s-32-14.3-32-32V62.8c0-4.5 .9-8.9 2.7-13.1L308.8 7.4zm77.8 42.4L404.8 7.4C406.8 2.9 411.1 0 416 0s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32s-32-14.3-32-32V62.8c0-4.5 .9-8.9 2.7-13.1zM500.8 7.4C502.8 2.9 507.1 0 512 0s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32s-32-14.3-32-32V62.8c0-4.5 .9-8.9 2.7-13.1L500.8 7.4zm77.8 42.4L596.8 7.4C598.8 2.9 603.1 0 608 0s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32s-32-14.3-32-32V62.8c0-4.5 .9-8.9 2.7-13.1zM32 128c17.7 0 32 14.3 32 32V288c0 17.7 14.3 32 32 32H288V160c0-17.7 14.3-32 32-32s32 14.3 32 32V320H544c17.7 0 32-14.3 32-32V160c0-17.7 14.3-32 32-32s32 14.3 32 32V288c0 53-43 96-96 96H352v64H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H320 160c-17.7 0-32-14.3-32-32s14.3-32 32-32H288V384H96c-53 0-96-43-96-96V160c0-17.7 14.3-32 32-32zm96 0c17.7 0 32 14.3 32 32v96 32H96V256 160c0-17.7 14.3-32 32-32zm96 0c17.7 0 32 14.3 32 32v96 32H192V256 160c0-17.7 14.3-32 32-32zm192 0c17.7 0 32 14.3 32 32v96 32H384V256 160c0-17.7 14.3-32 32-32zm96 0c17.7 0 32 14.3 32 32v96 32H480V256 160c0-17.7 14.3-32 32-32z"]},BN={prefix:"fas",iconName:"truck-plane",icon:[640,512,[],"e58f","M200 0c-30.6 0-56 54.7-56 86.1V192.5L7.8 274.3C2.9 277.2 0 282.4 0 288v64c0 5.1 2.4 9.8 6.4 12.8s9.3 3.9 14.1 2.5l123.4-37v81.2l-50 40c-3.8 3-6 7.6-6 12.5v32c0 5.1 2.5 10 6.6 13s9.5 3.8 14.4 2.2L200 480.9 290.4 511c-1.6-4.7-2.4-9.8-2.4-15V463.4c-18.2-10.5-30.7-29.7-31.9-51.8l-.1-.1V408 325.5 184l0-1.1 0 0V86.1C256 54.7 231.5 0 200 0zm88 176V400c0 20.9 13.4 38.7 32 45.3V488c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V448H544v40c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V445.3c18.6-6.6 32-24.4 32-45.3V176c0-26.5-21.5-48-48-48H336c-26.5 0-48 21.5-48 48zm79.8 78.7c3.3-8.7 11.2-14.7 20.5-14.7H539.7c9.2 0 17.2 6 20.5 14.7L576 304H352l15.8-49.3zM568 400c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zM384 376c0 13.3-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24z"]},DN={prefix:"fas",iconName:"record-vinyl",icon:[512,512,[],"f8d9","M512 256c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0S512 114.6 512 256zM256 352c-53 0-96-43-96-96s43-96 96-96s96 43 96 96s-43 96-96 96zm0 32c70.7 0 128-57.3 128-128s-57.3-128-128-128s-128 57.3-128 128s57.3 128 128 128zm0-96c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z"]},ol={prefix:"fas",iconName:"face-grin-stars",icon:[512,512,[129321,"grin-stars"],"f587","M512 256c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0S512 114.6 512 256zM403 336.5c5.1-11.8-6.9-22.4-19.2-18.7C345.3 329.4 301.9 336 256 336s-89.3-6.6-127.8-18.2c-12.3-3.7-24.3 7-19.2 18.7c24.5 56.9 81.1 96.7 147 96.7s122.5-39.8 147-96.7zM160 120c-3.1 0-5.9 1.8-7.2 4.6l-16.6 34.7-38.1 5c-3.1 .4-5.6 2.5-6.6 5.5s-.1 6.2 2.1 8.3l27.9 26.5-7 37.8c-.6 3 .7 6.1 3.2 7.9s5.8 2 8.5 .6L160 232.5l33.8 18.3c2.7 1.5 6 1.3 8.5-.6s3.7-4.9 3.2-7.9l-7-37.8L226.4 178c2.2-2.1 3.1-5.3 2.1-8.3s-3.5-5.1-6.6-5.5l-38.1-5-16.6-34.7c-1.3-2.8-4.1-4.6-7.2-4.6zm192 0c-3.1 0-5.9 1.8-7.2 4.6l-16.6 34.7-38.1 5c-3.1 .4-5.6 2.5-6.6 5.5s-.1 6.2 2.1 8.3l27.9 26.5-7 37.8c-.6 3 .7 6.1 3.2 7.9s5.8 2 8.5 .6L352 232.5l33.8 18.3c2.7 1.5 6 1.3 8.5-.6s3.7-4.9 3.2-7.9l-7-37.8L418.4 178c2.2-2.1 3.1-5.3 2.1-8.3s-3.5-5.1-6.6-5.5l-38.1-5-16.6-34.7c-1.3-2.8-4.1-4.6-7.2-4.6z"]},IN=ol,UN={prefix:"fas",iconName:"bong",icon:[512,512,[],"f55c","M192 208.5c0 29.1-15.6 53.9-37.2 67.8c-17.2 11.1-31.5 26.1-41.7 43.7H334.9c-10.2-17.6-24.5-32.6-41.7-43.7c-21.6-13.9-37.2-38.7-37.2-67.8V64H192V208.5zM320 64V208.5c0 5.7 3.1 10.9 7.9 14c11.2 7.2 21.5 15.5 30.9 24.8L398.1 208l-7-7c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l24 24 24 24c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-7-7-43.3 43.3C406 314.1 416 347.9 416 384c0 39.4-11.9 76.1-32.2 106.5c-9.6 14.4-26.5 21.5-43.8 21.5H108.1c-17.3 0-34.2-7.1-43.8-21.5C43.9 460.1 32 423.4 32 384c0-67.8 35.1-127.3 88.1-161.5c4.8-3.1 7.9-8.3 7.9-14V64c-17.7 0-32-14.3-32-32s14.3-32 32-32h16H304h16c17.7 0 32 14.3 32 32s-14.3 32-32 32z"]},fl={prefix:"fas",iconName:"spaghetti-monster-flying",icon:[640,512,["pastafarianism"],"f67b","M208 64c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zm48 0c0 16.2-6 31.1-16 42.3l15.6 31.2c18.7-6 39.9-9.5 64.4-9.5s45.8 3.5 64.4 9.5L400 106.3C390 95.1 384 80.2 384 64c0-35.3 28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64c-1.7 0-3.4-.1-5.1-.2L427.8 158c21.1 13.6 37.7 30.2 51.4 46.4c7.1 8.3 13.5 16.6 19.3 24l1.4 1.8c6.3 8.1 11.6 14.8 16.7 20.4C527.3 262.3 532.7 264 536 264c2.5 0 4.3-.6 7.1-3.3c3.7-3.5 7.1-8.8 12.5-17.4l.6-.9c4.6-7.4 11-17.6 19.4-25.7c9.7-9.3 22.9-16.7 40.4-16.7c13.3 0 24 10.7 24 24s-10.7 24-24 24c-2.5 0-4.3 .6-7.1 3.3c-3.7 3.5-7.1 8.8-12.5 17.4l-.6 .9c-4.6 7.4-11 17.6-19.4 25.7c-9.7 9.3-22.9 16.7-40.4 16.7c-18.5 0-32.9-8.5-44.3-18.6c-3.1 4-6.6 8.3-10.5 12.7c1.4 4.3 2.8 8.5 4 12.5c.9 3 1.8 5.8 2.6 8.6c3 9.8 5.5 18.2 8.6 25.9c3.9 9.8 7.4 15.4 10.8 18.5c2.6 2.4 5.9 4.3 12.8 4.3c8.7 0 16.9-4.2 33.7-13.2c15-8 35.7-18.8 62.3-18.8c13.3 0 24 10.7 24 24s-10.7 24-24 24c-13.4 0-24.7 5.2-39.7 13.2c-1 .6-2.1 1.1-3.2 1.7C559.9 414 541.4 424 520 424c-18.4 0-33.6-6.1-45.5-17.2c-11.1-10.3-17.9-23.7-22.7-36c-3.6-9-6.7-19.1-9.5-28.5c-16.4 12.3-36.1 23.6-58.9 31.3c3.6 10.8 8.4 23.5 14.4 36.2c7.5 15.9 16.2 30.4 25.8 40.5C433 460.5 441.2 464 448 464c13.3 0 24 10.7 24 24s-10.7 24-24 24c-25.2 0-45-13.5-59.5-28.8c-14.5-15.4-25.7-34.9-34.2-53c-8-17-14.1-33.8-18.3-46.9c-5.2 .4-10.6 .6-16 .6s-10.8-.2-16-.6c-4.2 13-10.3 29.9-18.3 46.9c-8.5 18.1-19.8 37.6-34.2 53C237 498.5 217.2 512 192 512c-13.3 0-24-10.7-24-24s10.7-24 24-24c6.8 0 15-3.5 24.5-13.7c9.5-10.1 18.3-24.6 25.8-40.5c5.9-12.6 10.7-25.4 14.4-36.2c-22.8-7.7-42.5-19-58.9-31.3c-2.9 9.4-6 19.5-9.5 28.5c-4.8 12.2-11.6 25.6-22.7 36C153.6 417.9 138.4 424 120 424c-21.4 0-39.9-10-53.1-17.1l0 0c-1.1-.6-2.2-1.2-3.2-1.7c-15-8-26.3-13.2-39.7-13.2c-13.3 0-24-10.7-24-24s10.7-24 24-24c26.6 0 47.3 10.8 62.3 18.8c16.8 9 25 13.2 33.7 13.2c6.8 0 10.2-1.9 12.8-4.3c3.4-3.2 7-8.8 10.8-18.5c3-7.7 5.6-16.1 8.6-25.9c.8-2.7 1.7-5.6 2.6-8.6c1.2-4 2.6-8.2 4-12.5c-3.9-4.5-7.4-8.8-10.5-12.7C136.9 303.5 122.5 312 104 312c-17.5 0-30.7-7.4-40.4-16.7c-8.4-8.1-14.8-18.3-19.4-25.7l-.6-.9c-5.4-8.6-8.8-13.9-12.5-17.4c-2.8-2.7-4.6-3.3-7.1-3.3c-13.3 0-24-10.7-24-24s10.7-24 24-24c17.5 0 30.7 7.4 40.4 16.7c8.4 8.1 14.8 18.3 19.4 25.7l.6 .9c5.4 8.6 8.8 13.9 12.5 17.4c2.8 2.7 4.6 3.3 7.1 3.3c3.3 0 8.7-1.7 19.4-13.4c5.1-5.6 10.4-12.3 16.7-20.4l1.4-1.8c5.8-7.4 12.2-15.7 19.3-24c13.8-16.2 30.3-32.8 51.4-46.4l-15.1-30.2c-1.7 .1-3.4 .2-5.1 .2c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zm208 0c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16z"]},WN=fl,$N={prefix:"fas",iconName:"arrow-down-up-across-line",icon:[576,512,[],"e4af","M137.4 502.6c12.5 12.5 32.8 12.5 45.3 0l96-96c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 402.7V288H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H448V109.3l41.4 41.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L384 109.3V224H192 128 32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96V402.7L86.6 361.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96zM128 192h64V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V192zM448 320H384V448c0 17.7 14.3 32 32 32s32-14.3 32-32V320z"]},ll={prefix:"fas",iconName:"spoon",icon:[512,512,[129348,61873,"utensil-spoon"],"f2e5","M245.8 220.9c-14.5-17.6-21.8-39.2-21.8-60.8C224 80 320 0 416 0c53 0 96 43 96 96c0 96-80 192-160.2 192c-21.6 0-43.2-7.3-60.8-21.8L54.6 502.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L245.8 220.9z"]},qN=ll,GN={prefix:"fas",iconName:"jar-wheat",icon:[320,512,[],"e517","M32 32C32 14.3 46.3 0 64 0H256c17.7 0 32 14.3 32 32s-14.3 32-32 32H64C46.3 64 32 49.7 32 32zM0 160c0-35.3 28.7-64 64-64H256c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V160zm112 0H69.8c-3.2 0-5.8 2.6-5.8 5.8C64 198 90 224 122.2 224H144h32 21.8c32.1 0 58.2-26 58.2-58.2c0-3.2-2.6-5.8-5.8-5.8H208c-19.1 0-36.3 8.4-48 21.7c-11.7-13.3-28.9-21.7-48-21.7zm48 117.7c-11.7-13.3-28.9-21.7-48-21.7H69.8c-3.2 0-5.8 2.6-5.8 5.8C64 294 90 320 122.2 320H144h32 21.8c32.1 0 58.2-26 58.2-58.2c0-3.2-2.6-5.8-5.8-5.8H208c-19.1 0-36.3 8.4-48 21.7zM112 352H69.8c-3.2 0-5.8 2.6-5.8 5.8C64 390 90 416 122.2 416H144v32c0 8.8 7.2 16 16 16s16-7.2 16-16V416h21.8c32.1 0 58.2-26 58.2-58.2c0-3.2-2.6-5.8-5.8-5.8H208c-19.1 0-36.3 8.4-48 21.7c-11.7-13.3-28.9-21.7-48-21.7z"]},ul={prefix:"fas",iconName:"envelopes-bulk",icon:[576,512,["mail-bulk"],"f674","M96 0C78.3 0 64 14.3 64 32V224h96V192c0-35.3 28.7-64 64-64H448V32c0-17.7-14.3-32-32-32H96zM224 160c-17.7 0-32 14.3-32 32v32h96c35.3 0 64 28.7 64 64V416H544c17.7 0 32-14.3 32-32V192c0-17.7-14.3-32-32-32H224zm240 64h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H464c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zM32 256c-17.7 0-32 14.3-32 32v13L155.1 415.9c1.4 1 3.1 1.6 4.9 1.6s3.5-.6 4.9-1.6L320 301V288c0-17.7-14.3-32-32-32H32zm288 84.8L184 441.6c-6.9 5.1-15.3 7.9-24 7.9s-17-2.8-24-7.9L0 340.8V480c0 17.7 14.3 32 32 32H288c17.7 0 32-14.3 32-32V340.8z"]},jN=ul,KN={prefix:"fas",iconName:"file-circle-exclamation",icon:[576,512,[],"e4eb","M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zm48 384c-79.5 0-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144s-64.5 144-144 144zm0-48c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24zm0-192c-8.8 0-16 7.2-16 16v80c0 8.8 7.2 16 16 16s16-7.2 16-16V288c0-8.8-7.2-16-16-16z"]},hl={prefix:"fas",iconName:"circle-h",icon:[512,512,[9405,"hospital-symbol"],"f47e","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM368 152V256 360c0 13.3-10.7 24-24 24s-24-10.7-24-24V280H192l0 80c0 13.3-10.7 24-24 24s-24-10.7-24-24l0-208c0-13.3 10.7-24 24-24s24 10.7 24 24v80H320V152c0-13.3 10.7-24 24-24s24 10.7 24 24z"]},XN=hl,YN={prefix:"fas",iconName:"pager",icon:[512,512,[128223],"f815","M0 128C0 92.7 28.7 64 64 64H448c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128zm64 32v64c0 17.7 14.3 32 32 32H416c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H96c-17.7 0-32 14.3-32 32zM80 320c-13.3 0-24 10.7-24 24s10.7 24 24 24h56c13.3 0 24-10.7 24-24s-10.7-24-24-24H80zm136 0c-13.3 0-24 10.7-24 24s10.7 24 24 24h48c13.3 0 24-10.7 24-24s-10.7-24-24-24H216z"]},pl={prefix:"fas",iconName:"address-book",icon:[512,512,[62138,"contact-book"],"f2b9","M96 0C60.7 0 32 28.7 32 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H96zM208 288h64c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16H144c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80zm96-96c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zM512 80c0-8.8-7.2-16-16-16s-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V80zM496 192c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16zm16 144c0-8.8-7.2-16-16-16s-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V336z"]},JN=pl,QN={prefix:"fas",iconName:"strikethrough",icon:[512,512,[],"f0cc","M161.3 144c3.2-17.2 14-30.1 33.7-38.6c21.1-9 51.8-12.3 88.6-6.5c11.9 1.9 48.8 9.1 60.1 12c17.1 4.5 34.6-5.6 39.2-22.7s-5.6-34.6-22.7-39.2c-14.3-3.8-53.6-11.4-66.6-13.4c-44.7-7-88.3-4.2-123.7 10.9c-36.5 15.6-64.4 44.8-71.8 87.3c-.1 .6-.2 1.1-.2 1.7c-2.8 23.9 .5 45.6 10.1 64.6c4.5 9 10.2 16.9 16.7 23.9H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H270.1c-.1 0-.3-.1-.4-.1l-1.1-.3c-36-10.8-65.2-19.6-85.2-33.1c-9.3-6.3-15-12.6-18.2-19.1c-3.1-6.1-5.2-14.6-3.8-27.4zM348.9 337.2c2.7 6.5 4.4 15.8 1.9 30.1c-3 17.6-13.8 30.8-33.9 39.4c-21.1 9-51.7 12.3-88.5 6.5c-18-2.9-49.1-13.5-74.4-22.1c-5.6-1.9-11-3.7-15.9-5.4c-16.8-5.6-34.9 3.5-40.5 20.3s3.5 34.9 20.3 40.5c3.6 1.2 7.9 2.7 12.7 4.3l0 0 0 0c24.9 8.5 63.6 21.7 87.6 25.6l0 0 .2 0c44.7 7 88.3 4.2 123.7-10.9c36.5-15.6 64.4-44.8 71.8-87.3c3.6-21 2.7-40.4-3.1-58.1H335.1c7 5.6 11.4 11.2 13.9 17.2z"]},ZN={prefix:"fas",iconName:"k",icon:[320,512,[107],"4b","M311 86.3c12.3-12.7 12-32.9-.7-45.2s-32.9-12-45.2 .7l-155.2 160L64 249V64c0-17.7-14.3-32-32-32S0 46.3 0 64V328 448c0 17.7 14.3 32 32 32s32-14.3 32-32V341l64.7-66.7 133 192c10.1 14.5 30 18.1 44.5 8.1s18.1-30 8.1-44.5L174.1 227.4 311 86.3z"]},cA={prefix:"fas",iconName:"landmark-flag",icon:[512,512,[],"e51c","M272 0h80c8.8 0 16 7.2 16 16V80c0 8.8-7.2 16-16 16H272v32H464c17.7 0 32 14.3 32 32s-14.3 32-32 32H48c-17.7 0-32-14.3-32-32s14.3-32 32-32H240V16c0-8.8 7.2-16 16-16h16zM64 224h64V416h40V224h64V416h48V224h64V416h40V224h64V420.3c.6 .3 1.2 .7 1.8 1.1l48 32c11.7 7.8 17 22.4 12.9 35.9S494.1 512 480 512H32c-14.1 0-26.5-9.2-30.6-22.7s1.1-28.1 12.9-35.9l48-32c.6-.4 1.2-.7 1.8-1.1V224z"]},ml={prefix:"fas",iconName:"pencil",icon:[512,512,[9999,61504,"pencil-alt"],"f303","M410.3 231l11.3-11.3-33.9-33.9-62.1-62.1L291.7 89.8l-11.3 11.3-22.6 22.6L58.6 322.9c-10.4 10.4-18 23.3-22.2 37.4L1 480.7c-2.5 8.4-.2 17.5 6.1 23.7s15.3 8.5 23.7 6.1l120.3-35.4c14.1-4.2 27-11.8 37.4-22.2L387.7 253.7 410.3 231zM160 399.4l-9.1 22.7c-4 3.1-8.5 5.4-13.3 6.9L59.4 452l23-78.1c1.4-4.9 3.8-9.4 6.9-13.3l22.7-9.1v32c0 8.8 7.2 16 16 16h32zM362.7 18.7L348.3 33.2 325.7 55.8 314.3 67.1l33.9 33.9 62.1 62.1 33.9 33.9 11.3-11.3 22.6-22.6 14.5-14.5c25-25 25-65.5 0-90.5L453.3 18.7c-25-25-65.5-25-90.5 0zm-47.4 168l-144 144c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l144-144c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z"]},eA=ml,rA={prefix:"fas",iconName:"backward",icon:[512,512,[9194],"f04a","M459.5 440.6c9.5 7.9 22.8 9.7 34.1 4.4s18.4-16.6 18.4-29V96c0-12.4-7.2-23.7-18.4-29s-24.5-3.6-34.1 4.4L288 214.3V256v41.7L459.5 440.6zM256 352V256 128 96c0-12.4-7.2-23.7-18.4-29s-24.5-3.6-34.1 4.4l-192 160C4.2 237.5 0 246.5 0 256s4.2 18.5 11.5 24.6l192 160c9.5 7.9 22.8 9.7 34.1 4.4s18.4-16.6 18.4-29V352z"]},aA={prefix:"fas",iconName:"caret-right",icon:[256,512,[],"f0da","M246.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6l0 256c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l128-128z"]},nA={prefix:"fas",iconName:"comments",icon:[640,512,[128490,61670],"f086","M208 352c114.9 0 208-78.8 208-176S322.9 0 208 0S0 78.8 0 176c0 38.6 14.7 74.3 39.6 103.4c-3.5 9.4-8.7 17.7-14.2 24.7c-4.8 6.2-9.7 11-13.3 14.3c-1.8 1.6-3.3 2.9-4.3 3.7c-.5 .4-.9 .7-1.1 .8l-.2 .2 0 0 0 0C1 327.2-1.4 334.4 .8 340.9S9.1 352 16 352c21.8 0 43.8-5.6 62.1-12.5c9.2-3.5 17.8-7.4 25.3-11.4C134.1 343.3 169.8 352 208 352zM448 176c0 112.3-99.1 196.9-216.5 207C255.8 457.4 336.4 512 432 512c38.2 0 73.9-8.7 104.7-23.9c7.5 4 16 7.9 25.2 11.4c18.3 6.9 40.3 12.5 62.1 12.5c6.9 0 13.1-4.5 15.2-11.1c2.1-6.6-.2-13.8-5.8-17.9l0 0 0 0-.2-.2c-.2-.2-.6-.4-1.1-.8c-1-.8-2.5-2-4.3-3.7c-3.6-3.3-8.5-8.1-13.3-14.3c-5.5-7-10.7-15.4-14.2-24.7c24.9-29 39.6-64.7 39.6-103.4c0-92.8-84.9-168.9-192.6-175.5c.4 5.1 .6 10.3 .6 15.5z"]},vl={prefix:"fas",iconName:"paste",icon:[512,512,["file-clipboard"],"f0ea","M160 0c-23.7 0-44.4 12.9-55.4 32H48C21.5 32 0 53.5 0 80V400c0 26.5 21.5 48 48 48H192V176c0-44.2 35.8-80 80-80h48V80c0-26.5-21.5-48-48-48H215.4C204.4 12.9 183.7 0 160 0zM272 128c-26.5 0-48 21.5-48 48V448v16c0 26.5 21.5 48 48 48H464c26.5 0 48-21.5 48-48V256H416c-17.7 0-32-14.3-32-32V128H320 272zM160 40a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm256 88v96h96l-96-96z"]},tA=vl,sA={prefix:"fas",iconName:"code-pull-request",icon:[512,512,[],"e13c","M305.8 2.1C314.4 5.9 320 14.5 320 24V64h16c70.7 0 128 57.3 128 128V358.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V192c0-35.3-28.7-64-64-64H320v40c0 9.5-5.6 18.1-14.2 21.9s-18.8 2.3-25.8-4.1l-80-72c-5.1-4.6-7.9-11-7.9-17.8s2.9-13.3 7.9-17.8l80-72c7-6.3 17.2-7.9 25.8-4.1zM104 80c0-13.3-10.7-24-24-24S56 66.7 56 80s10.7 24 24 24s24-10.7 24-24zm8 73.3V358.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V153.3C19.7 141 0 112.8 0 80C0 35.8 35.8 0 80 0s80 35.8 80 80c0 32.8-19.7 61-48 73.3zM104 432c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24zm328 24c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24z"]},iA={prefix:"fas",iconName:"clipboard-list",icon:[384,512,[],"f46d","M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM72 272a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm104-16H304c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16s7.2-16 16-16zM72 368a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm88 0c0-8.8 7.2-16 16-16H304c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16z"]},dl={prefix:"fas",iconName:"truck-ramp-box",icon:[640,512,["truck-loading"],"f4de","M640 0V400c0 61.9-50.1 112-112 112c-61 0-110.5-48.7-112-109.3L48.4 502.9c-17.1 4.6-34.6-5.4-39.3-22.5s5.4-34.6 22.5-39.3L352 353.8V64c0-35.3 28.7-64 64-64H640zM576 400c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM23.1 207.7c-4.6-17.1 5.6-34.6 22.6-39.2l46.4-12.4 20.7 77.3c2.3 8.5 11.1 13.6 19.6 11.3l30.9-8.3c8.5-2.3 13.6-11.1 11.3-19.6l-20.7-77.3 46.4-12.4c17.1-4.6 34.6 5.6 39.2 22.6l41.4 154.5c4.6 17.1-5.6 34.6-22.6 39.2L103.7 384.9c-17.1 4.6-34.6-5.6-39.2-22.6L23.1 207.7z"]},oA=dl,fA={prefix:"fas",iconName:"user-check",icon:[640,512,[],"f4fc","M352 128c0 70.7-57.3 128-128 128s-128-57.3-128-128S153.3 0 224 0s128 57.3 128 128zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM625 177L497 305c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L591 143c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"]},lA={prefix:"fas",iconName:"vial-virus",icon:[512,512,[],"e597","M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96V384c0 53 43 96 96 96c28.6 0 54.2-12.5 71.8-32.3c.1-14.2 5.6-28.3 16.4-39.1c.2-.2 .1-.6-.2-.6c-30.9 0-56-25.1-56-56s25.1-56 56-56c.3 0 .4-.4 .2-.6c-21.9-21.9-21.9-57.3 0-79.2c2.4-2.4 5-4.6 7.8-6.5V96c17.7 0 32-14.3 32-32s-14.3-32-32-32H160 96 32zM96 192V96h64v96H96zM216 376c28.8 0 43.2 34.8 22.9 55.2c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0c20.4-20.4 55.2-5.9 55.2 22.9c0 13.3 10.7 24 24 24s24-10.7 24-24c0-28.8 34.8-43.2 55.2-22.9c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9C444.8 410.8 459.2 376 488 376c13.3 0 24-10.7 24-24s-10.7-24-24-24c-28.8 0-43.2-34.8-22.9-55.2c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0C410.8 259.2 376 244.8 376 216c0-13.3-10.7-24-24-24s-24 10.7-24 24c0 28.8-34.8 43.2-55.2 22.9c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9c20.4 20.4 5.9 55.2-22.9 55.2c-13.3 0-24 10.7-24 24s10.7 24 24 24zm104-24c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm88 32c0 13.3-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24z"]},uA={prefix:"fas",iconName:"sheet-plastic",icon:[384,512,[],"e571","M0 448c0 35.3 28.7 64 64 64H224V384c0-17.7 14.3-32 32-32H384V64c0-35.3-28.7-64-64-64H64C28.7 0 0 28.7 0 64V448zM171.3 75.3l-96 96c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l96-96c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6zm96 32l-160 160c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l160-160c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6zM384 384H256V512L384 384z"]},hA={prefix:"fas",iconName:"blog",icon:[512,512,[],"f781","M192 32c0 17.7 14.3 32 32 32c123.7 0 224 100.3 224 224c0 17.7 14.3 32 32 32s32-14.3 32-32C512 128.9 383.1 0 224 0c-17.7 0-32 14.3-32 32zm0 96c0 17.7 14.3 32 32 32c70.7 0 128 57.3 128 128c0 17.7 14.3 32 32 32s32-14.3 32-32c0-106-86-192-192-192c-17.7 0-32 14.3-32 32zM96 144c0-26.5-21.5-48-48-48S0 117.5 0 144V368c0 79.5 64.5 144 144 144s144-64.5 144-144s-64.5-144-144-144H128v96h16c26.5 0 48 21.5 48 48s-21.5 48-48 48s-48-21.5-48-48V144z"]},pA={prefix:"fas",iconName:"user-ninja",icon:[448,512,[129399],"f504","M224 256c-57.2 0-105.6-37.5-122-89.3c-1.1 1.3-2.2 2.6-3.5 3.8c-15.8 15.8-38.8 20.7-53.6 22.1c-8.1 .8-14.6-5.7-13.8-13.8c1.4-14.7 6.3-37.8 22.1-53.6c5.8-5.8 12.6-10.1 19.6-13.4c-7-3.2-13.8-7.6-19.6-13.4C37.4 82.7 32.6 59.7 31.1 44.9c-.8-8.1 5.7-14.6 13.8-13.8c14.7 1.4 37.8 6.3 53.6 22.1c4.8 4.8 8.7 10.4 11.7 16.1C131.4 28.2 174.4 0 224 0c70.7 0 128 57.3 128 128s-57.3 128-128 128zM0 482.3C0 396 61.3 324.1 142.7 307.6l68.5 91.4c6.4 8.5 19.2 8.5 25.6 0l68.5-91.4C386.7 324.1 448 396 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM160 96c-8.8 0-16 7.2-16 16s7.2 16 16 16H288c8.8 0 16-7.2 16-16s-7.2-16-16-16H160z"]},mA={prefix:"fas",iconName:"person-arrow-up-from-line",icon:[640,512,[],"e539","M192 96c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zm-8 352V352h16v96H184zm-64 0H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H152h80H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H264V256.9l28.6 47.5c9.1 15.1 28.8 20 43.9 10.9s20-28.8 10.9-43.9l-58.3-97c-17.4-28.9-48.6-46.6-82.3-46.6H177.1c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9L120 256.9V448zM598.6 121.4l-80-80c-12.5-12.5-32.8-12.5-45.3 0l-80 80c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L464 141.3 464 384c0 17.7 14.3 32 32 32s32-14.3 32-32V141.3l25.4 25.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3z"]},Hl={prefix:"fas",iconName:"scroll-torah",icon:[640,512,["torah"],"f6a0","M96 480V32C96 14.3 74.5 0 48 0S0 14.3 0 32V480c0 17.7 21.5 32 48 32s48-14.3 48-32zM512 32H128V480H512V32zM592 0c-26.5 0-48 14.3-48 32V480c0 17.7 21.5 32 48 32s48-14.3 48-32V32c0-17.7-21.5-32-48-32zM196 313.7c0-3.2 .9-6.4 2.5-9.2L226.7 256l-28.3-48.5c-1.6-2.8-2.5-6-2.5-9.2c0-10.1 8.2-18.3 18.3-18.3H271l31.4-53.9c3.6-6.3 10.3-10.1 17.6-10.1s13.9 3.8 17.6 10.1L369 180h56.7c10.1 0 18.3 8.2 18.3 18.3c0 3.2-.9 6.4-2.5 9.2L413.3 256l28.3 48.5c1.6 2.8 2.5 6 2.5 9.2c0 10.1-8.2 18.3-18.3 18.3H369l-31.4 53.9c-3.6 6.3-10.3 10.1-17.6 10.1s-13.9-3.8-17.6-10.1L271 332H214.3c-10.1 0-18.3-8.2-18.3-18.3zm124 54.7L341.2 332H298.8L320 368.4zM254.5 256l30.3 52h70.4l30.3-52-30.3-52H284.8l-30.3 52zm144.9 23.8L383 308h32.8l-16.4-28.2zM415.8 204H383l16.4 28.2L415.8 204zM320 143.6L298.8 180h42.4L320 143.6zM224.2 204l16.4 28.2L257 204H224.2zM257 308l-16.4-28.2L224.2 308H257z"]},vA=Hl,Ca={prefix:"fas",iconName:"broom-ball",icon:[640,512,["quidditch","quidditch-broom-ball"],"f458","M633.3 12.4c10.8 14 8.3 34.1-5.6 44.9l-144 112-72 56L403 232l28.3 36.3c3.7 4.8 4.4 11.2 1.8 16.7s-8.1 9-14.1 9.1l-48 .9L292.3 194.2l12.5-46.3c1.6-5.9 6.3-10.3 12.3-11.5s12 1.1 15.8 5.8l30.8 39.4 8.7-6.8 72-56 144-112c13.9-10.9 34.1-8.3 44.9 5.6zM269.1 476.3c-55.5 43.4-215 34.2-252.3 31.4c-5.1-.4-9.7-2.9-12.8-7s-4.5-9.1-3.6-14.1c.5-3.2 1.3-7.2 2.2-12.1c3-16.5 10.8-31.6 21.9-44.1l73.5-82.5c3.1-3.5 3.2-8.6 .4-12.3s-7.9-4.7-12-2.6L47.3 353.5c-6.3 3.3-13.4-2.7-11-9.4c14.3-39.9 32.7-76.9 55.5-94.7c57.7-45.1 175.3-35.5 175.3-35.5l78.8 100.9s-19.1 116.4-76.8 161.5zM496 512c-44.2 0-80-35.8-80-80s35.8-80 80-80s80 35.8 80 80s-35.8 80-80 80z"]},dA=Ca,HA=Ca,zA={prefix:"fas",iconName:"toggle-off",icon:[576,512,[],"f204","M384 128c70.7 0 128 57.3 128 128s-57.3 128-128 128H192c-70.7 0-128-57.3-128-128s57.3-128 128-128H384zM576 256c0-106-86-192-192-192H192C86 64 0 150 0 256S86 448 192 448H384c106 0 192-86 192-192zM192 352c53 0 96-43 96-96s-43-96-96-96s-96 43-96 96s43 96 96 96z"]},zl={prefix:"fas",iconName:"box-archive",icon:[512,512,["archive"],"f187","M32 32H480c17.7 0 32 14.3 32 32V96c0 17.7-14.3 32-32 32H32C14.3 128 0 113.7 0 96V64C0 46.3 14.3 32 32 32zm0 128H480V416c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V160zm128 80c0 8.8 7.2 16 16 16H336c8.8 0 16-7.2 16-16s-7.2-16-16-16H176c-8.8 0-16 7.2-16 16z"]},gA=zl,VA={prefix:"fas",iconName:"person-drowning",icon:[576,512,[],"e545","M192 64c0-17.7-14.3-32-32-32s-32 14.3-32 32V96.2c0 54.1 23.5 104 62.2 138.3l-21 146.7c7.8 2.1 15.5 3.3 22.8 3.3c21.1 0 42-8.5 59.2-20.3c22.1-15.5 51.6-15.5 73.7 0c12.4 8.5 26.1 14.8 39.7 18l17.7-97.6c10.7-1.2 21.3-3.1 31.9-5.5l105-23.9c17.2-3.9 28-21.1 24.1-38.3s-21.1-28-38.3-24.1L400 216.6c-41 9.3-83.7 7.5-123.7-5.2c-50.2-16-84.3-62.6-84.3-115.3V64zM320 192c35.3 0 64-28.7 64-64s-28.7-64-64-64s-64 28.7-64 64s28.7 64 64 64zM306.5 389.9c-11.1-7.9-25.9-7.9-37 0C247 405.4 219.5 416 192 416c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C126.5 469.7 159 480 192 480c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.4-27.3-10.1-39.2-1.7l0 0C439.4 405.2 410.9 416 384 416c-27.5 0-55-10.6-77.5-26.1z"]},La={prefix:"fas",iconName:"arrow-down-9-1",icon:[576,512,["sort-numeric-desc","sort-numeric-down-alt"],"f886","M160 480c9 0 17.5-3.8 23.6-10.4l88-96c11.9-13 11.1-33.3-2-45.2s-33.3-11.1-45.2 2L192 365.7V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V365.7L95.6 330.4c-11.9-13-32.2-13.9-45.2-2s-13.9 32.2-2 45.2l88 96C142.5 476.2 151 480 160 480zM352 320c0 17.7 14.3 32 32 32h16v64H384c-17.7 0-32 14.3-32 32s14.3 32 32 32h48 48c17.7 0 32-14.3 32-32s-14.3-32-32-32H464V320c0-17.7-14.3-32-32-32H384c-17.7 0-32 14.3-32 32zm93.7-171.1c-4.2 2-8.8 3.1-13.7 3.1c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32c0 12.8-7.5 23.8-18.3 28.9zm-40.7 54.9l-6.8 9.2c-10.5 14.2-7.5 34.2 6.7 44.8s34.2 7.5 44.8-6.7l48.8-65.8c14-18.9 21.5-41.7 21.5-65.2c0-48.6-39.4-88-88-88s-88 39.4-88 88c0 39.2 25.6 72.4 61.1 83.8z"]},MA=La,CA=La,gl={prefix:"fas",iconName:"face-grin-tongue-squint",icon:[512,512,[128541,"grin-tongue-squint"],"f58a","M0 256C0 368.9 73.1 464.7 174.5 498.8C165.3 484 160 466.6 160 448V400.7c-24-17.5-43.1-41.4-54.8-69.2c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19c12.3-3.8 24.3 6.9 19.3 18.7c-11.8 28-31.1 52-55.4 69.6V448c0 18.6-5.3 36-14.5 50.8C438.9 464.7 512 368.9 512 256C512 114.6 397.4 0 256 0S0 114.6 0 256zM116 141.1c0-9 9.6-14.7 17.5-10.5l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6zm262.5-10.5c7.9-4.2 17.5 1.5 17.5 10.5c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9zM320 448V402.6c0-14.7-11.9-26.6-26.6-26.6h-2c-11.3 0-21.1 7.9-23.6 18.9c-2.8 12.6-20.8 12.6-23.6 0c-2.5-11.1-12.3-18.9-23.6-18.9h-2c-14.7 0-26.6 11.9-26.6 26.6V448c0 35.3 28.7 64 64 64s64-28.7 64-64z"]},LA=gl,yA={prefix:"fas",iconName:"spray-can",icon:[512,512,[],"f5bd","M128 0h64c17.7 0 32 14.3 32 32v96H96V32c0-17.7 14.3-32 32-32zM0 256c0-53 43-96 96-96H224c53 0 96 43 96 96V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V256zm240 80c0-44.2-35.8-80-80-80s-80 35.8-80 80s35.8 80 80 80s80-35.8 80-80zM320 64c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm64 32c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zM512 64c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zM480 192c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm32 64c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zM384 192c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},bA={prefix:"fas",iconName:"truck-monster",icon:[640,512,[],"f63b","M288 64v64H416L368 64H288zM419.2 25.6L496 128h80c17.7 0 32 14.3 32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32c-29.2-38.9-75.7-64-128-64s-98.8 25.1-128 64H288c-29.2-38.9-75.7-64-128-64s-98.8 25.1-128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32V160c0-17.7 14.3-32 32-32H224V48c0-26.5 21.5-48 48-48h96c20.1 0 39.1 9.5 51.2 25.6zM152 256h16c12.1 0 22.1 8.9 23.8 20.6c7.6 2.2 14.9 5.3 21.7 9c9.4-7 22.8-6.3 31.3 2.3l11.3 11.3c8.6 8.6 9.3 21.9 2.3 31.3c3.7 6.8 6.8 14.1 9 21.7c11.6 1.7 20.6 11.7 20.6 23.8v16c0 12.1-8.9 22.1-20.6 23.8c-2.2 7.6-5.3 14.9-9 21.7c7 9.4 6.3 22.8-2.3 31.3l-11.3 11.3c-8.6 8.6-21.9 9.3-31.3 2.2c-6.8 3.7-14.1 6.8-21.7 9C190.1 503.1 180.1 512 168 512H152c-12.1 0-22.1-8.9-23.8-20.6c-7.6-2.2-14.9-5.3-21.7-9c-9.4 7.1-22.8 6.3-31.3-2.2L63.8 468.9c-8.6-8.6-9.3-21.9-2.3-31.3c-3.7-6.9-6.8-14.1-9-21.8C40.9 414.1 32 404.1 32 392V376c0-12.1 8.9-22.1 20.6-23.8c2.2-7.6 5.3-14.9 9-21.8c-7-9.4-6.3-22.8 2.3-31.3l11.3-11.3c8.6-8.6 21.9-9.3 31.3-2.3c6.8-3.7 14.1-6.8 21.7-9c1.7-11.6 11.7-20.6 23.8-20.6zm8 176c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zM448.2 276.6c1.7-11.6 11.7-20.6 23.8-20.6h16c12.1 0 22.1 8.9 23.8 20.6c7.6 2.2 14.9 5.3 21.8 9c9.4-7 22.8-6.3 31.3 2.3l11.3 11.3c8.6 8.6 9.3 21.9 2.2 31.3c3.7 6.8 6.8 14.1 9 21.7c11.6 1.7 20.6 11.7 20.6 23.8v16c0 12.1-8.9 22.1-20.6 23.8c-2.2 7.6-5.3 14.9-9 21.7c7 9.4 6.3 22.8-2.2 31.3l-11.3 11.3c-8.6 8.6-21.9 9.3-31.3 2.2c-6.9 3.7-14.1 6.8-21.8 9C510.1 503.1 500.1 512 488 512H472c-12.1 0-22.1-8.9-23.8-20.6c-7.6-2.2-14.9-5.3-21.7-9c-9.4 7.1-22.8 6.3-31.3-2.2l-11.3-11.3c-8.6-8.6-9.3-21.9-2.2-31.3c-3.7-6.9-6.8-14.1-9-21.8C360.9 414.1 352 404.1 352 392V376c0-12.1 8.9-22.1 20.6-23.8c2.2-7.6 5.3-14.9 9-21.8c-7-9.4-6.3-22.8 2.2-31.3l11.3-11.3c8.6-8.6 21.9-9.3 31.3-2.3c6.8-3.7 14.1-6.8 21.7-9zM528 384c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48z"]},xA={prefix:"fas",iconName:"w",icon:[576,512,[119],"57","M20.8 34c16.5-6.2 35 2.2 41.2 18.7l110.2 294L257.3 55c4-13.7 16.5-23 30.7-23s26.7 9.4 30.7 23l85.1 291.7L514 52.8c6.2-16.5 24.6-24.9 41.2-18.7s24.9 24.7 18.7 41.2l-144 384c-4.8 12.9-17.4 21.3-31.2 20.7s-25.7-9.8-29.5-23L288 178.3 206.7 457c-3.9 13.2-15.8 22.5-29.5 23s-26.3-7.8-31.2-20.7L2 75.2C-4.2 58.7 4.2 40.2 20.8 34z"]},Vl={prefix:"fas",iconName:"earth-africa",icon:[512,512,[127757,"globe-africa"],"f57c","M177.8 63.2l10 17.4c2.8 4.8 4.2 10.3 4.2 15.9v41.4c0 3.9 1.6 7.7 4.3 10.4c6.2 6.2 16.5 5.7 22-1.2l13.6-17c4.7-5.9 12.9-7.7 19.6-4.3l15.2 7.6c3.4 1.7 7.2 2.6 11 2.6c6.5 0 12.8-2.6 17.4-7.2l3.9-3.9c2.9-2.9 7.3-3.6 11-1.8l29.2 14.6c7.8 3.9 12.6 11.8 12.6 20.5c0 10.5-7.1 19.6-17.3 22.2l-35.4 8.8c-7.4 1.8-15.1 1.5-22.3-.9l-32-10.7c-3.3-1.1-6.7-1.7-10.2-1.7c-7 0-13.8 2.3-19.4 6.5L176 212c-10.1 7.6-16 19.4-16 32v28c0 26.5 21.5 48 48 48h32c8.8 0 16 7.2 16 16v48c0 17.7 14.3 32 32 32c10.1 0 19.6-4.7 25.6-12.8l25.6-34.1c8.3-11.1 12.8-24.6 12.8-38.4V318.6c0-3.9 2.6-7.3 6.4-8.2l5.3-1.3c11.9-3 20.3-13.7 20.3-26c0-7.1-2.8-13.9-7.8-18.9l-33.5-33.5c-3.7-3.7-3.7-9.7 0-13.4c5.7-5.7 14.1-7.7 21.8-5.1l14.1 4.7c12.3 4.1 25.7-1.5 31.5-13c3.5-7 11.2-10.8 18.9-9.2l27.4 5.5C432 112.4 351.5 48 256 48c-27.7 0-54 5.4-78.2 15.2zM512 256c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0S512 114.6 512 256z"]},SA=Vl,wA={prefix:"fas",iconName:"rainbow",icon:[640,512,[127752],"f75b","M320 96C178.6 96 64 210.6 64 352v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352C0 175.3 143.3 32 320 32s320 143.3 320 320v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352C576 210.6 461.4 96 320 96zm0 192c-35.3 0-64 28.7-64 64v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352c0-70.7 57.3-128 128-128s128 57.3 128 128v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352c0-35.3-28.7-64-64-64zM160 352v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352c0-123.7 100.3-224 224-224s224 100.3 224 224v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352c0-88.4-71.6-160-160-160s-160 71.6-160 160z"]},NA={prefix:"fas",iconName:"circle-notch",icon:[512,512,[],"f1ce","M222.7 32.1c5 16.9-4.6 34.8-21.5 39.8C121.8 95.6 64 169.1 64 256c0 106 86 192 192 192s192-86 192-192c0-86.9-57.8-160.4-137.1-184.1c-16.9-5-26.6-22.9-21.5-39.8s22.9-26.6 39.8-21.5C434.9 42.1 512 140 512 256c0 141.4-114.6 256-256 256S0 397.4 0 256C0 140 77.1 42.1 182.9 10.6c16.9-5 34.8 4.6 39.8 21.5z"]},Ml={prefix:"fas",iconName:"tablet-screen-button",icon:[448,512,["tablet-alt"],"f3fa","M0 64C0 28.7 28.7 0 64 0H384c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM256 448c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM384 64H64V384H384V64z"]},AA=Ml,_A={prefix:"fas",iconName:"paw",icon:[512,512,[],"f1b0","M226.5 92.9c14.3 42.9-.3 86.2-32.6 96.8s-70.1-15.6-84.4-58.5s.3-86.2 32.6-96.8s70.1 15.6 84.4 58.5zM100.4 198.6c18.9 32.4 14.3 70.1-10.2 84.1s-59.7-.9-78.5-33.3S-2.7 179.3 21.8 165.3s59.7 .9 78.5 33.3zM69.2 401.2C121.6 259.9 214.7 224 256 224s134.4 35.9 186.8 177.2c3.6 9.7 5.2 20.1 5.2 30.5v1.6c0 25.8-20.9 46.7-46.7 46.7c-11.5 0-22.9-1.4-34-4.2l-88-22c-15.3-3.8-31.3-3.8-46.6 0l-88 22c-11.1 2.8-22.5 4.2-34 4.2C84.9 480 64 459.1 64 433.3v-1.6c0-10.4 1.6-20.8 5.2-30.5zM421.8 282.7c-24.5-14-29.1-51.7-10.2-84.1s54-47.3 78.5-33.3s29.1 51.7 10.2 84.1s-54 47.3-78.5 33.3zM310.1 189.7c-32.3-10.6-46.9-53.9-32.6-96.8s52.1-69.1 84.4-58.5s46.9 53.9 32.6 96.8s-52.1 69.1-84.4 58.5z"]},kA={prefix:"fas",iconName:"cloud",icon:[640,512,[9729],"f0c2","M0 336c0 79.5 64.5 144 144 144H512c70.7 0 128-57.3 128-128c0-61.9-44-113.6-102.4-125.4c4.1-10.7 6.4-22.4 6.4-34.6c0-53-43-96-96-96c-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32C167.6 32 96 103.6 96 192c0 2.7 .1 5.4 .2 8.1C40.2 219.8 0 273.2 0 336z"]},TA={prefix:"fas",iconName:"trowel-bricks",icon:[512,512,[],"e58a","M240.8 4.8C250.3 10.6 256 20.9 256 32v72h89c3.6-13.8 16.1-24 31-24h88c26.5 0 48 21.5 48 48s-21.5 48-48 48H376c-14.9 0-27.4-10.2-31-24H256v72c0 11.1-5.7 21.4-15.2 27.2s-21.2 6.4-31.1 1.4l-192-96C6.8 151.2 0 140.1 0 128s6.8-23.2 17.7-28.6l192-96c9.9-5 21.7-4.4 31.1 1.4zM288 256c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H320c-17.7 0-32-14.3-32-32V256zM32 384h96c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32zm192 0H480c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H224c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32z"]},Cl={prefix:"fas",iconName:"face-flushed",icon:[512,512,[128563,"flushed"],"f579","M512 256c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0S512 114.6 512 256zM176 384c0 8.8 7.2 16 16 16H320c8.8 0 16-7.2 16-16s-7.2-16-16-16H192c-8.8 0-16 7.2-16 16zm-16-88c39.8 0 72-32.2 72-72s-32.2-72-72-72s-72 32.2-72 72s32.2 72 72 72zm264-72c0-39.8-32.2-72-72-72s-72 32.2-72 72s32.2 72 72 72s72-32.2 72-72zm-240 0c0 13.3-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24zm192 0c0 13.3-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24z"]},PA=Cl,EA={prefix:"fas",iconName:"hospital-user",icon:[576,512,[],"f80d","M48 0C21.5 0 0 21.5 0 48V256H144c8.8 0 16 7.2 16 16s-7.2 16-16 16H0v64H144c8.8 0 16 7.2 16 16s-7.2 16-16 16H0v80c0 26.5 21.5 48 48 48H265.9c-6.3-10.2-9.9-22.2-9.9-35.1c0-46.9 25.8-87.8 64-109.2V271.8 48c0-26.5-21.5-48-48-48H48zM152 64h16c8.8 0 16 7.2 16 16v24h24c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H184v24c0 8.8-7.2 16-16 16H152c-8.8 0-16-7.2-16-16V152H112c-8.8 0-16-7.2-16-16V120c0-8.8 7.2-16 16-16h24V80c0-8.8 7.2-16 16-16zM512 272c0-44.2-35.8-80-80-80s-80 35.8-80 80s35.8 80 80 80s80-35.8 80-80zM288 477.1c0 19.3 15.6 34.9 34.9 34.9H541.1c19.3 0 34.9-15.6 34.9-34.9c0-51.4-41.7-93.1-93.1-93.1H381.1c-51.4 0-93.1 41.7-93.1 93.1z"]},OA={prefix:"fas",iconName:"tent-arrow-left-right",icon:[640,512,[],"e57f","M520.1 6.2c-9.9-8.9-25-8.1-33.9 1.8s-8.1 25 1.8 33.9L521.5 72 118.5 72l33.5-30.2c9.9-8.9 10.7-24 1.8-33.9s-24-10.7-33.9-1.8l-80 72C34.9 82.7 32 89.2 32 96s2.9 13.3 7.9 17.8l80 72c9.9 8.9 25 8.1 33.9-1.8s8.1-25-1.8-33.9L118.5 120l402.9 0-33.5 30.2c-9.9 8.9-10.7 24-1.8 33.9s24 10.7 33.9 1.8l80-72c5.1-4.6 7.9-11 7.9-17.8s-2.9-13.3-7.9-17.8l-80-72zM339.4 166.5c-11.5-8.7-27.3-8.7-38.8 0l-168 128c-6.6 5-11 12.5-12.3 20.7l-24 160c-1.4 9.2 1.3 18.6 7.4 25.6s14.9 11.1 24.2 11.1H320V352l96 160h96c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128z"]},Ll={prefix:"fas",iconName:"gavel",icon:[512,512,["legal"],"f0e3","M318.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-120 120c-12.5 12.5-12.5 32.8 0 45.3l16 16c12.5 12.5 32.8 12.5 45.3 0l4-4L325.4 293.4l-4 4c-12.5 12.5-12.5 32.8 0 45.3l16 16c12.5 12.5 32.8 12.5 45.3 0l120-120c12.5-12.5 12.5-32.8 0-45.3l-16-16c-12.5-12.5-32.8-12.5-45.3 0l-4 4L330.6 74.6l4-4c12.5-12.5 12.5-32.8 0-45.3l-16-16zm-152 288c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3l48 48c12.5 12.5 32.8 12.5 45.3 0l112-112c12.5-12.5 12.5-32.8 0-45.3l-1.4-1.4L272 285.3 226.7 240 168 298.7l-1.4-1.4z"]},RA=Ll,FA={prefix:"fas",iconName:"binoculars",icon:[512,512,[],"f1e5","M128 32h32c17.7 0 32 14.3 32 32V96H96V64c0-17.7 14.3-32 32-32zm64 96V448c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V388.9c0-34.6 9.4-68.6 27.2-98.3C40.9 267.8 49.7 242.4 53 216L60.5 156c2-16 15.6-28 31.8-28H192zm227.8 0c16.1 0 29.8 12 31.8 28L459 216c3.3 26.4 12.1 51.8 25.8 74.6c17.8 29.7 27.2 63.7 27.2 98.3V448c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V128h99.8zM320 64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V96H320V64zm-32 64V288H224V128h64z"]},BA={prefix:"fas",iconName:"microphone-slash",icon:[640,512,[],"f131","M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L472.1 344.7c15.2-26 23.9-56.3 23.9-88.7V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 21.2-5.1 41.1-14.2 58.7L416 300.8V96c0-53-43-96-96-96s-96 43-96 96v54.3L38.8 5.1zM344 430.4c20.4-2.8 39.7-9.1 57.3-18.2l-43.1-33.9C346.1 382 333.3 384 320 384c-70.7 0-128-57.3-128-128v-8.7L144.7 210c-.5 1.9-.7 3.9-.7 6v40c0 89.1 66.2 162.7 152 174.4V464H248c-13.3 0-24 10.7-24 24s10.7 24 24 24h72 72c13.3 0 24-10.7 24-24s-10.7-24-24-24H344V430.4z"]},DA={prefix:"fas",iconName:"box-tissue",icon:[512,512,[],"e05b","M92.5 0H208c40 0 52 24 64 48s24 48 64 48h85.2C436 96 448 108 448 122.8c0 3.4-.7 6.8-1.9 10L409.6 224 384 288H128l-16-64L64.9 35.4c-.6-2.3-.9-4.6-.9-6.9C64 12.8 76.8 0 92.5 0zM79 224l16 64H80c-8.8 0-16 7.2-16 16s7.2 16 16 16h48H384h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H418.5l25.6-64H464c26.5 0 48 21.5 48 48V384H0V272c0-26.5 21.5-48 48-48H79zM0 416H512v48c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V416z"]},IA={prefix:"fas",iconName:"motorcycle",icon:[640,512,[127949],"f21c","M280 32c-13.3 0-24 10.7-24 24s10.7 24 24 24h57.7l16.4 30.3L256 192l-45.3-45.3c-12-12-28.3-18.7-45.3-18.7H64c-17.7 0-32 14.3-32 32v32h96c88.4 0 160 71.6 160 160c0 11-1.1 21.7-3.2 32h70.4c-2.1-10.3-3.2-21-3.2-32c0-52.2 25-98.6 63.7-127.8l15.4 28.6C402.4 276.3 384 312 384 352c0 70.7 57.3 128 128 128s128-57.3 128-128s-57.3-128-128-128c-13.5 0-26.5 2.1-38.7 6L418.2 128H480c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H459.6c-7.5 0-14.7 2.6-20.5 7.4L391.7 78.9l-14-26c-7-12.9-20.5-21-35.2-21H280zM462.7 311.2l28.2 52.2c6.3 11.7 20.9 16 32.5 9.7s16-20.9 9.7-32.5l-28.2-52.2c2.3-.3 4.7-.4 7.1-.4c35.3 0 64 28.7 64 64s-28.7 64-64 64s-64-28.7-64-64c0-15.5 5.5-29.7 14.7-40.8zM187.3 376c-9.5 23.5-32.5 40-59.3 40c-35.3 0-64-28.7-64-64s28.7-64 64-64c26.9 0 49.9 16.5 59.3 40h66.4C242.5 268.8 190.5 224 128 224C57.3 224 0 281.3 0 352s57.3 128 128 128c62.5 0 114.5-44.8 125.8-104H187.3zM128 384c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z"]},yl={prefix:"fas",iconName:"bell-concierge",icon:[512,512,[128718,"concierge-bell"],"f562","M216 64c-13.3 0-24 10.7-24 24s10.7 24 24 24h16v33.3C119.6 157.2 32 252.4 32 368H480c0-115.6-87.6-210.8-200-222.7V112h16c13.3 0 24-10.7 24-24s-10.7-24-24-24H256 216zM24 400c-13.3 0-24 10.7-24 24s10.7 24 24 24H488c13.3 0 24-10.7 24-24s-10.7-24-24-24H24z"]},UA=yl,bl={prefix:"fas",iconName:"pen-ruler",icon:[512,512,["pencil-ruler"],"f5ae","M469.3 19.3l23.4 23.4c25 25 25 65.5 0 90.5l-56.4 56.4L322.3 75.7l56.4-56.4c25-25 65.5-25 90.5 0zM44.9 353.2L299.7 98.3 413.7 212.3 158.8 467.1c-6.7 6.7-15.1 11.6-24.2 14.2l-104 29.7c-8.4 2.4-17.4 .1-23.6-6.1s-8.5-15.2-6.1-23.6l29.7-104c2.6-9.2 7.5-17.5 14.2-24.2zM249.4 103.4L103.4 249.4 16 161.9c-18.7-18.7-18.7-49.1 0-67.9L94.1 16c18.7-18.7 49.1-18.7 67.9 0l19.8 19.8c-.3 .3-.7 .6-1 .9l-64 64c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l64-64c.3-.3 .6-.7 .9-1l45.1 45.1zM408.6 262.6l45.1 45.1c-.3 .3-.7 .6-1 .9l-64 64c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l64-64c.3-.3 .6-.7 .9-1L496 350.1c18.7 18.7 18.7 49.1 0 67.9L417.9 496c-18.7 18.7-49.1 18.7-67.9 0l-87.4-87.4L408.6 262.6z"]},WA=bl,xl={prefix:"fas",iconName:"people-arrows",icon:[640,512,["people-arrows-left-right"],"e068","M192 64c0 35.3-28.7 64-64 64s-64-28.7-64-64S92.7 0 128 0s64 28.7 64 64zM25.9 233.4C29.3 191.9 64 160 105.6 160h44.8c27 0 51 13.4 65.5 34.1c-2.7 1.9-5.2 4-7.5 6.3l-64 64c-21.9 21.9-21.9 57.3 0 79.2L192 391.2V464c0 26.5-21.5 48-48 48H112c-26.5 0-48-21.5-48-48V348.3c-26.5-9.5-44.7-35.8-42.2-65.6l4.1-49.3zM576 64c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zM431.6 200.4c-2.3-2.3-4.9-4.4-7.5-6.3c14.5-20.7 38.6-34.1 65.5-34.1h44.8c41.6 0 76.3 31.9 79.7 73.4l4.1 49.3c2.5 29.8-15.7 56.1-42.2 65.6V464c0 26.5-21.5 48-48 48H496c-26.5 0-48-21.5-48-48V391.2l47.6-47.6c21.9-21.9 21.9-57.3 0-79.2l-64-64zM272 240v32h96V240c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l64 64c9.4 9.4 9.4 24.6 0 33.9l-64 64c-6.9 6.9-17.2 8.9-26.2 5.2s-14.8-12.5-14.8-22.2V336H272v32c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-64-64c-9.4-9.4-9.4-24.6 0-33.9l64-64c6.9-6.9 17.2-8.9 26.2-5.2s14.8 12.5 14.8 22.2z"]},$A=xl,qA={prefix:"fas",iconName:"mars-and-venus-burst",icon:[640,512,[],"e523","M504 0c-9.7 0-18.5 5.8-22.2 14.8s-1.7 19.3 5.2 26.2l39 39-22.2 22.2C475.9 78.4 439.6 64 400 64c-88.4 0-160 71.6-160 160c0 80.2 59.1 146.7 136.1 158.2c0 .6-.1 1.2-.1 1.8v.4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .3 .4 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3H352c-13.3 0-24 10.7-24 24s10.7 24 24 24h24v.2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0l24 0H376c0 13.3 10.7 24 24 24s24-10.7 24-24H400l24 0v0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V486 486v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V485 485v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V484v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V483v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V481v-.1-.1-.1-.1-.1-.1-.1-.1V480v-.1-.1-.1-.1-.1-.1-.1V479v-.1-.1-.1-.1-.1-.1-.1V478v-.1-.1-.1-.1-.1-.1V477v-.1-.1-.1-.1-.1-.1V476v-.1-.1-.1-.1-.1-.1V475v-.1-.2-.2-.2-.2-.2V474v-.2-.2-.2-.2-.2V473v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V470v-.2-.2-.2-.2-.2V469v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V467v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V463v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V459v-.2-.2-.2-.2-.2-.2-.2-.2V457v-.2-.2-.2-.2V456h24c13.3 0 24-10.7 24-24s-10.7-24-24-24H424v-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3V403v-.3-.3V402v-.3-.3V401v-.3-.3V400v-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.4-.3-.4-.4-.4-.4V393v-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4V388v-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4V384c0-.6 0-1.2-.1-1.8c77-11.6 136.1-78 136.1-158.2c0-31.4-9-60.7-24.7-85.4L560 113.9l39 39c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V24c0-13.3-10.7-24-24-24H504zM400 320c-53 0-96-43-96-96s43-96 96-96s96 43 96 96s-43 96-96 96zM190.9 18.1C188.4 12 182.6 8 176 8s-12.4 4-14.9 10.1l-29.4 74L55.6 68.9c-6.3-1.9-13.1 .2-17.2 5.3s-4.6 12.2-1.4 17.9l39.5 69.1L10.9 206.4c-5.4 3.7-8 10.3-6.5 16.7s6.7 11.2 13.1 12.2l78.7 12.2L90.6 327c-.5 6.5 3.1 12.7 9 15.5s12.9 1.8 17.8-2.6L176 286.1l58.6 53.9c4.1 3.8 9.9 5.1 15.2 3.6C223.6 310.8 208 269.2 208 224c0-60.8 28.3-115 72.4-150.2L220.3 92.1l-29.4-74z"]},Sl={prefix:"fas",iconName:"square-caret-right",icon:[448,512,["caret-square-right"],"f152","M448 96c0-35.3-28.7-64-64-64L64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-320zM320 256c0 6.7-2.8 13-7.7 17.6l-112 104c-7 6.5-17.2 8.2-25.9 4.4s-14.4-12.5-14.4-22l0-208c0-9.5 5.7-18.2 14.4-22s18.9-2.1 25.9 4.4l112 104c4.9 4.5 7.7 10.9 7.7 17.6z"]},GA=Sl,wl={prefix:"fas",iconName:"scissors",icon:[512,512,[9984,9986,9988,"cut"],"f0c4","M256 192l-39.5-39.5c4.9-12.6 7.5-26.2 7.5-40.5C224 50.1 173.9 0 112 0S0 50.1 0 112s50.1 112 112 112c14.3 0 27.9-2.7 40.5-7.5L192 256l-39.5 39.5c-12.6-4.9-26.2-7.5-40.5-7.5C50.1 288 0 338.1 0 400s50.1 112 112 112s112-50.1 112-112c0-14.3-2.7-27.9-7.5-40.5L499.2 76.8c7.1-7.1 7.1-18.5 0-25.6c-28.3-28.3-74.1-28.3-102.4 0L256 192zm22.6 150.6L396.8 460.8c28.3 28.3 74.1 28.3 102.4 0c7.1-7.1 7.1-18.5 0-25.6L342.6 278.6l-64 64zM160 112c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48zM112 448c-26.5 0-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48s-21.5 48-48 48z"]},jA=wl,KA={prefix:"fas",iconName:"sun-plant-wilt",icon:[640,512,[],"e57a","M160 0c-6.3 0-12 3.7-14.6 9.5L120.6 64.9 63.9 43.2c-5.9-2.3-12.6-.8-17 3.6s-5.9 11.1-3.6 17l21.7 56.7L9.5 145.4C3.7 148 0 153.7 0 160s3.7 12 9.5 14.6l55.4 24.8L43.2 256.1c-2.3 5.9-.8 12.6 3.6 17s11.1 5.9 17 3.6l56.7-21.7 24.8 55.4c2.6 5.8 8.3 9.5 14.6 9.5s12-3.7 14.6-9.5l24.8-55.4 56.7 21.7c5.9 2.3 12.6 .8 17-3.6s5.9-11.1 3.6-17l-21.7-56.7 55.4-24.8c5.8-2.6 9.5-8.3 9.5-14.6s-3.7-12-9.5-14.6l-55.4-24.8 21.7-56.7c2.3-5.9 .8-12.6-3.6-17s-11.1-5.9-17-3.6L199.4 64.9 174.6 9.5C172 3.7 166.3 0 160 0zm0 224c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64zm32-64c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zm312 16c0-17.7 14.3-32 32-32s32 14.3 32 32v53.4c-14.8 7.7-24 23.1-24 44.6c0 16.8 16 44 37.4 67.2c5.8 6.2 15.5 6.2 21.2 0C624 318 640 290.7 640 274c0-21.5-9.2-37-24-44.6V176c0-44.2-35.8-80-80-80s-80 35.8-80 80v22.7c-9.8-4.3-20.6-6.7-32-6.7c-44.2 0-80 35.8-80 80v21.4c-14.8 7.7-24 23.1-24 44.6c0 16.8 16 44 37.4 67.2c5.8 6.2 15.5 6.2 21.2 0C400 382 416 354.7 416 338c0-21.5-9.2-37-24-44.6V272c0-17.7 14.3-32 32-32s32 14.3 32 32v8V448H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H504V280v-8V176z"]},XA={prefix:"fas",iconName:"toilets-portable",icon:[576,512,[],"e584","M32 0H224c17.7 0 32 14.3 32 32V64H0V32C0 14.3 14.3 0 32 0zM0 96H24 232h24v24V488c0 13.3-10.7 24-24 24s-24-10.7-24-24v-8H48v8c0 13.3-10.7 24-24 24s-24-10.7-24-24V120 96zM192 224c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V240c0-8.8-7.2-16-16-16zM352 0H544c17.7 0 32 14.3 32 32V64H320V32c0-17.7 14.3-32 32-32zM320 96h24H552h24v24V488c0 13.3-10.7 24-24 24s-24-10.7-24-24v-8H368v8c0 13.3-10.7 24-24 24s-24-10.7-24-24V120 96zM512 224c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V240c0-8.8-7.2-16-16-16z"]},YA={prefix:"fas",iconName:"hockey-puck",icon:[512,512,[],"f453","M256 256C114.6 256 0 213 0 160s114.6-96 256-96s256 43 256 96s-114.6 96-256 96zm192.3 1.8c24.7-9.3 46.9-21 63.7-35.6V352c0 53-114.6 96-256 96S0 405 0 352V222.3c16.8 14.6 39 26.3 63.7 35.6C114.5 276.9 182.5 288 256 288s141.5-11.1 192.3-30.2z"]},JA={prefix:"fas",iconName:"table",icon:[512,512,[],"f0ce","M64 256V160H224v96H64zm0 64H224v96H64V320zm224 96V320H448v96H288zM448 256H288V160H448v96zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64z"]},QA={prefix:"fas",iconName:"magnifying-glass-arrow-right",icon:[512,512,[],"e521","M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM241 119c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l31 31H120c-13.3 0-24 10.7-24 24s10.7 24 24 24H238.1l-31 31c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l72-72c9.4-9.4 9.4-24.6 0-33.9l-72-72z"]},Nl={prefix:"fas",iconName:"tachograph-digital",icon:[640,512,["digital-tachograph"],"f566","M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H576c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zm32 64H320c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32zM64 368c0-8.8 7.2-16 16-16H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm320 0c0-8.8 7.2-16 16-16H560c8.8 0 16 7.2 16 16s-7.2 16-16 16H400c-8.8 0-16-7.2-16-16zM80 320c-8.8 0-16-7.2-16-16s7.2-16 16-16s16 7.2 16 16s-7.2 16-16 16zm80-16c0 8.8-7.2 16-16 16s-16-7.2-16-16s7.2-16 16-16s16 7.2 16 16zm48 16c-8.8 0-16-7.2-16-16s7.2-16 16-16s16 7.2 16 16s-7.2 16-16 16zm80-16c0 8.8-7.2 16-16 16s-16-7.2-16-16s7.2-16 16-16s16 7.2 16 16zm48 16c-8.8 0-16-7.2-16-16s7.2-16 16-16s16 7.2 16 16s-7.2 16-16 16z"]},ZA=Nl,c_={prefix:"fas",iconName:"users-slash",icon:[640,512,[],"e073","M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L440.6 320H618.7c11.8 0 21.3-9.6 21.3-21.3C640 239.8 592.2 192 533.3 192H490.7c-15.9 0-31 3.5-44.6 9.7c1.3 7.2 1.9 14.7 1.9 22.3c0 30.2-10.5 58-28 79.9l-25.2-19.7C408.1 267.7 416 246.8 416 224c0-53-43-96-96-96c-31.1 0-58.7 14.8-76.3 37.7l-40.6-31.8c13-14.2 20.9-33.1 20.9-53.9c0-44.2-35.8-80-80-80C116.3 0 91.9 14.1 77.5 35.5L38.8 5.1zM106.7 192C47.8 192 0 239.8 0 298.7C0 310.4 9.6 320 21.3 320H234.7c.2 0 .4 0 .7 0c-20.6-18.2-35.2-42.8-40.8-70.8L121.8 192H106.7zM261.3 352C187.7 352 128 411.7 128 485.3c0 14.7 11.9 26.7 26.7 26.7H485.3c10.5 0 19.5-6 23.9-14.8L324.9 352H261.3zM512 160c44.2 0 80-35.8 80-80s-35.8-80-80-80s-80 35.8-80 80s35.8 80 80 80z"]},e_={prefix:"fas",iconName:"clover",icon:[448,512,[],"e139","M173.3 32C139.4 32 112 59.4 112 93.3v4.9c0 12 3.3 23.7 9.4 34l18.8 31.3c1.1 1.8 1.2 3.1 1 4.2c-.2 1.2-.8 2.5-2 3.6s-2.4 1.8-3.6 2c-1 .2-2.4 .1-4.2-1l-31.3-18.8c-10.3-6.2-22-9.4-34-9.4H61.3C27.4 144 0 171.4 0 205.3c0 16.2 6.5 31.8 17.9 43.3l1.2 1.2c3.4 3.4 3.4 9 0 12.4l-1.2 1.2C6.5 274.9 0 290.5 0 306.7C0 340.6 27.4 368 61.3 368h4.9c12 0 23.7-3.3 34-9.4l31.3-18.8c1.8-1.1 3.1-1.2 4.2-1c1.2 .2 2.5 .8 3.6 2s1.8 2.4 2 3.6c.2 1 .1 2.4-1 4.2l-18.8 31.3c-6.2 10.3-9.4 22-9.4 34v4.9c0 33.8 27.4 61.3 61.3 61.3c16.2 0 31.8-6.5 43.3-17.9l1.2-1.2c3.4-3.4 9-3.4 12.4 0l1.2 1.2c11.5 11.5 27.1 17.9 43.3 17.9c33.8 0 61.3-27.4 61.3-61.3v-4.9c0-12-3.3-23.7-9.4-34l-18.8-31.3c-1.1-1.8-1.2-3.1-1-4.2c.2-1.2 .8-2.5 2-3.6s2.4-1.8 3.6-2c1-.2 2.4-.1 4.2 1l31.3 18.8c10.3 6.2 22 9.4 34 9.4h4.9c33.8 0 61.3-27.4 61.3-61.3c0-16.2-6.5-31.8-17.9-43.3l-1.2-1.2c-3.4-3.4-3.4-9 0-12.4l1.2-1.2c11.5-11.5 17.9-27.1 17.9-43.3c0-33.8-27.4-61.3-61.3-61.3h-4.9c-12 0-23.7 3.3-34 9.4l-31.3 18.8c-1.8 1.1-3.1 1.2-4.2 1c-1.2-.2-2.5-.8-3.6-2s-1.8-2.4-2-3.6c-.2-1-.1-2.4 1-4.2l18.8-31.3c6.2-10.3 9.4-22 9.4-34V93.3C336 59.4 308.6 32 274.7 32c-16.2 0-31.8 6.5-43.3 17.9l-1.2 1.2c-3.4 3.4-9 3.4-12.4 0l-1.2-1.2C205.1 38.5 189.5 32 173.3 32z"]},Al={prefix:"fas",iconName:"reply",icon:[512,512,[61714,"mail-reply"],"f3e5","M205 34.8c11.5 5.1 19 16.6 19 29.2v64H336c97.2 0 176 78.8 176 176c0 113.3-81.5 163.9-100.2 174.1c-2.5 1.4-5.3 1.9-8.1 1.9c-10.9 0-19.7-8.9-19.7-19.7c0-7.5 4.3-14.4 9.8-19.5c9.4-8.8 22.2-26.4 22.2-56.7c0-53-43-96-96-96H224v64c0 12.6-7.4 24.1-19 29.2s-25 3-34.4-5.4l-160-144C3.9 225.7 0 217.1 0 208s3.9-17.7 10.6-23.8l160-144c9.4-8.5 22.9-10.6 34.4-5.4z"]},r_=Al,a_={prefix:"fas",iconName:"star-and-crescent",icon:[576,512,[9770],"f699","M32 256C32 114.6 146.6 0 288 0c33 0 64.6 6.3 93.6 17.7c7.4 2.9 11.5 10.7 9.8 18.4s-8.8 13-16.7 12.4c-4.8-.3-9.7-.5-14.6-.5c-114.9 0-208 93.1-208 208s93.1 208 208 208c4.9 0 9.8-.2 14.6-.5c7.9-.5 15 4.7 16.7 12.4s-2.4 15.5-9.8 18.4C352.6 505.7 321 512 288 512C146.6 512 32 397.4 32 256zM407.4 137.4c3.5-7.1 13.7-7.1 17.2 0l31.5 63.8c1.4 2.8 4.1 4.8 7.2 5.3l70.4 10.2c7.9 1.1 11 10.8 5.3 16.4l-50.9 49.6c-2.3 2.2-3.3 5.4-2.8 8.5l12 70.1c1.3 7.8-6.9 13.8-13.9 10.1l-63-33.1c-2.8-1.5-6.1-1.5-8.9 0l-63 33.1c-7 3.7-15.3-2.3-13.9-10.1l12-70.1c.5-3.1-.5-6.3-2.8-8.5L293 233.1c-5.7-5.6-2.6-15.2 5.3-16.4l70.4-10.2c3.1-.5 5.8-2.4 7.2-5.3l31.5-63.8z"]},n_={prefix:"fas",iconName:"house-fire",icon:[640,512,[],"e50c","M288 350.1l0 1.9H256c-17.7 0-32 14.3-32 32v64 24c0 22.1-17.9 40-40 40H160 128.1c-1.5 0-3-.1-4.5-.2c-1.2 .1-2.4 .2-3.6 .2H104c-22.1 0-40-17.9-40-40V360c0-.9 0-1.9 .1-2.8V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L447.3 128.1c-12.3-1-25 3-34.8 11.7c-35.4 31.6-65.6 67.7-87.3 102.8C304.3 276.5 288 314.9 288 350.1zM453.5 163.8c19.7 17.8 38.2 37 55.5 57.7c7.9-9.9 16.8-20.7 26.5-29.5c5.6-5.1 14.4-5.1 20 0c24.7 22.7 45.6 52.7 60.4 81.1c14.5 28 24.2 56.7 24.2 76.9C640 437.9 568.7 512 480 512c-89.7 0-160-74.2-160-161.9c0-26.4 12.7-58.6 32.4-90.6c20-32.4 48.1-66.1 81.4-95.8c5.6-5 14.2-5 19.8 0zM530 433c30-21 38-63 20-96c-2-4-4-8-7-12l-36 42s-58-74-62-79c-30 37-45 58-45 82c0 49 36 78 81 78c18 0 34-5 49-15z"]},_l={prefix:"fas",iconName:"square-minus",icon:[448,512,[61767,"minus-square"],"f146","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm88 200H296c13.3 0 24 10.7 24 24s-10.7 24-24 24H152c-13.3 0-24-10.7-24-24s10.7-24 24-24z"]},t_=_l,s_={prefix:"fas",iconName:"helicopter",icon:[640,512,[128641],"f533","M128 32c0-17.7 14.3-32 32-32H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H384v64h32c88.4 0 160 71.6 160 160v64c0 17.7-14.3 32-32 32H384 304c-10.1 0-19.6-4.7-25.6-12.8L192 256 47.2 198.1c-9.5-3.8-16.7-12-19.2-22L5 83.9C2.4 73.8 10.1 64 20.5 64H48c10.1 0 19.6 4.7 25.6 12.8L112 128H320V64H160c-17.7 0-32-14.3-32-32zM384 320H512V288c0-53-43-96-96-96H384V320zM630.6 425.4c12.5 12.5 12.5 32.8 0 45.3l-3.9 3.9c-24 24-56.6 37.5-90.5 37.5H256c-17.7 0-32-14.3-32-32s14.3-32 32-32H536.2c17 0 33.3-6.7 45.3-18.7l3.9-3.9c12.5-12.5 32.8-12.5 45.3 0z"]},i_={prefix:"fas",iconName:"compass",icon:[512,512,[129517],"f14e","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zm50.7-186.9L162.4 380.6c-19.4 7.5-38.5-11.6-31-31l55.5-144.3c3.3-8.5 9.9-15.1 18.4-18.4l144.3-55.5c19.4-7.5 38.5 11.6 31 31L325.1 306.7c-3.2 8.5-9.9 15.1-18.4 18.4zM288 256c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32z"]},kl={prefix:"fas",iconName:"square-caret-down",icon:[448,512,["caret-square-down"],"f150","M384 480c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64L64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l320 0zM224 352c-6.7 0-13-2.8-17.6-7.7l-104-112c-6.5-7-8.2-17.2-4.4-25.9s12.5-14.4 22-14.4l208 0c9.5 0 18.2 5.7 22 14.4s2.1 18.9-4.4 25.9l-104 112c-4.5 4.9-10.9 7.7-17.6 7.7z"]},o_=kl,f_={prefix:"fas",iconName:"file-circle-question",icon:[576,512,[],"e4ef","M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zm48 384c-79.5 0-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144s-64.5 144-144 144zm0-48c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24zM368 321.6V328c0 8.8 7.2 16 16 16s16-7.2 16-16v-6.4c0-5.3 4.3-9.6 9.6-9.6h40.5c7.7 0 13.9 6.2 13.9 13.9c0 5.2-2.9 9.9-7.4 12.3l-32 16.8c-5.3 2.8-8.6 8.2-8.6 14.2V384c0 8.8 7.2 16 16 16s16-7.2 16-16v-5.1l23.5-12.3c15.1-7.9 24.5-23.6 24.5-40.6c0-25.4-20.6-45.9-45.9-45.9H409.6c-23 0-41.6 18.6-41.6 41.6z"]},l_={prefix:"fas",iconName:"laptop-code",icon:[640,512,[],"f5fc","M64 96c0-35.3 28.7-64 64-64H512c35.3 0 64 28.7 64 64V352H512V96H128V352H64V96zM0 403.2C0 392.6 8.6 384 19.2 384H620.8c10.6 0 19.2 8.6 19.2 19.2c0 42.4-34.4 76.8-76.8 76.8H76.8C34.4 480 0 445.6 0 403.2zM281 209l-31 31 31 31c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-48-48c-9.4-9.4-9.4-24.6 0-33.9l48-48c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9zM393 175l48 48c9.4 9.4 9.4 24.6 0 33.9l-48 48c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l31-31-31-31c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0z"]},u_={prefix:"fas",iconName:"swatchbook",icon:[512,512,[],"f5c3","M0 32C0 14.3 14.3 0 32 0H160c17.7 0 32 14.3 32 32V416c0 53-43 96-96 96s-96-43-96-96V32zM223.6 425.9c.3-3.3 .4-6.6 .4-9.9V154l75.4-75.4c12.5-12.5 32.8-12.5 45.3 0l90.5 90.5c12.5 12.5 12.5 32.8 0 45.3L223.6 425.9zM182.8 512l192-192H480c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H182.8zM128 64H64v64h64V64zM64 192v64h64V192H64zM96 440c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24z"]},h_={prefix:"fas",iconName:"prescription-bottle",icon:[384,512,[],"f485","M0 32C0 14.3 14.3 0 32 0H352c17.7 0 32 14.3 32 32V64c0 17.7-14.3 32-32 32H32C14.3 96 0 81.7 0 64V32zm32 96H352V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V416H144c8.8 0 16-7.2 16-16s-7.2-16-16-16H32V320H144c8.8 0 16-7.2 16-16s-7.2-16-16-16H32V224H144c8.8 0 16-7.2 16-16s-7.2-16-16-16H32V128z"]},Tl={prefix:"fas",iconName:"bars",icon:[448,512,["navicon"],"f0c9","M0 96C0 78.3 14.3 64 32 64H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z"]},p_=Tl,m_={prefix:"fas",iconName:"people-group",icon:[640,512,[],"e533","M184 88c0 30.9-25.1 56-56 56s-56-25.1-56-56s25.1-56 56-56s56 25.1 56 56zM64 245.7C54 256.9 48 271.8 48 288s6 31.1 16 42.3V245.7zm144.4-49.3C178.7 222.7 160 261.2 160 304c0 34.3 12 65.8 32 90.5V416c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V389.2C26.2 371.2 0 332.7 0 288c0-61.9 50.1-112 112-112h32c24 0 46.2 7.5 64.4 20.3zM448 416V394.5c20-24.7 32-56.2 32-90.5c0-42.8-18.7-81.3-48.4-107.7C449.8 183.5 472 176 496 176h32c61.9 0 112 50.1 112 112c0 44.7-26.2 83.2-64 101.2V416c0 17.7-14.3 32-32 32H480c-17.7 0-32-14.3-32-32zM568 88c0 30.9-25.1 56-56 56s-56-25.1-56-56s25.1-56 56-56s56 25.1 56 56zm8 157.7v84.7c10-11.3 16-26.1 16-42.3s-6-31.1-16-42.3zM320 160c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64zM240 304c0 16.2 6 31 16 42.3V261.7c-10 11.3-16 26.1-16 42.3zm144-42.3v84.7c10-11.3 16-26.1 16-42.3s-6-31.1-16-42.3zM448 304c0 44.7-26.2 83.2-64 101.2V448c0 17.7-14.3 32-32 32H288c-17.7 0-32-14.3-32-32V405.2c-37.8-18-64-56.5-64-101.2c0-61.9 50.1-112 112-112h32c61.9 0 112 50.1 112 112z"]},Pl={prefix:"fas",iconName:"hourglass-end",icon:[384,512,[8987,"hourglass-3"],"f253","M32 0C14.3 0 0 14.3 0 32S14.3 64 32 64V75c0 42.4 16.9 83.1 46.9 113.1L146.7 256 78.9 323.9C48.9 353.9 32 394.6 32 437v11c-17.7 0-32 14.3-32 32s14.3 32 32 32H64 320h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V437c0-42.4-16.9-83.1-46.9-113.1L237.3 256l67.9-67.9c30-30 46.9-70.7 46.9-113.1V64c17.7 0 32-14.3 32-32s-14.3-32-32-32H320 64 32zM96 75V64H288V75c0 25.5-10.1 49.9-28.1 67.9L192 210.7l-67.9-67.9C106.1 124.9 96 100.4 96 75z"]},v_=Pl,El={prefix:"fas",iconName:"heart-crack",icon:[512,512,[128148,"heart-broken"],"f7a9","M119.4 44.1c23.3-3.9 46.8-1.9 68.6 5.3l49.8 77.5-75.4 75.4c-1.5 1.5-2.4 3.6-2.3 5.8s1 4.2 2.6 5.7l112 104c2.9 2.7 7.4 2.9 10.5 .3s3.8-7 1.7-10.4l-60.4-98.1 90.7-75.6c2.6-2.1 3.5-5.7 2.4-8.8L296.8 61.8c28.5-16.7 62.4-23.2 95.7-17.6C461.5 55.6 512 115.2 512 185.1v5.8c0 41.5-17.2 81.2-47.6 109.5L283.7 469.1c-7.5 7-17.4 10.9-27.7 10.9s-20.2-3.9-27.7-10.9L47.6 300.4C17.2 272.1 0 232.4 0 190.9v-5.8c0-69.9 50.5-129.5 119.4-141z"]},d_=El,Ol={prefix:"fas",iconName:"square-up-right",icon:[448,512,[8599,"external-link-square-alt"],"f360","M384 32c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H384zM160 160c-6.5 0-12.3 3.9-14.8 9.9s-1.1 12.9 3.5 17.4l40 40-71 71C114 302 112 306.9 112 312s2 10 5.7 13.7l36.7 36.7c3.6 3.6 8.5 5.7 13.7 5.7s10-2 13.7-5.7l71-71 40 40c4.6 4.6 11.5 5.9 17.4 3.5s9.9-8.3 9.9-14.8V176c0-8.8-7.2-16-16-16H160z"]},H_=Ol,Rl={prefix:"fas",iconName:"face-kiss-beam",icon:[512,512,[128537,"kiss-beam"],"f597","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zm48.7-198.3c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4c-2.7 1.5-5.7 3-8.7 4.3c3.1 1.3 6 2.7 8.7 4.3c6.6 3.7 12.5 8.2 16.7 13.4c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4C274.7 443.1 257.4 448 240 448c-3.6 0-6.8-2.5-7.7-6s.6-7.2 3.8-9l0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1c-.4-.2-.7-.4-.9-.5l-.2-.1 0 0 0 0 0 0c-2.5-1.4-4.1-4.1-4.1-7s1.6-5.6 4.1-7l0 0 0 0 0 0 0 0 0 0 .2-.1 .3-.2 .6-.4c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1l-.4-.3-.5-.3-.2-.1 0 0 0 0 0 0c-3.2-1.8-4.7-5.5-3.8-9s4.1-6 7.7-6c17.4 0 34.7 4.9 47.9 12.3c6.6 3.7 12.5 8.2 16.7 13.4zm-87.1-84.9l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z"]},z_=Rl,g_={prefix:"fas",iconName:"film",icon:[512,512,[127902],"f008","M0 96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM48 368v32c0 8.8 7.2 16 16 16H96c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16zm368-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H416zM48 240v32c0 8.8 7.2 16 16 16H96c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16zm368-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H416zM48 112v32c0 8.8 7.2 16 16 16H96c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16zM416 96c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H416zM160 128v64c0 17.7 14.3 32 32 32H320c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32zm32 160c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H320c17.7 0 32-14.3 32-32V320c0-17.7-14.3-32-32-32H192z"]},V_={prefix:"fas",iconName:"ruler-horizontal",icon:[640,512,[],"f547","M0 336c0 26.5 21.5 48 48 48l544 0c26.5 0 48-21.5 48-48l0-160c0-26.5-21.5-48-48-48l-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0c-26.5 0-48 21.5-48 48L0 336z"]},M_={prefix:"fas",iconName:"people-robbery",icon:[576,512,[],"e536","M488.2 59.1C478.1 99.6 441.7 128 400 128s-78.1-28.4-88.2-68.9L303 24.2C298.8 7.1 281.4-3.3 264.2 1S236.7 22.6 241 39.8l8.7 34.9c11 44 40.2 79.6 78.3 99.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V352h16V480c0 17.7 14.3 32 32 32s32-14.3 32-32V174.3c38.1-20 67.3-55.6 78.3-99.6L559 39.8c4.3-17.1-6.1-34.5-23.3-38.8S501.2 7.1 497 24.2l-8.7 34.9zM400 96c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zM80 96c26.5 0 48-21.5 48-48s-21.5-48-48-48S32 21.5 32 48s21.5 48 48 48zm-8 32c-35.3 0-64 28.7-64 64v96l0 .6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V352H88V480c0 17.7 14.3 32 32 32s32-14.3 32-32V252.7l13 20.5c5.9 9.2 16.1 14.9 27 14.9h48c17.7 0 32-14.3 32-32s-14.3-32-32-32H209.6l-37.4-58.9C157.6 142 132.1 128 104.7 128H72z"]},C_={prefix:"fas",iconName:"lightbulb",icon:[384,512,[128161],"f0eb","M272 384c9.6-31.9 29.5-59.1 49.2-86.2l0 0c5.2-7.1 10.4-14.2 15.4-21.4c19.8-28.5 31.4-63 31.4-100.3C368 78.8 289.2 0 192 0S16 78.8 16 176c0 37.3 11.6 71.9 31.4 100.3c5 7.2 10.2 14.3 15.4 21.4l0 0c19.8 27.1 39.7 54.4 49.2 86.2H272zM192 512c44.2 0 80-35.8 80-80V416H112v16c0 44.2 35.8 80 80 80zM112 176c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-61.9 50.1-112 112-112c8.8 0 16 7.2 16 16s-7.2 16-16 16c-44.2 0-80 35.8-80 80z"]},L_={prefix:"fas",iconName:"caret-left",icon:[256,512,[],"f0d9","M9.4 278.6c-12.5-12.5-12.5-32.8 0-45.3l128-128c9.2-9.2 22.9-11.9 34.9-6.9s19.8 16.6 19.8 29.6l0 256c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9l-128-128z"]},Fl={prefix:"fas",iconName:"circle-exclamation",icon:[512,512,["exclamation-circle"],"f06a","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zm0-384c13.3 0 24 10.7 24 24V264c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24zm32 224c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32z"]},y_=Fl,b_={prefix:"fas",iconName:"school-circle-xmark",icon:[640,512,[],"e56d","M337.8 5.4C327-1.8 313-1.8 302.2 5.4L166.3 96H48C21.5 96 0 117.5 0 144V464c0 26.5 21.5 48 48 48H320v0H256V416c0-35.3 28.7-64 64-64l.3 0h.5c3.4-37.7 18.7-72.1 42.2-99.1C350.2 260 335.6 264 320 264c-48.6 0-88-39.4-88-88s39.4-88 88-88s88 39.4 88 88c0 18.3-5.6 35.3-15.1 49.4c29-21 64.6-33.4 103.1-33.4c59.5 0 112.1 29.6 144 74.8V144c0-26.5-21.5-48-48-48H473.7L337.8 5.4zM96 192h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V208c0-8.8 7.2-16 16-16zm0 128h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zM320 128c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H336V144c0-8.8-7.2-16-16-16zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm22.6-144l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L473.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L496 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6L518.6 368z"]},Bl={prefix:"fas",iconName:"arrow-right-from-bracket",icon:[576,512,["sign-out"],"f08b","M534.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L434.7 224 224 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l210.7 0-73.4 73.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l128-128zM192 96c17.7 0 32-14.3 32-32s-14.3-32-32-32l-64 0c-53 0-96 43-96 96l0 256c0 53 43 96 96 96l64 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-64 0c-17.7 0-32-14.3-32-32l0-256c0-17.7 14.3-32 32-32l64 0z"]},x_=Bl,Dl={prefix:"fas",iconName:"circle-chevron-down",icon:[512,512,["chevron-circle-down"],"f13a","M256 0C114.6 0 0 114.6 0 256S114.6 512 256 512s256-114.6 256-256S397.4 0 256 0zM135 241c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l87 87 87-87c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L273 345c-9.4 9.4-24.6 9.4-33.9 0L135 241z"]},S_=Dl,Il={prefix:"fas",iconName:"unlock-keyhole",icon:[448,512,["unlock-alt"],"f13e","M224 64c-44.2 0-80 35.8-80 80v48H384c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V256c0-35.3 28.7-64 64-64H80V144C80 64.5 144.5 0 224 0c57.5 0 107 33.7 130.1 82.3c7.6 16 .8 35.1-15.2 42.6s-35.1 .8-42.6-15.2C283.4 82.6 255.9 64 224 64zm32 320c17.7 0 32-14.3 32-32s-14.3-32-32-32H192c-17.7 0-32 14.3-32 32s14.3 32 32 32h64z"]},w_=Il,N_={prefix:"fas",iconName:"cloud-showers-heavy",icon:[576,512,[],"f740","M128 320c-53 0-96-43-96-96c0-42.5 27.6-78.6 65.9-91.2C96.7 126.1 96 119.1 96 112C96 50.1 146.1 0 208 0c43.1 0 80.5 24.3 99.2 60c14.7-17.1 36.5-28 60.8-28c44.2 0 80 35.8 80 80c0 5.5-.6 10.8-1.6 16c.5 0 1.1 0 1.6 0c53 0 96 43 96 96s-43 96-96 96H128zm-14.5 33.9c12.2 5.2 17.8 19.3 12.6 31.5l-48 112c-5.2 12.2-19.3 17.8-31.5 12.6s-17.8-19.3-12.6-31.5l48-112c5.2-12.2 19.3-17.8 31.5-12.6zm120 0c12.2 5.2 17.8 19.3 12.6 31.5l-48 112c-5.2 12.2-19.3 17.8-31.5 12.6s-17.8-19.3-12.6-31.5l48-112c5.2-12.2 19.3-17.8 31.5-12.6zm244.6 31.5l-48 112c-5.2 12.2-19.3 17.8-31.5 12.6s-17.8-19.3-12.6-31.5l48-112c5.2-12.2 19.3-17.8 31.5-12.6s17.8 19.3 12.6 31.5zM345.5 353.9c12.2 5.2 17.8 19.3 12.6 31.5l-48 112c-5.2 12.2-19.3 17.8-31.5 12.6s-17.8-19.3-12.6-31.5l48-112c5.2-12.2 19.3-17.8 31.5-12.6z"]},Ul={prefix:"fas",iconName:"headphones-simple",icon:[512,512,["headphones-alt"],"f58f","M256 80C141.1 80 48 173.1 48 288V392c0 13.3-10.7 24-24 24s-24-10.7-24-24V288C0 146.6 114.6 32 256 32s256 114.6 256 256V392c0 13.3-10.7 24-24 24s-24-10.7-24-24V288c0-114.9-93.1-208-208-208zM80 352c0-35.3 28.7-64 64-64h16c17.7 0 32 14.3 32 32V448c0 17.7-14.3 32-32 32H144c-35.3 0-64-28.7-64-64V352zm288-64c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H352c-17.7 0-32-14.3-32-32V320c0-17.7 14.3-32 32-32h16z"]},A_=Ul,__={prefix:"fas",iconName:"sitemap",icon:[576,512,[],"f0e8","M208 80c0-26.5 21.5-48 48-48h64c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48h-8v40H464c30.9 0 56 25.1 56 56v32h8c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H464c-26.5 0-48-21.5-48-48V368c0-26.5 21.5-48 48-48h8V288c0-4.4-3.6-8-8-8H312v40h8c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H256c-26.5 0-48-21.5-48-48V368c0-26.5 21.5-48 48-48h8V280H112c-4.4 0-8 3.6-8 8v32h8c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V368c0-26.5 21.5-48 48-48h8V288c0-30.9 25.1-56 56-56H264V192h-8c-26.5 0-48-21.5-48-48V80z"]},Wl={prefix:"fas",iconName:"circle-dollar-to-slot",icon:[512,512,["donate"],"f4b9","M326.7 403.7c-22.1 8-45.9 12.3-70.7 12.3s-48.7-4.4-70.7-12.3c-.3-.1-.5-.2-.8-.3c-30-11-56.8-28.7-78.6-51.4C70 314.6 48 263.9 48 208C48 93.1 141.1 0 256 0S464 93.1 464 208c0 55.9-22 106.6-57.9 144c-1 1-2 2.1-3 3.1c-21.4 21.4-47.4 38.1-76.3 48.6zM256 91.9c-11.1 0-20.1 9-20.1 20.1v6c-5.6 1.2-10.9 2.9-15.9 5.1c-15 6.8-27.9 19.4-31.1 37.7c-1.8 10.2-.8 20 3.4 29c4.2 8.8 10.7 15 17.3 19.5c11.6 7.9 26.9 12.5 38.6 16l2.2 .7c13.9 4.2 23.4 7.4 29.3 11.7c2.5 1.8 3.4 3.2 3.8 4c.3 .8 .9 2.6 .2 6.7c-.6 3.5-2.5 6.4-8 8.8c-6.1 2.6-16 3.9-28.8 1.9c-6-1-16.7-4.6-26.2-7.9l0 0 0 0 0 0c-2.2-.7-4.3-1.5-6.4-2.1c-10.5-3.5-21.8 2.2-25.3 12.7s2.2 21.8 12.7 25.3c1.2 .4 2.7 .9 4.4 1.5c7.9 2.7 20.3 6.9 29.8 9.1V304c0 11.1 9 20.1 20.1 20.1s20.1-9 20.1-20.1v-5.5c5.4-1 10.5-2.5 15.4-4.6c15.7-6.7 28.4-19.7 31.6-38.7c1.8-10.4 1-20.3-3-29.4c-3.9-9-10.2-15.6-16.9-20.5c-12.2-8.8-28.3-13.7-40.4-17.4l-.8-.2c-14.2-4.3-23.8-7.3-29.9-11.4c-2.6-1.8-3.4-3-3.6-3.5c-.2-.3-.7-1.6-.1-5c.3-1.9 1.9-5.2 8.2-8.1c6.4-2.9 16.4-4.5 28.6-2.6c4.3 .7 17.9 3.3 21.7 4.3c10.7 2.8 21.6-3.5 24.5-14.2s-3.5-21.6-14.2-24.5c-4.4-1.2-14.4-3.2-21-4.4V112c0-11.1-9-20.1-20.1-20.1zM48 352H64c19.5 25.9 44 47.7 72.2 64H64v32H256 448V416H375.8c28.2-16.3 52.8-38.1 72.2-64h16c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V400c0-26.5 21.5-48 48-48z"]},k_=Wl,T_={prefix:"fas",iconName:"memory",icon:[576,512,[],"f538","M64 64C28.7 64 0 92.7 0 128v7.4c0 6.8 4.4 12.6 10.1 16.3C23.3 160.3 32 175.1 32 192s-8.7 31.7-21.9 40.3C4.4 236 0 241.8 0 248.6V320H576V248.6c0-6.8-4.4-12.6-10.1-16.3C552.7 223.7 544 208.9 544 192s8.7-31.7 21.9-40.3c5.7-3.7 10.1-9.5 10.1-16.3V128c0-35.3-28.7-64-64-64H64zM576 352H0v64c0 17.7 14.3 32 32 32H80V416c0-8.8 7.2-16 16-16s16 7.2 16 16v32h96V416c0-8.8 7.2-16 16-16s16 7.2 16 16v32h96V416c0-8.8 7.2-16 16-16s16 7.2 16 16v32h96V416c0-8.8 7.2-16 16-16s16 7.2 16 16v32h48c17.7 0 32-14.3 32-32V352zM192 160v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V160c0-17.7 14.3-32 32-32s32 14.3 32 32zm128 0v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V160c0-17.7 14.3-32 32-32s32 14.3 32 32zm128 0v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V160c0-17.7 14.3-32 32-32s32 14.3 32 32z"]},P_={prefix:"fas",iconName:"road-spikes",icon:[640,512,[],"e568","M64 116.8c0-15.8 20.5-22 29.3-8.9L192 256V116.8c0-15.8 20.5-22 29.3-8.9L320 256V116.8c0-15.8 20.5-22 29.3-8.9L448 256V116.8c0-15.8 20.5-22 29.3-8.9L606.8 302.2c14.2 21.3-1.1 49.7-26.6 49.7H512 448 384 320 256 192 64V116.8zM32 384H608c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32z"]},E_={prefix:"fas",iconName:"fire-burner",icon:[640,512,[],"e4f1","M293.5 3.8c19.7 17.8 38.2 37 55.5 57.7c7.9-9.9 16.8-20.7 26.5-29.5c5.6-5.1 14.4-5.1 20 0c24.7 22.7 45.6 52.7 60.4 81.1c14.5 28 24.2 58.8 24.2 79C480 280 408.7 352 320 352c-89.7 0-160-72.1-160-159.8c0-26.4 12.7-60.7 32.4-92.6c20-32.4 48.1-66.1 81.4-95.8c2.8-2.5 6.4-3.8 10-3.7c3.5 0 7 1.3 9.8 3.8zM370 273c30-21 38-63 20-96c-2-4-4-8-7-12l-36 42s-58-74-62-79c-30 37-45 58-45 82c0 49 36 78 81 78c18 0 34-5 49-15zM32 288c0-17.7 14.3-32 32-32H96c17.7 0 32 14.3 32 32s-14.3 32-32 32v64H544V320c-17.7 0-32-14.3-32-32s14.3-32 32-32h32c17.7 0 32 14.3 32 32v96c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32V288zM320 480c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm160-32c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM192 480c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z"]},O_={prefix:"fas",iconName:"flag",icon:[448,512,[127988,61725],"f024","M64 32C64 14.3 49.7 0 32 0S0 14.3 0 32V64 368 480c0 17.7 14.3 32 32 32s32-14.3 32-32V352l64.3-16.1c41.1-10.3 84.6-5.5 122.5 13.4c44.2 22.1 95.5 24.8 141.7 7.4l34.7-13c12.5-4.7 20.8-16.6 20.8-30V66.1c0-23-24.2-38-44.8-27.7l-9.6 4.8c-46.3 23.2-100.8 23.2-147.1 0c-35.1-17.6-75.4-22-113.5-12.5L64 48V32z"]},R_={prefix:"fas",iconName:"hanukiah",icon:[640,512,[128334],"f6e6","M314.2 3.3C309.1 12.1 296 36.6 296 56c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7C324.6 1.2 322.4 0 320 0s-4.6 1.2-5.8 3.3zm-288 48C21.1 60.1 8 84.6 8 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7C36.6 49.2 34.4 48 32 48s-4.6 1.2-5.8 3.3zM88 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3C101.1 60.1 88 84.6 88 104zm82.2-52.7C165.1 60.1 152 84.6 152 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3zM216 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3C229.1 60.1 216 84.6 216 104zM394.2 51.3C389.1 60.1 376 84.6 376 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3zM440 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3C453.1 60.1 440 84.6 440 104zm82.2-52.7C517.1 60.1 504 84.6 504 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3zM584 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3C597.1 60.1 584 84.6 584 104zM112 160c-8.8 0-16 7.2-16 16v96 16h32V272 176c0-8.8-7.2-16-16-16zm64 0c-8.8 0-16 7.2-16 16v96 16h32V272 176c0-8.8-7.2-16-16-16zm64 0c-8.8 0-16 7.2-16 16v96 16h32V272 176c0-8.8-7.2-16-16-16zm160 0c-8.8 0-16 7.2-16 16v96 16h32V272 176c0-8.8-7.2-16-16-16zm64 0c-8.8 0-16 7.2-16 16v96 16h32V272 176c0-8.8-7.2-16-16-16zm64 0c-8.8 0-16 7.2-16 16v96 16h32V272 176c0-8.8-7.2-16-16-16zM352 144c0-17.7-14.3-32-32-32s-32 14.3-32 32V320H96c-17.7 0-32-14.3-32-32V192c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 53 43 96 96 96H288v64H160c-17.7 0-32 14.3-32 32s14.3 32 32 32H320 480c17.7 0 32-14.3 32-32s-14.3-32-32-32H352V384H544c53 0 96-43 96-96V192c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7-14.3 32-32 32H352V144z"]},F_={prefix:"fas",iconName:"feather",icon:[512,512,[129718],"f52d","M278.5 215.6L23 471c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l57-57h68c49.7 0 97.9-14.4 139-41c11.1-7.2 5.5-23-7.8-23c-5.1 0-9.2-4.1-9.2-9.2c0-4.1 2.7-7.6 6.5-8.8l81-24.3c2.5-.8 4.8-2.1 6.7-4l22.4-22.4c10.1-10.1 2.9-27.3-11.3-27.3l-32.2 0c-5.1 0-9.2-4.1-9.2-9.2c0-4.1 2.7-7.6 6.5-8.8l112-33.6c4-1.2 7.4-3.9 9.3-7.7C506.4 207.6 512 184.1 512 160c0-41-16.3-80.3-45.3-109.3l-5.5-5.5C432.3 16.3 393 0 352 0s-80.3 16.3-109.3 45.3L139 149C91 197 64 262.1 64 330v55.3L253.6 195.8c6.2-6.2 16.4-6.2 22.6 0c5.4 5.4 6.1 13.6 2.2 19.8z"]},$l={prefix:"fas",iconName:"volume-low",icon:[448,512,[128264,"volume-down"],"f027","M301.1 34.8C312.6 40 320 51.4 320 64V448c0 12.6-7.4 24-18.9 29.2s-25 3.1-34.4-5.3L131.8 352H64c-35.3 0-64-28.7-64-64V224c0-35.3 28.7-64 64-64h67.8L266.7 40.1c9.4-8.4 22.9-10.4 34.4-5.3zM412.6 181.5C434.1 199.1 448 225.9 448 256s-13.9 56.9-35.4 74.5c-10.3 8.4-25.4 6.8-33.8-3.5s-6.8-25.4 3.5-33.8C393.1 284.4 400 271 400 256s-6.9-28.4-17.7-37.3c-10.3-8.4-11.8-23.5-3.5-33.8s23.5-11.8 33.8-3.5z"]},B_=$l,D_={prefix:"fas",iconName:"comment-slash",icon:[640,512,[],"f4b3","M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L512.9 376.7C552.2 340.2 576 292.3 576 240C576 125.1 461.4 32 320 32c-67.7 0-129.3 21.4-175.1 56.3L38.8 5.1zM64 240c0 45.1 17.7 86.8 47.7 120.9c-1.9 24.5-11.4 46.3-21.4 62.9c-5.5 9.2-11.1 16.6-15.2 21.6c-2.1 2.5-3.7 4.4-4.9 5.7c-.6 .6-1 1.1-1.3 1.4l-.3 .3 0 0 0 0 0 0 0 0c-4.6 4.6-5.9 11.4-3.4 17.4c2.5 6 8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3c22.9-10 42.4-21.9 54.3-30.6c31.8 11.5 67 17.9 104.1 17.9c37 0 72.3-6.4 104-17.9L82.9 161.3C70.7 185.6 64 212.2 64 240z"]},I_={prefix:"fas",iconName:"cloud-sun-rain",icon:[640,512,[127782],"f743","M137.9 3c-4.5-3.2-10.3-3.9-15.4-1.8s-8.8 6.7-9.7 12.2L98.7 98.7 13.4 112.8c-5.5 .9-10.1 4.6-12.2 9.7S-.2 133.4 3 137.9l50.3 70.3L3 278.5c-3.2 4.5-3.9 10.3-1.8 15.4s6.7 8.8 12.2 9.7l85.3 14.1L112.8 403c.9 5.5 4.6 10.1 9.7 12.2s10.9 1.4 15.4-1.8l55.2-39.5c-19.9-21.9-32.3-50.8-33.1-82.6c-17.6-10.2-32.2-26.1-40.6-46.3c-20.3-49 3-105.1 52-125.4c29.4-12.2 61.4-8.7 86.7 6.7c13.1-21.8 32.5-39.4 55.8-50.3L303.6 13.4c-.9-5.5-4.6-10.1-9.7-12.2S282.9-.2 278.5 3L208.2 53.3 137.9 3zM291.4 415.9c-2.5 .6-5.1 .6-7.6-.1c1.4 0 2.8 .1 4.2 .1h3.5zm-46.3-260c-17.3-12.2-40.4-15.6-61.5-6.9c-32.7 13.5-48.2 51-34.6 83.6c3.6 8.7 8.9 16.1 15.3 22.2c10.6-39.7 39.9-71.8 77.8-86.4c.8-4.3 1.8-8.4 3-12.5zM277.4 420c-11-7.4-25.9-4.4-33.3 6.7l-32 48c-7.4 11-4.4 25.9 6.7 33.3s25.9 4.4 33.3-6.7l32-48c7.4-11 4.4-25.9-6.7-33.3zm96 0c-11-7.4-25.9-4.4-33.3 6.7l-32 48c-7.4 11-4.4 25.9 6.7 33.3s25.9 4.4 33.3-6.7l32-48c7.4-11 4.4-25.9-6.7-33.3zm96 0c-11-7.4-25.9-4.4-33.3 6.7l-32 48c-7.4 11-4.4 25.9 6.7 33.3s25.9 4.4 33.3-6.7l32-48c7.4-11 4.4-25.9-6.7-33.3zm96 0c-11-7.4-25.9-4.4-33.3 6.7l-32 48c-7.4 11-4.4 25.9 6.7 33.3s25.9 4.4 33.3-6.7l32-48c7.4-11 4.4-25.9-6.7-33.3zm74.5-116.1c0-39.3-28.4-72.1-65.8-78.7c1.2-5.6 1.9-11.3 1.9-17.2c0-44.2-35.8-80-80-80c-17 0-32.8 5.3-45.8 14.4C433.3 114.6 402.8 96 368 96c-53 0-96 43-96 96l0 1.3c-45.4 7.6-80 47.1-80 94.6c0 53 43 96 96 96H559.9c44.2 0 80-35.8 80-80z"]},U_={prefix:"fas",iconName:"compress",icon:[448,512,[],"f066","M160 64c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32V64zM32 320c-17.7 0-32 14.3-32 32s14.3 32 32 32H96v64c0 17.7 14.3 32 32 32s32-14.3 32-32V352c0-17.7-14.3-32-32-32H32zM352 64c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7 14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H352V64zM320 320c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32s32-14.3 32-32V384h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H320z"]},ql={prefix:"fas",iconName:"wheat-awn",icon:[512,512,["wheat-alt"],"e2cd","M505 41c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L383 95c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l88-88zM305.5 27.3c-6.2-6.2-16.4-6.2-22.6 0L271.5 38.6c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4-30.5 30.5c-3.4-27.3-15.5-53.8-36.5-74.8l-11.3-11.3c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4-30.5 30.5c-3.4-27.3-15.5-53.8-36.5-74.8L101.8 231c-6.2-6.2-16.4-6.2-22.6 0L67.9 242.3c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4L9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l68.9-68.9 12.2 12.2c37.5 37.5 98.3 37.5 135.8 0l11.3-11.3c6.2-6.2 6.2-16.4 0-22.6l-11.3-11.3c-21.8-21.8-49.6-34.1-78.1-36.9l31.9-31.9 12.2 12.2c37.5 37.5 98.3 37.5 135.8 0l11.3-11.3c6.2-6.2 6.2-16.4 0-22.6l-11.3-11.3c-21.8-21.8-49.6-34.1-78.1-36.9l31.9-31.9 12.2 12.2c37.5 37.5 98.3 37.5 135.8 0L486.5 231c6.2-6.2 6.2-16.4 0-22.6L475.2 197c-5.2-5.2-10.6-9.8-16.4-13.9L505 137c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-59.4 59.4c-20.6-4.4-42-3.7-62.3 2.1c6.1-21.3 6.6-43.8 1.4-65.3L409 41c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L329.1 52.9c-3.7-5-7.8-9.8-12.4-14.3L305.5 27.3z"]},W_=ql,$_={prefix:"fas",iconName:"ankh",icon:[320,512,[9765],"f644","M96 128c0-35.3 28.7-64 64-64s64 28.7 64 64c0 41.6-20.7 76.6-46.6 104.1c-5.9 6.2-11.8 11.8-17.4 16.7c-5.6-4.9-11.5-10.5-17.4-16.7C116.7 204.6 96 169.6 96 128zM160 0C89.3 0 32 57.3 32 128c0 52.4 21.5 95.5 46.8 128H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96V480c0 17.7 14.3 32 32 32s32-14.3 32-32V320h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H241.2c25.4-32.5 46.8-75.6 46.8-128C288 57.3 230.7 0 160 0z"]},q_={prefix:"fas",iconName:"hands-holding-child",icon:[640,512,[],"e4fa","M320 80c-22.1 0-40-17.9-40-40s17.9-40 40-40s40 17.9 40 40s-17.9 40-40 40zm44.7 84.3L375.8 253c1.6 13.2-7.7 25.1-20.8 26.8s-25.1-7.7-26.8-20.8l-4.4-35h-7.6l-4.4 35c-1.6 13.2-13.6 22.5-26.8 20.8s-22.5-13.6-20.8-26.8l11.1-88.8L255.5 181c-10.1 8.6-25.3 7.3-33.8-2.8s-7.3-25.3 2.8-33.8l27.9-23.6C271.3 104.8 295.3 96 320 96s48.7 8.8 67.6 24.7l27.9 23.6c10.1 8.6 11.4 23.7 2.8 33.8s-23.7 11.4-33.8 2.8l-19.8-16.7zM40 64c22.1 0 40 17.9 40 40v40 80 40.2c0 17 6.7 33.3 18.7 45.3l51.1 51.1c8.3 8.3 21.3 9.6 31 3.1c12.9-8.6 14.7-26.9 3.7-37.8l-15.2-15.2-32-32c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l32 32 15.2 15.2 0 0 25.3 25.3c21 21 32.8 49.5 32.8 79.2V464c0 26.5-21.5 48-48 48H173.3c-17 0-33.3-6.7-45.3-18.7L28.1 393.4C10.1 375.4 0 351 0 325.5V224 160 104C0 81.9 17.9 64 40 64zm560 0c22.1 0 40 17.9 40 40v56 64V325.5c0 25.5-10.1 49.9-28.1 67.9L512 493.3c-12 12-28.3 18.7-45.3 18.7H400c-26.5 0-48-21.5-48-48V385.1c0-29.7 11.8-58.2 32.8-79.2l25.3-25.3 0 0 15.2-15.2 32-32c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-32 32-15.2 15.2c-11 11-9.2 29.2 3.7 37.8c9.7 6.5 22.7 5.2 31-3.1l51.1-51.1c12-12 18.7-28.3 18.7-45.3V224 144 104c0-22.1 17.9-40 40-40z"]},G_={prefix:"fas",iconName:"asterisk",icon:[384,512,[10033,61545],"2a","M192 32c17.7 0 32 14.3 32 32V199.5l111.5-66.9c15.2-9.1 34.8-4.2 43.9 11s4.2 34.8-11 43.9L254.2 256l114.3 68.6c15.2 9.1 20.1 28.7 11 43.9s-28.7 20.1-43.9 11L224 312.5V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V312.5L48.5 379.4c-15.2 9.1-34.8 4.2-43.9-11s-4.2-34.8 11-43.9L129.8 256 15.5 187.4c-15.2-9.1-20.1-28.7-11-43.9s28.7-20.1 43.9-11L160 199.5V64c0-17.7 14.3-32 32-32z"]},Gl={prefix:"fas",iconName:"square-check",icon:[448,512,[9745,9989,61510,"check-square"],"f14a","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM337 209L209 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L303 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"]},j_=Gl,K_={prefix:"fas",iconName:"peseta-sign",icon:[384,512,[],"e221","M64 32C46.3 32 32 46.3 32 64v96c-17.7 0-32 14.3-32 32s14.3 32 32 32l0 96V448c0 17.7 14.3 32 32 32s32-14.3 32-32V352h96c77.4 0 142-55 156.8-128H352c17.7 0 32-14.3 32-32s-14.3-32-32-32h-3.2C334 87 269.4 32 192 32H64zM282.5 160H96V96h96c41.8 0 77.4 26.7 90.5 64zM96 224H282.5c-13.2 37.3-48.7 64-90.5 64H96V224z"]},jl={prefix:"fas",iconName:"heading",icon:[448,512,["header"],"f1dc","M0 64C0 46.3 14.3 32 32 32H80h48c17.7 0 32 14.3 32 32s-14.3 32-32 32H112V208H336V96H320c-17.7 0-32-14.3-32-32s14.3-32 32-32h48 48c17.7 0 32 14.3 32 32s-14.3 32-32 32H400V240 416h16c17.7 0 32 14.3 32 32s-14.3 32-32 32H368 320c-17.7 0-32-14.3-32-32s14.3-32 32-32h16V272H112V416h16c17.7 0 32 14.3 32 32s-14.3 32-32 32H80 32c-17.7 0-32-14.3-32-32s14.3-32 32-32H48V240 96H32C14.3 96 0 81.7 0 64z"]},X_=jl,Y_={prefix:"fas",iconName:"ghost",icon:[384,512,[128123],"f6e2","M50.8 452.1L19.2 477.4c-2.1 1.7-4.7 2.6-7.4 2.6C5.3 480 0 474.7 0 468.2V192C0 86 86 0 192 0S384 86 384 192V468.2c0 6.5-5.3 11.8-11.8 11.8c-2.7 0-5.3-.9-7.4-2.6l-31.6-25.3c-3.3-2.7-7.5-4.1-11.8-4.1c-5.9 0-11.5 2.8-15 7.5l-37.6 50.1c-3 4-7.8 6.4-12.8 6.4s-9.8-2.4-12.8-6.4l-38.4-51.2c-3-4-7.8-6.4-12.8-6.4s-9.8 2.4-12.8 6.4l-38.4 51.2c-3 4-7.8 6.4-12.8 6.4s-9.8-2.4-12.8-6.4L77.6 455.5c-3.6-4.7-9.1-7.5-15-7.5c-4.3 0-8.4 1.5-11.7 4.1zM160 192c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zm96 32c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z"]},Kl={prefix:"fas",iconName:"list",icon:[512,512,["list-squares"],"f03a","M40 48C26.7 48 16 58.7 16 72v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V72c0-13.3-10.7-24-24-24H40zM192 64c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zM16 232v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V232c0-13.3-10.7-24-24-24H40c-13.3 0-24 10.7-24 24zM40 368c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V392c0-13.3-10.7-24-24-24H40z"]},J_=Kl,Xl={prefix:"fas",iconName:"square-phone-flip",icon:[448,512,["phone-square-alt"],"f87b","M384 32c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H384zm-90.7 96.7c-9.7-2.6-19.9 2.3-23.7 11.6l-20 48c-3.4 8.2-1 17.6 5.8 23.2L280 231.7c-16.6 35.2-45.1 63.7-80.3 80.3l-20.2-24.7c-5.6-6.8-15-9.2-23.2-5.8l-48 20c-9.3 3.9-14.2 14-11.6 23.7l12 44C111.1 378 119 384 128 384c123.7 0 224-100.3 224-224c0-9-6-16.9-14.7-19.3l-44-12z"]},Q_=Xl,Z_={prefix:"fas",iconName:"cart-plus",icon:[576,512,[],"f217","M0 24C0 10.7 10.7 0 24 0H69.5c22 0 41.5 12.8 50.6 32h411c26.3 0 45.5 25 38.6 50.4l-41 152.3c-8.5 31.4-37 53.3-69.5 53.3H170.7l5.4 28.5c2.2 11.3 12.1 19.5 23.6 19.5H488c13.3 0 24 10.7 24 24s-10.7 24-24 24H199.7c-34.6 0-64.3-24.6-70.7-58.5L77.4 54.5c-.7-3.8-4-6.5-7.9-6.5H24C10.7 48 0 37.3 0 24zM128 464a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm336-48a48 48 0 1 1 0 96 48 48 0 1 1 0-96zM252 160c0 11 9 20 20 20h44v44c0 11 9 20 20 20s20-9 20-20V180h44c11 0 20-9 20-20s-9-20-20-20H356V96c0-11-9-20-20-20s-20 9-20 20v44H272c-11 0-20 9-20 20z"]},ck={prefix:"fas",iconName:"gamepad",icon:[640,512,[],"f11b","M192 64C86 64 0 150 0 256S86 448 192 448H448c106 0 192-86 192-192s-86-192-192-192H192zM496 248c-22.1 0-40-17.9-40-40s17.9-40 40-40s40 17.9 40 40s-17.9 40-40 40zm-24 56c0 22.1-17.9 40-40 40s-40-17.9-40-40s17.9-40 40-40s40 17.9 40 40zM168 200c0-13.3 10.7-24 24-24s24 10.7 24 24v32h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H216v32c0 13.3-10.7 24-24 24s-24-10.7-24-24V280H136c-13.3 0-24-10.7-24-24s10.7-24 24-24h32V200z"]},Yl={prefix:"fas",iconName:"circle-dot",icon:[512,512,[128280,"dot-circle"],"f192","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zm0-160c-53 0-96-43-96-96s43-96 96-96s96 43 96 96s-43 96-96 96z"]},ek=Yl,Jl={prefix:"fas",iconName:"face-dizzy",icon:[512,512,["dizzy"],"f567","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zm0-96c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64zM100.7 132.7c6.2-6.2 16.4-6.2 22.6 0L160 169.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6L182.6 192l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L160 214.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L137.4 192l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6zm192 0c6.2-6.2 16.4-6.2 22.6 0L352 169.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6L374.6 192l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L352 214.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L329.4 192l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6z"]},rk=Jl,ak={prefix:"fas",iconName:"egg",icon:[384,512,[129370],"f7fb","M192 496C86 496 0 394 0 288C0 176 64 16 192 16s192 160 192 272c0 106-86 208-192 208zM154.8 134c6.5-6 7-16.1 1-22.6s-16.1-7-22.6-1c-23.9 21.8-41.1 52.7-52.3 84.2C69.7 226.1 64 259.7 64 288c0 8.8 7.2 16 16 16s16-7.2 16-16c0-24.5 5-54.4 15.1-82.8c10.1-28.5 25-54.1 43.7-71.2z"]},nk={prefix:"fas",iconName:"house-medical-circle-xmark",icon:[640,512,[],"e513","M320 368c0 59.5 29.5 112.1 74.8 144H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L522.1 193.9c-8.5-1.3-17.3-1.9-26.1-1.9c-54.7 0-103.5 24.9-135.8 64H320V208c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16v48H208c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16zM496 512c-79.5 0-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144s-64.5 144-144 144zm22.6-144l36.7-36.7c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L496 345.4l-36.7-36.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L473.4 368l-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L496 390.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L518.6 368z"]},tk={prefix:"fas",iconName:"campground",icon:[576,512,[9978],"f6bb","M377 52c11-13.8 8.8-33.9-5-45s-33.9-8.8-45 5L288 60.8 249 12c-11-13.8-31.2-16-45-5s-16 31.2-5 45l48 60L12.3 405.4C4.3 415.4 0 427.7 0 440.4V464c0 26.5 21.5 48 48 48H288 528c26.5 0 48-21.5 48-48V440.4c0-12.7-4.3-25.1-12.3-35L329 112l48-60zM288 448H168.5L288 291.7 407.5 448H288z"]},sk={prefix:"fas",iconName:"folder-plus",icon:[512,512,[],"f65e","M512 416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H181.5c17 0 33.3 6.7 45.3 18.7l26.5 26.5c12 12 28.3 18.7 45.3 18.7H448c35.3 0 64 28.7 64 64V416zM232 376c0 13.3 10.7 24 24 24s24-10.7 24-24V312h64c13.3 0 24-10.7 24-24s-10.7-24-24-24H280V200c0-13.3-10.7-24-24-24s-24 10.7-24 24v64H168c-13.3 0-24 10.7-24 24s10.7 24 24 24h64v64z"]},ya={prefix:"fas",iconName:"futbol",icon:[512,512,[9917,"futbol-ball","soccer-ball"],"f1e3","M417.3 360.1l-71.6-4.8c-5.2-.3-10.3 1.1-14.5 4.2s-7.2 7.4-8.4 12.5l-17.6 69.6C289.5 445.8 273 448 256 448s-33.5-2.2-49.2-6.4L189.2 372c-1.3-5-4.3-9.4-8.4-12.5s-9.3-4.5-14.5-4.2l-71.6 4.8c-17.6-27.2-28.5-59.2-30.4-93.6L125 228.3c4.4-2.8 7.6-7 9.2-11.9s1.4-10.2-.5-15l-26.7-66.6C128 109.2 155.3 89 186.7 76.9l55.2 46c4 3.3 9 5.1 14.1 5.1s10.2-1.8 14.1-5.1l55.2-46c31.3 12.1 58.7 32.3 79.6 57.9l-26.7 66.6c-1.9 4.8-2.1 10.1-.5 15s4.9 9.1 9.2 11.9l60.7 38.2c-1.9 34.4-12.8 66.4-30.4 93.6zM256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zm14.1-325.7c-8.4-6.1-19.8-6.1-28.2 0L194 221c-8.4 6.1-11.9 16.9-8.7 26.8l18.3 56.3c3.2 9.9 12.4 16.6 22.8 16.6h59.2c10.4 0 19.6-6.7 22.8-16.6l18.3-56.3c3.2-9.9-.3-20.7-8.7-26.8l-47.9-34.8z"]},ik=ya,ok=ya,Ql={prefix:"fas",iconName:"paintbrush",icon:[576,512,[128396,"paint-brush"],"f1fc","M371.3 367.1c27.3-3.9 51.9-19.4 67.2-42.9L600.2 74.1c12.6-19.5 9.4-45.3-7.6-61.2S549.7-4.4 531.1 9.6L294.4 187.2c-24 18-38.2 46.1-38.4 76.1L371.3 367.1zm-19.6 25.4l-116-104.4C175.9 290.3 128 339.6 128 400c0 3.9 .2 7.8 .6 11.6c1.8 17.5-10.2 36.4-27.8 36.4H96c-17.7 0-32 14.3-32 32s14.3 32 32 32H240c61.9 0 112-50.1 112-112c0-2.5-.1-5-.2-7.5z"]},fk=Ql,lk={prefix:"fas",iconName:"lock",icon:[448,512,[128274],"f023","M144 144v48H304V144c0-44.2-35.8-80-80-80s-80 35.8-80 80zM80 192V144C80 64.5 144.5 0 224 0s144 64.5 144 144v48h16c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V256c0-35.3 28.7-64 64-64H80z"]},uk={prefix:"fas",iconName:"gas-pump",icon:[512,512,[9981],"f52f","M32 64C32 28.7 60.7 0 96 0H256c35.3 0 64 28.7 64 64V256h8c48.6 0 88 39.4 88 88v32c0 13.3 10.7 24 24 24s24-10.7 24-24V222c-27.6-7.1-48-32.2-48-62V96L384 64c-8.8-8.8-8.8-23.2 0-32s23.2-8.8 32 0l77.3 77.3c12 12 18.7 28.3 18.7 45.3V168v24 32V376c0 39.8-32.2 72-72 72s-72-32.2-72-72V344c0-22.1-17.9-40-40-40h-8V448c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32V64zM96 80v96c0 8.8 7.2 16 16 16H240c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16H112c-8.8 0-16 7.2-16 16z"]},Zl={prefix:"fas",iconName:"hot-tub-person",icon:[512,512,["hot-tub"],"f593","M272 24c0-13.3-10.7-24-24-24s-24 10.7-24 24v5.2c0 34 14.4 66.4 39.7 89.2l16.4 14.8c15.2 13.7 23.8 33.1 23.8 53.5V200c0 13.3 10.7 24 24 24s24-10.7 24-24V186.8c0-34-14.4-66.4-39.7-89.2L295.8 82.8C280.7 69.1 272 49.7 272 29.2V24zM0 320v16V448c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V320c0-35.3-28.7-64-64-64H277.3c-13.8 0-27.3-4.5-38.4-12.8l-85.3-64C137 166.7 116.8 160 96 160c-53 0-96 43-96 96v64zm128 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V336c0-8.8 7.2-16 16-16s16 7.2 16 16zm80-16c8.8 0 16 7.2 16 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V336c0-8.8 7.2-16 16-16zm112 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V336c0-8.8 7.2-16 16-16s16 7.2 16 16zm80-16c8.8 0 16 7.2 16 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V336c0-8.8 7.2-16 16-16zM360 0c-13.3 0-24 10.7-24 24v5.2c0 34 14.4 66.4 39.7 89.2l16.4 14.8c15.2 13.7 23.8 33.1 23.8 53.5V200c0 13.3 10.7 24 24 24s24-10.7 24-24V186.8c0-34-14.4-66.4-39.7-89.2L407.8 82.8C392.7 69.1 384 49.7 384 29.2V24c0-13.3-10.7-24-24-24zM64 128c35.3 0 64-28.7 64-64S99.3 0 64 0S0 28.7 0 64s28.7 64 64 64z"]},hk=Zl,cu={prefix:"fas",iconName:"map-location",icon:[576,512,["map-marked"],"f59f","M302.8 312C334.9 271.9 408 174.6 408 120C408 53.7 354.3 0 288 0S168 53.7 168 120c0 54.6 73.1 151.9 105.2 192c7.7 9.6 22 9.6 29.6 0zM416 503l144.9-58c9.1-3.6 15.1-12.5 15.1-22.3V152c0-17-17.1-28.6-32.9-22.3l-116 46.4c-.5 1.2-1 2.5-1.5 3.7c-2.9 6.8-6.1 13.7-9.6 20.6V503zM15.1 187.3C6 191 0 199.8 0 209.6V480.4c0 17 17.1 28.6 32.9 22.3L160 451.8V200.4c-3.5-6.9-6.7-13.8-9.6-20.6c-5.6-13.2-10.4-27.4-12.8-41.5l-122.6 49zM384 255c-20.5 31.3-42.3 59.6-56.2 77c-20.5 25.6-59.1 25.6-79.6 0c-13.9-17.4-35.7-45.7-56.2-77V449.4l192 54.9V255z"]},pk=cu,mk={prefix:"fas",iconName:"house-flood-water",icon:[576,512,[],"e50e","M306.8 6.1C295.6-2 280.4-2 269.2 6.1l-176 128c-11.2 8.2-15.9 22.6-11.6 35.8S98.1 192 112 192h16v73c1.7 1 3.3 2 4.9 3.1c18 12.4 40.1 20.3 59.2 20.3c21.1 0 42-8.5 59.2-20.3c22.1-15.5 51.6-15.5 73.7 0c18.4 12.7 39.6 20.3 59.2 20.3c19 0 41.2-7.9 59.2-20.3c1.5-1 3-2 4.5-2.9l-.3-73.2H464c13.9 0 26.1-8.9 30.4-22.1s-.4-27.6-11.6-35.8l-176-128zM269.5 309.9C247 325.4 219.5 336 192 336c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C126.5 389.7 159 400 192 400c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.5-27.3-10.1-39.2-1.7l0 0C439.4 325.2 410.9 336 384 336c-27.5 0-55-10.6-77.5-26.1c-11.1-7.9-25.9-7.9-37 0zM384 448c-27.5 0-55-10.6-77.5-26.1c-11.1-7.9-25.9-7.9-37 0C247 437.4 219.5 448 192 448c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C126.5 501.7 159 512 192 512c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.4-27.3-10.1-39.2-1.7l0 0C439.4 437.2 410.9 448 384 448z"]},vk={prefix:"fas",iconName:"tree",icon:[448,512,[127794],"f1bb","M210.6 5.9L62 169.4c-3.9 4.2-6 9.8-6 15.5C56 197.7 66.3 208 79.1 208H104L30.6 281.4c-4.2 4.2-6.6 10-6.6 16C24 309.9 34.1 320 46.6 320H80L5.4 409.5C1.9 413.7 0 419 0 424.5c0 13 10.5 23.5 23.5 23.5H192v32c0 17.7 14.3 32 32 32s32-14.3 32-32V448H424.5c13 0 23.5-10.5 23.5-23.5c0-5.5-1.9-10.8-5.4-15L368 320h33.4c12.5 0 22.6-10.1 22.6-22.6c0-6-2.4-11.8-6.6-16L344 208h24.9c12.7 0 23.1-10.3 23.1-23.1c0-5.7-2.1-11.3-6-15.5L237.4 5.9C234 2.1 229.1 0 224 0s-10 2.1-13.4 5.9z"]},dk={prefix:"fas",iconName:"bridge-lock",icon:[640,512,[],"e4cc","M32 64c0-17.7 14.3-32 32-32H576c17.7 0 32 14.3 32 32s-14.3 32-32 32H536v64h-8c-61.9 0-112 50.1-112 112v24.6c-9.9 5.8-18.2 14.1-23.8 24.1c-17.6-20-43.4-32.7-72.2-32.7c-53 0-96 43-96 96v64c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32V384c0-53-43-96-96-96V160h72V96H64C46.3 96 32 81.7 32 64zM408 96v64h80V96H408zm-48 64V96H280v64h80zM152 96v64h80V96H152zM528 240c-17.7 0-32 14.3-32 32v48h64V272c0-17.7-14.3-32-32-32zm-80 32c0-44.2 35.8-80 80-80s80 35.8 80 80v48c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32V272z"]},Hk={prefix:"fas",iconName:"sack-dollar",icon:[512,512,[128176],"f81d","M320 96H192L144.6 24.9C137.5 14.2 145.1 0 157.9 0H354.1c12.8 0 20.4 14.2 13.3 24.9L320 96zM192 128H320c3.8 2.5 8.1 5.3 13 8.4C389.7 172.7 512 250.9 512 416c0 53-43 96-96 96H96c-53 0-96-43-96-96C0 250.9 122.3 172.7 179 136.4l0 0 0 0c4.8-3.1 9.2-5.9 13-8.4zm84.1 96c0-11.1-9-20.1-20.1-20.1s-20.1 9-20.1 20.1v6c-5.6 1.2-10.9 2.9-15.9 5.1c-15 6.8-27.9 19.4-31.1 37.7c-1.8 10.2-.8 20 3.4 29c4.2 8.8 10.7 15 17.3 19.5c11.6 7.9 26.9 12.5 38.6 16l2.2 .7c13.9 4.2 23.4 7.4 29.3 11.7c2.5 1.8 3.4 3.2 3.8 4.1c.3 .8 .9 2.6 .2 6.7c-.6 3.5-2.5 6.4-8 8.8c-6.1 2.6-16 3.9-28.8 1.9c-6-1-16.7-4.6-26.2-7.9l0 0 0 0 0 0 0 0c-2.2-.8-4.3-1.5-6.3-2.1c-10.5-3.5-21.8 2.2-25.3 12.7s2.2 21.8 12.7 25.3c1.2 .4 2.7 .9 4.4 1.5c7.9 2.7 20.3 6.9 29.8 9.1V416c0 11.1 9 20.1 20.1 20.1s20.1-9 20.1-20.1v-5.5c5.4-1 10.5-2.5 15.4-4.6c15.7-6.7 28.4-19.7 31.6-38.7c1.8-10.4 1-20.3-3-29.4c-3.9-9-10.2-15.6-16.9-20.5c-12.2-8.8-28.3-13.7-40.4-17.4l-.8-.2c-14.2-4.3-23.8-7.3-29.9-11.4c-2.6-1.8-3.4-3-3.6-3.5c-.2-.3-.7-1.6-.1-5c.3-1.9 1.9-5.2 8.2-8.1c6.4-2.9 16.4-4.5 28.6-2.6c4.3 .7 17.9 3.3 21.7 4.3c10.7 2.8 21.6-3.5 24.5-14.2s-3.5-21.6-14.2-24.5c-4.4-1.2-14.4-3.2-21-4.4V224z"]},eu={prefix:"fas",iconName:"pen-to-square",icon:[512,512,["edit"],"f044","M471.6 21.7c-21.9-21.9-57.3-21.9-79.2 0L362.3 51.7l97.9 97.9 30.1-30.1c21.9-21.9 21.9-57.3 0-79.2L471.6 21.7zm-299.2 220c-6.1 6.1-10.8 13.6-13.5 21.9l-29.6 88.8c-2.9 8.6-.6 18.1 5.8 24.6s15.9 8.7 24.6 5.8l88.8-29.6c8.2-2.8 15.7-7.4 21.9-13.5L437.7 172.3 339.7 74.3 172.4 241.7zM96 64C43 64 0 107 0 160V416c0 53 43 96 96 96H352c53 0 96-43 96-96V320c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H96z"]},zk=eu,gk={prefix:"fas",iconName:"car-side",icon:[640,512,[128663],"f5e4","M171.3 96H224v96H111.3l30.4-75.9C146.5 104 158.2 96 171.3 96zM272 192V96h81.2c9.7 0 18.9 4.4 25 12l67.2 84H272zm256.2 1L428.2 68c-18.2-22.8-45.8-36-75-36H171.3c-39.3 0-74.6 23.9-89.1 60.3L40.6 196.4C16.8 205.8 0 228.9 0 256V368c0 17.7 14.3 32 32 32H65.3c7.6 45.4 47.1 80 94.7 80s87.1-34.6 94.7-80H385.3c7.6 45.4 47.1 80 94.7 80s87.1-34.6 94.7-80H608c17.7 0 32-14.3 32-32V320c0-65.2-48.8-119-111.8-127zm-2.9 207c-6.6 18.6-24.4 32-45.3 32s-38.7-13.4-45.3-32c-1.8-5-2.7-10.4-2.7-16c0-26.5 21.5-48 48-48s48 21.5 48 48c0 5.6-1 11-2.7 16zM160 432c-20.9 0-38.7-13.4-45.3-32c-1.8-5-2.7-10.4-2.7-16c0-26.5 21.5-48 48-48s48 21.5 48 48c0 5.6-1 11-2.7 16c-6.6 18.6-24.4 32-45.3 32z"]},ru={prefix:"fas",iconName:"share-nodes",icon:[448,512,["share-alt"],"f1e0","M352 224c53 0 96-43 96-96s-43-96-96-96s-96 43-96 96c0 4 .2 8 .7 11.9l-94.1 47C145.4 170.2 121.9 160 96 160c-53 0-96 43-96 96s43 96 96 96c25.9 0 49.4-10.2 66.6-26.9l94.1 47c-.5 3.9-.7 7.8-.7 11.9c0 53 43 96 96 96s96-43 96-96s-43-96-96-96c-25.9 0-49.4 10.2-66.6 26.9l-94.1-47c.5-3.9 .7-7.8 .7-11.9s-.2-8-.7-11.9l94.1-47C302.6 213.8 326.1 224 352 224z"]},Vk=ru,Mk={prefix:"fas",iconName:"heart-circle-minus",icon:[576,512,[],"e4ff","M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176c28.3 0 55 6.7 78.7 18.5c.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5zM576 368c0-79.5-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144s144-64.5 144-144zm-64 0c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s7.2-16 16-16H496c8.8 0 16 7.2 16 16z"]},au={prefix:"fas",iconName:"hourglass-half",icon:[384,512,["hourglass-2"],"f252","M32 0C14.3 0 0 14.3 0 32S14.3 64 32 64V75c0 42.4 16.9 83.1 46.9 113.1L146.7 256 78.9 323.9C48.9 353.9 32 394.6 32 437v11c-17.7 0-32 14.3-32 32s14.3 32 32 32H64 320h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V437c0-42.4-16.9-83.1-46.9-113.1L237.3 256l67.9-67.9c30-30 46.9-70.7 46.9-113.1V64c17.7 0 32-14.3 32-32s-14.3-32-32-32H320 64 32zM96 75V64H288V75c0 19-5.6 37.4-16 53H112c-10.3-15.6-16-34-16-53zm16 309c3.5-5.3 7.6-10.3 12.1-14.9L192 301.3l67.9 67.9c4.6 4.6 8.6 9.6 12.2 14.9H112z"]},Ck=au,Lk={prefix:"fas",iconName:"microscope",icon:[512,512,[128300],"f610","M168 32c0-17.7 14.3-32 32-32h16c17.7 0 32 14.3 32 32h8c17.7 0 32 14.3 32 32V288c0 17.7-14.3 32-32 32h-8c0 17.7-14.3 32-32 32H200c-17.7 0-32-14.3-32-32h-8c-17.7 0-32-14.3-32-32V64c0-17.7 14.3-32 32-32l8 0zM32 448H320c70.7 0 128-57.3 128-128s-57.3-128-128-128V128c106 0 192 86 192 192c0 49.2-18.5 94-48.9 128H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H320 32c-17.7 0-32-14.3-32-32s14.3-32 32-32zm80-64H304c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16z"]},yk={prefix:"fas",iconName:"sink",icon:[512,512,[],"e06d","M288 96c0-17.7 14.3-32 32-32s32 14.3 32 32s14.3 32 32 32s32-14.3 32-32c0-53-43-96-96-96s-96 43-96 96V288H160V264c0-30.9-25.1-56-56-56H56c-13.3 0-24 10.7-24 24s10.7 24 24 24h48c4.4 0 8 3.6 8 8v24H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H256 480c17.7 0 32-14.3 32-32s-14.3-32-32-32H400V264c0-4.4 3.6-8 8-8h56c13.3 0 24-10.7 24-24s-10.7-24-24-24H408c-30.9 0-56 25.1-56 56v24H288V96zM480 416V384H32v32c0 53 43 96 96 96H384c53 0 96-43 96-96z"]},nu={prefix:"fas",iconName:"bag-shopping",icon:[448,512,["shopping-bag"],"f290","M160 112c0-35.3 28.7-64 64-64s64 28.7 64 64v48H160V112zm-48 48H48c-26.5 0-48 21.5-48 48V416c0 53 43 96 96 96H352c53 0 96-43 96-96V208c0-26.5-21.5-48-48-48H336V112C336 50.1 285.9 0 224 0S112 50.1 112 112v48zm24 96c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zm200-24c0 13.3-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24z"]},bk=nu,ba={prefix:"fas",iconName:"arrow-down-z-a",icon:[576,512,["sort-alpha-desc","sort-alpha-down-alt"],"f881","M183.6 469.6C177.5 476.2 169 480 160 480s-17.5-3.8-23.6-10.4l-88-96c-11.9-13-11.1-33.3 2-45.2s33.3-11.1 45.2 2L128 365.7V64c0-17.7 14.3-32 32-32s32 14.3 32 32V365.7l32.4-35.4c11.9-13 32.2-13.9 45.2-2s13.9 32.2 2 45.2l-88 96zM320 64c0-17.7 14.3-32 32-32H480c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9L429.3 160H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H352c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9L402.7 96H352c-17.7 0-32-14.3-32-32zm96 192c12.1 0 23.2 6.8 28.6 17.7l64 128 16 32c7.9 15.8 1.5 35-14.3 42.9s-35 1.5-42.9-14.3L460.2 448H371.8l-7.2 14.3c-7.9 15.8-27.1 22.2-42.9 14.3s-22.2-27.1-14.3-42.9l16-32 64-128c5.4-10.8 16.5-17.7 28.6-17.7zM395.8 400h40.4L416 359.6 395.8 400z"]},xk=ba,Sk=ba,wk={prefix:"fas",iconName:"mitten",icon:[448,512,[],"f7b5","M352 384H64L5.4 178.9C1.8 166.4 0 153.4 0 140.3C0 62.8 62.8 0 140.3 0h3.4c66 0 123.5 44.9 139.5 108.9l31.4 125.8 17.6-20.1C344.8 200.2 362.9 192 382 192h2.8c34.9 0 63.3 28.3 63.3 63.3c0 15.9-6 31.2-16.8 42.9L352 384zM32 448c0-17.7 14.3-32 32-32H352c17.7 0 32 14.3 32 32v32c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V448z"]},Nk={prefix:"fas",iconName:"person-rays",icon:[512,512,[],"e54d","M304 48c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48zM248 352V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9l-28.6 47.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l58.3 97c9.1 15.1 4.2 34.8-10.9 43.9s-34.8 4.2-43.9-10.9L328 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H248zM7 7C16.4-2.3 31.6-2.3 41 7l80 80c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L7 41C-2.3 31.6-2.3 16.4 7 7zM471 7c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-80 80c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L471 7zM7 505c-9.4-9.4-9.4-24.6 0-33.9l80-80c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L41 505c-9.4 9.4-24.6 9.4-33.9 0zm464 0l-80-80c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l80 80c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0z"]},Ak={prefix:"fas",iconName:"users",icon:[640,512,[],"f0c0","M144 160c-44.2 0-80-35.8-80-80S99.8 0 144 0s80 35.8 80 80s-35.8 80-80 80zm368 0c-44.2 0-80-35.8-80-80s35.8-80 80-80s80 35.8 80 80s-35.8 80-80 80zM0 298.7C0 239.8 47.8 192 106.7 192h42.7c15.9 0 31 3.5 44.6 9.7c-1.3 7.2-1.9 14.7-1.9 22.3c0 38.2 16.8 72.5 43.3 96c-.2 0-.4 0-.7 0H21.3C9.6 320 0 310.4 0 298.7zM405.3 320c-.2 0-.4 0-.7 0c26.6-23.5 43.3-57.8 43.3-96c0-7.6-.7-15-1.9-22.3c13.6-6.3 28.7-9.7 44.6-9.7h42.7C592.2 192 640 239.8 640 298.7c0 11.8-9.6 21.3-21.3 21.3H405.3zM416 224c0 53-43 96-96 96s-96-43-96-96s43-96 96-96s96 43 96 96zM128 485.3C128 411.7 187.7 352 261.3 352H378.7C452.3 352 512 411.7 512 485.3c0 14.7-11.9 26.7-26.7 26.7H154.7c-14.7 0-26.7-11.9-26.7-26.7z"]},_k={prefix:"fas",iconName:"eye-slash",icon:[640,512,[],"f070","M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L525.6 386.7c39.6-40.6 66.4-86.1 79.9-118.4c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C465.5 68.8 400.8 32 320 32c-68.2 0-125 26.3-169.3 60.8L38.8 5.1zM223.1 149.5C248.6 126.2 282.7 112 320 112c79.5 0 144 64.5 144 144c0 24.9-6.3 48.3-17.4 68.7L408 294.5c5.2-11.8 8-24.8 8-38.5c0-53-43-96-96-96c-2.8 0-5.6 .1-8.4 .4c5.3 9.3 8.4 20.1 8.4 31.6c0 10.2-2.4 19.8-6.6 28.3l-90.3-70.8zm223.1 298L373 389.9c-16.4 6.5-34.3 10.1-53 10.1c-79.5 0-144-64.5-144-144c0-6.9 .5-13.6 1.4-20.2L83.1 161.5C60.3 191.2 44 220.8 34.5 243.7c-3.3 7.9-3.3 16.7 0 24.6c14.9 35.7 46.2 87.7 93 131.1C174.5 443.2 239.2 480 320 480c47.8 0 89.9-12.9 126.2-32.5z"]},kk={prefix:"fas",iconName:"flask-vial",icon:[640,512,[],"e4f3","M175 389.4c-9.8 16-15 34.3-15 53.1c-10 3.5-20.8 5.5-32 5.5c-53 0-96-43-96-96V64C14.3 64 0 49.7 0 32S14.3 0 32 0H96h64 64c17.7 0 32 14.3 32 32s-14.3 32-32 32V309.9l-49 79.6zM96 64v96h64V64H96zM352 0H480h32c17.7 0 32 14.3 32 32s-14.3 32-32 32V214.9L629.7 406.2c6.7 10.9 10.3 23.5 10.3 36.4c0 38.3-31.1 69.4-69.4 69.4H261.4c-38.3 0-69.4-31.1-69.4-69.4c0-12.8 3.6-25.4 10.3-36.4L320 214.9V64c-17.7 0-32-14.3-32-32s14.3-32 32-32h32zm32 64V224c0 5.9-1.6 11.7-4.7 16.8L330.5 320h171l-48.8-79.2c-3.1-5-4.7-10.8-4.7-16.8V64H384z"]},tu={prefix:"fas",iconName:"hand",icon:[512,512,[129306,9995,"hand-paper"],"f256","M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V336c0 1.5 0 3.1 .1 4.6L67.6 283c-16-15.2-41.3-14.6-56.6 1.4s-14.6 41.3 1.4 56.6L124.8 448c43.1 41.1 100.4 64 160 64H304c97.2 0 176-78.8 176-176V128c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V32z"]},Tk=tu,Pk={prefix:"fas",iconName:"om",icon:[512,512,[128329],"f679","M379.3 4.7c-6.2-6.2-16.4-6.2-22.6 0l-16 16c-6.2 6.2-6.2 16.4 0 22.6l16 16c6.2 6.2 16.4 6.2 22.6 0l16-16c6.2-6.2 6.2-16.4 0-22.6l-16-16zM115.2 169.6c8-6 17.9-9.6 28.8-9.6c26.5 0 48 21.5 48 48s-21.5 48-48 48H109.8c-7.6 0-13.8 6.2-13.8 13.8c0 1.5 .2 2.9 .7 4.4l8 24c4.4 13.1 16.6 21.9 30.4 21.9H144h16c35.3 0 64 28.7 64 64s-28.7 64-64 64c-50.8 0-82.7-21.5-102.2-42.8c-9.9-10.8-16.6-21.6-20.9-29.7c-2.1-4-3.6-7.3-4.5-9.6c-.5-1.1-.8-2-1-2.5l-.2-.5 0-.1c-2.6-7.8-10.7-12.3-18.7-10.5C4.4 354.2-.9 361.8 .1 370L16 368C.1 370 .1 370 .1 370l0 0 0 0 0 .1 .1 .4c0 .3 .1 .8 .2 1.3c.2 1.1 .4 2.7 .8 4.6c.8 3.9 2 9.4 3.9 15.9c3.8 13 10.3 30.4 21.3 48C48.7 476.2 89.4 512 160 512c70.7 0 128-57.3 128-128c0-23.3-6.2-45.2-17.1-64h22.6c25.5 0 49.9-10.1 67.9-28.1l26.5-26.5c6-6 14.1-9.4 22.6-9.4H416c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32c-25.7 0-41.4-12.5-51.2-25.6c-5-6.7-8.4-13.4-10.5-18.6c-1.1-2.5-1.8-4.6-2.2-6c-.2-.7-.4-1.2-.5-1.5l-.1-.3 0 0c0 0 0 0 0 0c-1.9-7.3-8.6-12.4-16.2-12.1c-7.6 .3-13.9 5.9-15.1 13.4L336 368c-15.8-2.6-15.8-2.6-15.8-2.6l0 0 0 0 0 .1-.1 .3c0 .3-.1 .6-.2 1.1c-.1 .9-.3 2.1-.4 3.6c-.3 3-.6 7.3-.6 12.4c0 10.1 1.1 23.9 5.8 38.1c4.8 14.3 13.4 29.3 28.6 40.7C368.7 473.3 389.3 480 416 480c53 0 96-43 96-96V288c0-53-43-96-96-96h-5.5c-25.5 0-49.9 10.1-67.9 28.1l-26.5 26.5c-6 6-14.1 9.4-22.6 9.4H245.2c6.9-14.5 10.8-30.8 10.8-48c0-61.9-50.1-112-112-112c-25.2 0-48.5 8.3-67.2 22.4c-14.1 10.6-17 30.7-6.4 44.8s30.7 17 44.8 6.4zM280.9 66.7c-6-4-14-3.5-19.5 1.3s-7 12.7-3.7 19.2L272 80c-14.3 7.2-14.3 7.2-14.3 7.2l0 0 0 0 0 .1 .1 .2 .4 .7c.3 .6 .8 1.4 1.4 2.4c1.2 2 2.9 4.8 5.1 8.2c4.4 6.7 11.1 15.5 20 24.4C302.4 141.1 330.3 160 368 160c31.2 0 56.6-10.4 73.9-20.2c8.7-5 15.6-9.9 20.4-13.8c2.4-1.9 4.3-3.6 5.7-4.9c.7-.6 1.3-1.2 1.7-1.6l.6-.5 .2-.2 .1-.1 0 0 0 0c0 0 0 0-22.6-22.6l22.6 22.6c12.5-12.5 12.5-32.8 0-45.3c-12.4-12.4-32.6-12.5-45.1-.2c-.1 .1-.2 .2-.5 .4c-.5 .5-1.5 1.3-2.8 2.4c-2.7 2.2-6.8 5.2-12.1 8.2C399.4 90.4 384.8 96 368 96c-20.8 0-42.4-7-59.5-14.6c-8.4-3.7-15.4-7.5-20.3-10.3c-2.4-1.4-4.3-2.5-5.6-3.3c-.6-.4-1.1-.7-1.4-.9l-.3-.2 0 0 0 0 0 0z"]},Ek={prefix:"fas",iconName:"worm",icon:[448,512,[],"e599","M224 96c0-53 43-96 96-96h38.4C407.9 0 448 40.1 448 89.6V176v16V376c0 75.1-60.9 136-136 136s-136-60.9-136-136V296c0-22.1-17.9-40-40-40s-40 17.9-40 40V464c0 26.5-21.5 48-48 48s-48-21.5-48-48V296c0-75.1 60.9-136 136-136s136 60.9 136 136v80c0 22.1 17.9 40 40 40s40-17.9 40-40V192H320c-53 0-96-43-96-96zm144-8c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24z"]},Ok={prefix:"fas",iconName:"house-circle-xmark",icon:[640,512,[],"e50b","M320.7 351.7C329 262.1 404.3 192 496 192c8.9 0 17.6 .7 26.1 1.9L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32V480c0 17.7 14.3 32 32 32H192c17.7 0 32-14.3 32-32V383.7c0-17.7 14.3-32 32-32h64l.7 0zM496 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm59.3-180.7L518.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L473.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L496 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z"]},Rk={prefix:"fas",iconName:"plug",icon:[384,512,[128268],"f1e6","M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8C297 398 352 333.4 352 256V224c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z"]},Fk={prefix:"fas",iconName:"chevron-up",icon:[512,512,[],"f077","M233.4 105.4c12.5-12.5 32.8-12.5 45.3 0l192 192c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L256 173.3 86.6 342.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l192-192z"]},Bk={prefix:"fas",iconName:"hand-spock",icon:[576,512,[128406],"f259","M246.9 23.7C242.3 6.6 224.8-3.5 207.7 1.1s-27.2 22.1-22.6 39.2L238 237.8c2.5 9.2-4.5 18.2-14 18.2c-6.4 0-12-4.2-13.9-10.3L166.6 102.7c-5.1-16.9-23-26.4-39.9-21.3s-26.4 23-21.3 39.9l62.8 206.4c2.4 7.9-7.2 13.8-13.2 8.1L99.6 283c-16-15.2-41.3-14.6-56.6 1.4s-14.6 41.3 1.4 56.6L156.8 448c43.1 41.1 100.4 64 160 64h10.9 8.2c.1 0 .1-.1 .1-.1s.1-.1 .1-.1c58.3-3.5 108.6-43.2 125.3-99.7l81.2-275c5-16.9-4.7-34.7-21.6-39.8s-34.7 4.7-39.8 21.6L443.5 247.1c-1.6 5.3-6.4 8.9-12 8.9c-7.9 0-13.8-7.3-12.2-15.1l36-170.3c3.7-17.3-7.4-34.3-24.7-37.9s-34.3 7.4-37.9 24.7L355.1 235.1c-2.6 12.2-13.3 20.9-25.8 20.9c-11.9 0-22.4-8-25.4-19.5l-57-212.8z"]},Dk={prefix:"fas",iconName:"stopwatch",icon:[448,512,[9201],"f2f2","M176 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h16V98.4C92.3 113.8 16 200 16 304c0 114.9 93.1 208 208 208s208-93.1 208-208c0-41.8-12.3-80.7-33.5-113.2l24.1-24.1c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L355.7 143c-28.1-23-62.2-38.8-99.7-44.6V64h16c17.7 0 32-14.3 32-32s-14.3-32-32-32H224 176zm72 192V320c0 13.3-10.7 24-24 24s-24-10.7-24-24V192c0-13.3 10.7-24 24-24s24 10.7 24 24z"]},su={prefix:"fas",iconName:"face-kiss",icon:[512,512,[128535,"kiss"],"f596","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zm48.7-198.3c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4c-2.7 1.5-5.7 3-8.7 4.3c3.1 1.3 6 2.7 8.7 4.3c6.6 3.7 12.5 8.2 16.7 13.4c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4C274.7 443.1 257.4 448 240 448c-3.6 0-6.8-2.5-7.7-6s.6-7.2 3.8-9l0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1c-.4-.2-.7-.4-.9-.5l-.2-.1 0 0 0 0 0 0c-2.5-1.4-4.1-4.1-4.1-7s1.6-5.6 4.1-7l0 0 0 0 0 0 0 0 0 0 .2-.1 .3-.2 .6-.4c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1l-.4-.3-.5-.3-.2-.1 0 0 0 0 0 0c-3.2-1.8-4.7-5.5-3.8-9s4.1-6 7.7-6c17.4 0 34.7 4.9 47.9 12.3c6.6 3.7 12.5 8.2 16.7 13.4zM208.4 208c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm128 32c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},Ik=su,Uk={prefix:"fas",iconName:"bridge-circle-xmark",icon:[640,512,[],"e4cb","M64 32C46.3 32 32 46.3 32 64s14.3 32 32 32h40v64H32V288c53 0 96 43 96 96v64c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V384c0-53 43-96 96-96c6.3 0 12.4 .6 18.3 1.7C367.1 231.8 426.9 192 496 192c42.5 0 81.6 15.1 112 40.2V160H536V96h40c17.7 0 32-14.3 32-32s-14.3-32-32-32H64zM488 96v64H408V96h80zM360 96v64H280V96h80zM232 96v64H152V96h80zM496 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm59.3-180.7L518.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L473.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L496 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z"]},iu={prefix:"fas",iconName:"face-grin-tongue",icon:[512,512,[128539,"grin-tongue"],"f589","M0 256C0 368.9 73.1 464.7 174.5 498.8C165.3 484 160 466.6 160 448V400.7c-24-17.5-43.1-41.4-54.8-69.2c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19c12.3-3.8 24.3 6.9 19.3 18.7c-11.8 28-31.1 52-55.4 69.6V448c0 18.6-5.3 36-14.5 50.8C438.9 464.7 512 368.9 512 256C512 114.6 397.4 0 256 0S0 114.6 0 256zm176.4-16c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm192-32c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zM320 448V402.6c0-14.7-11.9-26.6-26.6-26.6h-2c-11.3 0-21.1 7.9-23.6 18.9c-2.8 12.6-20.8 12.6-23.6 0c-2.5-11.1-12.3-18.9-23.6-18.9h-2c-14.7 0-26.6 11.9-26.6 26.6V448c0 35.3 28.7 64 64 64s64-28.7 64-64z"]},Wk=iu,$k={prefix:"fas",iconName:"chess-bishop",icon:[320,512,[9821],"f43a","M128 0C110.3 0 96 14.3 96 32c0 16.1 11.9 29.4 27.4 31.7C78.4 106.8 8 190 8 288c0 47.4 30.8 72.3 56 84.7V416H256V372.7c25.2-12.5 56-37.4 56-84.7c0-37.3-10.2-72.4-25.3-104.1l-99.4 99.4c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L270.8 154.6c-23.2-38.1-51.8-69.5-74.2-90.9C212.1 61.4 224 48.1 224 32c0-17.7-14.3-32-32-32H128zM32 448c-17.7 0-32 14.3-32 32s14.3 32 32 32H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z"]},ou={prefix:"fas",iconName:"face-grin-wink",icon:[512,512,["grin-wink"],"f58c","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM388.1 312.8c12.3-3.8 24.3 6.9 19.3 18.7C382.4 390.6 324.2 432 256.3 432s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19zm-16.9-79.2c-17.6-23.5-52.8-23.5-70.4 0c-5.3 7.1-15.3 8.5-22.4 3.2s-8.5-15.3-3.2-22.4c30.4-40.5 91.2-40.5 121.6 0c5.3 7.1 3.9 17.1-3.2 22.4s-17.1 3.9-22.4-3.2zM176.4 240c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},qk=ou,oe={prefix:"fas",iconName:"ear-deaf",icon:[512,512,["deaf","deafness","hard-of-hearing"],"f2a4","M502.6 54.6l-40 40c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l40-40c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3zm-320 320l-128 128c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l128-128c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3zM240 128c-57.6 0-105.1 43.6-111.3 99.5c-1.9 17.6-17.8 30.2-35.3 28.3s-30.2-17.8-28.3-35.3C74.8 132.5 149.4 64 240 64c97.2 0 176 78.8 176 176c0 46-17.7 87.9-46.6 119.3c-12 13-17.4 24.8-17.4 34.7V400c0 61.9-50.1 112-112 112c-17.7 0-32-14.3-32-32s14.3-32 32-32c26.5 0 48-21.5 48-48v-6.1c0-32.9 17.4-59.6 34.4-78c18.4-20 29.6-46.6 29.6-75.9c0-61.9-50.1-112-112-112zm0 80c-17.7 0-32 14.3-32 32c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-44.2 35.8-80 80-80s80 35.8 80 80c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-17.7-14.3-32-32-32z"]},Gk=oe,jk=oe,Kk=oe,Xk={prefix:"fas",iconName:"road-circle-check",icon:[640,512,[],"e564","M213.2 32H288V96c0 17.7 14.3 32 32 32s32-14.3 32-32V32h74.8c27.1 0 51.3 17.1 60.3 42.6l42.7 120.6c-10.9-2.1-22.2-3.2-33.8-3.2c-59.5 0-112.1 29.6-144 74.8V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 17.7 14.3 32 32 32c2.3 0 4.6-.3 6.8-.7c-4.5 15.5-6.8 31.8-6.8 48.7c0 5.4 .2 10.7 .7 16l-.7 0c-17.7 0-32 14.3-32 32v64H86.6C56.5 480 32 455.5 32 425.4c0-6.2 1.1-12.4 3.1-18.2L152.9 74.6C162 49.1 186.1 32 213.2 32zM640 368c0 79.5-64.5 144-144 144s-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144zm-76.7-43.3c-6.2-6.2-16.4-6.2-22.6 0L480 385.4l-28.7-28.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l40 40c6.2 6.2 16.4 6.2 22.6 0l72-72c6.2-6.2 6.2-16.4 0-22.6z"]},Yk={prefix:"fas",iconName:"dice-five",icon:[448,512,[9860],"f523","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm64 160c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm32 160c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm64-64c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zM352 160c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zM320 384c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},fu={prefix:"fas",iconName:"square-rss",icon:[448,512,["rss-square"],"f143","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM96 136c0-13.3 10.7-24 24-24c137 0 248 111 248 248c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-110.5-89.5-200-200-200c-13.3 0-24-10.7-24-24zm0 96c0-13.3 10.7-24 24-24c83.9 0 152 68.1 152 152c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-57.4-46.6-104-104-104c-13.3 0-24-10.7-24-24zm64 120c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32z"]},Jk=fu,Qk={prefix:"fas",iconName:"land-mine-on",icon:[640,512,[],"e51b","M344 24V168c0 13.3-10.7 24-24 24s-24-10.7-24-24V24c0-13.3 10.7-24 24-24s24 10.7 24 24zM192 320c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32v32H192V320zm-77.3 90.5c8.1-16.3 24.8-26.5 42.9-26.5H482.3c18.2 0 34.8 10.3 42.9 26.5l27.6 55.2C563.5 487 548 512 524.2 512H115.8c-23.8 0-39.3-25-28.6-46.3l27.6-55.2zM36.3 138.3c7.5-10.9 22.5-13.6 33.4-6.1l104 72c10.9 7.5 13.6 22.5 6.1 33.4s-22.5 13.6-33.4 6.1l-104-72c-10.9-7.5-13.6-22.5-6.1-33.4zm534.1-6.1c10.9-7.5 25.8-4.8 33.4 6.1s4.8 25.8-6.1 33.4l-104 72c-10.9 7.5-25.8 4.8-33.4-6.1s-4.8-25.8 6.1-33.4l104-72z"]},Zk={prefix:"fas",iconName:"i-cursor",icon:[256,512,[],"f246","M.1 29.3C-1.4 47 11.7 62.4 29.3 63.9l8 .7C70.5 67.3 96 95 96 128.3V224H64c-17.7 0-32 14.3-32 32s14.3 32 32 32H96v95.7c0 33.3-25.5 61-58.7 63.8l-8 .7C11.7 449.6-1.4 465 .1 482.7s16.9 30.7 34.5 29.2l8-.7c34.1-2.8 64.2-18.9 85.4-42.9c21.2 24 51.2 40.1 85.4 42.9l8 .7c17.6 1.5 33.1-11.6 34.5-29.2s-11.6-33.1-29.2-34.5l-8-.7C185.5 444.7 160 417 160 383.7V288h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H160V128.3c0-33.3 25.5-61 58.7-63.8l8-.7c17.6-1.5 30.7-16.9 29.2-34.5S239-1.4 221.3 .1l-8 .7C179.2 3.6 149.2 19.7 128 43.7c-21.2-24-51.2-40-85.4-42.9l-8-.7C17-1.4 1.6 11.7 .1 29.3z"]},cT={prefix:"fas",iconName:"stamp",icon:[512,512,[],"f5bf","M312 201.8c0-17.4 9.2-33.2 19.9-47C344.5 138.5 352 118.1 352 96c0-53-43-96-96-96s-96 43-96 96c0 22.1 7.5 42.5 20.1 58.8c10.7 13.8 19.9 29.6 19.9 47c0 29.9-24.3 54.2-54.2 54.2H112C50.1 256 0 306.1 0 368c0 20.9 13.4 38.7 32 45.3V464c0 26.5 21.5 48 48 48H432c26.5 0 48-21.5 48-48V413.3c18.6-6.6 32-24.4 32-45.3c0-61.9-50.1-112-112-112H366.2c-29.9 0-54.2-24.3-54.2-54.2zM416 416v32H96V416H416z"]},eT={prefix:"fas",iconName:"stairs",icon:[576,512,[],"e289","M384 64c0-17.7 14.3-32 32-32H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H448v96c0 17.7-14.3 32-32 32H320v96c0 17.7-14.3 32-32 32H192v96c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h96V320c0-17.7 14.3-32 32-32h96V192c0-17.7 14.3-32 32-32h96V64z"]},rT={prefix:"fas",iconName:"i",icon:[320,512,[105],"49","M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96h96V416H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H192V96h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H160 32z"]},lu={prefix:"fas",iconName:"hryvnia-sign",icon:[384,512,[8372,"hryvnia"],"f6f2","M121.9 116.2C138.3 103.1 158.7 96 179.6 96H223c27.1 0 49 21.9 49 49c0 11.5-4 22.4-11.1 31H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H155.5l-50.6 28.9c-1.7 1-3.4 2-5.1 3.1H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H52.3c-2.8 9.9-4.3 20.4-4.3 31c0 62.4 50.6 113 113 113h43.4c35.5 0 70-12.1 97.7-34.3L308 441c13.8-11 16-31.2 5-45s-31.2-16-45-5l-5.9 4.7c-16.4 13.1-36.7 20.2-57.7 20.2H161c-27.1 0-49-21.9-49-49c0-11.5 4-22.4 11.1-31H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H228.5l50.6-28.9c1.7-1 3.4-2 5.1-3.1H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H331.7c2.8-10 4.3-20.4 4.3-31c0-62.4-50.6-113-113-113H179.6c-35.5 0-70 12.1-97.7 34.3L76 71c-13.8 11-16 31.2-5 45s31.2 16 45 5l5.9-4.7z"]},aT=lu,nT={prefix:"fas",iconName:"pills",icon:[576,512,[],"f484","M112 96c-26.5 0-48 21.5-48 48V256h96V144c0-26.5-21.5-48-48-48zM0 144C0 82.1 50.1 32 112 32s112 50.1 112 112V368c0 61.9-50.1 112-112 112S0 429.9 0 368V144zM554.9 399.4c-7.1 12.3-23.7 13.1-33.8 3.1L333.5 214.9c-10-10-9.3-26.7 3.1-33.8C360 167.7 387.1 160 416 160c88.4 0 160 71.6 160 160c0 28.9-7.7 56-21.1 79.4zm-59.5 59.5C472 472.3 444.9 480 416 480c-88.4 0-160-71.6-160-160c0-28.9 7.7-56 21.1-79.4c7.1-12.3 23.7-13.1 33.8-3.1L498.5 425.1c10 10 9.3 26.7-3.1 33.8z"]},uu={prefix:"fas",iconName:"face-grin-wide",icon:[512,512,[128515,"grin-alt"],"f581","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM383.8 317.8c12.3-3.7 24.3 7 19.2 18.7c-24.5 56.9-81.1 96.7-147 96.7s-122.5-39.8-147-96.7c-5.1-11.8 6.9-22.4 19.2-18.7C166.7 329.4 210.1 336 256 336s89.3-6.6 127.8-18.2zM208 192c0 35.3-14.3 64-32 64s-32-28.7-32-64s14.3-64 32-64s32 28.7 32 64zm128 64c-17.7 0-32-28.7-32-64s14.3-64 32-64s32 28.7 32 64s-14.3 64-32 64z"]},tT=uu,sT={prefix:"fas",iconName:"tooth",icon:[384,512,[129463],"f5c9","M154.1 52.1C137.3 39.1 116.7 32 95.5 32C42.7 32 0 74.7 0 127.5v6.2c0 15.8 3.7 31.3 10.7 45.5l23.5 47.1c4.5 8.9 7.6 18.4 9.4 28.2L80.4 460.2c2 11.2 11.6 19.4 22.9 19.8s21.4-7.4 24-18.4l28.9-121.3C160.2 323.7 175 312 192 312s31.8 11.7 35.8 28.3l28.9 121.3c2.6 11.1 12.7 18.8 24 18.4s20.9-8.6 22.9-19.8l36.7-205.8c1.8-9.8 4.9-19.3 9.4-28.2l23.5-47.1c7.1-14.1 10.7-29.7 10.7-45.5v-2.1c0-55-44.6-99.6-99.6-99.6c-24.1 0-47.4 8.8-65.6 24.6l-3.2 2.8 19.5 15.2c7 5.4 8.2 15.5 2.8 22.5s-15.5 8.2-22.5 2.8l-24.4-19-37-28.8z"]},iT={prefix:"fas",iconName:"v",icon:[448,512,[118],"56","M51.7 34.5c16.3-6.8 35 .9 41.8 17.2L224 364.8 354.5 51.7c6.8-16.3 25.5-24 41.8-17.2s24 25.5 17.2 41.8l-160 384c-5 11.9-16.6 19.7-29.5 19.7s-24.6-7.8-29.5-19.7l-160-384c-6.8-16.3 .9-35 17.2-41.8z"]},oT={prefix:"fas",iconName:"bangladeshi-taka-sign",icon:[384,512,[],"e2e6","M36 32.2C18.4 30.1 2.4 42.5 .2 60S10.5 93.6 28 95.8l7.9 1c16 2 28 15.6 28 31.8V160H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64V384c0 53 43 96 96 96h32c106 0 192-86 192-192V256c0-53-43-96-96-96H272c-17.7 0-32 14.3-32 32s14.3 32 32 32h16c17.7 0 32 14.3 32 32v32c0 70.7-57.3 128-128 128H160c-17.7 0-32-14.3-32-32V224h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H128V128.5c0-48.4-36.1-89.3-84.1-95.3l-7.9-1z"]},fT={prefix:"fas",iconName:"bicycle",icon:[640,512,[128690],"f206","M312 32c-13.3 0-24 10.7-24 24s10.7 24 24 24h25.7l34.6 64H222.9l-27.4-38C191 99.7 183.7 96 176 96H120c-13.3 0-24 10.7-24 24s10.7 24 24 24h43.7l22.1 30.7-26.6 53.1c-10-2.5-20.5-3.8-31.2-3.8C57.3 224 0 281.3 0 352s57.3 128 128 128c65.3 0 119.1-48.9 127-112h49c8.5 0 16.3-4.5 20.7-11.8l84.8-143.5 21.7 40.1C402.4 276.3 384 312 384 352c0 70.7 57.3 128 128 128s128-57.3 128-128s-57.3-128-128-128c-13.5 0-26.5 2.1-38.7 6L375.4 48.8C369.8 38.4 359 32 347.2 32H312zM458.6 303.7l32.3 59.7c6.3 11.7 20.9 16 32.5 9.7s16-20.9 9.7-32.5l-32.3-59.7c3.6-.6 7.4-.9 11.2-.9c39.8 0 72 32.2 72 72s-32.2 72-72 72s-72-32.2-72-72c0-18.6 7-35.5 18.6-48.3zM133.2 368h65c-7.3 32.1-36 56-70.2 56c-39.8 0-72-32.2-72-72s32.2-72 72-72c1.7 0 3.4 .1 5.1 .2l-24.2 48.5c-9 18.1 4.1 39.4 24.3 39.4zm33.7-48l50.7-101.3 72.9 101.2-.1 .1H166.8zm90.6-128H365.9L317 274.8 257.4 192z"]},fe={prefix:"fas",iconName:"staff-snake",icon:[384,512,["rod-asclepius","rod-snake","staff-aesculapius"],"e579","M222.6 43.2l-.2 4.8H288c53 0 96 43 96 96s-43 96-96 96H248V160h40c8.8 0 16-7.2 16-16s-7.2-16-16-16H248 220l-4.5 144H256c53 0 96 43 96 96s-43 96-96 96H240V384h16c8.8 0 16-7.2 16-16s-7.2-16-16-16H213l-3.1 99.5L208.5 495l0 1c-.3 8.9-7.6 16-16.5 16s-16.2-7.1-16.5-16l0-1-1-31H136c-22.1 0-40-17.9-40-40s17.9-40 40-40h36l-1-32H152c-53 0-96-43-96-96c0-47.6 34.6-87.1 80-94.7V256c0 8.8 7.2 16 16 16h16.5L164 128H136 122.6c-9 18.9-28.3 32-50.6 32H56c-30.9 0-56-25.1-56-56S25.1 48 56 48h8 8 89.5l-.1-4.8L161 32c0-.7 0-1.3 0-1.9c.5-16.6 14.1-30 31-30s30.5 13.4 31 30c0 .6 0 1.3 0 1.9l-.4 11.2zM64 112c8.8 0 16-7.2 16-16s-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16z"]},lT=fe,uT=fe,hT=fe,pT={prefix:"fas",iconName:"head-side-cough-slash",icon:[640,512,[],"e062","M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L440.3 319.8c22.3-2.1 39.7-20.8 39.7-43.7c0-10-3.4-19.6-9.6-27.4l-42-52.6c-8.3-10.3-12.8-23-15-36.1C398.2 69.3 319.2 0 224 0H201.7C157 0 115.7 14.5 82.2 39.2L38.8 5.1zM0 201.7c0 44.8 18.3 91.5 46.5 127.7C56.9 342.8 64 358.8 64 375.8V480c0 17.7 14.3 32 32 32H256c17.7 0 32-14.3 32-32h64c32.8 0 59.9-24.7 63.6-56.6l-9.4-7.4H352c-17.7 0-32-14.3-32-32c0-10.5 5.1-19.9 12.9-25.7L20.8 112.4C7.5 139.3 0 169.6 0 201.7zM632 288c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24zm-88 72c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24zm64 48c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24z"]},hu={prefix:"fas",iconName:"truck-medical",icon:[640,512,[128657,"ambulance"],"f0f9","M48 0C21.5 0 0 21.5 0 48V368c0 26.5 21.5 48 48 48H64c0 53 43 96 96 96s96-43 96-96H384c0 53 43 96 96 96s96-43 96-96h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V288 256 237.3c0-17-6.7-33.3-18.7-45.3L512 114.7c-12-12-28.3-18.7-45.3-18.7H416V48c0-26.5-21.5-48-48-48H48zM416 160h50.7L544 237.3V256H416V160zM208 416c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48zm272 48c-26.5 0-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48s-21.5 48-48 48zM112 144c0-8.8 7.2-16 16-16h48V80c0-8.8 7.2-16 16-16l32 0c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H240v48c0 8.8-7.2 16-16 16H192c-8.8 0-16-7.2-16-16V192H128c-8.8 0-16-7.2-16-16V144z"]},mT=hu,vT={prefix:"fas",iconName:"wheat-awn-circle-exclamation",icon:[640,512,[],"e598","M505 41c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L383 95c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l88-88zM305.5 27.3c-6.2-6.2-16.4-6.2-22.6 0L271.5 38.6c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4-30.5 30.5c-3.4-27.3-15.5-53.8-36.5-74.8l-11.3-11.3c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4-30.5 30.5c-3.4-27.3-15.5-53.8-36.5-74.8L101.8 231c-6.2-6.2-16.4-6.2-22.6 0L67.9 242.3c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4L9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l68.9-68.9 12.2 12.2c37.5 37.5 98.3 37.5 135.8 0l11.3-11.3c6.2-6.2 6.2-16.4 0-22.6l-11.3-11.3c-21.8-21.8-49.6-34.1-78.1-36.9l31.9-31.9 12.2 12.2c22.5 22.5 53.3 31.5 82.4 27c0-1 0-2.1 0-3.1c0-33.1 9.1-64.1 25-90.6c-15.5-8.7-32.5-13.8-49.8-15.5l31.9-31.9 12.2 12.2c6 6 12.6 11.1 19.7 15.2c27.5-34 67.3-57.5 112.6-63.8c-4.1-3.8-8.4-7.3-12.9-10.5L505 137c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-59.4 59.4c-20.6-4.4-42-3.7-62.3 2.1c6.1-21.3 6.6-43.8 1.4-65.3L409 41c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L329.1 52.9c-3.7-5-7.8-9.8-12.4-14.3L305.5 27.3zM496 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm0-48c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zm0-192c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z"]},dT={prefix:"fas",iconName:"snowman",icon:[576,512,[9731,9924],"f7d0","M373.1 140.6c-2 3.9-1.6 8.6 1.2 12c7 8.5 12.9 18.1 17.2 28.4L440 160.2V120c0-13.3 10.7-24 24-24s24 10.7 24 24v19.6l22.5-9.7c12.2-5.2 26.3 .4 31.5 12.6s-.4 26.3-12.6 31.5l-56 24-73.6 31.5c-.5 9.5-2.1 18.6-4.8 27.3c-1.2 3.8-.1 8 2.8 10.8C428.7 296.9 448 338.2 448 384c0 44.7-18.3 85-47.8 114.1c-9.9 9.7-23.7 13.9-37.5 13.9H213.3c-13.9 0-27.7-4.2-37.5-13.9C146.3 469 128 428.7 128 384c0-45.8 19.3-87.1 50.1-116.3c2.9-2.8 4-6.9 2.8-10.8c-2.7-8.7-4.3-17.9-4.8-27.3l-73.6-31.5-56-24c-12.2-5.2-17.8-19.3-12.6-31.5s19.3-17.8 31.5-12.6L88 139.6V120c0-13.3 10.7-24 24-24s24 10.7 24 24v40.2L184.6 181c4.3-10.3 10.1-19.9 17.2-28.4c2.8-3.4 3.3-8.1 1.2-12C196 127.2 192 112.1 192 96c0-53 43-96 96-96s96 43 96 96c0 16.1-4 31.2-10.9 44.6zM256 96c8.8 0 16-7.2 16-16s-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16zm48 128c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zm-16 80c8.8 0 16-7.2 16-16s-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16zm16 48c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zM320 96c8.8 0 16-7.2 16-16s-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16zm-48 24v3.2c0 3.2 .8 6.3 2.3 9l9 16.9c.9 1.7 2.7 2.8 4.7 2.8s3.8-1.1 4.7-2.8l9-16.9c1.5-2.8 2.3-5.9 2.3-9V120c0-8.8-7.2-16-16-16s-16 7.2-16 16z"]},HT={prefix:"fas",iconName:"mortar-pestle",icon:[512,512,[],"f5a7","M504.3 11.1C493.3-1.6 474.5-3.7 461 6.2L252.3 160H397.3L502.6 54.6c11.8-11.8 12.6-30.8 1.6-43.5zM32 192c-17.7 0-32 14.3-32 32s14.3 32 32 32c0 82.5 43.4 147.7 123.9 176.2c-11.1 13.9-19.4 30.3-23.9 48.1C127.6 497.4 142.3 512 160 512H352c17.7 0 32.4-14.6 28.1-31.7c-4.5-17.8-12.8-34.1-23.9-48.1C436.6 403.7 480 338.5 480 256c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z"]},zT={prefix:"fas",iconName:"road-barrier",icon:[640,512,[],"e562","M32 32C14.3 32 0 46.3 0 64V448c0 17.7 14.3 32 32 32s32-14.3 32-32V266.3L149.2 96H64V64c0-17.7-14.3-32-32-32zM405.2 96H330.8l-5.4 10.7L234.8 288h74.3l5.4-10.7L405.2 96zM362.8 288h74.3l5.4-10.7L533.2 96H458.8l-5.4 10.7L362.8 288zM202.8 96l-5.4 10.7L106.8 288h74.3l5.4-10.7L277.2 96H202.8zm288 192H576V448c0 17.7 14.3 32 32 32s32-14.3 32-32V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v53.7L490.8 288z"]},gT={prefix:"fas",iconName:"school",icon:[640,512,[127979],"f549","M337.8 5.4C327-1.8 313-1.8 302.2 5.4L166.3 96H48C21.5 96 0 117.5 0 144V464c0 26.5 21.5 48 48 48H592c26.5 0 48-21.5 48-48V144c0-26.5-21.5-48-48-48H473.7L337.8 5.4zM256 416c0-35.3 28.7-64 64-64s64 28.7 64 64v96H256V416zM96 192h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V208c0-8.8 7.2-16 16-16zm400 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H512c-8.8 0-16-7.2-16-16V208zM96 320h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zm400 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H512c-8.8 0-16-7.2-16-16V336zM232 176a88 88 0 1 1 176 0 88 88 0 1 1 -176 0zm88-48c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H336V144c0-8.8-7.2-16-16-16z"]},VT={prefix:"fas",iconName:"igloo",icon:[576,512,[],"f7ae","M320 33.8V160H48.5C100.2 82.8 188.1 32 288 32c10.8 0 21.5 .6 32 1.8zM352 160V39.1C424.9 55.7 487.2 99.8 527.5 160H352zM29.9 192H96V320H0c0-46 10.8-89.4 29.9-128zM192 320H128V192H448V320H384v32H576v80c0 26.5-21.5 48-48 48H352V352c0-35.3-28.7-64-64-64s-64 28.7-64 64V480H48c-26.5 0-48-21.5-48-48V352H192V320zm288 0V192h66.1c19.2 38.6 29.9 82 29.9 128H480z"]},MT={prefix:"fas",iconName:"joint",icon:[640,512,[],"f595","M448 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V43c0 55.2 21.9 108.1 60.9 147.1l21 21c9 9 14.1 21.2 14.1 33.9v11c0 17.7 14.3 32 32 32s32-14.3 32-32V245c0-29.7-11.8-58.2-32.8-79.2l-21-21C463.2 117.8 448 81.2 448 43V32zM576 256c0 17.7 14.3 32 32 32s32-14.3 32-32V245c0-55.2-21.9-108.1-60.9-147.1l-21-21c-9-9-14.1-21.2-14.1-33.9V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V43c0 29.7 11.8 58.2 32.8 79.2l21 21c27 27 42.2 63.6 42.2 101.8v11zM229.8 360c-4.7-2.3-10-2.7-15.2-2c-37.8 5.6-75.2 14.3-106.9 22.8C81.3 388 58.3 395.1 42 400.4c-8.2 2.7-14.7 4.9-19.2 6.5c-2.3 .8-4 1.4-5.2 1.8l-1.3 .5C6.8 412.5 0 421.4 0 432s6.8 19.5 16.3 22.7l1.3 .5c1.2 .4 3 1.1 5.2 1.8c4.5 1.6 11 3.8 19.2 6.5c16.3 5.4 39.2 12.5 65.7 19.6C160.3 497.3 228.8 512 288 512h67.3c4.1 0 6.3-5.1 3.6-8.3L256.5 380.8c-7.4-8.9-16.5-15.9-26.7-20.8zM445 512h19 51.3c4.1 0 6.3-5.1 3.6-8.3L416.5 380.8C401.3 362.5 378.8 352 355 352H336 288c-1.1 0-2.3 0-3.4 0c-4.1 0-6.2 5.1-3.5 8.3L383.5 483.2C398.7 501.5 421.2 512 445 512zm-3.9-151.7L543.5 483.2c14.6 17.5 35.9 27.9 58.6 28.7c21.1-1.1 37.9-18.6 37.9-39.9V392c0-22.1-17.9-40-40-40H444.7c-4.1 0-6.3 5.1-3.6 8.3z"]},CT={prefix:"fas",iconName:"angle-right",icon:[320,512,[8250],"f105","M278.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L210.7 256 73.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z"]},LT={prefix:"fas",iconName:"horse",icon:[576,512,[128014],"f6f0","M448 238.1V160h16l9.8 19.6c12.5 25.1 42.2 36.4 68.3 26c20.5-8.2 33.9-28 33.9-50.1V80c0-19.1-8.4-36.3-21.7-48H560c8.8 0 16-7.2 16-16s-7.2-16-16-16H480 448C377.3 0 320 57.3 320 128H224 203.2 148.8c-30.7 0-57.6 16.3-72.5 40.8C33.2 174.5 0 211.4 0 256v56c0 13.3 10.7 24 24 24s24-10.7 24-24V256c0-13.4 6.6-25.2 16.7-32.5c1.6 13 6.3 25.4 13.6 36.4l28.2 42.4c8.3 12.4 6.4 28.7-1.2 41.6c-16.5 28-20.6 62.2-10 93.9l17.5 52.4c4.4 13.1 16.6 21.9 30.4 21.9h33.7c21.8 0 37.3-21.4 30.4-42.1l-20.8-62.5c-2.1-6.4-.5-13.4 4.3-18.2l12.7-12.7c13.2-13.2 20.6-31.1 20.6-49.7c0-2.3-.1-4.6-.3-6.9l84 24c4.1 1.2 8.2 2.1 12.3 2.8V480c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V315.7c19.2-19.2 31.5-45.7 32-75.7h0v-1.9zM496 96c-8.8 0-16-7.2-16-16s7.2-16 16-16s16 7.2 16 16s-7.2 16-16 16z"]},yT={prefix:"fas",iconName:"q",icon:[512,512,[113],"51","M96 256c0 88.4 71.6 160 160 160c28.9 0 56-7.7 79.4-21.1l-72-86.4c-11.3-13.6-9.5-33.8 4.1-45.1s33.8-9.5 45.1 4.1l70.9 85.1C403.9 325.8 416 292.3 416 256c0-88.4-71.6-160-160-160S96 167.6 96 256zM376.9 444.6C342 467 300.5 480 256 480C132.3 480 32 379.7 32 256S132.3 32 256 32s224 100.3 224 224c0 56.1-20.6 107.4-54.7 146.7l47.3 56.8c11.3 13.6 9.5 33.8-4.1 45.1s-33.8 9.5-45.1-4.1l-46.6-55.9z"]},bT={prefix:"fas",iconName:"g",icon:[448,512,[103],"47","M224 96C135.6 96 64 167.6 64 256s71.6 160 160 160c77.4 0 142-55 156.8-128H256c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32c0 123.7-100.3 224-224 224S0 379.7 0 256S100.3 32 224 32c57.4 0 109.7 21.6 149.3 57c13.2 11.8 14.3 32 2.5 45.2s-32 14.3-45.2 2.5C302.3 111.4 265 96 224 96z"]},xT={prefix:"fas",iconName:"notes-medical",icon:[512,512,[],"f481","M96 352V96c0-35.3 28.7-64 64-64H416c35.3 0 64 28.7 64 64V293.5c0 17-6.7 33.3-18.7 45.3l-58.5 58.5c-12 12-28.3 18.7-45.3 18.7H160c-35.3 0-64-28.7-64-64zM272 128c-8.8 0-16 7.2-16 16v48H208c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V256h48c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16H320V144c0-8.8-7.2-16-16-16H272zm24 336c13.3 0 24 10.7 24 24s-10.7 24-24 24H136C60.9 512 0 451.1 0 376V152c0-13.3 10.7-24 24-24s24 10.7 24 24l0 224c0 48.6 39.4 88 88 88H296z"]},le={prefix:"fas",iconName:"temperature-half",icon:[320,512,[127777,"temperature-2","thermometer-2","thermometer-half"],"f2c9","M160 64c-26.5 0-48 21.5-48 48V276.5c0 17.3-7.1 31.9-15.3 42.5C86.2 332.6 80 349.5 80 368c0 44.2 35.8 80 80 80s80-35.8 80-80c0-18.5-6.2-35.4-16.7-48.9c-8.2-10.6-15.3-25.2-15.3-42.5V112c0-26.5-21.5-48-48-48zM48 112C48 50.2 98.1 0 160 0s112 50.1 112 112V276.5c0 .1 .1 .3 .2 .6c.2 .6 .8 1.6 1.7 2.8c18.9 24.4 30.1 55 30.1 88.1c0 79.5-64.5 144-144 144S16 447.5 16 368c0-33.2 11.2-63.8 30.1-88.1c.9-1.2 1.5-2.2 1.7-2.8c.1-.3 .2-.5 .2-.6V112zM208 368c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-20.9 13.4-38.7 32-45.3V200c0-8.8 7.2-16 16-16s16 7.2 16 16V322.7c18.6 6.6 32 24.4 32 45.3z"]},ST=le,wT=le,NT=le,AT={prefix:"fas",iconName:"dong-sign",icon:[384,512,[],"e169","M288 32c-17.7 0-32 14.3-32 32l-32 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v49.1c-18.8-10.9-40.7-17.1-64-17.1c-70.7 0-128 57.3-128 128s57.3 128 128 128c24.5 0 47.4-6.9 66.8-18.8c5 11.1 16.2 18.8 29.2 18.8c17.7 0 32-14.3 32-32V288 128c17.7 0 32-14.3 32-32s-14.3-32-32-32c0-17.7-14.3-32-32-32zM256 288c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zM32 448c-17.7 0-32 14.3-32 32s14.3 32 32 32H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z"]},_T={prefix:"fas",iconName:"capsules",icon:[576,512,[],"f46b","M64 144c0-26.5 21.5-48 48-48s48 21.5 48 48V256H64V144zM0 144V368c0 61.9 50.1 112 112 112s112-50.1 112-112V189.6c1.8 19.1 8.2 38 19.8 54.8L372.3 431.7c35.5 51.7 105.3 64.3 156 28.1s63-107.5 27.5-159.2L427.3 113.3C391.8 61.5 321.9 49 271.3 85.2c-28 20-44.3 50.8-47.3 83V144c0-61.9-50.1-112-112-112S0 82.1 0 144zm296.6 64.2c-16-23.3-10-55.3 11.9-71c21.2-15.1 50.5-10.3 66 12.2l67 97.6L361.6 303l-65-94.8zM491 407.7c-.8 .6-1.6 1.1-2.4 1.6l4-2.8c-.5 .4-1 .8-1.6 1.2z"]},pu={prefix:"fas",iconName:"poo-storm",icon:[448,512,["poo-bolt"],"f75a","M236.9 .2c-5.5-.7-11 1.4-14.5 5.7s-4.6 10.1-2.8 15.3c2.8 8.2 4.3 16.9 4.3 26.1c0 44.3-35.8 80.1-80 80.1c-1.4 0-2.8 .2-4 .5H128c-35.3 0-64 28.7-64 64c0 12.4 3.5 24 9.7 33.8C31.6 234.3 0 271.5 0 316c0 49.1 38.5 89.2 86.9 91.9c-1.8-2.9-3.4-6.1-4.5-9.4c-6-17.5-.5-36.9 13.6-48.5L238.2 233.6c15.6-12.8 37.9-12.7 53.5 .1s20.3 35.1 11.3 53.4l-26 53.2h16.3c18.1 0 34.3 11.7 40.3 29.2c4.5 13.1 2.6 27.3-4.6 38.4h27c50.8 0 92-41.2 92-92c0-44.5-31.6-81.7-73.7-90.2c6.1-9.8 9.7-21.4 9.7-33.8c0-35.3-28.7-64-64-64h-5.7c3.7-10.2 5.7-21.1 5.7-32.6c0-48.7-36.1-88.9-83.1-95.2zm34.2 259.2c-6-4.6-14.3-4.4-20.1 .4l-133.4 112c-5.2 4.3-7 11.4-4.7 17.7s8.3 10.5 15 10.5h54.7l-42.5 89.1c-3.2 6.8-1.3 14.9 4.7 19.5s14.3 4.4 20.1-.4l133.4-112c5.1-4.3 7-11.4 4.7-17.7s-8.3-10.5-15-10.5H233.3l42.5-89.1c3.2-6.8 1.3-14.9-4.7-19.5z"]},kT=pu,mu={prefix:"fas",iconName:"face-frown-open",icon:[512,512,[128550,"frown-open"],"f57a","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM176.4 240c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm192-32c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm-186 174.5c-12.4 5.2-26.5-4.1-21.1-16.4c16-36.6 52.4-62.1 94.8-62.1s78.8 25.6 94.8 62.1c5.4 12.3-8.7 21.6-21.1 16.4c-22.4-9.5-47.4-14.8-73.7-14.8s-51.3 5.3-73.7 14.8z"]},TT=mu,PT={prefix:"fas",iconName:"hand-point-up",icon:[384,512,[9757],"f0a6","M32 32C32 14.3 46.3 0 64 0S96 14.3 96 32V240H32V32zM224 192c0-17.7 14.3-32 32-32s32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V192zm-64-64c17.7 0 32 14.3 32 32v48c0 17.7-14.3 32-32 32s-32-14.3-32-32V160c0-17.7 14.3-32 32-32zm160 96c0-17.7 14.3-32 32-32s32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V224zm-96 88l0-.6c9.4 5.4 20.3 8.6 32 8.6c13.2 0 25.4-4 35.6-10.8c8.7 24.9 32.5 42.8 60.4 42.8c11.7 0 22.6-3.1 32-8.6V352c0 88.4-71.6 160-160 160H162.3c-42.4 0-83.1-16.9-113.1-46.9L37.5 453.5C13.5 429.5 0 396.9 0 363V336c0-35.3 28.7-64 64-64h88c22.1 0 40 17.9 40 40s-17.9 40-40 40H96c-8.8 0-16 7.2-16 16s7.2 16 16 16h56c39.8 0 72-32.2 72-72z"]},ET={prefix:"fas",iconName:"money-bill",icon:[576,512,[],"f0d6","M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zm64 320H64V320c35.3 0 64 28.7 64 64zM64 192V128h64c0 35.3-28.7 64-64 64zM448 384c0-35.3 28.7-64 64-64v64H448zm64-192c-35.3 0-64-28.7-64-64h64v64zM288 352c-53 0-96-43-96-96s43-96 96-96s96 43 96 96s-43 96-96 96z"]},OT={prefix:"fas",iconName:"bookmark",icon:[384,512,[128278,61591],"f02e","M0 48V487.7C0 501.1 10.9 512 24.3 512c5 0 9.9-1.5 14-4.4L192 400 345.7 507.6c4.1 2.9 9 4.4 14 4.4c13.4 0 24.3-10.9 24.3-24.3V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48z"]},RT={prefix:"fas",iconName:"align-justify",icon:[448,512,[],"f039","M448 64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64S14.3 96 32 96H416c17.7 0 32-14.3 32-32zm0 256c0-17.7-14.3-32-32-32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32zM0 192c0 17.7 14.3 32 32 32H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32zM448 448c0-17.7-14.3-32-32-32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32z"]},FT={prefix:"fas",iconName:"umbrella-beach",icon:[576,512,[127958],"f5ca","M346.3 271.8l-60.1-21.9L214 448H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H282.1l64.1-176.2zm121.1-.2l-3.3 9.1 67.7 24.6c18.1 6.6 38-4.2 39.6-23.4c6.5-78.5-23.9-155.5-80.8-208.5c2 8 3.2 16.3 3.4 24.8l.2 6c1.8 57-7.3 113.8-26.8 167.4zM462 99.1c-1.1-34.4-22.5-64.8-54.4-77.4c-.9-.4-1.9-.7-2.8-1.1c-33-11.7-69.8-2.4-93.1 23.8l-4 4.5C272.4 88.3 245 134.2 226.8 184l-3.3 9.1L434 269.7l3.3-9.1c18.1-49.8 26.6-102.5 24.9-155.5l-.2-6zM107.2 112.9c-11.1 15.7-2.8 36.8 15.3 43.4l71 25.8 3.3-9.1c19.5-53.6 49.1-103 87.1-145.5l4-4.5c6.2-6.9 13.1-13 20.5-18.2c-79.6 2.5-154.7 42.2-201.2 108z"]},BT={prefix:"fas",iconName:"helmet-un",icon:[512,512,[],"e503","M479.5 224C471.2 98.9 367.2 0 240 0C107.5 0 0 107.5 0 240v56.3C0 344.8 39.2 384 87.7 384H200h14.9L343.5 505.4c4.5 4.2 10.4 6.6 16.5 6.6h96c13.3 0 24-10.7 24-24s-10.7-24-24-24H369.5l-1.5-1.5V288h80 32c17.7 0 32-14.3 32-32s-14.3-32-32-32h-.5zM320 417.2l-78-73.7L274.4 288H320V417.2zM285.3 103.1l34.7 52V112c0-8.8 7.2-16 16-16s16 7.2 16 16v96c0 7.1-4.6 13.3-11.4 15.3s-14-.6-17.9-6.4l-34.7-52V208c0 8.8-7.2 16-16 16s-16-7.2-16-16V112c0-7.1 4.6-13.3 11.4-15.3s14 .6 17.9 6.4zM160 112v64c0 8.8 7.2 16 16 16s16-7.2 16-16V112c0-8.8 7.2-16 16-16s16 7.2 16 16v64c0 26.5-21.5 48-48 48s-48-21.5-48-48V112c0-8.8 7.2-16 16-16s16 7.2 16 16z"]},DT={prefix:"fas",iconName:"bullseye",icon:[512,512,[],"f140","M448 256c0-106-86-192-192-192S64 150 64 256s86 192 192 192s192-86 192-192zm64 0c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0S512 114.6 512 256zM256 336c44.2 0 80-35.8 80-80s-35.8-80-80-80s-80 35.8-80 80s35.8 80 80 80zm0 64c-79.5 0-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144s-64.5 144-144 144zm32-144c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32z"]},IT={prefix:"fas",iconName:"bacon",icon:[576,512,[129363],"f7e5","M439.2 1.2c11.2-3.2 23.2-.1 31.4 8.1L518 56.7l-26.5 7.9c-58 16.6-98.1 39.6-129.6 67.4c-31.2 27.5-53.2 59.1-75.1 90.9l-2.3 3.3C241.6 288.7 195 356.6 72.8 417.7L37.9 435.2 9.4 406.6c-7.3-7.3-10.6-17.6-9-27.8s8.1-18.9 17.3-23.5C136.1 296.2 180.9 231 223.3 169.3l2.3-3.4c21.8-31.8 44.9-64.9 77.7-93.9c33.4-29.5 75.8-53.6 135.9-70.8zM61.8 459l25.4-12.7c129.5-64.7 179.9-138.1 223.8-202l2.2-3.3c22.1-32.1 42.1-60.5 69.9-85.1c27.5-24.3 63.4-45.2 117.3-60.6l0 0 .2-.1 43.1-12.9 23 23c8 8 11.2 19.7 8.3 30.7s-11.3 19.6-22.2 22.7c-51.9 14.8-85.6 34.7-111.1 57.2c-26.1 23-45.1 49.9-67.3 82.1l-2.2 3.2C327.8 365.9 275.5 442 142.3 508.6c-12.3 6.2-27.2 3.7-36.9-6L61.8 459z"]},UT={prefix:"fas",iconName:"hand-point-down",icon:[384,512,[],"f0a7","M32 480c0 17.7 14.3 32 32 32s32-14.3 32-32V272H32V480zM224 320c0 17.7 14.3 32 32 32s32-14.3 32-32V256c0-17.7-14.3-32-32-32s-32 14.3-32 32v64zm-64 64c17.7 0 32-14.3 32-32V304c0-17.7-14.3-32-32-32s-32 14.3-32 32v48c0 17.7 14.3 32 32 32zm160-96c0 17.7 14.3 32 32 32s32-14.3 32-32V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v64zm-96-88l0 .6c9.4-5.4 20.3-8.6 32-8.6c13.2 0 25.4 4 35.6 10.8c8.7-24.9 32.5-42.8 60.4-42.8c11.7 0 22.6 3.1 32 8.6V160C384 71.6 312.4 0 224 0H162.3C119.8 0 79.1 16.9 49.1 46.9L37.5 58.5C13.5 82.5 0 115.1 0 149v27c0 35.3 28.7 64 64 64h88c22.1 0 40-17.9 40-40s-17.9-40-40-40H96c-8.8 0-16-7.2-16-16s7.2-16 16-16h56c39.8 0 72 32.2 72 72z"]},WT={prefix:"fas",iconName:"arrow-up-from-bracket",icon:[448,512,[],"e09a","M246.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 109.3V320c0 17.7 14.3 32 32 32s32-14.3 32-32V109.3l73.4 73.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-128-128zM64 352c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 53 43 96 96 96H352c53 0 96-43 96-96V352c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V352z"]},vu={prefix:"fas",iconName:"folder",icon:[512,512,[128193,128447,61716,"folder-blank"],"f07b","M64 480H448c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H298.5c-17 0-33.3-6.7-45.3-18.7L226.7 50.7c-12-12-28.3-18.7-45.3-18.7H64C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64z"]},$T=vu,du={prefix:"fas",iconName:"file-waveform",icon:[384,512,["file-medical-alt"],"f478","M64 0C28.7 0 0 28.7 0 64V288H112c6.1 0 11.6 3.4 14.3 8.8L144 332.2l49.7-99.4c2.7-5.4 8.2-8.8 14.3-8.8s11.6 3.4 14.3 8.8L249.9 288H320c8.8 0 16 7.2 16 16s-7.2 16-16 16H240c-6.1 0-11.6-3.4-14.3-8.8L208 275.8l-49.7 99.4c-2.7 5.4-8.3 8.8-14.3 8.8s-11.6-3.4-14.3-8.8L102.1 320H0V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0z"]},qT=du,GT={prefix:"fas",iconName:"radiation",icon:[512,512,[],"f7b9","M216 186.7c-23.9 13.8-40 39.7-40 69.3L32 256C14.3 256-.2 241.6 2 224.1C10.7 154 47.8 92.7 101.3 52c14.1-10.7 33.8-5.3 42.7 10l72 124.7zM256 336c14.6 0 28.2-3.9 40-10.7l72 124.8c8.8 15.3 3.7 35.1-12.6 41.9c-30.6 12.9-64.2 20-99.4 20s-68.9-7.1-99.4-20c-16.3-6.9-21.4-26.6-12.6-41.9l72-124.8c11.8 6.8 25.4 10.7 40 10.7zm224-80l-144 0c0-29.6-16.1-55.5-40-69.3L368 62c8.8-15.3 28.6-20.7 42.7-10c53.6 40.7 90.6 102 99.4 172.1c2.2 17.5-12.4 31.9-30 31.9zM256 304c-26.5 0-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48s-21.5 48-48 48z"]},jT={prefix:"fas",iconName:"chart-simple",icon:[448,512,[],"e473","M160 80c0-26.5 21.5-48 48-48h32c26.5 0 48 21.5 48 48V432c0 26.5-21.5 48-48 48H208c-26.5 0-48-21.5-48-48V80zM0 272c0-26.5 21.5-48 48-48H80c26.5 0 48 21.5 48 48V432c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V272zM368 96h32c26.5 0 48 21.5 48 48V432c0 26.5-21.5 48-48 48H368c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48z"]},KT={prefix:"fas",iconName:"mars-stroke",icon:[512,512,[9894],"f229","M376 0c-9.7 0-18.5 5.8-22.2 14.8s-1.7 19.3 5.2 26.2l33.4 33.4L370.3 96.4 345 71c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l25.4 25.4L307.8 159c-28.4-19.5-62.7-31-99.8-31c-97.2 0-176 78.8-176 176s78.8 176 176 176s176-78.8 176-176c0-37-11.4-71.4-31-99.8l28.6-28.6L407 201c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-25.4-25.4 22.1-22.1L471 153c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V24c0-13.3-10.7-24-24-24H376zm88 48h0v0l0 0zM320 304c0 61.9-50.1 112-112 112s-112-50.1-112-112s50.1-112 112-112s112 50.1 112 112z"]},XT={prefix:"fas",iconName:"vial",icon:[512,512,[129514],"f492","M342.6 9.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l9.4 9.4L28.1 342.6C10.1 360.6 0 385 0 410.5V416c0 53 43 96 96 96h5.5c25.5 0 49.9-10.1 67.9-28.1L448 205.3l9.4 9.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-32-32-96-96-32-32zM205.3 256L352 109.3 402.7 160l-96 96H205.3z"]},ue={prefix:"fas",iconName:"gauge",icon:[512,512,["dashboard","gauge-med","tachometer-alt-average"],"f624","M512 256c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0S512 114.6 512 256zM320 352c0-26.9-16.5-49.9-40-59.3V88c0-13.3-10.7-24-24-24s-24 10.7-24 24V292.7c-23.5 9.5-40 32.5-40 59.3c0 35.3 28.7 64 64 64s64-28.7 64-64zM144 176c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm-16 80c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zm288 32c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zM400 144c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32z"]},YT=ue,JT=ue,QT=ue,Hu={prefix:"fas",iconName:"wand-magic-sparkles",icon:[576,512,["magic-wand-sparkles"],"e2ca","M234.7 42.7L197 56.8c-3 1.1-5 4-5 7.2s2 6.1 5 7.2l37.7 14.1L248.8 123c1.1 3 4 5 7.2 5s6.1-2 7.2-5l14.1-37.7L315 71.2c3-1.1 5-4 5-7.2s-2-6.1-5-7.2L277.3 42.7 263.2 5c-1.1-3-4-5-7.2-5s-6.1 2-7.2 5L234.7 42.7zM46.1 395.4c-18.7 18.7-18.7 49.1 0 67.9l34.6 34.6c18.7 18.7 49.1 18.7 67.9 0L529.9 116.5c18.7-18.7 18.7-49.1 0-67.9L495.3 14.1c-18.7-18.7-49.1-18.7-67.9 0L46.1 395.4zM484.6 82.6l-105 105-23.3-23.3 105-105 23.3 23.3zM7.5 117.2C3 118.9 0 123.2 0 128s3 9.1 7.5 10.8L64 160l21.2 56.5c1.7 4.5 6 7.5 10.8 7.5s9.1-3 10.8-7.5L128 160l56.5-21.2c4.5-1.7 7.5-6 7.5-10.8s-3-9.1-7.5-10.8L128 96 106.8 39.5C105.1 35 100.8 32 96 32s-9.1 3-10.8 7.5L64 96 7.5 117.2zm352 256c-4.5 1.7-7.5 6-7.5 10.8s3 9.1 7.5 10.8L416 416l21.2 56.5c1.7 4.5 6 7.5 10.8 7.5s9.1-3 10.8-7.5L480 416l56.5-21.2c4.5-1.7 7.5-6 7.5-10.8s-3-9.1-7.5-10.8L480 352l-21.2-56.5c-1.7-4.5-6-7.5-10.8-7.5s-9.1 3-10.8 7.5L416 352l-56.5 21.2z"]},ZT=Hu,cP={prefix:"fas",iconName:"e",icon:[320,512,[101],"45","M32 32C14.3 32 0 46.3 0 64V256 448c0 17.7 14.3 32 32 32H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H64V288H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H64V96H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z"]},zu={prefix:"fas",iconName:"pen-clip",icon:[512,512,["pen-alt"],"f305","M453.3 19.3l39.4 39.4c25 25 25 65.5 0 90.5l-52.1 52.1 0 0-1-1 0 0-16-16-96-96-17-17 52.1-52.1c25-25 65.5-25 90.5 0zM241 114.9c-9.4-9.4-24.6-9.4-33.9 0L105 217c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L173.1 81c28.1-28.1 73.7-28.1 101.8 0L288 94.1l17 17 96 96 16 16 1 1-17 17L229.5 412.5c-48 48-109.2 80.8-175.8 94.1l-25 5c-7.9 1.6-16-.9-21.7-6.6s-8.1-13.8-6.6-21.7l5-25c13.3-66.6 46.1-127.8 94.1-175.8L254.1 128 241 114.9z"]},eP=zu,rP={prefix:"fas",iconName:"bridge-circle-exclamation",icon:[640,512,[],"e4ca","M64 32C46.3 32 32 46.3 32 64s14.3 32 32 32h40v64H32V288c53 0 96 43 96 96v64c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V384c0-53 43-96 96-96c6.3 0 12.4 .6 18.3 1.7C367.1 231.8 426.9 192 496 192c42.5 0 81.6 15.1 112 40.2V160H536V96h40c17.7 0 32-14.3 32-32s-14.3-32-32-32H64zM488 96v64H408V96h80zM360 96v64H280V96h80zM232 96v64H152V96h80zM496 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm0-48c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zm0-192c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z"]},aP={prefix:"fas",iconName:"user",icon:[448,512,[128100,62144],"f007","M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0S96 57.3 96 128s57.3 128 128 128zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c16.4 0 29.7-13.3 29.7-29.7C448 383.8 368.2 304 269.7 304H178.3z"]},nP={prefix:"fas",iconName:"school-circle-check",icon:[640,512,[],"e56b","M337.8 5.4C327-1.8 313-1.8 302.2 5.4L166.3 96H48C21.5 96 0 117.5 0 144V464c0 26.5 21.5 48 48 48H320v0H256V416c0-35.3 28.7-64 64-64l.3 0h.5c3.4-37.7 18.7-72.1 42.2-99.1C350.2 260 335.6 264 320 264c-48.6 0-88-39.4-88-88s39.4-88 88-88s88 39.4 88 88c0 18.3-5.6 35.3-15.1 49.4c29-21 64.6-33.4 103.1-33.4c59.5 0 112.1 29.6 144 74.8V144c0-26.5-21.5-48-48-48H473.7L337.8 5.4zM96 192h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V208c0-8.8 7.2-16 16-16zm0 128h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zM320 128c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H336V144c0-8.8-7.2-16-16-16zM640 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-99.3-43.3c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 385.4l60.7-60.7z"]},tP={prefix:"fas",iconName:"dumpster",icon:[576,512,[],"f793","M49.7 32c-10.5 0-19.8 6.9-22.9 16.9L.9 133c-.6 2-.9 4.1-.9 6.1C0 150.7 9.3 160 20.9 160h94L140.5 32H49.7zM272 160V32H173.1L147.5 160H272zm32 0H428.5L402.9 32H304V160zm157.1 0h94c11.5 0 20.9-9.3 20.9-20.9c0-2.1-.3-4.1-.9-6.1L549.2 48.9C546.1 38.9 536.8 32 526.3 32H435.5l25.6 128zM32 192l4 32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H44L64 448c0 17.7 14.3 32 32 32s32-14.3 32-32H448c0 17.7 14.3 32 32 32s32-14.3 32-32l20-160h12c17.7 0 32-14.3 32-32s-14.3-32-32-32h-4l4-32H32z"]},gu={prefix:"fas",iconName:"van-shuttle",icon:[640,512,[128656,"shuttle-van"],"f5b6","M64 104v88h96V96H72c-4.4 0-8 3.6-8 8zm482 88L465.1 96H384v96H546zm-226 0V96H224v96h96zM592 384H576c0 53-43 96-96 96s-96-43-96-96H256c0 53-43 96-96 96s-96-43-96-96H48c-26.5 0-48-21.5-48-48V104C0 64.2 32.2 32 72 32H192 352 465.1c18.9 0 36.8 8.3 49 22.8L625 186.5c9.7 11.5 15 26.1 15 41.2V336c0 26.5-21.5 48-48 48zm-64 0c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM160 432c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48z"]},sP=gu,iP={prefix:"fas",iconName:"building-user",icon:[640,512,[],"e4da","M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h89.9c-6.3-10.2-9.9-22.2-9.9-35.1c0-46.9 25.8-87.8 64-109.2V271.8 48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM576 272c0-44.2-35.8-80-80-80s-80 35.8-80 80s35.8 80 80 80s80-35.8 80-80zM352 477.1c0 19.3 15.6 34.9 34.9 34.9H605.1c19.3 0 34.9-15.6 34.9-34.9c0-51.4-41.7-93.1-93.1-93.1H445.1c-51.4 0-93.1 41.7-93.1 93.1z"]},Vu={prefix:"fas",iconName:"square-caret-left",icon:[448,512,["caret-square-left"],"f191","M0 416c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64L64 32C28.7 32 0 60.7 0 96L0 416zM128 256c0-6.7 2.8-13 7.7-17.6l112-104c7-6.5 17.2-8.2 25.9-4.4s14.4 12.5 14.4 22l0 208c0 9.5-5.7 18.2-14.4 22s-18.9 2.1-25.9-4.4l-112-104c-4.9-4.5-7.7-10.9-7.7-17.6z"]},oP=Vu,fP={prefix:"fas",iconName:"highlighter",icon:[576,512,[],"f591","M331 315l158.4-215L460.1 70.6 245 229 331 315zm-187 5l0 0V248.3c0-15.3 7.2-29.6 19.5-38.6L436.6 8.4C444 2.9 453 0 462.2 0c11.4 0 22.4 4.5 30.5 12.6l54.8 54.8c8.1 8.1 12.6 19 12.6 30.5c0 9.2-2.9 18.2-8.4 25.6L350.4 396.5c-9 12.3-23.4 19.5-38.6 19.5H240l-25.4 25.4c-12.5 12.5-32.8 12.5-45.3 0l-50.7-50.7c-12.5-12.5-12.5-32.8 0-45.3L144 320zM23 466.3l63-63 70.6 70.6-31 31c-4.5 4.5-10.6 7-17 7H40c-13.3 0-24-10.7-24-24v-4.7c0-6.4 2.5-12.5 7-17z"]},lP={prefix:"fas",iconName:"key",icon:[512,512,[128273],"f084","M336 352c97.2 0 176-78.8 176-176S433.2 0 336 0S160 78.8 160 176c0 18.7 2.9 36.8 8.3 53.7L7 391c-4.5 4.5-7 10.6-7 17v80c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V448h40c13.3 0 24-10.7 24-24V384h40c6.4 0 12.5-2.5 17-7l33.3-33.3c16.9 5.4 35 8.3 53.7 8.3zm40-176c-22.1 0-40-17.9-40-40s17.9-40 40-40s40 17.9 40 40s-17.9 40-40 40z"]},uP={prefix:"fas",iconName:"bullhorn",icon:[512,512,[128226,128363],"f0a1","M480 32c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9L381.7 53c-48 48-113.1 75-181 75H192 160 64c-35.3 0-64 28.7-64 64v96c0 35.3 28.7 64 64 64l0 128c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V352l8.7 0c67.9 0 133 27 181 75l43.6 43.6c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V300.4c18.6-8.8 32-32.5 32-60.4s-13.4-51.6-32-60.4V32zm-64 76.7V240 371.3C357.2 317.8 280.5 288 200.7 288H192V192h8.7c79.8 0 156.5-29.8 215.3-83.3z"]},hP={prefix:"fas",iconName:"globe",icon:[512,512,[127760],"f0ac","M352 256c0 22.2-1.2 43.6-3.3 64H163.3c-2.2-20.4-3.3-41.8-3.3-64s1.2-43.6 3.3-64H348.7c2.2 20.4 3.3 41.8 3.3 64zm28.8-64H503.9c5.3 20.5 8.1 41.9 8.1 64s-2.8 43.5-8.1 64H380.8c2.1-20.6 3.2-42 3.2-64s-1.1-43.4-3.2-64zm112.6-32H376.7c-10-63.9-29.8-117.4-55.3-151.6c78.3 20.7 142 77.5 171.9 151.6zm-149.1 0H167.7c6.1-36.4 15.5-68.6 27-94.7c10.5-23.6 22.2-40.7 33.5-51.5C239.4 3.2 248.7 0 256 0s16.6 3.2 27.8 13.8c11.3 10.8 23 27.9 33.5 51.5c11.6 26 21 58.2 27 94.7zm-209 0H18.6C48.6 85.9 112.2 29.1 190.6 8.4C165.1 42.6 145.3 96.1 135.3 160zM8.1 192H131.2c-2.1 20.6-3.2 42-3.2 64s1.1 43.4 3.2 64H8.1C2.8 299.5 0 278.1 0 256s2.8-43.5 8.1-64zM194.7 446.6c-11.6-26-20.9-58.2-27-94.6H344.3c-6.1 36.4-15.5 68.6-27 94.6c-10.5 23.6-22.2 40.7-33.5 51.5C272.6 508.8 263.3 512 256 512s-16.6-3.2-27.8-13.8c-11.3-10.8-23-27.9-33.5-51.5zM135.3 352c10 63.9 29.8 117.4 55.3 151.6C112.2 482.9 48.6 426.1 18.6 352H135.3zm358.1 0c-30 74.1-93.6 130.9-171.9 151.6c25.5-34.2 45.2-87.7 55.3-151.6H493.4z"]},pP={prefix:"fas",iconName:"synagogue",icon:[640,512,[128333],"f69b","M309.8 3.7c5.9-4.9 14.6-4.9 20.5 0l121 100.8C469.5 119.7 480 142.2 480 166V280.1 512H464 352V416c0-17.7-14.3-32-32-32s-32 14.3-32 32v96H176 160V280.1 166c0-23.7 10.5-46.3 28.8-61.5L309.8 3.7zM512 512V244.5l28.1-31.2c3-3.4 7.4-5.3 11.9-5.3s8.9 1.9 11.9 5.3l63.8 70.9c7.9 8.8 12.3 20.3 12.3 32.1V448c0 35.3-28.7 64-64 64H512zM128 244.5V512H64c-35.3 0-64-28.7-64-64V316.3c0-11.9 4.4-23.3 12.3-32.1l63.8-70.9c3-3.4 7.4-5.3 11.9-5.3s8.9 1.9 11.9 5.3L128 244.5zM327 124.3c-3.1-5.4-10.9-5.4-13.9 0l-15.9 28.1-32.3-.3c-6.2-.1-10.1 6.7-7 12.1L274.3 192l-16.4 27.8c-3.2 5.4 .7 12.1 7 12.1l32.3-.3L313 259.7c3.1 5.4 10.9 5.4 13.9 0l15.9-28.1 32.3 .3c6.2 .1 10.1-6.7 7-12.1L365.7 192l16.4-27.8c3.2-5.4-.7-12.1-7-12.1l-32.3 .3L327 124.3z"]},mP={prefix:"fas",iconName:"person-half-dress",icon:[320,512,[],"e548","M160 96c-26.5 0-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48s-21.5 48-48 48zm8 256V128h6.9c33.7 0 64.9 17.7 82.3 46.6l58.3 97c9.1 15.1 4.2 34.8-10.9 43.9s-34.8 4.2-43.9-10.9L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352h0zM58.2 182.3c19.9-33.1 55.3-53.5 93.8-54.3V384h0v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384H70.2c-10.9 0-18.6-10.7-15.2-21.1L93.3 248.1 59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l53.6-89.2z"]},vP={prefix:"fas",iconName:"road-bridge",icon:[640,512,[],"e563","M352 0H608c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V32c0-17.7 14.3-32 32-32zM480 200c-13.3 0-24 10.7-24 24v64c0 13.3 10.7 24 24 24s24-10.7 24-24V224c0-13.3-10.7-24-24-24zm24 184c0-13.3-10.7-24-24-24s-24 10.7-24 24v64c0 13.3 10.7 24 24 24s24-10.7 24-24V384zM480 40c-13.3 0-24 10.7-24 24v64c0 13.3 10.7 24 24 24s24-10.7 24-24V64c0-13.3-10.7-24-24-24zM32 96H288v64H248v64h40v96c-53 0-96 43-96 96v64c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32V416c0-53-43-96-96-96V224H72V160H32c-17.7 0-32-14.3-32-32s14.3-32 32-32zm168 64H120v64h80V160z"]},dP={prefix:"fas",iconName:"location-arrow",icon:[448,512,[],"f124","M429.6 92.1c4.9-11.9 2.1-25.6-7-34.7s-22.8-11.9-34.7-7l-352 144c-14.2 5.8-22.2 20.8-19.3 35.8s16.1 25.8 31.4 25.8H224V432c0 15.3 10.8 28.4 25.8 31.4s30-5.1 35.8-19.3l144-352z"]},HP={prefix:"fas",iconName:"c",icon:[384,512,[99],"43","M329.1 142.9c-62.5-62.5-155.8-62.5-218.3 0s-62.5 163.8 0 226.3s155.8 62.5 218.3 0c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3c-87.5 87.5-221.3 87.5-308.8 0s-87.5-229.3 0-316.8s221.3-87.5 308.8 0c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0z"]},zP={prefix:"fas",iconName:"tablet-button",icon:[448,512,[],"f10a","M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM224 464c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},gP={prefix:"fas",iconName:"building-lock",icon:[576,512,[],"e4d6","M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h88.6c-5.4-9.4-8.6-20.3-8.6-32V352c0-23.7 12.9-44.4 32-55.4V272c0-30.5 12.2-58.2 32-78.4V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM464 240c17.7 0 32 14.3 32 32v48H432V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H544c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z"]},VP={prefix:"fas",iconName:"pizza-slice",icon:[512,512,[],"f818","M169.7 .9c-22.8-1.6-41.9 14-47.5 34.7L110.4 80c.5 0 1.1 0 1.6 0c176.7 0 320 143.3 320 320c0 .5 0 1.1 0 1.6l44.4-11.8c20.8-5.5 36.3-24.7 34.7-47.5C498.5 159.5 352.5 13.5 169.7 .9zM399.8 410.2c.1-3.4 .2-6.8 .2-10.2c0-159.1-128.9-288-288-288c-3.4 0-6.8 .1-10.2 .2L.5 491.9c-1.5 5.5 .1 11.4 4.1 15.4s9.9 5.6 15.4 4.1L399.8 410.2zM176 272c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm128 64c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zM160 384c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32z"]},MP={prefix:"fas",iconName:"money-bill-wave",icon:[576,512,[],"f53a","M0 112.5V422.3c0 18 10.1 35 27 41.3c87 32.5 174 10.3 261-11.9c79.8-20.3 159.6-40.7 239.3-18.9c23 6.3 48.7-9.5 48.7-33.4V89.7c0-18-10.1-35-27-41.3C462 15.9 375 38.1 288 60.3C208.2 80.6 128.4 100.9 48.7 79.1C25.6 72.8 0 88.6 0 112.5zM288 352c-44.2 0-80-43-80-96s35.8-96 80-96s80 43 80 96s-35.8 96-80 96zM64 352c35.3 0 64 28.7 64 64H64V352zm64-208c0 35.3-28.7 64-64 64V144h64zM512 304v64H448c0-35.3 28.7-64 64-64zM448 96h64v64c-35.3 0-64-28.7-64-64z"]},Mu={prefix:"fas",iconName:"chart-area",icon:[512,512,["area-chart"],"f1fe","M64 64c0-17.7-14.3-32-32-32S0 46.3 0 64V400c0 44.2 35.8 80 80 80H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H80c-8.8 0-16-7.2-16-16V64zm96 288H448c17.7 0 32-14.3 32-32V251.8c0-7.6-2.7-15-7.7-20.8l-65.8-76.8c-12.1-14.2-33.7-15-46.9-1.8l-21 21c-10 10-26.4 9.2-35.4-1.6l-39.2-47c-12.6-15.1-35.7-15.4-48.7-.6L135.9 215c-5.1 5.8-7.9 13.3-7.9 21.1v84c0 17.7 14.3 32 32 32z"]},CP=Mu,LP={prefix:"fas",iconName:"house-flag",icon:[640,512,[],"e50d","M480 0c-17.7 0-32 14.3-32 32V192 512h64V192H624c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H512c0-17.7-14.3-32-32-32zM416 159L276.8 39.7c-12-10.3-29.7-10.3-41.7 0l-224 192C1 240.4-2.7 254.5 2 267.1S18.6 288 32 288H64V480c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V384c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32v96c0 17.7 14.3 32 32 32h64.7l.2 0h-1V159z"]},yP={prefix:"fas",iconName:"person-circle-minus",icon:[576,512,[],"e540","M208 48c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48zM152 352V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5c-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152zm424 16c0 79.5-64.5 144-144 144s-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144zm-64 0c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16s7.2 16 16 16H496c8.8 0 16-7.2 16-16z"]},Cu={prefix:"fas",iconName:"ban",icon:[512,512,[128683,"cancel"],"f05e","M367.2 412.5L99.5 144.8C77.1 176.1 64 214.5 64 256c0 106 86 192 192 192c41.5 0 79.9-13.1 111.2-35.5zm45.3-45.3C434.9 335.9 448 297.5 448 256c0-106-86-192-192-192c-41.5 0-79.9 13.1-111.2 35.5L412.5 367.2zM512 256c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0S512 114.6 512 256z"]},bP=Cu,xP={prefix:"fas",iconName:"camera-rotate",icon:[512,512,[],"e0d8","M149.1 64.8L138.7 96H64C28.7 96 0 124.7 0 160V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H373.3L362.9 64.8C356.4 45.2 338.1 32 317.4 32H194.6c-20.7 0-39 13.2-45.5 32.8zM384 256c0 8.8-7.2 16-16 16H291.3c-6.2 0-11.3-5.1-11.3-11.3c0-3 1.2-5.9 3.3-8L307 229c-13.6-13.4-31.9-21-51-21c-19.2 0-37.7 7.6-51.3 21.3L185 249c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l19.7-19.7C193.4 172.7 224 160 256 160c31.8 0 62.4 12.6 85 35l23.7-23.7c2.1-2.1 5-3.3 8-3.3c6.2 0 11.3 5.1 11.3 11.3V256zM128 320c0-8.8 7.2-16 16-16h76.7c6.2 0 11.3 5.1 11.3 11.3c0 3-1.2 5.9-3.3 8L205 347c13.6 13.4 31.9 21 51 21c19.2 0 37.7-7.6 51.3-21.3L327 327c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-19.7 19.7C318.6 403.3 288 416 256 416c-31.8 0-62.4-12.6-85-35l-23.7 23.7c-2.1 2.1-5 3.3-8 3.3c-6.2 0-11.3-5.1-11.3-11.3V320z"]},Lu={prefix:"fas",iconName:"spray-can-sparkles",icon:[512,512,["air-freshener"],"f5d0","M96 32v96H224V32c0-17.7-14.3-32-32-32H128C110.3 0 96 14.3 96 32zm0 128c-53 0-96 43-96 96V464c0 26.5 21.5 48 48 48H272c26.5 0 48-21.5 48-48V256c0-53-43-96-96-96H96zm64 256c-44.2 0-80-35.8-80-80s35.8-80 80-80s80 35.8 80 80s-35.8 80-80 80zM384 48c0-1.4-1-3-2.2-3.6L352 32 339.6 2.2C339 1 337.4 0 336 0s-3 1-3.6 2.2L320 32 290.2 44.4C289 45 288 46.6 288 48c0 1.4 1 3 2.2 3.6L320 64l12.4 29.8C333 95 334.6 96 336 96s3-1 3.6-2.2L352 64l29.8-12.4C383 51 384 49.4 384 48zm76.4 45.8C461 95 462.6 96 464 96s3-1 3.6-2.2L480 64l29.8-12.4C511 51 512 49.4 512 48c0-1.4-1-3-2.2-3.6L480 32 467.6 2.2C467 1 465.4 0 464 0s-3 1-3.6 2.2L448 32 418.2 44.4C417 45 416 46.6 416 48c0 1.4 1 3 2.2 3.6L448 64l12.4 29.8zm7.2 100.4c-.6-1.2-2.2-2.2-3.6-2.2s-3 1-3.6 2.2L448 224l-29.8 12.4c-1.2 .6-2.2 2.2-2.2 3.6c0 1.4 1 3 2.2 3.6L448 256l12.4 29.8c.6 1.2 2.2 2.2 3.6 2.2s3-1 3.6-2.2L480 256l29.8-12.4c1.2-.6 2.2-2.2 2.2-3.6c0-1.4-1-3-2.2-3.6L480 224l-12.4-29.8zM448 144c0-1.4-1-3-2.2-3.6L416 128 403.6 98.2C403 97 401.4 96 400 96s-3 1-3.6 2.2L384 128l-29.8 12.4c-1.2 .6-2.2 2.2-2.2 3.6c0 1.4 1 3 2.2 3.6L384 160l12.4 29.8c.6 1.2 2.2 2.2 3.6 2.2s3-1 3.6-2.2L416 160l29.8-12.4c1.2-.6 2.2-2.2 2.2-3.6z"]},SP=Lu,wP={prefix:"fas",iconName:"star",icon:[576,512,[11088,61446],"f005","M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z"]},NP={prefix:"fas",iconName:"repeat",icon:[512,512,[128257],"f363","M0 224c0 17.7 14.3 32 32 32s32-14.3 32-32c0-53 43-96 96-96H320v32c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l64-64c12.5-12.5 12.5-32.8 0-45.3l-64-64c-9.2-9.2-22.9-11.9-34.9-6.9S320 19.1 320 32V64H160C71.6 64 0 135.6 0 224zm512 64c0-17.7-14.3-32-32-32s-32 14.3-32 32c0 53-43 96-96 96H192V352c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9l-64 64c-12.5 12.5-12.5 32.8 0 45.3l64 64c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V448H352c88.4 0 160-71.6 160-160z"]},AP={prefix:"fas",iconName:"cross",icon:[384,512,[128327,10013],"f654","M176 0c-26.5 0-48 21.5-48 48v80H48c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h80V464c0 26.5 21.5 48 48 48h32c26.5 0 48-21.5 48-48V256h80c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48H256V48c0-26.5-21.5-48-48-48H176z"]},_P={prefix:"fas",iconName:"box",icon:[448,512,[128230],"f466","M50.7 58.5L0 160H208V32H93.7C75.5 32 58.9 42.3 50.7 58.5zM240 160H448L397.3 58.5C389.1 42.3 372.5 32 354.3 32H240V160zm208 32H0V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V192z"]},kP={prefix:"fas",iconName:"venus-mars",icon:[640,512,[9892],"f228","M176 288c61.9 0 112-50.1 112-112s-50.1-112-112-112S64 114.1 64 176s50.1 112 112 112zM352 176c0 86.3-62.1 158.1-144 173.1V384h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H208v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H112c-17.7 0-32-14.3-32-32s14.3-32 32-32h32V349.1C62.1 334.1 0 262.3 0 176C0 78.8 78.8 0 176 0s176 78.8 176 176zM271.9 360.6c19.3-10.1 36.9-23.1 52.1-38.4c20 18.5 46.7 29.8 76.1 29.8c61.9 0 112-50.1 112-112s-50.1-112-112-112c-7.2 0-14.3 .7-21.1 2c-4.9-21.5-13-41.7-24-60.2C369.3 66 384.4 64 400 64c37 0 71.4 11.4 99.8 31l20.6-20.6L487 41c-6.9-6.9-8.9-17.2-5.2-26.2S494.3 0 504 0H616c13.3 0 24 10.7 24 24V136c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-33.4-33.4L545 140.2c19.5 28.4 31 62.7 31 99.8c0 97.2-78.8 176-176 176c-50.5 0-96-21.3-128.1-55.4z"]},yu={prefix:"fas",iconName:"arrow-pointer",icon:[320,512,["mouse-pointer"],"f245","M0 55.2V426c0 12.2 9.9 22 22 22c6.3 0 12.4-2.7 16.6-7.5L121.2 346l58.1 116.3c7.9 15.8 27.1 22.2 42.9 14.3s22.2-27.1 14.3-42.9L179.8 320H297.9c12.2 0 22.1-9.9 22.1-22.1c0-6.3-2.7-12.3-7.4-16.5L38.6 37.9C34.3 34.1 28.9 32 23.2 32C10.4 32 0 42.4 0 55.2z"]},TP=yu,bu={prefix:"fas",iconName:"maximize",icon:[448,512,["expand-arrows-alt"],"f31e","M168 32H24C10.7 32 0 42.7 0 56V200c0 9.7 5.8 18.5 14.8 22.2s19.3 1.7 26.2-5.2l40-40 79 79L81 335 41 295c-6.9-6.9-17.2-8.9-26.2-5.2S0 302.3 0 312V456c0 13.3 10.7 24 24 24H168c9.7 0 18.5-5.8 22.2-14.8s1.7-19.3-5.2-26.2l-40-40 79-79 79 79-40 40c-6.9 6.9-8.9 17.2-5.2 26.2s12.5 14.8 22.2 14.8H424c13.3 0 24-10.7 24-24V312c0-9.7-5.8-18.5-14.8-22.2s-19.3-1.7-26.2 5.2l-40 40-79-79 79-79 40 40c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V56c0-13.3-10.7-24-24-24H280c-9.7 0-18.5 5.8-22.2 14.8s-1.7 19.3 5.2 26.2l40 40-79 79-79-79 40-40c6.9-6.9 8.9-17.2 5.2-26.2S177.7 32 168 32z"]},PP=bu,EP={prefix:"fas",iconName:"charging-station",icon:[576,512,[],"f5e7","M96 0C60.7 0 32 28.7 32 64V448c-17.7 0-32 14.3-32 32s14.3 32 32 32H320c17.7 0 32-14.3 32-32s-14.3-32-32-32V304h16c22.1 0 40 17.9 40 40v32c0 39.8 32.2 72 72 72s72-32.2 72-72V252.3c32.5-10.2 56-40.5 56-76.3V144c0-8.8-7.2-16-16-16H544V80c0-8.8-7.2-16-16-16s-16 7.2-16 16v48H480V80c0-8.8-7.2-16-16-16s-16 7.2-16 16v48H432c-8.8 0-16 7.2-16 16v32c0 35.8 23.5 66.1 56 76.3V376c0 13.3-10.7 24-24 24s-24-10.7-24-24V344c0-48.6-39.4-88-88-88H320V64c0-35.3-28.7-64-64-64H96zM216.9 82.7c6 4 8.5 11.5 6.3 18.3l-25 74.9H256c6.7 0 12.7 4.2 15 10.4s.5 13.3-4.6 17.7l-112 96c-5.5 4.7-13.4 5.1-19.3 1.1s-8.5-11.5-6.3-18.3l25-74.9H96c-6.7 0-12.7-4.2-15-10.4s-.5-13.3 4.6-17.7l112-96c5.5-4.7 13.4-5.1 19.3-1.1z"]},xu={prefix:"fas",iconName:"shapes",icon:[512,512,["triangle-circle-square"],"f61f","M315.4 15.5C309.7 5.9 299.2 0 288 0s-21.7 5.9-27.4 15.5l-96 160c-5.9 9.9-6.1 22.2-.4 32.2s16.3 16.2 27.8 16.2H384c11.5 0 22.2-6.2 27.8-16.2s5.5-22.3-.4-32.2l-96-160zM288 312V456c0 22.1 17.9 40 40 40H472c22.1 0 40-17.9 40-40V312c0-22.1-17.9-40-40-40H328c-22.1 0-40 17.9-40 40zM128 512c70.7 0 128-57.3 128-128s-57.3-128-128-128S0 313.3 0 384s57.3 128 128 128z"]},OP=xu,Su={prefix:"fas",iconName:"shuffle",icon:[512,512,[128256,"random"],"f074","M403.8 34.4c12-5 25.7-2.2 34.9 6.9l64 64c6 6 9.4 14.1 9.4 22.6s-3.4 16.6-9.4 22.6l-64 64c-9.2 9.2-22.9 11.9-34.9 6.9s-19.8-16.6-19.8-29.6V160H352c-10.1 0-19.6 4.7-25.6 12.8L284 229.3 244 176l31.2-41.6C293.3 110.2 321.8 96 352 96h32V64c0-12.9 7.8-24.6 19.8-29.6zM164 282.7L204 336l-31.2 41.6C154.7 401.8 126.2 416 96 416H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H96c10.1 0 19.6-4.7 25.6-12.8L164 282.7zm274.6 188c-9.2 9.2-22.9 11.9-34.9 6.9s-19.8-16.6-19.8-29.6V416H352c-30.2 0-58.7-14.2-76.8-38.4L121.6 172.8c-6-8.1-15.5-12.8-25.6-12.8H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H96c30.2 0 58.7 14.2 76.8 38.4L326.4 339.2c6 8.1 15.5 12.8 25.6 12.8h32V320c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l64 64c6 6 9.4 14.1 9.4 22.6s-3.4 16.6-9.4 22.6l-64 64z"]},RP=Su,wu={prefix:"fas",iconName:"person-running",icon:[448,512,[127939,"running"],"f70c","M336 48c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM141.7 175.5c9.9-9.9 23.4-15.5 37.5-15.5c1.9 0 3.8 .1 5.6 .3L153.6 254c-9.3 28 1.7 58.8 26.8 74.5l86.2 53.9-25.4 88.8c-4.9 17 5 34.7 22 39.6s34.7-5 39.6-22l28.7-100.4c5.9-20.6-2.6-42.6-20.7-53.9L254 299l30.9-82.4 5.1 12.3C305 264.7 339.9 288 378.7 288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H378.7c-12.9 0-24.6-7.8-29.5-19.7l-6.3-15c-14.6-35.1-44.1-61.9-80.5-73.1l-48.7-15c-11.1-3.4-22.7-5.2-34.4-5.2c-31 0-60.8 12.3-82.7 34.3L73.4 153.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l23.1-23.1zM107.2 352H48c-17.7 0-32 14.3-32 32s14.3 32 32 32h69.6c19 0 36.2-11.2 43.9-28.5L173 361.6l-9.5-6c-17.5-10.9-30.5-26.8-37.9-44.9L107.2 352z"]},FP=wu,BP={prefix:"fas",iconName:"mobile-retro",icon:[320,512,[],"e527","M0 64C0 28.7 28.7 0 64 0H256c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zm64 96v64c0 17.7 14.3 32 32 32H224c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H96c-17.7 0-32 14.3-32 32zM80 352c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24zm24 56c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24zm56-56c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24zm24 56c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24zm56-56c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24zm24 56c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24zM128 48c-8.8 0-16 7.2-16 16s7.2 16 16 16h64c8.8 0 16-7.2 16-16s-7.2-16-16-16H128z"]},DP={prefix:"fas",iconName:"grip-lines-vertical",icon:[192,512,[],"f7a5","M64 64c0-17.7-14.3-32-32-32S0 46.3 0 64V448c0 17.7 14.3 32 32 32s32-14.3 32-32V64zm128 0c0-17.7-14.3-32-32-32s-32 14.3-32 32V448c0 17.7 14.3 32 32 32s32-14.3 32-32V64z"]},IP={prefix:"fas",iconName:"spider",icon:[576,512,[128375],"f717","M190.4 32.6c4.8-12.4-1.4-26.3-13.8-31s-26.3 1.4-31 13.8L113.1 100c-7.9 20.7-3 44.1 12.7 59.7l57.4 57.4-80.4-26.8c-2.4-.8-4.3-2.7-5.1-5.1L78.8 128.4C74.6 115.8 61 109 48.4 113.2S29 131 33.2 143.6l18.9 56.8c5.6 16.7 18.7 29.8 35.4 35.4L148.1 256 87.6 276.2c-16.7 5.6-29.8 18.7-35.4 35.4L33.2 368.4C29 381 35.8 394.6 48.4 398.8s26.2-2.6 30.4-15.2l18.9-56.8c.8-2.4 2.7-4.3 5.1-5.1l80.4-26.8-57.4 57.4c-15.6 15.6-20.6 39-12.7 59.7l32.5 84.6c4.8 12.4 18.6 18.5 31 13.8s18.5-18.6 13.8-31l-32.5-84.6c-1.1-3-.4-6.3 1.8-8.5L192 353.9c1 52.1 43.6 94.1 96 94.1s95-41.9 96-94.1l32.3 32.3c2.2 2.2 2.9 5.6 1.8 8.5l-32.5 84.6c-4.8 12.4 1.4 26.3 13.8 31s26.3-1.4 31-13.8L462.9 412c7.9-20.7 3-44.1-12.7-59.7l-57.4-57.4 80.4 26.8c2.4 .8 4.3 2.7 5.1 5.1l18.9 56.8c4.2 12.6 17.8 19.4 30.4 15.2s19.4-17.8 15.2-30.4l-18.9-56.8c-5.6-16.7-18.7-29.8-35.4-35.4L427.9 256l60.5-20.2c16.7-5.6 29.8-18.7 35.4-35.4l18.9-56.8c4.2-12.6-2.6-26.2-15.2-30.4s-26.2 2.6-30.4 15.2l-18.9 56.8c-.8 2.4-2.7 4.3-5.1 5.1l-80.4 26.8 57.4-57.4c15.6-15.6 20.6-39 12.7-59.7L430.4 15.4C425.6 3 411.8-3.2 399.4 1.6s-18.5 18.6-13.8 31l32.5 84.6c1.1 3 .4 6.3-1.8 8.5L368 174.1V160c0-31.8-18.6-59.3-45.5-72.2c-9.1-4.4-18.5 3.3-18.5 13.4V112c0 8.8-7.2 16-16 16s-16-7.2-16-16V101.2c0-10.1-9.4-17.7-18.5-13.4C226.6 100.7 208 128.2 208 160v14.1l-48.3-48.3c-2.2-2.2-2.9-5.6-1.8-8.5l32.5-84.6z"]},UP={prefix:"fas",iconName:"hands-bound",icon:[576,512,[],"e4f9","M64 32C64 14.3 49.7 0 32 0S0 14.3 0 32V96v59.1 .7V192v21.9c0 14.2 5.1 27.9 14.3 38.7L99.6 352H96c-13.3 0-24 10.7-24 24s10.7 24 24 24h32H256h64H448h32c13.3 0 24-10.7 24-24s-10.7-24-24-24h-3.6l85.3-99.5c9.2-10.8 14.3-24.5 14.3-38.7V192 155.8v-.7V96 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V96v48.8l-69.3 92.4c-5.7 7.6-16.1 9.6-24.2 4.8c-9.7-5.7-12.1-18.7-5.1-27.5L441 180c10.8-13.5 8.9-33.3-4.4-44.5s-33-9.8-44.5 3.2l-46.7 52.5C329 209.7 320 233.4 320 258.1V320v32H256V320 258.1c0-24.6-9-48.4-25.4-66.8l-46.7-52.5c-11.5-13-31.3-14.4-44.5-3.2s-15.2 30.9-4.4 44.5l27.6 34.5c7 8.8 4.7 21.8-5.1 27.5c-8.1 4.8-18.6 2.7-24.2-4.8L64 144.8V96 32zm64 448v32H256V480h64v32H448V480h32c13.3 0 24-10.7 24-24s-10.7-24-24-24H448 320 256 128 96c-13.3 0-24 10.7-24 24s10.7 24 24 24h32z"]},WP={prefix:"fas",iconName:"file-invoice-dollar",icon:[384,512,[],"f571","M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM64 80c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm0 64c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm128 72c8.8 0 16 7.2 16 16v17.3c8.5 1.2 16.7 3.1 24.1 5.1c8.5 2.3 13.6 11 11.3 19.6s-11 13.6-19.6 11.3c-11.1-3-22-5.2-32.1-5.3c-8.4-.1-17.4 1.8-23.6 5.5c-5.7 3.4-8.1 7.3-8.1 12.8c0 3.7 1.3 6.5 7.3 10.1c6.9 4.1 16.6 7.1 29.2 10.9l.5 .1 0 0 0 0c11.3 3.4 25.3 7.6 36.3 14.6c12.1 7.6 22.4 19.7 22.7 38.2c.3 19.3-9.6 33.3-22.9 41.6c-7.7 4.8-16.4 7.6-25.1 9.1V440c0 8.8-7.2 16-16 16s-16-7.2-16-16V422.2c-11.2-2.1-21.7-5.7-30.9-8.9l0 0c-2.1-.7-4.2-1.4-6.2-2.1c-8.4-2.8-12.9-11.9-10.1-20.2s11.9-12.9 20.2-10.1c2.5 .8 4.8 1.6 7.1 2.4l0 0 0 0 0 0c13.6 4.6 24.6 8.4 36.3 8.7c9.1 .3 17.9-1.7 23.7-5.3c5.1-3.2 7.9-7.3 7.8-14c-.1-4.6-1.8-7.8-7.7-11.6c-6.8-4.3-16.5-7.4-29-11.2l-1.6-.5 0 0c-11-3.3-24.3-7.3-34.8-13.7c-12-7.2-22.6-18.9-22.7-37.3c-.1-19.4 10.8-32.8 23.8-40.5c7.5-4.4 15.8-7.2 24.1-8.7V232c0-8.8 7.2-16 16-16z"]},$P={prefix:"fas",iconName:"plane-circle-exclamation",icon:[640,512,[],"e556","M256 0c-35 0-64 59.5-64 93.7v84.6L8.1 283.4c-5 2.8-8.1 8.2-8.1 13.9v65.5c0 10.6 10.2 18.3 20.4 15.4l171.6-49 0 70.9-57.6 43.2c-4 3-6.4 7.8-6.4 12.8v42c0 7.8 6.3 14 14 14c1.3 0 2.6-.2 3.9-.5L256 480l110.1 31.5c1.3 .4 2.6 .5 3.9 .5c6 0 11.1-3.7 13.1-9C344.5 470.7 320 422.2 320 368c0-60.6 30.6-114 77.1-145.6L320 178.3V93.7C320 59.5 292 0 256 0zM496 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm0-48c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zm0-192c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z"]},qP={prefix:"fas",iconName:"x-ray",icon:[512,512,[],"f497","M0 64C0 46.3 14.3 32 32 32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32V416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32V96C14.3 96 0 81.7 0 64zM256 96c-8.8 0-16 7.2-16 16v16H144c-8.8 0-16 7.2-16 16s7.2 16 16 16h96v32H112c-8.8 0-16 7.2-16 16s7.2 16 16 16H240v32H144c-8.8 0-16 7.2-16 16s7.2 16 16 16h96v32H152c-8.9 0-17 4.9-21.2 12.7s-3.7 17.3 1.2 24.6l32 48C168.5 412 176 416 184 416H328c8 0 15.5-4 20-10.7l32-48c4.9-7.4 5.4-16.8 1.2-24.6S368.9 320 360 320H272V288h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H272V224H400c8.8 0 16-7.2 16-16s-7.2-16-16-16H272V160h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H272V112c0-8.8-7.2-16-16-16zM208 384c-8.8 0-16-7.2-16-16s7.2-16 16-16s16 7.2 16 16s-7.2 16-16 16zm112-16c0 8.8-7.2 16-16 16s-16-7.2-16-16s7.2-16 16-16s16 7.2 16 16z"]},GP={prefix:"fas",iconName:"spell-check",icon:[640,512,[],"f891","M144 0c-12.9 0-24.6 7.8-29.5 19.7l-66.7 160-13.3 32c-6.8 16.3 .9 35 17.2 41.8s35-.9 41.8-17.2L98.7 224h90.7l5.1 12.3c6.8 16.3 25.5 24 41.8 17.2s24-25.5 17.2-41.8l-13.3-32-66.7-160C168.6 7.8 156.9 0 144 0zm18.7 160H125.3L144 115.2 162.7 160zM288 32v96 96c0 17.7 14.3 32 32 32h80c44.2 0 80-35.8 80-80c0-23.1-9.8-43.8-25.4-58.4c6-11.2 9.4-24 9.4-37.6c0-44.2-35.8-80-80-80H320c-17.7 0-32 14.3-32 32zm96 64H352V64h32c8.8 0 16 7.2 16 16s-7.2 16-16 16zm-32 64h32 16c8.8 0 16 7.2 16 16s-7.2 16-16 16H352V160zM598.6 310.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L384 434.7l-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0l192-192z"]},jP={prefix:"fas",iconName:"slash",icon:[640,512,[],"f715","M5.1 9.2C13.3-1.2 28.4-3.1 38.8 5.1l592 464c10.4 8.2 12.3 23.3 4.1 33.7s-23.3 12.3-33.7 4.1L9.2 42.9C-1.2 34.7-3.1 19.6 5.1 9.2z"]},Nu={prefix:"fas",iconName:"computer-mouse",icon:[384,512,[128433,"mouse"],"f8cc","M0 192H176V0H160C71.6 0 0 71.6 0 160v32zm0 32V352c0 88.4 71.6 160 160 160h64c88.4 0 160-71.6 160-160V224H192 0zm384-32V160C384 71.6 312.4 0 224 0H208V192H384z"]},KP=Nu,Au={prefix:"fas",iconName:"arrow-right-to-bracket",icon:[512,512,["sign-in"],"f090","M352 96l64 0c17.7 0 32 14.3 32 32l0 256c0 17.7-14.3 32-32 32l-64 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l64 0c53 0 96-43 96-96l0-256c0-53-43-96-96-96l-64 0c-17.7 0-32 14.3-32 32s14.3 32 32 32zm-9.4 182.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L242.7 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l210.7 0-73.4 73.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l128-128z"]},XP=Au,_u={prefix:"fas",iconName:"shop-slash",icon:[640,512,["store-alt-slash"],"e070","M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-54.8-43V224H512V376L384 275.7V224H320v1.5L277.2 192H603.2c20.3 0 36.8-16.5 36.8-36.8c0-7.3-2.2-14.4-6.2-20.4L558.2 21.4C549.3 8 534.4 0 518.3 0H121.7c-16 0-31 8-39.9 21.4L74.1 32.8 38.8 5.1zM36.8 192h85L21 112.5 6.2 134.7c-4 6.1-6.2 13.2-6.2 20.4C0 175.5 16.5 192 36.8 192zM320 384H128V224H64V384v80c0 26.5 21.5 48 48 48H336c26.5 0 48-21.5 48-48V398.5l-64-50.4V384z"]},YP=_u,JP={prefix:"fas",iconName:"server",icon:[512,512,[],"f233","M64 32C28.7 32 0 60.7 0 96v64c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM344 152c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zm96-24c0 13.3-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24zM64 288c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V352c0-35.3-28.7-64-64-64H64zM344 408c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zm104-24c0 13.3-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24z"]},QP={prefix:"fas",iconName:"virus-covid-slash",icon:[640,512,[],"e4a9","M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L472.1 344.7c11.4-19.5 19.1-41.4 22.3-64.7H528v16c0 13.3 10.7 24 24 24s24-10.7 24-24V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v16H494.4c-4.2-30.7-16.3-58.8-34.1-82.3L484 125.9l11.3 11.3c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L472.7 46.7c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9L450.1 92l-23.8 23.8C402.8 97.9 374.7 85.8 344 81.6V48h16c13.3 0 24-10.7 24-24s-10.7-24-24-24H280c-13.3 0-24 10.7-24 24s10.7 24 24 24h16V81.6c-30.7 4.2-58.8 16.3-82.3 34.1L189.9 92l11.3-11.3c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L134.1 79.8 38.8 5.1zM149.2 213.5c-1.5 6-2.7 12.2-3.5 18.5H112V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v80c0 13.3 10.7 24 24 24s24-10.7 24-24V280h33.6c4.2 30.7 16.3 58.8 34.1 82.3L156 386.1l-11.3-11.3c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l56.6 56.6c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L189.9 420l23.8-23.8c23.5 17.9 51.7 29.9 82.3 34.1V464H280c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24H344V430.4c20.4-2.8 39.7-9.1 57.3-18.2L149.2 213.5z"]},ZP={prefix:"fas",iconName:"shop-lock",icon:[640,512,[],"e4a5","M36.8 192H449.6c20.2-19.8 47.9-32 78.4-32c30.5 0 58.1 12.2 78.3 31.9c18.9-1.6 33.7-17.4 33.7-36.7c0-7.3-2.2-14.4-6.2-20.4L558.2 21.4C549.3 8 534.4 0 518.3 0H121.7c-16 0-31 8-39.9 21.4L6.2 134.7c-4 6.1-6.2 13.2-6.2 20.4C0 175.5 16.5 192 36.8 192zM384 224H320V384H128V224H64V384v80c0 26.5 21.5 48 48 48H336c26.5 0 48-21.5 48-48V384 352 224zm144 16c17.7 0 32 14.3 32 32v48H496V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z"]},ku={prefix:"fas",iconName:"hourglass-start",icon:[384,512,["hourglass-1"],"f251","M32 0C14.3 0 0 14.3 0 32S14.3 64 32 64V75c0 42.4 16.9 83.1 46.9 113.1L146.7 256 78.9 323.9C48.9 353.9 32 394.6 32 437v11c-17.7 0-32 14.3-32 32s14.3 32 32 32H64 320h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V437c0-42.4-16.9-83.1-46.9-113.1L237.3 256l67.9-67.9c30-30 46.9-70.7 46.9-113.1V64c17.7 0 32-14.3 32-32s-14.3-32-32-32H320 64 32zM288 437v11H96V437c0-25.5 10.1-49.9 28.1-67.9L192 301.3l67.9 67.9c18 18 28.1 42.4 28.1 67.9z"]},cE=ku,eE={prefix:"fas",iconName:"blender-phone",icon:[576,512,[],"f6b6","M192 352V48c0-26.5 21.5-48 48-48H534.1c21.1 0 36.4 20.1 30.9 40.4L558.5 64H400c-8.8 0-16 7.2-16 16s7.2 16 16 16H549.8l-17.5 64H400c-8.8 0-16 7.2-16 16s7.2 16 16 16H523.6l-17.5 64H400c-8.8 0-16 7.2-16 16s7.2 16 16 16h97.5L480 352H192zm16 32H496c26.5 0 48 21.5 48 48v32c0 26.5-21.5 48-48 48H208c-26.5 0-48-21.5-48-48V432c0-26.5 21.5-48 48-48zm144 96c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zM147.5 30.7c10.8 6.7 15.3 21 10.6 33.4l-22 57.8c-4.2 10.9-14.5 17.6-25.3 16.4l-33.3-3.6c-13.6 42.2-13.6 88.4 0 130.7l33.3-3.6c10.9-1.2 21.2 5.5 25.3 16.4l22 57.8c4.7 12.4 .2 26.7-10.6 33.4l-44 27.2c-9.7 6-21.9 4.2-29.8-4.3C-24.6 286-24.6 114 73.7 7.8C81.6-.7 93.8-2.5 103.5 3.5l44 27.2z"]},rE={prefix:"fas",iconName:"building-wheat",icon:[640,512,[],"e4db","M0 48C0 21.5 21.5 0 48 0H336c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H240V432c0-26.5-21.5-48-48-48s-48 21.5-48 48v80H48c-26.5 0-48-21.5-48-48V48zM80 224c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H80zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H176c-8.8 0-16 7.2-16 16zm112-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H272zM64 112v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zM176 96c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H176zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16zm384 80v16c0 44.2-35.8 80-80 80H544V272c0-44.2 35.8-80 80-80h16zm0 128c0 44.2-35.8 80-80 80H544V384c0-44.2 35.8-80 80-80h16v16zm0 112c0 44.2-35.8 80-80 80H544V496c0-44.2 35.8-80 80-80h16v16zM512 496v16H496c-44.2 0-80-35.8-80-80V416h16c44.2 0 80 35.8 80 80zm0-96H496c-44.2 0-80-35.8-80-80V304h16c44.2 0 80 35.8 80 80v16zm0-128v16H496c-44.2 0-80-35.8-80-80V192h16c44.2 0 80 35.8 80 80zM528 32c13.3 0 24 10.7 24 24V160c0 13.3-10.7 24-24 24s-24-10.7-24-24V56c0-13.3 10.7-24 24-24zm96 64v32c0 13.3-10.7 24-24 24s-24-10.7-24-24V96c0-13.3 10.7-24 24-24s24 10.7 24 24zM456 72c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24s-24-10.7-24-24V96c0-13.3 10.7-24 24-24z"]},aE={prefix:"fas",iconName:"person-breastfeeding",icon:[512,512,[],"e53a","M256 160c-44.2 0-80-35.8-80-80s35.8-80 80-80s80 35.8 80 80s-35.8 80-80 80zM468.8 382.8L405.5 462c-16.6 20.7-46.8 24.1-67.5 7.5c-17.6-14.1-22.7-38.1-13.5-57.7l-.7-.1c-38.9-5.6-74.3-25.1-99.7-54.8V320c0-17.7-14.3-32-32-32s-32 14.3-32 32v48c0 .8 0 1.6 .1 2.4l101.4 50.7c23.7 11.9 33.3 40.7 21.5 64.4s-40.7 33.3-64.4 21.5L59.2 427.3c-1.1-.5-2.2-1.1-3.3-1.7c-4.9-2.8-9.2-6.4-12.6-10.6c-4.6-5.4-7.8-11.7-9.6-18.4c-3.3-12-1.9-25.2 4.8-36.6c.6-1.1 1.3-2.2 2-3.2l67.1-100.6c26.7-40.1 71.7-64.1 119.8-64.1h75.2c46.5 0 90.1 22.5 117.2 60.3l50.7 70.9c2.2 3 4 6.1 5.5 9.4c2.9 6.7 4.3 13.8 4 20.8c-.3 10.6-4.2 21-11.2 29.4zM352 332c0-24.3-19.7-44-44-44s-44 19.7-44 44s19.7 44 44 44s44-19.7 44-44z"]},Tu={prefix:"fas",iconName:"right-to-bracket",icon:[512,512,["sign-in-alt"],"f2f6","M352 96h64c17.7 0 32 14.3 32 32V384c0 17.7-14.3 32-32 32H352c-17.7 0-32 14.3-32 32s14.3 32 32 32h64c53 0 96-43 96-96V128c0-53-43-96-96-96H352c-17.7 0-32 14.3-32 32s14.3 32 32 32zm-7.5 177.4c4.8-4.5 7.5-10.8 7.5-17.4s-2.7-12.9-7.5-17.4l-144-136c-7-6.6-17.2-8.4-26-4.6s-14.5 12.5-14.5 22v72H32c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H160v72c0 9.6 5.7 18.2 14.5 22s19 2 26-4.6l144-136z"]},nE=Tu,tE={prefix:"fas",iconName:"venus",icon:[384,512,[9792],"f221","M304 176c0 61.9-50.1 112-112 112s-112-50.1-112-112s50.1-112 112-112s112 50.1 112 112zM224 349.1c81.9-15 144-86.8 144-173.1C368 78.8 289.2 0 192 0S16 78.8 16 176c0 86.3 62.1 158.1 144 173.1V384H128c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v32c0 17.7 14.3 32 32 32s32-14.3 32-32V448h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H224V349.1z"]},sE={prefix:"fas",iconName:"passport",icon:[448,512,[],"f5ab","M0 64C0 28.7 28.7 0 64 0H384c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM183 278.8c-27.9-13.2-48.4-39.4-53.7-70.8h39.1c1.6 30.4 7.7 53.8 14.6 70.8zm41.3 9.2l-.3 0-.3 0c-2.4-3.5-5.7-8.9-9.1-16.5c-6-13.6-12.4-34.3-14.2-63.5h47.1c-1.8 29.2-8.1 49.9-14.2 63.5c-3.4 7.6-6.7 13-9.1 16.5zm40.7-9.2c6.8-17.1 12.9-40.4 14.6-70.8h39.1c-5.3 31.4-25.8 57.6-53.7 70.8zM279.6 176c-1.6-30.4-7.7-53.8-14.6-70.8c27.9 13.2 48.4 39.4 53.7 70.8H279.6zM223.7 96l.3 0 .3 0c2.4 3.5 5.7 8.9 9.1 16.5c6 13.6 12.4 34.3 14.2 63.5H200.5c1.8-29.2 8.1-49.9 14.2-63.5c3.4-7.6 6.7-13 9.1-16.5zM183 105.2c-6.8 17.1-12.9 40.4-14.6 70.8H129.3c5.3-31.4 25.8-57.6 53.7-70.8zM352 192c0-70.7-57.3-128-128-128S96 121.3 96 192s57.3 128 128 128s128-57.3 128-128zM112 384c-8.8 0-16 7.2-16 16s7.2 16 16 16H336c8.8 0 16-7.2 16-16s-7.2-16-16-16H112z"]},Pu={prefix:"fas",iconName:"heart-pulse",icon:[512,512,["heartbeat"],"f21e","M228.3 469.1L47.6 300.4c-4.2-3.9-8.2-8.1-11.9-12.4h87c22.6 0 43-13.6 51.7-34.5l10.5-25.2 49.3 109.5c3.8 8.5 12.1 14 21.4 14.1s17.8-5 22-13.3L320 253.7l1.7 3.4c9.5 19 28.9 31 50.1 31H476.3c-3.7 4.3-7.7 8.5-11.9 12.4L283.7 469.1c-7.5 7-17.4 10.9-27.7 10.9s-20.2-3.9-27.7-10.9zM503.7 240h-132c-3 0-5.8-1.7-7.2-4.4l-23.2-46.3c-4.1-8.1-12.4-13.3-21.5-13.3s-17.4 5.1-21.5 13.3l-41.4 82.8L205.9 158.2c-3.9-8.7-12.7-14.3-22.2-14.1s-18.1 5.9-21.8 14.8l-31.8 76.3c-1.2 3-4.2 4.9-7.4 4.9H16c-2.6 0-5 .4-7.3 1.1C3 225.2 0 208.2 0 190.9v-5.8c0-69.9 50.5-129.5 119.4-141C165 36.5 211.4 51.4 244 84l12 12 12-12c32.6-32.6 79-47.5 124.6-39.9C461.5 55.6 512 115.2 512 185.1v5.8c0 16.9-2.8 33.5-8.3 49.1z"]},iE=Pu,Eu={prefix:"fas",iconName:"people-carry-box",icon:[640,512,["people-carry"],"f4ce","M176 48c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48zM144 241.7v65.1l51 51c7.1 7.1 11.8 16.2 13.4 26.1l15.2 90.9c2.9 17.4-8.9 33.9-26.3 36.8s-33.9-8.9-36.8-26.3l-14.3-85.9L66.8 320C54.8 308 48 291.7 48 274.7V186.6c0-32.4 26.2-58.6 58.6-58.6c24.1 0 46.5 12 59.9 32l47.4 71.1 10.1 5V160c0-17.7 14.3-32 32-32H384c17.7 0 32 14.3 32 32v76.2l10.1-5L473.5 160c13.3-20 35.8-32 59.9-32c32.4 0 58.6 26.2 58.6 58.6v88.1c0 17-6.7 33.3-18.7 45.3l-79.4 79.4-14.3 85.9c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8l15.2-90.9c1.6-9.9 6.3-19 13.4-26.1l51-51V241.7l-19 28.5c-4.6 7-11 12.6-18.5 16.3l-59.6 29.8c-2.4 1.3-4.9 2.2-7.6 2.8c-2.6 .6-5.3 .9-7.9 .8H256.7c-2.5 .1-5-.2-7.5-.7c-2.9-.6-5.6-1.6-8.1-3l-59.5-29.8c-7.5-3.7-13.8-9.4-18.5-16.3l-19-28.5zM2.3 468.1L50.1 348.6l49.2 49.2-37.6 94c-6.6 16.4-25.2 24.4-41.6 17.8S-4.3 484.5 2.3 468.1zM512 96c-26.5 0-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48s-21.5 48-48 48zm77.9 252.6l47.8 119.5c6.6 16.4-1.4 35-17.8 41.6s-35-1.4-41.6-17.8l-37.6-94 49.2-49.2z"]},oE=Eu,fE={prefix:"fas",iconName:"temperature-high",icon:[512,512,[],"f769","M416 128c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm0 64c53 0 96-43 96-96s-43-96-96-96s-96 43-96 96s43 96 96 96zM96 112c0-26.5 21.5-48 48-48s48 21.5 48 48V276.5c0 17.3 7.1 31.9 15.3 42.5C217.8 332.6 224 349.5 224 368c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-18.5 6.2-35.4 16.7-48.9C88.9 308.4 96 293.8 96 276.5V112zM144 0C82.1 0 32 50.2 32 112V276.5c0 .1-.1 .3-.2 .6c-.2 .6-.8 1.6-1.7 2.8C11.2 304.2 0 334.8 0 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-33.2-11.3-63.8-30.1-88.1c-.9-1.2-1.5-2.2-1.7-2.8c-.1-.3-.2-.5-.2-.6V112C256 50.2 205.9 0 144 0zm0 416c26.5 0 48-21.5 48-48c0-20.9-13.4-38.7-32-45.3V112c0-8.8-7.2-16-16-16s-16 7.2-16 16V322.7c-18.6 6.6-32 24.4-32 45.3c0 26.5 21.5 48 48 48z"]},lE={prefix:"fas",iconName:"microchip",icon:[512,512,[],"f2db","M176 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64c-35.3 0-64 28.7-64 64H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H64v56H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H64v56H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H64c0 35.3 28.7 64 64 64v40c0 13.3 10.7 24 24 24s24-10.7 24-24V448h56v40c0 13.3 10.7 24 24 24s24-10.7 24-24V448h56v40c0 13.3 10.7 24 24 24s24-10.7 24-24V448c35.3 0 64-28.7 64-64h40c13.3 0 24-10.7 24-24s-10.7-24-24-24H448V280h40c13.3 0 24-10.7 24-24s-10.7-24-24-24H448V176h40c13.3 0 24-10.7 24-24s-10.7-24-24-24H448c0-35.3-28.7-64-64-64V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H280V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H176V24zM160 128H352c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32zm192 32H160V352H352V160z"]},uE={prefix:"fas",iconName:"crown",icon:[576,512,[128081],"f521","M309 106c11.4-7 19-19.7 19-34c0-22.1-17.9-40-40-40s-40 17.9-40 40c0 14.4 7.6 27 19 34L209.7 220.6c-9.1 18.2-32.7 23.4-48.6 10.7L72 160c5-6.7 8-15 8-24c0-22.1-17.9-40-40-40S0 113.9 0 136s17.9 40 40 40c.2 0 .5 0 .7 0L86.4 427.4c5.5 30.4 32 52.6 63 52.6H426.6c30.9 0 57.4-22.1 63-52.6L535.3 176c.2 0 .5 0 .7 0c22.1 0 40-17.9 40-40s-17.9-40-40-40s-40 17.9-40 40c0 9 3 17.3 8 24l-89.1 71.3c-15.9 12.7-39.5 7.5-48.6-10.7L309 106z"]},hE={prefix:"fas",iconName:"weight-hanging",icon:[512,512,[],"f5cd","M288 96c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm58.5 32c3.5-10 5.5-20.8 5.5-32c0-53-43-96-96-96s-96 43-96 96c0 11.2 1.9 22 5.5 32H120c-22 0-41.2 15-46.6 36.4l-72 288c-3.6 14.3-.4 29.5 8.7 41.2S33.2 512 48 512H464c14.8 0 28.7-6.8 37.8-18.5s12.3-26.8 8.7-41.2l-72-288C433.2 143 414 128 392 128H346.5z"]},pE={prefix:"fas",iconName:"xmarks-lines",icon:[640,512,[],"e59a","M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zm0 384c-17.7 0-32 14.3-32 32s14.3 32 32 32H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zM7 167c-9.4 9.4-9.4 24.6 0 33.9l55 55L7 311c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l55-55 55 55c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-55-55 55-55c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-55 55L41 167c-9.4-9.4-24.6-9.4-33.9 0zM265 167c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l55 55-55 55c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l55-55 55 55c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-55-55 55-55c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-55 55-55-55zM455 167c-9.4 9.4-9.4 24.6 0 33.9l55 55-55 55c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l55-55 55 55c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-55-55 55-55c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-55 55-55-55c-9.4-9.4-24.6-9.4-33.9 0z"]},mE={prefix:"fas",iconName:"file-prescription",icon:[384,512,[],"f572","M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM104 196h72c33.1 0 60 26.9 60 60c0 25.5-15.9 47.2-38.3 55.9l43 40.3 33.8-31c8.1-7.5 20.8-6.9 28.3 1.2s6.9 20.8-1.2 28.3L270 379.7l31.7 29.7c8.1 7.6 8.5 20.2 .9 28.3s-20.2 8.5-28.3 .9l-33.9-31.8-34.9 32c-8.1 7.5-20.8 6.9-28.3-1.2s-6.9-20.8 1.2-28.3l32.6-29.9-64.8-60.8c-.9-.8-1.6-1.7-2.3-2.6H124v44c0 11-9 20-20 20s-20-9-20-20V296 216c0-11 9-20 20-20zm72 80c11 0 20-9 20-20s-9-20-20-20H124v40h52z"]},Ou={prefix:"fas",iconName:"weight-scale",icon:[512,512,["weight"],"f496","M384 176c0 70.7-57.3 128-128 128s-128-57.3-128-128s57.3-128 128-128s128 57.3 128 128zm7.8-112C359.5 24.9 310.7 0 256 0S152.5 24.9 120.2 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H391.8zM296 224c0-10.6-4.1-20.2-10.9-27.4l33.6-78.3c3.5-8.1-.3-17.5-8.4-21s-17.5 .3-21 8.4L255.7 184c-22 .1-39.7 18-39.7 40c0 22.1 17.9 40 40 40s40-17.9 40-40z"]},vE=Ou,Ru={prefix:"fas",iconName:"user-group",icon:[640,512,[128101,"user-friends"],"f500","M352 128c0 70.7-57.3 128-128 128s-128-57.3-128-128S153.3 0 224 0s128 57.3 128 128zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM609.3 512H471.4c5.4-9.4 8.6-20.3 8.6-32v-8c0-60.7-27.1-115.2-69.8-151.8c2.4-.1 4.7-.2 7.1-.2h61.4C567.8 320 640 392.2 640 481.3c0 17-13.8 30.7-30.7 30.7zM432 256c-31 0-59-12.6-79.3-32.9C372.4 196.5 384 163.6 384 128c0-26.8-6.6-52.1-18.3-74.3C384.3 40.1 407.2 32 432 32c61.9 0 112 50.1 112 112s-50.1 112-112 112z"]},dE=Ru,Fu={prefix:"fas",iconName:"arrow-up-a-z",icon:[576,512,["sort-alpha-up"],"f15e","M183.6 42.4C177.5 35.8 169 32 160 32s-17.5 3.8-23.6 10.4l-88 96c-11.9 13-11.1 33.3 2 45.2s33.3 11.1 45.2-2L128 146.3V448c0 17.7 14.3 32 32 32s32-14.3 32-32V146.3l32.4 35.4c11.9 13 32.2 13.9 45.2 2s13.9-32.2 2-45.2l-88-96zM320 320c0 17.7 14.3 32 32 32h50.7l-73.4 73.4c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H429.3l73.4-73.4c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8H352c-17.7 0-32 14.3-32 32zM416 32c-12.1 0-23.2 6.8-28.6 17.7l-64 128-16 32c-7.9 15.8-1.5 35 14.3 42.9s35 1.5 42.9-14.3l7.2-14.3h88.4l7.2 14.3c7.9 15.8 27.1 22.2 42.9 14.3s22.2-27.1 14.3-42.9l-16-32-64-128C439.2 38.8 428.1 32 416 32zM395.8 176L416 135.6 436.2 176H395.8z"]},HE=Fu,zE={prefix:"fas",iconName:"chess-knight",icon:[384,512,[9822],"f441","M32 391.6V416H352V224c0-106-86-192-192-192H12.9C5.8 32 0 37.8 0 44.9c0 2 .5 4 1.4 5.8L16 80 9.4 86.6c-6 6-9.4 14.1-9.4 22.6V242.3c0 13.1 8 24.9 20.1 29.7l46.5 18.6c8.5 3.4 18 3 26.2-1.1l6.6-3.3c8-4 14-11.2 16.5-19.8l8.3-28.9c2.5-8.6 8.4-15.8 16.5-19.8L160 208v40.4c0 24.2-13.7 46.4-35.4 57.2L67.4 334.3C45.7 345.2 32 367.3 32 391.6zM72 148c0 11-9 20-20 20s-20-9-20-20s9-20 20-20s20 9 20 20zM352 448H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H352c17.7 0 32-14.3 32-32s-14.3-32-32-32z"]},Bu={prefix:"fas",iconName:"face-laugh-squint",icon:[512,512,["laugh-squint"],"f59b","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM96.8 314.1c-3.8-13.7 7.4-26.1 21.6-26.1H393.6c14.2 0 25.5 12.4 21.6 26.1C396.2 382 332.1 432 256 432s-140.2-50-159.2-117.9zm36.7-199.4l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6c0-9 9.6-14.7 17.5-10.5zM396 125.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5z"]},gE=Bu,VE={prefix:"fas",iconName:"wheelchair",icon:[576,512,[],"f193","M224 96c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zM152.5 247.2c12.4-4.7 18.7-18.5 14-30.9s-18.5-18.7-30.9-14C75.1 225.1 32 283.5 32 352c0 88.4 71.6 160 160 160c61.2 0 114.3-34.3 141.2-84.7c6.2-11.7 1.8-26.2-9.9-32.5s-26.2-1.8-32.5 9.9C272 440 234.8 464 192 464c-61.9 0-112-50.1-112-112c0-47.9 30.1-88.8 72.5-104.8zM291.8 176l-1.9-9.7c-4.5-22.3-24-38.3-46.8-38.3c-30.1 0-52.7 27.5-46.8 57l23.1 115.5c6 29.9 32.2 51.4 62.8 51.4h5.1c.4 0 .8 0 1.3 0h94.1c6.7 0 12.6 4.1 15 10.4L434 459.2c6 16.1 23.8 24.6 40.1 19.1l48-16c16.8-5.6 25.8-23.7 20.2-40.5s-23.7-25.8-40.5-20.2l-18.7 6.2-25.5-68c-11.7-31.2-41.6-51.9-74.9-51.9H314.2l-9.6-48H368c17.7 0 32-14.3 32-32s-14.3-32-32-32H291.8z"]},Du={prefix:"fas",iconName:"circle-arrow-up",icon:[512,512,["arrow-circle-up"],"f0aa","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM385 215c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-71-71V392c0 13.3-10.7 24-24 24s-24-10.7-24-24V177.9l-71 71c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L239 103c9.4-9.4 24.6-9.4 33.9 0L385 215z"]},ME=Du,CE={prefix:"fas",iconName:"toggle-on",icon:[576,512,[],"f205","M192 64C86 64 0 150 0 256S86 448 192 448H384c106 0 192-86 192-192s-86-192-192-192H192zM384 352c-53 0-96-43-96-96s43-96 96-96s96 43 96 96s-43 96-96 96z"]},Iu={prefix:"fas",iconName:"person-walking",icon:[320,512,[128694,"walking"],"f554","M256 48c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48zM126.5 199.3c-1 .4-1.9 .8-2.9 1.2l-8 3.5c-16.4 7.3-29 21.2-34.7 38.2l-2.6 7.8c-5.6 16.8-23.7 25.8-40.5 20.2s-25.8-23.7-20.2-40.5l2.6-7.8c11.4-34.1 36.6-61.9 69.4-76.5l8-3.5c20.8-9.2 43.3-14 66.1-14c44.6 0 84.8 26.8 101.9 67.9L281 232.7l21.4 10.7c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3L247 287.3c-10.3-5.2-18.4-13.8-22.8-24.5l-9.6-23-19.3 65.5 49.5 54c5.4 5.9 9.2 13 11.2 20.8l23 92.1c4.3 17.1-6.1 34.5-23.3 38.8s-34.5-6.1-38.8-23.3l-22-88.1-70.7-77.1c-14.8-16.1-20.3-38.6-14.7-59.7l16.9-63.5zM68.7 398l25-62.4c2.1 3 4.5 5.8 7 8.6l40.7 44.4-14.5 36.2c-2.4 6-6 11.5-10.6 16.1L54.6 502.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L68.7 398z"]},LE=Iu,yE={prefix:"fas",iconName:"l",icon:[320,512,[108],"4c","M64 32c17.7 0 32 14.3 32 32V416H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V64c0-17.7 14.3-32 32-32z"]},bE={prefix:"fas",iconName:"fire",icon:[448,512,[128293],"f06d","M159.3 5.4c7.8-7.3 19.9-7.2 27.7 .1c27.6 25.9 53.5 53.8 77.7 84c11-14.4 23.5-30.1 37-42.9c7.9-7.4 20.1-7.4 28 .1c34.6 33 63.9 76.6 84.5 118c20.3 40.8 33.8 82.5 33.8 111.9C448 404.2 348.2 512 224 512C98.4 512 0 404.1 0 276.5c0-38.4 17.8-85.3 45.4-131.7C73.3 97.7 112.7 48.6 159.3 5.4zM225.7 416c25.3 0 47.7-7 68.8-21c42.1-29.4 53.4-88.2 28.1-134.4c-2.8-5.6-5.6-11.2-9.8-16.8l-50.6 58.8s-81.4-103.6-87.1-110.6C133.1 243.8 112 273.2 112 306.8C112 375.4 162.6 416 225.7 416z"]},Uu={prefix:"fas",iconName:"bed-pulse",icon:[640,512,["procedures"],"f487","M483.2 9.6L524 64h92c13.3 0 24 10.7 24 24s-10.7 24-24 24H512c-7.6 0-14.7-3.6-19.2-9.6L468.7 70.3l-47 99.9c-3.7 7.8-11.3 13.1-19.9 13.7s-16.9-3.4-21.7-10.6L339.2 112H216c-13.3 0-24-10.7-24-24s10.7-24 24-24H352c8 0 15.5 4 20 10.7l24.4 36.6 45.9-97.5C445.9 6.2 453.2 1 461.6 .1s16.6 2.7 21.6 9.5zM320 160h12.7l20.7 31.1c11.2 16.8 30.6 26.3 50.7 24.8s37.9-13.7 46.5-32L461.9 160H544c53 0 96 43 96 96V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H352 320 64v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V96C0 78.3 14.3 64 32 64s32 14.3 32 32V352H288V192c0-17.7 14.3-32 32-32zM176 320c-44.2 0-80-35.8-80-80s35.8-80 80-80s80 35.8 80 80s-35.8 80-80 80z"]},xE=Uu,Wu={prefix:"fas",iconName:"shuttle-space",icon:[640,512,["space-shuttle"],"f197","M130 480c40.6 0 80.4-11 115.2-31.9L352 384l-224 0 0 96h2zM352 128L245.2 63.9C210.4 43 170.6 32 130 32h-2v96l224 0zM96 128l0-96H80C53.5 32 32 53.5 32 80v48h8c-22.1 0-40 17.9-40 40v16V328v16c0 22.1 17.9 40 40 40H32v48c0 26.5 21.5 48 48 48H96l0-96h8c26.2 0 49.4-12.6 64-32H456c69.3 0 135-22.7 179.2-81.6c6.4-8.5 6.4-20.3 0-28.8C591 182.7 525.3 160 456 160H168c-14.6-19.4-37.8-32-64-32l-8 0zM512 243.6v24.9c0 19.6-15.9 35.6-35.6 35.6c-2.5 0-4.4-2-4.4-4.4V212.4c0-2.5 2-4.4 4.4-4.4c19.6 0 35.6 15.9 35.6 35.6z"]},SE=Wu,$u={prefix:"fas",iconName:"face-laugh",icon:[512,512,["laugh"],"f599","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM96.8 314.1c-3.8-13.7 7.4-26.1 21.6-26.1H393.6c14.2 0 25.5 12.4 21.6 26.1C396.2 382 332.1 432 256 432s-140.2-50-159.2-117.9zM208.4 192c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm128 32c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},wE=$u,NE={prefix:"fas",iconName:"folder-open",icon:[576,512,[128194,128449,61717],"f07c","M88.7 223.8L0 375.8V96C0 60.7 28.7 32 64 32H181.5c17 0 33.3 6.7 45.3 18.7l26.5 26.5c12 12 28.3 18.7 45.3 18.7H416c35.3 0 64 28.7 64 64v32H144c-22.8 0-43.8 12.1-55.3 31.8zm27.6 16.1C122.1 230 132.6 224 144 224H544c11.5 0 22 6.1 27.7 16.1s5.7 22.2-.1 32.1l-112 192C453.9 474 443.4 480 432 480H32c-11.5 0-22-6.1-27.7-16.1s-5.7-22.2 .1-32.1l112-192z"]},AE={prefix:"fas",iconName:"heart-circle-plus",icon:[576,512,[],"e500","M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176c28.3 0 55 6.7 78.7 18.5c.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5zM432 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm16-208v48h48c8.8 0 16 7.2 16 16s-7.2 16-16 16H448v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V384H368c-8.8 0-16-7.2-16-16s7.2-16 16-16h48V304c0-8.8 7.2-16 16-16s16 7.2 16 16z"]},_E={prefix:"fas",iconName:"code-fork",icon:[448,512,[],"e13b","M80 104c13.3 0 24-10.7 24-24s-10.7-24-24-24S56 66.7 56 80s10.7 24 24 24zm80-24c0 32.8-19.7 61-48 73.3V192c0 17.7 14.3 32 32 32H304c17.7 0 32-14.3 32-32V153.3C307.7 141 288 112.8 288 80c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V192c0 53-43 96-96 96H256v70.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V288H144c-53 0-96-43-96-96V153.3C19.7 141 0 112.8 0 80C0 35.8 35.8 0 80 0s80 35.8 80 80zm208 24c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24zM248 432c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24z"]},kE={prefix:"fas",iconName:"city",icon:[640,512,[127961],"f64f","M480 48c0-26.5-21.5-48-48-48H336c-26.5 0-48 21.5-48 48V96H224V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V96H112V24c0-13.3-10.7-24-24-24S64 10.7 64 24V96H48C21.5 96 0 117.5 0 144v96V464c0 26.5 21.5 48 48 48H304h32 96H592c26.5 0 48-21.5 48-48V240c0-26.5-21.5-48-48-48H480V48zm96 320v32c0 8.8-7.2 16-16 16H528c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16zM240 416H208c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16zM128 400c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32zM560 256c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H528c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h32zM256 176v32c0 8.8-7.2 16-16 16H208c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16zM112 160c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h32zM256 304c0 8.8-7.2 16-16 16H208c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32zM112 320H80c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16zm304-48v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16zM400 64c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V80c0-8.8 7.2-16 16-16h32zm16 112v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16z"]},qu={prefix:"fas",iconName:"microphone-lines",icon:[384,512,[127897,"microphone-alt"],"f3c9","M96 96V256c0 53 43 96 96 96s96-43 96-96H208c-8.8 0-16-7.2-16-16s7.2-16 16-16h80V192H208c-8.8 0-16-7.2-16-16s7.2-16 16-16h80V128H208c-8.8 0-16-7.2-16-16s7.2-16 16-16h80c0-53-43-96-96-96S96 43 96 96zM320 240v16c0 70.7-57.3 128-128 128s-128-57.3-128-128V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 89.1 66.2 162.7 152 174.4V464H120c-13.3 0-24 10.7-24 24s10.7 24 24 24h72 72c13.3 0 24-10.7 24-24s-10.7-24-24-24H216V430.4c85.8-11.7 152-85.3 152-174.4V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v24z"]},TE=qu,PE={prefix:"fas",iconName:"pepper-hot",icon:[512,512,[127798],"f816","M428.3 3c11.6-6.4 26.2-2.3 32.6 9.3l4.8 8.7c19.3 34.7 19.8 75.7 3.4 110C495.8 159.6 512 197.9 512 240c0 18.5-3.1 36.3-8.9 52.8c-6.1 17.3-28.5 16.3-36.8-.1l-11.7-23.4c-4.1-8.1-12.4-13.3-21.5-13.3H360c-13.3 0-24-10.7-24-24V152c0-13.3-10.7-24-24-24l-17.1 0c-21.3 0-30-23.9-10.8-32.9C304.7 85.4 327.7 80 352 80c28.3 0 54.8 7.3 77.8 20.2c5.5-18.2 3.7-38.4-6-55.8L419 35.7c-6.4-11.6-2.3-26.2 9.3-32.6zM171.2 345.5L264 160l40 0v80c0 26.5 21.5 48 48 48h76.2l23.9 47.8C372.3 443.9 244.3 512 103.2 512H44.4C19.9 512 0 492.1 0 467.6c0-20.8 14.5-38.8 34.8-43.3l49.8-11.1c37.6-8.4 69.5-33.2 86.7-67.7z"]},EE={prefix:"fas",iconName:"unlock",icon:[448,512,[128275],"f09c","M144 144c0-44.2 35.8-80 80-80c31.9 0 59.4 18.6 72.3 45.7c7.6 16 26.7 22.8 42.6 15.2s22.8-26.7 15.2-42.6C331 33.7 281.5 0 224 0C144.5 0 80 64.5 80 144v48H64c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V256c0-35.3-28.7-64-64-64H144V144z"]},OE={prefix:"fas",iconName:"colon-sign",icon:[384,512,[],"e140","M255 39.8c4.3-17.1-6.1-34.5-23.3-38.8S197.2 7.1 193 24.2L181.9 68.6C96.1 87.8 32 164.4 32 256c0 58.1 25.8 110.2 66.7 145.4L81 472.2c-4.3 17.1 6.1 34.5 23.3 38.8s34.5-6.1 38.8-23.3l13-52.1c9 3.4 18.4 6.2 28 8.2L177 472.2c-4.3 17.1 6.1 34.5 23.3 38.8s34.5-6.1 38.8-23.3l10.4-41.4c33.4-4.4 64.1-17.4 89.8-36.7c14.1-10.6 17-30.7 6.4-44.8s-30.7-17-44.8-6.4c-10.2 7.7-21.7 13.9-34 18.3L321 160c9.4-.3 18.5-4.7 24.6-12.8c10.6-14.1 7.8-34.2-6.4-44.8c-1.1-.8-2.2-1.6-3.3-2.4L351 39.8c4.3-17.1-6.1-34.5-23.3-38.8S293.2 7.1 289 24.2L277.1 71.5c-9.3-2.7-18.8-4.6-28.6-5.9L255 39.8zM163.2 143.3L117.3 326.8C103.9 306.5 96 282.2 96 256c0-48.7 27.2-91 67.2-112.7zm8.6 229.5l61.1-244.6c9.9 .7 19.5 2.5 28.7 5.3l-62 248.1c-9.7-1.9-19-4.8-27.8-8.8z"]},RE={prefix:"fas",iconName:"headset",icon:[512,512,[],"f590","M256 48C141.1 48 48 141.1 48 256v40c0 13.3-10.7 24-24 24s-24-10.7-24-24V256C0 114.6 114.6 0 256 0S512 114.6 512 256V400.1c0 48.6-39.4 88-88.1 88L313.6 488c-8.3 14.3-23.8 24-41.6 24H240c-26.5 0-48-21.5-48-48s21.5-48 48-48h32c17.8 0 33.3 9.7 41.6 24l110.4 .1c22.1 0 40-17.9 40-40V256c0-114.9-93.1-208-208-208zM144 208h16c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32H144c-35.3 0-64-28.7-64-64V272c0-35.3 28.7-64 64-64zm224 0c35.3 0 64 28.7 64 64v48c0 35.3-28.7 64-64 64H352c-17.7 0-32-14.3-32-32V240c0-17.7 14.3-32 32-32h16z"]},FE={prefix:"fas",iconName:"store-slash",icon:[640,512,[],"e071","M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-86.8-68V384 252.6c-4 1-8 1.8-12.3 2.3l-.1 0c-5.3 .7-10.7 1.1-16.2 1.1c-12.4 0-24.3-1.9-35.4-5.3V350.9L301.2 210.7c7-4.4 13.3-9.7 18.8-15.7c15.9 17.6 39.1 29 65.2 29c26.2 0 49.3-11.4 65.2-29c16 17.6 39.1 29 65.2 29c4.1 0 8.1-.3 12.1-.8c55.5-7.4 81.8-72.5 52.1-119.4L522.3 13.1C517.2 5 508.1 0 498.4 0H141.6c-9.7 0-18.8 5-23.9 13.1l-22.7 36L38.8 5.1zm73.4 218.1c4 .5 8.1 .8 12.1 .8c11 0 21.4-2 31-5.6L48.9 134.5c-6.1 40.6 19.5 82.8 63.3 88.7zM160 384V250.6c-11.2 3.5-23.2 5.4-35.6 5.4c-5.5 0-11-.4-16.3-1.1l-.1 0c-4.1-.6-8.1-1.3-12-2.3V384v64c0 35.3 28.7 64 64 64H480c12.9 0 24.8-3.8 34.9-10.3L365.5 384H160z"]},BE={prefix:"fas",iconName:"road-circle-xmark",icon:[640,512,[],"e566","M213.2 32H288V96c0 17.7 14.3 32 32 32s32-14.3 32-32V32h74.8c27.1 0 51.3 17.1 60.3 42.6l42.7 120.6c-10.9-2.1-22.2-3.2-33.8-3.2c-59.5 0-112.1 29.6-144 74.8V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 17.7 14.3 32 32 32c2.3 0 4.6-.3 6.8-.7c-4.5 15.5-6.8 31.8-6.8 48.7c0 5.4 .2 10.7 .7 16l-.7 0c-17.7 0-32 14.3-32 32v64H86.6C56.5 480 32 455.5 32 425.4c0-6.2 1.1-12.4 3.1-18.2L152.9 74.6C162 49.1 186.1 32 213.2 32zM496 512c-79.5 0-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144s-64.5 144-144 144zm22.6-144l36.7-36.7c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L496 345.4l-36.7-36.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L473.4 368l-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L496 390.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L518.6 368z"]},DE={prefix:"fas",iconName:"user-minus",icon:[640,512,[],"f503","M352 128c0 70.7-57.3 128-128 128s-128-57.3-128-128S153.3 0 224 0s128 57.3 128 128zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM472 200H616c13.3 0 24 10.7 24 24s-10.7 24-24 24H472c-13.3 0-24-10.7-24-24s10.7-24 24-24z"]},Gu={prefix:"fas",iconName:"mars-stroke-up",icon:[320,512,[9896,"mars-stroke-v"],"f22a","M148.7 4.7c6.2-6.2 16.4-6.2 22.6 0l64 64c4.6 4.6 5.9 11.5 3.5 17.4s-8.3 9.9-14.8 9.9H184v24h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H184v24c0 .6 0 1.2-.1 1.8c77 11.6 136.1 78 136.1 158.2c0 88.4-71.6 160-160 160S0 440.4 0 352c0-80.2 59.1-146.7 136.1-158.2c0-.6-.1-1.2-.1-1.8V168H104c-13.3 0-24-10.7-24-24s10.7-24 24-24h32V96H96c-6.5 0-12.3-3.9-14.8-9.9s-1.1-12.9 3.5-17.4l64-64zM256 352c0-53-43-96-96-96s-96 43-96 96s43 96 96 96s96-43 96-96z"]},IE=Gu,ju={prefix:"fas",iconName:"champagne-glasses",icon:[640,512,[129346,"glass-cheers"],"f79f","M320 128V49.1L186.6 .3c-11.4-4.2-24 .9-29.5 11.7L71.8 181.1c-30.8 61-8 133.8 48.1 167.4l-28 77.4L32.1 403.9C19.7 399.4 6 405.8 1.4 418.3s1.9 26.3 14.3 30.8l164.6 60.3c12.4 4.5 26.1-1.9 30.6-14.4s-1.9-26.3-14.3-30.8l-59.9-21.9 28-77.3c68.1 11.6 135.7-32.8 150.1-103.6l5.1-24.8 5.1 24.8c14.5 70.8 82 115.2 150.1 103.6l28 77.3-59.9 21.9c-12.4 4.5-18.8 18.3-14.3 30.8s18.2 18.9 30.6 14.4l164.6-60.3c12.4-4.5 18.8-18.3 14.3-30.8s-18.2-18.9-30.6-14.4l-59.9 21.9-28-77.4c56.1-33.6 78.8-106.4 48.1-167.4L482.9 12C477.4 1.1 464.7-3.9 453.4 .3L320 49.1V128h0zm-35.7 44.4L153.9 124.6l36.3-71.9L300.6 93.1l-16.2 79.3zm71.3 0L339.4 93.1 449.8 52.7l36.3 71.9L355.7 172.4z"]},UE=ju,WE={prefix:"fas",iconName:"clipboard",icon:[384,512,[128203],"f328","M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM112 192H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16z"]},$E={prefix:"fas",iconName:"house-circle-exclamation",icon:[640,512,[],"e50a","M320.7 351.7C329 262.1 404.3 192 496 192c8.9 0 17.6 .7 26.1 1.9L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32V480c0 17.7 14.3 32 32 32H192c17.7 0 32-14.3 32-32V383.7c0-17.7 14.3-32 32-32h64l.7 0zM496 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm0-48c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zm0-192c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z"]},Ku={prefix:"fas",iconName:"file-arrow-up",icon:[384,512,["file-upload"],"f574","M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM216 408c0 13.3-10.7 24-24 24s-24-10.7-24-24V305.9l-31 31c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l72-72c9.4-9.4 24.6-9.4 33.9 0l72 72c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-31-31V408z"]},qE=Ku,xa={prefix:"fas",iconName:"wifi",icon:[640,512,["wifi-3","wifi-strong"],"f1eb","M54.2 202.9C123.2 136.7 216.8 96 320 96s196.8 40.7 265.8 106.9c12.8 12.2 33 11.8 45.2-.9s11.8-33-.9-45.2C549.7 79.5 440.4 32 320 32S90.3 79.5 9.8 156.7C-2.9 169-3.3 189.2 8.9 202s32.5 13.2 45.2 .9zM320 256c56.8 0 108.6 21.1 148.2 56c13.3 11.7 33.5 10.4 45.2-2.8s10.4-33.5-2.8-45.2C459.8 219.2 393 192 320 192s-139.8 27.2-190.5 72c-13.3 11.7-14.5 31.9-2.8 45.2s31.9 14.5 45.2 2.8c39.5-34.9 91.3-56 148.2-56zm64 160c0-35.3-28.7-64-64-64s-64 28.7-64 64s28.7 64 64 64s64-28.7 64-64z"]},GE=xa,jE=xa,Xu={prefix:"fas",iconName:"bath",icon:[512,512,[128705,"bathtub"],"f2cd","M96 77.3c0-7.3 5.9-13.3 13.3-13.3c3.5 0 6.9 1.4 9.4 3.9l14.9 14.9C130 91.8 128 101.7 128 112c0 19.9 7.2 38 19.2 52c-5.3 9.2-4 21.1 3.8 29c9.4 9.4 24.6 9.4 33.9 0L289 89c9.4-9.4 9.4-24.6 0-33.9c-7.9-7.9-19.8-9.1-29-3.8C246 39.2 227.9 32 208 32c-10.3 0-20.2 2-29.2 5.5L163.9 22.6C149.4 8.1 129.7 0 109.3 0C66.6 0 32 34.6 32 77.3V256c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H96V77.3zM32 352v16c0 28.4 12.4 54 32 71.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V464H384v16c0 17.7 14.3 32 32 32s32-14.3 32-32V439.6c19.6-17.6 32-43.1 32-71.6V352H32z"]},KE=Xu,XE={prefix:"fas",iconName:"underline",icon:[448,512,[],"f0cd","M16 64c0-17.7 14.3-32 32-32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H128V224c0 53 43 96 96 96s96-43 96-96V96H304c-17.7 0-32-14.3-32-32s14.3-32 32-32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H384V224c0 88.4-71.6 160-160 160s-160-71.6-160-160V96H48C30.3 96 16 81.7 16 64zM0 448c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32z"]},Yu={prefix:"fas",iconName:"user-pen",icon:[640,512,["user-edit"],"f4ff","M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0S96 57.3 96 128s57.3 128 128 128zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H322.8c-3.1-8.8-3.7-18.4-1.4-27.8l15-60.1c2.8-11.3 8.6-21.5 16.8-29.7l40.3-40.3c-32.1-31-75.7-50.1-123.9-50.1H178.3zm435.5-68.3c-15.6-15.6-40.9-15.6-56.6 0l-29.4 29.4 71 71 29.4-29.4c15.6-15.6 15.6-40.9 0-56.6l-14.4-14.4zM375.9 417c-4.1 4.1-7 9.2-8.4 14.9l-15 60.1c-1.4 5.5 .2 11.2 4.2 15.2s9.7 5.6 15.2 4.2l60.1-15c5.6-1.4 10.8-4.3 14.9-8.4L576.1 358.7l-71-71L375.9 417z"]},YE=Yu,JE={prefix:"fas",iconName:"signature",icon:[640,512,[],"f5b7","M192 128c0-17.7 14.3-32 32-32s32 14.3 32 32v7.8c0 27.7-2.4 55.3-7.1 82.5l-84.4 25.3c-40.6 12.2-68.4 49.6-68.4 92v71.9c0 40 32.5 72.5 72.5 72.5c26 0 50-13.9 62.9-36.5l13.9-24.3c26.8-47 46.5-97.7 58.4-150.5l94.4-28.3-12.5 37.5c-3.3 9.8-1.6 20.5 4.4 28.8s15.7 13.3 26 13.3H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H460.4l18-53.9c3.8-11.3 .9-23.8-7.4-32.4s-20.7-11.8-32.2-8.4L316.4 198.1c2.4-20.7 3.6-41.4 3.6-62.3V128c0-53-43-96-96-96s-96 43-96 96v32c0 17.7 14.3 32 32 32s32-14.3 32-32V128zm-9.2 177l49-14.7c-10.4 33.8-24.5 66.4-42.1 97.2l-13.9 24.3c-1.5 2.6-4.3 4.3-7.4 4.3c-4.7 0-8.5-3.8-8.5-8.5V335.6c0-14.1 9.3-26.6 22.8-30.7zM24 368c-13.3 0-24 10.7-24 24s10.7 24 24 24H64.3c-.2-2.8-.3-5.6-.3-8.5V368H24zm592 48c13.3 0 24-10.7 24-24s-10.7-24-24-24H305.9c-6.7 16.3-14.2 32.3-22.3 48H616z"]},QE={prefix:"fas",iconName:"stroopwafel",icon:[512,512,[],"f551","M256 496c132.5 0 240-107.5 240-240S388.5 16 256 16S16 123.5 16 256s107.5 240 240 240zM235.3 76.7L256 97.4l20.7-20.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6L278.6 120 324 165.4 357.4 132l-16.7-16.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L380 109.4l8.7-8.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6l-8.7 8.7 16.7 16.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L380 154.6 346.6 188 392 233.4l20.7-20.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6L414.6 256l20.7 20.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L392 278.6 346.6 324 380 357.4l16.7-16.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6L402.6 380l8.7 8.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0l-8.7-8.7-16.7 16.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L357.4 380 324 346.6 278.6 392l20.7 20.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L256 414.6l-20.7 20.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L233.4 392 188 346.6 154.6 380l16.7 16.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L132 402.6l-8.7 8.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l8.7-8.7L92.7 363.3c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L132 357.4 165.4 324 120 278.6 99.3 299.3c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L97.4 256 76.7 235.3c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L120 233.4 165.4 188 132 154.6l-16.7 16.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L109.4 132l-8.7-8.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0l8.7 8.7 16.7-16.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6L154.6 132 188 165.4 233.4 120 212.7 99.3c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0zM210.6 188L256 233.4 301.4 188 256 142.6 210.6 188zm68 68L324 301.4 369.4 256 324 210.6 278.6 256zM256 278.6L210.6 324 256 369.4 301.4 324 256 278.6zM233.4 256L188 210.6 142.6 256 188 301.4 233.4 256z"]},ZE={prefix:"fas",iconName:"bold",icon:[384,512,[],"f032","M0 64C0 46.3 14.3 32 32 32H80 96 224c70.7 0 128 57.3 128 128c0 31.3-11.3 60.1-30 82.3c37.1 22.4 62 63.1 62 109.7c0 70.7-57.3 128-128 128H96 80 32c-17.7 0-32-14.3-32-32s14.3-32 32-32H48V256 96H32C14.3 96 0 81.7 0 64zM224 224c35.3 0 64-28.7 64-64s-28.7-64-64-64H112V224H224zM112 288V416H256c35.3 0 64-28.7 64-64s-28.7-64-64-64H224 112z"]},cO={prefix:"fas",iconName:"anchor-lock",icon:[640,512,[],"e4ad","M256 96c0-17.7 14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32s-32-14.3-32-32zm85.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h32V448H208c-53 0-96-43-96-96v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7V352c0 88.4 71.6 160 160 160h80 80c8 0 15.9-.6 23.6-1.7c-4.8-9-7.6-19.3-7.6-30.3V446.7c-5.2 .9-10.5 1.3-16 1.3H320V240h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H341.1zM528 240c17.7 0 32 14.3 32 32v48H496V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z"]},eO={prefix:"fas",iconName:"building-ngo",icon:[384,512,[],"e4d7","M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM168 64h48c8.8 0 16 7.2 16 16s-7.2 16-16 16H184v64h16V144c0-8.8 7.2-16 16-16s16 7.2 16 16v24c0 13.3-10.7 24-24 24H176c-13.3 0-24-10.7-24-24V80c0-8.8 7.2-16 16-16zM304 96c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16s16-7.2 16-16V112c0-8.8-7.2-16-16-16zm-48 16c0-26.5 21.5-48 48-48s48 21.5 48 48v32c0 26.5-21.5 48-48 48s-48-21.5-48-48V112zM61.3 71.1l34.7 52V80c0-8.8 7.2-16 16-16s16 7.2 16 16v96c0 7.1-4.6 13.3-11.4 15.3s-14-.6-17.9-6.4L64 132.8V176c0 8.8-7.2 16-16 16s-16-7.2-16-16V80c0-7.1 4.6-13.3 11.4-15.3s14 .6 17.9 6.4z"]},rO={prefix:"fas",iconName:"manat-sign",icon:[384,512,[],"e1d5","M192 32c-17.7 0-32 14.3-32 32V98.7C69.2 113.9 0 192.9 0 288V448c0 17.7 14.3 32 32 32s32-14.3 32-32V288c0-59.6 40.8-109.8 96-124V448c0 17.7 14.3 32 32 32s32-14.3 32-32V164c55.2 14.2 96 64.3 96 124V448c0 17.7 14.3 32 32 32s32-14.3 32-32V288c0-95.1-69.2-174.1-160-189.3V64c0-17.7-14.3-32-32-32z"]},aO={prefix:"fas",iconName:"not-equal",icon:[448,512,[],"f53e","M369.8 37.4c14.7 9.8 18.7 29.7 8.9 44.4L337.1 144H400c17.7 0 32 14.3 32 32s-14.3 32-32 32H294.5l-64 96H400c17.7 0 32 14.3 32 32s-14.3 32-32 32H187.8l-65.2 97.7c-9.8 14.7-29.7 18.7-44.4 8.9s-18.7-29.7-8.9-44.4L110.9 368H48c-17.7 0-32-14.3-32-32s14.3-32 32-32H153.5l64-96H48c-17.7 0-32-14.3-32-32s14.3-32 32-32H260.2l65.2-97.7c9.8-14.7 29.7-18.7 44.4-8.9z"]},Ju={prefix:"fas",iconName:"border-top-left",icon:[448,512,["border-style"],"f853","M0 448c0 17.7 14.3 32 32 32s32-14.3 32-32l0-336c0-8.8 7.2-16 16-16l336 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L80 32C35.8 32 0 67.8 0 112L0 448zm160 0c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zm192 0c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zm-96 0c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zm192 0c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM416 288c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm0 32c-17.7 0-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32s-14.3-32-32-32zm0-128c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z"]},nO=Ju,Qu={prefix:"fas",iconName:"map-location-dot",icon:[576,512,["map-marked-alt"],"f5a0","M408 120c0 54.6-73.1 151.9-105.2 192c-7.7 9.6-22 9.6-29.6 0C241.1 271.9 168 174.6 168 120C168 53.7 221.7 0 288 0s120 53.7 120 120zm8 80.4c3.5-6.9 6.7-13.8 9.6-20.6c.5-1.2 1-2.5 1.5-3.7l116-46.4C558.9 123.4 576 135 576 152V422.8c0 9.8-6 18.6-15.1 22.3L416 503V200.4zM137.6 138.3c2.4 14.1 7.2 28.3 12.8 41.5c2.9 6.8 6.1 13.7 9.6 20.6V451.8L32.9 502.7C17.1 509 0 497.4 0 480.4V209.6c0-9.8 6-18.6 15.1-22.3l122.6-49zM327.8 332c13.9-17.4 35.7-45.7 56.2-77V504.3L192 449.4V255c20.5 31.3 42.3 59.6 56.2 77c20.5 25.6 59.1 25.6 79.6 0zM288 152c22.1 0 40-17.9 40-40s-17.9-40-40-40s-40 17.9-40 40s17.9 40 40 40z"]},tO=Qu,sO={prefix:"fas",iconName:"jedi",icon:[576,512,[],"f669","M246 315.7l-21.2-31.9c-2.1-3.2-1.7-7.4 1-10.1s6.9-3.1 10.1-1l29.5 19.7c2.1 1.4 4.9 0 5-2.6L279.7 8c.1-4.5 3.8-8 8.3-8s8.1 3.5 8.3 8l9.4 281.9c.1 2.5 2.9 3.9 5 2.6l29.5-19.7c3.2-2.1 7.4-1.7 10.1 1s3.1 6.9 1 10.1L330 315.7c-1.3 1.9-.2 4.5 2 4.9l37.6 7.5c3.7 .7 6.4 4 6.4 7.8s-2.7 7.1-6.4 7.8L332 351.4c-2.2 .4-3.3 3-2 4.9l21.2 31.9c2.1 3.2 1.7 7.4-1 10.1s-6.9 3.1-10.1 1l-26.3-17.6c-2.2-1.4-5.1 .2-5 2.8l2.1 61.5C370.6 435.2 416 382.9 416 320c0-37-15.7-70.4-40.8-93.7c-7-6.5-6.5-18.6 1-24.4C410.1 175.5 432 134.3 432 88c0-16.8-2.9-33-8.2-48c-4.6-13 10.2-30 21.4-22c53.5 38 92.7 94.8 107.8 160.7c.5 2.1-.2 4.3-1.7 5.9l-28.4 28.4c-4 4-1.2 10.9 4.5 10.9h26c3.4 0 6.2 2.6 6.3 6c.1 3.3 .2 6.6 .2 10c0 17.5-1.7 34.7-4.8 51.3c-.2 1.2-.9 2.4-1.7 3.3l-46.5 46.5c-4 4-1.2 10.9 4.5 10.9H526c4.6 0 7.7 4.8 5.7 9C487.2 450.5 394.8 512 288 512S88.8 450.5 44.3 361c-2.1-4.2 1-9 5.7-9H64.5c5.7 0 8.6-6.9 4.5-10.9L22.6 294.6c-.9-.9-1.5-2-1.7-3.3C17.7 274.7 16 257.5 16 240c0-3.3 .1-6.7 .2-10c.1-3.4 2.9-6 6.3-6h26c5.7 0 8.6-6.9 4.5-10.9L24.6 184.6c-1.5-1.5-2.2-3.8-1.7-5.9C38.1 112.8 77.3 56 130.8 18c11.3-8 26 8.9 21.4 22c-5.3 15-8.2 31.2-8.2 48c0 46.3 21.9 87.5 55.8 113.9c7.5 5.8 8 17.9 1 24.4C175.7 249.6 160 283 160 320c0 62.9 45.4 115.2 105.1 126l2.1-61.5c.1-2.6-2.8-4.2-5-2.8l-26.3 17.6c-3.2 2.1-7.4 1.7-10.1-1s-3.1-6.9-1-10.1L246 356.3c1.3-1.9 .2-4.5-2-4.9l-37.6-7.5c-3.7-.7-6.4-4-6.4-7.8s2.7-7.1 6.4-7.8l37.6-7.5c2.2-.4 3.3-3 2-4.9z"]},Zu={prefix:"fas",iconName:"square-poll-vertical",icon:[448,512,["poll"],"f681","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm64 192c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V256c0-17.7 14.3-32 32-32zm64-64c0-17.7 14.3-32 32-32s32 14.3 32 32V352c0 17.7-14.3 32-32 32s-32-14.3-32-32V160zM320 288c17.7 0 32 14.3 32 32v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V320c0-17.7 14.3-32 32-32z"]},iO=Zu,oO={prefix:"fas",iconName:"mug-hot",icon:[512,512,[9749],"f7b6","M88 0C74.7 0 64 10.7 64 24c0 38.9 23.4 59.4 39.1 73.1l1.1 1C120.5 112.3 128 119.9 128 136c0 13.3 10.7 24 24 24s24-10.7 24-24c0-38.9-23.4-59.4-39.1-73.1l-1.1-1C119.5 47.7 112 40.1 112 24c0-13.3-10.7-24-24-24zM32 192c-17.7 0-32 14.3-32 32V416c0 53 43 96 96 96H288c53 0 96-43 96-96h16c61.9 0 112-50.1 112-112s-50.1-112-112-112H352 32zm352 64h16c26.5 0 48 21.5 48 48s-21.5 48-48 48H384V256zM224 24c0-13.3-10.7-24-24-24s-24 10.7-24 24c0 38.9 23.4 59.4 39.1 73.1l1.1 1C232.5 112.3 240 119.9 240 136c0 13.3 10.7 24 24 24s24-10.7 24-24c0-38.9-23.4-59.4-39.1-73.1l-1.1-1C231.5 47.7 224 40.1 224 24z"]},ch={prefix:"fas",iconName:"car-battery",icon:[512,512,["battery-car"],"f5df","M80 96c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32l96 0c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32h16c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64l16 0zm304 96c0-8.8-7.2-16-16-16s-16 7.2-16 16v32H320c-8.8 0-16 7.2-16 16s7.2 16 16 16h32v32c0 8.8 7.2 16 16 16s16-7.2 16-16V256h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H384V192zM80 240c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H96c-8.8 0-16 7.2-16 16z"]},fO=ch,lO={prefix:"fas",iconName:"gift",icon:[512,512,[127873],"f06b","M190.5 68.8L225.3 128H224 152c-22.1 0-40-17.9-40-40s17.9-40 40-40h2.2c14.9 0 28.8 7.9 36.3 20.8zM64 88c0 14.4 3.5 28 9.6 40H32c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H480c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H438.4c6.1-12 9.6-25.6 9.6-40c0-48.6-39.4-88-88-88h-2.2c-31.9 0-61.5 16.9-77.7 44.4L256 85.5l-24.1-41C215.7 16.9 186.1 0 154.2 0H152C103.4 0 64 39.4 64 88zm336 0c0 22.1-17.9 40-40 40H288h-1.3l34.8-59.2C329.1 55.9 342.9 48 357.8 48H360c22.1 0 40 17.9 40 40zM32 288V464c0 26.5 21.5 48 48 48H224V288H32zM288 512H432c26.5 0 48-21.5 48-48V288H288V512z"]},uO={prefix:"fas",iconName:"dice-two",icon:[448,512,[9857],"f528","M0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM352 352c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM128 192c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z"]},hO={prefix:"fas",iconName:"chess-queen",icon:[512,512,[9819],"f445","M312 56c0-30.9-25.1-56-56-56s-56 25.1-56 56s25.1 56 56 56s56-25.1 56-56zM64 480c0 17.7 14.3 32 32 32H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H96c-17.7 0-32 14.3-32 32zM34 169.4L9.2 185.8C3.5 189.7 0 196.2 0 203.1c0 3.2 .7 6.4 2.2 9.3L104 416H408L509.8 212.4c1.4-2.9 2.2-6.1 2.2-9.3c0-6.9-3.5-13.4-9.2-17.3L478 169.4c-8.2-5.4-19-4.4-26 2.6c-12.9 12.9-30.9 21.9-48 15.5c-17.9-6.7-28.1-20.1-32.8-35.8C367.5 139 357.3 128 344 128H328c-13.3 0-23.9 11.2-29.6 23.2C292.6 163.4 280.6 176 256 176s-36.6-12.6-42.4-24.8c-5.7-12-16.3-23.2-29.6-23.2H168c-13.3 0-23.5 11-27.3 23.7c-4.7 15.6-14.9 29.1-32.8 35.8c-17 6.4-35.1-2.7-48-15.5c-6.9-6.9-17.8-8-25.9-2.6z"]},pO={prefix:"fas",iconName:"glasses",icon:[576,512,[],"f530","M118.6 80c-11.5 0-21.4 7.9-24 19.1L57 260.3c20.5-6.2 48.3-12.3 78.7-12.3c32.3 0 61.8 6.9 82.8 13.5c10.6 3.3 19.3 6.7 25.4 9.2c3.1 1.3 5.5 2.4 7.3 3.2c.9 .4 1.6 .7 2.1 1l.6 .3 .2 .1 .1 0 0 0 0 0s0 0-6.3 12.7h0l6.3-12.7c5.8 2.9 10.4 7.3 13.5 12.7h40.6c3.1-5.3 7.7-9.8 13.5-12.7l6.3 12.7h0c-6.3-12.7-6.3-12.7-6.3-12.7l0 0 0 0 .1 0 .2-.1 .6-.3c.5-.2 1.2-.6 2.1-1c1.8-.8 4.2-1.9 7.3-3.2c6.1-2.6 14.8-5.9 25.4-9.2c21-6.6 50.4-13.5 82.8-13.5c30.4 0 58.2 6.1 78.7 12.3L481.4 99.1c-2.6-11.2-12.6-19.1-24-19.1c-3.1 0-6.2 .6-9.2 1.8L416.9 94.3c-12.3 4.9-26.3-1.1-31.2-13.4s1.1-26.3 13.4-31.2l31.3-12.5c8.6-3.4 17.7-5.2 27-5.2c33.8 0 63.1 23.3 70.8 56.2l43.9 188c1.7 7.3 2.9 14.7 3.5 22.1c.3 1.9 .5 3.8 .5 5.7v6.7V352v16c0 61.9-50.1 112-112 112H419.7c-59.4 0-108.5-46.4-111.8-105.8L306.6 352H269.4l-1.2 22.2C264.9 433.6 215.8 480 156.3 480H112C50.1 480 0 429.9 0 368V352 310.7 304c0-1.9 .2-3.8 .5-5.7c.6-7.4 1.8-14.8 3.5-22.1l43.9-188C55.5 55.3 84.8 32 118.6 32c9.2 0 18.4 1.8 27 5.2l31.3 12.5c12.3 4.9 18.3 18.9 13.4 31.2s-18.9 18.3-31.2 13.4L127.8 81.8c-2.9-1.2-6-1.8-9.2-1.8zM64 325.4V368c0 26.5 21.5 48 48 48h44.3c25.5 0 46.5-19.9 47.9-45.3l2.5-45.6c-2.3-.8-4.9-1.7-7.5-2.5c-17.2-5.4-39.9-10.5-63.6-10.5c-23.7 0-46.2 5.1-63.2 10.5c-3.1 1-5.9 1.9-8.5 2.9zM512 368V325.4c-2.6-.9-5.5-1.9-8.5-2.9c-17-5.4-39.5-10.5-63.2-10.5c-23.7 0-46.4 5.1-63.6 10.5c-2.7 .8-5.2 1.7-7.5 2.5l2.5 45.6c1.4 25.4 22.5 45.3 47.9 45.3H464c26.5 0 48-21.5 48-48z"]},mO={prefix:"fas",iconName:"chess-board",icon:[448,512,[],"f43c","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm64 64v64h64V96h64v64h64V96h64v64H320v64h64v64H320v64h64v64H320V352H256v64H192V352H128v64H64V352h64V288H64V224h64V160H64V96h64zm64 128h64V160H192v64zm0 64V224H128v64h64zm64 0H192v64h64V288zm0 0h64V224H256v64z"]},vO={prefix:"fas",iconName:"building-circle-check",icon:[640,512,[],"e4d2","M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c15.1 0 28.5-6.9 37.3-17.8C340.4 462.2 320 417.5 320 368c0-54.7 24.9-103.5 64-135.8V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM640 368c0-79.5-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144s144-64.5 144-144zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z"]},dO={prefix:"fas",iconName:"person-chalkboard",icon:[640,512,[],"e53d","M192 96c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zm-8 384V352h16V480c0 17.7 14.3 32 32 32s32-14.3 32-32V192h56 64 16c17.7 0 32-14.3 32-32s-14.3-32-32-32H384V64H576V256H384V224H320v48c0 26.5 21.5 48 48 48H592c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H368c-26.5 0-48 21.5-48 48v80H243.1 177.1c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9L120 256.9V480c0 17.7 14.3 32 32 32s32-14.3 32-32z"]},eh={prefix:"fas",iconName:"mars-stroke-right",icon:[640,512,[9897,"mars-stroke-h"],"f22b","M208 368c61.9 0 112-50.1 112-112s-50.1-112-112-112s-112 50.1-112 112s50.1 112 112 112zm174.4-88C370.7 365.8 297.1 432 208 432c-97.2 0-176-78.8-176-176s78.8-176 176-176c89.1 0 162.7 66.2 174.4 152H416V176c0-13.3 10.7-24 24-24s24 10.7 24 24v56h32V176c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l80 80c9.4 9.4 9.4 24.6 0 33.9l-80 80c-6.9 6.9-17.2 8.9-26.2 5.2s-14.8-12.5-14.8-22.2V280H464v56c0 13.3-10.7 24-24 24s-24-10.7-24-24V280H382.4z"]},HO=eh,rh={prefix:"fas",iconName:"hand-back-fist",icon:[448,512,["hand-rock"],"f255","M144 0C117.5 0 96 21.5 96 48V96v28.5V176c0 8.8-7.2 16-16 16s-16-7.2-16-16V149.3l-9 7.5C40.4 169 32 187 32 206V244c0 38 16.9 74 46.1 98.3L128 384v96c0 17.7 14.3 32 32 32H320c17.7 0 32-14.3 32-32V374.7c46.9-19 80-65 80-118.7V176 160 144c0-26.5-21.5-48-48-48c-12.4 0-23.6 4.7-32.1 12.3C350 83.5 329.3 64 304 64c-12.4 0-23.6 4.7-32.1 12.3C270 51.5 249.3 32 224 32c-12.4 0-23.6 4.7-32.1 12.3C190 19.5 169.3 0 144 0z"]},zO=rh,ah={prefix:"fas",iconName:"square-caret-up",icon:[448,512,["caret-square-up"],"f151","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM224 160c6.7 0 13 2.8 17.6 7.7l104 112c6.5 7 8.2 17.2 4.4 25.9s-12.5 14.4-22 14.4H120c-9.5 0-18.2-5.7-22-14.4s-2.1-18.9 4.4-25.9l104-112c4.5-4.9 10.9-7.7 17.6-7.7z"]},gO=ah,VO={prefix:"fas",iconName:"cloud-showers-water",icon:[576,512,[],"e4e4","M224 0c38.6 0 71.9 22.8 87.2 55.7C325.7 41.1 345.8 32 368 32c38.7 0 71 27.5 78.4 64H448c35.3 0 64 28.7 64 64s-28.7 64-64 64H128c-35.3 0-64-28.7-64-64s28.7-64 64-64c0-53 43-96 96-96zM140.6 292.3l-48 80c-6.8 11.4-21.6 15-32.9 8.2s-15.1-21.6-8.2-32.9l48-80c6.8-11.4 21.6-15.1 32.9-8.2s15.1 21.6 8.2 32.9zm327.8-32.9c11.4 6.8 15 21.6 8.2 32.9l-48 80c-6.8 11.4-21.6 15-32.9 8.2s-15-21.6-8.2-32.9l48-80c6.8-11.4 21.6-15.1 32.9-8.2zM252.6 292.3l-48 80c-6.8 11.4-21.6 15-32.9 8.2s-15.1-21.6-8.2-32.9l48-80c6.8-11.4 21.6-15.1 32.9-8.2s15.1 21.6 8.2 32.9zm103.8-32.9c11.4 6.8 15 21.6 8.2 32.9l-48 80c-6.8 11.4-21.6 15-32.9 8.2s-15.1-21.6-8.2-32.9l48-80c6.8-11.4 21.6-15.1 32.9-8.2zM306.5 421.9C329 437.4 356.5 448 384 448c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 501.7 417 512 384 512c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 437.2 165.1 448 192 448c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z"]},nh={prefix:"fas",iconName:"chart-bar",icon:[512,512,["bar-chart"],"f080","M32 32c17.7 0 32 14.3 32 32V400c0 8.8 7.2 16 16 16H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H80c-44.2 0-80-35.8-80-80V64C0 46.3 14.3 32 32 32zm96 96c0-17.7 14.3-32 32-32l192 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-192 0c-17.7 0-32-14.3-32-32zm32 64H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 96H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-17.7 0-32-14.3-32-32s14.3-32 32-32z"]},MO=nh,th={prefix:"fas",iconName:"hands-bubbles",icon:[512,512,["hands-wash"],"e05e","M384 64c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm80 160c-26.5 0-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48s-21.5 48-48 48zM128 464c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48zM357.1 157.5c-.3 .7-.7 1.5-1.1 2.2l-17.8 30.9c-11-12.6-27.4-19.8-44.4-19.1l20.7-35.8c6.6-11.5 21.3-15.4 32.8-8.8c10.8 6.2 14.9 19.5 9.9 30.6zm-173.6 47C112.3 227.2 64 293.3 64 368c0 1.5 0 3 .1 4.5C24.3 346.9 0 302.8 0 255.1V131.5c0-13.3 10.7-24 24-24s24 10.7 24 24l0 81.7L164.2 12c6.6-11.5 21.3-15.4 32.8-8.8s15.4 21.3 8.8 32.8l-64 110.9c-2.2 3.8-.9 8.7 2.9 10.9s8.7 .9 10.9-2.9l80-138.6c6.6-11.5 21.3-15.4 32.8-8.8s15.4 21.3 8.8 32.8l-80 138.6c-2.2 3.8-.9 8.7 2.9 10.9s8.7 .9 10.9-2.9L275 76c6.6-11.5 21.3-15.4 32.8-8.8s15.4 21.3 8.8 32.8l-44 76.2-89.1 28.3zM448 483.5c0 12.4-9.4 22.6-21.5 23.9c-.8 .1-1.6 .1-2.5 .1H223.3 216c-22.1 0-42.9-6-60.7-16.5c3-8.5 4.7-17.6 4.7-27c0-38.7-27.5-71-64-78.4c0-.6 0-1.1 0-1.7c0-1.2-.1-2.5-.1-3.7c0-68 44-128.3 108.9-148.9l83.9-26.7c12.6-4 26.1 3 30.1 15.6s-3 26.1-15.6 30.1l-53.8 17.1H456c13.3 0 24 10.7 24 24s-10.7 24-24 24H328c-4.4 0-8 3.6-8 8s3.6 8 8 8H488c13.3 0 24 10.7 24 24s-10.7 24-24 24H328c-4.4 0-8 3.6-8 8s3.6 8 8 8H456c13.3 0 24 10.7 24 24s-10.7 24-24 24H328c-4.4 0-8 3.6-8 8s3.6 8 8 8h96c13.3 0 24 10.7 24 24z"]},CO=th,LO={prefix:"fas",iconName:"less-than-equal",icon:[448,512,[],"f537","M395.9 93.7c16.4-6.6 24.4-25.2 17.8-41.6s-25.2-24.4-41.6-17.8l-320 128C40 167.1 32 178.9 32 192s8 24.9 20.1 29.7l320 128c16.4 6.6 35-1.4 41.6-17.8s-1.4-35-17.8-41.6L150.2 192 395.9 93.7zM32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z"]},yO={prefix:"fas",iconName:"train",icon:[448,512,[128646],"f238","M96 0C43 0 0 43 0 96V352c0 48 35.2 87.7 81.1 94.9l-46 46C28.1 499.9 33.1 512 43 512H82.7c8.5 0 16.6-3.4 22.6-9.4L160 448H288l54.6 54.6c6 6 14.1 9.4 22.6 9.4H405c10 0 15-12.1 7.9-19.1l-46-46c46-7.1 81.1-46.9 81.1-94.9V96c0-53-43-96-96-96H96zM64 96c0-17.7 14.3-32 32-32H352c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V96zM224 384c-26.5 0-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48s-21.5 48-48 48z"]},sh={prefix:"fas",iconName:"eye-low-vision",icon:[640,512,["low-vision"],"f2a8","M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L525.6 386.7c39.6-40.6 66.4-86.1 79.9-118.4c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C465.5 68.8 400.8 32 320 32c-68.2 0-125 26.3-169.3 60.8L38.8 5.1zM223.1 149.5C248.6 126.2 282.7 112 320 112c79.5 0 144 64.5 144 144c0 24.9-6.3 48.3-17.4 68.7L408 294.5c5.2-11.8 8-24.8 8-38.5c0-53-43-96-96-96c-2.8 0-5.6 .1-8.4 .4c5.3 9.3 8.4 20.1 8.4 31.6c0 10.2-2.4 19.8-6.6 28.3l-90.3-70.8zm223.1 298L83.1 161.5c-11 14.4-20.5 28.7-28.4 42.2l339 265.7c18.7-5.5 36.2-13 52.6-21.8zM34.5 268.3c14.9 35.7 46.2 87.7 93 131.1C174.5 443.2 239.2 480 320 480c3.1 0 6.1-.1 9.2-.2L33.1 247.8c-1.8 6.8-1.3 14 1.4 20.5z"]},bO=sh,xO={prefix:"fas",iconName:"crow",icon:[640,512,[],"f520","M456 0c-48.6 0-88 39.4-88 88v29.2L12.5 390.6c-14 10.8-16.6 30.9-5.9 44.9s30.9 16.6 44.9 5.9L126.1 384H259.2l46.6 113.1c5 12.3 19.1 18.1 31.3 13.1s18.1-19.1 13.1-31.3L311.1 384H352c1.1 0 2.1 0 3.2 0l46.6 113.2c5 12.3 19.1 18.1 31.3 13.1s18.1-19.1 13.1-31.3l-42-102C484.9 354.1 544 280 544 192V128v-8l80.5-20.1c8.6-2.1 13.8-10.8 11.6-19.4C629 52 603.4 32 574 32H523.9C507.7 12.5 483.3 0 456 0zm0 112c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24z"]},SO={prefix:"fas",iconName:"sailboat",icon:[576,512,[],"e445","M256 16c0-7 4.5-13.2 11.2-15.3s13.9 .4 17.9 6.1l224 320c3.4 4.9 3.8 11.3 1.1 16.6s-8.2 8.6-14.2 8.6H272c-8.8 0-16-7.2-16-16V16zM212.1 96.5c7 1.9 11.9 8.2 11.9 15.5V336c0 8.8-7.2 16-16 16H80c-5.7 0-11-3-13.8-8s-2.9-11-.1-16l128-224c3.6-6.3 11-9.4 18-7.5zM5.7 404.3C2.8 394.1 10.5 384 21.1 384H554.9c10.6 0 18.3 10.1 15.4 20.3l-4 14.3C550.7 473.9 500.4 512 443 512H133C75.6 512 25.3 473.9 9.7 418.7l-4-14.3z"]},wO={prefix:"fas",iconName:"window-restore",icon:[512,512,[],"f2d2","M432 64H208c-8.8 0-16 7.2-16 16V96H128V80c0-44.2 35.8-80 80-80H432c44.2 0 80 35.8 80 80V304c0 44.2-35.8 80-80 80H416V320h16c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16zM0 192c0-35.3 28.7-64 64-64H320c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192zm64 32c0 17.7 14.3 32 32 32H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H96c-17.7 0-32 14.3-32 32z"]},ih={prefix:"fas",iconName:"square-plus",icon:[448,512,[61846,"plus-square"],"f0fe","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM200 344V280H136c-13.3 0-24-10.7-24-24s10.7-24 24-24h64V168c0-13.3 10.7-24 24-24s24 10.7 24 24v64h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H248v64c0 13.3-10.7 24-24 24s-24-10.7-24-24z"]},NO=ih,AO={prefix:"fas",iconName:"torii-gate",icon:[512,512,[9961],"f6a1","M0 80c0 26.5 21.5 48 48 48H64v64h64V128h96v64h64V128h96v64h64V128h16c26.5 0 48-21.5 48-48V0L440.6 23.8C424.3 29.2 407.2 32 390 32H122c-17.2 0-34.3-2.8-50.6-8.2L0 0V80zM64 288V480c0 17.7 14.3 32 32 32s32-14.3 32-32V288H384V480c0 17.7 14.3 32 32 32s32-14.3 32-32V288h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64z"]},_O={prefix:"fas",iconName:"frog",icon:[576,512,[],"f52e","M368 32c41.7 0 75.9 31.8 79.7 72.5l85.6 26.3c25.4 7.8 42.8 31.3 42.8 57.9c0 21.8-11.7 41.9-30.7 52.7L400.8 323.5 493.3 416H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H480c-8.5 0-16.6-3.4-22.6-9.4L346.9 360.2c11.7-36 3.2-77.1-25.4-105.7c-40.6-40.6-106.3-40.6-146.9-.1L101 324.4c-6.4 6.1-6.7 16.2-.6 22.6s16.2 6.6 22.6 .6l73.8-70.2 .1-.1 .1-.1c3.5-3.5 7.3-6.6 11.3-9.2c27.9-18.5 65.9-15.4 90.5 9.2c24.7 24.7 27.7 62.9 9 90.9c-2.6 3.8-5.6 7.5-9 10.9L261.8 416H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H64c-35.3 0-64-28.7-64-64C0 249.6 127 112.9 289.3 97.5C296.2 60.2 328.8 32 368 32zm0 104c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24z"]},kO={prefix:"fas",iconName:"bucket",icon:[448,512,[],"e4cf","M96 152v8H48v-8C48 68.1 116.1 0 200 0h48c83.9 0 152 68.1 152 152v8H352v-8c0-57.4-46.6-104-104-104H200C142.6 48 96 94.6 96 152zM0 224c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32h-5.1L388.5 469c-2.6 24.4-23.2 43-47.7 43H107.2c-24.6 0-45.2-18.5-47.7-43L37.1 256H32c-17.7 0-32-14.3-32-32z"]},TO={prefix:"fas",iconName:"image",icon:[512,512,[],"f03e","M0 96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM323.8 202.5c-4.5-6.6-11.9-10.5-19.8-10.5s-15.4 3.9-19.8 10.5l-87 127.6L170.7 297c-4.6-5.7-11.5-9-18.7-9s-14.2 3.3-18.7 9l-64 80c-5.8 7.2-6.9 17.1-2.9 25.4s12.4 13.6 21.6 13.6h96 32H424c8.9 0 17.1-4.9 21.2-12.8s3.6-17.4-1.4-24.7l-120-176zM112 192c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48z"]},PO={prefix:"fas",iconName:"microphone",icon:[384,512,[],"f130","M192 0C139 0 96 43 96 96V256c0 53 43 96 96 96s96-43 96-96V96c0-53-43-96-96-96zM64 216c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 89.1 66.2 162.7 152 174.4V464H120c-13.3 0-24 10.7-24 24s10.7 24 24 24h72 72c13.3 0 24-10.7 24-24s-10.7-24-24-24H216V430.4c85.8-11.7 152-85.3 152-174.4V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 70.7-57.3 128-128 128s-128-57.3-128-128V216z"]},EO={prefix:"fas",iconName:"cow",icon:[640,512,[128004],"f6c8","M96 224v32V416c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V327.8c9.9 6.6 20.6 12 32 16.1V368c0 8.8 7.2 16 16 16s16-7.2 16-16V351.1c5.3 .6 10.6 .9 16 .9s10.7-.3 16-.9V368c0 8.8 7.2 16 16 16s16-7.2 16-16V343.8c11.4-4 22.1-9.4 32-16.1V416c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V256l32 32v49.5c0 9.5 2.8 18.7 8.1 26.6L530 427c8.8 13.1 23.5 21 39.3 21c22.5 0 41.9-15.9 46.3-38l20.3-101.6c2.6-13-.3-26.5-8-37.3l-3.9-5.5V184c0-13.3-10.7-24-24-24s-24 10.7-24 24v14.4l-52.9-74.1C496 86.5 452.4 64 405.9 64H272 256 192 144C77.7 64 24 117.7 24 184v54C9.4 249.8 0 267.8 0 288v17.6c0 8 6.4 14.4 14.4 14.4C46.2 320 72 294.2 72 262.4V256 224 184c0-24.3 12.1-45.8 30.5-58.9C98.3 135.9 96 147.7 96 160v64zM592 336c0 8.8-7.2 16-16 16s-16-7.2-16-16s7.2-16 16-16s16 7.2 16 16zM166.6 166.6c-4.2-4.2-6.6-10-6.6-16c0-12.5 10.1-22.6 22.6-22.6H361.4c12.5 0 22.6 10.1 22.6 22.6c0 6-2.4 11.8-6.6 16l-23.4 23.4C332.2 211.8 302.7 224 272 224s-60.2-12.2-81.9-33.9l-23.4-23.4z"]},OO={prefix:"fas",iconName:"caret-up",icon:[320,512,[],"f0d8","M182.6 137.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8H288c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-128-128z"]},RO={prefix:"fas",iconName:"screwdriver",icon:[512,512,[129691],"f54a","M465 7c-8.5-8.5-22-9.4-31.6-2.1l-104 80c-5.9 4.5-9.4 11.6-9.4 19v54.1l-85.6 85.6c6.7 4.2 13 9.3 18.8 15.1s10.9 12.2 15.1 18.8L353.9 192H408c7.5 0 14.5-3.5 19-9.4l80-104c7.4-9.6 6.5-23.1-2.1-31.6L465 7zM121.4 281.4l-112 112c-12.5 12.5-12.5 32.8 0 45.3l64 64c12.5 12.5 32.8 12.5 45.3 0l112-112c30.2-30.2 30.2-79.1 0-109.3s-79.1-30.2-109.3 0z"]},FO={prefix:"fas",iconName:"folder-closed",icon:[512,512,[],"e185","M448 480H64c-35.3 0-64-28.7-64-64V192H512V416c0 35.3-28.7 64-64 64zm64-320H0V96C0 60.7 28.7 32 64 32H181.5c17 0 33.3 6.7 45.3 18.7l26.5 26.5c12 12 28.3 18.7 45.3 18.7H448c35.3 0 64 28.7 64 64z"]},BO={prefix:"fas",iconName:"house-tsunami",icon:[576,512,[],"e515","M80.8 136.5C104.9 93.8 152.6 64 209 64c16.9 0 33.1 2.7 48.2 7.7c16.8 5.5 34.9-3.6 40.4-20.4s-3.6-34.9-20.4-40.4C255.8 3.8 232.8 0 209 0C95.2 0 0 88 0 200c0 91.6 53.5 172.1 142.2 194.1c13.4 3.8 27.5 5.9 42.2 5.9c.7 0 1.4 0 2.1-.1c1.8 0 3.7 .1 5.5 .1l0 0c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.5-27.3-10.1-39.2-1.7l0 0C439.4 325.2 410.9 336 384 336c-27.5 0-55-10.6-77.5-26.1c-11.1-7.9-25.9-7.9-37 0c-22.4 15.5-49.9 26.1-77.4 26.1c0 0-.1 0-.1 0c-12.4 0-24-1.5-34.9-4.3C121.6 320.2 96 287 96 248c0-48.5 39.5-88 88.4-88c13.5 0 26.1 3 37.5 8.3c16 7.5 35.1 .6 42.5-15.5s.6-35.1-15.5-42.5C229.3 101.1 207.4 96 184.4 96c-40 0-76.4 15.4-103.6 40.5zm252-18.1c-8.1 6-12.8 15.5-12.8 25.6V265c1.6 1 3.3 2 4.8 3.1c18.4 12.7 39.6 20.3 59.2 20.3c19 0 41.2-7.9 59.2-20.3c23.8-16.7 55.8-15.3 78.1 3.4c10.6 8.8 24.2 15.6 37.3 18.6c5.8 1.4 11.2 3.4 16.2 6.2c.7-2.7 1.1-5.5 1.1-8.4l-.4-144c0-10-4.7-19.4-12.7-25.5l-95.5-72c-11.4-8.6-27.1-8.6-38.5 0l-96 72zM384 448c-27.5 0-55-10.6-77.5-26.1c-11.1-7.9-25.9-7.9-37 0C247 437.4 219.5 448 192 448c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C126.5 501.7 159 512 192 512c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.4-27.3-10.1-39.2-1.7l0 0C439.4 437.2 410.9 448 384 448z"]},DO={prefix:"fas",iconName:"square-nfi",icon:[448,512,[],"e576","M0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm75.7 64.6C68.8 162.5 64 168.8 64 176V336c0 8.8 7.2 16 16 16s16-7.2 16-16V233.8l66.3 110.5c3.7 6.2 11.1 9.1 18 7.2s11.7-8.2 11.7-15.4V176c0-8.8-7.2-16-16-16s-16 7.2-16 16V278.2L93.7 167.8c-3.7-6.2-11.1-9.1-18-7.2zM224 176v64 96c0 8.8 7.2 16 16 16s16-7.2 16-16V256h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H256V192h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H240c-8.8 0-16 7.2-16 16zm160 0c0-8.8-7.2-16-16-16s-16 7.2-16 16V336c0 8.8 7.2 16 16 16s16-7.2 16-16V176z"]},IO={prefix:"fas",iconName:"arrow-up-from-ground-water",icon:[576,512,[],"e4b5","M288 352c17.7 0 32-14.3 32-32V109.3l25.4 25.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-80-80c-12.5-12.5-32.8-12.5-45.3 0l-80 80c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L256 109.3V320c0 17.7 14.3 32 32 32zm-18.5 69.9C247 437.4 219.5 448 192 448c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C126.5 501.7 159 512 192 512c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.4-27.3-10.1-39.2-1.7l0 0C439.4 437.2 410.9 448 384 448c-27.5 0-55-10.6-77.5-26.1c-11.1-7.9-25.9-7.9-37 0zM192 192H48c-26.5 0-48 21.5-48 48V425c5.3-3.1 11.2-5.4 17.5-6.9c13.1-3.1 26.7-9.8 37.3-18.6c22.2-18.7 54.3-20.1 78.1-3.4c18 12.4 40.1 20.3 59.1 20.3V192zm384 48c0-26.5-21.5-48-48-48H384V416.5h0c19 0 41.2-7.9 59.2-20.3c23.8-16.7 55.8-15.3 78.1 3.4c10.6 8.8 24.2 15.6 37.3 18.6c6.3 1.5 12.1 3.8 17.5 6.9V240z"]},oh={prefix:"fas",iconName:"martini-glass",icon:[512,512,[127864,"glass-martini-alt"],"f57b","M32 0C19.1 0 7.4 7.8 2.4 19.8s-2.2 25.7 6.9 34.9L224 269.3V448H160c-17.7 0-32 14.3-32 32s14.3 32 32 32h96 96c17.7 0 32-14.3 32-32s-14.3-32-32-32H288V269.3L502.6 54.6c9.2-9.2 11.9-22.9 6.9-34.9S492.9 0 480 0H32zM173.3 128l-64-64H402.7l-64 64H173.3z"]},UO=oh,he={prefix:"fas",iconName:"rotate-left",icon:[512,512,["rotate-back","rotate-backward","undo-alt"],"f2ea","M48.5 224H40c-13.3 0-24-10.7-24-24V72c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2L98.6 96.6c87.6-86.5 228.7-86.2 315.8 1c87.5 87.5 87.5 229.3 0 316.8s-229.3 87.5-316.8 0c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0c62.5 62.5 163.8 62.5 226.3 0s62.5-163.8 0-226.3c-62.2-62.2-162.7-62.5-225.3-1L185 183c6.9 6.9 8.9 17.2 5.2 26.2s-12.5 14.8-22.2 14.8H48.5z"]},WO=he,$O=he,qO=he,fh={prefix:"fas",iconName:"table-columns",icon:[512,512,["columns"],"f0db","M0 96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm64 64V416H224V160H64zm384 0H288V416H448V160z"]},GO=fh,jO={prefix:"fas",iconName:"lemon",icon:[448,512,[127819],"f094","M448 96c0-35.3-28.7-64-64-64c-6.6 0-13 1-19 2.9c-22.5 7-48.1 14.9-71 9c-75.2-19.1-156.4 11-213.7 68.3S-7.2 250.8 11.9 326c5.8 22.9-2 48.4-9 71C1 403 0 409.4 0 416c0 35.3 28.7 64 64 64c6.6 0 13-1 19.1-2.9c22.5-7 48.1-14.9 71-9c75.2 19.1 156.4-11 213.7-68.3s87.5-138.5 68.3-213.7c-5.8-22.9 2-48.4 9-71c1.9-6 2.9-12.4 2.9-19.1zM212.5 127.4c-54.6 16-101.1 62.5-117.1 117.1C92.9 253 84 257.8 75.5 255.4S62.2 244 64.6 235.5c19.1-65.1 73.7-119.8 138.9-138.9c8.5-2.5 17.4 2.4 19.9 10.9s-2.4 17.4-10.9 19.9z"]},KO={prefix:"fas",iconName:"head-side-mask",icon:[512,512,[],"e063","M0 224.2c0-22.2 3.2-43.6 9.2-63.9l227 165.1C228.5 337.8 224 352.4 224 368V512H96c-17.7 0-32-14.3-32-32V407.3c0-16.7-6.9-32.5-17.1-45.8C16.6 322.4 0 274.1 0 224.2zm258.6 77.9L21 129.3C56.7 53 134.2 0 224 0h32c95.2 0 174.2 69.3 189.4 160.1c2.2 13 6.7 25.7 15 36.1l42 52.6c6.2 7.8 9.6 17.4 9.6 27.4c0 4.1-.6 8.1-1.6 11.9H304c-16.9 0-32.5 5.2-45.4 14.1zM352 224c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zM256 512V368c0-26.5 21.5-48 48-48H512l-16 48H336c-8.8 0-16 7.2-16 16s7.2 16 16 16H485.3l-10.7 32H336c-8.8 0-16 7.2-16 16s7.2 16 16 16H464l-1.4 4.2c-8.7 26.1-33.2 43.8-60.7 43.8H256z"]},XO={prefix:"fas",iconName:"handshake",icon:[640,512,[],"f2b5","M323.4 85.2l-96.8 78.4c-16.1 13-19.2 36.4-7 53.1c12.9 17.8 38 21.3 55.3 7.8l99.3-77.2c7-5.4 17-4.2 22.5 2.8s4.2 17-2.8 22.5l-20.9 16.2L512 316.8V128h-.7l-3.9-2.5L434.8 79c-15.3-9.8-33.2-15-51.4-15c-21.8 0-43 7.5-60 21.2zm22.8 124.4l-51.7 40.2C263 274.4 217.3 268 193.7 235.6c-22.2-30.5-16.6-73.1 12.7-96.8l83.2-67.3c-11.6-4.9-24.1-7.4-36.8-7.4C234 64 215.7 69.6 200 80l-72 48V352h28.2l91.4 83.4c19.6 17.9 49.9 16.5 67.8-3.1c5.5-6.1 9.2-13.2 11.1-20.6l17 15.6c19.5 17.9 49.9 16.6 67.8-2.9c4.5-4.9 7.8-10.6 9.9-16.5c19.4 13 45.8 10.3 62.1-7.5c17.9-19.5 16.6-49.9-2.9-67.8l-134.2-123zM96 128H0V352c0 17.7 14.3 32 32 32H64c17.7 0 32-14.3 32-32V128zM48 352c-8.8 0-16-7.2-16-16s7.2-16 16-16s16 7.2 16 16s-7.2 16-16 16zM544 128V352c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V128H544zm64 208c0 8.8-7.2 16-16 16s-16-7.2-16-16s7.2-16 16-16s16 7.2 16 16z"]},YO={prefix:"fas",iconName:"gem",icon:[512,512,[128142],"f3a5","M116.7 33.8c4.5-6.1 11.7-9.8 19.3-9.8H376c7.6 0 14.8 3.6 19.3 9.8l112 152c6.8 9.2 6.1 21.9-1.5 30.4l-232 256c-4.6 5-11 7.9-17.8 7.9s-13.2-2.9-17.8-7.9l-232-256c-7.7-8.5-8.3-21.2-1.5-30.4l112-152zm38.5 39.8c-3.3 2.5-4.2 7-2.1 10.5l57.4 95.6L63.3 192c-4.1 .3-7.3 3.8-7.3 8s3.2 7.6 7.3 8l192 16c.4 0 .9 0 1.3 0l192-16c4.1-.3 7.3-3.8 7.3-8s-3.2-7.6-7.3-8L301.5 179.8l57.4-95.6c2.1-3.5 1.2-8.1-2.1-10.5s-7.9-2-10.7 1L256 172.2 165.9 74.6c-2.8-3-7.4-3.4-10.7-1z"]},lh={prefix:"fas",iconName:"dolly",icon:[640,512,["dolly-box"],"f472","M32 32C32 14.3 46.3 0 64 0h72.9c27.5 0 52 17.6 60.7 43.8L289.7 320c30.1 .5 56.8 14.9 74 37l202.1-67.4c16.8-5.6 34.9 3.5 40.5 20.2s-3.5 34.9-20.2 40.5L384 417.7c-.9 52.2-43.5 94.3-96 94.3c-53 0-96-43-96-96c0-30.8 14.5-58.2 37-75.8L136.9 64H64C46.3 64 32 49.7 32 32zM276.8 134.5c-5.5-16.8 3.7-34.9 20.5-40.3L343 79.4l19.8 60.9 60.9-19.8L403.8 59.6l45.7-14.8c16.8-5.5 34.9 3.7 40.3 20.5l49.4 152.2c5.5 16.8-3.7 34.9-20.5 40.3L366.5 307.2c-16.8 5.5-34.9-3.7-40.3-20.5L276.8 134.5z"]},JO=lh,QO={prefix:"fas",iconName:"smoking",icon:[640,512,[128684],"f48d","M448 32V43c0 38.2 15.2 74.8 42.2 101.8l21 21c21 21 32.8 49.5 32.8 79.2v11c0 17.7-14.3 32-32 32s-32-14.3-32-32V245c0-12.7-5.1-24.9-14.1-33.9l-21-21C405.9 151.1 384 98.1 384 43V32c0-17.7 14.3-32 32-32s32 14.3 32 32zM576 256V245c0-38.2-15.2-74.8-42.2-101.8l-21-21c-21-21-32.8-49.5-32.8-79.2V32c0-17.7 14.3-32 32-32s32 14.3 32 32V43c0 12.7 5.1 24.9 14.1 33.9l21 21c39 39 60.9 91.9 60.9 147.1v11c0 17.7-14.3 32-32 32s-32-14.3-32-32zM0 416c0-35.3 28.7-64 64-64H416c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H64c-35.3 0-64-28.7-64-64V416zm224 0v32H384V416H224zm288-64c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384c0-17.7 14.3-32 32-32zm96 0c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384c0-17.7 14.3-32 32-32z"]},uh={prefix:"fas",iconName:"minimize",icon:[512,512,["compress-arrows-alt"],"f78c","M456 224H312c-13.3 0-24-10.7-24-24V56c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l40 40L442.3 5.7C446 2 450.9 0 456 0s10 2 13.7 5.7l36.7 36.7C510 46 512 50.9 512 56s-2 10-5.7 13.7L433 143l40 40c6.9 6.9 8.9 17.2 5.2 26.2s-12.5 14.8-22.2 14.8zm0 64c9.7 0 18.5 5.8 22.2 14.8s1.7 19.3-5.2 26.2l-40 40 73.4 73.4c3.6 3.6 5.7 8.5 5.7 13.7s-2 10-5.7 13.7l-36.7 36.7C466 510 461.1 512 456 512s-10-2-13.7-5.7L369 433l-40 40c-6.9 6.9-17.2 8.9-26.2 5.2s-14.8-12.5-14.8-22.2V312c0-13.3 10.7-24 24-24H456zm-256 0c13.3 0 24 10.7 24 24V456c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-40-40L69.7 506.3C66 510 61.1 512 56 512s-10-2-13.7-5.7L5.7 469.7C2 466 0 461.1 0 456s2-10 5.7-13.7L79 369 39 329c-6.9-6.9-8.9-17.2-5.2-26.2s12.5-14.8 22.2-14.8H200zM56 224c-9.7 0-18.5-5.8-22.2-14.8s-1.7-19.3 5.2-26.2l40-40L5.7 69.7C2 66 0 61.1 0 56s2-10 5.7-13.7L42.3 5.7C46 2 50.9 0 56 0s10 2 13.7 5.7L143 79l40-40c6.9-6.9 17.2-8.9 26.2-5.2s14.8 12.5 14.8 22.2V200c0 13.3-10.7 24-24 24H56z"]},ZO=uh,cR={prefix:"fas",iconName:"monument",icon:[384,512,[],"f5a6","M180.7 4.7c6.2-6.2 16.4-6.2 22.6 0l80 80c2.5 2.5 4.1 5.8 4.6 9.3l40.2 322H55.9L96.1 94c.4-3.5 2-6.8 4.6-9.3l80-80zM152 272c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24H152zM32 448H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32z"]},eR={prefix:"fas",iconName:"snowplow",icon:[640,512,[],"f7d2","M298.9 64l68.6 160H256l-64-64V64H298.9zM445.1 242.7l-87.4-204C347.6 15.3 324.5 0 298.9 0H176c-26.5 0-48 21.5-48 48V160H96c-17.7 0-32 14.3-32 32V298.8C26.2 316.8 0 355.3 0 400c0 61.9 50.1 112 112 112H368c61.9 0 112-50.1 112-112c0-17.2-3.9-33.5-10.8-48H512v50.7c0 17 6.7 33.3 18.7 45.3l54.6 54.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L576 402.7V320 235.2L633 164c11-13.8 8.8-33.9-5-45s-33.9-8.8-45 5l-57 71.2c-9.1 11.3-14 25.4-14 40V288H448V256.7c.1-2.4-.2-4.8-.6-7.1s-1.2-4.7-2.2-6.8zM368 352c26.5 0 48 21.5 48 48s-21.5 48-48 48H112c-26.5 0-48-21.5-48-48s21.5-48 48-48H368zM144 400c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24zm216 24c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24zm-56-24c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24zM200 424c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24z"]},hh={prefix:"fas",iconName:"angles-right",icon:[512,512,[187,"angle-double-right"],"f101","M470.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 256 265.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L210.7 256 73.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z"]},rR=hh,aR={prefix:"fas",iconName:"cannabis",icon:[512,512,[],"f55f","M256 0c5.3 0 10.3 2.7 13.3 7.1c15.8 23.5 36.7 63.7 49.2 109c7.2 26.4 11.8 55.2 10.4 84c11.5-8.8 23.7-16.7 35.8-23.6c41-23.3 84.4-36.9 112.2-42.5c5.2-1 10.7 .6 14.4 4.4s5.4 9.2 4.4 14.5c-5.6 27.7-19.3 70.9-42.7 111.7c-9.1 15.9-19.9 31.7-32.4 46.3c27.8 6.6 52.4 17.3 67.2 25.5c5.1 2.8 8.2 8.2 8.2 14s-3.2 11.2-8.2 14c-15.2 8.4-40.9 19.5-69.8 26.1c-20.2 4.6-42.9 7.2-65.2 4.6l8.3 33.1c1.5 6.1-.6 12.4-5.5 16.4s-11.6 4.6-17.2 1.9L280 417.2V488c0 13.3-10.7 24-24 24s-24-10.7-24-24V417.2l-58.5 29.1c-5.6 2.8-12.3 2.1-17.2-1.9s-7-10.3-5.5-16.4l8.3-33.1c-22.2 2.6-45 0-65.2-4.6c-28.9-6.6-54.6-17.6-69.8-26.1c-5.1-2.8-8.2-8.2-8.2-14s3.2-11.2 8.2-14c14.8-8.2 39.4-18.8 67.2-25.5C78.9 296.3 68.1 280.5 59 264.6c-23.4-40.8-37.1-84-42.7-111.7c-1.1-5.2 .6-10.7 4.4-14.5s9.2-5.4 14.4-4.4c27.9 5.5 71.2 19.2 112.2 42.5c12.1 6.9 24.3 14.7 35.8 23.6c-1.4-28.7 3.1-57.6 10.4-84c12.5-45.3 33.4-85.5 49.2-109c3-4.4 8-7.1 13.3-7.1z"]},ph={prefix:"fas",iconName:"circle-play",icon:[512,512,[61469,"play-circle"],"f144","M512 256c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0S512 114.6 512 256zM188.3 147.1c-7.6 4.2-12.3 12.3-12.3 20.9V344c0 8.7 4.7 16.7 12.3 20.9s16.8 4.1 24.3-.5l144-88c7.1-4.4 11.5-12.1 11.5-20.5s-4.4-16.1-11.5-20.5l-144-88c-7.4-4.5-16.7-4.7-24.3-.5z"]},nR=ph,tR={prefix:"fas",iconName:"tablets",icon:[640,512,[],"f490","M614.3 247c16.3-25 25.7-54.9 25.7-87C640 71.6 568.4 0 480 0c-32.1 0-61.9 9.4-87 25.7c-7.9 5.2-8.5 16.2-1.8 22.9L591.4 248.8c6.7 6.7 17.8 6.2 22.9-1.8zM567 294.3c7.9-5.2 8.5-16.2 1.8-22.9L368.6 71.2c-6.7-6.7-17.8-6.2-22.9 1.8c-16.3 25-25.7 54.9-25.7 87c0 88.4 71.6 160 160 160c32.1 0 61.9-9.4 87-25.7zM301.5 368H18.5c-9.5 0-16.9 8.2-15 17.5C18.9 457.8 83.1 512 160 512s141.1-54.2 156.5-126.5c2-9.3-5.5-17.5-15-17.5zm0-32c9.5 0 16.9-8.2 15-17.5C301.1 246.2 236.9 192 160 192S18.9 246.2 3.5 318.5c-2 9.3 5.5 17.5 15 17.5H301.5z"]},sR={prefix:"fas",iconName:"ethernet",icon:[512,512,[],"f796","M0 224V416c0 17.7 14.3 32 32 32H96V336c0-8.8 7.2-16 16-16s16 7.2 16 16V448h64V336c0-8.8 7.2-16 16-16s16 7.2 16 16V448h64V336c0-8.8 7.2-16 16-16s16 7.2 16 16V448h64V336c0-8.8 7.2-16 16-16s16 7.2 16 16V448h64c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32H448V160c0-17.7-14.3-32-32-32H384V96c0-17.7-14.3-32-32-32H160c-17.7 0-32 14.3-32 32v32H96c-17.7 0-32 14.3-32 32v32H32c-17.7 0-32 14.3-32 32z"]},Sa={prefix:"fas",iconName:"euro-sign",icon:[320,512,[8364,"eur","euro"],"f153","M48.1 240c-.1 2.7-.1 5.3-.1 8v16c0 2.7 0 5.3 .1 8H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H60.3C89.9 419.9 170 480 264 480h24c17.7 0 32-14.3 32-32s-14.3-32-32-32H264c-57.9 0-108.2-32.4-133.9-80H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H112.2c-.1-2.6-.2-5.3-.2-8V248c0-2.7 .1-5.4 .2-8H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H130.1c25.7-47.6 76-80 133.9-80h24c17.7 0 32-14.3 32-32s-14.3-32-32-32H264C170 32 89.9 92.1 60.3 176H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H48.1z"]},iR=Sa,oR=Sa,fR={prefix:"fas",iconName:"chair",icon:[448,512,[129681],"f6c0","M248 48V256h48V58.7c23.9 13.8 40 39.7 40 69.3V256h48V128C384 57.3 326.7 0 256 0H192C121.3 0 64 57.3 64 128V256h48V128c0-29.6 16.1-55.5 40-69.3V256h48V48h48zM48 288c-12.1 0-23.2 6.8-28.6 17.7l-16 32c-5 9.9-4.4 21.7 1.4 31.1S20.9 384 32 384l0 96c0 17.7 14.3 32 32 32s32-14.3 32-32V384H352v96c0 17.7 14.3 32 32 32s32-14.3 32-32V384c11.1 0 21.4-5.7 27.2-15.2s6.4-21.2 1.4-31.1l-16-32C423.2 294.8 412.1 288 400 288H48z"]},mh={prefix:"fas",iconName:"circle-check",icon:[512,512,[61533,"check-circle"],"f058","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"]},lR=mh,vh={prefix:"fas",iconName:"circle-stop",icon:[512,512,[62094,"stop-circle"],"f28d","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM192 160H320c17.7 0 32 14.3 32 32V320c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V192c0-17.7 14.3-32 32-32z"]},uR=vh,dh={prefix:"fas",iconName:"compass-drafting",icon:[512,512,["drafting-compass"],"f568","M352 96c0 14.3-3.1 27.9-8.8 40.2L396 227.4c-23.7 25.3-54.2 44.1-88.5 53.6L256 192h0 0l-68 117.5c21.5 6.8 44.3 10.5 68.1 10.5c70.7 0 133.8-32.7 174.9-84c11.1-13.8 31.2-16 45-5s16 31.2 5 45C428.1 341.8 347 384 256 384c-35.4 0-69.4-6.4-100.7-18.1L98.7 463.7C94 471.8 87 478.4 78.6 482.6L23.2 510.3c-5 2.5-10.9 2.2-15.6-.7S0 501.5 0 496V440.6c0-8.4 2.2-16.7 6.5-24.1l60-103.7C53.7 301.6 41.8 289.3 31.2 276c-11.1-13.8-8.8-33.9 5-45s33.9-8.8 45 5c5.7 7.1 11.8 13.8 18.2 20.1l69.4-119.9c-5.6-12.2-8.8-25.8-8.8-40.2c0-53 43-96 96-96s96 43 96 96zm21 297.9c32.6-12.8 62.5-30.8 88.9-52.9l43.7 75.5c4.2 7.3 6.5 15.6 6.5 24.1V496c0 5.5-2.9 10.7-7.6 13.6s-10.6 3.2-15.6 .7l-55.4-27.7c-8.4-4.2-15.4-10.8-20.1-18.9L373 393.9zM256 128c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z"]},hR=dh,pR={prefix:"fas",iconName:"plate-wheat",icon:[512,512,[],"e55a","M176 32c44.2 0 80 35.8 80 80v16c0 8.8-7.2 16-16 16c-44.2 0-80-35.8-80-80V48c0-8.8 7.2-16 16-16zM56 64h48c13.3 0 24 10.7 24 24s-10.7 24-24 24H56c-13.3 0-24-10.7-24-24s10.7-24 24-24zM24 136H136c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24s10.7-24 24-24zm8 96c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24s-10.7 24-24 24H56c-13.3 0-24-10.7-24-24zM272 48c0-8.8 7.2-16 16-16c44.2 0 80 35.8 80 80v16c0 8.8-7.2 16-16 16c-44.2 0-80-35.8-80-80V48zM400 32c44.2 0 80 35.8 80 80v16c0 8.8-7.2 16-16 16c-44.2 0-80-35.8-80-80V48c0-8.8 7.2-16 16-16zm80 160v16c0 44.2-35.8 80-80 80c-8.8 0-16-7.2-16-16V256c0-44.2 35.8-80 80-80c8.8 0 16 7.2 16 16zM352 176c8.8 0 16 7.2 16 16v16c0 44.2-35.8 80-80 80c-8.8 0-16-7.2-16-16V256c0-44.2 35.8-80 80-80zm-96 16v16c0 44.2-35.8 80-80 80c-8.8 0-16-7.2-16-16V256c0-44.2 35.8-80 80-80c8.8 0 16 7.2 16 16zM3.5 347.6C1.6 332.9 13 320 27.8 320H484.2c14.8 0 26.2 12.9 24.4 27.6C502.3 397.8 464.2 437 416 446v2c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32v-2c-48.2-9-86.3-48.2-92.5-98.4z"]},mR={prefix:"fas",iconName:"icicles",icon:[512,512,[],"f7ad","M75.8 304.8L1 35.7c-.7-2.5-1-5-1-7.5C0 12.6 12.6 0 28.2 0H482.4C498.8 0 512 13.2 512 29.6c0 1.6-.1 3.3-.4 4.9L434.6 496.1c-1.5 9.2-9.5 15.9-18.8 15.9c-9.2 0-17.1-6.6-18.7-15.6L336 160 307.2 303.9c-1.9 9.3-10.1 16.1-19.6 16.1c-9.2 0-17.2-6.2-19.4-15.1L240 192 210.6 368.2c-1.5 9.1-9.4 15.8-18.6 15.8s-17.1-6.7-18.6-15.8L144 192 115.9 304.3c-2.3 9.2-10.6 15.7-20.1 15.7c-9.3 0-17.5-6.2-20-15.2z"]},vR={prefix:"fas",iconName:"person-shelter",icon:[512,512,[],"e54f","M271.9 4.2c-9.8-5.6-21.9-5.6-31.8 0l-224 128C6.2 137.9 0 148.5 0 160V480c0 17.7 14.3 32 32 32s32-14.3 32-32V178.6L256 68.9 448 178.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V160c0-11.5-6.2-22.1-16.1-27.8l-224-128zM256 208c22.1 0 40-17.9 40-40s-17.9-40-40-40s-40 17.9-40 40s17.9 40 40 40zm-8 280V400h16v88c0 13.3 10.7 24 24 24s24-10.7 24-24V313.5l26.9 49.9c6.3 11.7 20.8 16 32.5 9.8s16-20.8 9.8-32.5l-37.9-70.3c-15.3-28.5-45.1-46.3-77.5-46.3H246.2c-32.4 0-62.1 17.8-77.5 46.3l-37.9 70.3c-6.3 11.7-1.9 26.2 9.8 32.5s26.2 1.9 32.5-9.8L200 313.5V488c0 13.3 10.7 24 24 24s24-10.7 24-24z"]},dR={prefix:"fas",iconName:"neuter",icon:[384,512,[9906],"f22c","M304 176c0 61.9-50.1 112-112 112s-112-50.1-112-112s50.1-112 112-112s112 50.1 112 112zM224 349.1c81.9-15 144-86.8 144-173.1C368 78.8 289.2 0 192 0S16 78.8 16 176c0 86.3 62.1 158.1 144 173.1V480c0 17.7 14.3 32 32 32s32-14.3 32-32V349.1z"]},HR={prefix:"fas",iconName:"id-badge",icon:[384,512,[],"f2c1","M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zm96 320h64c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80zm96-96c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zM144 64h96c8.8 0 16 7.2 16 16s-7.2 16-16 16H144c-8.8 0-16-7.2-16-16s7.2-16 16-16z"]},zR={prefix:"fas",iconName:"marker",icon:[512,512,[],"f5a1","M481 31C445.1-4.8 386.9-4.8 351 31l-15 15L322.9 33C294.8 4.9 249.2 4.9 221.1 33L135 119c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0L255 66.9c9.4-9.4 24.6-9.4 33.9 0L302.1 80 186.3 195.7 316.3 325.7 481 161c35.9-35.9 35.9-94.1 0-129.9zM293.7 348.3L163.7 218.3 99.5 282.5c-48 48-80.8 109.2-94.1 175.8l-5 25c-1.6 7.9 .9 16 6.6 21.7s13.8 8.1 21.7 6.6l25-5c66.6-13.3 127.8-46.1 175.8-94.1l64.2-64.2z"]},Hh={prefix:"fas",iconName:"face-laugh-beam",icon:[512,512,[128513,"laugh-beam"],"f59a","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM101.6 314c-3.7-13.7 7.5-26 21.7-26H388.7c14.2 0 25.4 12.3 21.7 26C392 382 329.8 432 256 432s-136-50-154.4-118zm116-101.2l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z"]},gR=Hh,VR={prefix:"fas",iconName:"helicopter-symbol",icon:[512,512,[],"e502","M445.3 224H510C495.6 108.2 403.8 16.4 288 2V66.7C368.4 80.1 431.9 143.6 445.3 224zM510 288H445.3C431.9 368.4 368.4 431.9 288 445.4V510c115.8-14.4 207.6-106.2 222-222zM2 288C16.4 403.8 108.2 495.6 224 510V445.4C143.6 431.9 80.1 368.4 66.7 288H2zm0-64H66.7C80.1 143.6 143.6 80.1 224 66.7V2C108.2 16.4 16.4 108.2 2 224zm206-64c0-17.7-14.3-32-32-32s-32 14.3-32 32V352c0 17.7 14.3 32 32 32s32-14.3 32-32V288h96v64c0 17.7 14.3 32 32 32s32-14.3 32-32V160c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H208V160z"]},MR={prefix:"fas",iconName:"universal-access",icon:[512,512,[],"f29a","M512 256c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0S512 114.6 512 256zM161.5 169.9c-12.2-5.2-26.3 .4-31.5 12.6s.4 26.3 12.6 31.5l11.9 5.1c17.3 7.4 35.2 12.9 53.6 16.3v50.1c0 4.3-.7 8.6-2.1 12.6l-28.7 86.1c-4.2 12.6 2.6 26.2 15.2 30.4s26.2-2.6 30.4-15.2l24.4-73.2c1.3-3.8 4.8-6.4 8.8-6.4s7.6 2.6 8.8 6.4l24.4 73.2c4.2 12.6 17.8 19.4 30.4 15.2s19.4-17.8 15.2-30.4l-28.7-86.1c-1.4-4.1-2.1-8.3-2.1-12.6V235.5c18.4-3.5 36.3-8.9 53.6-16.3l11.9-5.1c12.2-5.2 17.8-19.3 12.6-31.5s-19.3-17.8-31.5-12.6L338.7 175c-26.1 11.2-54.2 17-82.7 17s-56.5-5.8-82.7-17l-11.9-5.1zM256 160c22.1 0 40-17.9 40-40s-17.9-40-40-40s-40 17.9-40 40s17.9 40 40 40z"]},zh={prefix:"fas",iconName:"circle-chevron-up",icon:[512,512,["chevron-circle-up"],"f139","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM377 271c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-87-87-87 87c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L239 167c9.4-9.4 24.6-9.4 33.9 0L377 271z"]},CR=zh,LR={prefix:"fas",iconName:"lari-sign",icon:[384,512,[],"e1c8","M144 32c17.7 0 32 14.3 32 32V96.7c5.3-.4 10.6-.7 16-.7s10.7 .2 16 .7V64c0-17.7 14.3-32 32-32s32 14.3 32 32v49.4c54.9 25.2 95.8 75.5 108.2 136.2c3.5 17.3-7.7 34.2-25 37.7s-34.2-7.7-37.7-25c-6.1-29.9-22.5-55.9-45.4-74.3V256c0 17.7-14.3 32-32 32s-32-14.3-32-32V161c-5.2-.7-10.6-1-16-1s-10.8 .3-16 1v95c0 17.7-14.3 32-32 32s-32-14.3-32-32V188.1C82.7 211.5 64 247.6 64 288c0 70.7 57.3 128 128 128H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H192 32c-17.7 0-32-14.3-32-32s14.3-32 32-32H48.9C18.5 382 0 337.2 0 288c0-77.5 45.9-144.3 112-174.6V64c0-17.7 14.3-32 32-32z"]},yR={prefix:"fas",iconName:"volcano",icon:[512,512,[127755],"f770","M160 144c-35.3 0-64-28.7-64-64s28.7-64 64-64c15.7 0 30 5.6 41.2 15C212.4 12.4 232.7 0 256 0s43.6 12.4 54.8 31C322 21.6 336.3 16 352 16c35.3 0 64 28.7 64 64s-28.7 64-64 64c-14.7 0-28.3-5-39.1-13.3l-32 48C275.3 187 266 192 256 192s-19.3-5-24.9-13.3l-32-48C188.3 139 174.7 144 160 144zM144 352l48.4-24.2c10.2-5.1 21.6-7.8 33-7.8c19.6 0 38.4 7.8 52.2 21.6l32.5 32.5c6.3 6.3 14.9 9.9 23.8 9.9c11.3 0 21.8-5.6 28-15l9.7-14.6-59-66.3c-9.1-10.2-22.2-16.1-35.9-16.1H235.1c-13.7 0-26.8 5.9-35.9 16.1l-59.9 67.4L144 352zm19.4-95.8c18.2-20.5 44.3-32.2 71.8-32.2h41.8c27.4 0 53.5 11.7 71.8 32.2l150.2 169c8.5 9.5 13.2 21.9 13.2 34.7c0 28.8-23.4 52.2-52.2 52.2H52.2C23.4 512 0 488.6 0 459.8c0-12.8 4.7-25.1 13.2-34.7l150.2-169z"]},bR={prefix:"fas",iconName:"person-walking-dashed-line-arrow-right",icon:[640,512,[],"e553","M208 96c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zM123.7 200.5c1-.4 1.9-.8 2.9-1.2l-16.9 63.5c-5.6 21.1-.1 43.6 14.7 59.7l70.7 77.1 22 88.1c4.3 17.1 21.7 27.6 38.8 23.3s27.6-21.7 23.3-38.8l-23-92.1c-1.9-7.8-5.8-14.9-11.2-20.8l-49.5-54 19.3-65.5 9.6 23c4.4 10.6 12.5 19.3 22.8 24.5l26.7 13.3c15.8 7.9 35 1.5 42.9-14.3s1.5-35-14.3-42.9L281 232.7l-15.3-36.8C248.5 154.8 208.3 128 163.7 128c-22.8 0-45.3 4.8-66.1 14l-8 3.5c-32.9 14.6-58.1 42.4-69.4 76.5l-2.6 7.8c-5.6 16.8 3.5 34.9 20.2 40.5s34.9-3.5 40.5-20.2l2.6-7.8c5.7-17.1 18.3-30.9 34.7-38.2l8-3.5zm-30 135.1L68.7 398 9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L116.3 441c4.6-4.6 8.2-10.1 10.6-16.1l14.5-36.2-40.7-44.4c-2.5-2.7-4.8-5.6-7-8.6zM550.6 153.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L530.7 224H384c-17.7 0-32 14.3-32 32s14.3 32 32 32H530.7l-25.4 25.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l80-80c12.5-12.5 12.5-32.8 0-45.3l-80-80zM392 0c-13.3 0-24 10.7-24 24V72c0 13.3 10.7 24 24 24s24-10.7 24-24V24c0-13.3-10.7-24-24-24zm24 152c0-13.3-10.7-24-24-24s-24 10.7-24 24v16c0 13.3 10.7 24 24 24s24-10.7 24-24V152zM392 320c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24s24-10.7 24-24V344c0-13.3-10.7-24-24-24zm24 120c0-13.3-10.7-24-24-24s-24 10.7-24 24v48c0 13.3 10.7 24 24 24s24-10.7 24-24V440z"]},wa={prefix:"fas",iconName:"sterling-sign",icon:[384,512,[163,"gbp","pound-sign"],"f154","M144 160.4c0-35.5 28.8-64.4 64.4-64.4c6.9 0 13.8 1.1 20.4 3.3l81.2 27.1c16.8 5.6 34.9-3.5 40.5-20.2s-3.5-34.9-20.2-40.5L249 38.6c-13.1-4.4-26.8-6.6-40.6-6.6C137.5 32 80 89.5 80 160.4V224H64c-17.7 0-32 14.3-32 32s14.3 32 32 32H80v44.5c0 17.4-4.7 34.5-13.7 49.4L36.6 431.5c-5.9 9.9-6.1 22.2-.4 32.2S52.5 480 64 480H320c17.7 0 32-14.3 32-32s-14.3-32-32-32H120.5l.7-1.1C136.1 390 144 361.5 144 332.5V288H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H144V160.4z"]},xR=wa,SR=wa,wR={prefix:"fas",iconName:"viruses",icon:[640,512,[],"e076","M192 0c13.3 0 24 10.7 24 24V37.5c0 35.6 43.1 53.5 68.3 28.3l9.5-9.5c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-9.5 9.5C293 124.9 310.9 168 346.5 168H360c13.3 0 24 10.7 24 24s-10.7 24-24 24H346.5c-35.6 0-53.5 43.1-28.3 68.3l9.5 9.5c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-9.5-9.5C259.1 293 216 310.9 216 346.5V360c0 13.3-10.7 24-24 24s-24-10.7-24-24V346.5c0-35.6-43.1-53.5-68.3-28.3l-9.5 9.5c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l9.5-9.5C91 259.1 73.1 216 37.5 216H24c-13.3 0-24-10.7-24-24s10.7-24 24-24H37.5c35.6 0 53.5-43.1 28.3-68.3l-9.5-9.5c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l9.5 9.5C124.9 91 168 73.1 168 37.5V24c0-13.3 10.7-24 24-24zm48 224c8.8 0 16-7.2 16-16s-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16zm-48-64c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zm320 80c0 33 39.9 49.5 63.2 26.2c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6C574.5 312.1 591 352 624 352c8.8 0 16 7.2 16 16s-7.2 16-16 16c-33 0-49.5 39.9-26.2 63.2c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0C551.9 446.5 512 463 512 496c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-33-39.9-49.5-63.2-26.2c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6C417.5 423.9 401 384 368 384c-8.8 0-16-7.2-16-16s7.2-16 16-16c33 0 49.5-39.9 26.2-63.2c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0C440.1 289.5 480 273 480 240c0-8.8 7.2-16 16-16s16 7.2 16 16zm0 112c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32z"]},NR={prefix:"fas",iconName:"square-person-confined",icon:[448,512,[],"e577","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM256 144c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48zM240 248c0-30.9 25.1-56 56-56s56 25.1 56 56V350.1c0 36.4-29.5 65.9-65.9 65.9c-17.5 0-34.3-6.9-46.6-19.3L184.8 342l-28.1 56.3c-7.9 15.8-27.1 22.2-42.9 14.3s-22.2-27.1-14.3-42.9l48-96c4.6-9.2 13.3-15.6 23.5-17.3s20.5 1.7 27.8 9L240 306.7V248z"]},AR={prefix:"fas",iconName:"user-tie",icon:[448,512,[],"f508","M224 0c70.7 0 128 57.3 128 128s-57.3 128-128 128s-128-57.3-128-128S153.3 0 224 0zM209.1 359.2l-18.6-31c-6.4-10.7 1.3-24.2 13.7-24.2H224h19.7c12.4 0 20.1 13.6 13.7 24.2l-18.6 31 33.4 123.9 39.5-161.2c77.2 12 136.3 78.8 136.3 159.4c0 17-13.8 30.7-30.7 30.7H265.1 182.9 30.7C13.8 512 0 498.2 0 481.3c0-80.6 59.1-147.4 136.3-159.4l39.5 161.2 33.4-123.9z"]},gh={prefix:"fas",iconName:"arrow-down-long",icon:[384,512,["long-arrow-down"],"f175","M224 402.7V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V402.7L86.6 329.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 402.7z"]},_R=gh,kR={prefix:"fas",iconName:"tent-arrow-down-to-line",icon:[640,512,[],"e57e","M241.8 111.9c8.9 9.9 8.1 25-1.8 33.9l-80 72c-9.1 8.2-23 8.2-32.1 0l-80-72c-9.9-8.9-10.7-24-1.8-33.9s24-10.7 33.9-1.8l39.9 36L120 24c0-13.3 10.7-24 24-24s24 10.7 24 24l0 122.1 39.9-36c9.9-8.9 25-8.1 33.9 1.8zm122.8 22.6c11.5-8.7 27.3-8.7 38.8 0l168 128c6.6 5 11 12.5 12.3 20.7l24 160 .7 4.7c17.5 .2 31.6 14.4 31.6 32c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H159.6l.7-4.7 24-160c1.2-8.2 5.6-15.7 12.3-20.7l168-128zM384 448h76.8L384 320V448z"]},TR={prefix:"fas",iconName:"certificate",icon:[512,512,[],"f0a3","M211 7.3C205 1 196-1.4 187.6 .8s-14.9 8.9-17.1 17.3L154.7 80.6l-62-17.5c-8.4-2.4-17.4 0-23.5 6.1s-8.5 15.1-6.1 23.5l17.5 62L18.1 170.6c-8.4 2.1-15 8.7-17.3 17.1S1 205 7.3 211l46.2 45L7.3 301C1 307-1.4 316 .8 324.4s8.9 14.9 17.3 17.1l62.5 15.8-17.5 62c-2.4 8.4 0 17.4 6.1 23.5s15.1 8.5 23.5 6.1l62-17.5 15.8 62.5c2.1 8.4 8.7 15 17.1 17.3s17.3-.2 23.4-6.4l45-46.2 45 46.2c6.1 6.2 15 8.7 23.4 6.4s14.9-8.9 17.1-17.3l15.8-62.5 62 17.5c8.4 2.4 17.4 0 23.5-6.1s8.5-15.1 6.1-23.5l-17.5-62 62.5-15.8c8.4-2.1 15-8.7 17.3-17.1s-.2-17.3-6.4-23.4l-46.2-45 46.2-45c6.2-6.1 8.7-15 6.4-23.4s-8.9-14.9-17.3-17.1l-62.5-15.8 17.5-62c2.4-8.4 0-17.4-6.1-23.5s-15.1-8.5-23.5-6.1l-62 17.5L341.4 18.1c-2.1-8.4-8.7-15-17.1-17.3S307 1 301 7.3L256 53.5 211 7.3z"]},Vh={prefix:"fas",iconName:"reply-all",icon:[576,512,["mail-reply-all"],"f122","M209.4 39.5c-9.1-9.6-24.3-10-33.9-.9L33.8 173.2c-19.9 18.9-19.9 50.7 0 69.6L175.5 377.4c9.6 9.1 24.8 8.7 33.9-.9s8.7-24.8-.9-33.9L66.8 208 208.5 73.4c9.6-9.1 10-24.3 .9-33.9zM352 64c0-12.6-7.4-24.1-19-29.2s-25-3-34.4 5.4l-160 144c-6.7 6.1-10.6 14.7-10.6 23.8s3.9 17.7 10.6 23.8l160 144c9.4 8.5 22.9 10.6 34.4 5.4s19-16.6 19-29.2V288h32c53 0 96 43 96 96c0 30.4-12.8 47.9-22.2 56.7c-5.5 5.1-9.8 12-9.8 19.5c0 10.9 8.8 19.7 19.7 19.7c2.8 0 5.6-.6 8.1-1.9C494.5 467.9 576 417.3 576 304c0-97.2-78.8-176-176-176H352V64z"]},PR=Vh,ER={prefix:"fas",iconName:"suitcase",icon:[512,512,[129523],"f0f2","M176 56V96H336V56c0-4.4-3.6-8-8-8H184c-4.4 0-8 3.6-8 8zM128 96V56c0-30.9 25.1-56 56-56H328c30.9 0 56 25.1 56 56V96v32V480H128V128 96zM64 96H96V480H64c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64zM448 480H416V96h32c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64z"]},Mh={prefix:"fas",iconName:"person-skating",icon:[448,512,["skating"],"f7c5","M448 48c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48zM128 128c0-17.7 14.3-32 32-32H319.4c43.6 0 64.6 53.4 32.8 83.1l-74.4 69.4 60.2 60.2c9 9 14.1 21.2 14.1 33.9V416c0 17.7-14.3 32-32 32s-32-14.3-32-32V349.3l-77.9-77.8c-26.6-26.6-24.6-70.3 4.3-94.4l20.4-17H160c-17.7 0-32-14.3-32-32zM81.4 353.4l86.9-86.9c4.6 10 11 19.3 19.3 27.5l21.8 21.8-82.7 82.7c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3zm322.5 95.1c8.6 2.1 13.8 10.8 11.6 19.4l-.4 1.7c-6.2 24.9-28.6 42.4-54.3 42.4H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h88.8c11 0 20.6-7.5 23.3-18.2l.4-1.7c2.1-8.6 10.8-13.8 19.4-11.6zM135.2 478.3l-6.2 3.1c-21.6 10.8-47.6 6.6-64.6-10.5L4.7 411.3c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0l59.6 59.6c7.3 7.3 18.5 9.1 27.7 4.5l6.2-3.1c7.9-4 17.5-.7 21.5 7.2s.7 17.5-7.2 21.5z"]},OR=Mh,Ch={prefix:"fas",iconName:"filter-circle-dollar",icon:[576,512,["funnel-dollar"],"f662","M3.9 22.9C10.5 8.9 24.5 0 40 0H472c15.5 0 29.5 8.9 36.1 22.9s4.6 30.5-5.2 42.5L396.4 195.6C316.2 212.1 256 283 256 368c0 27.4 6.3 53.4 17.5 76.5c-1.6-.8-3.2-1.8-4.7-2.9l-64-48c-8.1-6-12.8-15.5-12.8-25.6V288.9L9 65.3C-.7 53.4-2.8 36.8 3.9 22.9zM576 368c0 79.5-64.5 144-144 144s-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144zM408.8 335.4c.6-.9 1.8-2.1 4.2-3.4c5.1-2.7 12.5-4.1 18.7-4c8.2 .1 17.1 1.8 26.4 4.1c8.6 2.1 17.3-3.1 19.4-11.7s-3.1-17.3-11.7-19.4c-5.6-1.4-11.6-2.7-17.9-3.7V288c0-8.8-7.2-16-16-16s-16 7.2-16 16v9.5c-6.1 1.2-12.3 3.2-18 6.3c-11.8 6.3-23 18.4-21.8 37.2c1 16 11.7 25.3 21.6 30.7c8.8 4.7 19.7 7.8 28.6 10.3l1.8 .5c10.3 2.9 17.9 5.2 23.2 8.3c4.5 2.7 4.7 4.2 4.7 5.6c.1 2.4-.5 3.7-1 4.5c-.6 1-1.8 2.2-4 3.3c-4.7 2.5-11.8 3.8-18.5 3.6c-9.5-.3-18.5-3.1-29.9-6.8c-1.9-.6-3.8-1.2-5.8-1.8c-8.4-2.6-17.4 2.1-20 10.5s2.1 17.4 10.5 20c1.6 .5 3.3 1 5 1.6l0 0 0 0c7 2.3 15.1 4.8 23.7 6.6v11.4c0 8.8 7.2 16 16 16s16-7.2 16-16V438.7c6.2-1.1 12.5-3.1 18.3-6.2c12.1-6.5 22.3-18.7 21.7-36.9c-.5-16.2-10.3-26.3-20.5-32.3c-9.4-5.6-21.2-8.9-30.5-11.5l-.2 0c-10.4-2.9-18.3-5.2-23.9-8.2c-4.8-2.6-4.8-4-4.8-4.5l0-.1c-.1-1.9 .3-2.9 .8-3.6z"]},RR=Ch,FR={prefix:"fas",iconName:"camera-retro",icon:[512,512,[128247],"f083","M220.6 121.2L271.1 96 448 96v96H333.2c-21.9-15.1-48.5-24-77.2-24s-55.2 8.9-77.2 24H64V128H192c9.9 0 19.7-2.3 28.6-6.8zM0 128V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H271.1c-9.9 0-19.7 2.3-28.6 6.8L192 64H160V48c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16l0 16C28.7 64 0 92.7 0 128zM344 304c0 48.6-39.4 88-88 88s-88-39.4-88-88s39.4-88 88-88s88 39.4 88 88z"]},Lh={prefix:"fas",iconName:"circle-arrow-down",icon:[512,512,["arrow-circle-down"],"f0ab","M256 0C114.6 0 0 114.6 0 256S114.6 512 256 512s256-114.6 256-256S397.4 0 256 0zM127 297c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l71 71L232 120c0-13.3 10.7-24 24-24s24 10.7 24 24l0 214.1 71-71c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L273 409c-9.4 9.4-24.6 9.4-33.9 0L127 297z"]},BR=Lh,yh={prefix:"fas",iconName:"file-import",icon:[512,512,["arrow-right-to-file"],"f56f","M128 64c0-35.3 28.7-64 64-64H352V128c0 17.7 14.3 32 32 32H512V448c0 35.3-28.7 64-64 64H192c-35.3 0-64-28.7-64-64V336H302.1l-39 39c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l80-80c9.4-9.4 9.4-24.6 0-33.9l-80-80c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l39 39H128V64zm0 224v48H24c-13.3 0-24-10.7-24-24s10.7-24 24-24H128zM512 128H384V0L512 128z"]},DR=yh,bh={prefix:"fas",iconName:"square-arrow-up-right",icon:[448,512,["external-link-square"],"f14c","M384 32c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H384zM160 144c-13.3 0-24 10.7-24 24s10.7 24 24 24h94.1L119 327c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l135-135V328c0 13.3 10.7 24 24 24s24-10.7 24-24V168c0-13.3-10.7-24-24-24H160z"]},IR=bh,UR={prefix:"fas",iconName:"box-open",icon:[640,512,[],"f49e","M58.9 42.1c3-6.1 9.6-9.6 16.3-8.7L320 64 564.8 33.4c6.7-.8 13.3 2.7 16.3 8.7l41.7 83.4c9 17.9-.6 39.6-19.8 45.1L439.6 217.3c-13.9 4-28.8-1.9-36.2-14.3L320 64 236.6 203c-7.4 12.4-22.3 18.3-36.2 14.3L37.1 170.6c-19.3-5.5-28.8-27.2-19.8-45.1L58.9 42.1zM321.1 128l54.9 91.4c14.9 24.8 44.6 36.6 72.5 28.6L576 211.6v167c0 22-15 41.2-36.4 46.6l-204.1 51c-10.2 2.6-20.9 2.6-31 0l-204.1-51C79 419.7 64 400.5 64 378.5v-167L191.6 248c27.8 8 57.6-3.8 72.5-28.6L318.9 128h2.2z"]},WR={prefix:"fas",iconName:"scroll",icon:[576,512,[128220],"f70e","M0 80v48c0 17.7 14.3 32 32 32H48 96V80c0-26.5-21.5-48-48-48S0 53.5 0 80zM112 32c10 13.4 16 30 16 48V384c0 35.3 28.7 64 64 64s64-28.7 64-64v-5.3c0-32.4 26.3-58.7 58.7-58.7H480V128c0-53-43-96-96-96H112zM464 480c61.9 0 112-50.1 112-112c0-8.8-7.2-16-16-16H314.7c-14.7 0-26.7 11.9-26.7 26.7V384c0 53-43 96-96 96H368h96z"]},$R={prefix:"fas",iconName:"spa",icon:[576,512,[],"f5bb","M183.1 235.3c33.7 20.7 62.9 48.1 85.8 80.5c7 9.9 13.4 20.3 19.1 31c5.7-10.8 12.1-21.1 19.1-31c22.9-32.4 52.1-59.8 85.8-80.5C437.6 207.8 490.1 192 546 192h9.9c11.1 0 20.1 9 20.1 20.1C576 360.1 456.1 480 308.1 480H288 267.9C119.9 480 0 360.1 0 212.1C0 201 9 192 20.1 192H30c55.9 0 108.4 15.8 153.1 43.3zM301.5 37.6c15.7 16.9 61.1 71.8 84.4 164.6c-38 21.6-71.4 50.8-97.9 85.6c-26.5-34.8-59.9-63.9-97.9-85.6c23.2-92.8 68.6-147.7 84.4-164.6C278 33.9 282.9 32 288 32s10 1.9 13.5 5.6z"]},qR={prefix:"fas",iconName:"location-pin-lock",icon:[512,512,[],"e51f","M215.7 499.2c11-13.8 25.1-31.7 40.3-52.3V352c0-23.7 12.9-44.4 32-55.4V272c0-55.6 40.5-101.7 93.6-110.5C367 70 287.7 0 192 0C86 0 0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 256c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64zm208-16c17.7 0 32 14.3 32 32v48H368V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H480c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z"]},GR={prefix:"fas",iconName:"pause",icon:[320,512,[9208],"f04c","M48 64C21.5 64 0 85.5 0 112V400c0 26.5 21.5 48 48 48H80c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48H48zm192 0c-26.5 0-48 21.5-48 48V400c0 26.5 21.5 48 48 48h32c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48H240z"]},jR={prefix:"fas",iconName:"hill-avalanche",icon:[640,512,[],"e507","M471.7 401.9c34.2 23.1 81.1 19.5 111.4-10.8c34.4-34.4 34.4-90.1 0-124.4c-27.8-27.8-69.5-33.1-102.6-16c-11.8 6.1-16.4 20.6-10.3 32.3s20.6 16.4 32.3 10.3c15.1-7.8 34-5.3 46.6 7.3c15.6 15.6 15.6 40.9 0 56.6s-40.9 15.6-56.6 0l-81.7-81.7C433.2 261.3 448 236.4 448 208c0-33.9-21.1-62.9-50.9-74.5c1.9-6.8 2.9-14 2.9-21.5c0-44.2-35.8-80-80-80c-27.3 0-51.5 13.7-65.9 34.6C248.3 46.6 229.9 32 208 32c-26.5 0-48 21.5-48 48c0 4 .5 7.9 1.4 11.6L471.7 401.9zM512 64c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zm0 128c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zM100.3 87C75.1 61.8 32 79.7 32 115.3V432c0 44.2 35.8 80 80 80H428.7c35.6 0 53.5-43.1 28.3-68.3L100.3 87z"]},pe={prefix:"fas",iconName:"temperature-empty",icon:[320,512,["temperature-0","thermometer-0","thermometer-empty"],"f2cb","M112 112c0-26.5 21.5-48 48-48s48 21.5 48 48V276.5c0 17.3 7.1 31.9 15.3 42.5C233.8 332.6 240 349.5 240 368c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-18.5 6.2-35.4 16.7-48.9c8.2-10.6 15.3-25.2 15.3-42.5V112zM160 0C98.1 0 48 50.2 48 112V276.5c0 .1-.1 .3-.2 .6c-.2 .6-.8 1.6-1.7 2.8C27.2 304.2 16 334.8 16 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-33.2-11.3-63.8-30.1-88.1c-.9-1.2-1.5-2.2-1.7-2.8c-.1-.3-.2-.5-.2-.6V112C272 50.2 221.9 0 160 0zm0 416c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48z"]},KR=pe,XR=pe,YR=pe,JR={prefix:"fas",iconName:"bomb",icon:[512,512,[128163],"f1e2","M459.1 52.4L442.6 6.5C440.7 2.6 436.5 0 432.1 0s-8.5 2.6-10.4 6.5L405.2 52.4l-46 16.8c-4.3 1.6-7.3 5.9-7.2 10.4c0 4.5 3 8.7 7.2 10.2l45.7 16.8 16.8 45.8c1.5 4.4 5.8 7.5 10.4 7.5s8.9-3.1 10.4-7.5l16.5-45.8 45.7-16.8c4.2-1.5 7.2-5.7 7.2-10.2c0-4.6-3-8.9-7.2-10.4L459.1 52.4zm-132.4 53c-12.5-12.5-32.8-12.5-45.3 0l-2.9 2.9C256.5 100.3 232.7 96 208 96C93.1 96 0 189.1 0 304S93.1 512 208 512s208-93.1 208-208c0-24.7-4.3-48.5-12.2-70.5l2.9-2.9c12.5-12.5 12.5-32.8 0-45.3l-80-80zM200 192c-57.4 0-104 46.6-104 104v8c0 8.8-7.2 16-16 16s-16-7.2-16-16v-8c0-75.1 60.9-136 136-136h8c8.8 0 16 7.2 16 16s-7.2 16-16 16h-8z"]},QR={prefix:"fas",iconName:"registered",icon:[512,512,[174],"f25d","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM160 152c0-13.3 10.7-24 24-24h88c44.2 0 80 35.8 80 80c0 28-14.4 52.7-36.3 67l34.1 75.1c5.5 12.1 .1 26.3-11.9 31.8s-26.3 .1-31.8-11.9L268.9 288H208v72c0 13.3-10.7 24-24 24s-24-10.7-24-24V264 152zm48 88h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H208v64z"]},Na={prefix:"fas",iconName:"address-card",icon:[576,512,[62140,"contact-card","vcard"],"f2bb","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm80 256h64c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80zm96-96c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zm128-32H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s7.2-16 16-16z"]},ZR=Na,cF=Na,xh={prefix:"fas",iconName:"scale-unbalanced-flip",icon:[640,512,["balance-scale-right"],"f516","M117.9 62.4c-16.8-5.6-25.8-23.7-20.2-40.5s23.7-25.8 40.5-20.2l113 37.7C265 15.8 290.7 0 320 0c44.2 0 80 35.8 80 80c0 3-.2 5.9-.5 8.8l122.6 40.9c16.8 5.6 25.8 23.7 20.2 40.5s-23.7 25.8-40.5 20.2L366.4 145.2c-4.5 3.2-9.3 5.9-14.4 8.2V480c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32s14.3-32 32-32H288V153.3c-21-9.2-37.2-27-44.2-49l-125.9-42zm396.3 211c-.4-.8-1.3-1.3-2.2-1.3s-1.7 .5-2.2 1.3L435.1 416H588.9L514.2 273.3zM512 224c18.8 0 36 10.4 44.7 27l77.8 148.5c3.1 5.8 6.1 14 5.5 23.8c-.7 12.1-4.8 35.2-24.8 55.1C594.9 498.6 562.2 512 512 512s-82.9-13.4-103.2-33.5c-20-20-24.2-43-24.8-55.1c-.6-9.8 2.5-18 5.5-23.8L467.3 251c8.7-16.6 25.9-27 44.7-27zM128 144c-.9 0-1.7 .5-2.2 1.3L51.1 288H204.9L130.2 145.3c-.4-.8-1.3-1.3-2.2-1.3zm44.7-21l77.8 148.5c3.1 5.8 6.1 14 5.5 23.8c-.7 12.1-4.8 35.2-24.8 55.1C210.9 370.6 178.2 384 128 384s-82.9-13.4-103.2-33.5c-20-20-24.2-43-24.8-55.1c-.6-9.8 2.5-18 5.5-23.8L83.3 123C92 106.4 109.2 96 128 96s36 10.4 44.7 27z"]},eF=xh,rF={prefix:"fas",iconName:"subscript",icon:[512,512,[],"f12c","M32 64C14.3 64 0 78.3 0 96s14.3 32 32 32H47.3l89.6 128L47.3 384H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64c10.4 0 20.2-5.1 26.2-13.6L176 311.8l85.8 122.6c6 8.6 15.8 13.6 26.2 13.6h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H304.7L215.1 256l89.6-128H320c17.7 0 32-14.3 32-32s-14.3-32-32-32H288c-10.4 0-20.2 5.1-26.2 13.6L176 200.2 90.2 77.6C84.2 69.1 74.4 64 64 64H32zM480 320c0-11.1-5.7-21.4-15.2-27.2s-21.2-6.4-31.1-1.4l-32 16c-15.8 7.9-22.2 27.1-14.3 42.9C393 361.5 404.3 368 416 368v80c-17.7 0-32 14.3-32 32s14.3 32 32 32h32 32c17.7 0 32-14.3 32-32s-14.3-32-32-32V320z"]},Sh={prefix:"fas",iconName:"diamond-turn-right",icon:[512,512,["directions"],"f5eb","M227.7 11.7c15.6-15.6 40.9-15.6 56.6 0l216 216c15.6 15.6 15.6 40.9 0 56.6l-216 216c-15.6 15.6-40.9 15.6-56.6 0l-216-216c-15.6-15.6-15.6-40.9 0-56.6l216-216zm87.6 137c-4.6-4.6-11.5-5.9-17.4-3.5s-9.9 8.3-9.9 14.8v56H224c-35.3 0-64 28.7-64 64v48c0 13.3 10.7 24 24 24s24-10.7 24-24V280c0-8.8 7.2-16 16-16h64v56c0 6.5 3.9 12.3 9.9 14.8s12.9 1.1 17.4-3.5l80-80c6.2-6.2 6.2-16.4 0-22.6l-80-80z"]},aF=Sh,nF={prefix:"fas",iconName:"burst",icon:[512,512,[],"e4dc","M37.6 4.2C28-2.3 15.2-1.1 7 7s-9.4 21-2.8 30.5l112 163.3L16.6 233.2C6.7 236.4 0 245.6 0 256s6.7 19.6 16.6 22.8l103.1 33.4L66.8 412.8c-4.9 9.3-3.2 20.7 4.3 28.1s18.8 9.2 28.1 4.3l100.6-52.9 33.4 103.1c3.2 9.9 12.4 16.6 22.8 16.6s19.6-6.7 22.8-16.6l33.4-103.1 100.6 52.9c9.3 4.9 20.7 3.2 28.1-4.3s9.2-18.8 4.3-28.1L392.3 312.2l103.1-33.4c9.9-3.2 16.6-12.4 16.6-22.8s-6.7-19.6-16.6-22.8L388.9 198.7l25.7-70.4c3.2-8.8 1-18.6-5.6-25.2s-16.4-8.8-25.2-5.6l-70.4 25.7L278.8 16.6C275.6 6.7 266.4 0 256 0s-19.6 6.7-22.8 16.6l-32.3 99.6L37.6 4.2z"]},wh={prefix:"fas",iconName:"house-laptop",icon:[640,512,["laptop-house"],"e066","M218.3 8.5c12.3-11.3 31.2-11.3 43.4 0l208 192c6.7 6.2 10.3 14.8 10.3 23.5H336c-19.1 0-36.3 8.4-48 21.7V208c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h64V416H112c-26.5 0-48-21.5-48-48V256H32c-13.2 0-25-8.1-29.8-20.3s-1.6-26.2 8.1-35.2l208-192zM352 304V448H544V304H352zm-48-16c0-17.7 14.3-32 32-32H560c17.7 0 32 14.3 32 32V448h32c8.8 0 16 7.2 16 16c0 26.5-21.5 48-48 48H544 352 304c-26.5 0-48-21.5-48-48c0-8.8 7.2-16 16-16h32V288z"]},tF=wh,Nh={prefix:"fas",iconName:"face-tired",icon:[512,512,[128555,"tired"],"f5c8","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM164.7 328.7c22-22 53.9-40.7 91.3-40.7s69.3 18.7 91.3 40.7c11.1 11.1 20.1 23.4 26.4 35.4c6.2 11.7 10.3 24.4 10.3 35.9c0 5.2-2.6 10.2-6.9 13.2s-9.8 3.7-14.7 1.8l-20.5-7.7c-26.9-10.1-55.5-15.3-84.3-15.3h-3.2c-28.8 0-57.3 5.2-84.3 15.3L149.6 415c-4.9 1.8-10.4 1.2-14.7-1.8s-6.9-7.9-6.9-13.2c0-11.6 4.2-24.2 10.3-35.9c6.3-12 15.3-24.3 26.4-35.4zm-31.2-182l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6c0-9 9.6-14.7 17.5-10.5zM396 157.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5z"]},sF=Nh,iF={prefix:"fas",iconName:"money-bills",icon:[640,512,[],"e1f3","M96 96V320c0 35.3 28.7 64 64 64H576c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H160c-35.3 0-64 28.7-64 64zm64 160c35.3 0 64 28.7 64 64H160V256zM224 96c0 35.3-28.7 64-64 64V96h64zM576 256v64H512c0-35.3 28.7-64 64-64zM512 96h64v64c-35.3 0-64-28.7-64-64zM448 208c0 44.2-35.8 80-80 80s-80-35.8-80-80s35.8-80 80-80s80 35.8 80 80zM48 120c0-13.3-10.7-24-24-24S0 106.7 0 120V360c0 66.3 53.7 120 120 120H520c13.3 0 24-10.7 24-24s-10.7-24-24-24H120c-39.8 0-72-32.2-72-72V120z"]},oF={prefix:"fas",iconName:"smog",icon:[640,512,[],"f75f","M32 144c0 79.5 64.5 144 144 144H299.3c22.6 19.9 52.2 32 84.7 32s62.1-12.1 84.7-32H496c61.9 0 112-50.1 112-112s-50.1-112-112-112c-10.7 0-21 1.5-30.8 4.3C443.8 27.7 401.1 0 352 0c-32.6 0-62.4 12.2-85.1 32.3C242.1 12.1 210.5 0 176 0C96.5 0 32 64.5 32 144zM616 368H280c-13.3 0-24 10.7-24 24s10.7 24 24 24H616c13.3 0 24-10.7 24-24s-10.7-24-24-24zm-64 96H440c-13.3 0-24 10.7-24 24s10.7 24 24 24H552c13.3 0 24-10.7 24-24s-10.7-24-24-24zm-192 0H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H360c13.3 0 24-10.7 24-24s-10.7-24-24-24zM224 392c0-13.3-10.7-24-24-24H96c-13.3 0-24 10.7-24 24s10.7 24 24 24H200c13.3 0 24-10.7 24-24z"]},fF={prefix:"fas",iconName:"crutch",icon:[512,512,[],"f7f7","M297.4 9.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0zm-96 144l-34.8 34.8c-12.9 12.9-21.9 29.2-25.8 47.1L116.8 342.9c-1.3 5.9-4.3 11.4-8.6 15.7L9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l98.8-98.8c4.3-4.3 9.7-7.3 15.7-8.6l107.6-23.9c17.8-4 34.1-12.9 47.1-25.8l34.7-34.7c0 0 .1-.1 .1-.1s.1-.1 .1-.1l74.6-74.6-45.3-45.3L336 242.7 269.3 176l52.1-52.1L276.1 78.6l-74.7 74.7zM224 221.3L290.7 288l-12.2 12.2c-4.3 4.3-9.7 7.3-15.7 8.6l-76.7 17 17-76.7c1.3-5.9 4.3-11.4 8.6-15.7L224 221.3z"]},Aa={prefix:"fas",iconName:"font-awesome",icon:[448,512,[62501,62694,"font-awesome-flag","font-awesome-logo-full"],"f2b4","M448 48V384c-63.1 22.5-82.3 32-119.5 32c-62.8 0-86.6-32-149.3-32c-20.6 0-36.6 3.6-51.2 8.2v-64c14.6-4.6 30.6-8.2 51.2-8.2c62.7 0 86.5 32 149.3 32c20.4 0 35.6-3 55.5-9.3v-208c-19.9 6.3-35.1 9.3-55.5 9.3c-62.8 0-86.6-32-149.3-32c-50.8 0-74.9 20.6-115.2 28.7V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V64C0 46.3 14.3 32 32 32s32 14.3 32 32V76.7c40.3-8 64.4-28.7 115.2-28.7c62.7 0 86.5 32 149.3 32c37.1 0 56.4-9.5 119.5-32z"]},lF=Aa,uF=Aa,_a={prefix:"fas",iconName:"cloud-arrow-up",icon:[640,512,[62338,"cloud-upload","cloud-upload-alt"],"f0ee","M144 480C64.5 480 0 415.5 0 336c0-62.8 40.2-116.2 96.2-135.9c-.1-2.7-.2-5.4-.2-8.1c0-88.4 71.6-160 160-160c59.3 0 111 32.2 138.7 80.2C409.9 102 428.3 96 448 96c53 0 96 43 96 96c0 12.2-2.3 23.8-6.4 34.6C596 238.4 640 290.1 640 352c0 70.7-57.3 128-128 128H144zm79-217c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l39-39V392c0 13.3 10.7 24 24 24s24-10.7 24-24V257.9l39 39c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-80-80c-9.4-9.4-24.6-9.4-33.9 0l-80 80z"]},hF=_a,pF=_a,mF={prefix:"fas",iconName:"palette",icon:[512,512,[127912],"f53f","M512 256c0 .9 0 1.8 0 2.7c-.4 36.5-33.6 61.3-70.1 61.3H344c-26.5 0-48 21.5-48 48c0 3.4 .4 6.7 1 9.9c2.1 10.2 6.5 20 10.8 29.9c6.1 13.8 12.1 27.5 12.1 42c0 31.8-21.6 60.7-53.4 62c-3.5 .1-7 .2-10.6 .2C114.6 512 0 397.4 0 256S114.6 0 256 0S512 114.6 512 256zM128 288c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zm0-96c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zM288 96c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zm96 96c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z"]},vF={prefix:"fas",iconName:"arrows-turn-right",icon:[512,512,[],"e4c0","M329.4 9.4c12.5-12.5 32.8-12.5 45.3 0l96 96c12.5 12.5 12.5 32.8 0 45.3l-96 96c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L370.7 160H160c-35.3 0-64 28.7-64 64v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V224C32 153.3 89.3 96 160 96H370.7L329.4 54.6c-12.5-12.5-12.5-32.8 0-45.3zm-96 256c12.5-12.5 32.8-12.5 45.3 0l96 96c12.5 12.5 12.5 32.8 0 45.3l-96 96c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L274.7 416H128c-17.7 0-32 14.3-32 32v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448c0-53 43-96 96-96H274.7l-41.4-41.4c-12.5-12.5-12.5-32.8 0-45.3z"]},dF={prefix:"fas",iconName:"vest",icon:[448,512,[],"e085","M207.1 237.4L151.2 69.7C168.6 79.7 192.6 88 224 88s55.4-8.3 72.8-18.3L226.5 280.6c-1.6 4.9-2.5 10-2.5 15.2V464c0 26.5 21.5 48 48 48H400c26.5 0 48-21.5 48-48V270.5c0-9.5-2.8-18.7-8.1-26.6l-47.9-71.8c-5.3-7.9-8.1-17.1-8.1-26.6V128 54.3 48c0-26.5-21.5-48-48-48h-4.5c-.2 0-.4 0-.6 0c-.4 0-.8 0-1.2 0C311 0 295.7 9.7 285.7 18.8C276.4 27.2 257.2 40 224 40s-52.4-12.8-61.7-21.2C152.3 9.7 137 0 118.3 0c-.4 0-.8 0-1.2 0c-.2 0-.4 0-.6 0H112C85.5 0 64 21.5 64 48v6.3V128v17.5c0 9.5-2.8 18.7-8.1 26.6L8.1 243.9C2.8 251.8 0 261.1 0 270.5V464c0 26.5 21.5 48 48 48H176c9.9 0 19-3 26.7-8.1C195.9 492.2 192 478.5 192 464V295.8c0-8.6 1.4-17.1 4.1-25.3l11-33.1zM347.3 356.7l48 48c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0l-48-48c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0zm-294.6 48l48-48c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6l-48 48c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6z"]},HF={prefix:"fas",iconName:"ferry",icon:[576,512,[],"e4ea","M224 0H352c17.7 0 32 14.3 32 32h75.1c20.6 0 31.6 24.3 18.1 39.8L456 96H120L98.8 71.8C85.3 56.3 96.3 32 116.9 32H192c0-17.7 14.3-32 32-32zM96 128H480c17.7 0 32 14.3 32 32V283.5c0 13.3-4.2 26.3-11.9 37.2l-51.4 71.9c-1.9 1.1-3.7 2.2-5.5 3.5c-15.5 10.7-34 18-51 19.9H375.6c-17.1-1.8-35-9-50.8-19.9c-22.1-15.5-51.6-15.5-73.7 0c-14.8 10.2-32.5 18-50.6 19.9H183.9c-17-1.8-35.6-9.2-51-19.9c-1.8-1.3-3.7-2.4-5.6-3.5L75.9 320.7C68.2 309.8 64 296.8 64 283.5V160c0-17.7 14.3-32 32-32zm32 64v96H448V192H128zM306.5 421.9C329 437.4 356.5 448 384 448c26.9 0 55.3-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 501.7 417 512 384 512c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 437.2 165.1 448 192 448c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z"]},zF={prefix:"fas",iconName:"arrows-down-to-people",icon:[640,512,[],"e4b9","M144 0c-13.3 0-24 10.7-24 24V142.1L97 119c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0l64-64c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-23 23V24c0-13.3-10.7-24-24-24zM360 200c0-22.1-17.9-40-40-40s-40 17.9-40 40s17.9 40 40 40s40-17.9 40-40zM184 296c0-22.1-17.9-40-40-40s-40 17.9-40 40s17.9 40 40 40s40-17.9 40-40zm312 40c22.1 0 40-17.9 40-40s-17.9-40-40-40s-40 17.9-40 40s17.9 40 40 40zM200 441.5l26.9 49.9c6.3 11.7 20.8 16 32.5 9.8s16-20.8 9.8-32.5l-36.3-67.5c1.7-1.7 3.2-3.6 4.3-5.8L264 345.5V400c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32V345.5l26.9 49.9c1.2 2.2 2.6 4.1 4.3 5.8l-36.3 67.5c-6.3 11.7-1.9 26.2 9.8 32.5s26.2 1.9 32.5-9.8L440 441.5V480c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32V441.5l26.9 49.9c6.3 11.7 20.8 16 32.5 9.8s16-20.8 9.8-32.5l-37.9-70.3c-15.3-28.5-45.1-46.3-77.5-46.3H486.2c-16.3 0-31.9 4.5-45.4 12.6l-33.6-62.3c-15.3-28.5-45.1-46.3-77.5-46.3H310.2c-32.4 0-62.1 17.8-77.5 46.3l-33.6 62.3c-13.5-8.1-29.1-12.6-45.4-12.6H134.2c-32.4 0-62.1 17.8-77.5 46.3L18.9 468.6c-6.3 11.7-1.9 26.2 9.8 32.5s26.2 1.9 32.5-9.8L88 441.5V480c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32V441.5zM415 153l64 64c9.4 9.4 24.6 9.4 33.9 0l64-64c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-23 23V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V142.1l-23-23c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9z"]},Ah={prefix:"fas",iconName:"seedling",icon:[512,512,[127793,"sprout"],"f4d8","M512 64c0 113.6-84.6 207.5-194.2 222c-7.1-53.4-30.6-101.6-65.3-139.3C290.8 78.3 364 32 448 32h32c17.7 0 32 14.3 32 32zM0 128c0-17.7 14.3-32 32-32H64c123.7 0 224 100.3 224 224v32 96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352C100.3 352 0 251.7 0 128z"]},gF=Ah,_h={prefix:"fas",iconName:"left-right",icon:[512,512,[8596,"arrows-alt-h"],"f337","M504.3 273.6c4.9-4.5 7.7-10.9 7.7-17.6s-2.8-13-7.7-17.6l-112-104c-7-6.5-17.2-8.2-25.9-4.4s-14.4 12.5-14.4 22l0 56-192 0 0-56c0-9.5-5.7-18.2-14.4-22s-18.9-2.1-25.9 4.4l-112 104C2.8 243 0 249.3 0 256s2.8 13 7.7 17.6l112 104c7 6.5 17.2 8.2 25.9 4.4s14.4-12.5 14.4-22l0-56 192 0 0 56c0 9.5 5.7 18.2 14.4 22s18.9 2.1 25.9-4.4l112-104z"]},VF=_h,MF={prefix:"fas",iconName:"boxes-packing",icon:[640,512,[],"e4c7","M256 48c0-26.5 21.5-48 48-48H592c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H381.3c1.8-5 2.7-10.4 2.7-16V253.3c18.6-6.6 32-24.4 32-45.3V176c0-26.5-21.5-48-48-48H256V48zM571.3 347.3c6.2-6.2 6.2-16.4 0-22.6l-64-64c-6.2-6.2-16.4-6.2-22.6 0l-64 64c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L480 310.6V432c0 8.8 7.2 16 16 16s16-7.2 16-16V310.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0zM0 176c0-8.8 7.2-16 16-16H368c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H16c-8.8 0-16-7.2-16-16V176zm352 80V480c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V256H352zM144 320c-8.8 0-16 7.2-16 16s7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H144z"]},kh={prefix:"fas",iconName:"circle-arrow-left",icon:[512,512,["arrow-circle-left"],"f0a8","M512 256C512 114.6 397.4 0 256 0S0 114.6 0 256S114.6 512 256 512s256-114.6 256-256zM215 127c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-71 71L392 232c13.3 0 24 10.7 24 24s-10.7 24-24 24l-214.1 0 71 71c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L103 273c-9.4-9.4-9.4-24.6 0-33.9L215 127z"]},CF=kh,LF={prefix:"fas",iconName:"group-arrows-rotate",icon:[512,512,[],"e4f6","M201.1 71.9c16.9-5 26.6-22.9 21.5-39.8s-22.9-26.6-39.8-21.5c-21.5 6.4-41.8 15.5-60.6 27C114.3 34 105.4 32 96 32C60.7 32 32 60.7 32 96c0 9.4 2 18.3 5.6 26.3c-11.5 18.7-20.6 39-27 60.6c-5 16.9 4.6 34.8 21.5 39.8s34.8-4.6 39.8-21.5c4.3-14.6 10.4-28.5 17.9-41.4c2 .2 4.1 .3 6.1 .3c35.3 0 64-28.7 64-64c0-2.1-.1-4.1-.3-6.1c12.9-7.5 26.8-13.6 41.4-17.9zm128-61.3c-16.9-5-34.8 4.6-39.8 21.5s4.6 34.8 21.5 39.8c14.6 4.3 28.5 10.4 41.4 17.9c-.2 2-.3 4.1-.3 6.1c0 35.3 28.7 64 64 64c2.1 0 4.1-.1 6.2-.3c7.5 12.9 13.6 26.8 17.9 41.4c5 16.9 22.9 26.6 39.8 21.5s26.6-22.9 21.5-39.8c-6.4-21.5-15.5-41.8-27-60.6c3.6-8 5.6-16.9 5.6-26.3c0-35.3-28.7-64-64-64c-9.4 0-18.3 2-26.3 5.6c-18.7-11.5-39-20.6-60.6-27zM71.9 310.9c-5-16.9-22.9-26.6-39.8-21.5s-26.6 22.9-21.5 39.8c6.4 21.5 15.5 41.8 27 60.6C34 397.7 32 406.6 32 416c0 35.3 28.7 64 64 64c9.4 0 18.3-2 26.3-5.6c18.7 11.5 39 20.6 60.6 27c16.9 5 34.8-4.6 39.8-21.5s-4.6-34.8-21.5-39.8c-14.6-4.3-28.5-10.4-41.4-17.9c.2-2 .3-4.1 .3-6.2c0-35.3-28.7-64-64-64c-2.1 0-4.1 .1-6.2 .3c-7.5-12.9-13.6-26.8-17.9-41.4zm429.4 18.3c5-16.9-4.6-34.8-21.5-39.8s-34.8 4.6-39.8 21.5c-4.3 14.6-10.4 28.5-17.9 41.4c-2-.2-4.1-.3-6.2-.3c-35.3 0-64 28.7-64 64c0 2.1 .1 4.1 .3 6.2c-12.9 7.5-26.8 13.6-41.4 17.9c-16.9 5-26.6 22.9-21.5 39.8s22.9 26.6 39.8 21.5c21.5-6.4 41.8-15.5 60.6-27c8 3.6 16.9 5.6 26.3 5.6c35.3 0 64-28.7 64-64c0-9.4-2-18.3-5.6-26.3c11.5-18.7 20.6-39 27-60.6zM192.8 256.8c0-15.6 5.6-29.9 14.9-41.1L223 231c6.6 6.6 17.8 1.9 17.8-7.4V163.2c0-5.7-4.7-10.4-10.4-10.4H169.9c-9.3 0-13.9 11.2-7.4 17.8l11.2 11.2c-17.9 19.8-28.9 46.2-28.9 75.1c0 43.6 24.9 81.3 61.1 99.8c11.8 6 26.3 1.4 32.3-10.4s1.4-26.3-10.4-32.3c-20.8-10.6-34.9-32.2-34.9-57zm93.1-58.6c20.8 10.6 34.9 32.2 34.9 57c0 15.6-5.6 29.9-14.9 41.1L290.6 281c-6.6-6.6-17.8-1.9-17.8 7.4v60.5c0 5.7 4.7 10.4 10.4 10.4h60.5c9.3 0 13.9-11.2 7.4-17.8l-11.2-11.2c17.9-19.8 28.9-46.2 28.9-75.1c0-43.6-24.9-81.3-61.1-99.8c-11.8-6-26.3-1.4-32.3 10.4s-1.4 26.3 10.4 32.3z"]},yF={prefix:"fas",iconName:"bowl-food",icon:[512,512,[],"e4c6","M0 192c0-35.3 28.7-64 64-64c.5 0 1.1 0 1.6 0C73 91.5 105.3 64 144 64c15 0 29 4.1 40.9 11.2C198.2 49.6 225.1 32 256 32s57.8 17.6 71.1 43.2C339 68.1 353 64 368 64c38.7 0 71 27.5 78.4 64c.5 0 1.1 0 1.6 0c35.3 0 64 28.7 64 64c0 11.7-3.1 22.6-8.6 32H8.6C3.1 214.6 0 203.7 0 192zm0 91.4C0 268.3 12.3 256 27.4 256H484.6c15.1 0 27.4 12.3 27.4 27.4c0 70.5-44.4 130.7-106.7 154.1L403.5 452c-2 16-15.6 28-31.8 28H140.2c-16.1 0-29.8-12-31.8-28l-1.8-14.4C44.4 414.1 0 353.9 0 283.4z"]},bF={prefix:"fas",iconName:"candy-cane",icon:[512,512,[],"f786","M348.8 131.5c3.7-2.3 7.9-3.5 12.2-3.5c12.7 0 23 10.3 23 23v5.6c0 9.9-5.1 19.1-13.5 24.3L30.1 393.7C.1 412.5-9 451.9 9.7 481.9s58.2 39.1 88.2 20.4L438.4 289.5c45.8-28.6 73.6-78.8 73.6-132.8V151C512 67.6 444.4 0 361 0c-28.3 0-56 8-80.1 23L254.1 39.7c-30 18.7-39.1 58.2-20.4 88.2s58.2 39.1 88.2 20.4l26.8-16.8zM298.4 49.8c9.2-5.7 19.1-10.1 29.4-13.1L348 97.5c-5.7 1.4-11.2 3.7-16.3 6.8l-12.6 7.9L298.4 49.8zm88.5 52.7l46.2-46.2c8.5 6.5 16.1 14.1 22.6 22.6l-46.2 46.2c-5.1-9.6-13-17.5-22.6-22.6zm28.9 59.3l61.6 20.5c-2.2 10.5-5.8 20.7-10.5 30.2l-62-20.7c6.2-8.8 10.1-19.1 11-30.1zm-86.1 82.5l60.4 37.7-30.2 18.9-60.4-37.7 30.2-18.9zm-107.2 67l60.4 37.7-30.2 18.9-60.4-37.7 30.2-18.9zM119.3 375.7l60.4 37.7-30.2 18.9L89.1 394.6l30.2-18.9z"]},ka={prefix:"fas",iconName:"arrow-down-wide-short",icon:[576,512,["sort-amount-asc","sort-amount-down"],"f160","M151.6 469.6C145.5 476.2 137 480 128 480s-17.5-3.8-23.6-10.4l-88-96c-11.9-13-11.1-33.3 2-45.2s33.3-11.1 45.2 2L96 365.7V64c0-17.7 14.3-32 32-32s32 14.3 32 32V365.7l32.4-35.4c11.9-13 32.2-13.9 45.2-2s13.9 32.2 2 45.2l-88 96zM320 480c-17.7 0-32-14.3-32-32s14.3-32 32-32h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H320zm0-128c-17.7 0-32-14.3-32-32s14.3-32 32-32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H320zm0-128c-17.7 0-32-14.3-32-32s14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H320zm0-128c-17.7 0-32-14.3-32-32s14.3-32 32-32H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H320z"]},xF=ka,SF=ka,Th={prefix:"fas",iconName:"cloud-bolt",icon:[512,512,[127785,"thunderstorm"],"f76c","M0 224c0 53 43 96 96 96h47.2L290 202.5c17.6-14.1 42.6-14 60.2 .2s22.8 38.6 12.8 58.8L333.7 320H352h64c53 0 96-43 96-96s-43-96-96-96c-.5 0-1.1 0-1.6 0c1.1-5.2 1.6-10.5 1.6-16c0-44.2-35.8-80-80-80c-24.3 0-46.1 10.9-60.8 28C256.5 24.3 219.1 0 176 0C114.1 0 64 50.1 64 112c0 7.1 .7 14.1 1.9 20.8C27.6 145.4 0 181.5 0 224zm330.1 3.6c-5.8-4.7-14.2-4.7-20.1-.1l-160 128c-5.3 4.2-7.4 11.4-5.1 17.8s8.3 10.7 15.1 10.7h70.1L177.7 488.8c-3.4 6.7-1.6 14.9 4.3 19.6s14.2 4.7 20.1 .1l160-128c5.3-4.2 7.4-11.4 5.1-17.8s-8.3-10.7-15.1-10.7H281.9l52.4-104.8c3.4-6.7 1.6-14.9-4.2-19.6z"]},wF=Th,Ph={prefix:"fas",iconName:"text-slash",icon:[640,512,["remove-format"],"f87d","M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L355.7 253.5 400.2 96H503L497 120.2c-4.3 17.1 6.1 34.5 23.3 38.8s34.5-6.1 38.8-23.3l16-64c2.4-9.6 .2-19.7-5.8-27.5S553.9 32 544 32H376.1h-.3H192c-14.7 0-27.5 10-31 24.2l-9.3 37.3L38.8 5.1zm168 131.7c.1-.3 .2-.7 .3-1L217 96H333.7L301.3 210.8l-94.5-74.1zM243.3 416H192c-17.7 0-32 14.3-32 32s14.3 32 32 32H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H309.8l17.6-62.1L272.9 311 243.3 416z"]},NF=Ph,Eh={prefix:"fas",iconName:"face-smile-wink",icon:[512,512,[128521,"smile-wink"],"f4da","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM164.1 325.5C182 346.2 212.6 368 256 368s74-21.8 91.9-42.5c5.8-6.7 15.9-7.4 22.6-1.6s7.4 15.9 1.6 22.6C349.8 372.1 311.1 400 256 400s-93.8-27.9-116.1-53.5c-5.8-6.7-5.1-16.8 1.6-22.6s16.8-5.1 22.6 1.6zM208.4 208c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm92.4 25.6c-5.3 7.1-15.3 8.5-22.4 3.2s-8.5-15.3-3.2-22.4c30.4-40.5 91.2-40.5 121.6 0c5.3 7.1 3.9 17.1-3.2 22.4s-17.1 3.9-22.4-3.2c-17.6-23.5-52.8-23.5-70.4 0z"]},AF=Eh,_F={prefix:"fas",iconName:"file-word",icon:[384,512,[],"f1c2","M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM111 257.1l26.8 89.2 31.6-90.3c3.4-9.6 12.5-16.1 22.7-16.1s19.3 6.4 22.7 16.1l31.6 90.3L273 257.1c3.8-12.7 17.2-19.9 29.9-16.1s19.9 17.2 16.1 29.9l-48 160c-3 10-12.1 16.9-22.4 17.1s-19.8-6.2-23.2-16.1L192 336.6l-33.3 95.3c-3.4 9.8-12.8 16.3-23.2 16.1s-19.5-7.1-22.4-17.1l-48-160c-3.8-12.7 3.4-26.1 16.1-29.9s26.1 3.4 29.9 16.1z"]},kF={prefix:"fas",iconName:"file-powerpoint",icon:[384,512,[],"f1c4","M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM136 240h68c42 0 76 34 76 76s-34 76-76 76H160v32c0 13.3-10.7 24-24 24s-24-10.7-24-24V368 264c0-13.3 10.7-24 24-24zm68 104c15.5 0 28-12.5 28-28s-12.5-28-28-28H160v56h44z"]},Oh={prefix:"fas",iconName:"arrows-left-right",icon:[512,512,["arrows-h"],"f07e","M406.6 374.6l96-96c12.5-12.5 12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 224l-293.5 0 41.4-41.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 288l293.5 0-41.4 41.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z"]},TF=Oh,PF={prefix:"fas",iconName:"house-lock",icon:[640,512,[],"e510","M384 480c0 11.7 3.1 22.6 8.6 32H384c-17.7 0-32-14.3-32-32V383.7c0-17.7-14.3-32-32-32H256c-17.7 0-32 14.3-32 32V480c0 17.7-14.3 32-32 32H96.1c-17.7 0-32-14.3-32-32V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L490.7 166.3C447.2 181.7 416 223.2 416 272v24.6c-19.1 11.1-32 31.7-32 55.4V480zM528 240c-17.7 0-32 14.3-32 32v48h64V272c0-17.7-14.3-32-32-32zm-80 32c0-44.2 35.8-80 80-80s80 35.8 80 80v48c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32V272z"]},Ta={prefix:"fas",iconName:"cloud-arrow-down",icon:[640,512,[62337,"cloud-download","cloud-download-alt"],"f0ed","M144 480C64.5 480 0 415.5 0 336c0-62.8 40.2-116.2 96.2-135.9c-.1-2.7-.2-5.4-.2-8.1c0-88.4 71.6-160 160-160c59.3 0 111 32.2 138.7 80.2C409.9 102 428.3 96 448 96c53 0 96 43 96 96c0 12.2-2.3 23.8-6.4 34.6C596 238.4 640 290.1 640 352c0 70.7-57.3 128-128 128H144zm79-167l80 80c9.4 9.4 24.6 9.4 33.9 0l80-80c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-39 39V184c0-13.3-10.7-24-24-24s-24 10.7-24 24V318.1l-39-39c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9z"]},EF=Ta,OF=Ta,RF={prefix:"fas",iconName:"children",icon:[640,512,[],"e4e1","M160 128c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64zM88 480V400H70.2c-10.9 0-18.6-10.7-15.2-21.1l31.1-93.4L57.5 323.3c-10.7 14.1-30.8 16.8-44.8 6.2s-16.8-30.7-6.2-44.8L65.4 207c22.4-29.6 57.5-47 94.6-47s72.2 17.4 94.6 47l58.9 77.7c10.7 14.1 7.9 34.2-6.2 44.8s-34.2 7.9-44.8-6.2l-28.6-37.8L265 378.9c3.5 10.4-4.3 21.1-15.2 21.1H232v80c0 17.7-14.3 32-32 32s-32-14.3-32-32V400H152v80c0 17.7-14.3 32-32 32s-32-14.3-32-32zM480 128c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64zm-8 256v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V300.5L395.1 321c-9.4 15-29.2 19.4-44.1 10s-19.4-29.2-10-44.1l51.7-82.1c17.6-27.9 48.3-44.9 81.2-44.9h12.3c33 0 63.7 16.9 81.2 44.9L619.1 287c9.4 15 4.9 34.7-10 44.1s-34.7 4.9-44.1-10L552 300.5V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V384H472z"]},Rh={prefix:"fas",iconName:"chalkboard",icon:[576,512,["blackboard"],"f51b","M96 32C60.7 32 32 60.7 32 96V384H96V96l384 0V384h64V96c0-35.3-28.7-64-64-64H96zM224 384v32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H416V384c0-17.7-14.3-32-32-32H256c-17.7 0-32 14.3-32 32z"]},FF=Rh,Fh={prefix:"fas",iconName:"user-large-slash",icon:[640,512,["user-alt-slash"],"f4fa","M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L381.9 274c48.5-23.2 82.1-72.7 82.1-130C464 64.5 399.5 0 320 0C250.4 0 192.4 49.3 178.9 114.9L38.8 5.1zM284.3 320h-59C136.2 320 64 392.2 64 481.3c0 17 13.8 30.7 30.7 30.7H528L284.3 320z"]},BF=Fh,DF={prefix:"fas",iconName:"envelope-open",icon:[512,512,[62135],"f2b6","M64 208.1L256 65.9 448 208.1v47.4L289.5 373c-9.7 7.2-21.4 11-33.5 11s-23.8-3.9-33.5-11L64 255.5V208.1zM256 0c-12.1 0-23.8 3.9-33.5 11L25.9 156.7C9.6 168.8 0 187.8 0 208.1V448c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V208.1c0-20.3-9.6-39.4-25.9-51.4L289.5 11C279.8 3.9 268.1 0 256 0z"]},Bh={prefix:"fas",iconName:"handshake-simple-slash",icon:[640,512,["handshake-alt-slash"],"e05f","M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-135-105.8c-1.1-11.4-6.3-22.3-15.3-30.7l-134.2-123-23.4 18.2-26-20.3 77.2-60.1c7-5.4 17-4.2 22.5 2.8s4.2 17-2.8 22.5l-20.9 16.2L550.2 352H592c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48H516h-4-.7l-3.9-2.5L434.8 79c-15.3-9.8-33.2-15-51.4-15c-21.8 0-43 7.5-60 21.2l-89.7 72.6-25.8-20.3 81.8-66.2c-11.6-4.9-24.1-7.4-36.8-7.4C234 64 215.7 69.6 200 80l-35.5 23.7L38.8 5.1zM0 176V304c0 26.5 21.5 48 48 48H156.2l91.4 83.4c19.6 17.9 49.9 16.5 67.8-3.1c5.5-6.1 9.2-13.2 11.1-20.6l17 15.6c19.5 17.9 49.9 16.6 67.8-2.9c.8-.8 1.5-1.7 2.2-2.6L41.2 128.5C17.9 131.8 0 151.8 0 176z"]},IF=Bh,UF={prefix:"fas",iconName:"mattress-pillow",icon:[640,512,[],"e525","M256 64H64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H256V64zm32 384H576c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H288V448zM64 160c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V160z"]},WF={prefix:"fas",iconName:"guarani-sign",icon:[384,512,[],"e19a","M192 0c-17.7 0-32 14.3-32 32V66.7C69.2 81.9 0 160.9 0 256s69.2 174.1 160 189.3V480c0 17.7 14.3 32 32 32s32-14.3 32-32V445.3c90.8-15.2 160-94.2 160-189.3c0-17.7-14.3-32-32-32H224V132c22.1 5.7 41.8 17.1 57.6 32.6c12.6 12.4 32.9 12.2 45.3-.4s12.2-32.9-.5-45.3C299 92 263.5 73.3 224 66.7V32c0-17.7-14.3-32-32-32zM160 132V380c-55.2-14.2-96-64.3-96-124s40.8-109.8 96-124zM224 380V288h92c-11.6 45-47 80.4-92 92z"]},Pa={prefix:"fas",iconName:"arrows-rotate",icon:[512,512,[128472,"refresh","sync"],"f021","M105.1 202.6c7.7-21.8 20.2-42.3 37.8-59.8c62.5-62.5 163.8-62.5 226.3 0L386.3 160H336c-17.7 0-32 14.3-32 32s14.3 32 32 32H463.5c0 0 0 0 0 0h.4c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v51.2L414.4 97.6c-87.5-87.5-229.3-87.5-316.8 0C73.2 122 55.6 150.7 44.8 181.4c-5.9 16.7 2.9 34.9 19.5 40.8s34.9-2.9 40.8-19.5zM39 289.3c-5 1.5-9.8 4.2-13.7 8.2c-4 4-6.7 8.8-8.1 14c-.3 1.2-.6 2.5-.8 3.8c-.3 1.7-.4 3.4-.4 5.1V448c0 17.7 14.3 32 32 32s32-14.3 32-32V396.9l17.6 17.5 0 0c87.5 87.4 229.3 87.4 316.7 0c24.4-24.4 42.1-53.1 52.9-83.7c5.9-16.7-2.9-34.9-19.5-40.8s-34.9 2.9-40.8 19.5c-7.7 21.8-20.2 42.3-37.8 59.8c-62.5 62.5-163.8 62.5-226.3 0l-.1-.1L125.6 352H176c17.7 0 32-14.3 32-32s-14.3-32-32-32H48.4c-1.6 0-3.2 .1-4.8 .3s-3.1 .5-4.6 1z"]},$F=Pa,qF=Pa,GF={prefix:"fas",iconName:"fire-extinguisher",icon:[512,512,[129519],"f134","M500.3 7.3C507.7 13.3 512 22.4 512 32v96c0 9.6-4.3 18.7-11.7 24.7s-17.2 8.5-26.6 6.6l-160-32C301.5 124.9 292 115.7 289 104H224v34.8c37.8 18 64 56.5 64 101.2V384H64V240c0-44.7 26.2-83.2 64-101.2V110c-36.2 11.1-66 36.9-82.3 70.5c-5.8 11.9-20.2 16.9-32.1 11.1S-3.3 171.4 2.5 159.5C26.7 109.8 72.7 72.6 128 60.4V32c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V56h65c3-11.7 12.5-20.9 24.7-23.4l160-32c9.4-1.9 19.1 .6 26.6 6.6zM288 416v32c0 35.3-28.7 64-64 64H128c-35.3 0-64-28.7-64-64V416H288zM176 96c8.8 0 16-7.2 16-16s-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16z"]},jF={prefix:"fas",iconName:"cruzeiro-sign",icon:[448,512,[],"e152","M96 256c0-88.4 71.6-160 160-160c41 0 78.3 15.4 106.7 40.7c13.2 11.8 33.4 10.7 45.2-2.5s10.7-33.4-2.5-45.2c-39.6-35.5-92-57-149.3-57C132.3 32 32 132.3 32 256s100.3 224 224 224c57.4 0 109.7-21.6 149.3-57c13.2-11.8 14.3-32 2.5-45.2s-32-14.3-45.2-2.5C334.3 400.6 297 416 256 416V320v-8.7c0-12.8 10.4-23.3 23.3-23.3c4.6 0 9.1 1.4 12.9 3.9l10.1 6.7c14.7 9.8 34.6 5.8 44.4-8.9s5.8-34.6-8.9-44.4l-10.1-6.7c-14.3-9.6-31.2-14.7-48.4-14.7c-12.4 0-24.2 2.6-34.9 7.3c-5.5-4.5-12.6-7.3-20.3-7.3c-17.7 0-32 14.3-32 32v55.3V320v82.7C135.5 378 96 321.6 96 256z"]},KF={prefix:"fas",iconName:"greater-than-equal",icon:[448,512,[],"f532","M52.1 93.7C35.7 87.1 27.7 68.5 34.3 52.1s25.2-24.4 41.6-17.8l320 128C408 167.1 416 178.9 416 192s-8 24.9-20.1 29.7l-320 128c-16.4 6.6-35-1.4-41.6-17.8s1.4-35 17.8-41.6L297.8 192 52.1 93.7zM416 416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416z"]},Dh={prefix:"fas",iconName:"shield-halved",icon:[512,512,["shield-alt"],"f3ed","M256 0c4.6 0 9.2 1 13.4 2.9L457.7 82.8c22 9.3 38.4 31 38.3 57.2c-.5 99.2-41.3 280.7-213.7 363.2c-16.7 8-36.1 8-52.8 0C57.3 420.7 16.5 239.2 16 140c-.1-26.2 16.3-47.9 38.3-57.2L242.7 2.9C246.8 1 251.4 0 256 0zm0 66.8V444.8C394 378 431.1 230.1 432 141.4L256 66.8l0 0z"]},XF=Dh,Ih={prefix:"fas",iconName:"book-atlas",icon:[448,512,["atlas"],"f558","M0 96C0 43 43 0 96 0H384h32c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384 96c-53 0-96-43-96-96V96zM64 416c0 17.7 14.3 32 32 32H352V384H96c-17.7 0-32 14.3-32 32zM247.4 283.8c-3.7 3.7-6.2 4.2-7.4 4.2s-3.7-.5-7.4-4.2c-3.8-3.7-8-10-11.8-18.9c-6.2-14.5-10.8-34.3-12.2-56.9h63c-1.5 22.6-6 42.4-12.2 56.9c-3.8 8.9-8 15.2-11.8 18.9zm42.7-9.9c7.3-18.3 12-41.1 13.4-65.9h31.1c-4.7 27.9-21.4 51.7-44.5 65.9zm0-163.8c23.2 14.2 39.9 38 44.5 65.9H303.5c-1.4-24.7-6.1-47.5-13.4-65.9zM368 192c0-70.7-57.3-128-128-128s-128 57.3-128 128s57.3 128 128 128s128-57.3 128-128zM145.3 208h31.1c1.4 24.7 6.1 47.5 13.4 65.9c-23.2-14.2-39.9-38-44.5-65.9zm31.1-32H145.3c4.7-27.9 21.4-51.7 44.5-65.9c-7.3 18.3-12 41.1-13.4 65.9zm56.1-75.8c3.7-3.7 6.2-4.2 7.4-4.2s3.7 .5 7.4 4.2c3.8 3.7 8 10 11.8 18.9c6.2 14.5 10.8 34.3 12.2 56.9h-63c1.5-22.6 6-42.4 12.2-56.9c3.8-8.9 8-15.2 11.8-18.9z"]},YF=Ih,JF={prefix:"fas",iconName:"virus",icon:[512,512,[],"e074","M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V43.5c0 49.9-60.3 74.9-95.6 39.6L120.2 75C107.7 62.5 87.5 62.5 75 75s-12.5 32.8 0 45.3l8.2 8.2C118.4 163.7 93.4 224 43.5 224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H43.5c49.9 0 74.9 60.3 39.6 95.6L75 391.8c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l8.2-8.2c35.3-35.3 95.6-10.3 95.6 39.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V468.5c0-49.9 60.3-74.9 95.6-39.6l8.2 8.2c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-8.2-8.2c-35.3-35.3-10.3-95.6 39.6-95.6H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H468.5c-49.9 0-74.9-60.3-39.6-95.6l8.2-8.2c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-8.2 8.2C348.3 118.4 288 93.4 288 43.5V32zM272 224c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48zm32 104c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24z"]},QF={prefix:"fas",iconName:"envelope-circle-check",icon:[640,512,[],"e4e8","M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0l57.4-43c23.9-59.8 79.7-103.3 146.3-109.8l13.9-10.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48H48zM294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176V384c0 35.3 28.7 64 64 64H360.2C335.1 417.6 320 378.5 320 336c0-5.6 .3-11.1 .8-16.6l-26.4 19.8zM640 336a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 353.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z"]},ZF={prefix:"fas",iconName:"layer-group",icon:[576,512,[],"f5fd","M264.5 5.2c14.9-6.9 32.1-6.9 47 0l218.6 101c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L45.9 149.8C37.4 145.8 32 137.3 32 128s5.4-17.9 13.9-21.8L264.5 5.2zM476.9 209.6l53.2 24.6c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L45.9 277.8C37.4 273.8 32 265.3 32 256s5.4-17.9 13.9-21.8l53.2-24.6 152 70.2c23.4 10.8 50.4 10.8 73.8 0l152-70.2zm-152 198.2l152-70.2 53.2 24.6c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L45.9 405.8C37.4 401.8 32 393.3 32 384s5.4-17.9 13.9-21.8l53.2-24.6 152 70.2c23.4 10.8 50.4 10.8 73.8 0z"]},cB={prefix:"fas",iconName:"arrows-to-dot",icon:[512,512,[],"e4be","M256 0c17.7 0 32 14.3 32 32V64h32c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9l-64 64c-12.5 12.5-32.8 12.5-45.3 0l-64-64c-9.2-9.2-11.9-22.9-6.9-34.9s16.6-19.8 29.6-19.8h32V32c0-17.7 14.3-32 32-32zM169.4 393.4l64-64c12.5-12.5 32.8-12.5 45.3 0l64 64c9.2 9.2 11.9 22.9 6.9 34.9s-16.6 19.8-29.6 19.8H288v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H192c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9zM32 224H64V192c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l64 64c12.5 12.5 12.5 32.8 0 45.3l-64 64c-9.2 9.2-22.9 11.9-34.9 6.9s-19.8-16.6-19.8-29.6V288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32zm297.4 54.6c-12.5-12.5-12.5-32.8 0-45.3l64-64c9.2-9.2 22.9-11.9 34.9-6.9s19.8 16.6 19.8 29.6v32h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H448v32c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9l-64-64zM256 288c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},eB={prefix:"fas",iconName:"archway",icon:[512,512,[],"f557","M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zm0 384c-17.7 0-32 14.3-32 32s14.3 32 32 32H96h64V352c0-53 43-96 96-96s96 43 96 96V480h64 64c17.7 0 32-14.3 32-32s-14.3-32-32-32V128H32V416z"]},rB={prefix:"fas",iconName:"heart-circle-check",icon:[576,512,[],"e4fd","M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176c28.3 0 55 6.7 78.7 18.5c.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5zM576 368c0-79.5-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144s144-64.5 144-144zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L416 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z"]},Uh={prefix:"fas",iconName:"house-chimney-crack",icon:[576,512,["house-damage"],"f6f1","M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c.2 35.5-28.5 64.3-64 64.3H326.4L288 448l80.8-67.3c7.8-6.5 7.6-18.6-.4-24.9L250.6 263.2c-14.6-11.5-33.8 7-22.8 22L288 368l-85.5 71.2c-6.1 5-7.5 13.8-3.5 20.5L230.4 512H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L416 100.7V64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V185l52.8 46.4c8 7 12 15 11 24z"]},aB=Uh,Wh={prefix:"fas",iconName:"file-zipper",icon:[384,512,["file-archive"],"f1c6","M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM96 48c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16zm0 64c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16zm0 64c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16zm-6.3 71.8c3.7-14 16.4-23.8 30.9-23.8h14.8c14.5 0 27.2 9.7 30.9 23.8l23.5 88.2c1.4 5.4 2.1 10.9 2.1 16.4c0 35.2-28.8 63.7-64 63.7s-64-28.5-64-63.7c0-5.5 .7-11.1 2.1-16.4l23.5-88.2zM112 336c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H112z"]},nB=Wh,tB={prefix:"fas",iconName:"square",icon:[448,512,[9632,9723,9724,61590],"f0c8","M0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96z"]},$h={prefix:"fas",iconName:"martini-glass-empty",icon:[512,512,["glass-martini"],"f000","M32 0C19.1 0 7.4 7.8 2.4 19.8s-2.2 25.7 6.9 34.9L224 269.3V448H160c-17.7 0-32 14.3-32 32s14.3 32 32 32h96 96c17.7 0 32-14.3 32-32s-14.3-32-32-32H288V269.3L502.6 54.6c9.2-9.2 11.9-22.9 6.9-34.9S492.9 0 480 0H32zM256 210.7L109.3 64H402.7L256 210.7z"]},sB=$h,iB={prefix:"fas",iconName:"couch",icon:[640,512,[],"f4b8","M64 160C64 89.3 121.3 32 192 32H448c70.7 0 128 57.3 128 128v33.6c-36.5 7.4-64 39.7-64 78.4v48H128V272c0-38.7-27.5-71-64-78.4V160zM544 272c0-20.9 13.4-38.7 32-45.3c5-1.8 10.4-2.7 16-2.7c26.5 0 48 21.5 48 48V448c0 17.7-14.3 32-32 32H576c-17.7 0-32-14.3-32-32H96c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V272c0-26.5 21.5-48 48-48c5.6 0 11 1 16 2.7c18.6 6.6 32 24.4 32 45.3v48 32h32H512h32V320 272z"]},oB={prefix:"fas",iconName:"cedi-sign",icon:[384,512,[],"e0df","M256 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V66.7C101.2 81.9 32 160.9 32 256s69.2 174.1 160 189.3V480c0 17.7 14.3 32 32 32s32-14.3 32-32V445.3c30.9-5.2 59.2-17.7 83.2-35.8c14.1-10.6 17-30.7 6.4-44.8s-30.7-17-44.8-6.4c-13.2 9.9-28.3 17.3-44.8 21.6V132c16.4 4.2 31.6 11.6 44.8 21.6c14.1 10.6 34.2 7.8 44.8-6.4s7.8-34.2-6.4-44.8c-24-18-52.4-30.6-83.2-35.8V32zM192 132V380c-55.2-14.2-96-64.3-96-124s40.8-109.8 96-124z"]},fB={prefix:"fas",iconName:"italic",icon:[384,512,[],"f033","M128 64c0-17.7 14.3-32 32-32H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H293.3L160 416h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H90.7L224 96H160c-17.7 0-32-14.3-32-32z"]},lB={prefix:"fas",iconName:"church",icon:[640,512,[9962],"f51d","M344 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V48H264c-13.3 0-24 10.7-24 24s10.7 24 24 24h32v46.4L183.3 210c-14.5 8.7-23.3 24.3-23.3 41.2V512h96V416c0-35.3 28.7-64 64-64s64 28.7 64 64v96h96V251.2c0-16.9-8.8-32.5-23.3-41.2L344 142.4V96h32c13.3 0 24-10.7 24-24s-10.7-24-24-24H344V24zM24.9 330.3C9.5 338.8 0 354.9 0 372.4V464c0 26.5 21.5 48 48 48h80V273.6L24.9 330.3zM592 512c26.5 0 48-21.5 48-48V372.4c0-17.5-9.5-33.6-24.9-42.1L512 273.6V512h80z"]},uB={prefix:"fas",iconName:"comments-dollar",icon:[640,512,[],"f653","M416 176c0 97.2-93.1 176-208 176c-38.2 0-73.9-8.7-104.7-23.9c-7.5 4-16 7.9-25.2 11.4C59.8 346.4 37.8 352 16 352c-6.9 0-13.1-4.5-15.2-11.1s.2-13.8 5.8-17.9l0 0 0 0 .2-.2c.2-.2 .6-.4 1.1-.8c1-.8 2.5-2 4.3-3.7c3.6-3.3 8.5-8.1 13.3-14.3c5.5-7 10.7-15.4 14.2-24.7C14.7 250.3 0 214.6 0 176C0 78.8 93.1 0 208 0S416 78.8 416 176zM231.5 383C348.9 372.9 448 288.3 448 176c0-5.2-.2-10.4-.6-15.5C555.1 167.1 640 243.2 640 336c0 38.6-14.7 74.3-39.6 103.4c3.5 9.4 8.7 17.7 14.2 24.7c4.8 6.2 9.7 11 13.3 14.3c1.8 1.6 3.3 2.9 4.3 3.7c.5 .4 .9 .7 1.1 .8l.2 .2 0 0 0 0c5.6 4.1 7.9 11.3 5.8 17.9c-2.1 6.6-8.3 11.1-15.2 11.1c-21.8 0-43.8-5.6-62.1-12.5c-9.2-3.5-17.8-7.4-25.2-11.4C505.9 503.3 470.2 512 432 512c-95.6 0-176.2-54.6-200.5-129zM228 72c0-11-9-20-20-20s-20 9-20 20V86c-7.6 1.7-15.2 4.4-22.2 8.5c-13.9 8.3-25.9 22.8-25.8 43.9c.1 20.3 12 33.1 24.7 40.7c11 6.6 24.7 10.8 35.6 14l1.7 .5c12.6 3.8 21.8 6.8 28 10.7c5.1 3.2 5.8 5.4 5.9 8.2c.1 5-1.8 8-5.9 10.5c-5 3.1-12.9 5-21.4 4.7c-11.1-.4-21.5-3.9-35.1-8.5c-2.3-.8-4.7-1.6-7.2-2.4c-10.5-3.5-21.8 2.2-25.3 12.6s2.2 21.8 12.6 25.3c1.9 .6 4 1.3 6.1 2.1l0 0 0 0c8.3 2.9 17.9 6.2 28.2 8.4V280c0 11 9 20 20 20s20-9 20-20V266.2c8-1.7 16-4.5 23.2-9c14.3-8.9 25.1-24.1 24.8-45c-.3-20.3-11.7-33.4-24.6-41.6c-11.5-7.2-25.9-11.6-37.1-15l-.7-.2c-12.8-3.9-21.9-6.7-28.3-10.5c-5.2-3.1-5.3-4.9-5.3-6.7c0-3.7 1.4-6.5 6.2-9.3c5.4-3.2 13.6-5.1 21.5-5c9.6 .1 20.2 2.2 31.2 5.2c10.7 2.8 21.6-3.5 24.5-14.2s-3.5-21.6-14.2-24.5c-6.5-1.7-13.7-3.4-21.1-4.7V72z"]},hB={prefix:"fas",iconName:"democrat",icon:[640,512,[],"f747","M64 32c0-8.9 3.8-20.9 6.2-27.3C71.2 1.8 74 0 77 0c1.9 0 3.8 .7 5.2 2.1L128 45.7 173.8 2.1C175.2 .7 177.1 0 179 0c3 0 5.8 1.8 6.8 4.7c2.4 6.5 6.2 18.4 6.2 27.3c0 26.5-21.9 42-29.5 46.6l76.2 72.6c6 5.7 13.9 8.8 22.1 8.8H480c61.4 0 101.6 24 126.2 50c12 12.6 19.9 25.2 24.9 34.9c2.5 4.8 4.3 9 5.5 12.1c.6 1.5 1.1 2.8 1.4 3.8c.2 .5 .3 .9 .4 1.3l.1 .5 .1 .2 0 .1 0 0c0 0 0 0-30.2 9.1l30.2-9.1c5.1 16.9-4.5 34.8-21.5 39.8c-16.8 5-34.5-4.4-39.7-21.1l0 0c-.1-.2-.2-.6-.5-1.2c-.5-1.3-1.4-3.4-2.8-6.1c-2.8-5.4-7.4-12.8-14.4-20.1c-4.2-4.4-9.4-9-15.8-13.2V320H192l-40.4-94.3c-3.9-9.2-15.3-12.6-23.6-7l-42.1 28c-9.1 6.1-19.7 9.3-30.7 9.3h-2C23.9 256 0 232.1 0 202.7c0-12.1 4.1-23.8 11.7-33.3L87.6 74.6C78.1 67.4 64 53.2 64 32zM448 352h96v64 64c0 17.7-14.3 32-32 32H480c-17.7 0-32-14.3-32-32V416H288v64c0 17.7-14.3 32-32 32H224c-17.7 0-32-14.3-32-32V416 352h96H448zm129.4-70.8c0 0 0 0 30.6-9.2l-30.6 9.2 0 0zM260.9 210.9c-.9-1.8-2.8-2.9-4.8-2.9s-3.9 1.1-4.8 2.9l-10.5 20.5-23.5 3.3c-2 .3-3.7 1.6-4.3 3.5s-.1 3.9 1.3 5.3l17 16-4 22.6c-.3 1.9 .5 3.9 2.1 5s3.8 1.3 5.6 .4l21-10.7 21 10.7c1.8 .9 4 .8 5.6-.4s2.5-3.1 2.1-5l-4-22.6 17-16c1.5-1.4 2-3.4 1.3-5.3s-2.3-3.2-4.3-3.5l-23.5-3.3-10.5-20.5zM368.1 208c-2 0-3.9 1.1-4.8 2.9l-10.5 20.5-23.5 3.3c-2 .3-3.7 1.6-4.3 3.5s-.1 3.9 1.3 5.3l17 16-4 22.6c-.3 1.9 .5 3.9 2.1 5s3.8 1.3 5.6 .4l21-10.7 21 10.7c1.8 .9 4 .8 5.6-.4s2.5-3.1 2.1-5l-4-22.6 17-16c1.5-1.4 2-3.4 1.4-5.3s-2.3-3.2-4.3-3.5l-23.5-3.3-10.5-20.5c-.9-1.8-2.8-2.9-4.8-2.9zm116.8 2.9c-.9-1.8-2.8-2.9-4.8-2.9s-3.9 1.1-4.8 2.9l-10.5 20.5-23.5 3.3c-2 .3-3.7 1.6-4.3 3.5s-.1 3.9 1.3 5.3l17 16-4 22.6c-.3 1.9 .5 3.9 2.1 5s3.8 1.3 5.6 .4l21-10.7 21 10.7c1.8 .9 4 .8 5.6-.4s2.5-3.1 2.1-5l-4-22.6 17-16c1.5-1.4 2-3.4 1.4-5.3s-2.3-3.2-4.3-3.5l-23.5-3.3-10.5-20.5z"]},pB={prefix:"fas",iconName:"z",icon:[384,512,[122],"5a","M0 64C0 46.3 14.3 32 32 32H352c12.4 0 23.7 7.2 29 18.4s3.6 24.5-4.4 34.1L100.3 416H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-12.4 0-23.7-7.2-29-18.4s-3.6-24.5 4.4-34.1L283.7 96H32C14.3 96 0 81.7 0 64z"]},qh={prefix:"fas",iconName:"person-skiing",icon:[576,512,[9975,"skiing"],"f7c9","M508.7 48c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48zM34.7 268.9c6.1-11.8 20.6-16.3 32.4-10.2L264.7 361.3l46.2-69.2-75.1-75.1c-14.6-14.6-20.4-33.9-18.4-52.1l108.8 52 39.3 39.3c16.2 16.2 18.7 41.5 6 60.6L321.8 391l128.7 66.8c13.6 7.1 29.8 7.2 43.6 .3l15.2-7.6c11.9-5.9 26.3-1.1 32.2 10.7s1.1 26.3-10.7 32.2l-15.2 7.6c-27.5 13.7-59.9 13.5-87.2-.7L44.9 301.3c-11.8-6.1-16.3-20.6-10.2-32.4zM150.9 65.6L169 74.2l8.7-17.4c4-7.9 13.6-11.1 21.5-7.2s11.1 13.6 7.2 21.5l-8.5 16.9 54.7 26.2c1.5-.7 3.1-1.4 4.7-2.1l83.4-33.4c34.2-13.7 72.8 4.2 84.5 39.2l17.1 51.2 52.1 26.1c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3l-58.1-29c-11.4-5.7-20-15.7-24.1-27.8l-5.8-17.3-27.3 12.1-6.8 3-6.7-3.2L183.5 116.7l-9.2 18.4c-4 7.9-13.6 11.1-21.5 7.2s-11.1-13.6-7.2-21.5l9-18-17.6-8.4c-8-3.8-11.3-13.4-7.5-21.3s13.4-11.3 21.3-7.5z"]},mB=qh,vB={prefix:"fas",iconName:"road-lock",icon:[640,512,[],"e567","M288 32H213.2c-27.1 0-51.3 17.1-60.3 42.6L35.1 407.2c-2.1 5.9-3.1 12-3.1 18.2C32 455.5 56.5 480 86.6 480H288V416c0-17.7 14.3-32 32-32s32 14.3 32 32v64h32V352c0-23.7 12.9-44.4 32-55.4V272c0-58.3 44.6-106.2 101.5-111.5L487.1 74.6C478 49.1 453.9 32 426.8 32H352V96c0 17.7-14.3 32-32 32s-32-14.3-32-32V32zm64 192v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V224c0-17.7 14.3-32 32-32s32 14.3 32 32zm176 16c17.7 0 32 14.3 32 32v48H496V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z"]},dB={prefix:"fas",iconName:"a",icon:[448,512,[97],"41","M253.5 51.7C248.6 39.8 236.9 32 224 32s-24.6 7.8-29.5 19.7l-120 288-40 96c-6.8 16.3 .9 35 17.2 41.8s35-.9 41.8-17.2L125.3 384H322.7l31.8 76.3c6.8 16.3 25.5 24 41.8 17.2s24-25.5 17.2-41.8l-40-96-120-288zM296 320H152l72-172.8L296 320z"]},Gh={prefix:"fas",iconName:"temperature-arrow-down",icon:[512,512,["temperature-down"],"e03f","M96 112c0-26.5 21.5-48 48-48s48 21.5 48 48V276.5c0 17.3 7.1 31.9 15.3 42.5C217.8 332.6 224 349.5 224 368c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-18.5 6.2-35.4 16.7-48.9C88.9 308.4 96 293.8 96 276.5V112zM144 0C82.1 0 32 50.1 32 112V276.4c0 .1-.1 .3-.2 .6c-.2 .6-.8 1.6-1.7 2.8C11.2 304.2 0 334.8 0 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-33.2-11.3-63.8-30.1-88.1c-.9-1.2-1.5-2.2-1.7-2.8c-.1-.3-.2-.5-.2-.6V112C256 50.1 205.9 0 144 0zm0 416c26.5 0 48-21.5 48-48c0-20.9-13.4-38.7-32-45.3V272c0-8.8-7.2-16-16-16s-16 7.2-16 16v50.7c-18.6 6.6-32 24.4-32 45.3c0 26.5 21.5 48 48 48zm336-64H448V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V352H352c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l64 64c6 6 14.1 9.4 22.6 9.4s16.6-3.4 22.6-9.4l64-64c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8z"]},HB=Gh,jh={prefix:"fas",iconName:"feather-pointed",icon:[512,512,["feather-alt"],"f56b","M278.5 215.6L23 471c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l74.8-74.8c7.4 4.6 15.3 8.2 23.8 10.5C200.3 452.8 270 454.5 338 409.4c12.2-8.1 5.8-25.4-8.8-25.4l-16.1 0c-5.1 0-9.2-4.1-9.2-9.2c0-4.1 2.7-7.6 6.5-8.8l97.7-29.3c3.4-1 6.4-3.1 8.4-6.1c4.4-6.4 8.6-12.9 12.6-19.6c6.2-10.3-1.5-23-13.5-23l-38.6 0c-5.1 0-9.2-4.1-9.2-9.2c0-4.1 2.7-7.6 6.5-8.8l80.9-24.3c4.6-1.4 8.4-4.8 10.2-9.3C494.5 163 507.8 86.1 511.9 36.8c.8-9.9-3-19.6-10-26.6s-16.7-10.8-26.6-10C391.5 7 228.5 40.5 137.4 131.6C57.3 211.7 56.7 302.3 71.3 356.4c2.1 7.9 12 9.6 17.8 3.8L253.6 195.8c6.2-6.2 16.4-6.2 22.6 0c5.4 5.4 6.1 13.6 2.2 19.8z"]},zB=jh,gB={prefix:"fas",iconName:"p",icon:[320,512,[112],"50","M32 32H64h96c88.4 0 160 71.6 160 160s-71.6 160-160 160H64v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352 320 288 64C0 46.3 14.3 32 32 32zM64 288h96c53 0 96-43 96-96s-43-96-96-96H64V288z"]},VB={prefix:"fas",iconName:"snowflake",icon:[448,512,[10052,10054],"f2dc","M224 0c17.7 0 32 14.3 32 32V62.1l15-15c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-49 49v70.3l61.4-35.8 17.7-66.1c3.4-12.8 16.6-20.4 29.4-17s20.4 16.6 17 29.4l-5.2 19.3 23.6-13.8c15.3-8.9 34.9-3.7 43.8 11.5s3.7 34.9-11.5 43.8l-25.3 14.8 21.7 5.8c12.8 3.4 20.4 16.6 17 29.4s-16.6 20.4-29.4 17l-67.7-18.1L287.5 256l60.9 35.5 67.7-18.1c12.8-3.4 26 4.2 29.4 17s-4.2 26-17 29.4l-21.7 5.8 25.3 14.8c15.3 8.9 20.4 28.5 11.5 43.8s-28.5 20.4-43.8 11.5l-23.6-13.8 5.2 19.3c3.4 12.8-4.2 26-17 29.4s-26-4.2-29.4-17l-17.7-66.1L256 311.7v70.3l49 49c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-15-15V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V449.9l-15 15c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l49-49V311.7l-61.4 35.8-17.7 66.1c-3.4 12.8-16.6 20.4-29.4 17s-20.4-16.6-17-29.4l5.2-19.3L48.1 395.6c-15.3 8.9-34.9 3.7-43.8-11.5s-3.7-34.9 11.5-43.8l25.3-14.8-21.7-5.8c-12.8-3.4-20.4-16.6-17-29.4s16.6-20.4 29.4-17l67.7 18.1L160.5 256 99.6 220.5 31.9 238.6c-12.8 3.4-26-4.2-29.4-17s4.2-26 17-29.4l21.7-5.8L15.9 171.6C.6 162.7-4.5 143.1 4.4 127.9s28.5-20.4 43.8-11.5l23.6 13.8-5.2-19.3c-3.4-12.8 4.2-26 17-29.4s26 4.2 29.4 17l17.7 66.1L192 200.3V129.9L143 81c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l15 15V32c0-17.7 14.3-32 32-32z"]},MB={prefix:"fas",iconName:"newspaper",icon:[512,512,[128240],"f1ea","M96 96c0-35.3 28.7-64 64-64H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H80c-44.2 0-80-35.8-80-80V128c0-17.7 14.3-32 32-32s32 14.3 32 32V400c0 8.8 7.2 16 16 16s16-7.2 16-16V96zm64 24v80c0 13.3 10.7 24 24 24H424c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24H184c-13.3 0-24 10.7-24 24zm0 184c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H176c-8.8 0-16 7.2-16 16zm160 0c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H336c-8.8 0-16 7.2-16 16zM160 400c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H176c-8.8 0-16 7.2-16 16zm160 0c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H336c-8.8 0-16 7.2-16 16z"]},Kh={prefix:"fas",iconName:"rectangle-ad",icon:[576,512,["ad"],"f641","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM229.5 173.3l72 144c5.9 11.9 1.1 26.3-10.7 32.2s-26.3 1.1-32.2-10.7L253.2 328H162.8l-5.4 10.7c-5.9 11.9-20.3 16.7-32.2 10.7s-16.7-20.3-10.7-32.2l72-144c4.1-8.1 12.4-13.3 21.5-13.3s17.4 5.1 21.5 13.3zM208 237.7L186.8 280h42.3L208 237.7zM392 256c-13.3 0-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24s-10.7-24-24-24zm24-43.9V184c0-13.3 10.7-24 24-24s24 10.7 24 24v96 48c0 13.3-10.7 24-24 24c-6.6 0-12.6-2.7-17-7c-9.4 4.5-19.9 7-31 7c-39.8 0-72-32.2-72-72s32.2-72 72-72c8.4 0 16.5 1.4 24 4.1z"]},CB=Kh,Xh={prefix:"fas",iconName:"circle-arrow-right",icon:[512,512,["arrow-circle-right"],"f0a9","M0 256C0 397.4 114.6 512 256 512s256-114.6 256-256S397.4 0 256 0S0 114.6 0 256zM297 385c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l71-71L120 280c-13.3 0-24-10.7-24-24s10.7-24 24-24l214.1 0-71-71c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L409 239c9.4 9.4 9.4 24.6 0 33.9L297 385z"]},LB=Xh,yB={prefix:"fas",iconName:"filter-circle-xmark",icon:[576,512,[],"e17b","M3.9 22.9C10.5 8.9 24.5 0 40 0H472c15.5 0 29.5 8.9 36.1 22.9s4.6 30.5-5.2 42.5L396.4 195.6C316.2 212.1 256 283 256 368c0 27.4 6.3 53.4 17.5 76.5c-1.6-.8-3.2-1.8-4.7-2.9l-64-48c-8.1-6-12.8-15.5-12.8-25.6V288.9L9 65.3C-.7 53.4-2.8 36.8 3.9 22.9zM432 512c-79.5 0-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144s-64.5 144-144 144zm59.3-180.7c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L432 345.4l-36.7-36.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L409.4 368l-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L432 390.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L454.6 368l36.7-36.7z"]},bB={prefix:"fas",iconName:"locust",icon:[640,512,[],"e520","M344 32c-13.3 0-24 10.7-24 24s10.7 24 24 24h16c98.7 0 180.6 71.4 197 165.4c-9-3.5-18.8-5.4-29-5.4H463.8l-41.8-97.5c-3.4-7.9-10.8-13.4-19.3-14.4s-17 2.7-22.1 9.6l-40.9 55.5-21.7-50.7c-3.3-7.8-10.5-13.2-18.9-14.3s-16.7 2.3-22 8.9l-240 304c-8.2 10.4-6.4 25.5 4 33.7s25.5 6.4 33.7-4l79.4-100.5 43 16.4-40.5 55c-7.9 10.7-5.6 25.7 5.1 33.6s25.7 5.6 33.6-5.1L247.1 400h74.5l-29.3 42.3c-7.5 10.9-4.8 25.8 6.1 33.4s25.8 4.8 33.4-6.1L380 400h80.4l38.8 67.9c6.6 11.5 21.2 15.5 32.7 8.9s15.5-21.2 8.9-32.7L515.6 400H528c44.1 0 79.8-35.7 80-79.7c0-.1 0-.2 0-.3V280C608 143 497 32 360 32H344zm50.5 168l17.1 40H365l29.5-40zm-87.7 38.1l-1.4 1.9H257.1l32.7-41.5 16.9 39.5zM120.8 240C89.4 240 64 265.4 64 296.8c0 15.5 6.3 30 16.9 40.4L158.7 240H120.8zM528 320c-8.8 0-16-7.2-16-16s7.2-16 16-16s16 7.2 16 16s-7.2 16-16 16z"]},Yh={prefix:"fas",iconName:"sort",icon:[320,512,["unsorted"],"f0dc","M137.4 41.4c12.5-12.5 32.8-12.5 45.3 0l128 128c9.2 9.2 11.9 22.9 6.9 34.9s-16.6 19.8-29.6 19.8H32c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9l128-128zm0 429.3l-128-128c-9.2-9.2-11.9-22.9-6.9-34.9s16.6-19.8 29.6-19.8H288c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9l-128 128c-12.5 12.5-32.8 12.5-45.3 0z"]},xB=Yh,Ea={prefix:"fas",iconName:"list-ol",icon:[512,512,["list-1-2","list-numeric"],"f0cb","M24 56c0-13.3 10.7-24 24-24H80c13.3 0 24 10.7 24 24V176h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H40c-13.3 0-24-10.7-24-24s10.7-24 24-24H56V80H48C34.7 80 24 69.3 24 56zM86.7 341.2c-6.5-7.4-18.3-6.9-24 1.2L51.5 357.9c-7.7 10.8-22.7 13.3-33.5 5.6s-13.3-22.7-5.6-33.5l11.1-15.6c23.7-33.2 72.3-35.6 99.2-4.9c21.3 24.4 20.8 60.9-1.1 84.7L86.8 432H120c13.3 0 24 10.7 24 24s-10.7 24-24 24H32c-9.5 0-18.2-5.6-22-14.4s-2.1-18.9 4.3-25.9l72-78c5.3-5.8 5.4-14.6 .3-20.5zM224 64H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 160H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 160H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32z"]},SB=Ea,wB=Ea,NB={prefix:"fas",iconName:"person-dress-burst",icon:[640,512,[],"e544","M528 48c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM390.2 384H408v96c0 17.7 14.3 32 32 32s32-14.3 32-32V384h16v96c0 17.7 14.3 32 32 32s32-14.3 32-32V384h17.8c10.9 0 18.6-10.7 15.2-21.1L546.7 248.1l33.9 56.3c9.1 15.1 28.8 20 43.9 10.9s20-28.8 10.9-43.9l-53.6-89.2c-20.2-33.7-56.7-54.3-96-54.3H474.2c-39.3 0-75.7 20.6-96 54.3l-53.6 89.2c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9l33.9-56.3L375 362.9c-3.5 10.4 4.3 21.1 15.2 21.1zM190.9 18.1C188.4 12 182.6 8 176 8s-12.4 4-14.9 10.1l-29.4 74L55.6 68.9c-6.3-1.9-13.1 .2-17.2 5.3s-4.6 12.2-1.4 17.9l39.5 69.1L10.9 206.4c-5.4 3.7-8 10.3-6.5 16.7s6.7 11.2 13.1 12.2l78.7 12.2L90.6 327c-.5 6.5 3.1 12.7 9 15.5s12.9 1.8 17.8-2.6L176 286.1l58.6 53.9c4.8 4.4 11.9 5.5 17.8 2.6s9.5-9 9-15.5l-5.6-79.4 50.5-7.8 24.4-40.5-55.2-38L315 92.2c3.3-5.7 2.7-12.8-1.4-17.9s-10.9-7.2-17.2-5.3L220.3 92.1l-29.4-74z"]},Jh={prefix:"fas",iconName:"money-check-dollar",icon:[576,512,["money-check-alt"],"f53d","M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zM272 192H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H272c-8.8 0-16-7.2-16-16s7.2-16 16-16zM256 304c0-8.8 7.2-16 16-16H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H272c-8.8 0-16-7.2-16-16zM164.1 160v6.3c6.6 1.2 16.6 3.2 21 4.4c10.7 2.8 17 13.8 14.2 24.5s-13.8 17-24.5 14.2c-3.8-1-17.4-3.7-21.7-4.3c-12.2-1.9-22.2-.3-28.6 2.6c-6.3 2.9-7.9 6.2-8.2 8.1c-.6 3.4 0 4.7 .1 5c.3 .5 1 1.8 3.6 3.5c6.1 4.2 15.7 7.2 29.9 11.4l.8 .2c12.1 3.7 28.3 8.5 40.4 17.4c6.7 4.9 13 11.4 16.9 20.5c4 9.1 4.8 19.1 3 29.4c-3.3 19-15.9 32-31.6 38.7c-4.9 2.1-10 3.6-15.4 4.6V352c0 11.1-9 20.1-20.1 20.1s-20.1-9-20.1-20.1v-6.4c-9.5-2.2-21.9-6.4-29.8-9.1c-1.7-.6-3.2-1.1-4.4-1.5c-10.5-3.5-16.1-14.8-12.7-25.3s14.8-16.1 25.3-12.7c2 .7 4.1 1.4 6.4 2.1l0 0 0 0c9.5 3.2 20.2 6.9 26.2 7.9c12.8 2 22.7 .7 28.8-1.9c5.5-2.3 7.4-5.3 8-8.8c.7-4 .1-5.9-.2-6.7c-.4-.9-1.3-2.2-3.7-4c-5.9-4.3-15.3-7.5-29.3-11.7l-2.2-.7c-11.7-3.5-27-8.1-38.6-16c-6.6-4.5-13.2-10.7-17.3-19.5c-4.2-9-5.2-18.8-3.4-29c3.2-18.3 16.2-30.9 31.1-37.7c5-2.3 10.3-4 15.9-5.1v-6c0-11.1 9-20.1 20.1-20.1s20.1 9 20.1 20.1z"]},AB=Jh,_B={prefix:"fas",iconName:"vector-square",icon:[448,512,[],"f5cb","M368 80h32v32H368V80zM352 32c-17.7 0-32 14.3-32 32H128c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v64c0 17.7 14.3 32 32 32V352c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H96c17.7 0 32-14.3 32-32H320c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V384c0-17.7-14.3-32-32-32V160c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H352zM96 160c17.7 0 32-14.3 32-32H320c0 17.7 14.3 32 32 32V352c-17.7 0-32 14.3-32 32H128c0-17.7-14.3-32-32-32V160zM48 400H80v32H48V400zm320 32V400h32v32H368zM48 112V80H80v32H48z"]},kB={prefix:"fas",iconName:"bread-slice",icon:[512,512,[],"f7ec","M256 32C192 32 0 64 0 192c0 35.3 28.7 64 64 64V432c0 26.5 21.5 48 48 48H400c26.5 0 48-21.5 48-48V256c35.3 0 64-28.7 64-64C512 64 320 32 256 32z"]},TB={prefix:"fas",iconName:"language",icon:[640,512,[],"f1ab","M0 128C0 92.7 28.7 64 64 64H256h48 16H576c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H320 304 256 64c-35.3 0-64-28.7-64-64V128zm320 0V384H576V128H320zM178.3 175.9c-3.2-7.2-10.4-11.9-18.3-11.9s-15.1 4.7-18.3 11.9l-64 144c-4.5 10.1 .1 21.9 10.2 26.4s21.9-.1 26.4-10.2l8.9-20.1h73.6l8.9 20.1c4.5 10.1 16.3 14.6 26.4 10.2s14.6-16.3 10.2-26.4l-64-144zM160 233.2L179 276H141l19-42.8zM448 164c11 0 20 9 20 20v4h44 16c11 0 20 9 20 20s-9 20-20 20h-2l-1.6 4.5c-8.9 24.4-22.4 46.6-39.6 65.4c.9 .6 1.8 1.1 2.7 1.6l18.9 11.3c9.5 5.7 12.5 18 6.9 27.4s-18 12.5-27.4 6.9l-18.9-11.3c-4.5-2.7-8.8-5.5-13.1-8.5c-10.6 7.5-21.9 14-34 19.4l-3.6 1.6c-10.1 4.5-21.9-.1-26.4-10.2s.1-21.9 10.2-26.4l3.6-1.6c6.4-2.9 12.6-6.1 18.5-9.8l-12.2-12.2c-7.8-7.8-7.8-20.5 0-28.3s20.5-7.8 28.3 0l14.6 14.6 .5 .5c12.4-13.1 22.5-28.3 29.8-45H448 376c-11 0-20-9-20-20s9-20 20-20h52v-4c0-11 9-20 20-20z"]},Qh={prefix:"fas",iconName:"face-kiss-wink-heart",icon:[512,512,[128536,"kiss-wink-heart"],"f598","M498 339.7c9.1-26.2 14-54.4 14-83.7C512 114.6 397.4 0 256 0S0 114.6 0 256S114.6 512 256 512c35.4 0 69.1-7.2 99.7-20.2c-4.8-5.5-8.5-12.2-10.4-19.7l-22.9-89.3c-10-39 11.8-80.9 51.8-92.1c37.2-10.4 73.8 10.1 87.5 44c12.7-1.6 25.1 .4 36.2 5zM296 332c0 6.9-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4c-2.7 1.5-5.7 3-8.7 4.3c3.1 1.3 6 2.7 8.7 4.3c6.6 3.7 12.5 8.2 16.7 13.4c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4C258.7 443.1 241.4 448 224 448c-3.6 0-6.8-2.5-7.7-6s.6-7.2 3.8-9l0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1l-.6-.4-.3-.2-.2-.1 0 0 0 0 0 0c-2.5-1.4-4.1-4.1-4.1-7s1.6-5.6 4.1-7l0 0 0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1c-.4-.2-.7-.4-.9-.5l-.2-.1 0 0 0 0 0 0c-3.2-1.8-4.7-5.5-3.8-9s4.1-6 7.7-6c17.4 0 34.7 4.9 47.9 12.3c6.6 3.7 12.5 8.2 16.7 13.4c4.3 5.1 7.3 11.4 7.3 18.3zM176.4 240c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm194.8-6.4c-17.6-23.5-52.8-23.5-70.4 0c-5.3 7.1-15.3 8.5-22.4 3.2s-8.5-15.3-3.2-22.4c30.4-40.5 91.2-40.5 121.6 0c5.3 7.1 3.9 17.1-3.2 22.4s-17.1 3.9-22.4-3.2zM434 352.3c-6-23.2-28.8-37-51.1-30.8s-35.4 30.1-29.5 53.4l22.9 89.3c2.2 8.7 11.2 13.9 19.8 11.4l84.9-23.8c22.2-6.2 35.4-30.1 29.5-53.4s-28.8-37-51.1-30.8l-20.2 5.6-5.4-21z"]},PB=Qh,EB={prefix:"fas",iconName:"filter",icon:[512,512,[],"f0b0","M3.9 54.9C10.5 40.9 24.5 32 40 32H472c15.5 0 29.5 8.9 36.1 22.9s4.6 30.5-5.2 42.5L320 320.9V448c0 12.1-6.8 23.2-17.7 28.6s-23.8 4.3-33.5-3l-64-48c-8.1-6-12.8-15.5-12.8-25.6V320.9L9 97.3C-.7 85.4-2.8 68.8 3.9 54.9z"]},OB={prefix:"fas",iconName:"question",icon:[320,512,[10067,10068,61736],"3f","M96 96c-17.7 0-32 14.3-32 32s-14.3 32-32 32s-32-14.3-32-32C0 75 43 32 96 32h97c70.1 0 127 56.9 127 127c0 52.4-32.2 99.4-81 118.4l-63 24.5 0 18.1c0 17.7-14.3 32-32 32s-32-14.3-32-32V301.9c0-26.4 16.2-50.1 40.8-59.6l63-24.5C240 208.3 256 185 256 159c0-34.8-28.2-63-63-63H96zm48 384c-22.1 0-40-17.9-40-40s17.9-40 40-40s40 17.9 40 40s-17.9 40-40 40z"]},RB={prefix:"fas",iconName:"file-signature",icon:[576,512,[],"f573","M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V428.7c-2.7 1.1-5.4 2-8.2 2.7l-60.1 15c-3 .7-6 1.2-9 1.4c-.9 .1-1.8 .2-2.7 .2H240c-6.1 0-11.6-3.4-14.3-8.8l-8.8-17.7c-1.7-3.4-5.1-5.5-8.8-5.5s-7.2 2.1-8.8 5.5l-8.8 17.7c-2.9 5.9-9.2 9.4-15.7 8.8s-12.1-5.1-13.9-11.3L144 381l-9.8 32.8c-6.1 20.3-24.8 34.2-46 34.2H80c-8.8 0-16-7.2-16-16s7.2-16 16-16h8.2c7.1 0 13.3-4.6 15.3-11.4l14.9-49.5c3.4-11.3 13.8-19.1 25.6-19.1s22.2 7.8 25.6 19.1l11.6 38.6c7.4-6.2 16.8-9.7 26.8-9.7c15.9 0 30.4 9 37.5 23.2l4.4 8.8h8.9c-3.1-8.8-3.7-18.4-1.4-27.8l15-60.1c2.8-11.3 8.6-21.5 16.8-29.7L384 203.6V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM549.8 139.7c-15.6-15.6-40.9-15.6-56.6 0l-29.4 29.4 71 71 29.4-29.4c15.6-15.6 15.6-40.9 0-56.6l-14.4-14.4zM311.9 321c-4.1 4.1-7 9.2-8.4 14.9l-15 60.1c-1.4 5.5 .2 11.2 4.2 15.2s9.7 5.6 15.2 4.2l60.1-15c5.6-1.4 10.8-4.3 14.9-8.4L512.1 262.7l-71-71L311.9 321z"]},Zh={prefix:"fas",iconName:"up-down-left-right",icon:[512,512,["arrows-alt"],"f0b2","M278.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8h32v96H128V192c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9l-64 64c-12.5 12.5-12.5 32.8 0 45.3l64 64c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V288h96v96H192c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l64 64c12.5 12.5 32.8 12.5 45.3 0l64-64c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8H288V288h96v32c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l64-64c12.5-12.5 12.5-32.8 0-45.3l-64-64c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6v32H288V128h32c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-64-64z"]},FB=Zh,BB={prefix:"fas",iconName:"house-chimney-user",icon:[576,512,[],"e065","M543.8 287.6c17 0 32-14 32-32.1c1-9-3-17-11-24L512 185V64c0-17.7-14.3-32-32-32H448c-17.7 0-32 14.3-32 32v36.7L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32V448c0 35.3 28.7 64 64 64H448.5c35.5 0 64.2-28.8 64-64.3l-.7-160.2h32zM288 288c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64zM176 400c0-44.2 35.8-80 80-80h64c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16H192c-8.8 0-16-7.2-16-16z"]},DB={prefix:"fas",iconName:"hand-holding-heart",icon:[576,512,[],"f4be","M148 76.6C148 34.3 182.3 0 224.6 0c20.3 0 39.8 8.1 54.1 22.4l9.3 9.3 9.3-9.3C311.6 8.1 331.1 0 351.4 0C393.7 0 428 34.3 428 76.6c0 20.3-8.1 39.8-22.4 54.1L302.1 234.1c-7.8 7.8-20.5 7.8-28.3 0L170.4 130.7C156.1 116.4 148 96.9 148 76.6zM568.2 336.3c13.1 17.8 9.3 42.8-8.5 55.9L433.1 485.5c-23.4 17.2-51.6 26.5-80.7 26.5H192 32c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32H68.8l44.9-36c22.7-18.2 50.9-28 80-28H272h16 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H288 272c-8.8 0-16 7.2-16 16s7.2 16 16 16H392.6l119.7-88.2c17.8-13.1 42.8-9.3 55.9 8.5zM193.6 384l0 0-.9 0c.3 0 .6 0 .9 0z"]},IB={prefix:"fas",iconName:"puzzle-piece",icon:[512,512,[129513],"f12e","M192 104.8c0-9.2-5.8-17.3-13.2-22.8C167.2 73.3 160 61.3 160 48c0-26.5 28.7-48 64-48s64 21.5 64 48c0 13.3-7.2 25.3-18.8 34c-7.4 5.5-13.2 13.6-13.2 22.8c0 12.8 10.4 23.2 23.2 23.2H336c26.5 0 48 21.5 48 48v56.8c0 12.8 10.4 23.2 23.2 23.2c9.2 0 17.3-5.8 22.8-13.2c8.7-11.6 20.7-18.8 34-18.8c26.5 0 48 28.7 48 64s-21.5 64-48 64c-13.3 0-25.3-7.2-34-18.8c-5.5-7.4-13.6-13.2-22.8-13.2c-12.8 0-23.2 10.4-23.2 23.2V464c0 26.5-21.5 48-48 48H279.2c-12.8 0-23.2-10.4-23.2-23.2c0-9.2 5.8-17.3 13.2-22.8c11.6-8.7 18.8-20.7 18.8-34c0-26.5-28.7-48-64-48s-64 21.5-64 48c0 13.3 7.2 25.3 18.8 34c7.4 5.5 13.2 13.6 13.2 22.8c0 12.8-10.4 23.2-23.2 23.2H48c-26.5 0-48-21.5-48-48V343.2C0 330.4 10.4 320 23.2 320c9.2 0 17.3 5.8 22.8 13.2C54.7 344.8 66.7 352 80 352c26.5 0 48-28.7 48-64s-21.5-64-48-64c-13.3 0-25.3 7.2-34 18.8C40.5 250.2 32.4 256 23.2 256C10.4 256 0 245.6 0 232.8V176c0-26.5 21.5-48 48-48H168.8c12.8 0 23.2-10.4 23.2-23.2z"]},UB={prefix:"fas",iconName:"money-check",icon:[576,512,[],"f53c","M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zm48 160H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zM96 336c0-8.8 7.2-16 16-16H464c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16zM376 160h80c13.3 0 24 10.7 24 24v48c0 13.3-10.7 24-24 24H376c-13.3 0-24-10.7-24-24V184c0-13.3 10.7-24 24-24z"]},cp={prefix:"fas",iconName:"star-half-stroke",icon:[576,512,["star-half-alt"],"f5c0","M288 376.4l.1-.1 26.4 14.1 85.2 45.5-16.5-97.6-4.8-28.7 20.7-20.5 70.1-69.3-96.1-14.2-29.3-4.3-12.9-26.6L288.1 86.9l-.1 .3V376.4zm175.1 98.3c2 12-3 24.2-12.9 31.3s-23 8-33.8 2.3L288.1 439.8 159.8 508.3C149 514 135.9 513.1 126 506s-14.9-19.3-12.9-31.3L137.8 329 33.6 225.9c-8.6-8.5-11.7-21.2-7.9-32.7s13.7-19.9 25.7-21.7L195 150.3 259.4 18c5.4-11 16.5-18 28.8-18s23.4 7 28.8 18l64.3 132.3 143.6 21.2c12 1.8 22 10.2 25.7 21.7s.7 24.2-7.9 32.7L438.5 329l24.6 145.7z"]},WB=cp,$B={prefix:"fas",iconName:"code",icon:[640,512,[],"f121","M392.8 1.2c-17-4.9-34.7 5-39.6 22l-128 448c-4.9 17 5 34.7 22 39.6s34.7-5 39.6-22l128-448c4.9-17-5-34.7-22-39.6zm80.6 120.1c-12.5 12.5-12.5 32.8 0 45.3L562.7 256l-89.4 89.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l112-112c12.5-12.5 12.5-32.8 0-45.3l-112-112c-12.5-12.5-32.8-12.5-45.3 0zm-306.7 0c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3l112 112c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256l89.4-89.4c12.5-12.5 12.5-32.8 0-45.3z"]},ep={prefix:"fas",iconName:"whiskey-glass",icon:[512,512,[129347,"glass-whiskey"],"f7a0","M32 32c-9.3 0-18.1 4-24.2 11.1S-1 59.4 .3 68.6l50 342.9c5.7 39.3 39.4 68.5 79.2 68.5h253c39.7 0 73.4-29.1 79.2-68.5l50-342.9c1.3-9.2-1.4-18.5-7.5-25.5S489.3 32 480 32H32zM87.7 224L69 96H443L424.3 224H87.7z"]},qB=ep,GB={prefix:"fas",iconName:"building-circle-exclamation",icon:[640,512,[],"e4d3","M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c15.1 0 28.5-6.9 37.3-17.8C340.4 462.2 320 417.5 320 368c0-54.7 24.9-103.5 64-135.8V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM496 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm0-48c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zm0-192c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z"]},jB={prefix:"fas",iconName:"magnifying-glass-chart",icon:[512,512,[],"e522","M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zm-312 8v64c0 13.3 10.7 24 24 24s24-10.7 24-24l0-64c0-13.3-10.7-24-24-24s-24 10.7-24 24zm80-96V280c0 13.3 10.7 24 24 24s24-10.7 24-24V120c0-13.3-10.7-24-24-24s-24 10.7-24 24zm80 64v96c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24s-24 10.7-24 24z"]},rp={prefix:"fas",iconName:"arrow-up-right-from-square",icon:[512,512,["external-link"],"f08e","M320 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h82.7L201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L448 109.3V192c0 17.7 14.3 32 32 32s32-14.3 32-32V32c0-17.7-14.3-32-32-32H320zM80 32C35.8 32 0 67.8 0 112V432c0 44.2 35.8 80 80 80H400c44.2 0 80-35.8 80-80V320c0-17.7-14.3-32-32-32s-32 14.3-32 32V432c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16H192c17.7 0 32-14.3 32-32s-14.3-32-32-32H80z"]},KB=rp,XB={prefix:"fas",iconName:"cubes-stacked",icon:[448,512,[],"e4e6","M192 64v64c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H224c-17.7 0-32 14.3-32 32zM82.7 207c-15.3 8.8-20.5 28.4-11.7 43.7l32 55.4c8.8 15.3 28.4 20.5 43.7 11.7l55.4-32c15.3-8.8 20.5-28.4 11.7-43.7l-32-55.4c-8.8-15.3-28.4-20.5-43.7-11.7L82.7 207zM288 192c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32H288zm64 160c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V384c0-17.7-14.3-32-32-32H352zM160 384v64c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V384c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32zM32 352c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H96c17.7 0 32-14.3 32-32V384c0-17.7-14.3-32-32-32H32z"]},Oa={prefix:"fas",iconName:"won-sign",icon:[512,512,[8361,"krw","won"],"f159","M62.4 53.9C56.8 37.1 38.6 28.1 21.9 33.6S-3.9 57.4 1.6 74.1L51.6 224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H72.9l56.7 170.1c4.5 13.5 17.4 22.4 31.6 21.9s26.4-10.4 29.8-24.2L233 288h46L321 455.8c3.4 13.8 15.6 23.7 29.8 24.2s27.1-8.4 31.6-21.9L439.1 288H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H460.4l50-149.9c5.6-16.8-3.5-34.9-20.2-40.5s-34.9 3.5-40.5 20.2L392.9 224H329L287 56.2C283.5 42 270.7 32 256 32s-27.5 10-31 24.2L183 224h-64L62.4 53.9zm78 234.1H167l-11.4 45.6L140.4 288zM249 224l7-28.1 7 28.1H249zm96 64h26.6l-15.2 45.6L345 288z"]},YB=Oa,JB=Oa,QB={prefix:"fas",iconName:"virus-covid",icon:[512,512,[],"e4a8","M192 24c0-13.3 10.7-24 24-24h80c13.3 0 24 10.7 24 24s-10.7 24-24 24H280V81.6c30.7 4.2 58.8 16.3 82.3 34.1L386.1 92 374.8 80.6c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l56.6 56.6c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L420 125.9l-23.8 23.8c17.9 23.5 29.9 51.7 34.1 82.3H464V216c0-13.3 10.7-24 24-24s24 10.7 24 24v80c0 13.3-10.7 24-24 24s-24-10.7-24-24V280H430.4c-4.2 30.7-16.3 58.8-34.1 82.3L420 386.1l11.3-11.3c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-56.6 56.6c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L386.1 420l-23.8-23.8c-23.5 17.9-51.7 29.9-82.3 34.1V464h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h16V430.4c-30.7-4.2-58.8-16.3-82.3-34.1L125.9 420l11.3 11.3c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L46.7 408.7c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L92 386.1l23.8-23.8C97.9 338.8 85.8 310.7 81.6 280H48v16c0 13.3-10.7 24-24 24s-24-10.7-24-24V216c0-13.3 10.7-24 24-24s24 10.7 24 24v16H81.6c4.2-30.7 16.3-58.8 34.1-82.3L92 125.9 80.6 137.2c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l56.6-56.6c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L125.9 92l23.8 23.8c23.5-17.9 51.7-29.9 82.3-34.1V48H216c-13.3 0-24-10.7-24-24zm48 200c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zm64 104c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24z"]},ZB={prefix:"fas",iconName:"austral-sign",icon:[448,512,[],"e0a9","M253.5 51.7C248.6 39.8 236.9 32 224 32s-24.6 7.8-29.5 19.7L122.7 224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H96L82.7 320H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H56L34.5 435.7c-6.8 16.3 .9 35 17.2 41.8s35-.9 41.8-17.2L125.3 384H322.7l31.8 76.3c6.8 16.3 25.5 24 41.8 17.2s24-25.5 17.2-41.8L392 384h24c17.7 0 32-14.3 32-32s-14.3-32-32-32H365.3L352 288h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H325.3L253.5 51.7zM256 224H192l32-76.8L256 224zm-90.7 64H282.7L296 320H152l13.3-32z"]},cD={prefix:"fas",iconName:"f",icon:[320,512,[102],"46","M32 32C14.3 32 0 46.3 0 64V256 448c0 17.7 14.3 32 32 32s32-14.3 32-32V288H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H64V96H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z"]},eD={prefix:"fas",iconName:"leaf",icon:[512,512,[],"f06c","M272 96c-78.6 0-145.1 51.5-167.7 122.5c33.6-17 71.5-26.5 111.7-26.5h88c8.8 0 16 7.2 16 16s-7.2 16-16 16H288 216s0 0 0 0c-16.6 0-32.7 1.9-48.3 5.4c-25.9 5.9-49.9 16.4-71.4 30.7c0 0 0 0 0 0C38.3 298.8 0 364.9 0 440v16c0 13.3 10.7 24 24 24s24-10.7 24-24V440c0-48.7 20.7-92.5 53.8-123.2C121.6 392.3 190.3 448 272 448l1 0c132.1-.7 239-130.9 239-291.4c0-42.6-7.5-83.1-21.1-119.6c-2.6-6.9-12.7-6.6-16.2-.1C455.9 72.1 418.7 96 376 96L272 96z"]},rD={prefix:"fas",iconName:"road",icon:[576,512,[128739],"f018","M256 32H181.2c-27.1 0-51.3 17.1-60.3 42.6L3.1 407.2C1.1 413 0 419.2 0 425.4C0 455.5 24.5 480 54.6 480H256V416c0-17.7 14.3-32 32-32s32 14.3 32 32v64H521.4c30.2 0 54.6-24.5 54.6-54.6c0-6.2-1.1-12.4-3.1-18.2L455.1 74.6C446 49.1 421.9 32 394.8 32H320V96c0 17.7-14.3 32-32 32s-32-14.3-32-32V32zm64 192v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V224c0-17.7 14.3-32 32-32s32 14.3 32 32z"]},ap={prefix:"fas",iconName:"taxi",icon:[512,512,[128662,"cab"],"f1ba","M192 0c-17.7 0-32 14.3-32 32V64c0 .1 0 .1 0 .2c-38.6 2.2-72.3 27.3-85.2 64.1L39.6 228.8C16.4 238.4 0 261.3 0 288V432v48c0 17.7 14.3 32 32 32H64c17.7 0 32-14.3 32-32V432H416v48c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V432 288c0-26.7-16.4-49.6-39.6-59.2L437.2 128.3c-12.9-36.8-46.6-62-85.2-64.1c0-.1 0-.1 0-.2V32c0-17.7-14.3-32-32-32H192zM165.4 128H346.6c13.6 0 25.7 8.6 30.2 21.4L402.9 224H109.1l26.1-74.6c4.5-12.8 16.6-21.4 30.2-21.4zM96 352c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm352-32c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32z"]},aD=ap,nD={prefix:"fas",iconName:"person-circle-plus",icon:[576,512,[],"e541","M208 48c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48zM152 352V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5c-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152zM432 512c-79.5 0-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144s-64.5 144-144 144zm16-208c0-8.8-7.2-16-16-16s-16 7.2-16 16v48H368c-8.8 0-16 7.2-16 16s7.2 16 16 16h48v48c0 8.8 7.2 16 16 16s16-7.2 16-16V384h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H448V304z"]},np={prefix:"fas",iconName:"chart-pie",icon:[576,512,["pie-chart"],"f200","M304 240V16.6c0-9 7-16.6 16-16.6C443.7 0 544 100.3 544 224c0 9-7.6 16-16.6 16H304zM32 272C32 150.7 122.1 50.3 239 34.3c9.2-1.3 17 6.1 17 15.4V288L412.5 444.5c6.7 6.7 6.2 17.7-1.5 23.1C371.8 495.6 323.8 512 272 512C139.5 512 32 404.6 32 272zm526.4 16c9.3 0 16.6 7.8 15.4 17c-7.7 55.9-34.6 105.6-73.9 142.3c-6 5.6-15.4 5.2-21.2-.7L320 288H558.4z"]},tD=np,sD={prefix:"fas",iconName:"bolt-lightning",icon:[384,512,[],"e0b7","M0 256L28.5 28c2-16 15.6-28 31.8-28H228.9c15 0 27.1 12.1 27.1 27.1c0 3.2-.6 6.5-1.7 9.5L208 160H347.3c20.2 0 36.7 16.4 36.7 36.7c0 7.4-2.2 14.6-6.4 20.7l-192.2 281c-5.9 8.6-15.6 13.7-25.9 13.7h-2.9c-15.7 0-28.5-12.8-28.5-28.5c0-2.3 .3-4.6 .9-6.9L176 288H32c-17.7 0-32-14.3-32-32z"]},iD={prefix:"fas",iconName:"sack-xmark",icon:[512,512,[],"e56a","M192 96H320l47.4-71.1C374.5 14.2 366.9 0 354.1 0H157.9c-12.8 0-20.4 14.2-13.3 24.9L192 96zm128 32H192c-3.8 2.5-8.1 5.3-13 8.4l0 0 0 0C122.3 172.7 0 250.9 0 416c0 53 43 96 96 96H416c53 0 96-43 96-96c0-165.1-122.3-243.3-179-279.6c-4.8-3.1-9.2-5.9-13-8.4zM289.9 336l47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47z"]},oD={prefix:"fas",iconName:"file-excel",icon:[384,512,[],"f1c3","M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM155.7 250.2L192 302.1l36.3-51.9c7.6-10.9 22.6-13.5 33.4-5.9s13.5 22.6 5.9 33.4L221.3 344l46.4 66.2c7.6 10.9 5 25.8-5.9 33.4s-25.8 5-33.4-5.9L192 385.8l-36.3 51.9c-7.6 10.9-22.6 13.5-33.4 5.9s-13.5-22.6-5.9-33.4L162.7 344l-46.4-66.2c-7.6-10.9-5-25.8 5.9-33.4s25.8-5 33.4 5.9z"]},fD={prefix:"fas",iconName:"file-contract",icon:[384,512,[],"f56c","M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM80 64h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16zm54.2 253.8c-6.1 20.3-24.8 34.2-46 34.2H80c-8.8 0-16-7.2-16-16s7.2-16 16-16h8.2c7.1 0 13.3-4.6 15.3-11.4l14.9-49.5c3.4-11.3 13.8-19.1 25.6-19.1s22.2 7.7 25.6 19.1l11.6 38.6c7.4-6.2 16.8-9.7 26.8-9.7c15.9 0 30.4 9 37.5 23.2l4.4 8.8H304c8.8 0 16 7.2 16 16s-7.2 16-16 16H240c-6.1 0-11.6-3.4-14.3-8.8l-8.8-17.7c-1.7-3.4-5.1-5.5-8.8-5.5s-7.2 2.1-8.8 5.5l-8.8 17.7c-2.9 5.9-9.2 9.4-15.7 8.8s-12.1-5.1-13.9-11.3L144 349l-9.8 32.8z"]},lD={prefix:"fas",iconName:"fish-fins",icon:[576,512,[],"e4f2","M275.2 38.4c-10.6-8-25-8.5-36.3-1.5S222 57.3 224.6 70.3l9.7 48.6c-19.4 9-36.9 19.9-52.4 31.5c-15.3 11.5-29 23.9-40.7 36.3L48.1 132.4c-12.5-7.3-28.4-5.3-38.7 4.9S-3 163.3 4.2 175.9L50 256 4.2 336.1c-7.2 12.6-5 28.4 5.3 38.6s26.1 12.2 38.7 4.9l93.1-54.3c11.8 12.3 25.4 24.8 40.7 36.3c15.5 11.6 33 22.5 52.4 31.5l-9.7 48.6c-2.6 13 3.1 26.3 14.3 33.3s25.6 6.5 36.3-1.5l77.6-58.2c54.9-4 101.5-27 137.2-53.8c39.2-29.4 67.2-64.7 81.6-89.5c5.8-9.9 5.8-22.2 0-32.1c-14.4-24.8-42.5-60.1-81.6-89.5c-35.8-26.8-82.3-49.8-137.2-53.8L275.2 38.4zM448 256c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32z"]},uD={prefix:"fas",iconName:"building-flag",icon:[640,512,[],"e4d5","M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM448 0c-17.7 0-32 14.3-32 32V512h64V192H624c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H480c0-17.7-14.3-32-32-32z"]},tp={prefix:"fas",iconName:"face-grin-beam",icon:[512,512,[128516,"grin-beam"],"f582","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM383.8 317.8c12.3-3.7 24.3 7 19.2 18.7c-24.5 56.9-81.1 96.7-147 96.7s-122.5-39.8-147-96.7c-5.1-11.8 6.9-22.4 19.2-18.7C166.7 329.4 210.1 336 256 336s89.3-6.6 127.8-18.2zm-166.2-89l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z"]},hD=tp,pD={prefix:"fas",iconName:"object-ungroup",icon:[640,512,[],"f248","M32 119.4C12.9 108.4 0 87.7 0 64C0 28.7 28.7 0 64 0c23.7 0 44.4 12.9 55.4 32H328.6C339.6 12.9 360.3 0 384 0c35.3 0 64 28.7 64 64c0 23.7-12.9 44.4-32 55.4V232.6c19.1 11.1 32 31.7 32 55.4c0 35.3-28.7 64-64 64c-23.7 0-44.4-12.9-55.4-32H119.4c-11.1 19.1-31.7 32-55.4 32c-35.3 0-64-28.7-64-64c0-23.7 12.9-44.4 32-55.4V119.4zM119.4 96c-5.6 9.7-13.7 17.8-23.4 23.4V232.6c9.7 5.6 17.8 13.7 23.4 23.4H328.6c5.6-9.7 13.7-17.8 23.4-23.4V119.4c-9.7-5.6-17.8-13.7-23.4-23.4H119.4zm192 384c-11.1 19.1-31.7 32-55.4 32c-35.3 0-64-28.7-64-64c0-23.7 12.9-44.4 32-55.4V352h64v40.6c9.7 5.6 17.8 13.7 23.4 23.4H520.6c5.6-9.7 13.7-17.8 23.4-23.4V279.4c-9.7-5.6-17.8-13.7-23.4-23.4h-46c-5.4-15.4-14.6-28.9-26.5-39.6V192h72.6c11.1-19.1 31.7-32 55.4-32c35.3 0 64 28.7 64 64c0 23.7-12.9 44.4-32 55.4V392.6c19.1 11.1 32 31.7 32 55.4c0 35.3-28.7 64-64 64c-23.7 0-44.4-12.9-55.4-32H311.4z"]},mD={prefix:"fas",iconName:"poop",icon:[512,512,[],"f619","M254.4 6.6c3.5-4.3 9-6.5 14.5-5.7C315.8 7.2 352 47.4 352 96c0 11.2-1.9 22-5.5 32H352c35.3 0 64 28.7 64 64c0 19.1-8.4 36.3-21.7 48H408c39.8 0 72 32.2 72 72c0 23.2-11 43.8-28 57c34.1 5.7 60 35.3 60 71c0 39.8-32.2 72-72 72H72c-39.8 0-72-32.2-72-72c0-35.7 25.9-65.3 60-71c-17-13.2-28-33.8-28-57c0-39.8 32.2-72 72-72h13.7C104.4 228.3 96 211.1 96 192c0-35.3 28.7-64 64-64h16.2c44.1-.1 79.8-35.9 79.8-80c0-9.2-1.5-17.9-4.3-26.1c-1.8-5.2-.8-11.1 2.8-15.4z"]},sp={prefix:"fas",iconName:"location-pin",icon:[384,512,["map-marker"],"f041","M384 192c0 87.4-117 243-168.3 307.2c-12.3 15.3-35.1 15.3-47.4 0C117 435 0 279.4 0 192C0 86 86 0 192 0S384 86 384 192z"]},vD=sp,dD={prefix:"fas",iconName:"kaaba",icon:[576,512,[128331],"f66b","M60 120l228 71.2L516 120 288 48.8 60 120zM278.5 1.5c6.2-1.9 12.9-1.9 19.1 0l256 80C566.9 85.6 576 98 576 112v16 0 21.2L292.8 237.7c-3.1 1-6.4 1-9.5 0L0 149.2V128 112C0 98 9.1 85.6 22.5 81.5l256-80zm23.9 266.8L576 182.8v46.5l-52.8 16.5c-8.4 2.6-13.1 11.6-10.5 20s11.6 13.1 20 10.5L576 262.8V400c0 14-9.1 26.4-22.5 30.5l-256 80c-6.2 1.9-12.9 1.9-19.1 0l-256-80C9.1 426.4 0 414 0 400V262.8l43.2 13.5c8.4 2.6 17.4-2.1 20-10.5s-2.1-17.4-10.5-20L0 229.2V182.8l273.7 85.5c9.3 2.9 19.3 2.9 28.6 0zm-185.5-2.6c-8.4-2.6-17.4 2.1-20 10.5s2.1 17.4 10.5 20l64 20c8.4 2.6 17.4-2.1 20-10.5s-2.1-17.4-10.5-20l-64-20zm352 30.5c8.4-2.6 13.1-11.6 10.5-20s-11.6-13.1-20-10.5l-64 20c-8.4 2.6-13.1 11.6-10.5 20s11.6 13.1 20 10.5l64-20zm-224 9.5c-8.4-2.6-17.4 2.1-20 10.5s2.1 17.4 10.5 20l38.5 12c9.3 2.9 19.3 2.9 28.6 0l38.5-12c8.4-2.6 13.1-11.6 10.5-20s-11.6-13.1-20-10.5l-38.5 12c-3.1 1-6.4 1-9.5 0l-38.5-12z"]},HD={prefix:"fas",iconName:"toilet-paper",icon:[640,512,[129531],"f71e","M444.2 0C397.2 49.6 384 126.5 384 192c0 158.8-27.3 247-42.7 283.9c-10 24-33.2 36.1-55.4 36.1H48c-11.5 0-22.2-6.2-27.8-16.2s-5.6-22.3 .4-32.2c9.8-17.7 15.4-38.2 20.5-57.7C52.3 362.8 64 293.5 64 192C64 86 107 0 160 0H444.2zM512 384c-53 0-96-86-96-192S459 0 512 0s96 86 96 192s-43 192-96 192zm0-128c17.7 0 32-28.7 32-64s-14.3-64-32-64s-32 28.7-32 64s14.3 64 32 64zM144 208c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zm64 0c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zm48 16c8.8 0 16-7.2 16-16s-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16zm80-16c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16z"]},Ra={prefix:"fas",iconName:"helmet-safety",icon:[576,512,["hard-hat","hat-hard"],"f807","M256 32c-17.7 0-32 14.3-32 32v2.3 99.6c0 5.6-4.5 10.1-10.1 10.1c-3.6 0-7-1.9-8.8-5.1L157.1 87C83 123.5 32 199.8 32 288v64H544l0-66.4c-.9-87.2-51.7-162.4-125.1-198.6l-48 83.9c-1.8 3.2-5.2 5.1-8.8 5.1c-5.6 0-10.1-4.5-10.1-10.1V66.3 64c0-17.7-14.3-32-32-32H256zM16.6 384C7.4 384 0 391.4 0 400.6c0 4.7 2 9.2 5.8 11.9C27.5 428.4 111.8 480 288 480s260.5-51.6 282.2-67.5c3.8-2.8 5.8-7.2 5.8-11.9c0-9.2-7.4-16.6-16.6-16.6H16.6z"]},zD=Ra,gD=Ra,VD={prefix:"fas",iconName:"eject",icon:[448,512,[9167],"f052","M224 32c13.5 0 26.3 5.6 35.4 15.6l176 192c12.9 14 16.2 34.3 8.6 51.8S419 320 400 320H48c-19 0-36.3-11.2-43.9-28.7s-4.3-37.7 8.6-51.8l176-192C197.7 37.6 210.5 32 224 32zM0 432c0-26.5 21.5-48 48-48H400c26.5 0 48 21.5 48 48s-21.5 48-48 48H48c-26.5 0-48-21.5-48-48z"]},ip={prefix:"fas",iconName:"circle-right",icon:[512,512,[61838,"arrow-alt-circle-right"],"f35a","M0 256C0 397.4 114.6 512 256 512s256-114.6 256-256S397.4 0 256 0S0 114.6 0 256zm395.3 11.3l-112 112c-4.6 4.6-11.5 5.9-17.4 3.5s-9.9-8.3-9.9-14.8l0-64-96 0c-17.7 0-32-14.3-32-32l0-32c0-17.7 14.3-32 32-32l96 0 0-64c0-6.5 3.9-12.3 9.9-14.8s12.9-1.1 17.4 3.5l112 112c6.2 6.2 6.2 16.4 0 22.6z"]},MD=ip,CD={prefix:"fas",iconName:"plane-circle-check",icon:[640,512,[],"e555","M256 0c-35 0-64 59.5-64 93.7v84.6L8.1 283.4c-5 2.8-8.1 8.2-8.1 13.9v65.5c0 10.6 10.2 18.3 20.4 15.4l171.6-49 0 70.9-57.6 43.2c-4 3-6.4 7.8-6.4 12.8v42c0 7.8 6.3 14 14 14c1.3 0 2.6-.2 3.9-.5L256 480l110.1 31.5c1.3 .4 2.6 .5 3.9 .5c6 0 11.1-3.7 13.1-9C344.5 470.7 320 422.2 320 368c0-60.6 30.6-114 77.1-145.6L320 178.3V93.7C320 59.5 292 0 256 0zM640 368c0-79.5-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144s144-64.5 144-144zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z"]},op={prefix:"fas",iconName:"face-rolling-eyes",icon:[512,512,[128580,"meh-rolling-eyes"],"f5a5","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM192 368H320c8.8 0 16 7.2 16 16s-7.2 16-16 16H192c-8.8 0-16-7.2-16-16s7.2-16 16-16zm32-144c0 35.3-28.7 64-64 64s-64-28.7-64-64c0-26 15.5-48.4 37.8-58.4c-3.7 5.2-5.8 11.6-5.8 18.4c0 17.7 14.3 32 32 32s32-14.3 32-32c0-6.9-2.2-13.2-5.8-18.4C208.5 175.6 224 198 224 224zm128 64c-35.3 0-64-28.7-64-64c0-26 15.5-48.4 37.8-58.4c-3.7 5.2-5.8 11.6-5.8 18.4c0 17.7 14.3 32 32 32s32-14.3 32-32c0-6.9-2.2-13.2-5.8-18.4C400.5 175.6 416 198 416 224c0 35.3-28.7 64-64 64z"]},LD=op,yD={prefix:"fas",iconName:"object-group",icon:[576,512,[],"f247","M32 119.4C12.9 108.4 0 87.7 0 64C0 28.7 28.7 0 64 0c23.7 0 44.4 12.9 55.4 32H456.6C467.6 12.9 488.3 0 512 0c35.3 0 64 28.7 64 64c0 23.7-12.9 44.4-32 55.4V392.6c19.1 11.1 32 31.7 32 55.4c0 35.3-28.7 64-64 64c-23.7 0-44.4-12.9-55.4-32H119.4c-11.1 19.1-31.7 32-55.4 32c-35.3 0-64-28.7-64-64c0-23.7 12.9-44.4 32-55.4V119.4zM456.6 96H119.4c-5.6 9.7-13.7 17.8-23.4 23.4V392.6c9.7 5.6 17.8 13.7 23.4 23.4H456.6c5.6-9.7 13.7-17.8 23.4-23.4V119.4c-9.7-5.6-17.8-13.7-23.4-23.4zM128 160c0-17.7 14.3-32 32-32H288c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32V160zM256 320h32c35.3 0 64-28.7 64-64V224h64c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H288c-17.7 0-32-14.3-32-32V320z"]},fp={prefix:"fas",iconName:"chart-line",icon:[512,512,["line-chart"],"f201","M64 64c0-17.7-14.3-32-32-32S0 46.3 0 64V400c0 44.2 35.8 80 80 80H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H80c-8.8 0-16-7.2-16-16V64zm406.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L320 210.7l-57.4-57.4c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L240 221.3l57.4 57.4c12.5 12.5 32.8 12.5 45.3 0l128-128z"]},bD=fp,xD={prefix:"fas",iconName:"mask-ventilator",icon:[640,512,[],"e524","M159.1 176C139.4 219.2 128 264.7 128 300.8c0 15.9 2.2 31.4 6.3 46l-31.8-7.9C70.5 330.9 48 302.1 48 269V184c0-4.4 3.6-8 8-8H159.1zm26-48H56c-30.9 0-56 25.1-56 56v85c0 55.1 37.5 103.1 90.9 116.4l71.3 17.8c22.7 30.5 55.4 54.1 93.8 66.6V393.3c-19.7-16.4-32-40.3-32-66.9c0-49.5 43-134.4 96-134.4c52.5 0 96 84.9 96 134.4c0 26.7-12.4 50.4-32 66.8v76.6c38-12.6 70.6-36 93.5-66.4l71.6-17.9C602.5 372.1 640 324.1 640 269V184c0-30.9-25.1-56-56-56H454.5C419.7 73.8 372.1 32 320 32c-52.6 0-100.2 41.8-134.9 96zm295.6 48H584c4.4 0 8 3.6 8 8v85c0 33-22.5 61.8-54.5 69.9l-31.8 8c4.2-14.7 6.4-30.1 6.4-46.1c0-36.1-11.6-81.6-31.3-124.8zM288 320V512h64V320c0-17.7-14.3-32-32-32s-32 14.3-32 32z"]},SD={prefix:"fas",iconName:"arrow-right",icon:[448,512,[8594],"f061","M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.8 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l306.7 0L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z"]},lp={prefix:"fas",iconName:"signs-post",icon:[512,512,["map-signs"],"f277","M224 32H64C46.3 32 32 46.3 32 64v64c0 17.7 14.3 32 32 32H441.4c4.2 0 8.3-1.7 11.3-4.7l48-48c6.2-6.2 6.2-16.4 0-22.6l-48-48c-3-3-7.1-4.7-11.3-4.7H288c0-17.7-14.3-32-32-32s-32 14.3-32 32zM480 256c0-17.7-14.3-32-32-32H288V192H224v32H70.6c-4.2 0-8.3 1.7-11.3 4.7l-48 48c-6.2 6.2-6.2 16.4 0 22.6l48 48c3 3 7.1 4.7 11.3 4.7H448c17.7 0 32-14.3 32-32V256zM288 480V384H224v96c0 17.7 14.3 32 32 32s32-14.3 32-32z"]},wD=lp,ND={prefix:"fas",iconName:"cash-register",icon:[512,512,[],"f788","M64 0C46.3 0 32 14.3 32 32V96c0 17.7 14.3 32 32 32h80v32H87c-31.6 0-58.5 23.1-63.3 54.4L1.1 364.1C.4 368.8 0 373.6 0 378.4V448c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V378.4c0-4.8-.4-9.6-1.1-14.4L488.2 214.4C483.5 183.1 456.6 160 425 160H208V128h80c17.7 0 32-14.3 32-32V32c0-17.7-14.3-32-32-32H64zM96 48H256c8.8 0 16 7.2 16 16s-7.2 16-16 16H96c-8.8 0-16-7.2-16-16s7.2-16 16-16zM64 432c0-8.8 7.2-16 16-16H432c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm48-216c13.3 0 24 10.7 24 24s-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24zm72 24c0-13.3 10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24s-24-10.7-24-24zm-24 56c13.3 0 24 10.7 24 24s-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24zm120-56c0-13.3 10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24s-24-10.7-24-24zm-24 56c13.3 0 24 10.7 24 24s-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24zm120-56c0-13.3 10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24s-24-10.7-24-24zm-24 56c13.3 0 24 10.7 24 24s-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24z"]},AD={prefix:"fas",iconName:"person-circle-question",icon:[576,512,[],"e542","M208 48c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48zM152 352V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5c-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152zM432 512c-79.5 0-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144s-64.5 144-144 144zm0-48c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24zM368 321.6V328c0 8.8 7.2 16 16 16s16-7.2 16-16v-6.4c0-5.3 4.3-9.6 9.6-9.6h40.5c7.7 0 13.9 6.2 13.9 13.9c0 5.2-2.9 9.9-7.4 12.3l-32 16.8c-5.3 2.8-8.6 8.2-8.6 14.2V384c0 8.8 7.2 16 16 16s16-7.2 16-16v-5.1l23.5-12.3c15.1-7.9 24.5-23.6 24.5-40.6c0-25.4-20.6-45.9-45.9-45.9H409.6c-23 0-41.6 18.6-41.6 41.6z"]},_D={prefix:"fas",iconName:"h",icon:[384,512,[104],"48","M320 256l0 192c0 17.7 14.3 32 32 32s32-14.3 32-32l0-224V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V192L64 192 64 64c0-17.7-14.3-32-32-32S0 46.3 0 64V448c0 17.7 14.3 32 32 32s32-14.3 32-32l0-192 256 0z"]},kD={prefix:"fas",iconName:"tarp",icon:[576,512,[],"e57b","M576 128c0-35.3-28.7-64-64-64H64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64l352 0 0-128c0-17.7 14.3-32 32-32H576V128zM448 448L576 320H448l0 128zM96 192c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},up={prefix:"fas",iconName:"screwdriver-wrench",icon:[512,512,["tools"],"f7d9","M78.6 5C69.1-2.4 55.6-1.5 47 7L7 47c-8.5 8.5-9.4 22-2.1 31.6l80 104c4.5 5.9 11.6 9.4 19 9.4h54.1l109 109c-14.7 29-10 65.4 14.3 89.6l112 112c12.5 12.5 32.8 12.5 45.3 0l64-64c12.5-12.5 12.5-32.8 0-45.3l-112-112c-24.2-24.2-60.6-29-89.6-14.3l-109-109V104c0-7.5-3.5-14.5-9.4-19L78.6 5zM19.9 396.1C7.2 408.8 0 426.1 0 444.1C0 481.6 30.4 512 67.9 512c18 0 35.3-7.2 48-19.9L233.7 374.3c-7.8-20.9-9-43.6-3.6-65.1l-61.7-61.7L19.9 396.1zM512 144c0-10.5-1.1-20.7-3.2-30.5c-2.4-11.2-16.1-14.1-24.2-6l-63.9 63.9c-3 3-7.1 4.7-11.3 4.7H352c-8.8 0-16-7.2-16-16V102.6c0-4.2 1.7-8.3 4.7-11.3l63.9-63.9c8.1-8.1 5.2-21.8-6-24.2C388.7 1.1 378.5 0 368 0C288.5 0 224 64.5 224 144l0 .8 85.3 85.3c36-9.1 75.8 .5 104 28.7L429 274.5c49-23 83-72.8 83-130.5zM104 432c0 13.3-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24z"]},TD=up,PD={prefix:"fas",iconName:"arrows-to-eye",icon:[640,512,[],"e4bf","M15 15C24.4 5.7 39.6 5.7 49 15l63 63V40c0-13.3 10.7-24 24-24s24 10.7 24 24v96c0 13.3-10.7 24-24 24H40c-13.3 0-24-10.7-24-24s10.7-24 24-24H78.1L15 49C5.7 39.6 5.7 24.4 15 15zM133.5 243.9C158.6 193.6 222.7 112 320 112s161.4 81.6 186.5 131.9c3.8 7.6 3.8 16.5 0 24.2C481.4 318.4 417.3 400 320 400s-161.4-81.6-186.5-131.9c-3.8-7.6-3.8-16.5 0-24.2zM320 320c35.3 0 64-28.7 64-64s-28.7-64-64-64s-64 28.7-64 64s28.7 64 64 64zM591 15c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-63 63H600c13.3 0 24 10.7 24 24s-10.7 24-24 24H504c-13.3 0-24-10.7-24-24V40c0-13.3 10.7-24 24-24s24 10.7 24 24V78.1l63-63zM15 497c-9.4-9.4-9.4-24.6 0-33.9l63-63H40c-13.3 0-24-10.7-24-24s10.7-24 24-24h96c13.3 0 24 10.7 24 24v96c0 13.3-10.7 24-24 24s-24-10.7-24-24V433.9L49 497c-9.4 9.4-24.6 9.4-33.9 0zm576 0l-63-63V472c0 13.3-10.7 24-24 24s-24-10.7-24-24V376c0-13.3 10.7-24 24-24h96c13.3 0 24 10.7 24 24s-10.7 24-24 24H561.9l63 63c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0z"]},ED={prefix:"fas",iconName:"plug-circle-bolt",icon:[576,512,[],"e55b","M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8c12.3-2.5 24.1-6.4 35.1-11.5c-2.1-10.8-3.1-21.9-3.1-33.3c0-80.3 53.8-148 127.3-169.2c.5-2.2 .7-4.5 .7-6.8c0-17.7-14.3-32-32-32H32zM432 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm47.9-225c4.3 3.7 5.4 9.9 2.6 14.9L452.4 356H488c5.2 0 9.8 3.3 11.4 8.2s-.1 10.3-4.2 13.4l-96 72c-4.5 3.4-10.8 3.2-15.1-.6s-5.4-9.9-2.6-14.9L411.6 380H376c-5.2 0-9.8-3.3-11.4-8.2s.1-10.3 4.2-13.4l96-72c4.5-3.4 10.8-3.2 15.1 .6z"]},OD={prefix:"fas",iconName:"heart",icon:[512,512,[128153,128154,128155,128156,128420,129293,129294,129505,9829,10084,61578],"f004","M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9L464.4 300.4c30.4-28.3 47.6-68 47.6-109.5v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5z"]},RD={prefix:"fas",iconName:"mars-and-venus",icon:[512,512,[9893],"f224","M337.8 14.8C341.5 5.8 350.3 0 360 0H472c13.3 0 24 10.7 24 24V136c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-39-39-24.7 24.7C407 163.3 416 192.6 416 224c0 80.2-59.1 146.7-136.1 158.2c0 .6 .1 1.2 .1 1.8v.4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .3 .4 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3h24c13.3 0 24 10.7 24 24s-10.7 24-24 24H280v.2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0l-24 0-24 0v0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V486 486v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V485 485v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V484v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V483v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V481v-.1-.1-.1-.1-.1-.1-.1-.1V480v-.1-.1-.1-.1-.1-.1-.1V479v-.1-.1-.1-.1-.1-.1-.1V478v-.1-.1-.1-.1-.1-.1V477v-.1-.1-.1-.1-.1-.1V476v-.1-.1-.1-.1-.1-.1V475v-.1-.2-.2-.2-.2-.2V474v-.2-.2-.2-.2-.2V473v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V470v-.2-.2-.2-.2-.2V469v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V467v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V463v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V459v-.2-.2-.2-.2-.2-.2-.2-.2V457v-.2-.2-.2-.2V456H208c-13.3 0-24-10.7-24-24s10.7-24 24-24h24v-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3V403v-.3-.3V402v-.3-.3V401v-.3-.3V400v-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.4-.3-.4-.4-.4-.4V393v-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4V388v-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4V384c0-.6 0-1.2 .1-1.8C155.1 370.7 96 304.2 96 224c0-88.4 71.6-160 160-160c39.6 0 75.9 14.4 103.8 38.2L382.1 80 343 41c-6.9-6.9-8.9-17.2-5.2-26.2zM448 48l0 0h0v0zM256 488h24c0 13.3-10.7 24-24 24s-24-10.7-24-24h24zm96-264c0-53-43-96-96-96s-96 43-96 96s43 96 96 96s96-43 96-96z"]},hp={prefix:"fas",iconName:"house-user",icon:[576,512,["home-user"],"e1b0","M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c.2 35.5-28.5 64.3-64 64.3H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L564.8 231.5c8 7 12 15 11 24zM352 224c0-35.3-28.7-64-64-64s-64 28.7-64 64s28.7 64 64 64s64-28.7 64-64zm-96 96c-44.2 0-80 35.8-80 80c0 8.8 7.2 16 16 16H384c8.8 0 16-7.2 16-16c0-44.2-35.8-80-80-80H256z"]},FD=hp,BD={prefix:"fas",iconName:"dumpster-fire",icon:[640,512,[],"f794","M49.7 32c-10.5 0-19.8 6.9-22.9 16.9L.9 133c-.6 2-.9 4.1-.9 6.1C0 150.7 9.3 160 20.9 160h94L140.5 32H49.7zM272 160V32H173.1L147.5 160H272zm32 0h58c15.1-18.1 32.1-35.7 50.5-52.1c1.5-1.4 3.2-2.6 4.8-3.8L402.9 32H304V160zm209.9-23.7c17.4-15.8 43.9-16.2 61.7-1.2c-.1-.7-.3-1.4-.5-2.1L549.2 48.9C546.1 38.9 536.8 32 526.3 32H435.5l12.8 64.2c9.6 1 19 4.9 26.6 11.8c11.7 10.6 23 21.6 33.9 33.1c1.6-1.6 3.3-3.2 5-4.8zM325.2 210.7c3.8-6.2 7.9-12.5 12.3-18.7H32l4 32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H44L64 448c0 17.7 14.3 32 32 32s32-14.3 32-32H337.6c-31-34.7-49.6-80.6-49.6-129.9c0-35.2 16.3-73.6 37.2-107.4zm128.4-78.9c-2.8-2.5-6.3-3.7-9.8-3.8c-3.6 0-7.2 1.2-10 3.7c-33.2 29.7-61.4 63.4-81.4 95.8c-19.7 31.9-32.4 66.2-32.4 92.6C320 407.9 390.3 480 480 480c88.7 0 160-72 160-159.8c0-20.2-9.6-50.9-24.2-79c-14.8-28.5-35.7-58.5-60.4-81.1c-5.6-5.1-14.4-5.2-20 0c-9.6 8.8-18.6 19.6-26.5 29.5c-17.3-20.7-35.8-39.9-55.5-57.7zM530 401c-15 10-31 15-49 15c-45 0-81-29-81-78c0-24 15-45 45-82c4 5 62 79 62 79l36-42c3 4 5 8 7 12c18 33 10 75-20 96z"]},DD={prefix:"fas",iconName:"house-crack",icon:[576,512,[],"e3b1","M543.8 287.6c17 0 32-14 32-32.1c1-9-3-17-11-24L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32V448c0 35.3 28.7 64 64 64H230.4l-31.3-52.2c-4.1-6.8-2.6-15.5 3.5-20.5L288 368l-60.2-82.8c-10.9-15 8.2-33.5 22.8-22l117.9 92.6c8 6.3 8.2 18.4 .4 24.9L288 448l38.4 64H448.5c35.5 0 64.2-28.8 64-64.3l-.7-160.2h32z"]},pp={prefix:"fas",iconName:"martini-glass-citrus",icon:[576,512,["cocktail"],"f561","M432 240c53 0 96-43 96-96s-43-96-96-96c-35.5 0-66.6 19.3-83.2 48H296.2C316 40.1 369.3 0 432 0c79.5 0 144 64.5 144 144s-64.5 144-144 144c-27.7 0-53.5-7.8-75.5-21.3l35.4-35.4c12.2 5.6 25.8 8.7 40.1 8.7zM1.8 142.8C5.5 133.8 14.3 128 24 128H392c9.7 0 18.5 5.8 22.2 14.8s1.7 19.3-5.2 26.2l-177 177V464h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H208 120c-13.3 0-24-10.7-24-24s10.7-24 24-24h64V345.9L7 169c-6.9-6.9-8.9-17.2-5.2-26.2z"]},ID=pp,mp={prefix:"fas",iconName:"face-surprise",icon:[512,512,[128558,"surprise"],"f5c2","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM176.4 240c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm192-32c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zM256 416c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64z"]},UD=mp,WD={prefix:"fas",iconName:"bottle-water",icon:[256,512,[],"e4c5","M88 0h80c13.3 0 24 10.7 24 24V64H64V24C64 10.7 74.7 0 88 0zM0 151.7c0-15.6 9-29.8 23.2-36.5l24.4-11.4c11-5.1 23-7.8 35.1-7.8h90.6c12.1 0 24.1 2.7 35.1 7.8l24.4 11.4c14.2 6.6 23.2 20.8 23.2 36.5c0 14.4-7.5 27-18.9 34.1c11.5 8.8 18.9 22.6 18.9 38.2c0 16.7-8.5 31.4-21.5 40c12.9 8.6 21.5 23.3 21.5 40s-8.5 31.4-21.5 40c12.9 8.6 21.5 23.3 21.5 40s-8.5 31.4-21.5 40c12.9 8.6 21.5 23.3 21.5 40c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48c0-16.7 8.5-31.4 21.5-40C8.5 415.4 0 400.7 0 384s8.5-31.4 21.5-40C8.5 335.4 0 320.7 0 304s8.5-31.4 21.5-40C8.5 255.4 0 240.7 0 224c0-15.6 7.4-29.4 18.9-38.2C7.5 178.7 0 166.1 0 151.7zM64 240c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zM80 352c-8.8 0-16 7.2-16 16s7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H80z"]},vp={prefix:"fas",iconName:"circle-pause",icon:[512,512,[62092,"pause-circle"],"f28b","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM224 192V320c0 17.7-14.3 32-32 32s-32-14.3-32-32V192c0-17.7 14.3-32 32-32s32 14.3 32 32zm128 0V320c0 17.7-14.3 32-32 32s-32-14.3-32-32V192c0-17.7 14.3-32 32-32s32 14.3 32 32z"]},$D=vp,qD={prefix:"fas",iconName:"toilet-paper-slash",icon:[640,512,[],"e072","M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-109.7-86C569.9 374 608 291.9 608 192C608 86 565 0 512 0s-96 86-96 192c0 49.1 9.2 93.9 24.4 127.9l-59-46.2c1.6-24.8 2.6-52 2.6-81.6c0-65.5 13.2-142.4 60.2-192H160c-24.8 0-47.4 18.8-64.4 49.6L38.8 5.1zM66.5 148.4C64.9 162.4 64 177 64 192c0 101.5-11.7 170.8-23 213.9c-5.1 19.4-10.7 39.9-20.5 57.7c-5.9 9.9-6.1 22.1-.4 32.2S36.5 512 48 512H285.9c22.3 0 45.4-12.1 55.4-36.1c7.4-17.7 17.5-47.2 26-90.6L66.5 148.4zM544 192c0 35.3-14.3 64-32 64s-32-28.7-32-64s14.3-64 32-64s32 28.7 32 64z"]},dp={prefix:"fas",iconName:"apple-whole",icon:[448,512,[127822,127823,"apple-alt"],"f5d1","M224 112c-8.8 0-16-7.2-16-16V80c0-44.2 35.8-80 80-80h16c8.8 0 16 7.2 16 16V32c0 44.2-35.8 80-80 80H224zM0 288c0-76.3 35.7-160 112-160c27.3 0 59.7 10.3 82.7 19.3c18.8 7.3 39.9 7.3 58.7 0c22.9-8.9 55.4-19.3 82.7-19.3c76.3 0 112 83.7 112 160c0 128-80 224-160 224c-16.5 0-38.1-6.6-51.5-11.3c-8.1-2.8-16.9-2.8-25 0c-13.4 4.7-35 11.3-51.5 11.3C80 512 0 416 0 288z"]},GD=dp,jD={prefix:"fas",iconName:"kitchen-set",icon:[576,512,[],"e51a","M240 144c0-53-43-96-96-96s-96 43-96 96s43 96 96 96s96-43 96-96zm44.4 32C269.9 240.1 212.5 288 144 288C64.5 288 0 223.5 0 144S64.5 0 144 0c68.5 0 125.9 47.9 140.4 112h71.8c8.8-9.8 21.6-16 35.8-16H496c26.5 0 48 21.5 48 48s-21.5 48-48 48H392c-14.2 0-27-6.2-35.8-16H284.4zM144 208c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64zm256 32c13.3 0 24 10.7 24 24v8h96c13.3 0 24 10.7 24 24s-10.7 24-24 24H280c-13.3 0-24-10.7-24-24s10.7-24 24-24h96v-8c0-13.3 10.7-24 24-24zM288 464V352H512V464c0 26.5-21.5 48-48 48H336c-26.5 0-48-21.5-48-48zM48 320h80 16 32c26.5 0 48 21.5 48 48s-21.5 48-48 48H160c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V336c0-8.8 7.2-16 16-16zm128 64c8.8 0 16-7.2 16-16s-7.2-16-16-16H160v32h16zM24 464H200c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24s10.7-24 24-24z"]},KD={prefix:"fas",iconName:"r",icon:[320,512,[114],"52","M32 32C14.3 32 0 46.3 0 64V288 448c0 17.7 14.3 32 32 32s32-14.3 32-32V320h95.3L261.8 466.4c10.1 14.5 30.1 18 44.6 7.9s18-30.1 7.9-44.6L230.1 309.5C282.8 288.1 320 236.4 320 176c0-79.5-64.5-144-144-144H32zM176 256H64V96H176c44.2 0 80 35.8 80 80s-35.8 80-80 80z"]},me={prefix:"fas",iconName:"temperature-quarter",icon:[320,512,["temperature-1","thermometer-1","thermometer-quarter"],"f2ca","M160 64c-26.5 0-48 21.5-48 48V276.5c0 17.3-7.1 31.9-15.3 42.5C86.2 332.6 80 349.5 80 368c0 44.2 35.8 80 80 80s80-35.8 80-80c0-18.5-6.2-35.4-16.7-48.9c-8.2-10.6-15.3-25.2-15.3-42.5V112c0-26.5-21.5-48-48-48zM48 112C48 50.2 98.1 0 160 0s112 50.1 112 112V276.5c0 .1 .1 .3 .2 .6c.2 .6 .8 1.6 1.7 2.8c18.9 24.4 30.1 55 30.1 88.1c0 79.5-64.5 144-144 144S16 447.5 16 368c0-33.2 11.2-63.8 30.1-88.1c.9-1.2 1.5-2.2 1.7-2.8c.1-.3 .2-.5 .2-.6V112zM208 368c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-20.9 13.4-38.7 32-45.3V272c0-8.8 7.2-16 16-16s16 7.2 16 16v50.7c18.6 6.6 32 24.4 32 45.3z"]},XD=me,YD=me,JD=me,QD={prefix:"fas",iconName:"cube",icon:[512,512,[],"f1b2","M234.5 5.7c13.9-5 29.1-5 43.1 0l192 68.6C495 83.4 512 107.5 512 134.6V377.4c0 27-17 51.2-42.5 60.3l-192 68.6c-13.9 5-29.1 5-43.1 0l-192-68.6C17 428.6 0 404.5 0 377.4V134.6c0-27 17-51.2 42.5-60.3l192-68.6zM256 66L82.3 128 256 190l173.7-62L256 66zm32 368.6l160-57.1v-188L288 246.6v188z"]},ZD={prefix:"fas",iconName:"bitcoin-sign",icon:[320,512,[],"e0b4","M48 32C48 14.3 62.3 0 80 0s32 14.3 32 32V64h32V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64c0 1.5-.1 3.1-.3 4.5C254.1 82.2 288 125.1 288 176c0 24.2-7.7 46.6-20.7 64.9c31.7 19.8 52.7 55 52.7 95.1c0 61.9-50.1 112-112 112v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H112v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H41.7C18.7 448 0 429.3 0 406.3V288 265.7 224 101.6C0 80.8 16.8 64 37.6 64H48V32zM64 224H176c26.5 0 48-21.5 48-48s-21.5-48-48-48H64v96zm112 64H64v96H208c26.5 0 48-21.5 48-48s-21.5-48-48-48H176z"]},cI={prefix:"fas",iconName:"shield-dog",icon:[512,512,[],"e573","M269.4 2.9C265.2 1 260.7 0 256 0s-9.2 1-13.4 2.9L54.3 82.8c-22 9.3-38.4 31-38.3 57.2c.5 99.2 41.3 280.7 213.6 363.2c16.7 8 36.1 8 52.8 0C454.7 420.7 495.5 239.2 496 140c.1-26.2-16.3-47.9-38.3-57.2L269.4 2.9zM160.9 286.2c4.8 1.2 9.9 1.8 15.1 1.8c35.3 0 64-28.7 64-64V160h44.2c12.1 0 23.2 6.8 28.6 17.7L320 192h64c8.8 0 16 7.2 16 16v32c0 44.2-35.8 80-80 80H272v50.7c0 7.3-5.9 13.3-13.3 13.3c-1.8 0-3.6-.4-5.2-1.1l-98.7-42.3c-6.6-2.8-10.8-9.3-10.8-16.4c0-2.8 .6-5.5 1.9-8l15-30zM160 160h40 8v32 32c0 17.7-14.3 32-32 32s-32-14.3-32-32V176c0-8.8 7.2-16 16-16zm128 48c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16z"]},eI={prefix:"fas",iconName:"solar-panel",icon:[640,512,[],"f5ba","M96 0C80.7 0 67.6 10.8 64.6 25.7l-64 320c-1.9 9.4 .6 19.1 6.6 26.6S22.4 384 32 384H288v64H224c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H352V384H608c9.6 0 18.7-4.3 24.7-11.7s8.5-17.2 6.6-26.6l-64-320C572.4 10.8 559.3 0 544 0H96zm5.4 168L122.2 64h90.4L202.3 168H101.4zm-9.6 48H197.5L187.1 320H71L91.8 216zm153.9 0H394.3l10.4 104H235.3l10.4-104zm196.8 0H548.2L569 320h-116L442.5 216zm96-48H437.7L427.3 64h90.4l20.8 104zm-149.1 0h-139L260.9 64H379.1l10.4 104z"]},rI={prefix:"fas",iconName:"lock-open",icon:[576,512,[],"f3c1","M352 144c0-44.2 35.8-80 80-80s80 35.8 80 80v48c0 17.7 14.3 32 32 32s32-14.3 32-32V144C576 64.5 511.5 0 432 0S288 64.5 288 144v48H64c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V256c0-35.3-28.7-64-64-64H352V144z"]},aI={prefix:"fas",iconName:"elevator",icon:[512,512,[],"e16d","M132.7 4.7l-64 64c-4.6 4.6-5.9 11.5-3.5 17.4s8.3 9.9 14.8 9.9H208c6.5 0 12.3-3.9 14.8-9.9s1.1-12.9-3.5-17.4l-64-64c-6.2-6.2-16.4-6.2-22.6 0zM64 128c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V192c0-35.3-28.7-64-64-64H64zm96 192c-26.5 0-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48s-21.5 48-48 48zM80 400c0-26.5 21.5-48 48-48h64c26.5 0 48 21.5 48 48v16c0 17.7-14.3 32-32 32H112c-17.7 0-32-14.3-32-32V400zm192 0c0-26.5 21.5-48 48-48h64c26.5 0 48 21.5 48 48v16c0 17.7-14.3 32-32 32H304c-17.7 0-32-14.3-32-32V400zM400 272c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48zM356.7 91.3c6.2 6.2 16.4 6.2 22.6 0l64-64c4.6-4.6 5.9-11.5 3.5-17.4S438.5 0 432 0H304c-6.5 0-12.3 3.9-14.8 9.9s-1.1 12.9 3.5 17.4l64 64z"]},nI={prefix:"fas",iconName:"money-bill-transfer",icon:[640,512,[],"e528","M535 41c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l64 64c4.5 4.5 7 10.6 7 17s-2.5 12.5-7 17l-64 64c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l23-23L384 112c-13.3 0-24-10.7-24-24s10.7-24 24-24l174.1 0L535 41zM105 377l-23 23L256 400c13.3 0 24 10.7 24 24s-10.7 24-24 24L81.9 448l23 23c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L7 441c-4.5-4.5-7-10.6-7-17s2.5-12.5 7-17l64-64c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9zM96 64H337.9c-3.7 7.2-5.9 15.3-5.9 24c0 28.7 23.3 52 52 52l117.4 0c-4 17 .6 35.5 13.8 48.8c20.3 20.3 53.2 20.3 73.5 0L608 169.5V384c0 35.3-28.7 64-64 64H302.1c3.7-7.2 5.9-15.3 5.9-24c0-28.7-23.3-52-52-52l-117.4 0c4-17-.6-35.5-13.8-48.8c-20.3-20.3-53.2-20.3-73.5 0L32 342.5V128c0-35.3 28.7-64 64-64zm64 64H96v64c35.3 0 64-28.7 64-64zM544 320c-35.3 0-64 28.7-64 64h64V320zM320 352c53 0 96-43 96-96s-43-96-96-96s-96 43-96 96s43 96 96 96z"]},tI={prefix:"fas",iconName:"money-bill-trend-up",icon:[512,512,[],"e529","M470.7 9.4c3 3.1 5.3 6.6 6.9 10.3s2.4 7.8 2.4 12.2l0 .1v0 96c0 17.7-14.3 32-32 32s-32-14.3-32-32V109.3L310.6 214.6c-11.8 11.8-30.8 12.6-43.5 1.7L176 138.1 84.8 216.3c-13.4 11.5-33.6 9.9-45.1-3.5s-9.9-33.6 3.5-45.1l112-96c12-10.3 29.7-10.3 41.7 0l89.5 76.7L370.7 64H352c-17.7 0-32-14.3-32-32s14.3-32 32-32h96 0c8.8 0 16.8 3.6 22.6 9.3l.1 .1zM0 304c0-26.5 21.5-48 48-48H464c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V304zM48 416v48H96c0-26.5-21.5-48-48-48zM96 304H48v48c26.5 0 48-21.5 48-48zM464 416c-26.5 0-48 21.5-48 48h48V416zM416 304c0 26.5 21.5 48 48 48V304H416zm-96 80c0-35.3-28.7-64-64-64s-64 28.7-64 64s28.7 64 64 64s64-28.7 64-64z"]},sI={prefix:"fas",iconName:"house-flood-water-circle-arrow-right",icon:[640,512,[],"e50f","M288 144C288 64.5 223.5 0 144 0S0 64.5 0 144s64.5 144 144 144s144-64.5 144-144zM140.7 76.7c6.2-6.2 16.4-6.2 22.6 0l56 56c6.2 6.2 6.2 16.4 0 22.6l-56 56c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L169.4 160H80c-8.8 0-16-7.2-16-16s7.2-16 16-16h89.4L140.7 99.3c-6.2-6.2-6.2-16.4 0-22.6zM320 144c0 57.3-27.4 108.2-69.8 140.3c11.8-3.6 23-9.4 33-16.2c22.1-15.5 51.6-15.5 73.7 0c18.4 12.7 39.6 20.3 59.2 20.3c19 0 41.2-7.9 59.2-20.3c23.8-16.7 55.8-15.4 78.1 3.4c2.1 1.7 4.2 3.3 6.5 4.9l-.3-84.4H576c13.9 0 26.1-8.9 30.4-22.1s-.4-27.6-11.6-35.8l-176-128C407.6-2 392.4-2 381.2 6.1L301 64.4c12.1 23.9 19 50.9 19 79.6zm18.5 165.9c-11.1-7.9-25.9-7.9-37 0C279 325.4 251.5 336 224 336c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C158.5 389.7 191 400 224 400c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.5-27.3-10.1-39.2-1.7l0 0C471.4 325.2 442.9 336 416 336c-27.5 0-55-10.6-77.5-26.1zm0 112c-11.1-7.9-25.9-7.9-37 0C279 437.4 251.5 448 224 448c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C158.5 501.7 191 512 224 512c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.4-27.3-10.1-39.2-1.7l0 0C471.4 437.2 442.9 448 416 448c-27.5 0-55-10.6-77.5-26.1z"]},Hp={prefix:"fas",iconName:"square-poll-horizontal",icon:[448,512,["poll-h"],"f682","M448 96c0-35.3-28.7-64-64-64L64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-320zM256 160c0 17.7-14.3 32-32 32l-96 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l96 0c17.7 0 32 14.3 32 32zm64 64c17.7 0 32 14.3 32 32s-14.3 32-32 32l-192 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l192 0zM192 352c0 17.7-14.3 32-32 32l-32 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l32 0c17.7 0 32 14.3 32 32z"]},iI=Hp,oI={prefix:"fas",iconName:"circle",icon:[512,512,[128308,128309,128992,128993,128994,128995,128996,9679,9898,9899,11044,61708,61915],"f111","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512z"]},zp={prefix:"fas",iconName:"backward-fast",icon:[512,512,[9198,"fast-backward"],"f049","M493.6 445c-11.2 5.3-24.5 3.6-34.1-4.4L288 297.7V416c0 12.4-7.2 23.7-18.4 29s-24.5 3.6-34.1-4.4L64 297.7V416c0 17.7-14.3 32-32 32s-32-14.3-32-32V96C0 78.3 14.3 64 32 64s32 14.3 32 32V214.3L235.5 71.4c9.5-7.9 22.8-9.7 34.1-4.4S288 83.6 288 96V214.3L459.5 71.4c9.5-7.9 22.8-9.7 34.1-4.4S512 83.6 512 96V416c0 12.4-7.2 23.7-18.4 29z"]},fI=zp,lI={prefix:"fas",iconName:"recycle",icon:[576,512,[9842,9850,9851],"f1b8","M206.7 45.1C224.2 17 255 0 288 0s63.8 17 81.3 45.1l38.6 61.7 27-15.6c8.4-4.9 18.9-4.2 26.6 1.7s11.1 15.9 8.6 25.3l-23.4 87.4c-3.4 12.8-16.6 20.4-29.4 17l-87.4-23.4c-9.4-2.5-16.3-10.4-17.6-20s3.4-19.1 11.8-23.9l28.4-16.4L315 79c-5.8-9.3-16-15-27-15s-21.2 5.7-27 15l-17.5 28c-9.2 14.8-28.6 19.5-43.6 10.5c-15.3-9.2-20.2-29.2-10.7-44.4l17.5-28zM461.5 251.9c15-9 34.4-4.3 43.6 10.5l24.4 39.1c9.4 15.1 14.4 32.4 14.6 50.2c.3 53.1-42.7 96.4-95.8 96.4L352 448v32c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-64-64c-9.4-9.4-9.4-24.6 0-33.9l64-64c6.9-6.9 17.2-8.9 26.2-5.2s14.8 12.5 14.8 22.2v32l96.2 0c17.6 0 31.9-14.4 31.8-32c0-5.9-1.7-11.7-4.8-16.7l-24.4-39.1c-9.5-15.2-4.7-35.2 10.7-44.4zm-364.6-31L68 204.2c-8.4-4.9-13.1-14.3-11.8-23.9s8.2-17.5 17.6-20l87.4-23.4c12.8-3.4 26 4.2 29.4 17L214 241.2c2.5 9.4-.9 19.3-8.6 25.3s-18.2 6.6-26.6 1.7l-26.5-15.3-51.5 82.4c-3.1 5-4.8 10.8-4.8 16.7c-.1 17.6 14.2 32 31.8 32l32.2 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-32.2 0c-53.1 0-96.1-43.2-95.8-96.4c.1-17.8 5.1-35.1 14.6-50.2l50.3-80.5z"]},uI={prefix:"fas",iconName:"user-astronaut",icon:[448,512,[],"f4fb","M370.7 96.1C346.1 39.5 289.7 0 224 0S101.9 39.5 77.3 96.1C60.9 97.5 48 111.2 48 128v64c0 16.8 12.9 30.5 29.3 31.9C101.9 280.5 158.3 320 224 320s122.1-39.5 146.7-96.1c16.4-1.4 29.3-15.1 29.3-31.9V128c0-16.8-12.9-30.5-29.3-31.9zM336 144v16c0 53-43 96-96 96H208c-53 0-96-43-96-96V144c0-26.5 21.5-48 48-48H288c26.5 0 48 21.5 48 48zM189.3 162.7l-6-21.2c-.9-3.3-3.9-5.5-7.3-5.5s-6.4 2.2-7.3 5.5l-6 21.2-21.2 6c-3.3 .9-5.5 3.9-5.5 7.3s2.2 6.4 5.5 7.3l21.2 6 6 21.2c.9 3.3 3.9 5.5 7.3 5.5s6.4-2.2 7.3-5.5l6-21.2 21.2-6c3.3-.9 5.5-3.9 5.5-7.3s-2.2-6.4-5.5-7.3l-21.2-6zM112.7 316.5C46.7 342.6 0 407 0 482.3C0 498.7 13.3 512 29.7 512H128V448c0-17.7 14.3-32 32-32H288c17.7 0 32 14.3 32 32v64l98.3 0c16.4 0 29.7-13.3 29.7-29.7c0-75.3-46.7-139.7-112.7-165.8C303.9 338.8 265.5 352 224 352s-79.9-13.2-111.3-35.5zM176 448c-8.8 0-16 7.2-16 16v48h32V464c0-8.8-7.2-16-16-16zm96 32c8.8 0 16-7.2 16-16s-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16z"]},hI={prefix:"fas",iconName:"plane-slash",icon:[640,512,[],"e069","M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L440.6 320h73.8c34.2 0 93.7-28 93.7-64c0-35-59.5-64-93.7-64l-116.6 0L297.2 16.1C291.5 6.2 280.9 0 269.4 0H213.2c-10.6 0-18.3 10.2-15.4 20.4l40.3 140.9L38.8 5.1zm2.7 123.6C36 130.6 32 135.9 32 142c0 1.3 .2 2.6 .5 3.9L64 256 32.5 366.1c-.4 1.3-.5 2.6-.5 3.9c0 7.8 6.3 14 14 14H88c5 0 9.8-2.4 12.8-6.4L144 320H246.9l-49 171.6c-2.9 10.2 4.8 20.4 15.4 20.4l56.2 0c11.5 0 22.1-6.2 27.8-16.1l65.3-114.3L41.5 128.7z"]},pI={prefix:"fas",iconName:"trademark",icon:[640,512,[8482],"f25c","M345.6 108.8c-8.3-11-22.7-15.5-35.7-11.2S288 114.2 288 128V384c0 17.7 14.3 32 32 32s32-14.3 32-32V224l86.4 115.2c6 8.1 15.5 12.8 25.6 12.8s19.6-4.7 25.6-12.8L576 224V384c0 17.7 14.3 32 32 32s32-14.3 32-32V128c0-13.8-8.8-26-21.9-30.4s-27.5 .1-35.7 11.2L464 266.7 345.6 108.8zM0 128c0 17.7 14.3 32 32 32H96V384c0 17.7 14.3 32 32 32s32-14.3 32-32V160h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H32C14.3 96 0 110.3 0 128z"]},gp={prefix:"fas",iconName:"basketball",icon:[512,512,[127936,"basketball-ball"],"f434","M86.6 64C119 35.5 158.6 15 202.3 5.6C206 19.1 208 33.3 208 48c0 38.4-13.5 73.7-36.1 101.3L86.6 64zM64 86.6l85.2 85.2C121.7 194.5 86.4 208 48 208c-14.7 0-28.9-2-42.4-5.7C15 158.6 35.5 119 64 86.6zM256 0c64.9 0 124.2 24.2 169.4 64L256 233.4 194.6 172C222.9 138.5 240 95.3 240 48c0-16.2-2-32-5.8-47.1C241.4 .3 248.7 0 256 0zM48 240c47.3 0 90.5-17.1 124-45.4L233.4 256 64 425.4C24.2 380.2 0 320.9 0 256c0-7.3 .3-14.6 .9-21.8C16 238 31.8 240 48 240zm463.1 37.8C496 274 480.2 272 464 272c-47.3 0-90.5 17.1-124 45.4L278.6 256 448 86.6c39.8 45.1 64 104.4 64 169.4c0 7.3-.3 14.6-.9 21.8zm-4.7 31.9C497 353.4 476.5 393 448 425.4l-85.2-85.2C390.3 317.5 425.6 304 464 304c14.7 0 28.9 2 42.4 5.7zM340.1 362.7L425.4 448C393 476.5 353.4 497 309.7 506.4C306 492.9 304 478.7 304 464c0-38.4 13.5-73.7 36.1-101.3zM317.4 340C289.1 373.5 272 416.7 272 464c0 16.2 2 32 5.8 47.1c-7.2 .6-14.5 .9-21.8 .9c-64.9 0-124.2-24.2-169.4-64L256 278.6 317.4 340z"]},mI=gp,vI={prefix:"fas",iconName:"satellite-dish",icon:[512,512,[128225],"f7c0","M192 32c0-17.7 14.3-32 32-32C383.1 0 512 128.9 512 288c0 17.7-14.3 32-32 32s-32-14.3-32-32C448 164.3 347.7 64 224 64c-17.7 0-32-14.3-32-32zM60.6 220.6L164.7 324.7l28.4-28.4c-.7-2.6-1.1-5.4-1.1-8.3c0-17.7 14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32c-2.9 0-5.6-.4-8.3-1.1l-28.4 28.4L291.4 451.4c14.5 14.5 11.8 38.8-7.3 46.3C260.5 506.9 234.9 512 208 512C93.1 512 0 418.9 0 304c0-26.9 5.1-52.5 14.4-76.1c7.5-19 31.8-21.8 46.3-7.3zM224 96c106 0 192 86 192 192c0 17.7-14.3 32-32 32s-32-14.3-32-32c0-70.7-57.3-128-128-128c-17.7 0-32-14.3-32-32s14.3-32 32-32z"]},Vp={prefix:"fas",iconName:"circle-up",icon:[512,512,[61467,"arrow-alt-circle-up"],"f35b","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zm11.3-395.3l112 112c4.6 4.6 5.9 11.5 3.5 17.4s-8.3 9.9-14.8 9.9H304v96c0 17.7-14.3 32-32 32H240c-17.7 0-32-14.3-32-32V256H144c-6.5 0-12.3-3.9-14.8-9.9s-1.1-12.9 3.5-17.4l112-112c6.2-6.2 16.4-6.2 22.6 0z"]},dI=Vp,Mp={prefix:"fas",iconName:"mobile-screen-button",icon:[384,512,["mobile-alt"],"f3cd","M16 64C16 28.7 44.7 0 80 0H304c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H80c-35.3 0-64-28.7-64-64V64zM224 448c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM304 64H80V384H304V64z"]},HI=Mp,Cp={prefix:"fas",iconName:"volume-high",icon:[640,512,[128266,"volume-up"],"f028","M533.6 32.5C598.5 85.3 640 165.8 640 256s-41.5 170.8-106.4 223.5c-10.3 8.4-25.4 6.8-33.8-3.5s-6.8-25.4 3.5-33.8C557.5 398.2 592 331.2 592 256s-34.5-142.2-88.7-186.3c-10.3-8.4-11.8-23.5-3.5-33.8s23.5-11.8 33.8-3.5zM473.1 107c43.2 35.2 70.9 88.9 70.9 149s-27.7 113.8-70.9 149c-10.3 8.4-25.4 6.8-33.8-3.5s-6.8-25.4 3.5-33.8C475.3 341.3 496 301.1 496 256s-20.7-85.3-53.2-111.8c-10.3-8.4-11.8-23.5-3.5-33.8s23.5-11.8 33.8-3.5zm-60.5 74.5C434.1 199.1 448 225.9 448 256s-13.9 56.9-35.4 74.5c-10.3 8.4-25.4 6.8-33.8-3.5s-6.8-25.4 3.5-33.8C393.1 284.4 400 271 400 256s-6.9-28.4-17.7-37.3c-10.3-8.4-11.8-23.5-3.5-33.8s23.5-11.8 33.8-3.5zM301.1 34.8C312.6 40 320 51.4 320 64V448c0 12.6-7.4 24-18.9 29.2s-25 3.1-34.4-5.3L131.8 352H64c-35.3 0-64-28.7-64-64V224c0-35.3 28.7-64 64-64h67.8L266.7 40.1c9.4-8.4 22.9-10.4 34.4-5.3z"]},zI=Cp,gI={prefix:"fas",iconName:"users-rays",icon:[640,512,[],"e593","M41 7C31.6-2.3 16.4-2.3 7 7S-2.3 31.6 7 41l72 72c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L41 7zM599 7L527 79c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l72-72c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0zM7 505c9.4 9.4 24.6 9.4 33.9 0l72-72c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L7 471c-9.4 9.4-9.4 24.6 0 33.9zm592 0c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-72-72c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l72 72zM320 256c35.3 0 64-28.7 64-64s-28.7-64-64-64s-64 28.7-64 64s28.7 64 64 64zM212.1 336c-2.7 7.5-4.1 15.6-4.1 24c0 13.3 10.7 24 24 24H408c13.3 0 24-10.7 24-24c0-8.4-1.4-16.5-4.1-24c-.5-1.4-1-2.7-1.6-4c-9.4-22.3-29.8-38.9-54.3-43c-3.9-.7-7.9-1-12-1H280c-4.1 0-8.1 .3-12 1c-.8 .1-1.7 .3-2.5 .5c-24.9 5.1-45.1 23-53.4 46.5zM175.8 224c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zm-26.5 32C119.9 256 96 279.9 96 309.3c0 14.7 11.9 26.7 26.7 26.7h56.1c8-34.1 32.8-61.7 65.2-73.6c-7.5-4.1-16.2-6.4-25.3-6.4H149.3zm368 80c14.7 0 26.7-11.9 26.7-26.7c0-29.5-23.9-53.3-53.3-53.3H421.3c-9.2 0-17.8 2.3-25.3 6.4c32.4 11.9 57.2 39.5 65.2 73.6h56.1zM464 224c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48z"]},VI={prefix:"fas",iconName:"wallet",icon:[512,512,[],"f555","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V192c0-35.3-28.7-64-64-64H80c-8.8 0-16-7.2-16-16s7.2-16 16-16H448c17.7 0 32-14.3 32-32s-14.3-32-32-32H64zM416 336c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},MI={prefix:"fas",iconName:"clipboard-check",icon:[384,512,[],"f46c","M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM305 273L177 401c-9.4 9.4-24.6 9.4-33.9 0L79 337c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L271 239c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"]},CI={prefix:"fas",iconName:"file-audio",icon:[384,512,[],"f1c7","M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zm2 226.3c37.1 22.4 62 63.1 62 109.7s-24.9 87.3-62 109.7c-7.6 4.6-17.4 2.1-22-5.4s-2.1-17.4 5.4-22C269.4 401.5 288 370.9 288 336s-18.6-65.5-46.5-82.3c-7.6-4.6-10-14.4-5.4-22s14.4-10 22-5.4zm-91.9 30.9c6 2.5 9.9 8.3 9.9 14.8V400c0 6.5-3.9 12.3-9.9 14.8s-12.9 1.1-17.4-3.5L113.4 376H80c-8.8 0-16-7.2-16-16V312c0-8.8 7.2-16 16-16h33.4l35.3-35.3c4.6-4.6 11.5-5.9 17.4-3.5zm51 34.9c6.6-5.9 16.7-5.3 22.6 1.3C249.8 304.6 256 319.6 256 336s-6.2 31.4-16.3 42.7c-5.9 6.6-16 7.1-22.6 1.3s-7.1-16-1.3-22.6c5.1-5.7 8.1-13.1 8.1-21.3s-3.1-15.7-8.1-21.3c-5.9-6.6-5.3-16.7 1.3-22.6z"]},Lp={prefix:"fas",iconName:"burger",icon:[512,512,["hamburger"],"f805","M61.1 224C45 224 32 211 32 194.9c0-1.9 .2-3.7 .6-5.6C37.9 168.3 78.8 32 256 32s218.1 136.3 223.4 157.3c.5 1.9 .6 3.7 .6 5.6c0 16.1-13 29.1-29.1 29.1H61.1zM144 128c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zm240 16c8.8 0 16-7.2 16-16s-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16zM272 96c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zM16 304c0-26.5 21.5-48 48-48H448c26.5 0 48 21.5 48 48s-21.5 48-48 48H64c-26.5 0-48-21.5-48-48zm16 96c0-8.8 7.2-16 16-16H464c8.8 0 16 7.2 16 16v16c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V400z"]},LI=Lp,yI={prefix:"fas",iconName:"wrench",icon:[512,512,[128295],"f0ad","M352 320c88.4 0 160-71.6 160-160c0-15.3-2.2-30.1-6.2-44.2c-3.1-10.8-16.4-13.2-24.3-5.3l-76.8 76.8c-3 3-7.1 4.7-11.3 4.7H336c-8.8 0-16-7.2-16-16V118.6c0-4.2 1.7-8.3 4.7-11.3l76.8-76.8c7.9-7.9 5.4-21.2-5.3-24.3C382.1 2.2 367.3 0 352 0C263.6 0 192 71.6 192 160c0 19.1 3.4 37.5 9.5 54.5L19.9 396.1C7.2 408.8 0 426.1 0 444.1C0 481.6 30.4 512 67.9 512c18 0 35.3-7.2 48-19.9L297.5 310.5c17 6.2 35.4 9.5 54.5 9.5zM80 456c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24z"]},bI={prefix:"fas",iconName:"bugs",icon:[640,512,[],"e4d0","M196.5 107.4l33.4-73.5c5.5-12.1 .1-26.3-11.9-31.8s-26.3-.1-31.8 11.9L160 71.7 133.9 14.1C128.4 2 114.1-3.3 102.1 2.1S84.7 21.9 90.1 33.9l33.4 73.5c-10.2 7.1-18.2 17-22.9 28.6h-17l-4.1-20.7c-2.6-13-15.2-21.4-28.2-18.8s-21.4 15.2-18.8 28.2l8 40C42.7 175.9 52.6 184 64 184H96v23.3l-37.8 9.5c-9.5 2.4-16.6 10.2-17.9 19.9l-8 56c-1.9 13.1 7.2 25.3 20.4 27.2s25.3-7.2 27.2-20.4l5.7-40 18.4-4.6C114.7 274.6 135.8 288 160 288s45.3-13.4 56.1-33.2l18.4 4.6 5.7 40c1.9 13.1 14 22.2 27.2 20.4s22.2-14 20.4-27.2l-8-56c-1.4-9.7-8.5-17.5-17.9-19.9L224 207.3V184h32c11.4 0 21.3-8.1 23.5-19.3l8-40c2.6-13-5.8-25.6-18.8-28.2s-25.6 5.8-28.2 18.8L236.3 136h-17c-4.7-11.6-12.7-21.5-22.9-28.6zM528 286.5l65.6-47c10.8-7.7 13.3-22.7 5.6-33.5s-22.7-13.3-33.5-5.6l-51.4 36.8 6.1-62.9c1.3-13.2-8.4-24.9-21.6-26.2s-24.9 8.4-26.2 21.6L464.8 250c-12.3 1-24.2 5.6-34.1 13.3L416 254.8l6.8-20c4.2-12.6-2.5-26.2-15-30.4s-26.2 2.5-30.4 15l-13.1 38.6c-3.7 10.8 .8 22.8 10.7 28.5l27.7 16L391 322.7 353.5 312c-9.4-2.7-19.5 .6-25.5 8.3l-34.9 44.5c-8.2 10.4-6.4 25.5 4.1 33.7s25.5 6.4 33.7-4.1l25-31.8 18.2 5.2c-.5 22.6 11 44.7 32 56.8s45.9 11 65.2-.7l13.6 13.2-15.1 37.5c-4.9 12.3 1 26.3 13.3 31.2s26.3-1 31.2-13.3L535.5 440c3.6-9.1 1.4-19.4-5.6-26.2l-28-27.1 11.6-20.1 27.7 16c9.9 5.7 22.5 3.7 30-4.9L598.2 347c8.7-10 7.8-25.1-2.2-33.9s-25.1-7.8-33.9 2.2l-13.9 15.9-14.7-8.5c1.7-12.4-.2-25-5.5-36.2z"]},yp={prefix:"fas",iconName:"rupee-sign",icon:[448,512,[8360,"rupee"],"f156","M0 64C0 46.3 14.3 32 32 32h80c79.5 0 144 64.5 144 144c0 58.8-35.2 109.3-85.7 131.7l51.4 128.4c6.6 16.4-1.4 35-17.8 41.6s-35-1.4-41.6-17.8L106.3 320H64V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V288 64zM64 256h48c44.2 0 80-35.8 80-80s-35.8-80-80-80H64V256zm256.5 16.4c-.9 6 0 8.7 .4 9.8c.4 1.1 1.4 2.6 4.2 4.9c7.2 5.7 18.7 10 37.9 16.8l1.3 .5c16 5.6 38.7 13.6 55.7 28.1c9.5 8.1 17.9 18.6 23.1 32.3c5.1 13.7 6.1 28.5 3.8 44c-4.2 28.1-20.5 49.3-43.8 60.9c-22.1 11-48.1 12.5-73.2 8l-.2 0 0 0c-9.3-1.8-20.5-5.7-29.3-9c-6-2.3-12.6-4.9-17.7-6.9l0 0c-2.5-1-4.6-1.8-6.3-2.5c-16.5-6.4-24.6-25-18.2-41.4s25-24.6 41.4-18.2c2.6 1 5.2 2 7.9 3.1l0 0c4.8 1.9 9.8 3.9 15.4 6c8.8 3.3 15.3 5.4 18.7 6c15.7 2.8 26.7 .8 32.9-2.3c5-2.5 8-6 9.1-13c1-6.9 .2-10.5-.5-12.3c-.6-1.7-1.8-3.6-4.5-5.9c-6.9-5.8-18.2-10.4-36.9-17l-3-1.1c-15.5-5.4-37-13-53.3-25.9c-9.5-7.5-18.3-17.6-23.7-31c-5.4-13.4-6.6-28-4.4-43.2c8.5-57.1 67-78 116.9-68.9c6.9 1.3 27.3 5.8 35.4 8.4c16.9 5.2 26.3 23.2 21.1 40.1s-23.2 26.3-40.1 21.1c-4.7-1.4-22.3-5.5-27.9-6.5c-14.6-2.7-25.8-.4-32.6 3.2c-6.3 3.3-8.9 7.6-9.5 12z"]},xI=yp,SI={prefix:"fas",iconName:"file-image",icon:[384,512,[128443],"f1c5","M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM128 256c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm88 32c5.3 0 10.2 2.6 13.2 6.9l88 128c3.4 4.9 3.7 11.3 1 16.5s-8.2 8.6-14.2 8.6H216 176 128 80c-5.8 0-11.1-3.1-13.9-8.1s-2.8-11.2 .2-16.1l48-80c2.9-4.8 8.1-7.8 13.7-7.8s10.8 2.9 13.7 7.8l12.8 21.4 48.3-70.2c3-4.3 7.9-6.9 13.2-6.9z"]},bp={prefix:"fas",iconName:"circle-question",icon:[512,512,[62108,"question-circle"],"f059","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM169.8 165.3c7.9-22.3 29.1-37.3 52.8-37.3h58.3c34.9 0 63.1 28.3 63.1 63.1c0 22.6-12.1 43.5-31.7 54.8L280 264.4c-.2 13-10.9 23.6-24 23.6c-13.3 0-24-10.7-24-24V250.5c0-8.6 4.6-16.5 12.1-20.8l44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1c0-8.4-6.8-15.1-15.1-15.1H222.6c-3.4 0-6.4 2.1-7.5 5.3l-.4 1.2c-4.4 12.5-18.2 19-30.6 14.6s-19-18.2-14.6-30.6l.4-1.2zM288 352c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32z"]},wI=bp,NI={prefix:"fas",iconName:"plane-departure",icon:[640,512,[128747],"f5b0","M381 114.9L186.1 41.8c-16.7-6.2-35.2-5.3-51.1 2.7L89.1 67.4C78 73 77.2 88.5 87.6 95.2l146.9 94.5L136 240 77.8 214.1c-8.7-3.9-18.8-3.7-27.3 .6L18.3 230.8c-9.3 4.7-11.8 16.8-5 24.7l73.1 85.3c6.1 7.1 15 11.2 24.3 11.2H248.4c5 0 9.9-1.2 14.3-3.4L535.6 212.2c46.5-23.3 82.5-63.3 100.8-112C645.9 75 627.2 48 600.2 48H542.8c-20.2 0-40.2 4.8-58.2 14L381 114.9zM0 480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32z"]},AI={prefix:"fas",iconName:"handshake-slash",icon:[640,512,[],"e060","M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-135-105.8c-1.1-11.4-6.3-22.3-15.3-30.7l-134.2-123-23.4 18.2-26-20.3 77.2-60.1c7-5.4 17-4.2 22.5 2.8s4.2 17-2.8 22.5l-20.9 16.2L512 316.8V128h-.7l-3.9-2.5L434.8 79c-15.3-9.8-33.2-15-51.4-15c-21.8 0-43 7.5-60 21.2l-89.7 72.6-25.8-20.3 81.8-66.2c-11.6-4.9-24.1-7.4-36.8-7.4C234 64 215.7 69.6 200 80l-35.5 23.7L38.8 5.1zM96 171.6L40.6 128H0V352c0 17.7 14.3 32 32 32H64c17.7 0 32-14.3 32-32V171.6zM413.6 421.9L128 196.9V352h28.2l91.4 83.4c19.6 17.9 49.9 16.5 67.8-3.1c5.5-6.1 9.2-13.2 11.1-20.6l17 15.6c19.5 17.9 49.9 16.6 67.8-2.9c.8-.8 1.5-1.7 2.2-2.6zM48 352c-8.8 0-16-7.2-16-16s7.2-16 16-16s16 7.2 16 16s-7.2 16-16 16zM544 128V352c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V128H544zm64 208c0 8.8-7.2 16-16 16s-16-7.2-16-16s7.2-16 16-16s16 7.2 16 16z"]},_I={prefix:"fas",iconName:"book-bookmark",icon:[448,512,[],"e0bb","M0 96C0 43 43 0 96 0h96V190.7c0 13.4 15.5 20.9 26 12.5L272 160l54 43.2c10.5 8.4 26 .9 26-12.5V0h32 32c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384 96c-53 0-96-43-96-96V96zM64 416c0 17.7 14.3 32 32 32H352V384H96c-17.7 0-32 14.3-32 32z"]},kI={prefix:"fas",iconName:"code-branch",icon:[448,512,[],"f126","M80 104c13.3 0 24-10.7 24-24s-10.7-24-24-24S56 66.7 56 80s10.7 24 24 24zm80-24c0 32.8-19.7 61-48 73.3v87.8c18.8-10.9 40.7-17.1 64-17.1h96c35.3 0 64-28.7 64-64v-6.7C307.7 141 288 112.8 288 80c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V160c0 70.7-57.3 128-128 128H176c-35.3 0-64 28.7-64 64v6.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V352 153.3C19.7 141 0 112.8 0 80C0 35.8 35.8 0 80 0s80 35.8 80 80zm232 0c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24zM80 456c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24z"]},TI={prefix:"fas",iconName:"hat-cowboy",icon:[640,512,[],"f8c0","M320 64c14.4 0 22.3-7 30.8-14.4C360.4 41.1 370.7 32 392 32c49.3 0 84.4 152.2 97.9 221.9C447.8 272.1 390.9 288 320 288s-127.8-15.9-169.9-34.1C163.6 184.2 198.7 32 248 32c21.3 0 31.6 9.1 41.2 17.6C297.7 57 305.6 64 320 64zM111.1 270.7c47.2 24.5 117.5 49.3 209 49.3s161.8-24.8 208.9-49.3c24.8-12.9 49.8-28.3 70.1-47.7c7.9-7.9 20.2-9.2 29.6-3.3c9.5 5.9 13.5 17.9 9.9 28.5c-13.5 37.7-38.4 72.3-66.1 100.6C523.7 398.9 443.6 448 320 448s-203.6-49.1-252.5-99.2C39.8 320.4 14.9 285.8 1.4 248.1c-3.6-10.6 .4-22.6 9.9-28.5c9.5-5.9 21.7-4.5 29.6 3.3c20.4 19.4 45.3 34.8 70.1 47.7z"]},PI={prefix:"fas",iconName:"bridge",icon:[576,512,[],"e4c8","M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96H72v64H0V288c53 0 96 43 96 96v64c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V384c0-53 43-96 96-96s96 43 96 96v64c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V384c0-53 43-96 96-96V160H504V96h40c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zM456 96v64H376V96h80zM328 96v64H248V96h80zM200 96v64H120V96h80z"]},xp={prefix:"fas",iconName:"phone-flip",icon:[512,512,[128381,"phone-alt"],"f879","M347.1 24.6c7.7-18.6 28-28.5 47.4-23.2l88 24C499.9 30.2 512 46 512 64c0 247.4-200.6 448-448 448c-18 0-33.8-12.1-38.6-29.5l-24-88c-5.3-19.4 4.6-39.7 23.2-47.4l96-40c16.3-6.8 35.2-2.1 46.3 11.6L207.3 368c70.4-33.3 127.4-90.3 160.7-160.7L318.7 167c-13.7-11.2-18.4-30-11.6-46.3l40-96z"]},EI=xp,OI={prefix:"fas",iconName:"truck-front",icon:[512,512,[],"e2b7","M0 80C0 35.8 35.8 0 80 0H432c44.2 0 80 35.8 80 80V368c0 26.2-12.6 49.4-32 64v48c0 17.7-14.3 32-32 32H416c-17.7 0-32-14.3-32-32V448H128v32c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V432C12.6 417.4 0 394.2 0 368V80zm129.9 72.2L112 224H400l-17.9-71.8C378.5 138 365.7 128 351 128H161c-14.7 0-27.5 10-31 24.2zM128 320c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zm288 32c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z"]},RI={prefix:"fas",iconName:"cat",icon:[512,512,[128008],"f6be","M288 192h17.1c22.1 38.3 63.5 64 110.9 64c11 0 21.8-1.4 32-4v4 32V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V339.2L248 448h56c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-53 0-96-43-96-96V192.5c0-16.1-12-29.8-28-31.8l-7.9-1C10.5 157.6-1.9 141.6 .2 124s18.2-30 35.7-27.8l7.9 1c48 6 84.1 46.8 84.1 95.3v85.3c34.4-51.7 93.2-85.8 160-85.8zm160 26.5v0c-10 3.5-20.8 5.5-32 5.5c-28.4 0-54-12.4-71.6-32h0c-3.7-4.1-7-8.5-9.9-13.2C325.3 164 320 146.6 320 128v0V32 12 10.7C320 4.8 324.7 .1 330.6 0h.2c3.3 0 6.4 1.6 8.4 4.2l0 .1L352 21.3l27.2 36.3L384 64h64l4.8-6.4L480 21.3 492.8 4.3l0-.1c2-2.6 5.1-4.2 8.4-4.2h.2C507.3 .1 512 4.8 512 10.7V12 32v96c0 17.3-4.6 33.6-12.6 47.6c-11.3 19.8-29.6 35.2-51.4 42.9zM400 128c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zm48 16c8.8 0 16-7.2 16-16s-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16z"]},FI={prefix:"fas",iconName:"anchor-circle-exclamation",icon:[640,512,[],"e4ab","M256 96c0-17.7 14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32s-32-14.3-32-32zm85.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h32V448H208c-53 0-96-43-96-96v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7V352c0 88.4 71.6 160 160 160h80 80c8.2 0 16.3-.6 24.2-1.8c-22.2-16.2-40.4-37.5-53-62.2H320V368 240h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H341.1zM496 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm0-48c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zm0-192c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z"]},BI={prefix:"fas",iconName:"truck-field",icon:[640,512,[],"e58d","M32 96c0-35.3 28.7-64 64-64H320c23.7 0 44.4 12.9 55.4 32h51.8c25.3 0 48.2 14.9 58.5 38l52.8 118.8c.5 1.1 .9 2.1 1.3 3.2H544c35.3 0 64 28.7 64 64v32c17.7 0 32 14.3 32 32s-14.3 32-32 32H576c0 53-43 96-96 96s-96-43-96-96H256c0 53-43 96-96 96s-96-43-96-96H32c-17.7 0-32-14.3-32-32s14.3-32 32-32V288c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32V96zM384 224h85.9l-42.7-96H384v96zM160 432c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zm368-48c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48z"]},DI={prefix:"fas",iconName:"route",icon:[512,512,[],"f4d7","M416 256s96-96 96-160c0-53-43-96-96-96s-96 43-96 96c0 29.4 20.2 65.5 42.1 96H320c-53 0-96 43-96 96s43 96 96 96h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H188.6c-6.2 9.6-12.6 18.8-19 27.2c-10.7 14.2-21.3 26.9-30 36.8H416c53 0 96-43 96-96s-43-96-96-96H320c-17.7 0-32-14.3-32-32s14.3-32 32-32h96zm0-128c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zM149.9 448c21.9-30.5 42.1-66.6 42.1-96c0-53-43-96-96-96s-96 43-96 96c0 64 96 160 96 160s3.5-3.5 9.2-9.6c.4-.4 .7-.8 1.1-1.2c3.3-3.5 7.1-7.8 11.4-12.8c.2-.2 .4-.4 .6-.6c9.4-10.8 20.7-24.6 31.6-39.8zM96 384c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},II={prefix:"fas",iconName:"clipboard-question",icon:[384,512,[],"e4e3","M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM105.8 229.3c7.9-22.3 29.1-37.3 52.8-37.3h58.3c34.9 0 63.1 28.3 63.1 63.1c0 22.6-12.1 43.5-31.7 54.8L216 328.4c-.2 13-10.9 23.6-24 23.6c-13.3 0-24-10.7-24-24V314.5c0-8.6 4.6-16.5 12.1-20.8l44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1c0-8.4-6.8-15.1-15.1-15.1H158.6c-3.4 0-6.4 2.1-7.5 5.3l-.4 1.2c-4.4 12.5-18.2 19-30.6 14.6s-19-18.2-14.6-30.6l.4-1.2zM160 416a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z"]},UI={prefix:"fas",iconName:"panorama",icon:[640,512,[],"e209","M45.6 32C20.4 32 0 52.4 0 77.6V434.4C0 459.6 20.4 480 45.6 480c5.1 0 10-.8 14.7-2.4C74.6 472.8 177.6 440 320 440s245.4 32.8 259.6 37.6c4.7 1.6 9.7 2.4 14.7 2.4c25.2 0 45.6-20.4 45.6-45.6V77.6C640 52.4 619.6 32 594.4 32c-5 0-10 .8-14.7 2.4C565.4 39.2 462.4 72 320 72S74.6 39.2 60.4 34.4C55.6 32.8 50.7 32 45.6 32zM160 160c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm208 0c7.9 0 15.4 3.9 19.8 10.5L512.3 353c5.4 8 5.6 18.4 .4 26.5s-14.7 12.3-24.2 10.7C442.7 382.4 385.2 376 320 376c-65.6 0-123.4 6.5-169.3 14.4c-9.8 1.7-19.7-2.9-24.7-11.5s-4.3-19.4 1.9-27.2L197.3 265c4.6-5.7 11.4-9 18.7-9s14.2 3.3 18.7 9l26.4 33.1 87-127.6c4.5-6.6 11.9-10.5 19.8-10.5z"]},WI={prefix:"fas",iconName:"comment-medical",icon:[512,512,[],"f7f5","M256 448c141.4 0 256-93.1 256-208S397.4 32 256 32S0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9c-1.9 24.5-11.4 46.3-21.4 62.9c-5.5 9.2-11.1 16.6-15.2 21.6c-2.1 2.5-3.7 4.4-4.9 5.7c-.6 .6-1 1.1-1.3 1.4l-.3 .3 0 0 0 0 0 0 0 0c-4.6 4.6-5.9 11.4-3.4 17.4c2.5 6 8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3c22.9-10 42.4-21.9 54.3-30.6c31.8 11.5 67 17.9 104.1 17.9zM224 160c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H288v48c0 8.8-7.2 16-16 16H240c-8.8 0-16-7.2-16-16V272H176c-8.8 0-16-7.2-16-16V224c0-8.8 7.2-16 16-16h48V160z"]},$I={prefix:"fas",iconName:"teeth-open",icon:[576,512,[],"f62f","M96 32C43 32 0 75 0 128v64c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-53-43-96-96-96H96zM224 96c26.5 0 48 21.5 48 48v56c0 13.3-10.7 24-24 24H200c-13.3 0-24-10.7-24-24V144c0-26.5 21.5-48 48-48zm80 48c0-26.5 21.5-48 48-48s48 21.5 48 48v56c0 13.3-10.7 24-24 24H328c-13.3 0-24-10.7-24-24V144zM96 128c26.5 0 48 21.5 48 48v24c0 13.3-10.7 24-24 24H72c-13.3 0-24-10.7-24-24V176c0-26.5 21.5-48 48-48zm336 48c0-26.5 21.5-48 48-48s48 21.5 48 48v24c0 13.3-10.7 24-24 24H456c-13.3 0-24-10.7-24-24V176zM96 480H480c53 0 96-43 96-96V352c0-35.3-28.7-64-64-64H64c-35.3 0-64 28.7-64 64v32c0 53 43 96 96 96zm0-64c-26.5 0-48-21.5-48-48V344c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24v24c0 26.5-21.5 48-48 48zm80-48V344c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24v24c0 26.5-21.5 48-48 48s-48-21.5-48-48zm176 48c-26.5 0-48-21.5-48-48V344c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24v24c0 26.5-21.5 48-48 48zm80-48V344c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24v24c0 26.5-21.5 48-48 48s-48-21.5-48-48z"]},qI={prefix:"fas",iconName:"file-circle-minus",icon:[576,512,[],"e4ed","M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zM576 368c0 79.5-64.5 144-144 144s-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144zm-64 0c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16s7.2 16 16 16H496c8.8 0 16-7.2 16-16z"]},GI={prefix:"fas",iconName:"tags",icon:[512,512,[],"f02c","M345 39.1L472.8 168.4c52.4 53 52.4 138.2 0 191.2L360.8 472.9c-9.3 9.4-24.5 9.5-33.9 .2s-9.5-24.5-.2-33.9L438.6 325.9c33.9-34.3 33.9-89.4 0-123.7L310.9 72.9c-9.3-9.4-9.2-24.6 .2-33.9s24.6-9.2 33.9 .2zM0 229.5V80C0 53.5 21.5 32 48 32H197.5c17 0 33.3 6.7 45.3 18.7l168 168c25 25 25 65.5 0 90.5L277.3 442.7c-25 25-65.5 25-90.5 0l-168-168C6.7 262.7 0 246.5 0 229.5zM144 144c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32z"]},jI={prefix:"fas",iconName:"wine-glass",icon:[320,512,[127863],"f4e3","M64 0C47.4 0 33.5 12.8 32.1 29.3l-14 168.4c-6 72 42.5 135.2 109.9 150.6V448H80c-17.7 0-32 14.3-32 32s14.3 32 32 32h80 80c17.7 0 32-14.3 32-32s-14.3-32-32-32H192V348.4c67.4-15.4 115.9-78.6 109.9-150.6l-14-168.4C286.5 12.8 272.6 0 256 0H64zM88.1 128l5.3-64H226.6l5.3 64H88.1z"]},Sp={prefix:"fas",iconName:"forward-fast",icon:[512,512,[9197,"fast-forward"],"f050","M18.4 445c11.2 5.3 24.5 3.6 34.1-4.4L224 297.7V416c0 12.4 7.2 23.7 18.4 29s24.5 3.6 34.1-4.4L448 297.7V416c0 17.7 14.3 32 32 32s32-14.3 32-32V96c0-17.7-14.3-32-32-32s-32 14.3-32 32V214.3L276.5 71.4c-9.5-7.9-22.8-9.7-34.1-4.4S224 83.6 224 96V214.3L52.5 71.4c-9.5-7.9-22.8-9.7-34.1-4.4S0 83.6 0 96V416c0 12.4 7.2 23.7 18.4 29z"]},KI=Sp,wp={prefix:"fas",iconName:"face-meh-blank",icon:[512,512,[128566,"meh-blank"],"f5a4","M512 256c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0S512 114.6 512 256zM208.4 208c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zm128 32c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z"]},XI=wp,Np={prefix:"fas",iconName:"square-parking",icon:[448,512,[127359,"parking"],"f540","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM192 256h48c17.7 0 32-14.3 32-32s-14.3-32-32-32H192v64zm48 64H192v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V288 168c0-22.1 17.9-40 40-40h72c53 0 96 43 96 96s-43 96-96 96z"]},YI=Np,JI={prefix:"fas",iconName:"house-signal",icon:[576,512,[],"e012","M314.3 8.5c12.3-11.3 31.2-11.3 43.4 0l208 192c9.7 8.9 12.9 22.9 8.1 35.2S557.2 256 544 256H512V368c0 26.5-21.5 48-48 48H278.1C259.6 350.8 216.8 295.9 160 261.7V256h-9.9c-16.5-9-34-16.2-52.3-21.6c-4.1-12-.8-25.3 8.5-34l208-192zM304 192c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16H304zM24 256c128.1 0 232 103.9 232 232c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-101.6-82.4-184-184-184c-13.3 0-24-10.7-24-24s10.7-24 24-24zm8 256c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zM0 376c0-13.3 10.7-24 24-24c75.1 0 136 60.9 136 136c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-48.6-39.4-88-88-88c-13.3 0-24-10.7-24-24z"]},Ap={prefix:"fas",iconName:"bars-progress",icon:[512,512,["tasks-alt"],"f828","M448 160H320V128H448v32zM48 64C21.5 64 0 85.5 0 112v64c0 26.5 21.5 48 48 48H464c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48H48zM448 352v32H192V352H448zM48 288c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48H464c26.5 0 48-21.5 48-48V336c0-26.5-21.5-48-48-48H48z"]},QI=Ap,ZI={prefix:"fas",iconName:"faucet-drip",icon:[512,512,[128688],"e006","M224 0c17.7 0 32 14.3 32 32V44l96-12c17.7 0 32 14.3 32 32s-14.3 32-32 32L256 84l-31-3.9-1-.1-1 .1L192 84 96 96C78.3 96 64 81.7 64 64s14.3-32 32-32l96 12V32c0-17.7 14.3-32 32-32zM0 224c0-17.7 14.3-32 32-32h96l22.6-22.6c6-6 14.1-9.4 22.6-9.4H192V116.2l32-4 32 4V160h18.7c8.5 0 16.6 3.4 22.6 9.4L320 192h32c88.4 0 160 71.6 160 160c0 17.7-14.3 32-32 32H416c-17.7 0-32-14.3-32-32s-14.3-32-32-32H315.9c-20.2 29-53.9 48-91.9 48s-71.7-19-91.9-48H32c-17.7 0-32-14.3-32-32V224zM436.8 423.4c1.9-4.5 6.3-7.4 11.2-7.4s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V480c0 17.7-14.3 32-32 32s-32-14.3-32-32v-1.2c0-4.5 .9-8.9 2.7-13.1l18.2-42.4z"]},_p={prefix:"fas",iconName:"cart-flatbed",icon:[640,512,["dolly-flatbed"],"f474","M32 0C14.3 0 0 14.3 0 32S14.3 64 32 64H48c8.8 0 16 7.2 16 16V368c0 44.2 35.8 80 80 80h18.7c-1.8 5-2.7 10.4-2.7 16c0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1-11-2.7-16H450.7c-1.8 5-2.7 10.4-2.7 16c0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1-11-2.7-16H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H144c-8.8 0-16-7.2-16-16V80C128 35.8 92.2 0 48 0H32zM192 80V272c0 26.5 21.5 48 48 48H560c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H464V176c0 5.9-3.2 11.3-8.5 14.1s-11.5 2.5-16.4-.8L400 163.2l-39.1 26.1c-4.9 3.3-11.2 3.6-16.4 .8s-8.5-8.2-8.5-14.1V32H240c-26.5 0-48 21.5-48 48z"]},cU=_p,kp={prefix:"fas",iconName:"ban-smoking",icon:[512,512,[128685,"smoking-ban"],"f54d","M99.5 144.8L178.7 224l96 96 92.5 92.5C335.9 434.9 297.5 448 256 448C150 448 64 362 64 256c0-41.5 13.1-79.9 35.5-111.2zM333.3 288l-32-32H384v32H333.3zm32 32H400c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H269.3L144.8 99.5C176.1 77.1 214.5 64 256 64c106 0 192 86 192 192c0 41.5-13.1 79.9-35.5 111.2L365.3 320zM256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM272 96c-8.8 0-16 7.2-16 16c0 26.5 21.5 48 48 48h32c8.8 0 16 7.2 16 16s7.2 16 16 16s16-7.2 16-16c0-26.5-21.5-48-48-48H304c-8.8 0-16-7.2-16-16s-7.2-16-16-16zM229.5 320l-96-96H112c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16H229.5z"]},eU=kp,rU={prefix:"fas",iconName:"terminal",icon:[640,512,[],"f120","M41.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L210.7 256 41.4 86.6zM288 416H576c17.7 0 32 14.3 32 32s-14.3 32-32 32H288c-17.7 0-32-14.3-32-32s14.3-32 32-32z"]},aU={prefix:"fas",iconName:"mobile-button",icon:[384,512,[],"f10b","M80 0C44.7 0 16 28.7 16 64V448c0 35.3 28.7 64 64 64H304c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H80zM192 464c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},nU={prefix:"fas",iconName:"house-medical-flag",icon:[640,512,[],"e514","M480 0c17.7 0 32 14.3 32 32H624c8.8 0 16 7.2 16 16V176c0 8.8-7.2 16-16 16H512V512H448V192 32c0-17.7 14.3-32 32-32zM276.8 39.7L416 159V512h1l-.2 0H96c-17.7 0-32-14.3-32-32V288H32c-13.4 0-25.4-8.3-30-20.9s-1-26.7 9.2-35.4l224-192c12-10.3 29.7-10.3 41.7 0zM224 208v48H176c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320h48c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H288V208c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16z"]},Tp={prefix:"fas",iconName:"basket-shopping",icon:[576,512,["shopping-basket"],"f291","M253.3 35.1c6.1-11.8 1.5-26.3-10.2-32.4s-26.3-1.5-32.4 10.2L117.6 192H32c-17.7 0-32 14.3-32 32s14.3 32 32 32L83.9 463.5C91 492 116.6 512 146 512H430c29.4 0 55-20 62.1-48.5L544 256c17.7 0 32-14.3 32-32s-14.3-32-32-32H458.4L365.3 12.9C359.2 1.2 344.7-3.4 332.9 2.7s-16.3 20.6-10.2 32.4L404.3 192H171.7L253.3 35.1zM192 304v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V304c0-8.8 7.2-16 16-16s16 7.2 16 16zm96-16c8.8 0 16 7.2 16 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V304c0-8.8 7.2-16 16-16zm128 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V304c0-8.8 7.2-16 16-16s16 7.2 16 16z"]},tU=Tp,sU={prefix:"fas",iconName:"tape",icon:[576,512,[],"f4db","M380.8 416c41.5-40.7 67.2-97.3 67.2-160C448 132.3 347.7 32 224 32S0 132.3 0 256S100.3 480 224 480H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H380.8zM224 352c-53 0-96-43-96-96s43-96 96-96s96 43 96 96s-43 96-96 96zm64-96c0-35.3-28.7-64-64-64s-64 28.7-64 64s28.7 64 64 64s64-28.7 64-64z"]},Pp={prefix:"fas",iconName:"bus-simple",icon:[448,512,["bus-alt"],"f55e","M224 0C348.8 0 448 35.2 448 80V96 416c0 17.7-14.3 32-32 32v32c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V448H128v32c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32l0-32c-17.7 0-32-14.3-32-32V96 80C0 35.2 99.2 0 224 0zM64 128V256c0 17.7 14.3 32 32 32H352c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32H96c-17.7 0-32 14.3-32 32zM80 400c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm288 0c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z"]},iU=Pp,oU={prefix:"fas",iconName:"eye",icon:[576,512,[128065],"f06e","M288 32c-80.8 0-145.5 36.8-192.6 80.6C48.6 156 17.3 208 2.5 243.7c-3.3 7.9-3.3 16.7 0 24.6C17.3 304 48.6 356 95.4 399.4C142.5 443.2 207.2 480 288 480s145.5-36.8 192.6-80.6c46.8-43.5 78.1-95.4 93-131.1c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C433.5 68.8 368.8 32 288 32zM432 256c0 79.5-64.5 144-144 144s-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144zM288 192c0 35.3-28.7 64-64 64c-11.5 0-22.3-3-31.6-8.4c-.2 2.8-.4 5.5-.4 8.4c0 53 43 96 96 96s96-43 96-96s-43-96-96-96c-2.8 0-5.6 .1-8.4 .4c5.3 9.3 8.4 20.1 8.4 31.6z"]},Ep={prefix:"fas",iconName:"face-sad-cry",icon:[512,512,[128557,"sad-cry"],"f5b3","M352 493.4c-29.6 12-62.1 18.6-96 18.6s-66.4-6.6-96-18.6V288c0-8.8-7.2-16-16-16s-16 7.2-16 16V477.8C51.5 433.5 0 350.8 0 256C0 114.6 114.6 0 256 0S512 114.6 512 256c0 94.8-51.5 177.5-128 221.8V288c0-8.8-7.2-16-16-16s-16 7.2-16 16V493.4zM195.2 233.6c5.3 7.1 15.3 8.5 22.4 3.2s8.5-15.3 3.2-22.4c-30.4-40.5-91.2-40.5-121.6 0c-5.3 7.1-3.9 17.1 3.2 22.4s17.1 3.9 22.4-3.2c17.6-23.5 52.8-23.5 70.4 0zm121.6 0c17.6-23.5 52.8-23.5 70.4 0c5.3 7.1 15.3 8.5 22.4 3.2s8.5-15.3 3.2-22.4c-30.4-40.5-91.2-40.5-121.6 0c-5.3 7.1-3.9 17.1 3.2 22.4s17.1 3.9 22.4-3.2zM208 336v32c0 26.5 21.5 48 48 48s48-21.5 48-48V336c0-26.5-21.5-48-48-48s-48 21.5-48 48z"]},fU=Ep,lU={prefix:"fas",iconName:"audio-description",icon:[576,512,[],"f29e","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM213.5 173.3l72 144c5.9 11.9 1.1 26.3-10.7 32.2s-26.3 1.1-32.2-10.7l-9.4-18.9H150.9l-9.4 18.9c-5.9 11.9-20.3 16.7-32.2 10.7s-16.7-20.3-10.7-32.2l72-144c4.1-8.1 12.4-13.3 21.5-13.3s17.4 5.1 21.5 13.3zm-.4 106.6L192 237.7l-21.1 42.2h42.2zM304 184c0-13.3 10.7-24 24-24h56c53 0 96 43 96 96s-43 96-96 96H328c-13.3 0-24-10.7-24-24V184zm48 24v96h32c26.5 0 48-21.5 48-48s-21.5-48-48-48H352z"]},uU={prefix:"fas",iconName:"person-military-to-person",icon:[512,512,[],"e54c","M71 12.5c-8.6 1-15 8.2-15 16.8c0 9.3 7.5 16.8 16.7 16.9H184.1c8.8-.1 15.9-7.2 15.9-16V16c0-9.5-8.3-17-17.8-15.9L71 12.5zM189.5 78.1H66.5C64.9 83.8 64 89.8 64 96c0 35.3 28.7 64 64 64s64-28.7 64-64c0-6.2-.9-12.2-2.5-17.9zM32 256v32c0 17.7 14.3 32 32 32H192c1.8 0 3.5-.1 5.2-.4L53 208.6C40.1 220.3 32 237.2 32 256zm190.2 42.5c1.1-3.3 1.8-6.8 1.8-10.5V256c0-35.3-28.7-64-64-64H96c-3.7 0-7.4 .3-10.9 .9L222.2 298.5zM384 160c35.3 0 64-28.7 64-64s-28.7-64-64-64s-64 28.7-64 64s28.7 64 64 64zm-32 32c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32H448c17.7 0 32-14.3 32-32V256c0-35.3-28.7-64-64-64H352zM215.8 450.1c5.2-4.6 8.2-11.1 8.2-18.1s-3-13.5-8.2-18.1l-64-56c-7.1-6.2-17.1-7.7-25.7-3.8S112 366.6 112 376v32l-88 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l88 0v32c0 9.4 5.5 18 14.1 21.9s18.6 2.4 25.7-3.8l64-56zM288 431.9c0 6.9 3 13.5 8.1 18.1l64 56.4c7.1 6.2 17.1 7.8 25.7 3.9s14.1-12.4 14.1-21.9l0-32.4 88 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-88 0 0-32c0-9.4-5.5-18-14.1-21.9s-18.6-2.4-25.7 3.8l-64 56c-5.2 4.5-8.2 11.1-8.2 18z"]},hU={prefix:"fas",iconName:"file-shield",icon:[576,512,[],"e4f0","M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v47l-92.8 37.1c-21.3 8.5-35.2 29.1-35.2 52c0 56.6 18.9 148 94.2 208.3c-9 4.8-19.3 7.6-30.2 7.6H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zm39.1 97.7c5.7-2.3 12.1-2.3 17.8 0l120 48C570 277.4 576 286.2 576 296c0 63.3-25.9 168.8-134.8 214.2c-5.9 2.5-12.6 2.5-18.5 0C313.9 464.8 288 359.3 288 296c0-9.8 6-18.6 15.1-22.3l120-48zM527.4 312L432 273.8V461.7c68.2-33 91.5-99 95.4-149.7z"]},pU={prefix:"fas",iconName:"user-slash",icon:[640,512,[],"f506","M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L353.3 251.6C407.9 237 448 187.2 448 128C448 57.3 390.7 0 320 0C250.2 0 193.5 55.8 192 125.2L38.8 5.1zM264.3 304.3C170.5 309.4 96 387.2 96 482.3c0 16.4 13.3 29.7 29.7 29.7H514.3c3.9 0 7.6-.7 11-2.1l-261-205.6z"]},mU={prefix:"fas",iconName:"pen",icon:[512,512,[128394],"f304","M362.7 19.3L314.3 67.7 444.3 197.7l48.4-48.4c25-25 25-65.5 0-90.5L453.3 19.3c-25-25-65.5-25-90.5 0zm-71 71L58.6 323.5c-10.4 10.4-18 23.3-22.2 37.4L1 481.2C-1.5 489.7 .8 498.8 7 505s15.3 8.5 23.7 6.1l120.3-35.4c14.1-4.2 27-11.8 37.4-22.2L421.7 220.3 291.7 90.3z"]},vU={prefix:"fas",iconName:"tower-observation",icon:[512,512,[],"e586","M241.7 3.4c9-4.5 19.6-4.5 28.6 0l160 80c15.8 7.9 22.2 27.1 14.3 42.9C439 137.5 427.7 144 416 144v80c0 17.7-14.3 32-32 32h-4.9l32 192H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H384.5c-.4 0-.8 0-1.1 0H128.6c-.4 0-.8 0-1.1 0H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h68.9l32-192H128c-17.7 0-32-14.3-32-32V144c-11.7 0-23-6.5-28.6-17.7c-7.9-15.8-1.5-35 14.3-42.9l160-80zM314.5 448L256 399.2 197.5 448h117zM197.8 256l-4.7 28.3L256 336.8l62.9-52.5L314.2 256H197.8zm-13.9 83.2l-11.2 67L218.5 368l-34.6-28.8zM293.5 368l45.8 38.1-11.2-67L293.5 368zM176 128c-8.8 0-16 7.2-16 16s7.2 16 16 16H336c8.8 0 16-7.2 16-16s-7.2-16-16-16H176z"]},dU={prefix:"fas",iconName:"file-code",icon:[384,512,[],"f1c9","M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM153 289l-31 31 31 31c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L71 337c-9.4-9.4-9.4-24.6 0-33.9l48-48c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9zM265 255l48 48c9.4 9.4 9.4 24.6 0 33.9l-48 48c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l31-31-31-31c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0z"]},Fa={prefix:"fas",iconName:"signal",icon:[576,512,[128246,"signal-5","signal-perfect"],"f012","M544 0c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V32c0-17.7 14.3-32 32-32zM416 96c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V128c0-17.7 14.3-32 32-32zM320 224V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V224c0-17.7 14.3-32 32-32s32 14.3 32 32zM160 288c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V320c0-17.7 14.3-32 32-32zM64 416v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V416c0-17.7 14.3-32 32-32s32 14.3 32 32z"]},HU=Fa,zU=Fa,gU={prefix:"fas",iconName:"bus",icon:[512,512,[128653],"f207","M256 0C390.4 0 480 35.2 480 80V96l0 32c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32l0 160c0 17.7-14.3 32-32 32v32c0 17.7-14.3 32-32 32H384c-17.7 0-32-14.3-32-32V448H160v32c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32l0-32c-17.7 0-32-14.3-32-32l0-160c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h0V96h0V80C32 35.2 121.6 0 256 0zM96 160v96c0 17.7 14.3 32 32 32H240V128H128c-17.7 0-32 14.3-32 32zM272 288H384c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H272V288zM112 400c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm288 0c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zM352 80c0-8.8-7.2-16-16-16H176c-8.8 0-16 7.2-16 16s7.2 16 16 16H336c8.8 0 16-7.2 16-16z"]},VU={prefix:"fas",iconName:"heart-circle-xmark",icon:[576,512,[],"e501","M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176c28.3 0 55 6.7 78.7 18.5c.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5zM432 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm59.3-180.7L454.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L432 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L409.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L432 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z"]},Op={prefix:"fas",iconName:"house-chimney",icon:[576,512,[63499,"home-lg"],"e3af","M543.8 287.6c17 0 32-14 32-32.1c1-9-3-17-11-24L512 185V64c0-17.7-14.3-32-32-32H448c-17.7 0-32 14.3-32 32v36.7L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32v69.7c-.1 .9-.1 1.8-.1 2.8V472c0 22.1 17.9 40 40 40h16c1.2 0 2.4-.1 3.6-.2c1.5 .1 3 .2 4.5 .2H160h24c22.1 0 40-17.9 40-40V448 384c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32v64 24c0 22.1 17.9 40 40 40h24 32.5c1.4 0 2.8 0 4.2-.1c1.1 .1 2.2 .1 3.3 .1h16c22.1 0 40-17.9 40-40V455.8c.3-2.6 .5-5.3 .5-8.1l-.7-160.2h32z"]},MU=Op,CU={prefix:"fas",iconName:"window-maximize",icon:[512,512,[128470],"f2d0","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM96 96H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H96c-17.7 0-32-14.3-32-32s14.3-32 32-32z"]},Rp={prefix:"fas",iconName:"face-frown",icon:[512,512,[9785,"frown"],"f119","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM159.3 388.7c-2.6 8.4-11.6 13.2-20 10.5s-13.2-11.6-10.5-20C145.2 326.1 196.3 288 256 288s110.8 38.1 127.3 91.3c2.6 8.4-2.1 17.4-10.5 20s-17.4-2.1-20-10.5C340.5 349.4 302.1 320 256 320s-84.5 29.4-96.7 68.7zM208.4 208c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm128 32c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},LU=Rp,yU={prefix:"fas",iconName:"prescription",icon:[448,512,[],"f5b1","M32 0C14.3 0 0 14.3 0 32V192v96c0 17.7 14.3 32 32 32s32-14.3 32-32V224h50.7l128 128L137.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L288 397.3 393.4 502.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L333.3 352 438.6 246.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L288 306.7l-85.8-85.8C251.4 209.1 288 164.8 288 112C288 50.1 237.9 0 176 0H32zM176 160H64V64H176c26.5 0 48 21.5 48 48s-21.5 48-48 48z"]},Fp={prefix:"fas",iconName:"shop",icon:[640,512,["store-alt"],"f54f","M36.8 192H603.2c20.3 0 36.8-16.5 36.8-36.8c0-7.3-2.2-14.4-6.2-20.4L558.2 21.4C549.3 8 534.4 0 518.3 0H121.7c-16 0-31 8-39.9 21.4L6.2 134.7c-4 6.1-6.2 13.2-6.2 20.4C0 175.5 16.5 192 36.8 192zM64 224V384v80c0 26.5 21.5 48 48 48H336c26.5 0 48-21.5 48-48V384 224H320V384H128V224H64zm448 0V480c0 17.7 14.3 32 32 32s32-14.3 32-32V224H512z"]},bU=Fp,Bp={prefix:"fas",iconName:"floppy-disk",icon:[448,512,[128190,128426,"save"],"f0c7","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V173.3c0-17-6.7-33.3-18.7-45.3L352 50.7C340 38.7 323.7 32 306.7 32H64zm0 96c0-17.7 14.3-32 32-32H288c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V128zM224 416c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64z"]},xU=Bp,SU={prefix:"fas",iconName:"vihara",icon:[640,512,[],"f6a7","M281 22L305.8 4.7c1.3-.9 2.7-1.8 4.1-2.4C313.1 .7 316.6 0 320 0s6.9 .7 10.1 2.2c1.4 .7 2.8 1.5 4.1 2.4L359 22C393 45.8 430.8 63.5 470.8 74.4l23 6.3c1.8 .5 3.6 1.1 5.2 2c3.2 1.7 5.9 4 8.1 6.8c3.8 4.9 5.6 11.3 4.7 17.8c-.4 2.8-1.2 5.4-2.5 7.8c-1.7 3.2-4 5.9-6.8 8.1c-4.3 3.2-9.6 5.1-15.1 4.9H480v56.1l6.4 5.1 5.2 4.1c21.1 16.7 45 29.6 70.5 38.1l28.9 9.6c1.6 .5 3.2 1.2 4.6 2c3.1 1.7 5.8 4.1 7.8 6.9s3.5 6.1 4.1 9.6c.5 2.7 .6 5.5 .1 8.3s-1.4 5.4-2.7 7.8c-1.7 3.1-4.1 5.8-6.9 7.8s-6.1 3.5-9.6 4.1c-1.6 .3-3.3 .4-5 .4H544v65.9c20.5 22.8 47.4 39.2 77.4 46.7C632 403 640 412.6 640 424c0 13.3-10.7 24-24 24H576v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H352v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H128v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H24c-13.3 0-24-10.7-24-24c0-11.4 8-21 18.6-23.4c30-7.6 56.9-23.9 77.4-46.7V288H56.6c-1.7 0-3.4-.1-5-.4c-3.5-.7-6.8-2.1-9.6-4.1s-5.2-4.7-7-7.8c-1.3-2.4-2.3-5-2.7-7.8s-.4-5.6 .1-8.3c.7-3.5 2.1-6.8 4.1-9.6s4.7-5.2 7.8-6.9c1.4-.8 3-1.5 4.6-2l28.9-9.6c25.5-8.5 49.4-21.4 70.5-38.1l5.2-4.1 6.4-5.1V176 128h-7.5c-5.5 .1-10.8-1.7-15.1-4.9c-2.8-2.1-5.1-4.8-6.8-8.1c-1.2-2.4-2.1-5-2.5-7.8c-.9-6.5 .9-12.8 4.7-17.8c2.1-2.8 4.8-5.1 8.1-6.8c1.6-.8 3.4-1.5 5.2-2l23-6.3C209.2 63.5 247 45.8 281 22zM416 128H320 224v64h72 48 72V128zM160 288v64H296h24 24H480V288H344 320h0H296 160z"]},Dp={prefix:"fas",iconName:"scale-unbalanced",icon:[640,512,["balance-scale-left"],"f515","M522.1 62.4c16.8-5.6 25.8-23.7 20.2-40.5S518.6-3.9 501.9 1.6l-113 37.7C375 15.8 349.3 0 320 0c-44.2 0-80 35.8-80 80c0 3 .2 5.9 .5 8.8L117.9 129.6c-16.8 5.6-25.8 23.7-20.2 40.5s23.7 25.8 40.5 20.2l135.5-45.2c4.5 3.2 9.3 5.9 14.4 8.2V480c0 17.7 14.3 32 32 32H512c17.7 0 32-14.3 32-32s-14.3-32-32-32H352V153.3c21-9.2 37.2-27 44.2-49l125.9-42zm-396.3 211c.4-.8 1.3-1.3 2.2-1.3s1.7 .5 2.2 1.3L204.9 416H51.1l74.7-142.7zM128 224c-18.8 0-36 10.4-44.7 27L5.5 399.5c-3.1 5.8-6.1 14-5.5 23.8c.7 12.1 4.8 35.2 24.8 55.1C45.1 498.6 77.8 512 128 512s82.9-13.4 103.2-33.5c20-20 24.2-43 24.8-55.1c.6-9.8-2.5-18-5.5-23.8L172.7 251c-8.7-16.6-25.9-27-44.7-27zm384-80c.9 0 1.7 .5 2.2 1.3L588.9 288H435.1l74.7-142.7c.4-.8 1.3-1.3 2.2-1.3zm-44.7-21L389.5 271.5c-3.1 5.8-6.1 14-5.5 23.8c.7 12.1 4.8 35.2 24.8 55.1C429.1 370.6 461.8 384 512 384s82.9-13.4 103.2-33.5c20-20 24.2-43 24.8-55.1c.6-9.8-2.5-18-5.5-23.8L556.7 123C548 106.4 530.8 96 512 96s-36 10.4-44.7 27z"]},wU=Dp,Ip={prefix:"fas",iconName:"sort-up",icon:[320,512,["sort-asc"],"f0de","M182.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8H288c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-128-128z"]},NU=Ip,Up={prefix:"fas",iconName:"comment-dots",icon:[512,512,[128172,62075,"commenting"],"f4ad","M256 448c141.4 0 256-93.1 256-208S397.4 32 256 32S0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9c-1.9 24.5-11.4 46.3-21.4 62.9c-5.5 9.2-11.1 16.6-15.2 21.6c-2.1 2.5-3.7 4.4-4.9 5.7c-.6 .6-1 1.1-1.3 1.4l-.3 .3 0 0 0 0 0 0 0 0c-4.6 4.6-5.9 11.4-3.4 17.4c2.5 6 8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3c22.9-10 42.4-21.9 54.3-30.6c31.8 11.5 67 17.9 104.1 17.9zM128 272c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm160-32c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32z"]},AU=Up,_U={prefix:"fas",iconName:"plant-wilt",icon:[512,512,[],"e5aa","M288 120c0-30.9 25.1-56 56-56s56 25.1 56 56v13c-29.3 10-48 34.5-48 70.1c0 27.9 25.3 74.8 66 111.6c3.8 3.5 8.9 5.3 14 5.3s10.2-1.8 14-5.3c40.7-36.8 66-83.7 66-111.6c0-35.6-18.7-60.2-48-70.1V120C464 53.7 410.3 0 344 0S224 53.7 224 120v21.8C207.3 133 188.2 128 168 128c-66.3 0-120 53.7-120 120v13c-29.3 10-48 34.5-48 70.1C0 359 25.3 405.9 66 442.7c3.8 3.5 8.9 5.3 14 5.3s10.2-1.8 14-5.3c40.7-36.8 66-83.7 66-111.6c0-35.6-18.7-60.2-48-70.1V248c0-30.9 25.1-56 56-56s56 25.1 56 56v32V480c0 17.7 14.3 32 32 32s32-14.3 32-32V280 248 120z"]},kU={prefix:"fas",iconName:"diamond",icon:[512,512,[9830],"f219","M284.3 11.7c-15.6-15.6-40.9-15.6-56.6 0l-216 216c-15.6 15.6-15.6 40.9 0 56.6l216 216c15.6 15.6 40.9 15.6 56.6 0l216-216c15.6-15.6 15.6-40.9 0-56.6l-216-216z"]},Wp={prefix:"fas",iconName:"face-grin-squint",icon:[512,512,[128518,"grin-squint"],"f585","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM383.8 317.8c12.3-3.7 24.3 7 19.2 18.7c-24.5 56.9-81.1 96.7-147 96.7s-122.5-39.8-147-96.7c-5.1-11.8 6.9-22.4 19.2-18.7C166.7 329.4 210.1 336 256 336s89.3-6.6 127.8-18.2zM133.5 146.7l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6c0-9 9.6-14.7 17.5-10.5zM396 157.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5z"]},TU=Wp,$p={prefix:"fas",iconName:"hand-holding-dollar",icon:[576,512,["hand-holding-usd"],"f4c0","M312 24V34.5c6.4 1.2 12.6 2.7 18.2 4.2c12.8 3.4 20.4 16.6 17 29.4s-16.6 20.4-29.4 17c-10.9-2.9-21.1-4.9-30.2-5c-7.3-.1-14.7 1.7-19.4 4.4c-2.1 1.3-3.1 2.4-3.5 3c-.3 .5-.7 1.2-.7 2.8c0 .3 0 .5 0 .6c.2 .2 .9 1.2 3.3 2.6c5.8 3.5 14.4 6.2 27.4 10.1l.9 .3 0 0c11.1 3.3 25.9 7.8 37.9 15.3c13.7 8.6 26.1 22.9 26.4 44.9c.3 22.5-11.4 38.9-26.7 48.5c-6.7 4.1-13.9 7-21.3 8.8V232c0 13.3-10.7 24-24 24s-24-10.7-24-24V220.6c-9.5-2.3-18.2-5.3-25.6-7.8c-2.1-.7-4.1-1.4-6-2c-12.6-4.2-19.4-17.8-15.2-30.4s17.8-19.4 30.4-15.2c2.6 .9 5 1.7 7.3 2.5c13.6 4.6 23.4 7.9 33.9 8.3c8 .3 15.1-1.6 19.2-4.1c1.9-1.2 2.8-2.2 3.2-2.9c.4-.6 .9-1.8 .8-4.1l0-.2c0-1 0-2.1-4-4.6c-5.7-3.6-14.3-6.4-27.1-10.3l-1.9-.6c-10.8-3.2-25-7.5-36.4-14.4c-13.5-8.1-26.5-22-26.6-44.1c-.1-22.9 12.9-38.6 27.7-47.4c6.4-3.8 13.3-6.4 20.2-8.2V24c0-13.3 10.7-24 24-24s24 10.7 24 24zM568.2 336.3c13.1 17.8 9.3 42.8-8.5 55.9L433.1 485.5c-23.4 17.2-51.6 26.5-80.7 26.5H192 32c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32H68.8l44.9-36c22.7-18.2 50.9-28 80-28H272h16 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H288 272c-8.8 0-16 7.2-16 16s7.2 16 16 16H392.6l119.7-88.2c17.8-13.1 42.8-9.3 55.9 8.5zM193.6 384l0 0-.9 0c.3 0 .6 0 .9 0z"]},PU=$p,EU={prefix:"fas",iconName:"bacterium",icon:[576,512,[],"e05a","M455.1 30.6c3.6-12.7-3.7-26-16.5-29.7s-26 3.7-29.7 16.5l-4.2 14.7c-9.8-.4-19.9 .5-29.9 2.8c-12.1 2.8-23.7 5.9-34.9 9.4l-5.9-13.7c-5.2-12.2-19.3-17.8-31.5-12.6s-17.8 19.3-12.6 31.5l4.9 11.3c-22 9.4-42 20.1-60.2 31.8L228 82.7c-7.4-11-22.3-14-33.3-6.7s-14 22.3-6.7 33.3l7.8 11.6c-18 15-33.7 30.8-47.3 47.1L135 157.3c-10.4-8.3-25.5-6.6-33.7 3.7s-6.6 25.5 3.7 33.7l15 12c-2.1 3.2-4.1 6.5-6 9.7c-9.4 15.7-17 31-23.2 45.3l-9.9-3.9c-12.3-4.9-26.3 1.1-31.2 13.4s1.1 26.3 13.4 31.2l11.6 4.6c-.3 1.1-.6 2.1-.9 3.1c-3.5 12.5-5.7 23.2-7.1 31.3c-.7 4.1-1.2 7.5-1.6 10.3c-.2 1.4-.3 2.6-.4 3.6l-.1 1.4-.1 .6 0 .3 0 .1c0 0 0 .1 39.2 3.7l0 0-39.2-3.6c-.5 5-.6 10-.4 14.9l-14.7 4.2c-12.7 3.6-20.1 16.9-16.5 29.7s16.9 20.1 29.7 16.5l13.8-3.9c10.6 20.7 27.6 37.8 48.5 48.5l-3.9 13.7c-3.6 12.7 3.7 26 16.5 29.7s26-3.7 29.7-16.5l4.2-14.7c23.8 1 46.3-5.5 65.1-17.6L247 473c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-10.6-10.6c9.1-14.1 15.1-30.5 17-48.3l.1-.8c.3-1.7 1-5.1 2.3-9.8l.2-.8 12.6 5.4c12.2 5.2 26.3-.4 31.5-12.6s-.4-26.3-12.6-31.5l-11.3-4.8c9.9-14.9 24.9-31.6 48.6-46l2.1 7.5c3.6 12.7 16.9 20.1 29.7 16.5s20.1-16.9 16.5-29.7L403 259.2c6.9-2.2 14.3-4.3 22.2-6.1c12.9-3 24.7-8 35.2-14.8L471 249c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-10.6-10.6c12.2-19 18.6-41.6 17.6-65.1l14.7-4.2c12.7-3.6 20.1-16.9 16.5-29.7s-16.9-20.1-29.7-16.5l-13.7 3.9c-10.8-21.2-28-38-48.5-48.5l3.9-13.8zm-331 332.7l0 0L176 368l-51.9-4.7zM240 320c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48zm32-88c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24z"]},OU={prefix:"fas",iconName:"hand-pointer",icon:[448,512,[],"f25a","M128 40c0-22.1 17.9-40 40-40s40 17.9 40 40V188.2c8.5-7.6 19.7-12.2 32-12.2c25.3 0 46 19.5 47.9 44.3c8.5-7.7 19.8-12.3 32.1-12.3c25.3 0 46 19.5 47.9 44.3c8.5-7.7 19.8-12.3 32.1-12.3c26.5 0 48 21.5 48 48v32 64c0 70.7-57.3 128-128 128l-16 0H240l-.1 0h-5.2c-5 0-9.9-.3-14.7-1c-55.3-5.6-106.2-34-140-79L8 336c-13.3-17.7-9.7-42.7 8-56s42.7-9.7 56 8l56 74.7V40zM240 304c0-8.8-7.2-16-16-16s-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16V304zm48-16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16V304c0-8.8-7.2-16-16-16zm80 16c0-8.8-7.2-16-16-16s-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16V304z"]},RU={prefix:"fas",iconName:"drum-steelpan",icon:[576,512,[],"f56a","M288 32c159.1 0 288 48 288 128V352c0 80-128.9 128-288 128S0 432 0 352V160C0 80 128.9 32 288 32zM528 160c0-9.9-8-29.9-55-49.8c-18.6-7.9-40.9-14.4-66-19.4l-27.8 43.6c-7.3 11.5-11.2 24.8-11.2 38.4c0 17.5 6.4 34.4 18.1 47.5l9.8 11c29.8-5.2 55.9-12.5 77.2-21.5c47.1-19.9 55-39.9 55-49.8zM349.2 237.3c-8-26.2-32.4-45.3-61.2-45.3s-53.3 19.1-61.2 45.3c19.4 1.7 39.9 2.7 61.2 2.7s41.8-.9 61.2-2.7zM169 90.8c-25.2 5-47.4 11.6-66 19.4C56 130.1 48 150.1 48 160s8 29.9 55 49.8c21.3 9 47.4 16.3 77.2 21.5l9.8-11c11.6-13.1 18.1-30 18.1-47.5c0-13.6-3.9-26.9-11.2-38.4L169 90.8zm56.3-8C224.5 87 224 91.5 224 96c0 35.3 28.7 64 64 64s64-28.7 64-64c0-4.5-.5-9-1.4-13.2C330.8 81 309.8 80 288 80s-42.8 1-62.6 2.8z"]},FU={prefix:"fas",iconName:"hand-scissors",icon:[512,512,[],"f257","M40 208c-22.1 0-40 17.9-40 40s17.9 40 40 40l180.2 0c-7.6 8.5-12.2 19.7-12.2 32c0 25.3 19.5 46 44.3 47.9c-7.7 8.5-12.3 19.8-12.3 32.1c0 26.5 21.5 48 48 48l32 0 64 0c70.7 0 128-57.3 128-128l0-113.1c0-40.2-16-78.8-44.4-107.3C444.8 76.8 413.9 64 381.7 64L336 64c-21.3 0-39.3 13.9-45.6 33.1l74.5 23.7c8.4 2.7 13.1 11.7 10.4 20.1s-11.7 13.1-20.1 10.4L288 129.9l0 .1L84 65.8C62.9 59.2 40.5 70.9 33.8 92s5.1 43.5 26.2 50.2L269.5 208 40 208z"]},qp={prefix:"fas",iconName:"hands-praying",icon:[640,512,["praying-hands"],"f684","M351.2 4.8c3.2-2 6.6-3.3 10-4.1c4.7-1 9.6-.9 14.1 .1c7.7 1.8 14.8 6.5 19.4 13.6L514.6 194.2c8.8 13.1 13.4 28.6 13.4 44.4v73.5c0 6.9 4.4 13 10.9 15.2l79.2 26.4C631.2 358 640 370.2 640 384v96c0 9.9-4.6 19.3-12.5 25.4s-18.1 8.1-27.7 5.5L431 465.9c-56-14.9-95-65.7-95-123.7V224c0-17.7 14.3-32 32-32s32 14.3 32 32v80c0 8.8 7.2 16 16 16s16-7.2 16-16V219.1c0-7-1.8-13.8-5.3-19.8L340.3 48.1c-1.7-3-2.9-6.1-3.6-9.3c-1-4.7-1-9.6 .1-14.1c1.9-8 6.8-15.2 14.3-19.9zm-62.4 0c7.5 4.6 12.4 11.9 14.3 19.9c1.1 4.6 1.2 9.4 .1 14.1c-.7 3.2-1.9 6.3-3.6 9.3L213.3 199.3c-3.5 6-5.3 12.9-5.3 19.8V304c0 8.8 7.2 16 16 16s16-7.2 16-16V224c0-17.7 14.3-32 32-32s32 14.3 32 32V342.3c0 58-39 108.7-95 123.7l-168.7 45c-9.6 2.6-19.9 .5-27.7-5.5S0 490 0 480V384c0-13.8 8.8-26 21.9-30.4l79.2-26.4c6.5-2.2 10.9-8.3 10.9-15.2V238.5c0-15.8 4.7-31.2 13.4-44.4L245.2 14.5c4.6-7.1 11.7-11.8 19.4-13.6c4.6-1.1 9.4-1.2 14.1-.1c3.5 .8 6.9 2.1 10 4.1z"]},BU=qp,ve={prefix:"fas",iconName:"arrow-rotate-right",icon:[512,512,[8635,"arrow-right-rotate","arrow-rotate-forward","redo"],"f01e","M386.3 160H336c-17.7 0-32 14.3-32 32s14.3 32 32 32H464c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v51.2L414.4 97.6c-87.5-87.5-229.3-87.5-316.8 0s-87.5 229.3 0 316.8s229.3 87.5 316.8 0c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0c-62.5 62.5-163.8 62.5-226.3 0s-62.5-163.8 0-226.3s163.8-62.5 226.3 0L386.3 160z"]},DU=ve,IU=ve,UU=ve,WU={prefix:"fas",iconName:"biohazard",icon:[576,512,[9763],"f780","M173.2 0c-1.8 0-3.5 .7-4.8 2C138.5 32.3 120 74 120 120c0 26.2 6 50.9 16.6 73c-22 2.4-43.8 9.1-64.2 20.5C37.9 232.8 13.3 262.4 .4 296c-.7 1.7-.5 3.7 .5 5.2c2.2 3.7 7.4 4.3 10.6 1.3C64.2 254.3 158 245.1 205 324s-8.1 153.1-77.6 173.2c-4.2 1.2-6.3 5.9-4.1 9.6c1 1.6 2.6 2.7 4.5 3c36.5 5.9 75.2 .1 109.7-19.2c20.4-11.4 37.4-26.5 50.5-43.8c13.1 17.3 30.1 32.4 50.5 43.8c34.5 19.3 73.3 25.2 109.7 19.2c1.9-.3 3.5-1.4 4.5-3c2.2-3.7 .1-8.4-4.1-9.6C379.1 477.1 324 403 371 324s140.7-69.8 193.5-21.4c3.2 2.9 8.4 2.3 10.6-1.3c1-1.6 1.1-3.5 .5-5.2c-12.9-33.6-37.5-63.2-72.1-82.5c-20.4-11.4-42.2-18.1-64.2-20.5C450 170.9 456 146.2 456 120c0-46-18.5-87.7-48.4-118c-1.3-1.3-3-2-4.8-2c-5 0-8.4 5.2-6.7 9.9C421.7 80.5 385.6 176 288 176S154.3 80.5 179.9 9.9c1.7-4.7-1.6-9.9-6.7-9.9zM336 272c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48zM181.7 417.6c6.3-11.8 9.8-25.1 8.6-39.8c-19.5-18-34-41.4-41.2-67.8c-12.5-8.1-26.2-11.8-40-12.4c-9-.4-18.1 .6-27.1 2.7c7.8 57.1 38.7 106.8 82.9 139.4c6.8-6.7 12.6-14.1 16.8-22.1zM288 64c-28.8 0-56.3 5.9-81.2 16.5c2 8.3 5 16.2 9 23.5c6.8 12.4 16.7 23.1 30.1 30.3c13.3-4.1 27.5-6.3 42.2-6.3s28.8 2.2 42.2 6.3c13.4-7.2 23.3-17.9 30.1-30.3c4-7.3 7-15.2 9-23.5C344.3 69.9 316.8 64 288 64zM426.9 310c-7.2 26.4-21.7 49.7-41.2 67.8c-1.2 14.7 2.2 28.1 8.6 39.8c4.3 8 10 15.4 16.8 22.1c44.3-32.6 75.2-82.3 82.9-139.4c-9-2.2-18.1-3.1-27.1-2.7c-13.8 .6-27.5 4.4-40 12.4z"]},Gp={prefix:"fas",iconName:"location-crosshairs",icon:[512,512,["location"],"f601","M256 0c17.7 0 32 14.3 32 32V66.7C368.4 80.1 431.9 143.6 445.3 224H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H445.3C431.9 368.4 368.4 431.9 288 445.3V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V445.3C143.6 431.9 80.1 368.4 66.7 288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H66.7C80.1 143.6 143.6 80.1 224 66.7V32c0-17.7 14.3-32 32-32zM128 256c0 70.7 57.3 128 128 128s128-57.3 128-128s-57.3-128-128-128s-128 57.3-128 128zm128 80c-44.2 0-80-35.8-80-80s35.8-80 80-80s80 35.8 80 80s-35.8 80-80 80z"]},$U=Gp,qU={prefix:"fas",iconName:"mars-double",icon:[640,512,[9891],"f227","M312 32c-9.7 0-18.5 5.8-22.2 14.8s-1.7 19.3 5.2 26.2l33.4 33.4L275.8 159c-28.4-19.5-62.7-31-99.8-31C78.8 128 0 206.8 0 304s78.8 176 176 176s176-78.8 176-176c0-37-11.4-71.4-31-99.8l52.6-52.6L407 185c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V56c0-13.3-10.7-24-24-24H312zm88 48h0v0l0 0zM288 304c0 61.9-50.1 112-112 112s-112-50.1-112-112s50.1-112 112-112s112 50.1 112 112zm80 176c97.2 0 176-78.8 176-176c0-37-11.4-71.4-31-99.8l52.6-52.6L599 185c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V56c0-13.3-10.7-24-24-24H504c-9.7 0-18.5 5.8-22.2 14.8c-1.2 2.9-1.8 6-1.8 9l0 .2v.2c0 6.2 2.5 12.2 7 16.8l33.4 33.4L480 146.7V168c0 22.6-13.6 43.1-34.6 51.7c-.8 .3-1.7 .7-2.5 1C465.7 241.2 480 270.9 480 304c0 61.9-50.1 112-112 112c-5.4 0-10.8-.4-16-1.1c-12.9 20.4-29.1 38.3-48.1 53.1c19.8 7.8 41.4 12 64 12z"]},GU={prefix:"fas",iconName:"child-dress",icon:[320,512,[],"e59c","M224 64c0-35.3-28.7-64-64-64S96 28.7 96 64s28.7 64 64 64s64-28.7 64-64zM88 400v80c0 17.7 14.3 32 32 32s32-14.3 32-32V400h16v80c0 17.7 14.3 32 32 32s32-14.3 32-32V400h17.8c10.9 0 18.6-10.7 15.2-21.1l-31.1-93.4 28.6 37.8c10.7 14.1 30.8 16.8 44.8 6.2s16.8-30.7 6.2-44.8L254.6 207c-22.4-29.6-57.5-47-94.6-47s-72.2 17.4-94.6 47L6.5 284.7c-10.7 14.1-7.9 34.2 6.2 44.8s34.2 7.9 44.8-6.2l28.7-37.8L55 378.9C51.6 389.3 59.3 400 70.2 400H88z"]},jU={prefix:"fas",iconName:"users-between-lines",icon:[640,512,[],"e591","M0 24C0 10.7 10.7 0 24 0H616c13.3 0 24 10.7 24 24s-10.7 24-24 24H24C10.7 48 0 37.3 0 24zM0 488c0-13.3 10.7-24 24-24H616c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24zM211.2 160c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zM32 320c0-35.3 28.7-64 64-64h96c12.2 0 23.7 3.4 33.4 9.4c-37.2 15.1-65.6 47.2-75.8 86.6H64c-17.7 0-32-14.3-32-32zm461.6 32c-10.3-40.1-39.6-72.6-77.7-87.4c9.4-5.5 20.4-8.6 32.1-8.6h96c35.3 0 64 28.7 64 64c0 17.7-14.3 32-32 32H493.6zM391.2 290.4c32.1 7.4 58.1 30.9 68.9 61.6c3.5 10 5.5 20.8 5.5 32c0 17.7-14.3 32-32 32h-224c-17.7 0-32-14.3-32-32c0-11.2 1.9-22 5.5-32c10.5-29.7 35.3-52.8 66.1-60.9c7.8-2.1 16-3.1 24.5-3.1h96c7.4 0 14.7 .8 21.6 2.4zM563.2 160c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zM321.6 256c-44.2 0-80-35.8-80-80s35.8-80 80-80s80 35.8 80 80s-35.8 80-80 80z"]},KU={prefix:"fas",iconName:"lungs-virus",icon:[640,512,[],"e067","M320 0c17.7 0 32 14.3 32 32V156.2c-8.5-7.6-19.7-12.2-32-12.2s-23.5 4.6-32 12.2V32c0-17.7 14.3-32 32-32zM444.5 195.5c-16.4-16.4-41.8-18.5-60.5-6.1V165.3C384 127 415 96 453.3 96c21.7 0 42.8 10.2 55.8 28.8c15.4 22.1 44.3 65.4 71 116.9c26.5 50.9 52.4 112.5 59.6 170.3c.2 1.3 .2 2.6 .2 4v7c0 49.1-39.8 89-89 89c-7.3 0-14.5-.9-21.6-2.7l-72.7-18.2c-20.9-5.2-38.7-17.1-51.5-32.9c14 1.5 28.5-3 39.2-13.8l-22.6-22.6 22.6 22.6c18.7-18.7 18.7-49.1 0-67.9c-1.1-1.1-1.4-2-1.5-2.5c-.1-.8-.1-1.8 .4-2.9s1.2-1.9 1.8-2.3c.5-.3 1.3-.8 2.9-.8c26.5 0 48-21.5 48-48s-21.5-48-48-48c-1.6 0-2.4-.4-2.9-.8c-.6-.4-1.3-1.2-1.8-2.3s-.5-2.2-.4-2.9c.1-.6 .4-1.4 1.5-2.5c18.7-18.7 18.7-49.1 0-67.9zM421.8 421.8c-6.2 6.2-16.4 6.2-22.6 0C375.9 398.5 336 415 336 448c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-33-39.9-49.5-63.2-26.2c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6C241.5 375.9 225 336 192 336c-8.8 0-16-7.2-16-16s7.2-16 16-16c33 0 49.5-39.9 26.2-63.2c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0C264.1 241.5 304 225 304 192c0-8.8 7.2-16 16-16s16 7.2 16 16c0 33 39.9 49.5 63.2 26.2c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6C398.5 264.1 415 304 448 304c8.8 0 16 7.2 16 16s-7.2 16-16 16c-33 0-49.5 39.9-26.2 63.2c6.2 6.2 6.2 16.4 0 22.6zM183.3 491.2l-72.7 18.2c-7.1 1.8-14.3 2.7-21.6 2.7c-49.1 0-89-39.8-89-89v-7c0-1.3 .1-2.7 .2-4c7.2-57.9 33.1-119.4 59.6-170.3c26.8-51.5 55.6-94.8 71-116.9c13-18.6 34-28.8 55.8-28.8C225 96 256 127 256 165.3v24.1c-18.6-12.4-44-10.3-60.5 6.1c-18.7 18.7-18.7 49.1 0 67.9c1.1 1.1 1.4 2 1.5 2.5c.1 .8 .1 1.8-.4 2.9s-1.2 1.9-1.8 2.3c-.5 .3-1.3 .8-2.9 .8c-26.5 0-48 21.5-48 48s21.5 48 48 48c1.6 0 2.4 .4 2.9 .8c.6 .4 1.3 1.2 1.8 2.3s.5 2.2 .4 2.9c-.1 .6-.4 1.4-1.5 2.5c-18.7 18.7-18.7 49.1 0 67.9c10.7 10.7 25.3 15.3 39.2 13.8c-12.8 15.9-30.6 27.7-51.5 32.9zM296 320c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24zm72 32c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16z"]},jp={prefix:"fas",iconName:"face-grin-tears",icon:[640,512,[128514,"grin-tears"],"f588","M548.6 371.4C506.4 454.8 419.9 512 320 512s-186.4-57.2-228.6-140.6c4.5-2.9 8.7-6.3 12.7-10.3c8.1-8.1 13.2-18.6 16.5-26.6c3.6-8.8 6.5-18.4 8.8-27.5c4.6-18.2 7.7-37 9.3-48.2c3.9-26.5-18.8-49.2-45.2-45.4c-6.8 .9-16.2 2.4-26.6 4.4C85.3 94.5 191.6 0 320 0S554.7 94.5 573.2 217.7c-10.3-2-19.8-3.5-26.6-4.4c-26.5-3.9-49.2 18.8-45.2 45.4c1.6 11.3 4.6 30 9.3 48.2c2.3 9.1 5.2 18.8 8.8 27.5c3.3 8.1 8.4 18.5 16.5 26.6c3.9 3.9 8.2 7.4 12.7 10.3zM107 254.1c-3.1 21.5-11.4 70.2-25.5 84.4c-.9 1-1.9 1.8-2.9 2.7C60 356.7 32 355.5 14.3 337.7c-18.7-18.7-19.1-48.8-.7-67.2c8.6-8.6 30.1-15.1 50.5-19.6c13-2.8 25.5-4.8 33.9-6c5.4-.8 9.9 3.7 9 9zm454.5 87.1c-.8-.6-1.5-1.3-2.3-2c-.2-.2-.5-.4-.7-.7c-14.1-14.1-22.5-62.9-25.5-84.4c-.8-5.4 3.7-9.9 9-9c1 .1 2.2 .3 3.3 .5c8.2 1.2 19.2 3 30.6 5.5c20.4 4.4 41.9 10.9 50.5 19.6c18.4 18.4 18 48.5-.7 67.2c-17.7 17.7-45.7 19-64.2 3.4zm-90.1-9.7c5-11.8-7-22.5-19.3-18.7c-39.7 12.2-84.4 19-131.8 19s-92.1-6.8-131.8-19c-12.3-3.8-24.3 6.9-19.3 18.7c25 59.1 83.2 100.5 151.1 100.5s126.2-41.4 151.1-100.5zM281.6 228.8l0 0 0 0 0 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8c-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2C190.7 188.4 184 206.1 184 224c0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l0 0 0 0 0 0 .2-.2c.2-.2 .4-.5 .7-.9c.6-.8 1.6-2 2.8-3.4c2.5-2.8 6-6.6 10.2-10.3c8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3c1.2 1.4 2.2 2.6 2.8 3.4c.3 .4 .6 .7 .7 .9l.2 .2 0 0zm160 0l0 0 0 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8c-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2C350.7 188.4 344 206.1 344 224c0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l0 0 0 0 0 0 .2-.2c.2-.2 .4-.5 .7-.9c.6-.8 1.6-2 2.8-3.4c2.5-2.8 6-6.6 10.2-10.3c8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3c1.2 1.4 2.2 2.6 2.8 3.4c.3 .4 .6 .7 .7 .9l.2 .2 0 0 0 0z"]},XU=jp,YU={prefix:"fas",iconName:"phone",icon:[512,512,[128222,128379],"f095","M164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64C0 311.4 200.6 512 448 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368C234.3 334.7 177.3 277.7 144 207.3L193.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96z"]},Kp={prefix:"fas",iconName:"calendar-xmark",icon:[448,512,["calendar-times"],"f273","M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zM305 305c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-47 47-47-47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l47 47-47 47c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l47-47 47 47c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-47-47 47-47z"]},JU=Kp,QU={prefix:"fas",iconName:"child-reaching",icon:[384,512,[],"e59d","M256 64c0-35.3-28.7-64-64-64s-64 28.7-64 64s28.7 64 64 64s64-28.7 64-64zM152.9 169.3c-23.7-8.4-44.5-24.3-58.8-45.8L74.6 94.2C64.8 79.5 45 75.6 30.2 85.4s-18.7 29.7-8.9 44.4L40.9 159c18.1 27.1 42.8 48.4 71.1 62.4V480c0 17.7 14.3 32 32 32s32-14.3 32-32V384h32v96c0 17.7 14.3 32 32 32s32-14.3 32-32V221.6c29.1-14.2 54.4-36.2 72.7-64.2l18.2-27.9c9.6-14.8 5.4-34.6-9.4-44.3s-34.6-5.5-44.3 9.4L291 122.4c-21.8 33.4-58.9 53.6-98.8 53.6c-12.6 0-24.9-2-36.6-5.8c-.9-.3-1.8-.7-2.7-.9z"]},ZU={prefix:"fas",iconName:"head-side-virus",icon:[512,512,[],"e064","M0 224.2C0 100.6 100.2 0 224 0h32c95.2 0 174.2 69.3 189.4 160.1c2.2 13 6.7 25.7 15 36.1l42 52.6c6.2 7.8 9.6 17.4 9.6 27.4c0 24.2-19.6 43.8-43.8 43.8H448v64c0 35.3-28.7 64-64 64H320v32c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V407.3c0-16.7-6.9-32.5-17.1-45.8C16.6 322.4 0 274.1 0 224.2zM240 80c-8.8 0-16 7.2-16 16c0 33-39.9 49.5-63.2 26.2c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6C161.5 168.1 145 208 112 208c-8.8 0-16 7.2-16 16s7.2 16 16 16c33 0 49.5 39.9 26.2 63.2c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0C184.1 302.5 224 319 224 352c0 8.8 7.2 16 16 16s16-7.2 16-16c0-33 39.9-49.5 63.2-26.2c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6C318.5 279.9 335 240 368 240c8.8 0 16-7.2 16-16s-7.2-16-16-16c-33 0-49.5-39.9-26.2-63.2c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0C295.9 145.5 256 129 256 96c0-8.8-7.2-16-16-16zM216 224c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zm72 32c0 8.8-7.2 16-16 16s-16-7.2-16-16s7.2-16 16-16s16 7.2 16 16z"]},Xp={prefix:"fas",iconName:"user-gear",icon:[640,512,["user-cog"],"f4fe","M224 256c-70.7 0-128-57.3-128-128S153.3 0 224 0s128 57.3 128 128s-57.3 128-128 128zm-45.7 48h91.4c11.8 0 23.4 1.2 34.5 3.3c-2.1 18.5 7.4 35.6 21.8 44.8c-16.6 10.6-26.7 31.6-20 53.3c4 12.9 9.4 25.5 16.4 37.6s15.2 23.1 24.4 33c15.7 16.9 39.6 18.4 57.2 8.7v.9c0 9.2 2.7 18.5 7.9 26.3H29.7C13.3 512 0 498.7 0 482.3C0 383.8 79.8 304 178.3 304zM436 218.2c0-7 4.5-13.3 11.3-14.8c10.5-2.4 21.5-3.7 32.7-3.7s22.2 1.3 32.7 3.7c6.8 1.5 11.3 7.8 11.3 14.8v30.6c7.9 3.4 15.4 7.7 22.3 12.8l24.9-14.3c6.1-3.5 13.7-2.7 18.5 2.4c7.6 8.1 14.3 17.2 20.1 27.2s10.3 20.4 13.5 31c2.1 6.7-1.1 13.7-7.2 17.2l-25 14.4c.4 4 .7 8.1 .7 12.3s-.2 8.2-.7 12.3l25 14.4c6.1 3.5 9.2 10.5 7.2 17.2c-3.3 10.6-7.8 21-13.5 31s-12.5 19.1-20.1 27.2c-4.8 5.1-12.5 5.9-18.5 2.4l-24.9-14.3c-6.9 5.1-14.3 9.4-22.3 12.8l0 30.6c0 7-4.5 13.3-11.3 14.8c-10.5 2.4-21.5 3.7-32.7 3.7s-22.2-1.3-32.7-3.7c-6.8-1.5-11.3-7.8-11.3-14.8V454.8c-8-3.4-15.6-7.7-22.5-12.9l-24.7 14.3c-6.1 3.5-13.7 2.7-18.5-2.4c-7.6-8.1-14.3-17.2-20.1-27.2s-10.3-20.4-13.5-31c-2.1-6.7 1.1-13.7 7.2-17.2l24.8-14.3c-.4-4.1-.7-8.2-.7-12.4s.2-8.3 .7-12.4L343.8 325c-6.1-3.5-9.2-10.5-7.2-17.2c3.3-10.6 7.7-21 13.5-31s12.5-19.1 20.1-27.2c4.8-5.1 12.4-5.9 18.5-2.4l24.8 14.3c6.9-5.1 14.5-9.4 22.5-12.9V218.2zm92.1 133.5c0-26.5-21.5-48-48.1-48s-48.1 21.5-48.1 48s21.5 48 48.1 48s48.1-21.5 48.1-48z"]},cW=Xp,Yp={prefix:"fas",iconName:"arrow-up-1-9",icon:[576,512,["sort-numeric-up"],"f163","M160 32c9 0 17.5 3.8 23.6 10.4l88 96c11.9 13 11.1 33.3-2 45.2s-33.3 11.1-45.2-2L192 146.3V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V146.3L95.6 181.6c-11.9 13-32.2 13.9-45.2 2s-13.9-32.2-2-45.2l88-96C142.5 35.8 151 32 160 32zM352 64c0-17.7 14.3-32 32-32h48c17.7 0 32 14.3 32 32v96h16c17.7 0 32 14.3 32 32s-14.3 32-32 32H432 384c-17.7 0-32-14.3-32-32s14.3-32 32-32h16V96H384c-17.7 0-32-14.3-32-32zm93.7 300.9c10.8-5.1 18.3-16.2 18.3-28.9c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32c4.9 0 9.6-1.1 13.7-3.1zm-40.7 54.9C369.6 408.4 344 375.2 344 336c0-48.6 39.4-88 88-88s88 39.4 88 88c0 23.5-7.5 46.3-21.5 65.2L449.7 467c-10.5 14.2-30.6 17.2-44.8 6.7s-17.2-30.6-6.7-44.8l6.8-9.2z"]},eW=Yp,rW={prefix:"fas",iconName:"door-closed",icon:[576,512,[128682],"f52a","M96 64c0-35.3 28.7-64 64-64H416c35.3 0 64 28.7 64 64V448h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H432 144 32c-17.7 0-32-14.3-32-32s14.3-32 32-32H96V64zM384 288c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z"]},aW={prefix:"fas",iconName:"shield-virus",icon:[512,512,[],"e06c","M269.4 2.9C265.2 1 260.7 0 256 0s-9.2 1-13.4 2.9L54.3 82.8c-22 9.3-38.4 31-38.3 57.2c.5 99.2 41.3 280.7 213.6 363.2c16.7 8 36.1 8 52.8 0C454.7 420.7 495.5 239.2 496 140c.1-26.2-16.3-47.9-38.3-57.2L269.4 2.9zM256 112c8.8 0 16 7.2 16 16c0 33 39.9 49.5 63.2 26.2c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6C334.5 200.1 351 240 384 240c8.8 0 16 7.2 16 16s-7.2 16-16 16c-33 0-49.5 39.9-26.2 63.2c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0C311.9 334.5 272 351 272 384c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-33-39.9-49.5-63.2-26.2c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6C177.5 311.9 161 272 128 272c-8.8 0-16-7.2-16-16s7.2-16 16-16c33 0 49.5-39.9 26.2-63.2c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0C200.1 177.5 240 161 240 128c0-8.8 7.2-16 16-16zM232 256c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24zm72 32c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16z"]},nW={prefix:"fas",iconName:"dice-six",icon:[448,512,[9861],"f526","M0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm160 64c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM128 288c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm32 64c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM320 192c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm32 64c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM320 384c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z"]},tW={prefix:"fas",iconName:"mosquito-net",icon:[640,512,[],"e52c","M168.8 462.3c-7.9-4-11.1-13.6-7.2-21.5L192 380.2l0-44.2c0-4.2 1.7-8.3 4.7-11.3L256 265.4V242.2L139.2 344C87.8 395.3 0 358.9 0 286.3c0-41.1 30.6-75.8 71.4-80.9l159.9-23.9-49.6-41.3c-5.1-4.2-7-11.1-4.9-17.4l13.9-41.7-29-58.1c-4-7.9-.7-17.5 7.2-21.5s17.5-.7 21.5 7.2l32 64c1.9 3.8 2.2 8.2 .9 12.2l-12.5 37.6L256 160.5V137.9c0-14.9 10.1-27.3 23.8-31V63.7c0-4.5 3.7-8.2 8.2-8.2s8.2 3.7 8.2 8.2V107c13.7 3.6 23.8 16.1 23.8 31v22.6l45.4-37.8L352.8 85.1c-1.3-4-1-8.4 .9-12.2l32-64c4-7.9 13.6-11.1 21.5-7.2s11.1 13.6 7.2 21.5l-29 58.1 13.9 41.7c2.1 6.2 .1 13.1-4.9 17.4l-49.6 41.3 159.9 23.9c22.5 2.8 41.8 14.6 54.7 31.4c-2.7 2.6-5.2 5.4-7.3 8.6c-8.6-12.9-23.3-21.5-40-21.5s-31.4 8.5-40 21.5c-8.6-12.9-23.3-21.5-40-21.5c-21.7 0-40 14.3-45.9 34.1c-10.7 3.2-19.8 10.1-25.9 19.2l-40.2-35v23.1l32.4 32.4c-.3 2-.4 4.1-.4 6.2c0 16.7 8.5 31.4 21.5 40c-4 2.6-7.5 5.9-10.6 9.5L320 310.6v50c0 17.7-14.3 32-32 32s-32-14.3-32-32v-50l-32 32 0 41.4c0 2.5-.6 4.9-1.7 7.2l-32 64c-4 7.9-13.6 11.1-21.5 7.2zM512 256c8.8 0 16 7.2 16 16v16h48V272c0-8.8 7.2-16 16-16s16 7.2 16 16v16h16c8.8 0 16 7.2 16 16s-7.2 16-16 16H608v48h16c8.8 0 16 7.2 16 16s-7.2 16-16 16H608v48h16c8.8 0 16 7.2 16 16s-7.2 16-16 16H608v16c0 8.8-7.2 16-16 16s-16-7.2-16-16V480H528v16c0 8.8-7.2 16-16 16s-16-7.2-16-16V480H448v16c0 8.8-7.2 16-16 16s-16-7.2-16-16V480H400c-8.8 0-16-7.2-16-16s7.2-16 16-16h16V400H400c-8.8 0-16-7.2-16-16s7.2-16 16-16h16V320H400c-8.8 0-16-7.2-16-16s7.2-16 16-16h16V272c0-8.8 7.2-16 16-16s16 7.2 16 16v16h48V272c0-8.8 7.2-16 16-16zm16 112h48V320H528v48zm0 80h48V400H528v48zM448 320v48h48V320H448zm0 80v48h48V400H448z"]},sW={prefix:"fas",iconName:"bridge-water",icon:[576,512,[],"e4ce","M0 96C0 78.3 14.3 64 32 64H544c17.7 0 32 14.3 32 32v35.6c0 15.7-12.7 28.4-28.4 28.4c-37.3 0-67.6 30.2-67.6 67.6V352.5c-12.9 0-25.8 3.9-36.8 11.7c-18 12.4-40.1 20.3-59.2 20.3h0l0-.5V256c0-53-43-96-96-96s-96 43-96 96V384l0 .5c-19 0-41.2-7.9-59.1-20.3c-11.1-7.8-24-11.7-36.9-11.7V227.6C96 190.2 65.8 160 28.4 160C12.7 160 0 147.3 0 131.6V96zM306.5 389.9C329 405.4 356.5 416 384 416c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 469.7 417 480 384 480c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 405.2 165.1 416 192 416c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z"]},iW={prefix:"fas",iconName:"person-booth",icon:[576,512,[],"f756","M256 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V192h64V32zm320 0c0-17.7-14.3-32-32-32s-32 14.3-32 32V480c0 17.7 14.3 32 32 32s32-14.3 32-32V32zM224 512c17.7 0 32-14.3 32-32V320H192V480c0 17.7 14.3 32 32 32zM320 0c-9.3 0-18.1 4-24.2 11s-8.8 16.3-7.5 25.5l31.2 218.6L288.6 409.7c-3.5 17.3 7.8 34.2 25.1 37.7s34.2-7.8 37.7-25.1l.7-3.6c1.3 16.4 15.1 29.4 31.9 29.4c17.7 0 32-14.3 32-32c0 17.7 14.3 32 32 32s32-14.3 32-32V32c0-17.7-14.3-32-32-32H320zM112 80c0-26.5-21.5-48-48-48S16 53.5 16 80s21.5 48 48 48s48-21.5 48-48zm0 261.3V269.3l4.7 4.7c9 9 21.2 14.1 33.9 14.1H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H157.3l-41.6-41.6c-14.3-14.3-33.8-22.4-54-22.4C27.6 160 0 187.6 0 221.6v55.7l0 .9V480c0 17.7 14.3 32 32 32s32-14.3 32-32V384l32 42.7V480c0 17.7 14.3 32 32 32s32-14.3 32-32V421.3c0-10.4-3.4-20.5-9.6-28.8L112 341.3z"]},oW={prefix:"fas",iconName:"text-width",icon:[448,512,[],"f035","M32 32C14.3 32 0 46.3 0 64v64c0 17.7 14.3 32 32 32s32-14.3 32-32V96H192l0 128H176c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H256l0-128H384v32c0 17.7 14.3 32 32 32s32-14.3 32-32V64c0-17.7-14.3-32-32-32H224 32zM9.4 361.4c-12.5 12.5-12.5 32.8 0 45.3l64 64c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V416H320v32c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l64-64c12.5-12.5 12.5-32.8 0-45.3l-64-64c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6v32H128V320c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9l-64 64z"]},fW={prefix:"fas",iconName:"hat-wizard",icon:[512,512,[],"f6e8","M64 416L168.6 180.7c15.3-34.4 40.3-63.5 72-83.7l146.9-94c3-1.9 6.5-2.9 10-2.9C407.7 0 416 8.3 416 18.6v1.6c0 2.6-.5 5.1-1.4 7.5L354.8 176.9c-1.9 4.7-2.8 9.7-2.8 14.7c0 5.5 1.2 11 3.4 16.1L448 416H240.9l11.8-35.4 40.4-13.5c6.5-2.2 10.9-8.3 10.9-15.2s-4.4-13-10.9-15.2l-40.4-13.5-13.5-40.4C237 276.4 230.9 272 224 272s-13 4.4-15.2 10.9l-13.5 40.4-40.4 13.5C148.4 339 144 345.1 144 352s4.4 13 10.9 15.2l40.4 13.5L207.1 416H64zM279.6 141.5c-1.1-3.3-4.1-5.5-7.6-5.5s-6.5 2.2-7.6 5.5l-6.7 20.2-20.2 6.7c-3.3 1.1-5.5 4.1-5.5 7.6s2.2 6.5 5.5 7.6l20.2 6.7 6.7 20.2c1.1 3.3 4.1 5.5 7.6 5.5s6.5-2.2 7.6-5.5l6.7-20.2 20.2-6.7c3.3-1.1 5.5-4.1 5.5-7.6s-2.2-6.5-5.5-7.6l-20.2-6.7-6.7-20.2zM32 448H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32z"]},lW={prefix:"fas",iconName:"pen-fancy",icon:[512,512,[128395,10002],"f5ac","M373.5 27.1C388.5 9.9 410.2 0 433 0c43.6 0 79 35.4 79 79c0 22.8-9.9 44.6-27.1 59.6L277.7 319l-10.3-10.3-64-64L193 234.3 373.5 27.1zM170.3 256.9l10.4 10.4 64 64 10.4 10.4-19.2 83.4c-3.9 17.1-16.9 30.7-33.8 35.4L24.4 510.3l95.4-95.4c2.6 .7 5.4 1.1 8.3 1.1c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32c0 2.9 .4 5.6 1.1 8.3L1.7 487.6 51.5 310c4.7-16.9 18.3-29.9 35.4-33.8l83.4-19.2z"]},Jp={prefix:"fas",iconName:"person-digging",icon:[576,512,["digging"],"f85e","M304 64c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48zM9.8 214.8c5.1-12.2 19.1-18 31.4-12.9L60.7 210l22.9-38.1C99.9 144.6 129.3 128 161 128c51.4 0 97 32.9 113.3 81.7l34.6 103.7 79.3 33.1 34.2-45.6c6.4-8.5 16.6-13.3 27.2-12.8s20.3 6.4 25.8 15.5l96 160c5.9 9.9 6.1 22.2 .4 32.2s-16.3 16.2-27.8 16.2H288c-11.1 0-21.4-5.7-27.2-15.2s-6.4-21.2-1.4-31.1l16-32c5.4-10.8 16.5-17.7 28.6-17.7h32l22.5-30L22.8 246.2c-12.2-5.1-18-19.1-12.9-31.4zm82.8 91.8l112 48c11.8 5 19.4 16.6 19.4 29.4v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V405.1l-60.6-26-37 111c-5.6 16.8-23.7 25.8-40.5 20.2S-3.9 486.6 1.6 469.9l48-144 11-33 32 13.7z"]},uW=Jp,hW={prefix:"fas",iconName:"trash",icon:[448,512,[],"f1f8","M135.2 17.7L128 32H32C14.3 32 0 46.3 0 64S14.3 96 32 96H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H320l-7.2-14.3C307.4 6.8 296.3 0 284.2 0H163.8c-12.1 0-23.2 6.8-28.6 17.7zM416 128H32L53.2 467c1.6 25.3 22.6 45 47.9 45H346.9c25.3 0 46.3-19.7 47.9-45L416 128z"]},Ba={prefix:"fas",iconName:"gauge-simple",icon:[512,512,["gauge-simple-med","tachometer-average"],"f629","M512 256c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0S512 114.6 512 256zM320 352c0-26.9-16.5-49.9-40-59.3V88c0-13.3-10.7-24-24-24s-24 10.7-24 24V292.7c-23.5 9.5-40 32.5-40 59.3c0 35.3 28.7 64 64 64s64-28.7 64-64z"]},pW=Ba,mW=Ba,vW={prefix:"fas",iconName:"book-medical",icon:[448,512,[],"f7e6","M0 96C0 43 43 0 96 0H384h32c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384 96c-53 0-96-43-96-96V96zM64 416c0 17.7 14.3 32 32 32H352V384H96c-17.7 0-32 14.3-32 32zM208 112v48H160c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V224h48c8.8 0 16-7.2 16-16V176c0-8.8-7.2-16-16-16H272V112c0-8.8-7.2-16-16-16H224c-8.8 0-16 7.2-16 16z"]},dW={prefix:"fas",iconName:"poo",icon:[512,512,[128169],"f2fe","M268.9 .9c-5.5-.7-11 1.4-14.5 5.7s-4.6 10.1-2.8 15.4c2.8 8.2 4.3 16.9 4.3 26.1c0 44.1-35.7 79.9-79.8 80H160c-35.3 0-64 28.7-64 64c0 19.1 8.4 36.3 21.7 48H104c-39.8 0-72 32.2-72 72c0 23.2 11 43.8 28 57c-34.1 5.7-60 35.3-60 71c0 39.8 32.2 72 72 72H440c39.8 0 72-32.2 72-72c0-35.7-25.9-65.3-60-71c17-13.2 28-33.8 28-57c0-39.8-32.2-72-72-72H394.3c13.3-11.7 21.7-28.9 21.7-48c0-35.3-28.7-64-64-64h-5.5c3.5-10 5.5-20.8 5.5-32c0-48.6-36.2-88.8-83.1-95.1zM192 320c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm160-32c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm0 108.3c0 2.4-.7 4.8-2.2 6.7c-8.2 10.5-39.5 45-93.8 45s-85.6-34.6-93.8-45c-1.5-1.9-2.2-4.3-2.2-6.7c0-6.8 5.5-12.3 12.3-12.3H339.7c6.8 0 12.3 5.5 12.3 12.3z"]},Qp={prefix:"fas",iconName:"quote-right",icon:[448,512,[8221,"quote-right-alt"],"f10e","M448 296c0 66.3-53.7 120-120 120h-8c-17.7 0-32-14.3-32-32s14.3-32 32-32h8c30.9 0 56-25.1 56-56v-8H320c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64h64c35.3 0 64 28.7 64 64v32 32 72zm-256 0c0 66.3-53.7 120-120 120H64c-17.7 0-32-14.3-32-32s14.3-32 32-32h8c30.9 0 56-25.1 56-56v-8H64c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64h64c35.3 0 64 28.7 64 64v32 32 72z"]},HW=Qp,Da={prefix:"fas",iconName:"shirt",icon:[640,512,[128085,"t-shirt","tshirt"],"f553","M211.8 0c7.8 0 14.3 5.7 16.7 13.2C240.8 51.9 277.1 80 320 80s79.2-28.1 91.5-66.8C413.9 5.7 420.4 0 428.2 0h12.6c22.5 0 44.2 7.9 61.5 22.3L628.5 127.4c6.6 5.5 10.7 13.5 11.4 22.1s-2.1 17.1-7.8 23.6l-56 64c-11.4 13.1-31.2 14.6-44.6 3.5L480 197.7V448c0 35.3-28.7 64-64 64H224c-35.3 0-64-28.7-64-64V197.7l-51.5 42.9c-13.3 11.1-33.1 9.6-44.6-3.5l-56-64c-5.7-6.5-8.5-15-7.8-23.6s4.8-16.6 11.4-22.1L137.7 22.3C155 7.9 176.7 0 199.2 0h12.6z"]},zW=Da,gW=Da,VW={prefix:"fas",iconName:"cubes",icon:[576,512,[],"f1b3","M290.8 48.6l78.4 29.7L288 109.5 206.8 78.3l78.4-29.7c1.8-.7 3.8-.7 5.7 0zM136 92.5V204.7c-1.3 .4-2.6 .8-3.9 1.3l-96 36.4C14.4 250.6 0 271.5 0 294.7V413.9c0 22.2 13.1 42.3 33.5 51.3l96 42.2c14.4 6.3 30.7 6.3 45.1 0L288 457.5l113.5 49.9c14.4 6.3 30.7 6.3 45.1 0l96-42.2c20.3-8.9 33.5-29.1 33.5-51.3V294.7c0-23.3-14.4-44.1-36.1-52.4l-96-36.4c-1.3-.5-2.6-.9-3.9-1.3V92.5c0-23.3-14.4-44.1-36.1-52.4l-96-36.4c-12.8-4.8-26.9-4.8-39.7 0l-96 36.4C150.4 48.4 136 69.3 136 92.5zM392 210.6l-82.4 31.2V152.6L392 121v89.6zM154.8 250.9l78.4 29.7L152 311.7 70.8 280.6l78.4-29.7c1.8-.7 3.8-.7 5.7 0zm18.8 204.4V354.8L256 323.2v95.9l-82.4 36.2zM421.2 250.9c1.8-.7 3.8-.7 5.7 0l78.4 29.7L424 311.7l-81.2-31.1 78.4-29.7zM523.2 421.2l-77.6 34.1V354.8L528 323.2v90.7c0 3.2-1.9 6-4.8 7.3z"]},MW={prefix:"fas",iconName:"divide",icon:[448,512,[10135,247],"f529","M272 96c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zm0 320c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM400 288c17.7 0 32-14.3 32-32s-14.3-32-32-32H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H400z"]},Zp={prefix:"fas",iconName:"tenge-sign",icon:[384,512,[8376,"tenge"],"f7d7","M0 64C0 46.3 14.3 32 32 32H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64zM0 192c0-17.7 14.3-32 32-32H192 352c17.7 0 32 14.3 32 32s-14.3 32-32 32H224V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V224H32c-17.7 0-32-14.3-32-32z"]},CW=Zp,LW={prefix:"fas",iconName:"headphones",icon:[512,512,[127911],"f025","M256 80C149.9 80 62.4 159.4 49.6 262c9.4-3.8 19.6-6 30.4-6c26.5 0 48 21.5 48 48V432c0 26.5-21.5 48-48 48c-44.2 0-80-35.8-80-80V384 336 288C0 146.6 114.6 32 256 32s256 114.6 256 256v48 48 16c0 44.2-35.8 80-80 80c-26.5 0-48-21.5-48-48V304c0-26.5 21.5-48 48-48c10.8 0 21 2.1 30.4 6C449.6 159.4 362.1 80 256 80z"]},yW={prefix:"fas",iconName:"hands-holding",icon:[640,512,[],"f4c2","M80 104c0-22.1-17.9-40-40-40S0 81.9 0 104v56 64V325.5c0 25.5 10.1 49.9 28.1 67.9L128 493.3c12 12 28.3 18.7 45.3 18.7H240c26.5 0 48-21.5 48-48V385.1c0-29.7-11.8-58.2-32.8-79.2l-25.3-25.3 0 0-15.2-15.2-32-32c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l32 32 15.2 15.2c11 11 9.2 29.2-3.7 37.8c-9.7 6.5-22.7 5.2-31-3.1L98.7 309.5c-12-12-18.7-28.3-18.7-45.3V224 144 104zm480 0v40 80 40.2c0 17-6.7 33.3-18.7 45.3l-51.1 51.1c-8.3 8.3-21.3 9.6-31 3.1c-12.9-8.6-14.7-26.9-3.7-37.8l15.2-15.2 32-32c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-32 32-15.2 15.2 0 0-25.3 25.3c-21 21-32.8 49.5-32.8 79.2V464c0 26.5 21.5 48 48 48h66.7c17 0 33.3-6.7 45.3-18.7l99.9-99.9c18-18 28.1-42.4 28.1-67.9V224 160 104c0-22.1-17.9-40-40-40s-40 17.9-40 40z"]},bW={prefix:"fas",iconName:"hands-clapping",icon:[576,512,[],"e1a8","M368 16V80c0 8.8-7.2 16-16 16s-16-7.2-16-16V16c0-8.8 7.2-16 16-16s16 7.2 16 16zm-98.7 7.1l32 48c4.9 7.4 2.9 17.3-4.4 22.2s-17.3 2.9-22.2-4.4l-32-48c-4.9-7.4-2.9-17.3 4.4-22.2s17.3-2.9 22.2 4.4zM167 119c9.4-9.4 24.6-9.4 33.9 0L324.7 242.7c10.1 10.1 27.3 2.9 27.3-11.3V192c0-17.7 14.3-32 32-32s32 14.3 32 32V345.6c0 57.1-30 110-78.9 139.4c-64 38.4-145.8 28.3-198.5-24.4L39 361c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l53 53c6.1 6.1 16 6.1 22.1 0s6.1-16 0-22.1L55 265c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l93 93c6.1 6.1 16 6.1 22.1 0s6.1-16 0-22.1L87 185c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l117 117c6.1 6.1 16 6.1 22.1 0s6.1-16 0-22.1l-93-93c-9.4-9.4-9.4-24.6 0-33.9zM465.1 484.9c-24.2 14.5-50.9 22.1-77.7 23.1c48.1-39.6 76.6-99 76.6-162.4l0-98.1c8.2-.1 16-6.4 16-16V192c0-17.7 14.3-32 32-32s32 14.3 32 32V345.6c0 57.1-30 110-78.9 139.4zM456.9 18.7c7.4 4.9 9.3 14.8 4.4 22.2l-32 48c-4.9 7.4-14.8 9.3-22.2 4.4s-9.3-14.8-4.4-22.2l32-48c4.9-7.4 14.8-9.3 22.2-4.4z"]},xW={prefix:"fas",iconName:"republican",icon:[640,512,[],"f75e","M0 192C0 103.6 71.6 32 160 32H384c88.4 0 160 71.6 160 160v64H0V192zm415.9-64c-2.4 0-4.7 1.3-5.7 3.4l-12.6 24.6-28.2 4c-2.4 .3-4.4 2-5.2 4.2s-.1 4.7 1.6 6.3l20.4 19.2-4.8 27.1c-.4 2.3 .6 4.7 2.5 6s4.6 1.6 6.7 .5l25.2-12.8 25.2 12.8c2.2 1.1 4.8 .9 6.7-.5s3-3.7 2.5-6l-4.8-27.1L466 170.5c1.7-1.6 2.4-4.1 1.6-6.3s-2.8-3.9-5.2-4.2l-28.2-4-12.6-24.6c-1.1-2.1-3.3-3.4-5.7-3.4zm-138.3 3.4c-1.1-2.1-3.3-3.4-5.7-3.4s-4.7 1.3-5.7 3.4l-12.6 24.6-28.2 4c-2.4 .3-4.4 2-5.2 4.2s-.1 4.7 1.6 6.3l20.4 19.2-4.8 27.1c-.4 2.3 .6 4.7 2.5 6s4.6 1.6 6.7 .5l25.2-12.8 25.2 12.8c2.2 1.1 4.8 .9 6.7-.5s3-3.7 2.5-6l-4.8-27.1L322 170.5c1.7-1.6 2.4-4.1 1.6-6.3s-2.8-3.9-5.2-4.2l-28.2-4-12.6-24.6zM127.9 128c-2.4 0-4.7 1.3-5.7 3.4l-12.6 24.6-28.2 4c-2.4 .3-4.4 2-5.2 4.2s-.1 4.7 1.6 6.3l20.4 19.2-4.8 27.1c-.4 2.3 .6 4.7 2.5 6s4.6 1.6 6.7 .5l25.2-12.8 25.2 12.8c2.2 1.1 4.8 .9 6.7-.5s3-3.7 2.5-6l-4.8-27.1L178 170.5c1.7-1.6 2.4-4.1 1.6-6.3s-2.8-3.9-5.2-4.2l-28.2-4-12.6-24.6c-1.1-2.1-3.3-3.4-5.7-3.4zm.1 160H320h96 32 64 32v32 80c0 8.8 7.2 16 16 16s16-7.2 16-16V352c0-17.7 14.3-32 32-32s32 14.3 32 32v48c0 44.2-35.8 80-80 80s-80-35.8-80-80V352H448v32 64c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V384H128v64c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V384 288H128z"]},SW={prefix:"fas",iconName:"arrow-left",icon:[448,512,[8592],"f060","M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.2 288 416 288c17.7 0 32-14.3 32-32s-14.3-32-32-32l-306.7 0L214.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z"]},wW={prefix:"fas",iconName:"person-circle-xmark",icon:[576,512,[],"e543","M208 48c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48zM152 352V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5c-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152zM432 512c-79.5 0-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144s-64.5 144-144 144zm59.3-180.7c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L432 345.4l-36.7-36.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L409.4 368l-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L432 390.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L454.6 368l36.7-36.7z"]},NW={prefix:"fas",iconName:"ruler",icon:[512,512,[128207],"f545","M177.9 494.1c-18.7 18.7-49.1 18.7-67.9 0L17.9 401.9c-18.7-18.7-18.7-49.1 0-67.9l50.7-50.7 48 48c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-48-48 41.4-41.4 48 48c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-48-48 41.4-41.4 48 48c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-48-48 41.4-41.4 48 48c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-48-48 50.7-50.7c18.7-18.7 49.1-18.7 67.9 0l92.1 92.1c18.7 18.7 18.7 49.1 0 67.9L177.9 494.1z"]},AW={prefix:"fas",iconName:"align-left",icon:[448,512,[],"f036","M288 64c0 17.7-14.3 32-32 32H32C14.3 96 0 81.7 0 64S14.3 32 32 32H256c17.7 0 32 14.3 32 32zm0 256c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H256c17.7 0 32 14.3 32 32zM0 192c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32zM448 448c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z"]},_W={prefix:"fas",iconName:"dice-d6",icon:[448,512,[],"f6d1","M216.3 2c4.8-2.6 10.5-2.6 15.3 0L422.3 106c5.1 2.8 8.3 8.2 8.3 14s-3.2 11.2-8.3 14L231.7 238c-4.8 2.6-10.5 2.6-15.3 0L25.7 134c-5.1-2.8-8.3-8.2-8.3-14s3.2-11.2 8.3-14L216.3 2zM23.7 170l176 96c5.1 2.8 8.3 8.2 8.3 14V496c0 5.6-3 10.9-7.8 13.8s-10.9 3-15.8 .3L8.3 414C3.2 411.2 0 405.9 0 400V184c0-5.6 3-10.9 7.8-13.8s10.9-3 15.8-.3zm400.7 0c5-2.7 11-2.6 15.8 .3s7.8 8.1 7.8 13.8V400c0 5.9-3.2 11.2-8.3 14l-176 96c-5 2.7-11 2.6-15.8-.3s-7.8-8.1-7.8-13.8V280c0-5.9 3.2-11.2 8.3-14l176-96z"]},kW={prefix:"fas",iconName:"restroom",icon:[640,512,[],"f7bd","M176 48c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48zM120 352V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V325.2c-8.1 9.2-21.1 13.2-33.5 9.4c-16.9-5.3-26.3-23.2-21-40.1l30.9-99.1C44.9 155.3 82 128 124 128h8c42 0 79.1 27.3 91.6 67.4l30.9 99.1c5.3 16.9-4.1 34.8-21 40.1c-12.4 3.9-25.4-.2-33.5-9.4V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H120zM320 0c13.3 0 24 10.7 24 24V488c0 13.3-10.7 24-24 24s-24-10.7-24-24V24c0-13.3 10.7-24 24-24zM560 48c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48zM440 480V384H422.2c-10.9 0-18.6-10.7-15.2-21.1l9-26.9c-3.2 0-6.4-.5-9.5-1.5c-16.9-5.3-26.3-23.2-21-40.1l29.7-95.2C428.4 156.9 467.6 128 512 128s83.6 28.9 96.8 71.2l29.7 95.2c5.3 16.9-4.1 34.8-21 40.1c-3.2 1-6.4 1.5-9.5 1.5l9 26.9c3.5 10.4-4.3 21.1-15.2 21.1H584v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384H504v96c0 17.7-14.3 32-32 32s-32-14.3-32-32z"]},TW={prefix:"fas",iconName:"j",icon:[320,512,[106],"4a","M288 32c17.7 0 32 14.3 32 32V320c0 88.4-71.6 160-160 160S0 408.4 0 320V288c0-17.7 14.3-32 32-32s32 14.3 32 32v32c0 53 43 96 96 96s96-43 96-96V64c0-17.7 14.3-32 32-32z"]},PW={prefix:"fas",iconName:"users-viewfinder",icon:[640,512,[],"e595","M48 48h88c13.3 0 24-10.7 24-24s-10.7-24-24-24H32C14.3 0 0 14.3 0 32V136c0 13.3 10.7 24 24 24s24-10.7 24-24V48zM175.8 224c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zm-26.5 32C119.9 256 96 279.9 96 309.3c0 14.7 11.9 26.7 26.7 26.7h56.1c8-34.1 32.8-61.7 65.2-73.6c-7.5-4.1-16.2-6.4-25.3-6.4H149.3zm368 80c14.7 0 26.7-11.9 26.7-26.7c0-29.5-23.9-53.3-53.3-53.3H421.3c-9.2 0-17.8 2.3-25.3 6.4c32.4 11.9 57.2 39.5 65.2 73.6h56.1zm-89.4 0c-8.6-24.3-29.9-42.6-55.9-47c-3.9-.7-7.9-1-12-1H280c-4.1 0-8.1 .3-12 1c-26 4.4-47.3 22.7-55.9 47c-2.7 7.5-4.1 15.6-4.1 24c0 13.3 10.7 24 24 24H408c13.3 0 24-10.7 24-24c0-8.4-1.4-16.5-4.1-24zM464 224c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zm-80-32c0-35.3-28.7-64-64-64s-64 28.7-64 64s28.7 64 64 64s64-28.7 64-64zM504 48h88v88c0 13.3 10.7 24 24 24s24-10.7 24-24V32c0-17.7-14.3-32-32-32H504c-13.3 0-24 10.7-24 24s10.7 24 24 24zM48 464V376c0-13.3-10.7-24-24-24s-24 10.7-24 24V480c0 17.7 14.3 32 32 32H136c13.3 0 24-10.7 24-24s-10.7-24-24-24H48zm456 0c-13.3 0-24 10.7-24 24s10.7 24 24 24H608c17.7 0 32-14.3 32-32V376c0-13.3-10.7-24-24-24s-24 10.7-24 24v88H504z"]},EW={prefix:"fas",iconName:"file-video",icon:[384,512,[],"f1c8","M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM64 288c0-17.7 14.3-32 32-32h96c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V288zM300.9 397.9L256 368V304l44.9-29.9c2-1.3 4.4-2.1 6.8-2.1c6.8 0 12.3 5.5 12.3 12.3V387.7c0 6.8-5.5 12.3-12.3 12.3c-2.4 0-4.8-.7-6.8-2.1z"]},cm={prefix:"fas",iconName:"up-right-from-square",icon:[512,512,["external-link-alt"],"f35d","M352 0c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9L370.7 96 201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L416 141.3l41.4 41.4c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V32c0-17.7-14.3-32-32-32H352zM80 32C35.8 32 0 67.8 0 112V432c0 44.2 35.8 80 80 80H400c44.2 0 80-35.8 80-80V320c0-17.7-14.3-32-32-32s-32 14.3-32 32V432c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16H192c17.7 0 32-14.3 32-32s-14.3-32-32-32H80z"]},OW=cm,em={prefix:"fas",iconName:"table-cells",icon:[512,512,["th"],"f00a","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm88 64v64H64V96h88zm56 0h88v64H208V96zm240 0v64H360V96h88zM64 224h88v64H64V224zm232 0v64H208V224h88zm64 0h88v64H360V224zM152 352v64H64V352h88zm56 0h88v64H208V352zm240 0v64H360V352h88z"]},RW=em,FW={prefix:"fas",iconName:"file-pdf",icon:[384,512,[],"f1c1","M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM64 224H88c30.9 0 56 25.1 56 56s-25.1 56-56 56H80v32c0 8.8-7.2 16-16 16s-16-7.2-16-16V320 240c0-8.8 7.2-16 16-16zm24 80c13.3 0 24-10.7 24-24s-10.7-24-24-24H80v48h8zm72-64c0-8.8 7.2-16 16-16h24c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H176c-8.8 0-16-7.2-16-16V240zm32 112h8c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16h-8v96zm96-128h48c8.8 0 16 7.2 16 16s-7.2 16-16 16H304v32h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H304v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V304 240c0-8.8 7.2-16 16-16z"]},rm={prefix:"fas",iconName:"book-bible",icon:[448,512,["bible"],"f647","M96 0C43 0 0 43 0 96V416c0 53 43 96 96 96H384h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V384c17.7 0 32-14.3 32-32V32c0-17.7-14.3-32-32-32H384 96zm0 384H352v64H96c-17.7 0-32-14.3-32-32s14.3-32 32-32zM208 80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272V304c0 8.8-7.2 16-16 16H224c-8.8 0-16-7.2-16-16V192H160c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16h48V80z"]},BW=rm,DW={prefix:"fas",iconName:"o",icon:[448,512,[111],"4f","M224 96C135.6 96 64 167.6 64 256s71.6 160 160 160s160-71.6 160-160s-71.6-160-160-160zM0 256C0 132.3 100.3 32 224 32s224 100.3 224 224s-100.3 224-224 224S0 379.7 0 256z"]},am={prefix:"fas",iconName:"suitcase-medical",icon:[512,512,["medkit"],"f0fa","M184 48H328c4.4 0 8 3.6 8 8V96H176V56c0-4.4 3.6-8 8-8zm-56 8V96v32V480H384V128 96 56c0-30.9-25.1-56-56-56H184c-30.9 0-56 25.1-56 56zM96 96H64C28.7 96 0 124.7 0 160V416c0 35.3 28.7 64 64 64H96V96zM416 480h32c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H416V480zM224 208c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H288v48c0 8.8-7.2 16-16 16H240c-8.8 0-16-7.2-16-16V320H176c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h48V208z"]},IW=am,UW={prefix:"fas",iconName:"user-secret",icon:[448,512,[128373],"f21b","M224 16c-6.7 0-10.8-2.8-15.5-6.1C201.9 5.4 194 0 176 0c-30.5 0-52 43.7-66 89.4C62.7 98.1 32 112.2 32 128c0 14.3 25 27.1 64.6 35.9c-.4 4-.6 8-.6 12.1c0 17 3.3 33.2 9.3 48H45.4C38 224 32 230 32 237.4c0 1.7 .3 3.4 1 5l38.8 96.9C28.2 371.8 0 423.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c16.4 0 29.7-13.3 29.7-29.7c0-58.5-28.2-110.4-71.7-143L415 242.4c.6-1.6 1-3.3 1-5c0-7.4-6-13.4-13.4-13.4H342.7c6-14.8 9.3-31 9.3-48c0-4.1-.2-8.1-.6-12.1C391 155.1 416 142.3 416 128c0-15.8-30.7-29.9-78-38.6C324 43.7 302.5 0 272 0c-18 0-25.9 5.4-32.5 9.9c-4.7 3.3-8.8 6.1-15.5 6.1zm56 208H267.6c-16.5 0-31.1-10.6-36.3-26.2c-2.3-7-12.2-7-14.5 0c-5.2 15.6-19.9 26.2-36.3 26.2H168c-22.1 0-40-17.9-40-40V169.6c28.2 4.1 61 6.4 96 6.4s67.8-2.3 96-6.4V184c0 22.1-17.9 40-40 40zm-88 96l16 32L176 480 128 288l64 32zm128-32L272 480 240 352l16-32 64-32z"]},WW={prefix:"fas",iconName:"otter",icon:[640,512,[129446],"f700","M181.5 197.1l12.9 6.4c5.9 3 12.4 4.5 19.1 4.5c23.5 0 42.6-19.1 42.6-42.6V144c0-35.3-28.7-64-64-64H128c-35.3 0-64 28.7-64 64v21.4c0 23.5 19.1 42.6 42.6 42.6c6.6 0 13.1-1.5 19.1-4.5l12.9-6.4 8.4-4.2L135.1 185c-4.5-3-7.1-8-7.1-13.3V168c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24v3.7c0 5.3-2.7 10.3-7.1 13.3l-11.8 7.9 8.4 4.2zm-8.6 49.4L160 240l-12.9 6.4c-12.6 6.3-26.5 9.6-40.5 9.6c-3.6 0-7.1-.2-10.6-.6v.6c0 35.3 28.7 64 64 64h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384V336 320c0-23.7 12.9-44.4 32-55.4c9.4-5.4 20.3-8.6 32-8.6V240c0-26.5 21.5-48 48-48c8.8 0 16 7.2 16 16v32 16 48c0 8.8 7.2 16 16 16s16-7.2 16-16V204.3c0-48.2-30.8-91-76.6-106.3l-8.5-2.8c-8-2.7-12.6-11.1-10.4-19.3s10.3-13.2 18.6-11.6l19.9 4C576 86.1 640 164.2 640 254.9l0 1.1h0c0 123.7-100.3 224-224 224h-1.1H256h-.6C132 480 32 380 32 256.6V256 216.8c-10.1-14.6-16-32.3-16-51.4V144l0-1.4C6.7 139.3 0 130.5 0 120c0-13.3 10.7-24 24-24h2.8C44.8 58.2 83.3 32 128 32h64c44.7 0 83.2 26.2 101.2 64H296c13.3 0 24 10.7 24 24c0 10.5-6.7 19.3-16 22.6l0 1.4v21.4c0 1.4 0 2.8-.1 4.3c12-6.2 25.7-9.6 40.1-9.6h8c17.7 0 32 14.3 32 32s-14.3 32-32 32h-8c-13.3 0-24 10.7-24 24v8h56.4c-15.2 17-24.4 39.4-24.4 64H320c-42.3 0-78.2-27.4-91-65.3c-5.1 .9-10.3 1.3-15.6 1.3c-14.1 0-27.9-3.3-40.5-9.6zM96 160c-8.8 0-16-7.2-16-16s7.2-16 16-16s16 7.2 16 16s-7.2 16-16 16zm144-16c0 8.8-7.2 16-16 16s-16-7.2-16-16s7.2-16 16-16s16 7.2 16 16z"]},nm={prefix:"fas",iconName:"person-dress",icon:[320,512,["female"],"f182","M160 96c-26.5 0-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48s-21.5 48-48 48zM88 384H70.2c-10.9 0-18.6-10.7-15.2-21.1L93.3 248.1 59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l53.6-89.2c20.3-33.7 56.7-54.3 96-54.3h11.6c39.3 0 75.7 20.6 96 54.3l53.6 89.2c9.1 15.1 4.2 34.8-10.9 43.9s-34.8 4.2-43.9-10.9l-33.9-56.3L265 362.9c3.5 10.4-4.3 21.1-15.2 21.1H232v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384H152v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384z"]},$W=nm,qW={prefix:"fas",iconName:"comment-dollar",icon:[512,512,[],"f651","M256 448c141.4 0 256-93.1 256-208S397.4 32 256 32S0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9c-1.9 24.5-11.4 46.3-21.4 62.9c-5.5 9.2-11.1 16.6-15.2 21.6c-2.1 2.5-3.7 4.4-4.9 5.7c-.6 .6-1 1.1-1.3 1.4l-.3 .3 0 0 0 0 0 0 0 0c-4.6 4.6-5.9 11.4-3.4 17.4c2.5 6 8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3c22.9-10 42.4-21.9 54.3-30.6c31.8 11.5 67 17.9 104.1 17.9zm20-312v13.9c7.5 1.2 14.6 2.9 21.1 4.7c10.7 2.8 17 13.8 14.2 24.5s-13.8 17-24.5 14.2c-11-2.9-21.6-5-31.2-5.2c-7.9-.1-16 1.8-21.5 5c-4.8 2.8-6.2 5.6-6.2 9.3c0 1.8 .1 3.5 5.3 6.7c6.3 3.8 15.5 6.7 28.3 10.5l.7 .2c11.2 3.4 25.6 7.7 37.1 15c12.9 8.1 24.3 21.3 24.6 41.6c.3 20.9-10.5 36.1-24.8 45c-7.2 4.5-15.2 7.3-23.2 9V344c0 11-9 20-20 20s-20-9-20-20V329.4c-10.3-2.2-20-5.5-28.2-8.4l0 0 0 0c-2.1-.7-4.1-1.4-6.1-2.1c-10.5-3.5-16.1-14.8-12.6-25.3s14.8-16.1 25.3-12.6c2.5 .8 4.9 1.7 7.2 2.4c13.6 4.6 24 8.1 35.1 8.5c8.6 .3 16.5-1.6 21.4-4.7c4.1-2.5 6-5.5 5.9-10.5c0-2.9-.8-5-5.9-8.2c-6.3-4-15.4-6.9-28-10.7l-1.7-.5c-10.9-3.3-24.6-7.4-35.6-14c-12.7-7.7-24.6-20.5-24.7-40.7c-.1-21.1 11.8-35.7 25.8-43.9c6.9-4.1 14.5-6.8 22.2-8.5V136c0-11 9-20 20-20s20 9 20 20z"]},tm={prefix:"fas",iconName:"business-time",icon:[640,512,["briefcase-clock"],"f64a","M184 48H328c4.4 0 8 3.6 8 8V96H176V56c0-4.4 3.6-8 8-8zm-56 8V96H64C28.7 96 0 124.7 0 160v96H192 352h8.2c32.3-39.1 81.1-64 135.8-64c5.4 0 10.7 .2 16 .7V160c0-35.3-28.7-64-64-64H384V56c0-30.9-25.1-56-56-56H184c-30.9 0-56 25.1-56 56zM320 352H224c-17.7 0-32-14.3-32-32V288H0V416c0 35.3 28.7 64 64 64H360.2C335.1 449.6 320 410.5 320 368c0-5.4 .2-10.7 .7-16l-.7 0zm320 16c0-79.5-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144s144-64.5 144-144zM496 288c8.8 0 16 7.2 16 16v48h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H496c-8.8 0-16-7.2-16-16V304c0-8.8 7.2-16 16-16z"]},GW=tm,sm={prefix:"fas",iconName:"table-cells-large",icon:[512,512,["th-large"],"f009","M448 96V224H288V96H448zm0 192V416H288V288H448zM224 224H64V96H224V224zM64 288H224V416H64V288zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64z"]},jW=sm,im={prefix:"fas",iconName:"book-tanakh",icon:[448,512,["tanakh"],"f827","M352 0c53 0 96 43 96 96V416c0 53-43 96-96 96H64 32c-17.7 0-32-14.3-32-32s14.3-32 32-32V384c-17.7 0-32-14.3-32-32V32C0 14.3 14.3 0 32 0H64 352zm0 384H96v64H352c17.7 0 32-14.3 32-32s-14.3-32-32-32zM138.7 208l13.9 24H124.9l13.9-24zm-13.9-24L97.1 232c-6.2 10.7 1.5 24 13.9 24h55.4l27.7 48c6.2 10.7 21.6 10.7 27.7 0l27.7-48H305c12.3 0 20-13.3 13.9-24l-27.7-48 27.7-48c6.2-10.7-1.5-24-13.9-24H249.6L221.9 64c-6.2-10.7-21.6-10.7-27.7 0l-27.7 48H111c-12.3 0-20 13.3-13.9 24l27.7 48zm27.7 0l27.7-48h55.4l27.7 48-27.7 48H180.3l-27.7-48zm0-48l-13.9 24-13.9-24h27.7zm41.6-24L208 88l13.9 24H194.1zm69.3 24h27.7l-13.9 24-13.9-24zm13.9 72l13.9 24H263.4l13.9-24zm-55.4 48L208 280l-13.9-24h27.7z"]},KW=im,om={prefix:"fas",iconName:"phone-volume",icon:[512,512,["volume-control-phone"],"f2a0","M280 0C408.1 0 512 103.9 512 232c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-101.6-82.4-184-184-184c-13.3 0-24-10.7-24-24s10.7-24 24-24zm8 192a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm-32-72c0-13.3 10.7-24 24-24c75.1 0 136 60.9 136 136c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-48.6-39.4-88-88-88c-13.3 0-24-10.7-24-24zM117.5 1.4c19.4-5.3 39.7 4.6 47.4 23.2l40 96c6.8 16.3 2.1 35.2-11.6 46.3L144 207.3c33.3 70.4 90.3 127.4 160.7 160.7L345 318.7c11.2-13.7 30-18.4 46.3-11.6l96 40c18.6 7.7 28.5 28 23.2 47.4l-24 88C481.8 499.9 466 512 448 512C200.6 512 0 311.4 0 64C0 46 12.1 30.2 29.5 25.4l88-24z"]},XW=om,YW={prefix:"fas",iconName:"hat-cowboy-side",icon:[640,512,[],"f8c1","M463.2 71.3c-2.4-12.8-9.8-24.1-20.7-31.3s-24.2-9.7-36.9-6.8l-216 48c-19.8 4.4-34.7 20.8-37.2 40.9l-8.8 70.6c5.3-.4 10.8-.7 16.5-.7c82.9 0 141.9 55.3 197.5 107.5l0 0c3.1 3 6.3 5.9 9.4 8.8C427.1 364.5 486.9 416 576 416c0 0 64 0 64-48c0-96-112-128-144-128h-1.6L463.2 71.3zM576 448c-102.9 0-171.1-60.5-230.9-116.3l-6.5-6C279.9 270.8 229.9 224 160 224c-57.8 0-97.4 28.6-123.1 63.5C10.7 323 0 363.8 0 384c0 35.3 28.7 64 64 64H576z"]},JW={prefix:"fas",iconName:"clipboard-user",icon:[384,512,[],"f7f3","M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM128 256a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM80 432c0-44.2 35.8-80 80-80h64c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16z"]},QW={prefix:"fas",iconName:"child",icon:[320,512,[],"f1ae","M224 64c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zM144 384v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V287.8L59.1 321c-9.4 15-29.2 19.4-44.1 10S-4.5 301.9 4.9 287l39.9-63.3C69.7 184 113.2 160 160 160s90.3 24 115.2 63.6L315.1 287c9.4 15 4.9 34.7-10 44.1s-34.7 4.9-44.1-10L240 287.8V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V384H144z"]},ZW={prefix:"fas",iconName:"lira-sign",icon:[384,512,[8356],"f195","M144 160.4c0-35.5 28.8-64.4 64.4-64.4c6.9 0 13.8 1.1 20.4 3.3l81.2 27.1c16.8 5.6 34.9-3.5 40.5-20.2s-3.5-34.9-20.2-40.5L249 38.6c-13.1-4.4-26.8-6.6-40.6-6.6C137.5 32 80 89.5 80 160.4V192H64c-17.7 0-32 14.3-32 32s14.3 32 32 32H80v32H64c-17.7 0-32 14.3-32 32s14.3 32 32 32H78c-2.2 10.5-6.1 20.6-11.7 29.9L36.6 431.5c-5.9 9.9-6.1 22.2-.4 32.2S52.5 480 64 480H320c17.7 0 32-14.3 32-32s-14.3-32-32-32H120.5l.7-1.1c11.6-19.3 18.9-40.7 21.6-62.9H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H144V256H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H144V160.4z"]},c$={prefix:"fas",iconName:"satellite",icon:[512,512,[128752],"f7bf","M233 7c-9.4-9.4-24.6-9.4-33.9 0l-96 96c-9.4 9.4-9.4 24.6 0 33.9l89.4 89.4-15.5 15.5C152.3 230.4 124.9 224 96 224c-31.7 0-61.5 7.7-87.8 21.2c-9 4.7-10.3 16.7-3.1 23.8L112.7 376.7 96.3 393.1c-2.6-.7-5.4-1.1-8.3-1.1c-17.7 0-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32c0-2.9-.4-5.6-1.1-8.3l16.4-16.4L242.9 506.9c7.2 7.2 19.2 5.9 23.8-3.1C280.3 477.5 288 447.7 288 416c0-28.9-6.4-56.3-17.8-80.9l15.5-15.5L375 409c9.4 9.4 24.6 9.4 33.9 0l96-96c9.4-9.4 9.4-24.6 0-33.9l-89.4-89.4 55-55c12.5-12.5 12.5-32.8 0-45.3l-48-48c-12.5-12.5-32.8-12.5-45.3 0l-55 55L233 7zm159 351l-72.4-72.4 62.1-62.1L454.1 296 392 358.1zM226.3 192.4L153.9 120 216 57.9l72.4 72.4-62.1 62.1z"]},e$={prefix:"fas",iconName:"plane-lock",icon:[640,512,[],"e558","M192 93.7C192 59.5 221 0 256 0c36 0 64 59.5 64 93.7v84.6l101.8 58.2C418 247.6 416 259.6 416 272v24.6c-17.9 10.4-30.3 29.1-31.8 50.9L320 329.1V400l57.6 43.2c4 3 6.4 7.8 6.4 12.8v24 18c0 7.8-6.3 14-14 14c-1.3 0-2.6-.2-3.9-.5L256 480 145.9 511.5c-1.3 .4-2.6 .5-3.9 .5c-7.8 0-14-6.3-14-14V456c0-5 2.4-9.8 6.4-12.8L192 400l0-70.9-171.6 49C10.2 381.1 0 373.4 0 362.8V297.3c0-5.7 3.1-11 8.1-13.9L192 178.3V93.7zM528 240c-17.7 0-32 14.3-32 32v48h64V272c0-17.7-14.3-32-32-32zm-80 32c0-44.2 35.8-80 80-80s80 35.8 80 80v48c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32V272z"]},r$={prefix:"fas",iconName:"tag",icon:[448,512,[127991],"f02b","M0 80V229.5c0 17 6.7 33.3 18.7 45.3l176 176c25 25 65.5 25 90.5 0L418.7 317.3c25-25 25-65.5 0-90.5l-176-176c-12-12-28.3-18.7-45.3-18.7H48C21.5 32 0 53.5 0 80zm112 96c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},a$={prefix:"fas",iconName:"comment",icon:[512,512,[128489,61669],"f075","M512 240c0 114.9-114.6 208-256 208c-37.1 0-72.3-6.4-104.1-17.9c-11.9 8.7-31.3 20.6-54.3 30.6C73.6 471.1 44.7 480 16 480c-6.5 0-12.3-3.9-14.8-9.9c-2.5-6-1.1-12.8 3.4-17.4l0 0 0 0 0 0 0 0 .3-.3c.3-.3 .7-.7 1.3-1.4c1.1-1.2 2.8-3.1 4.9-5.7c4.1-5 9.6-12.4 15.2-21.6c10-16.6 19.5-38.4 21.4-62.9C17.7 326.8 0 285.1 0 240C0 125.1 114.6 32 256 32s256 93.1 256 208z"]},Ia={prefix:"fas",iconName:"cake-candles",icon:[448,512,[127874,"birthday-cake","cake"],"f1fd","M86.4 5.5L61.8 47.6C58 54.1 56 61.6 56 69.2V72c0 22.1 17.9 40 40 40s40-17.9 40-40V69.2c0-7.6-2-15-5.8-21.6L105.6 5.5C103.6 2.1 100 0 96 0s-7.6 2.1-9.6 5.5zm128 0L189.8 47.6c-3.8 6.5-5.8 14-5.8 21.6V72c0 22.1 17.9 40 40 40s40-17.9 40-40V69.2c0-7.6-2-15-5.8-21.6L233.6 5.5C231.6 2.1 228 0 224 0s-7.6 2.1-9.6 5.5zM317.8 47.6c-3.8 6.5-5.8 14-5.8 21.6V72c0 22.1 17.9 40 40 40s40-17.9 40-40V69.2c0-7.6-2-15-5.8-21.6L361.6 5.5C359.6 2.1 356 0 352 0s-7.6 2.1-9.6 5.5L317.8 47.6zM128 176c0-17.7-14.3-32-32-32s-32 14.3-32 32v48c-35.3 0-64 28.7-64 64v71c8.3 5.2 18.1 9 28.8 9c13.5 0 27.2-6.1 38.4-13.4c5.4-3.5 9.9-7.1 13-9.7c1.5-1.3 2.7-2.4 3.5-3.1c.4-.4 .7-.6 .8-.8l.1-.1 0 0 0 0s0 0 0 0s0 0 0 0c3.1-3.2 7.4-4.9 11.9-4.8s8.6 2.1 11.6 5.4l0 0 0 0 .1 .1c.1 .1 .4 .4 .7 .7c.7 .7 1.7 1.7 3.1 3c2.8 2.6 6.8 6.1 11.8 9.5c10.2 7.1 23 13.1 36.3 13.1s26.1-6 36.3-13.1c5-3.5 9-6.9 11.8-9.5c1.4-1.3 2.4-2.3 3.1-3c.3-.3 .6-.6 .7-.7l.1-.1c3-3.5 7.4-5.4 12-5.4s9 2 12 5.4l.1 .1c.1 .1 .4 .4 .7 .7c.7 .7 1.7 1.7 3.1 3c2.8 2.6 6.8 6.1 11.8 9.5c10.2 7.1 23 13.1 36.3 13.1s26.1-6 36.3-13.1c5-3.5 9-6.9 11.8-9.5c1.4-1.3 2.4-2.3 3.1-3c.3-.3 .6-.6 .7-.7l.1-.1c2.9-3.4 7.1-5.3 11.6-5.4s8.7 1.6 11.9 4.8l0 0 0 0 0 0 .1 .1c.2 .2 .4 .4 .8 .8c.8 .7 1.9 1.8 3.5 3.1c3.1 2.6 7.5 6.2 13 9.7c11.2 7.3 24.9 13.4 38.4 13.4c10.7 0 20.5-3.9 28.8-9V288c0-35.3-28.7-64-64-64V176c0-17.7-14.3-32-32-32s-32 14.3-32 32v48H256V176c0-17.7-14.3-32-32-32s-32 14.3-32 32v48H128V176zM448 394.6c-8.5 3.3-18.2 5.4-28.8 5.4c-22.5 0-42.4-9.9-55.8-18.6c-4.1-2.7-7.8-5.4-10.9-7.8c-2.8 2.4-6.1 5-9.8 7.5C329.8 390 310.6 400 288 400s-41.8-10-54.6-18.9c-3.5-2.4-6.7-4.9-9.4-7.2c-2.7 2.3-5.9 4.7-9.4 7.2C201.8 390 182.6 400 160 400s-41.8-10-54.6-18.9c-3.7-2.6-7-5.2-9.8-7.5c-3.1 2.4-6.8 5.1-10.9 7.8C71.2 390.1 51.3 400 28.8 400c-10.6 0-20.3-2.2-28.8-5.4V480c0 17.7 14.3 32 32 32H416c17.7 0 32-14.3 32-32V394.6z"]},n$=Ia,t$=Ia,s$={prefix:"fas",iconName:"envelope",icon:[512,512,[128386,9993,61443],"f0e0","M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0L492.8 150.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48H48zM0 176V384c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V176L294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176z"]},fm={prefix:"fas",iconName:"angles-up",icon:[448,512,["angle-double-up"],"f102","M246.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L224 109.3 361.4 246.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-160-160zm160 352l-160-160c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L224 301.3 361.4 438.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3z"]},i$=fm,o$={prefix:"fas",iconName:"paperclip",icon:[512,512,[128206],"f0c6","M396.2 83.8c-24.4-24.4-64-24.4-88.4 0l-184 184c-42.1 42.1-42.1 110.3 0 152.4s110.3 42.1 152.4 0l152-152c10.9-10.9 28.7-10.9 39.6 0s10.9 28.7 0 39.6l-152 152c-64 64-167.6 64-231.6 0s-64-167.6 0-231.6l184-184c46.3-46.3 121.3-46.3 167.6 0s46.3 121.3 0 167.6l-176 176c-28.6 28.6-75 28.6-103.6 0s-28.6-75 0-103.6l144-144c10.9-10.9 28.7-10.9 39.6 0s10.9 28.7 0 39.6l-144 144c-6.7 6.7-6.7 17.7 0 24.4s17.7 6.7 24.4 0l176-176c24.4-24.4 24.4-64 0-88.4z"]},f$={prefix:"fas",iconName:"arrow-right-to-city",icon:[640,512,[],"e4b3","M288 48c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48V192h40V120c0-13.3 10.7-24 24-24s24 10.7 24 24v72h24c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H432 336c-26.5 0-48-21.5-48-48V48zm64 32v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16zm16 80c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V176c0-8.8-7.2-16-16-16H368zM352 272v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16zm176-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H528zM512 368v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H528c-8.8 0-16 7.2-16 16zM166.6 153.4l80 80c12.5 12.5 12.5 32.8 0 45.3l-80 80c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L146.7 288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H146.7l-25.4-25.4c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0z"]},l$={prefix:"fas",iconName:"ribbon",icon:[448,512,[127895],"f4d6","M224 96c39.5 0 66.8 12.2 81.9 21.5L245.6 184l79.3 87.4 36.3-40c14.7-16.2 22.8-37.3 22.8-59.1v-27c0-15.6-4.1-30.8-12-44.3L337.7 42C326.4 22.7 307 6.8 282.1 3.5C267.8 1.6 248.4 0 224 0s-43.8 1.6-58 3.5C141 6.8 121.7 22.7 110.4 42L76 101c-7.8 13.4-12 28.7-12 44.3v27c0 21.9 8.1 42.9 22.8 59.1l57.9 63.8L224 382.6 334.2 504.1c6.4 7 16.3 9.7 25.4 6.6l72-24c7.7-2.6 13.6-8.8 15.6-16.7s0-16.2-5.4-22.2L303.3 295.2 224 207.8l-81.9-90.3C157.3 108.2 184.5 96 224 96zM202.4 406.5L123.2 319 6.3 447.9c-5.4 6-7.5 14.4-5.4 22.2s7.9 14.1 15.6 16.7l72 24c9 3 19 .4 25.4-6.6l88.6-97.7z"]},u$={prefix:"fas",iconName:"lungs",icon:[640,512,[129729],"f604","M320 0c17.7 0 32 14.3 32 32V164.1c0 16.4 8.4 31.7 22.2 40.5l9.8 6.2V165.3C384 127 415 96 453.3 96c21.7 0 42.8 10.2 55.8 28.8c15.4 22.1 44.3 65.4 71 116.9c26.5 50.9 52.4 112.5 59.6 170.3c.2 1.3 .2 2.6 .2 4v7c0 49.1-39.8 89-89 89c-7.3 0-14.5-.9-21.6-2.7l-72.7-18.2C414 480.5 384 442.1 384 398V325l90.5 57.6c7.5 4.7 17.3 2.5 22.1-4.9s2.5-17.3-4.9-22.1L384 287.1v-.4l-44.1-28.1c-7.3-4.6-13.9-10.1-19.9-16.1c-5.9 6-12.6 11.5-19.9 16.1L256 286.7 161.2 347l-13.5 8.6c0 0 0 0-.1 0c-7.4 4.8-9.6 14.6-4.8 22.1c4.7 7.5 14.6 9.7 22.1 4.9l91.1-58V398c0 44.1-30 82.5-72.7 93.1l-72.7 18.2c-7.1 1.8-14.3 2.7-21.6 2.7c-49.1 0-89-39.8-89-89v-7c0-1.3 .1-2.7 .2-4c7.2-57.9 33.1-119.4 59.6-170.3c26.8-51.5 55.6-94.8 71-116.9c13-18.6 34-28.8 55.8-28.8C225 96 256 127 256 165.3v45.5l9.8-6.2c13.8-8.8 22.2-24.1 22.2-40.5V32c0-17.7 14.3-32 32-32z"]},lm={prefix:"fas",iconName:"arrow-up-9-1",icon:[576,512,["sort-numeric-up-alt"],"f887","M160 32c9 0 17.5 3.8 23.6 10.4l88 96c11.9 13 11.1 33.3-2 45.2s-33.3 11.1-45.2-2L192 146.3V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V146.3L95.6 181.6c-11.9 13-32.2 13.9-45.2 2s-13.9-32.2-2-45.2l88-96C142.5 35.8 151 32 160 32zM352 320c0-17.7 14.3-32 32-32h48c17.7 0 32 14.3 32 32v96h16c17.7 0 32 14.3 32 32s-14.3 32-32 32H432 384c-17.7 0-32-14.3-32-32s14.3-32 32-32h16V352H384c-17.7 0-32-14.3-32-32zm93.7-171.1c10.8-5.1 18.3-16.2 18.3-28.9c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32c4.9 0 9.6-1.1 13.7-3.1zm-40.7 54.9C369.6 192.4 344 159.2 344 120c0-48.6 39.4-88 88-88s88 39.4 88 88c0 23.5-7.5 46.3-21.5 65.2L449.7 251c-10.5 14.2-30.6 17.2-44.8 6.7s-17.2-30.6-6.7-44.8l6.8-9.2z"]},h$=lm,p$={prefix:"fas",iconName:"litecoin-sign",icon:[448,512,[],"e1d3","M160 64c0-17.7-14.3-32-32-32s-32 14.3-32 32V213.6L55.2 225.2c-17 4.9-26.8 22.6-22 39.6s22.6 26.8 39.6 22L96 280.1V448c0 17.7 14.3 32 32 32H384c17.7 0 32-14.3 32-32s-14.3-32-32-32H160V261.9l136.8-39.1c17-4.9 26.8-22.6 22-39.6s-22.6-26.8-39.6-22L160 195.3V64z"]},m$={prefix:"fas",iconName:"border-none",icon:[448,512,[],"f850","M32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32s-14.3-32-32-32zm96 64c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm0-384c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm0 128c-17.7 0-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32s-14.3-32-32-32zM320 480c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm0-448c-17.7 0-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32s-14.3-32-32-32zm0 256c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zM224 416c-17.7 0-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32s-14.3-32-32-32zm0-320c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm0 128c-17.7 0-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32s-14.3-32-32-32zM416 480c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm0-384c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zM32 32C14.3 32 0 46.3 0 64S14.3 96 32 96s32-14.3 32-32s-14.3-32-32-32zM416 288c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zM32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32s-14.3-32-32-32zM224 384c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm192-64c-17.7 0-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32s-14.3-32-32-32zM32 384c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zM416 128c-17.7 0-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32s-14.3-32-32-32zM32 192c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm192-64c-17.7 0-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32s-14.3-32-32-32z"]},v$={prefix:"fas",iconName:"circle-nodes",icon:[512,512,[],"e4e2","M418.4 157.9c35.3-8.3 61.6-40 61.6-77.9c0-44.2-35.8-80-80-80c-43.4 0-78.7 34.5-80 77.5L136.2 151.1C121.7 136.8 101.9 128 80 128c-44.2 0-80 35.8-80 80s35.8 80 80 80c12.2 0 23.8-2.7 34.1-7.6L259.7 407.8c-2.4 7.6-3.7 15.8-3.7 24.2c0 44.2 35.8 80 80 80s80-35.8 80-80c0-27.7-14-52.1-35.4-66.4l37.8-207.7zM156.3 232.2c2.2-6.9 3.5-14.2 3.7-21.7l183.8-73.5c3.6 3.5 7.4 6.7 11.6 9.5L317.6 354.1c-5.5 1.3-10.8 3.1-15.8 5.5L156.3 232.2z"]},d$={prefix:"fas",iconName:"parachute-box",icon:[512,512,[],"f4cd","M383.5 192c.3-5.3 .5-10.6 .5-16c0-51-15.9-96-40.2-127.6C319.5 16.9 288.2 0 256 0s-63.5 16.9-87.8 48.4C143.9 80 128 125 128 176c0 5.4 .2 10.7 .5 16H240V320H208c-7 0-13.7 1.5-19.7 4.2L68.2 192H96.5c-.3-5.3-.5-10.6-.5-16c0-64 22.2-121.2 57.1-159.3C62 49.3 18.6 122.6 4.2 173.6C1.5 183.1 9 192 18.9 192h6L165.2 346.3c-3.3 6.5-5.2 13.9-5.2 21.7v96c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48V368c0-7.8-1.9-15.2-5.2-21.7L487.1 192h6c9.9 0 17.4-8.9 14.7-18.4C493.4 122.6 450 49.3 358.9 16.7C393.8 54.8 416 112.1 416 176c0 5.4-.2 10.7-.5 16h28.3L323.7 324.2c-6-2.7-12.7-4.2-19.7-4.2H272V192H383.5z"]},H$={prefix:"fas",iconName:"indent",icon:[448,512,[],"f03c","M0 64C0 46.3 14.3 32 32 32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64zM192 192c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32zm32 96H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zM0 448c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32zM127.8 268.6L25.8 347.9C15.3 356.1 0 348.6 0 335.3V176.7c0-13.3 15.3-20.8 25.8-12.6l101.9 79.3c8.2 6.4 8.2 18.9 0 25.3z"]},z$={prefix:"fas",iconName:"truck-field-un",icon:[640,512,[],"e58e","M96 32C60.7 32 32 60.7 32 96v32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32v32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64c0 53 43 96 96 96s96-43 96-96H384c0 53 43 96 96 96s96-43 96-96h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V288c0-35.3-28.7-64-64-64h-4.2c-.4-1.1-.9-2.1-1.3-3.2L485.7 102c-10.3-23.1-33.2-38-58.5-38H375.4C364.4 44.9 343.7 32 320 32H96zm288 96h43.2l42.7 96H384V128zM208 384c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48zm272 48c-26.5 0-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48s-21.5 48-48 48zM253.3 135.1l34.7 52V144c0-8.8 7.2-16 16-16s16 7.2 16 16v96c0 7.1-4.6 13.3-11.4 15.3s-14-.6-17.9-6.4l-34.7-52V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V144c0-7.1 4.6-13.3 11.4-15.3s14 .6 17.9 6.4zM128 144v64c0 8.8 7.2 16 16 16s16-7.2 16-16V144c0-8.8 7.2-16 16-16s16 7.2 16 16v64c0 26.5-21.5 48-48 48s-48-21.5-48-48V144c0-8.8 7.2-16 16-16s16 7.2 16 16z"]},um={prefix:"fas",iconName:"hourglass",icon:[384,512,[9203,62032,"hourglass-empty"],"f254","M0 32C0 14.3 14.3 0 32 0H64 320h32c17.7 0 32 14.3 32 32s-14.3 32-32 32V75c0 42.4-16.9 83.1-46.9 113.1L237.3 256l67.9 67.9c30 30 46.9 70.7 46.9 113.1v11c17.7 0 32 14.3 32 32s-14.3 32-32 32H320 64 32c-17.7 0-32-14.3-32-32s14.3-32 32-32V437c0-42.4 16.9-83.1 46.9-113.1L146.7 256 78.9 188.1C48.9 158.1 32 117.4 32 75V64C14.3 64 0 49.7 0 32zM96 64V75c0 25.5 10.1 49.9 28.1 67.9L192 210.7l67.9-67.9c18-18 28.1-42.4 28.1-67.9V64H96zm0 384H288V437c0-25.5-10.1-49.9-28.1-67.9L192 301.3l-67.9 67.9c-18 18-28.1 42.4-28.1 67.9v11z"]},g$=um,V$={prefix:"fas",iconName:"mountain",icon:[512,512,[127956],"f6fc","M256 32c12.5 0 24.1 6.4 30.7 17L503.4 394.4c5.6 8.9 8.6 19.2 8.6 29.7c0 30.9-25 55.9-55.9 55.9H55.9C25 480 0 455 0 424.1c0-10.5 3-20.8 8.6-29.7L225.2 49c6.6-10.6 18.3-17 30.8-17zm65 192L256 120.4 176.9 246.5 208 288l48-64h65z"]},hm={prefix:"fas",iconName:"user-doctor",icon:[448,512,["user-md"],"f0f0","M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0S96 57.3 96 128s57.3 128 128 128zm-96 55.2C54 332.9 0 401.3 0 482.3C0 498.7 13.3 512 29.7 512H418.3c16.4 0 29.7-13.3 29.7-29.7c0-81-54-149.4-128-171.1V362c27.6 7.1 48 32.2 48 62v40c0 8.8-7.2 16-16 16H336c-8.8 0-16-7.2-16-16s7.2-16 16-16V424c0-17.7-14.3-32-32-32s-32 14.3-32 32v24c8.8 0 16 7.2 16 16s-7.2 16-16 16H256c-8.8 0-16-7.2-16-16V424c0-29.8 20.4-54.9 48-62V304.9c-6-.6-12.1-.9-18.3-.9H178.3c-6.2 0-12.3 .3-18.3 .9v65.4c23.1 6.9 40 28.3 40 53.7c0 30.9-25.1 56-56 56s-56-25.1-56-56c0-25.4 16.9-46.8 40-53.7V311.2zM144 448c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24z"]},M$=hm,pm={prefix:"fas",iconName:"circle-info",icon:[512,512,["info-circle"],"f05a","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM216 336h24V272H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h48c13.3 0 24 10.7 24 24v88h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-144c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},C$=pm,L$={prefix:"fas",iconName:"cloud-meatball",icon:[512,512,[],"f73b","M0 224c0 53 43 96 96 96h44.7c9.5-23.5 32.5-40 59.3-40c2 0 3.9 .1 5.8 .3C217.6 265.5 235.7 256 256 256s38.4 9.5 50.2 24.3c1.9-.2 3.9-.3 5.8-.3c26.9 0 49.9 16.5 59.3 40H416c53 0 96-43 96-96s-43-96-96-96c-.5 0-1.1 0-1.6 0c1.1-5.2 1.6-10.5 1.6-16c0-44.2-35.8-80-80-80c-24.3 0-46.1 10.9-60.8 28C256.5 24.3 219.1 0 176 0C114.1 0 64 50.1 64 112c0 7.1 .7 14.1 1.9 20.8C27.6 145.4 0 181.5 0 224zm288 96c0-17.7-14.3-32-32-32s-32 14.3-32 32c0 1 .1 2.1 .1 3.1c-.7-.8-1.4-1.6-2.1-2.3c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3c.7 .7 1.5 1.4 2.3 2.1c-1-.1-2.1-.1-3.1-.1c-17.7 0-32 14.3-32 32s14.3 32 32 32c1 0 2.1-.1 3.1-.1c-.8 .7-1.6 1.3-2.3 2.1c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0c.7-.7 1.4-1.5 2.1-2.3c-.1 1-.1 2.1-.1 3.1c0 17.7 14.3 32 32 32s32-14.3 32-32c0-1-.1-2.1-.1-3.1c.7 .8 1.3 1.6 2.1 2.3c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3c-.7-.7-1.5-1.4-2.3-2.1c1 .1 2.1 .1 3.1 .1c17.7 0 32-14.3 32-32s-14.3-32-32-32c-1 0-2.1 .1-3.1 .1c.8-.7 1.6-1.3 2.3-2.1c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0c-.7 .7-1.4 1.5-2.1 2.3c.1-1 .1-2.1 .1-3.1zM48 448c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zm416 0c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48z"]},mm={prefix:"fas",iconName:"camera",icon:[512,512,[62258,"camera-alt"],"f030","M149.1 64.8L138.7 96H64C28.7 96 0 124.7 0 160V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H373.3L362.9 64.8C356.4 45.2 338.1 32 317.4 32H194.6c-20.7 0-39 13.2-45.5 32.8zM256 384c-53 0-96-43-96-96s43-96 96-96s96 43 96 96s-43 96-96 96z"]},y$=mm,b$={prefix:"fas",iconName:"square-virus",icon:[448,512,[],"e578","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM223.8 93.7c13.3 0 24 10.7 24 24c0 29.3 35.4 43.9 56.1 23.2c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9c-20.7 20.7-6 56.1 23.2 56.1c13.3 0 24 10.7 24 24s-10.7 24-24 24c-29.3 0-43.9 35.4-23.2 56.1c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0c-20.7-20.7-56.1-6-56.1 23.2c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-29.3-35.4-43.9-56.1-23.2c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9c20.7-20.7 6-56.1-23.2-56.1c-13.3 0-24-10.7-24-24s10.7-24 24-24c29.3 0 43.9-35.4 23.2-56.1c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0c20.7 20.7 56.1 6 56.1-23.2c0-13.3 10.7-24 24-24zM192 256c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm88 32c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24z"]},x$={prefix:"fas",iconName:"meteor",icon:[512,512,[9732],"f753","M493.7 .9L299.4 75.6l2.3-29.3c1-12.8-12.8-21.5-24-15.1L101.3 133.4C38.6 169.7 0 236.6 0 309C0 421.1 90.9 512 203 512c72.4 0 139.4-38.6 175.7-101.3L480.8 234.3c6.5-11.1-2.2-25-15.1-24l-29.3 2.3L511.1 18.3c.6-1.5 .9-3.2 .9-4.8C512 6 506 0 498.5 0c-1.7 0-3.3 .3-4.8 .9zM192 448c-70.7 0-128-57.3-128-128s57.3-128 128-128s128 57.3 128 128s-57.3 128-128 128zm0-160c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zm16 96c8.8 0 16-7.2 16-16s-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16z"]},S$={prefix:"fas",iconName:"car-on",icon:[512,512,[],"e4dd","M280 24c0-13.3-10.7-24-24-24s-24 10.7-24 24v80c0 13.3 10.7 24 24 24s24-10.7 24-24V24zM185.8 224H326.2c6.8 0 12.8 4.3 15.1 10.6L360.3 288H151.7l19.1-53.4c2.3-6.4 8.3-10.6 15.1-10.6zm-75.3-10.9L82.2 292.4C62.1 300.9 48 320.8 48 344v40 64 32c0 17.7 14.3 32 32 32H96c17.7 0 32-14.3 32-32V448H384v32c0 17.7 14.3 32 32 32h16c17.7 0 32-14.3 32-32V448 384 344c0-23.2-14.1-43.1-34.2-51.6l-28.3-79.3C390.1 181.3 360 160 326.2 160H185.8c-33.8 0-64 21.3-75.3 53.1zM128 392c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zm280-24c0 13.3-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24zM39 39c-9.4 9.4-9.4 24.6 0 33.9l48 48c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L73 39c-9.4-9.4-24.6-9.4-33.9 0zm400 0L391 87c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l48-48c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0z"]},w$={prefix:"fas",iconName:"sleigh",icon:[640,512,[],"f7cc","M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96V256c0 53 43 96 96 96v32h64V352H384v32h64V352c53 0 96-43 96-96V160c17.7 0 32-14.3 32-32s-14.3-32-32-32H512 480c-17.7 0-32 14.3-32 32v41.3c0 30.2-24.5 54.7-54.7 54.7c-75.5 0-145.6-38.9-185.6-102.9l-4.3-6.9C174.2 67.6 125 37.6 70.7 32.7c-2.2-.5-4.4-.7-6.7-.7H55 32zM640 384c0-17.7-14.3-32-32-32s-32 14.3-32 32v8c0 13.3-10.7 24-24 24H64c-17.7 0-32 14.3-32 32s14.3 32 32 32H552c48.6 0 88-39.4 88-88v-8z"]},Ua={prefix:"fas",iconName:"arrow-down-1-9",icon:[576,512,["sort-numeric-asc","sort-numeric-down"],"f162","M352 64c0 17.7 14.3 32 32 32h16v64H384c-17.7 0-32 14.3-32 32s14.3 32 32 32h48 48c17.7 0 32-14.3 32-32s-14.3-32-32-32H464V64c0-17.7-14.3-32-32-32H384c-17.7 0-32 14.3-32 32zM160 480c9 0 17.5-3.8 23.6-10.4l88-96c11.9-13 11.1-33.3-2-45.2s-33.3-11.1-45.2 2L192 365.7V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V365.7L95.6 330.4c-11.9-13-32.2-13.9-45.2-2s-13.9 32.2-2 45.2l88 96C142.5 476.2 151 480 160 480zM445.7 364.9c-4.2 2-8.8 3.1-13.7 3.1c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32c0 12.8-7.5 23.8-18.3 28.9zm-40.7 54.9l-6.8 9.2c-10.5 14.2-7.5 34.2 6.7 44.8s34.2 7.5 44.8-6.7l48.8-65.8c14-18.9 21.5-41.7 21.5-65.2c0-48.6-39.4-88-88-88s-88 39.4-88 88c0 39.2 25.6 72.4 61.1 83.8z"]},N$=Ua,A$=Ua,vm={prefix:"fas",iconName:"hand-holding-droplet",icon:[576,512,["hand-holding-water"],"f4c1","M275.5 6.6C278.3 2.5 283 0 288 0s9.7 2.5 12.5 6.6L366.8 103C378 119.3 384 138.6 384 158.3V160c0 53-43 96-96 96s-96-43-96-96v-1.7c0-19.8 6-39 17.2-55.3L275.5 6.6zM568.2 336.3c13.1 17.8 9.3 42.8-8.5 55.9L433.1 485.5c-23.4 17.2-51.6 26.5-80.7 26.5H192 32c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32H68.8l44.9-36c22.7-18.2 50.9-28 80-28H272h16 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H288 272c-8.8 0-16 7.2-16 16s7.2 16 16 16H392.6l119.7-88.2c17.8-13.1 42.8-9.3 55.9 8.5zM193.6 384l0 0-.9 0c.3 0 .6 0 .9 0z"]},_$=vm,k$={prefix:"fas",iconName:"water",icon:[576,512,[],"f773","M269.5 69.9c11.1-7.9 25.9-7.9 37 0C329 85.4 356.5 96 384 96c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 149.7 417 160 384 160c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4C42.8 92.6 61 83.5 75.3 71.6c11.1-9.5 27.3-10.1 39.2-1.7l0 0C136.7 85.2 165.1 96 192 96c27.5 0 55-10.6 77.5-26.1zm37 288C329 373.4 356.5 384 384 384c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 437.7 417 448 384 448c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 373.2 165.1 384 192 384c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0zm0-144C329 229.4 356.5 240 384 240c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 293.7 417 304 384 304c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.5 27.3-10.1 39.2-1.7l0 0C136.7 229.2 165.1 240 192 240c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z"]},T$={prefix:"fas",iconName:"calendar-check",icon:[448,512,[],"f274","M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zM329 305c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-95 95-47-47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0L329 305z"]},P$={prefix:"fas",iconName:"braille",icon:[640,512,[],"f2a1","M128 96c0 35.3-28.7 64-64 64S0 131.3 0 96S28.7 32 64 32s64 28.7 64 64zm96 176c8.8 0 16-7.2 16-16s-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16zm0 48c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64zM80 416c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zm48 0c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zm112 0c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zm48 0c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zM64 320c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64zM224 160c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64zM480 96c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zm112 0c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zm48 0c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zM576 272c8.8 0 16-7.2 16-16s-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16zm0 48c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64zm16 96c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zm48 0c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zM416 272c8.8 0 16-7.2 16-16s-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16zm0 48c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64zm16 96c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zm48 0c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64z"]},dm={prefix:"fas",iconName:"prescription-bottle-medical",icon:[384,512,["prescription-bottle-alt"],"f486","M0 32C0 14.3 14.3 0 32 0H352c17.7 0 32 14.3 32 32V64c0 17.7-14.3 32-32 32H32C14.3 96 0 81.7 0 64V32zm32 96H352V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V128zM160 240v48H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V352h48c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16H224V240c0-8.8-7.2-16-16-16H176c-8.8 0-16 7.2-16 16z"]},E$=dm,O$={prefix:"fas",iconName:"landmark",icon:[512,512,[127963],"f66f","M240.1 4.2c9.8-5.6 21.9-5.6 31.8 0l171.8 98.1L448 104l0 .9 47.9 27.4c12.6 7.2 18.8 22 15.1 36s-16.4 23.8-30.9 23.8H32c-14.5 0-27.2-9.8-30.9-23.8s2.5-28.8 15.1-36L64 104.9V104l4.4-1.6L240.1 4.2zM64 224h64V416h40V224h64V416h48V224h64V416h40V224h64V420.3c.6 .3 1.2 .7 1.8 1.1l48 32c11.7 7.8 17 22.4 12.9 35.9S494.1 512 480 512H32c-14.1 0-26.5-9.2-30.6-22.7s1.1-28.1 12.9-35.9l48-32c.6-.4 1.2-.7 1.8-1.1V224z"]},R$={prefix:"fas",iconName:"truck",icon:[640,512,[128666,9951],"f0d1","M48 0C21.5 0 0 21.5 0 48V368c0 26.5 21.5 48 48 48H64c0 53 43 96 96 96s96-43 96-96H384c0 53 43 96 96 96s96-43 96-96h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V288 256 237.3c0-17-6.7-33.3-18.7-45.3L512 114.7c-12-12-28.3-18.7-45.3-18.7H416V48c0-26.5-21.5-48-48-48H48zM416 160h50.7L544 237.3V256H416V160zM208 416c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48zm272 48c-26.5 0-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48s-21.5 48-48 48z"]},F$={prefix:"fas",iconName:"crosshairs",icon:[512,512,[],"f05b","M256 0c17.7 0 32 14.3 32 32V42.4c93.7 13.9 167.7 88 181.6 181.6H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H469.6c-13.9 93.7-88 167.7-181.6 181.6V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V469.6C130.3 455.7 56.3 381.7 42.4 288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H42.4C56.3 130.3 130.3 56.3 224 42.4V32c0-17.7 14.3-32 32-32zM107.4 288c12.5 58.3 58.4 104.1 116.6 116.6V384c0-17.7 14.3-32 32-32s32 14.3 32 32v20.6c58.3-12.5 104.1-58.4 116.6-116.6H384c-17.7 0-32-14.3-32-32s14.3-32 32-32h20.6C392.1 165.7 346.3 119.9 288 107.4V128c0 17.7-14.3 32-32 32s-32-14.3-32-32V107.4C165.7 119.9 119.9 165.7 107.4 224H128c17.7 0 32 14.3 32 32s-14.3 32-32 32H107.4zM256 288c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},B$={prefix:"fas",iconName:"person-cane",icon:[448,512,[],"e53c","M272 48c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zm-8 187.3l47.4 57.1c11.3 13.6 31.5 15.5 45.1 4.2s15.5-31.5 4.2-45.1l-73.7-88.9c-18.2-22-45.3-34.7-73.9-34.7H177.1c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9L120 256.9V480c0 17.7 14.3 32 32 32s32-14.3 32-32V352h16V480c0 17.7 14.3 32 32 32s32-14.3 32-32V235.3zM352 376c0-4.4 3.6-8 8-8s8 3.6 8 8V488c0 13.3 10.7 24 24 24s24-10.7 24-24V376c0-30.9-25.1-56-56-56s-56 25.1-56 56v8c0 13.3 10.7 24 24 24s24-10.7 24-24v-8z"]},D$={prefix:"fas",iconName:"tent",icon:[576,512,[],"e57d","M269.4 6C280.5-2 295.5-2 306.6 6l224 160c7.4 5.3 12.2 13.5 13.2 22.5l32 288c1 9-1.9 18.1-8 24.9s-14.7 10.7-23.8 10.7H416L288 288V512H32c-9.1 0-17.8-3.9-23.8-10.7s-9-15.8-8-24.9l32-288c1-9 5.8-17.2 13.2-22.5L269.4 6z"]},I$={prefix:"fas",iconName:"vest-patches",icon:[448,512,[],"e086","M151.2 69.7l55.9 167.7-11 33.1c-2.7 8.2-4.1 16.7-4.1 25.3V464c0 14.5 3.9 28.2 10.7 39.9C195 509 185.9 512 176 512H48c-26.5 0-48-21.5-48-48V270.5c0-9.5 2.8-18.7 8.1-26.6l47.9-71.8c5.3-7.9 8.1-17.1 8.1-26.6V128 54.3 48C64 21.5 85.5 0 112 0h4.5c.2 0 .4 0 .6 0c.4 0 .8 0 1.2 0c18.8 0 34.1 9.7 44.1 18.8C171.6 27.2 190.8 40 224 40s52.4-12.8 61.7-21.2C295.7 9.7 311 0 329.7 0c.4 0 .8 0 1.2 0c.2 0 .4 0 .6 0H336c26.5 0 48 21.5 48 48v6.3V128v17.5c0 9.5 2.8 18.7 8.1 26.6l47.9 71.8c5.3 7.9 8.1 17.1 8.1 26.6V464c0 26.5-21.5 48-48 48H272c-26.5 0-48-21.5-48-48V295.8c0-5.2 .8-10.3 2.5-15.2L296.8 69.7C279.4 79.7 255.4 88 224 88s-55.4-8.3-72.8-18.3zM96 456c22.1 0 40-17.9 40-40s-17.9-40-40-40s-40 17.9-40 40s17.9 40 40 40zM63.5 255.5c-4.7 4.7-4.7 12.3 0 17L79 288 63.5 303.5c-4.7 4.7-4.7 12.3 0 17s12.3 4.7 17 0L96 305l15.5 15.5c4.7 4.7 12.3 4.7 17 0s4.7-12.3 0-17L113 288l15.5-15.5c4.7-4.7 4.7-12.3 0-17s-12.3-4.7-17 0L96 271 80.5 255.5c-4.7-4.7-12.3-4.7-17 0zM304 280v8 32c0 8.8 7.2 16 16 16h32 8c13.3 0 24-10.7 24-24s-10.7-24-24-24h-8v-8c0-13.3-10.7-24-24-24s-24 10.7-24 24z"]},U$={prefix:"fas",iconName:"check-double",icon:[512,512,[],"f560","M374.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 178.7l-57.4-57.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l80 80c12.5 12.5 32.8 12.5 45.3 0l160-160zm96 128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 402.7 86.6 297.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l256-256z"]},Wa={prefix:"fas",iconName:"arrow-down-a-z",icon:[576,512,["sort-alpha-asc","sort-alpha-down"],"f15d","M183.6 469.6C177.5 476.2 169 480 160 480s-17.5-3.8-23.6-10.4l-88-96c-11.9-13-11.1-33.3 2-45.2s33.3-11.1 45.2 2L128 365.7V64c0-17.7 14.3-32 32-32s32 14.3 32 32V365.7l32.4-35.4c11.9-13 32.2-13.9 45.2-2s13.9 32.2 2 45.2l-88 96zM320 320c0-17.7 14.3-32 32-32H480c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9L429.3 416H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H352c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9L402.7 352H352c-17.7 0-32-14.3-32-32zM416 32c12.1 0 23.2 6.8 28.6 17.7l64 128 16 32c7.9 15.8 1.5 35-14.3 42.9s-35 1.5-42.9-14.3L460.2 224H371.8l-7.2 14.3c-7.9 15.8-27.1 22.2-42.9 14.3s-22.2-27.1-14.3-42.9l16-32 64-128C392.8 38.8 403.9 32 416 32zM395.8 176h40.4L416 135.6 395.8 176z"]},W$=Wa,$$=Wa,q$={prefix:"fas",iconName:"money-bill-wheat",icon:[512,512,[],"e52a","M176 0c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16c-44.2 0-80-35.8-80-80c0-8.8 7.2-16 16-16zM56 16h48c13.3 0 24 10.7 24 24s-10.7 24-24 24H56C42.7 64 32 53.3 32 40s10.7-24 24-24zM24 88H136c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24S10.7 88 24 88zm8 96c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24s-10.7 24-24 24H56c-13.3 0-24-10.7-24-24zM272 16c0-8.8 7.2-16 16-16c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16c-44.2 0-80-35.8-80-80zM400 0c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16c-44.2 0-80-35.8-80-80c0-8.8 7.2-16 16-16zm80 144c0 44.2-35.8 80-80 80c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80c8.8 0 16 7.2 16 16zM352 128c8.8 0 16 7.2 16 16c0 44.2-35.8 80-80 80c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80zm-96 16c0 44.2-35.8 80-80 80c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80c8.8 0 16 7.2 16 16zM0 304c0-26.5 21.5-48 48-48H464c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V304zM48 416v48H96c0-26.5-21.5-48-48-48zM96 304H48v48c26.5 0 48-21.5 48-48zM464 416c-26.5 0-48 21.5-48 48h48V416zM416 304c0 26.5 21.5 48 48 48V304H416zm-96 80c0-35.3-28.7-64-64-64s-64 28.7-64 64s28.7 64 64 64s64-28.7 64-64z"]},G$={prefix:"fas",iconName:"cookie",icon:[512,512,[127850],"f563","M247.2 17c-22.1-3.1-44.6 .9-64.4 11.4l-74 39.5C89.1 78.4 73.2 94.9 63.4 115L26.7 190.6c-9.8 20.1-13 42.9-9.1 64.9l14.5 82.8c3.9 22.1 14.6 42.3 30.7 57.9l60.3 58.4c16.1 15.6 36.6 25.6 58.7 28.7l83 11.7c22.1 3.1 44.6-.9 64.4-11.4l74-39.5c19.7-10.5 35.6-27 45.4-47.2l36.7-75.5c9.8-20.1 13-42.9 9.1-64.9l-14.6-82.8c-3.9-22.1-14.6-42.3-30.7-57.9L388.9 57.5c-16.1-15.6-36.6-25.6-58.7-28.7L247.2 17zM208 208c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm0 128c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},i7={prefix:"fas",iconName:"arrow-rotate-left",icon:[512,512,[8634,"arrow-left-rotate","arrow-rotate-back","arrow-rotate-backward","undo"],"f0e2","M125.7 160H176c17.7 0 32 14.3 32 32s-14.3 32-32 32H48c-17.7 0-32-14.3-32-32V64c0-17.7 14.3-32 32-32s32 14.3 32 32v51.2L97.6 97.6c87.5-87.5 229.3-87.5 316.8 0s87.5 229.3 0 316.8s-229.3 87.5-316.8 0c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0c62.5 62.5 163.8 62.5 226.3 0s62.5-163.8 0-226.3s-163.8-62.5-226.3 0L125.7 160z"]},j$=i7,K$=i7,X$=i7,Y$=i7,Hm={prefix:"fas",iconName:"hard-drive",icon:[512,512,[128436,"hdd"],"f0a0","M0 96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V280.4c-17-15.2-39.4-24.4-64-24.4H64c-24.6 0-47 9.2-64 24.4V96zM64 288H448c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V352c0-35.3 28.7-64 64-64zM320 416c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm128-32c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32z"]},J$=Hm,zm={prefix:"fas",iconName:"face-grin-squint-tears",icon:[512,512,[129315,"grin-squint-tears"],"f586","M426.8 14.2C446-5 477.5-4.6 497.1 14.9s20 51 .7 70.3c-6.8 6.8-21.4 12.4-37.4 16.7c-18.5 5-38.8 8.3-50.9 10c-4.9 .8-9.1-2.8-9.5-7.4c-.1-.7 0-1.4 .1-2.1c1.6-11.2 4.6-29.6 9-47c.3-1.3 .7-2.6 1-3.9c4.3-15.9 9.8-30.5 16.7-37.4zm-44.7 19c-1.5 4.8-2.9 9.6-4.1 14.3c-4.8 18.9-8 38.5-9.7 50.3c-4 26.8 18.9 49.7 45.7 45.8c11.9-1.6 31.5-4.8 50.4-9.7c4.7-1.2 9.5-2.5 14.3-4.1C534.2 227.5 520.2 353.8 437 437c-83.2 83.2-209.5 97.2-307.2 41.8c1.5-4.8 2.8-9.6 4-14.3c4.8-18.9 8-38.5 9.7-50.3c4-26.8-18.9-49.7-45.7-45.8c-11.9 1.6-31.5 4.8-50.4 9.7c-4.7 1.2-9.5 2.5-14.3 4.1C-22.2 284.5-8.2 158.2 75 75C158.2-8.3 284.5-22.2 382.2 33.2zM51.5 410.1c18.5-5 38.8-8.3 50.9-10c.4-.1 .7-.1 1-.1c5.1-.2 9.2 4.3 8.4 9.6c-1.7 12.1-5 32.4-10 50.9C97.6 476.4 92 491 85.2 497.8C66 517 34.5 516.6 14.9 497.1s-20-51-.7-70.3c6.8-6.8 21.4-12.4 37.4-16.7zM416.9 209c-4.7-11.9-20.8-11-26.8 .3c-19 35.5-45 70.8-77.5 103.3S244.8 371.1 209.3 390c-11.3 6-12.2 22.1-.3 26.8c57.6 22.9 125.8 11 172.3-35.5s58.4-114.8 35.5-172.3zM87.1 285.1c2 2 4.6 3.2 7.3 3.4l56.1 5.1 5.1 56.1c.3 2.8 1.5 5.4 3.4 7.3c6.3 6.3 17.2 3.6 19.8-4.9l29.7-97.4c3.5-11.6-7.3-22.5-19-19L92 265.3c-8.6 2.6-11.3 13.4-4.9 19.8zM265.3 92l-29.7 97.4c-3.5 11.6 7.3 22.5 19 19l97.4-29.7c8.6-2.6 11.3-13.4 4.9-19.8c-2-2-4.6-3.2-7.3-3.4l-56.1-5.1-5.1-56.1c-.2-2.8-1.5-5.4-3.4-7.3c-6.3-6.3-17.2-3.6-19.8 4.9z"]},Q$=zm,Z$={prefix:"fas",iconName:"dumbbell",icon:[640,512,[],"f44b","M112 96c0-17.7 14.3-32 32-32h16c17.7 0 32 14.3 32 32V224v64V416c0 17.7-14.3 32-32 32H144c-17.7 0-32-14.3-32-32V384H64c-17.7 0-32-14.3-32-32V288c-17.7 0-32-14.3-32-32s14.3-32 32-32V160c0-17.7 14.3-32 32-32h48V96zm416 0v32h48c17.7 0 32 14.3 32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32v64c0 17.7-14.3 32-32 32H528v32c0 17.7-14.3 32-32 32H480c-17.7 0-32-14.3-32-32V288 224 96c0-17.7 14.3-32 32-32h16c17.7 0 32 14.3 32 32zM416 224v64H224V224H416z"]},gm={prefix:"fas",iconName:"rectangle-list",icon:[576,512,["list-alt"],"f022","M0 96C0 60.7 28.7 32 64 32H512c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM128 288c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm32-128c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM128 384c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm96-248c-13.3 0-24 10.7-24 24s10.7 24 24 24H448c13.3 0 24-10.7 24-24s-10.7-24-24-24H224zm0 96c-13.3 0-24 10.7-24 24s10.7 24 24 24H448c13.3 0 24-10.7 24-24s-10.7-24-24-24H224zm0 96c-13.3 0-24 10.7-24 24s10.7 24 24 24H448c13.3 0 24-10.7 24-24s-10.7-24-24-24H224z"]},cq=gm,eq={prefix:"fas",iconName:"tarp-droplet",icon:[576,512,[],"e57c","M288 160c-35.3 0-64-26.9-64-60c0-24 33.7-70.1 52.2-93.5c6.1-7.7 17.5-7.7 23.6 0C318.3 29.9 352 76 352 100c0 33.1-28.7 60-64 60zM64 128H197.5c13.2 37.3 48.7 64 90.5 64s77.4-26.7 90.5-64H512c35.3 0 64 28.7 64 64V352H448c-17.7 0-32 14.3-32 32l0 128L64 512c-35.3 0-64-28.7-64-64V192c0-35.3 28.7-64 64-64zM448 512l0-128H576L448 512zM96 256c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z"]},rq={prefix:"fas",iconName:"house-medical-circle-check",icon:[640,512,[],"e511","M320 368c0 59.5 29.5 112.1 74.8 144H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L522.1 193.9c-8.5-1.3-17.3-1.9-26.1-1.9c-54.7 0-103.5 24.9-135.8 64H320V208c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16v48H208c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16zm320 0c0 79.5-64.5 144-144 144s-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144zm-76.7-43.3c-6.2-6.2-16.4-6.2-22.6 0L480 385.4l-28.7-28.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l40 40c6.2 6.2 16.4 6.2 22.6 0l72-72c6.2-6.2 6.2-16.4 0-22.6z"]},Vm={prefix:"fas",iconName:"person-skiing-nordic",icon:[576,512,["skiing-nordic"],"f7ca","M336 96c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zM227.2 160c1.9 0 3.8 .1 5.6 .3L201.6 254c-9.3 28 1.7 58.8 26.8 74.5l86.2 53.9L291.3 464H202.8l41.1-88.1-32.4-20.3c-7.8-4.9-14.7-10.7-20.6-17.3L132.2 464H99.7l54.2-257.6c4.6-1.5 9-4.1 12.7-7.8l23.1-23.1c9.9-9.9 23.4-15.5 37.5-15.5zM121.4 198.6c.4 .4 .8 .8 1.3 1.2L67 464H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H159.3c.4 0 .9 0 1.3 0H319.3c.5 0 1 0 1.4 0H504c39.8 0 72-32.2 72-72v-8c0-13.3-10.7-24-24-24s-24 10.7-24 24v8c0 13.3-10.7 24-24 24H434.6l27.6-179.3c10.5-5.2 17.8-16.1 17.8-28.7c0-17.7-14.3-32-32-32H426.7c-12.9 0-24.6-7.8-29.5-19.7l-6.3-15c-14.6-35.1-44.1-61.9-80.5-73.1l-48.7-15c-11.1-3.4-22.7-5.2-34.4-5.2c-31 0-60.8 12.3-82.7 34.3l-23.1 23.1c-12.5 12.5-12.5 32.8 0 45.3zm308 89.4L402.3 464H357.8l21.6-75.6c5.9-20.6-2.6-42.6-20.7-53.9L302 299l30.9-82.4 5.1 12.3C353 264.7 387.9 288 426.7 288h2.7z"]},aq=Vm,nq={prefix:"fas",iconName:"calendar-plus",icon:[448,512,[],"f271","M96 32V64H48C21.5 64 0 85.5 0 112v48H448V112c0-26.5-21.5-48-48-48H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V64H160V32c0-17.7-14.3-32-32-32S96 14.3 96 32zM448 192H0V464c0 26.5 21.5 48 48 48H400c26.5 0 48-21.5 48-48V192zM224 248c13.3 0 24 10.7 24 24v56h56c13.3 0 24 10.7 24 24s-10.7 24-24 24H248v56c0 13.3-10.7 24-24 24s-24-10.7-24-24V376H144c-13.3 0-24-10.7-24-24s10.7-24 24-24h56V272c0-13.3 10.7-24 24-24z"]},tq={prefix:"fas",iconName:"plane-arrival",icon:[640,512,[128748],"f5af","M.3 166.9L0 68C0 57.7 9.5 50.1 19.5 52.3l35.6 7.9c10.6 2.3 19.2 9.9 23 20L96 128l127.3 37.6L181.8 20.4C178.9 10.2 186.6 0 197.2 0h40.1c11.6 0 22.2 6.2 27.9 16.3l109 193.8 107.2 31.7c15.9 4.7 30.8 12.5 43.7 22.8l34.4 27.6c24 19.2 18.1 57.3-10.7 68.2c-41.2 15.6-86.2 18.1-128.8 7L121.7 289.8c-11.1-2.9-21.2-8.7-29.3-16.9L9.5 189.4c-5.9-6-9.3-14-9.3-22.5zM32 448H608c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32zm160-80c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm64 48c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},Mm={prefix:"fas",iconName:"circle-left",icon:[512,512,[61840,"arrow-alt-circle-left"],"f359","M512 256C512 114.6 397.4 0 256 0S0 114.6 0 256S114.6 512 256 512s256-114.6 256-256zM116.7 244.7l112-112c4.6-4.6 11.5-5.9 17.4-3.5s9.9 8.3 9.9 14.8l0 64 96 0c17.7 0 32 14.3 32 32l0 32c0 17.7-14.3 32-32 32l-96 0 0 64c0 6.5-3.9 12.3-9.9 14.8s-12.9 1.1-17.4-3.5l-112-112c-6.2-6.2-6.2-16.4 0-22.6z"]},sq=Mm,Cm={prefix:"fas",iconName:"train-subway",icon:[448,512,["subway"],"f239","M96 0C43 0 0 43 0 96V352c0 48 35.2 87.7 81.1 94.9l-46 46C28.1 499.9 33.1 512 43 512H82.7c8.5 0 16.6-3.4 22.6-9.4L160 448H288l54.6 54.6c6 6 14.1 9.4 22.6 9.4H405c10 0 15-12.1 7.9-19.1l-46-46c46-7.1 81.1-46.9 81.1-94.9V96c0-53-43-96-96-96H96zM64 128c0-17.7 14.3-32 32-32h80c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V128zM272 96h80c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H272c-17.7 0-32-14.3-32-32V128c0-17.7 14.3-32 32-32zM128 352c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm224 32c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},iq=Cm,oq={prefix:"fas",iconName:"chart-gantt",icon:[512,512,[],"e0e4","M32 32c17.7 0 32 14.3 32 32V400c0 8.8 7.2 16 16 16H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H80c-44.2 0-80-35.8-80-80V64C0 46.3 14.3 32 32 32zm96 96c0-17.7 14.3-32 32-32l96 0c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-17.7 0-32-14.3-32-32zm96 64H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zm160 96h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384c-17.7 0-32-14.3-32-32s14.3-32 32-32z"]},$a={prefix:"fas",iconName:"indian-rupee-sign",icon:[320,512,["indian-rupee","inr"],"e1bc","M0 64C0 46.3 14.3 32 32 32H96h16H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H231.8c9.6 14.4 16.7 30.6 20.7 48H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H252.4c-13.2 58.3-61.9 103.2-122.2 110.9L274.6 422c14.4 10.3 17.7 30.3 7.4 44.6s-30.3 17.7-44.6 7.4L13.4 314C2.1 306-2.7 291.5 1.5 278.2S18.1 256 32 256h80c32.8 0 61-19.7 73.3-48H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H185.3C173 115.7 144.8 96 112 96H96 32C14.3 96 0 81.7 0 64z"]},fq=$a,lq=$a,Lm={prefix:"fas",iconName:"crop-simple",icon:[512,512,["crop-alt"],"f565","M128 32c0-17.7-14.3-32-32-32S64 14.3 64 32V64H32C14.3 64 0 78.3 0 96s14.3 32 32 32H64V384c0 35.3 28.7 64 64 64H352V384H128V32zM384 480c0 17.7 14.3 32 32 32s32-14.3 32-32V448h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H448l0-256c0-35.3-28.7-64-64-64L160 64v64l224 0 0 352z"]},uq=Lm,ym={prefix:"fas",iconName:"money-bill-1",icon:[576,512,["money-bill-alt"],"f3d1","M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zm64 320H64V320c35.3 0 64 28.7 64 64zM64 192V128h64c0 35.3-28.7 64-64 64zM448 384c0-35.3 28.7-64 64-64v64H448zm64-192c-35.3 0-64-28.7-64-64h64v64zM400 256c0 61.9-50.1 112-112 112s-112-50.1-112-112s50.1-112 112-112s112 50.1 112 112zM252 208c0 9.7 6.9 17.7 16 19.6V276h-4c-11 0-20 9-20 20s9 20 20 20h24 24c11 0 20-9 20-20s-9-20-20-20h-4V208c0-11-9-20-20-20H272c-11 0-20 9-20 20z"]},hq=ym,bm={prefix:"fas",iconName:"left-long",icon:[512,512,["long-arrow-alt-left"],"f30a","M177.5 98c-8.8-3.8-19-2-26 4.6l-144 136C2.7 243.1 0 249.4 0 256s2.7 12.9 7.5 17.4l144 136c7 6.6 17.2 8.4 26 4.6s14.5-12.5 14.5-22l0-88 288 0c17.7 0 32-14.3 32-32l0-32c0-17.7-14.3-32-32-32l-288 0 0-88c0-9.6-5.7-18.2-14.5-22z"]},pq=bm,mq={prefix:"fas",iconName:"dna",icon:[448,512,[129516],"f471","M416 0c17.7 0 32 14.3 32 32c0 59.8-30.3 107.5-69.4 146.6c-28 28-62.5 53.5-97.3 77.4l-2.5 1.7c-11.9 8.1-23.8 16.1-35.5 23.9l0 0 0 0 0 0-1.6 1c-6 4-11.9 7.9-17.8 11.9c-20.9 14-40.8 27.7-59.3 41.5H283.3c-9.8-7.4-20.1-14.7-30.7-22.1l7-4.7 3-2c15.1-10.1 30.9-20.6 46.7-31.6c25 18.1 48.9 37.3 69.4 57.7C417.7 372.5 448 420.2 448 480c0 17.7-14.3 32-32 32s-32-14.3-32-32H64c0 17.7-14.3 32-32 32s-32-14.3-32-32c0-59.8 30.3-107.5 69.4-146.6c28-28 62.5-53.5 97.3-77.4c-34.8-23.9-69.3-49.3-97.3-77.4C30.3 139.5 0 91.8 0 32C0 14.3 14.3 0 32 0S64 14.3 64 32H384c0-17.7 14.3-32 32-32zM338.6 384H109.4c-10.1 10.6-18.6 21.3-25.5 32H364.1c-6.8-10.7-15.3-21.4-25.5-32zM109.4 128H338.6c10.1-10.7 18.6-21.3 25.5-32H83.9c6.8 10.7 15.3 21.3 25.5 32zm55.4 48c18.4 13.8 38.4 27.5 59.3 41.5c20.9-14 40.8-27.7 59.3-41.5H164.7z"]},vq={prefix:"fas",iconName:"virus-slash",icon:[640,512,[],"e075","M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-154.3-121c-2-30.1 20.8-60.1 56-60.1H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H532.5c-49.9 0-74.9-60.3-39.6-95.6l8.2-8.2c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-8.2 8.2C412.3 118.4 352 93.4 352 43.5V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V43.5c0 49.9-60.3 74.9-95.6 39.6L184.2 75c-12.5-12.5-32.8-12.5-45.3 0c-1.6 1.6-3.1 3.4-4.3 5.3L38.8 5.1zm225.8 177c6.9-3.9 14.9-6.1 23.4-6.1c26.5 0 48 21.5 48 48c0 4.4-.6 8.7-1.7 12.7l-69.7-54.6zM107.5 224H96c-17.7 0-32 14.3-32 32s14.3 32 32 32h11.5c49.9 0 74.9 60.3 39.6 95.6l-8.2 8.2c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l8.2-8.2c35.3-35.3 95.6-10.3 95.6 39.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V468.5c0-31.2 23.6-52.7 50-55.7L144.7 210c-9.5 8.5-22.2 14-37.2 14z"]},xm={prefix:"fas",iconName:"minus",icon:[448,512,[8211,8722,10134,"subtract"],"f068","M432 256c0 17.7-14.3 32-32 32L48 288c-17.7 0-32-14.3-32-32s14.3-32 32-32l352 0c17.7 0 32 14.3 32 32z"]},dq=xm,Hq={prefix:"fas",iconName:"chess",icon:[512,512,[],"f439","M144 16c0-8.8-7.2-16-16-16s-16 7.2-16 16V32H96c-8.8 0-16 7.2-16 16s7.2 16 16 16h16V96H59.4C48.7 96 40 104.7 40 115.4c0 3 .7 5.9 2 8.7c6 12.4 23.8 50.8 32.8 83.9H72c-13.3 0-24 10.7-24 24s10.7 24 24 24h7.7C78 302.9 69.4 352.7 63.1 384H192.9c-6.4-31.3-14.9-81.1-16.6-128H184c13.3 0 24-10.7 24-24s-10.7-24-24-24h-2.8c9-33.2 26.8-71.5 32.8-83.9c1.3-2.7 2-5.6 2-8.7c0-10.7-8.7-19.4-19.4-19.4H144V64h16c8.8 0 16-7.2 16-16s-7.2-16-16-16H144V16zM25.2 451.4l-8.8 4.4C6.3 460.8 0 471.1 0 482.3C0 498.7 13.3 512 29.7 512H226.3c16.4 0 29.7-13.3 29.7-29.7c0-11.2-6.3-21.5-16.4-26.5l-8.8-4.4c-4.1-2.1-6.8-6.3-6.8-10.9c0-13.5-10.9-24.4-24.4-24.4H56.4C42.9 416 32 426.9 32 440.4c0 4.6-2.6 8.9-6.8 10.9zm279.2 4.4c-10.1 5-16.4 15.3-16.4 26.5c0 16.4 13.3 29.7 29.7 29.7H482.3c16.4 0 29.7-13.3 29.7-29.7c0-11.2-6.3-21.5-16.4-26.5l-8.8-4.4c-4.1-2.1-6.8-6.3-6.8-10.9c0-13.5-10.9-24.4-24.4-24.4H344.4c-13.5 0-24.4 10.9-24.4 24.4c0 4.6-2.6 8.9-6.8 10.9l-8.8 4.4zM304 259.9c0 7.8 2.8 15.3 8 21.1l18.9 21.4c5.4 6.1 8.2 14 8 22.1L337 384H462.5l-2.7-58.7c-.4-8.5 2.6-16.9 8.4-23.1l19.3-21c5.4-5.9 8.5-13.6 8.5-21.7V200c0-4.4-3.6-8-8-8H464c-4.4 0-8 3.6-8 8v16c0 4.4-3.6 8-8 8h-8c-4.4 0-8-3.6-8-8V200c0-4.4-3.6-8-8-8H376c-4.4 0-8 3.6-8 8v16c0 4.4-3.6 8-8 8h-8c-4.4 0-8-3.6-8-8V200c0-4.4-3.6-8-8-8H312c-4.4 0-8 3.6-8 8v59.9zM392 336c-4.4 0-8-3.6-8-8V304c0-8.8 7.2-16 16-16s16 7.2 16 16v24c0 4.4-3.6 8-8 8H392z"]},Sm={prefix:"fas",iconName:"arrow-left-long",icon:[512,512,["long-arrow-left"],"f177","M109.3 288L480 288c17.7 0 32-14.3 32-32s-14.3-32-32-32l-370.7 0 73.4-73.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-128 128c-12.5 12.5-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 288z"]},zq=Sm,gq={prefix:"fas",iconName:"plug-circle-check",icon:[576,512,[],"e55c","M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8c12.3-2.5 24.1-6.4 35.1-11.5c-2.1-10.8-3.1-21.9-3.1-33.3c0-80.3 53.8-148 127.3-169.2c.5-2.2 .7-4.5 .7-6.8c0-17.7-14.3-32-32-32H32zM576 368c0-79.5-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144s144-64.5 144-144zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L416 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z"]},Vq={prefix:"fas",iconName:"street-view",icon:[512,512,[],"f21d","M320 64c0-35.3-28.7-64-64-64s-64 28.7-64 64s28.7 64 64 64s64-28.7 64-64zm-96 96c-35.3 0-64 28.7-64 64v48c0 17.7 14.3 32 32 32h1.8l11.1 99.5c1.8 16.2 15.5 28.5 31.8 28.5h38.7c16.3 0 30-12.3 31.8-28.5L318.2 304H320c17.7 0 32-14.3 32-32V224c0-35.3-28.7-64-64-64H224zM132.3 394.2c13-2.4 21.7-14.9 19.3-27.9s-14.9-21.7-27.9-19.3c-32.4 5.9-60.9 14.2-82 24.8c-10.5 5.3-20.3 11.7-27.8 19.6C6.4 399.5 0 410.5 0 424c0 21.4 15.5 36.1 29.1 45c14.7 9.6 34.3 17.3 56.4 23.4C130.2 504.7 190.4 512 256 512s125.8-7.3 170.4-19.6c22.1-6.1 41.8-13.8 56.4-23.4c13.7-8.9 29.1-23.6 29.1-45c0-13.5-6.4-24.5-14-32.6c-7.5-7.9-17.3-14.3-27.8-19.6c-21-10.6-49.5-18.9-82-24.8c-13-2.4-25.5 6.3-27.9 19.3s6.3 25.5 19.3 27.9c30.2 5.5 53.7 12.8 69 20.5c3.2 1.6 5.8 3.1 7.9 4.5c3.6 2.4 3.6 7.2 0 9.6c-8.8 5.7-23.1 11.8-43 17.3C374.3 457 318.5 464 256 464s-118.3-7-157.7-17.9c-19.9-5.5-34.2-11.6-43-17.3c-3.6-2.4-3.6-7.2 0-9.6c2.1-1.4 4.8-2.9 7.9-4.5c15.3-7.7 38.8-14.9 69-20.5z"]},Mq={prefix:"fas",iconName:"franc-sign",icon:[320,512,[],"e18f","M80 32C62.3 32 48 46.3 48 64V224v96H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H48v64c0 17.7 14.3 32 32 32s32-14.3 32-32V384h80c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V256H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V96H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H80z"]},Cq={prefix:"fas",iconName:"volume-off",icon:[320,512,[],"f026","M320 64c0-12.6-7.4-24-18.9-29.2s-25-3.1-34.4 5.3L131.8 160H64c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64h67.8L266.7 471.9c9.4 8.4 22.9 10.4 34.4 5.3S320 460.6 320 448V64z"]},de={prefix:"fas",iconName:"hands-asl-interpreting",icon:[640,512,["american-sign-language-interpreting","asl-interpreting","hands-american-sign-language-interpreting"],"f2a3","M156.6 46.3c7.9-15.8 1.5-35-14.3-42.9s-35-1.5-42.9 14.3L13.5 189.4C4.6 207.2 0 226.8 0 246.7V256c0 70.7 57.3 128 128 128h72 8v-.3c35.2-2.7 65.4-22.8 82.1-51.7c8.8-15.3 3.6-34.9-11.7-43.7s-34.9-3.6-43.7 11.7c-7 12-19.9 20-34.7 20c-22.1 0-40-17.9-40-40s17.9-40 40-40c14.8 0 27.7 8 34.7 20c8.8 15.3 28.4 20.5 43.7 11.7s20.5-28.4 11.7-43.7c-12.8-22.1-33.6-39.1-58.4-47.1l80.8-22c17-4.6 27.1-22.2 22.5-39.3s-22.2-27.1-39.3-22.5L194.9 124.6l81.6-68c13.6-11.3 15.4-31.5 4.1-45.1S249.1-3.9 235.5 7.4L133.6 92.3l23-46zM483.4 465.7c-7.9 15.8-1.5 35 14.3 42.9s35 1.5 42.9-14.3l85.9-171.7c8.9-17.8 13.5-37.4 13.5-57.2V256c0-70.7-57.3-128-128-128H440h-8v.3c-35.2 2.7-65.4 22.8-82.1 51.7c-8.9 15.3-3.6 34.9 11.7 43.7s34.9 3.6 43.7-11.7c7-12 19.9-20 34.7-20c22.1 0 40 17.9 40 40s-17.9 40-40 40c-14.8 0-27.7-8-34.7-20c-8.9-15.3-28.4-20.5-43.7-11.7s-20.5 28.4-11.7 43.7c12.8 22.1 33.6 39.1 58.4 47.1l-80.8 22c-17.1 4.7-27.1 22.2-22.5 39.3s22.2 27.1 39.3 22.5l100.7-27.5-81.6 68c-13.6 11.3-15.4 31.5-4.1 45.1s31.5 15.4 45.1 4.1l101.9-84.9-23 46z"]},Lq=de,yq=de,bq=de,wm={prefix:"fas",iconName:"gear",icon:[512,512,[9881,"cog"],"f013","M495.9 166.6c3.2 8.7 .5 18.4-6.4 24.6l-43.3 39.4c1.1 8.3 1.7 16.8 1.7 25.4s-.6 17.1-1.7 25.4l43.3 39.4c6.9 6.2 9.6 15.9 6.4 24.6c-4.4 11.9-9.7 23.3-15.8 34.3l-4.7 8.1c-6.6 11-14 21.4-22.1 31.2c-5.9 7.2-15.7 9.6-24.5 6.8l-55.7-17.7c-13.4 10.3-28.2 18.9-44 25.4l-12.5 57.1c-2 9.1-9 16.3-18.2 17.8c-13.8 2.3-28 3.5-42.5 3.5s-28.7-1.2-42.5-3.5c-9.2-1.5-16.2-8.7-18.2-17.8l-12.5-57.1c-15.8-6.5-30.6-15.1-44-25.4L83.1 425.9c-8.8 2.8-18.6 .3-24.5-6.8c-8.1-9.8-15.5-20.2-22.1-31.2l-4.7-8.1c-6.1-11-11.4-22.4-15.8-34.3c-3.2-8.7-.5-18.4 6.4-24.6l43.3-39.4C64.6 273.1 64 264.6 64 256s.6-17.1 1.7-25.4L22.4 191.2c-6.9-6.2-9.6-15.9-6.4-24.6c4.4-11.9 9.7-23.3 15.8-34.3l4.7-8.1c6.6-11 14-21.4 22.1-31.2c5.9-7.2 15.7-9.6 24.5-6.8l55.7 17.7c13.4-10.3 28.2-18.9 44-25.4l12.5-57.1c2-9.1 9-16.3 18.2-17.8C227.3 1.2 241.5 0 256 0s28.7 1.2 42.5 3.5c9.2 1.5 16.2 8.7 18.2 17.8l12.5 57.1c15.8 6.5 30.6 15.1 44 25.4l55.7-17.7c8.8-2.8 18.6-.3 24.5 6.8c8.1 9.8 15.5 20.2 22.1 31.2l4.7 8.1c6.1 11 11.4 22.4 15.8 34.3zM256 336c44.2 0 80-35.8 80-80s-35.8-80-80-80s-80 35.8-80 80s35.8 80 80 80z"]},xq=wm,Nm={prefix:"fas",iconName:"droplet-slash",icon:[640,512,["tint-slash"],"f5c7","M320 512c53.2 0 101.4-21.6 136.1-56.6l-298.3-235C140 257.1 128 292.3 128 320c0 106 86 192 192 192zM505.2 370.7c4.4-16.1 6.8-33.1 6.8-50.7c0-91.2-130.2-262.3-166.6-308.3C339.4 4.2 330.5 0 320.9 0h-1.8c-9.6 0-18.5 4.2-24.5 11.7C277.8 33 240.7 81.3 205.8 136L38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L505.2 370.7zM224 336c0 44.2 35.8 80 80 80c8.8 0 16 7.2 16 16s-7.2 16-16 16c-61.9 0-112-50.1-112-112c0-8.8 7.2-16 16-16s16 7.2 16 16z"]},Sq=Nm,wq={prefix:"fas",iconName:"mosque",icon:[640,512,[128332],"f678","M400 0c5 0 9.8 2.4 12.8 6.4c34.7 46.3 78.1 74.9 133.5 111.5l0 0 0 0c5.2 3.4 10.5 7 16 10.6c28.9 19.2 45.7 51.7 45.7 86.1c0 28.6-11.3 54.5-29.8 73.4H221.8c-18.4-19-29.8-44.9-29.8-73.4c0-34.4 16.7-66.9 45.7-86.1c5.4-3.6 10.8-7.1 16-10.6l0 0 0 0C309.1 81.3 352.5 52.7 387.2 6.4c3-4 7.8-6.4 12.8-6.4zM288 512V440c0-13.3-10.7-24-24-24s-24 10.7-24 24v72H192c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32H608c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H560V440c0-13.3-10.7-24-24-24s-24 10.7-24 24v72H448V454c0-19-8.4-37-23-49.2L400 384l-25 20.8C360.4 417 352 435 352 454v58H288zM70.4 5.2c5.7-4.3 13.5-4.3 19.2 0l16 12C139.8 42.9 160 83.2 160 126v2H0v-2C0 83.2 20.2 42.9 54.4 17.2l16-12zM0 160H160V296.6c-19.1 11.1-32 31.7-32 55.4V480c0 9.6 2.1 18.6 5.8 26.8c-6.6 3.4-14 5.2-21.8 5.2H48c-26.5 0-48-21.5-48-48V176 160z"]},Nq={prefix:"fas",iconName:"mosquito",icon:[640,512,[],"e52b","M463.7 505.9c9.8-8.9 10.7-24.3 2.1-34.3l-42.1-49 0-54.7c0-5.5-1.8-10.8-5.1-15.1L352 266.3l0-.3L485.4 387.8C542.4 447.6 640 405.2 640 320.6c0-47.9-34-88.3-79.4-94.2l-153-23.9 40.8-40.9c7.8-7.8 9.4-20.1 3.9-29.8L428.5 90.1l38.2-50.9c8-10.6 6.1-25.9-4.3-34.1s-25.2-6.3-33.2 4.4l-48 63.9c-5.9 7.9-6.6 18.6-1.7 27.2L402.2 140 352 190.3l0-38.2c0-14.9-10.2-27.4-24-31l0-57.2c0-4.4-3.6-8-8-8s-8 3.6-8 8l0 57.2c-13.8 3.6-24 16.1-24 31l0 38.1L237.8 140l22.6-39.5c4.9-8.6 4.2-19.3-1.7-27.2l-48-63.9c-8-10.6-22.8-12.6-33.2-4.4s-12.2 23.5-4.3 34.1l38.2 50.9-23.9 41.7c-5.5 9.7-3.9 22 3.9 29.8l40.8 40.9-153 23.9C34 232.3 0 272.7 0 320.6c0 84.6 97.6 127 154.6 67.1L288 266l0 .3-66.5 86.4c-3.3 4.3-5.1 9.6-5.1 15.1l0 54.7-42.1 49c-8.6 10.1-7.7 25.5 2.1 34.3s24.7 7.9 33.4-2.1l48-55.9c3.8-4.4 5.9-10.2 5.9-16.1l0-55.4L288 344.7l0 63.1c0 17.7 14.3 32 32 32s32-14.3 32-32l0-63.1 24.3 31.6 0 55.4c0 5.9 2.1 11.7 5.9 16.1l48 55.9c8.6 10.1 23.6 11 33.4 2.1z"]},Aq={prefix:"fas",iconName:"star-of-david",icon:[512,512,[10017],"f69a","M404.2 309.5L383.1 344h42.3l-21.1-34.5zM371.4 256l-54-88H194.6l-54 88 54 88H317.4l54-88zm65.7 0l53.4 87c3.6 5.9 5.5 12.7 5.5 19.6c0 20.7-16.8 37.4-37.4 37.4H348.7l-56.2 91.5C284.8 504.3 270.9 512 256 512s-28.8-7.7-36.6-20.5L163.3 400H53.4C32.8 400 16 383.2 16 362.6c0-6.9 1.9-13.7 5.5-19.6l53.4-87L21.5 169c-3.6-5.9-5.5-12.7-5.5-19.6C16 128.8 32.8 112 53.4 112H163.3l56.2-91.5C227.2 7.7 241.1 0 256 0s28.8 7.7 36.6 20.5L348.7 112H458.6c20.7 0 37.4 16.8 37.4 37.4c0 6.9-1.9 13.7-5.5 19.6l-53.4 87zm-54-88l21.1 34.5L425.4 168H383.1zM283 112L256 68l-27 44h54zM128.9 168H86.6l21.1 34.5L128.9 168zM107.8 309.5L86.6 344h42.3l-21.1-34.5zM229 400l27 44 27-44H229z"]},_q={prefix:"fas",iconName:"person-military-rifle",icon:[512,512,[],"e54b","M160 39c0-13 10-23.8 22.9-24.9L334.7 1.4C344 .7 352 8 352 17.4V48c0 8.8-7.2 16-16 16H185c-13.8 0-25-11.2-25-25zm17.6 57H334.4c1 5.2 1.6 10.5 1.6 16c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-5.5 .6-10.8 1.6-16zm228 364.3L352 369.7V480c0 1.3-.1 2.5-.2 3.8L177.5 234.9c16.6-7.1 34.6-10.9 53.3-10.9h50.4c15.9 0 31.3 2.8 45.8 7.9L421.9 67.7c-7.7-4.4-10.3-14.2-5.9-21.9s14.2-10.3 21.9-5.9l13.9 8 13.9 8c7.7 4.4 10.3 14.2 5.9 21.9L416 173.9l1.6 .9c15.3 8.8 20.6 28.4 11.7 43.7L392.6 282c2 2.8 3.9 5.8 5.7 8.8l76.1 128.8c11.2 19 4.9 43.5-14.1 54.8s-43.5 4.9-54.8-14.1zM320 512H192c-17.7 0-32-14.3-32-32V369.7l-53.6 90.6c-11.2 19-35.8 25.3-54.8 14.1s-25.3-35.8-14.1-54.8l76.1-128.8c9.4-15.8 21.7-29.3 36-40L331.1 510c-3.5 1.3-7.2 2-11.1 2zM296 320c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24z"]},Am={prefix:"fas",iconName:"cart-shopping",icon:[576,512,[128722,"shopping-cart"],"f07a","M0 24C0 10.7 10.7 0 24 0H69.5c22 0 41.5 12.8 50.6 32h411c26.3 0 45.5 25 38.6 50.4l-41 152.3c-8.5 31.4-37 53.3-69.5 53.3H170.7l5.4 28.5c2.2 11.3 12.1 19.5 23.6 19.5H488c13.3 0 24 10.7 24 24s-10.7 24-24 24H199.7c-34.6 0-64.3-24.6-70.7-58.5L77.4 54.5c-.7-3.8-4-6.5-7.9-6.5H24C10.7 48 0 37.3 0 24zM128 464a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm336-48a48 48 0 1 1 0 96 48 48 0 1 1 0-96z"]},kq=Am,Tq={prefix:"fas",iconName:"vials",icon:[512,512,[],"f493","M0 64C0 46.3 14.3 32 32 32H88h48 56c17.7 0 32 14.3 32 32s-14.3 32-32 32V400c0 44.2-35.8 80-80 80s-80-35.8-80-80V96C14.3 96 0 81.7 0 64zM136 96H88V256h48V96zM288 64c0-17.7 14.3-32 32-32h56 48 56c17.7 0 32 14.3 32 32s-14.3 32-32 32V400c0 44.2-35.8 80-80 80s-80-35.8-80-80V96c-17.7 0-32-14.3-32-32zM424 96H376V256h48V96z"]},Pq={prefix:"fas",iconName:"plug-circle-plus",icon:[576,512,[],"e55f","M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8c12.3-2.5 24.1-6.4 35.1-11.5c-2.1-10.8-3.1-21.9-3.1-33.3c0-80.3 53.8-148 127.3-169.2c.5-2.2 .7-4.5 .7-6.8c0-17.7-14.3-32-32-32H32zM432 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm16-208v48h48c8.8 0 16 7.2 16 16s-7.2 16-16 16H448v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V384H368c-8.8 0-16-7.2-16-16s7.2-16 16-16h48V304c0-8.8 7.2-16 16-16s16 7.2 16 16z"]},Eq={prefix:"fas",iconName:"place-of-worship",icon:[640,512,[],"f67f","M224 109.3V217.6L183.3 242c-14.5 8.7-23.3 24.3-23.3 41.2V512h96V416c0-35.3 28.7-64 64-64s64 28.7 64 64v96h96V283.2c0-16.9-8.8-32.5-23.3-41.2L416 217.6V109.3c0-8.5-3.4-16.6-9.4-22.6L331.3 11.3c-6.2-6.2-16.4-6.2-22.6 0L233.4 86.6c-6 6-9.4 14.1-9.4 22.6zM24.9 330.3C9.5 338.8 0 354.9 0 372.4V464c0 26.5 21.5 48 48 48h80V273.6L24.9 330.3zM592 512c26.5 0 48-21.5 48-48V372.4c0-17.5-9.5-33.6-24.9-42.1L512 273.6V512h80z"]},Oq={prefix:"fas",iconName:"grip-vertical",icon:[320,512,[],"f58e","M40 352c-22.1 0-40 17.9-40 40l0 48c0 22.1 17.9 40 40 40l48 0c22.1 0 40-17.9 40-40l0-48c0-22.1-17.9-40-40-40l-48 0zm192 0c-22.1 0-40 17.9-40 40l0 48c0 22.1 17.9 40 40 40l48 0c22.1 0 40-17.9 40-40l0-48c0-22.1-17.9-40-40-40l-48 0zM40 320l48 0c22.1 0 40-17.9 40-40l0-48c0-22.1-17.9-40-40-40l-48 0c-22.1 0-40 17.9-40 40l0 48c0 22.1 17.9 40 40 40zM232 192c-22.1 0-40 17.9-40 40l0 48c0 22.1 17.9 40 40 40l48 0c22.1 0 40-17.9 40-40l0-48c0-22.1-17.9-40-40-40l-48 0zM40 160l48 0c22.1 0 40-17.9 40-40l0-48c0-22.1-17.9-40-40-40L40 32C17.9 32 0 49.9 0 72l0 48c0 22.1 17.9 40 40 40zM232 32c-22.1 0-40 17.9-40 40l0 48c0 22.1 17.9 40 40 40l48 0c22.1 0 40-17.9 40-40l0-48c0-22.1-17.9-40-40-40l-48 0z"]},_m={prefix:"fas",iconName:"arrow-turn-up",icon:[384,512,["level-up"],"f148","M32 448c-17.7 0-32 14.3-32 32s14.3 32 32 32l96 0c53 0 96-43 96-96l0-306.7 73.4 73.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-128-128c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L160 109.3 160 416c0 17.7-14.3 32-32 32l-96 0z"]},Rq=_m,Fq={prefix:"fas",iconName:"u",icon:[384,512,[117],"55","M32 32c17.7 0 32 14.3 32 32V288c0 70.7 57.3 128 128 128s128-57.3 128-128V64c0-17.7 14.3-32 32-32s32 14.3 32 32V288c0 106-86 192-192 192S0 394 0 288V64C0 46.3 14.3 32 32 32z"]},km={prefix:"fas",iconName:"square-root-variable",icon:[576,512,["square-root-alt"],"f698","M289 24.2C292.5 10 305.3 0 320 0H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H345L239 487.8c-3.2 13-14.2 22.6-27.6 24s-26.1-5.5-32.1-17.5L76.2 288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H96c12.1 0 23.2 6.8 28.6 17.7l73.3 146.6L289 24.2zM393.4 233.4c12.5-12.5 32.8-12.5 45.3 0L480 274.7l41.4-41.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L525.3 320l41.4 41.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L480 365.3l-41.4 41.4c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L434.7 320l-41.4-41.4c-12.5-12.5-12.5-32.8 0-45.3z"]},Bq=km,Tm={prefix:"fas",iconName:"clock",icon:[512,512,[128339,"clock-four"],"f017","M256 512C114.6 512 0 397.4 0 256S114.6 0 256 0S512 114.6 512 256s-114.6 256-256 256zM232 120V256c0 8 4 15.5 10.7 20l96 64c11 7.4 25.9 4.4 33.3-6.7s4.4-25.9-6.7-33.3L280 243.2V120c0-13.3-10.7-24-24-24s-24 10.7-24 24z"]},Dq=Tm,Pm={prefix:"fas",iconName:"backward-step",icon:[320,512,["step-backward"],"f048","M267.5 440.6c9.5 7.9 22.8 9.7 34.1 4.4s18.4-16.6 18.4-29V96c0-12.4-7.2-23.7-18.4-29s-24.5-3.6-34.1 4.4l-192 160L64 241V96c0-17.7-14.3-32-32-32S0 78.3 0 96V416c0 17.7 14.3 32 32 32s32-14.3 32-32V271l11.5 9.6 192 160z"]},Iq=Pm,Uq={prefix:"fas",iconName:"pallet",icon:[640,512,[],"f482","M32 320c-17.7 0-32 14.3-32 32s14.3 32 32 32H64v64H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H96 320 544h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H576V384h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H544 320 96 32zm96 64H288v64H128V384zm224 0H512v64H352V384z"]},Wq={prefix:"fas",iconName:"faucet",icon:[512,512,[],"e005","M192 96v12L96 96c-17.7 0-32 14.3-32 32s14.3 32 32 32l96-12 31-3.9 1-.1 1 .1 31 3.9 96 12c17.7 0 32-14.3 32-32s-14.3-32-32-32l-96 12V96c0-17.7-14.3-32-32-32s-32 14.3-32 32zM32 256c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H132.1c20.2 29 53.9 48 91.9 48s71.7-19 91.9-48H352c17.7 0 32 14.3 32 32s14.3 32 32 32h64c17.7 0 32-14.3 32-32c0-88.4-71.6-160-160-160H320l-22.6-22.6c-6-6-14.1-9.4-22.6-9.4H256V180.2l-32-4-32 4V224H173.3c-8.5 0-16.6 3.4-22.6 9.4L128 256H32z"]},$q={prefix:"fas",iconName:"baseball-bat-ball",icon:[640,512,[],"f432","M550.3 0c-10.9 0-21.4 3.4-30.2 9.8L279.7 184.6c-13.9 10.1-26.8 21.4-38.7 33.8L138.7 325.3c-9.2 9.6-19.3 18.4-30.1 26.3L79.3 372.9c1.3 1.5 2.6 3 3.9 4.7l48 64c1.6 2.2 3.1 4.4 4.4 6.6l27.3-19.9c11.6-8.4 24-15.8 37-21.8l135.3-63.1c16.7-7.8 32.7-17.2 47.6-28.1L619 143.6c13.2-9.6 21-24.9 21-41.2c0-11-3.6-21.8-10.2-30.6L609.6 44.8 591.4 20.6C581.7 7.6 566.5 0 550.3 0zM496 512c44.2 0 80-35.8 80-80s-35.8-80-80-80s-80 35.8-80 80s35.8 80 80 80zM57.6 396.8c-10.6-14.1-30.7-17-44.8-6.4s-17 30.7-6.4 44.8l48 64c10.6 14.1 30.7 17 44.8 6.4s17-30.7 6.4-44.8l-48-64z"]},qq={prefix:"fas",iconName:"s",icon:[384,512,[115],"53","M131.1 105.4c-20.1 8.6-30.8 21.8-33.9 39.4c-2.4 14.1-.7 23.2 2 29.4c2.8 6.3 7.9 12.4 16.7 18.6c19.2 13.4 48.3 22.1 84.9 32.5c1 .3 1.9 .6 2.9 .8c32.7 9.3 72 20.6 100.9 40.7c15.7 10.9 29.9 25.5 38.6 45.1c8.8 19.8 10.8 42 6.6 66.3c-7.3 42.5-35.3 71.7-71.8 87.3c-35.4 15.2-79.1 17.9-123.7 10.9l-.2 0 0 0c-24-3.9-62.7-17.1-87.6-25.6c-4.8-1.7-9.2-3.1-12.8-4.3c-16.8-5.6-25.8-23.7-20.3-40.5s23.7-25.8 40.5-20.3c4.9 1.6 10.2 3.4 15.9 5.4c25.4 8.6 56.4 19.2 74.4 22.1c36.8 5.7 67.5 2.5 88.5-6.5c20.1-8.6 30.8-21.8 33.9-39.4c2.4-14.1 .7-23.2-2-29.4c-2.8-6.3-7.9-12.4-16.7-18.6c-19.2-13.4-48.3-22.1-84.9-32.5c-1-.3-1.9-.6-2.9-.8c-32.7-9.3-72-20.6-100.9-40.7c-15.7-10.9-29.9-25.5-38.6-45.1c-8.8-19.8-10.8-42-6.6-66.3l31.5 5.5-31.5-5.5c7.3-42.5 35.3-71.7 71.8-87.3c35.4-15.2 79.1-17.9 123.7-10.9c13 2 52.4 9.6 66.6 13.4c17.1 4.5 27.2 22.1 22.7 39.2s-22.1 27.2-39.1 22.7c-11.2-3-48.2-10.2-60.1-12l4.9-31.5-4.9 31.5c-36.9-5.8-67.5-2.5-88.6 6.5z"]},Gq={prefix:"fas",iconName:"timeline",icon:[640,512,[],"e29c","M128 120c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zm32 49.3c28.3-12.3 48-40.5 48-73.3c0-44.2-35.8-80-80-80S48 51.8 48 96c0 32.8 19.7 61 48 73.3V224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H288v54.7c-28.3 12.3-48 40.5-48 73.3c0 44.2 35.8 80 80 80s80-35.8 80-80c0-32.8-19.7-61-48-73.3V288H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H544V169.3c28.3-12.3 48-40.5 48-73.3c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 32.8 19.7 61 48 73.3V224H160V169.3zM536 96c0 13.3-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24zM320 440c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24z"]},jq={prefix:"fas",iconName:"keyboard",icon:[576,512,[9e3],"f11c","M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zm16 64h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm16 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zm80-176c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V144zm16 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zM160 336c0-8.8 7.2-16 16-16H400c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V336zM272 128h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16zM256 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM368 128h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16zM352 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V240zM464 128h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H464c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16zM448 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H464c-8.8 0-16-7.2-16-16V240zm16 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H464c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16z"]},Kq={prefix:"fas",iconName:"caret-down",icon:[320,512,[],"f0d7","M137.4 374.6c12.5 12.5 32.8 12.5 45.3 0l128-128c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8L32 192c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l128 128z"]},Em={prefix:"fas",iconName:"house-chimney-medical",icon:[576,512,["clinic-medical"],"f7f2","M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c.2 35.5-28.5 64.3-64 64.3H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L416 100.7V64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V185l52.8 46.4c8 7 12 15 11 24zM272 192c-8.8 0-16 7.2-16 16v48H208c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320h48c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H320V208c0-8.8-7.2-16-16-16H272z"]},Xq=Em,He={prefix:"fas",iconName:"temperature-three-quarters",icon:[320,512,["temperature-3","thermometer-3","thermometer-three-quarters"],"f2c8","M160 64c-26.5 0-48 21.5-48 48V276.5c0 17.3-7.1 31.9-15.3 42.5C86.2 332.6 80 349.5 80 368c0 44.2 35.8 80 80 80s80-35.8 80-80c0-18.5-6.2-35.4-16.7-48.9c-8.2-10.6-15.3-25.2-15.3-42.5V112c0-26.5-21.5-48-48-48zM48 112C48 50.2 98.1 0 160 0s112 50.1 112 112V276.5c0 .1 .1 .3 .2 .6c.2 .6 .8 1.6 1.7 2.8c18.9 24.4 30.1 55 30.1 88.1c0 79.5-64.5 144-144 144S16 447.5 16 368c0-33.2 11.2-63.8 30.1-88.1c.9-1.2 1.5-2.2 1.7-2.8c.1-.3 .2-.5 .2-.6V112zM208 368c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-20.9 13.4-38.7 32-45.3V152c0-8.8 7.2-16 16-16s16 7.2 16 16V322.7c18.6 6.6 32 24.4 32 45.3z"]},Yq=He,Jq=He,Qq=He,Om={prefix:"fas",iconName:"mobile-screen",icon:[384,512,["mobile-android-alt"],"f3cf","M16 64C16 28.7 44.7 0 80 0H304c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H80c-35.3 0-64-28.7-64-64V64zM144 448c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16s-7.2-16-16-16H160c-8.8 0-16 7.2-16 16zM304 64H80V384H304V64z"]},Zq=Om,cG={prefix:"fas",iconName:"plane-up",icon:[512,512,[],"e22d","M192 93.7C192 59.5 221 0 256 0c36 0 64 59.5 64 93.7l0 66.3L497.8 278.5c8.9 5.9 14.2 15.9 14.2 26.6v56.7c0 10.9-10.7 18.6-21.1 15.2L320 320v80l57.6 43.2c4 3 6.4 7.8 6.4 12.8v42c0 7.8-6.3 14-14 14c-1.3 0-2.6-.2-3.9-.5L256 480 145.9 511.5c-1.3 .4-2.6 .5-3.9 .5c-7.8 0-14-6.3-14-14V456c0-5 2.4-9.8 6.4-12.8L192 400V320L21.1 377C10.7 380.4 0 372.7 0 361.8V305.1c0-10.7 5.3-20.7 14.2-26.6L192 160V93.7z"]},eG={prefix:"fas",iconName:"piggy-bank",icon:[576,512,[],"f4d3","M400 96l0 .7c-5.3-.4-10.6-.7-16-.7H256c-16.5 0-32.5 2.1-47.8 6c-.1-2-.2-4-.2-6c0-53 43-96 96-96s96 43 96 96zm-16 32c3.5 0 7 .1 10.4 .3c4.2 .3 8.4 .7 12.6 1.3C424.6 109.1 450.8 96 480 96h32l-18.8 75.1c15.8 14.8 28.7 32.8 37.5 52.9H544c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H512c-9.1 12.1-19.9 22.9-32 32v64c0 17.7-14.3 32-32 32H416c-17.7 0-32-14.3-32-32V448H256v32c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V416c-34.9-26.2-58.7-66.3-63.2-112H68c-37.6 0-68-30.4-68-68s30.4-68 68-68h4c13.3 0 24 10.7 24 24s-10.7 24-24 24H68c-11 0-20 9-20 20s9 20 20 20H99.2c12.1-59.8 57.7-107.5 116.3-122.8c12.9-3.4 26.5-5.2 40.5-5.2H384zm64 136c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24z"]},Rm={prefix:"fas",iconName:"battery-half",icon:[576,512,["battery-3"],"f242","M0 176c0-44.2 35.8-80 80-80H464c44.2 0 80 35.8 80 80v16c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32v16c0 44.2-35.8 80-80 80H80c-44.2 0-80-35.8-80-80V176zm80-16c-8.8 0-16 7.2-16 16V336c0 8.8 7.2 16 16 16H464c8.8 0 16-7.2 16-16V176c0-8.8-7.2-16-16-16H80zm208 32V320H96V192H288z"]},rG=Rm,aG={prefix:"fas",iconName:"mountain-city",icon:[640,512,[],"e52e","M336 0c-26.5 0-48 21.5-48 48v92.1l71.4 118.4c2.5-1.6 5.4-2.5 8.6-2.5h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-3.5l73.8 122.4c12.4 20.6 12.9 46.3 1.2 67.3c-.4 .8-.9 1.6-1.4 2.3H592c26.5 0 48-21.5 48-48V240c0-26.5-21.5-48-48-48H568V120c0-13.3-10.7-24-24-24s-24 10.7-24 24v72H480V48c0-26.5-21.5-48-48-48H336zm32 64h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V80c0-8.8 7.2-16 16-16zM352 176c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V176zm160 96c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H528c-8.8 0-16-7.2-16-16V272zm16 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H528c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16zM224 188.9L283.8 288H223l-48 64-24.6-41.2L224 188.9zm29.4-44.2C247.1 134.3 236 128 224 128s-23.1 6.3-29.4 16.7L5.1 458.9c-6.5 10.8-6.7 24.3-.7 35.3S22 512 34.5 512H413.5c12.5 0 24-6.8 30.1-17.8s5.8-24.5-.7-35.3L253.4 144.7z"]},nG={prefix:"fas",iconName:"coins",icon:[512,512,[],"f51e","M512 80c0 18-14.3 34.6-38.4 48c-29.1 16.1-72.5 27.5-122.3 30.9c-3.7-1.8-7.4-3.5-11.3-5C300.6 137.4 248.2 128 192 128c-8.3 0-16.4 .2-24.5 .6l-1.1-.6C142.3 114.6 128 98 128 80c0-44.2 86-80 192-80S512 35.8 512 80zM160.7 161.1c10.2-.7 20.7-1.1 31.3-1.1c62.2 0 117.4 12.3 152.5 31.4C369.3 204.9 384 221.7 384 240c0 4-.7 7.9-2.1 11.7c-4.6 13.2-17 25.3-35 35.5c0 0 0 0 0 0c-.1 .1-.3 .1-.4 .2l0 0 0 0c-.3 .2-.6 .3-.9 .5c-35 19.4-90.8 32-153.6 32c-59.6 0-112.9-11.3-148.2-29.1c-1.9-.9-3.7-1.9-5.5-2.9C14.3 274.6 0 258 0 240c0-34.8 53.4-64.5 128-75.4c10.5-1.5 21.4-2.7 32.7-3.5zM416 240c0-21.9-10.6-39.9-24.1-53.4c28.3-4.4 54.2-11.4 76.2-20.5c16.3-6.8 31.5-15.2 43.9-25.5V176c0 19.3-16.5 37.1-43.8 50.9c-14.6 7.4-32.4 13.7-52.4 18.5c.1-1.8 .2-3.5 .2-5.3zm-32 96c0 18-14.3 34.6-38.4 48c-1.8 1-3.6 1.9-5.5 2.9C304.9 404.7 251.6 416 192 416c-62.8 0-118.6-12.6-153.6-32C14.3 370.6 0 354 0 336V300.6c12.5 10.3 27.6 18.7 43.9 25.5C83.4 342.6 135.8 352 192 352s108.6-9.4 148.1-25.9c7.8-3.2 15.3-6.9 22.4-10.9c6.1-3.4 11.8-7.2 17.2-11.2c1.5-1.1 2.9-2.3 4.3-3.4V304v5.7V336zm32 0V304 278.1c19-4.2 36.5-9.5 52.1-16c16.3-6.8 31.5-15.2 43.9-25.5V272c0 10.5-5 21-14.9 30.9c-16.3 16.3-45 29.7-81.3 38.4c.1-1.7 .2-3.5 .2-5.3zM192 448c56.2 0 108.6-9.4 148.1-25.9c16.3-6.8 31.5-15.2 43.9-25.5V432c0 44.2-86 80-192 80S0 476.2 0 432V396.6c12.5 10.3 27.6 18.7 43.9 25.5C83.4 438.6 135.8 448 192 448z"]},tG={prefix:"fas",iconName:"khanda",icon:[576,512,[9772],"f66d","M277.8 3.7c5.9-4.9 14.6-4.9 20.5 0l48 40c5.9 4.9 7.5 13.2 3.8 19.9l0 0 0 0 0 0 0 0-.1 .1-.3 .6c-.3 .5-.7 1.3-1.2 2.3c-1 2-2.6 5-4.4 8.6c-.5 .9-.9 1.9-1.4 2.9C376.9 97.4 400 134 400 176s-23.1 78.6-57.3 97.8c.5 1 1 2 1.4 2.9c1.8 3.7 3.3 6.6 4.4 8.6c.5 1 .9 1.8 1.2 2.3l.3 .6 .1 .1 0 0 0 0c3.6 6.7 2 15-3.8 19.9L304 343.5v19.8l35.6-24.5 41.1-28.2c42.8-29.4 68.4-78 68.4-130c0-31.1-9.2-61.6-26.5-87.5l-2.8-4.2c-4-6-3.5-14 1.3-19.5s12.7-7 19.2-3.7L433.1 80c7.2-14.3 7.2-14.3 7.2-14.3l0 0 0 0 .1 0 .3 .2 1 .5c.8 .4 2 1.1 3.5 1.9c2.9 1.7 7 4.1 11.8 7.3c9.6 6.4 22.5 16.1 35.4 29c25.7 25.7 52.7 65.6 52.7 119.3c0 53.1-26.4 100.5-51.2 133.6c-12.6 16.7-25.1 30.3-34.5 39.7c-4.7 4.7-8.7 8.4-11.5 10.9c-1.4 1.3-2.5 2.2-3.3 2.9l-.9 .8-.3 .2-.1 .1 0 0 0 0s0 0-10.2-12.3l10.2 12.3c-5.1 4.3-12.4 4.9-18.2 1.6l-75.6-43-32.7 22.5 45.5 31.3c1.8-.4 3.7-.7 5.7-.7c13.3 0 24 10.7 24 24s-10.7 24-24 24c-12.2 0-22.3-9.1-23.8-21L304 423.4v28.9c9.6 5.5 16 15.9 16 27.7c0 17.7-14.3 32-32 32s-32-14.3-32-32c0-11.8 6.4-22.2 16-27.7V424.1l-40.3 27.7C229.8 463.3 219.9 472 208 472c-13.3 0-24-10.7-24-24s10.7-24 24-24c2.2 0 4.4 .3 6.5 .9l45.8-31.5-32.7-22.5-75.6 43c-5.8 3.3-13 2.7-18.2-1.6L144 400c-10.2 12.3-10.2 12.3-10.3 12.3l0 0 0 0-.1-.1-.3-.2-.9-.8c-.8-.7-1.9-1.7-3.3-2.9c-2.8-2.5-6.7-6.2-11.5-10.9c-9.4-9.4-21.9-23-34.5-39.7C58.4 324.5 32 277.1 32 224c0-53.7 26.9-93.6 52.7-119.3c12.9-12.9 25.8-22.6 35.4-29c4.8-3.2 8.9-5.7 11.8-7.3c1.5-.8 2.6-1.5 3.5-1.9l1-.5 .3-.2 .1 0 0 0 0 0s0 0 7.2 14.3l-7.2-14.3c6.5-3.2 14.3-1.7 19.2 3.7s5.3 13.4 1.3 19.5l-2.8 4.2C137.2 119 128 149.5 128 180.6c0 51.9 25.6 100.6 68.4 130l41.1 28.2L272 362.6V343.5l-42.2-35.2c-5.9-4.9-7.5-13.2-3.8-19.9l0 0 0 0 0 0 .1-.1 .3-.6c.3-.5 .7-1.3 1.2-2.3c1-2 2.6-5 4.4-8.6c.5-.9 .9-1.9 1.4-2.9C199.1 254.6 176 218 176 176s23.1-78.6 57.3-97.8c-.5-1-1-2-1.4-2.9c-1.8-3.7-3.3-6.6-4.4-8.6c-.5-1-.9-1.8-1.2-2.3l-.3-.6-.1-.1 0 0 0 0 0 0c-3.6-6.7-2-15 3.8-19.9l48-40zM252.2 122.9c-17 11.5-28.2 31-28.2 53.1s11.2 41.6 28.2 53.1C259 210.2 264 190.9 264 176s-5-34.2-11.8-53.1zm71.5 106.2c17-11.5 28.2-31 28.2-53.1s-11.2-41.6-28.2-53.1C317 141.8 312 161.1 312 176s5 34.2 11.8 53.1z"]},Fm={prefix:"fas",iconName:"sliders",icon:[512,512,["sliders-h"],"f1de","M0 416c0-17.7 14.3-32 32-32l54.7 0c12.3-28.3 40.5-48 73.3-48s61 19.7 73.3 48L480 384c17.7 0 32 14.3 32 32s-14.3 32-32 32l-246.7 0c-12.3 28.3-40.5 48-73.3 48s-61-19.7-73.3-48L32 448c-17.7 0-32-14.3-32-32zm192 0c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM384 256c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zm-32-80c32.8 0 61 19.7 73.3 48l54.7 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-54.7 0c-12.3 28.3-40.5 48-73.3 48s-61-19.7-73.3-48L32 288c-17.7 0-32-14.3-32-32s14.3-32 32-32l246.7 0c12.3-28.3 40.5-48 73.3-48zM192 64c-17.7 0-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32s-14.3-32-32-32zm73.3 0L480 64c17.7 0 32 14.3 32 32s-14.3 32-32 32l-214.7 0c-12.3 28.3-40.5 48-73.3 48s-61-19.7-73.3-48L32 128C14.3 128 0 113.7 0 96S14.3 64 32 64l86.7 0C131 35.7 159.2 16 192 16s61 19.7 73.3 48z"]},sG=Fm,iG={prefix:"fas",iconName:"folder-tree",icon:[576,512,[],"f802","M64 32C64 14.3 49.7 0 32 0S0 14.3 0 32v96V384c0 35.3 28.7 64 64 64H256V384H64V160H256V96H64V32zM288 192c0 17.7 14.3 32 32 32H544c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H445.3c-8.5 0-16.6-3.4-22.6-9.4L409.4 9.4c-6-6-14.1-9.4-22.6-9.4H320c-17.7 0-32 14.3-32 32V192zm0 288c0 17.7 14.3 32 32 32H544c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32H445.3c-8.5 0-16.6-3.4-22.6-9.4l-13.3-13.3c-6-6-14.1-9.4-22.6-9.4H320c-17.7 0-32 14.3-32 32V480z"]},oG={prefix:"fas",iconName:"network-wired",icon:[640,512,[],"f6ff","M256 64H384v64H256V64zM240 0c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48h48v32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96v32H80c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48H240c26.5 0 48-21.5 48-48V368c0-26.5-21.5-48-48-48H192V288H448v32H400c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48H560c26.5 0 48-21.5 48-48V368c0-26.5-21.5-48-48-48H512V288h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H352V192h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H240zM96 448V384H224v64H96zm320-64H544v64H416V384z"]},fG={prefix:"fas",iconName:"map-pin",icon:[320,512,[128205],"f276","M320 144c0 79.5-64.5 144-144 144S32 223.5 32 144S96.5 0 176 0s144 64.5 144 144zM176 80c8.8 0 16-7.2 16-16s-7.2-16-16-16c-53 0-96 43-96 96c0 8.8 7.2 16 16 16s16-7.2 16-16c0-35.3 28.7-64 64-64zM144 480V317.1c10.4 1.9 21.1 2.9 32 2.9s21.6-1 32-2.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32z"]},lG={prefix:"fas",iconName:"hamsa",icon:[512,512,[],"f665","M34.6 288H80c8.8 0 16-7.2 16-16V72c0-22.1 17.9-40 40-40s40 17.9 40 40V204c0 11 9 20 20 20s20-9 20-20V40c0-22.1 17.9-40 40-40s40 17.9 40 40V204c0 11 9 20 20 20s20-9 20-20V72c0-22.1 17.9-40 40-40s40 17.9 40 40V272c0 8.8 7.2 16 16 16h45.4c19.1 0 34.6 15.5 34.6 34.6c0 8.6-3.2 16.9-9 23.3L416.6 441c-41.1 45.2-99.4 71-160.6 71s-119.4-25.8-160.6-71L9 345.9c-5.8-6.4-9-14.7-9-23.3C0 303.5 15.5 288 34.6 288zM256 288c-38.4 0-76.8 35.8-90.6 50.2c-3.6 3.7-5.4 8.7-5.4 13.8s1.8 10.1 5.4 13.8C179.2 380.2 217.6 416 256 416s76.8-35.8 90.6-50.2c3.6-3.7 5.4-8.7 5.4-13.8s-1.8-10.1-5.4-13.8C332.8 323.8 294.4 288 256 288zm0 96c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},uG={prefix:"fas",iconName:"cent-sign",icon:[384,512,[],"e3f5","M224 0c17.7 0 32 14.3 32 32V66.7c30.9 5.2 59.2 17.7 83.2 35.8c14.1 10.6 17 30.7 6.4 44.8s-30.7 17-44.8 6.4C279.4 137.5 252.9 128 224 128c-70.7 0-128 57.3-128 128s57.3 128 128 128c28.9 0 55.4-9.5 76.8-25.6c14.1-10.6 34.2-7.8 44.8 6.4s7.8 34.2-6.4 44.8c-24 18-52.4 30.6-83.2 35.8V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V445.3C101.2 430.1 32 351.1 32 256s69.2-174.1 160-189.3V32c0-17.7 14.3-32 32-32z"]},hG={prefix:"fas",iconName:"flask",icon:[448,512,[],"f0c3","M288 0H160 128C110.3 0 96 14.3 96 32s14.3 32 32 32V196.8c0 11.8-3.3 23.5-9.5 33.5L10.3 406.2C3.6 417.2 0 429.7 0 442.6C0 480.9 31.1 512 69.4 512H378.6c38.3 0 69.4-31.1 69.4-69.4c0-12.8-3.6-25.4-10.3-36.4L329.5 230.4c-6.2-10.1-9.5-21.7-9.5-33.5V64c17.7 0 32-14.3 32-32s-14.3-32-32-32H288zM192 196.8V64h64V196.8c0 23.7 6.6 46.9 19 67.1L309.5 320h-171L173 263.9c12.4-20.2 19-43.4 19-67.1z"]},pG={prefix:"fas",iconName:"person-pregnant",icon:[384,512,[],"e31e","M192 96c-26.5 0-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48s-21.5 48-48 48zM120 383c-13.8-3.6-24-16.1-24-31V296.9l-4.6 7.6c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c15-24.9 40.3-41.5 68.7-45.6c4.1-.6 8.2-1 12.5-1h1.1 12.5H192c1.4 0 2.8 .1 4.1 .3c35.7 2.9 65.4 29.3 72.1 65l6.1 32.5c44.3 8.6 77.7 47.5 77.7 94.3v32c0 17.7-14.3 32-32 32H304 264v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384h-8-8v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V383z"]},mG={prefix:"fas",iconName:"wand-sparkles",icon:[512,512,[],"f72b","M464 6.1c9.5-8.5 24-8.1 33 .9l8 8c9 9 9.4 23.5 .9 33l-85.8 95.9c-2.6 2.9-4.1 6.7-4.1 10.7V176c0 8.8-7.2 16-16 16H384.2c-4.6 0-8.9 1.9-11.9 5.3L100.7 500.9C94.3 508 85.3 512 75.8 512c-8.8 0-17.3-3.5-23.5-9.8L9.7 459.7C3.5 453.4 0 445 0 436.2c0-9.5 4-18.5 11.1-24.8l111.6-99.8c3.4-3 5.3-7.4 5.3-11.9V272c0-8.8 7.2-16 16-16h34.6c3.9 0 7.7-1.5 10.7-4.1L464 6.1zM432 288c3.6 0 6.7 2.4 7.7 5.8l14.8 51.7 51.7 14.8c3.4 1 5.8 4.1 5.8 7.7s-2.4 6.7-5.8 7.7l-51.7 14.8-14.8 51.7c-1 3.4-4.1 5.8-7.7 5.8s-6.7-2.4-7.7-5.8l-14.8-51.7-51.7-14.8c-3.4-1-5.8-4.1-5.8-7.7s2.4-6.7 5.8-7.7l51.7-14.8 14.8-51.7c1-3.4 4.1-5.8 7.7-5.8zM87.7 69.8l14.8 51.7 51.7 14.8c3.4 1 5.8 4.1 5.8 7.7s-2.4 6.7-5.8 7.7l-51.7 14.8L87.7 218.2c-1 3.4-4.1 5.8-7.7 5.8s-6.7-2.4-7.7-5.8L57.5 166.5 5.8 151.7c-3.4-1-5.8-4.1-5.8-7.7s2.4-6.7 5.8-7.7l51.7-14.8L72.3 69.8c1-3.4 4.1-5.8 7.7-5.8s6.7 2.4 7.7 5.8zM224 0c3.7 0 6.9 2.5 7.8 6.1l6.8 27.3 27.3 6.8c3.6 .9 6.1 4.1 6.1 7.8s-2.5 6.9-6.1 7.8l-27.3 6.8-6.8 27.3c-.9 3.6-4.1 6.1-7.8 6.1s-6.9-2.5-7.8-6.1l-6.8-27.3-27.3-6.8c-3.6-.9-6.1-4.1-6.1-7.8s2.5-6.9 6.1-7.8l27.3-6.8 6.8-27.3c.9-3.6 4.1-6.1 7.8-6.1z"]},Bm={prefix:"fas",iconName:"ellipsis-vertical",icon:[128,512,["ellipsis-v"],"f142","M64 360c30.9 0 56 25.1 56 56s-25.1 56-56 56s-56-25.1-56-56s25.1-56 56-56zm0-160c30.9 0 56 25.1 56 56s-25.1 56-56 56s-56-25.1-56-56s25.1-56 56-56zM120 96c0 30.9-25.1 56-56 56S8 126.9 8 96S33.1 40 64 40s56 25.1 56 56z"]},vG=Bm,dG={prefix:"fas",iconName:"ticket",icon:[576,512,[127903],"f145","M64 64C28.7 64 0 92.7 0 128v80c26.5 0 48 21.5 48 48s-21.5 48-48 48v80c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V304c-26.5 0-48-21.5-48-48s21.5-48 48-48V128c0-35.3-28.7-64-64-64H64zm64 96l0 192H448V160H128zm-32 0c0-17.7 14.3-32 32-32H448c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32V160z"]},HG={prefix:"fas",iconName:"power-off",icon:[512,512,[9211],"f011","M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V256c0 17.7 14.3 32 32 32s32-14.3 32-32V32zM143.5 120.6c13.6-11.3 15.4-31.5 4.1-45.1s-31.5-15.4-45.1-4.1C49.7 115.4 16 181.8 16 256c0 132.5 107.5 240 240 240s240-107.5 240-240c0-74.2-33.8-140.6-86.6-184.6c-13.6-11.3-33.8-9.4-45.1 4.1s-9.4 33.8 4.1 45.1c38.9 32.3 63.5 81 63.5 135.4c0 97.2-78.8 176-176 176s-176-78.8-176-176c0-54.4 24.7-103.1 63.5-135.4z"]},Dm={prefix:"fas",iconName:"right-long",icon:[512,512,["long-arrow-alt-right"],"f30b","M334.5 414c8.8 3.8 19 2 26-4.6l144-136c4.8-4.5 7.5-10.8 7.5-17.4s-2.7-12.9-7.5-17.4l-144-136c-7-6.6-17.2-8.4-26-4.6s-14.5 12.5-14.5 22l0 88L32 208c-17.7 0-32 14.3-32 32l0 32c0 17.7 14.3 32 32 32l288 0 0 88c0 9.6 5.7 18.2 14.5 22z"]},zG=Dm,gG={prefix:"fas",iconName:"flag-usa",icon:[448,512,[],"f74d","M32 0C49.7 0 64 14.3 64 32V48l69-17.2c38.1-9.5 78.3-5.1 113.5 12.5c46.3 23.2 100.8 23.2 147.1 0l9.6-4.8C423.8 28.1 448 43.1 448 66.1v36.1l-44.7 16.2c-42.8 15.6-90 13.9-131.6-4.6l-16.1-7.2c-20.3-9-41.8-14.7-63.6-16.9v32.2c17.4 2.1 34.4 6.7 50.6 13.9l16.1 7.2c49.2 21.9 105 23.8 155.6 5.4L448 136.3v62l-44.7 16.2c-42.8 15.6-90 13.9-131.6-4.6l-16.1-7.2c-40.2-17.9-85-22.5-128.1-13.3L64 203.1v32.7l70.2-15.1c36.4-7.8 74.3-3.9 108.4 11.3l16.1 7.2c49.2 21.9 105 23.8 155.6 5.4L448 232.3v62l-44.7 16.2c-42.8 15.6-90 13.9-131.6-4.6l-16.1-7.2c-40.2-17.9-85-22.5-128.1-13.3L64 299.1v32.7l70.2-15.1c36.4-7.8 74.3-3.9 108.4 11.3l16.1 7.2c49.2 21.9 105 23.8 155.6 5.4L448 328.3v33.5c0 13.3-8.3 25.3-20.8 30l-34.7 13c-46.2 17.3-97.6 14.6-141.7-7.4c-37.9-19-81.4-23.7-122.5-13.4L64 400v80c0 17.7-14.3 32-32 32s-32-14.3-32-32V416 345.5 312.8 249.5 216.8 153.5 120.8 64 32C0 14.3 14.3 0 32 0zm80 96A16 16 0 1 0 80 96a16 16 0 1 0 32 0zm32 0a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm-32 48a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm32 0a16 16 0 1 0 0-32 16 16 0 1 0 0 32z"]},VG={prefix:"fas",iconName:"laptop-file",icon:[640,512,[],"e51d","M192 0H48C21.5 0 0 21.5 0 48V368c0 26.5 21.5 48 48 48H162.7c6.6-18.6 24.4-32 45.3-32V272c0-44.2 35.8-80 80-80h32V128H224c-17.7 0-32-14.3-32-32V0zm96 224c-26.5 0-48 21.5-48 48v16 96 32H208c-8.8 0-16 7.2-16 16v16c0 35.3 28.7 64 64 64H576c35.3 0 64-28.7 64-64V432c0-8.8-7.2-16-16-16H592V288c0-35.3-28.7-64-64-64H320 304 288zm32 64H528V416H304V288h16zM224 0V96h96L224 0z"]},Im={prefix:"fas",iconName:"tty",icon:[512,512,["teletype"],"f1e4","M472.7 188.8c-8.5 13.8-26.8 19.6-42.7 13.6L356 174.2c-14-5.3-22.5-18.5-21-32.4l4.6-42.6c-54.1-17.4-113.2-17.4-167.3 0l4.6 42.6c1.5 13.9-7 27.1-21 32.4L82 202.4c-15.9 6.1-34.2 .3-42.7-13.6L4.5 132.5c-7.7-12.4-5.4-28 5.5-38.1c135.9-125.8 356.1-125.8 492 0c10.9 10.1 13.2 25.7 5.5 38.1l-34.8 56.4zM32 272c0-8.8 7.2-16 16-16H80c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H48c-8.8 0-16-7.2-16-16V272zm0 192c0-8.8 7.2-16 16-16H80c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H48c-8.8 0-16-7.2-16-16V464zM96 352h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16zm32-80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H144c-8.8 0-16-7.2-16-16V272zm64 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H192c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16zm32-80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H240c-8.8 0-16-7.2-16-16V272zm64 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H288c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H384c-8.8 0-16-7.2-16-16V368zM336 256h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H336c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H432c-8.8 0-16-7.2-16-16V272zm16 176h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H432c-8.8 0-16-7.2-16-16V464c0-8.8 7.2-16 16-16zM128 464c0-8.8 7.2-16 16-16H368c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H144c-8.8 0-16-7.2-16-16V464z"]},MG=Im,CG={prefix:"fas",iconName:"diagram-next",icon:[512,512,[],"e476","M512 160c0 35.3-28.7 64-64 64H280v64h46.1c21.4 0 32.1 25.9 17 41L273 399c-9.4 9.4-24.6 9.4-33.9 0L169 329c-15.1-15.1-4.4-41 17-41H232V224H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64v64zM448 416V352H365.3l.4-.4c18.4-18.4 20.4-43.7 11-63.6l71.3 0c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64V352c0-35.3 28.7-64 64-64l71.3 0c-9.4 19.9-7.4 45.2 11 63.6l.4 .4H64v64H210.7l5.7 5.7c21.9 21.9 57.3 21.9 79.2 0l5.7-5.7H448z"]},LG={prefix:"fas",iconName:"person-rifle",icon:[576,512,[],"e54e","M265.2 192c25.4 0 49.8 7.1 70.8 19.9V512H144V337.7L90.4 428.3c-11.2 19-35.8 25.3-54.8 14.1s-25.3-35.8-14.1-54.8L97.7 258.8c24.5-41.4 69-66.8 117.1-66.8h50.4zM320 80c0 44.2-35.8 80-80 80s-80-35.8-80-80s35.8-80 80-80s80 35.8 80 80zM448 0c8.8 0 16 7.2 16 16V132.3c9.6 5.5 16 15.9 16 27.7V269.3l16-5.3V208c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v84.5c0 6.9-4.4 13-10.9 15.2L480 325.3V352h48c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H484l23 92.1c2.5 10.1-5.1 19.9-15.5 19.9H432c-8.8 0-16-7.2-16-16V400H400c-17.7 0-32-14.3-32-32V224c0-17.7 14.3-32 32-32V160c0-11.8 6.4-22.2 16-27.7V32c-8.8 0-16-7.2-16-16s7.2-16 16-16h16 16z"]},yG={prefix:"fas",iconName:"house-medical-circle-exclamation",icon:[640,512,[],"e512","M320 368c0 59.5 29.5 112.1 74.8 144H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L522.1 193.9c-8.5-1.3-17.3-1.9-26.1-1.9c-54.7 0-103.5 24.9-135.8 64H320V208c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16v48H208c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16zM496 512c-79.5 0-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144s-64.5 144-144 144zm0-48c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24zm0-192c-8.8 0-16 7.2-16 16v80c0 8.8 7.2 16 16 16s16-7.2 16-16V288c0-8.8-7.2-16-16-16z"]},bG={prefix:"fas",iconName:"closed-captioning",icon:[576,512,[],"f20a","M0 96C0 60.7 28.7 32 64 32H512c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM200 208c14.2 0 27 6.1 35.8 16c8.8 9.9 24 10.7 33.9 1.9s10.7-24 1.9-33.9c-17.5-19.6-43.1-32-71.5-32c-53 0-96 43-96 96s43 96 96 96c28.4 0 54-12.4 71.5-32c8.8-9.9 8-25-1.9-33.9s-25-8-33.9 1.9c-8.8 9.9-21.6 16-35.8 16c-26.5 0-48-21.5-48-48s21.5-48 48-48zm144 48c0-26.5 21.5-48 48-48c14.2 0 27 6.1 35.8 16c8.8 9.9 24 10.7 33.9 1.9s10.7-24 1.9-33.9c-17.5-19.6-43.1-32-71.5-32c-53 0-96 43-96 96s43 96 96 96c28.4 0 54-12.4 71.5-32c8.8-9.9 8-25-1.9-33.9s-25-8-33.9 1.9c-8.8 9.9-21.6 16-35.8 16c-26.5 0-48-21.5-48-48z"]},Um={prefix:"fas",iconName:"person-hiking",icon:[384,512,["hiking"],"f6ec","M288 48c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48zM243.3 230.7L224.2 307l49.7 49.7c9 9 14.1 21.2 14.1 33.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V397.3l-73.9-73.9c-15.8-15.8-22.2-38.6-16.9-60.3l20.4-84c8.3-34.1 42.7-54.9 76.7-46.4c19 4.8 35.6 16.4 46.4 32.7L305.1 208H336V184c0-13.3 10.7-24 24-24s24 10.7 24 24v55.8c0 .1 0 .2 0 .2s0 .2 0 .2V488c0 13.3-10.7 24-24 24s-24-10.7-24-24V272H296.6c-16 0-31-8-39.9-21.4l-13.3-20zM81.1 471.9L117.3 334c3 4.2 6.4 8.2 10.1 11.9l41.9 41.9L142.9 488.1c-4.5 17.1-22 27.3-39.1 22.8s-27.3-22-22.8-39.1zm55.5-346L101.4 266.5c-3 12.1-14.9 19.9-27.2 17.9l-47.9-8c-14-2.3-22.9-16.3-19.2-30L31.9 155c9.5-34.8 41.1-59 77.2-59h4.2c15.6 0 27.1 14.7 23.3 29.8z"]},xG=Um,SG={prefix:"fas",iconName:"venus-double",icon:[640,512,[9890],"f226","M192 288c61.9 0 112-50.1 112-112s-50.1-112-112-112S80 114.1 80 176s50.1 112 112 112zM368 176c0 86.3-62.1 158.1-144 173.1V384h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H224v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H128c-17.7 0-32-14.3-32-32s14.3-32 32-32h32V349.1C78.1 334.1 16 262.3 16 176C16 78.8 94.8 0 192 0s176 78.8 176 176zM344 318c14.6-15.6 26.8-33.4 36-53c18.8 14.4 42.4 23 68 23c61.9 0 112-50.1 112-112s-50.1-112-112-112c-25.6 0-49.1 8.6-68 23c-9.3-19.5-21.5-37.4-36-53C373.1 12.6 409.1 0 448 0c97.2 0 176 78.8 176 176c0 86.3-62.1 158.1-144 173.1V384h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H480v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H384c-17.7 0-32-14.3-32-32s14.3-32 32-32h32V349.1c-26.6-4.9-51.1-15.7-72-31.1z"]},wG={prefix:"fas",iconName:"images",icon:[576,512,[],"f302","M160 32c-35.3 0-64 28.7-64 64V320c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H160zM396 138.7l96 144c4.9 7.4 5.4 16.8 1.2 24.6S480.9 320 472 320H328 280 200c-9.2 0-17.6-5.3-21.6-13.6s-2.9-18.2 2.9-25.4l64-80c4.6-5.7 11.4-9 18.7-9s14.2 3.3 18.7 9l17.3 21.6 56-84C360.5 132 368 128 376 128s15.5 4 20 10.7zM256 128c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zM48 120c0-13.3-10.7-24-24-24S0 106.7 0 120V344c0 75.1 60.9 136 136 136H456c13.3 0 24-10.7 24-24s-10.7-24-24-24H136c-48.6 0-88-39.4-88-88V120z"]},NG={prefix:"fas",iconName:"calculator",icon:[384,512,[128425],"f1ec","M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM96 64H288c17.7 0 32 14.3 32 32v32c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V96c0-17.7 14.3-32 32-32zM64 224c0-17.7 14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32s-32-14.3-32-32zm32 64c17.7 0 32 14.3 32 32s-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32zM64 416c0-17.7 14.3-32 32-32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H96c-17.7 0-32-14.3-32-32zM192 192c17.7 0 32 14.3 32 32s-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32zM160 320c0-17.7 14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32s-32-14.3-32-32zM288 192c17.7 0 32 14.3 32 32s-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32zM256 320c0-17.7 14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32s-32-14.3-32-32zm32 64c17.7 0 32 14.3 32 32s-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32z"]},AG={prefix:"fas",iconName:"people-pulling",icon:[576,512,[],"e535","M80 96c26.5 0 48-21.5 48-48s-21.5-48-48-48S32 21.5 32 48s21.5 48 48 48zM64 128c-35.3 0-64 28.7-64 64V320c0 17.7 14.3 32 32 32c9.8 0 18.5-4.4 24.4-11.2L80.4 485.3c2.9 17.4 19.4 29.2 36.8 26.3s29.2-19.4 26.3-36.8L123.1 352h15.7l30 134.9c3.8 17.3 20.9 28.1 38.2 24.3s28.1-20.9 24.3-38.2l-57.3-258 116.3 53.8c.5 .3 1.1 .5 1.6 .7c8.6 3.6 18 3.1 25.9-.7c3.4-1.6 6.6-3.9 9.3-6.7c3.1-3.2 5.5-7 7.1-11.4c.1-.3 .2-.7 .3-1l2.5-7.5c5.7-17.1 18.3-30.9 34.7-38.2l8-3.5c1-.4 1.9-.8 2.9-1.2l-16.9 63.5c-5.6 21.1-.1 43.6 14.7 59.7l70.7 77.1 22 88.1c4.3 17.1 21.7 27.6 38.8 23.3s27.6-21.7 23.3-38.8l-23-92.1c-1.9-7.8-5.8-14.9-11.2-20.8l-49.5-54 19.3-65.5 9.6 23c4.4 10.6 12.5 19.3 22.8 24.5l26.7 13.3c15.8 7.9 35 1.5 42.9-14.3s1.5-35-14.3-42.9L537 232.7l-15.3-36.8C504.5 154.8 464.3 128 419.7 128c-22.8 0-45.3 4.8-66.1 14l-8 3.5c-24.4 10.9-44.6 29-58.1 51.6L157.3 136.9C144.7 131 130.9 128 117 128H64zM464 96c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zM349.7 335.6l-25 62.4-59.4 59.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L372.3 441c4.6-4.6 8.2-10.1 10.6-16.1l14.5-36.2-40.7-44.4c-2.5-2.7-4.8-5.6-7-8.6z"]},_G={prefix:"fas",iconName:"n",icon:[384,512,[110],"4e","M21.1 33.9c12.7-4.6 26.9-.7 35.5 9.6L320 359.6V64c0-17.7 14.3-32 32-32s32 14.3 32 32V448c0 13.5-8.4 25.5-21.1 30.1s-26.9 .7-35.5-9.6L64 152.4V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V64C0 50.5 8.4 38.5 21.1 33.9z"]},Wm={prefix:"fas",iconName:"cable-car",icon:[512,512,[128673,57551,"tram"],"f7da","M288 64c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm-64-8c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zM32 288c0-35.3 28.7-64 64-64H232V157.5l-203.1 42c-13 2.7-25.7-5.7-28.4-18.6s5.7-25.7 18.6-28.4l232-48 232-48c13-2.7 25.7 5.7 28.4 18.6s-5.7 25.7-18.6 28.4L280 147.5V224H416c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V288zm64 0c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16H96zm112 16v64c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16H224c-8.8 0-16 7.2-16 16zm144-16c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16H352z"]},kG=Wm,TG={prefix:"fas",iconName:"cloud-rain",icon:[512,512,[127783,9926],"f73d","M96 320c-53 0-96-43-96-96c0-42.5 27.6-78.6 65.9-91.2C64.7 126.1 64 119.1 64 112C64 50.1 114.1 0 176 0c43.1 0 80.5 24.3 99.2 60c14.7-17.1 36.5-28 60.8-28c44.2 0 80 35.8 80 80c0 5.5-.6 10.8-1.6 16c.5 0 1.1 0 1.6 0c53 0 96 43 96 96s-43 96-96 96H96zm-6.8 52c1.3-2.5 3.9-4 6.8-4s5.4 1.5 6.8 4l35.1 64.6c4.1 7.5 6.2 15.8 6.2 24.3v3c0 26.5-21.5 48-48 48s-48-21.5-48-48v-3c0-8.5 2.1-16.9 6.2-24.3L89.2 372zm160 0c1.3-2.5 3.9-4 6.8-4s5.4 1.5 6.8 4l35.1 64.6c4.1 7.5 6.2 15.8 6.2 24.3v3c0 26.5-21.5 48-48 48s-48-21.5-48-48v-3c0-8.5 2.1-16.9 6.2-24.3L249.2 372zm124.9 64.6L409.2 372c1.3-2.5 3.9-4 6.8-4s5.4 1.5 6.8 4l35.1 64.6c4.1 7.5 6.2 15.8 6.2 24.3v3c0 26.5-21.5 48-48 48s-48-21.5-48-48v-3c0-8.5 2.1-16.9 6.2-24.3z"]},PG={prefix:"fas",iconName:"building-circle-xmark",icon:[640,512,[],"e4d4","M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c15.1 0 28.5-6.9 37.3-17.8C340.4 462.2 320 417.5 320 368c0-54.7 24.9-103.5 64-135.8V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM496 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm59.3-180.7L518.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L473.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L496 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z"]},EG={prefix:"fas",iconName:"ship",icon:[576,512,[128674],"f21a","M192 32c0-17.7 14.3-32 32-32H352c17.7 0 32 14.3 32 32V64h48c26.5 0 48 21.5 48 48V240l44.4 14.8c23.1 7.7 29.5 37.5 11.5 53.9l-101 92.6c-16.2 9.4-34.7 15.1-50.9 15.1c-19.6 0-40.8-7.7-59.2-20.3c-22.1-15.5-51.6-15.5-73.7 0c-17.1 11.8-38 20.3-59.2 20.3c-16.2 0-34.7-5.7-50.9-15.1l-101-92.6c-18-16.5-11.6-46.2 11.5-53.9L96 240V112c0-26.5 21.5-48 48-48h48V32zM160 218.7l107.8-35.9c13.1-4.4 27.3-4.4 40.5 0L416 218.7V128H160v90.7zM306.5 421.9C329 437.4 356.5 448 384 448c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 501.7 417 512 384 512c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 437.2 165.1 448 192 448c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z"]},OG={prefix:"fas",iconName:"arrows-down-to-line",icon:[640,512,[],"e4b8","M576 416L64 416c-17.7 0-32 14.3-32 32s14.3 32 32 32l512 0c17.7 0 32-14.3 32-32s-14.3-32-32-32zm22.6-137.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L512 274.7 512 64c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 210.7-41.4-41.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0l96-96zm-320-45.3c-12.5-12.5-32.8-12.5-45.3 0L192 274.7 192 64c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 210.7L86.6 233.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0l96-96c12.5-12.5 12.5-32.8 0-45.3z"]},RG={prefix:"fas",iconName:"download",icon:[512,512,[],"f019","M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V274.7l-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L288 274.7V32zM64 352c-35.3 0-64 28.7-64 64v32c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V416c0-35.3-28.7-64-64-64H346.5l-45.3 45.3c-25 25-65.5 25-90.5 0L165.5 352H64zM432 456c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24z"]},$m={prefix:"fas",iconName:"face-grin",icon:[512,512,[128512,"grin"],"f580","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM388.1 312.8c12.3-3.8 24.3 6.9 19.3 18.7C382.4 390.6 324.2 432 256.3 432s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19zM208.4 208c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm128 32c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},FG=$m,qm={prefix:"fas",iconName:"delete-left",icon:[576,512,[9003,"backspace"],"f55a","M576 128c0-35.3-28.7-64-64-64H205.3c-17 0-33.3 6.7-45.3 18.7L9.4 233.4c-6 6-9.4 14.1-9.4 22.6s3.4 16.6 9.4 22.6L160 429.3c12 12 28.3 18.7 45.3 18.7H512c35.3 0 64-28.7 64-64V128zM271 175c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z"]},BG=qm,qa={prefix:"fas",iconName:"eye-dropper",icon:[512,512,["eye-dropper-empty","eyedropper"],"f1fb","M341.6 29.2L240.1 130.8l-9.4-9.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-9.4-9.4L482.8 170.4c39-39 39-102.2 0-141.1s-102.2-39-141.1 0zM55.4 323.3c-15 15-23.4 35.4-23.4 56.6v42.4L5.4 462.2c-8.5 12.7-6.8 29.6 4 40.4s27.7 12.5 40.4 4L89.7 480h42.4c21.2 0 41.6-8.4 56.6-23.4L309.4 335.9l-45.3-45.3L143.4 411.3c-3 3-7.1 4.7-11.3 4.7H96V379.9c0-4.2 1.7-8.3 4.7-11.3L221.4 247.9l-45.3-45.3L55.4 323.3z"]},DG=qa,IG=qa,UG={prefix:"fas",iconName:"file-circle-check",icon:[576,512,[],"e5a0","M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zM576 368c0 79.5-64.5 144-144 144s-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144zm-76.7-43.3c-6.2-6.2-16.4-6.2-22.6 0L416 385.4l-28.7-28.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l40 40c6.2 6.2 16.4 6.2 22.6 0l72-72c6.2-6.2 6.2-16.4 0-22.6z"]},WG={prefix:"fas",iconName:"forward",icon:[512,512,[9193],"f04e","M52.5 440.6c-9.5 7.9-22.8 9.7-34.1 4.4S0 428.4 0 416V96C0 83.6 7.2 72.3 18.4 67s24.5-3.6 34.1 4.4L224 214.3V256v41.7L52.5 440.6zM256 352V256 128 96c0-12.4 7.2-23.7 18.4-29s24.5-3.6 34.1 4.4l192 160c7.3 6.1 11.5 15.1 11.5 24.6s-4.2 18.5-11.5 24.6l-192 160c-9.5 7.9-22.8 9.7-34.1 4.4s-18.4-16.6-18.4-29V352z"]},Ga={prefix:"fas",iconName:"mobile",icon:[384,512,[128241,"mobile-android","mobile-phone"],"f3ce","M80 0C44.7 0 16 28.7 16 64V448c0 35.3 28.7 64 64 64H304c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H80zm80 432h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H160c-8.8 0-16-7.2-16-16s7.2-16 16-16z"]},$G=Ga,qG=Ga,Gm={prefix:"fas",iconName:"face-meh",icon:[512,512,[128528,"meh"],"f11a","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM176.4 240c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm192-32c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zM160 336H352c8.8 0 16 7.2 16 16s-7.2 16-16 16H160c-8.8 0-16-7.2-16-16s7.2-16 16-16z"]},GG=Gm,jG={prefix:"fas",iconName:"align-center",icon:[448,512,[],"f037","M352 64c0-17.7-14.3-32-32-32H128c-17.7 0-32 14.3-32 32s14.3 32 32 32H320c17.7 0 32-14.3 32-32zm96 128c0-17.7-14.3-32-32-32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32zM0 448c0 17.7 14.3 32 32 32H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32zM352 320c0-17.7-14.3-32-32-32H128c-17.7 0-32 14.3-32 32s14.3 32 32 32H320c17.7 0 32-14.3 32-32z"]},jm={prefix:"fas",iconName:"book-skull",icon:[448,512,["book-dead"],"f6b7","M0 96C0 43 43 0 96 0H384h32c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384 96c-53 0-96-43-96-96V96zM64 416c0 17.7 14.3 32 32 32H352V384H96c-17.7 0-32 14.3-32 32zM320 112c0-35.3-35.8-64-80-64s-80 28.7-80 64c0 20.9 12.6 39.5 32 51.2V176c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V163.2c19.4-11.7 32-30.3 32-51.2zM208 128c-8.8 0-16-7.2-16-16s7.2-16 16-16s16 7.2 16 16s-7.2 16-16 16zm80-16c0 8.8-7.2 16-16 16s-16-7.2-16-16s7.2-16 16-16s16 7.2 16 16zM134.3 209.3c-8.1-3.5-17.5 .3-21 8.4s.3 17.5 8.4 21L199.4 272l-77.7 33.3c-8.1 3.5-11.9 12.9-8.4 21s12.9 11.9 21 8.4L240 289.4l105.7 45.3c8.1 3.5 17.5-.3 21-8.4s-.3-17.5-8.4-21L280.6 272l77.7-33.3c8.1-3.5 11.9-12.9 8.4-21s-12.9-11.9-21-8.4L240 254.6 134.3 209.3z"]},KG=jm,Km={prefix:"fas",iconName:"id-card",icon:[576,512,[62147,"drivers-license"],"f2c2","M0 96l576 0c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96zm0 32V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128H0zM64 405.3c0-29.5 23.9-53.3 53.3-53.3H234.7c29.5 0 53.3 23.9 53.3 53.3c0 5.9-4.8 10.7-10.7 10.7H74.7c-5.9 0-10.7-4.8-10.7-10.7zM176 320c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64zM352 208c0-8.8 7.2-16 16-16H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16zm0 64c0-8.8 7.2-16 16-16H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16zm0 64c0-8.8 7.2-16 16-16H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16z"]},XG=Km,Xm={prefix:"fas",iconName:"outdent",icon:[512,512,["dedent"],"f03b","M32 64c0-17.7 14.3-32 32-32H448c17.7 0 32 14.3 32 32s-14.3 32-32 32H64C46.3 96 32 81.7 32 64zM224 192c0-17.7 14.3-32 32-32H448c17.7 0 32 14.3 32 32s-14.3 32-32 32H256c-17.7 0-32-14.3-32-32zm32 96H448c17.7 0 32 14.3 32 32s-14.3 32-32 32H256c-17.7 0-32-14.3-32-32s14.3-32 32-32zM32 448c0-17.7 14.3-32 32-32H448c17.7 0 32 14.3 32 32s-14.3 32-32 32H64c-17.7 0-32-14.3-32-32zm.2-179.4c-8.2-6.4-8.2-18.9 0-25.3l101.9-79.3c10.5-8.2 25.8-.7 25.8 12.6V335.3c0 13.3-15.3 20.8-25.8 12.6L32.2 268.6z"]},YG=Xm,JG={prefix:"fas",iconName:"heart-circle-exclamation",icon:[576,512,[],"e4fe","M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176c28.3 0 55 6.7 78.7 18.5c.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5zM432 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm0-48c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zm0-192c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z"]},ze={prefix:"fas",iconName:"house",icon:[576,512,[127968,63498,63500,"home","home-alt","home-lg-alt"],"f015","M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c0 2.7-.2 5.4-.5 8.1V472c0 22.1-17.9 40-40 40H456c-1.1 0-2.2 0-3.3-.1c-1.4 .1-2.8 .1-4.2 .1H416 392c-22.1 0-40-17.9-40-40V448 384c0-17.7-14.3-32-32-32H256c-17.7 0-32 14.3-32 32v64 24c0 22.1-17.9 40-40 40H160 128.1c-1.5 0-3-.1-4.5-.2c-1.2 .1-2.4 .2-3.6 .2H104c-22.1 0-40-17.9-40-40V360c0-.9 0-1.9 .1-2.8V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L564.8 231.5c8 7 12 15 11 24z"]},QG=ze,ZG=ze,cj=ze,ej={prefix:"fas",iconName:"calendar-week",icon:[448,512,[],"f784","M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zm80 64c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16H368c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H80z"]},rj={prefix:"fas",iconName:"laptop-medical",icon:[640,512,[],"f812","M64 96c0-35.3 28.7-64 64-64H512c35.3 0 64 28.7 64 64V352H512V96H128V352H64V96zM0 403.2C0 392.6 8.6 384 19.2 384H620.8c10.6 0 19.2 8.6 19.2 19.2c0 42.4-34.4 76.8-76.8 76.8H76.8C34.4 480 0 445.6 0 403.2zM288 160c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H352v48c0 8.8-7.2 16-16 16H304c-8.8 0-16-7.2-16-16V272H240c-8.8 0-16-7.2-16-16V224c0-8.8 7.2-16 16-16h48V160z"]},aj={prefix:"fas",iconName:"b",icon:[320,512,[98],"42","M32 32C14.3 32 0 46.3 0 64V256 448c0 17.7 14.3 32 32 32H192c70.7 0 128-57.3 128-128c0-46.5-24.8-87.3-62-109.7c18.7-22.3 30-51 30-82.3c0-70.7-57.3-128-128-128H32zM160 224H64V96h96c35.3 0 64 28.7 64 64s-28.7 64-64 64zM64 288h96 32c35.3 0 64 28.7 64 64s-28.7 64-64 64H64V288z"]},nj={prefix:"fas",iconName:"file-medical",icon:[384,512,[],"f477","M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM160 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H224v48c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V352H112c-8.8 0-16-7.2-16-16V304c0-8.8 7.2-16 16-16h48V240z"]},tj={prefix:"fas",iconName:"dice-one",icon:[448,512,[9856],"f525","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM224 288c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},sj={prefix:"fas",iconName:"kiwi-bird",icon:[576,512,[],"f535","M291.2 388.4c31.2-18.8 64.7-36.4 101.1-36.4H448c4.6 0 9.1-.2 13.6-.7l85.3 121.9c4 5.7 11.3 8.2 17.9 6.1s11.2-8.3 11.2-15.3V224c0-70.7-57.3-128-128-128H392.3c-36.4 0-69.9-17.6-101.1-36.4C262.3 42.1 228.3 32 192 32C86 32 0 118 0 224c0 71.1 38.6 133.1 96 166.3V456c0 13.3 10.7 24 24 24s24-10.7 24-24V410c15.3 3.9 31.4 6 48 6c5.4 0 10.7-.2 16-.7V456c0 13.3 10.7 24 24 24s24-10.7 24-24V405.1c12.4-4.4 24.2-10 35.2-16.7zM448 248c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24z"]},Ym={prefix:"fas",iconName:"arrow-right-arrow-left",icon:[448,512,[8644,"exchange"],"f0ec","M438.6 150.6c12.5-12.5 12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.7 96 32 96C14.3 96 0 110.3 0 128s14.3 32 32 32l306.7 0-41.4 41.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l96-96zm-333.3 352c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 416 416 416c17.7 0 32-14.3 32-32s-14.3-32-32-32l-306.7 0 41.4-41.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3l96 96z"]},ij=Ym,ja={prefix:"fas",iconName:"rotate-right",icon:[512,512,["redo-alt","rotate-forward"],"f2f9","M463.5 224H472c13.3 0 24-10.7 24-24V72c0-9.7-5.8-18.5-14.8-22.2s-19.3-1.7-26.2 5.2L413.4 96.6c-87.6-86.5-228.7-86.2-315.8 1c-87.5 87.5-87.5 229.3 0 316.8s229.3 87.5 316.8 0c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0c-62.5 62.5-163.8 62.5-226.3 0s-62.5-163.8 0-226.3c62.2-62.2 162.7-62.5 225.3-1L327 183c-6.9 6.9-8.9 17.2-5.2 26.2s12.5 14.8 22.2 14.8H463.5z"]},oj=ja,fj=ja,Jm={prefix:"fas",iconName:"utensils",icon:[448,512,[127860,61685,"cutlery"],"f2e7","M416 0C400 0 288 32 288 176V288c0 35.3 28.7 64 64 64h32V480c0 17.7 14.3 32 32 32s32-14.3 32-32V352 240 32c0-17.7-14.3-32-32-32zM64 16C64 7.8 57.9 1 49.7 .1S34.2 4.6 32.4 12.5L2.1 148.8C.7 155.1 0 161.5 0 167.9c0 45.9 35.1 83.6 80 87.7V480c0 17.7 14.3 32 32 32s32-14.3 32-32V255.6c44.9-4.1 80-41.8 80-87.7c0-6.4-.7-12.8-2.1-19.1L191.6 12.5c-1.8-8-9.3-13.3-17.4-12.4S160 7.8 160 16V150.2c0 5.4-4.4 9.8-9.8 9.8c-5.1 0-9.3-3.9-9.8-9L127.9 14.6C127.2 6.3 120.3 0 112 0s-15.2 6.3-15.9 14.6L83.7 151c-.5 5.1-4.7 9-9.8 9c-5.4 0-9.8-4.4-9.8-9.8V16zm48.3 152l-.3 0-.3 0 .3-.7 .3 .7z"]},lj=Jm,Qm={prefix:"fas",iconName:"arrow-up-wide-short",icon:[576,512,["sort-amount-up"],"f161","M151.6 42.4C145.5 35.8 137 32 128 32s-17.5 3.8-23.6 10.4l-88 96c-11.9 13-11.1 33.3 2 45.2s33.3 11.1 45.2-2L96 146.3V448c0 17.7 14.3 32 32 32s32-14.3 32-32V146.3l32.4 35.4c11.9 13 32.2 13.9 45.2 2s13.9-32.2 2-45.2l-88-96zM320 480h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H320c-17.7 0-32 14.3-32 32s14.3 32 32 32zm0-128h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H320c-17.7 0-32 14.3-32 32s14.3 32 32 32zm0-128H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H320c-17.7 0-32 14.3-32 32s14.3 32 32 32zm0-128H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H320c-17.7 0-32 14.3-32 32s14.3 32 32 32z"]},uj=Qm,hj={prefix:"fas",iconName:"mill-sign",icon:[384,512,[],"e1ed","M302.1 42.8c5.9-16.6-2.7-35-19.4-40.9s-35 2.7-40.9 19.4L208 116.1c-5.7 4-11.1 8.5-16 13.5C171.7 108.9 143.3 96 112 96c-19.5 0-37.8 5-53.7 13.7C52.5 101.4 42.9 96 32 96C14.3 96 0 110.3 0 128v80V416c0 17.7 14.3 32 32 32s32-14.3 32-32V208c0-26.5 21.5-48 48-48s48 21.5 48 48v42.5L81.9 469.2c-5.9 16.6 2.7 35 19.4 40.9s35-2.7 40.9-19.4l21.4-60C168.9 441 179.6 448 192 448c17.7 0 32-14.3 32-32V261.5l35.7-100c3.9-1 8.1-1.6 12.3-1.6c26.5 0 48 21.5 48 48V416c0 17.7 14.3 32 32 32s32-14.3 32-32V208c0-58.2-44.3-106-101.1-111.5l19.2-53.8z"]},pj={prefix:"fas",iconName:"bowl-rice",icon:[512,512,[],"e2eb","M176 56c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H200c-13.3 0-24-10.7-24-24zm24 48h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H200c-13.3 0-24-10.7-24-24s10.7-24 24-24zM56 176H72c13.3 0 24 10.7 24 24s-10.7 24-24 24H56c-13.3 0-24-10.7-24-24s10.7-24 24-24zM0 283.4C0 268.3 12.3 256 27.4 256H484.6c15.1 0 27.4 12.3 27.4 27.4c0 70.5-44.4 130.7-106.7 154.1L403.5 452c-2 16-15.6 28-31.8 28H140.2c-16.1 0-29.8-12-31.8-28l-1.8-14.4C44.4 414.1 0 353.9 0 283.4zM224 200c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H248c-13.3 0-24-10.7-24-24zm-96 0c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H152c-13.3 0-24-10.7-24-24zm-24-96h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H104c-13.3 0-24-10.7-24-24s10.7-24 24-24zm216 96c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H344c-13.3 0-24-10.7-24-24zm-24-96h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H296c-13.3 0-24-10.7-24-24s10.7-24 24-24zm120 96c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H440c-13.3 0-24-10.7-24-24zm-24-96h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H392c-13.3 0-24-10.7-24-24s10.7-24 24-24zM296 32h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H296c-13.3 0-24-10.7-24-24s10.7-24 24-24z"]},mj={prefix:"fas",iconName:"skull",icon:[512,512,[128128],"f54c","M416 398.9c58.5-41.1 96-104.1 96-174.9C512 100.3 397.4 0 256 0S0 100.3 0 224c0 70.7 37.5 133.8 96 174.9c0 .4 0 .7 0 1.1v64c0 26.5 21.5 48 48 48h48V464c0-8.8 7.2-16 16-16s16 7.2 16 16v48h64V464c0-8.8 7.2-16 16-16s16 7.2 16 16v48h48c26.5 0 48-21.5 48-48V400c0-.4 0-.7 0-1.1zM224 256c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zm128 64c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64z"]},Zm={prefix:"fas",iconName:"tower-broadcast",icon:[576,512,["broadcast-tower"],"f519","M80.3 44C69.8 69.9 64 98.2 64 128s5.8 58.1 16.3 84c6.6 16.4-1.3 35-17.7 41.7s-35-1.3-41.7-17.7C7.4 202.6 0 166.1 0 128S7.4 53.4 20.9 20C27.6 3.6 46.2-4.3 62.6 2.3S86.9 27.6 80.3 44zM555.1 20C568.6 53.4 576 89.9 576 128s-7.4 74.6-20.9 108c-6.6 16.4-25.3 24.3-41.7 17.7S489.1 228.4 495.7 212c10.5-25.9 16.3-54.2 16.3-84s-5.8-58.1-16.3-84C489.1 27.6 497 9 513.4 2.3s35 1.3 41.7 17.7zM352 128c0 23.7-12.9 44.4-32 55.4V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V183.4c-19.1-11.1-32-31.7-32-55.4c0-35.3 28.7-64 64-64s64 28.7 64 64zM170.6 76.8C163.8 92.4 160 109.7 160 128s3.8 35.6 10.6 51.2c7.1 16.2-.3 35.1-16.5 42.1s-35.1-.3-42.1-16.5c-10.3-23.6-16-49.6-16-76.8s5.7-53.2 16-76.8c7.1-16.2 25.9-23.6 42.1-16.5s23.6 25.9 16.5 42.1zM464 51.2c10.3 23.6 16 49.6 16 76.8s-5.7 53.2-16 76.8c-7.1 16.2-25.9 23.6-42.1 16.5s-23.6-25.9-16.5-42.1c6.8-15.6 10.6-32.9 10.6-51.2s-3.8-35.6-10.6-51.2c-7.1-16.2 .3-35.1 16.5-42.1s35.1 .3 42.1 16.5z"]},vj=Zm,dj={prefix:"fas",iconName:"truck-pickup",icon:[640,512,[128763],"f63c","M368.6 96l76.8 96H288V96h80.6zM224 80V192H64c-17.7 0-32 14.3-32 32v64c-17.7 0-32 14.3-32 32s14.3 32 32 32H65.1c-.7 5.2-1.1 10.6-1.1 16c0 61.9 50.1 112 112 112s112-50.1 112-112c0-5.4-.4-10.8-1.1-16h66.3c-.7 5.2-1.1 10.6-1.1 16c0 61.9 50.1 112 112 112s112-50.1 112-112c0-5.4-.4-10.8-1.1-16H608c17.7 0 32-14.3 32-32s-14.3-32-32-32V224c0-17.7-14.3-32-32-32H527.4L418.6 56c-12.1-15.2-30.5-24-50-24H272c-26.5 0-48 21.5-48 48zM128 368c0-26.5 21.5-48 48-48s48 21.5 48 48s-21.5 48-48 48s-48-21.5-48-48zm288 0c0-26.5 21.5-48 48-48s48 21.5 48 48s-21.5 48-48 48s-48-21.5-48-48z"]},cv={prefix:"fas",iconName:"up-long",icon:[320,512,["long-arrow-alt-up"],"f30c","M318 177.5c3.8-8.8 2-19-4.6-26l-136-144C172.9 2.7 166.6 0 160 0s-12.9 2.7-17.4 7.5l-136 144c-6.6 7-8.4 17.2-4.6 26S14.4 192 24 192h88l0 288c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32l0-288h88c9.6 0 18.2-5.7 22-14.5z"]},Hj=cv,zj={prefix:"fas",iconName:"stop",icon:[384,512,[9209],"f04d","M0 128C0 92.7 28.7 64 64 64H320c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128z"]},gj={prefix:"fas",iconName:"code-merge",icon:[448,512,[],"f387","M80 104c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zm32.4 49.2c28-12.4 47.6-40.5 47.6-73.2c0-44.2-35.8-80-80-80S0 35.8 0 80c0 32.8 19.7 61 48 73.3V358.7C19.7 371 0 399.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-32.8-19.7-61-48-73.3V272c26.7 20.1 60 32 96 32h86.7c12.3 28.3 40.5 48 73.3 48c44.2 0 80-35.8 80-80s-35.8-80-80-80c-32.8 0-61 19.7-73.3 48H208c-49.9 0-91-38.1-95.6-86.8zM80 456c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zM392 272c0 13.3-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24z"]},Vj={prefix:"fas",iconName:"upload",icon:[512,512,[],"f093","M288 109.3V352c0 17.7-14.3 32-32 32s-32-14.3-32-32V109.3l-73.4 73.4c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l128-128c12.5-12.5 32.8-12.5 45.3 0l128 128c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L288 109.3zM64 352H192c0 35.3 28.7 64 64 64s64-28.7 64-64H448c35.3 0 64 28.7 64 64v32c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V416c0-35.3 28.7-64 64-64zM432 456c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24z"]},Mj={prefix:"fas",iconName:"hurricane",icon:[384,512,[],"f751","M0 208C0 104.4 75.7 18.5 174.9 2.6C184 1.2 192 8.6 192 17.9V81.2c0 8.4 6.5 15.3 14.7 16.5C307 112.5 384 199 384 303.4c0 103.6-75.7 189.5-174.9 205.4c-9.2 1.5-17.1-5.9-17.1-15.2V430.2c0-8.4-6.5-15.3-14.7-16.5C77 398.9 0 312.4 0 208zm288 48c0-53-43-96-96-96s-96 43-96 96s43 96 96 96s96-43 96-96zm-96 32c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},Cj={prefix:"fas",iconName:"mound",icon:[576,512,[],"e52d","M144.1 179.2C173.8 127.7 228.6 96 288 96s114.2 31.7 143.9 83.2L540.4 368c12.3 21.3-3.1 48-27.7 48H63.3c-24.6 0-40-26.6-27.7-48L144.1 179.2z"]},Lj={prefix:"fas",iconName:"toilet-portable",icon:[320,512,[],"e583","M0 32V64H320V32c0-17.7-14.3-32-32-32H32C14.3 0 0 14.3 0 32zM24 96H0v24V488c0 13.3 10.7 24 24 24s24-10.7 24-24v-8H272v8c0 13.3 10.7 24 24 24s24-10.7 24-24V120 96H296 24zM256 240v64c0 8.8-7.2 16-16 16s-16-7.2-16-16V240c0-8.8 7.2-16 16-16s16 7.2 16 16z"]},yj={prefix:"fas",iconName:"compact-disc",icon:[512,512,[128191,128192,128440],"f51f","M512 256c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0S512 114.6 512 256zM256 224c17.7 0 32 14.3 32 32s-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32zm-96 32c0 53 43 96 96 96s96-43 96-96s-43-96-96-96s-96 43-96 96zM96 240c0-35 17.5-71.1 45.2-98.8S205 96 240 96c8.8 0 16-7.2 16-16s-7.2-16-16-16c-45.4 0-89.2 22.3-121.5 54.5S64 194.6 64 240c0 8.8 7.2 16 16 16s16-7.2 16-16z"]},ev={prefix:"fas",iconName:"file-arrow-down",icon:[384,512,["file-download"],"f56d","M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM216 232V334.1l31-31c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-72 72c-9.4 9.4-24.6 9.4-33.9 0l-72-72c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l31 31V232c0-13.3 10.7-24 24-24s24 10.7 24 24z"]},bj=ev,xj={prefix:"fas",iconName:"caravan",icon:[640,512,[],"f8ff","M0 112C0 67.8 35.8 32 80 32H416c88.4 0 160 71.6 160 160V352h32c17.7 0 32 14.3 32 32s-14.3 32-32 32l-32 0H288c0 53-43 96-96 96s-96-43-96-96H80c-44.2 0-80-35.8-80-80V112zM320 352H448V256H416c-8.8 0-16-7.2-16-16s7.2-16 16-16h32V160c0-17.7-14.3-32-32-32H352c-17.7 0-32 14.3-32 32V352zM96 128c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H224c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H96zm96 336c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48z"]},Sj={prefix:"fas",iconName:"shield-cat",icon:[512,512,[],"e572","M269.4 2.9C265.2 1 260.7 0 256 0s-9.2 1-13.4 2.9L54.3 82.8c-22 9.3-38.4 31-38.3 57.2c.5 99.2 41.3 280.7 213.6 363.2c16.7 8 36.1 8 52.8 0C454.7 420.7 495.5 239.2 496 140c.1-26.2-16.3-47.9-38.3-57.2L269.4 2.9zM160 154.4c0-5.8 4.7-10.4 10.4-10.4h.2c3.4 0 6.5 1.6 8.5 4.3l40 53.3c3 4 7.8 6.4 12.8 6.4h48c5 0 9.8-2.4 12.8-6.4l40-53.3c2-2.7 5.2-4.3 8.5-4.3h.2c5.8 0 10.4 4.7 10.4 10.4V272c0 53-43 96-96 96s-96-43-96-96V154.4zM216 288c8.8 0 16-7.2 16-16s-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16zm96-16c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16z"]},rv={prefix:"fas",iconName:"bolt",icon:[448,512,[9889,"zap"],"f0e7","M349.4 44.6c5.9-13.7 1.5-29.7-10.6-38.5s-28.6-8-39.9 1.8l-256 224c-10 8.8-13.6 22.9-8.9 35.3S50.7 288 64 288H175.5L98.6 467.4c-5.9 13.7-1.5 29.7 10.6 38.5s28.6 8 39.9-1.8l256-224c10-8.8 13.6-22.9 8.9-35.3s-16.6-20.7-30-20.7H272.5L349.4 44.6z"]},wj=rv,Nj={prefix:"fas",iconName:"glass-water",icon:[448,512,[],"e4f4","M64 0C55.1 0 46.6 3.7 40.6 10.2s-9.1 15.2-8.5 24.1L60.9 437.7c3 41.9 37.8 74.3 79.8 74.3H307.3c42 0 76.8-32.4 79.8-74.3L415.9 34.3c.6-8.9-2.4-17.6-8.5-24.1S392.9 0 384 0H64zm41 156.5L98.4 64H349.6L343 156.5l-24.2 12.1c-19.4 9.7-42.2 9.7-61.6 0c-20.9-10.4-45.5-10.4-66.4 0c-19.4 9.7-42.2 9.7-61.6 0L105 156.5z"]},Aj={prefix:"fas",iconName:"oil-well",icon:[576,512,[],"e532","M528.3 61.3c-11.4-42.7-55.3-68-98-56.6L414.9 8.8C397.8 13.4 387.7 31 392.3 48l24.5 91.4L308.5 167.5l-6.3-18.1C297.7 136.6 285.6 128 272 128s-25.7 8.6-30.2 21.4l-13.6 39L96 222.6V184c0-13.3-10.7-24-24-24s-24 10.7-24 24V448H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H406.7L340 257.5l-62.2 16.1L305.3 352H238.7L265 277l-74.6 19.3L137.3 448H96V288.8l337.4-87.5 25.2 94c4.6 17.1 22.1 27.2 39.2 22.6l15.5-4.1c42.7-11.4 68-55.3 56.6-98L528.3 61.3zM205.1 448l11.2-32H327.7l11.2 32H205.1z"]},_j={prefix:"fas",iconName:"vault",icon:[576,512,[],"e2c5","M64 0C28.7 0 0 28.7 0 64V416c0 35.3 28.7 64 64 64H80l16 32h64l16-32H400l16 32h64l16-32h16c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM224 320c44.2 0 80-35.8 80-80s-35.8-80-80-80s-80 35.8-80 80s35.8 80 80 80zm0 80c-88.4 0-160-71.6-160-160s71.6-160 160-160s160 71.6 160 160s-71.6 160-160 160zM480 221.3V336c0 8.8-7.2 16-16 16s-16-7.2-16-16V221.3c-18.6-6.6-32-24.4-32-45.3c0-26.5 21.5-48 48-48s48 21.5 48 48c0 20.9-13.4 38.7-32 45.3z"]},kj={prefix:"fas",iconName:"mars",icon:[448,512,[9794],"f222","M289.8 46.8c3.7-9 12.5-14.8 22.2-14.8H424c13.3 0 24 10.7 24 24V168c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-33.4-33.4L321 204.2c19.5 28.4 31 62.7 31 99.8c0 97.2-78.8 176-176 176S0 401.2 0 304s78.8-176 176-176c37 0 71.4 11.4 99.8 31l52.6-52.6L295 73c-6.9-6.9-8.9-17.2-5.2-26.2zM400 80l0 0h0v0zM176 416c61.9 0 112-50.1 112-112s-50.1-112-112-112s-112 50.1-112 112s50.1 112 112 112z"]},Tj={prefix:"fas",iconName:"toilet",icon:[448,512,[128701],"f7d8","M24 0C10.7 0 0 10.7 0 24S10.7 48 24 48h8V196.9c-1.9 1.4-3.8 2.9-5.6 4.4C10.9 214.5 0 232.9 0 256c0 46.9 14.3 84.1 37 112.5c14.2 17.7 31.1 31.3 48.5 41.8L65.6 469.9c-3.3 9.8-1.6 20.5 4.4 28.8s15.7 13.3 26 13.3H352c10.3 0 19.9-4.9 26-13.3s7.7-19.1 4.4-28.8l-19.8-59.5c17.4-10.5 34.3-24.1 48.5-41.8c22.7-28.4 37-65.5 37-112.5c0-23.1-10.9-41.5-26.4-54.6c-1.8-1.5-3.7-3-5.6-4.4V48h8c13.3 0 24-10.7 24-24s-10.7-24-24-24H24zM384 256.3c0 1-.3 2.6-3.8 5.6c-4.8 4.1-14 9-29.3 13.4C320.5 284 276.1 288 224 288s-96.5-4-126.9-12.8c-15.3-4.4-24.5-9.3-29.3-13.4c-3.5-3-3.8-4.6-3.8-5.6l0-.3 0-.1c0-1 0-2.5 3.8-5.8c4.8-4.1 14-9 29.3-13.4C127.5 228 171.9 224 224 224s96.5 4 126.9 12.8c15.3 4.4 24.5 9.3 29.3 13.4c3.8 3.2 3.8 4.8 3.8 5.8l0 .1 0 .3zM328.2 384l-.2 .5 0-.5h.2zM112 64h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16z"]},Pj={prefix:"fas",iconName:"plane-circle-xmark",icon:[640,512,[],"e557","M256 0c-35 0-64 59.5-64 93.7v84.6L8.1 283.4c-5 2.8-8.1 8.2-8.1 13.9v65.5c0 10.6 10.2 18.3 20.4 15.4l171.6-49 0 70.9-57.6 43.2c-4 3-6.4 7.8-6.4 12.8v42c0 7.8 6.3 14 14 14c1.3 0 2.6-.2 3.9-.5L256 480l110.1 31.5c1.3 .4 2.6 .5 3.9 .5c6 0 11.1-3.7 13.1-9C344.5 470.7 320 422.2 320 368c0-60.6 30.6-114 77.1-145.6L320 178.3V93.7C320 59.5 292 0 256 0zM496 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm59.3-180.7L518.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L473.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L496 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z"]},o7={prefix:"fas",iconName:"yen-sign",icon:[320,512,[165,"cny","jpy","rmb","yen"],"f157","M58.6 46.2C48.8 31.5 29 27.6 14.2 37.4S-4.4 67 5.4 81.7L100.2 224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32h80v32H48c-17.7 0-32 14.3-32 32s14.3 32 32 32h80v64c0 17.7 14.3 32 32 32s32-14.3 32-32V384h80c17.7 0 32-14.3 32-32s-14.3-32-32-32H192V288h80c17.7 0 32-14.3 32-32s-14.3-32-32-32H219.8L314.6 81.7c9.8-14.7 5.8-34.6-8.9-44.4s-34.6-5.8-44.4 8.9L160 198.3 58.6 46.2z"]},Ej=o7,Oj=o7,Rj=o7,Fj=o7,ge={prefix:"fas",iconName:"ruble-sign",icon:[384,512,[8381,"rouble","rub","ruble"],"f158","M96 32C78.3 32 64 46.3 64 64V256H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64v32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64v32c0 17.7 14.3 32 32 32s32-14.3 32-32V416H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H128V320H240c79.5 0 144-64.5 144-144s-64.5-144-144-144H96zM240 256H128V96H240c44.2 0 80 35.8 80 80s-35.8 80-80 80z"]},Bj=ge,Dj=ge,Ij=ge,Uj={prefix:"fas",iconName:"sun",icon:[512,512,[9728],"f185","M361.5 1.2c5 2.1 8.6 6.6 9.6 11.9L391 121l107.9 19.8c5.3 1 9.8 4.6 11.9 9.6s1.5 10.7-1.6 15.2L446.9 256l62.3 90.3c3.1 4.5 3.7 10.2 1.6 15.2s-6.6 8.6-11.9 9.6L391 391 371.1 498.9c-1 5.3-4.6 9.8-9.6 11.9s-10.7 1.5-15.2-1.6L256 446.9l-90.3 62.3c-4.5 3.1-10.2 3.7-15.2 1.6s-8.6-6.6-9.6-11.9L121 391 13.1 371.1c-5.3-1-9.8-4.6-11.9-9.6s-1.5-10.7 1.6-15.2L65.1 256 2.8 165.7c-3.1-4.5-3.7-10.2-1.6-15.2s6.6-8.6 11.9-9.6L121 121 140.9 13.1c1-5.3 4.6-9.8 9.6-11.9s10.7-1.5 15.2 1.6L256 65.1 346.3 2.8c4.5-3.1 10.2-3.7 15.2-1.6zM352 256c0 53-43 96-96 96s-96-43-96-96s43-96 96-96s96 43 96 96zm32 0c0-70.7-57.3-128-128-128s-128 57.3-128 128s57.3 128 128 128s128-57.3 128-128z"]},Wj={prefix:"fas",iconName:"guitar",icon:[512,512,[],"f7a6","M465 7c-9.4-9.4-24.6-9.4-33.9 0L383 55c-2.4 2.4-4.3 5.3-5.5 8.5l-15.4 41-77.5 77.6c-45.1-29.4-99.3-30.2-131 1.6c-11 11-18 24.6-21.4 39.6c-3.7 16.6-19.1 30.7-36.1 31.6c-25.6 1.3-49.3 10.7-67.3 28.6C-16 328.4-7.6 409.4 47.5 464.5s136.1 63.5 180.9 18.7c17.9-17.9 27.4-41.7 28.6-67.3c.9-17 15-32.3 31.6-36.1c15-3.4 28.6-10.5 39.6-21.4c31.8-31.8 31-85.9 1.6-131l77.6-77.6 41-15.4c3.2-1.2 6.1-3.1 8.5-5.5l48-48c9.4-9.4 9.4-24.6 0-33.9L465 7zM208 352c-26.5 0-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48s-21.5 48-48 48z"]},av={prefix:"fas",iconName:"face-laugh-wink",icon:[512,512,["laugh-wink"],"f59c","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM96.8 314.1c-3.8-13.7 7.4-26.1 21.6-26.1H393.6c14.2 0 25.5 12.4 21.6 26.1C396.2 382 332.1 432 256 432s-140.2-50-159.2-117.9zM208.4 192c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm92.4 25.6c-5.3 7.1-15.3 8.5-22.4 3.2s-8.5-15.3-3.2-22.4c30.4-40.5 91.2-40.5 121.6 0c5.3 7.1 3.9 17.1-3.2 22.4s-17.1 3.9-22.4-3.2c-17.6-23.5-52.8-23.5-70.4 0z"]},$j=av,qj={prefix:"fas",iconName:"horse-head",icon:[512,512,[],"f7ab","M0 464V316.9C0 208.5 68.3 111.8 170.5 75.6L340.2 15.5C361.6 7.9 384 23.8 384 46.4c0 11-5.5 21.2-14.6 27.3L336 96c48.1 0 91.2 29.8 108.1 74.9l48.6 129.5c11.8 31.4 4.1 66.8-19.6 90.5c-16 16-37.8 25.1-60.5 25.1h-3.4c-26.1 0-50.9-11.6-67.6-31.7l-32.3-38.7c-11.7 4.1-24.2 6.4-37.3 6.4l-.1 0 0 0c-6.3 0-12.5-.5-18.6-1.5c-3.6-.6-7.2-1.4-10.7-2.3l0 0c-28.9-7.8-53.1-26.8-67.8-52.2c-4.4-7.6-14.2-10.3-21.9-5.8s-10.3 14.2-5.8 21.9c24 41.5 68.3 70 119.3 71.9l47.2 70.8c4 6.1 6.2 13.2 6.2 20.4c0 20.3-16.5 36.8-36.8 36.8H48c-26.5 0-48-21.5-48-48zM328 224c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24z"]},Gj={prefix:"fas",iconName:"bore-hole",icon:[512,512,[],"e4c3","M256 0c-17.7 0-32 14.3-32 32V296.6c-19.1 11.1-32 31.7-32 55.4c0 35.3 28.7 64 64 64s64-28.7 64-64c0-23.7-12.9-44.4-32-55.4V32c0-17.7-14.3-32-32-32zM48 128c-26.5 0-48 21.5-48 48V464c0 26.5 21.5 48 48 48H464c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48H352V352c0 53-43 96-96 96s-96-43-96-96V128H48z"]},jj={prefix:"fas",iconName:"industry",icon:[512,512,[],"f275","M32 32C14.3 32 0 46.3 0 64V304v48 80c0 26.5 21.5 48 48 48H464c26.5 0 48-21.5 48-48V304 152.2c0-18.2-19.4-29.7-35.4-21.1L320 215.4V152.2c0-18.2-19.4-29.7-35.4-21.1L128 215.4V64c0-17.7-14.3-32-32-32H32z"]},nv={prefix:"fas",iconName:"circle-down",icon:[512,512,[61466,"arrow-alt-circle-down"],"f358","M256 0C114.6 0 0 114.6 0 256S114.6 512 256 512s256-114.6 256-256S397.4 0 256 0zM244.7 395.3l-112-112c-4.6-4.6-5.9-11.5-3.5-17.4s8.3-9.9 14.8-9.9l64 0 0-96c0-17.7 14.3-32 32-32l32 0c17.7 0 32 14.3 32 32l0 96 64 0c6.5 0 12.3 3.9 14.8 9.9s1.1 12.9-3.5 17.4l-112 112c-6.2 6.2-16.4 6.2-22.6 0z"]},Kj=nv,Xj={prefix:"fas",iconName:"arrows-turn-to-dots",icon:[512,512,[],"e4c1","M249.4 25.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L269.3 96 416 96c53 0 96 43 96 96v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V192c0-17.7-14.3-32-32-32l-146.7 0 25.4 25.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-80-80c-12.5-12.5-12.5-32.8 0-45.3l80-80zm13.3 256l80 80c12.5 12.5 12.5 32.8 0 45.3l-80 80c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 416 96 416c-17.7 0-32 14.3-32 32v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448c0-53 43-96 96-96l146.7 0-25.4-25.4c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0zM512 384c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zM64 64c35.3 0 64 28.7 64 64s-28.7 64-64 64s-64-28.7-64-64S28.7 64 64 64z"]},Yj={prefix:"fas",iconName:"florin-sign",icon:[384,512,[],"e184","M314.7 32c-38.8 0-73.7 23.3-88.6 59.1L170.7 224H64c-17.7 0-32 14.3-32 32s14.3 32 32 32h80L98.9 396.3c-5 11.9-16.6 19.7-29.5 19.7H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H69.3c38.8 0 73.7-23.3 88.6-59.1L213.3 288H320c17.7 0 32-14.3 32-32s-14.3-32-32-32H240l45.1-108.3c5-11.9 16.6-19.7 29.5-19.7H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H314.7z"]},Ka={prefix:"fas",iconName:"arrow-down-short-wide",icon:[576,512,["sort-amount-desc","sort-amount-down-alt"],"f884","M151.6 469.6C145.5 476.2 137 480 128 480s-17.5-3.8-23.6-10.4l-88-96c-11.9-13-11.1-33.3 2-45.2s33.3-11.1 45.2 2L96 365.7V64c0-17.7 14.3-32 32-32s32 14.3 32 32V365.7l32.4-35.4c11.9-13 32.2-13.9 45.2-2s13.9 32.2 2 45.2l-88 96zM320 32h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H320c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 128h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H320c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 128H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H320c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 128H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H320c-17.7 0-32-14.3-32-32s14.3-32 32-32z"]},Jj=Ka,Qj=Ka,Zj={prefix:"fas",iconName:"less-than",icon:[384,512,[62774],"3c","M380.6 81.7c7.9 15.8 1.5 35-14.3 42.9L103.6 256 366.3 387.4c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3l-320-160C6.8 279.2 0 268.1 0 256s6.8-23.2 17.7-28.6l320-160c15.8-7.9 35-1.5 42.9 14.3z"]},cK={prefix:"fas",iconName:"angle-down",icon:[448,512,[8964],"f107","M201.4 374.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 306.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z"]},eK={prefix:"fas",iconName:"car-tunnel",icon:[512,512,[],"e4de","M256 0C114.6 0 0 114.6 0 256V448c0 35.3 28.7 64 64 64h64H384h64c35.3 0 64-28.7 64-64V256C512 114.6 397.4 0 256 0zM384 512c-17.7 0-32-14.3-32-32V448H160v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V376c0-20.8 11.3-38.9 28.1-48.6l21-64.7c7.5-23.1 29-38.7 53.3-38.7H313.6c24.3 0 45.8 15.6 53.3 38.7l21 64.7c16.8 9.7 28.2 27.8 28.2 48.6V480c0 17.7-14.3 32-32 32zM190.8 277.5L177 320H335l-13.8-42.5c-1.1-3.3-4.1-5.5-7.6-5.5H198.4c-3.5 0-6.5 2.2-7.6 5.5zM168 408c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24zm200-24c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24z"]},rK={prefix:"fas",iconName:"head-side-cough",icon:[640,512,[],"e061","M0 201.7C0 90.3 90.3 0 201.7 0H224c95.2 0 174.2 69.3 189.4 160.1c2.2 13 6.7 25.7 15 36.1l42 52.6c6.2 7.8 9.6 17.4 9.6 27.4c0 24.2-19.6 43.8-43.8 43.8H416v32H352c-17.7 0-32 14.3-32 32s14.3 32 32 32h64c0 35.3-28.7 64-64 64H288c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V375.8c0-17-7.1-33-17.5-46.4C18.3 293.2 0 246.5 0 201.7zM336 224c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm272 88c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zm-40 24c0 13.3-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24zm-64 48c0 13.3-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24zm128 0c0 13.3-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24zM608 504c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zm-40-72c0 13.3-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24z"]},aK={prefix:"fas",iconName:"grip-lines",icon:[448,512,[],"f7a4","M32 288c-17.7 0-32 14.3-32 32s14.3 32 32 32l384 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L32 288zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32l384 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L32 160z"]},nK={prefix:"fas",iconName:"thumbs-down",icon:[512,512,[128078,61576],"f165","M313.4 479.1c26-5.2 42.9-30.5 37.7-56.5l-2.3-11.4c-5.3-26.7-15.1-52.1-28.8-75.2H464c26.5 0 48-21.5 48-48c0-25.3-19.5-46-44.3-47.9c7.7-8.5 12.3-19.8 12.3-32.1c0-23.4-16.8-42.9-38.9-47.1c4.4-7.3 6.9-15.8 6.9-24.9c0-21.3-13.9-39.4-33.1-45.6c.7-3.3 1.1-6.8 1.1-10.4c0-26.5-21.5-48-48-48H294.5c-19 0-37.5 5.6-53.3 16.1L202.7 73.8C176 91.6 160 121.6 160 153.7V192v48 24.9c0 29.2 13.3 56.7 36 75l7.4 5.9c26.5 21.2 44.6 51 51.2 84.2l2.3 11.4c5.2 26 30.5 42.9 56.5 37.7zM32 320H96c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64V288c0 17.7 14.3 32 32 32z"]},tK={prefix:"fas",iconName:"user-lock",icon:[640,512,[],"f502","M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0S96 57.3 96 128s57.3 128 128 128zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H392.6c-5.4-9.4-8.6-20.3-8.6-32V352c0-2.1 .1-4.2 .3-6.3c-31-26-71-41.7-114.6-41.7H178.3zM528 240c17.7 0 32 14.3 32 32v48H496V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z"]},tv={prefix:"fas",iconName:"arrow-right-long",icon:[512,512,["long-arrow-right"],"f178","M502.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l370.7 0-73.4 73.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l128-128z"]},sK=tv,iK={prefix:"fas",iconName:"anchor-circle-xmark",icon:[640,512,[],"e4ac","M256 96c0-17.7 14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32s-32-14.3-32-32zm85.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h32V448H208c-53 0-96-43-96-96v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7V352c0 88.4 71.6 160 160 160h80 80c8.2 0 16.3-.6 24.2-1.8c-22.2-16.2-40.4-37.5-53-62.2H320V368 240h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H341.1zM496 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm59.3-180.7L518.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L473.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L496 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z"]},sv={prefix:"fas",iconName:"ellipsis",icon:[448,512,["ellipsis-h"],"f141","M120 256c0 30.9-25.1 56-56 56s-56-25.1-56-56s25.1-56 56-56s56 25.1 56 56zm160 0c0 30.9-25.1 56-56 56s-56-25.1-56-56s25.1-56 56-56s56 25.1 56 56zm104 56c-30.9 0-56-25.1-56-56s25.1-56 56-56s56 25.1 56 56s-25.1 56-56 56z"]},oK=sv,fK={prefix:"fas",iconName:"chess-pawn",icon:[320,512,[9823],"f443","M264 136c0 37.1-19.4 69.6-48.6 88H224c17.7 0 32 14.3 32 32s-14.3 32-32 32c0 96 24 128 24 128H72s24-32 24-128c-17.7 0-32-14.3-32-32s14.3-32 32-32h8.5C75.4 205.6 56 173.1 56 136C56 78.6 102.6 32 160 32s104 46.6 104 104zM32 448H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32z"]},iv={prefix:"fas",iconName:"kit-medical",icon:[576,512,["first-aid"],"f479","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H96V32H64zm64 0V480H448V32H128zM512 480c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H480V480h32zM256 176c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H320v48c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V288H208c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16h48V176z"]},lK=iv,uK={prefix:"fas",iconName:"person-through-window",icon:[640,512,[],"e5a9","M64 64l224 0 0 9.8c0 39-23.7 74-59.9 88.4C167.6 186.5 128 245 128 310.2l0 73.8s0 0 0 0H64V64zm288 0l224 0V384H508.3l-3.7-4.5-75.2-90.2c-9.1-10.9-22.6-17.3-36.9-17.3l-71.1 0-41-63.1c-.3-.5-.6-1-1-1.4c44.7-29 72.5-79 72.5-133.6l0-9.8zm73 320H379.2l42.7 64H592c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48V400c0 26.5 21.5 48 48 48H308.2l33.2 49.8c9.8 14.7 29.7 18.7 44.4 8.9s18.7-29.7 8.9-44.4L310.5 336l74.6 0 40 48zm-159.5 0H192s0 0 0 0l0-73.8c0-10.2 1.6-20.1 4.7-29.5L265.5 384zM192 128c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48z"]},hK={prefix:"fas",iconName:"toolbox",icon:[512,512,[129520],"f552","M176 88v40H336V88c0-4.4-3.6-8-8-8H184c-4.4 0-8 3.6-8 8zm-48 40V88c0-30.9 25.1-56 56-56H328c30.9 0 56 25.1 56 56v40h28.1c12.7 0 24.9 5.1 33.9 14.1l51.9 51.9c9 9 14.1 21.2 14.1 33.9V304H384V288c0-17.7-14.3-32-32-32s-32 14.3-32 32v16H192V288c0-17.7-14.3-32-32-32s-32 14.3-32 32v16H0V227.9c0-12.7 5.1-24.9 14.1-33.9l51.9-51.9c9-9 21.2-14.1 33.9-14.1H128zM0 416V336H128v16c0 17.7 14.3 32 32 32s32-14.3 32-32V336H320v16c0 17.7 14.3 32 32 32s32-14.3 32-32V336H512v80c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64z"]},pK={prefix:"fas",iconName:"hands-holding-circle",icon:[640,512,[],"e4fb","M320 256c-70.7 0-128-57.3-128-128S249.3 0 320 0s128 57.3 128 128s-57.3 128-128 128zM40 64c22.1 0 40 17.9 40 40v40 80 40.2c0 17 6.7 33.3 18.7 45.3l51.1 51.1c8.3 8.3 21.3 9.6 31 3.1c12.9-8.6 14.7-26.9 3.7-37.8l-15.2-15.2-32-32c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l32 32 15.2 15.2 0 0 25.3 25.3c21 21 32.8 49.5 32.8 79.2V464c0 26.5-21.5 48-48 48H173.3c-17 0-33.3-6.7-45.3-18.7L28.1 393.4C10.1 375.4 0 351 0 325.5V224 160 104C0 81.9 17.9 64 40 64zm560 0c22.1 0 40 17.9 40 40v56 64V325.5c0 25.5-10.1 49.9-28.1 67.9L512 493.3c-12 12-28.3 18.7-45.3 18.7H400c-26.5 0-48-21.5-48-48V385.1c0-29.7 11.8-58.2 32.8-79.2l25.3-25.3 0 0 15.2-15.2 32-32c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-32 32-15.2 15.2c-11 11-9.2 29.2 3.7 37.8c9.7 6.5 22.7 5.2 31-3.1l51.1-51.1c12-12 18.7-28.3 18.7-45.3V224 144 104c0-22.1 17.9-40 40-40z"]},mK={prefix:"fas",iconName:"bug",icon:[512,512,[],"f188","M256 0c53 0 96 43 96 96v3.6c0 15.7-12.7 28.4-28.4 28.4H188.4c-15.7 0-28.4-12.7-28.4-28.4V96c0-53 43-96 96-96zM41.4 105.4c12.5-12.5 32.8-12.5 45.3 0l64 64c.7 .7 1.3 1.4 1.9 2.1c14.2-7.3 30.4-11.4 47.5-11.4H312c17.1 0 33.2 4.1 47.5 11.4c.6-.7 1.2-1.4 1.9-2.1l64-64c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-64 64c-.7 .7-1.4 1.3-2.1 1.9c6.2 12 10.1 25.3 11.1 39.5H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H416c0 24.6-5.5 47.8-15.4 68.6c2.2 1.3 4.2 2.9 6 4.8l64 64c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-63.1-63.1c-24.5 21.8-55.8 36.2-90.3 39.6V240c0-8.8-7.2-16-16-16s-16 7.2-16 16V479.2c-34.5-3.4-65.8-17.8-90.3-39.6L86.6 502.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l64-64c1.9-1.9 3.9-3.4 6-4.8C101.5 367.8 96 344.6 96 320H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H96.3c1.1-14.1 5-27.5 11.1-39.5c-.7-.6-1.4-1.2-2.1-1.9l-64-64c-12.5-12.5-12.5-32.8 0-45.3z"]},ov={prefix:"fas",iconName:"credit-card",icon:[576,512,[128179,62083,"credit-card-alt"],"f09d","M64 32C28.7 32 0 60.7 0 96v32H576V96c0-35.3-28.7-64-64-64H64zM576 224H0V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V224zM112 352h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm112 16c0-8.8 7.2-16 16-16H368c8.8 0 16 7.2 16 16s-7.2 16-16 16H240c-8.8 0-16-7.2-16-16z"]},vK=ov,fv={prefix:"fas",iconName:"car",icon:[512,512,[128664,"automobile"],"f1b9","M135.2 117.4L109.1 192H402.9l-26.1-74.6C372.3 104.6 360.2 96 346.6 96H165.4c-13.6 0-25.7 8.6-30.2 21.4zM39.6 196.8L74.8 96.3C88.3 57.8 124.6 32 165.4 32H346.6c40.8 0 77.1 25.8 90.6 64.3l35.2 100.5c23.2 9.6 39.6 32.5 39.6 59.2V400v48c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V400H96v48c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V400 256c0-26.7 16.4-49.6 39.6-59.2zM128 288c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zm288 32c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z"]},dK=fv,HK={prefix:"fas",iconName:"hand-holding-hand",icon:[576,512,[],"e4f7","M7.8 207.7c-13.1-17.8-9.3-42.8 8.5-55.9L142.9 58.5C166.2 41.3 194.5 32 223.5 32H384 544c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H507.2l-44.9 36c-22.7 18.2-50.9 28-80 28H304 288 224c-17.7 0-32-14.3-32-32s14.3-32 32-32h64 16c8.8 0 16-7.2 16-16s-7.2-16-16-16H183.4L63.7 216.2c-17.8 13.1-42.8 9.3-55.9-8.5zM382.4 160l0 0 .9 0c-.3 0-.6 0-.9 0zM568.2 304.3c13.1 17.8 9.3 42.8-8.5 55.9L433.1 453.5c-23.4 17.2-51.6 26.5-80.7 26.5H192 32c-17.7 0-32-14.3-32-32V384c0-17.7 14.3-32 32-32H68.8l44.9-36c22.7-18.2 50.9-28 80-28H272h16 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H288 272c-8.8 0-16 7.2-16 16s7.2 16 16 16H392.6l119.7-88.2c17.8-13.1 42.8-9.3 55.9 8.5zM193.6 352l0 0-.9 0c.3 0 .6 0 .9 0z"]},lv={prefix:"fas",iconName:"book-open-reader",icon:[512,512,["book-reader"],"f5da","M352 96c0 53-43 96-96 96s-96-43-96-96s43-96 96-96s96 43 96 96zM240 248V512l-48.4-24.2c-20.9-10.4-43.5-17-66.8-19.3l-96-9.6C12.5 457.2 0 443.5 0 427V224c0-17.7 14.3-32 32-32H62.3c63.6 0 125.6 19.6 177.7 56zm32 264V248c52.1-36.4 114.1-56 177.7-56H480c17.7 0 32 14.3 32 32V427c0 16.4-12.5 30.2-28.8 31.8l-96 9.6c-23.2 2.3-45.9 8.9-66.8 19.3L272 512z"]},zK=lv,gK={prefix:"fas",iconName:"mountain-sun",icon:[640,512,[],"e52f","M560 160c44.2 0 80-35.8 80-80s-35.8-80-80-80s-80 35.8-80 80s35.8 80 80 80zM55.9 512H381.1h75H578.9c33.8 0 61.1-27.4 61.1-61.1c0-11.2-3.1-22.2-8.9-31.8l-132-216.3C495 196.1 487.8 192 480 192s-15 4.1-19.1 10.7l-48.2 79L286.8 81c-6.6-10.6-18.3-17-30.8-17s-24.1 6.4-30.8 17L8.6 426.4C3 435.3 0 445.6 0 456.1C0 487 25 512 55.9 512z"]},VK={prefix:"fas",iconName:"arrows-left-right-to-line",icon:[640,512,[],"e4ba","M32 64c17.7 0 32 14.3 32 32l0 320c0 17.7-14.3 32-32 32s-32-14.3-32-32V96C0 78.3 14.3 64 32 64zm214.6 73.4c12.5 12.5 12.5 32.8 0 45.3L205.3 224l229.5 0-41.4-41.4c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l96 96c12.5 12.5 12.5 32.8 0 45.3l-96 96c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L434.7 288l-229.5 0 41.4 41.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-96-96c-12.5-12.5-12.5-32.8 0-45.3l96-96c12.5-12.5 32.8-12.5 45.3 0zM640 96V416c0 17.7-14.3 32-32 32s-32-14.3-32-32V96c0-17.7 14.3-32 32-32s32 14.3 32 32z"]},MK={prefix:"fas",iconName:"dice-d20",icon:[512,512,[],"f6cf","M64.7 125.8l53.2 31.9c7.8 4.7 17.8 2 22.2-5.9L217.6 12.1c3-5.4-.9-12.1-7.1-12.1c-1.6 0-3.2 .5-4.6 1.4L63.9 98.8c-9.6 6.6-9.2 20.9 .8 26.9zM32 171.7V295.3c0 8 10.4 11 14.7 4.4l60-92c5-7.6 2.6-17.8-5.2-22.5L56.2 158C45.6 151.6 32 159.3 32 171.7zM326.4 12.1l77.6 139.6c4.4 7.9 14.5 10.6 22.2 5.9l53.2-31.9c10-6 10.4-20.3 .8-26.9L338.1 1.4c-1.4-.9-3-1.4-4.6-1.4c-6.2 0-10.1 6.7-7.1 12.1zM512 171.7c0-12.4-13.6-20.1-24.2-13.7l-45.3 27.2c-7.8 4.7-10.1 14.9-5.2 22.5l60 92c4.3 6.7 14.7 3.6 14.7-4.4V171.7zm-49.3 246L302.1 436.6c-8.1 .9-14.1 7.8-14.1 15.9v52.8c0 3.7 3 6.8 6.8 6.8c.8 0 1.6-.1 2.4-.4l172.7-64c6.1-2.2 10.1-8 10.1-14.5c0-9.3-8.1-16.5-17.3-15.4zM249.2 512c3.7 0 6.8-3 6.8-6.8V452.6c0-8.1-6.1-14.9-14.1-15.9l-160.6-19c-9.2-1.1-17.3 6.1-17.3 15.4c0 6.5 4 12.3 10.1 14.5l172.7 64c.8 .3 1.6 .4 2.4 .4zM57.7 382.9l170.9 20.2c7.8 .9 13.4-7.5 9.5-14.3l-85.7-150c-5.9-10.4-20.7-10.8-27.3-.8L46.2 358.2c-6.5 9.9-.3 23.3 11.5 24.7zm439.6-24.8L418.9 238.1c-6.5-10-21.4-9.6-27.3 .8L306.2 388.5c-3.9 6.8 1.6 15.2 9.5 14.3l170.1-20c11.8-1.4 18-14.7 11.5-24.6zm-216.9 11l78.4-137.2c6.1-10.7-1.6-23.9-13.9-23.9H199.1c-12.3 0-20 13.3-13.9 23.9l78.4 137.2c3.7 6.4 13 6.4 16.7 0zM190.4 176H353.6c12.2 0 19.9-13.1 14-23.8l-80-144c-2.8-5.1-8.2-8.2-14-8.2h-3.2c-5.8 0-11.2 3.2-14 8.2l-80 144c-5.9 10.7 1.8 23.8 14 23.8z"]},CK={prefix:"fas",iconName:"truck-droplet",icon:[640,512,[],"e58c","M0 48C0 21.5 21.5 0 48 0H368c26.5 0 48 21.5 48 48V96h50.7c17 0 33.3 6.7 45.3 18.7L589.3 192c12 12 18.7 28.3 18.7 45.3V256v32 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H576c0 53-43 96-96 96s-96-43-96-96H256c0 53-43 96-96 96s-96-43-96-96H48c-26.5 0-48-21.5-48-48V48zM416 256H544V237.3L466.7 160H416v96zM160 464c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zm368-48c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM208 272c39.8 0 72-29.6 72-66c0-27-39.4-82.9-59.9-110.3c-6.1-8.2-18.1-8.2-24.2 0C175.4 123 136 179 136 206c0 36.5 32.2 66 72 66z"]},LK={prefix:"fas",iconName:"file-circle-xmark",icon:[576,512,[],"e5a1","M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zm48 384c-79.5 0-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144s-64.5 144-144 144zm59.3-180.7c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L432 345.4l-36.7-36.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L409.4 368l-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L432 390.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L454.6 368l36.7-36.7z"]},uv={prefix:"fas",iconName:"temperature-arrow-up",icon:[512,512,["temperature-up"],"e040","M96 112c0-26.5 21.5-48 48-48s48 21.5 48 48V276.5c0 17.3 7.1 31.9 15.3 42.5C217.8 332.6 224 349.5 224 368c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-18.5 6.2-35.4 16.7-48.9C88.9 308.4 96 293.8 96 276.5V112zM144 0C82.1 0 32 50.1 32 112V276.4c0 .1-.1 .3-.2 .6c-.2 .6-.8 1.6-1.7 2.8C11.2 304.2 0 334.8 0 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-33.2-11.3-63.8-30.1-88.1c-.9-1.2-1.5-2.2-1.7-2.8c-.1-.3-.2-.5-.2-.6V112C256 50.1 205.9 0 144 0zm0 416c26.5 0 48-21.5 48-48c0-20.9-13.4-38.7-32-45.3V112c0-8.8-7.2-16-16-16s-16 7.2-16 16V322.7c-18.6 6.6-32 24.4-32 45.3c0 26.5 21.5 48 48 48zM448 160h32c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-64-64c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8h32V448c0 17.7 14.3 32 32 32s32-14.3 32-32V160z"]},yK=uv,bK={prefix:"fas",iconName:"medal",icon:[512,512,[127941],"f5a2","M16 0H144c5.3 0 10.3 2.7 13.3 7.1l81.1 121.6c-49.5 4.1-94 25.6-127.6 58.3L2.7 24.9C-.6 20-.9 13.7 1.9 8.5S10.1 0 16 0zM509.3 24.9L401.2 187.1c-33.5-32.7-78.1-54.2-127.6-58.3L354.7 7.1c3-4.5 8-7.1 13.3-7.1H496c5.9 0 11.3 3.2 14.1 8.5s2.5 11.5-.8 16.4zM432 336c0 97.2-78.8 176-176 176s-176-78.8-176-176s78.8-176 176-176s176 78.8 176 176zM264.4 241.1c-3.4-7-13.3-7-16.8 0l-22.4 45.4c-1.4 2.8-4 4.7-7 5.1L168 298.9c-7.7 1.1-10.7 10.5-5.2 16l36.3 35.4c2.2 2.2 3.2 5.2 2.7 8.3l-8.6 49.9c-1.3 7.6 6.7 13.5 13.6 9.9l44.8-23.6c2.7-1.4 6-1.4 8.7 0l44.8 23.6c6.9 3.6 14.9-2.2 13.6-9.9l-8.6-49.9c-.5-3 .5-6.1 2.7-8.3l36.3-35.4c5.6-5.4 2.5-14.8-5.2-16l-50.1-7.3c-3-.4-5.7-2.4-7-5.1l-22.4-45.4z"]},xK={prefix:"fas",iconName:"bed",icon:[640,512,[128716],"f236","M32 32c17.7 0 32 14.3 32 32V320H288V160c0-17.7 14.3-32 32-32H544c53 0 96 43 96 96V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V416H352 320 64v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V64C0 46.3 14.3 32 32 32zM176 288c-44.2 0-80-35.8-80-80s35.8-80 80-80s80 35.8 80 80s-35.8 80-80 80z"]},hv={prefix:"fas",iconName:"square-h",icon:[448,512,["h-square"],"f0fd","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM336 152V256 360c0 13.3-10.7 24-24 24s-24-10.7-24-24V280H160l0 80c0 13.3-10.7 24-24 24s-24-10.7-24-24l0-208c0-13.3 10.7-24 24-24s24 10.7 24 24v80H288V152c0-13.3 10.7-24 24-24s24 10.7 24 24z"]},SK=hv,wK={prefix:"fas",iconName:"podcast",icon:[448,512,[],"f2ce","M319.4 372c48.5-31.3 80.6-85.9 80.6-148c0-97.2-78.8-176-176-176S48 126.8 48 224c0 62.1 32.1 116.6 80.6 148c1.2 17.3 4 38 7.2 57.1l.2 1C56 395.8 0 316.5 0 224C0 100.3 100.3 0 224 0S448 100.3 448 224c0 92.5-56 171.9-136 206.1l.2-1.1c3.1-19.2 6-39.8 7.2-57zm-2.3-38.1c-1.6-5.7-3.9-11.1-7-16.2c-5.8-9.7-13.5-17-21.9-22.4c19.5-17.6 31.8-43 31.8-71.3c0-53-43-96-96-96s-96 43-96 96c0 28.3 12.3 53.8 31.8 71.3c-8.4 5.4-16.1 12.7-21.9 22.4c-3.1 5.1-5.4 10.5-7 16.2C99.8 307.5 80 268 80 224c0-79.5 64.5-144 144-144s144 64.5 144 144c0 44-19.8 83.5-50.9 109.9zM224 312c32.9 0 64 8.6 64 43.8c0 33-12.9 104.1-20.6 132.9c-5.1 19-24.5 23.4-43.4 23.4s-38.2-4.4-43.4-23.4c-7.8-28.5-20.6-99.7-20.6-132.8c0-35.1 31.1-43.8 64-43.8zm0-32c-30.9 0-56-25.1-56-56s25.1-56 56-56s56 25.1 56 56s-25.1 56-56 56z"]},Ve={prefix:"fas",iconName:"temperature-full",icon:[320,512,["temperature-4","thermometer-4","thermometer-full"],"f2c7","M160 64c-26.5 0-48 21.5-48 48V276.5c0 17.3-7.1 31.9-15.3 42.5C86.2 332.6 80 349.5 80 368c0 44.2 35.8 80 80 80s80-35.8 80-80c0-18.5-6.2-35.4-16.7-48.9c-8.2-10.6-15.3-25.2-15.3-42.5V112c0-26.5-21.5-48-48-48zM48 112C48 50.2 98.1 0 160 0s112 50.1 112 112V276.5c0 .1 .1 .3 .2 .6c.2 .6 .8 1.6 1.7 2.8c18.9 24.4 30.1 55 30.1 88.1c0 79.5-64.5 144-144 144S16 447.5 16 368c0-33.2 11.2-63.8 30.1-88.1c.9-1.2 1.5-2.2 1.7-2.8c.1-.3 .2-.5 .2-.6V112zM208 368c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-20.9 13.4-38.7 32-45.3V112c0-8.8 7.2-16 16-16s16 7.2 16 16V322.7c18.6 6.6 32 24.4 32 45.3z"]},NK=Ve,AK=Ve,_K=Ve,kK={prefix:"fas",iconName:"bell",icon:[448,512,[128276,61602],"f0f3","M224 0c-17.7 0-32 14.3-32 32V51.2C119 66 64 130.6 64 208v18.8c0 47-17.3 92.4-48.5 127.6l-7.4 8.3c-8.4 9.4-10.4 22.9-5.3 34.4S19.4 416 32 416H416c12.6 0 24-7.4 29.2-18.9s3.1-25-5.3-34.4l-7.4-8.3C401.3 319.2 384 273.9 384 226.8V208c0-77.4-55-142-128-156.8V32c0-17.7-14.3-32-32-32zm45.3 493.3c12-12 18.7-28.3 18.7-45.3H224 160c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7z"]},TK={prefix:"fas",iconName:"superscript",icon:[512,512,[],"f12b","M480 32c0-11.1-5.7-21.4-15.2-27.2s-21.2-6.4-31.1-1.4l-32 16c-15.8 7.9-22.2 27.1-14.3 42.9C393 73.5 404.3 80 416 80v80c-17.7 0-32 14.3-32 32s14.3 32 32 32h32 32c17.7 0 32-14.3 32-32s-14.3-32-32-32V32zM32 64C14.3 64 0 78.3 0 96s14.3 32 32 32H47.3l89.6 128L47.3 384H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64c10.4 0 20.2-5.1 26.2-13.6L176 311.8l85.8 122.6c6 8.6 15.8 13.6 26.2 13.6h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H304.7L215.1 256l89.6-128H320c17.7 0 32-14.3 32-32s-14.3-32-32-32H288c-10.4 0-20.2 5.1-26.2 13.6L176 200.2 90.2 77.6C84.2 69.1 74.4 64 64 64H32z"]},PK={prefix:"fas",iconName:"plug-circle-xmark",icon:[576,512,[],"e560","M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8c12.3-2.5 24.1-6.4 35.1-11.5c-2.1-10.8-3.1-21.9-3.1-33.3c0-80.3 53.8-148 127.3-169.2c.5-2.2 .7-4.5 .7-6.8c0-17.7-14.3-32-32-32H32zM432 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm59.3-180.7L454.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L432 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L409.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L432 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z"]},EK={prefix:"fas",iconName:"star-of-life",icon:[512,512,[],"f621","M208 32c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V172.9l122-70.4c15.3-8.8 34.9-3.6 43.7 11.7l16 27.7c8.8 15.3 3.6 34.9-11.7 43.7L352 256l122 70.4c15.3 8.8 20.5 28.4 11.7 43.7l-16 27.7c-8.8 15.3-28.4 20.6-43.7 11.7L304 339.1V480c0 17.7-14.3 32-32 32H240c-17.7 0-32-14.3-32-32V339.1L86 409.6c-15.3 8.8-34.9 3.6-43.7-11.7l-16-27.7c-8.8-15.3-3.6-34.9 11.7-43.7L160 256 38 185.6c-15.3-8.8-20.5-28.4-11.7-43.7l16-27.7C51.1 98.8 70.7 93.6 86 102.4l122 70.4V32z"]},OK={prefix:"fas",iconName:"phone-slash",icon:[640,512,[],"f3dd","M228.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C76.1 30.2 64 46 64 64c0 107.4 37.8 206 100.8 283.1L9.2 469.1c-10.4 8.2-12.3 23.3-4.1 33.7s23.3 12.3 33.7 4.1l592-464c10.4-8.2 12.3-23.3 4.1-33.7s-23.3-12.3-33.7-4.1L253 278c-17.8-21.5-32.9-45.2-45-70.7L257.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96zm96.8 319l-91.3 72C310.7 476 407.1 512 512 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L368.7 368c-15-7.1-29.3-15.2-43-24.3z"]},RK={prefix:"fas",iconName:"paint-roller",icon:[512,512,[],"f5aa","M0 64C0 28.7 28.7 0 64 0H352c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM160 352c0-17.7 14.3-32 32-32V304c0-44.2 35.8-80 80-80H416c17.7 0 32-14.3 32-32V160 69.5c37.3 13.2 64 48.7 64 90.5v32c0 53-43 96-96 96H272c-8.8 0-16 7.2-16 16v16c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V352z"]},pv={prefix:"fas",iconName:"handshake-angle",icon:[640,512,["hands-helping"],"f4c4","M543.9 251.4c0-1.1 .1-2.2 .1-3.4c0-48.6-39.4-88-88-88l-40 0H320l-16 0 0 0v16 72c0 22.1-17.9 40-40 40s-40-17.9-40-40V128h.4c4-36 34.5-64 71.6-64H408c2.8 0 5.6 .2 8.3 .5l40.1-40.1c21.9-21.9 57.3-21.9 79.2 0l78.1 78.1c21.9 21.9 21.9 57.3 0 79.2l-69.7 69.7zM192 128V248c0 39.8 32.2 72 72 72s72-32.2 72-72V192h80l40 0c30.9 0 56 25.1 56 56c0 27.2-19.4 49.9-45.2 55c8.2 8.6 13.2 20.2 13.2 33c0 26.5-21.5 48-48 48h-2.7c1.8 5 2.7 10.4 2.7 16c0 26.5-21.5 48-48 48H224c-.9 0-1.8 0-2.7-.1l-37.7 37.7c-21.9 21.9-57.3 21.9-79.2 0L26.3 407.6c-21.9-21.9-21.9-57.3 0-79.2L96 258.7V224c0-53 43-96 96-96z"]},FK=pv,mv={prefix:"fas",iconName:"location-dot",icon:[384,512,["map-marker-alt"],"f3c5","M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 256c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64z"]},BK=mv,DK={prefix:"fas",iconName:"file",icon:[384,512,[128196,128459,61462],"f15b","M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128z"]},IK={prefix:"fas",iconName:"greater-than",icon:[384,512,[62769],"3e","M3.4 81.7c-7.9 15.8-1.5 35 14.3 42.9L280.5 256 17.7 387.4C1.9 395.3-4.5 414.5 3.4 430.3s27.1 22.2 42.9 14.3l320-160c10.8-5.4 17.7-16.5 17.7-28.6s-6.8-23.2-17.7-28.6l-320-160c-15.8-7.9-35-1.5-42.9 14.3z"]},vv={prefix:"fas",iconName:"person-swimming",icon:[576,512,[127946,"swimmer"],"f5c4","M309.5 178.4L447.9 297.1c-1.6 .9-3.2 2-4.8 3c-18 12.4-40.1 20.3-59.2 20.3c-19.6 0-40.8-7.7-59.2-20.3c-22.1-15.5-51.6-15.5-73.7 0c-17.1 11.8-38 20.3-59.2 20.3c-10.1 0-21.1-2.2-31.9-6.2C163.1 193.2 262.2 96 384 96h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384c-26.9 0-52.3 6.6-74.5 18.4zM32 160c0-35.3 28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64s-64-28.7-64-64zM306.5 325.9C329 341.4 356.5 352 384 352c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 405.7 417 416 384 416c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 341.2 165.1 352 192 352c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z"]},UK=vv,WK={prefix:"fas",iconName:"arrow-down",icon:[384,512,[8595],"f063","M169.4 470.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 370.8 224 64c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 306.7L54.6 265.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z"]},dv={prefix:"fas",iconName:"droplet",icon:[384,512,[128167,"tint"],"f043","M192 512C86 512 0 426 0 320C0 228.8 130.2 57.7 166.6 11.7C172.6 4.2 181.5 0 191.1 0h1.8c9.6 0 18.5 4.2 24.5 11.7C253.8 57.7 384 228.8 384 320c0 106-86 192-192 192zM96 336c0-8.8-7.2-16-16-16s-16 7.2-16 16c0 61.9 50.1 112 112 112c8.8 0 16-7.2 16-16s-7.2-16-16-16c-44.2 0-80-35.8-80-80z"]},$K=dv,qK={prefix:"fas",iconName:"eraser",icon:[576,512,[],"f12d","M290.7 57.4L57.4 290.7c-25 25-25 65.5 0 90.5l80 80c12 12 28.3 18.7 45.3 18.7H288h9.4H512c17.7 0 32-14.3 32-32s-14.3-32-32-32H387.9L518.6 285.3c25-25 25-65.5 0-90.5L381.3 57.4c-25-25-65.5-25-90.5 0zM297.4 416H288l-105.4 0-80-80L227.3 211.3 364.7 348.7 297.4 416z"]},Me={prefix:"fas",iconName:"earth-americas",icon:[512,512,[127758,"earth","earth-america","globe-americas"],"f57d","M57.7 193l9.4 16.4c8.3 14.5 21.9 25.2 38 29.8L163 255.7c17.2 4.9 29 20.6 29 38.5v39.9c0 11 6.2 21 16 25.9s16 14.9 16 25.9v39c0 15.6 14.9 26.9 29.9 22.6c16.1-4.6 28.6-17.5 32.7-33.8l2.8-11.2c4.2-16.9 15.2-31.4 30.3-40l8.1-4.6c15-8.5 24.2-24.5 24.2-41.7v-8.3c0-12.7-5.1-24.9-14.1-33.9l-3.9-3.9c-9-9-21.2-14.1-33.9-14.1H257c-11.1 0-22.1-2.9-31.8-8.4l-34.5-19.7c-4.3-2.5-7.6-6.5-9.2-11.2c-3.2-9.6 1.1-20 10.2-24.5l5.9-3c6.6-3.3 14.3-3.9 21.3-1.5l23.2 7.7c8.2 2.7 17.2-.4 21.9-7.5c4.7-7 4.2-16.3-1.2-22.8l-13.6-16.3c-10-12-9.9-29.5 .3-41.3l15.7-18.3c8.8-10.3 10.2-25 3.5-36.7l-2.4-4.2c-3.5-.2-6.9-.3-10.4-.3C163.1 48 84.4 108.9 57.7 193zM464 256c0-36.8-9.6-71.4-26.4-101.5L412 164.8c-15.7 6.3-23.8 23.8-18.5 39.8l16.9 50.7c3.5 10.4 12 18.3 22.6 20.9l29.1 7.3c1.2-9 1.8-18.2 1.8-27.5zm48 0c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0S512 114.6 512 256z"]},GK=Me,jK=Me,KK=Me,XK={prefix:"fas",iconName:"person-burst",icon:[640,512,[],"e53b","M480 96c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zm-8 384V352h16V480c0 17.7 14.3 32 32 32s32-14.3 32-32V256.9l28.6 47.5c9.1 15.1 28.8 20 43.9 10.9s20-28.8 10.9-43.9l-58.3-97c-17.4-28.9-48.6-46.6-82.3-46.6H465.1c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9L408 256.9V480c0 17.7 14.3 32 32 32s32-14.3 32-32zM190.9 18.1C188.4 12 182.6 8 176 8s-12.4 4-14.9 10.1l-29.4 74L55.6 68.9c-6.3-1.9-13.1 .2-17.2 5.3s-4.6 12.2-1.4 17.9l39.5 69.1L10.9 206.4c-5.4 3.7-8 10.3-6.5 16.7s6.7 11.2 13.1 12.2l78.7 12.2L90.6 327c-.5 6.5 3.1 12.7 9 15.5s12.9 1.8 17.8-2.6L176 286.1l58.6 53.9c4.8 4.4 11.9 5.5 17.8 2.6s9.5-9 9-15.5l-5.6-79.4 50.5-7.8 24.4-40.5-55.2-38L315 92.2c3.3-5.7 2.7-12.8-1.4-17.9s-10.9-7.2-17.2-5.3L220.3 92.1l-29.4-74z"]},YK={prefix:"fas",iconName:"dove",icon:[512,512,[128330],"f4ba","M160.8 96.5c14 17 31 30.9 49.5 42.2c25.9 15.8 53.7 25.9 77.7 31.6V138.8C265.8 108.5 250 71.5 248.6 28c-.4-11.3-7.5-21.5-18.4-24.4c-7.6-2-15.8-.2-21 5.8c-13.3 15.4-32.7 44.6-48.4 87.2zM320 144v30.6l0 0v1.3l0 0 0 32.1c-60.8-5.1-185-43.8-219.3-157.2C97.4 40 87.9 32 76.6 32c-7.9 0-15.3 3.9-18.8 11C46.8 65.9 32 112.1 32 176c0 116.9 80.1 180.5 118.4 202.8L11.8 416.6C6.7 418 2.6 421.8 .9 426.8s-.8 10.6 2.3 14.8C21.7 466.2 77.3 512 160 512c3.6 0 7.2-1.2 10-3.5L245.6 448H320c88.4 0 160-71.6 160-160V128l29.9-44.9c1.3-2 2.1-4.4 2.1-6.8c0-6.8-5.5-12.3-12.3-12.3H400c-44.2 0-80 35.8-80 80zm80 16c-8.8 0-16-7.2-16-16s7.2-16 16-16s16 7.2 16 16s-7.2 16-16 16z"]},Hv={prefix:"fas",iconName:"battery-empty",icon:[576,512,["battery-0"],"f244","M80 96C35.8 96 0 131.8 0 176V336c0 44.2 35.8 80 80 80H464c44.2 0 80-35.8 80-80V320c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32V176c0-44.2-35.8-80-80-80H80zM64 176c0-8.8 7.2-16 16-16H464c8.8 0 16 7.2 16 16V336c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V176z"]},JK=Hv,QK={prefix:"fas",iconName:"socks",icon:[512,512,[129510],"f696","M175.2 476.6c-9.7-18-15.2-38.7-15.2-60.6c0-40.3 19-78.2 51.2-102.4l64-48c8.1-6 12.8-15.5 12.8-25.6V96H128V240c0 20.1-9.5 39.1-25.6 51.2l-64 48C14.2 357.3 0 385.8 0 416c0 53 43 96 96 96c20.8 0 41-6.7 57.6-19.2l21.6-16.2zM128 64H288V48c0-14.5 3.9-28.2 10.7-39.9C291 3 281.9 0 272 0H176c-26.5 0-48 21.5-48 48V64zM320 96V240c0 20.1-9.5 39.1-25.6 51.2l-64 48C206.2 357.3 192 385.8 192 416c0 53 43 96 96 96c20.8 0 41-6.7 57.6-19.2l115.2-86.4C493 382.2 512 344.3 512 304V96H320zM512 64V48c0-26.5-21.5-48-48-48H368c-26.5 0-48 21.5-48 48V64H512z"]},ZK={prefix:"fas",iconName:"inbox",icon:[512,512,[],"f01c","M121 32C91.6 32 66 52 58.9 80.5L1.9 308.4C.6 313.5 0 318.7 0 323.9V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V323.9c0-5.2-.6-10.4-1.9-15.5l-57-227.9C446 52 420.4 32 391 32H121zm0 64H391l48 192H387.8c-12.1 0-23.2 6.8-28.6 17.7l-14.3 28.6c-5.4 10.8-16.5 17.7-28.6 17.7H195.8c-12.1 0-23.2-6.8-28.6-17.7l-14.3-28.6c-5.4-10.8-16.5-17.7-28.6-17.7H73L121 96z"]},cX={prefix:"fas",iconName:"section",icon:[320,512,[],"e447","M96.9 96c2.1-11.6 8.7-19.8 21.1-25.4c13.8-6.2 34.8-8.9 61.2-4.5c8.8 1.4 36.1 7.1 44.1 9.3c17 4.8 34.7-5.1 39.5-22.2s-5.1-34.7-22.2-39.5c-11.1-3.1-41-9.2-50.9-10.8c-34.7-5.7-69.4-3.6-98 9.3c-29.8 13.5-52.2 38.6-58 74.1c-.1 .5-.2 1.1-.2 1.6c-2.2 19.7 .3 37.9 8.1 54.1c7.7 16.1 19.4 28 32 36.9c.6 .5 1.3 .9 2 1.4C54.3 194.2 38.5 215.1 33.7 243c-.1 .6-.2 1.1-.2 1.7c-2.3 19.3 .4 37.1 8.4 53c7.9 15.6 19.8 27 32.3 35.5c22.4 15.2 51.9 24 75.4 31l0 0 3.7 1.1c27.2 8.2 46.9 14.6 59.4 23.8c5.5 4 8.2 7.6 9.5 10.9c1.3 3.2 2.6 8.6 .9 18.1c-1.7 10.1-7.7 18-20.7 23.5c-14 6-35.4 8.5-62 4.4c-12.8-2.1-35.1-9.7-54.1-16.2l0 0c-4.3-1.5-8.5-2.9-12.3-4.2c-16.8-5.6-34.9 3.5-40.5 20.3s3.5 34.9 20.3 40.5c2.6 .8 5.7 1.9 9.2 3.1c18.6 6.3 48.5 16.6 67.3 19.6l0 0 .2 0c34.5 5.4 68.8 3.4 97.2-8.7c29.4-12.6 52.5-36.5 58.5-71.5c3.3-19.3 1.9-37.4-5-53.9c-6.3-15-16.4-26.4-27.6-35.2c16.5-13.9 28.5-33.2 32.6-58.2c3.2-19.8 1.9-38.3-4.8-55.1c-6.7-16.8-17.8-29.4-30.2-39c-22.8-17.6-53.6-27.4-77.7-35l-1.4-.5c-27.4-8.7-47.8-15.3-61.5-25c-6.1-4.4-9.5-8.5-11.4-12.4c-1.8-3.7-3.2-9.3-2.3-18.5zm76.7 208.5c-.2-.1-.4-.1-.6-.2l-1.4-.4c-27.4-8.2-47.9-14.5-61.7-23.8c-6.2-4.2-9.3-7.9-11-11.3c-1.5-3-2.9-7.7-2.1-15.7c1.9-9.7 7.9-17.3 20.5-22.7c14-6 35.4-8.5 62.1-4.3l16.4 2.6c6.3 2.9 11.7 6 16.2 9.5c5.5 4.2 8.4 8.2 10 12.2c1.6 4 2.8 10.4 1.1 20.9c-2.4 14.7-12.8 26.4-37.1 31l-12.4 2.3z"]},Xa={prefix:"fas",iconName:"gauge-high",icon:[512,512,[62461,"tachometer-alt","tachometer-alt-fast"],"f625","M512 256c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0S512 114.6 512 256zM288 96c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM256 416c35.3 0 64-28.7 64-64c0-17.4-6.9-33.1-18.1-44.6L366 161.7c5.3-12.1-.2-26.3-12.3-31.6s-26.3 .2-31.6 12.3L257.9 288c-.6 0-1.3 0-1.9 0c-35.3 0-64 28.7-64 64s28.7 64 64 64zM176 144c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM96 288c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm352-32c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32z"]},eX=Xa,rX=Xa,aX={prefix:"fas",iconName:"envelope-open-text",icon:[512,512,[],"f658","M215.4 96H144 107.8 96v8.8V144v40.4 89L.2 202.5c1.6-18.1 10.9-34.9 25.7-45.8L48 140.3V96c0-26.5 21.5-48 48-48h76.6l49.9-36.9C232.2 3.9 243.9 0 256 0s23.8 3.9 33.5 11L339.4 48H416c26.5 0 48 21.5 48 48v44.3l22.1 16.4c14.8 10.9 24.1 27.7 25.7 45.8L416 273.4v-89V144 104.8 96H404.2 368 296.6 215.4zM0 448V242.1L217.6 403.3c11.1 8.2 24.6 12.7 38.4 12.7s27.3-4.4 38.4-12.7L512 242.1V448v0c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64v0zM176 160H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16s7.2-16 16-16z"]},Ya={prefix:"fas",iconName:"hospital",icon:[640,512,[127973,62589,"hospital-alt","hospital-wide"],"f0f8","M192 48c0-26.5 21.5-48 48-48H400c26.5 0 48 21.5 48 48V512H368V432c0-26.5-21.5-48-48-48s-48 21.5-48 48v80H192V48zM48 96H160V512H48c-26.5 0-48-21.5-48-48V320H80c8.8 0 16-7.2 16-16s-7.2-16-16-16H0V224H80c8.8 0 16-7.2 16-16s-7.2-16-16-16H0V144c0-26.5 21.5-48 48-48zm544 0c26.5 0 48 21.5 48 48v48H560c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v64H560c-8.8 0-16 7.2-16 16s7.2 16 16 16h80V464c0 26.5-21.5 48-48 48H480V96H592zM312 64c-8.8 0-16 7.2-16 16v24H272c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h24v24c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16V152h24c8.8 0 16-7.2 16-16V120c0-8.8-7.2-16-16-16H344V80c0-8.8-7.2-16-16-16H312z"]},nX=Ya,tX=Ya,sX={prefix:"fas",iconName:"wine-bottle",icon:[512,512,[],"f72f","M393.4 9.4c12.5-12.5 32.8-12.5 45.3 0l64 64c12.5 12.5 12.5 32.8 0 45.3c-11.8 11.8-30.7 12.5-43.2 1.9l-9.5 9.5-48.8 48.8c-9.2 9.2-11.5 22.9-8.6 35.6c9.4 40.9-1.9 85.6-33.8 117.5L197.3 493.3c-25 25-65.5 25-90.5 0l-88-88c-25-25-25-65.5 0-90.5L180.2 153.3c31.9-31.9 76.6-43.1 117.5-33.8c12.6 2.9 26.4 .5 35.5-8.6l48.8-48.8 9.5-9.5c-10.6-12.6-10-31.4 1.9-43.2zM99.3 347.3l65.4 65.4c6.2 6.2 16.4 6.2 22.6 0l97.4-97.4c6.2-6.2 6.2-16.4 0-22.6l-65.4-65.4c-6.2-6.2-16.4-6.2-22.6 0L99.3 324.7c-6.2 6.2-6.2 16.4 0 22.6z"]},iX={prefix:"fas",iconName:"chess-rook",icon:[384,512,[9820],"f447","M0 204.2V48c0-8.8 7.2-16 16-16H72c8.8 0 16 7.2 16 16V88c0 4.4 3.6 8 8 8h32c4.4 0 8-3.6 8-8V48c0-8.8 7.2-16 16-16h80c8.8 0 16 7.2 16 16V88c0 4.4 3.6 8 8 8h32c4.4 0 8-3.6 8-8V48c0-8.8 7.2-16 16-16h56c8.8 0 16 7.2 16 16V204.2c0 12.1-6.8 23.2-17.7 28.6l-28.6 14.3c-10.8 5.4-17.7 16.5-17.5 28.6C322.2 360.7 336 416 336 416H48s13.8-55.3 15.8-140.2c.3-12.1-6.6-23.2-17.5-28.6L17.7 232.8C6.8 227.4 0 216.3 0 204.2zM176 320h32c8.8 0 16-7.2 16-16V256c0-17.7-14.3-32-32-32s-32 14.3-32 32v48c0 8.8 7.2 16 16 16zM32 448H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32z"]},Ja={prefix:"fas",iconName:"bars-staggered",icon:[512,512,["reorder","stream"],"f550","M0 96C0 78.3 14.3 64 32 64H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 128 0 113.7 0 96zM64 256c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H96c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z"]},oX=Ja,fX=Ja,lX={prefix:"fas",iconName:"dharmachakra",icon:[512,512,[9784],"f655","M337.8 205.7l48.6-42.5c13.8 19.3 23.4 41.9 27.4 66.2l-64.4 4.3c-2.4-10.1-6.4-19.5-11.6-28zm140.1 19.5c-5.3-38.8-20.6-74.5-43.2-104.3l.8-.7C449 108.4 449.7 87.6 437 75s-33.4-12-45.2 1.5l-.7 .8c-29.8-22.6-65.5-37.9-104.3-43.2l.1-1.1c1.2-17.9-13-33-30.9-33s-32.1 15.2-30.9 33l.1 1.1c-38.8 5.3-74.5 20.6-104.3 43.2l-.7-.8C108.4 63 87.6 62.3 75 75s-12 33.4 1.5 45.2l.8 .7c-22.6 29.8-37.9 65.5-43.2 104.3l-1.1-.1c-17.9-1.2-33 13-33 30.9s15.2 32.1 33 30.9l1.1-.1c5.3 38.8 20.6 74.5 43.2 104.3l-.8 .7C63 403.6 62.3 424.4 75 437s33.4 12 45.2-1.5l.7-.8c29.8 22.6 65.5 37.9 104.3 43.2l-.1 1.1c-1.2 17.9 13 33 30.9 33s32.1-15.2 30.9-33l-.1-1.1c38.8-5.3 74.5-20.6 104.3-43.2l.7 .8c11.8 13.5 32.5 14.2 45.2 1.5s12-33.4-1.5-45.2l-.8-.7c22.6-29.8 37.9-65.5 43.2-104.3l1.1 .1c17.9 1.2 33-13 33-30.9s-15.2-32.1-33-30.9l-1.1 .1zM163.2 125.6c19.3-13.8 41.9-23.4 66.2-27.5l4.3 64.4c-10 2.4-19.5 6.4-28 11.6l-42.5-48.6zm-65 103.8c4.1-24.4 13.7-46.9 27.5-66.2l48.6 42.5c-5.3 8.5-9.2 18-11.6 28l-64.4-4.3zm27.5 119.4c-13.8-19.3-23.4-41.9-27.5-66.2l64.4-4.3c2.4 10 6.4 19.5 11.6 28l-48.6 42.5zm103.8 65c-24.4-4.1-46.9-13.7-66.2-27.4l42.5-48.6c8.5 5.3 18 9.2 28 11.6l-4.3 64.4zm119.4-27.4c-19.3 13.8-41.9 23.4-66.2 27.4l-4.3-64.4c10-2.4 19.5-6.4 28-11.6l42.5 48.6zm65-103.8c-4.1 24.4-13.7 46.9-27.4 66.2l-48.6-42.5c5.3-8.5 9.2-18 11.6-28l64.4 4.3zm-65-156.9l-42.5 48.6c-8.6-5.3-18-9.2-28-11.6l4.3-64.4c24.4 4.1 46.9 13.7 66.2 27.5zM256 288c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},uX={prefix:"fas",iconName:"hotdog",icon:[512,512,[127789],"f80f","M488.6 23.4c31.2 31.2 31.2 81.9 0 113.1l-352 352c-31.2 31.2-81.9 31.2-113.1 0s-31.2-81.9 0-113.1l352-352c31.2-31.2 81.9-31.2 113.1 0zM443.3 92.7c-6.2-6.2-16.4-6.2-22.6 0c-12.5 12.5-23.8 15.1-37.5 17.6l-2.5 .4c-13.8 2.5-31.6 5.6-48 22c-16.7 16.7-20.9 36-24.1 50.9l0 0v0l-.2 1c-3.4 15.6-6 26.4-15.7 36.1s-20.5 12.3-36.1 15.7l-1 .2c-14.9 3.2-34.2 7.4-50.9 24.1s-20.9 36-24.1 50.9l-.2 1c-3.4 15.6-6 26.4-15.7 36.1c-9.2 9.2-18 10.8-32.7 13.4l0 0-.9 .2c-15.6 2.8-34.9 6.9-54.4 26.4c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0c12.5-12.5 23.8-15.1 37.5-17.6l2.5-.4c13.8-2.5 31.6-5.6 48-22c16.7-16.7 20.9-36 24.1-50.9l.2-1c3.4-15.6 6-26.4 15.7-36.1s20.5-12.3 36.1-15.7l1-.2c14.9-3.2 34.2-7.4 50.9-24.1s20.9-36 24.1-50.9l.2-1c3.4-15.6 6-26.4 15.7-36.1c9.2-9.2 18-10.8 32.7-13.4l.9-.2c15.6-2.8 34.9-6.9 54.4-26.4c6.2-6.2 6.2-16.4 0-22.6zM191.2 479.2l288-288L495 207c10.9 10.9 17 25.6 17 41s-6.1 30.1-17 41L289 495c-10.9 10.9-25.6 17-41 17s-30.1-6.1-41-17l-15.8-15.8zM17 305C6.1 294.1 0 279.4 0 264s6.1-30.1 17-41L223 17C233.9 6.1 248.6 0 264 0s30.1 6.1 41 17l15.8 15.8-288 288L17 305z"]},zv={prefix:"fas",iconName:"person-walking-with-cane",icon:[512,512,["blind"],"f29d","M176 96c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zm-8.4 32c-36.4 0-69.6 20.5-85.9 53.1L35.4 273.7c-7.9 15.8-1.5 35 14.3 42.9s35 1.5 42.9-14.3L128 231.6v43.2c0 17 6.7 33.3 18.7 45.3L224 397.3V480c0 17.7 14.3 32 32 32s32-14.3 32-32V390.6c0-12.7-5.1-24.9-14.1-33.9L224 306.7V213.3l70.4 93.9c10.6 14.1 30.7 17 44.8 6.4s17-30.7 6.4-44.8L268.8 166.4C250.7 142.2 222.2 128 192 128H167.6zM128.3 346.8L97 472.2c-4.3 17.1 6.1 34.5 23.3 38.8s34.5-6.1 38.8-23.3l22-88.2-52.8-52.8zM450.8 505.1c5 7.3 15 9.1 22.3 4s9.1-15 4-22.3L358.9 316.1c-2.8 3.8-6.1 7.3-10.1 10.3c-5 3.8-10.5 6.4-16.2 7.9L450.8 505.1z"]},hX=zv,pX={prefix:"fas",iconName:"drum",icon:[576,512,[129345],"f569","M533.2 76.1c11.1-7.3 14.2-22.1 6.9-33.2s-22.1-14.2-33.2-6.9L402.2 104.5C367.8 98.7 329 96 288 96C146.6 96 32 128 32 208V368c0 31.3 27.4 58.8 72 78.7V344c0-13.3 10.7-24 24-24s24 10.7 24 24V463.4c33 8.9 71.1 14.5 112 16.1V376c0-13.3 10.7-24 24-24s24 10.7 24 24V479.5c40.9-1.6 79-7.2 112-16.1V344c0-13.3 10.7-24 24-24s24 10.7 24 24V446.7c44.6-19.9 72-47.4 72-78.7V208c0-41.1-30.2-69.5-78.8-87.4l67.9-44.5zM339.4 145.6l-64.6 42.3c-11.1 7.3-14.2 22.1-6.9 33.2s22.1 14.2 33.2 6.9l111.1-72.8c14.7 3.2 27.9 7 39.4 11.5C490.4 181.8 496 197.4 496 208c0 .8-2.7 17.2-46 35.9C411.1 260.7 354 272 288 272s-123.1-11.3-162-28.1C82.7 225.2 80 208.8 80 208c0-10.6 5.6-26.2 44.4-41.3C162.6 151.9 219.8 144 288 144c18 0 35.1 .5 51.4 1.6z"]},mX={prefix:"fas",iconName:"ice-cream",icon:[384,512,[127848],"f810","M335.1 160c.6-5.3 .9-10.6 .9-16C336 64.5 271.5 0 192 0S48 64.5 48 144c0 5.4 .3 10.7 .9 16H48c-26.5 0-48 21.5-48 48s21.5 48 48 48h53.5 181H336c26.5 0 48-21.5 48-48s-21.5-48-48-48h-.9zM64 288L168.8 497.7c4.4 8.8 13.3 14.3 23.2 14.3s18.8-5.5 23.2-14.3L320 288H64z"]},vX={prefix:"fas",iconName:"heart-circle-bolt",icon:[576,512,[],"e4fc","M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176c28.3 0 55 6.7 78.7 18.5c.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5zM432 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm47.9-225c4.3 3.7 5.4 9.9 2.6 14.9L452.4 356H488c5.2 0 9.8 3.3 11.4 8.2s-.1 10.3-4.2 13.4l-96 72c-4.5 3.4-10.8 3.2-15.1-.6s-5.4-9.9-2.6-14.9L411.6 380H376c-5.2 0-9.8-3.3-11.4-8.2s.1-10.3 4.2-13.4l96-72c4.5-3.4 10.8-3.2 15.1 .6z"]},dX={prefix:"fas",iconName:"fax",icon:[512,512,[128224,128439],"f1ac","M128 64v96h64V64H386.7L416 93.3V160h64V93.3c0-17-6.7-33.3-18.7-45.3L432 18.7C420 6.7 403.7 0 386.7 0H192c-35.3 0-64 28.7-64 64zM0 160V480c0 17.7 14.3 32 32 32H64c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H32c-17.7 0-32 14.3-32 32zm480 32H128V480c0 17.7 14.3 32 32 32H480c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32zM256 320c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm160-32c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zM384 448c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm-96-32c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32z"]},HX={prefix:"fas",iconName:"paragraph",icon:[448,512,[182],"f1dd","M192 32h64H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H384l0 352c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-352H288V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H192c-88.4 0-160-71.6-160-160s71.6-160 160-160z"]},gv={prefix:"fas",iconName:"check-to-slot",icon:[576,512,["vote-yea"],"f772","M96 80c0-26.5 21.5-48 48-48H432c26.5 0 48 21.5 48 48V384H96V80zm313 47c-9.4-9.4-24.6-9.4-33.9 0l-111 111-47-47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0L409 161c9.4-9.4 9.4-24.6 0-33.9zM0 336c0-26.5 21.5-48 48-48H64V416H512V288h16c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V336z"]},zX=gv,gX={prefix:"fas",iconName:"star-half",icon:[576,512,[61731],"f089","M288 0c-12.2 .1-23.3 7-28.6 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3L288 439.8V0zM429.9 512c1.1 .1 2.1 .1 3.2 0h-3.2z"]},Qa={prefix:"fas",iconName:"boxes-stacked",icon:[576,512,[62625,"boxes","boxes-alt"],"f468","M248 0H208c-26.5 0-48 21.5-48 48V160c0 35.3 28.7 64 64 64H352c35.3 0 64-28.7 64-64V48c0-26.5-21.5-48-48-48H328V80c0 8.8-7.2 16-16 16H264c-8.8 0-16-7.2-16-16V0zM64 256c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H224c35.3 0 64-28.7 64-64V320c0-35.3-28.7-64-64-64H184v80c0 8.8-7.2 16-16 16H120c-8.8 0-16-7.2-16-16V256H64zM352 512H512c35.3 0 64-28.7 64-64V320c0-35.3-28.7-64-64-64H472v80c0 8.8-7.2 16-16 16H408c-8.8 0-16-7.2-16-16V256H352c-15 0-28.8 5.1-39.7 13.8c4.9 10.4 7.7 22 7.7 34.2V464c0 12.2-2.8 23.8-7.7 34.2C323.2 506.9 337 512 352 512z"]},VX=Qa,MX=Qa,Vv={prefix:"fas",iconName:"link",icon:[640,512,[128279,"chain"],"f0c1","M579.8 267.7c56.5-56.5 56.5-148 0-204.5c-50-50-128.8-56.5-186.3-15.4l-1.6 1.1c-14.4 10.3-17.7 30.3-7.4 44.6s30.3 17.7 44.6 7.4l1.6-1.1c32.1-22.9 76-19.3 103.8 8.6c31.5 31.5 31.5 82.5 0 114L422.3 334.8c-31.5 31.5-82.5 31.5-114 0c-27.9-27.9-31.5-71.8-8.6-103.8l1.1-1.6c10.3-14.4 6.9-34.4-7.4-44.6s-34.4-6.9-44.6 7.4l-1.1 1.6C206.5 251.2 213 330 263 380c56.5 56.5 148 56.5 204.5 0L579.8 267.7zM60.2 244.3c-56.5 56.5-56.5 148 0 204.5c50 50 128.8 56.5 186.3 15.4l1.6-1.1c14.4-10.3 17.7-30.3 7.4-44.6s-30.3-17.7-44.6-7.4l-1.6 1.1c-32.1 22.9-76 19.3-103.8-8.6C74 372 74 321 105.5 289.5L217.7 177.2c31.5-31.5 82.5-31.5 114 0c27.9 27.9 31.5 71.8 8.6 103.9l-1.1 1.6c-10.3 14.4-6.9 34.4 7.4 44.6s34.4 6.9 44.6-7.4l1.1-1.6C433.5 260.8 427 182 377 132c-56.5-56.5-148-56.5-204.5 0L60.2 244.3z"]},CX=Vv,Mv={prefix:"fas",iconName:"ear-listen",icon:[512,512,["assistive-listening-systems"],"f2a2","M398.3 3.4c-15.8-7.9-35-1.5-42.9 14.3c-7.9 15.8-1.5 34.9 14.2 42.9l.4 .2c.4 .2 1.1 .6 2.1 1.2c2 1.2 5 3 8.7 5.6c7.5 5.2 17.6 13.2 27.7 24.2C428.5 113.4 448 146 448 192c0 17.7 14.3 32 32 32s32-14.3 32-32c0-66-28.5-113.4-56.5-143.7C441.6 33.2 427.7 22.2 417.3 15c-5.3-3.7-9.7-6.4-13-8.3c-1.6-1-3-1.7-4-2.2c-.5-.3-.9-.5-1.2-.7l-.4-.2-.2-.1-.1 0 0 0c0 0 0 0-14.3 28.6L398.3 3.4zM128.7 227.5c6.2-56 53.7-99.5 111.3-99.5c61.9 0 112 50.1 112 112c0 29.3-11.2 55.9-29.6 75.9c-17 18.4-34.4 45.1-34.4 78V400c0 26.5-21.5 48-48 48c-17.7 0-32 14.3-32 32s14.3 32 32 32c61.9 0 112-50.1 112-112v-6.1c0-9.8 5.4-21.7 17.4-34.7C398.3 327.9 416 286 416 240c0-97.2-78.8-176-176-176C149.4 64 74.8 132.5 65.1 220.5c-1.9 17.6 10.7 33.4 28.3 35.3s33.4-10.7 35.3-28.3zM32 512c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zM192 352c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3l64 64c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-64-64c-12.5-12.5-32.8-12.5-45.3 0zM208 240c0-17.7 14.3-32 32-32s32 14.3 32 32c0 13.3 10.7 24 24 24s24-10.7 24-24c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 13.3 10.7 24 24 24s24-10.7 24-24z"]},LX=Mv,yX={prefix:"fas",iconName:"tree-city",icon:[640,512,[],"e587","M288 48c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48V192h40V120c0-13.3 10.7-24 24-24s24 10.7 24 24v72h24c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H432 336c-26.5 0-48-21.5-48-48V48zm64 32v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16zm16 80c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V176c0-8.8-7.2-16-16-16H368zM352 272v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16zm176-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H528zM512 368v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H528c-8.8 0-16 7.2-16 16zM224 160c0 6-1 11-2 16c20 14 34 38 34 64c0 45-36 80-80 80H160V480c0 18-15 32-32 32c-18 0-32-14-32-32V320H80c-45 0-80-35-80-80c0-26 13-50 33-64c-1-5-1-10-1-16c0-53 42-96 96-96c53 0 96 43 96 96z"]},bX={prefix:"fas",iconName:"play",icon:[384,512,[9654],"f04b","M73 39c-14.8-9.1-33.4-9.4-48.5-.9S0 62.6 0 80V432c0 17.4 9.4 33.4 24.5 41.9s33.7 8.1 48.5-.9L361 297c14.3-8.7 23-24.2 23-41s-8.7-32.2-23-41L73 39z"]},xX={prefix:"fas",iconName:"font",icon:[448,512,[],"f031","M254 52.8C249.3 40.3 237.3 32 224 32s-25.3 8.3-30 20.8L57.8 416H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32h-1.8l18-48H303.8l18 48H320c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H390.2L254 52.8zM279.8 304H168.2L224 155.1 279.8 304z"]},SX={prefix:"fas",iconName:"rupiah-sign",icon:[512,512,[],"e23d","M0 64C0 46.3 14.3 32 32 32h80c79.5 0 144 64.5 144 144c0 58.8-35.2 109.3-85.7 131.7l51.4 128.4c6.6 16.4-1.4 35-17.8 41.6s-35-1.4-41.6-17.8L106.3 320H64V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V288 64zM64 256h48c44.2 0 80-35.8 80-80s-35.8-80-80-80H64V256zm256-96h80c61.9 0 112 50.1 112 112s-50.1 112-112 112H352v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352 192c0-17.7 14.3-32 32-32zm80 160c26.5 0 48-21.5 48-48s-21.5-48-48-48H352v96h48z"]},Cv={prefix:"fas",iconName:"magnifying-glass",icon:[512,512,[128269,"search"],"f002","M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352c79.5 0 144-64.5 144-144s-64.5-144-144-144S64 128.5 64 208s64.5 144 144 144z"]},wX=Cv,Za={prefix:"fas",iconName:"table-tennis-paddle-ball",icon:[512,512,[127955,"ping-pong-paddle-ball","table-tennis"],"f45d","M416 288c-50.1 0-93.6 28.8-114.6 70.8L68.9 126.3l.6-.6 60.1-60.1c87.5-87.5 229.3-87.5 316.8 0c67.1 67.1 82.7 166.3 46.8 248.3C471.8 297.6 445 288 416 288zM49.3 151.9L290.1 392.7c-1.4 7.5-2.1 15.3-2.1 23.3c0 23.2 6.2 44.9 16.9 63.7c-3 .2-6.1 .3-9.2 .3H293c-33.9 0-66.5-13.5-90.5-37.5l-9.8-9.8c-13.1-13.1-34.6-12.4-46.8 1.7L88.2 501c-5.8 6.7-14.2 10.7-23 11s-17.5-3.1-23.8-9.4l-32-32C3.1 464.3-.3 455.7 0 446.9s4.3-17.2 11-23l66.6-57.7c14-12.2 14.8-33.7 1.7-46.8l-9.8-9.8C45.5 285.5 32 252.9 32 219v-2.7c0-22.8 6.1-44.9 17.3-64.3zM416 512c-53 0-96-43-96-96s43-96 96-96s96 43 96 96s-43 96-96 96z"]},NX=Za,AX=Za,Lv={prefix:"fas",iconName:"person-dots-from-line",icon:[576,512,["diagnoses"],"f470","M288 176c48.6 0 88-39.4 88-88s-39.4-88-88-88s-88 39.4-88 88s39.4 88 88 88zM78.7 372.9c15-12.5 50-34.4 97.3-50.1V432H400V322.7c47.3 15.8 82.3 37.7 97.3 50.1c20.4 17 50.6 14.2 67.6-6.1s14.2-50.6-6.1-67.6c-12-10-30.1-22.5-53.2-35C497.2 278.4 481.7 288 464 288c-26.5 0-48-21.5-48-48c0-4.3 .6-8.4 1.6-12.4C379.1 215.9 335.3 208 288 208c-60.2 0-114.9 12.9-160 29.9c0 .7 0 1.4 0 2.1c0 26.5-21.5 48-48 48c-11.8 0-22.7-4.3-31-11.4c-13.1 8.1-23.7 15.9-31.7 22.5c-20.4 17-23.1 47.2-6.1 67.6s47.2 23.1 67.6 6.1zM24 464c-13.3 0-24 10.7-24 24s10.7 24 24 24H552c13.3 0 24-10.7 24-24s-10.7-24-24-24H24zM272 280c0 13.3-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24zm56 104c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zM96 240c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zm368 16c8.8 0 16-7.2 16-16s-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16z"]},_X=Lv,yv={prefix:"fas",iconName:"trash-can-arrow-up",icon:[448,512,["trash-restore-alt"],"f82a","M163.8 0H284.2c12.1 0 23.2 6.8 28.6 17.7L320 32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64S14.3 32 32 32h96l7.2-14.3C140.6 6.8 151.7 0 163.8 0zM32 128H416V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V128zm192 64c-6.4 0-12.5 2.5-17 7l-80 80c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l39-39V408c0 13.3 10.7 24 24 24s24-10.7 24-24V273.9l39 39c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-80-80c-4.5-4.5-10.6-7-17-7z"]},kX=yv,TX={prefix:"fas",iconName:"naira-sign",icon:[448,512,[],"e1f6","M122.6 46.3c-7.8-11.7-22.4-17-35.9-12.9S64 49.9 64 64V256H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64V448c0 17.7 14.3 32 32 32s32-14.3 32-32V320H228.2l97.2 145.8c7.8 11.7 22.4 17 35.9 12.9s22.7-16.5 22.7-30.6V320h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H384V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V256H262.5L122.6 46.3zM305.1 320H320v22.3L305.1 320zM185.5 256H128V169.7L185.5 256z"]},PX={prefix:"fas",iconName:"cart-arrow-down",icon:[576,512,[],"f218","M24 0C10.7 0 0 10.7 0 24S10.7 48 24 48H69.5c3.8 0 7.1 2.7 7.9 6.5l51.6 271c6.5 34 36.2 58.5 70.7 58.5H488c13.3 0 24-10.7 24-24s-10.7-24-24-24H199.7c-11.5 0-21.4-8.2-23.6-19.5L170.7 288H459.2c32.6 0 61.1-21.8 69.5-53.3l41-152.3C576.6 57 557.4 32 531.1 32H360V134.1l23-23c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-64 64c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l23 23V32H120.1C111 12.8 91.6 0 69.5 0H24zM176 512a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm336-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0z"]},EX={prefix:"fas",iconName:"walkie-talkie",icon:[384,512,[],"f8ef","M112 24c0-13.3-10.7-24-24-24S64 10.7 64 24V96H48C21.5 96 0 117.5 0 144V300.1c0 12.7 5.1 24.9 14.1 33.9l3.9 3.9c9 9 14.1 21.2 14.1 33.9V464c0 26.5 21.5 48 48 48H304c26.5 0 48-21.5 48-48V371.9c0-12.7 5.1-24.9 14.1-33.9l3.9-3.9c9-9 14.1-21.2 14.1-33.9V144c0-26.5-21.5-48-48-48H320c0-17.7-14.3-32-32-32s-32 14.3-32 32H224c0-17.7-14.3-32-32-32s-32 14.3-32 32H112V24zm0 136H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16z"]},bv={prefix:"fas",iconName:"file-pen",icon:[576,512,[128221,"file-edit"],"f31c","M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384V285.7l-86.8 86.8c-10.3 10.3-17.5 23.1-21 37.2l-18.7 74.9c-2.3 9.2-1.8 18.8 1.3 27.5H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zM549.8 235.7l14.4 14.4c15.6 15.6 15.6 40.9 0 56.6l-29.4 29.4-71-71 29.4-29.4c15.6-15.6 40.9-15.6 56.6 0zM311.9 417L441.1 287.8l71 71L382.9 487.9c-4.1 4.1-9.2 7-14.9 8.4l-60.1 15c-5.5 1.4-11.2-.2-15.2-4.2s-5.6-9.7-4.2-15.2l15-60.1c1.4-5.6 4.3-10.8 8.4-14.9z"]},OX=bv,RX={prefix:"fas",iconName:"receipt",icon:[384,512,[129534],"f543","M14 2.2C22.5-1.7 32.5-.3 39.6 5.8L80 40.4 120.4 5.8c9-7.7 22.3-7.7 31.2 0L192 40.4 232.4 5.8c9-7.7 22.2-7.7 31.2 0L304 40.4 344.4 5.8c7.1-6.1 17.1-7.5 25.6-3.6s14 12.4 14 21.8V488c0 9.4-5.5 17.9-14 21.8s-18.5 2.5-25.6-3.6L304 471.6l-40.4 34.6c-9 7.7-22.2 7.7-31.2 0L192 471.6l-40.4 34.6c-9 7.7-22.3 7.7-31.2 0L80 471.6 39.6 506.2c-7.1 6.1-17.1 7.5-25.6 3.6S0 497.4 0 488V24C0 14.6 5.5 6.1 14 2.2zM96 144c-8.8 0-16 7.2-16 16s7.2 16 16 16H288c8.8 0 16-7.2 16-16s-7.2-16-16-16H96zM80 352c0 8.8 7.2 16 16 16H288c8.8 0 16-7.2 16-16s-7.2-16-16-16H96c-8.8 0-16 7.2-16 16zM96 240c-8.8 0-16 7.2-16 16s7.2 16 16 16H288c8.8 0 16-7.2 16-16s-7.2-16-16-16H96z"]},cn={prefix:"fas",iconName:"square-pen",icon:[448,512,["pen-square","pencil-square"],"f14b","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM325.8 139.7l14.4 14.4c15.6 15.6 15.6 40.9 0 56.6l-21.4 21.4-71-71 21.4-21.4c15.6-15.6 40.9-15.6 56.6 0zM119.9 289L225.1 183.8l71 71L190.9 359.9c-4.1 4.1-9.2 7-14.9 8.4l-60.1 15c-5.5 1.4-11.2-.2-15.2-4.2s-5.6-9.7-4.2-15.2l15-60.1c1.4-5.6 4.3-10.8 8.4-14.9z"]},FX=cn,BX=cn,DX={prefix:"fas",iconName:"suitcase-rolling",icon:[384,512,[],"f5c1","M144 56c0-4.4 3.6-8 8-8h80c4.4 0 8 3.6 8 8v72H144V56zm176 72H288V56c0-30.9-25.1-56-56-56H152C121.1 0 96 25.1 96 56v72H64c-35.3 0-64 28.7-64 64V416c0 35.3 28.7 64 64 64c0 17.7 14.3 32 32 32s32-14.3 32-32H256c0 17.7 14.3 32 32 32s32-14.3 32-32c35.3 0 64-28.7 64-64V192c0-35.3-28.7-64-64-64zM112 224H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 128H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16z"]},IX={prefix:"fas",iconName:"person-circle-exclamation",icon:[576,512,[],"e53f","M208 48c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48zM152 352V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5c-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152zM432 512c-79.5 0-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144s-64.5 144-144 144zm0-48c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24zm0-192c-8.8 0-16 7.2-16 16v80c0 8.8 7.2 16 16 16s16-7.2 16-16V288c0-8.8-7.2-16-16-16z"]},UX={prefix:"fas",iconName:"chevron-down",icon:[512,512,[],"f078","M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z"]},en={prefix:"fas",iconName:"battery-full",icon:[576,512,[128267,"battery","battery-5"],"f240","M0 176c0-44.2 35.8-80 80-80H464c44.2 0 80 35.8 80 80v16c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32v16c0 44.2-35.8 80-80 80H80c-44.2 0-80-35.8-80-80V176zm80-16c-8.8 0-16 7.2-16 16V336c0 8.8 7.2 16 16 16H464c8.8 0 16-7.2 16-16V176c0-8.8-7.2-16-16-16H80zm368 32V320H96V192H448z"]},WX=en,$X=en,qX={prefix:"fas",iconName:"skull-crossbones",icon:[512,512,[128369,9760],"f714","M400 128c0 44.4-25.4 83.5-64 106.4V256c0 17.7-14.3 32-32 32H208c-17.7 0-32-14.3-32-32V234.4c-38.6-23-64-62.1-64-106.4C112 57.3 176.5 0 256 0s144 57.3 144 128zM200 176c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm144-32c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM35.4 273.7c7.9-15.8 27.1-22.2 42.9-14.3L256 348.2l177.7-88.8c15.8-7.9 35-1.5 42.9 14.3s1.5 35-14.3 42.9L327.6 384l134.8 67.4c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3L256 419.8 78.3 508.6c-15.8 7.9-35 1.5-42.9-14.3s-1.5-35 14.3-42.9L184.4 384 49.7 316.6c-15.8-7.9-22.2-27.1-14.3-42.9z"]},GX={prefix:"fas",iconName:"code-compare",icon:[512,512,[],"e13a","M320 488c0 9.5-5.6 18.1-14.2 21.9s-18.8 2.3-25.8-4.1l-80-72c-5.1-4.6-7.9-11-7.9-17.8s2.9-13.3 7.9-17.8l80-72c7-6.3 17.2-7.9 25.8-4.1s14.2 12.4 14.2 21.9v40h16c35.3 0 64-28.7 64-64V153.3C371.7 141 352 112.8 352 80c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V320c0 70.7-57.3 128-128 128H320v40zM456 80c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24zM192 24c0-9.5 5.6-18.1 14.2-21.9s18.8-2.3 25.8 4.1l80 72c5.1 4.6 7.9 11 7.9 17.8s-2.9 13.3-7.9 17.8l-80 72c-7 6.3-17.2 7.9-25.8 4.1s-14.2-12.4-14.2-21.9V128H176c-35.3 0-64 28.7-64 64V358.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V192c0-70.7 57.3-128 128-128h16V24zM56 432c0 13.3 10.7 24 24 24s24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24z"]},xv={prefix:"fas",iconName:"list-ul",icon:[512,512,["list-dots"],"f0ca","M64 144c26.5 0 48-21.5 48-48s-21.5-48-48-48S16 69.5 16 96s21.5 48 48 48zM192 64c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zM64 464c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zm48-208c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48z"]},jX=xv,KX={prefix:"fas",iconName:"school-lock",icon:[640,512,[],"e56f","M302.2 5.4c10.7-7.2 24.8-7.2 35.5 0L473.7 96H592c26.5 0 48 21.5 48 48V272c0-61.9-50.1-112-112-112s-112 50.1-112 112v24.6c-19.1 11.1-32 31.7-32 55.4H320.3l-.3 0c-35.3 0-64 28.7-64 64v96h64v0H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48H166.3L302.2 5.4zM80 208v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16H96c-8.8 0-16 7.2-16 16zm0 128v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V336c0-8.8-7.2-16-16-16H96c-8.8 0-16 7.2-16 16zm240-72a88 88 0 1 0 0-176 88 88 0 1 0 0 176zm16-120v16h16c8.8 0 16 7.2 16 16s-7.2 16-16 16H320c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16s16 7.2 16 16zm192 96c-17.7 0-32 14.3-32 32v48h64V272c0-17.7-14.3-32-32-32zm-80 32c0-44.2 35.8-80 80-80s80 35.8 80 80v48c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32V272z"]},XX={prefix:"fas",iconName:"tower-cell",icon:[576,512,[],"e585","M62.6 2.3C46.2-4.3 27.6 3.6 20.9 20C7.4 53.4 0 89.9 0 128s7.4 74.6 20.9 108c6.6 16.4 25.3 24.3 41.7 17.7S86.9 228.4 80.3 212C69.8 186.1 64 157.8 64 128s5.8-58.1 16.3-84C86.9 27.6 79 9 62.6 2.3zm450.8 0C497 9 489.1 27.6 495.7 44C506.2 69.9 512 98.2 512 128s-5.8 58.1-16.3 84c-6.6 16.4 1.3 35 17.7 41.7s35-1.3 41.7-17.7c13.5-33.4 20.9-69.9 20.9-108s-7.4-74.6-20.9-108C548.4 3.6 529.8-4.3 513.4 2.3zM340.1 165.2c7.5-10.5 11.9-23.3 11.9-37.2c0-35.3-28.7-64-64-64s-64 28.7-64 64c0 13.9 4.4 26.7 11.9 37.2L98.9 466.8c-7.3 16.1-.2 35.1 15.9 42.4s35.1 .2 42.4-15.9L177.7 448H398.3l20.6 45.2c7.3 16.1 26.3 23.2 42.4 15.9s23.2-26.3 15.9-42.4L340.1 165.2zM369.2 384H206.8l14.5-32H354.7l14.5 32zM288 205.3L325.6 288H250.4L288 205.3zM163.3 73.6c5.3-12.1-.2-26.3-12.4-31.6s-26.3 .2-31.6 12.4C109.5 77 104 101.9 104 128s5.5 51 15.3 73.6c5.3 12.1 19.5 17.7 31.6 12.4s17.7-19.5 12.4-31.6C156 165.8 152 147.4 152 128s4-37.8 11.3-54.4zM456.7 54.4c-5.3-12.1-19.5-17.7-31.6-12.4s-17.7 19.5-12.4 31.6C420 90.2 424 108.6 424 128s-4 37.8-11.3 54.4c-5.3 12.1 .2 26.3 12.4 31.6s26.3-.2 31.6-12.4C466.5 179 472 154.1 472 128s-5.5-51-15.3-73.6z"]},Sv={prefix:"fas",iconName:"down-long",icon:[320,512,["long-arrow-alt-down"],"f309","M318 334.5c3.8 8.8 2 19-4.6 26l-136 144c-4.5 4.8-10.8 7.5-17.4 7.5s-12.9-2.7-17.4-7.5l-136-144c-6.6-7-8.4-17.2-4.6-26S14.4 320 24 320h88l0-288c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32l0 288h88c9.6 0 18.2 5.7 22 14.5z"]},YX=Sv,JX={prefix:"fas",iconName:"ranking-star",icon:[640,512,[],"e561","M353.8 54.1L330.2 6.3c-3.9-8.3-16.1-8.6-20.4 0L286.2 54.1l-52.3 7.5c-9.3 1.4-13.3 12.9-6.4 19.8l38 37-9 52.1c-1.4 9.3 8.2 16.5 16.8 12.2l46.9-24.8 46.6 24.4c8.6 4.3 18.3-2.9 16.8-12.2l-9-52.1 38-36.6c6.8-6.8 2.9-18.3-6.4-19.8l-52.3-7.5zM256 256c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H384c17.7 0 32-14.3 32-32V288c0-17.7-14.3-32-32-32H256zM32 320c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H160c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32H32zm416 96v64c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V416c0-17.7-14.3-32-32-32H480c-17.7 0-32 14.3-32 32z"]},QX={prefix:"fas",iconName:"chess-king",icon:[448,512,[9818],"f43f","M224 0c17.7 0 32 14.3 32 32V48h16c17.7 0 32 14.3 32 32s-14.3 32-32 32H256v48H416c10.3 0 19.9 4.9 26 13.3s7.7 19.1 4.4 28.8L375.1 416H72.9L1.6 202.1C-1.6 192.4 0 181.6 6 173.3s15.7-13.3 26-13.3H192V112H176c-17.7 0-32-14.3-32-32s14.3-32 32-32h16V32c0-17.7 14.3-32 32-32zM32 480c0-17.7 14.3-32 32-32H83.6 364.4 384c17.7 0 32 14.3 32 32s-14.3 32-32 32H320 128 64c-17.7 0-32-14.3-32-32z"]},ZX={prefix:"fas",iconName:"person-harassing",icon:[576,512,[],"e549","M192 96c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zM59.4 304.5L88 256.9V480c0 17.7 14.3 32 32 32s32-14.3 32-32V352h16V480c0 17.7 14.3 32 32 32s32-14.3 32-32V235.3l47.4 57.1c11.3 13.6 31.5 15.5 45.1 4.2s15.5-31.5 4.2-45.1l-73.7-88.9c-18.2-22-45.3-34.7-73.9-34.7H145.1c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9zM480 240c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM464 344v58.7l-41.4-41.4c-7.3-7.3-17.6-10.6-27.8-9s-18.9 8.1-23.5 17.3l-48 96c-7.9 15.8-1.5 35 14.3 42.9s35 1.5 42.9-14.3L408.8 438l54.7 54.7c12.4 12.4 29.1 19.3 46.6 19.3c36.4 0 65.9-29.5 65.9-65.9V344c0-30.9-25.1-56-56-56s-56 25.1-56 56zM288 48c0 8.8 7.2 16 16 16h56c8.8 0 16-7.2 16-16s-7.2-16-16-16H304c-8.8 0-16 7.2-16 16zm-.8 49.7c-7.9-4-17.5-.7-21.5 7.2s-.7 17.5 7.2 21.5l48 24c7.9 4 17.5 .7 21.5-7.2s.7-17.5-7.2-21.5l-48-24z"]},cY={prefix:"fas",iconName:"brazilian-real-sign",icon:[512,512,[],"e46c","M400 0c17.7 0 32 14.3 32 32V50.2c12.5 2.3 24.7 6.4 36.2 12.1l10.1 5.1c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3l-10.2-5.1c-9.9-5-20.9-7.5-32-7.5h-1.7c-29.8 0-53.9 24.1-53.9 53.9c0 22 13.4 41.8 33.9 50l52 20.8c44.7 17.9 74.1 61.2 74.1 109.4v3.4c0 51.2-33.6 94.6-80 109.2V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V460.6c-15-3.5-29.4-9.7-42.3-18.3l-23.4-15.6c-14.7-9.8-18.7-29.7-8.9-44.4s29.7-18.7 44.4-8.9L361.2 389c10.8 7.2 23.4 11 36.3 11c27.9 0 50.5-22.6 50.5-50.5v-3.4c0-22-13.4-41.8-33.9-50l-52-20.8C317.3 257.4 288 214.1 288 165.9C288 114 321.5 70 368 54.2V32c0-17.7 14.3-32 32-32zM0 64C0 46.3 14.3 32 32 32h80c79.5 0 144 64.5 144 144c0 58.8-35.2 109.3-85.7 131.7l51.4 128.4c6.6 16.4-1.4 35-17.8 41.6s-35-1.4-41.6-17.8L106.3 320H64V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V288 64zM64 256h48c44.2 0 80-35.8 80-80s-35.8-80-80-80H64V256z"]},wv={prefix:"fas",iconName:"landmark-dome",icon:[512,512,["landmark-alt"],"f752","M248 0h16c13.3 0 24 10.7 24 24V34.7C368.4 48.1 431.9 111.6 445.3 192H448c17.7 0 32 14.3 32 32s-14.3 32-32 32H64c-17.7 0-32-14.3-32-32s14.3-32 32-32h2.7C80.1 111.6 143.6 48.1 224 34.7V24c0-13.3 10.7-24 24-24zM64 288h64V416h40V288h64V416h48V288h64V416h40V288h64V420.3c.6 .3 1.2 .7 1.7 1.1l48 32c11.7 7.8 17 22.4 12.9 35.9S494.1 512 480 512H32c-14.1 0-26.5-9.2-30.6-22.7s1.1-28.1 12.9-35.9l48-32c.6-.4 1.2-.7 1.8-1.1V288z"]},eY=wv,rY={prefix:"fas",iconName:"arrow-up",icon:[384,512,[8593],"f062","M214.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L160 141.2V448c0 17.7 14.3 32 32 32s32-14.3 32-32V141.2L329.4 246.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-160-160z"]},rn={prefix:"fas",iconName:"tv",icon:[640,512,[63717,"television","tv-alt"],"f26c","M64 64V352H576V64H64zM0 64C0 28.7 28.7 0 64 0H576c35.3 0 64 28.7 64 64V352c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM128 448H512c17.7 0 32 14.3 32 32s-14.3 32-32 32H128c-17.7 0-32-14.3-32-32s14.3-32 32-32z"]},aY=rn,nY=rn,tY={prefix:"fas",iconName:"shrimp",icon:[512,512,[129424],"e448","M64 32C28.7 32 0 60.7 0 96s28.7 64 64 64h1c3.7 88.9 77 160 167 160h56V128H264 88.8 64c-17.7 0-32-14.3-32-32s14.3-32 32-32H464c8.8 0 16-7.2 16-16s-7.2-16-16-16H64zM224 456c0 13.3 10.7 24 24 24h72V407.8l-64.1-22.4c-12.5-4.4-26.2 2.2-30.6 14.7s2.2 26.2 14.7 30.6l4.5 1.6C233 433.9 224 443.9 224 456zm128 23.3c36.4-3.3 69.5-17.6 96.1-39.6l-86.5-34.6c-3 1.8-6.2 3.2-9.6 4.3v69.9zM472.6 415c24.6-30.3 39.4-68.9 39.4-111c0-12.3-1.3-24.3-3.7-35.9L382.8 355.1c.8 3.4 1.2 7 1.2 10.6c0 4.6-.7 9-1.9 13.1L472.6 415zM336 128H320V320h18.3c9.9 0 19.1 3.2 26.6 8.5l133.5-92.4C471.8 172.6 409.1 128 336 128zM216 192c0 13.3-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24z"]},Nv={prefix:"fas",iconName:"list-check",icon:[576,512,["tasks"],"f0ae","M184.1 38.2c9.9 8.9 10.7 24 1.8 33.9l-72 80c-4.4 4.9-10.6 7.8-17.2 7.9s-12.9-2.4-17.6-7L39 113c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l22.1 22.1 55.1-61.2c8.9-9.9 24-10.7 33.9-1.8zm0 160c9.9 8.9 10.7 24 1.8 33.9l-72 80c-4.4 4.9-10.6 7.8-17.2 7.9s-12.9-2.4-17.6-7L39 273c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l22.1 22.1 55.1-61.2c8.9-9.9 24-10.7 33.9-1.8zM256 96c0-17.7 14.3-32 32-32H512c17.7 0 32 14.3 32 32s-14.3 32-32 32H288c-17.7 0-32-14.3-32-32zm0 160c0-17.7 14.3-32 32-32H512c17.7 0 32 14.3 32 32s-14.3 32-32 32H288c-17.7 0-32-14.3-32-32zM192 416c0-17.7 14.3-32 32-32H512c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32zM80 464c-26.5 0-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48s-21.5 48-48 48z"]},sY=Nv,iY={prefix:"fas",iconName:"jug-detergent",icon:[384,512,[],"e519","M96 24c0-13.3 10.7-24 24-24h80c13.3 0 24 10.7 24 24V48h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H88C74.7 96 64 85.3 64 72s10.7-24 24-24h8V24zM0 256c0-70.7 57.3-128 128-128H256c70.7 0 128 57.3 128 128V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V256zm256 0v96c0 17.7 14.3 32 32 32s32-14.3 32-32V256c0-17.7-14.3-32-32-32s-32 14.3-32 32z"]},Av={prefix:"fas",iconName:"circle-user",icon:[512,512,[62142,"user-circle"],"f2bd","M399 384.2C376.9 345.8 335.4 320 288 320H224c-47.4 0-88.9 25.8-111 64.2c35.2 39.2 86.2 63.8 143 63.8s107.8-24.7 143-63.8zM512 256c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0S512 114.6 512 256zM256 272c39.8 0 72-32.2 72-72s-32.2-72-72-72s-72 32.2-72 72s32.2 72 72 72z"]},oY=Av,fY={prefix:"fas",iconName:"user-shield",icon:[640,512,[],"f505","M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0S96 57.3 96 128s57.3 128 128 128zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c1.8 0 3.5-.2 5.3-.5c-76.3-55.1-99.8-141-103.1-200.2c-16.1-4.8-33.1-7.3-50.7-7.3H178.3zm308.8-78.3l-120 48C358 277.4 352 286.2 352 296c0 63.3 25.9 168.8 134.8 214.2c5.9 2.5 12.6 2.5 18.5 0C614.1 464.8 640 359.3 640 296c0-9.8-6-18.6-15.1-22.3l-120-48c-5.7-2.3-12.1-2.3-17.8 0zM591.4 312c-3.9 50.7-27.2 116.7-95.4 149.7V273.8L591.4 312z"]},lY={prefix:"fas",iconName:"wind",icon:[512,512,[],"f72e","M288 32c0 17.7 14.3 32 32 32h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H352c53 0 96-43 96-96s-43-96-96-96H320c-17.7 0-32 14.3-32 32zm64 352c0 17.7 14.3 32 32 32h32c53 0 96-43 96-96s-43-96-96-96H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H384c-17.7 0-32 14.3-32 32zM128 512h32c53 0 96-43 96-96s-43-96-96-96H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H160c17.7 0 32 14.3 32 32s-14.3 32-32 32H128c-17.7 0-32 14.3-32 32s14.3 32 32 32z"]},_v={prefix:"fas",iconName:"car-burst",icon:[640,512,["car-crash"],"f5e1","M176 8c-6.6 0-12.4 4-14.9 10.1l-29.4 74L55.6 68.9c-6.3-1.9-13.1 .2-17.2 5.3s-4.6 12.2-1.4 17.9l39.5 69.1L10.9 206.4c-5.4 3.7-8 10.3-6.5 16.7s6.7 11.2 13.1 12.2l78.7 12.2L90.6 327c-.5 6.5 3.1 12.7 9 15.5s12.9 1.8 17.8-2.6l35.3-32.5 9.5-35.4 10.4-38.6c8-29.9 30.5-52.1 57.9-60.9l41-59.2c11.3-16.3 26.4-28.9 43.5-37.2c-.4-.6-.8-1.2-1.3-1.8c-4.1-5.1-10.9-7.2-17.2-5.3L220.3 92.1l-29.4-74C188.4 12 182.6 8 176 8zM367.7 161.5l135.6 36.3c6.5 1.8 11.3 7.4 11.8 14.2l4.6 56.5-201.5-54 32.2-46.6c3.8-5.6 10.8-8.1 17.3-6.4zm-69.9-30l-47.9 69.3c-21.6 3-40.3 18.6-46.3 41l-10.4 38.6-16.6 61.8-8.3 30.9c-4.6 17.1 5.6 34.6 22.6 39.2l15.5 4.1c17.1 4.6 34.6-5.6 39.2-22.6l8.3-30.9 247.3 66.3-8.3 30.9c-4.6 17.1 5.6 34.6 22.6 39.2l15.5 4.1c17.1 4.6 34.6-5.6 39.2-22.6l8.3-30.9L595 388l10.4-38.6c6-22.4-2.5-45.2-19.6-58.7l-6.8-84c-2.7-33.7-26.4-62-59-70.8L384.2 99.7c-32.7-8.8-67.3 4-86.5 31.8zM268.3 308.8c-12.8-3.4-20.4-16.6-17-29.4s16.6-20.4 29.4-17s20.4 16.6 17 29.4s-16.6 20.4-29.4 17zM545 358.1c-3.4 12.8-16.6 20.4-29.4 17s-20.4-16.6-17-29.4s16.6-20.4 29.4-17s20.4 16.6 17 29.4z"]},uY=_v,hY={prefix:"fas",iconName:"y",icon:[384,512,[121],"59","M58 45.4C47.8 31 27.8 27.7 13.4 38S-4.3 68.2 6 82.6L160 298.3V448c0 17.7 14.3 32 32 32s32-14.3 32-32V298.3L378 82.6c10.3-14.4 6.9-34.4-7.4-44.6S336.2 31 326 45.4L192 232.9 58 45.4z"]},kv={prefix:"fas",iconName:"person-snowboarding",icon:[576,512,[127938,"snowboarding"],"f7ce","M241.7 3.4c15.8-7.9 35-1.5 42.9 14.3l25 50 42.4 8.5c19.5 3.9 37.8 12.3 53.5 24.5l126.1 98.1c14 10.9 16.5 31 5.6 44.9s-31 16.5-44.9 5.6l-72.1-56.1-71.5 31.8 33.1 27.6c23.2 19.3 33.5 50 26.7 79.4l-17.4 75.2c-2.2 9.4-8.2 16.8-16.1 21l86.5 33.1c4.6 1.8 9.4 2.6 14.3 2.6H504c13.3 0 24 10.7 24 24s-10.7 24-24 24H475.8c-10.8 0-21.4-2-31.5-5.8L92.1 371.3c-11.5-4.4-22-11.2-30.8-20L39 329c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l22.4 22.4c4 4 8.7 7.1 14 9.1l22.4 8.6c-.8-1.6-1.5-3.2-2.1-4.9c-5.6-16.8 3.5-34.9 20.2-40.5L224 264.9l0-53.2c0-24.2 13.7-46.4 35.4-57.2l45.2-22.6-7.5-1.5c-19.4-3.9-35.9-16.5-44.7-34.1l-25-50c-7.9-15.8-1.5-35 14.3-42.9zM171 350.1l159 60.9c-2.1-5.6-2.6-11.9-1.1-18.2l17.4-75.2c1.4-5.9-.7-12-5.4-15.9l-52.8-44 0 18.8c0 20.7-13.2 39-32.8 45.5L171 350.1zM464 96c-26.5 0-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48s-21.5 48-48 48z"]},pY=kv,Tv={prefix:"fas",iconName:"truck-fast",icon:[640,512,["shipping-fast"],"f48b","M112 0C85.5 0 64 21.5 64 48V96H16c-8.8 0-16 7.2-16 16s7.2 16 16 16H64 272c8.8 0 16 7.2 16 16s-7.2 16-16 16H64 48c-8.8 0-16 7.2-16 16s7.2 16 16 16H64 240c8.8 0 16 7.2 16 16s-7.2 16-16 16H64 16c-8.8 0-16 7.2-16 16s7.2 16 16 16H64 208c8.8 0 16 7.2 16 16s-7.2 16-16 16H64V416c0 53 43 96 96 96s96-43 96-96H384c0 53 43 96 96 96s96-43 96-96h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V288 256 237.3c0-17-6.7-33.3-18.7-45.3L512 114.7c-12-12-28.3-18.7-45.3-18.7H416V48c0-26.5-21.5-48-48-48H112zM544 237.3V256H416V160h50.7L544 237.3zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48s-21.5 48-48 48zm368-48c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48z"]},mY=Tv,vY={prefix:"fas",iconName:"fish",icon:[576,512,[128031],"f578","M180.5 141.5C219.7 108.5 272.6 80 336 80s116.3 28.5 155.5 61.5c39.1 33 66.9 72.4 81 99.8c4.7 9.2 4.7 20.1 0 29.3c-14.1 27.4-41.9 66.8-81 99.8C452.3 403.5 399.4 432 336 432s-116.3-28.5-155.5-61.5c-16.2-13.7-30.5-28.5-42.7-43.1L48.1 379.6c-12.5 7.3-28.4 5.3-38.7-4.9S-3 348.7 4.2 336.1L50 256 4.2 175.9c-7.2-12.6-5-28.4 5.3-38.6s26.1-12.2 38.7-4.9l89.7 52.3c12.2-14.6 26.5-29.4 42.7-43.1zM448 256c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32z"]},dY={prefix:"fas",iconName:"user-graduate",icon:[448,512,[],"f501","M219.3 .5c3.1-.6 6.3-.6 9.4 0l200 40C439.9 42.7 448 52.6 448 64s-8.1 21.3-19.3 23.5L352 102.9V160c0 70.7-57.3 128-128 128s-128-57.3-128-128V102.9L48 93.3v65.1l15.7 78.4c.9 4.7-.3 9.6-3.3 13.3s-7.6 5.9-12.4 5.9H16c-4.8 0-9.3-2.1-12.4-5.9s-4.3-8.6-3.3-13.3L16 158.4V86.6C6.5 83.3 0 74.3 0 64C0 52.6 8.1 42.7 19.3 40.5l200-40zM129.1 323.2l83.2 88.4c6.3 6.7 17 6.7 23.3 0l83.2-88.4c73.7 14.9 129.1 80 129.1 158.1c0 17-13.8 30.7-30.7 30.7H30.7C13.8 512 0 498.2 0 481.3c0-78.1 55.5-143.2 129.1-158.1z"]},Pv={prefix:"fas",iconName:"circle-half-stroke",icon:[512,512,[9680,"adjust"],"f042","M448 256c0-106-86-192-192-192V448c106 0 192-86 192-192zm64 0c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0S512 114.6 512 256z"]},HY=Pv,zY={prefix:"fas",iconName:"clapperboard",icon:[512,512,[],"e131","M448 32H361.9l-1 1-127 127h92.1l1-1L453.8 32.3c-1.9-.2-3.8-.3-5.8-.3zm64 128V96c0-15.1-5.3-29.1-14-40l-104 104H512zM294.1 32H201.9l-1 1L73.9 160h92.1l1-1 127-127zM64 32C28.7 32 0 60.7 0 96v64H6.1l1-1 127-127H64zM512 192H0V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V192z"]},Ev={prefix:"fas",iconName:"circle-radiation",icon:[512,512,[9762,"radiation-alt"],"f7ba","M256 448C150 448 64 362 64 256S150 64 256 64s192 86 192 192s-86 192-192 192zm0 64c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM200 256c0-20.7 11.3-38.8 28-48.5l-36-62.3c-8.8-15.3-28.7-20.8-42-9c-25.6 22.6-43.9 53.3-50.9 88.1C95.7 241.5 110.3 256 128 256l72 0zm28 48.5l-36 62.4c-8.8 15.3-3.6 35.2 13.1 40.8c16 5.4 33.1 8.3 50.9 8.3s34.9-2.9 50.9-8.3c16.7-5.6 21.9-25.5 13.1-40.8l-36-62.4c-8.2 4.8-17.8 7.5-28 7.5s-19.8-2.7-28-7.5zM312 256l72 0c17.7 0 32.3-14.5 28.8-31.8c-7-34.8-25.3-65.5-50.9-88.1c-13.2-11.7-33.1-6.3-42 9l-36 62.3c16.7 9.7 28 27.8 28 48.5zm-56 32c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z"]},gY=Ev,Ov={prefix:"fas",iconName:"baseball",icon:[512,512,[129358,9918,"baseball-ball"],"f433","M62.7 223.4c-4.8 .4-9.7 .6-14.7 .6c-15.6 0-30.8-2-45.2-5.9C19.2 107.1 107.1 19.2 218.1 2.8C222 17.2 224 32.4 224 48c0 4.9-.2 9.8-.6 14.7c-.7 8.8 5.8 16.5 14.6 17.3s16.5-5.8 17.3-14.6c.5-5.7 .7-11.5 .7-17.3c0-16.5-1.9-32.6-5.6-47.9c1.8 0 3.7-.1 5.6-.1C397.4 0 512 114.6 512 256c0 1.9 0 3.7-.1 5.6c-15.4-3.6-31.4-5.6-47.9-5.6c-5.8 0-11.6 .2-17.3 .7c-8.8 .7-15.4 8.5-14.6 17.3s8.5 15.4 17.3 14.6c4.8-.4 9.7-.6 14.7-.6c15.6 0 30.8 2 45.2 5.9C492.8 404.9 404.9 492.8 293.9 509.2C290 494.8 288 479.6 288 464c0-4.9 .2-9.8 .6-14.7c.7-8.8-5.8-16.5-14.6-17.3s-16.5 5.8-17.3 14.6c-.5 5.7-.7 11.5-.7 17.3c0 16.5 1.9 32.6 5.6 47.9c-1.8 0-3.7 .1-5.6 .1C114.6 512 0 397.4 0 256c0-1.9 0-3.7 .1-5.6C15.4 254.1 31.5 256 48 256c5.8 0 11.6-.2 17.3-.7c8.8-.7 15.4-8.5 14.6-17.3s-8.5-15.4-17.3-14.6zM121.3 208c-8 3.7-11.6 13.2-7.9 21.2s13.2 11.6 21.2 7.9c45.2-20.8 81.7-57.2 102.5-102.5c3.7-8 .2-17.5-7.9-21.2s-17.5-.2-21.2 7.9c-17.6 38.3-48.5 69.2-86.7 86.7zm277.2 74.7c-3.7-8-13.2-11.6-21.2-7.9c-45.2 20.8-81.7 57.2-102.5 102.5c-3.7 8-.2 17.5 7.9 21.2s17.5 .2 21.2-7.9c17.6-38.3 48.5-69.2 86.7-86.7c8-3.7 11.6-13.2 7.9-21.2z"]},VY=Ov,MY={prefix:"fas",iconName:"jet-fighter-up",icon:[512,512,[],"e518","M270.7 9.7C268.2 3.8 262.4 0 256 0s-12.2 3.8-14.7 9.7L197.2 112.6c-3.4 8-5.2 16.5-5.2 25.2v77l-144 84V280c0-13.3-10.7-24-24-24s-24 10.7-24 24v56 32 24c0 13.3 10.7 24 24 24s24-10.7 24-24v-8H192v32.7L133.5 468c-3.5 3-5.5 7.4-5.5 12v16c0 8.8 7.2 16 16 16h96V448c0-8.8 7.2-16 16-16s16 7.2 16 16v64h96c8.8 0 16-7.2 16-16V480c0-4.6-2-9-5.5-12L320 416.7V384H464v8c0 13.3 10.7 24 24 24s24-10.7 24-24V368 336 280c0-13.3-10.7-24-24-24s-24 10.7-24 24v18.8l-144-84v-77c0-8.7-1.8-17.2-5.2-25.2L270.7 9.7z"]},Rv={prefix:"fas",iconName:"diagram-project",icon:[576,512,["project-diagram"],"f542","M0 80C0 53.5 21.5 32 48 32h96c26.5 0 48 21.5 48 48V96H384V80c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H432c-26.5 0-48-21.5-48-48V160H192v16c0 1.7-.1 3.4-.3 5L272 288h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H272c-26.5 0-48-21.5-48-48V336c0-1.7 .1-3.4 .3-5L144 224H48c-26.5 0-48-21.5-48-48V80z"]},CY=Rv,LY={prefix:"fas",iconName:"copy",icon:[512,512,[],"f0c5","M224 0c-35.3 0-64 28.7-64 64V288c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H224zM64 160c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H288c35.3 0 64-28.7 64-64V384H288v64H64V224h64V160H64z"]},an={prefix:"fas",iconName:"volume-xmark",icon:[576,512,["volume-mute","volume-times"],"f6a9","M301.1 34.8C312.6 40 320 51.4 320 64V448c0 12.6-7.4 24-18.9 29.2s-25 3.1-34.4-5.3L131.8 352H64c-35.3 0-64-28.7-64-64V224c0-35.3 28.7-64 64-64h67.8L266.7 40.1c9.4-8.4 22.9-10.4 34.4-5.3zM425 167l55 55 55-55c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-55 55 55 55c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-55-55-55 55c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l55-55-55-55c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0z"]},yY=an,bY=an,xY={prefix:"fas",iconName:"hand-sparkles",icon:[640,512,[],"e05d","M320 0c17.7 0 32 14.3 32 32V240c0 8.8 7.2 16 16 16s16-7.2 16-16V64c0-17.7 14.3-32 32-32s32 14.3 32 32V240c0 8.8 7.2 16 16 16s16-7.2 16-16V128c0-17.7 14.3-32 32-32s32 14.3 32 32V323.1c-11.9 4.8-21.3 14.9-25 27.8l-8.9 31.2L478.9 391C460.6 396.3 448 413 448 432c0 18.9 12.5 35.6 30.6 40.9C448.4 497.4 409.9 512 368 512H348.8c-59.6 0-116.9-22.9-160-64L76.4 341c-16-15.2-16.6-40.6-1.4-56.6s40.6-16.6 56.6-1.4l60.5 57.6c0-1.5-.1-3.1-.1-4.6V64c0-17.7 14.3-32 32-32s32 14.3 32 32V240c0 8.8 7.2 16 16 16s16-7.2 16-16V32c0-17.7 14.3-32 32-32zm-7.3 326.6c-1.1-3.9-4.7-6.6-8.7-6.6s-7.6 2.7-8.7 6.6L288 352l-25.4 7.3c-3.9 1.1-6.6 4.7-6.6 8.7s2.7 7.6 6.6 8.7L288 384l7.3 25.4c1.1 3.9 4.7 6.6 8.7 6.6s7.6-2.7 8.7-6.6L320 384l25.4-7.3c3.9-1.1 6.6-4.7 6.6-8.7s-2.7-7.6-6.6-8.7L320 352l-7.3-25.4zM104 120l48.3 13.8c4.6 1.3 7.7 5.5 7.7 10.2s-3.1 8.9-7.7 10.2L104 168 90.2 216.3c-1.3 4.6-5.5 7.7-10.2 7.7s-8.9-3.1-10.2-7.7L56 168 7.7 154.2C3.1 152.9 0 148.7 0 144s3.1-8.9 7.7-10.2L56 120 69.8 71.7C71.1 67.1 75.3 64 80 64s8.9 3.1 10.2 7.7L104 120zM584 408l48.3 13.8c4.6 1.3 7.7 5.5 7.7 10.2s-3.1 8.9-7.7 10.2L584 456l-13.8 48.3c-1.3 4.6-5.5 7.7-10.2 7.7s-8.9-3.1-10.2-7.7L536 456l-48.3-13.8c-4.6-1.3-7.7-5.5-7.7-10.2s3.1-8.9 7.7-10.2L536 408l13.8-48.3c1.3-4.6 5.5-7.7 10.2-7.7s8.9 3.1 10.2 7.7L584 408z"]},Fv={prefix:"fas",iconName:"grip",icon:[448,512,["grip-horizontal"],"f58d","M128 136c0-22.1-17.9-40-40-40L40 96C17.9 96 0 113.9 0 136l0 48c0 22.1 17.9 40 40 40H88c22.1 0 40-17.9 40-40V136zm0 192c0-22.1-17.9-40-40-40H40c-22.1 0-40 17.9-40 40v48c0 22.1 17.9 40 40 40H88c22.1 0 40-17.9 40-40V328zm32-192v48c0 22.1 17.9 40 40 40h48c22.1 0 40-17.9 40-40V136c0-22.1-17.9-40-40-40l-48 0c-22.1 0-40 17.9-40 40zM288 328c0-22.1-17.9-40-40-40H200c-22.1 0-40 17.9-40 40l0 48c0 22.1 17.9 40 40 40h48c22.1 0 40-17.9 40-40V328zm32-192v48c0 22.1 17.9 40 40 40h48c22.1 0 40-17.9 40-40V136c0-22.1-17.9-40-40-40l-48 0c-22.1 0-40 17.9-40 40zM448 328c0-22.1-17.9-40-40-40H360c-22.1 0-40 17.9-40 40v48c0 22.1 17.9 40 40 40h48c22.1 0 40-17.9 40-40V328z"]},SY=Fv,Bv={prefix:"fas",iconName:"share-from-square",icon:[576,512,[61509,"share-square"],"f14d","M352 224H305.5c-45 0-81.5 36.5-81.5 81.5c0 22.3 10.3 34.3 19.2 40.5c6.8 4.7 12.8 12 12.8 20.3c0 9.8-8 17.8-17.8 17.8h-2.5c-2.4 0-4.8-.4-7.1-1.4C210.8 374.8 128 333.4 128 240c0-79.5 64.5-144 144-144h80V34.7C352 15.5 367.5 0 386.7 0c8.6 0 16.8 3.2 23.2 8.9L548.1 133.3c7.6 6.8 11.9 16.5 11.9 26.7s-4.3 19.9-11.9 26.7l-139 125.1c-5.9 5.3-13.5 8.2-21.4 8.2H384c-17.7 0-32-14.3-32-32V224zM80 96c-8.8 0-16 7.2-16 16V432c0 8.8 7.2 16 16 16H400c8.8 0 16-7.2 16-16V384c0-17.7 14.3-32 32-32s32 14.3 32 32v48c0 44.2-35.8 80-80 80H80c-44.2 0-80-35.8-80-80V112C0 67.8 35.8 32 80 32h48c17.7 0 32 14.3 32 32s-14.3 32-32 32H80z"]},wY=Bv,Dv={prefix:"fas",iconName:"child-combatant",icon:[576,512,["child-rifle"],"e4e0","M176 128c35.3 0 64-28.7 64-64s-28.7-64-64-64s-64 28.7-64 64s28.7 64 64 64zm-8 352V352h16V480c0 17.7 14.3 32 32 32s32-14.3 32-32V300.5L260.9 321c9.4 15 29.2 19.4 44.1 10s19.4-29.2 10-44.1l-51.7-82.1c-17.6-27.9-48.3-44.9-81.2-44.9H169.8c-33 0-63.7 16.9-81.2 44.9L36.9 287c-9.4 15-4.9 34.7 10 44.1s34.7 4.9 44.1-10L104 300.5V480c0 17.7 14.3 32 32 32s32-14.3 32-32zM448 0H432 416c-8.8 0-16 7.2-16 16s7.2 16 16 16V132.3c-9.6 5.5-16 15.9-16 27.7v32c-17.7 0-32 14.3-32 32V368c0 17.7 14.3 32 32 32h16v96c0 8.8 7.2 16 16 16h59.5c10.4 0 18-9.8 15.5-19.9L484 400h44c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H480V325.3l53.1-17.7c6.5-2.2 10.9-8.3 10.9-15.2V208c0-8.8-7.2-16-16-16H512c-8.8 0-16 7.2-16 16v56l-16 5.3V160c0-11.8-6.4-22.2-16-27.7V16c0-8.8-7.2-16-16-16z"]},NY=Dv,AY={prefix:"fas",iconName:"gun",icon:[576,512,[],"e19b","M528 56c0-13.3-10.7-24-24-24s-24 10.7-24 24v8H32C14.3 64 0 78.3 0 96V208c0 17.7 14.3 32 32 32H42c20.8 0 36.1 19.6 31 39.8L33 440.2c-2.4 9.6-.2 19.7 5.8 27.5S54.1 480 64 480h96c14.7 0 27.5-10 31-24.2L217 352H321.4c23.7 0 44.8-14.9 52.7-37.2L400.9 240H432c8.5 0 16.6-3.4 22.6-9.4L477.3 208H544c17.7 0 32-14.3 32-32V96c0-17.7-14.3-32-32-32H528V56zM321.4 304H229l16-64h105l-21 58.7c-1.1 3.2-4.2 5.3-7.5 5.3zM80 128H464c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16z"]},Iv={prefix:"fas",iconName:"square-phone",icon:[448,512,["phone-square"],"f098","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm90.7 96.7c9.7-2.6 19.9 2.3 23.7 11.6l20 48c3.4 8.2 1 17.6-5.8 23.2L168 231.7c16.6 35.2 45.1 63.7 80.3 80.3l20.2-24.7c5.6-6.8 15-9.2 23.2-5.8l48 20c9.3 3.9 14.2 14 11.6 23.7l-12 44C336.9 378 329 384 320 384C196.3 384 96 283.7 96 160c0-9 6-16.9 14.7-19.3l44-12z"]},_Y=Iv,Uv={prefix:"fas",iconName:"plus",icon:[448,512,[10133,61543,"add"],"2b","M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z"]},kY=Uv,TY={prefix:"fas",iconName:"expand",icon:[448,512,[],"f065","M32 32C14.3 32 0 46.3 0 64v96c0 17.7 14.3 32 32 32s32-14.3 32-32V96h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zM64 352c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7 14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H64V352zM320 32c-17.7 0-32 14.3-32 32s14.3 32 32 32h64v64c0 17.7 14.3 32 32 32s32-14.3 32-32V64c0-17.7-14.3-32-32-32H320zM448 352c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H320c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32V352z"]},PY={prefix:"fas",iconName:"computer",icon:[640,512,[],"e4e5","M384 96V320H64L64 96H384zM64 32C28.7 32 0 60.7 0 96V320c0 35.3 28.7 64 64 64H181.3l-10.7 32H96c-17.7 0-32 14.3-32 32s14.3 32 32 32H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H277.3l-10.7-32H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm464 0c-26.5 0-48 21.5-48 48V432c0 26.5 21.5 48 48 48h64c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H528zm16 64h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H544c-8.8 0-16-7.2-16-16s7.2-16 16-16zm-16 80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H544c-8.8 0-16-7.2-16-16zm32 224c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},f7={prefix:"fas",iconName:"xmark",icon:[320,512,[128473,10005,10006,10060,215,"close","multiply","remove","times"],"f00d","M310.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L160 210.7 54.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L114.7 256 9.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L160 301.3 265.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L205.3 256 310.6 150.6z"]},EY=f7,OY=f7,RY=f7,FY=f7,Wv={prefix:"fas",iconName:"arrows-up-down-left-right",icon:[512,512,["arrows"],"f047","M278.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l9.4-9.4V224H109.3l9.4-9.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-64 64c-12.5 12.5-12.5 32.8 0 45.3l64 64c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-9.4-9.4H224V402.7l-9.4-9.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l64 64c12.5 12.5 32.8 12.5 45.3 0l64-64c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-9.4 9.4V288H402.7l-9.4 9.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l64-64c12.5-12.5 12.5-32.8 0-45.3l-64-64c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l9.4 9.4H288V109.3l9.4 9.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-64-64z"]},BY=Wv,$v={prefix:"fas",iconName:"chalkboard-user",icon:[640,512,["chalkboard-teacher"],"f51c","M160 64c0-35.3 28.7-64 64-64H576c35.3 0 64 28.7 64 64V352c0 35.3-28.7 64-64 64H336.8c-11.8-25.5-29.9-47.5-52.4-64H384V320c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32v32h64V64L224 64v49.1C205.2 102.2 183.3 96 160 96V64zm0 256c-53 0-96-43-96-96s43-96 96-96s96 43 96 96s-43 96-96 96zm-26.7 32h53.3C260.3 352 320 411.7 320 485.3c0 14.7-11.9 26.7-26.7 26.7H26.7C11.9 512 0 500.1 0 485.3C0 411.7 59.7 352 133.3 352z"]},DY=$v,IY={prefix:"fas",iconName:"peso-sign",icon:[384,512,[],"e222","M64 32C46.3 32 32 46.3 32 64v64c-17.7 0-32 14.3-32 32s14.3 32 32 32l0 32c-17.7 0-32 14.3-32 32s14.3 32 32 32l0 64v96c0 17.7 14.3 32 32 32s32-14.3 32-32V384h80c68.4 0 127.7-39 156.8-96H352c17.7 0 32-14.3 32-32s-14.3-32-32-32h-.7c.5-5.3 .7-10.6 .7-16s-.2-10.7-.7-16h.7c17.7 0 32-14.3 32-32s-14.3-32-32-32H332.8C303.7 71 244.4 32 176 32H64zm190.4 96H96V96h80c30.5 0 58.2 12.2 78.4 32zM96 192H286.9c.7 5.2 1.1 10.6 1.1 16s-.4 10.8-1.1 16H96V192zm158.4 96c-20.2 19.8-47.9 32-78.4 32H96V288H254.4z"]},UY={prefix:"fas",iconName:"building-shield",icon:[576,512,[],"e4d8","M0 48C0 21.5 21.5 0 48 0H336c26.5 0 48 21.5 48 48V207l-42.4 17H304 272c-8.8 0-16 7.2-16 16v32 24.2V304c0 .9 .1 1.7 .2 2.6c2.3 58.1 24.1 144.8 98.7 201.5c-5.8 2.5-12.2 3.9-18.9 3.9H240V432c0-26.5-21.5-48-48-48s-48 21.5-48 48v80H48c-26.5 0-48-21.5-48-48V48zM80 224c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H80zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H176c-8.8 0-16 7.2-16 16zM64 112v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zM176 96c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H176zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16zM423.1 225.7c5.7-2.3 12.1-2.3 17.8 0l120 48C570 277.4 576 286.2 576 296c0 63.3-25.9 168.8-134.8 214.2c-5.9 2.5-12.6 2.5-18.5 0C313.9 464.8 288 359.3 288 296c0-9.8 6-18.6 15.1-22.3l120-48zM527.4 312L432 273.8V461.7c68.2-33 91.5-99 95.4-149.7z"]},WY={prefix:"fas",iconName:"baby",icon:[448,512,[],"f77c","M296 88c0 39.8-32.2 72-72 72s-72-32.2-72-72s32.2-72 72-72s72 32.2 72 72zM39.7 144.5c13-17.9 38-21.8 55.9-8.8L131.8 162c26.8 19.5 59.1 30 92.2 30s65.4-10.5 92.2-30l36.2-26.4c17.9-13 42.9-9 55.9 8.8s9 42.9-8.8 55.9l-36.2 26.4c-13.6 9.9-28.1 18.2-43.3 25V288H128V251.7c-15.2-6.7-29.7-15.1-43.3-25L48.5 200.3c-17.9-13-21.8-38-8.8-55.9zm89.8 184.8l60.6 53-26 37.2 24.3 24.3c15.6 15.6 15.6 40.9 0 56.6s-40.9 15.6-56.6 0l-48-48C70 438.6 68.1 417 79.2 401.1l50.2-71.8zm128.5 53l60.6-53 50.2 71.8c11.1 15.9 9.2 37.5-4.5 51.2l-48 48c-15.6 15.6-40.9 15.6-56.6 0s-15.6-40.9 0-56.6L284 419.4l-26-37.2z"]},$Y={prefix:"fas",iconName:"users-line",icon:[640,512,[],"e592","M211.2 96c0-35.3-28.7-64-64-64s-64 28.7-64 64s28.7 64 64 64s64-28.7 64-64zM32 256c0 17.7 14.3 32 32 32h85.6c10.1-39.4 38.6-71.5 75.8-86.6c-9.7-6-21.2-9.4-33.4-9.4H96c-35.3 0-64 28.7-64 64zm461.6 32H576c17.7 0 32-14.3 32-32c0-35.3-28.7-64-64-64H448c-11.7 0-22.7 3.1-32.1 8.6c38.1 14.8 67.4 47.3 77.7 87.4zM391.2 226.4c-6.9-1.6-14.2-2.4-21.6-2.4h-96c-8.5 0-16.7 1.1-24.5 3.1c-30.8 8.1-55.6 31.1-66.1 60.9c-3.5 10-5.5 20.8-5.5 32c0 17.7 14.3 32 32 32h224c17.7 0 32-14.3 32-32c0-11.2-1.9-22-5.5-32c-10.8-30.7-36.8-54.2-68.9-61.6zM563.2 96c0-35.3-28.7-64-64-64s-64 28.7-64 64s28.7 64 64 64s64-28.7 64-64zM321.6 192c44.2 0 80-35.8 80-80s-35.8-80-80-80s-80 35.8-80 80s35.8 80 80 80zM32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z"]},qv={prefix:"fas",iconName:"quote-left",icon:[448,512,[8220,"quote-left-alt"],"f10d","M0 216C0 149.7 53.7 96 120 96h8c17.7 0 32 14.3 32 32s-14.3 32-32 32h-8c-30.9 0-56 25.1-56 56v8h64c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V320 288 216zm256 0c0-66.3 53.7-120 120-120h8c17.7 0 32 14.3 32 32s-14.3 32-32 32h-8c-30.9 0-56 25.1-56 56v8h64c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H320c-35.3 0-64-28.7-64-64V320 288 216z"]},qY=qv,GY={prefix:"fas",iconName:"tractor",icon:[640,512,[128668],"f722","M96 64c0-35.3 28.7-64 64-64H266.3c26.2 0 49.7 15.9 59.4 40.2L373.7 160H480V126.2c0-24.8 5.8-49.3 16.9-71.6l2.5-5c7.9-15.8 27.1-22.2 42.9-14.3s22.2 27.1 14.3 42.9l-2.5 5c-6.7 13.3-10.1 28-10.1 42.9V160h56c22.1 0 40 17.9 40 40v45.4c0 16.5-8.5 31.9-22.6 40.7l-43.3 27.1c-14.2-5.9-29.8-9.2-46.1-9.2c-39.3 0-74.1 18.9-96 48H352c0 17.7-14.3 32-32 32h-8.2c-1.7 4.8-3.7 9.5-5.8 14.1l5.8 5.8c12.5 12.5 12.5 32.8 0 45.3l-22.6 22.6c-12.5 12.5-32.8 12.5-45.3 0l-5.8-5.8c-4.6 2.2-9.3 4.1-14.1 5.8V480c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32v-8.2c-4.8-1.7-9.5-3.7-14.1-5.8l-5.8 5.8c-12.5 12.5-32.8 12.5-45.3 0L40.2 449.1c-12.5-12.5-12.5-32.8 0-45.3l5.8-5.8c-2.2-4.6-4.1-9.3-5.8-14.1H32c-17.7 0-32-14.3-32-32V320c0-17.7 14.3-32 32-32h8.2c1.7-4.8 3.7-9.5 5.8-14.1l-5.8-5.8c-12.5-12.5-12.5-32.8 0-45.3l22.6-22.6c9-9 21.9-11.5 33.1-7.6V192 160 64zm170.3 0H160v96h32H304.7L266.3 64zM176 256c-44.2 0-80 35.8-80 80s35.8 80 80 80s80-35.8 80-80s-35.8-80-80-80zM528 448c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24zm0 64c-48.6 0-88-39.4-88-88c0-29.8 14.8-56.1 37.4-72c14.3-10.1 31.8-16 50.6-16c2.7 0 5.3 .1 7.9 .3c44.9 4 80.1 41.7 80.1 87.7c0 48.6-39.4 88-88 88z"]},Gv={prefix:"fas",iconName:"trash-arrow-up",icon:[448,512,["trash-restore"],"f829","M163.8 0H284.2c12.1 0 23.2 6.8 28.6 17.7L320 32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64S14.3 32 32 32h96l7.2-14.3C140.6 6.8 151.7 0 163.8 0zM32 128H416L394.8 467c-1.6 25.3-22.6 45-47.9 45H101.1c-25.3 0-46.3-19.7-47.9-45L32 128zm192 64c-6.4 0-12.5 2.5-17 7l-80 80c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l39-39V408c0 13.3 10.7 24 24 24s24-10.7 24-24V273.9l39 39c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-80-80c-4.5-4.5-10.6-7-17-7z"]},jY=Gv,KY={prefix:"fas",iconName:"arrow-down-up-lock",icon:[640,512,[],"e4b0","M150.6 502.6l96-96c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L160 402.7V288H416V272c0-17.2 3.9-33.5 10.8-48H352V109.3l41.4 41.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-96-96c-6-6-14.1-9.4-22.6-9.4s-16.6 3.4-22.6 9.4l-96 96c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L288 109.3V224l-128 0H96l-64 0c-17.7 0-32 14.3-32 32s14.3 32 32 32H96V402.7L54.6 361.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0zM160 192V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V192h64zM288 320V448c0 17.7 14.3 32 32 32s32-14.3 32-32V320H288zm240-80c17.7 0 32 14.3 32 32v48H496V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z"]},XY={prefix:"fas",iconName:"lines-leaning",icon:[448,512,[],"e51e","M222.4 74.1c5.6-16.8-3.5-34.9-20.2-40.5s-34.9 3.5-40.5 20.2l-128 384c-5.6 16.8 3.5 34.9 20.2 40.5s34.9-3.5 40.5-20.2l128-384zm70.9-41.7c-17.4-2.9-33.9 8.9-36.8 26.3l-64 384c-2.9 17.4 8.9 33.9 26.3 36.8s33.9-8.9 36.8-26.3l64-384c2.9-17.4-8.9-33.9-26.3-36.8zM384 32c-17.7 0-32 14.3-32 32V448c0 17.7 14.3 32 32 32s32-14.3 32-32V64c0-17.7-14.3-32-32-32z"]},YY={prefix:"fas",iconName:"ruler-combined",icon:[512,512,[],"f546","M.2 468.9C2.7 493.1 23.1 512 48 512l96 0 320 0c26.5 0 48-21.5 48-48l0-96c0-26.5-21.5-48-48-48l-48 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-80 0c-8.8 0-16-7.2-16-16s7.2-16 16-16l80 0 0-64-80 0c-8.8 0-16-7.2-16-16s7.2-16 16-16l80 0 0-64-80 0c-8.8 0-16-7.2-16-16s7.2-16 16-16l80 0 0-48c0-26.5-21.5-48-48-48L48 0C21.5 0 0 21.5 0 48L0 368l0 96c0 1.7 .1 3.3 .2 4.9z"]},JY={prefix:"fas",iconName:"copyright",icon:[512,512,[169],"f1f9","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM199.4 312.6c31.2 31.2 81.9 31.2 113.1 0c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9c-50 50-131 50-181 0s-50-131 0-181s131-50 181 0c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0c-31.2-31.2-81.9-31.2-113.1 0s-31.2 81.9 0 113.1z"]},QY={prefix:"fas",iconName:"equals",icon:[448,512,[62764],"3d","M48 128c-17.7 0-32 14.3-32 32s14.3 32 32 32H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H48zm0 192c-17.7 0-32 14.3-32 32s14.3 32 32 32H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H48z"]},ZY={prefix:"fas",iconName:"blender",icon:[512,512,[],"f517","M0 64C0 28.7 28.7 0 64 0h64 32H470.1c21.1 0 36.4 20.1 30.9 40.4L494.5 64H336c-8.8 0-16 7.2-16 16s7.2 16 16 16H485.8l-17.5 64H336c-8.8 0-16 7.2-16 16s7.2 16 16 16H459.6l-17.5 64H336c-8.8 0-16 7.2-16 16s7.2 16 16 16h97.5L416 352H160l-8.7-96H64c-35.3 0-64-28.7-64-64V64zM145.5 192L133.8 64H64V192h81.5zM144 384H432c26.5 0 48 21.5 48 48v32c0 26.5-21.5 48-48 48H144c-26.5 0-48-21.5-48-48V432c0-26.5 21.5-48 48-48zm144 96c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zM0 64C0 28.7 28.7 0 64 0h64 32H470.1c21.1 0 36.4 20.1 30.9 40.4L494.5 64H336c-8.8 0-16 7.2-16 16s7.2 16 16 16H485.8l-17.5 64H336c-8.8 0-16 7.2-16 16s7.2 16 16 16H459.6l-17.5 64H336c-8.8 0-16 7.2-16 16s7.2 16 16 16h97.5L416 352H160l-8.7-96H64c-35.3 0-64-28.7-64-64V64zM145.5 192L133.8 64H64V192h81.5zM144 384H432c26.5 0 48 21.5 48 48v32c0 26.5-21.5 48-48 48H144c-26.5 0-48-21.5-48-48V432c0-26.5 21.5-48 48-48zm144 96c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z"]},cJ={prefix:"fas",iconName:"teeth",icon:[576,512,[],"f62e","M0 128C0 75 43 32 96 32H480c53 0 96 43 96 96V384c0 53-43 96-96 96H96c-53 0-96-43-96-96V128zm176 48v56c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V176c0-26.5-21.5-48-48-48s-48 21.5-48 48zm176-48c-26.5 0-48 21.5-48 48v56c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V176c0-26.5-21.5-48-48-48zM48 208v24c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V208c0-26.5-21.5-48-48-48s-48 21.5-48 48zM96 384c26.5 0 48-21.5 48-48V312c0-13.3-10.7-24-24-24H72c-13.3 0-24 10.7-24 24v24c0 26.5 21.5 48 48 48zm80-48c0 26.5 21.5 48 48 48s48-21.5 48-48V312c0-13.3-10.7-24-24-24H200c-13.3 0-24 10.7-24 24v24zm176 48c26.5 0 48-21.5 48-48V312c0-13.3-10.7-24-24-24H328c-13.3 0-24 10.7-24 24v24c0 26.5 21.5 48 48 48zm80-176v24c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V208c0-26.5-21.5-48-48-48s-48 21.5-48 48zm48 176c26.5 0 48-21.5 48-48V312c0-13.3-10.7-24-24-24H456c-13.3 0-24 10.7-24 24v24c0 26.5 21.5 48 48 48z"]},l7={prefix:"fas",iconName:"shekel-sign",icon:[448,512,[8362,"ils","shekel","sheqel","sheqel-sign"],"f20b","M32 32C14.3 32 0 46.3 0 64V448c0 17.7 14.3 32 32 32s32-14.3 32-32V96H192c35.3 0 64 28.7 64 64V320c0 17.7 14.3 32 32 32s32-14.3 32-32V160c0-70.7-57.3-128-128-128H32zM320 480c70.7 0 128-57.3 128-128V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V352c0 35.3-28.7 64-64 64H192V192c0-17.7-14.3-32-32-32s-32 14.3-32 32V448c0 17.7 14.3 32 32 32H320z"]},eJ=l7,rJ=l7,aJ=l7,nJ=l7,tJ={prefix:"fas",iconName:"map",icon:[576,512,[128506,62072],"f279","M384 476.1L192 421.2V35.9L384 90.8V476.1zm32-1.2V88.4L543.1 37.5c15.8-6.3 32.9 5.3 32.9 22.3V394.6c0 9.8-6 18.6-15.1 22.3L416 474.8zM15.1 95.1L160 37.2V423.6L32.9 474.5C17.1 480.8 0 469.2 0 452.2V117.4c0-9.8 6-18.6 15.1-22.3z"]},sJ={prefix:"fas",iconName:"rocket",icon:[512,512,[],"f135","M156.6 384.9L125.7 354c-8.5-8.5-11.5-20.8-7.7-32.2c3-8.9 7-20.5 11.8-33.8L24 288c-8.6 0-16.6-4.6-20.9-12.1s-4.2-16.7 .2-24.1l52.5-88.5c13-21.9 36.5-35.3 61.9-35.3l82.3 0c2.4-4 4.8-7.7 7.2-11.3C289.1-4.1 411.1-8.1 483.9 5.3c11.6 2.1 20.6 11.2 22.8 22.8c13.4 72.9 9.3 194.8-111.4 276.7c-3.5 2.4-7.3 4.8-11.3 7.2v82.3c0 25.4-13.4 49-35.3 61.9l-88.5 52.5c-7.4 4.4-16.6 4.5-24.1 .2s-12.1-12.2-12.1-20.9V380.8c-14.1 4.9-26.4 8.9-35.7 11.9c-11.2 3.6-23.4 .5-31.8-7.8zM384 168c22.1 0 40-17.9 40-40s-17.9-40-40-40s-40 17.9-40 40s17.9 40 40 40z"]},jv={prefix:"fas",iconName:"photo-film",icon:[640,512,["photo-video"],"f87c","M256 0H576c35.3 0 64 28.7 64 64V288c0 35.3-28.7 64-64 64H256c-35.3 0-64-28.7-64-64V64c0-35.3 28.7-64 64-64zM476 106.7C471.5 100 464 96 456 96s-15.5 4-20 10.7l-56 84L362.7 169c-4.6-5.7-11.5-9-18.7-9s-14.2 3.3-18.7 9l-64 80c-5.8 7.2-6.9 17.1-2.9 25.4s12.4 13.6 21.6 13.6h80 48H552c8.9 0 17-4.9 21.2-12.7s3.7-17.3-1.2-24.6l-96-144zM336 96c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM64 128h96V384v32c0 17.7 14.3 32 32 32H320c17.7 0 32-14.3 32-32V384H512v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192c0-35.3 28.7-64 64-64zm8 64c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16H88c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16H72zm0 104c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16H88c8.8 0 16-7.2 16-16V312c0-8.8-7.2-16-16-16H72zm0 104c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16H88c8.8 0 16-7.2 16-16V416c0-8.8-7.2-16-16-16H72zm336 16v16c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16V416c0-8.8-7.2-16-16-16H424c-8.8 0-16 7.2-16 16z"]},iJ=jv,oJ={prefix:"fas",iconName:"folder-minus",icon:[512,512,[],"f65d","M448 480H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H181.5c17 0 33.3 6.7 45.3 18.7l26.5 26.5c12 12 28.3 18.7 45.3 18.7H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64zM184 272c-13.3 0-24 10.7-24 24s10.7 24 24 24H328c13.3 0 24-10.7 24-24s-10.7-24-24-24H184z"]},fJ={prefix:"fas",iconName:"store",icon:[576,512,[],"f54e","M547.6 103.8L490.3 13.1C485.2 5 476.1 0 466.4 0H109.6C99.9 0 90.8 5 85.7 13.1L28.3 103.8c-29.6 46.8-3.4 111.9 51.9 119.4c4 .5 8.1 .8 12.1 .8c26.1 0 49.3-11.4 65.2-29c15.9 17.6 39.1 29 65.2 29c26.1 0 49.3-11.4 65.2-29c15.9 17.6 39.1 29 65.2 29c26.2 0 49.3-11.4 65.2-29c16 17.6 39.1 29 65.2 29c4.1 0 8.1-.3 12.1-.8c55.5-7.4 81.8-72.5 52.1-119.4zM499.7 254.9l-.1 0c-5.3 .7-10.7 1.1-16.2 1.1c-12.4 0-24.3-1.9-35.4-5.3V384H128V250.6c-11.2 3.5-23.2 5.4-35.6 5.4c-5.5 0-11-.4-16.3-1.1l-.1 0c-4.1-.6-8.1-1.3-12-2.3V384v64c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V384 252.6c-4 1-8 1.8-12.3 2.3z"]},lJ={prefix:"fas",iconName:"arrow-trend-up",icon:[576,512,[],"e098","M384 160c-17.7 0-32-14.3-32-32s14.3-32 32-32H544c17.7 0 32 14.3 32 32V288c0 17.7-14.3 32-32 32s-32-14.3-32-32V205.3L342.6 374.6c-12.5 12.5-32.8 12.5-45.3 0L192 269.3 54.6 406.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l160-160c12.5-12.5 32.8-12.5 45.3 0L320 306.7 466.7 160H384z"]},uJ={prefix:"fas",iconName:"plug-circle-minus",icon:[576,512,[],"e55e","M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8c12.3-2.5 24.1-6.4 35.1-11.5c-2.1-10.8-3.1-21.9-3.1-33.3c0-80.3 53.8-148 127.3-169.2c.5-2.2 .7-4.5 .7-6.8c0-17.7-14.3-32-32-32H32zM576 368c0-79.5-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144s144-64.5 144-144zm-64 0c0 8.8-7.2 16-16 16l-128 0c-8.8 0-16-7.2-16-16s7.2-16 16-16H496c8.8 0 16 7.2 16 16z"]},Kv={prefix:"fas",iconName:"sign-hanging",icon:[512,512,["sign"],"f4d9","M96 0c17.7 0 32 14.3 32 32V64l352 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-352 0V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V128H32C14.3 128 0 113.7 0 96S14.3 64 32 64H64V32C64 14.3 78.3 0 96 0zm96 160H448c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V192c0-17.7 14.3-32 32-32z"]},hJ=Kv,pJ={prefix:"fas",iconName:"bezier-curve",icon:[640,512,[],"f55b","M296 136V88h48v48H296zM288 32c-26.5 0-48 21.5-48 48v4H121.6C111.2 62.7 89.3 48 64 48C28.7 48 0 76.7 0 112s28.7 64 64 64c25.3 0 47.2-14.7 57.6-36h66.9c-58.9 39.6-98.9 105-104 180H80c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h64c26.5 0 48-21.5 48-48V368c0-26.5-21.5-48-48-48h-3.3c5.9-67 48.5-123.4 107.5-149.1c8.6 12.7 23.2 21.1 39.8 21.1h64c16.6 0 31.1-8.4 39.8-21.1c59 25.7 101.6 82.1 107.5 149.1H496c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h64c26.5 0 48-21.5 48-48V368c0-26.5-21.5-48-48-48h-4.5c-5-75-45.1-140.4-104-180h66.9c10.4 21.3 32.3 36 57.6 36c35.3 0 64-28.7 64-64s-28.7-64-64-64c-25.3 0-47.2 14.7-57.6 36H400V80c0-26.5-21.5-48-48-48H288zM88 376h48v48H88V376zm416 48V376h48v48H504z"]},mJ={prefix:"fas",iconName:"bell-slash",icon:[640,512,[128277,61943],"f1f6","M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-87.5-68.6c.5-1.7 .7-3.5 .7-5.4c0-27.6-11-54.1-30.5-73.7L512 320c-20.5-20.5-32-48.3-32-77.3V208c0-77.4-55-142-128-156.8V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V51.2c-42.6 8.6-79 34.2-102 69.3L38.8 5.1zM160 242.7c0 29-11.5 56.8-32 77.3l-1.5 1.5C107 341 96 367.5 96 395.2c0 11.5 9.3 20.8 20.8 20.8H406.2L160 222.1v20.7zM384 448H320 256c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7s18.7-28.3 18.7-45.3z"]},Xv={prefix:"fas",iconName:"tablet",icon:[448,512,["tablet-android"],"f3fb","M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM176 432h96c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16s7.2-16 16-16z"]},vJ=Xv,dJ={prefix:"fas",iconName:"school-flag",icon:[576,512,[],"e56e","M288 0H400c8.8 0 16 7.2 16 16V64c0 8.8-7.2 16-16 16H320V95.5L410.3 160H512c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H336V400c0-26.5-21.5-48-48-48s-48 21.5-48 48V512H64c-35.3 0-64-28.7-64-64V224c0-35.3 28.7-64 64-64H165.7L256 95.5V32c0-17.7 14.3-32 32-32zm48 240c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM80 224c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H80zm368 16v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H464c-8.8 0-16 7.2-16 16zM80 352c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H80zm384 0c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H464z"]},HJ={prefix:"fas",iconName:"fill",icon:[576,512,[],"f575","M118.6 9.4C106.1-3.1 85.9-3.1 73.4 9.4s-12.5 32.8 0 45.3L154.7 136 62.6 228.1c-37.5 37.5-37.5 98.3 0 135.8L180.1 481.4c37.5 37.5 98.3 37.5 135.8 0L506.3 290.9c28.1-28.1 28.1-73.7 0-101.8L354.9 37.7c-28.1-28.1-73.7-28.1-101.8 0L200 90.7 118.6 9.4zM200 181.3l49.4 49.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L245.3 136l53.1-53.1c3.1-3.1 8.2-3.1 11.3 0L461.1 234.3c3.1 3.1 3.1 8.2 0 11.3L418.7 288H99.5c1.4-5.4 4.2-10.4 8.4-14.6L200 181.3z"]},zJ={prefix:"fas",iconName:"angle-up",icon:[448,512,[8963],"f106","M201.4 137.4c12.5-12.5 32.8-12.5 45.3 0l160 160c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L224 205.3 86.6 342.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l160-160z"]},gJ={prefix:"fas",iconName:"drumstick-bite",icon:[512,512,[],"f6d7","M160 265.2c0 8.5-3.4 16.6-9.4 22.6l-26.8 26.8c-12.3 12.3-32.5 11.4-49.4 7.2C69.8 320.6 65 320 60 320c-33.1 0-60 26.9-60 60s26.9 60 60 60c6.3 0 12 5.7 12 12c0 33.1 26.9 60 60 60s60-26.9 60-60c0-5-.6-9.8-1.8-14.5c-4.2-16.9-5.2-37.1 7.2-49.4l26.8-26.8c6-6 14.1-9.4 22.6-9.4H336c6.3 0 12.4-.3 18.5-1c11.9-1.2 16.4-15.5 10.8-26c-8.5-15.8-13.3-33.8-13.3-53c0-61.9 50.1-112 112-112c8 0 15.7 .8 23.2 2.4c11.7 2.5 24.1-5.9 22-17.6C494.5 62.5 422.5 0 336 0C238.8 0 160 78.8 160 176v89.2z"]},VJ={prefix:"fas",iconName:"holly-berry",icon:[512,512,[],"f7aa","M256 96c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zm-80 96c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zM276.8 383.8c1 .1 2.1 .2 3.2 .2c39.8 0 72 32.2 72 72v22.7c0 16.4 16 27.9 31.6 22.8l12.8-4.3c18-6 37.3-6.5 55.6-1.5l19.4 5.3c17.9 4.9 34.4-11.6 29.5-29.5L495.6 452c-5-18.3-4.4-37.6 1.5-55.6l4.3-12.8c5.2-15.5-6.4-31.6-22.8-31.6c-34.6 0-62.7-28.1-62.7-62.7v-32c0-16.4-16-27.9-31.6-22.8l-12.8 4.3c-18 6-37.3 6.5-55.6 1.5l-29.6-8.1c-2.9-.8-5.9-1-8.7-.7c4.2 9.7 5.8 20.8 3.7 32.3L275 298.7c-1.5 8.4-1.4 17 .5 25.3l5.3 23.9c2.8 12.7 1.1 25.2-4 35.9zM127.6 234.5c-15.5-5.2-31.6 6.4-31.6 22.8v32C96 323.9 67.9 352 33.3 352c-16.4 0-27.9 16-22.8 31.6l4.3 12.8c6 18 6.5 37.3 1.5 55.6l-5.3 19.4C6.2 489.4 22.6 505.8 40.5 501L60 495.6c18.3-5 37.6-4.5 55.6 1.5l12.8 4.3c15.5 5.2 31.6-6.4 31.6-22.8v-32c0-34.6 28.1-62.7 62.7-62.7c16.4 0 27.9-16 22.8-31.6l-4.3-12.8c-6-18-6.5-37.3-1.5-55.6l5.3-19.4c4.9-17.9-11.6-34.4-29.5-29.5L196 240.4c-18.3 5-37.6 4.4-55.6-1.5l-12.8-4.3zM384 144c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48z"]},MJ={prefix:"fas",iconName:"chevron-left",icon:[384,512,[9001],"f053","M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l192 192c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 278.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-192 192z"]},CJ={prefix:"fas",iconName:"bacteria",icon:[640,512,[],"e059","M304.9 .7c-9.6-2.7-19.5 2.8-22.3 12.4l-3.1 11c-7.4-.3-14.9 .4-22.4 2.1c-9 2.1-17.8 4.4-26.2 7l-4.4-10.3c-3.9-9.1-14.5-13.4-23.6-9.5s-13.4 14.5-9.5 23.6l3.6 8.5c-16.5 7.1-31.5 15.1-45.2 23.9L147 62c-5.5-8.3-16.7-10.5-25-5s-10.5 16.7-5 25l5.8 8.7c-13.5 11.2-25.3 23.1-35.5 35.3l-10.1-8.1c-7.8-6.2-19.1-5-25.3 2.8s-5 19.1 2.8 25.3L66 155c-1.6 2.4-3.1 4.8-4.5 7.3c-7.1 11.8-12.8 23.2-17.4 34l-7.4-3c-9.2-3.7-19.7 .8-23.4 10s.8 19.7 10 23.4l8.7 3.5c-.2 .8-.4 1.6-.7 2.3c-2.6 9.4-4.2 17.4-5.3 23.5c-.5 3.1-.9 5.7-1.2 7.7c-.1 1-.2 2-.3 2.7l-.1 1.1 0 .5 0 .2 0 .1c0 0 0 .1 29.4 2.8l0 0-29.4-2.7c-.3 3.8-.4 7.5-.3 11.2l-11 3.1C3.5 285.4-2 295.4 .7 304.9s12.7 15.1 22.3 12.4l10.3-2.9c8 15.5 20.7 28.3 36.4 36.4L66.7 361c-2.7 9.6 2.8 19.5 12.4 22.3s19.5-2.8 22.3-12.4l3.1-11c17.8 .8 34.7-4.1 48.8-13.2l8 8c7 7 18.4 7 25.5 0s7-18.4 0-25.5l-8-8c6.8-10.6 11.3-22.9 12.7-36.2l.1-.6c.2-1.3 .7-3.8 1.7-7.4l.2-.6 9.4 4c9.1 3.9 19.7-.3 23.6-9.5s-.3-19.7-9.5-23.6l-8.5-3.6c7.5-11.1 18.7-23.7 36.5-34.5l1.6 5.6c2.7 9.6 12.7 15.1 22.3 12.4s15.1-12.7 12.4-22.3l-3-10.6c5.2-1.7 10.7-3.2 16.6-4.6c9.7-2.2 18.5-6 26.4-11.1l8 8c7 7 18.4 7 25.5 0s7-18.4 0-25.5l-8-8c9.1-14.3 14-31.2 13.2-48.8l11-3.1c9.6-2.7 15.1-12.7 12.4-22.3S370.6 64 361 66.7l-10.3 2.9c-8.1-15.9-21-28.5-36.4-36.4l2.9-10.3c2.7-9.6-2.8-19.5-12.4-22.3zM106.2 275.8l-37.1-3.4 0 0 37.1 3.4zM128 256c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm96-112c0 8.8-7.2 16-16 16s-16-7.2-16-16s7.2-16 16-16s16 7.2 16 16zm98.7 345c-2.7 9.6 2.8 19.5 12.4 22.3s19.5-2.8 22.2-12.4l3.1-11c7.4 .3 14.9-.4 22.4-2.1c9-2.1 17.8-4.4 26.2-7l4.4 10.3c3.9 9.1 14.5 13.4 23.6 9.5s13.4-14.5 9.5-23.6l-3.6-8.5c16.5-7.1 31.5-15.1 45.2-23.9L493 450c5.5 8.3 16.7 10.5 25 5s10.5-16.7 5-25l-5.8-8.7c13.5-11.2 25.3-23.1 35.5-35.3l10.1 8.1c7.8 6.2 19.1 5 25.3-2.8s5-19.1-2.8-25.3L574 357c1.6-2.4 3.1-4.8 4.5-7.3c7.1-11.8 12.8-23.2 17.4-34l7.4 3c9.2 3.7 19.7-.8 23.4-10s-.8-19.7-10-23.4l-8.7-3.5c.2-.8 .4-1.6 .7-2.3c2.6-9.4 4.2-17.4 5.3-23.5c.5-3.1 .9-5.7 1.2-7.7c.1-1 .2-2 .3-2.7l.1-1.1 0-.5 0-.2 0-.1c0 0 0-.1-29.4-2.8l0 0 29.4 2.7c.3-3.8 .4-7.5 .3-11.2l11-3.1c9.6-2.7 15.1-12.7 12.4-22.3s-12.7-15.1-22.3-12.4l-10.3 2.9c-8-15.5-20.7-28.3-36.4-36.4l2.9-10.3c2.7-9.6-2.8-19.5-12.4-22.3s-19.5 2.8-22.2 12.4l-3.1 11c-17.8-.8-34.7 4.1-48.8 13.2l-8-8c-7-7-18.4-7-25.5 0s-7 18.4 0 25.5l8 8c-6.8 10.6-11.3 22.9-12.7 36.2l-.1 .6c-.2 1.3-.7 3.8-1.7 7.4l-.2 .6-9.4-4c-9.1-3.9-19.7 .3-23.6 9.5s.3 19.7 9.5 23.6l8.5 3.6c-7.5 11.1-18.7 23.7-36.5 34.5l-1.6-5.6c-2.7-9.6-12.7-15.1-22.3-12.4s-15.1 12.7-12.4 22.3l3 10.6c-5.2 1.7-10.7 3.2-16.6 4.6c-9.7 2.2-18.5 6-26.4 11.1l-8-8c-7-7-18.4-7-25.5 0s-7 18.4 0 25.5l8 8c-9.1 14.2-14 31.2-13.2 48.8l-11 3.1c-9.6 2.7-15.1 12.7-12.4 22.2s12.7 15.1 22.3 12.4l10.3-2.9c8.1 15.9 21 28.5 36.4 36.4l-3 10.3zM570.9 239.5l0 0-37.1-3.4 37.1 3.4zM384 384c0-17.7 14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32s-32-14.3-32-32z"]},LJ={prefix:"fas",iconName:"hand-lizard",icon:[512,512,[],"f258","M0 112C0 85.5 21.5 64 48 64H160h80 46.5c36.8 0 71.2 18 92.1 48.2l113.5 164c13 18.7 19.9 41 19.9 63.8v12 16 48c0 17.7-14.3 32-32 32H384c-17.7 0-32-14.3-32-32V402.2L273.9 352H240 160 112c-26.5 0-48-21.5-48-48s21.5-48 48-48h48 80c26.5 0 48-21.5 48-48s-21.5-48-48-48H160 48c-26.5 0-48-21.5-48-48z"]},yJ={prefix:"fas",iconName:"notdef",icon:[384,512,[],"e1fe","M64 390.3L153.5 256 64 121.7V390.3zM102.5 448H281.5L192 313.7 102.5 448zm128-192L320 390.3V121.7L230.5 256zM281.5 64H102.5L192 198.3 281.5 64zM0 48C0 21.5 21.5 0 48 0H336c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48z"]},bJ={prefix:"fas",iconName:"disease",icon:[512,512,[],"f7fa","M238.5 53.1C251 39.6 268.6 32 287 32c28.9 0 54.5 18.7 63.2 46.3L366 128.6c7.3 23 25.2 41 48.2 48.3l62.2 19.9c21.2 6.8 35.6 26.5 35.6 48.7c0 17.5-8.9 33.7-23.6 43.1l-85.9 54.8c-10.6 6.8-16.6 18.8-15.7 31.3l2.5 33.9c2.8 38.5-27.7 71.4-66.4 71.4c-13.6 0-26.9-4.2-38.1-12l-48.2-33.6c-14.8-10.3-32.3-15.8-50.3-15.8H170.2c-4.9 0-9.9 .4-14.8 1.2L83.9 432.1c-21.3 3.6-42.8-5.7-54.6-23.9c-11.8-18.1-11.8-41.4 0-59.4L56.5 307c4.9-7.5 7.5-16.3 7.5-25.3c0-9.9-3.2-19.5-9-27.4L11.3 194.6C-6.5 170.3-.7 136.2 24.2 119.2c9.7-6.6 21.2-9.8 32.9-9.1l80.6 4.6c26.1 1.5 51.5-8.7 69.4-27.9l31.5-33.8zM160 256c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm160-48c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zM288 352c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z"]},xJ={prefix:"fas",iconName:"briefcase-medical",icon:[512,512,[],"f469","M184 48H328c4.4 0 8 3.6 8 8V96H176V56c0-4.4 3.6-8 8-8zm-56 8V96H64C28.7 96 0 124.7 0 160V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H384V56c0-30.9-25.1-56-56-56H184c-30.9 0-56 25.1-56 56zm96 152c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H288v48c0 8.8-7.2 16-16 16H240c-8.8 0-16-7.2-16-16V320H176c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h48V208z"]},SJ={prefix:"fas",iconName:"genderless",icon:[384,512,[],"f22d","M192 368c-61.9 0-112-50.1-112-112s50.1-112 112-112s112 50.1 112 112s-50.1 112-112 112zm0 64c97.2 0 176-78.8 176-176s-78.8-176-176-176S16 158.8 16 256s78.8 176 176 176z"]},wJ={prefix:"fas",iconName:"chevron-right",icon:[384,512,[9002],"f054","M342.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L274.7 256 105.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z"]},NJ={prefix:"fas",iconName:"retweet",icon:[576,512,[],"f079","M272 416c17.7 0 32-14.3 32-32s-14.3-32-32-32H160c-17.7 0-32-14.3-32-32V192h32c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-64-64c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8l32 0 0 128c0 53 43 96 96 96H272zM304 96c-17.7 0-32 14.3-32 32s14.3 32 32 32l112 0c17.7 0 32 14.3 32 32l0 128H416c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l64 64c12.5 12.5 32.8 12.5 45.3 0l64-64c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8l-32 0V192c0-53-43-96-96-96L304 96z"]},Yv={prefix:"fas",iconName:"car-rear",icon:[512,512,["car-alt"],"f5de","M165.4 96H346.6c13.6 0 25.7 8.6 30.2 21.4L402.9 192H109.1l26.1-74.6c4.5-12.8 16.6-21.4 30.2-21.4zm-90.6 .3L39.6 196.8C16.4 206.4 0 229.3 0 256v80c0 23.7 12.9 44.4 32 55.4V448c0 17.7 14.3 32 32 32H96c17.7 0 32-14.3 32-32V400H384v48c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V391.4c19.1-11.1 32-31.7 32-55.4V256c0-26.7-16.4-49.6-39.6-59.2L437.2 96.3C423.7 57.8 387.4 32 346.6 32H165.4c-40.8 0-77.1 25.8-90.6 64.3zM208 272h96c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H208c-8.8 0-16-7.2-16-16V288c0-8.8 7.2-16 16-16zM48 280c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H72c-13.3 0-24-10.7-24-24zm360-24h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H408c-13.3 0-24-10.7-24-24s10.7-24 24-24z"]},AJ=Yv,_J={prefix:"fas",iconName:"pump-soap",icon:[448,512,[],"e06b","M128 32v96H256V96h60.1c4.2 0 8.3 1.7 11.3 4.7l33.9 33.9c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L372.7 55.4c-15-15-35.4-23.4-56.6-23.4H256c0-17.7-14.3-32-32-32H160c-17.7 0-32 14.3-32 32zM117.4 160c-33.3 0-61 25.5-63.8 58.7L35 442.7C31.9 480 61.3 512 98.8 512H285.2c37.4 0 66.9-32 63.8-69.3l-18.7-224c-2.8-33.2-30.5-58.7-63.8-58.7H117.4zM256 360c0 35.3-28.7 56-64 56s-64-20.7-64-56c0-32.5 37-80.9 50.9-97.9c3.2-3.9 8.1-6.1 13.1-6.1s9.9 2.2 13.1 6.1C219 279.1 256 327.5 256 360z"]},kJ={prefix:"fas",iconName:"video-slash",icon:[640,512,[],"f4e2","M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-86.4-67.7 13.8 9.2c9.8 6.5 22.4 7.2 32.9 1.6s16.9-16.4 16.9-28.2V128c0-11.8-6.5-22.6-16.9-28.2s-23-5-32.9 1.6l-96 64L448 174.9V192 320v5.8l-32-25.1V128c0-35.3-28.7-64-64-64H113.9L38.8 5.1zM32 128V384c0 35.3 28.7 64 64 64H352c23.4 0 43.9-12.6 55-31.3L32.3 121.5c-.2 2.1-.3 4.3-.3 6.5z"]},Jv={prefix:"fas",iconName:"battery-quarter",icon:[576,512,["battery-2"],"f243","M0 176c0-44.2 35.8-80 80-80H464c44.2 0 80 35.8 80 80v16c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32v16c0 44.2-35.8 80-80 80H80c-44.2 0-80-35.8-80-80V176zm80-16c-8.8 0-16 7.2-16 16V336c0 8.8 7.2 16 16 16H464c8.8 0 16-7.2 16-16V176c0-8.8-7.2-16-16-16H80zm112 32V320H96V192h96z"]},TJ=Jv,PJ={prefix:"fas",iconName:"radio",icon:[512,512,[128251],"f8d7","M494.8 47c12.7-3.7 20-17.1 16.3-29.8S494-2.8 481.2 1L51.7 126.9c-9.4 2.7-17.9 7.3-25.1 13.2C10.5 151.7 0 170.6 0 192v4V304 448c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V192c0-35.3-28.7-64-64-64H218.5L494.8 47zM368 400c-44.2 0-80-35.8-80-80s35.8-80 80-80s80 35.8 80 80s-35.8 80-80 80zM80 256c0-8.8 7.2-16 16-16h96c8.8 0 16 7.2 16 16s-7.2 16-16 16H96c-8.8 0-16-7.2-16-16zM64 320c0-8.8 7.2-16 16-16H208c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm16 64c0-8.8 7.2-16 16-16h96c8.8 0 16 7.2 16 16s-7.2 16-16 16H96c-8.8 0-16-7.2-16-16z"]},Qv={prefix:"fas",iconName:"baby-carriage",icon:[512,512,["carriage-baby"],"f77d","M256 192H.1C2.7 117.9 41.3 52.9 99 14.1c13.3-8.9 30.8-4.3 39.9 8.8L256 192zm128-32c0-35.3 28.7-64 64-64h32c17.7 0 32 14.3 32 32s-14.3 32-32 32l-32 0v64c0 25.2-5.8 50.2-17 73.5s-27.8 44.5-48.6 62.3s-45.5 32-72.7 41.6S253.4 416 224 416s-58.5-5-85.7-14.6s-51.9-23.8-72.7-41.6s-37.3-39-48.6-62.3S0 249.2 0 224l224 0 160 0V160zM80 512c-26.5 0-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48s-21.5 48-48 48zm336-48c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48z"]},EJ=Qv,OJ={prefix:"fas",iconName:"traffic-light",icon:[320,512,[128678],"f637","M64 0C28.7 0 0 28.7 0 64V352c0 88.4 71.6 160 160 160s160-71.6 160-160V64c0-35.3-28.7-64-64-64H64zm96 320c26.5 0 48 21.5 48 48s-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48zm-48-80c0-26.5 21.5-48 48-48s48 21.5 48 48s-21.5 48-48 48s-48-21.5-48-48zM160 64c26.5 0 48 21.5 48 48s-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48z"]},RJ={prefix:"fas",iconName:"thermometer",icon:[512,512,[],"f491","M96 382.1V293.3c0-14.9 5.9-29.1 16.4-39.6l27.3-27.3 57 57c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-57-57 41.4-41.4 57 57c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-57-57 41.4-41.4 57 57c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-57-57 45.5-45.5C355.2 10.9 381.4 0 408.8 0C465.8 0 512 46.2 512 103.2c0 27.4-10.9 53.6-30.2 73L258.3 399.6c-10.5 10.5-24.7 16.4-39.6 16.4H129.9L41 505c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l89-89z"]},FJ={prefix:"fas",iconName:"vr-cardboard",icon:[640,512,[],"f729","M576 64H64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H184.4c24.2 0 46.4-13.7 57.2-35.4l32-64c8.8-17.5 26.7-28.6 46.3-28.6s37.5 11.1 46.3 28.6l32 64c10.8 21.7 33 35.4 57.2 35.4H576c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64zM224 240c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zm256 64c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64z"]},BJ={prefix:"fas",iconName:"hand-middle-finger",icon:[448,512,[128405],"f806","M232 0c-22.1 0-40 17.9-40 40V204.2c-8.5-7.6-19.7-12.2-32-12.2c-26.5 0-48 21.5-48 48v7 73c0 8.8-7.2 16-16 16s-16-7.2-16-16V264.3c-2 1.4-3.9 3-5.8 4.5L55 284.8C40.4 297 32 315 32 334V372c0 38 16.9 74 46.1 98.3l5.4 4.5c28.8 24 65 37.1 102.4 37.1H304c70.7 0 128-57.3 128-128V320 288c0-26.5-21.5-48-48-48c-12.4 0-23.6 4.7-32.1 12.3C350 227.5 329.3 208 304 208c-12.3 0-23.5 4.6-32 12.2V40c0-22.1-17.9-40-40-40z"]},Zv={prefix:"fas",iconName:"percent",icon:[384,512,[62101,62785,"percentage"],"25","M374.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-320 320c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l320-320zM128 128c0-35.3-28.7-64-64-64S0 92.7 0 128s28.7 64 64 64s64-28.7 64-64zM384 384c0-35.3-28.7-64-64-64s-64 28.7-64 64s28.7 64 64 64s64-28.7 64-64z"]},DJ=Zv,IJ={prefix:"fas",iconName:"truck-moving",icon:[640,512,[],"f4df","M64 32C28.7 32 0 60.7 0 96V304v80 16c0 44.2 35.8 80 80 80c26.2 0 49.4-12.6 64-32c14.6 19.4 37.8 32 64 32c44.2 0 80-35.8 80-80c0-5.5-.6-10.8-1.6-16H416h33.6c-1 5.2-1.6 10.5-1.6 16c0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H608c17.7 0 32-14.3 32-32V288 272 261.7c0-9.2-3.2-18.2-9-25.3l-58.8-71.8c-10.6-13-26.5-20.5-43.3-20.5H480V96c0-35.3-28.7-64-64-64H64zM585 256H480V192h48.8c2.4 0 4.7 1.1 6.2 2.9L585 256zM528 432c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zM240 400c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zM80 432c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},UJ={prefix:"fas",iconName:"glass-water-droplet",icon:[448,512,[],"e4f5","M64 0C55.1 0 46.6 3.7 40.6 10.2s-9.1 15.2-8.5 24.1L60.9 437.7c3 41.9 37.8 74.3 79.8 74.3H307.3c42 0 76.8-32.4 79.8-74.3L415.9 34.3c.6-8.9-2.4-17.6-8.5-24.1S392.9 0 384 0H64zm51 297.5L98.4 64H349.6L333 297.5 320 304c-20.1 10.1-43.9 10.1-64 0s-43.9-10.1-64 0s-43.9 10.1-64 0l-13-6.5zM288 196c0-24-33.7-70.1-52.2-93.5c-6.1-7.7-17.5-7.7-23.6 0C193.7 125.9 160 172 160 196c0 33.1 28.7 60 64 60s64-26.9 64-60z"]},WJ={prefix:"fas",iconName:"display",icon:[576,512,[],"e163","M64 0C28.7 0 0 28.7 0 64V352c0 35.3 28.7 64 64 64H240l-10.7 32H160c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H346.7L336 416H512c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM512 64V352H64V64H512z"]},cd={prefix:"fas",iconName:"face-smile",icon:[512,512,[128578,"smile"],"f118","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM164.1 325.5C182 346.2 212.6 368 256 368s74-21.8 91.9-42.5c5.8-6.7 15.9-7.4 22.6-1.6s7.4 15.9 1.6 22.6C349.8 372.1 311.1 400 256 400s-93.8-27.9-116.1-53.5c-5.8-6.7-5.1-16.8 1.6-22.6s16.8-5.1 22.6 1.6zM208.4 208c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm128 32c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},$J=cd,ed={prefix:"fas",iconName:"thumbtack",icon:[384,512,[128204,128392,"thumb-tack"],"f08d","M32 32C32 14.3 46.3 0 64 0H320c17.7 0 32 14.3 32 32s-14.3 32-32 32H290.5l11.4 148.2c36.7 19.9 65.7 53.2 79.5 94.7l1 3c3.3 9.8 1.6 20.5-4.4 28.8s-15.7 13.3-26 13.3H32c-10.3 0-19.9-4.9-26-13.3s-7.7-19.1-4.4-28.8l1-3c13.8-41.5 42.8-74.8 79.5-94.7L93.5 64H64C46.3 64 32 49.7 32 32zM160 384h64v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384z"]},qJ=ed,GJ={prefix:"fas",iconName:"trophy",icon:[576,512,[127942],"f091","M400 0H176c-26.5 0-48.1 21.8-47.1 48.2c.2 5.3 .4 10.6 .7 15.8H24C10.7 64 0 74.7 0 88c0 92.6 33.5 157 78.5 200.7c44.3 43.1 98.3 64.8 138.1 75.8c23.4 6.5 39.4 26 39.4 45.6c0 20.9-17 37.9-37.9 37.9H192c-17.7 0-32 14.3-32 32s14.3 32 32 32H384c17.7 0 32-14.3 32-32s-14.3-32-32-32H357.9C337 448 320 431 320 410.1c0-19.6 15.9-39.2 39.4-45.6c39.9-11 93.9-32.7 138.2-75.8C542.5 245 576 180.6 576 88c0-13.3-10.7-24-24-24H446.4c.3-5.2 .5-10.4 .7-15.8C448.1 21.8 426.5 0 400 0zM48.9 112h84.4c9.1 90.1 29.2 150.3 51.9 190.6c-24.9-11-50.8-26.5-73.2-48.3c-32-31.1-58-76-63-142.3zM464.1 254.3c-22.4 21.8-48.3 37.3-73.2 48.3c22.7-40.3 42.8-100.5 51.9-190.6h84.4c-5.1 66.3-31.1 111.2-63 142.3z"]},rd={prefix:"fas",iconName:"person-praying",icon:[448,512,[128720,"pray"],"f683","M352 64c0-35.3-28.7-64-64-64s-64 28.7-64 64s28.7 64 64 64s64-28.7 64-64zM232.7 264l22.9 31.5c6.5 8.9 16.3 14.7 27.2 16.1s21.9-1.7 30.4-8.7l88-72c17.1-14 19.6-39.2 5.6-56.3s-39.2-19.6-56.3-5.6l-55.2 45.2-26.2-36C253.6 156.7 228.6 144 202 144c-30.9 0-59.2 17.1-73.6 44.4L79.8 280.9c-20.2 38.5-9.4 85.9 25.6 111.8L158.6 432H72c-22.1 0-40 17.9-40 40s17.9 40 40 40H280c17.3 0 32.6-11.1 38-27.5s-.3-34.4-14.2-44.7L187.7 354l45-90z"]},jJ=rd,KJ={prefix:"fas",iconName:"hammer",icon:[576,512,[128296],"f6e3","M413.5 237.5c-28.2 4.8-58.2-3.6-80-25.4l-38.1-38.1C280.4 159 272 138.8 272 117.6V105.5L192.3 62c-5.3-2.9-8.6-8.6-8.3-14.7s3.9-11.5 9.5-14l47.2-21C259.1 4.2 279 0 299.2 0h18.1c36.7 0 72 14 98.7 39.1l44.6 42c24.2 22.8 33.2 55.7 26.6 86L503 183l8-8c9.4-9.4 24.6-9.4 33.9 0l24 24c9.4 9.4 9.4 24.6 0 33.9l-88 88c-9.4 9.4-24.6 9.4-33.9 0l-24-24c-9.4-9.4-9.4-24.6 0-33.9l8-8-17.5-17.5zM27.4 377.1L260.9 182.6c3.5 4.9 7.5 9.6 11.8 14l38.1 38.1c6 6 12.4 11.2 19.2 15.7L134.9 484.6c-14.5 17.4-36 27.4-58.6 27.4C34.1 512 0 477.8 0 435.7c0-22.6 10.1-44.1 27.4-58.6z"]},XJ={prefix:"fas",iconName:"hand-peace",icon:[512,512,[9996],"f25b","M224 0c17.7 0 32 14.3 32 32V240H192V32c0-17.7 14.3-32 32-32zm96 160c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V192c0-17.7 14.3-32 32-32zm64 64c0-17.7 14.3-32 32-32s32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V224zM93.3 51.2L175.9 240H106.1L34.7 76.8C27.6 60.6 35 41.8 51.2 34.7s35.1 .3 42.1 16.5zm27 221.3l-.2-.5h69.9H216c22.1 0 40 17.9 40 40s-17.9 40-40 40H160c-8.8 0-16 7.2-16 16s7.2 16 16 16h56c39.8 0 72-32.2 72-72l0-.6c9.4 5.4 20.3 8.6 32 8.6c13.2 0 25.4-4 35.6-10.8c8.7 24.9 32.5 42.8 60.4 42.8c11.7 0 22.6-3.1 32-8.6V352c0 88.4-71.6 160-160 160H226.3c-42.4 0-83.1-16.9-113.1-46.9l-11.6-11.6C77.5 429.5 64 396.9 64 363V336c0-32.7 24.6-59.7 56.3-63.5z"]},ad={prefix:"fas",iconName:"rotate",icon:[512,512,[128260,"sync-alt"],"f2f1","M142.9 142.9c62.2-62.2 162.7-62.5 225.3-1L327 183c-6.9 6.9-8.9 17.2-5.2 26.2s12.5 14.8 22.2 14.8H463.5c0 0 0 0 0 0H472c13.3 0 24-10.7 24-24V72c0-9.7-5.8-18.5-14.8-22.2s-19.3-1.7-26.2 5.2L413.4 96.6c-87.6-86.5-228.7-86.2-315.8 1C73.2 122 55.6 150.7 44.8 181.4c-5.9 16.7 2.9 34.9 19.5 40.8s34.9-2.9 40.8-19.5c7.7-21.8 20.2-42.3 37.8-59.8zM16 312v7.6 .7V440c0 9.7 5.8 18.5 14.8 22.2s19.3 1.7 26.2-5.2l41.6-41.6c87.6 86.5 228.7 86.2 315.8-1c24.4-24.4 42.1-53.1 52.9-83.7c5.9-16.7-2.9-34.9-19.5-40.8s-34.9 2.9-40.8 19.5c-7.7 21.8-20.2 42.3-37.8 59.8c-62.2 62.2-162.7 62.5-225.3 1L185 329c6.9-6.9 8.9-17.2 5.2-26.2s-12.5-14.8-22.2-14.8H48.4h-.7H40c-13.3 0-24 10.7-24 24z"]},YJ=ad,JJ={prefix:"fas",iconName:"spinner",icon:[512,512,[],"f110","M304 48c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zm0 416c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM48 304c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zm464-48c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM142.9 437c18.7-18.7 18.7-49.1 0-67.9s-49.1-18.7-67.9 0s-18.7 49.1 0 67.9s49.1 18.7 67.9 0zm0-294.2c18.7-18.7 18.7-49.1 0-67.9S93.7 56.2 75 75s-18.7 49.1 0 67.9s49.1 18.7 67.9 0zM369.1 437c18.7 18.7 49.1 18.7 67.9 0s18.7-49.1 0-67.9s-49.1-18.7-67.9 0s-18.7 49.1 0 67.9z"]},QJ={prefix:"fas",iconName:"robot",icon:[640,512,[129302],"f544","M320 0c17.7 0 32 14.3 32 32V96H480c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H160c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64H288V32c0-17.7 14.3-32 32-32zM208 384c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H208zm96 0c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H304zm96 0c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H400zM264 256c0-22.1-17.9-40-40-40s-40 17.9-40 40s17.9 40 40 40s40-17.9 40-40zm152 40c22.1 0 40-17.9 40-40s-17.9-40-40-40s-40 17.9-40 40s17.9 40 40 40zM48 224H64V416H48c-26.5 0-48-21.5-48-48V272c0-26.5 21.5-48 48-48zm544 0c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H576V224h16z"]},ZJ={prefix:"fas",iconName:"peace",icon:[512,512,[9774],"f67c","M224 445.3V323.5l-94.3 77.1c26.1 22.8 58.5 38.7 94.3 44.7zM89.2 351.1L224 240.8V66.7C133.2 81.9 64 160.9 64 256c0 34.6 9.2 67.1 25.2 95.1zm293.1 49.5L288 323.5V445.3c35.7-6 68.1-21.9 94.3-44.7zm40.6-49.5c16-28 25.2-60.5 25.2-95.1c0-95.1-69.2-174.1-160-189.3V240.8L422.8 351.1zM512 256c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0S512 114.6 512 256z"]},nd={prefix:"fas",iconName:"gears",icon:[640,512,["cogs"],"f085","M308.5 135.3c7.1-6.3 9.9-16.2 6.2-25c-2.3-5.3-4.8-10.5-7.6-15.5L304 89.4c-3-5-6.3-9.9-9.8-14.6c-5.7-7.6-15.7-10.1-24.7-7.1l-28.2 9.3c-10.7-8.8-23-16-36.2-20.9L199 27.1c-1.9-9.3-9.1-16.7-18.5-17.8C173.7 8.4 166.9 8 160 8s-13.7 .4-20.4 1.2c-9.4 1.1-16.6 8.6-18.5 17.8L115 56.1c-13.3 5-25.5 12.1-36.2 20.9L50.5 67.8c-9-3-19-.5-24.7 7.1c-3.5 4.7-6.8 9.6-9.9 14.6l-3 5.3c-2.8 5-5.3 10.2-7.6 15.6c-3.7 8.7-.9 18.6 6.2 25l22.2 19.8C32.6 161.9 32 168.9 32 176s.6 14.1 1.7 20.9L11.5 216.7c-7.1 6.3-9.9 16.2-6.2 25c2.3 5.3 4.8 10.5 7.6 15.6l3 5.2c3 5.1 6.3 9.9 9.9 14.6c5.7 7.6 15.7 10.1 24.7 7.1l28.2-9.3c10.7 8.8 23 16 36.2 20.9l6.1 29.1c1.9 9.3 9.1 16.7 18.5 17.8c6.7 .8 13.5 1.2 20.4 1.2s13.7-.4 20.4-1.2c9.4-1.1 16.6-8.6 18.5-17.8l6.1-29.1c13.3-5 25.5-12.1 36.2-20.9l28.2 9.3c9 3 19 .5 24.7-7.1c3.5-4.7 6.8-9.5 9.8-14.6l3.1-5.4c2.8-5 5.3-10.2 7.6-15.5c3.7-8.7 .9-18.6-6.2-25l-22.2-19.8c1.1-6.8 1.7-13.8 1.7-20.9s-.6-14.1-1.7-20.9l22.2-19.8zM208 176c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48zM504.7 500.5c6.3 7.1 16.2 9.9 25 6.2c5.3-2.3 10.5-4.8 15.5-7.6l5.4-3.1c5-3 9.9-6.3 14.6-9.8c7.6-5.7 10.1-15.7 7.1-24.7l-9.3-28.2c8.8-10.7 16-23 20.9-36.2l29.1-6.1c9.3-1.9 16.7-9.1 17.8-18.5c.8-6.7 1.2-13.5 1.2-20.4s-.4-13.7-1.2-20.4c-1.1-9.4-8.6-16.6-17.8-18.5L583.9 307c-5-13.3-12.1-25.5-20.9-36.2l9.3-28.2c3-9 .5-19-7.1-24.7c-4.7-3.5-9.6-6.8-14.6-9.9l-5.3-3c-5-2.8-10.2-5.3-15.6-7.6c-8.7-3.7-18.6-.9-25 6.2l-19.8 22.2c-6.8-1.1-13.8-1.7-20.9-1.7s-14.1 .6-20.9 1.7l-19.8-22.2c-6.3-7.1-16.2-9.9-25-6.2c-5.3 2.3-10.5 4.8-15.6 7.6l-5.2 3c-5.1 3-9.9 6.3-14.6 9.9c-7.6 5.7-10.1 15.7-7.1 24.7l9.3 28.2c-8.8 10.7-16 23-20.9 36.2L315.1 313c-9.3 1.9-16.7 9.1-17.8 18.5c-.8 6.7-1.2 13.5-1.2 20.4s.4 13.7 1.2 20.4c1.1 9.4 8.6 16.6 17.8 18.5l29.1 6.1c5 13.3 12.1 25.5 20.9 36.2l-9.3 28.2c-3 9-.5 19 7.1 24.7c4.7 3.5 9.5 6.8 14.6 9.8l5.4 3.1c5 2.8 10.2 5.3 15.5 7.6c8.7 3.7 18.6 .9 25-6.2l19.8-22.2c6.8 1.1 13.8 1.7 20.9 1.7s14.1-.6 20.9-1.7l19.8 22.2zM464 400c-26.5 0-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48s-21.5 48-48 48z"]},cQ=nd,eQ={prefix:"fas",iconName:"warehouse",icon:[640,512,[],"f494","M0 488V171.3c0-26.2 15.9-49.7 40.2-59.4L308.1 4.8c7.6-3.1 16.1-3.1 23.8 0L599.8 111.9c24.3 9.7 40.2 33.3 40.2 59.4V488c0 13.3-10.7 24-24 24H568c-13.3 0-24-10.7-24-24V224c0-17.7-14.3-32-32-32H128c-17.7 0-32 14.3-32 32V488c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24zm488 24l-336 0c-13.3 0-24-10.7-24-24V432H512l0 56c0 13.3-10.7 24-24 24zM128 400V336H512v64H128zm0-96V224H512l0 80H128z"]},rQ={prefix:"fas",iconName:"arrow-up-right-dots",icon:[576,512,[],"e4b7","M160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h50.7L9.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L256 109.3V160c0 17.7 14.3 32 32 32s32-14.3 32-32V32c0-17.7-14.3-32-32-32H160zM576 80c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM448 208c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM400 384c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zm48 80c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zm128 0c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM272 384c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zm48 80c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM144 512c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zM576 336c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zm-48-80c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48z"]},aQ={prefix:"fas",iconName:"splotch",icon:[512,512,[],"f5bc","M287.6 .1c-19.7 0-38.3 9.1-50.4 24.6L205.9 64.9c-17.9 23-46 35.6-75.1 33.7L59.1 94c-13.5-.9-26.9 3.2-37.7 11.6C-1.3 123.2-6.7 155.2 8.8 179.4l44.5 69.2c7.1 11 10.8 23.8 10.8 36.8c0 11.9-3.1 23.5-9 33.8L27.4 367.7c-10 17.5-10 39.1 0 56.6c12.1 21.2 36.4 32.3 60.4 27.7l67-13c5.5-1.1 11.2-1.6 16.8-1.6H180c20.9 0 41 7.4 56.9 20.9l45 38.2c11.8 10 26.9 15.6 42.4 15.6c37.8 0 67.7-31.9 65.4-69.6l-3.1-50.6c-1-16.8 6.6-32.9 20.1-42.8l82.5-60.2c14.2-10.4 22.7-27 22.7-44.6c0-23.2-14.5-43.9-36.3-51.8l-58.2-21.2c-24.4-8.9-42.9-29.1-49.7-54.2L349.3 47.4C341.8 19.5 316.5 .1 287.6 .1z"]},td={prefix:"fas",iconName:"face-grin-hearts",icon:[512,512,[128525,"grin-hearts"],"f584","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM383.8 317.8c12.3-3.7 24.3 7 19.2 18.7c-24.5 56.9-81.1 96.7-147 96.7s-122.5-39.8-147-96.7c-5.1-11.8 6.9-22.4 19.2-18.7C166.7 329.4 210.1 336 256 336s89.3-6.6 127.8-18.2zM199.3 129.1c17.8 4.8 28.4 23.1 23.6 40.8l-17.4 65c-2.3 8.5-11.1 13.6-19.6 11.3l-65.1-17.4c-17.8-4.8-28.4-23.1-23.6-40.8s23.1-28.4 40.8-23.6l16.1 4.3 4.3-16.1c4.8-17.8 23.1-28.4 40.8-23.6zm154.3 23.6l4.3 16.1 16.1-4.3c17.8-4.8 36.1 5.8 40.8 23.6s-5.8 36.1-23.6 40.8l-65.1 17.4c-8.5 2.3-17.3-2.8-19.6-11.3l-17.4-65c-4.8-17.8 5.8-36.1 23.6-40.8s36.1 5.8 40.9 23.6z"]},nQ=td,tQ={prefix:"fas",iconName:"dice-four",icon:[448,512,[9859],"f524","M0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm160 64c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM128 384c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zM352 160c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM320 384c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z"]},sQ={prefix:"fas",iconName:"sim-card",icon:[384,512,[],"f7c4","M64 0H242.7c17 0 33.3 6.7 45.3 18.7L365.3 96c12 12 18.7 28.3 18.7 45.3V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64C0 28.7 28.7 0 64 0zM96 192c-17.7 0-32 14.3-32 32v32h64V192H96zM64 352h80 96 80V288H240 144 64v64zM320 224c0-17.7-14.3-32-32-32H256v64h64V224zM160 192v64h64V192H160zM288 448c17.7 0 32-14.3 32-32V384H256v64h32zM160 384v64h64V384H160zM64 416c0 17.7 14.3 32 32 32h32V384H64v32z"]},sd={prefix:"fas",iconName:"transgender",icon:[512,512,[9895,"transgender-alt"],"f225","M112 0c6.5 0 12.3 3.9 14.8 9.9s1.1 12.9-3.5 17.4l-31 31L112 78.1l7-7c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-7 7 15.2 15.2C187.7 107.6 220.5 96 256 96s68.3 11.6 94.9 31.2l68.8-68.8-31-31c-4.6-4.6-5.9-11.5-3.5-17.4s8.3-9.9 14.8-9.9h96c8.8 0 16 7.2 16 16v96c0 6.5-3.9 12.3-9.9 14.8s-12.9 1.1-17.4-3.5l-31-31-68.8 68.8C404.4 187.7 416 220.5 416 256c0 80.2-59 146.6-136 158.2V432h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H280v8c0 13.3-10.7 24-24 24s-24-10.7-24-24v-8H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h16V414.2C155 402.6 96 336.2 96 256c0-35.5 11.6-68.3 31.2-94.9L112 145.9l-7 7c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l7-7L58.3 92.3l-31 31c-4.6 4.6-11.5 5.9-17.4 3.5S0 118.5 0 112V16C0 7.2 7.2 0 16 0h96zM352 256c0-53-43-96-96-96s-96 43-96 96s43 96 96 96s96-43 96-96z"]},iQ=sd,oQ={prefix:"fas",iconName:"mercury",icon:[384,512,[9791],"f223","M72.1 7C85.8-4 106-1.8 117 12c17.6 22 44.7 36 75 36s57.3-14 75-36c11.1-13.8 31.2-16 45-5s16 31.2 5 45c-7.8 9.7-16.6 18.4-26.4 26.1C337.3 109.7 368 163.3 368 224c0 89.1-66.2 162.7-152 174.4V424h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H216v16c0 13.3-10.7 24-24 24s-24-10.7-24-24V472H136c-13.3 0-24-10.7-24-24s10.7-24 24-24h32V398.4C82.2 386.7 16 313.1 16 224c0-60.7 30.7-114.3 77.5-145.9C83.7 70.5 74.9 61.7 67.1 52c-11.1-13.8-8.8-33.9 5-45zM80 224c0 61.9 50.1 112 112 112s112-50.1 112-112s-50.1-112-112-112s-112 50.1-112 112z"]},id={prefix:"fas",iconName:"arrow-turn-down",icon:[384,512,["level-down"],"f149","M32 64C14.3 64 0 49.7 0 32S14.3 0 32 0l96 0c53 0 96 43 96 96l0 306.7 73.4-73.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-128 128c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 402.7 160 96c0-17.7-14.3-32-32-32L32 64z"]},fQ=id,lQ={prefix:"fas",iconName:"person-falling-burst",icon:[640,512,[],"e547","M256 32c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 9.8c0 39-23.7 74-59.9 88.4C71.6 154.5 32 213 32 278.2V352c0 17.7 14.3 32 32 32s32-14.3 32-32l0-73.8c0-10 1.6-19.8 4.5-29L261.1 497.4c9.6 14.8 29.4 19.1 44.3 9.5s19.1-29.4 9.5-44.3L222.6 320H224l80 0 38.4 51.2c10.6 14.1 30.7 17 44.8 6.4s17-30.7 6.4-44.8l-43.2-57.6C341.3 263.1 327.1 256 312 256l-71.5 0-56.8-80.2-.2-.3c44.7-29 72.5-79 72.5-133.6l0-9.8zM96 80c0-26.5-21.5-48-48-48S0 53.5 0 80s21.5 48 48 48s48-21.5 48-48zM464 286.1l58.6 53.9c4.8 4.4 11.9 5.5 17.8 2.6s9.5-9 9-15.5l-5.6-79.4 78.7-12.2c6.5-1 11.7-5.9 13.1-12.2s-1.1-13-6.5-16.7l-65.6-45.1L603 92.2c3.3-5.7 2.7-12.8-1.4-17.9s-10.9-7.2-17.2-5.3L508.3 92.1l-29.4-74C476.4 12 470.6 8 464 8s-12.4 4-14.9 10.1l-29.4 74L343.6 68.9c-6.3-1.9-13.1 .2-17.2 5.3s-4.6 12.2-1.4 17.9l39.5 69.1-65.6 45.1c-5.4 3.7-8 10.3-6.5 16.7c.1 .3 .1 .6 .2 .8l19.4 0c20.1 0 39.2 7.5 53.8 20.8l18.4 2.9L383 265.3l36.2 48.3c2.1 2.8 3.9 5.7 5.5 8.6L464 286.1z"]},uQ={prefix:"fas",iconName:"award",icon:[384,512,[],"f559","M173.8 5.5c11-7.3 25.4-7.3 36.4 0L228 17.2c6 3.9 13 5.8 20.1 5.4l21.3-1.3c13.2-.8 25.6 6.4 31.5 18.2l9.6 19.1c3.2 6.4 8.4 11.5 14.7 14.7L344.5 83c11.8 5.9 19 18.3 18.2 31.5l-1.3 21.3c-.4 7.1 1.5 14.2 5.4 20.1l11.8 17.8c7.3 11 7.3 25.4 0 36.4L366.8 228c-3.9 6-5.8 13-5.4 20.1l1.3 21.3c.8 13.2-6.4 25.6-18.2 31.5l-19.1 9.6c-6.4 3.2-11.5 8.4-14.7 14.7L301 344.5c-5.9 11.8-18.3 19-31.5 18.2l-21.3-1.3c-7.1-.4-14.2 1.5-20.1 5.4l-17.8 11.8c-11 7.3-25.4 7.3-36.4 0L156 366.8c-6-3.9-13-5.8-20.1-5.4l-21.3 1.3c-13.2 .8-25.6-6.4-31.5-18.2l-9.6-19.1c-3.2-6.4-8.4-11.5-14.7-14.7L39.5 301c-11.8-5.9-19-18.3-18.2-31.5l1.3-21.3c.4-7.1-1.5-14.2-5.4-20.1L5.5 210.2c-7.3-11-7.3-25.4 0-36.4L17.2 156c3.9-6 5.8-13 5.4-20.1l-1.3-21.3c-.8-13.2 6.4-25.6 18.2-31.5l19.1-9.6C65 70.2 70.2 65 73.4 58.6L83 39.5c5.9-11.8 18.3-19 31.5-18.2l21.3 1.3c7.1 .4 14.2-1.5 20.1-5.4L173.8 5.5zM272 192c0-44.2-35.8-80-80-80s-80 35.8-80 80s35.8 80 80 80s80-35.8 80-80zM1.3 441.8L44.4 339.3c.2 .1 .3 .2 .4 .4l9.6 19.1c11.7 23.2 36 37.3 62 35.8l21.3-1.3c.2 0 .5 0 .7 .2l17.8 11.8c5.1 3.3 10.5 5.9 16.1 7.7l-37.6 89.3c-2.3 5.5-7.4 9.2-13.3 9.7s-11.6-2.2-14.8-7.2L74.4 455.5l-56.1 8.3c-5.7 .8-11.4-1.5-15-6s-4.3-10.7-2.1-16zm248 60.4L211.7 413c5.6-1.8 11-4.3 16.1-7.7l17.8-11.8c.2-.1 .4-.2 .7-.2l21.3 1.3c26 1.5 50.3-12.6 62-35.8l9.6-19.1c.1-.2 .2-.3 .4-.4l43.2 102.5c2.2 5.3 1.4 11.4-2.1 16s-9.3 6.9-15 6l-56.1-8.3-32.2 49.2c-3.2 5-8.9 7.7-14.8 7.2s-11-4.3-13.3-9.7z"]},od={prefix:"fas",iconName:"ticket-simple",icon:[576,512,["ticket-alt"],"f3ff","M0 128C0 92.7 28.7 64 64 64H512c35.3 0 64 28.7 64 64v80c-26.5 0-48 21.5-48 48s21.5 48 48 48v80c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V304c26.5 0 48-21.5 48-48s-21.5-48-48-48V128z"]},hQ=od,pQ={prefix:"fas",iconName:"building",icon:[384,512,[127970,61687],"f1ad","M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16z"]},fd={prefix:"fas",iconName:"angles-left",icon:[512,512,[171,"angle-double-left"],"f100","M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 246.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160zm352-160l-160 160c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L301.3 256 438.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0z"]},mQ=fd,vQ={prefix:"fas",iconName:"qrcode",icon:[448,512,[],"f029","M48 32C21.5 32 0 53.5 0 80v96c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm80 64v64H64V96h64zM48 288c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48V336c0-26.5-21.5-48-48-48H48zm80 64v64H64V352h64zM256 80v96c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H304c-26.5 0-48 21.5-48 48zm64 16h64v64H320V96zm32 352v32h32V448H352zm96 0H416v32h32V448zM416 288v32H352V288H256v96 96h64V384h32v32h96V352 320 288H416z"]},ld={prefix:"fas",iconName:"clock-rotate-left",icon:[512,512,["history"],"f1da","M75 75L41 41C25.9 25.9 0 36.6 0 57.9V168c0 13.3 10.7 24 24 24H134.1c21.4 0 32.1-25.9 17-41l-30.8-30.8C155 85.5 203 64 256 64c106 0 192 86 192 192s-86 192-192 192c-40.8 0-78.6-12.7-109.7-34.4c-14.5-10.1-34.4-6.6-44.6 7.9s-6.6 34.4 7.9 44.6C151.2 495 201.7 512 256 512c141.4 0 256-114.6 256-256S397.4 0 256 0C185.3 0 121.3 28.7 75 75zm181 53c-13.3 0-24 10.7-24 24V256c0 6.4 2.5 12.5 7 17l72 72c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-65-65V152c0-13.3-10.7-24-24-24z"]},dQ=ld,ud={prefix:"fas",iconName:"face-grin-beam-sweat",icon:[512,512,[128517,"grin-beam-sweat"],"f583","M476.8 126.3c-4.1 1.1-8.4 1.7-12.8 1.7c-26.5 0-48-21-48-47c0-5 1.8-11.3 4.6-18.1c.3-.7 .6-1.4 .9-2.1c9-20.2 26.5-44.9 36-57.5c3.2-4.4 9.6-4.4 12.8 0C483.4 20.6 512 61 512 81c0 21.7-14.9 39.8-35.2 45.3zM256 0c51.4 0 99.3 15.2 139.4 41.2c-1.5 3.1-3 6.2-4.3 9.3c-3.4 8-7.1 19-7.1 30.5c0 44.3 36.6 79 80 79c9.6 0 18.8-1.7 27.4-4.8c13.3 30.9 20.6 65 20.6 100.8c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0zM383.8 317.8C345.3 329.4 301.9 336 256 336s-89.3-6.6-127.8-18.2c-12.3-3.7-24.3 7-19.2 18.7c24.5 56.9 81.1 96.7 147 96.7s122.5-39.8 147-96.7c5.1-11.8-6.9-22.4-19.2-18.7zm-166.2-89l0 0 0 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8c-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2C126.7 188.4 120 206.1 120 224c0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l0 0 0 0 0 0 .2-.2c.2-.2 .4-.5 .7-.9c.6-.8 1.6-2 2.8-3.4c2.5-2.8 6-6.6 10.2-10.3c8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3c1.2 1.4 2.2 2.6 2.8 3.4c.3 .4 .6 .7 .7 .9l.2 .2 0 0 0 0zm160 0l0 0 0 0 0 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8c-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2C286.7 188.4 280 206.1 280 224c0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l0 0 0 0 0 0 .2-.2c.2-.2 .4-.5 .7-.9c.6-.8 1.6-2 2.8-3.4c2.5-2.8 6-6.6 10.2-10.3c8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3c1.2 1.4 2.2 2.6 2.8 3.4c.3 .4 .6 .7 .7 .9l.2 .2 0 0z"]},HQ=ud,hd={prefix:"fas",iconName:"file-export",icon:[640,512,["arrow-right-from-file"],"f56e","M32 64C32 28.7 60.7 0 96 0H256V128c0 17.7 14.3 32 32 32H416V288H248c-13.3 0-24 10.7-24 24s10.7 24 24 24H416V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V64zM416 336V288H526.1l-39-39c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l80 80c9.4 9.4 9.4 24.6 0 33.9l-80 80c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l39-39H416zm0-208H288V0L416 128z"]},zQ=hd,pd={prefix:"fas",iconName:"shield",icon:[512,512,[128737,"shield-blank"],"f132","M256 0c4.6 0 9.2 1 13.4 2.9L457.7 82.8c22 9.3 38.4 31 38.3 57.2c-.5 99.2-41.3 280.7-213.7 363.2c-16.7 8-36.1 8-52.8 0C57.3 420.7 16.5 239.2 16 140c-.1-26.2 16.3-47.9 38.3-57.2L242.7 2.9C246.8 1 251.4 0 256 0z"]},gQ=pd,md={prefix:"fas",iconName:"arrow-up-short-wide",icon:[576,512,["sort-amount-up-alt"],"f885","M151.6 42.4C145.5 35.8 137 32 128 32s-17.5 3.8-23.6 10.4l-88 96c-11.9 13-11.1 33.3 2 45.2s33.3 11.1 45.2-2L96 146.3V448c0 17.7 14.3 32 32 32s32-14.3 32-32V146.3l32.4 35.4c11.9 13 32.2 13.9 45.2 2s13.9-32.2 2-45.2l-88-96zM320 32c-17.7 0-32 14.3-32 32s14.3 32 32 32h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H320zm0 128c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H320zm0 128c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H320zm0 128c-17.7 0-32 14.3-32 32s14.3 32 32 32H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H320z"]},VQ=md,MQ={prefix:"fas",iconName:"house-medical",icon:[576,512,[],"e3b2","M543.8 287.6c17 0 32-14 32-32.1c1-9-3-17-11-24L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32V448c0 35.3 28.7 64 64 64H448.5c35.5 0 64.2-28.8 64-64.3l-.7-160.2h32zM256 208c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H320v48c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V320H208c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h48V208z"]},vd={prefix:"fas",iconName:"golf-ball-tee",icon:[384,512,["golf-ball"],"f450","M384 192c0 66.8-34.1 125.6-85.8 160H85.8C34.1 317.6 0 258.8 0 192C0 86 86 0 192 0S384 86 384 192zM242.1 256.6c0 18.5-15 33.5-33.5 33.5c-4.9 0-9.6-1.1-13.8-3c5.3 11.6 16.9 19.7 30.5 19.7c18.5 0 33.5-15 33.5-33.5c0-13.6-8.1-25.3-19.7-30.5c1.9 4.2 3 8.9 3 13.8zm-52.3-49.3c-4.9 0-9.6-1.1-13.8-3c5.3 11.6 16.9 19.7 30.5 19.7c18.5 0 33.5-15 33.5-33.5c0-13.6-8.1-25.3-19.7-30.5c1.9 4.2 3 8.9 3 13.8c0 18.5-15 33.5-33.5 33.5zm113.5-17.5c0 18.5-15 33.5-33.5 33.5c-4.9 0-9.6-1.1-13.8-3c5.3 11.6 16.9 19.7 30.5 19.7c18.5 0 33.5-15 33.5-33.5c0-13.6-8.1-25.3-19.7-30.5c1.9 4.2 3 8.9 3 13.8zM96 416c0-17.7 14.3-32 32-32h64 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H240c-8.8 0-16 7.2-16 16v16c0 17.7-14.3 32-32 32s-32-14.3-32-32V464c0-8.8-7.2-16-16-16H128c-17.7 0-32-14.3-32-32z"]},CQ=vd,dd={prefix:"fas",iconName:"circle-chevron-left",icon:[512,512,["chevron-circle-left"],"f137","M512 256C512 114.6 397.4 0 256 0S0 114.6 0 256S114.6 512 256 512s256-114.6 256-256zM271 135c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-87 87 87 87c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L167 273c-9.4-9.4-9.4-24.6 0-33.9L271 135z"]},LQ=dd,yQ={prefix:"fas",iconName:"house-chimney-window",icon:[576,512,[],"e00d","M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c.2 35.5-28.5 64.3-64 64.3H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L416 100.7V64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V185l52.8 46.4c8 7 12 15 11 24zM248 192c-13.3 0-24 10.7-24 24v80c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V216c0-13.3-10.7-24-24-24H248z"]},bQ={prefix:"fas",iconName:"pen-nib",icon:[512,512,[10001],"f5ad","M368.4 18.3L312.7 74.1 437.9 199.3l55.7-55.7c21.9-21.9 21.9-57.3 0-79.2L447.6 18.3c-21.9-21.9-57.3-21.9-79.2 0zM288 94.6l-9.2 2.8L134.7 140.6c-19.9 6-35.7 21.2-42.3 41L3.8 445.8c-3.8 11.3-1 23.9 7.3 32.4L164.7 324.7c-3-6.3-4.7-13.3-4.7-20.7c0-26.5 21.5-48 48-48s48 21.5 48 48s-21.5 48-48 48c-7.4 0-14.4-1.7-20.7-4.7L33.7 500.9c8.6 8.3 21.1 11.2 32.4 7.3l264.3-88.6c19.7-6.6 35-22.4 41-42.3l43.2-144.1 2.8-9.2L288 94.6z"]},xQ={prefix:"fas",iconName:"tent-arrow-turn-left",icon:[640,512,[],"e580","M152.1 41.8c9.9-8.9 10.7-24 1.8-33.9s-24-10.7-33.9-1.8l-80 72C34.9 82.7 32 89.2 32 96s2.9 13.3 7.9 17.8l80 72c9.9 8.9 25 8.1 33.9-1.8s8.1-25-1.8-33.9L118.5 120 488 120c39.8 0 72 32.2 72 72v40c0 13.3 10.7 24 24 24s24-10.7 24-24V192c0-66.3-53.7-120-120-120L118.5 72l33.5-30.2zM339.4 166.5c-11.5-8.7-27.3-8.7-38.8 0l-168 128c-6.6 5-11 12.5-12.3 20.7l-24 160c-1.4 9.2 1.3 18.6 7.4 25.6s14.9 11.1 24.2 11.1H320V352l96 160h96c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128z"]},SQ={prefix:"fas",iconName:"tents",icon:[640,512,[],"e582","M396.6 6.5L235.8 129.1c9.6 1.8 18.9 5.8 27 12l168 128c13.2 10.1 22 24.9 24.5 41.4l6.2 41.5H608c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128c-11.5-8.7-27.3-8.7-38.8 0zm-153.2 160c-11.5-8.7-27.3-8.7-38.8 0l-168 128c-6.6 5-11 12.5-12.3 20.7l-24 160c-1.4 9.2 1.3 18.6 7.4 25.6S22.7 512 32 512H224V352l96 160h96c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128z"]},Hd={prefix:"fas",iconName:"wand-magic",icon:[512,512,["magic"],"f0d0","M14.1 463.3c-18.7-18.7-18.7-49.1 0-67.9L395.4 14.1c18.7-18.7 49.1-18.7 67.9 0l34.6 34.6c18.7 18.7 18.7 49.1 0 67.9L116.5 497.9c-18.7 18.7-49.1 18.7-67.9 0L14.1 463.3zM347.6 187.6l105-105L429.4 59.3l-105 105 23.3 23.3z"]},wQ=Hd,NQ={prefix:"fas",iconName:"dog",icon:[576,512,[128021],"f6d3","M309.6 158.5L332.7 19.8C334.6 8.4 344.5 0 356.1 0c7.5 0 14.5 3.5 19 9.5L392 32h52.1c12.7 0 24.9 5.1 33.9 14.1L496 64h56c13.3 0 24 10.7 24 24v24c0 44.2-35.8 80-80 80H464 448 426.7l-5.1 30.5-112-64zM416 256.1L416 480c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V364.8c-24 12.3-51.2 19.2-80 19.2s-56-6.9-80-19.2V480c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V249.8c-28.8-10.9-51.4-35.3-59.2-66.5L1 167.8c-4.3-17.1 6.1-34.5 23.3-38.8s34.5 6.1 38.8 23.3l3.9 15.5C70.5 182 83.3 192 98 192h30 16H303.8L416 256.1zM464 80c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16z"]},AQ={prefix:"fas",iconName:"carrot",icon:[512,512,[129365],"f787","M346.7 6C337.6 17 320 42.3 320 72c0 40 15.3 55.3 40 80s40 40 80 40c29.7 0 55-17.6 66-26.7c4-3.3 6-8.2 6-13.3s-2-10-6-13.2c-11.4-9.1-38.3-26.8-74-26.8c-32 0-40 8-40 8s8-8 8-40c0-35.7-17.7-62.6-26.8-74C370 2 365.1 0 360 0s-10 2-13.3 6zM244.6 136c-40 0-77.1 18.1-101.7 48.2l60.5 60.5c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0l-55.3-55.3 0 .1L2.2 477.9C-2 487-.1 497.8 7 505s17.9 9 27.1 4.8l134.7-62.4-52.1-52.1c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L199.7 433l100.2-46.4c46.4-21.5 76.2-68 76.2-119.2C376 194.8 317.2 136 244.6 136z"]},_Q={prefix:"fas",iconName:"moon",icon:[384,512,[127769,9214],"f186","M223.5 32C100 32 0 132.3 0 256S100 480 223.5 480c60.6 0 115.5-24.2 155.8-63.4c5-4.9 6.3-12.5 3.1-18.7s-10.1-9.7-17-8.5c-9.8 1.7-19.8 2.6-30.1 2.6c-96.9 0-175.5-78.8-175.5-176c0-65.8 36-123.1 89.3-153.3c6.1-3.5 9.2-10.5 7.7-17.3s-7.3-11.9-14.3-12.5c-6.3-.5-12.6-.8-19-.8z"]},zd={prefix:"fas",iconName:"wine-glass-empty",icon:[320,512,["wine-glass-alt"],"f5ce","M64 0C47.4 0 33.5 12.8 32.1 29.3l-14 168.4c-6 72 42.5 135.2 109.9 150.6V448H80c-17.7 0-32 14.3-32 32s14.3 32 32 32h80 80c17.7 0 32-14.3 32-32s-14.3-32-32-32H192V348.4c67.4-15.4 115.9-78.6 109.9-150.6l-14-168.4C286.5 12.8 272.6 0 256 0H64zM81.9 203.1L93.4 64H226.6l11.6 139.1C242 248.8 205.9 288 160 288s-82-39.2-78.1-84.9z"]},kQ=zd,TQ={prefix:"fas",iconName:"cheese",icon:[512,512,[],"f7ef","M512 240.2V256H0c0-20 10-38.7 26.6-49.8L274.9 40.7c8.6-5.7 18.6-8.7 28.9-8.7C418.8 32 512 125.2 512 240.2zm0 47.8V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V288H512z"]},PQ={prefix:"fas",iconName:"yin-yang",icon:[512,512,[9775],"f6ad","M256 64c53 0 96 43 96 96s-43 96-96 96s-96 43-96 96s43 96 96 96C150 448 64 362 64 256S150 64 256 64zm0 448c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zm32-352c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zm0 192c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32z"]},EQ={prefix:"fas",iconName:"music",icon:[512,512,[127925],"f001","M499.1 6.3c8.1 6 12.9 15.6 12.9 25.7v72V368c0 44.2-43 80-96 80s-96-35.8-96-80s43-80 96-80c11.2 0 22 1.6 32 4.6V147L192 223.8V432c0 44.2-43 80-96 80s-96-35.8-96-80s43-80 96-80c11.2 0 22 1.6 32 4.6V200 128c0-14.1 9.3-26.6 22.8-30.7l320-96c9.7-2.9 20.2-1.1 28.3 5z"]},OQ={prefix:"fas",iconName:"code-commit",icon:[640,512,[],"f386","M320 336c44.2 0 80-35.8 80-80s-35.8-80-80-80s-80 35.8-80 80s35.8 80 80 80zm156.8-48C462 361 397.4 416 320 416s-142-55-156.8-128H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H163.2C178 151 242.6 96 320 96s142 55 156.8 128H608c17.7 0 32 14.3 32 32s-14.3 32-32 32H476.8z"]},RQ={prefix:"fas",iconName:"temperature-low",icon:[512,512,[],"f76b","M448 96c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zm64 0c0 53-43 96-96 96s-96-43-96-96s43-96 96-96s96 43 96 96zM144 64c-26.5 0-48 21.5-48 48V276.5c0 17.3-7.1 31.9-15.3 42.5C70.2 332.6 64 349.5 64 368c0 44.2 35.8 80 80 80s80-35.8 80-80c0-18.5-6.2-35.4-16.7-48.9c-8.2-10.6-15.3-25.2-15.3-42.5V112c0-26.5-21.5-48-48-48zM32 112C32 50.2 82.1 0 144 0s112 50.1 112 112V276.5c0 .1 .1 .3 .2 .6c.2 .6 .8 1.6 1.7 2.8c18.9 24.4 30.1 55 30.1 88.1c0 79.5-64.5 144-144 144S0 447.5 0 368c0-33.2 11.2-63.8 30.1-88.1c.9-1.2 1.5-2.2 1.7-2.8c.1-.3 .2-.5 .2-.6V112zM192 368c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-20.9 13.4-38.7 32-45.3V272c0-8.8 7.2-16 16-16s16 7.2 16 16v50.7c18.6 6.6 32 24.4 32 45.3z"]},gd={prefix:"fas",iconName:"person-biking",icon:[640,512,[128692,"biking"],"f84a","M400 96c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zm27.2 64l-61.8-48.8c-17.3-13.6-41.7-13.8-59.1-.3l-83.1 64.2c-30.7 23.8-28.5 70.8 4.3 91.6L288 305.1V416c0 17.7 14.3 32 32 32s32-14.3 32-32V288c0-10.7-5.3-20.7-14.2-26.6L295 232.9l60.3-48.5L396 217c5.7 4.5 12.7 7 20 7h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H427.2zM200 384c0 39.8-32.2 72-72 72s-72-32.2-72-72s32.2-72 72-72s72 32.2 72 72zm56 0c0-70.7-57.3-128-128-128S0 313.3 0 384s57.3 128 128 128s128-57.3 128-128zm328 0c0 39.8-32.2 72-72 72s-72-32.2-72-72s32.2-72 72-72s72 32.2 72 72zm56 0c0-70.7-57.3-128-128-128s-128 57.3-128 128s57.3 128 128 128s128-57.3 128-128z"]},FQ=gd,BQ={prefix:"fas",iconName:"broom",icon:[640,512,[129529],"f51a","M627.6 57.3c14-10.9 16.5-31 5.6-44.9s-31-16.5-44.9-5.6l-144 112-72 56-8.7 6.8-30.8-39.4c-3.7-4.8-9.8-7-15.8-5.8s-10.7 5.7-12.3 11.5l-12.5 46.3L371.1 295l48-.9c6.1-.1 11.5-3.7 14.1-9.1s1.9-11.9-1.8-16.7L403 231.9l8.6-6.7 72-56 144-112zM16.7 507.7c37.4 2.8 196.8 12 252.3-31.4c57.7-45.1 76.8-161.5 76.8-161.5L267.1 213.9s-117.6-9.6-175.3 35.5C69 267.1 50.5 304.1 36.3 344c-2.4 6.7 4.7 12.8 11 9.4L86.2 333c4.1-2.2 9.2-1.1 12 2.6s2.7 8.8-.4 12.3L24.4 430.4C13.2 442.9 5.5 458.1 2.4 474.5c-.9 4.8-1.6 8.9-2.2 12.1c-.9 5 .5 10.1 3.6 14.1s7.7 6.6 12.8 7z"]},DQ={prefix:"fas",iconName:"shield-heart",icon:[512,512,[],"e574","M269.4 2.9C265.2 1 260.7 0 256 0s-9.2 1-13.4 2.9L54.3 82.8c-22 9.3-38.4 31-38.3 57.2c.5 99.2 41.3 280.7 213.6 363.2c16.7 8 36.1 8 52.8 0C454.7 420.7 495.5 239.2 496 140c.1-26.2-16.3-47.9-38.3-57.2L269.4 2.9zM144 221.3c0-33.8 27.4-61.3 61.3-61.3c16.2 0 31.8 6.5 43.3 17.9l7.4 7.4 7.4-7.4c11.5-11.5 27.1-17.9 43.3-17.9c33.8 0 61.3 27.4 61.3 61.3c0 16.2-6.5 31.8-17.9 43.3l-82.7 82.7c-6.2 6.2-16.4 6.2-22.6 0l-82.7-82.7c-11.5-11.5-17.9-27.1-17.9-43.3z"]},IQ={prefix:"fas",iconName:"gopuram",icon:[512,512,[],"f664","M120 0c13.3 0 24 10.7 24 24v8h40V24c0-13.3 10.7-24 24-24s24 10.7 24 24v8h48V24c0-13.3 10.7-24 24-24s24 10.7 24 24v8h40V24c0-13.3 10.7-24 24-24s24 10.7 24 24v8V64v64c17.7 0 32 14.3 32 32v64c17.7 0 32 14.3 32 32v96c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H416V352H384V224H352V128H320v96h32V352h32V512H304V464c0-26.5-21.5-48-48-48s-48 21.5-48 48v48H128V352h32V224h32V128H160v96H128V352H96V512H32c-17.7 0-32-14.3-32-32V384c0-17.7 14.3-32 32-32V256c0-17.7 14.3-32 32-32V160c0-17.7 14.3-32 32-32V64 32 24c0-13.3 10.7-24 24-24zM256 272c-17.7 0-32 14.3-32 32v48h64V304c0-17.7-14.3-32-32-32zm-32-80v32h64V192c0-17.7-14.3-32-32-32s-32 14.3-32 32z"]},Vd={prefix:"fas",iconName:"earth-oceania",icon:[512,512,["globe-oceania"],"e47b","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM208.6 357.3l-39-13.5c-6.5-2.2-13.6-2.3-20.1-.3l-15.3 4.9c-18.5 5.9-38.5-2.4-47.5-19.5l-3.3-6.2c-10.6-20.1-2.3-45 18.2-54.7l35.3-16.8c2.3-1.1 4.4-2.8 5.9-4.8l5.3-7c7.2-9.6 18.6-15.3 30.6-15.3s23.4 5.7 30.6 15.3l4.6 6.1c2 2.6 4.9 4.5 8.1 5.1c7.8 1.6 15.7-1.5 20.4-7.9l10.4-14.2c2-2.8 5.3-4.4 8.7-4.4c4.4 0 8.4 2.7 10 6.8l10.1 25.9c2.8 7.2 6.7 14 11.5 20.2L311 299.8c5.8 7.4 9 16.6 9 26s-3.2 18.6-9 26L299 367.2c-8.3 10.6-21 16.8-34.4 16.8c-8.4 0-16.6-2.4-23.7-7l-25.4-16.4c-2.2-1.4-4.5-2.5-6.9-3.4zm65.2-214.8L296 164.7c10.1 10.1 2.9 27.3-11.3 27.3H254.8c-5.6 0-11.1-1.2-16.2-3.4l-42.8-19c-14.3-6.3-11.9-27.3 3.4-30.3l38.5-7.7c13.1-2.6 26.7 1.5 36.1 10.9zM248 432c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16s-7.2 16-16 16H264c-8.8 0-16-7.2-16-16zM431.2 298.9l8 24c2.8 8.4-1.7 17.4-10.1 20.2s-17.4-1.7-20.2-10.1l-8-24c-2.8-8.4 1.7-17.4 10.1-20.2s17.4 1.7 20.2 10.1zm-19.9 80.4l-32 32c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l32-32c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z"]},UQ=Vd,nn={prefix:"fas",iconName:"square-xmark",icon:[448,512,[10062,"times-square","xmark-square"],"f2d3","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm79 143c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z"]},WQ=nn,$Q=nn,qQ={prefix:"fas",iconName:"hashtag",icon:[448,512,[62098],"23","M181.3 32.4c17.4 2.9 29.2 19.4 26.3 36.8L197.8 128h95.1l11.5-69.3c2.9-17.4 19.4-29.2 36.8-26.3s29.2 19.4 26.3 36.8L357.8 128H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H347.1L325.8 320H384c17.7 0 32 14.3 32 32s-14.3 32-32 32H315.1l-11.5 69.3c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8l9.8-58.7H155.1l-11.5 69.3c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8L90.2 384H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h68.9l21.3-128H64c-17.7 0-32-14.3-32-32s14.3-32 32-32h68.9l11.5-69.3c2.9-17.4 19.4-29.2 36.8-26.3zM187.1 192L165.8 320h95.1l21.3-128H187.1z"]},Md={prefix:"fas",iconName:"up-right-and-down-left-from-center",icon:[512,512,["expand-alt"],"f424","M344 0H488c13.3 0 24 10.7 24 24V168c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-39-39-87 87c-9.4 9.4-24.6 9.4-33.9 0l-32-32c-9.4-9.4-9.4-24.6 0-33.9l87-87L327 41c-6.9-6.9-8.9-17.2-5.2-26.2S334.3 0 344 0zM184 496H40c-13.3 0-24-10.7-24-24V328c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l39 39 87-87c9.4-9.4 24.6-9.4 33.9 0l32 32c9.4 9.4 9.4 24.6 0 33.9l-87 87 39 39c6.9 6.9 8.9 17.2 5.2 26.2s-12.5 14.8-22.2 14.8z"]},GQ=Md,jQ={prefix:"fas",iconName:"oil-can",icon:[640,512,[],"f613","M320 128c17.7 0 32-14.3 32-32s-14.3-32-32-32H192c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v32H144 96 48c-26.5 0-48 21.5-48 48v64.8c0 19 11.2 36.2 28.5 43.9l67.5 30V368c0 26.5 21.5 48 48 48H403.1c18.4 0 35.8-7.9 48-21.7L633.5 187.7c12.3-13.9-.3-35.4-18.4-31.5L448 192l-50.5-25.2c-8.9-4.4-18.7-6.8-28.6-6.8H288V128h32zM96 208v86.1L48 272.8V208H96z"]},KQ={prefix:"fas",iconName:"t",icon:[384,512,[116],"54","M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96H160V448c0 17.7 14.3 32 32 32s32-14.3 32-32V96H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H192 32z"]},XQ={prefix:"fas",iconName:"hippo",icon:[640,512,[129435],"f6ed","M407 47c9.4-9.4 24.6-9.4 33.9 0l17.2 17.2c1.9-.1 3.9-.2 5.8-.2h32c11.2 0 21.9 2.3 31.6 6.5L543 55c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L564 101.9c7.6 12.2 12 26.7 12 42.1c0 10.2 7.4 18.8 16.7 23c27.9 12.5 47.3 40.5 47.3 73c0 26.2-12.6 49.4-32 64v32c0 8.8-7.2 16-16 16H560c-8.8 0-16-7.2-16-16V320H480v16c0 8.8-7.2 16-16 16H432c-8.8 0-16-7.2-16-16V318.4c-11.8-2.4-22.7-7.4-32-14.4c-1.5-1.1-2.9-2.3-4.3-3.5c-17-14.7-27.7-36.4-27.7-60.5c0-8.8-7.2-16-16-16s-16 7.2-16 16c0 44.7 26.2 83.2 64 101.2V352c0 17.7 14.3 32 32 32h32v64c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V372c-19.8 7.7-41.4 12-64 12s-44.2-4.3-64-12v76c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V329.1L45.9 369.7c-5.4 12.1-19.6 17.6-31.7 12.2S-3.3 362.4 2.1 350.3L24 300.9c5.3-11.9 8-24.7 8-37.7C32 155.7 117.2 68 223.8 64.1l.2-.1h7.2H256h32c41.7 0 83.4 12.1 117.2 25.7c1.7-1.8 3.5-3.6 5.3-5.2L407 81c-9.4-9.4-9.4-24.6 0-33.9zm73 185c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24zm88 24c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24zM480 144c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zm48 16c8.8 0 16-7.2 16-16s-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16z"]},YQ={prefix:"fas",iconName:"chart-column",icon:[512,512,[],"e0e3","M32 32c17.7 0 32 14.3 32 32V400c0 8.8 7.2 16 16 16H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H80c-44.2 0-80-35.8-80-80V64C0 46.3 14.3 32 32 32zM160 224c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V256c0-17.7 14.3-32 32-32zm128-64V320c0 17.7-14.3 32-32 32s-32-14.3-32-32V160c0-17.7 14.3-32 32-32s32 14.3 32 32zm64 32c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V224c0-17.7 14.3-32 32-32zM480 96V320c0 17.7-14.3 32-32 32s-32-14.3-32-32V96c0-17.7 14.3-32 32-32s32 14.3 32 32z"]},JQ={prefix:"fas",iconName:"infinity",icon:[640,512,[8734,9854],"f534","M0 241.1C0 161 65 96 145.1 96c38.5 0 75.4 15.3 102.6 42.5L320 210.7l72.2-72.2C419.5 111.3 456.4 96 494.9 96C575 96 640 161 640 241.1v29.7C640 351 575 416 494.9 416c-38.5 0-75.4-15.3-102.6-42.5L320 301.3l-72.2 72.2C220.5 400.7 183.6 416 145.1 416C65 416 0 351 0 270.9V241.1zM274.7 256l-72.2-72.2c-15.2-15.2-35.9-23.8-57.4-23.8C100.3 160 64 196.3 64 241.1v29.7c0 44.8 36.3 81.1 81.1 81.1c21.5 0 42.2-8.5 57.4-23.8L274.7 256zm90.5 0l72.2 72.2c15.2 15.2 35.9 23.8 57.4 23.8c44.8 0 81.1-36.3 81.1-81.1V241.1c0-44.8-36.3-81.1-81.1-81.1c-21.5 0-42.2 8.5-57.4 23.8L365.3 256z"]},QQ={prefix:"fas",iconName:"vial-circle-check",icon:[512,512,[],"e596","M0 64C0 46.3 14.3 32 32 32H96h64 64c17.7 0 32 14.3 32 32s-14.3 32-32 32V266.8c-20.2 28.6-32 63.5-32 101.2c0 25.2 5.3 49.1 14.8 70.8C189.5 463.7 160.6 480 128 480c-53 0-96-43-96-96V96C14.3 96 0 81.7 0 64zM96 96v96h64V96H96zM512 368c0 79.5-64.5 144-144 144s-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144zm-76.7-43.3c-6.2-6.2-16.4-6.2-22.6 0L352 385.4l-28.7-28.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l40 40c6.2 6.2 16.4 6.2 22.6 0l72-72c6.2-6.2 6.2-16.4 0-22.6z"]},ZQ={prefix:"fas",iconName:"person-arrow-down-to-line",icon:[640,512,[],"e538","M192 96c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zm-8 352V352h16v96H184zm-64 0H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H152h80H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H264V256.9l28.6 47.5c9.1 15.1 28.8 20 43.9 10.9s20-28.8 10.9-43.9l-58.3-97c-17.4-28.9-48.6-46.6-82.3-46.6H177.1c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9L120 256.9V448zM464 64V306.7l-25.4-25.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l80 80c12.5 12.5 32.8 12.5 45.3 0l80-80c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L528 306.7V64c0-17.7-14.3-32-32-32s-32 14.3-32 32z"]},cZ={prefix:"fas",iconName:"voicemail",icon:[640,512,[],"f897","M144 160c44.2 0 80 35.8 80 80s-35.8 80-80 80s-80-35.8-80-80s35.8-80 80-80zM263.8 320c15.3-22.9 24.2-50.4 24.2-80c0-79.5-64.5-144-144-144S0 160.5 0 240s64.5 144 144 144H496c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144c0 29.6 8.9 57.1 24.2 80H263.8zM496 320c-44.2 0-80-35.8-80-80s35.8-80 80-80s80 35.8 80 80s-35.8 80-80 80z"]},eZ={prefix:"fas",iconName:"fan",icon:[512,512,[],"f863","M258.6 0c-1.7 0-3.4 .1-5.1 .5C168 17 115.6 102.3 130.5 189.3c2.9 17 8.4 32.9 15.9 47.4L32 224H29.4C13.2 224 0 237.2 0 253.4c0 1.7 .1 3.4 .5 5.1C17 344 102.3 396.4 189.3 381.5c17-2.9 32.9-8.4 47.4-15.9L224 480v2.6c0 16.2 13.2 29.4 29.4 29.4c1.7 0 3.4-.1 5.1-.5C344 495 396.4 409.7 381.5 322.7c-2.9-17-8.4-32.9-15.9-47.4L480 288h2.6c16.2 0 29.4-13.2 29.4-29.4c0-1.7-.1-3.4-.5-5.1C495 168 409.7 115.6 322.7 130.5c-17 2.9-32.9 8.4-47.4 15.9L288 32V29.4C288 13.2 274.8 0 258.6 0zM256 288c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},rZ={prefix:"fas",iconName:"person-walking-luggage",icon:[576,512,[],"e554","M432 96c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zM347.7 200.5c1-.4 1.9-.8 2.9-1.2l-16.9 63.5c-5.6 21.1-.1 43.6 14.7 59.7l70.7 77.1 22 88.1c4.3 17.1 21.7 27.6 38.8 23.3s27.6-21.7 23.3-38.8l-23-92.1c-1.9-7.8-5.8-14.9-11.2-20.8l-49.5-54 19.3-65.5 9.6 23c4.4 10.6 12.5 19.3 22.8 24.5l26.7 13.3c15.8 7.9 35 1.5 42.9-14.3s1.5-35-14.3-42.9L505 232.7l-15.3-36.8C472.5 154.8 432.3 128 387.7 128c-22.8 0-45.3 4.8-66.1 14l-8 3.5c-32.9 14.6-58.1 42.4-69.4 76.5l-2.6 7.8c-5.6 16.8 3.5 34.9 20.2 40.5s34.9-3.5 40.5-20.2l2.6-7.8c5.7-17.1 18.3-30.9 34.7-38.2l8-3.5zm-30 135.1l-25 62.4-59.4 59.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L340.3 441c4.6-4.6 8.2-10.1 10.6-16.1l14.5-36.2-40.7-44.4c-2.5-2.7-4.8-5.6-7-8.6zM256 274.1c-7.7-4.4-17.4-1.8-21.9 5.9l-32 55.4L147.7 304c-15.3-8.8-34.9-3.6-43.7 11.7L40 426.6c-8.8 15.3-3.6 34.9 11.7 43.7l55.4 32c15.3 8.8 34.9 3.6 43.7-11.7l64-110.9c1.5-2.6 2.6-5.2 3.3-8L261.9 296c4.4-7.7 1.8-17.4-5.9-21.9z"]},Cd={prefix:"fas",iconName:"up-down",icon:[256,512,[8597,11021,"arrows-alt-v"],"f338","M145.6 7.7C141 2.8 134.7 0 128 0s-13 2.8-17.6 7.7l-104 112c-6.5 7-8.2 17.2-4.4 25.9S14.5 160 24 160H80V352H24c-9.5 0-18.2 5.7-22 14.4s-2.1 18.9 4.4 25.9l104 112c4.5 4.9 10.9 7.7 17.6 7.7s13-2.8 17.6-7.7l104-112c6.5-7 8.2-17.2 4.4-25.9s-12.5-14.4-22-14.4H176V160h56c9.5 0 18.2-5.7 22-14.4s2.1-18.9-4.4-25.9l-104-112z"]},aZ=Cd,nZ={prefix:"fas",iconName:"cloud-moon-rain",icon:[640,512,[],"f73c","M513.2 0C449 0 395.5 46.5 385.7 107.6c35.4 17.6 60.2 53.3 62.1 95.1c23.2 11 42 29.7 53.1 52.7c4 .4 8.1 .6 12.3 .6c34.9 0 66.7-13.8 89.9-36.1c5.1-4.9 6.4-12.5 3.2-18.7s-10.1-9.7-17-8.6c-4.9 .8-10 1.3-15.2 1.3c-49 0-88.4-39.3-88.4-87.4c0-32.6 18-61.1 44.9-76.1c6.1-3.4 9.3-10.5 7.8-17.4s-7.3-12-14.3-12.6c-3.6-.3-7.3-.5-10.9-.5zM399.9 383.9c44.2 0 80-35.8 80-80c0-39.3-28.4-72.1-65.8-78.7c1.2-5.6 1.9-11.3 1.9-17.2c0-44.2-35.8-80-80-80c-17 0-32.8 5.3-45.8 14.4C273.3 114.6 242.8 96 208 96c-53 0-96 43-96 96l0 1.3c-45.4 7.6-80 47.1-80 94.6c0 53 43 96 96 96H399.9zM117.4 420.1c-11-7.4-25.9-4.4-33.3 6.7l-32 48c-7.4 11-4.4 25.9 6.7 33.3s25.9 4.4 33.3-6.7l32-48c7.4-11 4.4-25.9-6.7-33.3zm96 0c-11-7.4-25.9-4.4-33.3 6.7l-32 48c-7.4 11-4.4 25.9 6.7 33.3s25.9 4.4 33.3-6.7l32-48c7.4-11 4.4-25.9-6.7-33.3zm96 0c-11-7.4-25.9-4.4-33.3 6.7l-32 48c-7.4 11-4.4 25.9 6.7 33.3s25.9 4.4 33.3-6.7l32-48c7.4-11 4.4-25.9-6.7-33.3zm96 0c-11-7.4-25.9-4.4-33.3 6.7l-32 48c-7.4 11-4.4 25.9 6.7 33.3s25.9 4.4 33.3-6.7l32-48c7.4-11 4.4-25.9-6.7-33.3z"]},tZ={prefix:"fas",iconName:"calendar",icon:[448,512,[128197,128198],"f133","M96 32V64H48C21.5 64 0 85.5 0 112v48H448V112c0-26.5-21.5-48-48-48H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V64H160V32c0-17.7-14.3-32-32-32S96 14.3 96 32zM448 192H0V464c0 26.5 21.5 48 48 48H400c26.5 0 48-21.5 48-48V192z"]},sZ={prefix:"fas",iconName:"trailer",icon:[640,512,[],"e041","M48 32C21.5 32 0 53.5 0 80V336c0 26.5 21.5 48 48 48H65.1c7.8-54.3 54.4-96 110.9-96s103.1 41.7 110.9 96H488h8H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H544V80c0-26.5-21.5-48-48-48H48zM80 96c8.8 0 16 7.2 16 16l0 131.2c-11.4 5.9-22.2 12.9-32 21V112c0-8.8 7.2-16 16-16zm96 128c-5.4 0-10.7 .2-16 .7L160 112c0-8.8 7.2-16 16-16s16 7.2 16 16l0 112.7c-5.3-.5-10.6-.7-16-.7zm80 19.2L256 112c0-8.8 7.2-16 16-16s16 7.2 16 16l0 152.2c-9.8-8.1-20.6-15.2-32-21zM368 96c8.8 0 16 7.2 16 16l0 192c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-192c0-8.8 7.2-16 16-16zm112 16l0 192c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-192c0-8.8 7.2-16 16-16s16 7.2 16 16zM176 480c44.2 0 80-35.8 80-80s-35.8-80-80-80s-80 35.8-80 80s35.8 80 80 80zm0-48c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},Ld={prefix:"fas",iconName:"bahai",icon:[576,512,["haykal"],"f666","M288 0c14.5 0 27.2 9.7 30.9 23.8l23.9 89.6 75.9-53.3c11.9-8.3 27.8-7.6 39 1.7s14.6 24.9 8.4 38.1l-39.3 84 92.4 8c14.4 1.2 26.2 12 28.8 26.3s-4.9 28.5-18 34.6l-84.1 39.1 65.7 65.5c10.3 10.2 12.4 26.1 5.1 38.7s-22 18.7-36 14.9L391 386.8l8.2 92.4c1.3 14.4-7.3 27.9-20.9 32.9s-28.9 .1-37.2-11.7l-53.1-76-53.1 76c-8.3 11.9-23.6 16.7-37.2 11.7s-22.2-18.5-20.9-32.9l8.2-92.4L95.4 410.9c-14 3.8-28.8-2.3-36-14.9s-5.2-28.4 5.1-38.7l65.7-65.5L46 252.7c-13.1-6.1-20.5-20.3-18-34.6s14.3-25.1 28.8-26.3l92.4-8-39.3-84c-6.1-13.1-2.7-28.8 8.4-38.1s27.1-10 39-1.7l75.9 53.3 23.9-89.6C260.8 9.7 273.5 0 288 0zm0 156.2l-4.8 18c-2.7 10.1-10.2 18.2-20 21.8s-20.8 2.1-29.3-3.9l-15.2-10.7 7.9 16.8c4.4 9.5 4 20.5-1.3 29.6s-14.5 15-25 15.9l-18.5 1.6 16.8 7.8c9.5 4.4 16.2 13.2 18 23.5s-1.5 20.8-8.9 28.2l-13.2 13.1 17.9-4.8c10.1-2.7 20.9-.3 28.9 6.4s12.2 16.9 11.3 27.3l-1.6 18.5 10.6-15.2c6-8.6 15.8-13.7 26.2-13.7s20.2 5.1 26.2 13.7l10.6 15.2-1.6-18.5c-.9-10.4 3.3-20.6 11.3-27.3s18.8-9.1 28.9-6.4l17.9 4.8-13.2-13.1c-7.4-7.4-10.7-17.9-8.9-28.2s8.5-19.1 18-23.5l16.8-7.8-18.5-1.6c-10.4-.9-19.7-6.8-25-15.9s-5.7-20.1-1.3-29.6l7.9-16.8-15.2 10.7c-8.6 6-19.5 7.5-29.3 3.9s-17.3-11.7-20-21.8l-4.8-18z"]},iZ=Ld,oZ={prefix:"fas",iconName:"sd-card",icon:[384,512,[],"f7c2","M320 0H141.3C124.3 0 108 6.7 96 18.7L18.7 96C6.7 108 0 124.3 0 141.3V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zM160 88v48c0 13.3-10.7 24-24 24s-24-10.7-24-24V88c0-13.3 10.7-24 24-24s24 10.7 24 24zm80 0v48c0 13.3-10.7 24-24 24s-24-10.7-24-24V88c0-13.3 10.7-24 24-24s24 10.7 24 24zm80 0v48c0 13.3-10.7 24-24 24s-24-10.7-24-24V88c0-13.3 10.7-24 24-24s24 10.7 24 24z"]},fZ={prefix:"fas",iconName:"dragon",icon:[640,512,[128009],"f6d5","M352 124.5l-51.9-13c-6.5-1.6-11.3-7.1-12-13.8s2.8-13.1 8.7-16.1l40.8-20.4L294.4 28.8c-5.5-4.1-7.8-11.3-5.6-17.9S297.1 0 304 0H416h32 16c30.2 0 58.7 14.2 76.8 38.4l57.6 76.8c6.2 8.3 9.6 18.4 9.6 28.8c0 26.5-21.5 48-48 48H538.5c-17 0-33.3-6.7-45.3-18.7L480 160H448v21.5c0 24.8 12.8 47.9 33.8 61.1l106.6 66.6c32.1 20.1 51.6 55.2 51.6 93.1C640 462.9 590.9 512 530.2 512H496 432 32.3c-3.3 0-6.6-.4-9.6-1.4C13.5 507.8 6 501 2.4 492.1C1 488.7 .2 485.2 0 481.4c-.2-3.7 .3-7.3 1.3-10.7c2.8-9.2 9.6-16.7 18.6-20.4c3-1.2 6.2-2 9.5-2.2L433.3 412c8.3-.7 14.7-7.7 14.7-16.1c0-4.3-1.7-8.4-4.7-11.4l-44.4-44.4c-30-30-46.9-70.7-46.9-113.1V181.5v-57zM512 72.3c0-.1 0-.2 0-.3s0-.2 0-.3v.6zm-1.3 7.4L464.3 68.1c-.2 1.3-.3 2.6-.3 3.9c0 13.3 10.7 24 24 24c10.6 0 19.5-6.8 22.7-16.3zM130.9 116.5c16.3-14.5 40.4-16.2 58.5-4.1l130.6 87V227c0 32.8 8.4 64.8 24 93H112c-6.7 0-12.7-4.2-15-10.4s-.5-13.3 4.6-17.7L171 232.3 18.4 255.8c-7 1.1-13.9-2.6-16.9-9s-1.5-14.1 3.8-18.8L130.9 116.5z"]},lZ={prefix:"fas",iconName:"shoe-prints",icon:[640,512,[],"f54b","M416 0C352.3 0 256 32 256 32V160c48 0 76 16 104 32s56 32 104 32c56.4 0 176-16 176-96S512 0 416 0zM128 96c0 35.3 28.7 64 64 64h32V32H192c-35.3 0-64 28.7-64 64zM288 512c96 0 224-48 224-128s-119.6-96-176-96c-48 0-76 16-104 32s-56 32-104 32V480s96.3 32 160 32zM0 416c0 35.3 28.7 64 64 64H96V352H64c-35.3 0-64 28.7-64 64z"]},yd={prefix:"fas",iconName:"circle-plus",icon:[512,512,["plus-circle"],"f055","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM232 344V280H168c-13.3 0-24-10.7-24-24s10.7-24 24-24h64V168c0-13.3 10.7-24 24-24s24 10.7 24 24v64h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H280v64c0 13.3-10.7 24-24 24s-24-10.7-24-24z"]},uZ=yd,bd={prefix:"fas",iconName:"face-grin-tongue-wink",icon:[512,512,[128540,"grin-tongue-wink"],"f58b","M174.5 498.8C73.1 464.7 0 368.9 0 256C0 114.6 114.6 0 256 0S512 114.6 512 256c0 112.9-73.1 208.7-174.5 242.8C346.7 484 352 466.6 352 448V401.1c24.3-17.5 43.6-41.6 55.4-69.6c5-11.8-7-22.5-19.3-18.7c-39.7 12.2-84.5 19-131.8 19s-92.1-6.8-131.8-19c-12.3-3.8-24.3 6.9-19.3 18.7c11.7 27.8 30.8 51.7 54.8 69.2V448c0 18.6 5.3 36 14.5 50.8zm20.7-265.2c5.3 7.1 15.3 8.5 22.4 3.2s8.5-15.3 3.2-22.4c-30.4-40.5-91.2-40.5-121.6 0c-5.3 7.1-3.9 17.1 3.2 22.4s17.1 3.9 22.4-3.2c17.6-23.5 52.8-23.5 70.4 0zM336 272c35.3 0 64-28.7 64-64s-28.7-64-64-64s-64 28.7-64 64s28.7 64 64 64zM320 402.6V448c0 35.3-28.7 64-64 64s-64-28.7-64-64V402.6c0-14.7 11.9-26.6 26.6-26.6h2c11.3 0 21.1 7.9 23.6 18.9c2.8 12.6 20.8 12.6 23.6 0c2.5-11.1 12.3-18.9 23.6-18.9h2c14.7 0 26.6 11.9 26.6 26.6zM336 232c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24z"]},hZ=bd,pZ={prefix:"fas",iconName:"hand-holding",icon:[576,512,[],"f4bd","M559.7 392.2c17.8-13.1 21.6-38.1 8.5-55.9s-38.1-21.6-55.9-8.5L392.6 416H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h16 64c17.7 0 32-14.3 32-32s-14.3-32-32-32H288 272 193.7c-29.1 0-57.3 9.9-80 28L68.8 384H32c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H192 352.5c29 0 57.3-9.3 80.7-26.5l126.6-93.3zm-367-8.2c.3 0 .6 0 .9 0c0 0 0 0 0 0c-.3 0-.6 0-.9 0z"]},mZ={prefix:"fas",iconName:"plug-circle-exclamation",icon:[576,512,[],"e55d","M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8c12.3-2.5 24.1-6.4 35.1-11.5c-2.1-10.8-3.1-21.9-3.1-33.3c0-80.3 53.8-148 127.3-169.2c.5-2.2 .7-4.5 .7-6.8c0-17.7-14.3-32-32-32H32zM432 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm0-48c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zm0-192c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z"]},Ce={prefix:"fas",iconName:"link-slash",icon:[640,512,["chain-broken","chain-slash","unlink"],"f127","M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L489.3 358.2l90.5-90.5c56.5-56.5 56.5-148 0-204.5c-50-50-128.8-56.5-186.3-15.4l-1.6 1.1c-14.4 10.3-17.7 30.3-7.4 44.6s30.3 17.7 44.6 7.4l1.6-1.1c32.1-22.9 76-19.3 103.8 8.6c31.5 31.5 31.5 82.5 0 114l-96 96-31.9-25C430.9 239.6 420.1 175.1 377 132c-52.2-52.3-134.5-56.2-191.3-11.7L38.8 5.1zM239 162c30.1-14.9 67.7-9.9 92.8 15.3c20 20 27.5 48.3 21.7 74.5L239 162zM406.6 416.4L220.9 270c-2.1 39.8 12.2 80.1 42.2 110c38.9 38.9 94.4 51 143.6 36.3zm-290-228.5L60.2 244.3c-56.5 56.5-56.5 148 0 204.5c50 50 128.8 56.5 186.3 15.4l1.6-1.1c14.4-10.3 17.7-30.3 7.4-44.6s-30.3-17.7-44.6-7.4l-1.6 1.1c-32.1 22.9-76 19.3-103.8-8.6C74 372 74 321 105.5 289.5l61.8-61.8-50.6-39.9z"]},vZ=Ce,dZ=Ce,HZ=Ce,zZ={prefix:"fas",iconName:"clone",icon:[512,512,[],"f24d","M0 448c0 35.3 28.7 64 64 64H288c35.3 0 64-28.7 64-64V384H224c-53 0-96-43-96-96V160H64c-35.3 0-64 28.7-64 64V448zm224-96H448c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H224c-35.3 0-64 28.7-64 64V288c0 35.3 28.7 64 64 64z"]},gZ={prefix:"fas",iconName:"person-walking-arrow-loop-left",icon:[640,512,[],"e551","M208 96c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zM123.7 200.5c1-.4 1.9-.8 2.9-1.2l-16.9 63.5c-5.6 21.1-.1 43.6 14.7 59.7l70.7 77.1 22 88.1c4.3 17.1 21.7 27.6 38.8 23.3s27.6-21.7 23.3-38.8l-23-92.1c-1.9-7.8-5.8-14.9-11.2-20.8l-49.5-54 19.3-65.5 9.6 23c4.4 10.6 12.5 19.3 22.8 24.5l26.7 13.3c15.8 7.9 35 1.5 42.9-14.3s1.5-35-14.3-42.9L281 232.7l-15.3-36.8C248.5 154.8 208.3 128 163.7 128c-22.8 0-45.3 4.8-66.1 14l-8 3.5c-32.9 14.6-58.1 42.4-69.4 76.5l-2.6 7.8c-5.6 16.8 3.5 34.9 20.2 40.5s34.9-3.5 40.5-20.2l2.6-7.8c5.7-17.1 18.3-30.9 34.7-38.2l8-3.5zm-30 135.1L68.7 398 9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L116.3 441c4.6-4.6 8.2-10.1 10.6-16.1l14.5-36.2-40.7-44.4c-2.5-2.7-4.8-5.6-7-8.6zm347.7 119c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L461.3 384H480c88.4 0 160-71.6 160-160s-71.6-160-160-160L352 64c-17.7 0-32 14.3-32 32s14.3 32 32 32l128 0c53 0 96 43 96 96s-43 96-96 96H461.3l25.4-25.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-80 80c-12.5 12.5-12.5 32.8 0 45.3l80 80z"]},xd={prefix:"fas",iconName:"arrow-up-z-a",icon:[576,512,["sort-alpha-up-alt"],"f882","M183.6 42.4C177.5 35.8 169 32 160 32s-17.5 3.8-23.6 10.4l-88 96c-11.9 13-11.1 33.3 2 45.2s33.3 11.1 45.2-2L128 146.3V448c0 17.7 14.3 32 32 32s32-14.3 32-32V146.3l32.4 35.4c11.9 13 32.2 13.9 45.2 2s13.9-32.2 2-45.2l-88-96zM320 64c0 17.7 14.3 32 32 32h50.7l-73.4 73.4c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H429.3l73.4-73.4c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8H352c-17.7 0-32 14.3-32 32zm96 192c-12.1 0-23.2 6.8-28.6 17.7l-64 128-16 32c-7.9 15.8-1.5 35 14.3 42.9s35 1.5 42.9-14.3l7.2-14.3h88.4l7.2 14.3c7.9 15.8 27.1 22.2 42.9 14.3s22.2-27.1 14.3-42.9l-16-32-64-128C439.2 262.8 428.1 256 416 256zM395.8 400L416 359.6 436.2 400H395.8z"]},VZ=xd,Sd={prefix:"fas",iconName:"fire-flame-curved",icon:[384,512,["fire-alt"],"f7e4","M153.6 29.9l16-21.3C173.6 3.2 180 0 186.7 0C198.4 0 208 9.6 208 21.3V43.5c0 13.1 5.4 25.7 14.9 34.7L307.6 159C356.4 205.6 384 270.2 384 337.7C384 434 306 512 209.7 512H192C86 512 0 426 0 320v-3.8c0-48.8 19.4-95.6 53.9-130.1l3.5-3.5c4.2-4.2 10-6.6 16-6.6C85.9 176 96 186.1 96 198.6V288c0 35.3 28.7 64 64 64s64-28.7 64-64v-3.9c0-18-7.2-35.3-19.9-48l-38.6-38.6c-24-24-37.5-56.7-37.5-90.7c0-27.7 9-54.8 25.6-76.9z"]},MZ=Sd,CZ={prefix:"fas",iconName:"tornado",icon:[448,512,[127786],"f76f","M0 32V45.6C0 62.7 1.7 79.6 5 96H357.8c3.2-6.9 7.5-13.3 13-18.8l38.6-38.6c4.2-4.2 6.6-10 6.6-16C416 10.1 405.9 0 393.4 0H32C14.3 0 0 14.3 0 32zm352.2 96H13.6c12.2 35.9 32.3 68.7 58.8 96H412l-47.2-62.9c-7.3-9.7-11.6-21.2-12.6-33.1zm-226 138.2l116.4 68.5c8.2 4.8 15.8 10.7 22.5 17.3H445c2-9.8 3-19.9 3-30.1c0-23-5.3-45.5-15.3-65.9H110.2c5.2 3.6 10.5 7 16 10.2zM288 384c10.3 21.4 13.8 45.5 9.9 69l-5.9 35.7c-2 12.2 7.4 23.4 19.8 23.4c5.3 0 10.4-2.1 14.2-5.9l78.2-78.2c12.8-12.8 23.1-27.7 30.4-43.9H288z"]},LZ={prefix:"fas",iconName:"file-circle-plus",icon:[576,512,[58606],"e494","M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zm48 384c-79.5 0-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144s-64.5 144-144 144zm16-208c0-8.8-7.2-16-16-16s-16 7.2-16 16v48H368c-8.8 0-16 7.2-16 16s7.2 16 16 16h48v48c0 8.8 7.2 16 16 16s16-7.2 16-16V384h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H448V304z"]},wd={prefix:"fas",iconName:"book-quran",icon:[448,512,["quran"],"f687","M352 0c53 0 96 43 96 96V416c0 53-43 96-96 96H64 32c-17.7 0-32-14.3-32-32s14.3-32 32-32V384c-17.7 0-32-14.3-32-32V32C0 14.3 14.3 0 32 0H64 352zm0 384H96v64H352c17.7 0 32-14.3 32-32s-14.3-32-32-32zM274.1 150.2l-8.9 21.4-23.1 1.9c-5.7 .5-8 7.5-3.7 11.2L256 199.8l-5.4 22.6c-1.3 5.5 4.7 9.9 9.6 6.9L280 217.2l19.8 12.1c4.9 3 10.9-1.4 9.6-6.9L304 199.8l17.6-15.1c4.3-3.7 2-10.8-3.7-11.2l-23.1-1.9-8.9-21.4c-2.2-5.3-9.6-5.3-11.8 0zM96 192c0 70.7 57.3 128 128 128c25.6 0 49.5-7.5 69.5-20.5c3.2-2.1 4.5-6.2 3.1-9.7s-5.2-5.6-9-4.8c-6.1 1.2-12.5 1.9-19 1.9c-52.4 0-94.9-42.5-94.9-94.9s42.5-94.9 94.9-94.9c6.5 0 12.8 .7 19 1.9c3.8 .8 7.5-1.3 9-4.8s.2-7.6-3.1-9.7C273.5 71.5 249.6 64 224 64C153.3 64 96 121.3 96 192z"]},yZ=wd,bZ={prefix:"fas",iconName:"anchor",icon:[576,512,[9875],"f13d","M256 96c0-17.7 14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32s-32-14.3-32-32zm85.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h32V448H208c-53 0-96-43-96-96v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7V352c0 88.4 71.6 160 160 160h80 80c88.4 0 160-71.6 160-160v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-56-56c-9.4-9.4-24.6-9.4-33.9 0l-56 56c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7V352c0 53-43 96-96 96H320V240h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H341.1z"]},xZ={prefix:"fas",iconName:"border-all",icon:[448,512,[],"f84c","M384 96V224H256V96H384zm0 192V416H256V288H384zM192 224H64V96H192V224zM64 288H192V416H64V288zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64z"]},Nd={prefix:"fas",iconName:"face-angry",icon:[512,512,[128544,"angry"],"f556","M512 256c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0S512 114.6 512 256zM161.3 382.1c-5.4 12.3 8.7 21.6 21.1 16.4c22.4-9.5 47.4-14.8 73.7-14.8s51.3 5.3 73.7 14.8c12.4 5.2 26.5-4.1 21.1-16.4c-16-36.6-52.4-62.1-94.8-62.1s-78.8 25.6-94.8 62.1zM176.4 272c17.7 0 32-14.3 32-32c0-1.5-.1-3-.3-4.4l10.9 3.6c8.4 2.8 17.4-1.7 20.2-10.1s-1.7-17.4-10.1-20.2l-96-32c-8.4-2.8-17.4 1.7-20.2 10.1s1.7 17.4 10.1 20.2l30.7 10.2c-5.8 5.8-9.3 13.8-9.3 22.6c0 17.7 14.3 32 32 32zm192-32c0-8.9-3.6-17-9.5-22.8l30.2-10.1c8.4-2.8 12.9-11.9 10.1-20.2s-11.9-12.9-20.2-10.1l-96 32c-8.4 2.8-12.9 11.9-10.1 20.2s11.9 12.9 20.2 10.1l11.7-3.9c-.2 1.5-.3 3.1-.3 4.7c0 17.7 14.3 32 32 32s32-14.3 32-32z"]},SZ=Nd,wZ={prefix:"fas",iconName:"cookie-bite",icon:[512,512,[],"f564","M257.5 27.6c-.8-5.4-4.9-9.8-10.3-10.6c-22.1-3.1-44.6 .9-64.4 11.4l-74 39.5C89.1 78.4 73.2 94.9 63.4 115L26.7 190.6c-9.8 20.1-13 42.9-9.1 64.9l14.5 82.8c3.9 22.1 14.6 42.3 30.7 57.9l60.3 58.4c16.1 15.6 36.6 25.6 58.7 28.7l83 11.7c22.1 3.1 44.6-.9 64.4-11.4l74-39.5c19.7-10.5 35.6-27 45.4-47.2l36.7-75.5c9.8-20.1 13-42.9 9.1-64.9c-.9-5.3-5.3-9.3-10.6-10.1c-51.5-8.2-92.8-47.1-104.5-97.4c-1.8-7.6-8-13.4-15.7-14.6c-54.6-8.7-97.7-52-106.2-106.8zM208 208c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm0 128c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},NZ={prefix:"fas",iconName:"arrow-trend-down",icon:[576,512,[],"e097","M384 352c-17.7 0-32 14.3-32 32s14.3 32 32 32H544c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v82.7L342.6 137.4c-12.5-12.5-32.8-12.5-45.3 0L192 242.7 54.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0L320 205.3 466.7 352H384z"]},Ad={prefix:"fas",iconName:"rss",icon:[448,512,["feed"],"f09e","M0 64C0 46.3 14.3 32 32 32c229.8 0 416 186.2 416 416c0 17.7-14.3 32-32 32s-32-14.3-32-32C384 253.6 226.4 96 32 96C14.3 96 0 81.7 0 64zM128 416c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zM32 160c159.1 0 288 128.9 288 288c0 17.7-14.3 32-32 32s-32-14.3-32-32c0-123.7-100.3-224-224-224c-17.7 0-32-14.3-32-32s14.3-32 32-32z"]},AZ=Ad,_Z={prefix:"fas",iconName:"draw-polygon",icon:[448,512,[],"f5ee","M96 151.4V360.6c9.7 5.6 17.8 13.7 23.4 23.4H328.6c0-.1 .1-.2 .1-.3l-4.5-7.9-32-56 0 0c-1.4 .1-2.8 .1-4.2 .1c-35.3 0-64-28.7-64-64s28.7-64 64-64c1.4 0 2.8 0 4.2 .1l0 0 32-56 4.5-7.9-.1-.3H119.4c-5.6 9.7-13.7 17.8-23.4 23.4zM384.3 352c35.2 .2 63.7 28.7 63.7 64c0 35.3-28.7 64-64 64c-23.7 0-44.4-12.9-55.4-32H119.4c-11.1 19.1-31.7 32-55.4 32c-35.3 0-64-28.7-64-64c0-23.7 12.9-44.4 32-55.4V151.4C12.9 140.4 0 119.7 0 96C0 60.7 28.7 32 64 32c23.7 0 44.4 12.9 55.4 32H328.6c11.1-19.1 31.7-32 55.4-32c35.3 0 64 28.7 64 64c0 35.3-28.5 63.8-63.7 64l-4.5 7.9-32 56-2.3 4c4.2 8.5 6.5 18 6.5 28.1s-2.3 19.6-6.5 28.1l2.3 4 32 56 4.5 7.9z"]},_d={prefix:"fas",iconName:"scale-balanced",icon:[640,512,[9878,"balance-scale"],"f24e","M384 32H512c17.7 0 32 14.3 32 32s-14.3 32-32 32H398.4c-5.2 25.8-22.9 47.1-46.4 57.3V448H512c17.7 0 32 14.3 32 32s-14.3 32-32 32H320 128c-17.7 0-32-14.3-32-32s14.3-32 32-32H288V153.3c-23.5-10.3-41.2-31.6-46.4-57.3H128c-17.7 0-32-14.3-32-32s14.3-32 32-32H256c14.6-19.4 37.8-32 64-32s49.4 12.6 64 32zM125.8 177.3L51.1 320H204.9L130.2 177.3c-.4-.8-1.3-1.3-2.2-1.3s-1.7 .5-2.2 1.3zM128 128c18.8 0 36 10.4 44.7 27l77.8 148.5c3.1 5.8 6.1 14 5.5 23.8c-.7 12.1-4.8 35.2-24.8 55.1C210.9 402.6 178.2 416 128 416s-82.9-13.4-103.2-33.5c-20-20-24.2-43-24.8-55.1c-.6-9.8 2.5-18 5.5-23.8L83.3 155c8.7-16.6 25.9-27 44.7-27zm384 48c-.9 0-1.7 .5-2.2 1.3L435.1 320H588.9L514.2 177.3c-.4-.8-1.3-1.3-2.2-1.3zm-44.7-21c8.7-16.6 25.9-27 44.7-27s36 10.4 44.7 27l77.8 148.5c3.1 5.8 6.1 14 5.5 23.8c-.7 12.1-4.8 35.2-24.8 55.1C594.9 402.6 562.2 416 512 416s-82.9-13.4-103.2-33.5c-20-20-24.2-43-24.8-55.1c-.6-9.8 2.5-18 5.5-23.8L467.3 155z"]},kZ=_d,tn={prefix:"fas",iconName:"gauge-simple-high",icon:[512,512,[61668,"tachometer","tachometer-fast"],"f62a","M512 256c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0S512 114.6 512 256zM320 352c0-15.9-5.8-30.4-15.3-41.6l76.6-147.4c6.1-11.8 1.5-26.3-10.2-32.4s-26.2-1.5-32.4 10.2L262.1 288.3c-2-.2-4-.3-6.1-.3c-35.3 0-64 28.7-64 64s28.7 64 64 64s64-28.7 64-64z"]},TZ=tn,PZ=tn,EZ={prefix:"fas",iconName:"shower",icon:[512,512,[128703],"f2cc","M64 131.9C64 112.1 80.1 96 99.9 96c9.5 0 18.6 3.8 25.4 10.5l16.2 16.2c-21 38.9-17.4 87.5 10.9 123L151 247c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0L345 121c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-1.3 1.3c-35.5-28.3-84.1-31.9-123-10.9L170.5 61.3C151.8 42.5 126.4 32 99.9 32C44.7 32 0 76.7 0 131.9V448c0 17.7 14.3 32 32 32s32-14.3 32-32V131.9zM256 352c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm64 64c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zm0-128c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm64 64c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zm0-128c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm64 64c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zm32-32c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z"]},kd={prefix:"fas",iconName:"desktop",icon:[576,512,[128421,61704,"desktop-alt"],"f390","M64 0C28.7 0 0 28.7 0 64V352c0 35.3 28.7 64 64 64H240l-10.7 32H160c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H346.7L336 416H512c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM512 64V288H64V64H512z"]},OZ=kd,RZ={prefix:"fas",iconName:"m",icon:[448,512,[109],"4d","M22.7 33.4c13.5-4.1 28.1 1.1 35.9 12.9L224 294.3 389.4 46.2c7.8-11.7 22.4-17 35.9-12.9S448 49.9 448 64V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V169.7L250.6 369.8c-5.9 8.9-15.9 14.2-26.6 14.2s-20.7-5.3-26.6-14.2L64 169.7V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V64C0 49.9 9.2 37.5 22.7 33.4z"]},Td={prefix:"fas",iconName:"table-list",icon:[512,512,["th-list"],"f00b","M0 96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm64 0v64h64V96H64zm384 0H192v64H448V96zM64 224v64h64V224H64zm384 0H192v64H448V224zM64 352v64h64V352H64zm384 0H192v64H448V352z"]},FZ=Td,Pd={prefix:"fas",iconName:"comment-sms",icon:[512,512,["sms"],"f7cd","M256 448c141.4 0 256-93.1 256-208S397.4 32 256 32S0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9c-1.9 24.5-11.4 46.3-21.4 62.9c-5.5 9.2-11.1 16.6-15.2 21.6c-2.1 2.5-3.7 4.4-4.9 5.7c-.6 .6-1 1.1-1.3 1.4l-.3 .3 0 0 0 0 0 0 0 0c-4.6 4.6-5.9 11.4-3.4 17.4c2.5 6 8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3c22.9-10 42.4-21.9 54.3-30.6c31.8 11.5 67 17.9 104.1 17.9zM202.9 176.8c6.5-2.2 13.7 .1 17.9 5.6L256 229.3l35.2-46.9c4.1-5.5 11.3-7.8 17.9-5.6s10.9 8.3 10.9 15.2v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V240l-19.2 25.6c-3 4-7.8 6.4-12.8 6.4s-9.8-2.4-12.8-6.4L224 240v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V192c0-6.9 4.4-13 10.9-15.2zm173.1 38c0 .2 0 .4 0 .4c.1 .1 .6 .8 2.2 1.7c3.9 2.3 9.6 4.1 18.3 6.8l.6 .2c7.4 2.2 17.3 5.2 25.2 10.2c9.1 5.7 17.4 15.2 17.6 29.9c.2 15-7.6 26-17.8 32.3c-9.5 5.9-20.9 7.9-30.7 7.6c-12.2-.4-23.7-4.4-32.6-7.4l0 0 0 0c-1.4-.5-2.7-.9-4-1.4c-8.4-2.8-12.9-11.9-10.1-20.2s11.9-12.9 20.2-10.1c1.7 .6 3.3 1.1 4.9 1.6l0 0 0 0c9.1 3.1 15.6 5.3 22.6 5.5c5.3 .2 10-1 12.8-2.8c1.2-.8 1.8-1.5 2.1-2c.2-.4 .6-1.2 .6-2.7l0-.2c0-.7 0-1.4-2.7-3.1c-3.8-2.4-9.6-4.3-18-6.9l-1.2-.4c-7.2-2.2-16.7-5-24.3-9.6c-9-5.4-17.7-14.7-17.7-29.4c-.1-15.2 8.6-25.7 18.5-31.6c9.4-5.5 20.5-7.5 29.7-7.4c10 .2 19.7 2.3 27.9 4.4c8.5 2.3 13.6 11 11.3 19.6s-11 13.6-19.6 11.3c-7.3-1.9-14.1-3.3-20.1-3.4c-4.9-.1-9.8 1.1-12.9 2.9c-1.4 .8-2.1 1.6-2.4 2c-.2 .3-.4 .8-.4 1.9zm-272 0c0 .2 0 .4 0 .4c.1 .1 .6 .8 2.2 1.7c3.9 2.3 9.6 4.1 18.3 6.8l.6 .2c7.4 2.2 17.3 5.2 25.2 10.2c9.1 5.7 17.4 15.2 17.6 29.9c.2 15-7.6 26-17.8 32.3c-9.5 5.9-20.9 7.9-30.7 7.6c-12.3-.4-24.2-4.5-33.2-7.6l0 0 0 0c-1.3-.4-2.5-.8-3.6-1.2c-8.4-2.8-12.9-11.9-10.1-20.2s11.9-12.9 20.2-10.1c1.4 .5 2.7 .9 4 1.4l0 0 0 0 0 0c9.5 3.2 16.5 5.6 23.7 5.8c5.3 .2 10-1 12.8-2.8c1.2-.8 1.8-1.5 2.1-2c.2-.4 .6-1.2 .6-2.7l0-.2c0-.7 0-1.4-2.7-3.1c-3.8-2.4-9.6-4.3-18-6.9l-1.2-.4 0 0c-7.2-2.2-16.7-5-24.3-9.6C80.8 239 72.1 229.7 72 215c-.1-15.2 8.6-25.7 18.5-31.6c9.4-5.5 20.5-7.5 29.7-7.4c9.5 .1 22.2 2.1 31.1 4.4c8.5 2.3 13.6 11 11.3 19.6s-11 13.6-19.6 11.3c-6.6-1.8-16.8-3.3-23.3-3.4c-4.9-.1-9.8 1.1-12.9 2.9c-1.4 .8-2.1 1.6-2.4 2c-.2 .3-.4 .8-.4 1.9z"]},BZ=Pd,DZ={prefix:"fas",iconName:"book",icon:[448,512,[128212],"f02d","M96 0C43 0 0 43 0 96V416c0 53 43 96 96 96H384h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V384c17.7 0 32-14.3 32-32V32c0-17.7-14.3-32-32-32H384 96zm0 384H352v64H96c-17.7 0-32-14.3-32-32s14.3-32 32-32zm32-240c0-8.8 7.2-16 16-16H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H144c-8.8 0-16-7.2-16-16zm16 48H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H144c-8.8 0-16-7.2-16-16s7.2-16 16-16z"]},IZ={prefix:"fas",iconName:"user-plus",icon:[640,512,[],"f234","M352 128c0 70.7-57.3 128-128 128s-128-57.3-128-128S153.3 0 224 0s128 57.3 128 128zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM504 312V248H440c-13.3 0-24-10.7-24-24s10.7-24 24-24h64V136c0-13.3 10.7-24 24-24s24 10.7 24 24v64h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H552v64c0 13.3-10.7 24-24 24s-24-10.7-24-24z"]},UZ={prefix:"fas",iconName:"check",icon:[512,512,[10003,10004],"f00c","M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"]},Ed={prefix:"fas",iconName:"battery-three-quarters",icon:[576,512,["battery-4"],"f241","M0 176c0-44.2 35.8-80 80-80H464c44.2 0 80 35.8 80 80v16c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32v16c0 44.2-35.8 80-80 80H80c-44.2 0-80-35.8-80-80V176zm80-16c-8.8 0-16 7.2-16 16V336c0 8.8 7.2 16 16 16H464c8.8 0 16-7.2 16-16V176c0-8.8-7.2-16-16-16H80zm272 32V320H96V192H352z"]},WZ=Ed,$Z={prefix:"fas",iconName:"house-circle-check",icon:[640,512,[],"e509","M320.7 351.7C329 262.1 404.3 192 496 192c8.9 0 17.6 .7 26.1 1.9L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32V480c0 17.7 14.3 32 32 32H192c17.7 0 32-14.3 32-32V383.7c0-17.7 14.3-32 32-32h64l.7 0zM640 368c0-79.5-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144s144-64.5 144-144zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z"]},qZ={prefix:"fas",iconName:"angle-left",icon:[320,512,[8249],"f104","M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 246.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z"]},GZ={prefix:"fas",iconName:"diagram-successor",icon:[512,512,[],"e47a","M512 416l0-64c0-35.3-28.7-64-64-64L64 288c-35.3 0-64 28.7-64 64l0 64c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64zM64 160l0-64 144 0 16 0 0 64L64 160zm224 0l0-64 80 0c8.8 0 16 7.2 16 16l0 16-38.1 0c-21.4 0-32.1 25.9-17 41L399 239c9.4 9.4 24.6 9.4 33.9 0L503 169c15.1-15.1 4.4-41-17-41L448 128l0-16c0-44.2-35.8-80-80-80L224 32l-16 0L64 32C28.7 32 0 60.7 0 96l0 64c0 35.3 28.7 64 64 64l160 0c35.3 0 64-28.7 64-64z"]},jZ={prefix:"fas",iconName:"truck-arrow-right",icon:[640,512,[],"e58b","M0 48C0 21.5 21.5 0 48 0H368c26.5 0 48 21.5 48 48V96h50.7c17 0 33.3 6.7 45.3 18.7L589.3 192c12 12 18.7 28.3 18.7 45.3V256v32 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H576c0 53-43 96-96 96s-96-43-96-96H256c0 53-43 96-96 96s-96-43-96-96H48c-26.5 0-48-21.5-48-48V48zM416 256H544V237.3L466.7 160H416v96zM160 464c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zm368-48c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM257 95c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l39 39H96c-13.3 0-24 10.7-24 24s10.7 24 24 24H262.1l-39 39c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l80-80c9.4-9.4 9.4-24.6 0-33.9L257 95z"]},KZ={prefix:"fas",iconName:"arrows-split-up-and-left",icon:[512,512,[],"e4bc","M246.6 150.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l96-96c12.5-12.5 32.8-12.5 45.3 0l96 96c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L352 109.3V384c0 35.3 28.7 64 64 64h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H416c-70.7 0-128-57.3-128-128c0-35.3-28.7-64-64-64H109.3l41.4 41.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-96-96c-12.5-12.5-12.5-32.8 0-45.3l96-96c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L109.3 256H224c23.3 0 45.2 6.2 64 17.1V109.3l-41.4 41.4z"]},Od={prefix:"fas",iconName:"hand-fist",icon:[384,512,[9994,"fist-raised"],"f6de","M160 0c17.7 0 32 14.3 32 32V144H128V32c0-17.7 14.3-32 32-32zM32 64c0-17.7 14.3-32 32-32s32 14.3 32 32v80H32V64zm192 0c0-17.7 14.3-32 32-32s32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V64zm96 64c0-17.7 14.3-32 32-32s32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V128zm-96 88l0-.6c9.4 5.4 20.3 8.6 32 8.6c13.2 0 25.4-4 35.6-10.8c8.7 24.9 32.5 42.8 60.4 42.8c11.7 0 22.6-3.1 32-8.6V256c0 52.3-25.1 98.8-64 128v96c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32V401.6c-17.3-7.9-33.2-18.8-46.9-32.5L37.5 357.5C13.5 333.5 0 300.9 0 267V240c0-35.3 28.7-64 64-64h88c22.1 0 40 17.9 40 40s-17.9 40-40 40H96c-8.8 0-16 7.2-16 16s7.2 16 16 16h56c39.8 0 72-32.2 72-72z"]},XZ=Od,YZ={prefix:"fas",iconName:"cloud-moon",icon:[640,512,[],"f6c3","M495.8 0c5.5 0 10.9 .2 16.3 .7c7 .6 12.8 5.7 14.3 12.5s-1.6 13.9-7.7 17.3c-44.4 25.2-74.4 73-74.4 127.8c0 81 65.5 146.6 146.2 146.6c8.6 0 17-.7 25.1-2.1c6.9-1.2 13.8 2.2 17 8.5s1.9 13.8-3.1 18.7c-34.5 33.6-81.7 54.4-133.6 54.4c-9.3 0-18.4-.7-27.4-1.9c-11.2-22.6-29.8-40.9-52.6-51.7c-2.7-58.5-50.3-105.3-109.2-106.7c-1.7-10.4-2.6-21-2.6-31.8C304 86.1 389.8 0 495.8 0zM447.9 431.9c0 44.2-35.8 80-80 80H96c-53 0-96-43-96-96c0-47.6 34.6-87 80-94.6l0-1.3c0-53 43-96 96-96c34.9 0 65.4 18.6 82.2 46.4c13-9.1 28.8-14.4 45.8-14.4c44.2 0 80 35.8 80 80c0 5.9-.6 11.7-1.9 17.2c37.4 6.7 65.8 39.4 65.8 78.7z"]},JZ={prefix:"fas",iconName:"briefcase",icon:[512,512,[128188],"f0b1","M184 48H328c4.4 0 8 3.6 8 8V96H176V56c0-4.4 3.6-8 8-8zm-56 8V96H64C28.7 96 0 124.7 0 160v96H192 320 512V160c0-35.3-28.7-64-64-64H384V56c0-30.9-25.1-56-56-56H184c-30.9 0-56 25.1-56 56zM512 288H320v32c0 17.7-14.3 32-32 32H224c-17.7 0-32-14.3-32-32V288H0V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V288z"]},QZ={prefix:"fas",iconName:"person-falling",icon:[512,512,[],"e546","M288 0c17.7 0 32 14.3 32 32l0 9.8c0 54.6-27.9 104.6-72.5 133.6l.2 .3L304.5 256l87.5 0c15.1 0 29.3 7.1 38.4 19.2l43.2 57.6c10.6 14.1 7.7 34.2-6.4 44.8s-34.2 7.7-44.8-6.4L384 320l-96 0h-1.4l92.3 142.6c9.6 14.8 5.4 34.6-9.5 44.3s-34.6 5.4-44.3-9.5L164.5 249.2c-2.9 9.2-4.5 19-4.5 29l0 73.8c0 17.7-14.3 32-32 32s-32-14.3-32-32V278.2c0-65.1 39.6-123.7 100.1-147.9C232.3 115.8 256 80.8 256 41.8l0-9.8c0-17.7 14.3-32 32-32zM112 128c-26.5 0-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48s-21.5 48-48 48z"]},Rd={prefix:"fas",iconName:"image-portrait",icon:[384,512,["portrait"],"f3e0","M384 64c0-35.3-28.7-64-64-64H64C28.7 0 0 28.7 0 64L0 448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64l0-384zM256 192c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zM80 356.6c0-37.9 30.7-68.6 68.6-68.6h86.9c37.9 0 68.6 30.7 68.6 68.6c0 15.1-12.3 27.4-27.4 27.4H107.4C92.3 384 80 371.7 80 356.6z"]},ZZ=Rd,c22={prefix:"fas",iconName:"user-tag",icon:[640,512,[],"f507","M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0S96 57.3 96 128s57.3 128 128 128zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c10 0 18.8-4.9 24.2-12.5l-99.2-99.2c-14.9-14.9-23.3-35.1-23.3-56.1v-33c-15.9-4.7-32.8-7.2-50.3-7.2H178.3zM384 224c-17.7 0-32 14.3-32 32v82.7c0 17 6.7 33.3 18.7 45.3L478.1 491.3c18.7 18.7 49.1 18.7 67.9 0l73.4-73.4c18.7-18.7 18.7-49.1 0-67.9L512 242.7c-12-12-28.3-18.7-45.3-18.7H384zm72 80c0 13.3-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24z"]},e22={prefix:"fas",iconName:"rug",icon:[640,512,[],"e569","M24 64H56 80V88v88 80 80 88 24H56 24c-13.3 0-24-10.7-24-24s10.7-24 24-24h8V360H24c-13.3 0-24-10.7-24-24s10.7-24 24-24h8V280H24c-13.3 0-24-10.7-24-24s10.7-24 24-24h8V200H24c-13.3 0-24-10.7-24-24s10.7-24 24-24h8V112H24C10.7 112 0 101.3 0 88S10.7 64 24 64zm88 0H528V448H112V64zM640 88c0 13.3-10.7 24-24 24h-8v40h8c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8v32h8c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8v32h8c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8v40h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H584 560V424 336 256 176 88 64h24 32c13.3 0 24 10.7 24 24z"]},Fd={prefix:"fas",iconName:"earth-europe",icon:[512,512,["globe-europe"],"f7a2","M266.3 48.3L232.5 73.6c-5.4 4-8.5 10.4-8.5 17.1v9.1c0 6.8 5.5 12.3 12.3 12.3c2.4 0 4.8-.7 6.8-2.1l41.8-27.9c2-1.3 4.4-2.1 6.8-2.1h1c6.2 0 11.3 5.1 11.3 11.3c0 3-1.2 5.9-3.3 8l-19.9 19.9c-5.8 5.8-12.9 10.2-20.7 12.8l-26.5 8.8c-5.8 1.9-9.6 7.3-9.6 13.4c0 3.7-1.5 7.3-4.1 10l-17.9 17.9c-6.4 6.4-9.9 15-9.9 24v4.3c0 16.4 13.6 29.7 29.9 29.7c11 0 21.2-6.2 26.1-16l4-8.1c2.4-4.8 7.4-7.9 12.8-7.9c4.5 0 8.7 2.1 11.4 5.7l16.3 21.7c2.1 2.9 5.5 4.5 9.1 4.5c8.4 0 13.9-8.9 10.1-16.4l-1.1-2.3c-3.5-7 0-15.5 7.5-18l21.2-7.1c7.6-2.5 12.7-9.6 12.7-17.6c0-10.3 8.3-18.6 18.6-18.6H400c8.8 0 16 7.2 16 16s-7.2 16-16 16H379.3c-7.2 0-14.2 2.9-19.3 8l-4.7 4.7c-2.1 2.1-3.3 5-3.3 8c0 6.2 5.1 11.3 11.3 11.3h11.3c6 0 11.8 2.4 16 6.6l6.5 6.5c1.8 1.8 2.8 4.3 2.8 6.8s-1 5-2.8 6.8l-7.5 7.5C386 262 384 266.9 384 272s2 10 5.7 13.7L408 304c10.2 10.2 24.1 16 38.6 16H454c6.5-20.2 10-41.7 10-64c0-111.4-87.6-202.4-197.7-207.7zm172 307.9c-3.7-2.6-8.2-4.1-13-4.1c-6 0-11.8-2.4-16-6.6L396 332c-7.7-7.7-18-12-28.9-12c-9.7 0-19.2-3.5-26.6-9.8L314 287.4c-11.6-9.9-26.4-15.4-41.6-15.4H251.4c-12.6 0-25 3.7-35.5 10.7L188.5 301c-17.8 11.9-28.5 31.9-28.5 53.3v3.2c0 17 6.7 33.3 18.7 45.3l16 16c8.5 8.5 20 13.3 32 13.3H248c13.3 0 24 10.7 24 24c0 2.5 .4 5 1.1 7.3c71.3-5.8 132.5-47.6 165.2-107.2zM512 256c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0S512 114.6 512 256zM187.3 100.7c-6.2-6.2-16.4-6.2-22.6 0l-32 32c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l32-32c6.2-6.2 6.2-16.4 0-22.6z"]},r22=Fd,Bd={prefix:"fas",iconName:"cart-flatbed-suitcase",icon:[640,512,["luggage-cart"],"f59d","M0 32C0 14.3 14.3 0 32 0H48c44.2 0 80 35.8 80 80V368c0 8.8 7.2 16 16 16H608c17.7 0 32 14.3 32 32s-14.3 32-32 32H541.3c1.8 5 2.7 10.4 2.7 16c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-5.6 1-11 2.7-16H253.3c1.8 5 2.7 10.4 2.7 16c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-5.6 1-11 2.7-16H144c-44.2 0-80-35.8-80-80V80c0-8.8-7.2-16-16-16H32C14.3 64 0 49.7 0 32zM432 96V56c0-4.4-3.6-8-8-8H344c-4.4 0-8 3.6-8 8V96h96zM288 96V56c0-30.9 25.1-56 56-56h80c30.9 0 56 25.1 56 56V96 320H288V96zM512 320V96h16c26.5 0 48 21.5 48 48V272c0 26.5-21.5 48-48 48H512zM240 96h16V320H240c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48z"]},a22=Bd,Le={prefix:"fas",iconName:"rectangle-xmark",icon:[512,512,[62164,"rectangle-times","times-rectangle","window-close"],"f410","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM175 175c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z"]},n22=Le,t22=Le,s22=Le,i22={prefix:"fas",iconName:"baht-sign",icon:[320,512,[],"e0ac","M144 0c-17.7 0-32 14.3-32 32V64H37.6C16.8 64 0 80.8 0 101.6V224v41.7V288 406.3c0 23 18.7 41.7 41.7 41.7H112v32c0 17.7 14.3 32 32 32s32-14.3 32-32V448h32c61.9 0 112-50.1 112-112c0-40.1-21.1-75.3-52.7-95.1C280.3 222.6 288 200.2 288 176c0-61.9-50.1-112-112-112V32c0-17.7-14.3-32-32-32zM112 128v96H64V128h48zm64 96V128c26.5 0 48 21.5 48 48s-21.5 48-48 48zm-64 64v96H64V288h48zm64 96V288h32c26.5 0 48 21.5 48 48s-21.5 48-48 48H176z"]},o22={prefix:"fas",iconName:"book-open",icon:[576,512,[128214,128366],"f518","M249.6 471.5c10.8 3.8 22.4-4.1 22.4-15.5V78.6c0-4.2-1.6-8.4-5-11C247.4 52 202.4 32 144 32C87.5 32 35.1 48.6 9 59.9c-5.6 2.4-9 8-9 14V454.1c0 11.9 12.8 20.2 24.1 16.5C55.6 460.1 105.5 448 144 448c33.9 0 79 14 105.6 23.5zm76.8 0C353 462 398.1 448 432 448c38.5 0 88.4 12.1 119.9 22.6c11.3 3.8 24.1-4.6 24.1-16.5V73.9c0-6.1-3.4-11.6-9-14C540.9 48.6 488.5 32 432 32c-58.4 0-103.4 20-123 35.6c-3.3 2.6-5 6.8-5 11V456c0 11.4 11.7 19.3 22.4 15.5z"]},Dd={prefix:"fas",iconName:"book-journal-whills",icon:[448,512,["journal-whills"],"f66a","M0 96C0 43 43 0 96 0H384h32c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384 96c-53 0-96-43-96-96V96zM64 416c0 17.7 14.3 32 32 32H352V384H96c-17.7 0-32 14.3-32 32zm90.4-234.4l-21.2-21.2c-3 10.1-5.1 20.6-5.1 31.6c0 .2 0 .5 .1 .8s.1 .5 .1 .8L165.2 226c2.5 2.1 3.4 5.8 2.3 8.9c-1.3 3-4.1 5.1-7.5 5.1c-1.9-.1-3.8-.8-5.2-2l-23.6-20.6C142.8 267 186.9 304 240 304s97.3-37 108.9-86.6L325.3 238c-1.4 1.2-3.3 2-5.3 2c-2.2-.1-4.4-1.1-6-2.8c-1.3-1.5-1.9-3.4-2-5.2c.1-2.2 1.1-4.4 2.7-6l37.1-32.5c0-.3 0-.5 .1-.8s.1-.5 .1-.8c0-11-2.1-21.5-5.1-31.6l-21.2 21.2c-3.1 3.1-8.1 3.1-11.3 0s-3.1-8.1 0-11.2l26.4-26.5c-10-20.7-26.1-38-46.4-49.2c17 27.1 11 62.8-14 82.6c14.1 14.6 19.1 35.9 13.1 55.2c-5.9 19.4-22 34.1-41.9 38.3l-1.4-34.3 12.6 8.6c.6 .4 1.5 .6 2.3 .6c1.5 0 2.7-.8 3.5-2s.6-2.8-.1-4L260 225.4l18-3.6c1.8-.4 3.1-2.1 3.1-4s-1.4-3.5-3.1-3.9l-18-3.7 8.5-14.3c.8-1.2 .9-2.9 .1-4.1s-2-2-3.5-2l-.1 0c-.7 .1-1.5 .3-2.1 .7l-14.1 9.6L244 87.9c-.1-2.2-1.9-3.9-4-3.9s-3.9 1.6-4 3.9l-4.6 110.8-12-8.1c-1.5-1.1-3.6-.9-5 .4s-1.6 3.4-.8 5l8.6 14.3-18 3.7c-1.8 .4-3.1 2-3.1 3.9s1.4 3.6 3.1 4l18 3.8-8.6 14.2c-.2 .6-.5 1.4-.5 2c0 1.1 .5 2.1 1.2 3c.8 .6 1.8 1 2.8 1c.7 0 1.6-.2 2.2-.6l10.4-7.1-1.4 32.8c-19.9-4.1-36-18.9-41.9-38.3c-6-19.4-1-40.5 13.1-55.2c-25-19.9-31-55.5-14-82.6c-20.1 11.2-36.4 28.5-46.4 49.2l26.4 26.5c3.1 3.1 3.1 8.1 0 11.2s-8.1 3.1-11.2 0z"]},f22=Dd,l22={prefix:"fas",iconName:"handcuffs",icon:[640,512,[],"e4f8","M304 32c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zM192 112c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm-32 16c17.7 0 32 14.3 32 32h8c13.3 0 24 10.7 24 24v16c0 1.7-.2 3.4-.5 5.1C280.3 229.6 320 286.2 320 352c0 88.4-71.6 160-160 160S0 440.4 0 352c0-65.8 39.7-122.4 96.5-146.9c-.4-1.6-.5-3.3-.5-5.1V184c0-13.3 10.7-24 24-24h8c0-17.7 14.3-32 32-32zm0 320c53 0 96-43 96-96s-43-96-96-96s-96 43-96 96s43 96 96 96zm192-96c0-25.9-5.1-50.5-14.4-73.1c16.9-32.9 44.8-59.1 78.9-73.9c-.4-1.6-.5-3.3-.5-5.1V184c0-13.3 10.7-24 24-24h8c0-17.7 14.3-32 32-32s32 14.3 32 32h8c13.3 0 24 10.7 24 24v16c0 1.7-.2 3.4-.5 5.1C600.3 229.6 640 286.2 640 352c0 88.4-71.6 160-160 160c-62 0-115.8-35.3-142.4-86.9c9.3-22.5 14.4-47.2 14.4-73.1zm224 0c0-53-43-96-96-96s-96 43-96 96s43 96 96 96s96-43 96-96zM368 64c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm80 48c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},sn={prefix:"fas",iconName:"triangle-exclamation",icon:[512,512,[9888,"exclamation-triangle","warning"],"f071","M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7 .2 40.1S486.3 480 472 480H40c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8 .2-40.1l216-368C228.7 39.5 241.8 32 256 32zm0 128c-13.3 0-24 10.7-24 24V296c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24zm32 224c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32z"]},u22=sn,h22=sn,p22={prefix:"fas",iconName:"database",icon:[448,512,[],"f1c0","M448 80v48c0 44.2-100.3 80-224 80S0 172.2 0 128V80C0 35.8 100.3 0 224 0S448 35.8 448 80zM393.2 214.7c20.8-7.4 39.9-16.9 54.8-28.6V288c0 44.2-100.3 80-224 80S0 332.2 0 288V186.1c14.9 11.8 34 21.2 54.8 28.6C99.7 230.7 159.5 240 224 240s124.3-9.3 169.2-25.3zM0 346.1c14.9 11.8 34 21.2 54.8 28.6C99.7 390.7 159.5 400 224 400s124.3-9.3 169.2-25.3c20.8-7.4 39.9-16.9 54.8-28.6V432c0 44.2-100.3 80-224 80S0 476.2 0 432V346.1z"]},on={prefix:"fas",iconName:"share",icon:[512,512,["arrow-turn-right","mail-forward"],"f064","M307 34.8c-11.5 5.1-19 16.6-19 29.2v64H176C78.8 128 0 206.8 0 304C0 417.3 81.5 467.9 100.2 478.1c2.5 1.4 5.3 1.9 8.1 1.9c10.9 0 19.7-8.9 19.7-19.7c0-7.5-4.3-14.4-9.8-19.5C108.8 431.9 96 414.4 96 384c0-53 43-96 96-96h96v64c0 12.6 7.4 24.1 19 29.2s25 3 34.4-5.4l160-144c6.7-6.1 10.6-14.7 10.6-23.8s-3.8-17.7-10.6-23.8l-160-144c-9.4-8.5-22.9-10.6-34.4-5.4z"]},m22=on,v22=on,d22={prefix:"fas",iconName:"bottle-droplet",icon:[256,512,[],"e4c4","M64 0C50.7 0 40 10.7 40 24s10.7 24 24 24c4.4 0 8 3.6 8 8v64.9c0 12.2-7.2 23.1-17.2 30.1C21.7 174.1 0 212.5 0 256V448c0 35.3 28.7 64 64 64H192c35.3 0 64-28.7 64-64V256c0-43.5-21.7-81.9-54.8-105c-10-7-17.2-17.9-17.2-30.1V56c0-4.4 3.6-8 8-8c13.3 0 24-10.7 24-24s-10.7-24-24-24l-8 0 0 0 0 0H72l0 0 0 0L64 0zm64 382c-26.5 0-48-20.1-48-45c0-16.8 22.1-48.1 36.3-66.4c6-7.8 17.5-7.8 23.5 0C153.9 288.9 176 320.2 176 337c0 24.9-21.5 45-48 45z"]},H22={prefix:"fas",iconName:"mask-face",icon:[640,512,[],"e1d7","M320 64c-27.2 0-53.8 8-76.4 23.1l-37.1 24.8c-15.8 10.5-34.3 16.1-53.3 16.1H144 128 56c-30.9 0-56 25.1-56 56v85c0 55.1 37.5 103.1 90.9 116.4l108 27C233.8 435 275.4 448 320 448s86.2-13 121.1-35.5l108-27C602.5 372.1 640 324.1 640 269V184c0-30.9-25.1-56-56-56H512 496h-9.2c-19 0-37.5-5.6-53.3-16.1L396.4 87.1C373.8 72 347.2 64 320 64zM132.3 346.3l-29.8-7.4C70.5 330.9 48 302.1 48 269V184c0-4.4 3.6-8 8-8H96v48c0 45.1 13.4 87.2 36.3 122.3zm405.1-7.4l-29.8 7.4c23-35.2 36.3-77.2 36.3-122.3V176h40c4.4 0 8 3.6 8 8v85c0 33-22.5 61.8-54.5 69.9zM192 208c0-8.8 7.2-16 16-16H432c8.8 0 16 7.2 16 16s-7.2 16-16 16H208c-8.8 0-16-7.2-16-16zm16 48H432c8.8 0 16 7.2 16 16s-7.2 16-16 16H208c-8.8 0-16-7.2-16-16s7.2-16 16-16zm16 80c0-8.8 7.2-16 16-16H400c8.8 0 16 7.2 16 16s-7.2 16-16 16H240c-8.8 0-16-7.2-16-16z"]},z22={prefix:"fas",iconName:"hill-rockslide",icon:[576,512,[],"e508","M252.4 103.8l27 48c2.8 5 8.2 8.2 13.9 8.2l53.3 0c5.8 0 11.1-3.1 13.9-8.2l27-48c2.7-4.9 2.7-10.8 0-15.7l-27-48c-2.8-5-8.2-8.2-13.9-8.2H293.4c-5.8 0-11.1 3.1-13.9 8.2l-27 48c-2.7 4.9-2.7 10.8 0 15.7zM68.3 87C43.1 61.8 0 79.7 0 115.3V432c0 44.2 35.8 80 80 80H396.7c35.6 0 53.5-43.1 28.3-68.3L68.3 87zM504.2 403.6c4.9 2.7 10.8 2.7 15.7 0l48-27c5-2.8 8.2-8.2 8.2-13.9V309.4c0-5.8-3.1-11.1-8.2-13.9l-48-27c-4.9-2.7-10.8-2.7-15.7 0l-48 27c-5 2.8-8.2 8.2-8.2 13.9v53.3c0 5.8 3.1 11.1 8.2 13.9l48 27zM192 64c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM384 288c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z"]},Id={prefix:"fas",iconName:"right-left",icon:[512,512,["exchange-alt"],"f362","M32 96l320 0V32c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l96 96c6 6 9.4 14.1 9.4 22.6s-3.4 16.6-9.4 22.6l-96 96c-9.2 9.2-22.9 11.9-34.9 6.9s-19.8-16.6-19.8-29.6V160L32 160c-17.7 0-32-14.3-32-32s14.3-32 32-32zM480 352c17.7 0 32 14.3 32 32s-14.3 32-32 32H160v64c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9l-96-96c-6-6-9.4-14.1-9.4-22.6s3.4-16.6 9.4-22.6l96-96c9.2-9.2 22.9-11.9 34.9-6.9s19.8 16.6 19.8 29.6l0 64H480z"]},g22=Id,V22={prefix:"fas",iconName:"paper-plane",icon:[512,512,[61913],"f1d8","M498.1 5.6c10.1 7 15.4 19.1 13.5 31.2l-64 416c-1.5 9.7-7.4 18.2-16 23s-18.9 5.4-28 1.6L284 427.7l-68.5 74.1c-8.9 9.7-22.9 12.9-35.2 8.1S160 493.2 160 480V396.4c0-4 1.5-7.8 4.2-10.7L331.8 202.8c5.8-6.3 5.6-16-.4-22s-15.7-6.4-22-.7L106 360.8 17.7 316.6C7.1 311.3 .3 300.7 0 288.9s5.9-22.8 16.1-28.7l448-256c10.7-6.1 23.9-5.5 34 1.4z"]},M22={prefix:"fas",iconName:"road-circle-exclamation",icon:[640,512,[],"e565","M213.2 32H288V96c0 17.7 14.3 32 32 32s32-14.3 32-32V32h74.8c27.1 0 51.3 17.1 60.3 42.6l42.7 120.6c-10.9-2.1-22.2-3.2-33.8-3.2c-59.5 0-112.1 29.6-144 74.8V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 17.7 14.3 32 32 32c2.3 0 4.6-.3 6.8-.7c-4.5 15.5-6.8 31.8-6.8 48.7c0 5.4 .2 10.7 .7 16l-.7 0c-17.7 0-32 14.3-32 32v64H86.6C56.5 480 32 455.5 32 425.4c0-6.2 1.1-12.4 3.1-18.2L152.9 74.6C162 49.1 186.1 32 213.2 32zM496 512c-79.5 0-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144s-64.5 144-144 144zm0-48c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24zm0-192c-8.8 0-16 7.2-16 16v80c0 8.8 7.2 16 16 16s16-7.2 16-16V288c0-8.8-7.2-16-16-16z"]},C22={prefix:"fas",iconName:"dungeon",icon:[512,512,[],"f6d9","M336.6 156.5c1.3 1.1 2.7 2.2 3.9 3.3c9.3 8.2 23 10.5 33.4 3.6l67.6-45.1c11.4-7.6 14.2-23.2 5.1-33.4C430 66.6 410.9 50.6 389.7 37.6c-11.9-7.3-26.9-1.4-32.1 11.6l-30.5 76.2c-4.5 11.1 .2 23.6 9.5 31.2zM328 36.8c5.1-12.8-1.6-27.4-15-30.5C294.7 2.2 275.6 0 256 0s-38.7 2.2-57 6.4C185.5 9.4 178.8 24 184 36.8l30.3 75.8c4.5 11.3 16.8 17.2 29 16c4.2-.4 8.4-.6 12.7-.6s8.6 .2 12.7 .6c12.1 1.2 24.4-4.7 29-16L328 36.8zM65.5 85c-9.1 10.2-6.3 25.8 5.1 33.4l67.6 45.1c10.3 6.9 24.1 4.6 33.4-3.6c1.3-1.1 2.6-2.3 4-3.3c9.3-7.5 13.9-20.1 9.5-31.2L154.4 49.2c-5.2-12.9-20.3-18.8-32.1-11.6C101.1 50.6 82 66.6 65.5 85zm314 137.1c.9 3.3 1.7 6.6 2.3 10c2.5 13 13 23.9 26.2 23.9h80c13.3 0 24.1-10.8 22.9-24c-2.5-27.2-9.3-53.2-19.7-77.3c-5.5-12.9-21.4-16.6-33.1-8.9l-68.6 45.7c-9.8 6.5-13.2 19.2-10 30.5zM53.9 145.8c-11.6-7.8-27.6-4-33.1 8.9C10.4 178.8 3.6 204.8 1.1 232c-1.2 13.2 9.6 24 22.9 24h80c13.3 0 23.8-10.8 26.2-23.9c.6-3.4 1.4-6.7 2.3-10c3.1-11.4-.2-24-10-30.5L53.9 145.8zM104 288H24c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V312c0-13.3-10.7-24-24-24zm304 0c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V312c0-13.3-10.7-24-24-24H408zM24 416c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V440c0-13.3-10.7-24-24-24H24zm384 0c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V440c0-13.3-10.7-24-24-24H408zM272 192c0-8.8-7.2-16-16-16s-16 7.2-16 16V464c0 8.8 7.2 16 16 16s16-7.2 16-16V192zm-64 32c0-8.8-7.2-16-16-16s-16 7.2-16 16V464c0 8.8 7.2 16 16 16s16-7.2 16-16V224zm128 0c0-8.8-7.2-16-16-16s-16 7.2-16 16V464c0 8.8 7.2 16 16 16s16-7.2 16-16V224z"]},L22={prefix:"fas",iconName:"align-right",icon:[448,512,[],"f038","M448 64c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32zm0 256c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32zM0 192c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32zM448 448c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z"]},Ud={prefix:"fas",iconName:"money-bill-1-wave",icon:[576,512,["money-bill-wave-alt"],"f53b","M0 112.5V422.3c0 18 10.1 35 27 41.3c87 32.5 174 10.3 261-11.9c79.8-20.3 159.6-40.7 239.3-18.9c23 6.3 48.7-9.5 48.7-33.4V89.7c0-18-10.1-35-27-41.3C462 15.9 375 38.1 288 60.3C208.2 80.6 128.4 100.9 48.7 79.1C25.6 72.8 0 88.6 0 112.5zM128 416H64V352c35.3 0 64 28.7 64 64zM64 224V160h64c0 35.3-28.7 64-64 64zM448 352c0-35.3 28.7-64 64-64v64H448zm64-192c-35.3 0-64-28.7-64-64h64v64zM384 256c0 61.9-43 112-96 112s-96-50.1-96-112s43-112 96-112s96 50.1 96 112zM252 208c0 9.7 6.9 17.7 16 19.6V276h-4c-11 0-20 9-20 20s9 20 20 20h24 24c11 0 20-9 20-20s-9-20-20-20h-4V208c0-11-9-20-20-20H272c-11 0-20 9-20 20z"]},y22=Ud,b22={prefix:"fas",iconName:"life-ring",icon:[512,512,[],"f1cd","M367.2 412.5C335.9 434.9 297.5 448 256 448s-79.9-13.1-111.2-35.5l58-58c15.8 8.6 34 13.5 53.3 13.5s37.4-4.9 53.3-13.5l58 58zm91 .5c33.7-43.3 53.8-97.8 53.8-157s-20.1-113.6-53.8-157l12.4-12.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L413 53.8C369.6 20.1 315.2 0 256 0S142.4 20.1 99 53.8L86.6 41.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L53.8 99C20.1 142.4 0 196.8 0 256s20.1 113.6 53.8 157L41.4 425.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L99 458.2c43.3 33.7 97.8 53.8 157 53.8s113.6-20.1 157-53.8l12.4 12.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L458.2 413zm-45.7-45.7l-58-58c8.6-15.8 13.5-34 13.5-53.3s-4.9-37.4-13.5-53.3l58-58C434.9 176.1 448 214.5 448 256s-13.1 79.9-35.5 111.2zM367.2 99.5l-58 58c-15.8-8.6-34-13.5-53.3-13.5s-37.4 4.9-53.3 13.5l-58-58C176.1 77.1 214.5 64 256 64s79.9 13.1 111.2 35.5zM157.5 309.3l-58 58C77.1 335.9 64 297.5 64 256s13.1-79.9 35.5-111.2l58 58c-8.6 15.8-13.5 34-13.5 53.3s4.9 37.4 13.5 53.3zM304 256c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48z"]},fn={prefix:"fas",iconName:"hands",icon:[512,512,["sign-language","signing"],"f2a7","M154.9 162c.3 .7 .7 1.5 1.1 2.2l17.8 30.9c11.1-12.6 27.4-19.8 44.4-19.1l-20.7-35.8c-6.6-11.5-21.3-15.4-32.8-8.8c-10.8 6.2-14.9 19.5-9.9 30.6zm173.6 47C399.7 231.7 448 297.8 448 372.5c0 1.5 0 3-.1 4.5c39.7-25.6 64.1-69.7 64.1-117.4V136c0-13.3-10.7-24-24-24s-24 10.7-24 24l0 81.7L347.8 16.5C341.2 5 326.5 1.1 315.1 7.7s-15.4 21.3-8.8 32.8l64 110.9c2.2 3.8 .9 8.7-2.9 10.9s-8.7 .9-10.9-2.9l-80-138.6C269.8 9.3 255.1 5.4 243.6 12s-15.4 21.3-8.8 32.8l80 138.6c2.2 3.8 .9 8.7-2.9 10.9s-8.7 .9-10.9-2.9L237 80.5c-6.6-11.5-21.3-15.4-32.8-8.8s-15.4 21.3-8.8 32.8l44 76.2L328.5 209zM64 488c0 12.4 9.4 22.6 21.5 23.9c.8 .1 1.6 .1 2.5 .1H288.7 296c66.3 0 120-53.7 120-120c0-1.2 0-2.4-.1-3.6c0-1.2 .1-2.5 .1-3.7c0-68-44-128.2-108.9-148.9l-83.9-26.7c-12.6-4-26.1 3-30.1 15.6s3 26.1 15.6 30.1L262.6 272H56c-13.3 0-24 10.7-24 24s10.7 24 24 24H184c4.4 0 8 3.6 8 8s-3.6 8-8 8H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H184c4.4 0 8 3.6 8 8s-3.6 8-8 8H56c-13.3 0-24 10.7-24 24s10.7 24 24 24H184c4.4 0 8 3.6 8 8s-3.6 8-8 8H88c-13.3 0-24 10.7-24 24z"]},x22=fn,S22=fn,w22={prefix:"fas",iconName:"calendar-day",icon:[448,512,[],"f783","M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zm80 64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H80z"]},ln={prefix:"fas",iconName:"water-ladder",icon:[576,512,["ladder-water","swimming-pool"],"f5c5","M128 127.7C128 74.9 170.9 32 223.7 32c48.3 0 89 36 95 83.9l1 8.2c2.2 17.5-10.2 33.5-27.8 35.7s-33.5-10.2-35.7-27.8l-1-8.2c-2-15.9-15.5-27.8-31.5-27.8c-17.5 0-31.7 14.2-31.7 31.7V224H384V127.7C384 74.9 426.9 32 479.7 32c48.3 0 89 36 95 83.9l1 8.2c2.2 17.5-10.2 33.5-27.8 35.7s-33.5-10.2-35.7-27.8l-1-8.2c-2-15.9-15.5-27.8-31.5-27.8c-17.5 0-31.7 14.2-31.7 31.7V361c-1.6 1-3.3 2-4.8 3.1c-18 12.4-40.1 20.3-59.2 20.3h0V288H192v96.5c-19 0-41.2-7.9-59.1-20.3c-1.6-1.1-3.2-2.2-4.9-3.1V127.7zM306.5 389.9C329 405.4 356.5 416 384 416c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 469.7 417 480 384 480c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 405.2 165.1 416 192 416c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z"]},N22=ln,A22=ln,Wd={prefix:"fas",iconName:"arrows-up-down",icon:[320,512,["arrows-v"],"f07d","M182.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L128 109.3V402.7L86.6 361.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0l96-96c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 402.7V109.3l41.4 41.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-96-96z"]},_22=Wd,$d={prefix:"fas",iconName:"face-grimace",icon:[512,512,[128556,"grimace"],"f57f","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zm96-112h-8V360l55.3 0c-3.8 22.7-23.6 40-47.3 40zm47.3-56L344 344V304h8c23.8 0 43.5 17.3 47.3 40zM328 344H264V304h64v40zm0 56H264V360h64v40zm-80-96v40l-64 0V304h64zm0 56v40H184V360l64 0zm-80-16H112.7c3.8-22.7 23.6-40 47.3-40h8v40zm0 56h-8c-23.8 0-43.5-17.3-47.3-40H168v40zm40.4-192c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm128 32c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},k22=$d,qd={prefix:"fas",iconName:"wheelchair-move",icon:[448,512,["wheelchair-alt"],"e2ce","M416 48c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48zM204.5 121.3c-5.4-2.5-11.7-1.9-16.4 1.7l-40.9 30.7c-14.1 10.6-34.2 7.7-44.8-6.4s-7.7-34.2 6.4-44.8l40.9-30.7c23.7-17.8 55.3-21 82.1-8.4l90.4 42.5c29.1 13.7 36.8 51.6 15.2 75.5L299.1 224h97.4c30.3 0 53 27.7 47.1 57.4L415.4 422.3c-3.5 17.3-20.3 28.6-37.7 25.1s-28.6-20.3-25.1-37.7L377 288H306.7c8.6 19.6 13.3 41.2 13.3 64c0 88.4-71.6 160-160 160S0 440.4 0 352s71.6-160 160-160c11.1 0 22 1.1 32.4 3.3l54.2-54.2-42.1-19.8zM160 448c53 0 96-43 96-96s-43-96-96-96s-96 43-96 96s43 96 96 96z"]},T22=qd,Gd={prefix:"fas",iconName:"turn-down",icon:[384,512,[10549,"level-down-alt"],"f3be","M178.3 506.3L40.3 368.3C35 363 32 355.8 32 348.3C32 332.7 44.7 320 60.3 320H144V112c0-8.8-7.2-16-16-16H32C14.3 96 0 81.7 0 64V32C0 14.3 14.3 0 32 0h96c61.9 0 112 50.1 112 112V320h83.7c15.6 0 28.3 12.7 28.3 28.3c0 7.5-3 14.7-8.3 20L205.7 506.3C202 510 197.1 512 192 512s-10-2-13.7-5.7z"]},P22=Gd,E22={prefix:"fas",iconName:"person-walking-arrow-right",icon:[640,512,[],"e552","M208 96c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zM123.7 200.5c1-.4 1.9-.8 2.9-1.2l-16.9 63.5c-5.6 21.1-.1 43.6 14.7 59.7l70.7 77.1 22 88.1c4.3 17.1 21.7 27.6 38.8 23.3s27.6-21.7 23.3-38.8l-23-92.1c-1.9-7.8-5.8-14.9-11.2-20.8l-49.5-54 19.3-65.5 9.6 23c4.4 10.6 12.5 19.3 22.8 24.5l26.7 13.3c15.8 7.9 35 1.5 42.9-14.3s1.5-35-14.3-42.9L281 232.7l-15.3-36.8C248.5 154.8 208.3 128 163.7 128c-22.8 0-45.3 4.8-66.1 14l-8 3.5c-32.9 14.6-58.1 42.4-69.4 76.5l-2.6 7.8c-5.6 16.8 3.5 34.9 20.2 40.5s34.9-3.5 40.5-20.2l2.6-7.8c5.7-17.1 18.3-30.9 34.7-38.2l8-3.5zm-30 135.1L68.7 398 9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L116.3 441c4.6-4.6 8.2-10.1 10.6-16.1l14.5-36.2-40.7-44.4c-2.5-2.7-4.8-5.6-7-8.6zM550.6 153.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L530.7 224H384c-17.7 0-32 14.3-32 32s14.3 32 32 32H530.7l-25.4 25.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l80-80c12.5-12.5 12.5-32.8 0-45.3l-80-80z"]},jd={prefix:"fas",iconName:"square-envelope",icon:[448,512,["envelope-square"],"f199","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM218 271.7L64.2 172.4C66 156.4 79.5 144 96 144H352c16.5 0 30 12.4 31.8 28.4L230 271.7c-1.8 1.2-3.9 1.8-6 1.8s-4.2-.6-6-1.8zm29.4 26.9L384 210.4V336c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V210.4l136.6 88.2c7 4.5 15.1 6.9 23.4 6.9s16.4-2.4 23.4-6.9z"]},O22=jd,R22={prefix:"fas",iconName:"dice",icon:[640,512,[127922],"f522","M252.3 11.7c-15.6-15.6-40.9-15.6-56.6 0l-184 184c-15.6 15.6-15.6 40.9 0 56.6l184 184c15.6 15.6 40.9 15.6 56.6 0l184-184c15.6-15.6 15.6-40.9 0-56.6l-184-184zM248 224c0 13.3-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24zM96 248c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zm128 80c13.3 0 24 10.7 24 24s-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24zm128-80c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zM224 72c13.3 0 24 10.7 24 24s-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24zm96 392c0 26.5 21.5 48 48 48H592c26.5 0 48-21.5 48-48V240c0-26.5-21.5-48-48-48H472.5c13.4 26.9 8.8 60.5-13.6 82.9L320 413.8V464zm160-88c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24z"]},F22={prefix:"fas",iconName:"bowling-ball",icon:[512,512,[],"f436","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM240 144c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm32 64c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm-128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},B22={prefix:"fas",iconName:"brain",icon:[512,512,[129504],"f5dc","M184 0c30.9 0 56 25.1 56 56V456c0 30.9-25.1 56-56 56c-28.9 0-52.7-21.9-55.7-50.1c-5.2 1.4-10.7 2.1-16.3 2.1c-35.3 0-64-28.7-64-64c0-7.4 1.3-14.6 3.6-21.2C21.4 367.4 0 338.2 0 304c0-31.9 18.7-59.5 45.8-72.3C37.1 220.8 32 207 32 192c0-30.7 21.6-56.3 50.4-62.6C80.8 123.9 80 118 80 112c0-29.9 20.6-55.1 48.3-62.1C131.3 21.9 155.1 0 184 0zM328 0c28.9 0 52.6 21.9 55.7 49.9c27.8 7 48.3 32.1 48.3 62.1c0 6-.8 11.9-2.4 17.4c28.8 6.2 50.4 31.9 50.4 62.6c0 15-5.1 28.8-13.8 39.7C493.3 244.5 512 272.1 512 304c0 34.2-21.4 63.4-51.6 74.8c2.3 6.6 3.6 13.8 3.6 21.2c0 35.3-28.7 64-64 64c-5.6 0-11.1-.7-16.3-2.1c-3 28.2-26.8 50.1-55.7 50.1c-30.9 0-56-25.1-56-56V56c0-30.9 25.1-56 56-56z"]},Kd={prefix:"fas",iconName:"bandage",icon:[640,512,[129657,"band-aid"],"f462","M480 416h96c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H480V416zM448 96H192V416H448V96zM64 96C28.7 96 0 124.7 0 160V352c0 35.3 28.7 64 64 64h96V96H64zM296 208c0 13.3-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24zm72 24c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zm-72 72c0 13.3-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24zm72 24c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24z"]},D22=Kd,I22={prefix:"fas",iconName:"calendar-minus",icon:[448,512,[],"f272","M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zM312 376c13.3 0 24-10.7 24-24s-10.7-24-24-24H136c-13.3 0-24 10.7-24 24s10.7 24 24 24H312z"]},un={prefix:"fas",iconName:"circle-xmark",icon:[512,512,[61532,"times-circle","xmark-circle"],"f057","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM175 175c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z"]},U22=un,W22=un,$22={prefix:"fas",iconName:"gifts",icon:[640,512,[],"f79c","M200.6 32C205 19.5 198.5 5.8 186 1.4S159.8 3.5 155.4 16L144.7 46.2l-9.9-29.8C130.6 3.8 117-3 104.4 1.2S85 19 89.2 31.6l8.3 25-27.4-20c-10.7-7.8-25.7-5.4-33.5 5.3s-5.4 25.7 5.3 33.5L70.2 96H48C21.5 96 0 117.5 0 144V464c0 26.5 21.5 48 48 48H200.6c-5.4-9.4-8.6-20.3-8.6-32V256c0-29.9 20.5-55 48.2-62c1.8-31 17.1-58.2 40.1-76.1C271.7 104.7 256.9 96 240 96H217.8l28.3-20.6c10.7-7.8 13.1-22.8 5.3-33.5s-22.8-13.1-33.5-5.3L192.5 55.1 200.6 32zM363.5 185.5L393.1 224H344c-13.3 0-24-10.7-24-24c0-13.1 10.8-24 24.2-24c7.6 0 14.7 3.5 19.3 9.5zM272 200c0 8.4 1.4 16.5 4.1 24H272c-26.5 0-48 21.5-48 48v80H416V256h32v96H640V272c0-26.5-21.5-48-48-48h-4.1c2.7-7.5 4.1-15.6 4.1-24c0-39.9-32.5-72-72.2-72c-22.4 0-43.6 10.4-57.3 28.2L432 195.8l-30.5-39.6c-13.7-17.8-35-28.2-57.3-28.2c-39.7 0-72.2 32.1-72.2 72zM224 464c0 26.5 21.5 48 48 48H416V384H224v80zm224 48H592c26.5 0 48-21.5 48-48V384H448V512zm96-312c0 13.3-10.7 24-24 24H470.9l29.6-38.5c4.6-5.9 11.7-9.5 19.3-9.5c13.4 0 24.2 10.9 24.2 24z"]},q22={prefix:"fas",iconName:"hotel",icon:[512,512,[127976],"f594","M32 0C14.3 0 0 14.3 0 32S14.3 64 32 64V448c-17.7 0-32 14.3-32 32s14.3 32 32 32H208V448h96v64H480c17.7 0 32-14.3 32-32s-14.3-32-32-32V64c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zm80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H112c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm112 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H240c-8.8 0-16-7.2-16-16V112zM368 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM96 208c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H112c-8.8 0-16-7.2-16-16V208zm144-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H240c-8.8 0-16-7.2-16-16V208c0-8.8 7.2-16 16-16zm112 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V208zm-3 152.2c3.3 12.8-7.8 23.8-21 23.8H184c-13.3 0-24.3-10.9-21-23.8c10.6-41.5 48.2-72.2 93-72.2s82.5 30.7 93 72.2z"]},Xd={prefix:"fas",iconName:"earth-asia",icon:[512,512,[127759,"globe-asia"],"f57e","M51.7 295.1l31.7 6.3c7.9 1.6 16-.9 21.7-6.6l15.4-15.4c11.6-11.6 31.1-8.4 38.4 6.2l9.3 18.5c4.8 9.6 14.6 15.7 25.4 15.7c15.2 0 26.1-14.6 21.7-29.2l-6-19.9c-4.6-15.4 6.9-30.9 23-30.9h2.3c13.4 0 25.9-6.7 33.3-17.8l10.7-16.1c5.6-8.5 5.3-19.6-.8-27.7l-16.1-21.5c-10.3-13.7-3.3-33.5 13.4-37.7l17-4.3c7.5-1.9 13.6-7.2 16.5-14.4l16.4-40.9C303.4 52.1 280.2 48 256 48C141.1 48 48 141.1 48 256c0 13.4 1.3 26.5 3.7 39.1zm407.7 4.6c-3-.3-6-.1-9 .8l-15.8 4.4c-6.7 1.9-13.8-.9-17.5-6.7l-2-3.1c-6-9.4-16.4-15.1-27.6-15.1s-21.6 5.7-27.6 15.1l-6.1 9.5c-1.4 2.2-3.4 4.1-5.7 5.3L312 330.1c-18.1 10.1-25.5 32.4-17 51.3l5.5 12.4c8.6 19.2 30.7 28.5 50.5 21.1l2.6-1c10-3.7 21.3-2.2 29.9 4.1l1.5 1.1c37.2-29.5 64.1-71.4 74.4-119.5zM512 256c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0S512 114.6 512 256zM144.5 348.1c-2.1 8.6 3.1 17.3 11.6 19.4l32 8c8.6 2.1 17.3-3.1 19.4-11.6s-3.1-17.3-11.6-19.4l-32-8c-8.6-2.1-17.3 3.1-19.4 11.6zm92-20c-2.1 8.6 3.1 17.3 11.6 19.4s17.3-3.1 19.4-11.6l8-32c2.1-8.6-3.1-17.3-11.6-19.4s-17.3 3.1-19.4 11.6l-8 32zM343.2 113.7c-7.9-4-17.5-.7-21.5 7.2l-16 32c-4 7.9-.7 17.5 7.2 21.5s17.5 .7 21.5-7.2l16-32c4-7.9 .7-17.5-7.2-21.5z"]},G22=Xd,Yd={prefix:"fas",iconName:"id-card-clip",icon:[576,512,["id-card-alt"],"f47f","M256 0h64c17.7 0 32 14.3 32 32V96c0 17.7-14.3 32-32 32H256c-17.7 0-32-14.3-32-32V32c0-17.7 14.3-32 32-32zM64 64H192v48c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48V64H512c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128C0 92.7 28.7 64 64 64zM176 437.3c0 5.9 4.8 10.7 10.7 10.7H389.3c5.9 0 10.7-4.8 10.7-10.7c0-29.5-23.9-53.3-53.3-53.3H229.3c-29.5 0-53.3 23.9-53.3 53.3zM288 352c35.3 0 64-28.7 64-64s-28.7-64-64-64s-64 28.7-64 64s28.7 64 64 64z"]},j22=Yd,Jd={prefix:"fas",iconName:"magnifying-glass-plus",icon:[512,512,["search-plus"],"f00e","M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM184 296c0 13.3 10.7 24 24 24s24-10.7 24-24V232h64c13.3 0 24-10.7 24-24s-10.7-24-24-24H232V120c0-13.3-10.7-24-24-24s-24 10.7-24 24v64H120c-13.3 0-24 10.7-24 24s10.7 24 24 24h64v64z"]},K22=Jd,X22={prefix:"fas",iconName:"thumbs-up",icon:[512,512,[128077,61575],"f164","M313.4 32.9c26 5.2 42.9 30.5 37.7 56.5l-2.3 11.4c-5.3 26.7-15.1 52.1-28.8 75.2H464c26.5 0 48 21.5 48 48c0 25.3-19.5 46-44.3 47.9c7.7 8.5 12.3 19.8 12.3 32.1c0 23.4-16.8 42.9-38.9 47.1c4.4 7.2 6.9 15.8 6.9 24.9c0 21.3-13.9 39.4-33.1 45.6c.7 3.3 1.1 6.8 1.1 10.4c0 26.5-21.5 48-48 48H294.5c-19 0-37.5-5.6-53.3-16.1l-38.5-25.7C176 420.4 160 390.4 160 358.3V320 272 247.1c0-29.2 13.3-56.7 36-75l7.4-5.9c26.5-21.2 44.6-51 51.2-84.2l2.3-11.4c5.2-26 30.5-42.9 56.5-37.7zM32 192H96c17.7 0 32 14.3 32 32V448c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V224c0-17.7 14.3-32 32-32z"]},Y22={prefix:"fas",iconName:"user-clock",icon:[640,512,[],"f4fd","M224 256c-70.7 0-128-57.3-128-128S153.3 0 224 0s128 57.3 128 128s-57.3 128-128 128zm-45.7 48h91.4c20.6 0 40.4 3.5 58.8 9.9C323 331 320 349.1 320 368c0 59.5 29.5 112.1 74.8 144H29.7C13.3 512 0 498.7 0 482.3C0 383.8 79.8 304 178.3 304zM640 368c0 79.5-64.5 144-144 144s-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144zM496 288c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H512V304c0-8.8-7.2-16-16-16z"]},Qd={prefix:"fas",iconName:"hand-dots",icon:[512,512,["allergies"],"f461","M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V336c0 1.5 0 3.1 .1 4.6L67.6 283c-16-15.2-41.3-14.6-56.6 1.4s-14.6 41.3 1.4 56.6L124.8 448c43.1 41.1 100.4 64 160 64H304c97.2 0 176-78.8 176-176V128c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V32zM272 336c0 8.8-7.2 16-16 16s-16-7.2-16-16s7.2-16 16-16s16 7.2 16 16zm48 48c-8.8 0-16-7.2-16-16s7.2-16 16-16s16 7.2 16 16s-7.2 16-16 16zm80-48c0 8.8-7.2 16-16 16s-16-7.2-16-16s7.2-16 16-16s16 7.2 16 16zM352 448c-8.8 0-16-7.2-16-16s7.2-16 16-16s16 7.2 16 16s-7.2 16-16 16zm-80-16c0 8.8-7.2 16-16 16s-16-7.2-16-16s7.2-16 16-16s16 7.2 16 16zm-80-16c-8.8 0-16-7.2-16-16s7.2-16 16-16s16 7.2 16 16s-7.2 16-16 16z"]},J22=Qd,Q22={prefix:"fas",iconName:"file-invoice",icon:[384,512,[],"f570","M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM80 64h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16zm16 96H288c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V256c0-17.7 14.3-32 32-32zm0 32v64H288V256H96zM240 416h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H240c-8.8 0-16-7.2-16-16s7.2-16 16-16z"]},Z22={prefix:"fas",iconName:"window-minimize",icon:[512,512,[128469],"f2d1","M32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z"]},Zd={prefix:"fas",iconName:"mug-saucer",icon:[640,512,["coffee"],"f0f4","M96 64c0-17.7 14.3-32 32-32H448h64c70.7 0 128 57.3 128 128s-57.3 128-128 128H480c0 53-43 96-96 96H192c-53 0-96-43-96-96V64zM480 224h32c35.3 0 64-28.7 64-64s-28.7-64-64-64H480V224zM32 416H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32z"]},c12=Zd,e12={prefix:"fas",iconName:"brush",icon:[384,512,[],"f55d","M192 64L160 0H128L96 64 64 0H48C21.5 0 0 21.5 0 48V256H384V48c0-26.5-21.5-48-48-48H224L192 64zM0 288v32c0 35.3 28.7 64 64 64h64v64c0 35.3 28.7 64 64 64s64-28.7 64-64V384h64c35.3 0 64-28.7 64-64V288H0zM192 464c-8.8 0-16-7.2-16-16s7.2-16 16-16s16 7.2 16 16s-7.2 16-16 16z"]},r12={prefix:"fas",iconName:"mask",icon:[576,512,[],"f6fa","M288 64C64 64 0 160 0 272S80 448 176 448h8.4c24.2 0 46.4-13.7 57.2-35.4l23.2-46.3c4.4-8.8 13.3-14.3 23.2-14.3s18.8 5.5 23.2 14.3l23.2 46.3c10.8 21.7 33 35.4 57.2 35.4H400c96 0 176-64 176-176s-64-208-288-208zM224 256c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zm192 64c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64z"]},cH={prefix:"fas",iconName:"magnifying-glass-minus",icon:[512,512,["search-minus"],"f010","M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM136 184c-13.3 0-24 10.7-24 24s10.7 24 24 24H280c13.3 0 24-10.7 24-24s-10.7-24-24-24H136z"]},a12=cH,n12={prefix:"fas",iconName:"ruler-vertical",icon:[256,512,[],"f548","M0 48C0 21.5 21.5 0 48 0H208c26.5 0 48 21.5 48 48V96H176c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v64H176c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v64H176c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v64H176c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v48c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48z"]},eH={prefix:"fas",iconName:"user-large",icon:[512,512,["user-alt"],"f406","M256 288c79.5 0 144-64.5 144-144S335.5 0 256 0S112 64.5 112 144s64.5 144 144 144zm-94.7 32C72.2 320 0 392.2 0 481.3c0 17 13.8 30.7 30.7 30.7H481.3c17 0 30.7-13.8 30.7-30.7C512 392.2 439.8 320 350.7 320H161.3z"]},t12=eH,s12={prefix:"fas",iconName:"train-tram",icon:[448,512,[128650],"e5b4","M86.8 48c-12.2 0-23.6 5.5-31.2 15L42.7 79C34.5 89.3 19.4 91 9 82.7S-3 59.4 5.3 49L18 33C34.7 12.2 60 0 86.8 0H361.2c26.7 0 52 12.2 68.7 33l12.8 16c8.3 10.4 6.6 25.5-3.7 33.7s-25.5 6.6-33.7-3.7L392.5 63c-7.6-9.5-19.1-15-31.2-15H248V96h40c53 0 96 43 96 96V352c0 30.6-14.3 57.8-36.6 75.4l65.5 65.5c7.1 7.1 2.1 19.1-7.9 19.1H365.3c-8.5 0-16.6-3.4-22.6-9.4L288 448H160l-54.6 54.6c-6 6-14.1 9.4-22.6 9.4H43c-10 0-15-12.1-7.9-19.1l65.5-65.5C78.3 409.8 64 382.6 64 352V192c0-53 43-96 96-96h40V48H86.8zM160 160c-17.7 0-32 14.3-32 32v32c0 17.7 14.3 32 32 32H288c17.7 0 32-14.3 32-32V192c0-17.7-14.3-32-32-32H160zm32 192c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zm96 32c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z"]},i12={prefix:"fas",iconName:"user-nurse",icon:[448,512,[],"f82f","M96 128V70.2c0-13.3 8.3-25.3 20.8-30l96-36c7.2-2.7 15.2-2.7 22.5 0l96 36c12.5 4.7 20.8 16.6 20.8 30V128h-.3c.2 2.6 .3 5.3 .3 8v40c0 70.7-57.3 128-128 128s-128-57.3-128-128V136c0-2.7 .1-5.4 .3-8H96zm48 48c0 44.2 35.8 80 80 80s80-35.8 80-80V160H144v16zM129.1 323.2l83.2 88.4c6.3 6.7 17 6.7 23.3 0l83.2-88.4c73.7 14.9 129.1 80 129.1 158.1c0 17-13.8 30.7-30.7 30.7H30.7C13.8 512 0 498.2 0 481.3c0-78.1 55.5-143.2 129.1-158.1zM208 48V64H192c-4.4 0-8 3.6-8 8V88c0 4.4 3.6 8 8 8h16v16c0 4.4 3.6 8 8 8h16c4.4 0 8-3.6 8-8V96h16c4.4 0 8-3.6 8-8V72c0-4.4-3.6-8-8-8H240V48c0-4.4-3.6-8-8-8H216c-4.4 0-8 3.6-8 8z"]},o12={prefix:"fas",iconName:"syringe",icon:[512,512,[128137],"f48e","M441 7l32 32 32 32c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-15-15L417.9 128l55 55c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-72-72L295 73c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l55 55L422.1 56 407 41c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0zM210.3 155.7l61.1-61.1c.3 .3 .6 .7 1 1l16 16 56 56 56 56 16 16c.3 .3 .6 .6 1 1l-191 191c-10.5 10.5-24.7 16.4-39.6 16.4H97.9L41 505c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l57-57V325.3c0-14.9 5.9-29.1 16.4-39.6l43.3-43.3 57 57c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-57-57 41.4-41.4 57 57c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-57-57z"]},f12={prefix:"fas",iconName:"cloud-sun",icon:[640,512,[9925],"f6c4","M122.4 1.2C127.6-.9 133.4-.2 137.9 3l70.3 50.3L278.5 3c4.5-3.2 10.3-3.9 15.4-1.8s8.8 6.7 9.7 12.2l14.1 85.3L403 112.8c5.4 .9 10.1 4.6 12.2 9.7s1.4 10.9-1.8 15.4l-38.8 54.3c-2.2-.1-4.3-.2-6.5-.2c-23.2 0-45 6.2-63.8 17c.1-12.5-2.2-25.3-7.3-37.6c-20.3-49-76.4-72.2-125.4-52s-72.2 76.4-52 125.4c18.3 44.3 66 67.5 111.1 56.6c-36.3 18.2-62.8 53.3-69.1 94.9l-23.6 16.9c-4.5 3.2-10.3 3.9-15.4 1.8s-8.8-6.7-9.7-12.2L98.7 317.7 13.4 303.6c-5.5-.9-10.1-4.6-12.2-9.7S-.2 282.9 3 278.5l50.3-70.3L3 137.9c-3.2-4.5-3.9-10.3-1.8-15.4s6.7-8.8 12.2-9.7L98.7 98.7l14.1-85.3c.9-5.5 4.6-10.1 9.7-12.2zM149 232.7c-13.5-32.7 2-70.1 34.6-83.6s70.1 2 83.6 34.6s-2 70.1-34.6 83.6s-70.1-2-83.6-34.6zM639.9 431.9c0 44.2-35.8 80-80 80H288c-53 0-96-43-96-96c0-47.6 34.6-87 80-94.6l0-1.3c0-53 43-96 96-96c34.9 0 65.4 18.6 82.2 46.4c13-9.1 28.8-14.4 45.8-14.4c44.2 0 80 35.8 80 80c0 5.9-.6 11.7-1.9 17.2c37.4 6.7 65.8 39.4 65.8 78.7z"]},l12={prefix:"fas",iconName:"stopwatch-20",icon:[448,512,[],"e06f","M176 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h16V98.4C92.3 113.8 16 200 16 304c0 114.9 93.1 208 208 208s208-93.1 208-208c0-41.8-12.3-80.7-33.5-113.2l24.1-24.1c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L355.7 143c-28.1-23-62.2-38.8-99.7-44.6V64h16c17.7 0 32-14.3 32-32s-14.3-32-32-32H176zM288 204c28.7 0 52 23.3 52 52v96c0 28.7-23.3 52-52 52s-52-23.3-52-52V256c0-28.7 23.3-52 52-52zm-12 52v96c0 6.6 5.4 12 12 12s12-5.4 12-12V256c0-6.6-5.4-12-12-12s-12 5.4-12 12zM159.5 244c-5.4 0-10.2 3.5-11.9 8.6l-.6 1.7c-3.5 10.5-14.8 16.1-25.3 12.6s-16.1-14.8-12.6-25.3l.6-1.7c7.2-21.5 27.2-35.9 49.8-35.9c29 0 52.5 23.5 52.5 52.5v2.2c0 13.4-4.9 26.4-13.8 36.4l-39 43.9c-6.2 7-10 15.7-10.9 24.9H192c11 0 20 9 20 20s-9 20-20 20H128c-11 0-20-9-20-20V368.3c0-20.6 7.5-40.4 21.2-55.8l39-43.9c2.4-2.7 3.7-6.2 3.7-9.8v-2.2c0-6.9-5.6-12.5-12.5-12.5z"]},u12={prefix:"fas",iconName:"square-full",icon:[512,512,[128997,128998,128999,129e3,129001,129002,129003,11035,11036],"f45c","M0 0H512V512H0V0z"]},h12={prefix:"fas",iconName:"magnet",icon:[448,512,[129522],"f076","M0 160v96C0 379.7 100.3 480 224 480s224-100.3 224-224V160H320v96c0 53-43 96-96 96s-96-43-96-96V160H0zm0-32H128V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v64zm320 0H448V64c0-17.7-14.3-32-32-32H352c-17.7 0-32 14.3-32 32v64z"]},p12={prefix:"fas",iconName:"jar",icon:[320,512,[],"e516","M32 32C32 14.3 46.3 0 64 0H256c17.7 0 32 14.3 32 32s-14.3 32-32 32H64C46.3 64 32 49.7 32 32zM0 160c0-35.3 28.7-64 64-64H256c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V160zm96 64c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32H224c17.7 0 32-14.3 32-32V256c0-17.7-14.3-32-32-32H96z"]},rH={prefix:"fas",iconName:"note-sticky",icon:[448,512,[62026,"sticky-note"],"f249","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H288V368c0-26.5 21.5-48 48-48H448V96c0-35.3-28.7-64-64-64H64zM448 352H402.7 336c-8.8 0-16 7.2-16 16v66.7V480l32-32 64-64 32-32z"]},m12=rH,v12={prefix:"fas",iconName:"bug-slash",icon:[640,512,[],"e490","M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L477.4 348.9c1.7-9.4 2.6-19 2.6-28.9h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H479.7c-1.1-14.1-5-27.5-11.1-39.5c.7-.6 1.4-1.2 2.1-1.9l64-64c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-64 64c-.7 .7-1.3 1.4-1.9 2.1C409.2 164.1 393.1 160 376 160H264c-8.3 0-16.3 1-24 2.8L38.8 5.1zM320 0c-53 0-96 43-96 96v3.6c0 15.7 12.7 28.4 28.4 28.4H387.6c15.7 0 28.4-12.7 28.4-28.4V96c0-53-43-96-96-96zM160.3 256H96c-17.7 0-32 14.3-32 32s14.3 32 32 32h64c0 24.6 5.5 47.8 15.4 68.6c-2.2 1.3-4.2 2.9-6 4.8l-64 64c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l63.1-63.1c24.5 21.8 55.8 36.2 90.3 39.6V335.5L166.7 227.3c-3.4 9-5.6 18.7-6.4 28.7zM336 479.2c36.6-3.6 69.7-19.6 94.8-43.8L336 360.7V479.2z"]},d12={prefix:"fas",iconName:"arrow-up-from-water-pump",icon:[576,512,[],"e4b6","M112 0C85.5 0 64 21.5 64 48V256H48c-26.5 0-48 21.5-48 48v96c0 8 2 15.6 5.4 22.2c3.8-1.7 7.8-3.1 12-4.1c13.1-3.1 26.7-9.8 37.3-18.6c22.2-18.7 54.3-20.1 78.1-3.4c18 12.4 40.1 20.3 59.2 20.3c21.1 0 42-8.5 59.2-20.3c22.1-15.5 51.6-15.5 73.7 0c18.4 12.7 39.6 20.3 59.2 20.3c19 0 41.2-7.9 59.2-20.3c23.8-16.7 55.8-15.3 78.1 3.4c10.6 8.8 24.2 15.6 37.3 18.6c4.2 1 8.2 2.4 12 4.1C574 415.6 576 408 576 400V304c0-26.5-21.5-48-48-48H480l0-146.7 25.4 25.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-80-80c-12.5-12.5-32.8-12.5-45.3 0l-80 80c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L416 109.3 416 256H288V48c0-26.5-21.5-48-48-48H112zM306.5 421.9c-11.1-7.9-25.9-7.9-37 0C247 437.4 219.5 448 192 448c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C126.5 501.7 159 512 192 512c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.4-27.3-10.1-39.2-1.7l0 0C439.4 437.2 410.9 448 384 448c-27.5 0-55-10.6-77.5-26.1z"]},H12={prefix:"fas",iconName:"bone",icon:[576,512,[129460],"f5d7","M153.7 144.8c6.9 16.3 20.6 31.2 38.3 31.2H384c17.7 0 31.4-14.9 38.3-31.2C434.4 116.1 462.9 96 496 96c44.2 0 80 35.8 80 80c0 30.4-17 56.9-42 70.4c-3.6 1.9-6 5.5-6 9.6s2.4 7.7 6 9.6c25 13.5 42 40 42 70.4c0 44.2-35.8 80-80 80c-33.1 0-61.6-20.1-73.7-48.8C415.4 350.9 401.7 336 384 336H192c-17.7 0-31.4 14.9-38.3 31.2C141.6 395.9 113.1 416 80 416c-44.2 0-80-35.8-80-80c0-30.4 17-56.9 42-70.4c3.6-1.9 6-5.5 6-9.6s-2.4-7.7-6-9.6C17 232.9 0 206.4 0 176c0-44.2 35.8-80 80-80c33.1 0 61.6 20.1 73.7 48.8z"]},z12={prefix:"fas",iconName:"user-injured",icon:[448,512,[],"f728","M240 80H342.7c-7.9-19.5-20.4-36.5-36.2-49.9L240 80zm37.7-68.2C261.3 4.2 243.2 0 224 0c-53.7 0-99.7 33.1-118.7 80h81.4l91-68.2zM224 256c70.7 0 128-57.3 128-128c0-5.4-.3-10.8-1-16H97c-.7 5.2-1 10.6-1 16c0 70.7 57.3 128 128 128zM124 312.4c-9.7 3.1-19.1 7-28 11.7V512H243.7L181.5 408.2 124 312.4zm33-7.2L204.3 384H272c44.2 0 80 35.8 80 80c0 18-6 34.6-16 48h82.3c16.4 0 29.7-13.3 29.7-29.7C448 383.8 368.2 304 269.7 304H178.3c-7.2 0-14.3 .4-21.3 1.3zM0 482.3C0 498.7 13.3 512 29.7 512H64V345.4C24.9 378.1 0 427.3 0 482.3zM320 464c0-26.5-21.5-48-48-48H223.5l57.1 95.2C303 507.2 320 487.6 320 464z"]},aH={prefix:"fas",iconName:"face-sad-tear",icon:[512,512,[128546,"sad-tear"],"f5b4","M0 256C0 397.4 114.6 512 256 512s256-114.6 256-256S397.4 0 256 0S0 114.6 0 256zm240 80c0-8.8 7.2-16 16-16c45 0 85.6 20.5 115.7 53.1c6 6.5 5.6 16.6-.9 22.6s-16.6 5.6-22.6-.9c-25-27.1-57.4-42.9-92.3-42.9c-8.8 0-16-7.2-16-16zm-80 80c-26.5 0-48-21-48-47c0-20 28.6-60.4 41.6-77.7c3.2-4.4 9.6-4.4 12.8 0C179.6 308.6 208 349 208 369c0 26-21.5 47-48 47zM303.6 208c0-17.7 14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32s-32-14.3-32-32zm-128 32c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},g12=aH,V12={prefix:"fas",iconName:"plane",icon:[576,512,[],"f072","M482.3 192c34.2 0 93.7 29 93.7 64c0 36-59.5 64-93.7 64l-116.6 0L265.2 495.9c-5.7 10-16.3 16.1-27.8 16.1l-56.2 0c-10.6 0-18.3-10.2-15.4-20.4l49-171.6L112 320 68.8 377.6c-3 4-7.8 6.4-12.8 6.4l-42 0c-7.8 0-14-6.3-14-14c0-1.3 .2-2.6 .5-3.9L32 256 .5 145.9c-.4-1.3-.5-2.6-.5-3.9c0-7.8 6.3-14 14-14l42 0c5 0 9.8 2.4 12.8 6.4L112 192l102.9 0-49-171.6C162.9 10.2 170.6 0 181.2 0l56.2 0c11.5 0 22.1 6.2 27.8 16.1L365.7 192l116.6 0z"]},M12={prefix:"fas",iconName:"tent-arrows-down",icon:[576,512,[],"e581","M209.8 111.9c-8.9-9.9-24-10.7-33.9-1.8l-39.9 36L136 24c0-13.3-10.7-24-24-24S88 10.7 88 24l0 122.1-39.9-36c-9.9-8.9-25-8.1-33.9 1.8s-8.1 25 1.8 33.9l80 72c9.1 8.2 23 8.2 32.1 0l80-72c9.9-8.9 10.7-24 1.8-33.9zm352 0c-8.9-9.9-24-10.7-33.9-1.8l-39.9 36V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V146.1l-39.9-36c-9.9-8.9-25-8.1-33.9 1.8s-8.1 25 1.8 33.9l80 72c9.1 8.2 23 8.2 32.1 0l80-72c9.9-8.9 10.7-24 1.8-33.9zM307.4 166.5c-11.5-8.7-27.3-8.7-38.8 0l-168 128c-6.6 5-11 12.5-12.3 20.7l-24 160c-1.4 9.2 1.3 18.6 7.4 25.6S86.7 512 96 512H288V352l96 160h96c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128z"]},C12={prefix:"fas",iconName:"exclamation",icon:[128,512,[10069,10071,61738],"21","M96 64c0-17.7-14.3-32-32-32S32 46.3 32 64V320c0 17.7 14.3 32 32 32s32-14.3 32-32V64zM64 480c22.1 0 40-17.9 40-40s-17.9-40-40-40s-40 17.9-40 40s17.9 40 40 40z"]},L12={prefix:"fas",iconName:"arrows-spin",icon:[448,512,[],"e4bb","M224 96c38.4 0 73.7 13.5 101.3 36.1l-32.6 32.6c-4.6 4.6-5.9 11.5-3.5 17.4s8.3 9.9 14.8 9.9H416c8.8 0 16-7.2 16-16V64c0-6.5-3.9-12.3-9.9-14.8s-12.9-1.1-17.4 3.5l-34 34C331.4 52.6 280.1 32 224 32c-10.9 0-21.5 .8-32 2.3V99.2c10.3-2.1 21-3.2 32-3.2zM100.1 154.7l32.6 32.6c4.6 4.6 11.5 5.9 17.4 3.5s9.9-8.3 9.9-14.8V64c0-8.8-7.2-16-16-16H32c-6.5 0-12.3 3.9-14.8 9.9s-1.1 12.9 3.5 17.4l34 34C20.6 148.6 0 199.9 0 256c0 10.9 .8 21.5 2.3 32H67.2c-2.1-10.3-3.2-21-3.2-32c0-38.4 13.5-73.7 36.1-101.3zM445.7 224H380.8c2.1 10.3 3.2 21 3.2 32c0 38.4-13.5 73.7-36.1 101.3l-32.6-32.6c-4.6-4.6-11.5-5.9-17.4-3.5s-9.9 8.3-9.9 14.8V448c0 8.8 7.2 16 16 16H416c6.5 0 12.3-3.9 14.8-9.9s1.1-12.9-3.5-17.4l-34-34C427.4 363.4 448 312.1 448 256c0-10.9-.8-21.5-2.3-32zM224 416c-38.4 0-73.7-13.5-101.3-36.1l32.6-32.6c4.6-4.6 5.9-11.5 3.5-17.4s-8.3-9.9-14.8-9.9H32c-8.8 0-16 7.2-16 16l0 112c0 6.5 3.9 12.3 9.9 14.8s12.9 1.1 17.4-3.5l34-34C116.6 459.4 167.9 480 224 480c10.9 0 21.5-.8 32-2.3V412.8c-10.3 2.1-21 3.2-32 3.2z"]},y12={prefix:"fas",iconName:"print",icon:[512,512,[128424,128438,9113],"f02f","M128 0C92.7 0 64 28.7 64 64v96h64V64H354.7L384 93.3V160h64V93.3c0-17-6.7-33.3-18.7-45.3L400 18.7C388 6.7 371.7 0 354.7 0H128zM384 352v32 64H128V384 368 352H384zm64 32h32c17.7 0 32-14.3 32-32V256c0-35.3-28.7-64-64-64H64c-35.3 0-64 28.7-64 64v96c0 17.7 14.3 32 32 32H64v64c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V384zm-16-88c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24z"]},hn={prefix:"fas",iconName:"turkish-lira-sign",icon:[448,512,["try","turkish-lira"],"e2bb","M128 32c17.7 0 32 14.3 32 32V99.3L279.2 65.2c17-4.9 34.7 5 39.6 22s-5 34.7-22 39.6L160 165.9v29.4l119.2-34.1c17-4.9 34.7 5 39.6 22s-5 34.7-22 39.6L160 261.9V416h63.8c68.2 0 124.4-53.5 127.8-121.6l.4-8c.9-17.7 15.9-31.2 33.6-30.4s31.2 15.9 30.4 33.6l-.4 8C410.5 399.8 326.1 480 223.8 480H128c-17.7 0-32-14.3-32-32V280.1l-23.2 6.6c-17 4.9-34.7-5-39.6-22s5-34.7 22-39.6L96 213.6V184.1l-23.2 6.6c-17 4.9-34.7-5-39.6-22s5-34.7 22-39.6L96 117.6V64c0-17.7 14.3-32 32-32z"]},b12=hn,x12=hn,pn={prefix:"fas",iconName:"dollar-sign",icon:[320,512,[128178,61781,"dollar","usd"],"24","M160 0c17.7 0 32 14.3 32 32V67.7c1.6 .2 3.1 .4 4.7 .7c10.6 1.6 42.1 6.7 55.1 10c17.1 4.3 27.5 21.7 23.2 38.9s-21.7 27.5-38.9 23.2c-9.3-2.4-37.6-7-48.9-8.7c-32.1-4.8-59.6-2.4-78.5 4.9c-18.3 7-25.9 16.9-27.9 28c-1.9 10.7-.5 16.8 1.3 20.6c1.9 4 5.6 8.5 12.9 13.4c16.2 10.8 41.1 17.9 73.3 26.7l2.8 .8c28.4 7.7 63.2 17.2 89 34.3c14.1 9.4 27.3 22.1 35.5 39.7c8.3 17.8 10.1 37.8 6.3 59.1c-6.9 38-33.1 63.4-65.6 76.7c-13.7 5.6-28.6 9.2-44.4 11V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V445.1c-.4-.1-.9-.1-1.3-.2l-.2 0 0 0c-24.4-3.8-64.5-14.3-91.5-26.3c-16.2-7.2-23.4-26.1-16.2-42.2s26.1-23.4 42.2-16.2c20.9 9.3 55.3 18.4 75.2 21.6c31.9 4.7 58.2 2 76-5.3c16.9-6.9 24.6-16.9 26.8-28.9c1.9-10.7 .5-16.8-1.3-20.6c-1.9-4-5.6-8.5-12.9-13.4c-16.2-10.8-41.1-17.9-73.3-26.7l-2.8-.8c-28.4-7.7-63.2-17.2-89-34.3c-14.1-9.4-27.3-22.1-35.5-39.7c-8.3-17.8-10.1-37.8-6.3-59.1C25 114.1 53 89.3 86 76.7c13-5 27.2-8.2 42-10V32c0-17.7 14.3-32 32-32z"]},S12=pn,w12=pn,N12={prefix:"fas",iconName:"x",icon:[384,512,[120],"58","M376.6 84.5c11.3-13.6 9.5-33.8-4.1-45.1s-33.8-9.5-45.1 4.1L192 206 56.6 43.5C45.3 29.9 25.1 28.1 11.5 39.4S-3.9 70.9 7.4 84.5L150.3 256 7.4 427.5c-11.3 13.6-9.5 33.8 4.1 45.1s33.8 9.5 45.1-4.1L192 306 327.4 468.5c11.3 13.6 31.5 15.4 45.1 4.1s15.4-31.5 4.1-45.1L233.7 256 376.6 84.5z"]},nH={prefix:"fas",iconName:"magnifying-glass-dollar",icon:[512,512,["search-dollar"],"f688","M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM228 104c0-11-9-20-20-20s-20 9-20 20v14c-7.6 1.7-15.2 4.4-22.2 8.5c-13.9 8.3-25.9 22.8-25.8 43.9c.1 20.3 12 33.1 24.7 40.7c11 6.6 24.7 10.8 35.6 14l1.7 .5c12.6 3.8 21.8 6.8 28 10.7c5.1 3.2 5.8 5.4 5.9 8.2c.1 5-1.8 8-5.9 10.5c-5 3.1-12.9 5-21.4 4.7c-11.1-.4-21.5-3.9-35.1-8.5c-2.3-.8-4.7-1.6-7.2-2.4c-10.5-3.5-21.8 2.2-25.3 12.6s2.2 21.8 12.6 25.3c1.9 .6 4 1.3 6.1 2.1l0 0 0 0c8.3 2.9 17.9 6.2 28.2 8.4V312c0 11 9 20 20 20s20-9 20-20V298.2c8-1.7 16-4.5 23.2-9c14.3-8.9 25.1-24.1 24.8-45c-.3-20.3-11.7-33.4-24.6-41.6c-11.5-7.2-25.9-11.6-37.1-15l-.7-.2c-12.8-3.9-21.9-6.7-28.3-10.5c-5.2-3.1-5.3-4.9-5.3-6.7c0-3.7 1.4-6.5 6.2-9.3c5.4-3.2 13.6-5.1 21.5-5c9.6 .1 20.2 2.2 31.2 5.2c10.7 2.8 21.6-3.5 24.5-14.2s-3.5-21.6-14.2-24.5c-6.5-1.7-13.7-3.4-21.1-4.7V104z"]},A12=nH,tH={prefix:"fas",iconName:"users-gear",icon:[640,512,["users-cog"],"f509","M144 160c44.2 0 80-35.8 80-80s-35.8-80-80-80S64 35.8 64 80s35.8 80 80 80zm368 0c44.2 0 80-35.8 80-80s-35.8-80-80-80s-80 35.8-80 80s35.8 80 80 80zM0 298.7C0 310.4 9.6 320 21.3 320H234.7c.2 0 .4 0 .7 0c-26.6-23.5-43.3-57.8-43.3-96c0-7.6 .7-15 1.9-22.3c-13.6-6.3-28.7-9.7-44.6-9.7H106.7C47.8 192 0 239.8 0 298.7zM320 320c24 0 45.9-8.8 62.7-23.3c2.5-3.7 5.2-7.3 8-10.7c2.7-3.3 5.7-6.1 9-8.3C410 262.3 416 243.9 416 224c0-53-43-96-96-96s-96 43-96 96s43 96 96 96zm65.4 60.2c-10.3-5.9-18.1-16.2-20.8-28.2H261.3C187.7 352 128 411.7 128 485.3c0 14.7 11.9 26.7 26.7 26.7H455.2c-2.1-5.2-3.2-10.9-3.2-16.4v-3c-1.3-.7-2.7-1.5-4-2.3l-2.6 1.5c-16.8 9.7-40.5 8-54.7-9.7c-4.5-5.6-8.6-11.5-12.4-17.6l-.1-.2-.1-.2-2.4-4.1-.1-.2-.1-.2c-3.4-6.2-6.4-12.6-9-19.3c-8.2-21.2 2.2-42.6 19-52.3l2.7-1.5c0-.8 0-1.5 0-2.3s0-1.5 0-2.3l-2.7-1.5zM533.3 192H490.7c-15.9 0-31 3.5-44.6 9.7c1.3 7.2 1.9 14.7 1.9 22.3c0 17.4-3.5 33.9-9.7 49c2.5 .9 4.9 2 7.1 3.3l2.6 1.5c1.3-.8 2.6-1.6 4-2.3v-3c0-19.4 13.3-39.1 35.8-42.6c7.9-1.2 16-1.9 24.2-1.9s16.3 .6 24.2 1.9c22.5 3.5 35.8 23.2 35.8 42.6v3c1.3 .7 2.7 1.5 4 2.3l2.6-1.5c16.8-9.7 40.5-8 54.7 9.7c2.3 2.8 4.5 5.8 6.6 8.7c-2.1-57.1-49-102.7-106.6-102.7zm91.3 163.9c6.3-3.6 9.5-11.1 6.8-18c-2.1-5.5-4.6-10.8-7.4-15.9l-2.3-4c-3.1-5.1-6.5-9.9-10.2-14.5c-4.6-5.7-12.7-6.7-19-3L574.4 311c-8.9-7.6-19.1-13.6-30.4-17.6v-21c0-7.3-4.9-13.8-12.1-14.9c-6.5-1-13.1-1.5-19.9-1.5s-13.4 .5-19.9 1.5c-7.2 1.1-12.1 7.6-12.1 14.9v21c-11.2 4-21.5 10-30.4 17.6l-18.2-10.5c-6.3-3.6-14.4-2.6-19 3c-3.7 4.6-7.1 9.5-10.2 14.6l-2.3 3.9c-2.8 5.1-5.3 10.4-7.4 15.9c-2.6 6.8 .5 14.3 6.8 17.9l18.2 10.5c-1 5.7-1.6 11.6-1.6 17.6s.6 11.9 1.6 17.5l-18.2 10.5c-6.3 3.6-9.5 11.1-6.8 17.9c2.1 5.5 4.6 10.7 7.4 15.8l2.4 4.1c3 5.1 6.4 9.9 10.1 14.5c4.6 5.7 12.7 6.7 19 3L449.6 457c8.9 7.6 19.2 13.6 30.4 17.6v21c0 7.3 4.9 13.8 12.1 14.9c6.5 1 13.1 1.5 19.9 1.5s13.4-.5 19.9-1.5c7.2-1.1 12.1-7.6 12.1-14.9v-21c11.2-4 21.5-10 30.4-17.6l18.2 10.5c6.3 3.6 14.4 2.6 19-3c3.7-4.6 7.1-9.4 10.1-14.5l2.4-4.2c2.8-5.1 5.3-10.3 7.4-15.8c2.6-6.8-.5-14.3-6.8-17.9l-18.2-10.5c1-5.7 1.6-11.6 1.6-17.5s-.6-11.9-1.6-17.6l18.2-10.5zM552 384c0 22.1-17.9 40-40 40s-40-17.9-40-40s17.9-40 40-40s40 17.9 40 40z"]},_12=tH,k12={prefix:"fas",iconName:"person-military-pointing",icon:[576,512,[],"e54a","M246.9 14.1C234 15.2 224 26 224 39c0 13.8 11.2 25 25 25H400c8.8 0 16-7.2 16-16V17.4C416 8 408 .7 398.7 1.4L246.9 14.1zM240 112c0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H241.6c-1 5.2-1.6 10.5-1.6 16zM72 224c-22.1 0-40 17.9-40 40s17.9 40 40 40H224v89.4L386.8 230.5c-13.3-4.3-27.3-6.5-41.6-6.5H240 72zm345.7 20.9L246.6 416H416V369.7l53.6 90.6c11.2 19 35.8 25.3 54.8 14.1s25.3-35.8 14.1-54.8L462.3 290.8c-11.2-18.9-26.6-34.5-44.6-45.9zM224 448v32c0 17.7 14.3 32 32 32H384c17.7 0 32-14.3 32-32V448H224z"]},u7={prefix:"fas",iconName:"building-columns",icon:[512,512,["bank","institution","museum","university"],"f19c","M243.4 2.6l-224 96c-14 6-21.8 21-18.7 35.8S16.8 160 32 160v8c0 13.3 10.7 24 24 24H456c13.3 0 24-10.7 24-24v-8c15.2 0 28.3-10.7 31.3-25.6s-4.8-29.9-18.7-35.8l-224-96c-8.1-3.4-17.2-3.4-25.2 0zM128 224H64V420.3c-.6 .3-1.2 .7-1.8 1.1l-48 32c-11.7 7.8-17 22.4-12.9 35.9S17.9 512 32 512H480c14.1 0 26.5-9.2 30.6-22.7s-1.1-28.1-12.9-35.9l-48-32c-.6-.4-1.2-.7-1.8-1.1V224H384V416H344V224H280V416H232V224H168V416H128V224zm128-96c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},T12=u7,P12=u7,E12=u7,O12=u7,R12={prefix:"fas",iconName:"umbrella",icon:[640,512,[],"f0e9","M320 0c17.7 0 32 14.3 32 32V49.7C483.8 63.4 589.7 161 605.9 285.9c2 15.6-17.3 24.4-27.8 12.7C564.1 283 536.8 272 512 272c-38.7 0-71 27.5-78.4 64.1c-1.7 8.7-8.7 15.9-17.6 15.9s-15.8-7.2-17.6-15.9C391 299.5 358.7 272 320 272s-71 27.5-78.4 64.1c-1.7 8.7-8.7 15.9-17.6 15.9s-15.8-7.2-17.6-15.9C199 299.5 166.7 272 128 272c-24.8 0-52.1 11-66.1 26.7c-10.5 11.7-29.8 2.9-27.8-12.7C50.3 161 156.2 63.4 288 49.7V32c0-17.7 14.3-32 32-32zm0 304c12.3 0 23.5 4.6 32 12.2V430.6c0 45-36.5 81.4-81.4 81.4c-30.8 0-59-17.4-72.8-45l-2.3-4.7c-7.9-15.8-1.5-35 14.3-42.9s35-1.5 42.9 14.3l2.3 4.7c3 5.9 9 9.6 15.6 9.6c9.6 0 17.4-7.8 17.4-17.4V316.2c8.5-7.6 19.7-12.2 32-12.2z"]},F12={prefix:"fas",iconName:"trowel",icon:[512,512,[],"e589","M343.9 213.4L245.3 312l65.4 65.4c7.9 7.9 11.1 19.4 8.4 30.3s-10.8 19.6-21.5 22.9l-256 80c-11.4 3.5-23.8 .5-32.2-7.9S-2.1 481.8 1.5 470.5l80-256c3.3-10.7 12-18.9 22.9-21.5s22.4 .5 30.3 8.4L200 266.7l98.6-98.6c-14.3-14.6-14.2-38 .3-52.5l95.4-95.4c26.9-26.9 70.5-26.9 97.5 0s26.9 70.5 0 97.5l-95.4 95.4c-14.5 14.5-37.9 14.6-52.5 .3z"]},B12={prefix:"fas",iconName:"d",icon:[384,512,[100],"44","M0 64C0 46.3 14.3 32 32 32H160c123.7 0 224 100.3 224 224s-100.3 224-224 224H32c-17.7 0-32-14.3-32-32V64zM64 96V416h96c88.4 0 160-71.6 160-160s-71.6-160-160-160H64z"]},D12={prefix:"fas",iconName:"stapler",icon:[640,512,[],"e5af","M640 299.3V304 432c0 26.5-21.5 48-48 48H512 448 64c-17.7 0-32-14.3-32-32s14.3-32 32-32H448V368H96c-17.7 0-32-14.3-32-32V219.4L33.8 214C14.2 210.5 0 193.5 0 173.7c0-8.9 2.9-17.5 8.2-24.6l35.6-47.5C76.7 57.8 128.2 32 182.9 32c27 0 53.6 6.3 77.8 18.4L586.9 213.5C619.5 229.7 640 263 640 299.3zM448 304V288L128 230.9V304H448z"]},sH={prefix:"fas",iconName:"masks-theater",icon:[640,512,[127917,"theater-masks"],"f630","M399.3 509.7c-58.2-8.8-108.2-72.8-137.6-119.7c-20-31.9-25.1-70.3-19.6-107.7L266.3 118c1.4-9.8 5.1-19.2 12.9-25.2c20.2-15.6 72.4-41.5 185.1-24.5s155.2 57.4 170 78.3c5.7 8 6.5 18.1 5.1 27.9L615.2 338.8c-5.5 37.3-21.5 72.6-49.8 97.2c-41.7 36.1-108 82.5-166.1 73.7zm17.1-277.7c.1-.5 .2-1.1 .3-1.6c3.2-21.8-11.6-42-33.1-45.3s-41.5 11.8-44.7 33.5c-.1 .5-.1 1.1-.2 1.6c-.6 5.4 5.2 8.4 10.3 6.7c9-3 18.8-3.9 28.7-2.4s19.1 5.3 26.8 10.8c4.4 3.1 10.8 2 11.8-3.3zm112.6 22.2c4.4 3.1 10.8 2 11.8-3.3c.1-.5 .2-1.1 .3-1.6c3.2-21.8-11.6-42-33.1-45.3s-41.5 11.8-44.7 33.5c-.1 .5-.1 1.1-.2 1.6c-.6 5.4 5.2 8.4 10.3 6.7c9-3 18.8-3.9 28.7-2.4s19.1 5.3 26.8 10.8zm-11.5 85.2c-28.8 12.8-61.4 17.8-94.9 12.8s-63.2-19.5-87-40.3c-6.3-5.5-16.2-1.7-15.2 6.7c5.9 48.5 43 89.1 93 96.7s97.2-20.2 116.8-64.9c3.4-7.7-5-14.3-12.6-10.9zM240.7 446.9c-58.2 8.8-124.5-37.5-166.1-73.7c-28.3-24.5-44.3-59.8-49.8-97.2L.6 111.8C-.8 102 0 91.9 5.7 83.9C20.5 63 63 22.7 175.7 5.6s164.9 8.9 185.1 24.5c.9 .7 1.7 1.4 2.4 2.1c-52.8 4.8-85.1 21-103.6 35.3c-17 13.1-23 32-25 45.9L215.3 244.7c-2.6 .1-5.2 .4-7.9 .8c-35.2 5.3-61.8 32.7-68.2 66.3c-1.6 8.2 8.3 12.2 14.8 7c15.6-12.4 34.1-21.3 54.7-25.4c-3 38.4 4 78.7 25.9 113.6c6.9 11 15 23.1 24.2 35.4c-5.9 2.1-11.9 3.6-18 4.5zM174.1 157c-1-5.3-7.4-6.4-11.8-3.3c-7.7 5.5-16.8 9.3-26.8 10.8s-19.8 .6-28.7-2.4c-5.1-1.7-10.9 1.3-10.3 6.7c.1 .5 .1 1.1 .2 1.6c3.2 21.8 23.2 36.8 44.7 33.5s36.3-23.5 33.1-45.3c-.1-.5-.2-1.1-.3-1.6z"]},I12=sH,U12={prefix:"fas",iconName:"kip-sign",icon:[384,512,[],"e1c4","M340.8 88.3c13.4-11.5 15-31.7 3.5-45.1s-31.7-15-45.1-3.5L128 186.4V64c0-17.7-14.3-32-32-32S64 46.3 64 64V224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64V448c0 17.7 14.3 32 32 32s32-14.3 32-32V325.6L299.2 472.3c13.4 11.5 33.6 9.9 45.1-3.5s9.9-33.6-3.5-45.1L182.5 288H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H182.5L340.8 88.3z"]},W12={prefix:"fas",iconName:"hand-point-left",icon:[512,512,[],"f0a5","M32 96C14.3 96 0 110.3 0 128s14.3 32 32 32l208 0V96L32 96zM192 288c-17.7 0-32 14.3-32 32s14.3 32 32 32h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm-64-64c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32s-14.3-32-32-32H160c-17.7 0-32 14.3-32 32zm96 160c-17.7 0-32 14.3-32 32s14.3 32 32 32h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H224zm88-96l-.6 0c5.4 9.4 8.6 20.3 8.6 32c0 13.2-4 25.4-10.8 35.6c24.9 8.7 42.8 32.5 42.8 60.4c0 11.7-3.1 22.6-8.6 32H352c88.4 0 160-71.6 160-160V226.3c0-42.4-16.9-83.1-46.9-113.1l-11.6-11.6C429.5 77.5 396.9 64 363 64l-27 0c-35.3 0-64 28.7-64 64v88c0 22.1 17.9 40 40 40s40-17.9 40-40V160c0-8.8 7.2-16 16-16s16 7.2 16 16v56c0 39.8-32.2 72-72 72z"]},iH={prefix:"fas",iconName:"handshake-simple",icon:[640,512,[129309,"handshake-alt"],"f4c6","M323.4 85.2l-96.8 78.4c-16.1 13-19.2 36.4-7 53.1c12.9 17.8 38 21.3 55.3 7.8l99.3-77.2c7-5.4 17-4.2 22.5 2.8s4.2 17-2.8 22.5l-20.9 16.2L550.2 352H592c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48H516h-4-.7l-3.9-2.5L434.8 79c-15.3-9.8-33.2-15-51.4-15c-21.8 0-43 7.5-60 21.2zm22.8 124.4l-51.7 40.2C263 274.4 217.3 268 193.7 235.6c-22.2-30.5-16.6-73.1 12.7-96.8l83.2-67.3c-11.6-4.9-24.1-7.4-36.8-7.4C234 64 215.7 69.6 200 80l-72 48H48c-26.5 0-48 21.5-48 48V304c0 26.5 21.5 48 48 48H156.2l91.4 83.4c19.6 17.9 49.9 16.5 67.8-3.1c5.5-6.1 9.2-13.2 11.1-20.6l17 15.6c19.5 17.9 49.9 16.6 67.8-2.9c4.5-4.9 7.8-10.6 9.9-16.5c19.4 13 45.8 10.3 62.1-7.5c17.9-19.5 16.6-49.9-2.9-67.8l-134.2-123z"]},$12=iH,oH={prefix:"fas",iconName:"jet-fighter",icon:[640,512,["fighter-jet"],"f0fb","M160 24c0-13.3 10.7-24 24-24H296c13.3 0 24 10.7 24 24s-10.7 24-24 24H280L384 192H500.4c7.7 0 15.3 1.4 22.5 4.1L625 234.4c9 3.4 15 12 15 21.6s-6 18.2-15 21.6L522.9 315.9c-7.2 2.7-14.8 4.1-22.5 4.1H384L280 464h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H184c-13.3 0-24-10.7-24-24s10.7-24 24-24h8V320H160l-54.6 54.6c-6 6-14.1 9.4-22.6 9.4H64c-17.7 0-32-14.3-32-32V288c-17.7 0-32-14.3-32-32s14.3-32 32-32V160c0-17.7 14.3-32 32-32H82.7c8.5 0 16.6 3.4 22.6 9.4L160 192h32V48h-8c-13.3 0-24-10.7-24-24zM80 240c-8.8 0-16 7.2-16 16s7.2 16 16 16h64c8.8 0 16-7.2 16-16s-7.2-16-16-16H80z"]},q12=oH,fH={prefix:"fas",iconName:"square-share-nodes",icon:[448,512,["share-alt-square"],"f1e1","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM384 160c0 35.3-28.7 64-64 64c-15.4 0-29.5-5.4-40.6-14.5L194.1 256l85.3 46.5c11-9.1 25.2-14.5 40.6-14.5c35.3 0 64 28.7 64 64s-28.7 64-64 64s-64-28.7-64-64c0-2.5 .1-4.9 .4-7.3L174.5 300c-11.7 12.3-28.2 20-46.5 20c-35.3 0-64-28.7-64-64s28.7-64 64-64c18.3 0 34.8 7.7 46.5 20l81.9-44.7c-.3-2.4-.4-4.9-.4-7.3c0-35.3 28.7-64 64-64s64 28.7 64 64z"]},G12=fH,j12={prefix:"fas",iconName:"barcode",icon:[512,512,[],"f02a","M24 32C10.7 32 0 42.7 0 56V456c0 13.3 10.7 24 24 24H40c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24H24zm88 0c-8.8 0-16 7.2-16 16V464c0 8.8 7.2 16 16 16s16-7.2 16-16V48c0-8.8-7.2-16-16-16zm72 0c-13.3 0-24 10.7-24 24V456c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24H184zm96 0c-13.3 0-24 10.7-24 24V456c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24H280zM448 56V456c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24H472c-13.3 0-24 10.7-24 24zm-64-8V464c0 8.8 7.2 16 16 16s16-7.2 16-16V48c0-8.8-7.2-16-16-16s-16 7.2-16 16z"]},K12={prefix:"fas",iconName:"plus-minus",icon:[384,512,[],"e43c","M224 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V144H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H160V320c0 17.7 14.3 32 32 32s32-14.3 32-32V208H336c17.7 0 32-14.3 32-32s-14.3-32-32-32H224V32zM0 480c0 17.7 14.3 32 32 32H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32z"]},lH={prefix:"fas",iconName:"video",icon:[576,512,["video-camera"],"f03d","M0 128C0 92.7 28.7 64 64 64H320c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128zM559.1 99.8c10.4 5.6 16.9 16.4 16.9 28.2V384c0 11.8-6.5 22.6-16.9 28.2s-23 5-32.9-1.6l-96-64L416 337.1V320 192 174.9l14.2-9.5 96-64c9.8-6.5 22.4-7.2 32.9-1.6z"]},X12=lH,uH={prefix:"fas",iconName:"graduation-cap",icon:[640,512,[127891,"mortar-board"],"f19d","M320 32c-8.1 0-16.1 1.4-23.7 4.1L15.8 137.4C6.3 140.9 0 149.9 0 160s6.3 19.1 15.8 22.6l57.9 20.9C57.3 229.3 48 259.8 48 291.9v28.1c0 28.4-10.8 57.7-22.3 80.8c-6.5 13-13.9 25.8-22.5 37.6C0 442.7-.9 448.3 .9 453.4s6 8.9 11.2 10.2l64 16c4.2 1.1 8.7 .3 12.4-2s6.3-6.1 7.1-10.4c8.6-42.8 4.3-81.2-2.1-108.7C90.3 344.3 86 329.8 80 316.5V291.9c0-30.2 10.2-58.7 27.9-81.5c12.9-15.5 29.6-28 49.2-35.7l157-61.7c8.2-3.2 17.5 .8 20.7 9s-.8 17.5-9 20.7l-157 61.7c-12.4 4.9-23.3 12.4-32.2 21.6l159.6 57.6c7.6 2.7 15.6 4.1 23.7 4.1s16.1-1.4 23.7-4.1L624.2 182.6c9.5-3.4 15.8-12.5 15.8-22.6s-6.3-19.1-15.8-22.6L343.7 36.1C336.1 33.4 328.1 32 320 32zM128 408c0 35.3 86 72 192 72s192-36.7 192-72L496.7 262.6 354.5 314c-11.1 4-22.8 6-34.5 6s-23.5-2-34.5-6L143.3 262.6 128 408z"]},Y12=uH,J12={prefix:"fas",iconName:"hand-holding-medical",icon:[576,512,[],"e05c","M224 24V80H168c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h56v56c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V176h56c13.3 0 24-10.7 24-24V104c0-13.3-10.7-24-24-24H320V24c0-13.3-10.7-24-24-24H248c-13.3 0-24 10.7-24 24zM559.7 392.2c17.8-13.1 21.6-38.1 8.5-55.9s-38.1-21.6-55.9-8.5L392.6 416H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h16 64c17.7 0 32-14.3 32-32s-14.3-32-32-32H288 272 193.7c-29.1 0-57.3 9.9-80 28L68.8 384H32c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H192 352.5c29 0 57.3-9.3 80.7-26.5l126.6-93.3zm-367-8.2l.9 0 0 0c-.3 0-.6 0-.9 0z"]},Q12={prefix:"fas",iconName:"person-circle-check",icon:[576,512,[],"e53e","M208 48c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48zM152 352V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5c-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152zm424 16c0 79.5-64.5 144-144 144s-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144zm-76.7-43.3c-6.2-6.2-16.4-6.2-22.6 0L416 385.4l-28.7-28.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l40 40c6.2 6.2 16.4 6.2 22.6 0l72-72c6.2-6.2 6.2-16.4 0-22.6z"]},hH={prefix:"fas",iconName:"turn-up",icon:[384,512,[10548,"level-up-alt"],"f3bf","M178.3 5.7L40.3 143.7C35 149 32 156.2 32 163.7C32 179.3 44.7 192 60.3 192H144V400c0 8.8-7.2 16-16 16H32c-17.7 0-32 14.3-32 32v32c0 17.7 14.3 32 32 32h96c61.9 0 112-50.1 112-112V192h83.7c15.6 0 28.3-12.7 28.3-28.3c0-7.5-3-14.7-8.3-20L205.7 5.7C202 2 197.1 0 192 0s-10 2-13.7 5.7z"]},Z12=hH,c42={fa0:Nw,fa1:Aw,fa2:_w,fa3:kw,fa4:Tw,fa5:Pw,fa6:Ew,fa7:Ow,fa8:Rw,fa9:Fw,faFillDrip:Bw,faArrowsToCircle:Dw,faCircleChevronRight:If,faChevronCircleRight:Iw,faAt:Uw,faTrashCan:Uf,faTrashAlt:Ww,faTextHeight:$w,faUserXmark:Wf,faUserTimes:qw,faStethoscope:Gw,faMessage:$f,faCommentAlt:jw,faInfo:Kw,faDownLeftAndUpRightToCenter:qf,faCompressAlt:Xw,faExplosion:Yw,faFileLines:Ma,faFileAlt:Jw,faFileText:Qw,faWaveSquare:Zw,faRing:cN,faBuildingUn:eN,faDiceThree:rN,faCalendarDays:Gf,faCalendarAlt:aN,faAnchorCircleCheck:nN,faBuildingCircleArrowRight:tN,faVolleyball:jf,faVolleyballBall:sN,faArrowsUpToLine:iN,faSortDown:Kf,faSortDesc:oN,faCircleMinus:Xf,faMinusCircle:fN,faDoorOpen:lN,faRightFromBracket:Yf,faSignOutAlt:uN,faAtom:hN,faSoap:pN,faIcons:Jf,faHeartMusicCameraBolt:mN,faMicrophoneLinesSlash:Qf,faMicrophoneAltSlash:vN,faBridgeCircleCheck:dN,faPumpMedical:HN,faFingerprint:zN,faHandPointRight:gN,faMagnifyingGlassLocation:Zf,faSearchLocation:VN,faForwardStep:cl,faStepForward:MN,faFaceSmileBeam:el,faSmileBeam:CN,faFlagCheckered:LN,faFootball:rl,faFootballBall:yN,faSchoolCircleExclamation:bN,faCrop:xN,faAnglesDown:al,faAngleDoubleDown:SN,faUsersRectangle:wN,faPeopleRoof:NN,faPeopleLine:AN,faBeerMugEmpty:nl,faBeer:_N,faDiagramPredecessor:kN,faArrowUpLong:tl,faLongArrowUp:TN,faFireFlameSimple:sl,faBurn:PN,faPerson:il,faMale:EN,faLaptop:ON,faFileCsv:RN,faMenorah:FN,faTruckPlane:BN,faRecordVinyl:DN,faFaceGrinStars:ol,faGrinStars:IN,faBong:UN,faSpaghettiMonsterFlying:fl,faPastafarianism:WN,faArrowDownUpAcrossLine:$N,faSpoon:ll,faUtensilSpoon:qN,faJarWheat:GN,faEnvelopesBulk:ul,faMailBulk:jN,faFileCircleExclamation:KN,faCircleH:hl,faHospitalSymbol:XN,faPager:YN,faAddressBook:pl,faContactBook:JN,faStrikethrough:QN,faK:ZN,faLandmarkFlag:cA,faPencil:ml,faPencilAlt:eA,faBackward:rA,faCaretRight:aA,faComments:nA,faPaste:vl,faFileClipboard:tA,faCodePullRequest:sA,faClipboardList:iA,faTruckRampBox:dl,faTruckLoading:oA,faUserCheck:fA,faVialVirus:lA,faSheetPlastic:uA,faBlog:hA,faUserNinja:pA,faPersonArrowUpFromLine:mA,faScrollTorah:Hl,faTorah:vA,faBroomBall:Ca,faQuidditch:dA,faQuidditchBroomBall:HA,faToggleOff:zA,faBoxArchive:zl,faArchive:gA,faPersonDrowning:VA,faArrowDown91:La,faSortNumericDesc:MA,faSortNumericDownAlt:CA,faFaceGrinTongueSquint:gl,faGrinTongueSquint:LA,faSprayCan:yA,faTruckMonster:bA,faW:xA,faEarthAfrica:Vl,faGlobeAfrica:SA,faRainbow:wA,faCircleNotch:NA,faTabletScreenButton:Ml,faTabletAlt:AA,faPaw:_A,faCloud:kA,faTrowelBricks:TA,faFaceFlushed:Cl,faFlushed:PA,faHospitalUser:EA,faTentArrowLeftRight:OA,faGavel:Ll,faLegal:RA,faBinoculars:FA,faMicrophoneSlash:BA,faBoxTissue:DA,faMotorcycle:IA,faBellConcierge:yl,faConciergeBell:UA,faPenRuler:bl,faPencilRuler:WA,faPeopleArrows:xl,faPeopleArrowsLeftRight:$A,faMarsAndVenusBurst:qA,faSquareCaretRight:Sl,faCaretSquareRight:GA,faScissors:wl,faCut:jA,faSunPlantWilt:KA,faToiletsPortable:XA,faHockeyPuck:YA,faTable:JA,faMagnifyingGlassArrowRight:QA,faTachographDigital:Nl,faDigitalTachograph:ZA,faUsersSlash:c_,faClover:e_,faReply:Al,faMailReply:r_,faStarAndCrescent:a_,faHouseFire:n_,faSquareMinus:_l,faMinusSquare:t_,faHelicopter:s_,faCompass:i_,faSquareCaretDown:kl,faCaretSquareDown:o_,faFileCircleQuestion:f_,faLaptopCode:l_,faSwatchbook:u_,faPrescriptionBottle:h_,faBars:Tl,faNavicon:p_,faPeopleGroup:m_,faHourglassEnd:Pl,faHourglass3:v_,faHeartCrack:El,faHeartBroken:d_,faSquareUpRight:Ol,faExternalLinkSquareAlt:H_,faFaceKissBeam:Rl,faKissBeam:z_,faFilm:g_,faRulerHorizontal:V_,faPeopleRobbery:M_,faLightbulb:C_,faCaretLeft:L_,faCircleExclamation:Fl,faExclamationCircle:y_,faSchoolCircleXmark:b_,faArrowRightFromBracket:Bl,faSignOut:x_,faCircleChevronDown:Dl,faChevronCircleDown:S_,faUnlockKeyhole:Il,faUnlockAlt:w_,faCloudShowersHeavy:N_,faHeadphonesSimple:Ul,faHeadphonesAlt:A_,faSitemap:__,faCircleDollarToSlot:Wl,faDonate:k_,faMemory:T_,faRoadSpikes:P_,faFireBurner:E_,faFlag:O_,faHanukiah:R_,faFeather:F_,faVolumeLow:$l,faVolumeDown:B_,faCommentSlash:D_,faCloudSunRain:I_,faCompress:U_,faWheatAwn:ql,faWheatAlt:W_,faAnkh:$_,faHandsHoldingChild:q_,faAsterisk:G_,faSquareCheck:Gl,faCheckSquare:j_,faPesetaSign:K_,faHeading:jl,faHeader:X_,faGhost:Y_,faList:Kl,faListSquares:J_,faSquarePhoneFlip:Xl,faPhoneSquareAlt:Q_,faCartPlus:Z_,faGamepad:ck,faCircleDot:Yl,faDotCircle:ek,faFaceDizzy:Jl,faDizzy:rk,faEgg:ak,faHouseMedicalCircleXmark:nk,faCampground:tk,faFolderPlus:sk,faFutbol:ya,faFutbolBall:ik,faSoccerBall:ok,faPaintbrush:Ql,faPaintBrush:fk,faLock:lk,faGasPump:uk,faHotTubPerson:Zl,faHotTub:hk,faMapLocation:cu,faMapMarked:pk,faHouseFloodWater:mk,faTree:vk,faBridgeLock:dk,faSackDollar:Hk,faPenToSquare:eu,faEdit:zk,faCarSide:gk,faShareNodes:ru,faShareAlt:Vk,faHeartCircleMinus:Mk,faHourglassHalf:au,faHourglass2:Ck,faMicroscope:Lk,faSink:yk,faBagShopping:nu,faShoppingBag:bk,faArrowDownZA:ba,faSortAlphaDesc:xk,faSortAlphaDownAlt:Sk,faMitten:wk,faPersonRays:Nk,faUsers:Ak,faEyeSlash:_k,faFlaskVial:kk,faHand:tu,faHandPaper:Tk,faOm:Pk,faWorm:Ek,faHouseCircleXmark:Ok,faPlug:Rk,faChevronUp:Fk,faHandSpock:Bk,faStopwatch:Dk,faFaceKiss:su,faKiss:Ik,faBridgeCircleXmark:Uk,faFaceGrinTongue:iu,faGrinTongue:Wk,faChessBishop:$k,faFaceGrinWink:ou,faGrinWink:qk,faEarDeaf:oe,faDeaf:Gk,faDeafness:jk,faHardOfHearing:Kk,faRoadCircleCheck:Xk,faDiceFive:Yk,faSquareRss:fu,faRssSquare:Jk,faLandMineOn:Qk,faICursor:Zk,faStamp:cT,faStairs:eT,faI:rT,faHryvniaSign:lu,faHryvnia:aT,faPills:nT,faFaceGrinWide:uu,faGrinAlt:tT,faTooth:sT,faV:iT,faBangladeshiTakaSign:oT,faBicycle:fT,faStaffSnake:fe,faRodAsclepius:lT,faRodSnake:uT,faStaffAesculapius:hT,faHeadSideCoughSlash:pT,faTruckMedical:hu,faAmbulance:mT,faWheatAwnCircleExclamation:vT,faSnowman:dT,faMortarPestle:HT,faRoadBarrier:zT,faSchool:gT,faIgloo:VT,faJoint:MT,faAngleRight:CT,faHorse:LT,faQ:yT,faG:bT,faNotesMedical:xT,faTemperatureHalf:le,faTemperature2:ST,faThermometer2:wT,faThermometerHalf:NT,faDongSign:AT,faCapsules:_T,faPooStorm:pu,faPooBolt:kT,faFaceFrownOpen:mu,faFrownOpen:TT,faHandPointUp:PT,faMoneyBill:ET,faBookmark:OT,faAlignJustify:RT,faUmbrellaBeach:FT,faHelmetUn:BT,faBullseye:DT,faBacon:IT,faHandPointDown:UT,faArrowUpFromBracket:WT,faFolder:vu,faFolderBlank:$T,faFileWaveform:du,faFileMedicalAlt:qT,faRadiation:GT,faChartSimple:jT,faMarsStroke:KT,faVial:XT,faGauge:ue,faDashboard:YT,faGaugeMed:JT,faTachometerAltAverage:QT,faWandMagicSparkles:Hu,faMagicWandSparkles:ZT,faE:cP,faPenClip:zu,faPenAlt:eP,faBridgeCircleExclamation:rP,faUser:aP,faSchoolCircleCheck:nP,faDumpster:tP,faVanShuttle:gu,faShuttleVan:sP,faBuildingUser:iP,faSquareCaretLeft:Vu,faCaretSquareLeft:oP,faHighlighter:fP,faKey:lP,faBullhorn:uP,faGlobe:hP,faSynagogue:pP,faPersonHalfDress:mP,faRoadBridge:vP,faLocationArrow:dP,faC:HP,faTabletButton:zP,faBuildingLock:gP,faPizzaSlice:VP,faMoneyBillWave:MP,faChartArea:Mu,faAreaChart:CP,faHouseFlag:LP,faPersonCircleMinus:yP,faBan:Cu,faCancel:bP,faCameraRotate:xP,faSprayCanSparkles:Lu,faAirFreshener:SP,faStar:wP,faRepeat:NP,faCross:AP,faBox:_P,faVenusMars:kP,faArrowPointer:yu,faMousePointer:TP,faMaximize:bu,faExpandArrowsAlt:PP,faChargingStation:EP,faShapes:xu,faTriangleCircleSquare:OP,faShuffle:Su,faRandom:RP,faPersonRunning:wu,faRunning:FP,faMobileRetro:BP,faGripLinesVertical:DP,faSpider:IP,faHandsBound:UP,faFileInvoiceDollar:WP,faPlaneCircleExclamation:$P,faXRay:qP,faSpellCheck:GP,faSlash:jP,faComputerMouse:Nu,faMouse:KP,faArrowRightToBracket:Au,faSignIn:XP,faShopSlash:_u,faStoreAltSlash:YP,faServer:JP,faVirusCovidSlash:QP,faShopLock:ZP,faHourglassStart:ku,faHourglass1:cE,faBlenderPhone:eE,faBuildingWheat:rE,faPersonBreastfeeding:aE,faRightToBracket:Tu,faSignInAlt:nE,faVenus:tE,faPassport:sE,faHeartPulse:Pu,faHeartbeat:iE,faPeopleCarryBox:Eu,faPeopleCarry:oE,faTemperatureHigh:fE,faMicrochip:lE,faCrown:uE,faWeightHanging:hE,faXmarksLines:pE,faFilePrescription:mE,faWeightScale:Ou,faWeight:vE,faUserGroup:Ru,faUserFriends:dE,faArrowUpAZ:Fu,faSortAlphaUp:HE,faChessKnight:zE,faFaceLaughSquint:Bu,faLaughSquint:gE,faWheelchair:VE,faCircleArrowUp:Du,faArrowCircleUp:ME,faToggleOn:CE,faPersonWalking:Iu,faWalking:LE,faL:yE,faFire:bE,faBedPulse:Uu,faProcedures:xE,faShuttleSpace:Wu,faSpaceShuttle:SE,faFaceLaugh:$u,faLaugh:wE,faFolderOpen:NE,faHeartCirclePlus:AE,faCodeFork:_E,faCity:kE,faMicrophoneLines:qu,faMicrophoneAlt:TE,faPepperHot:PE,faUnlock:EE,faColonSign:OE,faHeadset:RE,faStoreSlash:FE,faRoadCircleXmark:BE,faUserMinus:DE,faMarsStrokeUp:Gu,faMarsStrokeV:IE,faChampagneGlasses:ju,faGlassCheers:UE,faClipboard:WE,faHouseCircleExclamation:$E,faFileArrowUp:Ku,faFileUpload:qE,faWifi:xa,faWifi3:GE,faWifiStrong:jE,faBath:Xu,faBathtub:KE,faUnderline:XE,faUserPen:Yu,faUserEdit:YE,faSignature:JE,faStroopwafel:QE,faBold:ZE,faAnchorLock:cO,faBuildingNgo:eO,faManatSign:rO,faNotEqual:aO,faBorderTopLeft:Ju,faBorderStyle:nO,faMapLocationDot:Qu,faMapMarkedAlt:tO,faJedi:sO,faSquarePollVertical:Zu,faPoll:iO,faMugHot:oO,faCarBattery:ch,faBatteryCar:fO,faGift:lO,faDiceTwo:uO,faChessQueen:hO,faGlasses:pO,faChessBoard:mO,faBuildingCircleCheck:vO,faPersonChalkboard:dO,faMarsStrokeRight:eh,faMarsStrokeH:HO,faHandBackFist:rh,faHandRock:zO,faSquareCaretUp:ah,faCaretSquareUp:gO,faCloudShowersWater:VO,faChartBar:nh,faBarChart:MO,faHandsBubbles:th,faHandsWash:CO,faLessThanEqual:LO,faTrain:yO,faEyeLowVision:sh,faLowVision:bO,faCrow:xO,faSailboat:SO,faWindowRestore:wO,faSquarePlus:ih,faPlusSquare:NO,faToriiGate:AO,faFrog:_O,faBucket:kO,faImage:TO,faMicrophone:PO,faCow:EO,faCaretUp:OO,faScrewdriver:RO,faFolderClosed:FO,faHouseTsunami:BO,faSquareNfi:DO,faArrowUpFromGroundWater:IO,faMartiniGlass:oh,faGlassMartiniAlt:UO,faRotateLeft:he,faRotateBack:WO,faRotateBackward:$O,faUndoAlt:qO,faTableColumns:fh,faColumns:GO,faLemon:jO,faHeadSideMask:KO,faHandshake:XO,faGem:YO,faDolly:lh,faDollyBox:JO,faSmoking:QO,faMinimize:uh,faCompressArrowsAlt:ZO,faMonument:cR,faSnowplow:eR,faAnglesRight:hh,faAngleDoubleRight:rR,faCannabis:aR,faCirclePlay:ph,faPlayCircle:nR,faTablets:tR,faEthernet:sR,faEuroSign:Sa,faEur:iR,faEuro:oR,faChair:fR,faCircleCheck:mh,faCheckCircle:lR,faCircleStop:vh,faStopCircle:uR,faCompassDrafting:dh,faDraftingCompass:hR,faPlateWheat:pR,faIcicles:mR,faPersonShelter:vR,faNeuter:dR,faIdBadge:HR,faMarker:zR,faFaceLaughBeam:Hh,faLaughBeam:gR,faHelicopterSymbol:VR,faUniversalAccess:MR,faCircleChevronUp:zh,faChevronCircleUp:CR,faLariSign:LR,faVolcano:yR,faPersonWalkingDashedLineArrowRight:bR,faSterlingSign:wa,faGbp:xR,faPoundSign:SR,faViruses:wR,faSquarePersonConfined:NR,faUserTie:AR,faArrowDownLong:gh,faLongArrowDown:_R,faTentArrowDownToLine:kR,faCertificate:TR,faReplyAll:Vh,faMailReplyAll:PR,faSuitcase:ER,faPersonSkating:Mh,faSkating:OR,faFilterCircleDollar:Ch,faFunnelDollar:RR,faCameraRetro:FR,faCircleArrowDown:Lh,faArrowCircleDown:BR,faFileImport:yh,faArrowRightToFile:DR,faSquareArrowUpRight:bh,faExternalLinkSquare:IR,faBoxOpen:UR,faScroll:WR,faSpa:$R,faLocationPinLock:qR,faPause:GR,faHillAvalanche:jR,faTemperatureEmpty:pe,faTemperature0:KR,faThermometer0:XR,faThermometerEmpty:YR,faBomb:JR,faRegistered:QR,faAddressCard:Na,faContactCard:ZR,faVcard:cF,faScaleUnbalancedFlip:xh,faBalanceScaleRight:eF,faSubscript:rF,faDiamondTurnRight:Sh,faDirections:aF,faBurst:nF,faHouseLaptop:wh,faLaptopHouse:tF,faFaceTired:Nh,faTired:sF,faMoneyBills:iF,faSmog:oF,faCrutch:fF,faFontAwesome:Aa,faFontAwesomeFlag:lF,faFontAwesomeLogoFull:uF,faCloudArrowUp:_a,faCloudUpload:hF,faCloudUploadAlt:pF,faPalette:mF,faArrowsTurnRight:vF,faVest:dF,faFerry:HF,faArrowsDownToPeople:zF,faSeedling:Ah,faSprout:gF,faLeftRight:_h,faArrowsAltH:VF,faBoxesPacking:MF,faCircleArrowLeft:kh,faArrowCircleLeft:CF,faGroupArrowsRotate:LF,faBowlFood:yF,faCandyCane:bF,faArrowDownWideShort:ka,faSortAmountAsc:xF,faSortAmountDown:SF,faCloudBolt:Th,faThunderstorm:wF,faTextSlash:Ph,faRemoveFormat:NF,faFaceSmileWink:Eh,faSmileWink:AF,faFileWord:_F,faFilePowerpoint:kF,faArrowsLeftRight:Oh,faArrowsH:TF,faHouseLock:PF,faCloudArrowDown:Ta,faCloudDownload:EF,faCloudDownloadAlt:OF,faChildren:RF,faChalkboard:Rh,faBlackboard:FF,faUserLargeSlash:Fh,faUserAltSlash:BF,faEnvelopeOpen:DF,faHandshakeSimpleSlash:Bh,faHandshakeAltSlash:IF,faMattressPillow:UF,faGuaraniSign:WF,faArrowsRotate:Pa,faRefresh:$F,faSync:qF,faFireExtinguisher:GF,faCruzeiroSign:jF,faGreaterThanEqual:KF,faShieldHalved:Dh,faShieldAlt:XF,faBookAtlas:Ih,faAtlas:YF,faVirus:JF,faEnvelopeCircleCheck:QF,faLayerGroup:ZF,faArrowsToDot:cB,faArchway:eB,faHeartCircleCheck:rB,faHouseChimneyCrack:Uh,faHouseDamage:aB,faFileZipper:Wh,faFileArchive:nB,faSquare:tB,faMartiniGlassEmpty:$h,faGlassMartini:sB,faCouch:iB,faCediSign:oB,faItalic:fB,faChurch:lB,faCommentsDollar:uB,faDemocrat:hB,faZ:pB,faPersonSkiing:qh,faSkiing:mB,faRoadLock:vB,faA:dB,faTemperatureArrowDown:Gh,faTemperatureDown:HB,faFeatherPointed:jh,faFeatherAlt:zB,faP:gB,faSnowflake:VB,faNewspaper:MB,faRectangleAd:Kh,faAd:CB,faCircleArrowRight:Xh,faArrowCircleRight:LB,faFilterCircleXmark:yB,faLocust:bB,faSort:Yh,faUnsorted:xB,faListOl:Ea,faList12:SB,faListNumeric:wB,faPersonDressBurst:NB,faMoneyCheckDollar:Jh,faMoneyCheckAlt:AB,faVectorSquare:_B,faBreadSlice:kB,faLanguage:TB,faFaceKissWinkHeart:Qh,faKissWinkHeart:PB,faFilter:EB,faQuestion:OB,faFileSignature:RB,faUpDownLeftRight:Zh,faArrowsAlt:FB,faHouseChimneyUser:BB,faHandHoldingHeart:DB,faPuzzlePiece:IB,faMoneyCheck:UB,faStarHalfStroke:cp,faStarHalfAlt:WB,faCode:$B,faWhiskeyGlass:ep,faGlassWhiskey:qB,faBuildingCircleExclamation:GB,faMagnifyingGlassChart:jB,faArrowUpRightFromSquare:rp,faExternalLink:KB,faCubesStacked:XB,faWonSign:Oa,faKrw:YB,faWon:JB,faVirusCovid:QB,faAustralSign:ZB,faF:cD,faLeaf:eD,faRoad:rD,faTaxi:ap,faCab:aD,faPersonCirclePlus:nD,faChartPie:np,faPieChart:tD,faBoltLightning:sD,faSackXmark:iD,faFileExcel:oD,faFileContract:fD,faFishFins:lD,faBuildingFlag:uD,faFaceGrinBeam:tp,faGrinBeam:hD,faObjectUngroup:pD,faPoop:mD,faLocationPin:sp,faMapMarker:vD,faKaaba:dD,faToiletPaper:HD,faHelmetSafety:Ra,faHardHat:zD,faHatHard:gD,faEject:VD,faCircleRight:ip,faArrowAltCircleRight:MD,faPlaneCircleCheck:CD,faFaceRollingEyes:op,faMehRollingEyes:LD,faObjectGroup:yD,faChartLine:fp,faLineChart:bD,faMaskVentilator:xD,faArrowRight:SD,faSignsPost:lp,faMapSigns:wD,faCashRegister:ND,faPersonCircleQuestion:AD,faH:_D,faTarp:kD,faScrewdriverWrench:up,faTools:TD,faArrowsToEye:PD,faPlugCircleBolt:ED,faHeart:OD,faMarsAndVenus:RD,faHouseUser:hp,faHomeUser:FD,faDumpsterFire:BD,faHouseCrack:DD,faMartiniGlassCitrus:pp,faCocktail:ID,faFaceSurprise:mp,faSurprise:UD,faBottleWater:WD,faCirclePause:vp,faPauseCircle:$D,faToiletPaperSlash:qD,faAppleWhole:dp,faAppleAlt:GD,faKitchenSet:jD,faR:KD,faTemperatureQuarter:me,faTemperature1:XD,faThermometer1:YD,faThermometerQuarter:JD,faCube:QD,faBitcoinSign:ZD,faShieldDog:cI,faSolarPanel:eI,faLockOpen:rI,faElevator:aI,faMoneyBillTransfer:nI,faMoneyBillTrendUp:tI,faHouseFloodWaterCircleArrowRight:sI,faSquarePollHorizontal:Hp,faPollH:iI,faCircle:oI,faBackwardFast:zp,faFastBackward:fI,faRecycle:lI,faUserAstronaut:uI,faPlaneSlash:hI,faTrademark:pI,faBasketball:gp,faBasketballBall:mI,faSatelliteDish:vI,faCircleUp:Vp,faArrowAltCircleUp:dI,faMobileScreenButton:Mp,faMobileAlt:HI,faVolumeHigh:Cp,faVolumeUp:zI,faUsersRays:gI,faWallet:VI,faClipboardCheck:MI,faFileAudio:CI,faBurger:Lp,faHamburger:LI,faWrench:yI,faBugs:bI,faRupeeSign:yp,faRupee:xI,faFileImage:SI,faCircleQuestion:bp,faQuestionCircle:wI,faPlaneDeparture:NI,faHandshakeSlash:AI,faBookBookmark:_I,faCodeBranch:kI,faHatCowboy:TI,faBridge:PI,faPhoneFlip:xp,faPhoneAlt:EI,faTruckFront:OI,faCat:RI,faAnchorCircleExclamation:FI,faTruckField:BI,faRoute:DI,faClipboardQuestion:II,faPanorama:UI,faCommentMedical:WI,faTeethOpen:$I,faFileCircleMinus:qI,faTags:GI,faWineGlass:jI,faForwardFast:Sp,faFastForward:KI,faFaceMehBlank:wp,faMehBlank:XI,faSquareParking:Np,faParking:YI,faHouseSignal:JI,faBarsProgress:Ap,faTasksAlt:QI,faFaucetDrip:ZI,faCartFlatbed:_p,faDollyFlatbed:cU,faBanSmoking:kp,faSmokingBan:eU,faTerminal:rU,faMobileButton:aU,faHouseMedicalFlag:nU,faBasketShopping:Tp,faShoppingBasket:tU,faTape:sU,faBusSimple:Pp,faBusAlt:iU,faEye:oU,faFaceSadCry:Ep,faSadCry:fU,faAudioDescription:lU,faPersonMilitaryToPerson:uU,faFileShield:hU,faUserSlash:pU,faPen:mU,faTowerObservation:vU,faFileCode:dU,faSignal:Fa,faSignal5:HU,faSignalPerfect:zU,faBus:gU,faHeartCircleXmark:VU,faHouseChimney:Op,faHomeLg:MU,faWindowMaximize:CU,faFaceFrown:Rp,faFrown:LU,faPrescription:yU,faShop:Fp,faStoreAlt:bU,faFloppyDisk:Bp,faSave:xU,faVihara:SU,faScaleUnbalanced:Dp,faBalanceScaleLeft:wU,faSortUp:Ip,faSortAsc:NU,faCommentDots:Up,faCommenting:AU,faPlantWilt:_U,faDiamond:kU,faFaceGrinSquint:Wp,faGrinSquint:TU,faHandHoldingDollar:$p,faHandHoldingUsd:PU,faBacterium:EU,faHandPointer:OU,faDrumSteelpan:RU,faHandScissors:FU,faHandsPraying:qp,faPrayingHands:BU,faArrowRotateRight:ve,faArrowRightRotate:DU,faArrowRotateForward:IU,faRedo:UU,faBiohazard:WU,faLocationCrosshairs:Gp,faLocation:$U,faMarsDouble:qU,faChildDress:GU,faUsersBetweenLines:jU,faLungsVirus:KU,faFaceGrinTears:jp,faGrinTears:XU,faPhone:YU,faCalendarXmark:Kp,faCalendarTimes:JU,faChildReaching:QU,faHeadSideVirus:ZU,faUserGear:Xp,faUserCog:cW,faArrowUp19:Yp,faSortNumericUp:eW,faDoorClosed:rW,faShieldVirus:aW,faDiceSix:nW,faMosquitoNet:tW,faBridgeWater:sW,faPersonBooth:iW,faTextWidth:oW,faHatWizard:fW,faPenFancy:lW,faPersonDigging:Jp,faDigging:uW,faTrash:hW,faGaugeSimple:Ba,faGaugeSimpleMed:pW,faTachometerAverage:mW,faBookMedical:vW,faPoo:dW,faQuoteRight:Qp,faQuoteRightAlt:HW,faShirt:Da,faTShirt:zW,faTshirt:gW,faCubes:VW,faDivide:MW,faTengeSign:Zp,faTenge:CW,faHeadphones:LW,faHandsHolding:yW,faHandsClapping:bW,faRepublican:xW,faArrowLeft:SW,faPersonCircleXmark:wW,faRuler:NW,faAlignLeft:AW,faDiceD6:_W,faRestroom:kW,faJ:TW,faUsersViewfinder:PW,faFileVideo:EW,faUpRightFromSquare:cm,faExternalLinkAlt:OW,faTableCells:em,faTh:RW,faFilePdf:FW,faBookBible:rm,faBible:BW,faO:DW,faSuitcaseMedical:am,faMedkit:IW,faUserSecret:UW,faOtter:WW,faPersonDress:nm,faFemale:$W,faCommentDollar:qW,faBusinessTime:tm,faBriefcaseClock:GW,faTableCellsLarge:sm,faThLarge:jW,faBookTanakh:im,faTanakh:KW,faPhoneVolume:om,faVolumeControlPhone:XW,faHatCowboySide:YW,faClipboardUser:JW,faChild:QW,faLiraSign:ZW,faSatellite:c$,faPlaneLock:e$,faTag:r$,faComment:a$,faCakeCandles:Ia,faBirthdayCake:n$,faCake:t$,faEnvelope:s$,faAnglesUp:fm,faAngleDoubleUp:i$,faPaperclip:o$,faArrowRightToCity:f$,faRibbon:l$,faLungs:u$,faArrowUp91:lm,faSortNumericUpAlt:h$,faLitecoinSign:p$,faBorderNone:m$,faCircleNodes:v$,faParachuteBox:d$,faIndent:H$,faTruckFieldUn:z$,faHourglass:um,faHourglassEmpty:g$,faMountain:V$,faUserDoctor:hm,faUserMd:M$,faCircleInfo:pm,faInfoCircle:C$,faCloudMeatball:L$,faCamera:mm,faCameraAlt:y$,faSquareVirus:b$,faMeteor:x$,faCarOn:S$,faSleigh:w$,faArrowDown19:Ua,faSortNumericAsc:N$,faSortNumericDown:A$,faHandHoldingDroplet:vm,faHandHoldingWater:_$,faWater:k$,faCalendarCheck:T$,faBraille:P$,faPrescriptionBottleMedical:dm,faPrescriptionBottleAlt:E$,faLandmark:O$,faTruck:R$,faCrosshairs:F$,faPersonCane:B$,faTent:D$,faVestPatches:I$,faCheckDouble:U$,faArrowDownAZ:Wa,faSortAlphaAsc:W$,faSortAlphaDown:$$,faMoneyBillWheat:q$,faCookie:G$,faArrowRotateLeft:i7,faArrowLeftRotate:j$,faArrowRotateBack:K$,faArrowRotateBackward:X$,faUndo:Y$,faHardDrive:Hm,faHdd:J$,faFaceGrinSquintTears:zm,faGrinSquintTears:Q$,faDumbbell:Z$,faRectangleList:gm,faListAlt:cq,faTarpDroplet:eq,faHouseMedicalCircleCheck:rq,faPersonSkiingNordic:Vm,faSkiingNordic:aq,faCalendarPlus:nq,faPlaneArrival:tq,faCircleLeft:Mm,faArrowAltCircleLeft:sq,faTrainSubway:Cm,faSubway:iq,faChartGantt:oq,faIndianRupeeSign:$a,faIndianRupee:fq,faInr:lq,faCropSimple:Lm,faCropAlt:uq,faMoneyBill1:ym,faMoneyBillAlt:hq,faLeftLong:bm,faLongArrowAltLeft:pq,faDna:mq,faVirusSlash:vq,faMinus:xm,faSubtract:dq,faChess:Hq,faArrowLeftLong:Sm,faLongArrowLeft:zq,faPlugCircleCheck:gq,faStreetView:Vq,faFrancSign:Mq,faVolumeOff:Cq,faHandsAslInterpreting:de,faAmericanSignLanguageInterpreting:Lq,faAslInterpreting:yq,faHandsAmericanSignLanguageInterpreting:bq,faGear:wm,faCog:xq,faDropletSlash:Nm,faTintSlash:Sq,faMosque:wq,faMosquito:Nq,faStarOfDavid:Aq,faPersonMilitaryRifle:_q,faCartShopping:Am,faShoppingCart:kq,faVials:Tq,faPlugCirclePlus:Pq,faPlaceOfWorship:Eq,faGripVertical:Oq,faArrowTurnUp:_m,faLevelUp:Rq,faU:Fq,faSquareRootVariable:km,faSquareRootAlt:Bq,faClock:Tm,faClockFour:Dq,faBackwardStep:Pm,faStepBackward:Iq,faPallet:Uq,faFaucet:Wq,faBaseballBatBall:$q,faS:qq,faTimeline:Gq,faKeyboard:jq,faCaretDown:Kq,faHouseChimneyMedical:Em,faClinicMedical:Xq,faTemperatureThreeQuarters:He,faTemperature3:Yq,faThermometer3:Jq,faThermometerThreeQuarters:Qq,faMobileScreen:Om,faMobileAndroidAlt:Zq,faPlaneUp:cG,faPiggyBank:eG,faBatteryHalf:Rm,faBattery3:rG,faMountainCity:aG,faCoins:nG,faKhanda:tG,faSliders:Fm,faSlidersH:sG,faFolderTree:iG,faNetworkWired:oG,faMapPin:fG,faHamsa:lG,faCentSign:uG,faFlask:hG,faPersonPregnant:pG,faWandSparkles:mG,faEllipsisVertical:Bm,faEllipsisV:vG,faTicket:dG,faPowerOff:HG,faRightLong:Dm,faLongArrowAltRight:zG,faFlagUsa:gG,faLaptopFile:VG,faTty:Im,faTeletype:MG,faDiagramNext:CG,faPersonRifle:LG,faHouseMedicalCircleExclamation:yG,faClosedCaptioning:bG,faPersonHiking:Um,faHiking:xG,faVenusDouble:SG,faImages:wG,faCalculator:NG,faPeoplePulling:AG,faN:_G,faCableCar:Wm,faTram:kG,faCloudRain:TG,faBuildingCircleXmark:PG,faShip:EG,faArrowsDownToLine:OG,faDownload:RG,faFaceGrin:$m,faGrin:FG,faDeleteLeft:qm,faBackspace:BG,faEyeDropper:qa,faEyeDropperEmpty:DG,faEyedropper:IG,faFileCircleCheck:UG,faForward:WG,faMobile:Ga,faMobileAndroid:$G,faMobilePhone:qG,faFaceMeh:Gm,faMeh:GG,faAlignCenter:jG,faBookSkull:jm,faBookDead:KG,faIdCard:Km,faDriversLicense:XG,faOutdent:Xm,faDedent:YG,faHeartCircleExclamation:JG,faHouse:ze,faHome:QG,faHomeAlt:ZG,faHomeLgAlt:cj,faCalendarWeek:ej,faLaptopMedical:rj,faB:aj,faFileMedical:nj,faDiceOne:tj,faKiwiBird:sj,faArrowRightArrowLeft:Ym,faExchange:ij,faRotateRight:ja,faRedoAlt:oj,faRotateForward:fj,faUtensils:Jm,faCutlery:lj,faArrowUpWideShort:Qm,faSortAmountUp:uj,faMillSign:hj,faBowlRice:pj,faSkull:mj,faTowerBroadcast:Zm,faBroadcastTower:vj,faTruckPickup:dj,faUpLong:cv,faLongArrowAltUp:Hj,faStop:zj,faCodeMerge:gj,faUpload:Vj,faHurricane:Mj,faMound:Cj,faToiletPortable:Lj,faCompactDisc:yj,faFileArrowDown:ev,faFileDownload:bj,faCaravan:xj,faShieldCat:Sj,faBolt:rv,faZap:wj,faGlassWater:Nj,faOilWell:Aj,faVault:_j,faMars:kj,faToilet:Tj,faPlaneCircleXmark:Pj,faYenSign:o7,faCny:Ej,faJpy:Oj,faRmb:Rj,faYen:Fj,faRubleSign:ge,faRouble:Bj,faRub:Dj,faRuble:Ij,faSun:Uj,faGuitar:Wj,faFaceLaughWink:av,faLaughWink:$j,faHorseHead:qj,faBoreHole:Gj,faIndustry:jj,faCircleDown:nv,faArrowAltCircleDown:Kj,faArrowsTurnToDots:Xj,faFlorinSign:Yj,faArrowDownShortWide:Ka,faSortAmountDesc:Jj,faSortAmountDownAlt:Qj,faLessThan:Zj,faAngleDown:cK,faCarTunnel:eK,faHeadSideCough:rK,faGripLines:aK,faThumbsDown:nK,faUserLock:tK,faArrowRightLong:tv,faLongArrowRight:sK,faAnchorCircleXmark:iK,faEllipsis:sv,faEllipsisH:oK,faChessPawn:fK,faKitMedical:iv,faFirstAid:lK,faPersonThroughWindow:uK,faToolbox:hK,faHandsHoldingCircle:pK,faBug:mK,faCreditCard:ov,faCreditCardAlt:vK,faCar:fv,faAutomobile:dK,faHandHoldingHand:HK,faBookOpenReader:lv,faBookReader:zK,faMountainSun:gK,faArrowsLeftRightToLine:VK,faDiceD20:MK,faTruckDroplet:CK,faFileCircleXmark:LK,faTemperatureArrowUp:uv,faTemperatureUp:yK,faMedal:bK,faBed:xK,faSquareH:hv,faHSquare:SK,faPodcast:wK,faTemperatureFull:Ve,faTemperature4:NK,faThermometer4:AK,faThermometerFull:_K,faBell:kK,faSuperscript:TK,faPlugCircleXmark:PK,faStarOfLife:EK,faPhoneSlash:OK,faPaintRoller:RK,faHandshakeAngle:pv,faHandsHelping:FK,faLocationDot:mv,faMapMarkerAlt:BK,faFile:DK,faGreaterThan:IK,faPersonSwimming:vv,faSwimmer:UK,faArrowDown:WK,faDroplet:dv,faTint:$K,faEraser:qK,faEarthAmericas:Me,faEarth:GK,faEarthAmerica:jK,faGlobeAmericas:KK,faPersonBurst:XK,faDove:YK,faBatteryEmpty:Hv,faBattery0:JK,faSocks:QK,faInbox:ZK,faSection:cX,faGaugeHigh:Xa,faTachometerAlt:eX,faTachometerAltFast:rX,faEnvelopeOpenText:aX,faHospital:Ya,faHospitalAlt:nX,faHospitalWide:tX,faWineBottle:sX,faChessRook:iX,faBarsStaggered:Ja,faReorder:oX,faStream:fX,faDharmachakra:lX,faHotdog:uX,faPersonWalkingWithCane:zv,faBlind:hX,faDrum:pX,faIceCream:mX,faHeartCircleBolt:vX,faFax:dX,faParagraph:HX,faCheckToSlot:gv,faVoteYea:zX,faStarHalf:gX,faBoxesStacked:Qa,faBoxes:VX,faBoxesAlt:MX,faLink:Vv,faChain:CX,faEarListen:Mv,faAssistiveListeningSystems:LX,faTreeCity:yX,faPlay:bX,faFont:xX,faRupiahSign:SX,faMagnifyingGlass:Cv,faSearch:wX,faTableTennisPaddleBall:Za,faPingPongPaddleBall:NX,faTableTennis:AX,faPersonDotsFromLine:Lv,faDiagnoses:_X,faTrashCanArrowUp:yv,faTrashRestoreAlt:kX,faNairaSign:TX,faCartArrowDown:PX,faWalkieTalkie:EX,faFilePen:bv,faFileEdit:OX,faReceipt:RX,faSquarePen:cn,faPenSquare:FX,faPencilSquare:BX,faSuitcaseRolling:DX,faPersonCircleExclamation:IX,faChevronDown:UX,faBatteryFull:en,faBattery:WX,faBattery5:$X,faSkullCrossbones:qX,faCodeCompare:GX,faListUl:xv,faListDots:jX,faSchoolLock:KX,faTowerCell:XX,faDownLong:Sv,faLongArrowAltDown:YX,faRankingStar:JX,faChessKing:QX,faPersonHarassing:ZX,faBrazilianRealSign:cY,faLandmarkDome:wv,faLandmarkAlt:eY,faArrowUp:rY,faTv:rn,faTelevision:aY,faTvAlt:nY,faShrimp:tY,faListCheck:Nv,faTasks:sY,faJugDetergent:iY,faCircleUser:Av,faUserCircle:oY,faUserShield:fY,faWind:lY,faCarBurst:_v,faCarCrash:uY,faY:hY,faPersonSnowboarding:kv,faSnowboarding:pY,faTruckFast:Tv,faShippingFast:mY,faFish:vY,faUserGraduate:dY,faCircleHalfStroke:Pv,faAdjust:HY,faClapperboard:zY,faCircleRadiation:Ev,faRadiationAlt:gY,faBaseball:Ov,faBaseballBall:VY,faJetFighterUp:MY,faDiagramProject:Rv,faProjectDiagram:CY,faCopy:LY,faVolumeXmark:an,faVolumeMute:yY,faVolumeTimes:bY,faHandSparkles:xY,faGrip:Fv,faGripHorizontal:SY,faShareFromSquare:Bv,faShareSquare:wY,faChildCombatant:Dv,faChildRifle:NY,faGun:AY,faSquarePhone:Iv,faPhoneSquare:_Y,faPlus:Uv,faAdd:kY,faExpand:TY,faComputer:PY,faXmark:f7,faClose:EY,faMultiply:OY,faRemove:RY,faTimes:FY,faArrowsUpDownLeftRight:Wv,faArrows:BY,faChalkboardUser:$v,faChalkboardTeacher:DY,faPesoSign:IY,faBuildingShield:UY,faBaby:WY,faUsersLine:$Y,faQuoteLeft:qv,faQuoteLeftAlt:qY,faTractor:GY,faTrashArrowUp:Gv,faTrashRestore:jY,faArrowDownUpLock:KY,faLinesLeaning:XY,faRulerCombined:YY,faCopyright:JY,faEquals:QY,faBlender:ZY,faTeeth:cJ,faShekelSign:l7,faIls:eJ,faShekel:rJ,faSheqel:aJ,faSheqelSign:nJ,faMap:tJ,faRocket:sJ,faPhotoFilm:jv,faPhotoVideo:iJ,faFolderMinus:oJ,faStore:fJ,faArrowTrendUp:lJ,faPlugCircleMinus:uJ,faSignHanging:Kv,faSign:hJ,faBezierCurve:pJ,faBellSlash:mJ,faTablet:Xv,faTabletAndroid:vJ,faSchoolFlag:dJ,faFill:HJ,faAngleUp:zJ,faDrumstickBite:gJ,faHollyBerry:VJ,faChevronLeft:MJ,faBacteria:CJ,faHandLizard:LJ,faNotdef:yJ,faDisease:bJ,faBriefcaseMedical:xJ,faGenderless:SJ,faChevronRight:wJ,faRetweet:NJ,faCarRear:Yv,faCarAlt:AJ,faPumpSoap:_J,faVideoSlash:kJ,faBatteryQuarter:Jv,faBattery2:TJ,faRadio:PJ,faBabyCarriage:Qv,faCarriageBaby:EJ,faTrafficLight:OJ,faThermometer:RJ,faVrCardboard:FJ,faHandMiddleFinger:BJ,faPercent:Zv,faPercentage:DJ,faTruckMoving:IJ,faGlassWaterDroplet:UJ,faDisplay:WJ,faFaceSmile:cd,faSmile:$J,faThumbtack:ed,faThumbTack:qJ,faTrophy:GJ,faPersonPraying:rd,faPray:jJ,faHammer:KJ,faHandPeace:XJ,faRotate:ad,faSyncAlt:YJ,faSpinner:JJ,faRobot:QJ,faPeace:ZJ,faGears:nd,faCogs:cQ,faWarehouse:eQ,faArrowUpRightDots:rQ,faSplotch:aQ,faFaceGrinHearts:td,faGrinHearts:nQ,faDiceFour:tQ,faSimCard:sQ,faTransgender:sd,faTransgenderAlt:iQ,faMercury:oQ,faArrowTurnDown:id,faLevelDown:fQ,faPersonFallingBurst:lQ,faAward:uQ,faTicketSimple:od,faTicketAlt:hQ,faBuilding:pQ,faAnglesLeft:fd,faAngleDoubleLeft:mQ,faQrcode:vQ,faClockRotateLeft:ld,faHistory:dQ,faFaceGrinBeamSweat:ud,faGrinBeamSweat:HQ,faFileExport:hd,faArrowRightFromFile:zQ,faShield:pd,faShieldBlank:gQ,faArrowUpShortWide:md,faSortAmountUpAlt:VQ,faHouseMedical:MQ,faGolfBallTee:vd,faGolfBall:CQ,faCircleChevronLeft:dd,faChevronCircleLeft:LQ,faHouseChimneyWindow:yQ,faPenNib:bQ,faTentArrowTurnLeft:xQ,faTents:SQ,faWandMagic:Hd,faMagic:wQ,faDog:NQ,faCarrot:AQ,faMoon:_Q,faWineGlassEmpty:zd,faWineGlassAlt:kQ,faCheese:TQ,faYinYang:PQ,faMusic:EQ,faCodeCommit:OQ,faTemperatureLow:RQ,faPersonBiking:gd,faBiking:FQ,faBroom:BQ,faShieldHeart:DQ,faGopuram:IQ,faEarthOceania:Vd,faGlobeOceania:UQ,faSquareXmark:nn,faTimesSquare:WQ,faXmarkSquare:$Q,faHashtag:qQ,faUpRightAndDownLeftFromCenter:Md,faExpandAlt:GQ,faOilCan:jQ,faT:KQ,faHippo:XQ,faChartColumn:YQ,faInfinity:JQ,faVialCircleCheck:QQ,faPersonArrowDownToLine:ZQ,faVoicemail:cZ,faFan:eZ,faPersonWalkingLuggage:rZ,faUpDown:Cd,faArrowsAltV:aZ,faCloudMoonRain:nZ,faCalendar:tZ,faTrailer:sZ,faBahai:Ld,faHaykal:iZ,faSdCard:oZ,faDragon:fZ,faShoePrints:lZ,faCirclePlus:yd,faPlusCircle:uZ,faFaceGrinTongueWink:bd,faGrinTongueWink:hZ,faHandHolding:pZ,faPlugCircleExclamation:mZ,faLinkSlash:Ce,faChainBroken:vZ,faChainSlash:dZ,faUnlink:HZ,faClone:zZ,faPersonWalkingArrowLoopLeft:gZ,faArrowUpZA:xd,faSortAlphaUpAlt:VZ,faFireFlameCurved:Sd,faFireAlt:MZ,faTornado:CZ,faFileCirclePlus:LZ,faBookQuran:wd,faQuran:yZ,faAnchor:bZ,faBorderAll:xZ,faFaceAngry:Nd,faAngry:SZ,faCookieBite:wZ,faArrowTrendDown:NZ,faRss:Ad,faFeed:AZ,faDrawPolygon:_Z,faScaleBalanced:_d,faBalanceScale:kZ,faGaugeSimpleHigh:tn,faTachometer:TZ,faTachometerFast:PZ,faShower:EZ,faDesktop:kd,faDesktopAlt:OZ,faM:RZ,faTableList:Td,faThList:FZ,faCommentSms:Pd,faSms:BZ,faBook:DZ,faUserPlus:IZ,faCheck:UZ,faBatteryThreeQuarters:Ed,faBattery4:WZ,faHouseCircleCheck:$Z,faAngleLeft:qZ,faDiagramSuccessor:GZ,faTruckArrowRight:jZ,faArrowsSplitUpAndLeft:KZ,faHandFist:Od,faFistRaised:XZ,faCloudMoon:YZ,faBriefcase:JZ,faPersonFalling:QZ,faImagePortrait:Rd,faPortrait:ZZ,faUserTag:c22,faRug:e22,faEarthEurope:Fd,faGlobeEurope:r22,faCartFlatbedSuitcase:Bd,faLuggageCart:a22,faRectangleXmark:Le,faRectangleTimes:n22,faTimesRectangle:t22,faWindowClose:s22,faBahtSign:i22,faBookOpen:o22,faBookJournalWhills:Dd,faJournalWhills:f22,faHandcuffs:l22,faTriangleExclamation:sn,faExclamationTriangle:u22,faWarning:h22,faDatabase:p22,faShare:on,faArrowTurnRight:m22,faMailForward:v22,faBottleDroplet:d22,faMaskFace:H22,faHillRockslide:z22,faRightLeft:Id,faExchangeAlt:g22,faPaperPlane:V22,faRoadCircleExclamation:M22,faDungeon:C22,faAlignRight:L22,faMoneyBill1Wave:Ud,faMoneyBillWaveAlt:y22,faLifeRing:b22,faHands:fn,faSignLanguage:x22,faSigning:S22,faCalendarDay:w22,faWaterLadder:ln,faLadderWater:N22,faSwimmingPool:A22,faArrowsUpDown:Wd,faArrowsV:_22,faFaceGrimace:$d,faGrimace:k22,faWheelchairMove:qd,faWheelchairAlt:T22,faTurnDown:Gd,faLevelDownAlt:P22,faPersonWalkingArrowRight:E22,faSquareEnvelope:jd,faEnvelopeSquare:O22,faDice:R22,faBowlingBall:F22,faBrain:B22,faBandage:Kd,faBandAid:D22,faCalendarMinus:I22,faCircleXmark:un,faTimesCircle:U22,faXmarkCircle:W22,faGifts:$22,faHotel:q22,faEarthAsia:Xd,faGlobeAsia:G22,faIdCardClip:Yd,faIdCardAlt:j22,faMagnifyingGlassPlus:Jd,faSearchPlus:K22,faThumbsUp:X22,faUserClock:Y22,faHandDots:Qd,faAllergies:J22,faFileInvoice:Q22,faWindowMinimize:Z22,faMugSaucer:Zd,faCoffee:c12,faBrush:e12,faMask:r12,faMagnifyingGlassMinus:cH,faSearchMinus:a12,faRulerVertical:n12,faUserLarge:eH,faUserAlt:t12,faTrainTram:s12,faUserNurse:i12,faSyringe:o12,faCloudSun:f12,faStopwatch20:l12,faSquareFull:u12,faMagnet:h12,faJar:p12,faNoteSticky:rH,faStickyNote:m12,faBugSlash:v12,faArrowUpFromWaterPump:d12,faBone:H12,faUserInjured:z12,faFaceSadTear:aH,faSadTear:g12,faPlane:V12,faTentArrowsDown:M12,faExclamation:C12,faArrowsSpin:L12,faPrint:y12,faTurkishLiraSign:hn,faTry:b12,faTurkishLira:x12,faDollarSign:pn,faDollar:S12,faUsd:w12,faX:N12,faMagnifyingGlassDollar:nH,faSearchDollar:A12,faUsersGear:tH,faUsersCog:_12,faPersonMilitaryPointing:k12,faBuildingColumns:u7,faBank:T12,faInstitution:P12,faMuseum:E12,faUniversity:O12,faUmbrella:R12,faTrowel:F12,faD:B12,faStapler:D12,faMasksTheater:sH,faTheaterMasks:I12,faKipSign:U12,faHandPointLeft:W12,faHandshakeSimple:iH,faHandshakeAlt:$12,faJetFighter:oH,faFighterJet:q12,faSquareShareNodes:fH,faShareAltSquare:G12,faBarcode:j12,faPlusMinus:K12,faVideo:lH,faVideoCamera:X12,faGraduationCap:uH,faMortarBoard:Y12,faHandHoldingMedical:J12,faPersonCircleCheck:Q12,faTurnUp:hH,faLevelUpAlt:Z12};function mn(c,e){const r=Object.create(null),t=c.split(",");for(let s=0;s!!r[s.toLowerCase()]:s=>!!r[s]}function vn(c){if(z2(c)){const e={};for(let r=0;r{if(r){const t=r.split(r42);t.length>1&&(e[t[0].trim()]=t[1].trim())}}),e}function dn(c){let e="";if(g1(c))e=c;else if(z2(c))for(let r=0;rh7(r,e))}const Y52=c=>g1(c)?c:c==null?"":z2(c)||t1(c)&&(c.toString===dH||!N2(c.toString))?JSON.stringify(c,mH,2):String(c),mH=(c,e)=>e&&e.__v_isRef?mH(c,e.value):h0(e)?{[`Map(${e.size})`]:[...e.entries()].reduce((r,[t,s])=>(r[`${t} =>`]=s,r),{})}:_0(e)?{[`Set(${e.size})`]:[...e.values()]}:t1(e)&&!z2(e)&&!HH(e)?String(e):e,s1={},u0=[],s3=()=>{},o42=()=>!1,f42=/^on[^a-z]/,p7=c=>f42.test(c),zn=c=>c.startsWith("onUpdate:"),P1=Object.assign,gn=(c,e)=>{const r=c.indexOf(e);r>-1&&c.splice(r,1)},l42=Object.prototype.hasOwnProperty,q2=(c,e)=>l42.call(c,e),z2=Array.isArray,h0=c=>m7(c)==="[object Map]",_0=c=>m7(c)==="[object Set]",wi=c=>m7(c)==="[object Date]",N2=c=>typeof c=="function",g1=c=>typeof c=="string",$5=c=>typeof c=="symbol",t1=c=>c!==null&&typeof c=="object",vH=c=>t1(c)&&N2(c.then)&&N2(c.catch),dH=Object.prototype.toString,m7=c=>dH.call(c),u42=c=>m7(c).slice(8,-1),HH=c=>m7(c)==="[object Object]",Vn=c=>g1(c)&&c!=="NaN"&&c[0]!=="-"&&""+parseInt(c,10)===c,w5=mn(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),ye=c=>{const e=Object.create(null);return r=>e[r]||(e[r]=c(r))},h42=/-(\w)/g,y3=ye(c=>c.replace(h42,(e,r)=>r?r.toUpperCase():"")),p42=/\B([A-Z])/g,x8=ye(c=>c.replace(p42,"-$1").toLowerCase()),be=ye(c=>c.charAt(0).toUpperCase()+c.slice(1)),q9=ye(c=>c?`on${be(c)}`:""),q5=(c,e)=>!Object.is(c,e),Nc=(c,e)=>{for(let r=0;r{Object.defineProperty(c,e,{configurable:!0,enumerable:!1,value:r})},V0=c=>{const e=parseFloat(c);return isNaN(e)?c:e};let Ni;const m42=()=>Ni||(Ni=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});let x4;class v42{constructor(e=!1){this.detached=e,this.active=!0,this.effects=[],this.cleanups=[],this.parent=x4,!e&&x4&&(this.index=(x4.scopes||(x4.scopes=[])).push(this)-1)}run(e){if(this.active){const r=x4;try{return x4=this,e()}finally{x4=r}}}on(){x4=this}off(){x4=this.parent}stop(e){if(this.active){let r,t;for(r=0,t=this.effects.length;r{const e=new Set(c);return e.w=0,e.n=0,e},zH=c=>(c.w&R6)>0,gH=c=>(c.n&R6)>0,H42=({deps:c})=>{if(c.length)for(let e=0;e{const{deps:e}=c;if(e.length){let r=0;for(let t=0;t{(v==="length"||v>=h)&&l.push(m)})}else switch(r!==void 0&&l.push(f.get(r)),e){case"add":z2(c)?Vn(r)&&l.push(f.get("length")):(l.push(f.get(V8)),h0(c)&&l.push(f.get(Nr)));break;case"delete":z2(c)||(l.push(f.get(V8)),h0(c)&&l.push(f.get(Nr)));break;case"set":h0(c)&&l.push(f.get(V8));break}if(l.length===1)l[0]&&Ar(l[0]);else{const h=[];for(const m of l)m&&h.push(...m);Ar(Mn(h))}}function Ar(c,e){const r=z2(c)?c:[...c];for(const t of r)t.computed&&_i(t);for(const t of r)t.computed||_i(t)}function _i(c,e){(c!==e3||c.allowRecurse)&&(c.scheduler?c.scheduler():c.run())}const g42=mn("__proto__,__v_isRef,__isVue"),CH=new Set(Object.getOwnPropertyNames(Symbol).filter(c=>c!=="arguments"&&c!=="caller").map(c=>Symbol[c]).filter($5)),V42=Ln(),M42=Ln(!1,!0),C42=Ln(!0),ki=L42();function L42(){const c={};return["includes","indexOf","lastIndexOf"].forEach(e=>{c[e]=function(...r){const t=j2(this);for(let i=0,f=this.length;i{c[e]=function(...r){k0();const t=j2(this)[e].apply(this,r);return T0(),t}}),c}function Ln(c=!1,e=!1){return function(t,s,i){if(s==="__v_isReactive")return!c;if(s==="__v_isReadonly")return c;if(s==="__v_isShallow")return e;if(s==="__v_raw"&&i===(c?e?B42:SH:e?xH:bH).get(t))return t;const f=z2(t);if(!c&&f&&q2(ki,s))return Reflect.get(ki,s,i);const l=Reflect.get(t,s,i);return($5(s)?CH.has(s):g42(s))||(c||w4(t,"get",s),e)?l:W1(l)?f&&Vn(s)?l:l.value:t1(l)?c?wH(l):Se(l):l}}const y42=LH(),b42=LH(!0);function LH(c=!1){return function(r,t,s,i){let f=r[t];if(M0(f)&&W1(f)&&!W1(s))return!1;if(!c&&(!Dc(s)&&!M0(s)&&(f=j2(f),s=j2(s)),!z2(r)&&W1(f)&&!W1(s)))return f.value=s,!0;const l=z2(r)&&Vn(t)?Number(t)c,xe=c=>Reflect.getPrototypeOf(c);function lc(c,e,r=!1,t=!1){c=c.__v_raw;const s=j2(c),i=j2(e);r||(e!==i&&w4(s,"get",e),w4(s,"get",i));const{has:f}=xe(s),l=t?yn:r?Sn:G5;if(f.call(s,e))return l(c.get(e));if(f.call(s,i))return l(c.get(i));c!==s&&c.get(e)}function uc(c,e=!1){const r=this.__v_raw,t=j2(r),s=j2(c);return e||(c!==s&&w4(t,"has",c),w4(t,"has",s)),c===s?r.has(c):r.has(c)||r.has(s)}function hc(c,e=!1){return c=c.__v_raw,!e&&w4(j2(c),"iterate",V8),Reflect.get(c,"size",c)}function Ti(c){c=j2(c);const e=j2(this);return xe(e).has.call(e,c)||(e.add(c),J3(e,"add",c,c)),this}function Pi(c,e){e=j2(e);const r=j2(this),{has:t,get:s}=xe(r);let i=t.call(r,c);i||(c=j2(c),i=t.call(r,c));const f=s.call(r,c);return r.set(c,e),i?q5(e,f)&&J3(r,"set",c,e):J3(r,"add",c,e),this}function Ei(c){const e=j2(this),{has:r,get:t}=xe(e);let s=r.call(e,c);s||(c=j2(c),s=r.call(e,c)),t&&t.call(e,c);const i=e.delete(c);return s&&J3(e,"delete",c,void 0),i}function Oi(){const c=j2(this),e=c.size!==0,r=c.clear();return e&&J3(c,"clear",void 0,void 0),r}function pc(c,e){return function(t,s){const i=this,f=i.__v_raw,l=j2(f),h=e?yn:c?Sn:G5;return!c&&w4(l,"iterate",V8),f.forEach((m,v)=>t.call(s,h(m),h(v),i))}}function mc(c,e,r){return function(...t){const s=this.__v_raw,i=j2(s),f=h0(i),l=c==="entries"||c===Symbol.iterator&&f,h=c==="keys"&&f,m=s[c](...t),v=r?yn:e?Sn:G5;return!e&&w4(i,"iterate",h?Nr:V8),{next(){const{value:H,done:C}=m.next();return C?{value:H,done:C}:{value:l?[v(H[0]),v(H[1])]:v(H),done:C}},[Symbol.iterator](){return this}}}}function L6(c){return function(...e){return c==="delete"?!1:this}}function _42(){const c={get(i){return lc(this,i)},get size(){return hc(this)},has:uc,add:Ti,set:Pi,delete:Ei,clear:Oi,forEach:pc(!1,!1)},e={get(i){return lc(this,i,!1,!0)},get size(){return hc(this)},has:uc,add:Ti,set:Pi,delete:Ei,clear:Oi,forEach:pc(!1,!0)},r={get(i){return lc(this,i,!0)},get size(){return hc(this,!0)},has(i){return uc.call(this,i,!0)},add:L6("add"),set:L6("set"),delete:L6("delete"),clear:L6("clear"),forEach:pc(!0,!1)},t={get(i){return lc(this,i,!0,!0)},get size(){return hc(this,!0)},has(i){return uc.call(this,i,!0)},add:L6("add"),set:L6("set"),delete:L6("delete"),clear:L6("clear"),forEach:pc(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(i=>{c[i]=mc(i,!1,!1),r[i]=mc(i,!0,!1),e[i]=mc(i,!1,!0),t[i]=mc(i,!0,!0)}),[c,r,e,t]}const[k42,T42,P42,E42]=_42();function bn(c,e){const r=e?c?E42:P42:c?T42:k42;return(t,s,i)=>s==="__v_isReactive"?!c:s==="__v_isReadonly"?c:s==="__v_raw"?t:Reflect.get(q2(r,s)&&s in t?r:t,s,i)}const O42={get:bn(!1,!1)},R42={get:bn(!1,!0)},F42={get:bn(!0,!1)},bH=new WeakMap,xH=new WeakMap,SH=new WeakMap,B42=new WeakMap;function D42(c){switch(c){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function I42(c){return c.__v_skip||!Object.isExtensible(c)?0:D42(u42(c))}function Se(c){return M0(c)?c:xn(c,!1,yH,O42,bH)}function U42(c){return xn(c,!1,A42,R42,xH)}function wH(c){return xn(c,!0,N42,F42,SH)}function xn(c,e,r,t,s){if(!t1(c)||c.__v_raw&&!(e&&c.__v_isReactive))return c;const i=s.get(c);if(i)return i;const f=I42(c);if(f===0)return c;const l=new Proxy(c,f===2?t:r);return s.set(c,l),l}function p0(c){return M0(c)?p0(c.__v_raw):!!(c&&c.__v_isReactive)}function M0(c){return!!(c&&c.__v_isReadonly)}function Dc(c){return!!(c&&c.__v_isShallow)}function NH(c){return p0(c)||M0(c)}function j2(c){const e=c&&c.__v_raw;return e?j2(e):c}function Ic(c){return Bc(c,"__v_skip",!0),c}const G5=c=>t1(c)?Se(c):c,Sn=c=>t1(c)?wH(c):c;function AH(c){_6&&e3&&(c=j2(c),MH(c.dep||(c.dep=Mn())))}function _H(c,e){c=j2(c),c.dep&&Ar(c.dep)}function W1(c){return!!(c&&c.__v_isRef===!0)}function wn(c){return kH(c,!1)}function W42(c){return kH(c,!0)}function kH(c,e){return W1(c)?c:new $42(c,e)}class $42{constructor(e,r){this.__v_isShallow=r,this.dep=void 0,this.__v_isRef=!0,this._rawValue=r?e:j2(e),this._value=r?e:G5(e)}get value(){return AH(this),this._value}set value(e){const r=this.__v_isShallow||Dc(e)||M0(e);e=r?e:j2(e),q5(e,this._rawValue)&&(this._rawValue=e,this._value=r?e:G5(e),_H(this))}}function q42(c){return W1(c)?c.value:c}const G42={get:(c,e,r)=>q42(Reflect.get(c,e,r)),set:(c,e,r,t)=>{const s=c[e];return W1(s)&&!W1(r)?(s.value=r,!0):Reflect.set(c,e,r,t)}};function TH(c){return p0(c)?c:new Proxy(c,G42)}function Z52(c){const e=z2(c)?new Array(c.length):{};for(const r in c)e[r]=K42(c,r);return e}class j42{constructor(e,r,t){this._object=e,this._key=r,this._defaultValue=t,this.__v_isRef=!0}get value(){const e=this._object[this._key];return e===void 0?this._defaultValue:e}set value(e){this._object[this._key]=e}}function K42(c,e,r){const t=c[e];return W1(t)?t:new j42(c,e,r)}var PH;class X42{constructor(e,r,t,s){this._setter=r,this.dep=void 0,this.__v_isRef=!0,this[PH]=!1,this._dirty=!0,this.effect=new Cn(e,()=>{this._dirty||(this._dirty=!0,_H(this))}),this.effect.computed=this,this.effect.active=this._cacheable=!s,this.__v_isReadonly=t}get value(){const e=j2(this);return AH(e),(e._dirty||!e._cacheable)&&(e._dirty=!1,e._value=e.effect.run()),e._value}set value(e){this._setter(e)}}PH="__v_isReadonly";function Y42(c,e,r=!1){let t,s;const i=N2(c);return i?(t=c,s=s3):(t=c.get,s=c.set),new X42(t,s,i||!s,r)}function k6(c,e,r,t){let s;try{s=t?c(...t):c()}catch(i){we(i,e,r)}return s}function q4(c,e,r,t){if(N2(c)){const i=k6(c,e,r,t);return i&&vH(i)&&i.catch(f=>{we(f,e,r)}),i}const s=[];for(let i=0;i>>1;K5(Q1[t])V3&&Q1.splice(e,1)}function e32(c){z2(c)?m0.push(...c):(!W3||!W3.includes(c,c.allowRecurse?h8+1:h8))&&m0.push(c),OH()}function Ri(c,e=j5?V3+1:0){for(;eK5(r)-K5(t)),h8=0;h8c.id==null?1/0:c.id,r32=(c,e)=>{const r=K5(c)-K5(e);if(r===0){if(c.pre&&!e.pre)return-1;if(e.pre&&!c.pre)return 1}return r};function RH(c){_r=!1,j5=!0,Q1.sort(r32);const e=s3;try{for(V3=0;V3g1(x)?x.trim():x)),H&&(s=r.map(V0))}let l,h=t[l=q9(e)]||t[l=q9(y3(e))];!h&&i&&(h=t[l=q9(x8(e))]),h&&q4(h,c,6,s);const m=t[l+"Once"];if(m){if(!c.emitted)c.emitted={};else if(c.emitted[l])return;c.emitted[l]=!0,q4(m,c,6,s)}}function FH(c,e,r=!1){const t=e.emitsCache,s=t.get(c);if(s!==void 0)return s;const i=c.emits;let f={},l=!1;if(!N2(c)){const h=m=>{const v=FH(m,e,!0);v&&(l=!0,P1(f,v))};!r&&e.mixins.length&&e.mixins.forEach(h),c.extends&&h(c.extends),c.mixins&&c.mixins.forEach(h)}return!i&&!l?(t1(c)&&t.set(c,null),null):(z2(i)?i.forEach(h=>f[h]=null):P1(f,i),t1(c)&&t.set(c,f),f)}function Ne(c,e){return!c||!p7(e)?!1:(e=e.slice(2).replace(/Once$/,""),q2(c,e[0].toLowerCase()+e.slice(1))||q2(c,x8(e))||q2(c,e))}let $1=null,BH=null;function Wc(c){const e=$1;return $1=c,BH=c&&c.type.__scopeId||null,e}function n32(c,e=$1,r){if(!e||c._n)return c;const t=(...s)=>{t._d&&Ki(-1);const i=Wc(e);let f;try{f=c(...s)}finally{Wc(i),t._d&&Ki(1)}return f};return t._n=!0,t._c=!0,t._d=!0,t}function G9(c){const{type:e,vnode:r,proxy:t,withProxy:s,props:i,propsOptions:[f],slots:l,attrs:h,emit:m,render:v,renderCache:H,data:C,setupState:x,ctx:M,inheritAttrs:b}=c;let P,L;const S=Wc(c);try{if(r.shapeFlag&4){const B=s||t;P=c3(v.call(B,B,H,i,x,C,M)),L=h}else{const B=e;P=c3(B.length>1?B(i,{attrs:h,slots:l,emit:m}):B(i,null)),L=e.props?h:t32(h)}}catch(B){k5.length=0,we(B,c,1),P=q1(S4)}let E=P;if(L&&b!==!1){const B=Object.keys(L),{shapeFlag:G}=E;B.length&&G&7&&(f&&B.some(zn)&&(L=s32(L,f)),E=F6(E,L))}return r.dirs&&(E=F6(E),E.dirs=E.dirs?E.dirs.concat(r.dirs):r.dirs),r.transition&&(E.transition=r.transition),P=E,Wc(S),P}const t32=c=>{let e;for(const r in c)(r==="class"||r==="style"||p7(r))&&((e||(e={}))[r]=c[r]);return e},s32=(c,e)=>{const r={};for(const t in c)(!zn(t)||!(t.slice(9)in e))&&(r[t]=c[t]);return r};function i32(c,e,r){const{props:t,children:s,component:i}=c,{props:f,children:l,patchFlag:h}=e,m=i.emitsOptions;if(e.dirs||e.transition)return!0;if(r&&h>=0){if(h&1024)return!0;if(h&16)return t?Fi(t,f,m):!!f;if(h&8){const v=e.dynamicProps;for(let H=0;Hc.__isSuspense;function DH(c,e){e&&e.pendingBranch?z2(c)?e.effects.push(...c):e.effects.push(c):e32(c)}function l32(c,e){if(T1){let r=T1.provides;const t=T1.parent&&T1.parent.provides;t===r&&(r=T1.provides=Object.create(t)),r[c]=e}}function Ac(c,e,r=!1){const t=T1||$1;if(t){const s=t.parent==null?t.vnode.appContext&&t.vnode.appContext.provides:t.parent.provides;if(s&&c in s)return s[c];if(arguments.length>1)return r&&N2(e)?e.call(t.proxy):e}}function c72(c,e){return _n(c,null,e)}const vc={};function N5(c,e,r){return _n(c,e,r)}function _n(c,e,{immediate:r,deep:t,flush:s,onTrack:i,onTrigger:f}=s1){const l=T1;let h,m=!1,v=!1;if(W1(c)?(h=()=>c.value,m=Dc(c)):p0(c)?(h=()=>c,t=!0):z2(c)?(v=!0,m=c.some(E=>p0(E)||Dc(E)),h=()=>c.map(E=>{if(W1(E))return E.value;if(p0(E))return z8(E);if(N2(E))return k6(E,l,2)})):N2(c)?e?h=()=>k6(c,l,2):h=()=>{if(!(l&&l.isUnmounted))return H&&H(),q4(c,l,3,[C])}:h=s3,e&&t){const E=h;h=()=>z8(E())}let H,C=E=>{H=L.onStop=()=>{k6(E,l,4)}},x;if(Q5)if(C=s3,e?r&&q4(e,l,3,[h(),v?[]:void 0,C]):h(),s==="sync"){const E=r62();x=E.__watcherHandles||(E.__watcherHandles=[])}else return s3;let M=v?new Array(c.length).fill(vc):vc;const b=()=>{if(L.active)if(e){const E=L.run();(t||m||(v?E.some((B,G)=>q5(B,M[G])):q5(E,M)))&&(H&&H(),q4(e,l,3,[E,M===vc?void 0:v&&M[0]===vc?[]:M,C]),M=E)}else L.run()};b.allowRecurse=!!e;let P;s==="sync"?P=b:s==="post"?P=()=>p4(b,l&&l.suspense):(b.pre=!0,l&&(b.id=l.uid),P=()=>An(b));const L=new Cn(h,P);e?r?b():M=L.run():s==="post"?p4(L.run.bind(L),l&&l.suspense):L.run();const S=()=>{L.stop(),l&&l.scope&&gn(l.scope.effects,L)};return x&&x.push(S),S}function u32(c,e,r){const t=this.proxy,s=g1(c)?c.includes(".")?IH(t,c):()=>t[c]:c.bind(t,t);let i;N2(e)?i=e:(i=e.handler,r=e);const f=T1;L0(this);const l=_n(s,i.bind(t),r);return f?L0(f):M8(),l}function IH(c,e){const r=e.split(".");return()=>{let t=c;for(let s=0;s{z8(r,e)});else if(HH(c))for(const r in c)z8(c[r],e);return c}function UH(){const c={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return GH(()=>{c.isMounted=!0}),KH(()=>{c.isUnmounting=!0}),c}const U4=[Function,Array],h32={name:"BaseTransition",props:{mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:U4,onEnter:U4,onAfterEnter:U4,onEnterCancelled:U4,onBeforeLeave:U4,onLeave:U4,onAfterLeave:U4,onLeaveCancelled:U4,onBeforeAppear:U4,onAppear:U4,onAfterAppear:U4,onAppearCancelled:U4},setup(c,{slots:e}){const r=mz(),t=UH();let s;return()=>{const i=e.default&&kn(e.default(),!0);if(!i||!i.length)return;let f=i[0];if(i.length>1){for(const b of i)if(b.type!==S4){f=b;break}}const l=j2(c),{mode:h}=l;if(t.isLeaving)return j9(f);const m=Bi(f);if(!m)return j9(f);const v=X5(m,l,t,r);Y5(m,v);const H=r.subTree,C=H&&Bi(H);let x=!1;const{getTransitionKey:M}=m.type;if(M){const b=M();s===void 0?s=b:b!==s&&(s=b,x=!0)}if(C&&C.type!==S4&&(!p8(m,C)||x)){const b=X5(C,l,t,r);if(Y5(C,b),h==="out-in")return t.isLeaving=!0,b.afterLeave=()=>{t.isLeaving=!1,r.update.active!==!1&&r.update()},j9(f);h==="in-out"&&m.type!==S4&&(b.delayLeave=(P,L,S)=>{const E=$H(t,C);E[String(C.key)]=C,P._leaveCb=()=>{L(),P._leaveCb=void 0,delete v.delayedLeave},v.delayedLeave=S})}return f}}},WH=h32;function $H(c,e){const{leavingVNodes:r}=c;let t=r.get(e.type);return t||(t=Object.create(null),r.set(e.type,t)),t}function X5(c,e,r,t){const{appear:s,mode:i,persisted:f=!1,onBeforeEnter:l,onEnter:h,onAfterEnter:m,onEnterCancelled:v,onBeforeLeave:H,onLeave:C,onAfterLeave:x,onLeaveCancelled:M,onBeforeAppear:b,onAppear:P,onAfterAppear:L,onAppearCancelled:S}=e,E=String(c.key),B=$H(r,c),G=(F,e2)=>{F&&q4(F,t,9,e2)},c2=(F,e2)=>{const s2=e2[1];G(F,e2),z2(F)?F.every(v2=>v2.length<=1)&&s2():F.length<=1&&s2()},U={mode:i,persisted:f,beforeEnter(F){let e2=l;if(!r.isMounted)if(s)e2=b||l;else return;F._leaveCb&&F._leaveCb(!0);const s2=B[E];s2&&p8(c,s2)&&s2.el._leaveCb&&s2.el._leaveCb(),G(e2,[F])},enter(F){let e2=h,s2=m,v2=v;if(!r.isMounted)if(s)e2=P||h,s2=L||m,v2=S||v;else return;let r2=!1;const H2=F._enterCb=t2=>{r2||(r2=!0,t2?G(v2,[F]):G(s2,[F]),U.delayedLeave&&U.delayedLeave(),F._enterCb=void 0)};e2?c2(e2,[F,H2]):H2()},leave(F,e2){const s2=String(c.key);if(F._enterCb&&F._enterCb(!0),r.isUnmounting)return e2();G(H,[F]);let v2=!1;const r2=F._leaveCb=H2=>{v2||(v2=!0,e2(),H2?G(M,[F]):G(x,[F]),F._leaveCb=void 0,B[s2]===c&&delete B[s2])};B[s2]=c,C?c2(C,[F,r2]):r2()},clone(F){return X5(F,e,r,t)}};return U}function j9(c){if(Ae(c))return c=F6(c),c.children=null,c}function Bi(c){return Ae(c)?c.children?c.children[0]:void 0:c}function Y5(c,e){c.shapeFlag&6&&c.component?Y5(c.component.subTree,e):c.shapeFlag&128?(c.ssContent.transition=e.clone(c.ssContent),c.ssFallback.transition=e.clone(c.ssFallback)):c.transition=e}function kn(c,e=!1,r){let t=[],s=0;for(let i=0;i1)for(let i=0;i!!c.type.__asyncLoader,Ae=c=>c.type.__isKeepAlive;function p32(c,e){qH(c,"a",e)}function m32(c,e){qH(c,"da",e)}function qH(c,e,r=T1){const t=c.__wdc||(c.__wdc=()=>{let s=r;for(;s;){if(s.isDeactivated)return;s=s.parent}return c()});if(_e(e,t,r),r){let s=r.parent;for(;s&&s.parent;)Ae(s.parent.vnode)&&v32(t,e,r,s),s=s.parent}}function v32(c,e,r,t){const s=_e(e,c,t,!0);XH(()=>{gn(t[e],s)},r)}function _e(c,e,r=T1,t=!1){if(r){const s=r[c]||(r[c]=[]),i=e.__weh||(e.__weh=(...f)=>{if(r.isUnmounted)return;k0(),L0(r);const l=q4(e,r,c,f);return M8(),T0(),l});return t?s.unshift(i):s.push(i),i}}const c6=c=>(e,r=T1)=>(!Q5||c==="sp")&&_e(c,(...t)=>e(...t),r),d32=c6("bm"),GH=c6("m"),H32=c6("bu"),jH=c6("u"),KH=c6("bum"),XH=c6("um"),z32=c6("sp"),g32=c6("rtg"),V32=c6("rtc");function M32(c,e=T1){_e("ec",c,e)}function e72(c,e){const r=$1;if(r===null)return c;const t=Te(r)||r.proxy,s=c.dirs||(c.dirs=[]);for(let i=0;ie(f,l,void 0,i&&i[l]));else{const f=Object.keys(c);s=new Array(f.length);for(let l=0,h=f.length;lGc(e)?!(e.type===S4||e.type===s4&&!QH(e.children)):!0)?c:null}const kr=c=>c?vz(c)?Te(c)||c.proxy:kr(c.parent):null,A5=P1(Object.create(null),{$:c=>c,$el:c=>c.vnode.el,$data:c=>c.data,$props:c=>c.props,$attrs:c=>c.attrs,$slots:c=>c.slots,$refs:c=>c.refs,$parent:c=>kr(c.parent),$root:c=>kr(c.root),$emit:c=>c.emit,$options:c=>Pn(c),$forceUpdate:c=>c.f||(c.f=()=>An(c.update)),$nextTick:c=>c.n||(c.n=Q42.bind(c.proxy)),$watch:c=>u32.bind(c)}),K9=(c,e)=>c!==s1&&!c.__isScriptSetup&&q2(c,e),C32={get({_:c},e){const{ctx:r,setupState:t,data:s,props:i,accessCache:f,type:l,appContext:h}=c;let m;if(e[0]!=="$"){const x=f[e];if(x!==void 0)switch(x){case 1:return t[e];case 2:return s[e];case 4:return r[e];case 3:return i[e]}else{if(K9(t,e))return f[e]=1,t[e];if(s!==s1&&q2(s,e))return f[e]=2,s[e];if((m=c.propsOptions[0])&&q2(m,e))return f[e]=3,i[e];if(r!==s1&&q2(r,e))return f[e]=4,r[e];Tr&&(f[e]=0)}}const v=A5[e];let H,C;if(v)return e==="$attrs"&&w4(c,"get",e),v(c);if((H=l.__cssModules)&&(H=H[e]))return H;if(r!==s1&&q2(r,e))return f[e]=4,r[e];if(C=h.config.globalProperties,q2(C,e))return C[e]},set({_:c},e,r){const{data:t,setupState:s,ctx:i}=c;return K9(s,e)?(s[e]=r,!0):t!==s1&&q2(t,e)?(t[e]=r,!0):q2(c.props,e)||e[0]==="$"&&e.slice(1)in c?!1:(i[e]=r,!0)},has({_:{data:c,setupState:e,accessCache:r,ctx:t,appContext:s,propsOptions:i}},f){let l;return!!r[f]||c!==s1&&q2(c,f)||K9(e,f)||(l=i[0])&&q2(l,f)||q2(t,f)||q2(A5,f)||q2(s.config.globalProperties,f)},defineProperty(c,e,r){return r.get!=null?c._.accessCache[e]=0:q2(r,"value")&&this.set(c,e,r.value,null),Reflect.defineProperty(c,e,r)}};let Tr=!0;function L32(c){const e=Pn(c),r=c.proxy,t=c.ctx;Tr=!1,e.beforeCreate&&Ii(e.beforeCreate,c,"bc");const{data:s,computed:i,methods:f,watch:l,provide:h,inject:m,created:v,beforeMount:H,mounted:C,beforeUpdate:x,updated:M,activated:b,deactivated:P,beforeDestroy:L,beforeUnmount:S,destroyed:E,unmounted:B,render:G,renderTracked:c2,renderTriggered:U,errorCaptured:F,serverPrefetch:e2,expose:s2,inheritAttrs:v2,components:r2,directives:H2,filters:t2}=e;if(m&&y32(m,t,null,c.appContext.config.unwrapInjectedRef),f)for(const B2 in f){const b2=f[B2];N2(b2)&&(t[B2]=b2.bind(r))}if(s){const B2=s.call(r,r);t1(B2)&&(c.data=Se(B2))}if(Tr=!0,i)for(const B2 in i){const b2=i[B2],E1=N2(b2)?b2.bind(r,r):N2(b2.get)?b2.get.bind(r,r):s3,P2=!N2(b2)&&N2(b2.set)?b2.set.bind(r):s3,m1=$4({get:E1,set:P2});Object.defineProperty(t,B2,{enumerable:!0,configurable:!0,get:()=>m1.value,set:G1=>m1.value=G1})}if(l)for(const B2 in l)ZH(l[B2],t,r,B2);if(h){const B2=N2(h)?h.call(r):h;Reflect.ownKeys(B2).forEach(b2=>{l32(b2,B2[b2])})}v&&Ii(v,c,"c");function A2(B2,b2){z2(b2)?b2.forEach(E1=>B2(E1.bind(r))):b2&&B2(b2.bind(r))}if(A2(d32,H),A2(GH,C),A2(H32,x),A2(jH,M),A2(p32,b),A2(m32,P),A2(M32,F),A2(V32,c2),A2(g32,U),A2(KH,S),A2(XH,B),A2(z32,e2),z2(s2))if(s2.length){const B2=c.exposed||(c.exposed={});s2.forEach(b2=>{Object.defineProperty(B2,b2,{get:()=>r[b2],set:E1=>r[b2]=E1})})}else c.exposed||(c.exposed={});G&&c.render===s3&&(c.render=G),v2!=null&&(c.inheritAttrs=v2),r2&&(c.components=r2),H2&&(c.directives=H2)}function y32(c,e,r=s3,t=!1){z2(c)&&(c=Pr(c));for(const s in c){const i=c[s];let f;t1(i)?"default"in i?f=Ac(i.from||s,i.default,!0):f=Ac(i.from||s):f=Ac(i),W1(f)&&t?Object.defineProperty(e,s,{enumerable:!0,configurable:!0,get:()=>f.value,set:l=>f.value=l}):e[s]=f}}function Ii(c,e,r){q4(z2(c)?c.map(t=>t.bind(e.proxy)):c.bind(e.proxy),e,r)}function ZH(c,e,r,t){const s=t.includes(".")?IH(r,t):()=>r[t];if(g1(c)){const i=e[c];N2(i)&&N5(s,i)}else if(N2(c))N5(s,c.bind(r));else if(t1(c))if(z2(c))c.forEach(i=>ZH(i,e,r,t));else{const i=N2(c.handler)?c.handler.bind(r):e[c.handler];N2(i)&&N5(s,i,c)}}function Pn(c){const e=c.type,{mixins:r,extends:t}=e,{mixins:s,optionsCache:i,config:{optionMergeStrategies:f}}=c.appContext,l=i.get(e);let h;return l?h=l:!s.length&&!r&&!t?h=e:(h={},s.length&&s.forEach(m=>$c(h,m,f,!0)),$c(h,e,f)),t1(e)&&i.set(e,h),h}function $c(c,e,r,t=!1){const{mixins:s,extends:i}=e;i&&$c(c,i,r,!0),s&&s.forEach(f=>$c(c,f,r,!0));for(const f in e)if(!(t&&f==="expose")){const l=b32[f]||r&&r[f];c[f]=l?l(c[f],e[f]):e[f]}return c}const b32={data:Ui,props:u8,emits:u8,methods:u8,computed:u8,beforeCreate:t4,created:t4,beforeMount:t4,mounted:t4,beforeUpdate:t4,updated:t4,beforeDestroy:t4,beforeUnmount:t4,destroyed:t4,unmounted:t4,activated:t4,deactivated:t4,errorCaptured:t4,serverPrefetch:t4,components:u8,directives:u8,watch:S32,provide:Ui,inject:x32};function Ui(c,e){return e?c?function(){return P1(N2(c)?c.call(this,this):c,N2(e)?e.call(this,this):e)}:e:c}function x32(c,e){return u8(Pr(c),Pr(e))}function Pr(c){if(z2(c)){const e={};for(let r=0;r0)&&!(f&16)){if(f&8){const v=c.vnode.dynamicProps;for(let H=0;H{h=!0;const[C,x]=ez(H,e,!0);P1(f,C),x&&l.push(...x)};!r&&e.mixins.length&&e.mixins.forEach(v),c.extends&&v(c.extends),c.mixins&&c.mixins.forEach(v)}if(!i&&!h)return t1(c)&&t.set(c,u0),u0;if(z2(i))for(let v=0;v-1,x[1]=b<0||M-1||q2(x,"default"))&&l.push(H)}}}const m=[f,l];return t1(c)&&t.set(c,m),m}function Wi(c){return c[0]!=="$"}function $i(c){const e=c&&c.toString().match(/^\s*function (\w+)/);return e?e[1]:c===null?"null":""}function qi(c,e){return $i(c)===$i(e)}function Gi(c,e){return z2(e)?e.findIndex(r=>qi(r,c)):N2(e)&&qi(e,c)?0:-1}const rz=c=>c[0]==="_"||c==="$stable",En=c=>z2(c)?c.map(c3):[c3(c)],A32=(c,e,r)=>{if(e._n)return e;const t=n32((...s)=>En(e(...s)),r);return t._c=!1,t},az=(c,e,r)=>{const t=c._ctx;for(const s in c){if(rz(s))continue;const i=c[s];if(N2(i))e[s]=A32(s,i,t);else if(i!=null){const f=En(i);e[s]=()=>f}}},nz=(c,e)=>{const r=En(e);c.slots.default=()=>r},_32=(c,e)=>{if(c.vnode.shapeFlag&32){const r=e._;r?(c.slots=j2(e),Bc(e,"_",r)):az(e,c.slots={})}else c.slots={},e&&nz(c,e);Bc(c.slots,ke,1)},k32=(c,e,r)=>{const{vnode:t,slots:s}=c;let i=!0,f=s1;if(t.shapeFlag&32){const l=e._;l?r&&l===1?i=!1:(P1(s,e),!r&&l===1&&delete s._):(i=!e.$stable,az(e,s)),f=e}else e&&(nz(c,e),f={default:1});if(i)for(const l in s)!rz(l)&&!(l in f)&&delete s[l]};function tz(){return{app:null,config:{isNativeTag:o42,performance:!1,globalProperties:{},optionMergeStrategies:{},errorHandler:void 0,warnHandler:void 0,compilerOptions:{}},mixins:[],components:{},directives:{},provides:Object.create(null),optionsCache:new WeakMap,propsCache:new WeakMap,emitsCache:new WeakMap}}let T32=0;function P32(c,e){return function(t,s=null){N2(t)||(t=Object.assign({},t)),s!=null&&!t1(s)&&(s=null);const i=tz(),f=new Set;let l=!1;const h=i.app={_uid:T32++,_component:t,_props:s,_container:null,_context:i,_instance:null,version:a62,get config(){return i.config},set config(m){},use(m,...v){return f.has(m)||(m&&N2(m.install)?(f.add(m),m.install(h,...v)):N2(m)&&(f.add(m),m(h,...v))),h},mixin(m){return i.mixins.includes(m)||i.mixins.push(m),h},component(m,v){return v?(i.components[m]=v,h):i.components[m]},directive(m,v){return v?(i.directives[m]=v,h):i.directives[m]},mount(m,v,H){if(!l){const C=q1(t,s);return C.appContext=i,v&&e?e(C,m):c(C,m,H),l=!0,h._container=m,m.__vue_app__=h,Te(C.component)||C.component.proxy}},unmount(){l&&(c(null,h._container),delete h._container.__vue_app__)},provide(m,v){return i.provides[m]=v,h}};return h}}function qc(c,e,r,t,s=!1){if(z2(c)){c.forEach((C,x)=>qc(C,e&&(z2(e)?e[x]:e),r,t,s));return}if(v0(t)&&!s)return;const i=t.shapeFlag&4?Te(t.component)||t.component.proxy:t.el,f=s?null:i,{i:l,r:h}=c,m=e&&e.r,v=l.refs===s1?l.refs={}:l.refs,H=l.setupState;if(m!=null&&m!==h&&(g1(m)?(v[m]=null,q2(H,m)&&(H[m]=null)):W1(m)&&(m.value=null)),N2(h))k6(h,l,12,[f,v]);else{const C=g1(h),x=W1(h);if(C||x){const M=()=>{if(c.f){const b=C?q2(H,h)?H[h]:v[h]:h.value;s?z2(b)&&gn(b,i):z2(b)?b.includes(i)||b.push(i):C?(v[h]=[i],q2(H,h)&&(H[h]=v[h])):(h.value=[i],c.k&&(v[c.k]=h.value))}else C?(v[h]=f,q2(H,h)&&(H[h]=f)):x&&(h.value=f,c.k&&(v[c.k]=f))};f?(M.id=-1,p4(M,r)):M()}}}let y6=!1;const dc=c=>/svg/.test(c.namespaceURI)&&c.tagName!=="foreignObject",Hc=c=>c.nodeType===8;function E32(c){const{mt:e,p:r,o:{patchProp:t,createText:s,nextSibling:i,parentNode:f,remove:l,insert:h,createComment:m}}=c,v=(L,S)=>{if(!S.hasChildNodes()){r(null,L,S),Uc(),S._vnode=L;return}y6=!1,H(S.firstChild,L,null,null,null),Uc(),S._vnode=L,y6&&console.error("Hydration completed but contains mismatches.")},H=(L,S,E,B,G,c2=!1)=>{const U=Hc(L)&&L.data==="[",F=()=>b(L,S,E,B,G,U),{type:e2,ref:s2,shapeFlag:v2,patchFlag:r2}=S;let H2=L.nodeType;S.el=L,r2===-2&&(c2=!1,S.dynamicChildren=null);let t2=null;switch(e2){case C0:H2!==3?S.children===""?(h(S.el=s(""),f(L),L),t2=L):t2=F():(L.data!==S.children&&(y6=!0,L.data=S.children),t2=i(L));break;case S4:H2!==8||U?t2=F():t2=i(L);break;case _c:if(U&&(L=i(L),H2=L.nodeType),H2===1||H2===3){t2=L;const Y2=!S.children.length;for(let A2=0;A2{c2=c2||!!S.dynamicChildren;const{type:U,props:F,patchFlag:e2,shapeFlag:s2,dirs:v2}=S,r2=U==="input"&&v2||U==="option";if(r2||e2!==-1){if(v2&&H3(S,null,E,"created"),F)if(r2||!c2||e2&48)for(const t2 in F)(r2&&t2.endsWith("value")||p7(t2)&&!w5(t2))&&t(L,t2,null,F[t2],!1,void 0,E);else F.onClick&&t(L,"onClick",null,F.onClick,!1,void 0,E);let H2;if((H2=F&&F.onVnodeBeforeMount)&&W4(H2,E,S),v2&&H3(S,null,E,"beforeMount"),((H2=F&&F.onVnodeMounted)||v2)&&DH(()=>{H2&&W4(H2,E,S),v2&&H3(S,null,E,"mounted")},B),s2&16&&!(F&&(F.innerHTML||F.textContent))){let t2=x(L.firstChild,S,L,E,B,G,c2);for(;t2;){y6=!0;const Y2=t2;t2=t2.nextSibling,l(Y2)}}else s2&8&&L.textContent!==S.children&&(y6=!0,L.textContent=S.children)}return L.nextSibling},x=(L,S,E,B,G,c2,U)=>{U=U||!!S.dynamicChildren;const F=S.children,e2=F.length;for(let s2=0;s2{const{slotScopeIds:U}=S;U&&(G=G?G.concat(U):U);const F=f(L),e2=x(i(L),S,F,E,B,G,c2);return e2&&Hc(e2)&&e2.data==="]"?i(S.anchor=e2):(y6=!0,h(S.anchor=m("]"),F,e2),e2)},b=(L,S,E,B,G,c2)=>{if(y6=!0,S.el=null,c2){const e2=P(L);for(;;){const s2=i(L);if(s2&&s2!==e2)l(s2);else break}}const U=i(L),F=f(L);return l(L),r(null,S,F,U,E,B,dc(F),G),U},P=L=>{let S=0;for(;L;)if(L=i(L),L&&Hc(L)&&(L.data==="["&&S++,L.data==="]")){if(S===0)return i(L);S--}return L};return[v,H]}const p4=DH;function O32(c){return sz(c)}function R32(c){return sz(c,E32)}function sz(c,e){const r=m42();r.__VUE__=!0;const{insert:t,remove:s,patchProp:i,createElement:f,createText:l,createComment:h,setText:m,setElementText:v,parentNode:H,nextSibling:C,setScopeId:x=s3,insertStaticContent:M}=c,b=(w,_,R,K=null,X=null,J=null,a2=!1,Q=null,Z=!!_.dynamicChildren)=>{if(w===_)return;w&&!p8(w,_)&&(K=i3(w),G1(w,X,J,!0),w=null),_.patchFlag===-2&&(Z=!1,_.dynamicChildren=null);const{type:j,ref:u2,shapeFlag:i2}=_;switch(j){case C0:P(w,_,R,K);break;case S4:L(w,_,R,K);break;case _c:w==null&&S(_,R,K,a2);break;case s4:r2(w,_,R,K,X,J,a2,Q,Z);break;default:i2&1?G(w,_,R,K,X,J,a2,Q,Z):i2&6?H2(w,_,R,K,X,J,a2,Q,Z):(i2&64||i2&128)&&j.process(w,_,R,K,X,J,a2,Q,Z,O1)}u2!=null&&X&&qc(u2,w&&w.ref,J,_||w,!_)},P=(w,_,R,K)=>{if(w==null)t(_.el=l(_.children),R,K);else{const X=_.el=w.el;_.children!==w.children&&m(X,_.children)}},L=(w,_,R,K)=>{w==null?t(_.el=h(_.children||""),R,K):_.el=w.el},S=(w,_,R,K)=>{[w.el,w.anchor]=M(w.children,_,R,K,w.el,w.anchor)},E=({el:w,anchor:_},R,K)=>{let X;for(;w&&w!==_;)X=C(w),t(w,R,K),w=X;t(_,R,K)},B=({el:w,anchor:_})=>{let R;for(;w&&w!==_;)R=C(w),s(w),w=R;s(_)},G=(w,_,R,K,X,J,a2,Q,Z)=>{a2=a2||_.type==="svg",w==null?c2(_,R,K,X,J,a2,Q,Z):e2(w,_,X,J,a2,Q,Z)},c2=(w,_,R,K,X,J,a2,Q)=>{let Z,j;const{type:u2,props:i2,shapeFlag:l2,transition:d2,dirs:x2}=w;if(Z=w.el=f(w.type,J,i2&&i2.is,i2),l2&8?v(Z,w.children):l2&16&&F(w.children,Z,null,K,X,J&&u2!=="foreignObject",a2,Q),x2&&H3(w,null,K,"created"),i2){for(const S2 in i2)S2!=="value"&&!w5(S2)&&i(Z,S2,null,i2[S2],J,w.children,K,X,C1);"value"in i2&&i(Z,"value",null,i2.value),(j=i2.onVnodeBeforeMount)&&W4(j,K,w)}U(Z,w,w.scopeId,a2,K),x2&&H3(w,null,K,"beforeMount");const _2=(!X||X&&!X.pendingBranch)&&d2&&!d2.persisted;_2&&d2.beforeEnter(Z),t(Z,_,R),((j=i2&&i2.onVnodeMounted)||_2||x2)&&p4(()=>{j&&W4(j,K,w),_2&&d2.enter(Z),x2&&H3(w,null,K,"mounted")},X)},U=(w,_,R,K,X)=>{if(R&&x(w,R),K)for(let J=0;J{for(let j=Z;j{const Q=_.el=w.el;let{patchFlag:Z,dynamicChildren:j,dirs:u2}=_;Z|=w.patchFlag&16;const i2=w.props||s1,l2=_.props||s1;let d2;R&&o8(R,!1),(d2=l2.onVnodeBeforeUpdate)&&W4(d2,R,_,w),u2&&H3(_,w,R,"beforeUpdate"),R&&o8(R,!0);const x2=X&&_.type!=="foreignObject";if(j?s2(w.dynamicChildren,j,Q,R,K,x2,J):a2||b2(w,_,Q,null,R,K,x2,J,!1),Z>0){if(Z&16)v2(Q,_,i2,l2,R,K,X);else if(Z&2&&i2.class!==l2.class&&i(Q,"class",null,l2.class,X),Z&4&&i(Q,"style",i2.style,l2.style,X),Z&8){const _2=_.dynamicProps;for(let S2=0;S2<_2.length;S2++){const J2=_2[S2],a1=i2[J2],c4=l2[J2];(c4!==a1||J2==="value")&&i(Q,J2,a1,c4,X,w.children,R,K,C1)}}Z&1&&w.children!==_.children&&v(Q,_.children)}else!a2&&j==null&&v2(Q,_,i2,l2,R,K,X);((d2=l2.onVnodeUpdated)||u2)&&p4(()=>{d2&&W4(d2,R,_,w),u2&&H3(_,w,R,"updated")},K)},s2=(w,_,R,K,X,J,a2)=>{for(let Q=0;Q<_.length;Q++){const Z=w[Q],j=_[Q],u2=Z.el&&(Z.type===s4||!p8(Z,j)||Z.shapeFlag&70)?H(Z.el):R;b(Z,j,u2,null,K,X,J,a2,!0)}},v2=(w,_,R,K,X,J,a2)=>{if(R!==K){if(R!==s1)for(const Q in R)!w5(Q)&&!(Q in K)&&i(w,Q,R[Q],null,a2,_.children,X,J,C1);for(const Q in K){if(w5(Q))continue;const Z=K[Q],j=R[Q];Z!==j&&Q!=="value"&&i(w,Q,j,Z,a2,_.children,X,J,C1)}"value"in K&&i(w,"value",R.value,K.value)}},r2=(w,_,R,K,X,J,a2,Q,Z)=>{const j=_.el=w?w.el:l(""),u2=_.anchor=w?w.anchor:l("");let{patchFlag:i2,dynamicChildren:l2,slotScopeIds:d2}=_;d2&&(Q=Q?Q.concat(d2):d2),w==null?(t(j,R,K),t(u2,R,K),F(_.children,R,u2,X,J,a2,Q,Z)):i2>0&&i2&64&&l2&&w.dynamicChildren?(s2(w.dynamicChildren,l2,R,X,J,a2,Q),(_.key!=null||X&&_===X.subTree)&&On(w,_,!0)):b2(w,_,R,u2,X,J,a2,Q,Z)},H2=(w,_,R,K,X,J,a2,Q,Z)=>{_.slotScopeIds=Q,w==null?_.shapeFlag&512?X.ctx.activate(_,R,K,a2,Z):t2(_,R,K,X,J,a2,Z):Y2(w,_,Z)},t2=(w,_,R,K,X,J,a2)=>{const Q=w.component=K32(w,K,X);if(Ae(w)&&(Q.ctx.renderer=O1),X32(Q),Q.asyncDep){if(X&&X.registerDep(Q,A2),!w.el){const Z=Q.subTree=q1(S4);L(null,Z,_,R)}return}A2(Q,w,_,R,X,J,a2)},Y2=(w,_,R)=>{const K=_.component=w.component;if(i32(w,_,R))if(K.asyncDep&&!K.asyncResolved){B2(K,_,R);return}else K.next=_,c32(K.update),K.update();else _.el=w.el,K.vnode=_},A2=(w,_,R,K,X,J,a2)=>{const Q=()=>{if(w.isMounted){let{next:u2,bu:i2,u:l2,parent:d2,vnode:x2}=w,_2=u2,S2;o8(w,!1),u2?(u2.el=x2.el,B2(w,u2,a2)):u2=x2,i2&&Nc(i2),(S2=u2.props&&u2.props.onVnodeBeforeUpdate)&&W4(S2,d2,u2,x2),o8(w,!0);const J2=G9(w),a1=w.subTree;w.subTree=J2,b(a1,J2,H(a1.el),i3(a1),w,X,J),u2.el=J2.el,_2===null&&o32(w,J2.el),l2&&p4(l2,X),(S2=u2.props&&u2.props.onVnodeUpdated)&&p4(()=>W4(S2,d2,u2,x2),X)}else{let u2;const{el:i2,props:l2}=_,{bm:d2,m:x2,parent:_2}=w,S2=v0(_);if(o8(w,!1),d2&&Nc(d2),!S2&&(u2=l2&&l2.onVnodeBeforeMount)&&W4(u2,_2,_),o8(w,!0),i2&&i4){const J2=()=>{w.subTree=G9(w),i4(i2,w.subTree,w,X,null)};S2?_.type.__asyncLoader().then(()=>!w.isUnmounted&&J2()):J2()}else{const J2=w.subTree=G9(w);b(null,J2,R,K,w,X,J),_.el=J2.el}if(x2&&p4(x2,X),!S2&&(u2=l2&&l2.onVnodeMounted)){const J2=_;p4(()=>W4(u2,_2,J2),X)}(_.shapeFlag&256||_2&&v0(_2.vnode)&&_2.vnode.shapeFlag&256)&&w.a&&p4(w.a,X),w.isMounted=!0,_=R=K=null}},Z=w.effect=new Cn(Q,()=>An(j),w.scope),j=w.update=()=>Z.run();j.id=w.uid,o8(w,!0),j()},B2=(w,_,R)=>{_.component=w;const K=w.vnode.props;w.vnode=_,w.next=null,N32(w,_.props,K,R),k32(w,_.children,R),k0(),Ri(),T0()},b2=(w,_,R,K,X,J,a2,Q,Z=!1)=>{const j=w&&w.children,u2=w?w.shapeFlag:0,i2=_.children,{patchFlag:l2,shapeFlag:d2}=_;if(l2>0){if(l2&128){P2(j,i2,R,K,X,J,a2,Q,Z);return}else if(l2&256){E1(j,i2,R,K,X,J,a2,Q,Z);return}}d2&8?(u2&16&&C1(j,X,J),i2!==j&&v(R,i2)):u2&16?d2&16?P2(j,i2,R,K,X,J,a2,Q,Z):C1(j,X,J,!0):(u2&8&&v(R,""),d2&16&&F(i2,R,K,X,J,a2,Q,Z))},E1=(w,_,R,K,X,J,a2,Q,Z)=>{w=w||u0,_=_||u0;const j=w.length,u2=_.length,i2=Math.min(j,u2);let l2;for(l2=0;l2u2?C1(w,X,J,!0,!1,i2):F(_,R,K,X,J,a2,Q,Z,i2)},P2=(w,_,R,K,X,J,a2,Q,Z)=>{let j=0;const u2=_.length;let i2=w.length-1,l2=u2-1;for(;j<=i2&&j<=l2;){const d2=w[j],x2=_[j]=Z?S6(_[j]):c3(_[j]);if(p8(d2,x2))b(d2,x2,R,null,X,J,a2,Q,Z);else break;j++}for(;j<=i2&&j<=l2;){const d2=w[i2],x2=_[l2]=Z?S6(_[l2]):c3(_[l2]);if(p8(d2,x2))b(d2,x2,R,null,X,J,a2,Q,Z);else break;i2--,l2--}if(j>i2){if(j<=l2){const d2=l2+1,x2=d2l2)for(;j<=i2;)G1(w[j],X,J,!0),j++;else{const d2=j,x2=j,_2=new Map;for(j=x2;j<=l2;j++){const f1=_[j]=Z?S6(_[j]):c3(_[j]);f1.key!=null&&_2.set(f1.key,j)}let S2,J2=0;const a1=l2-x2+1;let c4=!1,G4=0;const v4=new Array(a1);for(j=0;j=a1){G1(f1,X,J,!0);continue}let L1;if(f1.key!=null)L1=_2.get(f1.key);else for(S2=x2;S2<=l2;S2++)if(v4[S2-x2]===0&&p8(f1,_[S2])){L1=S2;break}L1===void 0?G1(f1,X,J,!0):(v4[L1-x2]=j+1,L1>=G4?G4=L1:c4=!0,b(f1,_[L1],R,null,X,J,a2,Q,Z),J2++)}const A4=c4?F32(v4):u0;for(S2=A4.length-1,j=a1-1;j>=0;j--){const f1=x2+j,L1=_[f1],d4=f1+1{const{el:J,type:a2,transition:Q,children:Z,shapeFlag:j}=w;if(j&6){m1(w.component.subTree,_,R,K);return}if(j&128){w.suspense.move(_,R,K);return}if(j&64){a2.move(w,_,R,O1);return}if(a2===s4){t(J,_,R);for(let i2=0;i2Q.enter(J),X);else{const{leave:i2,delayLeave:l2,afterLeave:d2}=Q,x2=()=>t(J,_,R),_2=()=>{i2(J,()=>{x2(),d2&&d2()})};l2?l2(J,x2,_2):_2()}else t(J,_,R)},G1=(w,_,R,K=!1,X=!1)=>{const{type:J,props:a2,ref:Q,children:Z,dynamicChildren:j,shapeFlag:u2,patchFlag:i2,dirs:l2}=w;if(Q!=null&&qc(Q,null,R,w,!0),u2&256){_.ctx.deactivate(w);return}const d2=u2&1&&l2,x2=!v0(w);let _2;if(x2&&(_2=a2&&a2.onVnodeBeforeUnmount)&&W4(_2,_,w),u2&6)R2(w.component,R,K);else{if(u2&128){w.suspense.unmount(R,K);return}d2&&H3(w,null,_,"beforeUnmount"),u2&64?w.type.remove(w,_,R,X,O1,K):j&&(J!==s4||i2>0&&i2&64)?C1(j,_,R,!1,!0):(J===s4&&i2&384||!X&&u2&16)&&C1(Z,_,R),K&&j1(w)}(x2&&(_2=a2&&a2.onVnodeUnmounted)||d2)&&p4(()=>{_2&&W4(_2,_,w),d2&&H3(w,null,_,"unmounted")},R)},j1=w=>{const{type:_,el:R,anchor:K,transition:X}=w;if(_===s4){r6(R,K);return}if(_===_c){B(w);return}const J=()=>{s(R),X&&!X.persisted&&X.afterLeave&&X.afterLeave()};if(w.shapeFlag&1&&X&&!X.persisted){const{leave:a2,delayLeave:Q}=X,Z=()=>a2(R,J);Q?Q(w.el,J,Z):Z()}else J()},r6=(w,_)=>{let R;for(;w!==_;)R=C(w),s(w),w=R;s(_)},R2=(w,_,R)=>{const{bum:K,scope:X,update:J,subTree:a2,um:Q}=w;K&&Nc(K),X.stop(),J&&(J.active=!1,G1(a2,w,_,R)),Q&&p4(Q,_),p4(()=>{w.isUnmounted=!0},_),_&&_.pendingBranch&&!_.isUnmounted&&w.asyncDep&&!w.asyncResolved&&w.suspenseId===_.pendingId&&(_.deps--,_.deps===0&&_.resolve())},C1=(w,_,R,K=!1,X=!1,J=0)=>{for(let a2=J;a2w.shapeFlag&6?i3(w.component.subTree):w.shapeFlag&128?w.suspense.next():C(w.anchor||w.el),V1=(w,_,R)=>{w==null?_._vnode&&G1(_._vnode,null,null,!0):b(_._vnode||null,w,_,null,null,null,R),Ri(),Uc(),_._vnode=w},O1={p:b,um:G1,m:m1,r:j1,mt:t2,mc:F,pc:b2,pbc:s2,n:i3,o:c};let o3,i4;return e&&([o3,i4]=e(O1)),{render:V1,hydrate:o3,createApp:P32(V1,o3)}}function o8({effect:c,update:e},r){c.allowRecurse=e.allowRecurse=r}function On(c,e,r=!1){const t=c.children,s=e.children;if(z2(t)&&z2(s))for(let i=0;i>1,c[r[l]]0&&(e[t]=r[i-1]),r[i]=t)}}for(i=r.length,f=r[i-1];i-- >0;)r[i]=f,f=e[f];return r}const B32=c=>c.__isTeleport,_5=c=>c&&(c.disabled||c.disabled===""),ji=c=>typeof SVGElement<"u"&&c instanceof SVGElement,Or=(c,e)=>{const r=c&&c.to;return g1(r)?e?e(r):null:r},D32={__isTeleport:!0,process(c,e,r,t,s,i,f,l,h,m){const{mc:v,pc:H,pbc:C,o:{insert:x,querySelector:M,createText:b,createComment:P}}=m,L=_5(e.props);let{shapeFlag:S,children:E,dynamicChildren:B}=e;if(c==null){const G=e.el=b(""),c2=e.anchor=b("");x(G,r,t),x(c2,r,t);const U=e.target=Or(e.props,M),F=e.targetAnchor=b("");U&&(x(F,U),f=f||ji(U));const e2=(s2,v2)=>{S&16&&v(E,s2,v2,s,i,f,l,h)};L?e2(r,c2):U&&e2(U,F)}else{e.el=c.el;const G=e.anchor=c.anchor,c2=e.target=c.target,U=e.targetAnchor=c.targetAnchor,F=_5(c.props),e2=F?r:c2,s2=F?G:U;if(f=f||ji(c2),B?(C(c.dynamicChildren,B,e2,s,i,f,l),On(c,e,!0)):h||H(c,e,e2,s2,s,i,f,l,!1),L)F||zc(e,r,G,m,1);else if((e.props&&e.props.to)!==(c.props&&c.props.to)){const v2=e.target=Or(e.props,M);v2&&zc(e,v2,null,m,0)}else F&&zc(e,c2,U,m,1)}iz(e)},remove(c,e,r,t,{um:s,o:{remove:i}},f){const{shapeFlag:l,children:h,anchor:m,targetAnchor:v,target:H,props:C}=c;if(H&&i(v),(f||!_5(C))&&(i(m),l&16))for(let x=0;x0?n3||u0:null,U32(),J5>0&&n3&&n3.push(c),c}function i72(c,e,r,t,s,i){return fz(hz(c,e,r,t,s,i,!0))}function lz(c,e,r,t,s){return fz(q1(c,e,r,t,s,!0))}function Gc(c){return c?c.__v_isVNode===!0:!1}function p8(c,e){return c.type===e.type&&c.key===e.key}const ke="__vInternal",uz=({key:c})=>c??null,kc=({ref:c,ref_key:e,ref_for:r})=>c!=null?g1(c)||W1(c)||N2(c)?{i:$1,r:c,k:e,f:!!r}:c:null;function hz(c,e=null,r=null,t=0,s=null,i=c===s4?0:1,f=!1,l=!1){const h={__v_isVNode:!0,__v_skip:!0,type:c,props:e,key:e&&uz(e),ref:e&&kc(e),scopeId:BH,slotScopeIds:null,children:r,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:i,patchFlag:t,dynamicProps:s,dynamicChildren:null,appContext:null,ctx:$1};return l?(Rn(h,r),i&128&&c.normalize(h)):r&&(h.shapeFlag|=g1(r)?8:16),J5>0&&!f&&n3&&(h.patchFlag>0||i&6)&&h.patchFlag!==32&&n3.push(h),h}const q1=W32;function W32(c,e=null,r=null,t=0,s=null,i=!1){if((!c||c===YH)&&(c=S4),Gc(c)){const l=F6(c,e,!0);return r&&Rn(l,r),J5>0&&!i&&n3&&(l.shapeFlag&6?n3[n3.indexOf(c)]=l:n3.push(l)),l.patchFlag|=-2,l}if(c62(c)&&(c=c.__vccOpts),e){e=$32(e);let{class:l,style:h}=e;l&&!g1(l)&&(e.class=dn(l)),t1(h)&&(NH(h)&&!z2(h)&&(h=P1({},h)),e.style=vn(h))}const f=g1(c)?1:f32(c)?128:B32(c)?64:t1(c)?4:N2(c)?2:0;return hz(c,e,r,t,s,f,i,!0)}function $32(c){return c?NH(c)||ke in c?P1({},c):c:null}function F6(c,e,r=!1){const{props:t,ref:s,patchFlag:i,children:f}=c,l=e?q32(t||{},e):t;return{__v_isVNode:!0,__v_skip:!0,type:c.type,props:l,key:l&&uz(l),ref:e&&e.ref?r&&s?z2(s)?s.concat(kc(e)):[s,kc(e)]:kc(e):s,scopeId:c.scopeId,slotScopeIds:c.slotScopeIds,children:f,target:c.target,targetAnchor:c.targetAnchor,staticCount:c.staticCount,shapeFlag:c.shapeFlag,patchFlag:e&&c.type!==s4?i===-1?16:i|16:i,dynamicProps:c.dynamicProps,dynamicChildren:c.dynamicChildren,appContext:c.appContext,dirs:c.dirs,transition:c.transition,component:c.component,suspense:c.suspense,ssContent:c.ssContent&&F6(c.ssContent),ssFallback:c.ssFallback&&F6(c.ssFallback),el:c.el,anchor:c.anchor,ctx:c.ctx}}function pz(c=" ",e=0){return q1(C0,null,c,e)}function o72(c="",e=!1){return e?(oz(),lz(S4,null,c)):q1(S4,null,c)}function c3(c){return c==null||typeof c=="boolean"?q1(S4):z2(c)?q1(s4,null,c.slice()):typeof c=="object"?S6(c):q1(C0,null,String(c))}function S6(c){return c.el===null&&c.patchFlag!==-1||c.memo?c:F6(c)}function Rn(c,e){let r=0;const{shapeFlag:t}=c;if(e==null)e=null;else if(z2(e))r=16;else if(typeof e=="object")if(t&65){const s=e.default;s&&(s._c&&(s._d=!1),Rn(c,s()),s._c&&(s._d=!0));return}else{r=32;const s=e._;!s&&!(ke in e)?e._ctx=$1:s===3&&$1&&($1.slots._===1?e._=1:(e._=2,c.patchFlag|=1024))}else N2(e)?(e={default:e,_ctx:$1},r=32):(e=String(e),t&64?(r=16,e=[pz(e)]):r=8);c.children=e,c.shapeFlag|=r}function q32(...c){const e={};for(let r=0;rT1||$1,L0=c=>{T1=c,c.scope.on()},M8=()=>{T1&&T1.scope.off(),T1=null};function vz(c){return c.vnode.shapeFlag&4}let Q5=!1;function X32(c,e=!1){Q5=e;const{props:r,children:t}=c.vnode,s=vz(c);w32(c,r,s,e),_32(c,t);const i=s?Y32(c,e):void 0;return Q5=!1,i}function Y32(c,e){const r=c.type;c.accessCache=Object.create(null),c.proxy=Ic(new Proxy(c.ctx,C32));const{setup:t}=r;if(t){const s=c.setupContext=t.length>1?Q32(c):null;L0(c),k0();const i=k6(t,c,0,[c.props,s]);if(T0(),M8(),vH(i)){if(i.then(M8,M8),e)return i.then(f=>{Xi(c,f,e)}).catch(f=>{we(f,c,0)});c.asyncDep=i}else Xi(c,i,e)}else dz(c,e)}function Xi(c,e,r){N2(e)?c.type.__ssrInlineRender?c.ssrRender=e:c.render=e:t1(e)&&(c.setupState=TH(e)),dz(c,r)}let Yi;function dz(c,e,r){const t=c.type;if(!c.render){if(!e&&Yi&&!t.render){const s=t.template||Pn(c).template;if(s){const{isCustomElement:i,compilerOptions:f}=c.appContext.config,{delimiters:l,compilerOptions:h}=t,m=P1(P1({isCustomElement:i,delimiters:l},f),h);t.render=Yi(s,m)}}c.render=t.render||s3}L0(c),k0(),L32(c),T0(),M8()}function J32(c){return new Proxy(c.attrs,{get(e,r){return w4(c,"get","$attrs"),e[r]}})}function Q32(c){const e=t=>{c.exposed=t||{}};let r;return{get attrs(){return r||(r=J32(c))},slots:c.slots,emit:c.emit,expose:e}}function Te(c){if(c.exposed)return c.exposeProxy||(c.exposeProxy=new Proxy(TH(Ic(c.exposed)),{get(e,r){if(r in e)return e[r];if(r in A5)return A5[r](c)},has(e,r){return r in e||r in A5}}))}function Z32(c,e=!0){return N2(c)?c.displayName||c.name:c.name||e&&c.__name}function c62(c){return N2(c)&&"__vccOpts"in c}const $4=(c,e)=>Y42(c,e,Q5);function j3(c,e,r){const t=arguments.length;return t===2?t1(e)&&!z2(e)?Gc(e)?q1(c,null,[e]):q1(c,e):q1(c,null,e):(t>3?r=Array.prototype.slice.call(arguments,2):t===3&&Gc(r)&&(r=[r]),q1(c,e,r))}const e62=Symbol(""),r62=()=>Ac(e62),a62="3.2.45",n62="http://www.w3.org/2000/svg",m8=typeof document<"u"?document:null,Ji=m8&&m8.createElement("template"),t62={insert:(c,e,r)=>{e.insertBefore(c,r||null)},remove:c=>{const e=c.parentNode;e&&e.removeChild(c)},createElement:(c,e,r,t)=>{const s=e?m8.createElementNS(n62,c):m8.createElement(c,r?{is:r}:void 0);return c==="select"&&t&&t.multiple!=null&&s.setAttribute("multiple",t.multiple),s},createText:c=>m8.createTextNode(c),createComment:c=>m8.createComment(c),setText:(c,e)=>{c.nodeValue=e},setElementText:(c,e)=>{c.textContent=e},parentNode:c=>c.parentNode,nextSibling:c=>c.nextSibling,querySelector:c=>m8.querySelector(c),setScopeId(c,e){c.setAttribute(e,"")},insertStaticContent(c,e,r,t,s,i){const f=r?r.previousSibling:e.lastChild;if(s&&(s===i||s.nextSibling))for(;e.insertBefore(s.cloneNode(!0),r),!(s===i||!(s=s.nextSibling)););else{Ji.innerHTML=t?`${c}`:c;const l=Ji.content;if(t){const h=l.firstChild;for(;h.firstChild;)l.appendChild(h.firstChild);l.removeChild(h)}e.insertBefore(l,r)}return[f?f.nextSibling:e.firstChild,r?r.previousSibling:e.lastChild]}};function s62(c,e,r){const t=c._vtc;t&&(e=(e?[e,...t]:[...t]).join(" ")),e==null?c.removeAttribute("class"):r?c.setAttribute("class",e):c.className=e}function i62(c,e,r){const t=c.style,s=g1(r);if(r&&!s){for(const i in r)Rr(t,i,r[i]);if(e&&!g1(e))for(const i in e)r[i]==null&&Rr(t,i,"")}else{const i=t.display;s?e!==r&&(t.cssText=r):e&&c.removeAttribute("style"),"_vod"in c&&(t.display=i)}}const Qi=/\s*!important$/;function Rr(c,e,r){if(z2(r))r.forEach(t=>Rr(c,e,t));else if(r==null&&(r=""),e.startsWith("--"))c.setProperty(e,r);else{const t=o62(c,e);Qi.test(r)?c.setProperty(x8(t),r.replace(Qi,""),"important"):c[t]=r}}const Zi=["Webkit","Moz","ms"],X9={};function o62(c,e){const r=X9[e];if(r)return r;let t=y3(e);if(t!=="filter"&&t in c)return X9[e]=t;t=be(t);for(let s=0;sY9||(m62.then(()=>Y9=0),Y9=Date.now());function d62(c,e){const r=t=>{if(!t._vts)t._vts=Date.now();else if(t._vts<=r.attached)return;q4(H62(t,r.value),e,5,[t])};return r.value=c,r.attached=v62(),r}function H62(c,e){if(z2(e)){const r=c.stopImmediatePropagation;return c.stopImmediatePropagation=()=>{r.call(c),c._stopped=!0},e.map(t=>s=>!s._stopped&&t&&t(s))}else return e}const ro=/^on[a-z]/,z62=(c,e,r,t,s=!1,i,f,l,h)=>{e==="class"?s62(c,t,s):e==="style"?i62(c,r,t):p7(e)?zn(e)||h62(c,e,r,t,f):(e[0]==="."?(e=e.slice(1),!0):e[0]==="^"?(e=e.slice(1),!1):g62(c,e,t,s))?l62(c,e,t,i,f,l,h):(e==="true-value"?c._trueValue=t:e==="false-value"&&(c._falseValue=t),f62(c,e,t,s))};function g62(c,e,r,t){return t?!!(e==="innerHTML"||e==="textContent"||e in c&&ro.test(e)&&N2(r)):e==="spellcheck"||e==="draggable"||e==="translate"||e==="form"||e==="list"&&c.tagName==="INPUT"||e==="type"&&c.tagName==="TEXTAREA"||ro.test(e)&&g1(r)?!1:e in c}const b6="transition",g5="animation",Hz=(c,{slots:e})=>j3(WH,gz(c),e);Hz.displayName="Transition";const zz={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String},V62=Hz.props=P1({},WH.props,zz),f8=(c,e=[])=>{z2(c)?c.forEach(r=>r(...e)):c&&c(...e)},ao=c=>c?z2(c)?c.some(e=>e.length>1):c.length>1:!1;function gz(c){const e={};for(const r2 in c)r2 in zz||(e[r2]=c[r2]);if(c.css===!1)return e;const{name:r="v",type:t,duration:s,enterFromClass:i=`${r}-enter-from`,enterActiveClass:f=`${r}-enter-active`,enterToClass:l=`${r}-enter-to`,appearFromClass:h=i,appearActiveClass:m=f,appearToClass:v=l,leaveFromClass:H=`${r}-leave-from`,leaveActiveClass:C=`${r}-leave-active`,leaveToClass:x=`${r}-leave-to`}=c,M=M62(s),b=M&&M[0],P=M&&M[1],{onBeforeEnter:L,onEnter:S,onEnterCancelled:E,onLeave:B,onLeaveCancelled:G,onBeforeAppear:c2=L,onAppear:U=S,onAppearCancelled:F=E}=e,e2=(r2,H2,t2)=>{x6(r2,H2?v:l),x6(r2,H2?m:f),t2&&t2()},s2=(r2,H2)=>{r2._isLeaving=!1,x6(r2,H),x6(r2,x),x6(r2,C),H2&&H2()},v2=r2=>(H2,t2)=>{const Y2=r2?U:S,A2=()=>e2(H2,r2,t2);f8(Y2,[H2,A2]),no(()=>{x6(H2,r2?h:i),U3(H2,r2?v:l),ao(Y2)||to(H2,t,b,A2)})};return P1(e,{onBeforeEnter(r2){f8(L,[r2]),U3(r2,i),U3(r2,f)},onBeforeAppear(r2){f8(c2,[r2]),U3(r2,h),U3(r2,m)},onEnter:v2(!1),onAppear:v2(!0),onLeave(r2,H2){r2._isLeaving=!0;const t2=()=>s2(r2,H2);U3(r2,H),Mz(),U3(r2,C),no(()=>{r2._isLeaving&&(x6(r2,H),U3(r2,x),ao(B)||to(r2,t,P,t2))}),f8(B,[r2,t2])},onEnterCancelled(r2){e2(r2,!1),f8(E,[r2])},onAppearCancelled(r2){e2(r2,!0),f8(F,[r2])},onLeaveCancelled(r2){s2(r2),f8(G,[r2])}})}function M62(c){if(c==null)return null;if(t1(c))return[J9(c.enter),J9(c.leave)];{const e=J9(c);return[e,e]}}function J9(c){return V0(c)}function U3(c,e){e.split(/\s+/).forEach(r=>r&&c.classList.add(r)),(c._vtc||(c._vtc=new Set)).add(e)}function x6(c,e){e.split(/\s+/).forEach(t=>t&&c.classList.remove(t));const{_vtc:r}=c;r&&(r.delete(e),r.size||(c._vtc=void 0))}function no(c){requestAnimationFrame(()=>{requestAnimationFrame(c)})}let C62=0;function to(c,e,r,t){const s=c._endId=++C62,i=()=>{s===c._endId&&t()};if(r)return setTimeout(i,r);const{type:f,timeout:l,propCount:h}=Vz(c,e);if(!f)return t();const m=f+"end";let v=0;const H=()=>{c.removeEventListener(m,C),i()},C=x=>{x.target===c&&++v>=h&&H()};setTimeout(()=>{v(r[M]||"").split(", "),s=t(`${b6}Delay`),i=t(`${b6}Duration`),f=so(s,i),l=t(`${g5}Delay`),h=t(`${g5}Duration`),m=so(l,h);let v=null,H=0,C=0;e===b6?f>0&&(v=b6,H=f,C=i.length):e===g5?m>0&&(v=g5,H=m,C=h.length):(H=Math.max(f,m),v=H>0?f>m?b6:g5:null,C=v?v===b6?i.length:h.length:0);const x=v===b6&&/\b(transform|all)(,|$)/.test(t(`${b6}Property`).toString());return{type:v,timeout:H,propCount:C,hasTransform:x}}function so(c,e){for(;c.lengthio(r)+io(c[t])))}function io(c){return Number(c.slice(0,-1).replace(",","."))*1e3}function Mz(){return document.body.offsetHeight}const Cz=new WeakMap,Lz=new WeakMap,L62={name:"TransitionGroup",props:P1({},V62,{tag:String,moveClass:String}),setup(c,{slots:e}){const r=mz(),t=UH();let s,i;return jH(()=>{if(!s.length)return;const f=c.moveClass||`${c.name||"v"}-move`;if(!S62(s[0].el,r.vnode.el,f))return;s.forEach(y62),s.forEach(b62);const l=s.filter(x62);Mz(),l.forEach(h=>{const m=h.el,v=m.style;U3(m,f),v.transform=v.webkitTransform=v.transitionDuration="";const H=m._moveCb=C=>{C&&C.target!==m||(!C||/transform$/.test(C.propertyName))&&(m.removeEventListener("transitionend",H),m._moveCb=null,x6(m,f))};m.addEventListener("transitionend",H)})}),()=>{const f=j2(c),l=gz(f);let h=f.tag||s4;s=i,i=e.default?kn(e.default()):[];for(let m=0;m{f.split(/\s+/).forEach(l=>l&&t.classList.remove(l))}),r.split(/\s+/).forEach(f=>f&&t.classList.add(f)),t.style.display="none";const s=e.nodeType===1?e:e.parentNode;s.appendChild(t);const{hasTransform:i}=Vz(t);return s.removeChild(t),i}const y0=c=>{const e=c.props["onUpdate:modelValue"]||!1;return z2(e)?r=>Nc(e,r):e};function w62(c){c.target.composing=!0}function oo(c){const e=c.target;e.composing&&(e.composing=!1,e.dispatchEvent(new Event("input")))}const l72={created(c,{modifiers:{lazy:e,trim:r,number:t}},s){c._assign=y0(s);const i=t||s.props&&s.props.type==="number";N6(c,e?"change":"input",f=>{if(f.target.composing)return;let l=c.value;r&&(l=l.trim()),i&&(l=V0(l)),c._assign(l)}),r&&N6(c,"change",()=>{c.value=c.value.trim()}),e||(N6(c,"compositionstart",w62),N6(c,"compositionend",oo),N6(c,"change",oo))},mounted(c,{value:e}){c.value=e??""},beforeUpdate(c,{value:e,modifiers:{lazy:r,trim:t,number:s}},i){if(c._assign=y0(i),c.composing||document.activeElement===c&&c.type!=="range"&&(r||t&&c.value.trim()===e||(s||c.type==="number")&&V0(c.value)===e))return;const f=e??"";c.value!==f&&(c.value=f)}},u72={deep:!0,created(c,e,r){c._assign=y0(r),N6(c,"change",()=>{const t=c._modelValue,s=Z5(c),i=c.checked,f=c._assign;if(z2(t)){const l=Hn(t,s),h=l!==-1;if(i&&!h)f(t.concat(s));else if(!i&&h){const m=[...t];m.splice(l,1),f(m)}}else if(_0(t)){const l=new Set(t);i?l.add(s):l.delete(s),f(l)}else f(yz(c,i))})},mounted:fo,beforeUpdate(c,e,r){c._assign=y0(r),fo(c,e,r)}};function fo(c,{value:e,oldValue:r},t){c._modelValue=e,z2(e)?c.checked=Hn(e,t.props.value)>-1:_0(e)?c.checked=e.has(t.props.value):e!==r&&(c.checked=h7(e,yz(c,!0)))}const h72={deep:!0,created(c,{value:e,modifiers:{number:r}},t){const s=_0(e);N6(c,"change",()=>{const i=Array.prototype.filter.call(c.options,f=>f.selected).map(f=>r?V0(Z5(f)):Z5(f));c._assign(c.multiple?s?new Set(i):i:i[0])}),c._assign=y0(t)},mounted(c,{value:e}){lo(c,e)},beforeUpdate(c,e,r){c._assign=y0(r)},updated(c,{value:e}){lo(c,e)}};function lo(c,e){const r=c.multiple;if(!(r&&!z2(e)&&!_0(e))){for(let t=0,s=c.options.length;t-1:i.selected=e.has(f);else if(h7(Z5(i),e)){c.selectedIndex!==t&&(c.selectedIndex=t);return}}!r&&c.selectedIndex!==-1&&(c.selectedIndex=-1)}}function Z5(c){return"_value"in c?c._value:c.value}function yz(c,e){const r=e?"_trueValue":"_falseValue";return r in c?c[r]:e}const N62=["ctrl","shift","alt","meta"],A62={stop:c=>c.stopPropagation(),prevent:c=>c.preventDefault(),self:c=>c.target!==c.currentTarget,ctrl:c=>!c.ctrlKey,shift:c=>!c.shiftKey,alt:c=>!c.altKey,meta:c=>!c.metaKey,left:c=>"button"in c&&c.button!==0,middle:c=>"button"in c&&c.button!==1,right:c=>"button"in c&&c.button!==2,exact:(c,e)=>N62.some(r=>c[`${r}Key`]&&!e.includes(r))},p72=(c,e)=>(r,...t)=>{for(let s=0;sr=>{if(!("key"in r))return;const t=x8(r.key);if(e.some(s=>s===t||_62[s]===t))return c(r)},v72={beforeMount(c,{value:e},{transition:r}){c._vod=c.style.display==="none"?"":c.style.display,r&&e?r.beforeEnter(c):V5(c,e)},mounted(c,{value:e},{transition:r}){r&&e&&r.enter(c)},updated(c,{value:e,oldValue:r},{transition:t}){!e!=!r&&(t?e?(t.beforeEnter(c),V5(c,!0),t.enter(c)):t.leave(c,()=>{V5(c,!1)}):V5(c,e))},beforeUnmount(c,{value:e}){V5(c,e)}};function V5(c,e){c.style.display=e?c._vod:"none"}const bz=P1({patchProp:z62},t62);let T5,uo=!1;function k62(){return T5||(T5=O32(bz))}function T62(){return T5=uo?T5:R32(bz),uo=!0,T5}const P62=(...c)=>{const e=k62().createApp(...c),{mount:r}=e;return e.mount=t=>{const s=xz(t);if(!s)return;const i=e._component;!N2(i)&&!i.render&&!i.template&&(i.template=s.innerHTML),s.innerHTML="";const f=r(s,!1,s instanceof SVGElement);return s instanceof Element&&(s.removeAttribute("v-cloak"),s.setAttribute("data-v-app","")),f},e},E62=(...c)=>{const e=T62().createApp(...c),{mount:r}=e;return e.mount=t=>{const s=xz(t);if(s)return r(s,!0,s instanceof SVGElement)},e};function xz(c){return g1(c)?document.querySelector(c):c}function ho(c,e){var r=Object.keys(c);if(Object.getOwnPropertySymbols){var t=Object.getOwnPropertySymbols(c);e&&(t=t.filter(function(s){return Object.getOwnPropertyDescriptor(c,s).enumerable})),r.push.apply(r,t)}return r}function r3(c){for(var e=1;e=0)&&(r[s]=c[s]);return r}function R62(c,e){if(c==null)return{};var r=O62(c,e),t,s;if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(c);for(s=0;s=0)&&Object.prototype.propertyIsEnumerable.call(c,t)&&(r[t]=c[t])}return r}function Fr(c){return F62(c)||B62(c)||D62(c)||I62()}function F62(c){if(Array.isArray(c))return Br(c)}function B62(c){if(typeof Symbol<"u"&&c[Symbol.iterator]!=null||c["@@iterator"]!=null)return Array.from(c)}function D62(c,e){if(c){if(typeof c=="string")return Br(c,e);var r=Object.prototype.toString.call(c).slice(8,-1);if(r==="Object"&&c.constructor&&(r=c.constructor.name),r==="Map"||r==="Set")return Array.from(c);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return Br(c,e)}}function Br(c,e){(e==null||e>c.length)&&(e=c.length);for(var r=0,t=new Array(e);r1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};if(typeof c=="string")return c;var t=(c.children||[]).map(function(h){return Fn(h)}),s=Object.keys(c.attributes||{}).reduce(function(h,m){var v=c.attributes[m];switch(m){case"class":h.class=G62(v);break;case"style":h.style=q62(v);break;default:h.attrs[m]=v}return h},{attrs:{},class:{},style:{}});r.class;var i=r.style,f=i===void 0?{}:i,l=R62(r,$62);return j3(c.tag,r3(r3(r3({},e),{},{class:s.class,style:r3(r3({},s.style),f)},s.attrs),l),t)}var wz=!1;try{wz=!0}catch{}function j62(){if(!wz&&console&&typeof console.error=="function"){var c;(c=console).error.apply(c,arguments)}}function P5(c,e){return Array.isArray(e)&&e.length>0||!Array.isArray(e)&&e?h4({},c,e):{}}function K62(c){var e,r=(e={"fa-spin":c.spin,"fa-pulse":c.pulse,"fa-fw":c.fixedWidth,"fa-border":c.border,"fa-li":c.listItem,"fa-inverse":c.inverse,"fa-flip":c.flip===!0,"fa-flip-horizontal":c.flip==="horizontal"||c.flip==="both","fa-flip-vertical":c.flip==="vertical"||c.flip==="both"},h4(e,"fa-".concat(c.size),c.size!==null),h4(e,"fa-rotate-".concat(c.rotation),c.rotation!==null),h4(e,"fa-pull-".concat(c.pull),c.pull!==null),h4(e,"fa-swap-opacity",c.swapOpacity),h4(e,"fa-bounce",c.bounce),h4(e,"fa-shake",c.shake),h4(e,"fa-beat",c.beat),h4(e,"fa-fade",c.fade),h4(e,"fa-beat-fade",c.beatFade),h4(e,"fa-flash",c.flash),h4(e,"fa-spin-pulse",c.spinPulse),h4(e,"fa-spin-reverse",c.spinReverse),e);return Object.keys(r).map(function(t){return r[t]?t:null}).filter(function(t){return t})}function po(c){if(c&&jc(c)==="object"&&c.prefix&&c.iconName&&c.icon)return c;if(Fc.icon)return Fc.icon(c);if(c===null)return null;if(jc(c)==="object"&&c.prefix&&c.iconName)return c;if(Array.isArray(c)&&c.length===2)return{prefix:c[0],iconName:c[1]};if(typeof c=="string")return{prefix:"fas",iconName:c}}var X62=P0({name:"FontAwesomeIcon",props:{border:{type:Boolean,default:!1},fixedWidth:{type:Boolean,default:!1},flip:{type:[Boolean,String],default:!1,validator:function(e){return[!0,!1,"horizontal","vertical","both"].indexOf(e)>-1}},icon:{type:[Object,Array,String],required:!0},mask:{type:[Object,Array,String],default:null},listItem:{type:Boolean,default:!1},pull:{type:String,default:null,validator:function(e){return["right","left"].indexOf(e)>-1}},pulse:{type:Boolean,default:!1},rotation:{type:[String,Number],default:null,validator:function(e){return[90,180,270].indexOf(Number.parseInt(e,10))>-1}},swapOpacity:{type:Boolean,default:!1},size:{type:String,default:null,validator:function(e){return["2xs","xs","sm","lg","xl","2xl","1x","2x","3x","4x","5x","6x","7x","8x","9x","10x"].indexOf(e)>-1}},spin:{type:Boolean,default:!1},transform:{type:[String,Object],default:null},symbol:{type:[Boolean,String],default:!1},title:{type:String,default:null},inverse:{type:Boolean,default:!1},bounce:{type:Boolean,default:!1},shake:{type:Boolean,default:!1},beat:{type:Boolean,default:!1},fade:{type:Boolean,default:!1},beatFade:{type:Boolean,default:!1},flash:{type:Boolean,default:!1},spinPulse:{type:Boolean,default:!1},spinReverse:{type:Boolean,default:!1}},setup:function(e,r){var t=r.attrs,s=$4(function(){return po(e.icon)}),i=$4(function(){return P5("classes",K62(e))}),f=$4(function(){return P5("transform",typeof e.transform=="string"?Fc.transform(e.transform):e.transform)}),l=$4(function(){return P5("mask",po(e.mask))}),h=$4(function(){return Sw(s.value,r3(r3(r3(r3({},i.value),f.value),l.value),{},{symbol:e.symbol,title:e.title}))});N5(h,function(v){if(!v)return j62("Could not find one or more icon(s)",s.value,l.value)},{immediate:!0});var m=$4(function(){return h.value?Fn(h.value.abstract[0],{},t):null});return function(){return m.value}}});P0({name:"FontAwesomeLayers",props:{fixedWidth:{type:Boolean,default:!1}},setup:function(e,r){var t=r.slots,s=Df.familyPrefix,i=$4(function(){return["".concat(s,"-layers")].concat(Fr(e.fixedWidth?["".concat(s,"-fw")]:[]))});return function(){return j3("div",{class:i.value},t.default?t.default():[])}}});P0({name:"FontAwesomeLayersText",props:{value:{type:[String,Number],default:""},transform:{type:[String,Object],default:null},counter:{type:Boolean,default:!1},position:{type:String,default:null,validator:function(e){return["bottom-left","bottom-right","top-left","top-right"].indexOf(e)>-1}}},setup:function(e,r){var t=r.attrs,s=Df.familyPrefix,i=$4(function(){return P5("classes",[].concat(Fr(e.counter?["".concat(s,"-layers-counter")]:[]),Fr(e.position?["".concat(s,"-layers-").concat(e.position)]:[])))}),f=$4(function(){return P5("transform",typeof e.transform=="string"?Fc.transform(e.transform):e.transform)}),l=$4(function(){var m=ww(e.value.toString(),r3(r3({},f.value),i.value)),v=m.abstract;return e.counter&&(v[0].attributes.class=v[0].attributes.class.replace("fa-layers-text","")),v[0]}),h=$4(function(){return Fn(l.value,{},t)});return function(){return h.value}}});var Y62=function(e){return J62(e)&&!Q62(e)};function J62(c){return!!c&&typeof c=="object"}function Q62(c){var e=Object.prototype.toString.call(c);return e==="[object RegExp]"||e==="[object Date]"||e82(c)}var Z62=typeof Symbol=="function"&&Symbol.for,c82=Z62?Symbol.for("react.element"):60103;function e82(c){return c.$$typeof===c82}function r82(c){return Array.isArray(c)?[]:{}}function c7(c,e){return e.clone!==!1&&e.isMergeableObject(c)?b0(r82(c),c,e):c}function a82(c,e,r){return c.concat(e).map(function(t){return c7(t,r)})}function n82(c,e){if(!e.customMerge)return b0;var r=e.customMerge(c);return typeof r=="function"?r:b0}function t82(c){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(c).filter(function(e){return Object.propertyIsEnumerable.call(c,e)}):[]}function mo(c){return Object.keys(c).concat(t82(c))}function Nz(c,e){try{return e in c}catch{return!1}}function s82(c,e){return Nz(c,e)&&!(Object.hasOwnProperty.call(c,e)&&Object.propertyIsEnumerable.call(c,e))}function i82(c,e,r){var t={};return r.isMergeableObject(c)&&mo(c).forEach(function(s){t[s]=c7(c[s],r)}),mo(e).forEach(function(s){s82(c,s)||(Nz(c,s)&&r.isMergeableObject(e[s])?t[s]=n82(s,r)(c[s],e[s],r):t[s]=c7(e[s],r))}),t}function b0(c,e,r){r=r||{},r.arrayMerge=r.arrayMerge||a82,r.isMergeableObject=r.isMergeableObject||Y62,r.cloneUnlessOtherwiseSpecified=c7;var t=Array.isArray(e),s=Array.isArray(c),i=t===s;return i?t?r.arrayMerge(c,e,r):i82(c,e,r):c7(e,r)}b0.all=function(e,r){if(!Array.isArray(e))throw new Error("first argument should be an array");return e.reduce(function(t,s){return b0(t,s,r)},{})};var o82=b0,f82=o82,l82=function(){if(typeof Symbol!="function"||typeof Object.getOwnPropertySymbols!="function")return!1;if(typeof Symbol.iterator=="symbol")return!0;var e={},r=Symbol("test"),t=Object(r);if(typeof r=="string"||Object.prototype.toString.call(r)!=="[object Symbol]"||Object.prototype.toString.call(t)!=="[object Symbol]")return!1;var s=42;e[r]=s;for(r in e)return!1;if(typeof Object.keys=="function"&&Object.keys(e).length!==0||typeof Object.getOwnPropertyNames=="function"&&Object.getOwnPropertyNames(e).length!==0)return!1;var i=Object.getOwnPropertySymbols(e);if(i.length!==1||i[0]!==r||!Object.prototype.propertyIsEnumerable.call(e,r))return!1;if(typeof Object.getOwnPropertyDescriptor=="function"){var f=Object.getOwnPropertyDescriptor(e,r);if(f.value!==s||f.enumerable!==!0)return!1}return!0},vo=typeof Symbol<"u"&&Symbol,u82=l82,h82=function(){return typeof vo!="function"||typeof Symbol!="function"||typeof vo("foo")!="symbol"||typeof Symbol("bar")!="symbol"?!1:u82()},p82="Function.prototype.bind called on incompatible ",Q9=Array.prototype.slice,m82=Object.prototype.toString,v82="[object Function]",d82=function(e){var r=this;if(typeof r!="function"||m82.call(r)!==v82)throw new TypeError(p82+r);for(var t=Q9.call(arguments,1),s,i=function(){if(this instanceof s){var v=r.apply(this,t.concat(Q9.call(arguments)));return Object(v)===v?v:this}else return r.apply(e,t.concat(Q9.call(arguments)))},f=Math.max(0,r.length-t.length),l=[],h=0;h"u"?I2:z3(Uint8Array),L8={"%AggregateError%":typeof AggregateError>"u"?I2:AggregateError,"%Array%":Array,"%ArrayBuffer%":typeof ArrayBuffer>"u"?I2:ArrayBuffer,"%ArrayIteratorPrototype%":a0?z3([][Symbol.iterator]()):I2,"%AsyncFromSyncIteratorPrototype%":I2,"%AsyncFunction%":t0,"%AsyncGenerator%":t0,"%AsyncGeneratorFunction%":t0,"%AsyncIteratorPrototype%":t0,"%Atomics%":typeof Atomics>"u"?I2:Atomics,"%BigInt%":typeof BigInt>"u"?I2:BigInt,"%BigInt64Array%":typeof BigInt64Array>"u"?I2:BigInt64Array,"%BigUint64Array%":typeof BigUint64Array>"u"?I2:BigUint64Array,"%Boolean%":Boolean,"%DataView%":typeof DataView>"u"?I2:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":Error,"%eval%":eval,"%EvalError%":EvalError,"%Float32Array%":typeof Float32Array>"u"?I2:Float32Array,"%Float64Array%":typeof Float64Array>"u"?I2:Float64Array,"%FinalizationRegistry%":typeof FinalizationRegistry>"u"?I2:FinalizationRegistry,"%Function%":Az,"%GeneratorFunction%":t0,"%Int8Array%":typeof Int8Array>"u"?I2:Int8Array,"%Int16Array%":typeof Int16Array>"u"?I2:Int16Array,"%Int32Array%":typeof Int32Array>"u"?I2:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":a0?z3(z3([][Symbol.iterator]())):I2,"%JSON%":typeof JSON=="object"?JSON:I2,"%Map%":typeof Map>"u"?I2:Map,"%MapIteratorPrototype%":typeof Map>"u"||!a0?I2:z3(new Map()[Symbol.iterator]()),"%Math%":Math,"%Number%":Number,"%Object%":Object,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":typeof Promise>"u"?I2:Promise,"%Proxy%":typeof Proxy>"u"?I2:Proxy,"%RangeError%":RangeError,"%ReferenceError%":ReferenceError,"%Reflect%":typeof Reflect>"u"?I2:Reflect,"%RegExp%":RegExp,"%Set%":typeof Set>"u"?I2:Set,"%SetIteratorPrototype%":typeof Set>"u"||!a0?I2:z3(new Set()[Symbol.iterator]()),"%SharedArrayBuffer%":typeof SharedArrayBuffer>"u"?I2:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":a0?z3(""[Symbol.iterator]()):I2,"%Symbol%":a0?Symbol:I2,"%SyntaxError%":x0,"%ThrowTypeError%":V82,"%TypedArray%":M82,"%TypeError%":d0,"%Uint8Array%":typeof Uint8Array>"u"?I2:Uint8Array,"%Uint8ClampedArray%":typeof Uint8ClampedArray>"u"?I2:Uint8ClampedArray,"%Uint16Array%":typeof Uint16Array>"u"?I2:Uint16Array,"%Uint32Array%":typeof Uint32Array>"u"?I2:Uint32Array,"%URIError%":URIError,"%WeakMap%":typeof WeakMap>"u"?I2:WeakMap,"%WeakRef%":typeof WeakRef>"u"?I2:WeakRef,"%WeakSet%":typeof WeakSet>"u"?I2:WeakSet};try{null.error}catch(c){var C82=z3(z3(c));L8["%Error.prototype%"]=C82}var L82=function c(e){var r;if(e==="%AsyncFunction%")r=Z9("async function () {}");else if(e==="%GeneratorFunction%")r=Z9("function* () {}");else if(e==="%AsyncGeneratorFunction%")r=Z9("async function* () {}");else if(e==="%AsyncGenerator%"){var t=c("%AsyncGeneratorFunction%");t&&(r=t.prototype)}else if(e==="%AsyncIteratorPrototype%"){var s=c("%AsyncGenerator%");s&&(r=z3(s.prototype))}return L8[e]=r,r},Ho={"%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"]},v7=Bn,Kc=g82,y82=v7.call(Function.call,Array.prototype.concat),b82=v7.call(Function.apply,Array.prototype.splice),zo=v7.call(Function.call,String.prototype.replace),Xc=v7.call(Function.call,String.prototype.slice),x82=v7.call(Function.call,RegExp.prototype.exec),S82=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,w82=/\\(\\)?/g,N82=function(e){var r=Xc(e,0,1),t=Xc(e,-1);if(r==="%"&&t!=="%")throw new x0("invalid intrinsic syntax, expected closing `%`");if(t==="%"&&r!=="%")throw new x0("invalid intrinsic syntax, expected opening `%`");var s=[];return zo(e,S82,function(i,f,l,h){s[s.length]=l?zo(h,w82,"$1"):f||i}),s},A82=function(e,r){var t=e,s;if(Kc(Ho,t)&&(s=Ho[t],t="%"+s[0]+"%"),Kc(L8,t)){var i=L8[t];if(i===t0&&(i=L82(t)),typeof i>"u"&&!r)throw new d0("intrinsic "+e+" exists, but is not available. Please file an issue!");return{alias:s,name:t,value:i}}throw new x0("intrinsic "+e+" does not exist!")},Dn=function(e,r){if(typeof e!="string"||e.length===0)throw new d0("intrinsic name must be a non-empty string");if(arguments.length>1&&typeof r!="boolean")throw new d0('"allowMissing" argument must be a boolean');if(x82(/^%?[^%]*%?$/,e)===null)throw new x0("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var t=N82(e),s=t.length>0?t[0]:"",i=A82("%"+s+"%",r),f=i.name,l=i.value,h=!1,m=i.alias;m&&(s=m[0],b82(t,y82([0,1],m)));for(var v=1,H=!0;v=t.length){var b=C8(l,C);H=!!b,H&&"get"in b&&!("originalValue"in b.get)?l=b.get:l=l[C]}else H=Kc(l,C),l=l[C];H&&!h&&(L8[f]=l)}}return l},Dr={},_82={get exports(){return Dr},set exports(c){Dr=c}};(function(c){var e=Bn,r=Dn,t=r("%Function.prototype.apply%"),s=r("%Function.prototype.call%"),i=r("%Reflect.apply%",!0)||e.call(s,t),f=r("%Object.getOwnPropertyDescriptor%",!0),l=r("%Object.defineProperty%",!0),h=r("%Math.max%");if(l)try{l({},"a",{value:1})}catch{l=null}c.exports=function(H){var C=i(e,s,arguments);if(f&&l){var x=f(C,"length");x.configurable&&l(C,"length",{value:1+h(0,H.length-(arguments.length-1))})}return C};var m=function(){return i(e,t,arguments)};l?l(c.exports,"apply",{value:m}):c.exports.apply=m})(_82);var _z=Dn,kz=Dr,k82=kz(_z("String.prototype.indexOf")),T82=function(e,r){var t=_z(e,!!r);return typeof t=="function"&&k82(e,".prototype.")>-1?kz(t):t};const P82={},E82=Object.freeze(Object.defineProperty({__proto__:null,default:P82},Symbol.toStringTag,{value:"Module"})),O82=Tb(E82);var In=typeof Map=="function"&&Map.prototype,er=Object.getOwnPropertyDescriptor&&In?Object.getOwnPropertyDescriptor(Map.prototype,"size"):null,Yc=In&&er&&typeof er.get=="function"?er.get:null,go=In&&Map.prototype.forEach,Un=typeof Set=="function"&&Set.prototype,rr=Object.getOwnPropertyDescriptor&&Un?Object.getOwnPropertyDescriptor(Set.prototype,"size"):null,Jc=Un&&rr&&typeof rr.get=="function"?rr.get:null,Vo=Un&&Set.prototype.forEach,R82=typeof WeakMap=="function"&&WeakMap.prototype,E5=R82?WeakMap.prototype.has:null,F82=typeof WeakSet=="function"&&WeakSet.prototype,O5=F82?WeakSet.prototype.has:null,B82=typeof WeakRef=="function"&&WeakRef.prototype,Mo=B82?WeakRef.prototype.deref:null,D82=Boolean.prototype.valueOf,I82=Object.prototype.toString,U82=Function.prototype.toString,W82=String.prototype.match,Wn=String.prototype.slice,A6=String.prototype.replace,$82=String.prototype.toUpperCase,Co=String.prototype.toLowerCase,Tz=RegExp.prototype.test,Lo=Array.prototype.concat,g3=Array.prototype.join,q82=Array.prototype.slice,yo=Math.floor,Ir=typeof BigInt=="function"?BigInt.prototype.valueOf:null,ar=Object.getOwnPropertySymbols,Ur=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?Symbol.prototype.toString:null,S0=typeof Symbol=="function"&&typeof Symbol.iterator=="object",Z1=typeof Symbol=="function"&&Symbol.toStringTag&&(typeof Symbol.toStringTag===S0||"symbol")?Symbol.toStringTag:null,Pz=Object.prototype.propertyIsEnumerable,bo=(typeof Reflect=="function"?Reflect.getPrototypeOf:Object.getPrototypeOf)||([].__proto__===Array.prototype?function(c){return c.__proto__}:null);function xo(c,e){if(c===1/0||c===-1/0||c!==c||c&&c>-1e3&&c<1e3||Tz.call(/e/,e))return e;var r=/[0-9](?=(?:[0-9]{3})+(?![0-9]))/g;if(typeof c=="number"){var t=c<0?-yo(-c):yo(c);if(t!==c){var s=String(t),i=Wn.call(e,s.length+1);return A6.call(s,r,"$&_")+"."+A6.call(A6.call(i,/([0-9]{3})/g,"$&_"),/_$/,"")}}return A6.call(e,r,"$&_")}var Wr=O82,So=Wr.custom,wo=Oz(So)?So:null,G82=function c(e,r,t,s){var i=r||{};if(w6(i,"quoteStyle")&&i.quoteStyle!=="single"&&i.quoteStyle!=="double")throw new TypeError('option "quoteStyle" must be "single" or "double"');if(w6(i,"maxStringLength")&&(typeof i.maxStringLength=="number"?i.maxStringLength<0&&i.maxStringLength!==1/0:i.maxStringLength!==null))throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`');var f=w6(i,"customInspect")?i.customInspect:!0;if(typeof f!="boolean"&&f!=="symbol")throw new TypeError("option \"customInspect\", if provided, must be `true`, `false`, or `'symbol'`");if(w6(i,"indent")&&i.indent!==null&&i.indent!==" "&&!(parseInt(i.indent,10)===i.indent&&i.indent>0))throw new TypeError('option "indent" must be "\\t", an integer > 0, or `null`');if(w6(i,"numericSeparator")&&typeof i.numericSeparator!="boolean")throw new TypeError('option "numericSeparator", if provided, must be `true` or `false`');var l=i.numericSeparator;if(typeof e>"u")return"undefined";if(e===null)return"null";if(typeof e=="boolean")return e?"true":"false";if(typeof e=="string")return Fz(e,i);if(typeof e=="number"){if(e===0)return 1/0/e>0?"0":"-0";var h=String(e);return l?xo(e,h):h}if(typeof e=="bigint"){var m=String(e)+"n";return l?xo(e,m):m}var v=typeof i.depth>"u"?5:i.depth;if(typeof t>"u"&&(t=0),t>=v&&v>0&&typeof e=="object")return $r(e)?"[Array]":"[Object]";var H=l02(i,t);if(typeof s>"u")s=[];else if(Rz(s,e)>=0)return"[Circular]";function C(H2,t2,Y2){if(t2&&(s=q82.call(s),s.push(t2)),Y2){var A2={depth:i.depth};return w6(i,"quoteStyle")&&(A2.quoteStyle=i.quoteStyle),c(H2,A2,t+1,s)}return c(H2,i,t+1,s)}if(typeof e=="function"&&!No(e)){var x=e02(e),M=gc(e,C);return"[Function"+(x?": "+x:" (anonymous)")+"]"+(M.length>0?" { "+g3.call(M,", ")+" }":"")}if(Oz(e)){var b=S0?A6.call(String(e),/^(Symbol\(.*\))_[^)]*$/,"$1"):Ur.call(e);return typeof e=="object"&&!S0?M5(b):b}if(i02(e)){for(var P="<"+Co.call(String(e.nodeName)),L=e.attributes||[],S=0;S",P}if($r(e)){if(e.length===0)return"[]";var E=gc(e,C);return H&&!f02(E)?"["+qr(E,H)+"]":"[ "+g3.call(E,", ")+" ]"}if(X82(e)){var B=gc(e,C);return!("cause"in Error.prototype)&&"cause"in e&&!Pz.call(e,"cause")?"{ ["+String(e)+"] "+g3.call(Lo.call("[cause]: "+C(e.cause),B),", ")+" }":B.length===0?"["+String(e)+"]":"{ ["+String(e)+"] "+g3.call(B,", ")+" }"}if(typeof e=="object"&&f){if(wo&&typeof e[wo]=="function"&&Wr)return Wr(e,{depth:v-t});if(f!=="symbol"&&typeof e.inspect=="function")return e.inspect()}if(r02(e)){var G=[];return go&&go.call(e,function(H2,t2){G.push(C(t2,e,!0)+" => "+C(H2,e))}),Ao("Map",Yc.call(e),G,H)}if(t02(e)){var c2=[];return Vo&&Vo.call(e,function(H2){c2.push(C(H2,e))}),Ao("Set",Jc.call(e),c2,H)}if(a02(e))return nr("WeakMap");if(s02(e))return nr("WeakSet");if(n02(e))return nr("WeakRef");if(J82(e))return M5(C(Number(e)));if(Z82(e))return M5(C(Ir.call(e)));if(Q82(e))return M5(D82.call(e));if(Y82(e))return M5(C(String(e)));if(!K82(e)&&!No(e)){var U=gc(e,C),F=bo?bo(e)===Object.prototype:e instanceof Object||e.constructor===Object,e2=e instanceof Object?"":"null prototype",s2=!F&&Z1&&Object(e)===e&&Z1 in e?Wn.call(B6(e),8,-1):e2?"Object":"",v2=F||typeof e.constructor!="function"?"":e.constructor.name?e.constructor.name+" ":"",r2=v2+(s2||e2?"["+g3.call(Lo.call([],s2||[],e2||[]),": ")+"] ":"");return U.length===0?r2+"{}":H?r2+"{"+qr(U,H)+"}":r2+"{ "+g3.call(U,", ")+" }"}return String(e)};function Ez(c,e,r){var t=(r.quoteStyle||e)==="double"?'"':"'";return t+c+t}function j82(c){return A6.call(String(c),/"/g,""")}function $r(c){return B6(c)==="[object Array]"&&(!Z1||!(typeof c=="object"&&Z1 in c))}function K82(c){return B6(c)==="[object Date]"&&(!Z1||!(typeof c=="object"&&Z1 in c))}function No(c){return B6(c)==="[object RegExp]"&&(!Z1||!(typeof c=="object"&&Z1 in c))}function X82(c){return B6(c)==="[object Error]"&&(!Z1||!(typeof c=="object"&&Z1 in c))}function Y82(c){return B6(c)==="[object String]"&&(!Z1||!(typeof c=="object"&&Z1 in c))}function J82(c){return B6(c)==="[object Number]"&&(!Z1||!(typeof c=="object"&&Z1 in c))}function Q82(c){return B6(c)==="[object Boolean]"&&(!Z1||!(typeof c=="object"&&Z1 in c))}function Oz(c){if(S0)return c&&typeof c=="object"&&c instanceof Symbol;if(typeof c=="symbol")return!0;if(!c||typeof c!="object"||!Ur)return!1;try{return Ur.call(c),!0}catch{}return!1}function Z82(c){if(!c||typeof c!="object"||!Ir)return!1;try{return Ir.call(c),!0}catch{}return!1}var c02=Object.prototype.hasOwnProperty||function(c){return c in this};function w6(c,e){return c02.call(c,e)}function B6(c){return I82.call(c)}function e02(c){if(c.name)return c.name;var e=W82.call(U82.call(c),/^function\s*([\w$]+)/);return e?e[1]:null}function Rz(c,e){if(c.indexOf)return c.indexOf(e);for(var r=0,t=c.length;re.maxStringLength){var r=c.length-e.maxStringLength,t="... "+r+" more character"+(r>1?"s":"");return Fz(Wn.call(c,0,e.maxStringLength),e)+t}var s=A6.call(A6.call(c,/(['\\])/g,"\\$1"),/[\x00-\x1f]/g,o02);return Ez(s,"single",e)}function o02(c){var e=c.charCodeAt(0),r={8:"b",9:"t",10:"n",12:"f",13:"r"}[e];return r?"\\"+r:"\\x"+(e<16?"0":"")+$82.call(e.toString(16))}function M5(c){return"Object("+c+")"}function nr(c){return c+" { ? }"}function Ao(c,e,r,t){var s=t?qr(r,t):g3.call(r,", ");return c+" ("+e+") {"+s+"}"}function f02(c){for(var e=0;e=0)return!1;return!0}function l02(c,e){var r;if(c.indent===" ")r=" ";else if(typeof c.indent=="number"&&c.indent>0)r=g3.call(Array(c.indent+1)," ");else return null;return{base:r,prev:g3.call(Array(e+1),r)}}function qr(c,e){if(c.length===0)return"";var r=` -`+e.prev+e.base;return r+g3.call(c,","+r)+` -`+e.prev}function gc(c,e){var r=$r(c),t=[];if(r){t.length=c.length;for(var s=0;s1;){var r=e.pop(),t=r.obj[r.prop];if(v8(t)){for(var s=[],i=0;i=48&&m<=57||m>=65&&m<=90||m>=97&&m<=122||i===b02.RFC1738&&(m===40||m===41)){l+=f.charAt(h);continue}if(m<128){l=l+v3[m];continue}if(m<2048){l=l+(v3[192|m>>6]+v3[128|m&63]);continue}if(m<55296||m>=57344){l=l+(v3[224|m>>12]+v3[128|m>>6&63]+v3[128|m&63]);continue}h+=1,m=65536+((m&1023)<<10|f.charCodeAt(h)&1023),l+=v3[240|m>>18]+v3[128|m>>12&63]+v3[128|m>>6&63]+v3[128|m&63]}return l},_02=function(e){for(var r=[{obj:{o:e},prop:"o"}],t=[],s=0;s"u"&&(E=0)}if(typeof h=="function"?L=h(r,L):L instanceof Date?L=H(L):t==="comma"&&$3(L)&&(L=Gr.maybeMap(L,function(E1){return E1 instanceof Date?H(E1):E1})),L===null){if(i)return l&&!M?l(r,I1.encoder,b,"key",C):r;L=""}if(D02(L)||Gr.isBuffer(L)){if(l){var c2=M?r:l(r,I1.encoder,b,"key",C);if(t==="comma"&&M){for(var U=R02.call(String(L),","),F="",e2=0;e2"u")return s2;var v2;if(t==="comma"&&$3(L))v2=[{value:L.length>0?L.join(",")||null:void 0}];else if($3(h))v2=h;else{var r2=Object.keys(L);v2=m?r2.sort(m):r2}for(var H2=s&&$3(L)&&L.length===1?r+"[]":r,t2=0;t2"u"?I1.allowDots:!!e.allowDots,charset:r,charsetSentinel:typeof e.charsetSentinel=="boolean"?e.charsetSentinel:I1.charsetSentinel,delimiter:typeof e.delimiter>"u"?I1.delimiter:e.delimiter,encode:typeof e.encode=="boolean"?e.encode:I1.encode,encoder:typeof e.encoder=="function"?e.encoder:I1.encoder,encodeValuesOnly:typeof e.encodeValuesOnly=="boolean"?e.encodeValuesOnly:I1.encodeValuesOnly,filter:i,format:t,formatter:s,serializeDate:typeof e.serializeDate=="function"?e.serializeDate:I1.serializeDate,skipNulls:typeof e.skipNulls=="boolean"?e.skipNulls:I1.skipNulls,sort:typeof e.sort=="function"?e.sort:null,strictNullHandling:typeof e.strictNullHandling=="boolean"?e.strictNullHandling:I1.strictNullHandling}},W02=function(c,e){var r=c,t=U02(e),s,i;typeof t.filter=="function"?(i=t.filter,r=i("",r)):$3(t.filter)&&(i=t.filter,s=i);var f=[];if(typeof r!="object"||r===null)return"";var l;e&&e.arrayFormat in _o?l=e.arrayFormat:e&&"indices"in e?l=e.indices?"indices":"repeat":l="indices";var h=_o[l];if(e&&"commaRoundTrip"in e&&typeof e.commaRoundTrip!="boolean")throw new TypeError("`commaRoundTrip` must be a boolean, or absent");var m=h==="comma"&&e&&e.commaRoundTrip;s||(s=Object.keys(r)),t.sort&&s.sort(t.sort);for(var v=Iz(),H=0;H0?M+x:""},w0=Dz,jr=Object.prototype.hasOwnProperty,$02=Array.isArray,k1={allowDots:!1,allowPrototypes:!1,allowSparse:!1,arrayLimit:20,charset:"utf-8",charsetSentinel:!1,comma:!1,decoder:w0.decode,delimiter:"&",depth:5,ignoreQueryPrefix:!1,interpretNumericEntities:!1,parameterLimit:1e3,parseArrays:!0,plainObjects:!1,strictNullHandling:!1},q02=function(c){return c.replace(/&#(\d+);/g,function(e,r){return String.fromCharCode(parseInt(r,10))})},Wz=function(c,e){return c&&typeof c=="string"&&e.comma&&c.indexOf(",")>-1?c.split(","):c},G02="utf8=%26%2310003%3B",j02="utf8=%E2%9C%93",K02=function(e,r){var t={},s=r.ignoreQueryPrefix?e.replace(/^\?/,""):e,i=r.parameterLimit===1/0?void 0:r.parameterLimit,f=s.split(r.delimiter,i),l=-1,h,m=r.charset;if(r.charsetSentinel)for(h=0;h-1&&(M=$02(M)?[M]:M),jr.call(t,x)?t[x]=w0.combine(t[x],M):t[x]=M}return t},X02=function(c,e,r,t){for(var s=t?e:Wz(e,r),i=c.length-1;i>=0;--i){var f,l=c[i];if(l==="[]"&&r.parseArrays)f=[].concat(s);else{f=r.plainObjects?Object.create(null):{};var h=l.charAt(0)==="["&&l.charAt(l.length-1)==="]"?l.slice(1,-1):l,m=parseInt(h,10);!r.parseArrays&&h===""?f={0:s}:!isNaN(m)&&l!==h&&String(m)===h&&m>=0&&r.parseArrays&&m<=r.arrayLimit?(f=[],f[m]=s):h!=="__proto__"&&(f[h]=s)}s=f}return s},Y02=function(e,r,t,s){if(e){var i=t.allowDots?e.replace(/\.([^.[]+)/g,"[$1]"):e,f=/(\[[^[\]]*])/,l=/(\[[^[\]]*])/g,h=t.depth>0&&f.exec(i),m=h?i.slice(0,h.index):i,v=[];if(m){if(!t.plainObjects&&jr.call(Object.prototype,m)&&!t.allowPrototypes)return;v.push(m)}for(var H=0;t.depth>0&&(h=l.exec(i))!==null&&H"u"?k1.charset:e.charset;return{allowDots:typeof e.allowDots>"u"?k1.allowDots:!!e.allowDots,allowPrototypes:typeof e.allowPrototypes=="boolean"?e.allowPrototypes:k1.allowPrototypes,allowSparse:typeof e.allowSparse=="boolean"?e.allowSparse:k1.allowSparse,arrayLimit:typeof e.arrayLimit=="number"?e.arrayLimit:k1.arrayLimit,charset:r,charsetSentinel:typeof e.charsetSentinel=="boolean"?e.charsetSentinel:k1.charsetSentinel,comma:typeof e.comma=="boolean"?e.comma:k1.comma,decoder:typeof e.decoder=="function"?e.decoder:k1.decoder,delimiter:typeof e.delimiter=="string"||w0.isRegExp(e.delimiter)?e.delimiter:k1.delimiter,depth:typeof e.depth=="number"||e.depth===!1?+e.depth:k1.depth,ignoreQueryPrefix:e.ignoreQueryPrefix===!0,interpretNumericEntities:typeof e.interpretNumericEntities=="boolean"?e.interpretNumericEntities:k1.interpretNumericEntities,parameterLimit:typeof e.parameterLimit=="number"?e.parameterLimit:k1.parameterLimit,parseArrays:e.parseArrays!==!1,plainObjects:typeof e.plainObjects=="boolean"?e.plainObjects:k1.plainObjects,strictNullHandling:typeof e.strictNullHandling=="boolean"?e.strictNullHandling:k1.strictNullHandling}},Q02=function(c,e){var r=J02(e);if(c===""||c===null||typeof c>"u")return r.plainObjects?Object.create(null):{};for(var t=typeof c=="string"?K02(c,r):c,s=r.plainObjects?Object.create(null):{},i=Object.keys(t),f=0;f
'};r.configure=function(M){var b,P;for(b in M)P=M[b],P!==void 0&&M.hasOwnProperty(b)&&(t[b]=P);return this},r.status=null,r.set=function(M){var b=r.isStarted();M=s(M,t.minimum,1),r.status=M===1?null:M;var P=r.render(!b),L=P.querySelector(t.barSelector),S=t.speed,E=t.easing;return P.offsetWidth,l(function(B){t.positionUsing===""&&(t.positionUsing=r.getPositioningCSS()),h(L,f(M,S,E)),M===1?(h(P,{transition:"none",opacity:1}),P.offsetWidth,setTimeout(function(){h(P,{transition:"all "+S+"ms linear",opacity:0}),setTimeout(function(){r.remove(),B()},S)},S)):setTimeout(B,S)}),this},r.isStarted=function(){return typeof r.status=="number"},r.start=function(){r.status||r.set(0);var M=function(){setTimeout(function(){r.status&&(r.trickle(),M())},t.trickleSpeed)};return t.trickle&&M(),this},r.done=function(M){return!M&&!r.status?this:r.inc(.3+.5*Math.random()).set(1)},r.inc=function(M){var b=r.status;return b?(typeof M!="number"&&(M=(1-b)*s(Math.random()*b,.1,.95)),b=s(b+M,0,.994),r.set(b)):r.start()},r.trickle=function(){return r.inc(Math.random()*t.trickleRate)},function(){var M=0,b=0;r.promise=function(P){return!P||P.state()==="resolved"?this:(b===0&&r.start(),M++,b++,P.always(function(){b--,b===0?(M=0,r.done()):r.set((M-b)/M)}),this)}}(),r.render=function(M){if(r.isRendered())return document.getElementById("nprogress");v(document.documentElement,"nprogress-busy");var b=document.createElement("div");b.id="nprogress",b.innerHTML=t.template;var P=b.querySelector(t.barSelector),L=M?"-100":i(r.status||0),S=document.querySelector(t.parent),E;return h(P,{transition:"all 0 linear",transform:"translate3d("+L+"%,0,0)"}),t.showSpinner||(E=b.querySelector(t.spinnerSelector),E&&x(E)),S!=document.body&&v(S,"nprogress-custom-parent"),S.appendChild(b),b},r.remove=function(){H(document.documentElement,"nprogress-busy"),H(document.querySelector(t.parent),"nprogress-custom-parent");var M=document.getElementById("nprogress");M&&x(M)},r.isRendered=function(){return!!document.getElementById("nprogress")},r.getPositioningCSS=function(){var M=document.body.style,b="WebkitTransform"in M?"Webkit":"MozTransform"in M?"Moz":"msTransform"in M?"ms":"OTransform"in M?"O":"";return b+"Perspective"in M?"translate3d":b+"Transform"in M?"translate":"margin"};function s(M,b,P){return MP?P:M}function i(M){return(-1+M)*100}function f(M,b,P){var L;return t.positionUsing==="translate3d"?L={transform:"translate3d("+i(M)+"%,0,0)"}:t.positionUsing==="translate"?L={transform:"translate("+i(M)+"%,0)"}:L={"margin-left":i(M)+"%"},L.transition="all "+b+"ms "+P,L}var l=function(){var M=[];function b(){var P=M.shift();P&&P(b)}return function(P){M.push(P),M.length==1&&b()}}(),h=function(){var M=["Webkit","O","Moz","ms"],b={};function P(B){return B.replace(/^-ms-/,"ms-").replace(/-([\da-z])/gi,function(G,c2){return c2.toUpperCase()})}function L(B){var G=document.body.style;if(B in G)return B;for(var c2=M.length,U=B.charAt(0).toUpperCase()+B.slice(1),F;c2--;)if(F=M[c2]+U,F in G)return F;return B}function S(B){return B=P(B),b[B]||(b[B]=L(B))}function E(B,G,c2){G=S(G),B.style[G]=c2}return function(B,G){var c2=arguments,U,F;if(c2.length==2)for(U in G)F=G[U],F!==void 0&&G.hasOwnProperty(U)&&E(B,U,F);else E(B,c2[1],c2[2])}}();function m(M,b){var P=typeof M=="string"?M:C(M);return P.indexOf(" "+b+" ")>=0}function v(M,b){var P=C(M),L=P+b;m(P,b)||(M.className=L.substring(1))}function H(M,b){var P=C(M),L;m(M,b)&&(L=P.replace(" "+b+" "," "),M.className=L.substring(1,L.length-1))}function C(M){return(" "+(M.className||"")+" ").replace(/\s+/gi," ")}function x(M){M&&M.parentNode&&M.parentNode.removeChild(M)}return r})})(r52);const M3=Kr;function $z(c,e){let r;return function(...t){clearTimeout(r),r=setTimeout(()=>c.apply(this,t),e)}}function e6(c,e){return document.dispatchEvent(new CustomEvent(`inertia:${c}`,e))}var a52=c=>e6("before",{cancelable:!0,detail:{visit:c}}),n52=c=>e6("error",{detail:{errors:c}}),t52=c=>e6("exception",{cancelable:!0,detail:{exception:c}}),Po=c=>e6("finish",{detail:{visit:c}}),s52=c=>e6("invalid",{cancelable:!0,detail:{response:c}}),C5=c=>e6("navigate",{detail:{page:c}}),i52=c=>e6("progress",{detail:{progress:c}}),o52=c=>e6("start",{detail:{visit:c}}),f52=c=>e6("success",{detail:{page:c}});function Xr(c){return c instanceof File||c instanceof Blob||c instanceof FileList&&c.length>0||c instanceof FormData&&Array.from(c.values()).some(e=>Xr(e))||typeof c=="object"&&c!==null&&Object.values(c).some(e=>Xr(e))}function qz(c,e=new FormData,r=null){c=c||{};for(let t in c)Object.prototype.hasOwnProperty.call(c,t)&&jz(e,Gz(r,t),c[t]);return e}function Gz(c,e){return c?c+"["+e+"]":e}function jz(c,e,r){if(Array.isArray(r))return Array.from(r.keys()).forEach(t=>jz(c,Gz(e,t.toString()),r[t]));if(r instanceof Date)return c.append(e,r.toISOString());if(r instanceof File)return c.append(e,r,r.name);if(r instanceof Blob)return c.append(e,r);if(typeof r=="boolean")return c.append(e,r?"1":"0");if(typeof r=="string")return c.append(e,r);if(typeof r=="number")return c.append(e,`${r}`);if(r==null)return c.append(e,"");qz(r,c,e)}var l52={modal:null,listener:null,show(c){typeof c=="object"&&(c=`All Inertia requests must receive a valid Inertia response, however a plain JSON response was received.
${JSON.stringify(c)}`);let e=document.createElement("html");e.innerHTML=c,e.querySelectorAll("a").forEach(t=>t.setAttribute("target","_top")),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());let r=document.createElement("iframe");if(r.style.backgroundColor="white",r.style.borderRadius="5px",r.style.width="100%",r.style.height="100%",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(e.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(c){c.keyCode===27&&this.hide()}};function n0(c){return new URL(c.toString(),window.location.toString())}function Kz(c,e,r,t="brackets"){let s=/^https?:\/\//.test(e.toString()),i=s||e.toString().startsWith("/"),f=!i&&!e.toString().startsWith("#")&&!e.toString().startsWith("?"),l=e.toString().includes("?")||c==="get"&&Object.keys(r).length,h=e.toString().includes("#"),m=new URL(e.toString(),"http://localhost");return c==="get"&&Object.keys(r).length&&(m.search=To.stringify(f82(To.parse(m.search,{ignoreQueryPrefix:!0}),r),{encodeValuesOnly:!0,arrayFormat:t}),r={}),[[s?`${m.protocol}//${m.host}`:"",i?m.pathname:"",f?m.pathname.substring(1):"",l?m.search:"",h?m.hash:""].join(""),r]}function L5(c){return c=new URL(c.href),c.hash="",c}var Eo=typeof window>"u",u52=class{constructor(){this.visitId=null}init({initialPage:e,resolveComponent:r,swapComponent:t}){this.page=e,this.resolveComponent=r,this.swapComponent=t,this.setNavigationType(),this.clearRememberedStateOnReload(),this.isBackForwardVisit()?this.handleBackForwardVisit(this.page):this.isLocationVisit()?this.handleLocationVisit(this.page):this.handleInitialPageVisit(this.page),this.setupEventListeners()}setNavigationType(){this.navigationType=window.performance&&window.performance.getEntriesByType("navigation").length>0?window.performance.getEntriesByType("navigation")[0].type:"navigate"}clearRememberedStateOnReload(){var e;this.navigationType==="reload"&&((e=window.history.state)!=null&&e.rememberedState)&&delete window.history.state.rememberedState}handleInitialPageVisit(e){this.page.url+=window.location.hash,this.setPage(e,{preserveState:!0}).then(()=>C5(e))}setupEventListeners(){window.addEventListener("popstate",this.handlePopstateEvent.bind(this)),document.addEventListener("scroll",$z(this.handleScrollEvent.bind(this),100),!0)}scrollRegions(){return document.querySelectorAll("[scroll-region]")}handleScrollEvent(e){typeof e.target.hasAttribute=="function"&&e.target.hasAttribute("scroll-region")&&this.saveScrollPositions()}saveScrollPositions(){this.replaceState({...this.page,scrollRegions:Array.from(this.scrollRegions()).map(e=>({top:e.scrollTop,left:e.scrollLeft}))})}resetScrollPositions(){window.scrollTo(0,0),this.scrollRegions().forEach(e=>{typeof e.scrollTo=="function"?e.scrollTo(0,0):(e.scrollTop=0,e.scrollLeft=0)}),this.saveScrollPositions(),window.location.hash&&setTimeout(()=>{var e;return(e=document.getElementById(window.location.hash.slice(1)))==null?void 0:e.scrollIntoView()})}restoreScrollPositions(){this.page.scrollRegions&&this.scrollRegions().forEach((e,r)=>{let t=this.page.scrollRegions[r];if(t)typeof e.scrollTo=="function"?e.scrollTo(t.left,t.top):(e.scrollTop=t.top,e.scrollLeft=t.left);else return})}isBackForwardVisit(){return window.history.state&&this.navigationType==="back_forward"}handleBackForwardVisit(e){window.history.state.version=e.version,this.setPage(window.history.state,{preserveScroll:!0,preserveState:!0}).then(()=>{this.restoreScrollPositions(),C5(e)})}locationVisit(e,r){try{let t={preserveScroll:r};window.sessionStorage.setItem("inertiaLocationVisit",JSON.stringify(t)),window.location.href=e.href,L5(window.location).href===L5(e).href&&window.location.reload()}catch{return!1}}isLocationVisit(){try{return window.sessionStorage.getItem("inertiaLocationVisit")!==null}catch{return!1}}handleLocationVisit(e){var t,s;let r=JSON.parse(window.sessionStorage.getItem("inertiaLocationVisit")||"");window.sessionStorage.removeItem("inertiaLocationVisit"),e.url+=window.location.hash,e.rememberedState=((t=window.history.state)==null?void 0:t.rememberedState)??{},e.scrollRegions=((s=window.history.state)==null?void 0:s.scrollRegions)??[],this.setPage(e,{preserveScroll:r.preserveScroll,preserveState:!0}).then(()=>{r.preserveScroll&&this.restoreScrollPositions(),C5(e)})}isLocationVisitResponse(e){return!!(e&&e.status===409&&e.headers["x-inertia-location"])}isInertiaResponse(e){return!!(e!=null&&e.headers["x-inertia"])}createVisitId(){return this.visitId={},this.visitId}cancelVisit(e,{cancelled:r=!1,interrupted:t=!1}){e&&!e.completed&&!e.cancelled&&!e.interrupted&&(e.cancelToken.abort(),e.onCancel(),e.completed=!1,e.cancelled=r,e.interrupted=t,Po(e),e.onFinish(e))}finishVisit(e){!e.cancelled&&!e.interrupted&&(e.completed=!0,e.cancelled=!1,e.interrupted=!1,Po(e),e.onFinish(e))}resolvePreserveOption(e,r){return typeof e=="function"?e(r):e==="errors"?Object.keys(r.props.errors||{}).length>0:e}cancel(){this.activeVisit&&this.cancelVisit(this.activeVisit,{cancelled:!0})}visit(e,{method:r="get",data:t={},replace:s=!1,preserveScroll:i=!1,preserveState:f=!1,only:l=[],headers:h={},errorBag:m="",forceFormData:v=!1,onCancelToken:H=()=>{},onBefore:C=()=>{},onStart:x=()=>{},onProgress:M=()=>{},onFinish:b=()=>{},onCancel:P=()=>{},onSuccess:L=()=>{},onError:S=()=>{},queryStringArrayFormat:E="brackets"}={}){let B=typeof e=="string"?n0(e):e;if((Xr(t)||v)&&!(t instanceof FormData)&&(t=qz(t)),!(t instanceof FormData)){let[U,F]=Kz(r,B,t,E);B=n0(U),t=F}let G={url:B,method:r,data:t,replace:s,preserveScroll:i,preserveState:f,only:l,headers:h,errorBag:m,forceFormData:v,queryStringArrayFormat:E,cancelled:!1,completed:!1,interrupted:!1};if(C(G)===!1||!a52(G))return;this.activeVisit&&this.cancelVisit(this.activeVisit,{interrupted:!0}),this.saveScrollPositions();let c2=this.createVisitId();this.activeVisit={...G,onCancelToken:H,onBefore:C,onStart:x,onProgress:M,onFinish:b,onCancel:P,onSuccess:L,onError:S,queryStringArrayFormat:E,cancelToken:new AbortController},H({cancel:()=>{this.activeVisit&&this.cancelVisit(this.activeVisit,{cancelled:!0})}}),o52(G),x(G),vr({method:r,url:L5(B).href,data:r==="get"?{}:t,params:r==="get"?t:{},signal:this.activeVisit.cancelToken.signal,headers:{...h,Accept:"text/html, application/xhtml+xml","X-Requested-With":"XMLHttpRequest","X-Inertia":!0,...l.length?{"X-Inertia-Partial-Component":this.page.component,"X-Inertia-Partial-Data":l.join(",")}:{},...m&&m.length?{"X-Inertia-Error-Bag":m}:{},...this.page.version?{"X-Inertia-Version":this.page.version}:{}},onUploadProgress:U=>{t instanceof FormData&&(U.percentage=U.progress?Math.round(U.progress*100):0,i52(U),M(U))}}).then(U=>{var v2;if(!this.isInertiaResponse(U))return Promise.reject({response:U});let F=U.data;l.length&&F.component===this.page.component&&(F.props={...this.page.props,...F.props}),i=this.resolvePreserveOption(i,F),f=this.resolvePreserveOption(f,F),f&&((v2=window.history.state)!=null&&v2.rememberedState)&&F.component===this.page.component&&(F.rememberedState=window.history.state.rememberedState);let e2=B,s2=n0(F.url);return e2.hash&&!s2.hash&&L5(e2).href===s2.href&&(s2.hash=e2.hash,F.url=s2.href),this.setPage(F,{visitId:c2,replace:s,preserveScroll:i,preserveState:f})}).then(()=>{let U=this.page.props.errors||{};if(Object.keys(U).length>0){let F=m?U[m]?U[m]:{}:U;return n52(F),S(F)}return f52(this.page),L(this.page)}).catch(U=>{if(this.isInertiaResponse(U.response))return this.setPage(U.response.data,{visitId:c2});if(this.isLocationVisitResponse(U.response)){let F=n0(U.response.headers["x-inertia-location"]),e2=B;e2.hash&&!F.hash&&L5(e2).href===F.href&&(F.hash=e2.hash),this.locationVisit(F,i===!0)}else if(U.response)s52(U.response)&&l52.show(U.response.data);else return Promise.reject(U)}).then(()=>{this.activeVisit&&this.finishVisit(this.activeVisit)}).catch(U=>{if(!vr.isCancel(U)){let F=t52(U);if(this.activeVisit&&this.finishVisit(this.activeVisit),F)return Promise.reject(U)}})}setPage(e,{visitId:r=this.createVisitId(),replace:t=!1,preserveScroll:s=!1,preserveState:i=!1}={}){return Promise.resolve(this.resolveComponent(e.component)).then(f=>{r===this.visitId&&(e.scrollRegions=e.scrollRegions||[],e.rememberedState=e.rememberedState||{},t=t||n0(e.url).href===window.location.href,t?this.replaceState(e):this.pushState(e),this.swapComponent({component:f,page:e,preserveState:i}).then(()=>{s||this.resetScrollPositions(),t||C5(e)}))})}pushState(e){this.page=e,window.history.pushState(e,"",e.url)}replaceState(e){this.page=e,window.history.replaceState(e,"",e.url)}handlePopstateEvent(e){if(e.state!==null){let r=e.state,t=this.createVisitId();Promise.resolve(this.resolveComponent(r.component)).then(s=>{t===this.visitId&&(this.page=r,this.swapComponent({component:s,page:r,preserveState:!1}).then(()=>{this.restoreScrollPositions(),C5(r)}))})}else{let r=n0(this.page.url);r.hash=window.location.hash,this.replaceState({...this.page,url:r.href}),this.resetScrollPositions()}}get(e,r={},t={}){return this.visit(e,{...t,method:"get",data:r})}reload(e={}){return this.visit(window.location.href,{...e,preserveScroll:!0,preserveState:!0})}replace(e,r={}){return console.warn(`Inertia.replace() has been deprecated and will be removed in a future release. Please use Inertia.${r.method??"get"}() instead.`),this.visit(e,{preserveState:!0,...r,replace:!0})}post(e,r={},t={}){return this.visit(e,{preserveState:!0,...t,method:"post",data:r})}put(e,r={},t={}){return this.visit(e,{preserveState:!0,...t,method:"put",data:r})}patch(e,r={},t={}){return this.visit(e,{preserveState:!0,...t,method:"patch",data:r})}delete(e,r={}){return this.visit(e,{preserveState:!0,...r,method:"delete"})}remember(e,r="default"){var t;Eo||this.replaceState({...this.page,rememberedState:{...(t=this.page)==null?void 0:t.rememberedState,[r]:e}})}restore(e="default"){var r,t;if(!Eo)return(t=(r=window.history.state)==null?void 0:r.rememberedState)==null?void 0:t[e]}on(e,r){let t=s=>{let i=r(s);s.cancelable&&!s.defaultPrevented&&i===!1&&s.preventDefault()};return document.addEventListener(`inertia:${e}`,t),()=>document.removeEventListener(`inertia:${e}`,t)}},h52={buildDOMElement(c){let e=document.createElement("template");e.innerHTML=c;let r=e.content.firstChild;if(!c.startsWith("