From ac3eb60732b95201d5c08582ce81d554307ea4bb Mon Sep 17 00:00:00 2001 From: Abdullahi Abdul Kabir Date: Thu, 23 Nov 2023 12:58:58 +0100 Subject: [PATCH 01/31] upgrade dynamic methods --- app/{DynamicRelations => Dynamics}/Company/Comments.php | 7 ++++++- app/{DynamicRelations => Dynamics}/Company/Discussions.php | 7 ++++++- app/{DynamicRelations => Dynamics}/Company/Documents.php | 7 ++++++- app/Providers/AppServiceProvider.php | 6 ------ composer.json | 4 ++-- 5 files changed, 20 insertions(+), 11 deletions(-) rename app/{DynamicRelations => Dynamics}/Company/Comments.php (59%) rename app/{DynamicRelations => Dynamics}/Company/Discussions.php (60%) rename app/{DynamicRelations => Dynamics}/Company/Documents.php (59%) diff --git a/app/DynamicRelations/Company/Comments.php b/app/Dynamics/Company/Comments.php similarity index 59% rename from app/DynamicRelations/Company/Comments.php rename to app/Dynamics/Company/Comments.php index 985002288..962fddf41 100644 --- a/app/DynamicRelations/Company/Comments.php +++ b/app/Dynamics/Company/Comments.php @@ -4,10 +4,15 @@ use Closure; use LaravelEnso\Comments\Models\Comment; +use LaravelEnso\Companies\Models\Company; use LaravelEnso\DynamicMethods\Contracts\Method; class Comments implements Method { + public function bindTo(): array + { + return [Company::class]; + } public function name(): string { return 'comments'; @@ -15,6 +20,6 @@ public function name(): string public function closure(): Closure { - return fn () => $this->morphMany(Comment::class, 'commentable'); + return fn (Company $company) => $company->morphMany(Comment::class, 'commentable'); } } diff --git a/app/DynamicRelations/Company/Discussions.php b/app/Dynamics/Company/Discussions.php similarity index 60% rename from app/DynamicRelations/Company/Discussions.php rename to app/Dynamics/Company/Discussions.php index 3e13c4b87..4e43278dc 100644 --- a/app/DynamicRelations/Company/Discussions.php +++ b/app/Dynamics/Company/Discussions.php @@ -3,11 +3,16 @@ namespace App\DynamicRelations\Company; use Closure; +use LaravelEnso\Companies\Models\Company; use LaravelEnso\Discussions\Models\Discussion; use LaravelEnso\DynamicMethods\Contracts\Method; class Discussions implements Method { + public function bindTo(): array + { + return [Company::class]; + } public function name(): string { return 'discussions'; @@ -15,6 +20,6 @@ public function name(): string public function closure(): Closure { - return fn () => $this->morphMany(Discussion::class, 'discussable'); + return fn (Company $company) => $company->morphMany(Discussion::class, 'discussable'); } } diff --git a/app/DynamicRelations/Company/Documents.php b/app/Dynamics/Company/Documents.php similarity index 59% rename from app/DynamicRelations/Company/Documents.php rename to app/Dynamics/Company/Documents.php index 5a26715dc..3e89ab2cf 100644 --- a/app/DynamicRelations/Company/Documents.php +++ b/app/Dynamics/Company/Documents.php @@ -3,11 +3,16 @@ namespace App\DynamicRelations\Company; use Closure; +use LaravelEnso\Companies\Models\Company; use LaravelEnso\Documents\Models\Document; use LaravelEnso\DynamicMethods\Contracts\Method; class Documents implements Method { + public function bindTo(): array + { + return [Company::class]; + } public function name(): string { return 'documents'; @@ -15,6 +20,6 @@ public function name(): string public function closure(): Closure { - return fn () => $this->morphMany(Document::class, 'documentable'); + return fn (Company $company) => $company->morphMany(Document::class, 'documentable'); } } diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php index 4be36510d..4fd2f948f 100644 --- a/app/Providers/AppServiceProvider.php +++ b/app/Providers/AppServiceProvider.php @@ -2,13 +2,8 @@ namespace App\Providers; -use App\DynamicRelations\Company\Comments; -use App\DynamicRelations\Company\Discussions; -use App\DynamicRelations\Company\Documents; use App\Models\User; use Illuminate\Support\ServiceProvider; -use LaravelEnso\Companies\Models\Company; -use LaravelEnso\DynamicMethods\Services\Methods; use LaravelEnso\Users\Models\User as BaseUser; class AppServiceProvider extends ServiceProvider @@ -23,6 +18,5 @@ public function boot() public function register() { - Methods::bind(Company::class, [Comments::class, Discussions::class, Documents::class]); } } diff --git a/composer.json b/composer.json index da4040024..5d9624cc3 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ "laravel-enso/calendar": "^3.0", "laravel-enso/comments": "^4.0", "laravel-enso/control-panel-api": "^3.0", - "laravel-enso/core": "^8.0", + "laravel-enso/core": "^9.0", "laravel-enso/data-import": "^6.0", "laravel-enso/discussions": "^4.0", "laravel-enso/documents": "^5.0", @@ -93,4 +93,4 @@ "php artisan enso:upgrade:status" ] } -} \ No newline at end of file +} From 3b1e55bd963b89a5851405dd2b2d8e4201fe8e59 Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Thu, 23 Nov 2023 12:00:04 +0000 Subject: [PATCH 02/31] Apply fixes from StyleCI --- app/Dynamics/Company/Comments.php | 1 + app/Dynamics/Company/Discussions.php | 1 + app/Dynamics/Company/Documents.php | 1 + 3 files changed, 3 insertions(+) diff --git a/app/Dynamics/Company/Comments.php b/app/Dynamics/Company/Comments.php index 962fddf41..5454ae72c 100644 --- a/app/Dynamics/Company/Comments.php +++ b/app/Dynamics/Company/Comments.php @@ -13,6 +13,7 @@ public function bindTo(): array { return [Company::class]; } + public function name(): string { return 'comments'; diff --git a/app/Dynamics/Company/Discussions.php b/app/Dynamics/Company/Discussions.php index 4e43278dc..cc236f0ae 100644 --- a/app/Dynamics/Company/Discussions.php +++ b/app/Dynamics/Company/Discussions.php @@ -13,6 +13,7 @@ public function bindTo(): array { return [Company::class]; } + public function name(): string { return 'discussions'; diff --git a/app/Dynamics/Company/Documents.php b/app/Dynamics/Company/Documents.php index 3e89ab2cf..de2465741 100644 --- a/app/Dynamics/Company/Documents.php +++ b/app/Dynamics/Company/Documents.php @@ -13,6 +13,7 @@ public function bindTo(): array { return [Company::class]; } + public function name(): string { return 'documents'; From ce3fbc1126bdd1a91024dfca9b617f12a478af21 Mon Sep 17 00:00:00 2001 From: Abdullahi Abdul Kabir Date: Sat, 20 Jan 2024 13:04:35 +0100 Subject: [PATCH 03/31] fix --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 5d9624cc3..94516bd05 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ "laravel-enso/calendar": "^3.0", "laravel-enso/comments": "^4.0", "laravel-enso/control-panel-api": "^3.0", - "laravel-enso/core": "^9.0", + "laravel-enso/core": "^8.0", "laravel-enso/data-import": "^6.0", "laravel-enso/discussions": "^4.0", "laravel-enso/documents": "^5.0", From 7800752e58d738951ce10a8d5ef740fa9cff460f Mon Sep 17 00:00:00 2001 From: Abdullahi Abdul Kabir Date: Tue, 30 Jan 2024 10:28:43 +0100 Subject: [PATCH 04/31] Update --- app/Dynamics/Company/Comments.php | 4 ++-- app/Dynamics/Company/Discussions.php | 5 +++-- app/Dynamics/Company/Documents.php | 4 ++-- composer.json | 10 +++++----- 4 files changed, 12 insertions(+), 11 deletions(-) diff --git a/app/Dynamics/Company/Comments.php b/app/Dynamics/Company/Comments.php index 5454ae72c..15a57afb2 100644 --- a/app/Dynamics/Company/Comments.php +++ b/app/Dynamics/Company/Comments.php @@ -5,9 +5,9 @@ use Closure; use LaravelEnso\Comments\Models\Comment; use LaravelEnso\Companies\Models\Company; -use LaravelEnso\DynamicMethods\Contracts\Method; +use LaravelEnso\DynamicMethods\Contracts\Relation; -class Comments implements Method +class Comments implements Relation { public function bindTo(): array { diff --git a/app/Dynamics/Company/Discussions.php b/app/Dynamics/Company/Discussions.php index cc236f0ae..ddbe4bb39 100644 --- a/app/Dynamics/Company/Discussions.php +++ b/app/Dynamics/Company/Discussions.php @@ -5,9 +5,10 @@ use Closure; use LaravelEnso\Companies\Models\Company; use LaravelEnso\Discussions\Models\Discussion; -use LaravelEnso\DynamicMethods\Contracts\Method; +use LaravelEnso\DynamicMethods\Contracts\Relation; -class Discussions implements Method + +class Discussions implements Relation { public function bindTo(): array { diff --git a/app/Dynamics/Company/Documents.php b/app/Dynamics/Company/Documents.php index de2465741..0e848d9e5 100644 --- a/app/Dynamics/Company/Documents.php +++ b/app/Dynamics/Company/Documents.php @@ -5,9 +5,9 @@ use Closure; use LaravelEnso\Companies\Models\Company; use LaravelEnso\Documents\Models\Document; -use LaravelEnso\DynamicMethods\Contracts\Method; +use LaravelEnso\DynamicMethods\Contracts\Relation; -class Documents implements Method +class Documents implements Relation { public function bindTo(): array { diff --git a/composer.json b/composer.json index 94516bd05..d855d6da4 100644 --- a/composer.json +++ b/composer.json @@ -8,25 +8,25 @@ ], "license": "MIT", "require": { - "php": ">=8.0", + "php": "^8.0", "doctrine/dbal": "^2.8", "guzzlehttp/guzzle": "^7.2", "laravel-enso/calendar": "^3.0", "laravel-enso/comments": "^4.0", "laravel-enso/control-panel-api": "^3.0", - "laravel-enso/core": "^8.0", + "laravel-enso/core": "^9.0", "laravel-enso/data-import": "^6.0", - "laravel-enso/discussions": "^4.0", "laravel-enso/documents": "^5.0", "laravel-enso/excel": "^3.0", + "laravel-enso/helpers": "^3.0", "laravel-enso/how-to": "^5.0", "laravel-enso/pdf": "^2.0", "laravel-enso/tasks": "^2.0", "laravel-enso/teams": "^4.0", "laravel-enso/tutorials": "^5.0", - "laravel/framework": "^9.2", + "laravel/framework": "^10.0", "laravel/horizon": "^5.0", - "laravel/sanctum": "^2.14.1", + "laravel/sanctum": "^3.2", "laravel/telescope": "^4.0", "laravel/tinker": "^2.7", "laravel/ui": "^3.0", From 13d447ada107ce02695b3b65f7cbb71a53ed96cb Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Tue, 30 Jan 2024 09:29:40 +0000 Subject: [PATCH 05/31] Apply fixes from StyleCI --- app/Dynamics/Company/Discussions.php | 1 - config/horizon.php | 76 ++++---- lang/ar/auth.php | 2 +- lang/ar/pagination.php | 2 +- lang/ar/passwords.php | 8 +- lang/ar/validation-inline.php | 190 +++++++++---------- lang/ar/validation.php | 246 ++++++++++++------------ lang/br/auth.php | 2 +- lang/br/pagination.php | 2 +- lang/br/passwords.php | 8 +- lang/br/validation.php | 156 ++++++++-------- lang/de/auth.php | 2 +- lang/de/pagination.php | 2 +- lang/de/passwords.php | 8 +- lang/de/validation-inline.php | 190 +++++++++---------- lang/de/validation.php | 248 ++++++++++++------------ lang/es/auth.php | 2 +- lang/es/pagination.php | 2 +- lang/es/passwords.php | 8 +- lang/es/validation-inline.php | 190 +++++++++---------- lang/es/validation.php | 258 ++++++++++++------------- lang/fr/auth.php | 2 +- lang/fr/pagination.php | 2 +- lang/fr/passwords.php | 8 +- lang/fr/validation-inline.php | 190 +++++++++---------- lang/fr/validation.php | 248 ++++++++++++------------ lang/hu/auth.php | 2 +- lang/hu/pagination.php | 2 +- lang/hu/passwords.php | 8 +- lang/hu/validation-inline.php | 190 +++++++++---------- lang/hu/validation.php | 192 +++++++++---------- lang/mn/auth.php | 2 +- lang/mn/pagination.php | 2 +- lang/mn/passwords.php | 8 +- lang/mn/validation-inline.php | 190 +++++++++---------- lang/mn/validation.php | 190 +++++++++---------- lang/nl/auth.php | 2 +- lang/nl/pagination.php | 2 +- lang/nl/passwords.php | 8 +- lang/nl/validation-inline.php | 190 +++++++++---------- lang/nl/validation.php | 270 +++++++++++++-------------- lang/ro/auth.php | 2 +- lang/ro/pagination.php | 2 +- lang/ro/passwords.php | 8 +- lang/ro/validation-inline.php | 190 +++++++++---------- lang/ro/validation.php | 190 +++++++++---------- lang/ru/auth.php | 2 +- lang/ru/pagination.php | 2 +- lang/ru/passwords.php | 8 +- lang/ru/validation-inline.php | 190 +++++++++---------- lang/ru/validation.php | 248 ++++++++++++------------ 51 files changed, 2076 insertions(+), 2077 deletions(-) diff --git a/app/Dynamics/Company/Discussions.php b/app/Dynamics/Company/Discussions.php index ddbe4bb39..22ff4e48d 100644 --- a/app/Dynamics/Company/Discussions.php +++ b/app/Dynamics/Company/Discussions.php @@ -7,7 +7,6 @@ use LaravelEnso\Discussions\Models\Discussion; use LaravelEnso\DynamicMethods\Contracts\Relation; - class Discussions implements Relation { public function bindTo(): array diff --git a/config/horizon.php b/config/horizon.php index 81d1786b9..44d94f040 100644 --- a/config/horizon.php +++ b/config/horizon.php @@ -79,10 +79,10 @@ */ 'waits' => [ - 'redis:default' => 60, - 'redis:light' => 60, + 'redis:default' => 60, + 'redis:light' => 60, 'redis:notifications' => 60, - 'redis:heavy' => 60 * 30, + 'redis:heavy' => 60 * 30, ], /* @@ -97,12 +97,12 @@ */ 'trim' => [ - 'recent' => 60, - 'pending' => 60, - 'completed' => 60, + 'recent' => 60, + 'pending' => 60, + 'completed' => 60, 'recent_failed' => 60 * 24 * 7, - 'failed' => 60 * 24 * 7, - 'monitored' => 60 * 24 * 7, + 'failed' => 60 * 24 * 7, + 'monitored' => 60 * 24 * 7, ], /* @@ -148,54 +148,54 @@ 'production' => [ 'supervisor-1' => [ 'connection' => 'redis', - 'queue' => ['default', 'light', 'notifications'], - 'balance' => 'auto', - 'processes' => 6, - 'tries' => 1, - 'timeout' => 60 * 60, + 'queue' => ['default', 'light', 'notifications'], + 'balance' => 'auto', + 'processes' => 6, + 'tries' => 1, + 'timeout' => 60 * 60, ], 'supervisor-2' => [ 'connection' => 'redis', - 'queue' => ['heavy'], - 'balance' => 'auto', - 'processes' => 2, - 'tries' => 1, - 'timeout' => 60 * 60, + 'queue' => ['heavy'], + 'balance' => 'auto', + 'processes' => 2, + 'tries' => 1, + 'timeout' => 60 * 60, ], 'supervisor-3' => [ 'connection' => 'redis', - 'queue' => ['sync'], - 'balance' => 'auto', - 'processes' => 1, - 'tries' => 1, - 'timeout' => 60 * 60, + 'queue' => ['sync'], + 'balance' => 'auto', + 'processes' => 1, + 'tries' => 1, + 'timeout' => 60 * 60, ], ], 'local' => [ 'supervisor-1' => [ 'connection' => 'redis', - 'queue' => ['default', 'light', 'notifications'], - 'balance' => 'auto', - 'processes' => 6, - 'tries' => 1, - 'timeout' => 60 * 60, + 'queue' => ['default', 'light', 'notifications'], + 'balance' => 'auto', + 'processes' => 6, + 'tries' => 1, + 'timeout' => 60 * 60, ], 'supervisor-2' => [ 'connection' => 'redis', - 'queue' => ['heavy'], - 'balance' => 'auto', - 'processes' => 1, - 'tries' => 1, - 'timeout' => 60 * 60, + 'queue' => ['heavy'], + 'balance' => 'auto', + 'processes' => 1, + 'tries' => 1, + 'timeout' => 60 * 60, ], 'supervisor-3' => [ 'connection' => 'redis', - 'queue' => ['sync'], - 'balance' => 'auto', - 'processes' => 1, - 'tries' => 1, - 'timeout' => 60 * 60, + 'queue' => ['sync'], + 'balance' => 'auto', + 'processes' => 1, + 'tries' => 1, + 'timeout' => 60 * 60, ], ], ], diff --git a/lang/ar/auth.php b/lang/ar/auth.php index 7b62c9a24..ac94c7087 100644 --- a/lang/ar/auth.php +++ b/lang/ar/auth.php @@ -12,7 +12,7 @@ */ return [ - 'failed' => 'بيانات الاعتماد هذه غير متطابقة مع البيانات المسجلة لدينا.', + 'failed' => 'بيانات الاعتماد هذه غير متطابقة مع البيانات المسجلة لدينا.', 'password' => 'كلمة المرور المستخدمة غير صحيحة.', 'throttle' => 'عدد كبير جدا من محاولات الدخول. يرجى المحاولة مرة أخرى بعد :seconds ثانية.', ]; diff --git a/lang/ar/pagination.php b/lang/ar/pagination.php index 9244cf030..ab41e7f80 100644 --- a/lang/ar/pagination.php +++ b/lang/ar/pagination.php @@ -12,6 +12,6 @@ */ return [ - 'next' => 'التالي »', + 'next' => 'التالي »', 'previous' => '« السابق', ]; diff --git a/lang/ar/passwords.php b/lang/ar/passwords.php index 8af406436..92bd31384 100644 --- a/lang/ar/passwords.php +++ b/lang/ar/passwords.php @@ -13,9 +13,9 @@ return [ 'password' => 'يجب أن لا يقل طول كلمة المرور عن ستة أحرف، كما يجب أن تتطابق مع حقل التأكيد', - 'reset' => 'تمت إعادة تعيين كلمة المرور!', - 'sent' => 'تم إرسال تفاصيل استعادة كلمة المرور الخاصة بك إلى بريدك الإلكتروني!', + 'reset' => 'تمت إعادة تعيين كلمة المرور!', + 'sent' => 'تم إرسال تفاصيل استعادة كلمة المرور الخاصة بك إلى بريدك الإلكتروني!', 'throttled' => 'الرجاء الانتظار قبل إعادة المحاولة.', - 'token' => 'رمز استعادة كلمة المرور الذي أدخلته غير صحيح.', - 'user' => 'لم يتم العثور على أيّ حسابٍ بهذا العنوان الإلكتروني.', + 'token' => 'رمز استعادة كلمة المرور الذي أدخلته غير صحيح.', + 'user' => 'لم يتم العثور على أيّ حسابٍ بهذا العنوان الإلكتروني.', ]; diff --git a/lang/ar/validation-inline.php b/lang/ar/validation-inline.php index 76829016e..651770e0a 100644 --- a/lang/ar/validation-inline.php +++ b/lang/ar/validation-inline.php @@ -12,120 +12,120 @@ */ return [ - 'accepted' => 'يجب قبول هذا الحقل.', - 'active_url' => 'لا يُمثّل رابطًا صحيحًا.', - 'after' => 'يجب أن يكون تاريخًا لاحقًا للتاريخ :date.', - 'after_or_equal' => 'يجب أن يكون تاريخاً لاحقاً أو مطابقاً للتاريخ :date.', - 'alpha' => 'يجب أن لا يحتوي سوى على حروف.', - 'alpha_dash' => 'يجب أن لا يحتوي سوى على حروف، أرقام ومطّات.', - 'alpha_num' => 'يجب أن يحتوي على حروفٍ وأرقامٍ فقط.', - 'array' => 'يجب أن يكون مصفوفة.', - 'attached' => 'هذا الحقل تم إرفاقه بالفعل.', - 'before' => 'يجب أن يكون تاريخًا سابقًا للتاريخ :date.', - 'before_or_equal' => 'يجب أن يكون تاريخا سابقا أو مطابقا للتاريخ :date.', - 'between' => [ - 'array' => 'يجب أن يحتوي على عدد من العناصر بين :min و :max.', - 'file' => 'يجب أن يكون حجم الملف بين :min و :max كيلوبايت.', + 'accepted' => 'يجب قبول هذا الحقل.', + 'active_url' => 'لا يُمثّل رابطًا صحيحًا.', + 'after' => 'يجب أن يكون تاريخًا لاحقًا للتاريخ :date.', + 'after_or_equal' => 'يجب أن يكون تاريخاً لاحقاً أو مطابقاً للتاريخ :date.', + 'alpha' => 'يجب أن لا يحتوي سوى على حروف.', + 'alpha_dash' => 'يجب أن لا يحتوي سوى على حروف، أرقام ومطّات.', + 'alpha_num' => 'يجب أن يحتوي على حروفٍ وأرقامٍ فقط.', + 'array' => 'يجب أن يكون مصفوفة.', + 'attached' => 'هذا الحقل تم إرفاقه بالفعل.', + 'before' => 'يجب أن يكون تاريخًا سابقًا للتاريخ :date.', + 'before_or_equal' => 'يجب أن يكون تاريخا سابقا أو مطابقا للتاريخ :date.', + 'between' => [ + 'array' => 'يجب أن يحتوي على عدد من العناصر بين :min و :max.', + 'file' => 'يجب أن يكون حجم الملف بين :min و :max كيلوبايت.', 'numeric' => 'يجب أن تكون القيمة بين :min و :max.', - 'string' => 'يجب أن يكون عدد حروف النّص بين :min و :max.', + 'string' => 'يجب أن يكون عدد حروف النّص بين :min و :max.', ], - 'boolean' => 'يجب أن تكون قيمة هذا الحقل إما true أو false .', - 'confirmed' => 'التأكيد غير متطابق.', - 'date' => 'هذا ليس تاريخًا صحيحًا.', - 'date_equals' => 'يجب أن يكون تاريخاً مطابقاً للتاريخ :date.', - 'date_format' => 'لا يتوافق مع الشكل :format.', - 'different' => 'يجب أن تكون القيمة مختلفة عن :other.', - 'digits' => 'يجب أن يحتوي على :digits رقمًا/أرقام.', - 'digits_between' => 'يجب أن يكون بين :min و :max رقمًا/أرقام .', - 'dimensions' => 'الصورة تحتوي على أبعاد غير صالحة.', - 'distinct' => 'هذا الحقل يحمل قيمة مُكرّرة.', - 'email' => 'يجب أن يكون عنوان بريد إلكتروني صحيح البُنية.', - 'ends_with' => 'يجب أن ينتهي بأحد القيم التالية: :values', - 'exists' => 'القيمة المحددة غير صالحة.', - 'file' => 'المحتوى يجب أن يكون ملفا.', - 'filled' => 'هذا الحقل إجباري.', - 'gt' => [ - 'array' => 'يجب أن يحتوي على أكثر من :value عناصر/عنصر.', - 'file' => 'يجب أن يكون حجم الملف أكبر من :value كيلوبايت.', + 'boolean' => 'يجب أن تكون قيمة هذا الحقل إما true أو false .', + 'confirmed' => 'التأكيد غير متطابق.', + 'date' => 'هذا ليس تاريخًا صحيحًا.', + 'date_equals' => 'يجب أن يكون تاريخاً مطابقاً للتاريخ :date.', + 'date_format' => 'لا يتوافق مع الشكل :format.', + 'different' => 'يجب أن تكون القيمة مختلفة عن :other.', + 'digits' => 'يجب أن يحتوي على :digits رقمًا/أرقام.', + 'digits_between' => 'يجب أن يكون بين :min و :max رقمًا/أرقام .', + 'dimensions' => 'الصورة تحتوي على أبعاد غير صالحة.', + 'distinct' => 'هذا الحقل يحمل قيمة مُكرّرة.', + 'email' => 'يجب أن يكون عنوان بريد إلكتروني صحيح البُنية.', + 'ends_with' => 'يجب أن ينتهي بأحد القيم التالية: :values', + 'exists' => 'القيمة المحددة غير صالحة.', + 'file' => 'المحتوى يجب أن يكون ملفا.', + 'filled' => 'هذا الحقل إجباري.', + 'gt' => [ + 'array' => 'يجب أن يحتوي على أكثر من :value عناصر/عنصر.', + 'file' => 'يجب أن يكون حجم الملف أكبر من :value كيلوبايت.', 'numeric' => 'يجب أن تكون القيمة أكبر من :value.', - 'string' => 'يجب أن يكون طول النّص أكثر من :value حروفٍ/حرفًا.', + 'string' => 'يجب أن يكون طول النّص أكثر من :value حروفٍ/حرفًا.', ], - 'gte' => [ - 'array' => 'يجب أن يحتوي على الأقل على :value عُنصرًا/عناصر.', - 'file' => 'يجب أن يكون حجم الملف على الأقل :value كيلوبايت.', + 'gte' => [ + 'array' => 'يجب أن يحتوي على الأقل على :value عُنصرًا/عناصر.', + 'file' => 'يجب أن يكون حجم الملف على الأقل :value كيلوبايت.', 'numeric' => 'يجب أن تكون القيمة مساوية أو أكبر من :value.', - 'string' => 'يجب أن يكون طول النص على الأقل :value حروفٍ/حرفًا.', + 'string' => 'يجب أن يكون طول النص على الأقل :value حروفٍ/حرفًا.', ], - 'image' => 'يجب أن تكون صورةً.', - 'in' => 'القيمة المختارة غير صالحة.', - 'in_array' => 'هذه القيمة غير موجودة في :other.', - 'integer' => 'يجب أن يكون عددًا صحيحًا.', - 'ip' => 'يجب أن يكون عنوان IP صحيحًا.', - 'ipv4' => 'يجب أن يكون عنوان IPv4 صحيحًا.', - 'ipv6' => 'يجب أن يكون عنوان IPv6 صحيحًا.', - 'json' => 'يجب أن يكون نصًا من نوع JSON.', - 'lt' => [ - 'array' => 'يجب أن يحتوي على أقل من :value عناصر/عنصر.', - 'file' => 'يجب أن يكون حجم الملف أصغر من :value كيلوبايت.', + 'image' => 'يجب أن تكون صورةً.', + 'in' => 'القيمة المختارة غير صالحة.', + 'in_array' => 'هذه القيمة غير موجودة في :other.', + 'integer' => 'يجب أن يكون عددًا صحيحًا.', + 'ip' => 'يجب أن يكون عنوان IP صحيحًا.', + 'ipv4' => 'يجب أن يكون عنوان IPv4 صحيحًا.', + 'ipv6' => 'يجب أن يكون عنوان IPv6 صحيحًا.', + 'json' => 'يجب أن يكون نصًا من نوع JSON.', + 'lt' => [ + 'array' => 'يجب أن يحتوي على أقل من :value عناصر/عنصر.', + 'file' => 'يجب أن يكون حجم الملف أصغر من :value كيلوبايت.', 'numeric' => 'يجب أن تكون القيمة أصغر من :value.', - 'string' => 'يجب أن يكون طول النّص أقل من :value حروفٍ/حرفًا.', + 'string' => 'يجب أن يكون طول النّص أقل من :value حروفٍ/حرفًا.', ], - 'lte' => [ - 'array' => 'يجب أن لا يحتوي على أكثر من :value عناصر/عنصر.', - 'file' => 'يجب أن لا يتجاوز حجم الملف :value كيلوبايت.', + 'lte' => [ + 'array' => 'يجب أن لا يحتوي على أكثر من :value عناصر/عنصر.', + 'file' => 'يجب أن لا يتجاوز حجم الملف :value كيلوبايت.', 'numeric' => 'يجب أن تكون القيمة مساوية أو أصغر من :value.', - 'string' => 'يجب أن لا يتجاوز طول النّص :value حروفٍ/حرفًا.', + 'string' => 'يجب أن لا يتجاوز طول النّص :value حروفٍ/حرفًا.', ], - 'max' => [ - 'array' => 'يجب أن لا يحتوي على أكثر من :max عناصر/عنصر.', - 'file' => 'يجب أن لا يتجاوز حجم الملف :max كيلوبايت.', + 'max' => [ + 'array' => 'يجب أن لا يحتوي على أكثر من :max عناصر/عنصر.', + 'file' => 'يجب أن لا يتجاوز حجم الملف :max كيلوبايت.', 'numeric' => 'يجب أن تكون القيمة مساوية أو أصغر من :max.', - 'string' => 'يجب أن لا يتجاوز طول النّص :max حروفٍ/حرفًا.', + 'string' => 'يجب أن لا يتجاوز طول النّص :max حروفٍ/حرفًا.', ], - 'mimes' => 'يجب أن يكون ملفًا من نوع : :values.', - 'mimetypes' => 'يجب أن يكون ملفًا من نوع : :values.', - 'min' => [ - 'array' => 'يجب أن يحتوي على الأقل على :min عُنصرًا/عناصر.', - 'file' => 'يجب أن يكون حجم الملف على الأقل :min كيلوبايت.', + 'mimes' => 'يجب أن يكون ملفًا من نوع : :values.', + 'mimetypes' => 'يجب أن يكون ملفًا من نوع : :values.', + 'min' => [ + 'array' => 'يجب أن يحتوي على الأقل على :min عُنصرًا/عناصر.', + 'file' => 'يجب أن يكون حجم الملف على الأقل :min كيلوبايت.', 'numeric' => 'يجب أن تكون القيمة مساوية أو أكبر من :min.', - 'string' => 'يجب أن يكون طول النص على الأقل :min حروفٍ/حرفًا.', + 'string' => 'يجب أن يكون طول النص على الأقل :min حروفٍ/حرفًا.', ], - 'multiple_of' => 'يجب أن تكون القيمة من مضاعفات :value', - 'not_in' => 'العنصر المحدد غير صالح.', - 'not_regex' => 'صيغة غير صالحة.', - 'numeric' => 'يجب أن يكون رقمًا.', - 'password' => 'كلمة المرور غير صحيحة.', - 'present' => 'يجب توفر هذا الحقل.', - 'prohibited' => 'هذا الحقل محظور.', - 'prohibited_if' => 'هذا الحقل محظور إذا كان :other هو :value.', - 'prohibited_unless' => 'هذا الحقل محظور ما لم يكن :other ضمن :values.', - 'regex' => 'الصيغة غير صحيحة.', - 'relatable' => 'هذا الحقل قد لا يكون مرتبطا بالمصدر المحدد.', - 'required' => 'هذا الحقل مطلوب.', - 'required_if' => 'هذا الحقل مطلوب في حال ما إذا كان :other يساوي :value.', - 'required_unless' => 'هذا الحقل مطلوب في حال ما لم يكن :other يساوي :values.', - 'required_with' => 'هذا الحقل مطلوب إذا توفّر :values.', - 'required_with_all' => 'هذا الحقل مطلوب إذا توفّر :values.', - 'required_without' => 'هذا الحقل مطلوب إذا لم يتوفّر :values.', + 'multiple_of' => 'يجب أن تكون القيمة من مضاعفات :value', + 'not_in' => 'العنصر المحدد غير صالح.', + 'not_regex' => 'صيغة غير صالحة.', + 'numeric' => 'يجب أن يكون رقمًا.', + 'password' => 'كلمة المرور غير صحيحة.', + 'present' => 'يجب توفر هذا الحقل.', + 'prohibited' => 'هذا الحقل محظور.', + 'prohibited_if' => 'هذا الحقل محظور إذا كان :other هو :value.', + 'prohibited_unless' => 'هذا الحقل محظور ما لم يكن :other ضمن :values.', + 'regex' => 'الصيغة غير صحيحة.', + 'relatable' => 'هذا الحقل قد لا يكون مرتبطا بالمصدر المحدد.', + 'required' => 'هذا الحقل مطلوب.', + 'required_if' => 'هذا الحقل مطلوب في حال ما إذا كان :other يساوي :value.', + 'required_unless' => 'هذا الحقل مطلوب في حال ما لم يكن :other يساوي :values.', + 'required_with' => 'هذا الحقل مطلوب إذا توفّر :values.', + 'required_with_all' => 'هذا الحقل مطلوب إذا توفّر :values.', + 'required_without' => 'هذا الحقل مطلوب إذا لم يتوفّر :values.', 'required_without_all' => 'هذا الحقل مطلوب إذا لم يتوفّر :values.', - 'same' => 'يجب أن يتطابق هذا الحقل مع :other.', - 'size' => [ - 'array' => 'يجب أن يحتوي على :size عنصرٍ/عناصر بالضبط.', - 'file' => 'يجب أن يكون حجم الملف :size كيلوبايت.', + 'same' => 'يجب أن يتطابق هذا الحقل مع :other.', + 'size' => [ + 'array' => 'يجب أن يحتوي على :size عنصرٍ/عناصر بالضبط.', + 'file' => 'يجب أن يكون حجم الملف :size كيلوبايت.', 'numeric' => 'يجب أن تكون القيمة مساوية لـ :size.', - 'string' => 'يجب أن يحتوي النص على :size حروفٍ/حرفًا بالضبط.', + 'string' => 'يجب أن يحتوي النص على :size حروفٍ/حرفًا بالضبط.', ], - 'starts_with' => 'يجب أن يبدأ بأحد القيم التالية: :values', - 'string' => 'يجب أن يكون نصًا.', - 'timezone' => 'يجب أن يكون نطاقًا زمنيًا صحيحًا.', - 'unique' => 'هذه القيمة مُستخدمة من قبل.', - 'uploaded' => 'فشل في عملية التحميل.', - 'url' => 'الصيغة غير صحيحة.', - 'uuid' => 'يجب أن يكون بصيغة UUID سليمة.', - 'custom' => [ + 'starts_with' => 'يجب أن يبدأ بأحد القيم التالية: :values', + 'string' => 'يجب أن يكون نصًا.', + 'timezone' => 'يجب أن يكون نطاقًا زمنيًا صحيحًا.', + 'unique' => 'هذه القيمة مُستخدمة من قبل.', + 'uploaded' => 'فشل في عملية التحميل.', + 'url' => 'الصيغة غير صحيحة.', + 'uuid' => 'يجب أن يكون بصيغة UUID سليمة.', + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], + 'attributes' => [], ]; diff --git a/lang/ar/validation.php b/lang/ar/validation.php index abca3daee..c9f2e8939 100644 --- a/lang/ar/validation.php +++ b/lang/ar/validation.php @@ -12,150 +12,150 @@ */ return [ - 'accepted' => 'يجب قبول :attribute.', - 'active_url' => ':attribute لا يُمثّل رابطًا صحيحًا.', - 'after' => 'يجب على :attribute أن يكون تاريخًا لاحقًا للتاريخ :date.', - 'after_or_equal' => ':attribute يجب أن يكون تاريخاً لاحقاً أو مطابقاً للتاريخ :date.', - 'alpha' => 'يجب أن لا يحتوي :attribute سوى على حروف.', - 'alpha_dash' => 'يجب أن لا يحتوي :attribute سوى على حروف، أرقام ومطّات.', - 'alpha_num' => 'يجب أن يحتوي :attribute على حروفٍ وأرقامٍ فقط.', - 'array' => 'يجب أن يكون :attribute ًمصفوفة.', - 'attached' => ':attribute تم إرفاقه بالفعل.', - 'before' => 'يجب على :attribute أن يكون تاريخًا سابقًا للتاريخ :date.', - 'before_or_equal' => ':attribute يجب أن يكون تاريخا سابقا أو مطابقا للتاريخ :date.', - 'between' => [ - 'array' => 'يجب أن يحتوي :attribute على عدد من العناصر بين :min و :max.', - 'file' => 'يجب أن يكون حجم الملف :attribute بين :min و :max كيلوبايت.', + 'accepted' => 'يجب قبول :attribute.', + 'active_url' => ':attribute لا يُمثّل رابطًا صحيحًا.', + 'after' => 'يجب على :attribute أن يكون تاريخًا لاحقًا للتاريخ :date.', + 'after_or_equal' => ':attribute يجب أن يكون تاريخاً لاحقاً أو مطابقاً للتاريخ :date.', + 'alpha' => 'يجب أن لا يحتوي :attribute سوى على حروف.', + 'alpha_dash' => 'يجب أن لا يحتوي :attribute سوى على حروف، أرقام ومطّات.', + 'alpha_num' => 'يجب أن يحتوي :attribute على حروفٍ وأرقامٍ فقط.', + 'array' => 'يجب أن يكون :attribute ًمصفوفة.', + 'attached' => ':attribute تم إرفاقه بالفعل.', + 'before' => 'يجب على :attribute أن يكون تاريخًا سابقًا للتاريخ :date.', + 'before_or_equal' => ':attribute يجب أن يكون تاريخا سابقا أو مطابقا للتاريخ :date.', + 'between' => [ + 'array' => 'يجب أن يحتوي :attribute على عدد من العناصر بين :min و :max.', + 'file' => 'يجب أن يكون حجم الملف :attribute بين :min و :max كيلوبايت.', 'numeric' => 'يجب أن تكون قيمة :attribute بين :min و :max.', - 'string' => 'يجب أن يكون عدد حروف النّص :attribute بين :min و :max.', + 'string' => 'يجب أن يكون عدد حروف النّص :attribute بين :min و :max.', ], - 'boolean' => 'يجب أن تكون قيمة :attribute إما true أو false .', - 'confirmed' => 'حقل التأكيد غير مُطابق للحقل :attribute.', - 'date' => ':attribute ليس تاريخًا صحيحًا.', - 'date_equals' => 'يجب أن يكون :attribute مطابقاً للتاريخ :date.', - 'date_format' => 'لا يتوافق :attribute مع الشكل :format.', - 'different' => 'يجب أن يكون الحقلان :attribute و :other مُختلفين.', - 'digits' => 'يجب أن يحتوي :attribute على :digits رقمًا/أرقام.', - 'digits_between' => 'يجب أن يحتوي :attribute بين :min و :max رقمًا/أرقام .', - 'dimensions' => 'الـ :attribute يحتوي على أبعاد صورة غير صالحة.', - 'distinct' => 'للحقل :attribute قيمة مُكرّرة.', - 'email' => 'يجب أن يكون :attribute عنوان بريد إلكتروني صحيح البُنية.', - 'ends_with' => 'يجب أن ينتهي :attribute بأحد القيم التالية: :values', - 'exists' => 'القيمة المحددة :attribute غير موجودة.', - 'file' => 'الـ :attribute يجب أن يكون ملفا.', - 'filled' => ':attribute إجباري.', - 'gt' => [ - 'array' => 'يجب أن يحتوي :attribute على أكثر من :value عناصر/عنصر.', - 'file' => 'يجب أن يكون حجم الملف :attribute أكبر من :value كيلوبايت.', + 'boolean' => 'يجب أن تكون قيمة :attribute إما true أو false .', + 'confirmed' => 'حقل التأكيد غير مُطابق للحقل :attribute.', + 'date' => ':attribute ليس تاريخًا صحيحًا.', + 'date_equals' => 'يجب أن يكون :attribute مطابقاً للتاريخ :date.', + 'date_format' => 'لا يتوافق :attribute مع الشكل :format.', + 'different' => 'يجب أن يكون الحقلان :attribute و :other مُختلفين.', + 'digits' => 'يجب أن يحتوي :attribute على :digits رقمًا/أرقام.', + 'digits_between' => 'يجب أن يحتوي :attribute بين :min و :max رقمًا/أرقام .', + 'dimensions' => 'الـ :attribute يحتوي على أبعاد صورة غير صالحة.', + 'distinct' => 'للحقل :attribute قيمة مُكرّرة.', + 'email' => 'يجب أن يكون :attribute عنوان بريد إلكتروني صحيح البُنية.', + 'ends_with' => 'يجب أن ينتهي :attribute بأحد القيم التالية: :values', + 'exists' => 'القيمة المحددة :attribute غير موجودة.', + 'file' => 'الـ :attribute يجب أن يكون ملفا.', + 'filled' => ':attribute إجباري.', + 'gt' => [ + 'array' => 'يجب أن يحتوي :attribute على أكثر من :value عناصر/عنصر.', + 'file' => 'يجب أن يكون حجم الملف :attribute أكبر من :value كيلوبايت.', 'numeric' => 'يجب أن تكون قيمة :attribute أكبر من :value.', - 'string' => 'يجب أن يكون طول النّص :attribute أكثر من :value حروفٍ/حرفًا.', + 'string' => 'يجب أن يكون طول النّص :attribute أكثر من :value حروفٍ/حرفًا.', ], - 'gte' => [ - 'array' => 'يجب أن يحتوي :attribute على الأقل على :value عُنصرًا/عناصر.', - 'file' => 'يجب أن يكون حجم الملف :attribute على الأقل :value كيلوبايت.', + 'gte' => [ + 'array' => 'يجب أن يحتوي :attribute على الأقل على :value عُنصرًا/عناصر.', + 'file' => 'يجب أن يكون حجم الملف :attribute على الأقل :value كيلوبايت.', 'numeric' => 'يجب أن تكون قيمة :attribute مساوية أو أكبر من :value.', - 'string' => 'يجب أن يكون طول النص :attribute على الأقل :value حروفٍ/حرفًا.', + 'string' => 'يجب أن يكون طول النص :attribute على الأقل :value حروفٍ/حرفًا.', ], - 'image' => 'يجب أن يكون :attribute صورةً.', - 'in' => ':attribute غير موجود.', - 'in_array' => ':attribute غير موجود في :other.', - 'integer' => 'يجب أن يكون :attribute عددًا صحيحًا.', - 'ip' => 'يجب أن يكون :attribute عنوان IP صحيحًا.', - 'ipv4' => 'يجب أن يكون :attribute عنوان IPv4 صحيحًا.', - 'ipv6' => 'يجب أن يكون :attribute عنوان IPv6 صحيحًا.', - 'json' => 'يجب أن يكون :attribute نصًا من نوع JSON.', - 'lt' => [ - 'array' => 'يجب أن يحتوي :attribute على أقل من :value عناصر/عنصر.', - 'file' => 'يجب أن يكون حجم الملف :attribute أصغر من :value كيلوبايت.', + 'image' => 'يجب أن يكون :attribute صورةً.', + 'in' => ':attribute غير موجود.', + 'in_array' => ':attribute غير موجود في :other.', + 'integer' => 'يجب أن يكون :attribute عددًا صحيحًا.', + 'ip' => 'يجب أن يكون :attribute عنوان IP صحيحًا.', + 'ipv4' => 'يجب أن يكون :attribute عنوان IPv4 صحيحًا.', + 'ipv6' => 'يجب أن يكون :attribute عنوان IPv6 صحيحًا.', + 'json' => 'يجب أن يكون :attribute نصًا من نوع JSON.', + 'lt' => [ + 'array' => 'يجب أن يحتوي :attribute على أقل من :value عناصر/عنصر.', + 'file' => 'يجب أن يكون حجم الملف :attribute أصغر من :value كيلوبايت.', 'numeric' => 'يجب أن تكون قيمة :attribute أصغر من :value.', - 'string' => 'يجب أن يكون طول النّص :attribute أقل من :value حروفٍ/حرفًا.', + 'string' => 'يجب أن يكون طول النّص :attribute أقل من :value حروفٍ/حرفًا.', ], - 'lte' => [ - 'array' => 'يجب أن لا يحتوي :attribute على أكثر من :value عناصر/عنصر.', - 'file' => 'يجب أن لا يتجاوز حجم الملف :attribute :value كيلوبايت.', + 'lte' => [ + 'array' => 'يجب أن لا يحتوي :attribute على أكثر من :value عناصر/عنصر.', + 'file' => 'يجب أن لا يتجاوز حجم الملف :attribute :value كيلوبايت.', 'numeric' => 'يجب أن تكون قيمة :attribute مساوية أو أصغر من :value.', - 'string' => 'يجب أن لا يتجاوز طول النّص :attribute :value حروفٍ/حرفًا.', + 'string' => 'يجب أن لا يتجاوز طول النّص :attribute :value حروفٍ/حرفًا.', ], - 'max' => [ - 'array' => 'يجب أن لا يحتوي :attribute على أكثر من :max عناصر/عنصر.', - 'file' => 'يجب أن لا يتجاوز حجم الملف :attribute :max كيلوبايت.', + 'max' => [ + 'array' => 'يجب أن لا يحتوي :attribute على أكثر من :max عناصر/عنصر.', + 'file' => 'يجب أن لا يتجاوز حجم الملف :attribute :max كيلوبايت.', 'numeric' => 'يجب أن تكون قيمة :attribute مساوية أو أصغر من :max.', - 'string' => 'يجب أن لا يتجاوز طول النّص :attribute :max حروفٍ/حرفًا.', + 'string' => 'يجب أن لا يتجاوز طول النّص :attribute :max حروفٍ/حرفًا.', ], - 'mimes' => 'يجب أن يكون ملفًا من نوع : :values.', - 'mimetypes' => 'يجب أن يكون ملفًا من نوع : :values.', - 'min' => [ - 'array' => 'يجب أن يحتوي :attribute على الأقل على :min عُنصرًا/عناصر.', - 'file' => 'يجب أن يكون حجم الملف :attribute على الأقل :min كيلوبايت.', + 'mimes' => 'يجب أن يكون ملفًا من نوع : :values.', + 'mimetypes' => 'يجب أن يكون ملفًا من نوع : :values.', + 'min' => [ + 'array' => 'يجب أن يحتوي :attribute على الأقل على :min عُنصرًا/عناصر.', + 'file' => 'يجب أن يكون حجم الملف :attribute على الأقل :min كيلوبايت.', 'numeric' => 'يجب أن تكون قيمة :attribute مساوية أو أكبر من :min.', - 'string' => 'يجب أن يكون طول النص :attribute على الأقل :min حروفٍ/حرفًا.', + 'string' => 'يجب أن يكون طول النص :attribute على الأقل :min حروفٍ/حرفًا.', ], - 'multiple_of' => ':attribute يجب أن يكون من مضاعفات :value', - 'not_in' => 'العنصر :attribute غير صحيح.', - 'not_regex' => 'صيغة :attribute غير صحيحة.', - 'numeric' => 'يجب على :attribute أن يكون رقمًا.', - 'password' => 'كلمة المرور غير صحيحة.', - 'present' => 'يجب تقديم :attribute.', - 'prohibited' => ':attribute محظور.', - 'prohibited_if' => ':attribute محظور إذا كان :other هو :value.', - 'prohibited_unless' => ':attribute محظور ما لم يكن :other ضمن :values.', - 'regex' => 'صيغة :attribute .غير صحيحة.', - 'relatable' => ':attribute قد لا يكون مرتبطا بالمصدر المحدد.', - 'required' => ':attribute مطلوب.', - 'required_if' => ':attribute مطلوب في حال ما إذا كان :other يساوي :value.', - 'required_unless' => ':attribute مطلوب في حال ما لم يكن :other يساوي :values.', - 'required_with' => ':attribute مطلوب إذا توفّر :values.', - 'required_with_all' => ':attribute مطلوب إذا توفّر :values.', - 'required_without' => ':attribute مطلوب إذا لم يتوفّر :values.', + 'multiple_of' => ':attribute يجب أن يكون من مضاعفات :value', + 'not_in' => 'العنصر :attribute غير صحيح.', + 'not_regex' => 'صيغة :attribute غير صحيحة.', + 'numeric' => 'يجب على :attribute أن يكون رقمًا.', + 'password' => 'كلمة المرور غير صحيحة.', + 'present' => 'يجب تقديم :attribute.', + 'prohibited' => ':attribute محظور.', + 'prohibited_if' => ':attribute محظور إذا كان :other هو :value.', + 'prohibited_unless' => ':attribute محظور ما لم يكن :other ضمن :values.', + 'regex' => 'صيغة :attribute .غير صحيحة.', + 'relatable' => ':attribute قد لا يكون مرتبطا بالمصدر المحدد.', + 'required' => ':attribute مطلوب.', + 'required_if' => ':attribute مطلوب في حال ما إذا كان :other يساوي :value.', + 'required_unless' => ':attribute مطلوب في حال ما لم يكن :other يساوي :values.', + 'required_with' => ':attribute مطلوب إذا توفّر :values.', + 'required_with_all' => ':attribute مطلوب إذا توفّر :values.', + 'required_without' => ':attribute مطلوب إذا لم يتوفّر :values.', 'required_without_all' => ':attribute مطلوب إذا لم يتوفّر :values.', - 'same' => 'يجب أن يتطابق :attribute مع :other.', - 'size' => [ - 'array' => 'يجب أن يحتوي :attribute على :size عنصرٍ/عناصر بالضبط.', - 'file' => 'يجب أن يكون حجم الملف :attribute :size كيلوبايت.', + 'same' => 'يجب أن يتطابق :attribute مع :other.', + 'size' => [ + 'array' => 'يجب أن يحتوي :attribute على :size عنصرٍ/عناصر بالضبط.', + 'file' => 'يجب أن يكون حجم الملف :attribute :size كيلوبايت.', 'numeric' => 'يجب أن تكون قيمة :attribute مساوية لـ :size.', - 'string' => 'يجب أن يحتوي النص :attribute على :size حروفٍ/حرفًا بالضبط.', + 'string' => 'يجب أن يحتوي النص :attribute على :size حروفٍ/حرفًا بالضبط.', ], - 'starts_with' => 'يجب أن يبدأ :attribute بأحد القيم التالية: :values', - 'string' => 'يجب أن يكون :attribute نصًا.', - 'timezone' => 'يجب أن يكون :attribute نطاقًا زمنيًا صحيحًا.', - 'unique' => 'قيمة :attribute مُستخدمة من قبل.', - 'uploaded' => 'فشل في تحميل الـ :attribute.', - 'url' => 'صيغة الرابط :attribute غير صحيحة.', - 'uuid' => ':attribute يجب أن يكون بصيغة UUID سليمة.', - 'custom' => [ + 'starts_with' => 'يجب أن يبدأ :attribute بأحد القيم التالية: :values', + 'string' => 'يجب أن يكون :attribute نصًا.', + 'timezone' => 'يجب أن يكون :attribute نطاقًا زمنيًا صحيحًا.', + 'unique' => 'قيمة :attribute مُستخدمة من قبل.', + 'uploaded' => 'فشل في تحميل الـ :attribute.', + 'url' => 'صيغة الرابط :attribute غير صحيحة.', + 'uuid' => ':attribute يجب أن يكون بصيغة UUID سليمة.', + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'العنوان', - 'age' => 'العمر', - 'available' => 'مُتاح', - 'city' => 'المدينة', - 'content' => 'المُحتوى', - 'country' => 'الدولة', - 'date' => 'التاريخ', - 'day' => 'اليوم', - 'description' => 'الوصف', - 'email' => 'البريد الالكتروني', - 'excerpt' => 'المُلخص', - 'first_name' => 'الاسم الأول', - 'gender' => 'النوع', - 'hour' => 'ساعة', - 'last_name' => 'اسم العائلة', - 'minute' => 'دقيقة', - 'mobile' => 'الجوال', - 'month' => 'الشهر', - 'name' => 'الاسم', - 'password' => 'كلمة المرور', + 'attributes' => [ + 'address' => 'العنوان', + 'age' => 'العمر', + 'available' => 'مُتاح', + 'city' => 'المدينة', + 'content' => 'المُحتوى', + 'country' => 'الدولة', + 'date' => 'التاريخ', + 'day' => 'اليوم', + 'description' => 'الوصف', + 'email' => 'البريد الالكتروني', + 'excerpt' => 'المُلخص', + 'first_name' => 'الاسم الأول', + 'gender' => 'النوع', + 'hour' => 'ساعة', + 'last_name' => 'اسم العائلة', + 'minute' => 'دقيقة', + 'mobile' => 'الجوال', + 'month' => 'الشهر', + 'name' => 'الاسم', + 'password' => 'كلمة المرور', 'password_confirmation' => 'تأكيد كلمة المرور', - 'phone' => 'الهاتف', - 'second' => 'ثانية', - 'sex' => 'الجنس', - 'size' => 'الحجم', - 'time' => 'الوقت', - 'title' => 'العنوان', - 'username' => 'اسم المُستخدم', - 'year' => 'السنة', + 'phone' => 'الهاتف', + 'second' => 'ثانية', + 'sex' => 'الجنس', + 'size' => 'الحجم', + 'time' => 'الوقت', + 'title' => 'العنوان', + 'username' => 'اسم المُستخدم', + 'year' => 'السنة', ], ]; diff --git a/lang/br/auth.php b/lang/br/auth.php index 38b27b511..d235ef26e 100644 --- a/lang/br/auth.php +++ b/lang/br/auth.php @@ -13,7 +13,7 @@ | */ - 'failed' => 'Estas credenciais não correspondem aos nossos registros.', + 'failed' => 'Estas credenciais não correspondem aos nossos registros.', 'throttle' => 'Muitas tentativas de login. Por favor, tente novamente em :seconds segundos.', ]; diff --git a/lang/br/pagination.php b/lang/br/pagination.php index 613b015a4..35a743616 100644 --- a/lang/br/pagination.php +++ b/lang/br/pagination.php @@ -14,6 +14,6 @@ */ 'previous' => '« Anterior', - 'next' => 'Próxima »', + 'next' => 'Próxima »', ]; diff --git a/lang/br/passwords.php b/lang/br/passwords.php index 4ec9dba89..1556c9aeb 100644 --- a/lang/br/passwords.php +++ b/lang/br/passwords.php @@ -14,9 +14,9 @@ */ 'password' => 'Senhas devem ter pelo menos seis caracteres e sua confirmação deve ser equivalente.', - 'reset' => 'Sua senha foi resetada!', - 'sent' => 'Nós enviamos um e-mail com seu link de recuperação de senha!', - 'token' => 'Este token para resetar sua senha é inválido.', - 'user' => 'Nós não conseguimos achar um usuário com este endereço de e-mail.', + 'reset' => 'Sua senha foi resetada!', + 'sent' => 'Nós enviamos um e-mail com seu link de recuperação de senha!', + 'token' => 'Este token para resetar sua senha é inválido.', + 'user' => 'Nós não conseguimos achar um usuário com este endereço de e-mail.', ]; diff --git a/lang/br/validation.php b/lang/br/validation.php index 5cb39b22a..b14789838 100644 --- a/lang/br/validation.php +++ b/lang/br/validation.php @@ -13,107 +13,107 @@ | */ - 'accepted' => ':attribute deve ser aceito.', - 'active_url' => ':attribute não é uma URL válida.', - 'after' => ':attribute deve ser uma data após :date.', - 'after_or_equal' => ':attribute deve ser uma data após ou igual a :date.', - 'alpha' => ':attribute pode apenas conter letras.', - 'alpha_dash' => ':attribute pode apenas conter letras, números e traços.', - 'alpha_num' => ':attribute pode apenas conter letras e números.', - 'array' => ':attribute deve ser um array.', - 'before' => ':attribute deve ser uma data prévia a :date.', + 'accepted' => ':attribute deve ser aceito.', + 'active_url' => ':attribute não é uma URL válida.', + 'after' => ':attribute deve ser uma data após :date.', + 'after_or_equal' => ':attribute deve ser uma data após ou igual a :date.', + 'alpha' => ':attribute pode apenas conter letras.', + 'alpha_dash' => ':attribute pode apenas conter letras, números e traços.', + 'alpha_num' => ':attribute pode apenas conter letras e números.', + 'array' => ':attribute deve ser um array.', + 'before' => ':attribute deve ser uma data prévia a :date.', 'before_or_equal' => ':attribute deve ser uma data prévia ou igual a :date.', - 'between' => [ + 'between' => [ 'numeric' => ':attribute deve estar entre :min e :max.', - 'file' => ':attribute deve estar entre :min e :max kilobytes.', - 'string' => ':attribute deve estar entre :min e :max characters.', - 'array' => ':attribute deve ter entre :min e :max items.', + 'file' => ':attribute deve estar entre :min e :max kilobytes.', + 'string' => ':attribute deve estar entre :min e :max characters.', + 'array' => ':attribute deve ter entre :min e :max items.', ], - 'boolean' => 'Campo :attribute deve ser verdadeiro ou falso.', - 'confirmed' => ':attribute confirmação não corresponde.', - 'date' => ':attribute não é uma data válida.', - 'date_format' => ':attribute não corresponde com o formato :format.', - 'different' => ':attribute e :other devem ser diferentes.', - 'digits' => ':attribute deve possuir :digits dígitos.', + 'boolean' => 'Campo :attribute deve ser verdadeiro ou falso.', + 'confirmed' => ':attribute confirmação não corresponde.', + 'date' => ':attribute não é uma data válida.', + 'date_format' => ':attribute não corresponde com o formato :format.', + 'different' => ':attribute e :other devem ser diferentes.', + 'digits' => ':attribute deve possuir :digits dígitos.', 'digits_between' => ':attribute deve estar entre :min e :max dígitos.', - 'dimensions' => ':attribute possui dimensões de imagem inválidas.', - 'distinct' => 'Campo :attribute possui um valor duplicado.', - 'email' => ':attribute deve ser um endereço de e-mail válido.', - 'exists' => ':attribute selecionado é inválido.', - 'file' => ':attribute deve ser um arquivo.', - 'filled' => 'Campo :attribute é requerido.', - 'gt' => [ + 'dimensions' => ':attribute possui dimensões de imagem inválidas.', + 'distinct' => 'Campo :attribute possui um valor duplicado.', + 'email' => ':attribute deve ser um endereço de e-mail válido.', + 'exists' => ':attribute selecionado é inválido.', + 'file' => ':attribute deve ser um arquivo.', + 'filled' => 'Campo :attribute é requerido.', + 'gt' => [ 'numeric' => 'The :attribute must be greater than :value.', - 'file' => 'The :attribute must be greater than :value kilobytes.', - 'string' => 'The :attribute must be greater than :value characters.', - 'array' => 'The :attribute must have more than :value items.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', ], 'gte' => [ 'numeric' => 'The :attribute must be greater than or equal :value.', - 'file' => 'The :attribute must be greater than or equal :value kilobytes.', - 'string' => 'The :attribute must be greater than or equal :value characters.', - 'array' => 'The :attribute must have :value items or more.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', ], - 'image' => 'Campo :attribute deve ser uma imagem.', - 'in' => ':attribute selecionado é inválido.', - 'in_array' => 'Campo :attribute não existe em :other.', - 'integer' => ':attribute deve ser um inteiro.', - 'ip' => ':attribute deve ser um endereço de IP válido.', - 'ipv4' => ':attribute deve ser um endereço de IPv4 válido.', - 'ipv6' => ':attribute deve ser um endereço de IPv6 válido.', - 'json' => ':attribute deve ser uma string JSON válida.', - 'lt' => [ + 'image' => 'Campo :attribute deve ser uma imagem.', + 'in' => ':attribute selecionado é inválido.', + 'in_array' => 'Campo :attribute não existe em :other.', + 'integer' => ':attribute deve ser um inteiro.', + 'ip' => ':attribute deve ser um endereço de IP válido.', + 'ipv4' => ':attribute deve ser um endereço de IPv4 válido.', + 'ipv6' => ':attribute deve ser um endereço de IPv6 válido.', + 'json' => ':attribute deve ser uma string JSON válida.', + 'lt' => [ 'numeric' => 'The :attribute must be less than :value.', - 'file' => 'The :attribute must be less than :value kilobytes.', - 'string' => 'The :attribute must be less than :value characters.', - 'array' => 'The :attribute must have less than :value items.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', ], 'lte' => [ 'numeric' => 'The :attribute must be less than or equal :value.', - 'file' => 'The :attribute must be less than or equal :value kilobytes.', - 'string' => 'The :attribute must be less than or equal :value characters.', - 'array' => 'The :attribute must not have more than :value items.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', ], - 'max' => [ + 'max' => [ 'numeric' => ':attribute pode não ser maior que :max.', - 'file' => ':attribute pode não ser maior que :max kilobytes.', - 'string' => ':attribute pode não ser maior que :max characters.', - 'array' => ':attribute pode não ter mais do que :max itens.', + 'file' => ':attribute pode não ser maior que :max kilobytes.', + 'string' => ':attribute pode não ser maior que :max characters.', + 'array' => ':attribute pode não ter mais do que :max itens.', ], - 'mimes' => ':attribute deve ser um arquivo do tipo: :values.', + 'mimes' => ':attribute deve ser um arquivo do tipo: :values.', 'mimetypes' => ':attribute deve ser um arquivo do tipo: :values.', - 'min' => [ + 'min' => [ 'numeric' => ':attribute deve ter no mínimo :min.', - 'file' => ':attribute deve ter no mínimo :min kilobytes.', - 'string' => ':attribute deve ter no mínimo :min characters.', - 'array' => ':attribute deve ter no mínimo :min itens.', + 'file' => ':attribute deve ter no mínimo :min kilobytes.', + 'string' => ':attribute deve ter no mínimo :min characters.', + 'array' => ':attribute deve ter no mínimo :min itens.', ], - 'not_in' => 'The selected :attribute is invalid.', - 'not_regex' => 'The :attribute format is invalid.', - 'numeric' => ':attribute deve ser um número.', - 'present' => 'Campo :attribute deve estar presente.', - 'regex' => 'Formato do :attribute é invalid.', - 'required' => 'Campo :attribute é requerido.', - 'required_if' => 'Campo :attribute é requerido quando :other é :value.', - 'required_unless' => 'Campo :attribute é requerido a não ser que :other está em :values.', - 'required_with' => 'Campo :attribute é requerido quando :values está presente.', - 'required_with_all' => 'Campo :attribute é requerido quando :values está presente.', - 'required_without' => 'Campo :attribute é requerido quando :values não está presente.', + 'not_in' => 'The selected :attribute is invalid.', + 'not_regex' => 'The :attribute format is invalid.', + 'numeric' => ':attribute deve ser um número.', + 'present' => 'Campo :attribute deve estar presente.', + 'regex' => 'Formato do :attribute é invalid.', + 'required' => 'Campo :attribute é requerido.', + 'required_if' => 'Campo :attribute é requerido quando :other é :value.', + 'required_unless' => 'Campo :attribute é requerido a não ser que :other está em :values.', + 'required_with' => 'Campo :attribute é requerido quando :values está presente.', + 'required_with_all' => 'Campo :attribute é requerido quando :values está presente.', + 'required_without' => 'Campo :attribute é requerido quando :values não está presente.', 'required_without_all' => 'Campo :attribute é requerido quando nenhum dos :values estão presentes.', - 'same' => 'Campo :attribute e :other devem corresponder.', - 'size' => [ + 'same' => 'Campo :attribute e :other devem corresponder.', + 'size' => [ 'numeric' => ':attribute deve ter :size.', - 'file' => ':attribute deve ter :size kilobytes.', - 'string' => ':attribute deve ter :size characters.', - 'array' => ':attribute deve conter :size itens.', + 'file' => ':attribute deve ter :size kilobytes.', + 'string' => ':attribute deve ter :size characters.', + 'array' => ':attribute deve conter :size itens.', ], 'starts_with' => 'The :attribute must start with one of the following: :values', - 'string' => ':attribute deve ser uma string.', - 'timezone' => ':attribute deve estar em uma zona válida.', - 'unique' => ':attribute já foi escolhido.', - 'uploaded' => ':attribute falhou no envio.', - 'url' => 'Formato do :attribute é inválido.', - 'uuid' => 'The :attribute must be a valid UUID.', + 'string' => ':attribute deve ser uma string.', + 'timezone' => ':attribute deve estar em uma zona válida.', + 'unique' => ':attribute já foi escolhido.', + 'uploaded' => ':attribute falhou no envio.', + 'url' => 'Formato do :attribute é inválido.', + 'uuid' => 'The :attribute must be a valid UUID.', /* |-------------------------------------------------------------------------- diff --git a/lang/de/auth.php b/lang/de/auth.php index 26860b5b7..25dba8797 100644 --- a/lang/de/auth.php +++ b/lang/de/auth.php @@ -12,7 +12,7 @@ */ return [ - 'failed' => 'Diese Kombination aus Zugangsdaten wurde nicht in unserer Datenbank gefunden.', + 'failed' => 'Diese Kombination aus Zugangsdaten wurde nicht in unserer Datenbank gefunden.', 'password' => 'Das eingegebene Passwort ist nicht korrekt.', 'throttle' => 'Zu viele Loginversuche. Versuchen Sie es bitte in :seconds Sekunden nochmal.', ]; diff --git a/lang/de/pagination.php b/lang/de/pagination.php index 0fbc2a8c8..d6ef8d092 100644 --- a/lang/de/pagination.php +++ b/lang/de/pagination.php @@ -12,6 +12,6 @@ */ return [ - 'next' => 'Weiter »', + 'next' => 'Weiter »', 'previous' => '« Zurück', ]; diff --git a/lang/de/passwords.php b/lang/de/passwords.php index 429ee9d97..b86e4bad8 100644 --- a/lang/de/passwords.php +++ b/lang/de/passwords.php @@ -12,9 +12,9 @@ */ return [ - 'reset' => 'Das Passwort wurde zurückgesetzt!', - 'sent' => 'Passworterinnerung wurde gesendet!', + 'reset' => 'Das Passwort wurde zurückgesetzt!', + 'sent' => 'Passworterinnerung wurde gesendet!', 'throttled' => 'Bitte warten Sie, bevor Sie es erneut versuchen.', - 'token' => 'Der Passwort-Wiederherstellungs-Schlüssel ist ungültig oder abgelaufen.', - 'user' => 'Es konnte leider kein Nutzer mit dieser E-Mail-Adresse gefunden werden.', + 'token' => 'Der Passwort-Wiederherstellungs-Schlüssel ist ungültig oder abgelaufen.', + 'user' => 'Es konnte leider kein Nutzer mit dieser E-Mail-Adresse gefunden werden.', ]; diff --git a/lang/de/validation-inline.php b/lang/de/validation-inline.php index 7874ef945..ea5e45cd2 100644 --- a/lang/de/validation-inline.php +++ b/lang/de/validation-inline.php @@ -12,120 +12,120 @@ */ return [ - 'accepted' => 'Dieses Feld muss akzeptiert werden.', - 'active_url' => 'Das ist keine gültige Internet-Adresse.', - 'after' => 'Das muss ein Datum nach dem :date sein.', - 'after_or_equal' => 'Das muss ein Datum nach dem :date oder gleich dem :date sein.', - 'alpha' => 'Der Inhalt darf nur aus Buchstaben bestehen.', - 'alpha_dash' => 'Der Inhalt darf nur aus Buchstaben, Zahlen, Binde- und Unterstrichen bestehen.', - 'alpha_num' => 'Der Inhalt darf nur aus Buchstaben und Zahlen bestehen.', - 'array' => 'Dieses Feld muss ein Array sein.', - 'attached' => 'Dieses Feld ist bereits angehängt.', - 'before' => 'Das muss ein Datum vor dem :date sein.', - 'before_or_equal' => 'Das muss ein Datum vor dem :date oder gleich dem :date sein.', - 'between' => [ - 'array' => 'Dieser Inhalt muss zwischen :min & :max Elemente haben.', - 'file' => 'Diese Datei muss zwischen :min & :max Kilobytes groß sein.', + 'accepted' => 'Dieses Feld muss akzeptiert werden.', + 'active_url' => 'Das ist keine gültige Internet-Adresse.', + 'after' => 'Das muss ein Datum nach dem :date sein.', + 'after_or_equal' => 'Das muss ein Datum nach dem :date oder gleich dem :date sein.', + 'alpha' => 'Der Inhalt darf nur aus Buchstaben bestehen.', + 'alpha_dash' => 'Der Inhalt darf nur aus Buchstaben, Zahlen, Binde- und Unterstrichen bestehen.', + 'alpha_num' => 'Der Inhalt darf nur aus Buchstaben und Zahlen bestehen.', + 'array' => 'Dieses Feld muss ein Array sein.', + 'attached' => 'Dieses Feld ist bereits angehängt.', + 'before' => 'Das muss ein Datum vor dem :date sein.', + 'before_or_equal' => 'Das muss ein Datum vor dem :date oder gleich dem :date sein.', + 'between' => [ + 'array' => 'Dieser Inhalt muss zwischen :min & :max Elemente haben.', + 'file' => 'Diese Datei muss zwischen :min & :max Kilobytes groß sein.', 'numeric' => 'Dieser Wert muss zwischen :min & :max liegen.', - 'string' => 'Diese Zeichenkette muss zwischen :min & :max Zeichen lang sein.', + 'string' => 'Diese Zeichenkette muss zwischen :min & :max Zeichen lang sein.', ], - 'boolean' => 'Dieses Feld muss entweder \'true\' oder \'false\' sein.', - 'confirmed' => 'Die Bestätigung stimmt nicht überein.', - 'date' => 'Das ist kein gültiges Datum.', - 'date_equals' => 'Das Datum muss identisch zu :date sein.', - 'date_format' => 'Das Datum entspricht nicht dem gültigen Format für :format.', - 'different' => 'Das muss sich von :other unterscheiden.', - 'digits' => 'Das muss :digits Stellen haben.', - 'digits_between' => 'Das muss zwischen :min und :max Stellen haben.', - 'dimensions' => 'Das Bild hat ungültige Abmessungen.', - 'distinct' => 'Dieser Wert ist bereits vorhanden.', - 'email' => 'Das muss eine gültige E-Mail-Adresse sein.', - 'ends_with' => 'Der Inhalt muss eine der folgenden Endungen aufweisen: :values', - 'exists' => 'Der gewählte Wert ist ungültig.', - 'file' => 'Der Inhalt muss eine Datei sein.', - 'filled' => 'Dieses Feld muss ausgefüllt sein.', - 'gt' => [ - 'array' => 'Der Inhalt muss mehr als :value Elemente haben.', - 'file' => 'Die Datei muss größer als :value Kilobytes sein.', + 'boolean' => 'Dieses Feld muss entweder \'true\' oder \'false\' sein.', + 'confirmed' => 'Die Bestätigung stimmt nicht überein.', + 'date' => 'Das ist kein gültiges Datum.', + 'date_equals' => 'Das Datum muss identisch zu :date sein.', + 'date_format' => 'Das Datum entspricht nicht dem gültigen Format für :format.', + 'different' => 'Das muss sich von :other unterscheiden.', + 'digits' => 'Das muss :digits Stellen haben.', + 'digits_between' => 'Das muss zwischen :min und :max Stellen haben.', + 'dimensions' => 'Das Bild hat ungültige Abmessungen.', + 'distinct' => 'Dieser Wert ist bereits vorhanden.', + 'email' => 'Das muss eine gültige E-Mail-Adresse sein.', + 'ends_with' => 'Der Inhalt muss eine der folgenden Endungen aufweisen: :values', + 'exists' => 'Der gewählte Wert ist ungültig.', + 'file' => 'Der Inhalt muss eine Datei sein.', + 'filled' => 'Dieses Feld muss ausgefüllt sein.', + 'gt' => [ + 'array' => 'Der Inhalt muss mehr als :value Elemente haben.', + 'file' => 'Die Datei muss größer als :value Kilobytes sein.', 'numeric' => 'Der Wert muss größer als :value sein.', - 'string' => 'Die Zeichenkette muss länger als :value Zeichen sein.', + 'string' => 'Die Zeichenkette muss länger als :value Zeichen sein.', ], - 'gte' => [ - 'array' => 'Der Inhalt muss mindestens :value Elemente haben.', - 'file' => 'Die Datei muss größer oder gleich :value Kilobytes sein.', + 'gte' => [ + 'array' => 'Der Inhalt muss mindestens :value Elemente haben.', + 'file' => 'Die Datei muss größer oder gleich :value Kilobytes sein.', 'numeric' => 'Der Wert muss größer oder gleich :value sein.', - 'string' => 'Die Zeichenkette muss mindestens :value Zeichen lang sein.', + 'string' => 'Die Zeichenkette muss mindestens :value Zeichen lang sein.', ], - 'image' => 'Das muss ein Bild sein.', - 'in' => 'Der gewählte Wert ist ungültig.', - 'in_array' => 'Der gewählte Wert kommt nicht in :other vor.', - 'integer' => 'Das muss eine ganze Zahl sein.', - 'ip' => 'Das muss eine gültige IP-Adresse sein.', - 'ipv4' => 'Das muss eine gültige IPv4-Adresse sein.', - 'ipv6' => 'Das muss eine gültige IPv6-Adresse sein.', - 'json' => 'Das muss ein gültiger JSON-String sein.', - 'lt' => [ - 'array' => 'Der Inhalt muss weniger als :value Elemente haben.', - 'file' => 'Die Datei muss kleiner als :value Kilobytes sein.', + 'image' => 'Das muss ein Bild sein.', + 'in' => 'Der gewählte Wert ist ungültig.', + 'in_array' => 'Der gewählte Wert kommt nicht in :other vor.', + 'integer' => 'Das muss eine ganze Zahl sein.', + 'ip' => 'Das muss eine gültige IP-Adresse sein.', + 'ipv4' => 'Das muss eine gültige IPv4-Adresse sein.', + 'ipv6' => 'Das muss eine gültige IPv6-Adresse sein.', + 'json' => 'Das muss ein gültiger JSON-String sein.', + 'lt' => [ + 'array' => 'Der Inhalt muss weniger als :value Elemente haben.', + 'file' => 'Die Datei muss kleiner als :value Kilobytes sein.', 'numeric' => 'Der Wert muss kleiner als :value sein.', - 'string' => 'Die Zeichenkette muss kürzer als :value Zeichen sein.', + 'string' => 'Die Zeichenkette muss kürzer als :value Zeichen sein.', ], - 'lte' => [ - 'array' => 'Der Inhalt darf maximal :value Elemente haben.', - 'file' => 'Die Datei muss kleiner oder gleich :value Kilobytes sein.', + 'lte' => [ + 'array' => 'Der Inhalt darf maximal :value Elemente haben.', + 'file' => 'Die Datei muss kleiner oder gleich :value Kilobytes sein.', 'numeric' => 'Der Wert muss kleiner oder gleich :value sein.', - 'string' => 'Die Zeichenkette darf maximal :value Zeichen lang sein.', + 'string' => 'Die Zeichenkette darf maximal :value Zeichen lang sein.', ], - 'max' => [ - 'array' => 'Der Inhalt darf maximal :max Elemente haben.', - 'file' => 'Die Datei darf maximal :max Kilobytes groß sein.', + 'max' => [ + 'array' => 'Der Inhalt darf maximal :max Elemente haben.', + 'file' => 'Die Datei darf maximal :max Kilobytes groß sein.', 'numeric' => 'Der Wert darf maximal :max sein.', - 'string' => 'Die Zeichenkette darf maximal :max Zeichen haben.', + 'string' => 'Die Zeichenkette darf maximal :max Zeichen haben.', ], - 'mimes' => 'Das muss den Dateityp :values haben.', - 'mimetypes' => 'Das muss den Dateityp :values haben.', - 'min' => [ - 'array' => 'Der Inhalt muss mindestens :min Elemente haben.', - 'file' => 'Die Datei muss mindestens :min Kilobytes groß sein.', + 'mimes' => 'Das muss den Dateityp :values haben.', + 'mimetypes' => 'Das muss den Dateityp :values haben.', + 'min' => [ + 'array' => 'Der Inhalt muss mindestens :min Elemente haben.', + 'file' => 'Die Datei muss mindestens :min Kilobytes groß sein.', 'numeric' => 'Der Wert muss mindestens :min sein.', - 'string' => 'Die Zeichenkette muss mindestens :min Zeichen lang sein.', + 'string' => 'Die Zeichenkette muss mindestens :min Zeichen lang sein.', ], - 'multiple_of' => 'Der Wert muss ein Vielfaches von :value sein.', - 'not_in' => 'Der gewählte Wert ist ungültig.', - 'not_regex' => 'Dieses Format ist ungültig.', - 'numeric' => 'Das muss eine Zahl sein.', - 'password' => 'Das Passwort ist falsch.', - 'present' => 'Dieses Feld muss vorhanden sein.', - 'prohibited' => 'Dieses Feld ist unzulässig.', - 'prohibited_if' => 'Dieses Feld ist unzulässig, wenn :other :value ist.', - 'prohibited_unless' => 'Dieses Feld ist unzulässig, wenn :other nicht :values ist.', - 'regex' => 'Dieses Format ist ungültig.', - 'relatable' => 'Das kann nicht mit dieser Ressource verbunden werden.', - 'required' => 'Dieses Feld muss ausgefüllt werden.', - 'required_if' => 'Dieses Feld muss ausgefüllt werden, wenn :other den Wert :value hat.', - 'required_unless' => 'Dieses Feld muss ausgefüllt werden, wenn :other nicht den Wert :values hat.', - 'required_with' => 'Dieses Feld muss ausgefüllt werden, wenn :values ausgefüllt wurde.', - 'required_with_all' => 'Dieses Feld muss ausgefüllt werden, wenn :values ausgefüllt wurde.', - 'required_without' => 'Dieses Feld muss ausgefüllt werden, wenn :values nicht ausgefüllt wurde.', + 'multiple_of' => 'Der Wert muss ein Vielfaches von :value sein.', + 'not_in' => 'Der gewählte Wert ist ungültig.', + 'not_regex' => 'Dieses Format ist ungültig.', + 'numeric' => 'Das muss eine Zahl sein.', + 'password' => 'Das Passwort ist falsch.', + 'present' => 'Dieses Feld muss vorhanden sein.', + 'prohibited' => 'Dieses Feld ist unzulässig.', + 'prohibited_if' => 'Dieses Feld ist unzulässig, wenn :other :value ist.', + 'prohibited_unless' => 'Dieses Feld ist unzulässig, wenn :other nicht :values ist.', + 'regex' => 'Dieses Format ist ungültig.', + 'relatable' => 'Das kann nicht mit dieser Ressource verbunden werden.', + 'required' => 'Dieses Feld muss ausgefüllt werden.', + 'required_if' => 'Dieses Feld muss ausgefüllt werden, wenn :other den Wert :value hat.', + 'required_unless' => 'Dieses Feld muss ausgefüllt werden, wenn :other nicht den Wert :values hat.', + 'required_with' => 'Dieses Feld muss ausgefüllt werden, wenn :values ausgefüllt wurde.', + 'required_with_all' => 'Dieses Feld muss ausgefüllt werden, wenn :values ausgefüllt wurde.', + 'required_without' => 'Dieses Feld muss ausgefüllt werden, wenn :values nicht ausgefüllt wurde.', 'required_without_all' => 'Dieses Feld muss ausgefüllt werden, wenn keines der Felder :values ausgefüllt wurde.', - 'same' => 'Der Wert von diesem Feld und muss mit demjenigen von :other übereinstimmen.', - 'size' => [ - 'array' => 'Der Inhalt muss genau :size Elemente haben.', - 'file' => 'Die Datei muss :size Kilobyte groß sein.', + 'same' => 'Der Wert von diesem Feld und muss mit demjenigen von :other übereinstimmen.', + 'size' => [ + 'array' => 'Der Inhalt muss genau :size Elemente haben.', + 'file' => 'Die Datei muss :size Kilobyte groß sein.', 'numeric' => 'Der Wert muss gleich :size sein.', - 'string' => 'Die Zeichenkette muss :size Zeichen lang sein.', + 'string' => 'Die Zeichenkette muss :size Zeichen lang sein.', ], - 'starts_with' => 'Der Inhalt muss einen der folgenden Anfänge aufweisen: :values', - 'string' => 'Das muss ein String sein.', - 'timezone' => 'Das muss eine gültige Zeitzone sein.', - 'unique' => 'Das ist bereits vergeben.', - 'uploaded' => 'Das konnte nicht hochgeladen werden.', - 'url' => 'Das muss eine URL sein.', - 'uuid' => 'Das muss eine UUID sein.', - 'custom' => [ + 'starts_with' => 'Der Inhalt muss einen der folgenden Anfänge aufweisen: :values', + 'string' => 'Das muss ein String sein.', + 'timezone' => 'Das muss eine gültige Zeitzone sein.', + 'unique' => 'Das ist bereits vergeben.', + 'uploaded' => 'Das konnte nicht hochgeladen werden.', + 'url' => 'Das muss eine URL sein.', + 'uuid' => 'Das muss eine UUID sein.', + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], + 'attributes' => [], ]; diff --git a/lang/de/validation.php b/lang/de/validation.php index 1af6afcdc..b6e48f66a 100644 --- a/lang/de/validation.php +++ b/lang/de/validation.php @@ -12,151 +12,151 @@ */ return [ - 'accepted' => ':attribute muss akzeptiert werden.', - 'active_url' => ':attribute ist keine gültige Internet-Adresse.', - 'after' => ':attribute muss ein Datum nach dem :date sein.', - 'after_or_equal' => ':attribute muss ein Datum nach dem :date oder gleich dem :date sein.', - 'alpha' => ':attribute darf nur aus Buchstaben bestehen.', - 'alpha_dash' => ':attribute darf nur aus Buchstaben, Zahlen, Binde- und Unterstrichen bestehen.', - 'alpha_num' => ':attribute darf nur aus Buchstaben und Zahlen bestehen.', - 'array' => ':attribute muss ein Array sein.', - 'attached' => ':attribute ist bereits angehängt.', - 'before' => ':attribute muss ein Datum vor dem :date sein.', - 'before_or_equal' => ':attribute muss ein Datum vor dem :date oder gleich dem :date sein.', - 'between' => [ - 'array' => ':attribute muss zwischen :min & :max Elemente haben.', - 'file' => ':attribute muss zwischen :min & :max Kilobytes groß sein.', + 'accepted' => ':attribute muss akzeptiert werden.', + 'active_url' => ':attribute ist keine gültige Internet-Adresse.', + 'after' => ':attribute muss ein Datum nach dem :date sein.', + 'after_or_equal' => ':attribute muss ein Datum nach dem :date oder gleich dem :date sein.', + 'alpha' => ':attribute darf nur aus Buchstaben bestehen.', + 'alpha_dash' => ':attribute darf nur aus Buchstaben, Zahlen, Binde- und Unterstrichen bestehen.', + 'alpha_num' => ':attribute darf nur aus Buchstaben und Zahlen bestehen.', + 'array' => ':attribute muss ein Array sein.', + 'attached' => ':attribute ist bereits angehängt.', + 'before' => ':attribute muss ein Datum vor dem :date sein.', + 'before_or_equal' => ':attribute muss ein Datum vor dem :date oder gleich dem :date sein.', + 'between' => [ + 'array' => ':attribute muss zwischen :min & :max Elemente haben.', + 'file' => ':attribute muss zwischen :min & :max Kilobytes groß sein.', 'numeric' => ':attribute muss zwischen :min & :max liegen.', - 'string' => ':attribute muss zwischen :min & :max Zeichen lang sein.', + 'string' => ':attribute muss zwischen :min & :max Zeichen lang sein.', ], - 'boolean' => ':attribute muss entweder \'true\' oder \'false\' sein.', - 'confirmed' => ':attribute stimmt nicht mit der Bestätigung überein.', - 'date' => ':attribute muss ein gültiges Datum sein.', - 'date_equals' => ':attribute muss ein Datum gleich :date sein.', - 'date_format' => ':attribute entspricht nicht dem gültigen Format für :format.', - 'different' => ':attribute und :other müssen sich unterscheiden.', - 'digits' => ':attribute muss :digits Stellen haben.', - 'digits_between' => ':attribute muss zwischen :min und :max Stellen haben.', - 'dimensions' => ':attribute hat ungültige Bildabmessungen.', - 'distinct' => ':attribute beinhaltet einen bereits vorhandenen Wert.', - 'email' => ':attribute muss eine gültige E-Mail-Adresse sein.', - 'ends_with' => ':attribute muss eine der folgenden Endungen aufweisen: :values', - 'exists' => 'Der gewählte Wert für :attribute ist ungültig.', - 'file' => ':attribute muss eine Datei sein.', - 'filled' => ':attribute muss ausgefüllt sein.', - 'gt' => [ - 'array' => ':attribute muss mehr als :value Elemente haben.', - 'file' => ':attribute muss größer als :value Kilobytes sein.', + 'boolean' => ':attribute muss entweder \'true\' oder \'false\' sein.', + 'confirmed' => ':attribute stimmt nicht mit der Bestätigung überein.', + 'date' => ':attribute muss ein gültiges Datum sein.', + 'date_equals' => ':attribute muss ein Datum gleich :date sein.', + 'date_format' => ':attribute entspricht nicht dem gültigen Format für :format.', + 'different' => ':attribute und :other müssen sich unterscheiden.', + 'digits' => ':attribute muss :digits Stellen haben.', + 'digits_between' => ':attribute muss zwischen :min und :max Stellen haben.', + 'dimensions' => ':attribute hat ungültige Bildabmessungen.', + 'distinct' => ':attribute beinhaltet einen bereits vorhandenen Wert.', + 'email' => ':attribute muss eine gültige E-Mail-Adresse sein.', + 'ends_with' => ':attribute muss eine der folgenden Endungen aufweisen: :values', + 'exists' => 'Der gewählte Wert für :attribute ist ungültig.', + 'file' => ':attribute muss eine Datei sein.', + 'filled' => ':attribute muss ausgefüllt sein.', + 'gt' => [ + 'array' => ':attribute muss mehr als :value Elemente haben.', + 'file' => ':attribute muss größer als :value Kilobytes sein.', 'numeric' => ':attribute muss größer als :value sein.', - 'string' => ':attribute muss länger als :value Zeichen sein.', + 'string' => ':attribute muss länger als :value Zeichen sein.', ], - 'gte' => [ - 'array' => ':attribute muss mindestens :value Elemente haben.', - 'file' => ':attribute muss größer oder gleich :value Kilobytes sein.', + 'gte' => [ + 'array' => ':attribute muss mindestens :value Elemente haben.', + 'file' => ':attribute muss größer oder gleich :value Kilobytes sein.', 'numeric' => ':attribute muss größer oder gleich :value sein.', - 'string' => ':attribute muss mindestens :value Zeichen lang sein.', + 'string' => ':attribute muss mindestens :value Zeichen lang sein.', ], - 'image' => ':attribute muss ein Bild sein.', - 'in' => 'Der gewählte Wert für :attribute ist ungültig.', - 'in_array' => 'Der gewählte Wert für :attribute kommt nicht in :other vor.', - 'integer' => ':attribute muss eine ganze Zahl sein.', - 'ip' => ':attribute muss eine gültige IP-Adresse sein.', - 'ipv4' => ':attribute muss eine gültige IPv4-Adresse sein.', - 'ipv6' => ':attribute muss eine gültige IPv6-Adresse sein.', - 'json' => ':attribute muss ein gültiger JSON-String sein.', - 'lt' => [ - 'array' => ':attribute muss weniger als :value Elemente haben.', - 'file' => ':attribute muss kleiner als :value Kilobytes sein.', + 'image' => ':attribute muss ein Bild sein.', + 'in' => 'Der gewählte Wert für :attribute ist ungültig.', + 'in_array' => 'Der gewählte Wert für :attribute kommt nicht in :other vor.', + 'integer' => ':attribute muss eine ganze Zahl sein.', + 'ip' => ':attribute muss eine gültige IP-Adresse sein.', + 'ipv4' => ':attribute muss eine gültige IPv4-Adresse sein.', + 'ipv6' => ':attribute muss eine gültige IPv6-Adresse sein.', + 'json' => ':attribute muss ein gültiger JSON-String sein.', + 'lt' => [ + 'array' => ':attribute muss weniger als :value Elemente haben.', + 'file' => ':attribute muss kleiner als :value Kilobytes sein.', 'numeric' => ':attribute muss kleiner als :value sein.', - 'string' => ':attribute muss kürzer als :value Zeichen sein.', + 'string' => ':attribute muss kürzer als :value Zeichen sein.', ], - 'lte' => [ - 'array' => ':attribute darf maximal :value Elemente haben.', - 'file' => ':attribute muss kleiner oder gleich :value Kilobytes sein.', + 'lte' => [ + 'array' => ':attribute darf maximal :value Elemente haben.', + 'file' => ':attribute muss kleiner oder gleich :value Kilobytes sein.', 'numeric' => ':attribute muss kleiner oder gleich :value sein.', - 'string' => ':attribute darf maximal :value Zeichen lang sein.', + 'string' => ':attribute darf maximal :value Zeichen lang sein.', ], - 'max' => [ - 'array' => ':attribute darf maximal :max Elemente haben.', - 'file' => ':attribute darf maximal :max Kilobytes groß sein.', + 'max' => [ + 'array' => ':attribute darf maximal :max Elemente haben.', + 'file' => ':attribute darf maximal :max Kilobytes groß sein.', 'numeric' => ':attribute darf maximal :max sein.', - 'string' => ':attribute darf maximal :max Zeichen haben.', + 'string' => ':attribute darf maximal :max Zeichen haben.', ], - 'mimes' => ':attribute muss den Dateityp :values haben.', - 'mimetypes' => ':attribute muss den Dateityp :values haben.', - 'min' => [ - 'array' => ':attribute muss mindestens :min Elemente haben.', - 'file' => ':attribute muss mindestens :min Kilobytes groß sein.', + 'mimes' => ':attribute muss den Dateityp :values haben.', + 'mimetypes' => ':attribute muss den Dateityp :values haben.', + 'min' => [ + 'array' => ':attribute muss mindestens :min Elemente haben.', + 'file' => ':attribute muss mindestens :min Kilobytes groß sein.', 'numeric' => ':attribute muss mindestens :min sein.', - 'string' => ':attribute muss mindestens :min Zeichen lang sein.', + 'string' => ':attribute muss mindestens :min Zeichen lang sein.', ], - 'multiple_of' => ':attribute muss ein Vielfaches von :value sein.', - 'not_in' => 'Der gewählte Wert für :attribute ist ungültig.', - 'not_regex' => ':attribute hat ein ungültiges Format.', - 'numeric' => ':attribute muss eine Zahl sein.', - 'password' => 'Das Passwort ist falsch.', - 'present' => ':attribute muss vorhanden sein.', - 'prohibited' => ':attribute ist unzulässig.', - 'prohibited_if' => ':attribute ist unzulässig, wenn :other :value ist.', - 'prohibited_unless' => ':attribute ist unzulässig, wenn :other nicht :values ist.', - 'regex' => ':attribute Format ist ungültig.', - 'relatable' => ':attribute kann nicht mit dieser Ressource verbunden werden.', - 'required' => ':attribute muss ausgefüllt werden.', - 'required_if' => ':attribute muss ausgefüllt werden, wenn :other den Wert :value hat.', - 'required_unless' => ':attribute muss ausgefüllt werden, wenn :other nicht den Wert :values hat.', - 'required_with' => ':attribute muss ausgefüllt werden, wenn :values ausgefüllt wurde.', - 'required_with_all' => ':attribute muss ausgefüllt werden, wenn :values ausgefüllt wurde.', - 'required_without' => ':attribute muss ausgefüllt werden, wenn :values nicht ausgefüllt wurde.', + 'multiple_of' => ':attribute muss ein Vielfaches von :value sein.', + 'not_in' => 'Der gewählte Wert für :attribute ist ungültig.', + 'not_regex' => ':attribute hat ein ungültiges Format.', + 'numeric' => ':attribute muss eine Zahl sein.', + 'password' => 'Das Passwort ist falsch.', + 'present' => ':attribute muss vorhanden sein.', + 'prohibited' => ':attribute ist unzulässig.', + 'prohibited_if' => ':attribute ist unzulässig, wenn :other :value ist.', + 'prohibited_unless' => ':attribute ist unzulässig, wenn :other nicht :values ist.', + 'regex' => ':attribute Format ist ungültig.', + 'relatable' => ':attribute kann nicht mit dieser Ressource verbunden werden.', + 'required' => ':attribute muss ausgefüllt werden.', + 'required_if' => ':attribute muss ausgefüllt werden, wenn :other den Wert :value hat.', + 'required_unless' => ':attribute muss ausgefüllt werden, wenn :other nicht den Wert :values hat.', + 'required_with' => ':attribute muss ausgefüllt werden, wenn :values ausgefüllt wurde.', + 'required_with_all' => ':attribute muss ausgefüllt werden, wenn :values ausgefüllt wurde.', + 'required_without' => ':attribute muss ausgefüllt werden, wenn :values nicht ausgefüllt wurde.', 'required_without_all' => ':attribute muss ausgefüllt werden, wenn keines der Felder :values ausgefüllt wurde.', - 'same' => ':attribute und :other müssen übereinstimmen.', - 'size' => [ - 'array' => ':attribute muss genau :size Elemente haben.', - 'file' => ':attribute muss :size Kilobyte groß sein.', + 'same' => ':attribute und :other müssen übereinstimmen.', + 'size' => [ + 'array' => ':attribute muss genau :size Elemente haben.', + 'file' => ':attribute muss :size Kilobyte groß sein.', 'numeric' => ':attribute muss gleich :size sein.', - 'string' => ':attribute muss :size Zeichen lang sein.', + 'string' => ':attribute muss :size Zeichen lang sein.', ], - 'starts_with' => ':attribute muss mit einem der folgenden Anfänge aufweisen: :values', - 'string' => ':attribute muss ein String sein.', - 'timezone' => ':attribute muss eine gültige Zeitzone sein.', - 'unique' => ':attribute ist bereits vergeben.', - 'uploaded' => ':attribute konnte nicht hochgeladen werden.', - 'url' => ':attribute muss eine URL sein.', - 'uuid' => ':attribute muss ein UUID sein.', - 'custom' => [ + 'starts_with' => ':attribute muss mit einem der folgenden Anfänge aufweisen: :values', + 'string' => ':attribute muss ein String sein.', + 'timezone' => ':attribute muss eine gültige Zeitzone sein.', + 'unique' => ':attribute ist bereits vergeben.', + 'uploaded' => ':attribute konnte nicht hochgeladen werden.', + 'url' => ':attribute muss eine URL sein.', + 'uuid' => ':attribute muss ein UUID sein.', + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Adresse', - 'age' => 'Alter', - 'available' => 'verfügbar', - 'city' => 'Stadt', - 'content' => 'Inhalt', - 'country' => 'Land', - 'current_password' => 'Derzeitiges Passwort', - 'date' => 'Datum', - 'day' => 'Tag', - 'description' => 'Beschreibung', - 'email' => 'E-Mail Adresse', - 'excerpt' => 'Auszug', - 'first_name' => 'Vorname', - 'gender' => 'Geschlecht', - 'hour' => 'Stunde', - 'last_name' => 'Nachname', - 'minute' => 'Minute', - 'mobile' => 'Handynummer', - 'month' => 'Monat', - 'name' => 'Name', - 'password' => 'Passwort', + 'attributes' => [ + 'address' => 'Adresse', + 'age' => 'Alter', + 'available' => 'verfügbar', + 'city' => 'Stadt', + 'content' => 'Inhalt', + 'country' => 'Land', + 'current_password' => 'Derzeitiges Passwort', + 'date' => 'Datum', + 'day' => 'Tag', + 'description' => 'Beschreibung', + 'email' => 'E-Mail Adresse', + 'excerpt' => 'Auszug', + 'first_name' => 'Vorname', + 'gender' => 'Geschlecht', + 'hour' => 'Stunde', + 'last_name' => 'Nachname', + 'minute' => 'Minute', + 'mobile' => 'Handynummer', + 'month' => 'Monat', + 'name' => 'Name', + 'password' => 'Passwort', 'password_confirmation' => 'Passwort Bestätigung', - 'phone' => 'Telefonnummer', - 'second' => 'Sekunde', - 'sex' => 'Geschlecht', - 'size' => 'Größe', - 'time' => 'Uhrzeit', - 'title' => 'Titel', - 'username' => 'Benutzername', - 'year' => 'Jahr', + 'phone' => 'Telefonnummer', + 'second' => 'Sekunde', + 'sex' => 'Geschlecht', + 'size' => 'Größe', + 'time' => 'Uhrzeit', + 'title' => 'Titel', + 'username' => 'Benutzername', + 'year' => 'Jahr', ], ]; diff --git a/lang/es/auth.php b/lang/es/auth.php index b84524757..08f81942a 100644 --- a/lang/es/auth.php +++ b/lang/es/auth.php @@ -12,7 +12,7 @@ */ return [ - 'failed' => 'Estas credenciales no coinciden con nuestros registros.', + 'failed' => 'Estas credenciales no coinciden con nuestros registros.', 'password' => 'La contraseña ingresada no es correcta.', 'throttle' => 'Demasiados intentos de acceso. Por favor intente nuevamente en :seconds segundos.', ]; diff --git a/lang/es/pagination.php b/lang/es/pagination.php index d8f0d1940..7fda4d4ac 100644 --- a/lang/es/pagination.php +++ b/lang/es/pagination.php @@ -12,6 +12,6 @@ */ return [ - 'next' => 'Siguiente »', + 'next' => 'Siguiente »', 'previous' => '« Anterior', ]; diff --git a/lang/es/passwords.php b/lang/es/passwords.php index 7745e6465..2d80b4ac2 100644 --- a/lang/es/passwords.php +++ b/lang/es/passwords.php @@ -12,9 +12,9 @@ */ return [ - 'reset' => '¡Su contraseña ha sido restablecida!', - 'sent' => '¡Le hemos enviado por correo electrónico el enlace para restablecer su contraseña!', + 'reset' => '¡Su contraseña ha sido restablecida!', + 'sent' => '¡Le hemos enviado por correo electrónico el enlace para restablecer su contraseña!', 'throttled' => 'Por favor espere antes de intentar de nuevo.', - 'token' => 'El token de restablecimiento de contraseña es inválido.', - 'user' => 'No encontramos ningún usuario con ese correo electrónico.', + 'token' => 'El token de restablecimiento de contraseña es inválido.', + 'user' => 'No encontramos ningún usuario con ese correo electrónico.', ]; diff --git a/lang/es/validation-inline.php b/lang/es/validation-inline.php index bd3ca8c99..72a9e0289 100644 --- a/lang/es/validation-inline.php +++ b/lang/es/validation-inline.php @@ -12,120 +12,120 @@ */ return [ - 'accepted' => 'Este campo debe ser aceptado.', - 'active_url' => 'Esta no es una URL válida.', - 'after' => 'Debe ser una fecha después de :date.', - 'after_or_equal' => 'Debe ser una fecha después o igual a :date.', - 'alpha' => 'Este campo solo puede contener letras.', - 'alpha_dash' => 'Este campo solo puede contener letras, números, guiones y guiones bajos.', - 'alpha_num' => 'Este campo solo puede contener letras y números.', - 'array' => 'Este campo debe ser un array (colección).', - 'attached' => 'Este campo ya se adjuntó.', - 'before' => 'Debe ser una fecha antes de :date.', - 'before_or_equal' => 'Debe ser una fecha anterior o igual a :date.', - 'between' => [ - 'array' => 'El contenido debe tener entre :min y :max elementos.', - 'file' => 'Este archivo debe ser entre :min y :max kilobytes.', + 'accepted' => 'Este campo debe ser aceptado.', + 'active_url' => 'Esta no es una URL válida.', + 'after' => 'Debe ser una fecha después de :date.', + 'after_or_equal' => 'Debe ser una fecha después o igual a :date.', + 'alpha' => 'Este campo solo puede contener letras.', + 'alpha_dash' => 'Este campo solo puede contener letras, números, guiones y guiones bajos.', + 'alpha_num' => 'Este campo solo puede contener letras y números.', + 'array' => 'Este campo debe ser un array (colección).', + 'attached' => 'Este campo ya se adjuntó.', + 'before' => 'Debe ser una fecha antes de :date.', + 'before_or_equal' => 'Debe ser una fecha anterior o igual a :date.', + 'between' => [ + 'array' => 'El contenido debe tener entre :min y :max elementos.', + 'file' => 'Este archivo debe ser entre :min y :max kilobytes.', 'numeric' => 'Este valor debe ser entre :min y :max.', - 'string' => 'El texto debe ser entre :min y :max caracteres.', + 'string' => 'El texto debe ser entre :min y :max caracteres.', ], - 'boolean' => 'El campo debe ser verdadero o falso.', - 'confirmed' => 'La confirmación no coincide.', - 'date' => 'Esta no es una fecha válida.', - 'date_equals' => 'El campo debe ser una fecha igual a :date.', - 'date_format' => 'El campo no corresponde al formato :format.', - 'different' => 'Este valor deben ser diferente de :other.', - 'digits' => 'Debe tener :digits dígitos.', - 'digits_between' => 'Debe tener entre :min y :max dígitos.', - 'dimensions' => 'Las dimensiones de esta imagen son inválidas.', - 'distinct' => 'El campo tiene un valor duplicado.', - 'email' => 'No es un correo válido.', - 'ends_with' => 'Debe finalizar con uno de los siguientes valores: :values.', - 'exists' => 'El valor seleccionado es inválido.', - 'file' => 'El campo debe ser un archivo.', - 'filled' => 'Este campo debe tener un valor.', - 'gt' => [ - 'array' => 'El contenido debe tener mas de :value elementos.', - 'file' => 'El archivo debe ser mayor que :value kilobytes.', + 'boolean' => 'El campo debe ser verdadero o falso.', + 'confirmed' => 'La confirmación no coincide.', + 'date' => 'Esta no es una fecha válida.', + 'date_equals' => 'El campo debe ser una fecha igual a :date.', + 'date_format' => 'El campo no corresponde al formato :format.', + 'different' => 'Este valor deben ser diferente de :other.', + 'digits' => 'Debe tener :digits dígitos.', + 'digits_between' => 'Debe tener entre :min y :max dígitos.', + 'dimensions' => 'Las dimensiones de esta imagen son inválidas.', + 'distinct' => 'El campo tiene un valor duplicado.', + 'email' => 'No es un correo válido.', + 'ends_with' => 'Debe finalizar con uno de los siguientes valores: :values.', + 'exists' => 'El valor seleccionado es inválido.', + 'file' => 'El campo debe ser un archivo.', + 'filled' => 'Este campo debe tener un valor.', + 'gt' => [ + 'array' => 'El contenido debe tener mas de :value elementos.', + 'file' => 'El archivo debe ser mayor que :value kilobytes.', 'numeric' => 'El valor del campo debe ser mayor que :value.', - 'string' => 'El texto debe ser mayor de :value caracteres.', + 'string' => 'El texto debe ser mayor de :value caracteres.', ], - 'gte' => [ - 'array' => 'El contenido debe tener :value elementos o más.', - 'file' => 'El tamaño del archivo debe ser mayor o igual que :value kilobytes.', + 'gte' => [ + 'array' => 'El contenido debe tener :value elementos o más.', + 'file' => 'El tamaño del archivo debe ser mayor o igual que :value kilobytes.', 'numeric' => 'El valor debe ser mayor o igual que :value.', - 'string' => 'El texto debe ser mayor o igual de :value caracteres.', + 'string' => 'El texto debe ser mayor o igual de :value caracteres.', ], - 'image' => 'Esta debe ser una imagen.', - 'in' => 'El valor seleccionado es inválido.', - 'in_array' => 'Este valor no existe en :other.', - 'integer' => 'Esto debe ser un entero.', - 'ip' => 'Debe ser una dirección IP válida.', - 'ipv4' => 'Debe ser una dirección IPv4 válida.', - 'ipv6' => 'Debe ser una dirección IPv6 válida.', - 'json' => 'Debe ser un texto válido en JSON.', - 'lt' => [ - 'array' => 'El contenido debe tener menor de :value elementos.', - 'file' => 'El tamaño del archivo debe ser menor a :value kilobytes.', + 'image' => 'Esta debe ser una imagen.', + 'in' => 'El valor seleccionado es inválido.', + 'in_array' => 'Este valor no existe en :other.', + 'integer' => 'Esto debe ser un entero.', + 'ip' => 'Debe ser una dirección IP válida.', + 'ipv4' => 'Debe ser una dirección IPv4 válida.', + 'ipv6' => 'Debe ser una dirección IPv6 válida.', + 'json' => 'Debe ser un texto válido en JSON.', + 'lt' => [ + 'array' => 'El contenido debe tener menor de :value elementos.', + 'file' => 'El tamaño del archivo debe ser menor a :value kilobytes.', 'numeric' => 'El valor debe ser menor que :value.', - 'string' => 'El texto debe ser menor de :value caracteres.', + 'string' => 'El texto debe ser menor de :value caracteres.', ], - 'lte' => [ - 'array' => 'El contenido no debe tener más de :value elementos.', - 'file' => 'El tamaño del archivo debe ser menor o igual que :value kilobytes.', + 'lte' => [ + 'array' => 'El contenido no debe tener más de :value elementos.', + 'file' => 'El tamaño del archivo debe ser menor o igual que :value kilobytes.', 'numeric' => 'El valor debe ser menor o igual que :value.', - 'string' => 'El texto debe ser menor o igual de :value caracteres.', + 'string' => 'El texto debe ser menor o igual de :value caracteres.', ], - 'max' => [ - 'array' => 'El contenido no debe tener más de :max elementos.', - 'file' => 'El tamaño del archivo no debe ser mayor a :max kilobytes.', + 'max' => [ + 'array' => 'El contenido no debe tener más de :max elementos.', + 'file' => 'El tamaño del archivo no debe ser mayor a :max kilobytes.', 'numeric' => 'El valor no debe ser mayor de :max.', - 'string' => 'El texto no debe ser mayor a :max caracteres.', + 'string' => 'El texto no debe ser mayor a :max caracteres.', ], - 'mimes' => 'Debe ser un archivo de tipo: :values.', - 'mimetypes' => 'Debe ser un archivo de tipo: :values.', - 'min' => [ - 'array' => 'El contenido debe tener al menos :min elementos.', - 'file' => 'El tamaño del archivo debe ser al menos de :min kilobytes.', + 'mimes' => 'Debe ser un archivo de tipo: :values.', + 'mimetypes' => 'Debe ser un archivo de tipo: :values.', + 'min' => [ + 'array' => 'El contenido debe tener al menos :min elementos.', + 'file' => 'El tamaño del archivo debe ser al menos de :min kilobytes.', 'numeric' => 'El valor debe ser al menos de :min.', - 'string' => 'El texto debe ser al menos de :min caracteres.', + 'string' => 'El texto debe ser al menos de :min caracteres.', ], - 'multiple_of' => 'Este valor debe ser múltiplo de :value', - 'not_in' => 'El valor seleccionado es inválido.', - 'not_regex' => 'Este formato es inválido.', - 'numeric' => 'Debe ser un número.', - 'password' => 'La contraseña es incorrecta.', - 'present' => 'Este campo debe estar presente.', - 'prohibited' => 'Este campo está prohibido', - 'prohibited_if' => 'Este campo está prohibido cuando :other es :value.', - 'prohibited_unless' => 'Este campo está prohibido a menos que :other sea :values.', - 'regex' => 'Este formato es inválido.', - 'relatable' => 'Este campo no se puede asociar con este recurso.', - 'required' => 'Este campo es requerido.', - 'required_if' => 'Este campo es requerido cuando :other es :value.', - 'required_unless' => 'Este campo es requerido a menos que :other esté en :values.', - 'required_with' => 'Este campo es requerido cuando :values está presente.', - 'required_with_all' => 'Este campo es requerido cuando :values están presentes.', - 'required_without' => 'Este campo es requerido cuando :values no está presente.', + 'multiple_of' => 'Este valor debe ser múltiplo de :value', + 'not_in' => 'El valor seleccionado es inválido.', + 'not_regex' => 'Este formato es inválido.', + 'numeric' => 'Debe ser un número.', + 'password' => 'La contraseña es incorrecta.', + 'present' => 'Este campo debe estar presente.', + 'prohibited' => 'Este campo está prohibido', + 'prohibited_if' => 'Este campo está prohibido cuando :other es :value.', + 'prohibited_unless' => 'Este campo está prohibido a menos que :other sea :values.', + 'regex' => 'Este formato es inválido.', + 'relatable' => 'Este campo no se puede asociar con este recurso.', + 'required' => 'Este campo es requerido.', + 'required_if' => 'Este campo es requerido cuando :other es :value.', + 'required_unless' => 'Este campo es requerido a menos que :other esté en :values.', + 'required_with' => 'Este campo es requerido cuando :values está presente.', + 'required_with_all' => 'Este campo es requerido cuando :values están presentes.', + 'required_without' => 'Este campo es requerido cuando :values no está presente.', 'required_without_all' => 'Este campo es requerido cuando ninguno de :values están presentes.', - 'same' => 'El valor de este campo debe ser igual a :other.', - 'size' => [ - 'array' => 'El contenido debe tener :size elementos.', - 'file' => 'El tamaño del archivo debe ser de :size kilobytes.', + 'same' => 'El valor de este campo debe ser igual a :other.', + 'size' => [ + 'array' => 'El contenido debe tener :size elementos.', + 'file' => 'El tamaño del archivo debe ser de :size kilobytes.', 'numeric' => 'El valor debe ser :size.', - 'string' => 'El texto debe ser de :size caracteres.', + 'string' => 'El texto debe ser de :size caracteres.', ], - 'starts_with' => 'Debe comenzar con alguno de los siguientes valores: :values.', - 'string' => 'Debe ser un texto.', - 'timezone' => 'Debe ser de una zona horaria válida.', - 'unique' => 'Este campo ya ha sido tomado.', - 'uploaded' => 'Falló al subir.', - 'url' => 'Este formato es inválido.', - 'uuid' => 'Debe ser un UUID válido.', - 'custom' => [ + 'starts_with' => 'Debe comenzar con alguno de los siguientes valores: :values.', + 'string' => 'Debe ser un texto.', + 'timezone' => 'Debe ser de una zona horaria válida.', + 'unique' => 'Este campo ya ha sido tomado.', + 'uploaded' => 'Falló al subir.', + 'url' => 'Este formato es inválido.', + 'uuid' => 'Debe ser un UUID válido.', + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], + 'attributes' => [], ]; diff --git a/lang/es/validation.php b/lang/es/validation.php index 61c76257c..54e0eb3c7 100644 --- a/lang/es/validation.php +++ b/lang/es/validation.php @@ -12,158 +12,158 @@ */ return [ - 'accepted' => ':attribute debe ser aceptado.', - 'active_url' => ':attribute no es una URL válida.', - 'after' => ':attribute debe ser una fecha posterior a :date.', - 'after_or_equal' => ':attribute debe ser una fecha posterior o igual a :date.', - 'alpha' => ':attribute sólo debe contener letras.', - 'alpha_dash' => ':attribute sólo debe contener letras, números, guiones y guiones bajos.', - 'alpha_num' => ':attribute sólo debe contener letras y números.', - 'array' => ':attribute debe ser un conjunto.', - 'attached' => 'Este :attribute ya se adjuntó.', - 'before' => ':attribute debe ser una fecha anterior a :date.', - 'before_or_equal' => ':attribute debe ser una fecha anterior o igual a :date.', - 'between' => [ - 'array' => ':attribute tiene que tener entre :min - :max elementos.', - 'file' => ':attribute debe pesar entre :min - :max kilobytes.', + 'accepted' => ':attribute debe ser aceptado.', + 'active_url' => ':attribute no es una URL válida.', + 'after' => ':attribute debe ser una fecha posterior a :date.', + 'after_or_equal' => ':attribute debe ser una fecha posterior o igual a :date.', + 'alpha' => ':attribute sólo debe contener letras.', + 'alpha_dash' => ':attribute sólo debe contener letras, números, guiones y guiones bajos.', + 'alpha_num' => ':attribute sólo debe contener letras y números.', + 'array' => ':attribute debe ser un conjunto.', + 'attached' => 'Este :attribute ya se adjuntó.', + 'before' => ':attribute debe ser una fecha anterior a :date.', + 'before_or_equal' => ':attribute debe ser una fecha anterior o igual a :date.', + 'between' => [ + 'array' => ':attribute tiene que tener entre :min - :max elementos.', + 'file' => ':attribute debe pesar entre :min - :max kilobytes.', 'numeric' => ':attribute tiene que estar entre :min - :max.', - 'string' => ':attribute tiene que tener entre :min - :max caracteres.', + 'string' => ':attribute tiene que tener entre :min - :max caracteres.', ], - 'boolean' => 'El campo :attribute debe tener un valor verdadero o falso.', - 'confirmed' => 'La confirmación de :attribute no coincide.', - 'date' => ':attribute no es una fecha válida.', - 'date_equals' => ':attribute debe ser una fecha igual a :date.', - 'date_format' => ':attribute no corresponde al formato :format.', - 'different' => ':attribute y :other deben ser diferentes.', - 'digits' => ':attribute debe tener :digits dígitos.', - 'digits_between' => ':attribute debe tener entre :min y :max dígitos.', - 'dimensions' => 'Las dimensiones de la imagen :attribute no son válidas.', - 'distinct' => 'El campo :attribute contiene un valor duplicado.', - 'email' => ':attribute no es un correo válido.', - 'ends_with' => 'El campo :attribute debe finalizar con uno de los siguientes valores: :values', - 'exists' => ':attribute es inválido.', - 'file' => 'El campo :attribute debe ser un archivo.', - 'filled' => 'El campo :attribute es obligatorio.', - 'gt' => [ - 'array' => 'El campo :attribute debe tener más de :value elementos.', - 'file' => 'El campo :attribute debe tener más de :value kilobytes.', + 'boolean' => 'El campo :attribute debe tener un valor verdadero o falso.', + 'confirmed' => 'La confirmación de :attribute no coincide.', + 'date' => ':attribute no es una fecha válida.', + 'date_equals' => ':attribute debe ser una fecha igual a :date.', + 'date_format' => ':attribute no corresponde al formato :format.', + 'different' => ':attribute y :other deben ser diferentes.', + 'digits' => ':attribute debe tener :digits dígitos.', + 'digits_between' => ':attribute debe tener entre :min y :max dígitos.', + 'dimensions' => 'Las dimensiones de la imagen :attribute no son válidas.', + 'distinct' => 'El campo :attribute contiene un valor duplicado.', + 'email' => ':attribute no es un correo válido.', + 'ends_with' => 'El campo :attribute debe finalizar con uno de los siguientes valores: :values', + 'exists' => ':attribute es inválido.', + 'file' => 'El campo :attribute debe ser un archivo.', + 'filled' => 'El campo :attribute es obligatorio.', + 'gt' => [ + 'array' => 'El campo :attribute debe tener más de :value elementos.', + 'file' => 'El campo :attribute debe tener más de :value kilobytes.', 'numeric' => 'El campo :attribute debe ser mayor que :value.', - 'string' => 'El campo :attribute debe tener más de :value caracteres.', + 'string' => 'El campo :attribute debe tener más de :value caracteres.', ], - 'gte' => [ - 'array' => 'El campo :attribute debe tener como mínimo :value elementos.', - 'file' => 'El campo :attribute debe tener como mínimo :value kilobytes.', + 'gte' => [ + 'array' => 'El campo :attribute debe tener como mínimo :value elementos.', + 'file' => 'El campo :attribute debe tener como mínimo :value kilobytes.', 'numeric' => 'El campo :attribute debe ser como mínimo :value.', - 'string' => 'El campo :attribute debe tener como mínimo :value caracteres.', + 'string' => 'El campo :attribute debe tener como mínimo :value caracteres.', ], - 'image' => ':attribute debe ser una imagen.', - 'in' => ':attribute es inválido.', - 'in_array' => 'El campo :attribute no existe en :other.', - 'integer' => ':attribute debe ser un número entero.', - 'ip' => ':attribute debe ser una dirección IP válida.', - 'ipv4' => ':attribute debe ser una dirección IPv4 válida.', - 'ipv6' => ':attribute debe ser una dirección IPv6 válida.', - 'json' => 'El campo :attribute debe ser una cadena JSON válida.', - 'lt' => [ - 'array' => 'El campo :attribute debe tener menos de :value elementos.', - 'file' => 'El campo :attribute debe tener menos de :value kilobytes.', + 'image' => ':attribute debe ser una imagen.', + 'in' => ':attribute es inválido.', + 'in_array' => 'El campo :attribute no existe en :other.', + 'integer' => ':attribute debe ser un número entero.', + 'ip' => ':attribute debe ser una dirección IP válida.', + 'ipv4' => ':attribute debe ser una dirección IPv4 válida.', + 'ipv6' => ':attribute debe ser una dirección IPv6 válida.', + 'json' => 'El campo :attribute debe ser una cadena JSON válida.', + 'lt' => [ + 'array' => 'El campo :attribute debe tener menos de :value elementos.', + 'file' => 'El campo :attribute debe tener menos de :value kilobytes.', 'numeric' => 'El campo :attribute debe ser menor que :value.', - 'string' => 'El campo :attribute debe tener menos de :value caracteres.', + 'string' => 'El campo :attribute debe tener menos de :value caracteres.', ], - 'lte' => [ - 'array' => 'El campo :attribute debe tener como máximo :value elementos.', - 'file' => 'El campo :attribute debe tener como máximo :value kilobytes.', + 'lte' => [ + 'array' => 'El campo :attribute debe tener como máximo :value elementos.', + 'file' => 'El campo :attribute debe tener como máximo :value kilobytes.', 'numeric' => 'El campo :attribute debe ser como máximo :value.', - 'string' => 'El campo :attribute debe tener como máximo :value caracteres.', + 'string' => 'El campo :attribute debe tener como máximo :value caracteres.', ], - 'max' => [ - 'array' => ':attribute no debe tener más de :max elementos.', - 'file' => ':attribute no debe ser mayor que :max kilobytes.', + 'max' => [ + 'array' => ':attribute no debe tener más de :max elementos.', + 'file' => ':attribute no debe ser mayor que :max kilobytes.', 'numeric' => ':attribute no debe ser mayor que :max.', - 'string' => ':attribute no debe ser mayor que :max caracteres.', + 'string' => ':attribute no debe ser mayor que :max caracteres.', ], - 'mimes' => ':attribute debe ser un archivo con formato: :values.', - 'mimetypes' => ':attribute debe ser un archivo con formato: :values.', - 'min' => [ - 'array' => ':attribute debe tener al menos :min elementos.', - 'file' => 'El tamaño de :attribute debe ser de al menos :min kilobytes.', + 'mimes' => ':attribute debe ser un archivo con formato: :values.', + 'mimetypes' => ':attribute debe ser un archivo con formato: :values.', + 'min' => [ + 'array' => ':attribute debe tener al menos :min elementos.', + 'file' => 'El tamaño de :attribute debe ser de al menos :min kilobytes.', 'numeric' => 'El tamaño de :attribute debe ser de al menos :min.', - 'string' => ':attribute debe contener al menos :min caracteres.', + 'string' => ':attribute debe contener al menos :min caracteres.', ], - 'multiple_of' => 'El campo :attribute debe ser múltiplo de :value', - 'not_in' => ':attribute es inválido.', - 'not_regex' => 'El formato del campo :attribute no es válido.', - 'numeric' => ':attribute debe ser numérico.', - 'password' => 'La contraseña es incorrecta.', - 'present' => 'El campo :attribute debe estar presente.', - 'prohibited' => 'El campo :attribute está prohibido.', - 'prohibited_if' => 'El campo :attribute está prohibido cuando :other es :value.', - 'prohibited_unless' => 'El campo :attribute está prohibido a menos que :other sea :values.', - 'regex' => 'El formato de :attribute es inválido.', - 'relatable' => 'Este :attribute no se puede asociar con este recurso', - 'required' => 'El campo :attribute es obligatorio.', - 'required_if' => 'El campo :attribute es obligatorio cuando :other es :value.', - 'required_unless' => 'El campo :attribute es obligatorio a menos que :other esté en :values.', - 'required_with' => 'El campo :attribute es obligatorio cuando :values está presente.', - 'required_with_all' => 'El campo :attribute es obligatorio cuando :values están presentes.', - 'required_without' => 'El campo :attribute es obligatorio cuando :values no está presente.', + 'multiple_of' => 'El campo :attribute debe ser múltiplo de :value', + 'not_in' => ':attribute es inválido.', + 'not_regex' => 'El formato del campo :attribute no es válido.', + 'numeric' => ':attribute debe ser numérico.', + 'password' => 'La contraseña es incorrecta.', + 'present' => 'El campo :attribute debe estar presente.', + 'prohibited' => 'El campo :attribute está prohibido.', + 'prohibited_if' => 'El campo :attribute está prohibido cuando :other es :value.', + 'prohibited_unless' => 'El campo :attribute está prohibido a menos que :other sea :values.', + 'regex' => 'El formato de :attribute es inválido.', + 'relatable' => 'Este :attribute no se puede asociar con este recurso', + 'required' => 'El campo :attribute es obligatorio.', + 'required_if' => 'El campo :attribute es obligatorio cuando :other es :value.', + 'required_unless' => 'El campo :attribute es obligatorio a menos que :other esté en :values.', + 'required_with' => 'El campo :attribute es obligatorio cuando :values está presente.', + 'required_with_all' => 'El campo :attribute es obligatorio cuando :values están presentes.', + 'required_without' => 'El campo :attribute es obligatorio cuando :values no está presente.', 'required_without_all' => 'El campo :attribute es obligatorio cuando ninguno de :values está presente.', - 'same' => ':attribute y :other deben coincidir.', - 'size' => [ - 'array' => ':attribute debe contener :size elementos.', - 'file' => 'El tamaño de :attribute debe ser :size kilobytes.', + 'same' => ':attribute y :other deben coincidir.', + 'size' => [ + 'array' => ':attribute debe contener :size elementos.', + 'file' => 'El tamaño de :attribute debe ser :size kilobytes.', 'numeric' => 'El tamaño de :attribute debe ser :size.', - 'string' => ':attribute debe contener :size caracteres.', + 'string' => ':attribute debe contener :size caracteres.', ], - 'starts_with' => 'El campo :attribute debe comenzar con uno de los siguientes valores: :values', - 'string' => 'El campo :attribute debe ser una cadena de caracteres.', - 'timezone' => 'El :attribute debe ser una zona válida.', - 'unique' => 'El campo :attribute ya ha sido registrado.', - 'uploaded' => 'Subir :attribute ha fallado.', - 'url' => 'El formato :attribute es inválido.', - 'uuid' => 'El campo :attribute debe ser un UUID válido.', - 'custom' => [ - 'email' => [ + 'starts_with' => 'El campo :attribute debe comenzar con uno de los siguientes valores: :values', + 'string' => 'El campo :attribute debe ser una cadena de caracteres.', + 'timezone' => 'El :attribute debe ser una zona válida.', + 'unique' => 'El campo :attribute ya ha sido registrado.', + 'uploaded' => 'Subir :attribute ha fallado.', + 'url' => 'El formato :attribute es inválido.', + 'uuid' => 'El campo :attribute debe ser un UUID válido.', + 'custom' => [ + 'email' => [ 'unique' => 'El :attribute ya ha sido registrado.', ], 'password' => [ 'min' => 'La :attribute debe contener más de :min caracteres', ], ], - 'attributes' => [ - 'address' => 'dirección', - 'age' => 'edad', - 'body' => 'contenido', - 'city' => 'ciudad', - 'content' => 'contenido', - 'country' => 'país', - 'current_password' => 'contraseña actual', - 'date' => 'fecha', - 'day' => 'día', - 'description' => 'descripción', - 'email' => 'correo electrónico', - 'excerpt' => 'extracto', - 'first_name' => 'nombre', - 'gender' => 'género', - 'hour' => 'hora', - 'last_name' => 'apellido', - 'message' => 'mensaje', - 'minute' => 'minuto', - 'mobile' => 'móvil', - 'month' => 'mes', - 'name' => 'nombre', - 'password' => 'contraseña', + 'attributes' => [ + 'address' => 'dirección', + 'age' => 'edad', + 'body' => 'contenido', + 'city' => 'ciudad', + 'content' => 'contenido', + 'country' => 'país', + 'current_password' => 'contraseña actual', + 'date' => 'fecha', + 'day' => 'día', + 'description' => 'descripción', + 'email' => 'correo electrónico', + 'excerpt' => 'extracto', + 'first_name' => 'nombre', + 'gender' => 'género', + 'hour' => 'hora', + 'last_name' => 'apellido', + 'message' => 'mensaje', + 'minute' => 'minuto', + 'mobile' => 'móvil', + 'month' => 'mes', + 'name' => 'nombre', + 'password' => 'contraseña', 'password_confirmation' => 'confirmación de la contraseña', - 'phone' => 'teléfono', - 'price' => 'precio', - 'role' => 'rol', - 'second' => 'segundo', - 'sex' => 'sexo', - 'subject' => 'asunto', - 'terms' => 'términos', - 'time' => 'hora', - 'title' => 'título', - 'username' => 'usuario', - 'year' => 'año', + 'phone' => 'teléfono', + 'price' => 'precio', + 'role' => 'rol', + 'second' => 'segundo', + 'sex' => 'sexo', + 'subject' => 'asunto', + 'terms' => 'términos', + 'time' => 'hora', + 'title' => 'título', + 'username' => 'usuario', + 'year' => 'año', ], ]; diff --git a/lang/fr/auth.php b/lang/fr/auth.php index e808c61b4..cb661c966 100644 --- a/lang/fr/auth.php +++ b/lang/fr/auth.php @@ -12,7 +12,7 @@ */ return [ - 'failed' => 'Ces identifiants ne correspondent pas à nos enregistrements.', + 'failed' => 'Ces identifiants ne correspondent pas à nos enregistrements.', 'password' => 'Le mot de passe fourni est incorrect.', 'throttle' => 'Tentatives de connexion trop nombreuses. Veuillez essayer de nouveau dans :seconds secondes.', ]; diff --git a/lang/fr/pagination.php b/lang/fr/pagination.php index efa11ec19..a5542c328 100644 --- a/lang/fr/pagination.php +++ b/lang/fr/pagination.php @@ -12,6 +12,6 @@ */ return [ - 'next' => 'Suivant »', + 'next' => 'Suivant »', 'previous' => '« Précédent', ]; diff --git a/lang/fr/passwords.php b/lang/fr/passwords.php index dd0681866..99a48b1db 100644 --- a/lang/fr/passwords.php +++ b/lang/fr/passwords.php @@ -12,9 +12,9 @@ */ return [ - 'reset' => 'Votre mot de passe a été réinitialisé !', - 'sent' => 'Nous vous avons envoyé par email le lien de réinitialisation du mot de passe !', + 'reset' => 'Votre mot de passe a été réinitialisé !', + 'sent' => 'Nous vous avons envoyé par email le lien de réinitialisation du mot de passe !', 'throttled' => 'Veuillez patienter avant de réessayer.', - 'token' => 'Ce jeton de réinitialisation du mot de passe n\'est pas valide.', - 'user' => 'Aucun utilisateur n\'a été trouvé avec cette adresse email.', + 'token' => 'Ce jeton de réinitialisation du mot de passe n\'est pas valide.', + 'user' => 'Aucun utilisateur n\'a été trouvé avec cette adresse email.', ]; diff --git a/lang/fr/validation-inline.php b/lang/fr/validation-inline.php index a06110a71..154780485 100644 --- a/lang/fr/validation-inline.php +++ b/lang/fr/validation-inline.php @@ -12,120 +12,120 @@ */ return [ - 'accepted' => 'Ce champ doit être accepté.', - 'active_url' => 'Ce n\'est pas une URL valide', - 'after' => 'La date doit être postérieure au :date.', - 'after_or_equal' => 'La date doit être postérieure ou égale au :date.', - 'alpha' => 'Ce champ doit contenir uniquement des lettres', - 'alpha_dash' => 'Ce champ doit contenir uniquement des lettres, des chiffres et des tirets.', - 'alpha_num' => 'Ce champ doit contenir uniquement des chiffres et des lettres.', - 'array' => 'Ce champ doit être un tableau.', - 'attached' => 'Ce champ est déjà attaché.', - 'before' => 'Ce champ doit être une date antérieure au :date.', - 'before_or_equal' => 'Ce champ doit être une date antérieure ou égale au :date.', - 'between' => [ - 'array' => 'Le tableau doit contenir entre :min et :max éléments.', - 'file' => 'La taille du fichier doit être comprise entre :min et :max kilo-octets.', + 'accepted' => 'Ce champ doit être accepté.', + 'active_url' => 'Ce n\'est pas une URL valide', + 'after' => 'La date doit être postérieure au :date.', + 'after_or_equal' => 'La date doit être postérieure ou égale au :date.', + 'alpha' => 'Ce champ doit contenir uniquement des lettres', + 'alpha_dash' => 'Ce champ doit contenir uniquement des lettres, des chiffres et des tirets.', + 'alpha_num' => 'Ce champ doit contenir uniquement des chiffres et des lettres.', + 'array' => 'Ce champ doit être un tableau.', + 'attached' => 'Ce champ est déjà attaché.', + 'before' => 'Ce champ doit être une date antérieure au :date.', + 'before_or_equal' => 'Ce champ doit être une date antérieure ou égale au :date.', + 'between' => [ + 'array' => 'Le tableau doit contenir entre :min et :max éléments.', + 'file' => 'La taille du fichier doit être comprise entre :min et :max kilo-octets.', 'numeric' => 'La valeur doit être comprise entre :min et :max.', - 'string' => 'Le texte doit contenir entre :min et :max caractères.', + 'string' => 'Le texte doit contenir entre :min et :max caractères.', ], - 'boolean' => 'Ce champ doit être vrai ou faux.', - 'confirmed' => 'Le champ de confirmation ne correspond pas.', - 'date' => 'Ce n\'est pas une date valide.', - 'date_equals' => 'La date doit être égale à :date.', - 'date_format' => 'Ce champ ne correspond pas au format :format.', - 'different' => 'Cette valeur doit être différente de :other.', - 'digits' => 'Ce champ doit contenir :digits chiffres.', - 'digits_between' => 'Ce champ doit contenir entre :min et :max chiffres.', - 'dimensions' => 'La taille de l\'image n\'est pas conforme.', - 'distinct' => 'Ce champ a une valeur en double.', - 'email' => 'Ce champ doit être une adresse email valide.', - 'ends_with' => 'Ce champ doit se terminer par une des valeurs suivantes : :values', - 'exists' => 'Ce champ sélectionné est invalide.', - 'file' => 'Ce champ doit être un fichier.', - 'filled' => 'Ce champ doit avoir une valeur.', - 'gt' => [ - 'array' => 'Le tableau doit contenir plus de :value éléments.', - 'file' => 'La taille du fichier doit être supérieure à :value kilo-octets.', + 'boolean' => 'Ce champ doit être vrai ou faux.', + 'confirmed' => 'Le champ de confirmation ne correspond pas.', + 'date' => 'Ce n\'est pas une date valide.', + 'date_equals' => 'La date doit être égale à :date.', + 'date_format' => 'Ce champ ne correspond pas au format :format.', + 'different' => 'Cette valeur doit être différente de :other.', + 'digits' => 'Ce champ doit contenir :digits chiffres.', + 'digits_between' => 'Ce champ doit contenir entre :min et :max chiffres.', + 'dimensions' => 'La taille de l\'image n\'est pas conforme.', + 'distinct' => 'Ce champ a une valeur en double.', + 'email' => 'Ce champ doit être une adresse email valide.', + 'ends_with' => 'Ce champ doit se terminer par une des valeurs suivantes : :values', + 'exists' => 'Ce champ sélectionné est invalide.', + 'file' => 'Ce champ doit être un fichier.', + 'filled' => 'Ce champ doit avoir une valeur.', + 'gt' => [ + 'array' => 'Le tableau doit contenir plus de :value éléments.', + 'file' => 'La taille du fichier doit être supérieure à :value kilo-octets.', 'numeric' => 'La valeur doit être supérieure à :value.', - 'string' => 'Le texte doit contenir plus de :value caractères.', + 'string' => 'Le texte doit contenir plus de :value caractères.', ], - 'gte' => [ - 'array' => 'Le tableau doit contenir au moins :value éléments.', - 'file' => 'La taille du fichier doit être supérieure ou égale à :value kilo-octets.', + 'gte' => [ + 'array' => 'Le tableau doit contenir au moins :value éléments.', + 'file' => 'La taille du fichier doit être supérieure ou égale à :value kilo-octets.', 'numeric' => 'La valeur doit être supérieure ou égale à :value.', - 'string' => 'Le texte doit contenir au moins :value caractères.', + 'string' => 'Le texte doit contenir au moins :value caractères.', ], - 'image' => 'Ce champ doit être une image.', - 'in' => 'Ce champ est invalide.', - 'in_array' => 'Ce champ n\'existe pas dans :other.', - 'integer' => 'Ce champ doit être un entier.', - 'ip' => 'Ce champ doit être une adresse IP valide.', - 'ipv4' => 'Ce champ doit être une adresse IPv4 valide.', - 'ipv6' => 'Ce champ doit être une adresse IPv6 valide.', - 'json' => 'Ce champ doit être un document JSON valide.', - 'lt' => [ - 'array' => 'Le tableau doit contenir moins de :value éléments.', - 'file' => 'La taille du fichier doit être inférieure à :value kilo-octets.', + 'image' => 'Ce champ doit être une image.', + 'in' => 'Ce champ est invalide.', + 'in_array' => 'Ce champ n\'existe pas dans :other.', + 'integer' => 'Ce champ doit être un entier.', + 'ip' => 'Ce champ doit être une adresse IP valide.', + 'ipv4' => 'Ce champ doit être une adresse IPv4 valide.', + 'ipv6' => 'Ce champ doit être une adresse IPv6 valide.', + 'json' => 'Ce champ doit être un document JSON valide.', + 'lt' => [ + 'array' => 'Le tableau doit contenir moins de :value éléments.', + 'file' => 'La taille du fichier doit être inférieure à :value kilo-octets.', 'numeric' => 'La valeur doit être inférieure à :value.', - 'string' => 'Le texte doit contenir moins de :value caractères.', + 'string' => 'Le texte doit contenir moins de :value caractères.', ], - 'lte' => [ - 'array' => 'Le tableau doit contenir au plus :value éléments.', - 'file' => 'La taille du fichier doit être inférieure ou égale à :value kilo-octets.', + 'lte' => [ + 'array' => 'Le tableau doit contenir au plus :value éléments.', + 'file' => 'La taille du fichier doit être inférieure ou égale à :value kilo-octets.', 'numeric' => 'La valeur doit être inférieure ou égale à :value.', - 'string' => 'Le texte doit contenir au plus :value caractères.', + 'string' => 'Le texte doit contenir au plus :value caractères.', ], - 'max' => [ - 'array' => 'Le tableau ne peut contenir plus de :max éléments.', - 'file' => 'La taille du fichier ne peut pas dépasser :max kilo-octets.', + 'max' => [ + 'array' => 'Le tableau ne peut contenir plus de :max éléments.', + 'file' => 'La taille du fichier ne peut pas dépasser :max kilo-octets.', 'numeric' => 'La valeur ne peut être supérieure à :max.', - 'string' => 'Le texte ne peut contenir plus de :max caractères.', + 'string' => 'Le texte ne peut contenir plus de :max caractères.', ], - 'mimes' => 'Le fichier doit être de type : :values.', - 'mimetypes' => 'Le fichier doit être de type : :values.', - 'min' => [ - 'array' => 'Le tableau doit contenir au moins :min éléments.', - 'file' => 'La taille du fichier doit être supérieure à :min kilo-octets.', + 'mimes' => 'Le fichier doit être de type : :values.', + 'mimetypes' => 'Le fichier doit être de type : :values.', + 'min' => [ + 'array' => 'Le tableau doit contenir au moins :min éléments.', + 'file' => 'La taille du fichier doit être supérieure à :min kilo-octets.', 'numeric' => 'La valeur doit être supérieure ou égale à :min.', - 'string' => 'Le texte doit contenir au moins :min caractères.', + 'string' => 'Le texte doit contenir au moins :min caractères.', ], - 'multiple_of' => 'La valeur doit être un multiple de :value', - 'not_in' => 'Le champ sélectionné n\'est pas valide.', - 'not_regex' => 'Le format du champ n\'est pas valide.', - 'numeric' => 'Ce champ doit contenir un nombre.', - 'password' => 'Le mot de passe est incorrect', - 'present' => 'Ce champ doit être présent.', - 'prohibited' => 'Ce champ est interdit', - 'prohibited_if' => 'Ce champ est interdit quand :other a la valeur :value.', - 'prohibited_unless' => 'Ce champ est interdit à moins que :other ait l\'une des valeurs :values.', - 'regex' => 'Le format du champ est invalide.', - 'relatable' => 'Ce champ n\'est sans doute pas associé avec cette donnée.', - 'required' => 'Ce champ est obligatoire.', - 'required_if' => 'Ce champ est obligatoire quand la valeur de :other est :value.', - 'required_unless' => 'Ce champ est obligatoire sauf si :other est :values.', - 'required_with' => 'Ce champ est obligatoire quand :values est présent.', - 'required_with_all' => 'Ce champ est obligatoire quand :values sont présents.', - 'required_without' => 'Ce champ est obligatoire quand :values n\'est pas présent.', + 'multiple_of' => 'La valeur doit être un multiple de :value', + 'not_in' => 'Le champ sélectionné n\'est pas valide.', + 'not_regex' => 'Le format du champ n\'est pas valide.', + 'numeric' => 'Ce champ doit contenir un nombre.', + 'password' => 'Le mot de passe est incorrect', + 'present' => 'Ce champ doit être présent.', + 'prohibited' => 'Ce champ est interdit', + 'prohibited_if' => 'Ce champ est interdit quand :other a la valeur :value.', + 'prohibited_unless' => 'Ce champ est interdit à moins que :other ait l\'une des valeurs :values.', + 'regex' => 'Le format du champ est invalide.', + 'relatable' => 'Ce champ n\'est sans doute pas associé avec cette donnée.', + 'required' => 'Ce champ est obligatoire.', + 'required_if' => 'Ce champ est obligatoire quand la valeur de :other est :value.', + 'required_unless' => 'Ce champ est obligatoire sauf si :other est :values.', + 'required_with' => 'Ce champ est obligatoire quand :values est présent.', + 'required_with_all' => 'Ce champ est obligatoire quand :values sont présents.', + 'required_without' => 'Ce champ est obligatoire quand :values n\'est pas présent.', 'required_without_all' => 'Ce champ est requis quand aucun de :values n\'est présent.', - 'same' => 'Ce champ doit être identique à :other.', - 'size' => [ - 'array' => 'Le tableau doit contenir :size éléments.', - 'file' => 'La taille du fichier doit être de :size kilo-octets.', + 'same' => 'Ce champ doit être identique à :other.', + 'size' => [ + 'array' => 'Le tableau doit contenir :size éléments.', + 'file' => 'La taille du fichier doit être de :size kilo-octets.', 'numeric' => 'La valeur doit être :size.', - 'string' => 'Le texte doit contenir :size caractères.', + 'string' => 'Le texte doit contenir :size caractères.', ], - 'starts_with' => 'Ce champ doit commencer avec une des valeurs suivantes : :values', - 'string' => 'Ce champ doit être une chaîne de caractères.', - 'timezone' => 'Ce champ doit être un fuseau horaire valide.', - 'unique' => 'La valeur est déjà utilisée.', - 'uploaded' => 'Le fichier n\'a pu être téléversé.', - 'url' => 'Le format de l\'URL n\'est pas valide.', - 'uuid' => 'Ce champ doit être un UUID valide', - 'custom' => [ + 'starts_with' => 'Ce champ doit commencer avec une des valeurs suivantes : :values', + 'string' => 'Ce champ doit être une chaîne de caractères.', + 'timezone' => 'Ce champ doit être un fuseau horaire valide.', + 'unique' => 'La valeur est déjà utilisée.', + 'uploaded' => 'Le fichier n\'a pu être téléversé.', + 'url' => 'Le format de l\'URL n\'est pas valide.', + 'uuid' => 'Ce champ doit être un UUID valide', + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], + 'attributes' => [], ]; diff --git a/lang/fr/validation.php b/lang/fr/validation.php index 5940e43ac..f8e1a5662 100644 --- a/lang/fr/validation.php +++ b/lang/fr/validation.php @@ -12,151 +12,151 @@ */ return [ - 'accepted' => 'Le champ :attribute doit être accepté.', - 'active_url' => 'Le champ :attribute n\'est pas une URL valide.', - 'after' => 'Le champ :attribute doit être une date postérieure au :date.', - 'after_or_equal' => 'Le champ :attribute doit être une date postérieure ou égale au :date.', - 'alpha' => 'Le champ :attribute doit contenir uniquement des lettres.', - 'alpha_dash' => 'Le champ :attribute doit contenir uniquement des lettres, des chiffres et des tirets.', - 'alpha_num' => 'Le champ :attribute doit contenir uniquement des chiffres et des lettres.', - 'array' => 'Le champ :attribute doit être un tableau.', - 'attached' => ':attribute est déjà attaché(e).', - 'before' => 'Le champ :attribute doit être une date antérieure au :date.', - 'before_or_equal' => 'Le champ :attribute doit être une date antérieure ou égale au :date.', - 'between' => [ - 'array' => 'Le tableau :attribute doit contenir entre :min et :max éléments.', - 'file' => 'La taille du fichier de :attribute doit être comprise entre :min et :max kilo-octets.', + 'accepted' => 'Le champ :attribute doit être accepté.', + 'active_url' => 'Le champ :attribute n\'est pas une URL valide.', + 'after' => 'Le champ :attribute doit être une date postérieure au :date.', + 'after_or_equal' => 'Le champ :attribute doit être une date postérieure ou égale au :date.', + 'alpha' => 'Le champ :attribute doit contenir uniquement des lettres.', + 'alpha_dash' => 'Le champ :attribute doit contenir uniquement des lettres, des chiffres et des tirets.', + 'alpha_num' => 'Le champ :attribute doit contenir uniquement des chiffres et des lettres.', + 'array' => 'Le champ :attribute doit être un tableau.', + 'attached' => ':attribute est déjà attaché(e).', + 'before' => 'Le champ :attribute doit être une date antérieure au :date.', + 'before_or_equal' => 'Le champ :attribute doit être une date antérieure ou égale au :date.', + 'between' => [ + 'array' => 'Le tableau :attribute doit contenir entre :min et :max éléments.', + 'file' => 'La taille du fichier de :attribute doit être comprise entre :min et :max kilo-octets.', 'numeric' => 'La valeur de :attribute doit être comprise entre :min et :max.', - 'string' => 'Le texte :attribute doit contenir entre :min et :max caractères.', + 'string' => 'Le texte :attribute doit contenir entre :min et :max caractères.', ], - 'boolean' => 'Le champ :attribute doit être vrai ou faux.', - 'confirmed' => 'Le champ de confirmation :attribute ne correspond pas.', - 'date' => 'Le champ :attribute n\'est pas une date valide.', - 'date_equals' => 'Le champ :attribute doit être une date égale à :date.', - 'date_format' => 'Le champ :attribute ne correspond pas au format :format.', - 'different' => 'Les champs :attribute et :other doivent être différents.', - 'digits' => 'Le champ :attribute doit contenir :digits chiffres.', - 'digits_between' => 'Le champ :attribute doit contenir entre :min et :max chiffres.', - 'dimensions' => 'La taille de l\'image :attribute n\'est pas conforme.', - 'distinct' => 'Le champ :attribute a une valeur en double.', - 'email' => 'Le champ :attribute doit être une adresse email valide.', - 'ends_with' => 'Le champ :attribute doit se terminer par une des valeurs suivantes : :values', - 'exists' => 'Le champ :attribute sélectionné est invalide.', - 'file' => 'Le champ :attribute doit être un fichier.', - 'filled' => 'Le champ :attribute doit avoir une valeur.', - 'gt' => [ - 'array' => 'Le tableau :attribute doit contenir plus de :value éléments.', - 'file' => 'La taille du fichier de :attribute doit être supérieure à :value kilo-octets.', + 'boolean' => 'Le champ :attribute doit être vrai ou faux.', + 'confirmed' => 'Le champ de confirmation :attribute ne correspond pas.', + 'date' => 'Le champ :attribute n\'est pas une date valide.', + 'date_equals' => 'Le champ :attribute doit être une date égale à :date.', + 'date_format' => 'Le champ :attribute ne correspond pas au format :format.', + 'different' => 'Les champs :attribute et :other doivent être différents.', + 'digits' => 'Le champ :attribute doit contenir :digits chiffres.', + 'digits_between' => 'Le champ :attribute doit contenir entre :min et :max chiffres.', + 'dimensions' => 'La taille de l\'image :attribute n\'est pas conforme.', + 'distinct' => 'Le champ :attribute a une valeur en double.', + 'email' => 'Le champ :attribute doit être une adresse email valide.', + 'ends_with' => 'Le champ :attribute doit se terminer par une des valeurs suivantes : :values', + 'exists' => 'Le champ :attribute sélectionné est invalide.', + 'file' => 'Le champ :attribute doit être un fichier.', + 'filled' => 'Le champ :attribute doit avoir une valeur.', + 'gt' => [ + 'array' => 'Le tableau :attribute doit contenir plus de :value éléments.', + 'file' => 'La taille du fichier de :attribute doit être supérieure à :value kilo-octets.', 'numeric' => 'La valeur de :attribute doit être supérieure à :value.', - 'string' => 'Le texte :attribute doit contenir plus de :value caractères.', + 'string' => 'Le texte :attribute doit contenir plus de :value caractères.', ], - 'gte' => [ - 'array' => 'Le tableau :attribute doit contenir au moins :value éléments.', - 'file' => 'La taille du fichier de :attribute doit être supérieure ou égale à :value kilo-octets.', + 'gte' => [ + 'array' => 'Le tableau :attribute doit contenir au moins :value éléments.', + 'file' => 'La taille du fichier de :attribute doit être supérieure ou égale à :value kilo-octets.', 'numeric' => 'La valeur de :attribute doit être supérieure ou égale à :value.', - 'string' => 'Le texte :attribute doit contenir au moins :value caractères.', + 'string' => 'Le texte :attribute doit contenir au moins :value caractères.', ], - 'image' => 'Le champ :attribute doit être une image.', - 'in' => 'Le champ :attribute est invalide.', - 'in_array' => 'Le champ :attribute n\'existe pas dans :other.', - 'integer' => 'Le champ :attribute doit être un entier.', - 'ip' => 'Le champ :attribute doit être une adresse IP valide.', - 'ipv4' => 'Le champ :attribute doit être une adresse IPv4 valide.', - 'ipv6' => 'Le champ :attribute doit être une adresse IPv6 valide.', - 'json' => 'Le champ :attribute doit être un document JSON valide.', - 'lt' => [ - 'array' => 'Le tableau :attribute doit contenir moins de :value éléments.', - 'file' => 'La taille du fichier de :attribute doit être inférieure à :value kilo-octets.', + 'image' => 'Le champ :attribute doit être une image.', + 'in' => 'Le champ :attribute est invalide.', + 'in_array' => 'Le champ :attribute n\'existe pas dans :other.', + 'integer' => 'Le champ :attribute doit être un entier.', + 'ip' => 'Le champ :attribute doit être une adresse IP valide.', + 'ipv4' => 'Le champ :attribute doit être une adresse IPv4 valide.', + 'ipv6' => 'Le champ :attribute doit être une adresse IPv6 valide.', + 'json' => 'Le champ :attribute doit être un document JSON valide.', + 'lt' => [ + 'array' => 'Le tableau :attribute doit contenir moins de :value éléments.', + 'file' => 'La taille du fichier de :attribute doit être inférieure à :value kilo-octets.', 'numeric' => 'La valeur de :attribute doit être inférieure à :value.', - 'string' => 'Le texte :attribute doit contenir moins de :value caractères.', + 'string' => 'Le texte :attribute doit contenir moins de :value caractères.', ], - 'lte' => [ - 'array' => 'Le tableau :attribute doit contenir au plus :value éléments.', - 'file' => 'La taille du fichier de :attribute doit être inférieure ou égale à :value kilo-octets.', + 'lte' => [ + 'array' => 'Le tableau :attribute doit contenir au plus :value éléments.', + 'file' => 'La taille du fichier de :attribute doit être inférieure ou égale à :value kilo-octets.', 'numeric' => 'La valeur de :attribute doit être inférieure ou égale à :value.', - 'string' => 'Le texte :attribute doit contenir au plus :value caractères.', + 'string' => 'Le texte :attribute doit contenir au plus :value caractères.', ], - 'max' => [ - 'array' => 'Le tableau :attribute ne peut contenir plus de :max éléments.', - 'file' => 'La taille du fichier de :attribute ne peut pas dépasser :max kilo-octets.', + 'max' => [ + 'array' => 'Le tableau :attribute ne peut contenir plus de :max éléments.', + 'file' => 'La taille du fichier de :attribute ne peut pas dépasser :max kilo-octets.', 'numeric' => 'La valeur de :attribute ne peut être supérieure à :max.', - 'string' => 'Le texte de :attribute ne peut contenir plus de :max caractères.', + 'string' => 'Le texte de :attribute ne peut contenir plus de :max caractères.', ], - 'mimes' => 'Le champ :attribute doit être un fichier de type : :values.', - 'mimetypes' => 'Le champ :attribute doit être un fichier de type : :values.', - 'min' => [ - 'array' => 'Le tableau :attribute doit contenir au moins :min éléments.', - 'file' => 'La taille du fichier de :attribute doit être supérieure à :min kilo-octets.', + 'mimes' => 'Le champ :attribute doit être un fichier de type : :values.', + 'mimetypes' => 'Le champ :attribute doit être un fichier de type : :values.', + 'min' => [ + 'array' => 'Le tableau :attribute doit contenir au moins :min éléments.', + 'file' => 'La taille du fichier de :attribute doit être supérieure à :min kilo-octets.', 'numeric' => 'La valeur de :attribute doit être supérieure ou égale à :min.', - 'string' => 'Le texte :attribute doit contenir au moins :min caractères.', + 'string' => 'Le texte :attribute doit contenir au moins :min caractères.', ], - 'multiple_of' => 'La valeur de :attribute doit être un multiple de :value', - 'not_in' => 'Le champ :attribute sélectionné n\'est pas valide.', - 'not_regex' => 'Le format du champ :attribute n\'est pas valide.', - 'numeric' => 'Le champ :attribute doit contenir un nombre.', - 'password' => 'Le mot de passe est incorrect', - 'present' => 'Le champ :attribute doit être présent.', - 'prohibited' => 'Le champ :attribute est interdit.', - 'prohibited_if' => 'Le champ :attribute est interdit quand :other a la valeur :value.', - 'prohibited_unless' => 'Le champ :attribute est interdit à moins que :other est l\'une des valeurs :values.', - 'regex' => 'Le format du champ :attribute est invalide.', - 'relatable' => ':attribute n\'est sans doute pas associé(e) avec cette donnée.', - 'required' => 'Le champ :attribute est obligatoire.', - 'required_if' => 'Le champ :attribute est obligatoire quand la valeur de :other est :value.', - 'required_unless' => 'Le champ :attribute est obligatoire sauf si :other est :values.', - 'required_with' => 'Le champ :attribute est obligatoire quand :values est présent.', - 'required_with_all' => 'Le champ :attribute est obligatoire quand :values sont présents.', - 'required_without' => 'Le champ :attribute est obligatoire quand :values n\'est pas présent.', + 'multiple_of' => 'La valeur de :attribute doit être un multiple de :value', + 'not_in' => 'Le champ :attribute sélectionné n\'est pas valide.', + 'not_regex' => 'Le format du champ :attribute n\'est pas valide.', + 'numeric' => 'Le champ :attribute doit contenir un nombre.', + 'password' => 'Le mot de passe est incorrect', + 'present' => 'Le champ :attribute doit être présent.', + 'prohibited' => 'Le champ :attribute est interdit.', + 'prohibited_if' => 'Le champ :attribute est interdit quand :other a la valeur :value.', + 'prohibited_unless' => 'Le champ :attribute est interdit à moins que :other est l\'une des valeurs :values.', + 'regex' => 'Le format du champ :attribute est invalide.', + 'relatable' => ':attribute n\'est sans doute pas associé(e) avec cette donnée.', + 'required' => 'Le champ :attribute est obligatoire.', + 'required_if' => 'Le champ :attribute est obligatoire quand la valeur de :other est :value.', + 'required_unless' => 'Le champ :attribute est obligatoire sauf si :other est :values.', + 'required_with' => 'Le champ :attribute est obligatoire quand :values est présent.', + 'required_with_all' => 'Le champ :attribute est obligatoire quand :values sont présents.', + 'required_without' => 'Le champ :attribute est obligatoire quand :values n\'est pas présent.', 'required_without_all' => 'Le champ :attribute est requis quand aucun de :values n\'est présent.', - 'same' => 'Les champs :attribute et :other doivent être identiques.', - 'size' => [ - 'array' => 'Le tableau :attribute doit contenir :size éléments.', - 'file' => 'La taille du fichier de :attribute doit être de :size kilo-octets.', + 'same' => 'Les champs :attribute et :other doivent être identiques.', + 'size' => [ + 'array' => 'Le tableau :attribute doit contenir :size éléments.', + 'file' => 'La taille du fichier de :attribute doit être de :size kilo-octets.', 'numeric' => 'La valeur de :attribute doit être :size.', - 'string' => 'Le texte de :attribute doit contenir :size caractères.', + 'string' => 'Le texte de :attribute doit contenir :size caractères.', ], - 'starts_with' => 'Le champ :attribute doit commencer avec une des valeurs suivantes : :values', - 'string' => 'Le champ :attribute doit être une chaîne de caractères.', - 'timezone' => 'Le champ :attribute doit être un fuseau horaire valide.', - 'unique' => 'La valeur du champ :attribute est déjà utilisée.', - 'uploaded' => 'Le fichier du champ :attribute n\'a pu être téléversé.', - 'url' => 'Le format de l\'URL de :attribute n\'est pas valide.', - 'uuid' => 'Le champ :attribute doit être un UUID valide', - 'custom' => [ + 'starts_with' => 'Le champ :attribute doit commencer avec une des valeurs suivantes : :values', + 'string' => 'Le champ :attribute doit être une chaîne de caractères.', + 'timezone' => 'Le champ :attribute doit être un fuseau horaire valide.', + 'unique' => 'La valeur du champ :attribute est déjà utilisée.', + 'uploaded' => 'Le fichier du champ :attribute n\'a pu être téléversé.', + 'url' => 'Le format de l\'URL de :attribute n\'est pas valide.', + 'uuid' => 'Le champ :attribute doit être un UUID valide', + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'adresse', - 'age' => 'âge', - 'available' => 'disponible', - 'city' => 'ville', - 'content' => 'contenu', - 'country' => 'pays', - 'current_password' => 'mot de passe actuel', - 'date' => 'date', - 'day' => 'jour', - 'description' => 'description', - 'email' => 'adresse email', - 'excerpt' => 'extrait', - 'first_name' => 'prénom', - 'gender' => 'genre', - 'hour' => 'heure', - 'last_name' => 'nom', - 'minute' => 'minute', - 'mobile' => 'portable', - 'month' => 'mois', - 'name' => 'nom', - 'password' => 'mot de passe', + 'attributes' => [ + 'address' => 'adresse', + 'age' => 'âge', + 'available' => 'disponible', + 'city' => 'ville', + 'content' => 'contenu', + 'country' => 'pays', + 'current_password' => 'mot de passe actuel', + 'date' => 'date', + 'day' => 'jour', + 'description' => 'description', + 'email' => 'adresse email', + 'excerpt' => 'extrait', + 'first_name' => 'prénom', + 'gender' => 'genre', + 'hour' => 'heure', + 'last_name' => 'nom', + 'minute' => 'minute', + 'mobile' => 'portable', + 'month' => 'mois', + 'name' => 'nom', + 'password' => 'mot de passe', 'password_confirmation' => 'confirmation du mot de passe', - 'phone' => 'téléphone', - 'second' => 'seconde', - 'sex' => 'sexe', - 'size' => 'taille', - 'time' => 'heure', - 'title' => 'titre', - 'username' => 'nom d\'utilisateur', - 'year' => 'année', + 'phone' => 'téléphone', + 'second' => 'seconde', + 'sex' => 'sexe', + 'size' => 'taille', + 'time' => 'heure', + 'title' => 'titre', + 'username' => 'nom d\'utilisateur', + 'year' => 'année', ], ]; diff --git a/lang/hu/auth.php b/lang/hu/auth.php index 83df448be..5187da792 100644 --- a/lang/hu/auth.php +++ b/lang/hu/auth.php @@ -12,7 +12,7 @@ */ return [ - 'failed' => 'Rossz email-jelszó páros.', + 'failed' => 'Rossz email-jelszó páros.', 'password' => 'A megadott jelszó helytelen.', 'throttle' => 'Túl sok próbálkozás. Kérjük próbálja újra :seconds másodperc múlva.', ]; diff --git a/lang/hu/pagination.php b/lang/hu/pagination.php index f0e5ef5a4..09408e6e0 100644 --- a/lang/hu/pagination.php +++ b/lang/hu/pagination.php @@ -12,6 +12,6 @@ */ return [ - 'next' => 'Következő »', + 'next' => 'Következő »', 'previous' => '« Előző', ]; diff --git a/lang/hu/passwords.php b/lang/hu/passwords.php index d4245c0d7..3687260ea 100644 --- a/lang/hu/passwords.php +++ b/lang/hu/passwords.php @@ -12,9 +12,9 @@ */ return [ - 'reset' => 'Az új jelszó beállítva!', - 'sent' => 'Jelszó-emlékeztető elküldve!', + 'reset' => 'Az új jelszó beállítva!', + 'sent' => 'Jelszó-emlékeztető elküldve!', 'throttled' => 'Kérjük várjon, mielőtt újra megpróbálná.', - 'token' => 'Ez az új jelszó generálásához tartozó token érvénytelen.', - 'user' => 'Nem található felhasználó a megadott email címmel.', + 'token' => 'Ez az új jelszó generálásához tartozó token érvénytelen.', + 'user' => 'Nem található felhasználó a megadott email címmel.', ]; diff --git a/lang/hu/validation-inline.php b/lang/hu/validation-inline.php index 21228b086..27c133697 100644 --- a/lang/hu/validation-inline.php +++ b/lang/hu/validation-inline.php @@ -12,120 +12,120 @@ */ return [ - 'accepted' => 'Ezt a mezőt el kell fogadni.', - 'active_url' => 'Ez nem érvényes URL.', - 'after' => 'Ez egy dátum :date után.', - 'after_or_equal' => 'Ennek :date után vagy azzal megegyező dátumnak kell lennie.', - 'alpha' => 'Ez a mező csak betűket tartalmazhat.', - 'alpha_dash' => 'Ez a mező csak betűket, számokat, kötőjeleket és aláhúzásokat tartalmazhat.', - 'alpha_num' => 'Ez a mező csak betűket és számokat tartalmazhat.', - 'array' => 'Ennek a mezőnek tömbnek kell lennie.', - 'attached' => 'Ez a mező már csatolva van.', - 'before' => 'Ez egy dátum :date előtt.', - 'before_or_equal' => 'Ennek :date előtti vagy azzal egyenlő dátumnak kell lennie.', - 'between' => [ - 'array' => 'This content must have between :min and :max items.', - 'file' => 'This file must be between :min and :max kilobytes.', + 'accepted' => 'Ezt a mezőt el kell fogadni.', + 'active_url' => 'Ez nem érvényes URL.', + 'after' => 'Ez egy dátum :date után.', + 'after_or_equal' => 'Ennek :date után vagy azzal megegyező dátumnak kell lennie.', + 'alpha' => 'Ez a mező csak betűket tartalmazhat.', + 'alpha_dash' => 'Ez a mező csak betűket, számokat, kötőjeleket és aláhúzásokat tartalmazhat.', + 'alpha_num' => 'Ez a mező csak betűket és számokat tartalmazhat.', + 'array' => 'Ennek a mezőnek tömbnek kell lennie.', + 'attached' => 'Ez a mező már csatolva van.', + 'before' => 'Ez egy dátum :date előtt.', + 'before_or_equal' => 'Ennek :date előtti vagy azzal egyenlő dátumnak kell lennie.', + 'between' => [ + 'array' => 'This content must have between :min and :max items.', + 'file' => 'This file must be between :min and :max kilobytes.', 'numeric' => 'This value must be between :min and :max.', - 'string' => 'This string must be between :min and :max characters.', + 'string' => 'This string must be between :min and :max characters.', ], - 'boolean' => 'Ennek a mezőnek igaznak vagy hamisnak kell lennie.', - 'confirmed' => 'A megerősítés nem egyezik.', - 'date' => 'Ez nem érvényes dátum.', - 'date_equals' => 'Ennek :date-nak kell lennie.', - 'date_format' => 'Ez nem felel meg az :format formátumnak.', - 'different' => 'Ennek az értéknek különböznie kell :other-től.', - 'digits' => 'Ennek :digits számjegynek kell lennie.', - 'digits_between' => 'Ennek :min és :max között kell lennie.', - 'dimensions' => 'Ez a kép érvénytelen méretekkel rendelkezik.', - 'distinct' => 'Ez a mező ismétlődő értékkel rendelkezik.', - 'email' => 'Ennek érvényes e-mail címnek kell lennie.', - 'ends_with' => 'Ennek az alábbiak egyikével kell végződnie: :values.', - 'exists' => 'A kiválasztott érték érvénytelen.', - 'file' => 'A tartalomnak fájlnak kell lennie.', - 'filled' => 'Ennek a mezőnek kell legyen értéke.', - 'gt' => [ - 'array' => 'The content must have more than :value items.', - 'file' => 'The file size must be greater than :value kilobytes.', + 'boolean' => 'Ennek a mezőnek igaznak vagy hamisnak kell lennie.', + 'confirmed' => 'A megerősítés nem egyezik.', + 'date' => 'Ez nem érvényes dátum.', + 'date_equals' => 'Ennek :date-nak kell lennie.', + 'date_format' => 'Ez nem felel meg az :format formátumnak.', + 'different' => 'Ennek az értéknek különböznie kell :other-től.', + 'digits' => 'Ennek :digits számjegynek kell lennie.', + 'digits_between' => 'Ennek :min és :max között kell lennie.', + 'dimensions' => 'Ez a kép érvénytelen méretekkel rendelkezik.', + 'distinct' => 'Ez a mező ismétlődő értékkel rendelkezik.', + 'email' => 'Ennek érvényes e-mail címnek kell lennie.', + 'ends_with' => 'Ennek az alábbiak egyikével kell végződnie: :values.', + 'exists' => 'A kiválasztott érték érvénytelen.', + 'file' => 'A tartalomnak fájlnak kell lennie.', + 'filled' => 'Ennek a mezőnek kell legyen értéke.', + 'gt' => [ + 'array' => 'The content must have more than :value items.', + 'file' => 'The file size must be greater than :value kilobytes.', 'numeric' => 'The value must be greater than :value.', - 'string' => 'The string must be greater than :value characters.', + 'string' => 'The string must be greater than :value characters.', ], - 'gte' => [ - 'array' => 'The content must have :value items or more.', - 'file' => 'The file size must be greater than or equal :value kilobytes.', + 'gte' => [ + 'array' => 'The content must have :value items or more.', + 'file' => 'The file size must be greater than or equal :value kilobytes.', 'numeric' => 'The value must be greater than or equal :value.', - 'string' => 'The string must be greater than or equal :value characters.', + 'string' => 'The string must be greater than or equal :value characters.', ], - 'image' => 'Ez egy kép lehet.', - 'in' => 'A kiválasztott érték érvénytelen.', - 'in_array' => 'Ez az érték nem létezik :other-ban.', - 'integer' => 'Ennek egész számnak kell lennie.', - 'ip' => 'Ennek érvényes IP-címnek kell lennie.', - 'ipv4' => 'Ennek érvényes IPv4 címnek kell lennie.', - 'ipv6' => 'Ennek érvényes IPv6 címnek kell lennie.', - 'json' => 'Ez egy érvényes JSON karakterlánc lehet.', - 'lt' => [ - 'array' => 'The content must have less than :value items.', - 'file' => 'The file size must be less than :value kilobytes.', + 'image' => 'Ez egy kép lehet.', + 'in' => 'A kiválasztott érték érvénytelen.', + 'in_array' => 'Ez az érték nem létezik :other-ban.', + 'integer' => 'Ennek egész számnak kell lennie.', + 'ip' => 'Ennek érvényes IP-címnek kell lennie.', + 'ipv4' => 'Ennek érvényes IPv4 címnek kell lennie.', + 'ipv6' => 'Ennek érvényes IPv6 címnek kell lennie.', + 'json' => 'Ez egy érvényes JSON karakterlánc lehet.', + 'lt' => [ + 'array' => 'The content must have less than :value items.', + 'file' => 'The file size must be less than :value kilobytes.', 'numeric' => 'The value must be less than :value.', - 'string' => 'The string must be less than :value characters.', + 'string' => 'The string must be less than :value characters.', ], - 'lte' => [ - 'array' => 'The content must not have more than :value items.', - 'file' => 'The file size must be less than or equal :value kilobytes.', + 'lte' => [ + 'array' => 'The content must not have more than :value items.', + 'file' => 'The file size must be less than or equal :value kilobytes.', 'numeric' => 'The value must be less than or equal :value.', - 'string' => 'The string must be less than or equal :value characters.', + 'string' => 'The string must be less than or equal :value characters.', ], - 'max' => [ - 'array' => 'The content may not have more than :max items.', - 'file' => 'The file size may not be greater than :max kilobytes.', + 'max' => [ + 'array' => 'The content may not have more than :max items.', + 'file' => 'The file size may not be greater than :max kilobytes.', 'numeric' => 'The value may not be greater than :max.', - 'string' => 'The string may not be greater than :max characters.', + 'string' => 'The string may not be greater than :max characters.', ], - 'mimes' => 'Ennek a következő típusú fájlnak kell lennie: :values.', - 'mimetypes' => 'Ennek :values típusú fájlnak kell lennie.', - 'min' => [ - 'array' => 'The value must have at least :min items.', - 'file' => 'The file size must be at least :min kilobytes.', + 'mimes' => 'Ennek a következő típusú fájlnak kell lennie: :values.', + 'mimetypes' => 'Ennek :values típusú fájlnak kell lennie.', + 'min' => [ + 'array' => 'The value must have at least :min items.', + 'file' => 'The file size must be at least :min kilobytes.', 'numeric' => 'The value must be at least :min.', - 'string' => 'The string must be at least :min characters.', + 'string' => 'The string must be at least :min characters.', ], - 'multiple_of' => 'Az értéknek :value többszörösének kell lennie', - 'not_in' => 'A kiválasztott érték érvénytelen.', - 'not_regex' => 'Ez a formátum érvénytelen.', - 'numeric' => 'Ez egy szám lehet.', - 'password' => 'A jelszó helytelen.', - 'present' => 'Ennek a mezőnek jelen kell lennie.', - 'prohibited' => 'Ez a mező tilos.', - 'prohibited_if' => 'Ez a mező tilos, ha :other jelentése :value.', - 'prohibited_unless' => 'Ez a mező tilos, kivéve, ha a :other :values-ben van.', - 'regex' => 'Ez a formátum érvénytelen.', - 'relatable' => 'Lehet, hogy ez a mező nem kapcsolódik ehhez az erőforráshoz.', - 'required' => 'Ez a mező szükséges.', - 'required_if' => 'Erre a mezőre akkor van szükség, ha a :other :value.', - 'required_unless' => 'Erre a mezőre csak akkor van szükség, ha a :other :values-ban van.', - 'required_with' => 'Ez a mező akkor szükséges, ha :values van jelen.', - 'required_with_all' => 'Ez a mező akkor szükséges, ha :values van jelen.', - 'required_without' => 'Ez a mező akkor szükséges, ha :values nincs jelen.', + 'multiple_of' => 'Az értéknek :value többszörösének kell lennie', + 'not_in' => 'A kiválasztott érték érvénytelen.', + 'not_regex' => 'Ez a formátum érvénytelen.', + 'numeric' => 'Ez egy szám lehet.', + 'password' => 'A jelszó helytelen.', + 'present' => 'Ennek a mezőnek jelen kell lennie.', + 'prohibited' => 'Ez a mező tilos.', + 'prohibited_if' => 'Ez a mező tilos, ha :other jelentése :value.', + 'prohibited_unless' => 'Ez a mező tilos, kivéve, ha a :other :values-ben van.', + 'regex' => 'Ez a formátum érvénytelen.', + 'relatable' => 'Lehet, hogy ez a mező nem kapcsolódik ehhez az erőforráshoz.', + 'required' => 'Ez a mező szükséges.', + 'required_if' => 'Erre a mezőre akkor van szükség, ha a :other :value.', + 'required_unless' => 'Erre a mezőre csak akkor van szükség, ha a :other :values-ban van.', + 'required_with' => 'Ez a mező akkor szükséges, ha :values van jelen.', + 'required_with_all' => 'Ez a mező akkor szükséges, ha :values van jelen.', + 'required_without' => 'Ez a mező akkor szükséges, ha :values nincs jelen.', 'required_without_all' => 'Erre a mezőre akkor van szükség, ha egyik :values sincs jelen.', - 'same' => 'A mező értékének meg kell egyeznie az :other-es értékkel.', - 'size' => [ - 'array' => 'The content must contain :size items.', - 'file' => 'The file size must be :size kilobytes.', + 'same' => 'A mező értékének meg kell egyeznie az :other-es értékkel.', + 'size' => [ + 'array' => 'The content must contain :size items.', + 'file' => 'The file size must be :size kilobytes.', 'numeric' => 'The value must be :size.', - 'string' => 'The string must be :size characters.', + 'string' => 'The string must be :size characters.', ], - 'starts_with' => 'Ennek az alábbiak egyikével kell kezdődnie: :values.', - 'string' => 'Ez biztos egy string.', - 'timezone' => 'Ennek érvényes zónának kell lennie.', - 'unique' => 'Ezt már elvitték.', - 'uploaded' => 'Ez nem sikerült feltölteni.', - 'url' => 'Ez a formátum érvénytelen.', - 'uuid' => 'Ennek érvényes UUID-nak kell lennie.', - 'custom' => [ + 'starts_with' => 'Ennek az alábbiak egyikével kell kezdődnie: :values.', + 'string' => 'Ez biztos egy string.', + 'timezone' => 'Ennek érvényes zónának kell lennie.', + 'unique' => 'Ezt már elvitték.', + 'uploaded' => 'Ez nem sikerült feltölteni.', + 'url' => 'Ez a formátum érvénytelen.', + 'uuid' => 'Ennek érvényes UUID-nak kell lennie.', + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], + 'attributes' => [], ]; diff --git a/lang/hu/validation.php b/lang/hu/validation.php index 4688fd5fb..8068ecf8c 100644 --- a/lang/hu/validation.php +++ b/lang/hu/validation.php @@ -12,123 +12,123 @@ */ return [ - 'accepted' => 'A(z) :attribute el kell legyen fogadva!', - 'active_url' => 'A(z) :attribute nem érvényes url!', - 'after' => 'A(z) :attribute :date utáni dátum kell, hogy legyen!', - 'after_or_equal' => 'A(z) :attribute nem lehet korábbi dátum, mint :date!', - 'alpha' => 'A(z) :attribute kizárólag betűket tartalmazhat!', - 'alpha_dash' => 'A(z) :attribute kizárólag betűket, számokat és kötőjeleket tartalmazhat!', - 'alpha_num' => 'A(z) :attribute kizárólag betűket és számokat tartalmazhat!', - 'array' => 'A(z) :attribute egy tömb kell, hogy legyen!', - 'attached' => 'Ezt a :attribute-at már csatolták.', - 'before' => 'A(z) :attribute :date előtti dátum kell, hogy legyen!', - 'before_or_equal' => 'A(z) :attribute nem lehet későbbi dátum, mint :date!', - 'between' => [ - 'array' => 'A(z) :attribute :min - :max közötti elemet kell, hogy tartalmazzon!', - 'file' => 'A(z) :attribute mérete :min és :max kilobájt között kell, hogy legyen!', + 'accepted' => 'A(z) :attribute el kell legyen fogadva!', + 'active_url' => 'A(z) :attribute nem érvényes url!', + 'after' => 'A(z) :attribute :date utáni dátum kell, hogy legyen!', + 'after_or_equal' => 'A(z) :attribute nem lehet korábbi dátum, mint :date!', + 'alpha' => 'A(z) :attribute kizárólag betűket tartalmazhat!', + 'alpha_dash' => 'A(z) :attribute kizárólag betűket, számokat és kötőjeleket tartalmazhat!', + 'alpha_num' => 'A(z) :attribute kizárólag betűket és számokat tartalmazhat!', + 'array' => 'A(z) :attribute egy tömb kell, hogy legyen!', + 'attached' => 'Ezt a :attribute-at már csatolták.', + 'before' => 'A(z) :attribute :date előtti dátum kell, hogy legyen!', + 'before_or_equal' => 'A(z) :attribute nem lehet későbbi dátum, mint :date!', + 'between' => [ + 'array' => 'A(z) :attribute :min - :max közötti elemet kell, hogy tartalmazzon!', + 'file' => 'A(z) :attribute mérete :min és :max kilobájt között kell, hogy legyen!', 'numeric' => 'A(z) :attribute :min és :max közötti szám kell, hogy legyen!', - 'string' => 'A(z) :attribute hossza :min és :max karakter között kell, hogy legyen!', + 'string' => 'A(z) :attribute hossza :min és :max karakter között kell, hogy legyen!', ], - 'boolean' => 'A(z) :attribute mező csak true vagy false értéket kaphat!', - 'confirmed' => 'A(z) :attribute nem egyezik a megerősítéssel.', - 'date' => 'A(z) :attribute nem érvényes dátum.', - 'date_equals' => ':attribute meg kell egyezzen a következővel: :date.', - 'date_format' => 'A(z) :attribute nem egyezik az alábbi dátum formátummal :format!', - 'different' => 'A(z) :attribute és :other értékei különbözőek kell, hogy legyenek!', - 'digits' => 'A(z) :attribute :digits számjegyű kell, hogy legyen!', - 'digits_between' => 'A(z) :attribute értéke :min és :max közötti számjegy lehet!', - 'dimensions' => 'A(z) :attribute felbontása nem megfelelő.', - 'distinct' => 'A(z) :attribute értékének egyedinek kell lennie!', - 'email' => 'A(z) :attribute nem érvényes email formátum.', - 'ends_with' => 'A(z) :attribute a következővel kell végződjön: :values', - 'exists' => 'A kiválasztott :attribute érvénytelen.', - 'file' => 'A(z) :attribute fájl kell, hogy legyen!', - 'filled' => 'A(z) :attribute megadása kötelező!', - 'gt' => [ - 'array' => 'A(z) :attribute több, mint :value elemet kell, hogy tartalmazzon.', - 'file' => 'A(z) :attribute mérete nagyobb kell, hogy legyen, mint :value kilobájt.', + 'boolean' => 'A(z) :attribute mező csak true vagy false értéket kaphat!', + 'confirmed' => 'A(z) :attribute nem egyezik a megerősítéssel.', + 'date' => 'A(z) :attribute nem érvényes dátum.', + 'date_equals' => ':attribute meg kell egyezzen a következővel: :date.', + 'date_format' => 'A(z) :attribute nem egyezik az alábbi dátum formátummal :format!', + 'different' => 'A(z) :attribute és :other értékei különbözőek kell, hogy legyenek!', + 'digits' => 'A(z) :attribute :digits számjegyű kell, hogy legyen!', + 'digits_between' => 'A(z) :attribute értéke :min és :max közötti számjegy lehet!', + 'dimensions' => 'A(z) :attribute felbontása nem megfelelő.', + 'distinct' => 'A(z) :attribute értékének egyedinek kell lennie!', + 'email' => 'A(z) :attribute nem érvényes email formátum.', + 'ends_with' => 'A(z) :attribute a következővel kell végződjön: :values', + 'exists' => 'A kiválasztott :attribute érvénytelen.', + 'file' => 'A(z) :attribute fájl kell, hogy legyen!', + 'filled' => 'A(z) :attribute megadása kötelező!', + 'gt' => [ + 'array' => 'A(z) :attribute több, mint :value elemet kell, hogy tartalmazzon.', + 'file' => 'A(z) :attribute mérete nagyobb kell, hogy legyen, mint :value kilobájt.', 'numeric' => 'A(z) :attribute nagyobb kell, hogy legyen, mint :value!', - 'string' => 'A(z) :attribute hosszabb kell, hogy legyen, mint :value karakter.', + 'string' => 'A(z) :attribute hosszabb kell, hogy legyen, mint :value karakter.', ], - 'gte' => [ - 'array' => 'A(z) :attribute legalább :value elemet kell, hogy tartalmazzon.', - 'file' => 'A(z) :attribute mérete nem lehet kevesebb, mint :value kilobájt.', + 'gte' => [ + 'array' => 'A(z) :attribute legalább :value elemet kell, hogy tartalmazzon.', + 'file' => 'A(z) :attribute mérete nem lehet kevesebb, mint :value kilobájt.', 'numeric' => 'A(z) :attribute nagyobb vagy egyenlő kell, hogy legyen, mint :value!', - 'string' => 'A(z) :attribute hossza nem lehet kevesebb, mint :value karakter.', + 'string' => 'A(z) :attribute hossza nem lehet kevesebb, mint :value karakter.', ], - 'image' => 'A(z) :attribute képfájl kell, hogy legyen!', - 'in' => 'A kiválasztott :attribute érvénytelen.', - 'in_array' => 'A(z) :attribute értéke nem található a(z) :other értékek között.', - 'integer' => 'A(z) :attribute értéke szám kell, hogy legyen!', - 'ip' => 'A(z) :attribute érvényes IP cím kell, hogy legyen!', - 'ipv4' => 'A(z) :attribute érvényes IPv4 cím kell, hogy legyen!', - 'ipv6' => 'A(z) :attribute érvényes IPv6 cím kell, hogy legyen!', - 'json' => 'A(z) :attribute érvényes JSON szöveg kell, hogy legyen!', - 'lt' => [ - 'array' => 'A(z) :attribute kevesebb, mint :value elemet kell, hogy tartalmazzon.', - 'file' => 'A(z) :attribute mérete kisebb kell, hogy legyen, mint :value kilobájt.', + 'image' => 'A(z) :attribute képfájl kell, hogy legyen!', + 'in' => 'A kiválasztott :attribute érvénytelen.', + 'in_array' => 'A(z) :attribute értéke nem található a(z) :other értékek között.', + 'integer' => 'A(z) :attribute értéke szám kell, hogy legyen!', + 'ip' => 'A(z) :attribute érvényes IP cím kell, hogy legyen!', + 'ipv4' => 'A(z) :attribute érvényes IPv4 cím kell, hogy legyen!', + 'ipv6' => 'A(z) :attribute érvényes IPv6 cím kell, hogy legyen!', + 'json' => 'A(z) :attribute érvényes JSON szöveg kell, hogy legyen!', + 'lt' => [ + 'array' => 'A(z) :attribute kevesebb, mint :value elemet kell, hogy tartalmazzon.', + 'file' => 'A(z) :attribute mérete kisebb kell, hogy legyen, mint :value kilobájt.', 'numeric' => 'A(z) :attribute kisebb kell, hogy legyen, mint :value!', - 'string' => 'A(z) :attribute rövidebb kell, hogy legyen, mint :value karakter.', + 'string' => 'A(z) :attribute rövidebb kell, hogy legyen, mint :value karakter.', ], - 'lte' => [ - 'array' => 'A(z) :attribute legfeljebb :value elemet kell, hogy tartalmazzon.', - 'file' => 'A(z) :attribute mérete nem lehet több, mint :value kilobájt.', + 'lte' => [ + 'array' => 'A(z) :attribute legfeljebb :value elemet kell, hogy tartalmazzon.', + 'file' => 'A(z) :attribute mérete nem lehet több, mint :value kilobájt.', 'numeric' => 'A(z) :attribute kisebb vagy egyenlő kell, hogy legyen, mint :value!', - 'string' => 'A(z) :attribute hossza nem lehet több, mint :value karakter.', + 'string' => 'A(z) :attribute hossza nem lehet több, mint :value karakter.', ], - 'max' => [ - 'array' => 'A(z) :attribute legfeljebb :max elemet kell, hogy tartalmazzon.', - 'file' => 'A(z) :attribute mérete nem lehet több, mint :max kilobájt.', + 'max' => [ + 'array' => 'A(z) :attribute legfeljebb :max elemet kell, hogy tartalmazzon.', + 'file' => 'A(z) :attribute mérete nem lehet több, mint :max kilobájt.', 'numeric' => 'A(z) :attribute értéke nem lehet nagyobb, mint :max!', - 'string' => 'A(z) :attribute hossza nem lehet több, mint :max karakter.', + 'string' => 'A(z) :attribute hossza nem lehet több, mint :max karakter.', ], - 'mimes' => 'A(z) :attribute kizárólag az alábbi fájlformátumok egyike lehet: :values.', - 'mimetypes' => 'A(z) :attribute kizárólag az alábbi fájlformátumok egyike lehet: :values.', - 'min' => [ - 'array' => 'A(z) :attribute legalább :min elemet kell, hogy tartalmazzon.', - 'file' => 'A(z) :attribute mérete nem lehet kevesebb, mint :min kilobájt.', + 'mimes' => 'A(z) :attribute kizárólag az alábbi fájlformátumok egyike lehet: :values.', + 'mimetypes' => 'A(z) :attribute kizárólag az alábbi fájlformátumok egyike lehet: :values.', + 'min' => [ + 'array' => 'A(z) :attribute legalább :min elemet kell, hogy tartalmazzon.', + 'file' => 'A(z) :attribute mérete nem lehet kevesebb, mint :min kilobájt.', 'numeric' => 'A(z) :attribute értéke nem lehet kisebb, mint :min!', - 'string' => 'A(z) :attribute hossza nem lehet kevesebb, mint :min karakter.', + 'string' => 'A(z) :attribute hossza nem lehet kevesebb, mint :min karakter.', ], - 'multiple_of' => 'A :attribute :value többszörösének kell lennie', - 'not_in' => 'A(z) :attribute értéke érvénytelen.', - 'not_regex' => 'A(z) :attribute formátuma érvénytelen.', - 'numeric' => 'A(z) :attribute szám kell, hogy legyen!', - 'password' => 'A(z) :attribute jelszónak kell, hogy legyen!', - 'present' => 'A(z) :attribute mező nem található!', - 'prohibited' => 'A :attribute mező tilos.', - 'prohibited_if' => 'A :attribute mező tilos, ha :other :value.', - 'prohibited_unless' => 'A :attribute mező tilos, kivéve, ha :other a :values.', - 'regex' => 'A(z) :attribute formátuma érvénytelen.', - 'relatable' => 'Lehet, hogy ez az :attribute nem kapcsolódik ehhez az erőforráshoz.', - 'required' => 'A(z) :attribute megadása kötelező!', - 'required_if' => 'A(z) :attribute megadása kötelező, ha a(z) :other értéke :value!', - 'required_unless' => 'A(z) :attribute megadása kötelező, ha a(z) :other értéke nem :values!', - 'required_with' => 'A(z) :attribute megadása kötelező, ha a(z) :values érték létezik.', - 'required_with_all' => 'A(z) :attribute megadása kötelező, ha a(z) :values értékek léteznek.', - 'required_without' => 'A(z) :attribute megadása kötelező, ha a(z) :values érték nem létezik.', + 'multiple_of' => 'A :attribute :value többszörösének kell lennie', + 'not_in' => 'A(z) :attribute értéke érvénytelen.', + 'not_regex' => 'A(z) :attribute formátuma érvénytelen.', + 'numeric' => 'A(z) :attribute szám kell, hogy legyen!', + 'password' => 'A(z) :attribute jelszónak kell, hogy legyen!', + 'present' => 'A(z) :attribute mező nem található!', + 'prohibited' => 'A :attribute mező tilos.', + 'prohibited_if' => 'A :attribute mező tilos, ha :other :value.', + 'prohibited_unless' => 'A :attribute mező tilos, kivéve, ha :other a :values.', + 'regex' => 'A(z) :attribute formátuma érvénytelen.', + 'relatable' => 'Lehet, hogy ez az :attribute nem kapcsolódik ehhez az erőforráshoz.', + 'required' => 'A(z) :attribute megadása kötelező!', + 'required_if' => 'A(z) :attribute megadása kötelező, ha a(z) :other értéke :value!', + 'required_unless' => 'A(z) :attribute megadása kötelező, ha a(z) :other értéke nem :values!', + 'required_with' => 'A(z) :attribute megadása kötelező, ha a(z) :values érték létezik.', + 'required_with_all' => 'A(z) :attribute megadása kötelező, ha a(z) :values értékek léteznek.', + 'required_without' => 'A(z) :attribute megadása kötelező, ha a(z) :values érték nem létezik.', 'required_without_all' => 'A(z) :attribute megadása kötelező, ha egyik :values érték sem létezik.', - 'same' => 'A(z) :attribute és :other mezőknek egyezniük kell!', - 'size' => [ - 'array' => 'A(z) :attribute :size elemet kell tartalmazzon!', - 'file' => 'A(z) :attribute mérete :size kilobájt kell, hogy legyen!', + 'same' => 'A(z) :attribute és :other mezőknek egyezniük kell!', + 'size' => [ + 'array' => 'A(z) :attribute :size elemet kell tartalmazzon!', + 'file' => 'A(z) :attribute mérete :size kilobájt kell, hogy legyen!', 'numeric' => 'A(z) :attribute értéke :size kell, hogy legyen!', - 'string' => 'A(z) :attribute hossza :size karakter kell, hogy legyen!', + 'string' => 'A(z) :attribute hossza :size karakter kell, hogy legyen!', ], - 'starts_with' => ':attribute a következővel kell kezdődjön: :values', - 'string' => 'A(z) :attribute szöveg kell, hogy legyen.', - 'timezone' => 'A(z) :attribute nem létező időzona.', - 'unique' => 'A(z) :attribute már foglalt.', - 'uploaded' => 'A(z) :attribute feltöltése sikertelen.', - 'url' => 'A(z) :attribute érvénytelen link.', - 'uuid' => ':attribute érvényes UUID-val kell rendelkezzen.', - 'custom' => [ + 'starts_with' => ':attribute a következővel kell kezdődjön: :values', + 'string' => 'A(z) :attribute szöveg kell, hogy legyen.', + 'timezone' => 'A(z) :attribute nem létező időzona.', + 'unique' => 'A(z) :attribute már foglalt.', + 'uploaded' => 'A(z) :attribute feltöltése sikertelen.', + 'url' => 'A(z) :attribute érvénytelen link.', + 'uuid' => ':attribute érvényes UUID-val kell rendelkezzen.', + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'name' => 'név', + 'attributes' => [ + 'name' => 'név', 'password' => 'jelszó', ], ]; diff --git a/lang/mn/auth.php b/lang/mn/auth.php index f8fc8091d..f8bee8bf8 100644 --- a/lang/mn/auth.php +++ b/lang/mn/auth.php @@ -12,7 +12,7 @@ */ return [ - 'failed' => 'Хэрэглэгчийн нэр эсвэл нууц үг буруу.', + 'failed' => 'Хэрэглэгчийн нэр эсвэл нууц үг буруу.', 'password' => 'The provided password is incorrect.', 'throttle' => 'Олон удаагийн буруу оролдого. :seconds секундийн дараа дахин оролдоно уу.', ]; diff --git a/lang/mn/pagination.php b/lang/mn/pagination.php index 3f430f7bd..d7ca815d6 100644 --- a/lang/mn/pagination.php +++ b/lang/mn/pagination.php @@ -12,6 +12,6 @@ */ return [ - 'next' => 'Дараах »', + 'next' => 'Дараах »', 'previous' => '« Өмнөх', ]; diff --git a/lang/mn/passwords.php b/lang/mn/passwords.php index 2efee2b98..0e724699d 100644 --- a/lang/mn/passwords.php +++ b/lang/mn/passwords.php @@ -12,9 +12,9 @@ */ return [ - 'reset' => 'Таний нууц үг шинэчлэгдсэн!', - 'sent' => 'Нууц үг сэргээх холбоосийг таний и-мэйл хаяг уруу явуулсан!', + 'reset' => 'Таний нууц үг шинэчлэгдсэн!', + 'sent' => 'Нууц үг сэргээх холбоосийг таний и-мэйл хаяг уруу явуулсан!', 'throttled' => 'Татаж өмнө хүлээх уу.', - 'token' => 'Алдаатай нууц үг сэргээх холбоос.', - 'user' => 'Ийм и-мэйл хаягтай хэрэглэгч олдсонгүй.', + 'token' => 'Алдаатай нууц үг сэргээх холбоос.', + 'user' => 'Ийм и-мэйл хаягтай хэрэглэгч олдсонгүй.', ]; diff --git a/lang/mn/validation-inline.php b/lang/mn/validation-inline.php index a1227ee7b..2088bb58e 100644 --- a/lang/mn/validation-inline.php +++ b/lang/mn/validation-inline.php @@ -12,120 +12,120 @@ */ return [ - 'accepted' => 'Энэ талбар нь Хүлээн авах естой.', - 'active_url' => 'Энэ нь хүчинтэй хаяг биш юм.', - 'after' => 'Энэ нь хойш огноо байх естой :date.', - 'after_or_equal' => 'Энэ нь хойш, эсвэл тэнцүү байх естой :date.', - 'alpha' => 'Энэ талбар нь зөвхөн захидал агуулж болно.', - 'alpha_dash' => 'Энэ талбар нь зөвхөн захидал, тоо, зураас ба тэмдэглэгээ агуулж болох юм.', - 'alpha_num' => 'Энэ талбар нь зөвхөн захидал болон дугааруудыг агуулж болох юм.', - 'array' => 'Энэ талбар нь массив байх естой.', - 'attached' => 'Энэ талбар нь аль хэдийн хавсаргасан байна.', - 'before' => 'Энэ нь өмнө нь өдөр байх естой :date.', - 'before_or_equal' => 'Энэ нь өмнө буюу тэнцүү байх естой :date.', - 'between' => [ - 'array' => 'This content must have between :min and :max items.', - 'file' => 'This file must be between :min and :max kilobytes.', + 'accepted' => 'Энэ талбар нь Хүлээн авах естой.', + 'active_url' => 'Энэ нь хүчинтэй хаяг биш юм.', + 'after' => 'Энэ нь хойш огноо байх естой :date.', + 'after_or_equal' => 'Энэ нь хойш, эсвэл тэнцүү байх естой :date.', + 'alpha' => 'Энэ талбар нь зөвхөн захидал агуулж болно.', + 'alpha_dash' => 'Энэ талбар нь зөвхөн захидал, тоо, зураас ба тэмдэглэгээ агуулж болох юм.', + 'alpha_num' => 'Энэ талбар нь зөвхөн захидал болон дугааруудыг агуулж болох юм.', + 'array' => 'Энэ талбар нь массив байх естой.', + 'attached' => 'Энэ талбар нь аль хэдийн хавсаргасан байна.', + 'before' => 'Энэ нь өмнө нь өдөр байх естой :date.', + 'before_or_equal' => 'Энэ нь өмнө буюу тэнцүү байх естой :date.', + 'between' => [ + 'array' => 'This content must have between :min and :max items.', + 'file' => 'This file must be between :min and :max kilobytes.', 'numeric' => 'This value must be between :min and :max.', - 'string' => 'This string must be between :min and :max characters.', + 'string' => 'This string must be between :min and :max characters.', ], - 'boolean' => 'Энэ талбар нь үнэн, худал байх естой.', - 'confirmed' => 'Баталгаа нь таарахгүй байна.', - 'date' => 'Энэ бол хүчинтэй хугацаа биш юм.', - 'date_equals' => 'Энэ нь :date-тай тэнцүү байх естой.', - 'date_format' => 'Энэ хэлбэр нь таарахгүй :format.', - 'different' => 'Энэ утга нь өөр байх естой :other.', - 'digits' => 'Энэ нь байх естой :digits тоо.', - 'digits_between' => 'Энэ хооронд байх естой :min, :max тоо.', - 'dimensions' => 'Энэ зураг нь хүчин төгөлдөр бус хэмжээ байна.', - 'distinct' => 'Энэ талбар нь давхардсан утгыг байна.', - 'email' => 'Энэ и-мэйл хаяг нь зөв байх естой.', - 'ends_with' => 'Энэ нь дараах аль нэгийг нь дуусгах естой: :values.', - 'exists' => 'Сонгосон утга буруу байна.', - 'file' => 'Агуулга нь файл байх естой.', - 'filled' => 'Энэ талбар нь утга байх естой.', - 'gt' => [ - 'array' => 'The content must have more than :value items.', - 'file' => 'The file size must be greater than :value kilobytes.', + 'boolean' => 'Энэ талбар нь үнэн, худал байх естой.', + 'confirmed' => 'Баталгаа нь таарахгүй байна.', + 'date' => 'Энэ бол хүчинтэй хугацаа биш юм.', + 'date_equals' => 'Энэ нь :date-тай тэнцүү байх естой.', + 'date_format' => 'Энэ хэлбэр нь таарахгүй :format.', + 'different' => 'Энэ утга нь өөр байх естой :other.', + 'digits' => 'Энэ нь байх естой :digits тоо.', + 'digits_between' => 'Энэ хооронд байх естой :min, :max тоо.', + 'dimensions' => 'Энэ зураг нь хүчин төгөлдөр бус хэмжээ байна.', + 'distinct' => 'Энэ талбар нь давхардсан утгыг байна.', + 'email' => 'Энэ и-мэйл хаяг нь зөв байх естой.', + 'ends_with' => 'Энэ нь дараах аль нэгийг нь дуусгах естой: :values.', + 'exists' => 'Сонгосон утга буруу байна.', + 'file' => 'Агуулга нь файл байх естой.', + 'filled' => 'Энэ талбар нь утга байх естой.', + 'gt' => [ + 'array' => 'The content must have more than :value items.', + 'file' => 'The file size must be greater than :value kilobytes.', 'numeric' => 'The value must be greater than :value.', - 'string' => 'The string must be greater than :value characters.', + 'string' => 'The string must be greater than :value characters.', ], - 'gte' => [ - 'array' => 'The content must have :value items or more.', - 'file' => 'The file size must be greater than or equal :value kilobytes.', + 'gte' => [ + 'array' => 'The content must have :value items or more.', + 'file' => 'The file size must be greater than or equal :value kilobytes.', 'numeric' => 'The value must be greater than or equal :value.', - 'string' => 'The string must be greater than or equal :value characters.', + 'string' => 'The string must be greater than or equal :value characters.', ], - 'image' => 'Энэ нь зураг байх естой.', - 'in' => 'Сонгосон утга буруу байна.', - 'in_array' => 'Энэ утга нь байхгүй байна :other.', - 'integer' => 'Энэ нь бүхэл бүтэн байх естой.', - 'ip' => 'Энэ нь хүчинтэй ЦИ-ийн хаяг байх естой.', - 'ipv4' => 'Уг хаяг нь хүчинтэй ЦТ 4-ийн хаяг байх естой.', - 'ipv6' => 'Гэхдээ энэ нь ЦИ-гийн хүчинтэй хаяг байх естой.', - 'json' => 'Энэ нь жинхэнэ Жон мөр байх естой.', - 'lt' => [ - 'array' => 'The content must have less than :value items.', - 'file' => 'The file size must be less than :value kilobytes.', + 'image' => 'Энэ нь зураг байх естой.', + 'in' => 'Сонгосон утга буруу байна.', + 'in_array' => 'Энэ утга нь байхгүй байна :other.', + 'integer' => 'Энэ нь бүхэл бүтэн байх естой.', + 'ip' => 'Энэ нь хүчинтэй ЦИ-ийн хаяг байх естой.', + 'ipv4' => 'Уг хаяг нь хүчинтэй ЦТ 4-ийн хаяг байх естой.', + 'ipv6' => 'Гэхдээ энэ нь ЦИ-гийн хүчинтэй хаяг байх естой.', + 'json' => 'Энэ нь жинхэнэ Жон мөр байх естой.', + 'lt' => [ + 'array' => 'The content must have less than :value items.', + 'file' => 'The file size must be less than :value kilobytes.', 'numeric' => 'The value must be less than :value.', - 'string' => 'The string must be less than :value characters.', + 'string' => 'The string must be less than :value characters.', ], - 'lte' => [ - 'array' => 'The content must not have more than :value items.', - 'file' => 'The file size must be less than or equal :value kilobytes.', + 'lte' => [ + 'array' => 'The content must not have more than :value items.', + 'file' => 'The file size must be less than or equal :value kilobytes.', 'numeric' => 'The value must be less than or equal :value.', - 'string' => 'The string must be less than or equal :value characters.', + 'string' => 'The string must be less than or equal :value characters.', ], - 'max' => [ - 'array' => 'The content may not have more than :max items.', - 'file' => 'The file size may not be greater than :max kilobytes.', + 'max' => [ + 'array' => 'The content may not have more than :max items.', + 'file' => 'The file size may not be greater than :max kilobytes.', 'numeric' => 'The value may not be greater than :max.', - 'string' => 'The string may not be greater than :max characters.', + 'string' => 'The string may not be greater than :max characters.', ], - 'mimes' => 'Энэ төрлийн файл байх естой: :values.', - 'mimetypes' => 'Энэ төрлийн файл байх естой: :values.', - 'min' => [ - 'array' => 'The value must have at least :min items.', - 'file' => 'The file size must be at least :min kilobytes.', + 'mimes' => 'Энэ төрлийн файл байх естой: :values.', + 'mimetypes' => 'Энэ төрлийн файл байх естой: :values.', + 'min' => [ + 'array' => 'The value must have at least :min items.', + 'file' => 'The file size must be at least :min kilobytes.', 'numeric' => 'The value must be at least :min.', - 'string' => 'The string must be at least :min characters.', + 'string' => 'The string must be at least :min characters.', ], - 'multiple_of' => 'Утга нь олон байх естой :value', - 'not_in' => 'Сонгосон утга буруу байна.', - 'not_regex' => 'Энэ хэлбэр нь хүчин төгөлдөр бус байна.', - 'numeric' => 'Энэ нь тоо байх естой.', - 'password' => 'Нууц үг буруу.', - 'present' => 'Энэ талбар нь байх естой.', - 'prohibited' => 'Энэ талбар нь хориглосон байна.', - 'prohibited_if' => ':other онд :value он байх үед энэ талбарт хориглоно.', - 'prohibited_unless' => 'Энэ талбар нь бол хориглосон байна :other онд байна :values.', - 'regex' => 'Энэ хэлбэр нь хүчин төгөлдөр бус байна.', - 'relatable' => 'Энэ талбар нь энэ нөөцийн холбоотой байж болох юм.', - 'required' => 'Энэ талбар нь шаардлагатай байна.', - 'required_if' => 'Энэ талбар нь шаардлагатай үед 305 байна :value.', - 'required_unless' => 'Энэ талбар нь бол шаардлагатай :other байна :values.', - 'required_with' => 'Энэ талбар нь шаардлагатай үед :values байгаа.', - 'required_with_all' => 'Энэ талбар нь :values байгаа үед шаардлагатай.', - 'required_without' => 'Энэ талбар нь шаардлагатай үед :values байхгүй байна.', + 'multiple_of' => 'Утга нь олон байх естой :value', + 'not_in' => 'Сонгосон утга буруу байна.', + 'not_regex' => 'Энэ хэлбэр нь хүчин төгөлдөр бус байна.', + 'numeric' => 'Энэ нь тоо байх естой.', + 'password' => 'Нууц үг буруу.', + 'present' => 'Энэ талбар нь байх естой.', + 'prohibited' => 'Энэ талбар нь хориглосон байна.', + 'prohibited_if' => ':other онд :value он байх үед энэ талбарт хориглоно.', + 'prohibited_unless' => 'Энэ талбар нь бол хориглосон байна :other онд байна :values.', + 'regex' => 'Энэ хэлбэр нь хүчин төгөлдөр бус байна.', + 'relatable' => 'Энэ талбар нь энэ нөөцийн холбоотой байж болох юм.', + 'required' => 'Энэ талбар нь шаардлагатай байна.', + 'required_if' => 'Энэ талбар нь шаардлагатай үед 305 байна :value.', + 'required_unless' => 'Энэ талбар нь бол шаардлагатай :other байна :values.', + 'required_with' => 'Энэ талбар нь шаардлагатай үед :values байгаа.', + 'required_with_all' => 'Энэ талбар нь :values байгаа үед шаардлагатай.', + 'required_without' => 'Энэ талбар нь шаардлагатай үед :values байхгүй байна.', 'required_without_all' => 'Энэ талбар нь Ч шаардлагатай үед :values байгаа.', - 'same' => 'Энэ салбарын үнэ цэнэ нь нэг нь тохирох естой :other.', - 'size' => [ - 'array' => 'The content must contain :size items.', - 'file' => 'The file size must be :size kilobytes.', + 'same' => 'Энэ салбарын үнэ цэнэ нь нэг нь тохирох естой :other.', + 'size' => [ + 'array' => 'The content must contain :size items.', + 'file' => 'The file size must be :size kilobytes.', 'numeric' => 'The value must be :size.', - 'string' => 'The string must be :size characters.', + 'string' => 'The string must be :size characters.', ], - 'starts_with' => 'Энэ нь дараах нэг эхлэх естой: :values.', - 'string' => 'Энэ нь мөр байх естой.', - 'timezone' => 'Энэ нь хүчин төгөлдөр бүс байх естой.', - 'unique' => 'Энэ нь аль хэдийн авч байна.', - 'uploaded' => 'Энэ нь хуулж чадаагүй.', - 'url' => 'Энэ хэлбэр нь хүчин төгөлдөр бус байна.', - 'uuid' => 'Энэ нь хүчин төгөлдөр хамгаалалт байх естой.', - 'custom' => [ + 'starts_with' => 'Энэ нь дараах нэг эхлэх естой: :values.', + 'string' => 'Энэ нь мөр байх естой.', + 'timezone' => 'Энэ нь хүчин төгөлдөр бүс байх естой.', + 'unique' => 'Энэ нь аль хэдийн авч байна.', + 'uploaded' => 'Энэ нь хуулж чадаагүй.', + 'url' => 'Энэ хэлбэр нь хүчин төгөлдөр бус байна.', + 'uuid' => 'Энэ нь хүчин төгөлдөр хамгаалалт байх естой.', + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], + 'attributes' => [], ]; diff --git a/lang/mn/validation.php b/lang/mn/validation.php index 0c4dfce89..123ac5d58 100644 --- a/lang/mn/validation.php +++ b/lang/mn/validation.php @@ -12,120 +12,120 @@ */ return [ - 'accepted' => ':Attribute баталсан байх шаардлагатай.', - 'active_url' => ':Attribute талбарт зөв URL хаяг оруулна уу.', - 'after' => ':Attribute талбарт :date-с хойш огноо оруулна уу.', - 'after_or_equal' => ':Attribute талбарт :date эсвэл түүнээс хойш огноо оруулна уу.', - 'alpha' => ':Attribute талбарт латин үсэг оруулна уу.', - 'alpha_dash' => ':Attribute талбарт латин үсэг, тоо болон зураас оруулах боломжтой.', - 'alpha_num' => ':Attribute талбарт латин үсэг болон тоо оруулах боломжтой.', - 'array' => ':Attribute талбар массив байх шаардлагатай.', - 'attached' => 'Энэ нь :attribute аль хэдийн хавсаргасан байна.', - 'before' => ':Attribute талбарт :date-с өмнөх огноо оруулна уу.', - 'before_or_equal' => ':attribute талбарт :date эсвэл түүнээс өмнөх огноо оруулна уу.', - 'between' => [ - 'array' => ':Attribute массивт :min-:max элемэнт байх шаардлагатай.', - 'file' => ':Attribute талбарт :min-:max килобайт хэмжээтэй файл оруулна уу.', + 'accepted' => ':Attribute баталсан байх шаардлагатай.', + 'active_url' => ':Attribute талбарт зөв URL хаяг оруулна уу.', + 'after' => ':Attribute талбарт :date-с хойш огноо оруулна уу.', + 'after_or_equal' => ':Attribute талбарт :date эсвэл түүнээс хойш огноо оруулна уу.', + 'alpha' => ':Attribute талбарт латин үсэг оруулна уу.', + 'alpha_dash' => ':Attribute талбарт латин үсэг, тоо болон зураас оруулах боломжтой.', + 'alpha_num' => ':Attribute талбарт латин үсэг болон тоо оруулах боломжтой.', + 'array' => ':Attribute талбар массив байх шаардлагатай.', + 'attached' => 'Энэ нь :attribute аль хэдийн хавсаргасан байна.', + 'before' => ':Attribute талбарт :date-с өмнөх огноо оруулна уу.', + 'before_or_equal' => ':attribute талбарт :date эсвэл түүнээс өмнөх огноо оруулна уу.', + 'between' => [ + 'array' => ':Attribute массивт :min-:max элемэнт байх шаардлагатай.', + 'file' => ':Attribute талбарт :min-:max килобайт хэмжээтэй файл оруулна уу.', 'numeric' => ':Attribute талбарт :min-:max хооронд тоо оруулна уу.', - 'string' => ':Attribute талбарт :min-:max урттай текст оруулна уу.', + 'string' => ':Attribute талбарт :min-:max урттай текст оруулна уу.', ], - 'boolean' => ':Attribute талбарын утга үнэн эсвэл худал байх шаардлагатай.', - 'confirmed' => ':Attribute талбарын баталагажуулалт тохирохгүй байна.', - 'date' => ':Attribute талбарт оруулсан огноо буруу байна.', - 'date_equals' => ':attribute нь :date онтой тэнцүү байх естой.', - 'date_format' => ':Attribute талбарт :format хэлбэртэй огноо оруулна уу.', - 'different' => ':Attribute талбарт :other -с өөр утга оруулах шаардлагатай.', - 'digits' => ':Attribute талбарт дараах цифрүүдээс оруулах боломжтой. :digits.', - 'digits_between' => ':Attribute талбарт :min-:max хоорондох цифр оруулах боломжтой.', - 'dimensions' => ':Attribute талбарийн зургийн хэмжээс буруу байна.', - 'distinct' => ':Attribute талбарт ялгаатай утга оруулах шаардлагатай.', - 'email' => ':Attribute талбарт зөв и-мэйл хаяг оруулах шаардлагатай.', - 'ends_with' => ':attribute дараах аль нэгийг нь дуусгах естой: :values.', - 'exists' => 'Сонгогдсон :attribute буруу байна.', - 'file' => ':Attribute талбарт файл оруулах шаардлагатай.', - 'filled' => ':Attribute талбар шаардлагатай.', - 'gt' => [ - 'array' => 'The :attribute must have more than :value items.', - 'file' => 'The :attribute must be greater than :value kilobytes.', + 'boolean' => ':Attribute талбарын утга үнэн эсвэл худал байх шаардлагатай.', + 'confirmed' => ':Attribute талбарын баталагажуулалт тохирохгүй байна.', + 'date' => ':Attribute талбарт оруулсан огноо буруу байна.', + 'date_equals' => ':attribute нь :date онтой тэнцүү байх естой.', + 'date_format' => ':Attribute талбарт :format хэлбэртэй огноо оруулна уу.', + 'different' => ':Attribute талбарт :other -с өөр утга оруулах шаардлагатай.', + 'digits' => ':Attribute талбарт дараах цифрүүдээс оруулах боломжтой. :digits.', + 'digits_between' => ':Attribute талбарт :min-:max хоорондох цифр оруулах боломжтой.', + 'dimensions' => ':Attribute талбарийн зургийн хэмжээс буруу байна.', + 'distinct' => ':Attribute талбарт ялгаатай утга оруулах шаардлагатай.', + 'email' => ':Attribute талбарт зөв и-мэйл хаяг оруулах шаардлагатай.', + 'ends_with' => ':attribute дараах аль нэгийг нь дуусгах естой: :values.', + 'exists' => 'Сонгогдсон :attribute буруу байна.', + 'file' => ':Attribute талбарт файл оруулах шаардлагатай.', + 'filled' => ':Attribute талбар шаардлагатай.', + 'gt' => [ + 'array' => 'The :attribute must have more than :value items.', + 'file' => 'The :attribute must be greater than :value kilobytes.', 'numeric' => 'The :attribute must be greater than :value.', - 'string' => 'The :attribute must be greater than :value characters.', + 'string' => 'The :attribute must be greater than :value characters.', ], - 'gte' => [ - 'array' => 'The :attribute must have :value items or more.', - 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'gte' => [ + 'array' => 'The :attribute must have :value items or more.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', 'numeric' => 'The :attribute must be greater than or equal :value.', - 'string' => 'The :attribute must be greater than or equal :value characters.', + 'string' => 'The :attribute must be greater than or equal :value characters.', ], - 'image' => ':Attribute талбарт зураг оруулна уу.', - 'in' => 'Сонгогдсон :attribute буруу байна.', - 'in_array' => ':Attribute талбарт оруулсан утга :other -д байхгүй байна.', - 'integer' => ':Attribute талбарт бүхэл тоо оруулах шаардлагатай.', - 'ip' => ':Attribute талбарт зөв IP хаяг оруулах шаардлагатай.', - 'ipv4' => ':attribute нь хүчинтэй ЦТ 4-р хаяг байх естой.', - 'ipv6' => ':attribute нь хүчин төгөлдөр Атв6 хаяг байх естой.', - 'json' => ':Attribute талбарт зөв JSON тэмдэгт мөр оруулах шаардлагатай.', - 'lt' => [ - 'array' => 'The :attribute must have less than :value items.', - 'file' => 'The :attribute must be less than :value kilobytes.', + 'image' => ':Attribute талбарт зураг оруулна уу.', + 'in' => 'Сонгогдсон :attribute буруу байна.', + 'in_array' => ':Attribute талбарт оруулсан утга :other -д байхгүй байна.', + 'integer' => ':Attribute талбарт бүхэл тоо оруулах шаардлагатай.', + 'ip' => ':Attribute талбарт зөв IP хаяг оруулах шаардлагатай.', + 'ipv4' => ':attribute нь хүчинтэй ЦТ 4-р хаяг байх естой.', + 'ipv6' => ':attribute нь хүчин төгөлдөр Атв6 хаяг байх естой.', + 'json' => ':Attribute талбарт зөв JSON тэмдэгт мөр оруулах шаардлагатай.', + 'lt' => [ + 'array' => 'The :attribute must have less than :value items.', + 'file' => 'The :attribute must be less than :value kilobytes.', 'numeric' => 'The :attribute must be less than :value.', - 'string' => 'The :attribute must be less than :value characters.', + 'string' => 'The :attribute must be less than :value characters.', ], - 'lte' => [ - 'array' => 'The :attribute must not have more than :value items.', - 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'lte' => [ + 'array' => 'The :attribute must not have more than :value items.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', 'numeric' => 'The :attribute must be less than or equal :value.', - 'string' => 'The :attribute must be less than or equal :value characters.', + 'string' => 'The :attribute must be less than or equal :value characters.', ], - 'max' => [ - 'array' => ':Attribute талбарт хамгийн ихдээ :max элемэнт оруулах боломжтой.', - 'file' => ':Attribute талбарт :max килобайтаас бага хэмжээтэй файл оруулна уу.', + 'max' => [ + 'array' => ':Attribute талбарт хамгийн ихдээ :max элемэнт оруулах боломжтой.', + 'file' => ':Attribute талбарт :max килобайтаас бага хэмжээтэй файл оруулна уу.', 'numeric' => ':Attribute талбарт :max буюу түүнээс бага утга оруулна уу.', - 'string' => ':Attribute талбарт :max-с бага урттай текст оруулна уу.', + 'string' => ':Attribute талбарт :max-с бага урттай текст оруулна уу.', ], - 'mimes' => ':Attribute талбарт дараах төрлийн файл оруулах боломжтой: :values.', - 'mimetypes' => ':Attribute талбарт дараах төрлийн файл оруулах боломжтой: :values.', - 'min' => [ - 'array' => ':Attribute талбарт хамгийн багадаа :min элемэнт оруулах боломжтой.', - 'file' => ':Attribute талбарт :min килобайтаас их хэмжээтэй файл оруулна уу.', + 'mimes' => ':Attribute талбарт дараах төрлийн файл оруулах боломжтой: :values.', + 'mimetypes' => ':Attribute талбарт дараах төрлийн файл оруулах боломжтой: :values.', + 'min' => [ + 'array' => ':Attribute талбарт хамгийн багадаа :min элемэнт оруулах боломжтой.', + 'file' => ':Attribute талбарт :min килобайтаас их хэмжээтэй файл оруулна уу.', 'numeric' => ':Attribute талбарт :min буюу түүнээс их тоо оруулна уу.', - 'string' => ':Attribute талбарт :min буюу түүнээс их үсэг бүхий текст оруулна уу.', + 'string' => ':Attribute талбарт :min буюу түүнээс их үсэг бүхий текст оруулна уу.', ], - 'multiple_of' => ':attribute нь олон байх естой :value', - 'not_in' => 'Буруу :attribute сонгогдсон байна.', - 'not_regex' => ':attribute хэлбэр нь хүчин төгөлдөр бус байна.', - 'numeric' => ':Attribute талбарт тоон утга оруулна уу.', - 'password' => 'Нууц үг буруу.', - 'present' => ':Attribute талбар байх шаардлагатай.', - 'prohibited' => ':attribute талбар нь хориглоно.', - 'prohibited_if' => ':other нь :value үед :attribute талбар нь хориглоно.', - 'prohibited_unless' => ':attribute салбарт бол хориглоно :other нь :values.', - 'regex' => ':Attribute талбарт оруулсан утга буруу байна.', - 'relatable' => 'Энэ нь :attribute энэ нөөц холбоотой байж болно.', - 'required' => ':Attribute талбар шаардлагатай.', - 'required_if' => 'Хэрэв :other :value бол :attribute табларт утга оруулах шаардлагатай.', - 'required_unless' => ':other :values дотор байхгүй бол :attribute талбарт утга оруулах шаардлагатай.', - 'required_with' => ':values утгуудийн аль нэг байвал :attribute талбар шаардлагатай.', - 'required_with_all' => ':values утгууд байвал :attribute талбар шаардлагатай.', - 'required_without' => ':attribute талбар нь :values байхгүй үед шаардлагатай байна.', + 'multiple_of' => ':attribute нь олон байх естой :value', + 'not_in' => 'Буруу :attribute сонгогдсон байна.', + 'not_regex' => ':attribute хэлбэр нь хүчин төгөлдөр бус байна.', + 'numeric' => ':Attribute талбарт тоон утга оруулна уу.', + 'password' => 'Нууц үг буруу.', + 'present' => ':Attribute талбар байх шаардлагатай.', + 'prohibited' => ':attribute талбар нь хориглоно.', + 'prohibited_if' => ':other нь :value үед :attribute талбар нь хориглоно.', + 'prohibited_unless' => ':attribute салбарт бол хориглоно :other нь :values.', + 'regex' => ':Attribute талбарт оруулсан утга буруу байна.', + 'relatable' => 'Энэ нь :attribute энэ нөөц холбоотой байж болно.', + 'required' => ':Attribute талбар шаардлагатай.', + 'required_if' => 'Хэрэв :other :value бол :attribute табларт утга оруулах шаардлагатай.', + 'required_unless' => ':other :values дотор байхгүй бол :attribute талбарт утга оруулах шаардлагатай.', + 'required_with' => ':values утгуудийн аль нэг байвал :attribute талбар шаардлагатай.', + 'required_with_all' => ':values утгууд байвал :attribute талбар шаардлагатай.', + 'required_without' => ':attribute талбар нь :values байхгүй үед шаардлагатай байна.', 'required_without_all' => 'Аль нь ч байхгүй үед :attribute талбар шаардлагатай байна :values байгаа.', - 'same' => ':attribute болон :other тохирох естой.', - 'size' => [ - 'array' => ':Attribute :size элемэнттэй байх шаардлагатай.', - 'file' => ':Attribute :size килобайт хэмжээтэй байх шаардлагатай.', + 'same' => ':attribute болон :other тохирох естой.', + 'size' => [ + 'array' => ':Attribute :size элемэнттэй байх шаардлагатай.', + 'file' => ':Attribute :size килобайт хэмжээтэй байх шаардлагатай.', 'numeric' => ':Attribute :size хэмжээтэй байх шаардлагатай.', - 'string' => ':Attribute :size тэмдэгтийн урттай байх шаардлагатай.', + 'string' => ':Attribute :size тэмдэгтийн урттай байх шаардлагатай.', ], - 'starts_with' => ':attribute дараах аль нэг нь эхлэх естой: :values.', - 'string' => ':Attribute талбарт текст оруулна уу.', - 'timezone' => ':Attribute талбарт зөв цагийн бүс оруулна уу.', - 'unique' => 'Оруулсан :attribute аль хэдий нь бүртгэгдсэн байна.', - 'uploaded' => ':Attribute талбарт оруулсан файлыг хуулхад алдаа гарлаа.', - 'url' => ':Attribute зөв url хаяг оруулна уу.', - 'uuid' => ':attribute хүчин төгөлдөр хуучин төгөлдөр улс байх естой.', - 'custom' => [ + 'starts_with' => ':attribute дараах аль нэг нь эхлэх естой: :values.', + 'string' => ':Attribute талбарт текст оруулна уу.', + 'timezone' => ':Attribute талбарт зөв цагийн бүс оруулна уу.', + 'unique' => 'Оруулсан :attribute аль хэдий нь бүртгэгдсэн байна.', + 'uploaded' => ':Attribute талбарт оруулсан файлыг хуулхад алдаа гарлаа.', + 'url' => ':Attribute зөв url хаяг оруулна уу.', + 'uuid' => ':attribute хүчин төгөлдөр хуучин төгөлдөр улс байх естой.', + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], + 'attributes' => [], ]; diff --git a/lang/nl/auth.php b/lang/nl/auth.php index 062343fbe..d20693a91 100644 --- a/lang/nl/auth.php +++ b/lang/nl/auth.php @@ -12,7 +12,7 @@ */ return [ - 'failed' => 'Deze combinatie van e-mailadres en wachtwoord is niet geldig.', + 'failed' => 'Deze combinatie van e-mailadres en wachtwoord is niet geldig.', 'password' => 'Het opgegeven wachtwoord is onjuist.', 'throttle' => 'Te veel mislukte loginpogingen. Probeer het over :seconds seconden nogmaals.', ]; diff --git a/lang/nl/pagination.php b/lang/nl/pagination.php index 1381d2b75..2c22cc71f 100644 --- a/lang/nl/pagination.php +++ b/lang/nl/pagination.php @@ -12,6 +12,6 @@ */ return [ - 'next' => 'Volgende »', + 'next' => 'Volgende »', 'previous' => '« Vorige', ]; diff --git a/lang/nl/passwords.php b/lang/nl/passwords.php index c9a7a8432..f1d83bb75 100644 --- a/lang/nl/passwords.php +++ b/lang/nl/passwords.php @@ -12,9 +12,9 @@ */ return [ - 'reset' => 'Het wachtwoord van uw account is gewijzigd.', - 'sent' => 'We hebben een e-mail verstuurd met instructies om een nieuw wachtwoord in te stellen.', + 'reset' => 'Het wachtwoord van uw account is gewijzigd.', + 'sent' => 'We hebben een e-mail verstuurd met instructies om een nieuw wachtwoord in te stellen.', 'throttled' => 'Gelieve even te wachten voor u het opnieuw probeert.', - 'token' => 'Dit wachtwoordhersteltoken is niet geldig.', - 'user' => 'Geen gebruiker bekend met het e-mailadres.', + 'token' => 'Dit wachtwoordhersteltoken is niet geldig.', + 'user' => 'Geen gebruiker bekend met het e-mailadres.', ]; diff --git a/lang/nl/validation-inline.php b/lang/nl/validation-inline.php index 5cc64e882..c2cab413b 100644 --- a/lang/nl/validation-inline.php +++ b/lang/nl/validation-inline.php @@ -12,120 +12,120 @@ */ return [ - 'accepted' => 'Dit veld moet geaccepteerd zijn.', - 'active_url' => 'Dit is geen geldige URL.', - 'after' => 'Dit moet een datum na :date zijn.', - 'after_or_equal' => 'Dit moet een datum na of gelijk aan :date zijn.', - 'alpha' => 'Dit veld mag alleen letters bevatten.', - 'alpha_dash' => 'Dit veld mag alleen letters, nummers, underscores (_) en streepjes (-) bevatten.', - 'alpha_num' => 'Dit veld mag alleen letters en nummers bevatten.', - 'array' => 'Dit veld moet geselecteerde elementen bevatten.', - 'attached' => 'Dit veld is reeds gekoppeld.', - 'before' => 'Dit moet een datum voor :date zijn.', - 'before_or_equal' => 'Dit moet een datum voor of gelijk aan :date zijn.', - 'between' => [ - 'array' => 'Dit moet tussen :min en :max items bevatten.', - 'file' => 'Dit moet tussen :min en :max kilobytes zijn.', + 'accepted' => 'Dit veld moet geaccepteerd zijn.', + 'active_url' => 'Dit is geen geldige URL.', + 'after' => 'Dit moet een datum na :date zijn.', + 'after_or_equal' => 'Dit moet een datum na of gelijk aan :date zijn.', + 'alpha' => 'Dit veld mag alleen letters bevatten.', + 'alpha_dash' => 'Dit veld mag alleen letters, nummers, underscores (_) en streepjes (-) bevatten.', + 'alpha_num' => 'Dit veld mag alleen letters en nummers bevatten.', + 'array' => 'Dit veld moet geselecteerde elementen bevatten.', + 'attached' => 'Dit veld is reeds gekoppeld.', + 'before' => 'Dit moet een datum voor :date zijn.', + 'before_or_equal' => 'Dit moet een datum voor of gelijk aan :date zijn.', + 'between' => [ + 'array' => 'Dit moet tussen :min en :max items bevatten.', + 'file' => 'Dit moet tussen :min en :max kilobytes zijn.', 'numeric' => 'Dit moet tussen :min en :max zijn.', - 'string' => 'Dit moet tussen :min en :max karakters zijn.', + 'string' => 'Dit moet tussen :min en :max karakters zijn.', ], - 'boolean' => 'Dit veld moet ja of nee zijn.', - 'confirmed' => 'De bevestiging komt niet overeen.', - 'date' => 'Dit is geen geldige datum', - 'date_equals' => 'Dit moet een datum gelijk aan :date zijn.', - 'date_format' => 'Dit voldoet niet aan het formaat :format.', - 'different' => 'Dit en :other moeten verschillend zijn.', - 'digits' => 'Dit moet bestaan uit :digits cijfers.', - 'digits_between' => 'Dit moet bestaan uit minimaal :min en maximaal :max cijfers.', - 'dimensions' => 'Deze afbeelding heeft geen geldige afmetingen.', - 'distinct' => 'Dit veld heeft een dubbele waarde.', - 'email' => 'Dit is geen geldig e-mailadres.', - 'ends_with' => 'Dit moet met één van de volgende waarden eindigen: :values.', - 'exists' => 'De geselecteerde waarde bestaat niet.', - 'file' => 'Dit moet een bestand zijn.', - 'filled' => 'Dit veld is verplicht.', - 'gt' => [ - 'array' => 'De inhoud moet meer dan :value waardes bevatten.', - 'file' => 'Het bestand moet groter zijn dan :value kilobytes.', + 'boolean' => 'Dit veld moet ja of nee zijn.', + 'confirmed' => 'De bevestiging komt niet overeen.', + 'date' => 'Dit is geen geldige datum', + 'date_equals' => 'Dit moet een datum gelijk aan :date zijn.', + 'date_format' => 'Dit voldoet niet aan het formaat :format.', + 'different' => 'Dit en :other moeten verschillend zijn.', + 'digits' => 'Dit moet bestaan uit :digits cijfers.', + 'digits_between' => 'Dit moet bestaan uit minimaal :min en maximaal :max cijfers.', + 'dimensions' => 'Deze afbeelding heeft geen geldige afmetingen.', + 'distinct' => 'Dit veld heeft een dubbele waarde.', + 'email' => 'Dit is geen geldig e-mailadres.', + 'ends_with' => 'Dit moet met één van de volgende waarden eindigen: :values.', + 'exists' => 'De geselecteerde waarde bestaat niet.', + 'file' => 'Dit moet een bestand zijn.', + 'filled' => 'Dit veld is verplicht.', + 'gt' => [ + 'array' => 'De inhoud moet meer dan :value waardes bevatten.', + 'file' => 'Het bestand moet groter zijn dan :value kilobytes.', 'numeric' => 'De waarde moet groter zijn dan :value.', - 'string' => 'De waarde moet meer dan :value tekens bevatten.', + 'string' => 'De waarde moet meer dan :value tekens bevatten.', ], - 'gte' => [ - 'array' => 'De inhoud moet :value waardes of meer bevatten.', - 'file' => 'Het bestand moet groter of gelijk zijn aan :value kilobytes.', + 'gte' => [ + 'array' => 'De inhoud moet :value waardes of meer bevatten.', + 'file' => 'Het bestand moet groter of gelijk zijn aan :value kilobytes.', 'numeric' => 'De waarde moet groter of gelijk zijn aan :value.', - 'string' => 'De waarde moet minimaal :value tekens bevatten.', + 'string' => 'De waarde moet minimaal :value tekens bevatten.', ], - 'image' => 'Dit moet een afbeelding zijn.', - 'in' => 'De geselecteerde waarde is ongeldig.', - 'in_array' => 'Deze waarde bestaat niet in :other.', - 'integer' => 'Dit moet een getal zijn.', - 'ip' => 'Dit moet een geldig IP-adres zijn.', - 'ipv4' => 'Dit moet een geldig IPv4-adres zijn.', - 'ipv6' => 'Dit moet een geldig IPv6-adres zijn.', - 'json' => 'Dit moet een geldige JSON-string zijn.', - 'lt' => [ - 'array' => 'De inhoud moet minder dan :value waardes bevatten.', - 'file' => 'Het bestand moet kleiner zijn dan :value kilobytes.', + 'image' => 'Dit moet een afbeelding zijn.', + 'in' => 'De geselecteerde waarde is ongeldig.', + 'in_array' => 'Deze waarde bestaat niet in :other.', + 'integer' => 'Dit moet een getal zijn.', + 'ip' => 'Dit moet een geldig IP-adres zijn.', + 'ipv4' => 'Dit moet een geldig IPv4-adres zijn.', + 'ipv6' => 'Dit moet een geldig IPv6-adres zijn.', + 'json' => 'Dit moet een geldige JSON-string zijn.', + 'lt' => [ + 'array' => 'De inhoud moet minder dan :value waardes bevatten.', + 'file' => 'Het bestand moet kleiner zijn dan :value kilobytes.', 'numeric' => 'De waarde moet kleiner zijn dan :value.', - 'string' => 'De waarde moet minder dan :value tekens bevatten.', + 'string' => 'De waarde moet minder dan :value tekens bevatten.', ], - 'lte' => [ - 'array' => 'De inhoud moet :value waardes of minder bevatten.', - 'file' => 'Het bestand moet kleiner of gelijk zijn aan :value kilobytes.', + 'lte' => [ + 'array' => 'De inhoud moet :value waardes of minder bevatten.', + 'file' => 'Het bestand moet kleiner of gelijk zijn aan :value kilobytes.', 'numeric' => 'De waarde moet kleiner of gelijk zijn aan :value.', - 'string' => 'De waarde moet maximaal :value tekens bevatten.', + 'string' => 'De waarde moet maximaal :value tekens bevatten.', ], - 'max' => [ - 'array' => 'De inhoud mag niet meer dan :max items bevatten.', - 'file' => 'Het bestand mag niet meer dan :max kilobytes zijn.', + 'max' => [ + 'array' => 'De inhoud mag niet meer dan :max items bevatten.', + 'file' => 'Het bestand mag niet meer dan :max kilobytes zijn.', 'numeric' => 'De waarde mag niet hoger dan :max zijn.', - 'string' => 'De waarde mag niet uit meer dan :max tekens bestaan.', + 'string' => 'De waarde mag niet uit meer dan :max tekens bestaan.', ], - 'mimes' => 'Dit moet een bestand zijn van het bestandstype :values.', - 'mimetypes' => 'Dit moet een bestand zijn van het bestandstype :values.', - 'min' => [ - 'array' => 'De inhoud moet minimaal :min items bevatten.', - 'file' => 'Het bestand moet minimaal :min kilobytes zijn.', + 'mimes' => 'Dit moet een bestand zijn van het bestandstype :values.', + 'mimetypes' => 'Dit moet een bestand zijn van het bestandstype :values.', + 'min' => [ + 'array' => 'De inhoud moet minimaal :min items bevatten.', + 'file' => 'Het bestand moet minimaal :min kilobytes zijn.', 'numeric' => 'De waarde moet minimaal :min zijn.', - 'string' => 'De waarde moet minimaal :min tekens zijn.', + 'string' => 'De waarde moet minimaal :min tekens zijn.', ], - 'multiple_of' => 'De waarde moet een veelvoud van :value zijn.', - 'not_in' => 'De geselecteerde waarde is ongeldig.', - 'not_regex' => 'Dit formaat is ongeldig.', - 'numeric' => 'Dit moet een nummer zijn', - 'password' => 'Het wachtwoord is onjuist.', - 'present' => 'Dit veld moet bestaan.', - 'prohibited' => 'Dit veld is verboden.', - 'prohibited_if' => 'Dit veld is verboden indien :other gelijk is aan :value.', - 'prohibited_unless' => 'Dit veld is verboden tenzij :other is aan :values.', - 'regex' => 'Dit formaat is ongeldig.', - 'relatable' => 'Dit veld mag niet gekoppeld worden aan deze bron.', - 'required' => 'Dit veld is verplicht.', - 'required_if' => 'Dit veld is verplicht indien :other gelijk is aan :value.', - 'required_unless' => 'Dit veld is verplicht tenzij :other gelijk is aan :values.', - 'required_with' => 'Dit veld is verplicht i.c.m. :values', - 'required_with_all' => 'Dit veld is verplicht i.c.m. :values', - 'required_without' => 'Dit veld is verplicht als :values niet ingevuld is.', + 'multiple_of' => 'De waarde moet een veelvoud van :value zijn.', + 'not_in' => 'De geselecteerde waarde is ongeldig.', + 'not_regex' => 'Dit formaat is ongeldig.', + 'numeric' => 'Dit moet een nummer zijn', + 'password' => 'Het wachtwoord is onjuist.', + 'present' => 'Dit veld moet bestaan.', + 'prohibited' => 'Dit veld is verboden.', + 'prohibited_if' => 'Dit veld is verboden indien :other gelijk is aan :value.', + 'prohibited_unless' => 'Dit veld is verboden tenzij :other is aan :values.', + 'regex' => 'Dit formaat is ongeldig.', + 'relatable' => 'Dit veld mag niet gekoppeld worden aan deze bron.', + 'required' => 'Dit veld is verplicht.', + 'required_if' => 'Dit veld is verplicht indien :other gelijk is aan :value.', + 'required_unless' => 'Dit veld is verplicht tenzij :other gelijk is aan :values.', + 'required_with' => 'Dit veld is verplicht i.c.m. :values', + 'required_with_all' => 'Dit veld is verplicht i.c.m. :values', + 'required_without' => 'Dit veld is verplicht als :values niet ingevuld is.', 'required_without_all' => 'Dit veld is verplicht als :values niet ingevuld zijn.', - 'same' => 'De waarde van dit veld en :other moeten overeenkomen.', - 'size' => [ - 'array' => ':de inhoud moet :size items bevatten.', - 'file' => ':Het bestand moet :size kilobyte zijn.', + 'same' => 'De waarde van dit veld en :other moeten overeenkomen.', + 'size' => [ + 'array' => ':de inhoud moet :size items bevatten.', + 'file' => ':Het bestand moet :size kilobyte zijn.', 'numeric' => ':De waarde moet :size zijn.', - 'string' => ':De waarde moet :size tekens zijn.', + 'string' => ':De waarde moet :size tekens zijn.', ], - 'starts_with' => 'Dit moet starten met een van de volgende: :values.', - 'string' => 'Dit moet een tekst zijn.', - 'timezone' => 'Dit moet een geldige tijdzone zijn.', - 'unique' => 'Deze is al in gebruik', - 'uploaded' => 'Het uploaden hiervan is mislukt.', - 'url' => 'Dit moet een geldige URL zijn.', - 'uuid' => 'Dit moet een geldige UUID zijn.', - 'custom' => [ + 'starts_with' => 'Dit moet starten met een van de volgende: :values.', + 'string' => 'Dit moet een tekst zijn.', + 'timezone' => 'Dit moet een geldige tijdzone zijn.', + 'unique' => 'Deze is al in gebruik', + 'uploaded' => 'Het uploaden hiervan is mislukt.', + 'url' => 'Dit moet een geldige URL zijn.', + 'uuid' => 'Dit moet een geldige UUID zijn.', + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], + 'attributes' => [], ]; diff --git a/lang/nl/validation.php b/lang/nl/validation.php index eea1f82ce..b060f8d2f 100644 --- a/lang/nl/validation.php +++ b/lang/nl/validation.php @@ -12,162 +12,162 @@ */ return [ - 'accepted' => ':Attribute moet geaccepteerd zijn.', - 'active_url' => ':Attribute is geen geldige URL.', - 'after' => ':Attribute moet een datum na :date zijn.', - 'after_or_equal' => ':Attribute moet een datum na of gelijk aan :date zijn.', - 'alpha' => ':Attribute mag alleen letters bevatten.', - 'alpha_dash' => ':Attribute mag alleen letters, nummers, underscores (_) en streepjes (-) bevatten.', - 'alpha_num' => ':Attribute mag alleen letters en nummers bevatten.', - 'array' => ':Attribute moet geselecteerde elementen bevatten.', - 'attached' => ':Attribute is reeds gekoppeld.', - 'before' => ':Attribute moet een datum voor :date zijn.', - 'before_or_equal' => ':Attribute moet een datum voor of gelijk aan :date zijn.', - 'between' => [ - 'array' => ':Attribute moet tussen :min en :max items bevatten.', - 'file' => ':Attribute moet tussen :min en :max kilobytes zijn.', + 'accepted' => ':Attribute moet geaccepteerd zijn.', + 'active_url' => ':Attribute is geen geldige URL.', + 'after' => ':Attribute moet een datum na :date zijn.', + 'after_or_equal' => ':Attribute moet een datum na of gelijk aan :date zijn.', + 'alpha' => ':Attribute mag alleen letters bevatten.', + 'alpha_dash' => ':Attribute mag alleen letters, nummers, underscores (_) en streepjes (-) bevatten.', + 'alpha_num' => ':Attribute mag alleen letters en nummers bevatten.', + 'array' => ':Attribute moet geselecteerde elementen bevatten.', + 'attached' => ':Attribute is reeds gekoppeld.', + 'before' => ':Attribute moet een datum voor :date zijn.', + 'before_or_equal' => ':Attribute moet een datum voor of gelijk aan :date zijn.', + 'between' => [ + 'array' => ':Attribute moet tussen :min en :max items bevatten.', + 'file' => ':Attribute moet tussen :min en :max kilobytes zijn.', 'numeric' => ':Attribute moet tussen :min en :max zijn.', - 'string' => ':Attribute moet tussen :min en :max karakters zijn.', + 'string' => ':Attribute moet tussen :min en :max karakters zijn.', ], - 'boolean' => ':Attribute moet ja of nee zijn.', - 'confirmed' => ':Attribute bevestiging komt niet overeen.', - 'date' => ':Attribute moet een datum bevatten.', - 'date_equals' => ':Attribute moet een datum gelijk aan :date zijn.', - 'date_format' => ':Attribute moet een geldig datum formaat bevatten.', - 'different' => ':Attribute en :other moeten verschillend zijn.', - 'digits' => ':Attribute moet bestaan uit :digits cijfers.', - 'digits_between' => ':Attribute moet bestaan uit minimaal :min en maximaal :max cijfers.', - 'dimensions' => ':Attribute heeft geen geldige afmetingen voor afbeeldingen.', - 'distinct' => ':Attribute heeft een dubbele waarde.', - 'email' => ':Attribute is geen geldig e-mailadres.', - 'ends_with' => ':Attribute moet met één van de volgende waarden eindigen: :values.', - 'exists' => ':Attribute bestaat niet.', - 'file' => ':Attribute moet een bestand zijn.', - 'filled' => ':Attribute is verplicht.', - 'gt' => [ - 'array' => 'De :attribute moet meer dan :value waardes bevatten.', - 'file' => 'De :attribute moet groter zijn dan :value kilobytes.', + 'boolean' => ':Attribute moet ja of nee zijn.', + 'confirmed' => ':Attribute bevestiging komt niet overeen.', + 'date' => ':Attribute moet een datum bevatten.', + 'date_equals' => ':Attribute moet een datum gelijk aan :date zijn.', + 'date_format' => ':Attribute moet een geldig datum formaat bevatten.', + 'different' => ':Attribute en :other moeten verschillend zijn.', + 'digits' => ':Attribute moet bestaan uit :digits cijfers.', + 'digits_between' => ':Attribute moet bestaan uit minimaal :min en maximaal :max cijfers.', + 'dimensions' => ':Attribute heeft geen geldige afmetingen voor afbeeldingen.', + 'distinct' => ':Attribute heeft een dubbele waarde.', + 'email' => ':Attribute is geen geldig e-mailadres.', + 'ends_with' => ':Attribute moet met één van de volgende waarden eindigen: :values.', + 'exists' => ':Attribute bestaat niet.', + 'file' => ':Attribute moet een bestand zijn.', + 'filled' => ':Attribute is verplicht.', + 'gt' => [ + 'array' => 'De :attribute moet meer dan :value waardes bevatten.', + 'file' => 'De :attribute moet groter zijn dan :value kilobytes.', 'numeric' => 'De :attribute moet groter zijn dan :value.', - 'string' => 'De :attribute moet meer dan :value tekens bevatten.', + 'string' => 'De :attribute moet meer dan :value tekens bevatten.', ], - 'gte' => [ - 'array' => 'De :attribute moet :value waardes of meer bevatten.', - 'file' => 'De :attribute moet groter of gelijk zijn aan :value kilobytes.', + 'gte' => [ + 'array' => 'De :attribute moet :value waardes of meer bevatten.', + 'file' => 'De :attribute moet groter of gelijk zijn aan :value kilobytes.', 'numeric' => 'De :attribute moet groter of gelijk zijn aan :value.', - 'string' => 'De :attribute moet minimaal :value tekens bevatten.', + 'string' => 'De :attribute moet minimaal :value tekens bevatten.', ], - 'image' => ':Attribute moet een afbeelding zijn.', - 'in' => ':Attribute is ongeldig.', - 'in_array' => ':Attribute bestaat niet in :other.', - 'integer' => ':Attribute moet een getal zijn.', - 'ip' => ':Attribute moet een geldig IP-adres zijn.', - 'ipv4' => ':Attribute moet een geldig IPv4-adres zijn.', - 'ipv6' => ':Attribute moet een geldig IPv6-adres zijn.', - 'json' => ':Attribute moet een geldige JSON-string zijn.', - 'lt' => [ - 'array' => 'De :attribute moet minder dan :value waardes bevatten.', - 'file' => 'De :attribute moet kleiner zijn dan :value kilobytes.', + 'image' => ':Attribute moet een afbeelding zijn.', + 'in' => ':Attribute is ongeldig.', + 'in_array' => ':Attribute bestaat niet in :other.', + 'integer' => ':Attribute moet een getal zijn.', + 'ip' => ':Attribute moet een geldig IP-adres zijn.', + 'ipv4' => ':Attribute moet een geldig IPv4-adres zijn.', + 'ipv6' => ':Attribute moet een geldig IPv6-adres zijn.', + 'json' => ':Attribute moet een geldige JSON-string zijn.', + 'lt' => [ + 'array' => 'De :attribute moet minder dan :value waardes bevatten.', + 'file' => 'De :attribute moet kleiner zijn dan :value kilobytes.', 'numeric' => 'De :attribute moet kleiner zijn dan :value.', - 'string' => 'De :attribute moet minder dan :value tekens bevatten.', + 'string' => 'De :attribute moet minder dan :value tekens bevatten.', ], - 'lte' => [ - 'array' => 'De :attribute moet :value waardes of minder bevatten.', - 'file' => 'De :attribute moet kleiner of gelijk zijn aan :value kilobytes.', + 'lte' => [ + 'array' => 'De :attribute moet :value waardes of minder bevatten.', + 'file' => 'De :attribute moet kleiner of gelijk zijn aan :value kilobytes.', 'numeric' => 'De :attribute moet kleiner of gelijk zijn aan :value.', - 'string' => 'De :attribute moet maximaal :value tekens bevatten.', + 'string' => 'De :attribute moet maximaal :value tekens bevatten.', ], - 'max' => [ - 'array' => ':Attribute mag niet meer dan :max items bevatten.', - 'file' => ':Attribute mag niet meer dan :max kilobytes zijn.', + 'max' => [ + 'array' => ':Attribute mag niet meer dan :max items bevatten.', + 'file' => ':Attribute mag niet meer dan :max kilobytes zijn.', 'numeric' => ':Attribute mag niet hoger dan :max zijn.', - 'string' => ':Attribute mag niet uit meer dan :max tekens bestaan.', + 'string' => ':Attribute mag niet uit meer dan :max tekens bestaan.', ], - 'mimes' => ':Attribute moet een bestand zijn van het bestandstype :values.', - 'mimetypes' => ':Attribute moet een bestand zijn van het bestandstype :values.', - 'min' => [ - 'array' => ':Attribute moet minimaal :min items bevatten.', - 'file' => ':Attribute moet minimaal :min kilobytes zijn.', + 'mimes' => ':Attribute moet een bestand zijn van het bestandstype :values.', + 'mimetypes' => ':Attribute moet een bestand zijn van het bestandstype :values.', + 'min' => [ + 'array' => ':Attribute moet minimaal :min items bevatten.', + 'file' => ':Attribute moet minimaal :min kilobytes zijn.', 'numeric' => ':Attribute moet minimaal :min zijn.', - 'string' => ':Attribute moet minimaal :min tekens zijn.', + 'string' => ':Attribute moet minimaal :min tekens zijn.', ], - 'multiple_of' => ':Attribute moet een veelvoud van :value zijn.', - 'not_in' => 'Het formaat van :attribute is ongeldig.', - 'not_regex' => 'De :attribute formaat is ongeldig.', - 'numeric' => ':Attribute moet een nummer zijn.', - 'password' => 'Wachtwoord is onjuist.', - 'present' => ':Attribute moet bestaan.', - 'prohibited' => ':Attribute veld is verboden.', - 'prohibited_if' => ':Attribute veld is verboden indien :other gelijk is aan :value.', - 'prohibited_unless' => ':Attribute veld is verboden tenzij :other gelijk is aan :values.', - 'regex' => ':Attribute formaat is ongeldig.', - 'relatable' => ':Attribute mag niet gekoppeld worden aan deze bron.', - 'required' => ':Attribute is verplicht.', - 'required_if' => ':Attribute is verplicht indien :other gelijk is aan :value.', - 'required_unless' => ':Attribute is verplicht tenzij :other gelijk is aan :values.', - 'required_with' => ':Attribute is verplicht i.c.m. :values', - 'required_with_all' => ':Attribute is verplicht i.c.m. :values', - 'required_without' => ':Attribute is verplicht als :values niet ingevuld is.', + 'multiple_of' => ':Attribute moet een veelvoud van :value zijn.', + 'not_in' => 'Het formaat van :attribute is ongeldig.', + 'not_regex' => 'De :attribute formaat is ongeldig.', + 'numeric' => ':Attribute moet een nummer zijn.', + 'password' => 'Wachtwoord is onjuist.', + 'present' => ':Attribute moet bestaan.', + 'prohibited' => ':Attribute veld is verboden.', + 'prohibited_if' => ':Attribute veld is verboden indien :other gelijk is aan :value.', + 'prohibited_unless' => ':Attribute veld is verboden tenzij :other gelijk is aan :values.', + 'regex' => ':Attribute formaat is ongeldig.', + 'relatable' => ':Attribute mag niet gekoppeld worden aan deze bron.', + 'required' => ':Attribute is verplicht.', + 'required_if' => ':Attribute is verplicht indien :other gelijk is aan :value.', + 'required_unless' => ':Attribute is verplicht tenzij :other gelijk is aan :values.', + 'required_with' => ':Attribute is verplicht i.c.m. :values', + 'required_with_all' => ':Attribute is verplicht i.c.m. :values', + 'required_without' => ':Attribute is verplicht als :values niet ingevuld is.', 'required_without_all' => ':Attribute is verplicht als :values niet ingevuld zijn.', - 'same' => ':Attribute en :other moeten overeenkomen.', - 'size' => [ - 'array' => ':Attribute moet :size items bevatten.', - 'file' => ':Attribute moet :size kilobyte zijn.', + 'same' => ':Attribute en :other moeten overeenkomen.', + 'size' => [ + 'array' => ':Attribute moet :size items bevatten.', + 'file' => ':Attribute moet :size kilobyte zijn.', 'numeric' => ':Attribute moet :size zijn.', - 'string' => ':Attribute moet :size tekens zijn.', + 'string' => ':Attribute moet :size tekens zijn.', ], - 'starts_with' => ':Attribute moet starten met een van de volgende: :values.', - 'string' => ':Attribute moet een tekst zijn.', - 'timezone' => ':Attribute moet een geldige tijdzone zijn.', - 'unique' => ':Attribute is al in gebruik.', - 'uploaded' => 'Het uploaden van :attribute is mislukt.', - 'url' => ':Attribute moet een geldig URL zijn.', - 'uuid' => ':Attribute moet een geldig UUID zijn.', - 'custom' => [ + 'starts_with' => ':Attribute moet starten met een van de volgende: :values.', + 'string' => ':Attribute moet een tekst zijn.', + 'timezone' => ':Attribute moet een geldige tijdzone zijn.', + 'unique' => ':Attribute is al in gebruik.', + 'uploaded' => 'Het uploaden van :attribute is mislukt.', + 'url' => ':Attribute moet een geldig URL zijn.', + 'uuid' => ':Attribute moet een geldig UUID zijn.', + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'adres', - 'age' => 'leeftijd', - 'amount' => 'bedrag', - 'available' => 'beschikbaar', - 'city' => 'stad', - 'content' => 'inhoud', - 'country' => 'land', - 'currency' => 'valuta', - 'date' => 'datum', - 'date_of_birth' => 'geboortedatum', - 'day' => 'dag', - 'description' => 'omschrijving', - 'duration' => 'tijdsduur', - 'email' => 'e-mailadres', - 'excerpt' => 'uittreksel', - 'first_name' => 'voornaam', - 'gender' => 'geslacht', - 'group' => 'groep', - 'hour' => 'uur', - 'last_name' => 'achternaam', - 'lesson' => 'les', - 'message' => 'bericht', - 'minute' => 'minuut', - 'mobile' => 'mobiel', - 'month' => 'maand', - 'name' => 'naam', - 'password' => 'wachtwoord', + 'attributes' => [ + 'address' => 'adres', + 'age' => 'leeftijd', + 'amount' => 'bedrag', + 'available' => 'beschikbaar', + 'city' => 'stad', + 'content' => 'inhoud', + 'country' => 'land', + 'currency' => 'valuta', + 'date' => 'datum', + 'date_of_birth' => 'geboortedatum', + 'day' => 'dag', + 'description' => 'omschrijving', + 'duration' => 'tijdsduur', + 'email' => 'e-mailadres', + 'excerpt' => 'uittreksel', + 'first_name' => 'voornaam', + 'gender' => 'geslacht', + 'group' => 'groep', + 'hour' => 'uur', + 'last_name' => 'achternaam', + 'lesson' => 'les', + 'message' => 'bericht', + 'minute' => 'minuut', + 'mobile' => 'mobiel', + 'month' => 'maand', + 'name' => 'naam', + 'password' => 'wachtwoord', 'password_confirmation' => 'wachtwoordbevestiging', - 'phone' => 'telefoonnummer', - 'price' => 'prijs', - 'second' => 'seconde', - 'sex' => 'geslacht', - 'size' => 'grootte', - 'street' => 'straatnaam', - 'student' => 'student', - 'subject' => 'onderwerp', - 'teacher' => 'Docent', - 'time' => 'tijd', - 'title' => 'titel', - 'username' => 'gebruikersnaam', - 'year' => 'jaar', + 'phone' => 'telefoonnummer', + 'price' => 'prijs', + 'second' => 'seconde', + 'sex' => 'geslacht', + 'size' => 'grootte', + 'street' => 'straatnaam', + 'student' => 'student', + 'subject' => 'onderwerp', + 'teacher' => 'Docent', + 'time' => 'tijd', + 'title' => 'titel', + 'username' => 'gebruikersnaam', + 'year' => 'jaar', ], ]; diff --git a/lang/ro/auth.php b/lang/ro/auth.php index fbe4355c5..14d47de76 100644 --- a/lang/ro/auth.php +++ b/lang/ro/auth.php @@ -12,7 +12,7 @@ */ return [ - 'failed' => 'Datele de identificare nu pot fi confirmate.', + 'failed' => 'Datele de identificare nu pot fi confirmate.', 'password' => 'Parola introdusă, nu este corectă.', 'throttle' => 'Prea multe încercări de intrare în cont. Puteți încerca din nou peste :seconds secunde.', ]; diff --git a/lang/ro/pagination.php b/lang/ro/pagination.php index 9065660c3..3ad2ae221 100644 --- a/lang/ro/pagination.php +++ b/lang/ro/pagination.php @@ -12,6 +12,6 @@ */ return [ - 'next' => 'Înainte »', + 'next' => 'Înainte »', 'previous' => '« Înapoi', ]; diff --git a/lang/ro/passwords.php b/lang/ro/passwords.php index 3eb3849d1..9cd33d05c 100644 --- a/lang/ro/passwords.php +++ b/lang/ro/passwords.php @@ -12,9 +12,9 @@ */ return [ - 'reset' => 'Parola a fost resetată!', - 'sent' => 'Am trimis un e-mail cu link-ul de resetare a parolei!', + 'reset' => 'Parola a fost resetată!', + 'sent' => 'Am trimis un e-mail cu link-ul de resetare a parolei!', 'throttled' => 'Vă rugăm să așteptați înainte de a încerca din nou.', - 'token' => 'Codul de resetare a parolei este greșit.', - 'user' => 'Nu există niciun utilizator cu această adresă de e-mail.', + 'token' => 'Codul de resetare a parolei este greșit.', + 'user' => 'Nu există niciun utilizator cu această adresă de e-mail.', ]; diff --git a/lang/ro/validation-inline.php b/lang/ro/validation-inline.php index 4f6606590..a83af33cf 100644 --- a/lang/ro/validation-inline.php +++ b/lang/ro/validation-inline.php @@ -12,120 +12,120 @@ */ return [ - 'accepted' => 'Acest câmp trebuie acceptat.', - 'active_url' => 'Aceasta nu este o adresă URL validă.', - 'after' => 'Aceasta trebuie să fie o dată după :date.', - 'after_or_equal' => 'Aceasta trebuie să fie o dată după sau egală cu :date.', - 'alpha' => 'Acest câmp poate conține numai litere.', - 'alpha_dash' => 'Acest câmp poate conține numai litere, numere, liniuțe și sublinieri.', - 'alpha_num' => 'Acest câmp poate conține numai litere și numere.', - 'array' => 'Acest câmp trebuie să fie o matrice.', - 'attached' => 'Acest câmp este deja atașat.', - 'before' => 'Aceasta trebuie să fie o dată înainte de :date.', - 'before_or_equal' => 'Aceasta trebuie să fie o dată înainte sau egală cu :date.', - 'between' => [ - 'array' => 'This content must have between :min and :max items.', - 'file' => 'This file must be between :min and :max kilobytes.', + 'accepted' => 'Acest câmp trebuie acceptat.', + 'active_url' => 'Aceasta nu este o adresă URL validă.', + 'after' => 'Aceasta trebuie să fie o dată după :date.', + 'after_or_equal' => 'Aceasta trebuie să fie o dată după sau egală cu :date.', + 'alpha' => 'Acest câmp poate conține numai litere.', + 'alpha_dash' => 'Acest câmp poate conține numai litere, numere, liniuțe și sublinieri.', + 'alpha_num' => 'Acest câmp poate conține numai litere și numere.', + 'array' => 'Acest câmp trebuie să fie o matrice.', + 'attached' => 'Acest câmp este deja atașat.', + 'before' => 'Aceasta trebuie să fie o dată înainte de :date.', + 'before_or_equal' => 'Aceasta trebuie să fie o dată înainte sau egală cu :date.', + 'between' => [ + 'array' => 'This content must have between :min and :max items.', + 'file' => 'This file must be between :min and :max kilobytes.', 'numeric' => 'This value must be between :min and :max.', - 'string' => 'This string must be between :min and :max characters.', + 'string' => 'This string must be between :min and :max characters.', ], - 'boolean' => 'Acest câmp trebuie să fie adevărat sau fals.', - 'confirmed' => 'Confirmarea nu se potrivește.', - 'date' => 'Aceasta nu este o dată validă.', - 'date_equals' => 'Aceasta trebuie să fie o dată egală cu :date.', - 'date_format' => 'Acest lucru nu se potrivește cu formatul :format.', - 'different' => 'Această valoare trebuie să fie diferită de :other.', - 'digits' => 'Acest lucru trebuie să fie :digits cifre.', - 'digits_between' => 'Aceasta trebuie să fie între :min și :max de cifre.', - 'dimensions' => 'Această imagine are dimensiuni nevalide.', - 'distinct' => 'Acest câmp are o valoare duplicată.', - 'email' => 'Aceasta trebuie să fie o adresă de e-mail validă.', - 'ends_with' => 'Aceasta trebuie să se încheie cu una dintre următoarele: :values.', - 'exists' => 'Valoarea selectată este nevalidă.', - 'file' => 'Conținutul trebuie să fie un fișier.', - 'filled' => 'Acest câmp trebuie să aibă o valoare.', - 'gt' => [ - 'array' => 'The content must have more than :value items.', - 'file' => 'The file size must be greater than :value kilobytes.', + 'boolean' => 'Acest câmp trebuie să fie adevărat sau fals.', + 'confirmed' => 'Confirmarea nu se potrivește.', + 'date' => 'Aceasta nu este o dată validă.', + 'date_equals' => 'Aceasta trebuie să fie o dată egală cu :date.', + 'date_format' => 'Acest lucru nu se potrivește cu formatul :format.', + 'different' => 'Această valoare trebuie să fie diferită de :other.', + 'digits' => 'Acest lucru trebuie să fie :digits cifre.', + 'digits_between' => 'Aceasta trebuie să fie între :min și :max de cifre.', + 'dimensions' => 'Această imagine are dimensiuni nevalide.', + 'distinct' => 'Acest câmp are o valoare duplicată.', + 'email' => 'Aceasta trebuie să fie o adresă de e-mail validă.', + 'ends_with' => 'Aceasta trebuie să se încheie cu una dintre următoarele: :values.', + 'exists' => 'Valoarea selectată este nevalidă.', + 'file' => 'Conținutul trebuie să fie un fișier.', + 'filled' => 'Acest câmp trebuie să aibă o valoare.', + 'gt' => [ + 'array' => 'The content must have more than :value items.', + 'file' => 'The file size must be greater than :value kilobytes.', 'numeric' => 'The value must be greater than :value.', - 'string' => 'The string must be greater than :value characters.', + 'string' => 'The string must be greater than :value characters.', ], - 'gte' => [ - 'array' => 'The content must have :value items or more.', - 'file' => 'The file size must be greater than or equal :value kilobytes.', + 'gte' => [ + 'array' => 'The content must have :value items or more.', + 'file' => 'The file size must be greater than or equal :value kilobytes.', 'numeric' => 'The value must be greater than or equal :value.', - 'string' => 'The string must be greater than or equal :value characters.', + 'string' => 'The string must be greater than or equal :value characters.', ], - 'image' => 'Asta trebuie să fie o imagine.', - 'in' => 'Valoarea selectată este nevalidă.', - 'in_array' => 'Această valoare nu există în :other.', - 'integer' => 'Acesta trebuie să fie un număr întreg.', - 'ip' => 'Aceasta trebuie să fie o adresă IP validă.', - 'ipv4' => 'Aceasta trebuie să fie o adresă IPv4 validă.', - 'ipv6' => 'Aceasta trebuie să fie o adresă IPv6 validă.', - 'json' => 'Acesta trebuie să fie un șir JSON valid.', - 'lt' => [ - 'array' => 'The content must have less than :value items.', - 'file' => 'The file size must be less than :value kilobytes.', + 'image' => 'Asta trebuie să fie o imagine.', + 'in' => 'Valoarea selectată este nevalidă.', + 'in_array' => 'Această valoare nu există în :other.', + 'integer' => 'Acesta trebuie să fie un număr întreg.', + 'ip' => 'Aceasta trebuie să fie o adresă IP validă.', + 'ipv4' => 'Aceasta trebuie să fie o adresă IPv4 validă.', + 'ipv6' => 'Aceasta trebuie să fie o adresă IPv6 validă.', + 'json' => 'Acesta trebuie să fie un șir JSON valid.', + 'lt' => [ + 'array' => 'The content must have less than :value items.', + 'file' => 'The file size must be less than :value kilobytes.', 'numeric' => 'The value must be less than :value.', - 'string' => 'The string must be less than :value characters.', + 'string' => 'The string must be less than :value characters.', ], - 'lte' => [ - 'array' => 'The content must not have more than :value items.', - 'file' => 'The file size must be less than or equal :value kilobytes.', + 'lte' => [ + 'array' => 'The content must not have more than :value items.', + 'file' => 'The file size must be less than or equal :value kilobytes.', 'numeric' => 'The value must be less than or equal :value.', - 'string' => 'The string must be less than or equal :value characters.', + 'string' => 'The string must be less than or equal :value characters.', ], - 'max' => [ - 'array' => 'The content may not have more than :max items.', - 'file' => 'The file size may not be greater than :max kilobytes.', + 'max' => [ + 'array' => 'The content may not have more than :max items.', + 'file' => 'The file size may not be greater than :max kilobytes.', 'numeric' => 'The value may not be greater than :max.', - 'string' => 'The string may not be greater than :max characters.', + 'string' => 'The string may not be greater than :max characters.', ], - 'mimes' => 'Acesta trebuie să fie un fișier de tip: :values.', - 'mimetypes' => 'Acesta trebuie să fie un fișier de tip: :values.', - 'min' => [ - 'array' => 'The value must have at least :min items.', - 'file' => 'The file size must be at least :min kilobytes.', + 'mimes' => 'Acesta trebuie să fie un fișier de tip: :values.', + 'mimetypes' => 'Acesta trebuie să fie un fișier de tip: :values.', + 'min' => [ + 'array' => 'The value must have at least :min items.', + 'file' => 'The file size must be at least :min kilobytes.', 'numeric' => 'The value must be at least :min.', - 'string' => 'The string must be at least :min characters.', + 'string' => 'The string must be at least :min characters.', ], - 'multiple_of' => 'Valoarea trebuie să fie un multiplu de :value', - 'not_in' => 'Valoarea selectată este nevalidă.', - 'not_regex' => 'Acest format este nevalid.', - 'numeric' => 'Acesta trebuie să fie un număr.', - 'password' => 'Parola este incorectă.', - 'present' => 'Acest câmp trebuie să fie prezent.', - 'prohibited' => 'Acest câmp este interzis.', - 'prohibited_if' => 'Acest câmp este interzis atunci când :other este :value.', - 'prohibited_unless' => 'Acest câmp este interzis, cu excepția cazului în care :other este în :values.', - 'regex' => 'Acest format este nevalid.', - 'relatable' => 'Este posibil ca acest câmp să nu fie asociat cu această resursă.', - 'required' => 'Acest câmp este obligatoriu.', - 'required_if' => 'Acest câmp este necesar atunci când :other este :value.', - 'required_unless' => 'Acest câmp este necesar, cu excepția cazului în :other este în :values.', - 'required_with' => 'Acest câmp este necesar atunci când :values este prezent.', - 'required_with_all' => 'Acest câmp este necesar atunci când :values sunt prezente.', - 'required_without' => 'Acest câmp este necesar atunci când :values nu este prezent.', + 'multiple_of' => 'Valoarea trebuie să fie un multiplu de :value', + 'not_in' => 'Valoarea selectată este nevalidă.', + 'not_regex' => 'Acest format este nevalid.', + 'numeric' => 'Acesta trebuie să fie un număr.', + 'password' => 'Parola este incorectă.', + 'present' => 'Acest câmp trebuie să fie prezent.', + 'prohibited' => 'Acest câmp este interzis.', + 'prohibited_if' => 'Acest câmp este interzis atunci când :other este :value.', + 'prohibited_unless' => 'Acest câmp este interzis, cu excepția cazului în care :other este în :values.', + 'regex' => 'Acest format este nevalid.', + 'relatable' => 'Este posibil ca acest câmp să nu fie asociat cu această resursă.', + 'required' => 'Acest câmp este obligatoriu.', + 'required_if' => 'Acest câmp este necesar atunci când :other este :value.', + 'required_unless' => 'Acest câmp este necesar, cu excepția cazului în :other este în :values.', + 'required_with' => 'Acest câmp este necesar atunci când :values este prezent.', + 'required_with_all' => 'Acest câmp este necesar atunci când :values sunt prezente.', + 'required_without' => 'Acest câmp este necesar atunci când :values nu este prezent.', 'required_without_all' => 'Acest câmp este necesar atunci când nici unul dintre :values sunt prezente.', - 'same' => 'Valoarea acestui câmp trebuie să se potrivească cu cea de la :other.', - 'size' => [ - 'array' => 'The content must contain :size items.', - 'file' => 'The file size must be :size kilobytes.', + 'same' => 'Valoarea acestui câmp trebuie să se potrivească cu cea de la :other.', + 'size' => [ + 'array' => 'The content must contain :size items.', + 'file' => 'The file size must be :size kilobytes.', 'numeric' => 'The value must be :size.', - 'string' => 'The string must be :size characters.', + 'string' => 'The string must be :size characters.', ], - 'starts_with' => 'Aceasta trebuie să înceapă cu una dintre următoarele: :values.', - 'string' => 'Asta trebuie să fie o sfoară.', - 'timezone' => 'Aceasta trebuie să fie o zonă validă.', - 'unique' => 'Acest lucru a fost deja luat.', - 'uploaded' => 'Acest lucru nu a reușit să încarce.', - 'url' => 'Acest format este nevalid.', - 'uuid' => 'Acesta trebuie să fie un UUID valid.', - 'custom' => [ + 'starts_with' => 'Aceasta trebuie să înceapă cu una dintre următoarele: :values.', + 'string' => 'Asta trebuie să fie o sfoară.', + 'timezone' => 'Aceasta trebuie să fie o zonă validă.', + 'unique' => 'Acest lucru a fost deja luat.', + 'uploaded' => 'Acest lucru nu a reușit să încarce.', + 'url' => 'Acest format este nevalid.', + 'uuid' => 'Acesta trebuie să fie un UUID valid.', + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], + 'attributes' => [], ]; diff --git a/lang/ro/validation.php b/lang/ro/validation.php index c84918b75..6dbf2fb7f 100644 --- a/lang/ro/validation.php +++ b/lang/ro/validation.php @@ -12,120 +12,120 @@ */ return [ - 'accepted' => 'Câmpul :attribute trebuie să fie acceptat.', - 'active_url' => 'Câmpul :attribute nu este un URL valid.', - 'after' => 'Câmpul :attribute trebuie să fie o dată după :date.', - 'after_or_equal' => 'Câmpul :attribute trebuie să fie o dată ulterioară sau egală cu :date.', - 'alpha' => 'Câmpul :attribute poate conține doar litere.', - 'alpha_dash' => 'Câmpul :attribute poate conține doar litere, numere și cratime.', - 'alpha_num' => 'Câmpul :attribute poate conține doar litere și numere.', - 'array' => 'Câmpul :attribute trebuie să fie un array.', - 'attached' => 'Acest :attribute este deja atașat.', - 'before' => 'Câmpul :attribute trebuie să fie o dată înainte de :date.', - 'before_or_equal' => 'Câmpul :attribute trebuie să fie o dată înainte sau egală cu :date.', - 'between' => [ - 'array' => 'Câmpul :attribute trebuie să aibă între :min și :max elemente.', - 'file' => 'Câmpul :attribute trebuie să fie între :min și :max kiloocteți.', + 'accepted' => 'Câmpul :attribute trebuie să fie acceptat.', + 'active_url' => 'Câmpul :attribute nu este un URL valid.', + 'after' => 'Câmpul :attribute trebuie să fie o dată după :date.', + 'after_or_equal' => 'Câmpul :attribute trebuie să fie o dată ulterioară sau egală cu :date.', + 'alpha' => 'Câmpul :attribute poate conține doar litere.', + 'alpha_dash' => 'Câmpul :attribute poate conține doar litere, numere și cratime.', + 'alpha_num' => 'Câmpul :attribute poate conține doar litere și numere.', + 'array' => 'Câmpul :attribute trebuie să fie un array.', + 'attached' => 'Acest :attribute este deja atașat.', + 'before' => 'Câmpul :attribute trebuie să fie o dată înainte de :date.', + 'before_or_equal' => 'Câmpul :attribute trebuie să fie o dată înainte sau egală cu :date.', + 'between' => [ + 'array' => 'Câmpul :attribute trebuie să aibă între :min și :max elemente.', + 'file' => 'Câmpul :attribute trebuie să fie între :min și :max kiloocteți.', 'numeric' => 'Câmpul :attribute trebuie să fie între :min și :max.', - 'string' => 'Câmpul :attribute trebuie să fie între :min și :max caractere.', + 'string' => 'Câmpul :attribute trebuie să fie între :min și :max caractere.', ], - 'boolean' => 'Câmpul :attribute trebuie să fie adevărat sau fals.', - 'confirmed' => 'Confirmarea :attribute nu se potrivește.', - 'date' => 'Câmpul :attribute nu este o dată validă.', - 'date_equals' => 'Aceasta :attribute trebuie să fie o dată egală cu :date.', - 'date_format' => 'Câmpul :attribute trebuie să fie în formatul :format.', - 'different' => 'Câmpurile :attribute și :other trebuie să fie diferite.', - 'digits' => 'Câmpul :attribute trebuie să aibă :digits cifre.', - 'digits_between' => 'Câmpul :attribute trebuie să aibă între :min și :max cifre.', - 'dimensions' => 'Câmpul :attribute are dimensiuni de imagine nevalide.', - 'distinct' => 'Câmpul :attribute are o valoare duplicat.', - 'email' => 'Câmpul :attribute trebuie să fie o adresă de e-mail validă.', - 'ends_with' => 'Câmpul :attribute trebuie să se încheie cu una din următoarele valori: :values', - 'exists' => 'Câmpul :attribute selectat nu este valid.', - 'file' => 'Câmpul :attribute trebuie să fie un fișier.', - 'filled' => 'Câmpul :attribute trebuie completat.', - 'gt' => [ - 'array' => 'Câmpul :attribute trebuie să aibă mai multe de :value elemente.', - 'file' => 'Câmpul :attribute trebuie să fie mai mare de :value kilobyți.', + 'boolean' => 'Câmpul :attribute trebuie să fie adevărat sau fals.', + 'confirmed' => 'Confirmarea :attribute nu se potrivește.', + 'date' => 'Câmpul :attribute nu este o dată validă.', + 'date_equals' => 'Aceasta :attribute trebuie să fie o dată egală cu :date.', + 'date_format' => 'Câmpul :attribute trebuie să fie în formatul :format.', + 'different' => 'Câmpurile :attribute și :other trebuie să fie diferite.', + 'digits' => 'Câmpul :attribute trebuie să aibă :digits cifre.', + 'digits_between' => 'Câmpul :attribute trebuie să aibă între :min și :max cifre.', + 'dimensions' => 'Câmpul :attribute are dimensiuni de imagine nevalide.', + 'distinct' => 'Câmpul :attribute are o valoare duplicat.', + 'email' => 'Câmpul :attribute trebuie să fie o adresă de e-mail validă.', + 'ends_with' => 'Câmpul :attribute trebuie să se încheie cu una din următoarele valori: :values', + 'exists' => 'Câmpul :attribute selectat nu este valid.', + 'file' => 'Câmpul :attribute trebuie să fie un fișier.', + 'filled' => 'Câmpul :attribute trebuie completat.', + 'gt' => [ + 'array' => 'Câmpul :attribute trebuie să aibă mai multe de :value elemente.', + 'file' => 'Câmpul :attribute trebuie să fie mai mare de :value kilobyți.', 'numeric' => 'Câmpul :attribute trebuie să fie mai mare de :value.', - 'string' => 'Câmpul :attribute trebuie să fie mai mare de :value caractere.', + 'string' => 'Câmpul :attribute trebuie să fie mai mare de :value caractere.', ], - 'gte' => [ - 'array' => 'Câmpul :attribute trebuie să aibă :value elemente sau mai multe.', - 'file' => 'Câmpul :attribute trebuie să fie mai mare sau egal cu :value kilobyți.', + 'gte' => [ + 'array' => 'Câmpul :attribute trebuie să aibă :value elemente sau mai multe.', + 'file' => 'Câmpul :attribute trebuie să fie mai mare sau egal cu :value kilobyți.', 'numeric' => 'Câmpul :attribute trebuie să fie mai mare sau egal cu :value.', - 'string' => 'Câmpul :attribute trebuie să fie mai mare sau egal cu :value caractere.', + 'string' => 'Câmpul :attribute trebuie să fie mai mare sau egal cu :value caractere.', ], - 'image' => 'Câmpul :attribute trebuie să fie o imagine.', - 'in' => 'Câmpul :attribute selectat nu este valid.', - 'in_array' => 'Câmpul :attribute nu există în :other.', - 'integer' => 'Câmpul :attribute trebuie să fie un număr întreg.', - 'ip' => 'Câmpul :attribute trebuie să fie o adresă IP validă.', - 'ipv4' => 'Câmpul :attribute trebuie să fie o adresă IPv4 validă.', - 'ipv6' => 'Câmpul :attribute trebuie să fie o adresă IPv6 validă.', - 'json' => 'Câmpul :attribute trebuie să fie un string JSON valid.', - 'lt' => [ - 'array' => 'Câmpul :attribute trebuie să aibă mai puțin de :value elemente.', - 'file' => 'Câmpul :attribute trebuie să fie mai mic de :value kilobyți.', + 'image' => 'Câmpul :attribute trebuie să fie o imagine.', + 'in' => 'Câmpul :attribute selectat nu este valid.', + 'in_array' => 'Câmpul :attribute nu există în :other.', + 'integer' => 'Câmpul :attribute trebuie să fie un număr întreg.', + 'ip' => 'Câmpul :attribute trebuie să fie o adresă IP validă.', + 'ipv4' => 'Câmpul :attribute trebuie să fie o adresă IPv4 validă.', + 'ipv6' => 'Câmpul :attribute trebuie să fie o adresă IPv6 validă.', + 'json' => 'Câmpul :attribute trebuie să fie un string JSON valid.', + 'lt' => [ + 'array' => 'Câmpul :attribute trebuie să aibă mai puțin de :value elemente.', + 'file' => 'Câmpul :attribute trebuie să fie mai mic de :value kilobyți.', 'numeric' => 'Câmpul :attribute trebuie să fie mai mic de :value.', - 'string' => 'Câmpul :attribute trebuie să fie mai mic de :value caractere.', + 'string' => 'Câmpul :attribute trebuie să fie mai mic de :value caractere.', ], - 'lte' => [ - 'array' => 'Câmpul :attribute trebuie să aibă :value elemente sau mai puține.', - 'file' => 'Câmpul :attribute trebuie să fie mai mic sau egal cu :value kilobyți.', + 'lte' => [ + 'array' => 'Câmpul :attribute trebuie să aibă :value elemente sau mai puține.', + 'file' => 'Câmpul :attribute trebuie să fie mai mic sau egal cu :value kilobyți.', 'numeric' => 'Câmpul :attribute trebuie să fie mai mic sau egal cu :value.', - 'string' => 'Câmpul :attribute trebuie să fie mai mic sau egal cu :value caractere.', + 'string' => 'Câmpul :attribute trebuie să fie mai mic sau egal cu :value caractere.', ], - 'max' => [ - 'array' => 'Câmpul :attribute nu poate avea mai mult de :max elemente.', - 'file' => 'Câmpul :attribute nu poate avea mai mult de :max kiloocteți.', + 'max' => [ + 'array' => 'Câmpul :attribute nu poate avea mai mult de :max elemente.', + 'file' => 'Câmpul :attribute nu poate avea mai mult de :max kiloocteți.', 'numeric' => 'Câmpul :attribute nu poate fi mai mare de :max.', - 'string' => 'Câmpul :attribute nu poate avea mai mult de :max caractere.', + 'string' => 'Câmpul :attribute nu poate avea mai mult de :max caractere.', ], - 'mimes' => 'Câmpul :attribute trebuie să fie un fișier de tipul: :values.', - 'mimetypes' => 'Câmpul :attribute trebuie să fie un fișier de tipul: :values.', - 'min' => [ - 'array' => 'Câmpul :attribute trebuie să aibă cel puțin :min elemente.', - 'file' => 'Câmpul :attribute trebuie să aibă cel puțin :min kiloocteți.', + 'mimes' => 'Câmpul :attribute trebuie să fie un fișier de tipul: :values.', + 'mimetypes' => 'Câmpul :attribute trebuie să fie un fișier de tipul: :values.', + 'min' => [ + 'array' => 'Câmpul :attribute trebuie să aibă cel puțin :min elemente.', + 'file' => 'Câmpul :attribute trebuie să aibă cel puțin :min kiloocteți.', 'numeric' => 'Câmpul :attribute nu poate fi mai mic de :min.', - 'string' => 'Câmpul :attribute trebuie să aibă cel puțin :min caractere.', + 'string' => 'Câmpul :attribute trebuie să aibă cel puțin :min caractere.', ], - 'multiple_of' => ':attribute trebuie să fie un multiplu de :value', - 'not_in' => 'Câmpul :attribute selectat nu este valid.', - 'not_regex' => 'Câmpul :attribute nu are un format valid.', - 'numeric' => 'Câmpul :attribute trebuie să fie un număr.', - 'password' => 'Parola este greșită.', - 'present' => 'Câmpul :attribute trebuie să fie prezent.', - 'prohibited' => 'Câmpul :attribute este interzis.', - 'prohibited_if' => 'Câmpul :attribute este interzis atunci când :other este :value.', - 'prohibited_unless' => 'Câmpul :attribute este interzis, cu excepția cazului în care :other este în :values.', - 'regex' => 'Câmpul :attribute nu are un format valid.', - 'relatable' => 'Acest :attribute nu poate fi asociat cu această resursă.', - 'required' => 'Câmpul :attribute este obligatoriu.', - 'required_if' => 'Câmpul :attribute este necesar când :other este :value.', - 'required_unless' => 'Câmpul :attribute este necesar, cu excepția cazului :other este in :values.', - 'required_with' => 'Câmpul :attribute este necesar când există :values.', - 'required_with_all' => 'Câmpul :attribute este necesar când există :values.', - 'required_without' => 'Câmpul :attribute este necesar când nu există :values.', + 'multiple_of' => ':attribute trebuie să fie un multiplu de :value', + 'not_in' => 'Câmpul :attribute selectat nu este valid.', + 'not_regex' => 'Câmpul :attribute nu are un format valid.', + 'numeric' => 'Câmpul :attribute trebuie să fie un număr.', + 'password' => 'Parola este greșită.', + 'present' => 'Câmpul :attribute trebuie să fie prezent.', + 'prohibited' => 'Câmpul :attribute este interzis.', + 'prohibited_if' => 'Câmpul :attribute este interzis atunci când :other este :value.', + 'prohibited_unless' => 'Câmpul :attribute este interzis, cu excepția cazului în care :other este în :values.', + 'regex' => 'Câmpul :attribute nu are un format valid.', + 'relatable' => 'Acest :attribute nu poate fi asociat cu această resursă.', + 'required' => 'Câmpul :attribute este obligatoriu.', + 'required_if' => 'Câmpul :attribute este necesar când :other este :value.', + 'required_unless' => 'Câmpul :attribute este necesar, cu excepția cazului :other este in :values.', + 'required_with' => 'Câmpul :attribute este necesar când există :values.', + 'required_with_all' => 'Câmpul :attribute este necesar când există :values.', + 'required_without' => 'Câmpul :attribute este necesar când nu există :values.', 'required_without_all' => 'Câmpul :attribute este necesar când niciunul(una) dintre :values nu există.', - 'same' => 'Câmpul :attribute și :other trebuie să fie identice.', - 'size' => [ - 'array' => 'Câmpul :attribute trebuie să aibă :size elemente.', - 'file' => 'Câmpul :attribute trebuie să aibă :size kiloocteți.', + 'same' => 'Câmpul :attribute și :other trebuie să fie identice.', + 'size' => [ + 'array' => 'Câmpul :attribute trebuie să aibă :size elemente.', + 'file' => 'Câmpul :attribute trebuie să aibă :size kiloocteți.', 'numeric' => 'Câmpul :attribute trebuie să fie :size.', - 'string' => 'Câmpul :attribute trebuie să aibă :size caractere.', + 'string' => 'Câmpul :attribute trebuie să aibă :size caractere.', ], - 'starts_with' => 'Acesta :attribute trebuie să înceapă cu una din următoarele: :values', - 'string' => 'Câmpul :attribute trebuie să fie string.', - 'timezone' => 'Câmpul :attribute trebuie să fie un fus orar valid.', - 'unique' => 'Câmpul :attribute a fost deja folosit.', - 'uploaded' => 'Câmpul :attribute nu a reușit încărcarea.', - 'url' => 'Câmpul :attribute nu este un URL valid.', - 'uuid' => 'Acesta :attribute trebuie să fie un cod UUID valid.', - 'custom' => [ + 'starts_with' => 'Acesta :attribute trebuie să înceapă cu una din următoarele: :values', + 'string' => 'Câmpul :attribute trebuie să fie string.', + 'timezone' => 'Câmpul :attribute trebuie să fie un fus orar valid.', + 'unique' => 'Câmpul :attribute a fost deja folosit.', + 'uploaded' => 'Câmpul :attribute nu a reușit încărcarea.', + 'url' => 'Câmpul :attribute nu este un URL valid.', + 'uuid' => 'Acesta :attribute trebuie să fie un cod UUID valid.', + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], + 'attributes' => [], ]; diff --git a/lang/ru/auth.php b/lang/ru/auth.php index c8866d94c..c9493fff8 100644 --- a/lang/ru/auth.php +++ b/lang/ru/auth.php @@ -12,7 +12,7 @@ */ return [ - 'failed' => 'Неверное имя пользователя или пароль.', + 'failed' => 'Неверное имя пользователя или пароль.', 'password' => 'Неверный пароль.', 'throttle' => 'Слишком много попыток входа. Пожалуйста, попробуйте еще раз через :seconds секунд.', ]; diff --git a/lang/ru/pagination.php b/lang/ru/pagination.php index 21c5783d5..1fdec36e3 100644 --- a/lang/ru/pagination.php +++ b/lang/ru/pagination.php @@ -12,6 +12,6 @@ */ return [ - 'next' => 'Вперёд »', + 'next' => 'Вперёд »', 'previous' => '« Назад', ]; diff --git a/lang/ru/passwords.php b/lang/ru/passwords.php index 8c08a6df8..7959cf617 100644 --- a/lang/ru/passwords.php +++ b/lang/ru/passwords.php @@ -12,9 +12,9 @@ */ return [ - 'reset' => 'Ваш пароль был сброшен!', - 'sent' => 'Ссылка на сброс пароля была отправлена!', + 'reset' => 'Ваш пароль был сброшен!', + 'sent' => 'Ссылка на сброс пароля была отправлена!', 'throttled' => 'Пожалуйста, подождите перед повторной попыткой.', - 'token' => 'Ошибочный код сброса пароля.', - 'user' => 'Не удалось найти пользователя с указанным электронным адресом.', + 'token' => 'Ошибочный код сброса пароля.', + 'user' => 'Не удалось найти пользователя с указанным электронным адресом.', ]; diff --git a/lang/ru/validation-inline.php b/lang/ru/validation-inline.php index d8c4afb7a..2fc67ec48 100644 --- a/lang/ru/validation-inline.php +++ b/lang/ru/validation-inline.php @@ -12,120 +12,120 @@ */ return [ - 'accepted' => 'Должно быть принято.', - 'active_url' => 'Недействительный URL.', - 'after' => 'Дата должна быть больше :date.', - 'after_or_equal' => 'Дата должна быть больше или равняться :date.', - 'alpha' => 'Здесь могут быть только буквы.', - 'alpha_dash' => 'Здесь могут быть только буквы, цифры, дефис и нижнее подчеркивание.', - 'alpha_num' => 'Здесь могут быть только буквы и цифры.', - 'array' => 'Здесь должен быть массив.', - 'attached' => 'Уже прикреплено.', - 'before' => 'Дата здесь должна быть раньше :date.', - 'before_or_equal' => 'Дата здесь должна быть раньше или равняться :date.', - 'between' => [ - 'array' => 'Количество элементов должно быть между :min и :max.', - 'file' => 'Размер файла должен быть между :min и :max Килобайт(а).', + 'accepted' => 'Должно быть принято.', + 'active_url' => 'Недействительный URL.', + 'after' => 'Дата должна быть больше :date.', + 'after_or_equal' => 'Дата должна быть больше или равняться :date.', + 'alpha' => 'Здесь могут быть только буквы.', + 'alpha_dash' => 'Здесь могут быть только буквы, цифры, дефис и нижнее подчеркивание.', + 'alpha_num' => 'Здесь могут быть только буквы и цифры.', + 'array' => 'Здесь должен быть массив.', + 'attached' => 'Уже прикреплено.', + 'before' => 'Дата здесь должна быть раньше :date.', + 'before_or_equal' => 'Дата здесь должна быть раньше или равняться :date.', + 'between' => [ + 'array' => 'Количество элементов должно быть между :min и :max.', + 'file' => 'Размер файла должен быть между :min и :max Килобайт(а).', 'numeric' => 'Значение должно быть между :min и :max.', - 'string' => 'Количество символов должно быть между :min и :max.', + 'string' => 'Количество символов должно быть между :min и :max.', ], - 'boolean' => 'Поле должно иметь значение логического типа.', - 'confirmed' => 'Не совпадает с подтверждением.', - 'date' => 'Не является датой.', - 'date_equals' => 'Дата должна быть равной :date.', - 'date_format' => 'Не соответствует формату :format.', - 'different' => 'Значение должно отличаться от :other', - 'digits' => 'Длина должна быть :digits.', - 'digits_between' => 'Длина должна быть между :min и :max.', - 'dimensions' => 'Изображение имеет недопустимые размеры.', - 'distinct' => 'Поле содержит повторяющееся значение.', - 'email' => 'Электронный адрес должен быть действительным.', - 'ends_with' => 'Должно заканчиваться одним из следующих значений: :values', - 'exists' => 'Выбранное значение некорректно.', - 'file' => 'Содержимое должно быть файлом.', - 'filled' => 'Обязательно для заполнения.', - 'gt' => [ - 'array' => 'Количество элементов должно быть больше :value.', - 'file' => 'Размер файла должен быть больше :value Килобайт(а).', + 'boolean' => 'Поле должно иметь значение логического типа.', + 'confirmed' => 'Не совпадает с подтверждением.', + 'date' => 'Не является датой.', + 'date_equals' => 'Дата должна быть равной :date.', + 'date_format' => 'Не соответствует формату :format.', + 'different' => 'Значение должно отличаться от :other', + 'digits' => 'Длина должна быть :digits.', + 'digits_between' => 'Длина должна быть между :min и :max.', + 'dimensions' => 'Изображение имеет недопустимые размеры.', + 'distinct' => 'Поле содержит повторяющееся значение.', + 'email' => 'Электронный адрес должен быть действительным.', + 'ends_with' => 'Должно заканчиваться одним из следующих значений: :values', + 'exists' => 'Выбранное значение некорректно.', + 'file' => 'Содержимое должно быть файлом.', + 'filled' => 'Обязательно для заполнения.', + 'gt' => [ + 'array' => 'Количество элементов должно быть больше :value.', + 'file' => 'Размер файла должен быть больше :value Килобайт(а).', 'numeric' => 'Значение должно быть больше :value.', - 'string' => 'Количество символов должно быть больше :value.', + 'string' => 'Количество символов должно быть больше :value.', ], - 'gte' => [ - 'array' => 'Количество элементов должно быть :value или больше.', - 'file' => 'Размер файла должен быть :value Килобайт(а) или больше.', + 'gte' => [ + 'array' => 'Количество элементов должно быть :value или больше.', + 'file' => 'Размер файла должен быть :value Килобайт(а) или больше.', 'numeric' => 'Значение должно быть :value или больше.', - 'string' => 'Количество символов должно быть :value или больше.', + 'string' => 'Количество символов должно быть :value или больше.', ], - 'image' => 'Здесь должно быть изображение.', - 'in' => 'Выбранное значение ошибочно.', - 'in_array' => 'Значение не существует в :other.', - 'integer' => 'Должно быть целое число.', - 'ip' => 'Должен быть действительный IP-адрес.', - 'ipv4' => 'Должен быть действительный IPv4-адрес.', - 'ipv6' => 'Должен быть действительный IPv6-адрес.', - 'json' => 'Должно быть JSON строкой.', - 'lt' => [ - 'array' => 'Количество элементов должно быть меньше :value.', - 'file' => 'Размер файла должен быть меньше :value Килобайт(а).', + 'image' => 'Здесь должно быть изображение.', + 'in' => 'Выбранное значение ошибочно.', + 'in_array' => 'Значение не существует в :other.', + 'integer' => 'Должно быть целое число.', + 'ip' => 'Должен быть действительный IP-адрес.', + 'ipv4' => 'Должен быть действительный IPv4-адрес.', + 'ipv6' => 'Должен быть действительный IPv6-адрес.', + 'json' => 'Должно быть JSON строкой.', + 'lt' => [ + 'array' => 'Количество элементов должно быть меньше :value.', + 'file' => 'Размер файла должен быть меньше :value Килобайт(а).', 'numeric' => 'Значение должно быть меньше :value.', - 'string' => 'Количество символов должно быть меньше :value.', + 'string' => 'Количество символов должно быть меньше :value.', ], - 'lte' => [ - 'array' => 'Количество элементов должно быть :value или меньше.', - 'file' => 'Размер файла должен быть :value Килобайт(а) или меньше.', + 'lte' => [ + 'array' => 'Количество элементов должно быть :value или меньше.', + 'file' => 'Размер файла должен быть :value Килобайт(а) или меньше.', 'numeric' => 'Значение должно быть :value или меньше.', - 'string' => 'Количество символов должно быть :value или меньше.', + 'string' => 'Количество символов должно быть :value или меньше.', ], - 'max' => [ - 'array' => 'Количество элементов не может превышать :max.', - 'file' => 'Размер файла не может быть больше :max Килобайт(а).', + 'max' => [ + 'array' => 'Количество элементов не может превышать :max.', + 'file' => 'Размер файла не может быть больше :max Килобайт(а).', 'numeric' => 'Значение не может быть больше :max.', - 'string' => 'Количество символов не может превышать :max.', + 'string' => 'Количество символов не может превышать :max.', ], - 'mimes' => 'Должен быть файл одного из следующих типов: :values.', - 'mimetypes' => 'Должен быть файл одного из следующих типов: :values.', - 'min' => [ - 'array' => 'Количество элементов должно быть не меньше :min.', - 'file' => 'Размер файла должен быть не меньше :min Килобайт(а).', + 'mimes' => 'Должен быть файл одного из следующих типов: :values.', + 'mimetypes' => 'Должен быть файл одного из следующих типов: :values.', + 'min' => [ + 'array' => 'Количество элементов должно быть не меньше :min.', + 'file' => 'Размер файла должен быть не меньше :min Килобайт(а).', 'numeric' => 'Значение должно быть не меньше :min.', - 'string' => 'Количество символов должно быть не меньше :min.', + 'string' => 'Количество символов должно быть не меньше :min.', ], - 'multiple_of' => 'Значение должно быть кратным :value', - 'not_in' => 'Выбранное значение ошибочно.', - 'not_regex' => 'Выбранный формат ошибочный.', - 'numeric' => 'Здесь должно быть число.', - 'password' => 'Неверный пароль.', - 'present' => 'Значение должно быть.', - 'prohibited' => 'Данное значение запрещено.', - 'prohibited_if' => 'Значение запрещено, когда :other равно :value.', - 'prohibited_unless' => 'Значение запрещено, если :other не входит в :values.', - 'regex' => 'Ошибочный формат.', - 'relatable' => 'Объект не может быть связан с этим ресурсом.', - 'required' => 'Обязательно для заполнения.', - 'required_if' => 'Обязательно для заполнения, когда :other равно :value.', - 'required_unless' => 'Обязательно для заполнения, когда :other не равно :values.', - 'required_with' => 'Обязательно для заполнения, когда :values указано.', - 'required_with_all' => 'Обязательно для заполнения, когда :values указано.', - 'required_without' => 'Обязательно для заполнения, когда :values не указано.', + 'multiple_of' => 'Значение должно быть кратным :value', + 'not_in' => 'Выбранное значение ошибочно.', + 'not_regex' => 'Выбранный формат ошибочный.', + 'numeric' => 'Здесь должно быть число.', + 'password' => 'Неверный пароль.', + 'present' => 'Значение должно быть.', + 'prohibited' => 'Данное значение запрещено.', + 'prohibited_if' => 'Значение запрещено, когда :other равно :value.', + 'prohibited_unless' => 'Значение запрещено, если :other не входит в :values.', + 'regex' => 'Ошибочный формат.', + 'relatable' => 'Объект не может быть связан с этим ресурсом.', + 'required' => 'Обязательно для заполнения.', + 'required_if' => 'Обязательно для заполнения, когда :other равно :value.', + 'required_unless' => 'Обязательно для заполнения, когда :other не равно :values.', + 'required_with' => 'Обязательно для заполнения, когда :values указано.', + 'required_with_all' => 'Обязательно для заполнения, когда :values указано.', + 'required_without' => 'Обязательно для заполнения, когда :values не указано.', 'required_without_all' => 'Обязательно для заполнения, когда ни одно из :values не указано.', - 'same' => 'Значение должно совпадать с :other.', - 'size' => [ - 'array' => 'Количество элементов должно быть равным :size.', - 'file' => 'Размер файла должен быть равен :size Килобайт(а).', + 'same' => 'Значение должно совпадать с :other.', + 'size' => [ + 'array' => 'Количество элементов должно быть равным :size.', + 'file' => 'Размер файла должен быть равен :size Килобайт(а).', 'numeric' => 'Значение должно быть равным :size.', - 'string' => 'Количество символов должно быть равным :size.', + 'string' => 'Количество символов должно быть равным :size.', ], - 'starts_with' => 'Значение должно начинаться из одного из следующих значений: :values', - 'string' => 'Здесь должна быть строка.', - 'timezone' => 'Должен быть действительный часовой пояс.', - 'unique' => 'Такое значение уже существует.', - 'uploaded' => 'Загрузка не удалась.', - 'url' => 'Ошибочный формат URL.', - 'uuid' => 'Должен быть корректный UUID.', - 'custom' => [ + 'starts_with' => 'Значение должно начинаться из одного из следующих значений: :values', + 'string' => 'Здесь должна быть строка.', + 'timezone' => 'Должен быть действительный часовой пояс.', + 'unique' => 'Такое значение уже существует.', + 'uploaded' => 'Загрузка не удалась.', + 'url' => 'Ошибочный формат URL.', + 'uuid' => 'Должен быть корректный UUID.', + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], + 'attributes' => [], ]; diff --git a/lang/ru/validation.php b/lang/ru/validation.php index 7df7d9661..1c94670a9 100644 --- a/lang/ru/validation.php +++ b/lang/ru/validation.php @@ -12,151 +12,151 @@ */ return [ - 'accepted' => 'Вы должны принять :attribute.', - 'active_url' => 'Поле :attribute содержит недействительный URL.', - 'after' => 'В поле :attribute должна быть дата больше :date.', - 'after_or_equal' => 'В поле :attribute должна быть дата больше или равняться :date.', - 'alpha' => 'Поле :attribute может содержать только буквы.', - 'alpha_dash' => 'Поле :attribute может содержать только буквы, цифры, дефис и нижнее подчеркивание.', - 'alpha_num' => 'Поле :attribute может содержать только буквы и цифры.', - 'array' => 'Поле :attribute должно быть массивом.', - 'attached' => 'Поле :attribute уже прикреплено.', - 'before' => 'В поле :attribute должна быть дата раньше :date.', - 'before_or_equal' => 'В поле :attribute должна быть дата раньше или равняться :date.', - 'between' => [ - 'array' => 'Количество элементов в поле :attribute должно быть между :min и :max.', - 'file' => 'Размер файла в поле :attribute должен быть между :min и :max Килобайт(а).', + 'accepted' => 'Вы должны принять :attribute.', + 'active_url' => 'Поле :attribute содержит недействительный URL.', + 'after' => 'В поле :attribute должна быть дата больше :date.', + 'after_or_equal' => 'В поле :attribute должна быть дата больше или равняться :date.', + 'alpha' => 'Поле :attribute может содержать только буквы.', + 'alpha_dash' => 'Поле :attribute может содержать только буквы, цифры, дефис и нижнее подчеркивание.', + 'alpha_num' => 'Поле :attribute может содержать только буквы и цифры.', + 'array' => 'Поле :attribute должно быть массивом.', + 'attached' => 'Поле :attribute уже прикреплено.', + 'before' => 'В поле :attribute должна быть дата раньше :date.', + 'before_or_equal' => 'В поле :attribute должна быть дата раньше или равняться :date.', + 'between' => [ + 'array' => 'Количество элементов в поле :attribute должно быть между :min и :max.', + 'file' => 'Размер файла в поле :attribute должен быть между :min и :max Килобайт(а).', 'numeric' => 'Поле :attribute должно быть между :min и :max.', - 'string' => 'Количество символов в поле :attribute должно быть между :min и :max.', + 'string' => 'Количество символов в поле :attribute должно быть между :min и :max.', ], - 'boolean' => 'Поле :attribute должно иметь значение логического типа.', - 'confirmed' => 'Поле :attribute не совпадает с подтверждением.', - 'date' => 'Поле :attribute не является датой.', - 'date_equals' => 'Поле :attribute должно быть датой равной :date.', - 'date_format' => 'Поле :attribute не соответствует формату :format.', - 'different' => 'Поля :attribute и :other должны различаться.', - 'digits' => 'Длина цифрового поля :attribute должна быть :digits.', - 'digits_between' => 'Длина цифрового поля :attribute должна быть между :min и :max.', - 'dimensions' => 'Поле :attribute имеет недопустимые размеры изображения.', - 'distinct' => 'Поле :attribute содержит повторяющееся значение.', - 'email' => 'Поле :attribute должно быть действительным электронным адресом.', - 'ends_with' => 'Поле :attribute должно заканчиваться одним из следующих значений: :values', - 'exists' => 'Выбранное значение для :attribute некорректно.', - 'file' => 'Поле :attribute должно быть файлом.', - 'filled' => 'Поле :attribute обязательно для заполнения.', - 'gt' => [ - 'array' => 'Количество элементов в поле :attribute должно быть больше :value.', - 'file' => 'Размер файла в поле :attribute должен быть больше :value Килобайт(а).', + 'boolean' => 'Поле :attribute должно иметь значение логического типа.', + 'confirmed' => 'Поле :attribute не совпадает с подтверждением.', + 'date' => 'Поле :attribute не является датой.', + 'date_equals' => 'Поле :attribute должно быть датой равной :date.', + 'date_format' => 'Поле :attribute не соответствует формату :format.', + 'different' => 'Поля :attribute и :other должны различаться.', + 'digits' => 'Длина цифрового поля :attribute должна быть :digits.', + 'digits_between' => 'Длина цифрового поля :attribute должна быть между :min и :max.', + 'dimensions' => 'Поле :attribute имеет недопустимые размеры изображения.', + 'distinct' => 'Поле :attribute содержит повторяющееся значение.', + 'email' => 'Поле :attribute должно быть действительным электронным адресом.', + 'ends_with' => 'Поле :attribute должно заканчиваться одним из следующих значений: :values', + 'exists' => 'Выбранное значение для :attribute некорректно.', + 'file' => 'Поле :attribute должно быть файлом.', + 'filled' => 'Поле :attribute обязательно для заполнения.', + 'gt' => [ + 'array' => 'Количество элементов в поле :attribute должно быть больше :value.', + 'file' => 'Размер файла в поле :attribute должен быть больше :value Килобайт(а).', 'numeric' => 'Поле :attribute должно быть больше :value.', - 'string' => 'Количество символов в поле :attribute должно быть больше :value.', + 'string' => 'Количество символов в поле :attribute должно быть больше :value.', ], - 'gte' => [ - 'array' => 'Количество элементов в поле :attribute должно быть :value или больше.', - 'file' => 'Размер файла в поле :attribute должен быть :value Килобайт(а) или больше.', + 'gte' => [ + 'array' => 'Количество элементов в поле :attribute должно быть :value или больше.', + 'file' => 'Размер файла в поле :attribute должен быть :value Килобайт(а) или больше.', 'numeric' => 'Поле :attribute должно быть :value или больше.', - 'string' => 'Количество символов в поле :attribute должно быть :value или больше.', + 'string' => 'Количество символов в поле :attribute должно быть :value или больше.', ], - 'image' => 'Поле :attribute должно быть изображением.', - 'in' => 'Выбранное значение для :attribute ошибочно.', - 'in_array' => 'Поле :attribute не существует в :other.', - 'integer' => 'Поле :attribute должно быть целым числом.', - 'ip' => 'Поле :attribute должно быть действительным IP-адресом.', - 'ipv4' => 'Поле :attribute должно быть действительным IPv4-адресом.', - 'ipv6' => 'Поле :attribute должно быть действительным IPv6-адресом.', - 'json' => 'Поле :attribute должно быть JSON строкой.', - 'lt' => [ - 'array' => 'Количество элементов в поле :attribute должно быть меньше :value.', - 'file' => 'Размер файла в поле :attribute должен быть меньше :value Килобайт(а).', + 'image' => 'Поле :attribute должно быть изображением.', + 'in' => 'Выбранное значение для :attribute ошибочно.', + 'in_array' => 'Поле :attribute не существует в :other.', + 'integer' => 'Поле :attribute должно быть целым числом.', + 'ip' => 'Поле :attribute должно быть действительным IP-адресом.', + 'ipv4' => 'Поле :attribute должно быть действительным IPv4-адресом.', + 'ipv6' => 'Поле :attribute должно быть действительным IPv6-адресом.', + 'json' => 'Поле :attribute должно быть JSON строкой.', + 'lt' => [ + 'array' => 'Количество элементов в поле :attribute должно быть меньше :value.', + 'file' => 'Размер файла в поле :attribute должен быть меньше :value Килобайт(а).', 'numeric' => 'Поле :attribute должно быть меньше :value.', - 'string' => 'Количество символов в поле :attribute должно быть меньше :value.', + 'string' => 'Количество символов в поле :attribute должно быть меньше :value.', ], - 'lte' => [ - 'array' => 'Количество элементов в поле :attribute должно быть :value или меньше.', - 'file' => 'Размер файла в поле :attribute должен быть :value Килобайт(а) или меньше.', + 'lte' => [ + 'array' => 'Количество элементов в поле :attribute должно быть :value или меньше.', + 'file' => 'Размер файла в поле :attribute должен быть :value Килобайт(а) или меньше.', 'numeric' => 'Поле :attribute должно быть :value или меньше.', - 'string' => 'Количество символов в поле :attribute должно быть :value или меньше.', + 'string' => 'Количество символов в поле :attribute должно быть :value или меньше.', ], - 'max' => [ - 'array' => 'Количество элементов в поле :attribute не может превышать :max.', - 'file' => 'Размер файла в поле :attribute не может быть больше :max Килобайт(а).', + 'max' => [ + 'array' => 'Количество элементов в поле :attribute не может превышать :max.', + 'file' => 'Размер файла в поле :attribute не может быть больше :max Килобайт(а).', 'numeric' => 'Поле :attribute не может быть больше :max.', - 'string' => 'Количество символов в поле :attribute не может превышать :max.', + 'string' => 'Количество символов в поле :attribute не может превышать :max.', ], - 'mimes' => 'Поле :attribute должно быть файлом одного из следующих типов: :values.', - 'mimetypes' => 'Поле :attribute должно быть файлом одного из следующих типов: :values.', - 'min' => [ - 'array' => 'Количество элементов в поле :attribute должно быть не меньше :min.', - 'file' => 'Размер файла в поле :attribute должен быть не меньше :min Килобайт(а).', + 'mimes' => 'Поле :attribute должно быть файлом одного из следующих типов: :values.', + 'mimetypes' => 'Поле :attribute должно быть файлом одного из следующих типов: :values.', + 'min' => [ + 'array' => 'Количество элементов в поле :attribute должно быть не меньше :min.', + 'file' => 'Размер файла в поле :attribute должен быть не меньше :min Килобайт(а).', 'numeric' => 'Поле :attribute должно быть не меньше :min.', - 'string' => 'Количество символов в поле :attribute должно быть не меньше :min.', + 'string' => 'Количество символов в поле :attribute должно быть не меньше :min.', ], - 'multiple_of' => 'Значение поля :attribute должно быть кратным :value', - 'not_in' => 'Выбранное значение для :attribute ошибочно.', - 'not_regex' => 'Выбранный формат для :attribute ошибочный.', - 'numeric' => 'Поле :attribute должно быть числом.', - 'password' => 'Неверный пароль.', - 'present' => 'Поле :attribute должно присутствовать.', - 'prohibited' => 'Поле :attribute запрещено.', - 'prohibited_if' => 'Поле :attribute запрещено, когда :other равно :value.', - 'prohibited_unless' => 'Поле :attribute запрещено, если :other не входит в :values.', - 'regex' => 'Поле :attribute имеет ошибочный формат.', - 'relatable' => 'Поле :attribute не может быть связано с этим ресурсом.', - 'required' => 'Поле :attribute обязательно для заполнения.', - 'required_if' => 'Поле :attribute обязательно для заполнения, когда :other равно :value.', - 'required_unless' => 'Поле :attribute обязательно для заполнения, когда :other не равно :values.', - 'required_with' => 'Поле :attribute обязательно для заполнения, когда :values указано.', - 'required_with_all' => 'Поле :attribute обязательно для заполнения, когда :values указано.', - 'required_without' => 'Поле :attribute обязательно для заполнения, когда :values не указано.', + 'multiple_of' => 'Значение поля :attribute должно быть кратным :value', + 'not_in' => 'Выбранное значение для :attribute ошибочно.', + 'not_regex' => 'Выбранный формат для :attribute ошибочный.', + 'numeric' => 'Поле :attribute должно быть числом.', + 'password' => 'Неверный пароль.', + 'present' => 'Поле :attribute должно присутствовать.', + 'prohibited' => 'Поле :attribute запрещено.', + 'prohibited_if' => 'Поле :attribute запрещено, когда :other равно :value.', + 'prohibited_unless' => 'Поле :attribute запрещено, если :other не входит в :values.', + 'regex' => 'Поле :attribute имеет ошибочный формат.', + 'relatable' => 'Поле :attribute не может быть связано с этим ресурсом.', + 'required' => 'Поле :attribute обязательно для заполнения.', + 'required_if' => 'Поле :attribute обязательно для заполнения, когда :other равно :value.', + 'required_unless' => 'Поле :attribute обязательно для заполнения, когда :other не равно :values.', + 'required_with' => 'Поле :attribute обязательно для заполнения, когда :values указано.', + 'required_with_all' => 'Поле :attribute обязательно для заполнения, когда :values указано.', + 'required_without' => 'Поле :attribute обязательно для заполнения, когда :values не указано.', 'required_without_all' => 'Поле :attribute обязательно для заполнения, когда ни одно из :values не указано.', - 'same' => 'Значения полей :attribute и :other должны совпадать.', - 'size' => [ - 'array' => 'Количество элементов в поле :attribute должно быть равным :size.', - 'file' => 'Размер файла в поле :attribute должен быть равен :size Килобайт(а).', + 'same' => 'Значения полей :attribute и :other должны совпадать.', + 'size' => [ + 'array' => 'Количество элементов в поле :attribute должно быть равным :size.', + 'file' => 'Размер файла в поле :attribute должен быть равен :size Килобайт(а).', 'numeric' => 'Поле :attribute должно быть равным :size.', - 'string' => 'Количество символов в поле :attribute должно быть равным :size.', + 'string' => 'Количество символов в поле :attribute должно быть равным :size.', ], - 'starts_with' => 'Поле :attribute должно начинаться из одного из следующих значений: :values', - 'string' => 'Поле :attribute должно быть строкой.', - 'timezone' => 'Поле :attribute должно быть действительным часовым поясом.', - 'unique' => 'Такое значение поля :attribute уже существует.', - 'uploaded' => 'Загрузка поля :attribute не удалась.', - 'url' => 'Поле :attribute имеет ошибочный формат URL.', - 'uuid' => 'Поле :attribute должно быть корректным UUID.', - 'custom' => [ + 'starts_with' => 'Поле :attribute должно начинаться из одного из следующих значений: :values', + 'string' => 'Поле :attribute должно быть строкой.', + 'timezone' => 'Поле :attribute должно быть действительным часовым поясом.', + 'unique' => 'Такое значение поля :attribute уже существует.', + 'uploaded' => 'Загрузка поля :attribute не удалась.', + 'url' => 'Поле :attribute имеет ошибочный формат URL.', + 'uuid' => 'Поле :attribute должно быть корректным UUID.', + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Адрес', - 'age' => 'Возраст', - 'available' => 'Доступно', - 'city' => 'Город', - 'content' => 'Контент', - 'country' => 'Страна', - 'current_password' => 'Текущий пароль', - 'date' => 'Дата', - 'day' => 'День', - 'description' => 'Описание', - 'email' => 'E-Mail адрес', - 'excerpt' => 'Выдержка', - 'first_name' => 'Имя', - 'gender' => 'Пол', - 'hour' => 'Час', - 'last_name' => 'Фамилия', - 'minute' => 'Минута', - 'mobile' => 'Моб. номер', - 'month' => 'Месяц', - 'name' => 'Имя', - 'password' => 'Пароль', + 'attributes' => [ + 'address' => 'Адрес', + 'age' => 'Возраст', + 'available' => 'Доступно', + 'city' => 'Город', + 'content' => 'Контент', + 'country' => 'Страна', + 'current_password' => 'Текущий пароль', + 'date' => 'Дата', + 'day' => 'День', + 'description' => 'Описание', + 'email' => 'E-Mail адрес', + 'excerpt' => 'Выдержка', + 'first_name' => 'Имя', + 'gender' => 'Пол', + 'hour' => 'Час', + 'last_name' => 'Фамилия', + 'minute' => 'Минута', + 'mobile' => 'Моб. номер', + 'month' => 'Месяц', + 'name' => 'Имя', + 'password' => 'Пароль', 'password_confirmation' => 'Подтверждение пароля', - 'phone' => 'Телефон', - 'second' => 'Секунда', - 'sex' => 'Пол', - 'size' => 'Размер', - 'time' => 'Время', - 'title' => 'Наименование', - 'username' => 'Никнейм', - 'year' => 'Год', + 'phone' => 'Телефон', + 'second' => 'Секунда', + 'sex' => 'Пол', + 'size' => 'Размер', + 'time' => 'Время', + 'title' => 'Наименование', + 'username' => 'Никнейм', + 'year' => 'Год', ], ]; From 07c907e917304a10eb2358b43b0898bad8b96383 Mon Sep 17 00:00:00 2001 From: Abdullahi Abdul Kabir Date: Thu, 1 Feb 2024 10:44:18 +0100 Subject: [PATCH 06/31] upgrade --- composer.json | 6 +- composer.lock | 6240 +++++++++++++++++++++---------------------------- 2 files changed, 2651 insertions(+), 3595 deletions(-) diff --git a/composer.json b/composer.json index d855d6da4..6c22d6ff6 100644 --- a/composer.json +++ b/composer.json @@ -29,8 +29,8 @@ "laravel/sanctum": "^3.2", "laravel/telescope": "^4.0", "laravel/tinker": "^2.7", - "laravel/ui": "^3.0", - "sentry/sentry-laravel": "^2.0.0", + "laravel/ui": "^4.0", + "sentry/sentry-laravel": "^4.0.0", "symfony/http-client": "^6.0", "symfony/mailgun-mailer": "^6.0" }, @@ -45,7 +45,7 @@ "nunomaduro/collision": "^6.1", "nunomaduro/phpinsights": "dev-master", "phpunit/phpunit": "^9.5.10", - "spatie/laravel-ignition": "^1.0" + "spatie/laravel-ignition": "^2.0" }, "config": { "optimize-autoloader": true, diff --git a/composer.lock b/composer.lock index e2fd9090d..1660f118f 100644 --- a/composer.lock +++ b/composer.lock @@ -4,30 +4,30 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "1cc0998002c47a6c507f34ade55a283e", + "content-hash": "e3b21803525e6c60db53130a37bc1c59", "packages": [ { "name": "barryvdh/laravel-snappy", - "version": "v1.0.0", + "version": "v1.0.2", "source": { "type": "git", "url": "https://github.com/barryvdh/laravel-snappy.git", - "reference": "2c18a3602981bc6f25b32908cf8aaa05952ab2f7" + "reference": "940eec2d99b89cbc9bea2f493cf068382962a485" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/barryvdh/laravel-snappy/zipball/2c18a3602981bc6f25b32908cf8aaa05952ab2f7", - "reference": "2c18a3602981bc6f25b32908cf8aaa05952ab2f7", + "url": "https://api.github.com/repos/barryvdh/laravel-snappy/zipball/940eec2d99b89cbc9bea2f493cf068382962a485", + "reference": "940eec2d99b89cbc9bea2f493cf068382962a485", "shasum": "" }, "require": { - "illuminate/filesystem": "^6|^7|^8|^9", - "illuminate/support": "^6|^7|^8|^9", - "knplabs/knp-snappy": "^1", + "illuminate/filesystem": "^9|^10", + "illuminate/support": "^9|^10", + "knplabs/knp-snappy": "^1.4", "php": ">=7.2" }, "require-dev": { - "orchestra/testbench": "^4|^5|^6|^7" + "orchestra/testbench": "^7|^8" }, "type": "library", "extra": { @@ -70,7 +70,7 @@ ], "support": { "issues": "https://github.com/barryvdh/laravel-snappy/issues", - "source": "https://github.com/barryvdh/laravel-snappy/tree/v1.0.0" + "source": "https://github.com/barryvdh/laravel-snappy/tree/v1.0.2" }, "funding": [ { @@ -82,7 +82,7 @@ "type": "github" } ], - "time": "2022-01-29T19:36:49+00:00" + "time": "2023-04-07T10:38:54+00:00" }, { "name": "box/spout", @@ -156,30 +156,30 @@ "issues": "https://github.com/box/spout/issues", "source": "https://github.com/box/spout/tree/v3.3.0" }, + "abandoned": true, "time": "2021-05-14T21:18:09+00:00" }, { "name": "brick/math", - "version": "0.9.3", + "version": "0.11.0", "source": { "type": "git", "url": "https://github.com/brick/math.git", - "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae" + "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae", - "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae", + "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478", + "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478", "shasum": "" }, "require": { - "ext-json": "*", - "php": "^7.1 || ^8.0" + "php": "^8.0" }, "require-dev": { "php-coveralls/php-coveralls": "^2.2", - "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0", - "vimeo/psalm": "4.9.2" + "phpunit/phpunit": "^9.0", + "vimeo/psalm": "5.0.0" }, "type": "library", "autoload": { @@ -204,47 +204,45 @@ ], "support": { "issues": "https://github.com/brick/math/issues", - "source": "https://github.com/brick/math/tree/0.9.3" + "source": "https://github.com/brick/math/tree/0.11.0" }, "funding": [ { "url": "https://github.com/BenMorel", "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/brick/math", - "type": "tidelift" } ], - "time": "2021-08-15T20:50:18+00:00" + "time": "2023-01-15T23:15:59+00:00" }, { - "name": "clue/stream-filter", - "version": "v1.6.0", + "name": "carbonphp/carbon-doctrine-types", + "version": "1.0.0", "source": { "type": "git", - "url": "https://github.com/clue/stream-filter.git", - "reference": "d6169430c7731d8509da7aecd0af756a5747b78e" + "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git", + "reference": "3c430083d0b41ceed84ecccf9dac613241d7305d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/clue/stream-filter/zipball/d6169430c7731d8509da7aecd0af756a5747b78e", - "reference": "d6169430c7731d8509da7aecd0af756a5747b78e", + "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/3c430083d0b41ceed84ecccf9dac613241d7305d", + "reference": "3c430083d0b41ceed84ecccf9dac613241d7305d", "shasum": "" }, "require": { - "php": ">=5.3" + "php": "^7.1.8 || ^8.0" + }, + "conflict": { + "doctrine/dbal": ">=3.7.0" }, "require-dev": { - "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.36" + "doctrine/dbal": ">=2.0.0", + "nesbot/carbon": "^2.71.0 || ^3.0.0", + "phpunit/phpunit": "^10.3" }, "type": "library", "autoload": { - "files": [ - "src/functions_include.php" - ], "psr-4": { - "Clue\\StreamFilter\\": "src/" + "Carbon\\Doctrine\\": "src/Carbon/Doctrine/" } }, "notification-url": "https://packagist.org/downloads/", @@ -253,49 +251,50 @@ ], "authors": [ { - "name": "Christian Lück", - "email": "christian@clue.engineering" + "name": "KyleKatarn", + "email": "kylekatarnls@gmail.com" } ], - "description": "A simple and modern approach to stream filtering in PHP", - "homepage": "https://github.com/clue/php-stream-filter", + "description": "Types to use Carbon in Doctrine", "keywords": [ - "bucket brigade", - "callback", - "filter", - "php_user_filter", - "stream", - "stream_filter_append", - "stream_filter_register" + "carbon", + "date", + "datetime", + "doctrine", + "time" ], "support": { - "issues": "https://github.com/clue/stream-filter/issues", - "source": "https://github.com/clue/stream-filter/tree/v1.6.0" + "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues", + "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/1.0.0" }, "funding": [ { - "url": "https://clue.engineering/support", - "type": "custom" + "url": "https://github.com/kylekatarnls", + "type": "github" }, { - "url": "https://github.com/clue", - "type": "github" + "url": "https://opencollective.com/Carbon", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon", + "type": "tidelift" } ], - "time": "2022-02-21T13:15:14+00:00" + "time": "2023-10-01T12:35:29+00:00" }, { "name": "dflydev/dot-access-data", - "version": "v3.0.1", + "version": "v3.0.2", "source": { "type": "git", "url": "https://github.com/dflydev/dflydev-dot-access-data.git", - "reference": "0992cc19268b259a39e86f296da5f0677841f42c" + "reference": "f41715465d65213d644d3141a6a93081be5d3549" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/0992cc19268b259a39e86f296da5f0677841f42c", - "reference": "0992cc19268b259a39e86f296da5f0677841f42c", + "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549", + "reference": "f41715465d65213d644d3141a6a93081be5d3549", "shasum": "" }, "require": { @@ -306,7 +305,7 @@ "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3", "scrutinizer/ocular": "1.6.0", "squizlabs/php_codesniffer": "^3.5", - "vimeo/psalm": "^3.14" + "vimeo/psalm": "^4.0.0" }, "type": "library", "extra": { @@ -355,22 +354,22 @@ ], "support": { "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", - "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.1" + "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2" }, - "time": "2021-08-13T13:06:58+00:00" + "time": "2022-10-27T11:44:00+00:00" }, { "name": "doctrine/cache", - "version": "2.1.1", + "version": "2.2.0", "source": { "type": "git", "url": "https://github.com/doctrine/cache.git", - "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce" + "reference": "1ca8f21980e770095a31456042471a57bc4c68fb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/cache/zipball/331b4d5dbaeab3827976273e9356b3b453c300ce", - "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce", + "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb", + "reference": "1ca8f21980e770095a31456042471a57bc4c68fb", "shasum": "" }, "require": { @@ -380,18 +379,12 @@ "doctrine/common": ">2.2,<2.4" }, "require-dev": { - "alcaeus/mongo-php-adapter": "^1.1", "cache/integration-tests": "dev-master", - "doctrine/coding-standard": "^8.0", - "mongodb/mongodb": "^1.1", - "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0", - "predis/predis": "~1.0", + "doctrine/coding-standard": "^9", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", "psr/cache": "^1.0 || ^2.0 || ^3.0", - "symfony/cache": "^4.4 || ^5.2 || ^6.0@dev", - "symfony/var-exporter": "^4.4 || ^5.2 || ^6.0@dev" - }, - "suggest": { - "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver" + "symfony/cache": "^4.4 || ^5.4 || ^6", + "symfony/var-exporter": "^4.4 || ^5.4 || ^6" }, "type": "library", "autoload": { @@ -440,7 +433,7 @@ ], "support": { "issues": "https://github.com/doctrine/cache/issues", - "source": "https://github.com/doctrine/cache/tree/2.1.1" + "source": "https://github.com/doctrine/cache/tree/2.2.0" }, "funding": [ { @@ -456,25 +449,25 @@ "type": "tidelift" } ], - "time": "2021-07-17T14:49:29+00:00" + "time": "2022-05-20T20:07:39+00:00" }, { "name": "doctrine/dbal", - "version": "2.13.8", + "version": "2.13.9", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", - "reference": "dc9b3c3c8592c935a6e590441f9abc0f9eba335b" + "reference": "c480849ca3ad6706a39c970cdfe6888fa8a058b8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/dbal/zipball/dc9b3c3c8592c935a6e590441f9abc0f9eba335b", - "reference": "dc9b3c3c8592c935a6e590441f9abc0f9eba335b", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/c480849ca3ad6706a39c970cdfe6888fa8a058b8", + "reference": "c480849ca3ad6706a39c970cdfe6888fa8a058b8", "shasum": "" }, "require": { "doctrine/cache": "^1.0|^2.0", - "doctrine/deprecations": "^0.5.3", + "doctrine/deprecations": "^0.5.3|^1", "doctrine/event-manager": "^1.0", "ext-pdo": "*", "php": "^7.1 || ^8" @@ -549,7 +542,7 @@ ], "support": { "issues": "https://github.com/doctrine/dbal/issues", - "source": "https://github.com/doctrine/dbal/tree/2.13.8" + "source": "https://github.com/doctrine/dbal/tree/2.13.9" }, "funding": [ { @@ -565,29 +558,33 @@ "type": "tidelift" } ], - "time": "2022-03-09T15:25:46+00:00" + "time": "2022-05-02T20:28:55+00:00" }, { "name": "doctrine/deprecations", - "version": "v0.5.3", + "version": "1.1.3", "source": { "type": "git", "url": "https://github.com/doctrine/deprecations.git", - "reference": "9504165960a1f83cc1480e2be1dd0a0478561314" + "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314", - "reference": "9504165960a1f83cc1480e2be1dd0a0478561314", + "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab", + "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab", "shasum": "" }, "require": { - "php": "^7.1|^8.0" + "php": "^7.1 || ^8.0" }, "require-dev": { - "doctrine/coding-standard": "^6.0|^7.0|^8.0", - "phpunit/phpunit": "^7.0|^8.0|^9.0", - "psr/log": "^1.0" + "doctrine/coding-standard": "^9", + "phpstan/phpstan": "1.4.10 || 1.10.15", + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", + "psalm/plugin-phpunit": "0.18.4", + "psr/log": "^1 || ^2 || ^3", + "vimeo/psalm": "4.30.0 || 5.12.0" }, "suggest": { "psr/log": "Allows logging deprecations via PSR-3 logger implementation" @@ -606,43 +603,41 @@ "homepage": "https://www.doctrine-project.org/", "support": { "issues": "https://github.com/doctrine/deprecations/issues", - "source": "https://github.com/doctrine/deprecations/tree/v0.5.3" + "source": "https://github.com/doctrine/deprecations/tree/1.1.3" }, - "time": "2021-03-21T12:59:47+00:00" + "time": "2024-01-30T19:34:25+00:00" }, { "name": "doctrine/event-manager", - "version": "1.1.1", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/doctrine/event-manager.git", - "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f" + "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f", - "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f", + "url": "https://api.github.com/repos/doctrine/event-manager/zipball/95aa4cb529f1e96576f3fda9f5705ada4056a520", + "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520", "shasum": "" }, "require": { + "doctrine/deprecations": "^0.5.3 || ^1", "php": "^7.1 || ^8.0" }, "conflict": { - "doctrine/common": "<2.9@dev" + "doctrine/common": "<2.9" }, "require-dev": { - "doctrine/coding-standard": "^6.0", - "phpunit/phpunit": "^7.0" + "doctrine/coding-standard": "^9 || ^10", + "phpstan/phpstan": "~1.4.10 || ^1.8.8", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", + "vimeo/psalm": "^4.24" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, "autoload": { "psr-4": { - "Doctrine\\Common\\": "lib/Doctrine/Common" + "Doctrine\\Common\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -686,7 +681,7 @@ ], "support": { "issues": "https://github.com/doctrine/event-manager/issues", - "source": "https://github.com/doctrine/event-manager/tree/1.1.x" + "source": "https://github.com/doctrine/event-manager/tree/1.2.0" }, "funding": [ { @@ -702,32 +697,32 @@ "type": "tidelift" } ], - "time": "2020-05-29T18:28:51+00:00" + "time": "2022-10-12T20:51:15+00:00" }, { "name": "doctrine/inflector", - "version": "2.0.4", + "version": "2.0.9", "source": { "type": "git", "url": "https://github.com/doctrine/inflector.git", - "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89" + "reference": "2930cd5ef353871c821d5c43ed030d39ac8cfe65" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89", - "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/2930cd5ef353871c821d5c43ed030d39ac8cfe65", + "reference": "2930cd5ef353871c821d5c43ed030d39ac8cfe65", "shasum": "" }, "require": { "php": "^7.2 || ^8.0" }, "require-dev": { - "doctrine/coding-standard": "^8.2", - "phpstan/phpstan": "^0.12", - "phpstan/phpstan-phpunit": "^0.12", - "phpstan/phpstan-strict-rules": "^0.12", - "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0", - "vimeo/psalm": "^4.10" + "doctrine/coding-standard": "^11.0", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-phpunit": "^1.1", + "phpstan/phpstan-strict-rules": "^1.3", + "phpunit/phpunit": "^8.5 || ^9.5", + "vimeo/psalm": "^4.25 || ^5.4" }, "type": "library", "autoload": { @@ -777,7 +772,7 @@ ], "support": { "issues": "https://github.com/doctrine/inflector/issues", - "source": "https://github.com/doctrine/inflector/tree/2.0.4" + "source": "https://github.com/doctrine/inflector/tree/2.0.9" }, "funding": [ { @@ -793,35 +788,36 @@ "type": "tidelift" } ], - "time": "2021-10-22T20:16:43+00:00" + "time": "2024-01-15T18:05:13+00:00" }, { "name": "doctrine/lexer", - "version": "1.2.3", + "version": "3.0.0", "source": { "type": "git", "url": "https://github.com/doctrine/lexer.git", - "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229" + "reference": "84a527db05647743d50373e0ec53a152f2cde568" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229", - "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/84a527db05647743d50373e0ec53a152f2cde568", + "reference": "84a527db05647743d50373e0ec53a152f2cde568", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0" + "php": "^8.1" }, "require-dev": { - "doctrine/coding-standard": "^9.0", - "phpstan/phpstan": "^1.3", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", - "vimeo/psalm": "^4.11" + "doctrine/coding-standard": "^10", + "phpstan/phpstan": "^1.9", + "phpunit/phpunit": "^9.5", + "psalm/plugin-phpunit": "^0.18.3", + "vimeo/psalm": "^5.0" }, "type": "library", "autoload": { "psr-4": { - "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer" + "Doctrine\\Common\\Lexer\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -853,7 +849,7 @@ ], "support": { "issues": "https://github.com/doctrine/lexer/issues", - "source": "https://github.com/doctrine/lexer/tree/1.2.3" + "source": "https://github.com/doctrine/lexer/tree/3.0.0" }, "funding": [ { @@ -869,20 +865,20 @@ "type": "tidelift" } ], - "time": "2022-02-28T11:07:21+00:00" + "time": "2022-12-15T16:57:16+00:00" }, { "name": "dragonmantank/cron-expression", - "version": "v3.3.1", + "version": "v3.3.3", "source": { "type": "git", "url": "https://github.com/dragonmantank/cron-expression.git", - "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa" + "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/be85b3f05b46c39bbc0d95f6c071ddff669510fa", - "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa", + "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a", + "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a", "shasum": "" }, "require": { @@ -922,7 +918,7 @@ ], "support": { "issues": "https://github.com/dragonmantank/cron-expression/issues", - "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.1" + "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3" }, "funding": [ { @@ -930,31 +926,30 @@ "type": "github" } ], - "time": "2022-01-18T15:43:28+00:00" + "time": "2023-08-10T19:36:49+00:00" }, { "name": "egulias/email-validator", - "version": "3.1.2", + "version": "4.0.2", "source": { "type": "git", "url": "https://github.com/egulias/EmailValidator.git", - "reference": "ee0db30118f661fb166bcffbf5d82032df484697" + "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ee0db30118f661fb166bcffbf5d82032df484697", - "reference": "ee0db30118f661fb166bcffbf5d82032df484697", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e", + "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e", "shasum": "" }, "require": { - "doctrine/lexer": "^1.2", - "php": ">=7.2", - "symfony/polyfill-intl-idn": "^1.15" + "doctrine/lexer": "^2.0 || ^3.0", + "php": ">=8.1", + "symfony/polyfill-intl-idn": "^1.26" }, "require-dev": { - "php-coveralls/php-coveralls": "^2.2", - "phpunit/phpunit": "^8.5.8|^9.3.3", - "vimeo/psalm": "^4" + "phpunit/phpunit": "^10.2", + "vimeo/psalm": "^5.12" }, "suggest": { "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" @@ -962,7 +957,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0.x-dev" + "dev-master": "4.0.x-dev" } }, "autoload": { @@ -990,7 +985,7 @@ ], "support": { "issues": "https://github.com/egulias/EmailValidator/issues", - "source": "https://github.com/egulias/EmailValidator/tree/3.1.2" + "source": "https://github.com/egulias/EmailValidator/tree/4.0.2" }, "funding": [ { @@ -998,25 +993,25 @@ "type": "github" } ], - "time": "2021-10-11T09:18:27+00:00" + "time": "2023-10-06T06:47:41+00:00" }, { "name": "fruitcake/php-cors", - "version": "v1.2.0", + "version": "v1.3.0", "source": { "type": "git", "url": "https://github.com/fruitcake/php-cors.git", - "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e" + "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e", - "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e", + "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b", + "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b", "shasum": "" }, "require": { "php": "^7.4|^8.0", - "symfony/http-foundation": "^4.4|^5.4|^6" + "symfony/http-foundation": "^4.4|^5.4|^6|^7" }, "require-dev": { "phpstan/phpstan": "^1.4", @@ -1026,7 +1021,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.1-dev" + "dev-master": "1.2-dev" } }, "autoload": { @@ -1057,7 +1052,7 @@ ], "support": { "issues": "https://github.com/fruitcake/php-cors/issues", - "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0" + "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0" }, "funding": [ { @@ -1069,28 +1064,28 @@ "type": "github" } ], - "time": "2022-02-20T15:07:15+00:00" + "time": "2023-10-12T05:21:21+00:00" }, { "name": "graham-campbell/result-type", - "version": "v1.0.4", + "version": "v1.1.2", "source": { "type": "git", "url": "https://github.com/GrahamCampbell/Result-Type.git", - "reference": "0690bde05318336c7221785f2a932467f98b64ca" + "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/0690bde05318336c7221785f2a932467f98b64ca", - "reference": "0690bde05318336c7221785f2a932467f98b64ca", + "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862", + "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862", "shasum": "" }, "require": { - "php": "^7.0 || ^8.0", - "phpoption/phpoption": "^1.8" + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.2" }, "require-dev": { - "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8" + "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" }, "type": "library", "autoload": { @@ -1119,7 +1114,7 @@ ], "support": { "issues": "https://github.com/GrahamCampbell/Result-Type/issues", - "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.0.4" + "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2" }, "funding": [ { @@ -1131,26 +1126,26 @@ "type": "tidelift" } ], - "time": "2021-11-21T21:41:47+00:00" + "time": "2023-11-12T22:16:48+00:00" }, { "name": "guzzlehttp/guzzle", - "version": "7.4.1", + "version": "7.8.1", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "ee0a041b1760e6a53d2a39c8c34115adc2af2c79" + "reference": "41042bc7ab002487b876a0683fc8dce04ddce104" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/ee0a041b1760e6a53d2a39c8c34115adc2af2c79", - "reference": "ee0a041b1760e6a53d2a39c8c34115adc2af2c79", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104", + "reference": "41042bc7ab002487b876a0683fc8dce04ddce104", "shasum": "" }, "require": { "ext-json": "*", - "guzzlehttp/promises": "^1.5", - "guzzlehttp/psr7": "^1.8.3 || ^2.1", + "guzzlehttp/promises": "^1.5.3 || ^2.0.1", + "guzzlehttp/psr7": "^1.9.1 || ^2.5.1", "php": "^7.2.5 || ^8.0", "psr/http-client": "^1.0", "symfony/deprecation-contracts": "^2.2 || ^3.0" @@ -1159,10 +1154,11 @@ "psr/http-client-implementation": "1.0" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.4.1", + "bamarni/composer-bin-plugin": "^1.8.2", "ext-curl": "*", - "php-http/client-integration-tests": "^3.0", - "phpunit/phpunit": "^8.5.5 || ^9.3.5", + "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999", + "php-http/message-factory": "^1.1", + "phpunit/phpunit": "^8.5.36 || ^9.6.15", "psr/log": "^1.1 || ^2.0 || ^3.0" }, "suggest": { @@ -1172,8 +1168,9 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-master": "7.4-dev" + "bamarni-bin": { + "bin-links": true, + "forward-command": false } }, "autoload": { @@ -1239,7 +1236,7 @@ ], "support": { "issues": "https://github.com/guzzle/guzzle/issues", - "source": "https://github.com/guzzle/guzzle/tree/7.4.1" + "source": "https://github.com/guzzle/guzzle/tree/7.8.1" }, "funding": [ { @@ -1255,38 +1252,37 @@ "type": "tidelift" } ], - "time": "2021-12-06T18:43:05+00:00" + "time": "2023-12-03T20:35:24+00:00" }, { "name": "guzzlehttp/promises", - "version": "1.5.1", + "version": "2.0.2", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da" + "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da", - "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da", + "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223", + "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223", "shasum": "" }, "require": { - "php": ">=5.5" + "php": "^7.2.5 || ^8.0" }, "require-dev": { - "symfony/phpunit-bridge": "^4.4 || ^5.1" + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.36 || ^9.6.15" }, "type": "library", "extra": { - "branch-alias": { - "dev-master": "1.5-dev" + "bamarni-bin": { + "bin-links": true, + "forward-command": false } }, "autoload": { - "files": [ - "src/functions_include.php" - ], "psr-4": { "GuzzleHttp\\Promise\\": "src/" } @@ -1323,7 +1319,7 @@ ], "support": { "issues": "https://github.com/guzzle/promises/issues", - "source": "https://github.com/guzzle/promises/tree/1.5.1" + "source": "https://github.com/guzzle/promises/tree/2.0.2" }, "funding": [ { @@ -1339,26 +1335,26 @@ "type": "tidelift" } ], - "time": "2021-10-22T20:56:57+00:00" + "time": "2023-12-03T20:19:20+00:00" }, { "name": "guzzlehttp/psr7", - "version": "2.1.0", + "version": "2.6.2", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "089edd38f5b8abba6cb01567c2a8aaa47cec4c72" + "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/089edd38f5b8abba6cb01567c2a8aaa47cec4c72", - "reference": "089edd38f5b8abba6cb01567c2a8aaa47cec4c72", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221", + "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221", "shasum": "" }, "require": { "php": "^7.2.5 || ^8.0", "psr/http-factory": "^1.0", - "psr/http-message": "^1.0", + "psr/http-message": "^1.1 || ^2.0", "ralouphie/getallheaders": "^3.0" }, "provide": { @@ -1366,17 +1362,18 @@ "psr/http-message-implementation": "1.0" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.4.1", + "bamarni/composer-bin-plugin": "^1.8.2", "http-interop/http-factory-tests": "^0.9", - "phpunit/phpunit": "^8.5.8 || ^9.3.10" + "phpunit/phpunit": "^8.5.36 || ^9.6.15" }, "suggest": { "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" }, "type": "library", "extra": { - "branch-alias": { - "dev-master": "2.1-dev" + "bamarni-bin": { + "bin-links": true, + "forward-command": false } }, "autoload": { @@ -1438,7 +1435,7 @@ ], "support": { "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/2.1.0" + "source": "https://github.com/guzzle/psr7/tree/2.6.2" }, "funding": [ { @@ -1454,41 +1451,41 @@ "type": "tidelift" } ], - "time": "2021-10-06T17:43:30+00:00" + "time": "2023-12-03T20:05:35+00:00" }, { - "name": "http-interop/http-factory-guzzle", - "version": "1.2.0", + "name": "guzzlehttp/uri-template", + "version": "v1.0.3", "source": { "type": "git", - "url": "https://github.com/http-interop/http-factory-guzzle.git", - "reference": "8f06e92b95405216b237521cc64c804dd44c4a81" + "url": "https://github.com/guzzle/uri-template.git", + "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/http-interop/http-factory-guzzle/zipball/8f06e92b95405216b237521cc64c804dd44c4a81", - "reference": "8f06e92b95405216b237521cc64c804dd44c4a81", + "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c", + "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c", "shasum": "" }, "require": { - "guzzlehttp/psr7": "^1.7||^2.0", - "php": ">=7.3", - "psr/http-factory": "^1.0" - }, - "provide": { - "psr/http-factory-implementation": "^1.0" + "php": "^7.2.5 || ^8.0", + "symfony/polyfill-php80": "^1.24" }, "require-dev": { - "http-interop/http-factory-tests": "^0.9", - "phpunit/phpunit": "^9.5" - }, - "suggest": { - "guzzlehttp/psr7": "Includes an HTTP factory starting in version 2.0" + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.36 || ^9.6.15", + "uri-template/tests": "1.0.0" }, "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, "autoload": { "psr-4": { - "Http\\Factory\\Guzzle\\": "src/" + "GuzzleHttp\\UriTemplate\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -1497,35 +1494,63 @@ ], "authors": [ { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" } ], - "description": "An HTTP Factory using Guzzle PSR7", + "description": "A polyfill class for uri_template of PHP", "keywords": [ - "factory", - "http", - "psr-17", - "psr-7" + "guzzlehttp", + "uri-template" ], "support": { - "issues": "https://github.com/http-interop/http-factory-guzzle/issues", - "source": "https://github.com/http-interop/http-factory-guzzle/tree/1.2.0" + "issues": "https://github.com/guzzle/uri-template/issues", + "source": "https://github.com/guzzle/uri-template/tree/v1.0.3" }, - "time": "2021-07-21T13:50:14+00:00" + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template", + "type": "tidelift" + } + ], + "time": "2023-12-03T19:50:20+00:00" }, { "name": "intervention/image", - "version": "2.7.1", + "version": "2.7.2", "source": { "type": "git", "url": "https://github.com/Intervention/image.git", - "reference": "744ebba495319501b873a4e48787759c72e3fb8c" + "reference": "04be355f8d6734c826045d02a1079ad658322dad" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Intervention/image/zipball/744ebba495319501b873a4e48787759c72e3fb8c", - "reference": "744ebba495319501b873a4e48787759c72e3fb8c", + "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad", + "reference": "04be355f8d6734c826045d02a1079ad658322dad", "shasum": "" }, "require": { @@ -1568,8 +1593,8 @@ "authors": [ { "name": "Oliver Vogel", - "email": "oliver@olivervogel.com", - "homepage": "http://olivervogel.com/" + "email": "oliver@intervention.io", + "homepage": "https://intervention.io/" } ], "description": "Image handling and manipulation library with support for Laravel integration", @@ -1584,11 +1609,11 @@ ], "support": { "issues": "https://github.com/Intervention/image/issues", - "source": "https://github.com/Intervention/image/tree/2.7.1" + "source": "https://github.com/Intervention/image/tree/2.7.2" }, "funding": [ { - "url": "https://www.paypal.me/interventionphp", + "url": "https://paypal.me/interventionio", "type": "custom" }, { @@ -1596,20 +1621,20 @@ "type": "github" } ], - "time": "2021-12-16T16:49:26+00:00" + "time": "2022-05-21T17:30:32+00:00" }, { "name": "jaybizzle/crawler-detect", - "version": "v1.2.110", + "version": "v1.2.116", "source": { "type": "git", "url": "https://github.com/JayBizzle/Crawler-Detect.git", - "reference": "f9d63a3581428fd8a3858e161d072f0b9debc26f" + "reference": "97e9fe30219e60092e107651abb379a38b342921" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/f9d63a3581428fd8a3858e161d072f0b9debc26f", - "reference": "f9d63a3581428fd8a3858e161d072f0b9debc26f", + "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/97e9fe30219e60092e107651abb379a38b342921", + "reference": "97e9fe30219e60092e107651abb379a38b342921", "shasum": "" }, "require": { @@ -1646,9 +1671,9 @@ ], "support": { "issues": "https://github.com/JayBizzle/Crawler-Detect/issues", - "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.110" + "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.116" }, - "time": "2021-12-07T18:35:06+00:00" + "time": "2023-07-21T15:49:49+00:00" }, { "name": "jean85/pretty-package-versions", @@ -1794,36 +1819,29 @@ }, { "name": "knplabs/knp-snappy", - "version": "v1.4.1", + "version": "v1.5.0", "source": { "type": "git", "url": "https://github.com/KnpLabs/snappy.git", - "reference": "5126fb5b335ec929a226314d40cd8dad497c3d67" + "reference": "98468898b50c09f26d56d905b79b0f52a2215da6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/KnpLabs/snappy/zipball/5126fb5b335ec929a226314d40cd8dad497c3d67", - "reference": "5126fb5b335ec929a226314d40cd8dad497c3d67", + "url": "https://api.github.com/repos/KnpLabs/snappy/zipball/98468898b50c09f26d56d905b79b0f52a2215da6", + "reference": "98468898b50c09f26d56d905b79b0f52a2215da6", "shasum": "" }, "require": { - "php": ">=7.1", - "psr/log": "^1.0||^2.0||^3.0", - "symfony/process": "~3.4||~4.3||~5.0||~6.0" + "php": ">=8.1", + "psr/log": "^2.0||^3.0", + "symfony/process": "^5.0||^6.0||^7.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^2.16||^3.0", + "friendsofphp/php-cs-fixer": "^3.0", "pedrotroller/php-cs-custom-fixer": "^2.19", - "phpstan/phpstan": "^0.12.7", - "phpstan/phpstan-phpunit": "^0.12.6", - "phpunit/phpunit": "~7.4||~8.5" - }, - "suggest": { - "h4cc/wkhtmltoimage-amd64": "Provides wkhtmltoimage-amd64 binary for Linux-compatible machines, use version `~0.12` as dependency", - "h4cc/wkhtmltoimage-i386": "Provides wkhtmltoimage-i386 binary for Linux-compatible machines, use version `~0.12` as dependency", - "h4cc/wkhtmltopdf-amd64": "Provides wkhtmltopdf-amd64 binary for Linux-compatible machines, use version `~0.12` as dependency", - "h4cc/wkhtmltopdf-i386": "Provides wkhtmltopdf-i386 binary for Linux-compatible machines, use version `~0.12` as dependency", - "wemersonjanuario/wkhtmltopdf-windows": "Provides wkhtmltopdf executable for Windows, use version `~0.12` as dependency" + "phpstan/phpstan": "^1.0.0", + "phpstan/phpstan-phpunit": "^1.0.0", + "phpunit/phpunit": "^8.5" }, "type": "library", "extra": { @@ -1862,27 +1880,27 @@ ], "support": { "issues": "https://github.com/KnpLabs/snappy/issues", - "source": "https://github.com/KnpLabs/snappy/tree/v1.4.1" + "source": "https://github.com/KnpLabs/snappy/tree/v1.5.0" }, - "time": "2022-01-07T13:03:38+00:00" + "time": "2023-12-18T09:12:11+00:00" }, { "name": "laravel-enso/action-logger", - "version": "3.1.1", + "version": "3.3.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/action-logger.git", - "reference": "eaf4c1ef3d6cf3a68ab133c376bb94b0df93a7c5" + "reference": "3e254c68543651603756af2fc3fe91ac7fdfdcfe" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/action-logger/zipball/eaf4c1ef3d6cf3a68ab133c376bb94b0df93a7c5", - "reference": "eaf4c1ef3d6cf3a68ab133c376bb94b0df93a7c5", + "url": "https://api.github.com/repos/laravel-enso/action-logger/zipball/3e254c68543651603756af2fc3fe91ac7fdfdcfe", + "reference": "3e254c68543651603756af2fc3fe91ac7fdfdcfe", "shasum": "" }, "require": { - "laravel-enso/core": "^8.0", - "laravel-enso/dynamic-methods": "^2.0", + "laravel-enso/core": "^9.0", + "laravel-enso/dynamic-methods": "^3.0", "laravel-enso/permissions": "^5.0" }, "type": "library", @@ -1920,31 +1938,31 @@ ], "support": { "issues": "https://github.com/laravel-enso/action-logger/issues", - "source": "https://github.com/laravel-enso/action-logger/tree/3.1.1" + "source": "https://github.com/laravel-enso/action-logger/tree/3.3.0" }, - "time": "2022-03-02T11:03:42+00:00" + "time": "2024-01-10T08:21:42+00:00" }, { "name": "laravel-enso/addresses", - "version": "5.0.1", + "version": "5.2.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/addresses.git", - "reference": "d1d3b0e7fd9b9d9c29c142c9569e8dd3733b47fd" + "reference": "83988dc25d70253f422d75c38e82db86fe56ae3d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/addresses/zipball/d1d3b0e7fd9b9d9c29c142c9569e8dd3733b47fd", - "reference": "d1d3b0e7fd9b9d9c29c142c9569e8dd3733b47fd", + "url": "https://api.github.com/repos/laravel-enso/addresses/zipball/83988dc25d70253f422d75c38e82db86fe56ae3d", + "reference": "83988dc25d70253f422d75c38e82db86fe56ae3d", "shasum": "" }, "require": { - "laravel-enso/core": "^8.0", + "laravel-enso/core": "^9.0", "laravel-enso/countries": "^2.0", "laravel-enso/enums": "^2.0", "laravel-enso/forms": "^4.0", "laravel-enso/google": "^2.0", - "laravel-enso/helpers": "^2.0", + "laravel-enso/helpers": "^3.0", "laravel-enso/migrator": "^2.0", "laravel-enso/rememberable": "^3.0", "laravel-enso/select": "^4.0" @@ -1953,9 +1971,7 @@ "extra": { "laravel": { "providers": [ - "LaravelEnso\\Addresses\\AppServiceProvider", - "LaravelEnso\\Addresses\\CountryServiceProvider", - "LaravelEnso\\Addresses\\UserServiceProvider" + "LaravelEnso\\Addresses\\AppServiceProvider" ] } }, @@ -1991,28 +2007,28 @@ ], "support": { "issues": "https://github.com/laravel-enso/addresses/issues", - "source": "https://github.com/laravel-enso/addresses/tree/5.0.1" + "source": "https://github.com/laravel-enso/addresses/tree/5.2.0" }, - "time": "2022-03-02T11:06:13+00:00" + "time": "2024-01-26T10:47:10+00:00" }, { "name": "laravel-enso/api", - "version": "1.4.0", + "version": "1.7.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/api.git", - "reference": "fd293ca8880d4afbcbc98f72943733b60c84feae" + "reference": "de9c6ee57724b52bbe4dd7bea3b925ce73ce6fdc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/api/zipball/fd293ca8880d4afbcbc98f72943733b60c84feae", - "reference": "fd293ca8880d4afbcbc98f72943733b60c84feae", + "url": "https://api.github.com/repos/laravel-enso/api/zipball/de9c6ee57724b52bbe4dd7bea3b925ce73ce6fdc", + "reference": "de9c6ee57724b52bbe4dd7bea3b925ce73ce6fdc", "shasum": "" }, "require": { "laravel-enso/enums": "^2.0", - "laravel-enso/helpers": "^2.0", - "laravel/framework": "^7.0|^8.0|^9.0", + "laravel-enso/helpers": "^3.0", + "laravel/framework": "^7.0|^8.0|^9.0|^10.0", "php": "^8.0" }, "type": "library", @@ -2054,30 +2070,31 @@ ], "support": { "issues": "https://github.com/laravel-enso/api/issues", - "source": "https://github.com/laravel-enso/api/tree/1.4.0" + "source": "https://github.com/laravel-enso/api/tree/1.7.0" }, - "time": "2022-03-02T11:07:02+00:00" + "time": "2024-01-22T16:13:03+00:00" }, { "name": "laravel-enso/avatars", - "version": "4.0.7", + "version": "4.1.1", "source": { "type": "git", "url": "https://github.com/laravel-enso/avatars.git", - "reference": "0d47bba95c9fa8b51ba392cf5d7513dd1b8695db" + "reference": "6927c11b5b3bba5d311be3c1f14702611c59449c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/avatars/zipball/0d47bba95c9fa8b51ba392cf5d7513dd1b8695db", - "reference": "0d47bba95c9fa8b51ba392cf5d7513dd1b8695db", + "url": "https://api.github.com/repos/laravel-enso/avatars/zipball/6927c11b5b3bba5d311be3c1f14702611c59449c", + "reference": "6927c11b5b3bba5d311be3c1f14702611c59449c", "shasum": "" }, "require": { - "laravel-enso/core": "^8.0", + "laravel-enso/core": "^9.0", + "laravel-enso/dynamic-methods": "^3.0", "laravel-enso/files": "^5.0", "laravel-enso/image-transformer": "^2.0", "laravel-enso/migrator": "^2.0", - "laravolt/avatar": "^4.0" + "laravolt/avatar": "^5.0" }, "type": "library", "extra": { @@ -2116,29 +2133,30 @@ ], "support": { "issues": "https://github.com/laravel-enso/avatars/issues", - "source": "https://github.com/laravel-enso/avatars/tree/4.0.7" + "source": "https://github.com/laravel-enso/avatars/tree/4.1.1" }, - "time": "2022-03-07T12:34:59+00:00" + "time": "2024-02-01T09:36:11+00:00" }, { "name": "laravel-enso/calendar", - "version": "3.0.1", + "version": "3.1.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/calendar.git", - "reference": "d0fd3995d43fb788edc2555fa7b9b6c612672d44" + "reference": "2de2ca23b6b2de1221883c09e15fadd71ce144a3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/calendar/zipball/d0fd3995d43fb788edc2555fa7b9b6c612672d44", - "reference": "d0fd3995d43fb788edc2555fa7b9b6c612672d44", + "url": "https://api.github.com/repos/laravel-enso/calendar/zipball/2de2ca23b6b2de1221883c09e15fadd71ce144a3", + "reference": "2de2ca23b6b2de1221883c09e15fadd71ce144a3", "shasum": "" }, "require": { - "laravel-enso/core": "^8.0", + "laravel-enso/core": "^9.0", + "laravel-enso/dynamic-methods": "^3.0", "laravel-enso/enums": "^2.0", "laravel-enso/forms": "^4.0", - "laravel-enso/helpers": "^2.0", + "laravel-enso/helpers": "^3.0", "laravel-enso/migrator": "^2.1", "laravel-enso/people": "^4.0", "laravel-enso/permissions": "^5.0", @@ -2153,8 +2171,7 @@ "LaravelEnso\\Calendar\\AppServiceProvider", "LaravelEnso\\Calendar\\AuthServiceProvider", "LaravelEnso\\Calendar\\CalendarServiceProvider", - "LaravelEnso\\Calendar\\EnumServiceProvider", - "LaravelEnso\\Calendar\\UserServiceProvider" + "LaravelEnso\\Calendar\\EnumServiceProvider" ] } }, @@ -2196,28 +2213,28 @@ ], "support": { "issues": "https://github.com/laravel-enso/calendar/issues", - "source": "https://github.com/laravel-enso/calendar/tree/3.0.1" + "source": "https://github.com/laravel-enso/calendar/tree/3.1.0" }, - "time": "2022-03-02T11:12:08+00:00" + "time": "2024-01-17T07:25:04+00:00" }, { "name": "laravel-enso/charts", - "version": "4.4.0", + "version": "4.5.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/charts.git", - "reference": "ae3e79a4075849a04cc06d2d6ab6256385d45889" + "reference": "2ba5cab09c41113a883b0220f83a0b7e50bf4656" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/charts/zipball/ae3e79a4075849a04cc06d2d6ab6256385d45889", - "reference": "ae3e79a4075849a04cc06d2d6ab6256385d45889", + "url": "https://api.github.com/repos/laravel-enso/charts/zipball/2ba5cab09c41113a883b0220f83a0b7e50bf4656", + "reference": "2ba5cab09c41113a883b0220f83a0b7e50bf4656", "shasum": "" }, "require": { - "laravel-enso/helpers": "^2.0", - "laravel/framework": "^7.0|^8.0|^9.0", - "php": ">=7.4.0" + "laravel-enso/helpers": "^3.0", + "laravel/framework": "^7.0|^8.0|^9.0|^10.0", + "php": "^8.0" }, "type": "library", "extra": { @@ -2255,28 +2272,28 @@ ], "support": { "issues": "https://github.com/laravel-enso/charts/issues", - "source": "https://github.com/laravel-enso/charts/tree/4.4.0" + "source": "https://github.com/laravel-enso/charts/tree/4.5.0" }, - "time": "2022-03-02T11:15:10+00:00" + "time": "2024-01-10T10:28:39+00:00" }, { "name": "laravel-enso/comments", - "version": "4.2.1", + "version": "4.3.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/comments.git", - "reference": "375496c7a5bf9003c6ea527de87d455188eb915c" + "reference": "22ab6a5e215c9903ee47a81280077468537f758b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/comments/zipball/375496c7a5bf9003c6ea527de87d455188eb915c", - "reference": "375496c7a5bf9003c6ea527de87d455188eb915c", + "url": "https://api.github.com/repos/laravel-enso/comments/zipball/22ab6a5e215c9903ee47a81280077468537f758b", + "reference": "22ab6a5e215c9903ee47a81280077468537f758b", "shasum": "" }, "require": { - "laravel-enso/core": "^8.0", - "laravel-enso/dynamic-methods": "^2.0", - "laravel-enso/helpers": "^2.0", + "laravel-enso/core": "^9.0", + "laravel-enso/dynamic-methods": "^3.0", + "laravel-enso/helpers": "^3.0", "laravel-enso/migrator": "^2.1", "laravel-enso/track-who": "^2.0" }, @@ -2285,8 +2302,7 @@ "laravel": { "providers": [ "LaravelEnso\\Comments\\AppServiceProvider", - "LaravelEnso\\Comments\\AuthServiceProvider", - "LaravelEnso\\Comments\\UserServiceProvider" + "LaravelEnso\\Comments\\AuthServiceProvider" ], "aliases": [] } @@ -2318,31 +2334,31 @@ ], "support": { "issues": "https://github.com/laravel-enso/comments/issues", - "source": "https://github.com/laravel-enso/comments/tree/4.2.1" + "source": "https://github.com/laravel-enso/comments/tree/4.3.0" }, - "time": "2022-03-02T11:19:02+00:00" + "time": "2024-01-10T10:14:24+00:00" }, { "name": "laravel-enso/companies", - "version": "4.0.4", + "version": "4.1.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/companies.git", - "reference": "c98c27af2175a1b7df2891e522e83a7b6634d390" + "reference": "608fdf42b41a814634c174bd6f77ad928514c50d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/companies/zipball/c98c27af2175a1b7df2891e522e83a7b6634d390", - "reference": "c98c27af2175a1b7df2891e522e83a7b6634d390", + "url": "https://api.github.com/repos/laravel-enso/companies/zipball/608fdf42b41a814634c174bd6f77ad928514c50d", + "reference": "608fdf42b41a814634c174bd6f77ad928514c50d", "shasum": "" }, "require": { "laravel-enso/addresses": "^5.0", - "laravel-enso/core": "^8.0", - "laravel-enso/dynamic-methods": "^2.0", + "laravel-enso/core": "^9.0", + "laravel-enso/dynamic-methods": "^3.0", "laravel-enso/enums": "^2.0", "laravel-enso/forms": "^4.0", - "laravel-enso/helpers": "^2.0", + "laravel-enso/helpers": "^3.0", "laravel-enso/migrator": "^2.1", "laravel-enso/people": "^4.0", "laravel-enso/rememberable": "^3.0", @@ -2391,31 +2407,30 @@ ], "support": { "issues": "https://github.com/laravel-enso/companies/issues", - "source": "https://github.com/laravel-enso/companies/tree/4.0.4" + "source": "https://github.com/laravel-enso/companies/tree/4.1.0" }, - "time": "2022-03-06T12:56:14+00:00" + "time": "2024-01-10T08:34:10+00:00" }, { "name": "laravel-enso/control-panel-api", - "version": "3.2.1", + "version": "3.3.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/control-panel-api.git", - "reference": "b63d8f30527abe879e6ed7e0e7e73939354ce3bf" + "reference": "3f85d2921b7b3a334f9626646e19a15a60d5f02a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/control-panel-api/zipball/b63d8f30527abe879e6ed7e0e7e73939354ce3bf", - "reference": "b63d8f30527abe879e6ed7e0e7e73939354ce3bf", + "url": "https://api.github.com/repos/laravel-enso/control-panel-api/zipball/3f85d2921b7b3a334f9626646e19a15a60d5f02a", + "reference": "3f85d2921b7b3a334f9626646e19a15a60d5f02a", "shasum": "" }, "require": { "laravel-enso/action-logger": "^3.1", "laravel-enso/api": "^1.2", "laravel-enso/control-panel-common": "^2.0", - "laravel-enso/core": "^8.0", - "laravel-enso/enums": "^2.0", - "laravel-enso/helpers": "^2.0", + "laravel-enso/core": "^9.0", + "laravel-enso/helpers": "^3.0", "laravel-enso/logs": "^4.0" }, "type": "library", @@ -2460,26 +2475,26 @@ ], "support": { "issues": "https://github.com/laravel-enso/control-panel-api/issues", - "source": "https://github.com/laravel-enso/control-panel-api/tree/3.2.1" + "source": "https://github.com/laravel-enso/control-panel-api/tree/3.3.0" }, - "time": "2022-03-02T11:25:44+00:00" + "time": "2022-12-08T20:59:18+00:00" }, { "name": "laravel-enso/control-panel-common", - "version": "2.1.0", + "version": "2.2.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/control-panel-common.git", - "reference": "9b244b2d0bd8f4fcb5ee7d4bcf43633d4cfcca38" + "reference": "1e484d20d72d1e9e7a4ca3770e43a5f540e531be" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/control-panel-common/zipball/9b244b2d0bd8f4fcb5ee7d4bcf43633d4cfcca38", - "reference": "9b244b2d0bd8f4fcb5ee7d4bcf43633d4cfcca38", + "url": "https://api.github.com/repos/laravel-enso/control-panel-common/zipball/1e484d20d72d1e9e7a4ca3770e43a5f540e531be", + "reference": "1e484d20d72d1e9e7a4ca3770e43a5f540e531be", "shasum": "" }, "require": { - "laravel-enso/helpers": "^2.0" + "laravel-enso/helpers": "^3.0" }, "type": "library", "autoload": { @@ -2513,22 +2528,22 @@ ], "support": { "issues": "https://github.com/laravel-enso/control-panel-common/issues", - "source": "https://github.com/laravel-enso/control-panel-common/tree/2.1.0" + "source": "https://github.com/laravel-enso/control-panel-common/tree/2.2.0" }, - "time": "2021-06-27T09:03:00+00:00" + "time": "2024-02-01T09:17:53+00:00" }, { "name": "laravel-enso/core", - "version": "8.0.4", + "version": "9.0.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/core.git", - "reference": "9c716a4ca995dabdf993bbc80f8af692dc15f66b" + "reference": "eab567110437d765f7620332d6ee9734fe984ac1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/core/zipball/9c716a4ca995dabdf993bbc80f8af692dc15f66b", - "reference": "9c716a4ca995dabdf993bbc80f8af692dc15f66b", + "url": "https://api.github.com/repos/laravel-enso/core/zipball/eab567110437d765f7620332d6ee9734fe984ac1", + "reference": "eab567110437d765f7620332d6ee9734fe984ac1", "shasum": "" }, "require": { @@ -2538,11 +2553,10 @@ "laravel-enso/charts": "^4.0", "laravel-enso/companies": "^4.0", "laravel-enso/data-export": "^3.0", - "laravel-enso/dynamic-methods": "^2.0", - "laravel-enso/enums": "^2.0", + "laravel-enso/dynamic-methods": "^3.0", "laravel-enso/files": "^5.0", "laravel-enso/forms": "^4.0", - "laravel-enso/helpers": "^2.0", + "laravel-enso/helpers": "^3.0", "laravel-enso/history-tracker": "^2.0", "laravel-enso/impersonate": "^3.2", "laravel-enso/io": "^2.3", @@ -2562,8 +2576,8 @@ "laravel-enso/track-who": "^2.0", "laravel-enso/upgrade": "^2.5", "laravel-enso/users": "^2.0", - "laravel/framework": "^9.0", - "laravel/sanctum": "^2.3", + "laravel/framework": "^10.0", + "laravel/sanctum": "^3.2", "php": ">=8.0", "voku/anti-xss": "^4.1" }, @@ -2623,29 +2637,29 @@ ], "support": { "issues": "https://github.com/laravel-enso/core/issues", - "source": "https://github.com/laravel-enso/core/tree/8.0.4" + "source": "https://github.com/laravel-enso/core/tree/9.0.0" }, - "time": "2022-03-06T09:25:23+00:00" + "time": "2024-01-09T14:03:36+00:00" }, { "name": "laravel-enso/countries", - "version": "2.3.1", + "version": "2.4.1", "source": { "type": "git", "url": "https://github.com/laravel-enso/countries.git", - "reference": "6eca132425e9305a43b0add093679d1ea453a21f" + "reference": "787681e8946e247af147f753202583d0e5a649f2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/countries/zipball/6eca132425e9305a43b0add093679d1ea453a21f", - "reference": "6eca132425e9305a43b0add093679d1ea453a21f", + "url": "https://api.github.com/repos/laravel-enso/countries/zipball/787681e8946e247af147f753202583d0e5a649f2", + "reference": "787681e8946e247af147f753202583d0e5a649f2", "shasum": "" }, "require": { - "laravel-enso/core": "^8.0", - "laravel-enso/dynamic-methods": "^2.0", + "laravel-enso/core": "^9.0", + "laravel-enso/dynamic-methods": "^3.0", "laravel-enso/enums": "^2.0", - "laravel-enso/helpers": "^2.0", + "laravel-enso/helpers": "^3.0", "laravel-enso/migrator": "^2.1", "laravel-enso/rememberable": "^3.0", "laravel-enso/select": "^4.0" @@ -2692,30 +2706,30 @@ ], "support": { "issues": "https://github.com/laravel-enso/countries/issues", - "source": "https://github.com/laravel-enso/countries/tree/2.3.1" + "source": "https://github.com/laravel-enso/countries/tree/2.4.1" }, - "time": "2022-03-02T11:33:15+00:00" + "time": "2024-01-10T10:49:17+00:00" }, { "name": "laravel-enso/data-export", - "version": "3.0.5", + "version": "3.3.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/data-export.git", - "reference": "52d4b4bf52bb39bdcc5d09972e9587a89708de39" + "reference": "72658cc9b9e9f20a4d5245c0958b6c82355e9c38" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/data-export/zipball/52d4b4bf52bb39bdcc5d09972e9587a89708de39", - "reference": "52d4b4bf52bb39bdcc5d09972e9587a89708de39", + "url": "https://api.github.com/repos/laravel-enso/data-export/zipball/72658cc9b9e9f20a4d5245c0958b6c82355e9c38", + "reference": "72658cc9b9e9f20a4d5245c0958b6c82355e9c38", "shasum": "" }, "require": { "box/spout": "^3.0", - "laravel-enso/core": "^8.0", + "laravel-enso/core": "^9.0", "laravel-enso/enums": "^2.0", "laravel-enso/files": "^5.0", - "laravel-enso/helpers": "^2.0", + "laravel-enso/helpers": "^3.0", "laravel-enso/io": "^2.0", "laravel-enso/track-who": "^2.0" }, @@ -2756,32 +2770,32 @@ ], "support": { "issues": "https://github.com/laravel-enso/data-export/issues", - "source": "https://github.com/laravel-enso/data-export/tree/3.0.5" + "source": "https://github.com/laravel-enso/data-export/tree/3.3.0" }, - "time": "2022-03-07T12:19:33+00:00" + "time": "2024-01-26T12:25:55+00:00" }, { "name": "laravel-enso/data-import", - "version": "6.0.9", + "version": "6.6.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/data-import.git", - "reference": "b11f22271f4548c748f0d1181a27a83aa0a412e7" + "reference": "f2648d56ffc53b49d1ed68320aafaeb6b6be7074" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/data-import/zipball/b11f22271f4548c748f0d1181a27a83aa0a412e7", - "reference": "b11f22271f4548c748f0d1181a27a83aa0a412e7", + "url": "https://api.github.com/repos/laravel-enso/data-import/zipball/f2648d56ffc53b49d1ed68320aafaeb6b6be7074", + "reference": "f2648d56ffc53b49d1ed68320aafaeb6b6be7074", "shasum": "" }, "require": { "box/spout": "^3.0", - "laravel-enso/core": "^8.0", - "laravel-enso/dynamic-methods": "^2.0", + "laravel-enso/core": "^9.0", + "laravel-enso/dynamic-methods": "^3.0", "laravel-enso/enums": "^2.0", "laravel-enso/excel": "^3.0", "laravel-enso/files": "^5.0", - "laravel-enso/helpers": "^2.0", + "laravel-enso/helpers": "^3.0", "laravel-enso/io": "^2.0", "laravel-enso/migrator": "^2.0", "laravel-enso/select": "^4.0", @@ -2832,89 +2846,28 @@ ], "support": { "issues": "https://github.com/laravel-enso/data-import/issues", - "source": "https://github.com/laravel-enso/data-import/tree/6.0.9" - }, - "time": "2022-03-03T14:24:09+00:00" - }, - { - "name": "laravel-enso/discussions", - "version": "4.0.0", - "source": { - "type": "git", - "url": "https://github.com/laravel-enso/discussions.git", - "reference": "98c0fbb521281e11ce145607817ee3ecc1803046" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/discussions/zipball/98c0fbb521281e11ce145607817ee3ecc1803046", - "reference": "98c0fbb521281e11ce145607817ee3ecc1803046", - "shasum": "" - }, - "require": { - "laravel-enso/core": "^8.0", - "laravel-enso/enums": "^2.0", - "laravel-enso/helpers": "^2.0", - "laravel-enso/migrator": "^2.0", - "laravel-enso/track-who": "^2.0" - }, - "type": "library", - "extra": { - "laravel": { - "providers": [ - "LaravelEnso\\Discussions\\AppServiceProvider", - "LaravelEnso\\Discussions\\AuthServiceProvider" - ], - "aliases": [] - } + "source": "https://github.com/laravel-enso/data-import/tree/6.6.0" }, - "autoload": { - "psr-4": { - "LaravelEnso\\Discussions\\": "src/", - "LaravelEnso\\Discussions\\Database\\Factories\\": "database/factories/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Adrian Ocneanu", - "email": "aocneanu@gmail.com", - "homepage": "https://laravel-enso.com", - "role": "Developer" - } - ], - "description": "Discussion board for Laravel Enso", - "homepage": "https://github.com/laravel-enso/discussions", - "keywords": [ - "discussions", - "laravel-enso" - ], - "support": { - "issues": "https://github.com/laravel-enso/discussions/issues", - "source": "https://github.com/laravel-enso/discussions/tree/4.0.0" - }, - "time": "2022-02-25T07:11:22+00:00" + "time": "2024-01-09T15:37:30+00:00" }, { "name": "laravel-enso/documents", - "version": "5.0.4", + "version": "5.1.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/documents.git", - "reference": "f71506de9a96a4b8a22bbd3f5965f47d4f5583de" + "reference": "7a7ac6c2a0b2acd214083b4f07d7df0ba772e8f7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/documents/zipball/f71506de9a96a4b8a22bbd3f5965f47d4f5583de", - "reference": "f71506de9a96a4b8a22bbd3f5965f47d4f5583de", + "url": "https://api.github.com/repos/laravel-enso/documents/zipball/7a7ac6c2a0b2acd214083b4f07d7df0ba772e8f7", + "reference": "7a7ac6c2a0b2acd214083b4f07d7df0ba772e8f7", "shasum": "" }, "require": { - "laravel-enso/core": "^8.0", + "laravel-enso/core": "^9.0", "laravel-enso/files": "^5.0", - "laravel-enso/helpers": "^2.0", + "laravel-enso/helpers": "^3.0", "laravel-enso/image-transformer": "^2.0", "laravel-enso/migrator": "^2.0", "laravel-enso/ocr": "1.0.*", @@ -2957,29 +2910,36 @@ ], "support": { "issues": "https://github.com/laravel-enso/documents/issues", - "source": "https://github.com/laravel-enso/documents/tree/5.0.4" + "source": "https://github.com/laravel-enso/documents/tree/5.1.0" }, - "time": "2022-03-03T13:43:10+00:00" + "time": "2024-01-17T09:35:07+00:00" }, { "name": "laravel-enso/dynamic-methods", - "version": "2.1.0", + "version": "3.0.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/dynamic-methods.git", - "reference": "9ff652f84f23ce2fb9a5e627dd626c8df8656944" + "reference": "bc4bdb551453f926aa802bb897f8e5665489c802" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/dynamic-methods/zipball/9ff652f84f23ce2fb9a5e627dd626c8df8656944", - "reference": "9ff652f84f23ce2fb9a5e627dd626c8df8656944", + "url": "https://api.github.com/repos/laravel-enso/dynamic-methods/zipball/bc4bdb551453f926aa802bb897f8e5665489c802", + "reference": "bc4bdb551453f926aa802bb897f8e5665489c802", "shasum": "" }, "require": { - "laravel/framework": "^9.0", - "php": ">=8.0" + "laravel/framework": "^10.0", + "php": "^8.0" }, "type": "library", + "extra": { + "laravel": { + "providers": [ + "LaravelEnso\\DynamicMethods\\AppServiceProvider" + ] + } + }, "autoload": { "psr-4": { "LaravelEnso\\DynamicMethods\\": "src/" @@ -3005,27 +2965,27 @@ ], "support": { "issues": "https://github.com/laravel-enso/dynamic-methods/issues", - "source": "https://github.com/laravel-enso/dynamic-methods/tree/2.1.0" + "source": "https://github.com/laravel-enso/dynamic-methods/tree/3.0.0" }, - "time": "2022-03-02T11:41:10+00:00" + "time": "2024-01-09T13:59:04+00:00" }, { "name": "laravel-enso/enums", - "version": "2.2.0", + "version": "2.3.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/enums.git", - "reference": "7a5f0a216a4c11b4e721cc7dda30928e80af3598" + "reference": "c08f953025d24a7f402212b309ca257b84630ab4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/enums/zipball/7a5f0a216a4c11b4e721cc7dda30928e80af3598", - "reference": "7a5f0a216a4c11b4e721cc7dda30928e80af3598", + "url": "https://api.github.com/repos/laravel-enso/enums/zipball/c08f953025d24a7f402212b309ca257b84630ab4", + "reference": "c08f953025d24a7f402212b309ca257b84630ab4", "shasum": "" }, "require": { - "laravel/framework": "^7.0|^8.0|^9.0", - "php": ">=7.4.0" + "laravel/framework": "^7.0|^8.0|^9.0|^10.0", + "php": "^8.0" }, "type": "library", "extra": { @@ -3070,27 +3030,27 @@ ], "support": { "issues": "https://github.com/laravel-enso/enums/issues", - "source": "https://github.com/laravel-enso/enums/tree/2.2.0" + "source": "https://github.com/laravel-enso/enums/tree/2.3.0" }, - "time": "2022-03-02T11:55:07+00:00" + "time": "2024-01-18T10:51:44+00:00" }, { "name": "laravel-enso/excel", - "version": "3.1.4", + "version": "3.2.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/excel.git", - "reference": "6f2e04973a74e9b2bf7bf331c5aa40ea82fca4f5" + "reference": "0332acef5f3ad118bd13a2f8bf09b3d8b13fc761" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/excel/zipball/6f2e04973a74e9b2bf7bf331c5aa40ea82fca4f5", - "reference": "6f2e04973a74e9b2bf7bf331c5aa40ea82fca4f5", + "url": "https://api.github.com/repos/laravel-enso/excel/zipball/0332acef5f3ad118bd13a2f8bf09b3d8b13fc761", + "reference": "0332acef5f3ad118bd13a2f8bf09b3d8b13fc761", "shasum": "" }, "require": { "box/spout": "^3.0", - "php": ">=8.0" + "php": "^8.0" }, "type": "library", "autoload": { @@ -3131,27 +3091,27 @@ ], "support": { "issues": "https://github.com/laravel-enso/excel/issues", - "source": "https://github.com/laravel-enso/excel/tree/3.1.4" + "source": "https://github.com/laravel-enso/excel/tree/3.2.0" }, - "time": "2021-06-09T10:17:33+00:00" + "time": "2024-01-17T07:30:34+00:00" }, { "name": "laravel-enso/files", - "version": "5.1.6", + "version": "5.3.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/files.git", - "reference": "5084bb0d8215c304e8cbb34021c1bc3cccf58586" + "reference": "d93ee3c1a2cced90a97e9ed2179ccdb2d2920f70" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/files/zipball/5084bb0d8215c304e8cbb34021c1bc3cccf58586", - "reference": "5084bb0d8215c304e8cbb34021c1bc3cccf58586", + "url": "https://api.github.com/repos/laravel-enso/files/zipball/d93ee3c1a2cced90a97e9ed2179ccdb2d2920f70", + "reference": "d93ee3c1a2cced90a97e9ed2179ccdb2d2920f70", "shasum": "" }, "require": { - "laravel-enso/core": "^8.0", - "laravel-enso/helpers": "^2.0", + "laravel-enso/core": "^9.0", + "laravel-enso/helpers": "^3.0", "laravel-enso/image-transformer": "^2.0", "laravel-enso/migrator": "^2.0", "laravel-enso/track-who": "^2.0" @@ -3195,28 +3155,28 @@ ], "support": { "issues": "https://github.com/laravel-enso/files/issues", - "source": "https://github.com/laravel-enso/files/tree/5.1.6" + "source": "https://github.com/laravel-enso/files/tree/5.3.0" }, - "time": "2022-03-07T12:33:32+00:00" + "time": "2024-01-17T09:36:58+00:00" }, { "name": "laravel-enso/filters", - "version": "2.1.1", + "version": "2.2.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/filters.git", - "reference": "706f09567ee94d54b88a1baac3cda9e9183212e2" + "reference": "44b533e389b54bde25272047da431a3f64915be8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/filters/zipball/706f09567ee94d54b88a1baac3cda9e9183212e2", - "reference": "706f09567ee94d54b88a1baac3cda9e9183212e2", + "url": "https://api.github.com/repos/laravel-enso/filters/zipball/44b533e389b54bde25272047da431a3f64915be8", + "reference": "44b533e389b54bde25272047da431a3f64915be8", "shasum": "" }, "require": { - "laravel-enso/helpers": "^2.0", - "laravel/framework": "^9.0", - "php": ">=8.0" + "laravel-enso/helpers": "^3.0", + "laravel/framework": "^10.0", + "php": "^8.0" }, "type": "library", "autoload": { @@ -3245,29 +3205,29 @@ ], "support": { "issues": "https://github.com/laravel-enso/filters/issues", - "source": "https://github.com/laravel-enso/filters/tree/2.1.1" + "source": "https://github.com/laravel-enso/filters/tree/2.2.0" }, - "time": "2022-03-06T10:40:53+00:00" + "time": "2024-01-11T12:03:33+00:00" }, { "name": "laravel-enso/forms", - "version": "4.4.0", + "version": "4.6.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/forms.git", - "reference": "5da26ffd988130241edbc8d3de9af115f0cfc11a" + "reference": "7575911781497d317ee5912fd91696736031725f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/forms/zipball/5da26ffd988130241edbc8d3de9af115f0cfc11a", - "reference": "5da26ffd988130241edbc8d3de9af115f0cfc11a", + "url": "https://api.github.com/repos/laravel-enso/forms/zipball/7575911781497d317ee5912fd91696736031725f", + "reference": "7575911781497d317ee5912fd91696736031725f", "shasum": "" }, "require": { "laravel-enso/enums": "^2.0", - "laravel-enso/helpers": "^2.0", - "laravel/framework": "^9.0", - "php": ">=8.0" + "laravel-enso/helpers": "^3.0", + "laravel/framework": "^10.0", + "php": "^8.0" }, "type": "library", "extra": { @@ -3305,27 +3265,27 @@ ], "support": { "issues": "https://github.com/laravel-enso/forms/issues", - "source": "https://github.com/laravel-enso/forms/tree/4.4.0" + "source": "https://github.com/laravel-enso/forms/tree/4.6.0" }, - "time": "2022-03-02T12:02:56+00:00" + "time": "2024-01-10T10:40:10+00:00" }, { "name": "laravel-enso/google", - "version": "2.0.0", + "version": "2.3.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/google.git", - "reference": "2929bbb8360171b83ee1dd0e37e3ecd9fd0afdcb" + "reference": "fc92df376112a609443f400fab54de8dc5218998" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/google/zipball/2929bbb8360171b83ee1dd0e37e3ecd9fd0afdcb", - "reference": "2929bbb8360171b83ee1dd0e37e3ecd9fd0afdcb", + "url": "https://api.github.com/repos/laravel-enso/google/zipball/fc92df376112a609443f400fab54de8dc5218998", + "reference": "fc92df376112a609443f400fab54de8dc5218998", "shasum": "" }, "require": { "laravel-enso/forms": "^4.0", - "laravel-enso/helpers": "^2.0", + "laravel-enso/helpers": "^3.0", "laravel-enso/migrator": "^2.0", "laravel-enso/upgrade": "^2.0" }, @@ -3367,27 +3327,27 @@ "homepage": "https://www.laravel-enso.com", "support": { "issues": "https://github.com/laravel-enso/google/issues", - "source": "https://github.com/laravel-enso/google/tree/2.0.0" + "source": "https://github.com/laravel-enso/google/tree/2.3.0" }, - "time": "2022-02-25T08:37:49+00:00" + "time": "2024-01-31T13:50:20+00:00" }, { "name": "laravel-enso/helpers", - "version": "2.7.2", + "version": "3.0.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/helpers.git", - "reference": "1d7ef41a1fbc9ed59ffde2c4c0fd22deeff042e9" + "reference": "f41e5a5805faf24f2962a43b5e343dcac0003b39" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/helpers/zipball/1d7ef41a1fbc9ed59ffde2c4c0fd22deeff042e9", - "reference": "1d7ef41a1fbc9ed59ffde2c4c0fd22deeff042e9", + "url": "https://api.github.com/repos/laravel-enso/helpers/zipball/f41e5a5805faf24f2962a43b5e343dcac0003b39", + "reference": "f41e5a5805faf24f2962a43b5e343dcac0003b39", "shasum": "" }, "require": { - "laravel/framework": "^9.0", - "php": ">=8.0" + "laravel/framework": "^10.0", + "php": "^8.0" }, "type": "library", "extra": { @@ -3422,27 +3382,27 @@ ], "support": { "issues": "https://github.com/laravel-enso/helpers/issues", - "source": "https://github.com/laravel-enso/helpers/tree/2.7.2" + "source": "https://github.com/laravel-enso/helpers/tree/3.0.0" }, - "time": "2022-03-09T11:28:48+00:00" + "time": "2024-01-09T14:10:36+00:00" }, { "name": "laravel-enso/history-tracker", - "version": "2.1.0", + "version": "2.2.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/history-tracker.git", - "reference": "e5eaeb2f0024f6a59461d36ac69054076a0ce6dd" + "reference": "29468ce638bfecbc613f1141d753b05163d6ecbf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/history-tracker/zipball/e5eaeb2f0024f6a59461d36ac69054076a0ce6dd", - "reference": "e5eaeb2f0024f6a59461d36ac69054076a0ce6dd", + "url": "https://api.github.com/repos/laravel-enso/history-tracker/zipball/29468ce638bfecbc613f1141d753b05163d6ecbf", + "reference": "29468ce638bfecbc613f1141d753b05163d6ecbf", "shasum": "" }, "require": { - "laravel/framework": "^7.0|^8.0|^9.0", - "php": ">=7.4.0" + "laravel/framework": "^7.0|^8.0|^9.0|^10.0", + "php": "^8.0" }, "type": "library", "autoload": { @@ -3470,28 +3430,28 @@ ], "support": { "issues": "https://github.com/laravel-enso/history-tracker/issues", - "source": "https://github.com/laravel-enso/history-tracker/tree/2.1.0" + "source": "https://github.com/laravel-enso/history-tracker/tree/2.2.0" }, - "time": "2022-03-02T12:07:21+00:00" + "time": "2024-01-26T14:16:19+00:00" }, { "name": "laravel-enso/how-to", - "version": "5.0.4", + "version": "5.1.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/how-to.git", - "reference": "b1020186c713c9add2130f5153f698cdea4047fa" + "reference": "be117a4bbf6d0c8ac25fe8f18292771785273a27" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/how-to/zipball/b1020186c713c9add2130f5153f698cdea4047fa", - "reference": "b1020186c713c9add2130f5153f698cdea4047fa", + "url": "https://api.github.com/repos/laravel-enso/how-to/zipball/be117a4bbf6d0c8ac25fe8f18292771785273a27", + "reference": "be117a4bbf6d0c8ac25fe8f18292771785273a27", "shasum": "" }, "require": { - "laravel-enso/core": "^8.0", + "laravel-enso/core": "^9.0", "laravel-enso/files": "^5.0", - "laravel-enso/helpers": "^2.0", + "laravel-enso/helpers": "^3.0", "laravel-enso/migrator": "^2.0" }, "type": "library", @@ -3530,29 +3490,29 @@ ], "support": { "issues": "https://github.com/laravel-enso/how-to/issues", - "source": "https://github.com/laravel-enso/how-to/tree/5.0.4" + "source": "https://github.com/laravel-enso/how-to/tree/5.1.0" }, - "time": "2022-03-03T13:45:38+00:00" + "time": "2024-01-26T09:58:55+00:00" }, { "name": "laravel-enso/image-transformer", - "version": "2.1.0", + "version": "2.2.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/image-transformer.git", - "reference": "b4e08c3a2c4fff36dd120ec8a097c7f0b2a8de36" + "reference": "f69bb99ccb428b29686af83e44e95f5990f31200" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/image-transformer/zipball/b4e08c3a2c4fff36dd120ec8a097c7f0b2a8de36", - "reference": "b4e08c3a2c4fff36dd120ec8a097c7f0b2a8de36", + "url": "https://api.github.com/repos/laravel-enso/image-transformer/zipball/f69bb99ccb428b29686af83e44e95f5990f31200", + "reference": "f69bb99ccb428b29686af83e44e95f5990f31200", "shasum": "" }, "require": { "intervention/image": "^2.5", - "laravel-enso/helpers": "^2.0", - "laravel/framework": "^9.0", - "php": ">=8.0", + "laravel-enso/helpers": "^3.0", + "laravel/framework": "^10.0", + "php": "^8.0", "spatie/laravel-image-optimizer": "^1.6" }, "type": "library", @@ -3589,27 +3549,27 @@ ], "support": { "issues": "https://github.com/laravel-enso/image-transformer/issues", - "source": "https://github.com/laravel-enso/image-transformer/tree/2.1.0" + "source": "https://github.com/laravel-enso/image-transformer/tree/2.2.0" }, - "time": "2022-03-02T12:12:07+00:00" + "time": "2024-01-31T07:09:08+00:00" }, { "name": "laravel-enso/impersonate", - "version": "3.2.1", + "version": "3.3.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/impersonate.git", - "reference": "f50e5f6c6a86a73a38086967a0de1330a8c56f34" + "reference": "4bb69ca72677787abdd71a2316cf66c4eada76d0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/impersonate/zipball/f50e5f6c6a86a73a38086967a0de1330a8c56f34", - "reference": "f50e5f6c6a86a73a38086967a0de1330a8c56f34", + "url": "https://api.github.com/repos/laravel-enso/impersonate/zipball/4bb69ca72677787abdd71a2316cf66c4eada76d0", + "reference": "4bb69ca72677787abdd71a2316cf66c4eada76d0", "shasum": "" }, "require": { - "laravel-enso/core": "^8.0", - "laravel-enso/dynamic-methods": "^2.0", + "laravel-enso/core": "^9.0", + "laravel-enso/dynamic-methods": "^3.0", "laravel-enso/migrator": "^2.1" }, "type": "library", @@ -3648,26 +3608,26 @@ ], "support": { "issues": "https://github.com/laravel-enso/impersonate/issues", - "source": "https://github.com/laravel-enso/impersonate/tree/3.2.1" + "source": "https://github.com/laravel-enso/impersonate/tree/3.3.0" }, - "time": "2022-03-02T12:13:45+00:00" + "time": "2024-01-10T09:41:13+00:00" }, { "name": "laravel-enso/io", - "version": "2.3.0", + "version": "2.5.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/io.git", - "reference": "5b439146d1b35836cd95dde11647bab227feb98a" + "reference": "cc1372301526f56a07d0f86d5ab874d51ea131f7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/io/zipball/5b439146d1b35836cd95dde11647bab227feb98a", - "reference": "5b439146d1b35836cd95dde11647bab227feb98a", + "url": "https://api.github.com/repos/laravel-enso/io/zipball/cc1372301526f56a07d0f86d5ab874d51ea131f7", + "reference": "cc1372301526f56a07d0f86d5ab874d51ea131f7", "shasum": "" }, "require": { - "laravel-enso/core": "^8.0", + "laravel-enso/core": "^9.0", "laravel-enso/enums": "^2.0" }, "type": "library", @@ -3707,32 +3667,32 @@ ], "support": { "issues": "https://github.com/laravel-enso/io/issues", - "source": "https://github.com/laravel-enso/io/tree/2.3.0" + "source": "https://github.com/laravel-enso/io/tree/2.5.0" }, - "time": "2022-02-25T09:27:34+00:00" + "time": "2024-01-29T15:41:54+00:00" }, { "name": "laravel-enso/localisation", - "version": "5.0.5", + "version": "5.1.2", "source": { "type": "git", "url": "https://github.com/laravel-enso/localisation.git", - "reference": "a32f9f2cea178dbb898d3985e17770aaf62aa12a" + "reference": "1c17ee539fceab0b2baab1f1d518bfd2e81a921c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/localisation/zipball/a32f9f2cea178dbb898d3985e17770aaf62aa12a", - "reference": "a32f9f2cea178dbb898d3985e17770aaf62aa12a", + "url": "https://api.github.com/repos/laravel-enso/localisation/zipball/1c17ee539fceab0b2baab1f1d518bfd2e81a921c", + "reference": "1c17ee539fceab0b2baab1f1d518bfd2e81a921c", "shasum": "" }, "require": { - "laravel-enso/core": "^8.0", + "laravel-enso/core": "^9.0", "laravel-enso/forms": "^4.0", - "laravel-enso/helpers": "^2.0", + "laravel-enso/helpers": "^3.0", "laravel-enso/migrator": "^2.0", "laravel-enso/select": "^4.0", "laravel-enso/tables": "^4.0", - "php": ">=8.0" + "php": "^8.0" }, "type": "library", "extra": { @@ -3771,27 +3731,27 @@ ], "support": { "issues": "https://github.com/laravel-enso/localisation/issues", - "source": "https://github.com/laravel-enso/localisation/tree/5.0.5" + "source": "https://github.com/laravel-enso/localisation/tree/5.1.2" }, - "time": "2022-03-03T11:20:34+00:00" + "time": "2024-01-26T11:11:39+00:00" }, { "name": "laravel-enso/logs", - "version": "4.1.1", + "version": "4.2.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/logs.git", - "reference": "17518355a86b8fde51b8ead2d956de0706637a7f" + "reference": "c8f5764655fe729c7351a8a5555df6704b5e4283" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/logs/zipball/17518355a86b8fde51b8ead2d956de0706637a7f", - "reference": "17518355a86b8fde51b8ead2d956de0706637a7f", + "url": "https://api.github.com/repos/laravel-enso/logs/zipball/c8f5764655fe729c7351a8a5555df6704b5e4283", + "reference": "c8f5764655fe729c7351a8a5555df6704b5e4283", "shasum": "" }, "require": { - "laravel-enso/core": "^8.0", - "laravel-enso/helpers": "^2.0", + "laravel-enso/core": "^9.0", + "laravel-enso/helpers": "^3.0", "laravel-enso/migrator": "^2.1" }, "type": "library", @@ -3830,26 +3790,26 @@ ], "support": { "issues": "https://github.com/laravel-enso/logs/issues", - "source": "https://github.com/laravel-enso/logs/tree/4.1.1" + "source": "https://github.com/laravel-enso/logs/tree/4.2.0" }, - "time": "2022-03-02T12:17:19+00:00" + "time": "2024-01-30T11:34:11+00:00" }, { "name": "laravel-enso/menus", - "version": "5.0.2", + "version": "5.1.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/menus.git", - "reference": "5619e8d9a254b2287f20bd6de8093f974dc55a63" + "reference": "c9630c15d150f115f49e294427a72c9bdbdc5669" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/menus/zipball/5619e8d9a254b2287f20bd6de8093f974dc55a63", - "reference": "5619e8d9a254b2287f20bd6de8093f974dc55a63", + "url": "https://api.github.com/repos/laravel-enso/menus/zipball/c9630c15d150f115f49e294427a72c9bdbdc5669", + "reference": "c9630c15d150f115f49e294427a72c9bdbdc5669", "shasum": "" }, "require": { - "laravel-enso/core": "^8.0", + "laravel-enso/core": "^9.0", "laravel-enso/forms": "^4.0", "laravel-enso/migrator": "^2.0", "laravel-enso/permissions": "^5.0", @@ -3894,26 +3854,26 @@ ], "support": { "issues": "https://github.com/laravel-enso/menus/issues", - "source": "https://github.com/laravel-enso/menus/tree/5.0.2" + "source": "https://github.com/laravel-enso/menus/tree/5.1.0" }, - "time": "2022-03-03T11:22:37+00:00" + "time": "2024-01-26T10:57:31+00:00" }, { "name": "laravel-enso/migrator", - "version": "2.1.0", + "version": "2.2.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/migrator.git", - "reference": "aff076cc8fee7ca2ea579130718f0de01ee7b9c1" + "reference": "4c143ee5f3dccb8d2b55bf8a7f25ddae198b51e4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/migrator/zipball/aff076cc8fee7ca2ea579130718f0de01ee7b9c1", - "reference": "aff076cc8fee7ca2ea579130718f0de01ee7b9c1", + "url": "https://api.github.com/repos/laravel-enso/migrator/zipball/4c143ee5f3dccb8d2b55bf8a7f25ddae198b51e4", + "reference": "4c143ee5f3dccb8d2b55bf8a7f25ddae198b51e4", "shasum": "" }, "require": { - "laravel-enso/core": "^8.0", + "laravel-enso/core": "^9.0", "laravel-enso/menus": "^5.0", "laravel-enso/permissions": "^5.0", "laravel-enso/roles": "^5.0" @@ -3946,26 +3906,26 @@ ], "support": { "issues": "https://github.com/laravel-enso/migrator/issues", - "source": "https://github.com/laravel-enso/migrator/tree/2.1.0" + "source": "https://github.com/laravel-enso/migrator/tree/2.2.0" }, - "time": "2022-02-25T08:57:14+00:00" + "time": "2024-01-26T10:56:00+00:00" }, { "name": "laravel-enso/notifications", - "version": "4.1.2", + "version": "4.2.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/notifications.git", - "reference": "94c0cc06f06a3eea0e6e3b59b98fe075154eeef4" + "reference": "2d004822b08a8e44893adfa5898c592bfc207a72" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/notifications/zipball/94c0cc06f06a3eea0e6e3b59b98fe075154eeef4", - "reference": "94c0cc06f06a3eea0e6e3b59b98fe075154eeef4", + "url": "https://api.github.com/repos/laravel-enso/notifications/zipball/2d004822b08a8e44893adfa5898c592bfc207a72", + "reference": "2d004822b08a8e44893adfa5898c592bfc207a72", "shasum": "" }, "require": { - "laravel-enso/core": "^8.0", + "laravel-enso/core": "^9.0", "laravel-enso/migrator": "^2.1", "pusher/pusher-php-server": "^7.0" }, @@ -4006,9 +3966,9 @@ ], "support": { "issues": "https://github.com/laravel-enso/notifications/issues", - "source": "https://github.com/laravel-enso/notifications/tree/4.1.2" + "source": "https://github.com/laravel-enso/notifications/tree/4.2.0" }, - "time": "2022-03-03T12:42:01+00:00" + "time": "2024-01-26T11:06:10+00:00" }, { "name": "laravel-enso/ocr", @@ -4067,16 +4027,16 @@ }, { "name": "laravel-enso/pdf", - "version": "2.1.1", + "version": "2.1.2", "source": { "type": "git", "url": "https://github.com/laravel-enso/pdf.git", - "reference": "e3d77d8573e401bef716d487391cc50fbf0a51c8" + "reference": "18892b2529c29b21b6f377a7bc28b1fd8787bc2a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/pdf/zipball/e3d77d8573e401bef716d487391cc50fbf0a51c8", - "reference": "e3d77d8573e401bef716d487391cc50fbf0a51c8", + "url": "https://api.github.com/repos/laravel-enso/pdf/zipball/18892b2529c29b21b6f377a7bc28b1fd8787bc2a", + "reference": "18892b2529c29b21b6f377a7bc28b1fd8787bc2a", "shasum": "" }, "require": { @@ -4128,31 +4088,31 @@ ], "support": { "issues": "https://github.com/laravel-enso/pdf/issues", - "source": "https://github.com/laravel-enso/pdf/tree/2.1.1" + "source": "https://github.com/laravel-enso/pdf/tree/2.1.2" }, - "time": "2022-03-07T07:36:50+00:00" + "time": "2023-05-17T06:29:10+00:00" }, { "name": "laravel-enso/people", - "version": "4.0.2", + "version": "4.3.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/people.git", - "reference": "25a57b55fa3d6da31a38f661ca28da6f02502f97" + "reference": "661be09120ada4d9b017636b4056089a7ca5fdfc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/people/zipball/25a57b55fa3d6da31a38f661ca28da6f02502f97", - "reference": "25a57b55fa3d6da31a38f661ca28da6f02502f97", + "url": "https://api.github.com/repos/laravel-enso/people/zipball/661be09120ada4d9b017636b4056089a7ca5fdfc", + "reference": "661be09120ada4d9b017636b4056089a7ca5fdfc", "shasum": "" }, "require": { "laravel-enso/addresses": "^5.0", - "laravel-enso/core": "^8.0", - "laravel-enso/dynamic-methods": "^2.0", + "laravel-enso/core": "^9.0", + "laravel-enso/dynamic-methods": "^3.0", "laravel-enso/enums": "^2.0", "laravel-enso/forms": "^4.0", - "laravel-enso/helpers": "^2.0", + "laravel-enso/helpers": "^3.0", "laravel-enso/migrator": "^2.0", "laravel-enso/rememberable": "^3.0", "laravel-enso/searchable": "^2.1", @@ -4196,30 +4156,30 @@ ], "support": { "issues": "https://github.com/laravel-enso/people/issues", - "source": "https://github.com/laravel-enso/people/tree/4.0.2" + "source": "https://github.com/laravel-enso/people/tree/4.3.0" }, - "time": "2022-03-03T11:24:58+00:00" + "time": "2024-01-10T09:43:36+00:00" }, { "name": "laravel-enso/permissions", - "version": "5.0.2", + "version": "5.1.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/permissions.git", - "reference": "96471e4aa3d11609ce5579fccb758e34bde96edc" + "reference": "84dadacbb6771771511e702edaabb337976dfa17" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/permissions/zipball/96471e4aa3d11609ce5579fccb758e34bde96edc", - "reference": "96471e4aa3d11609ce5579fccb758e34bde96edc", + "url": "https://api.github.com/repos/laravel-enso/permissions/zipball/84dadacbb6771771511e702edaabb337976dfa17", + "reference": "84dadacbb6771771511e702edaabb337976dfa17", "shasum": "" }, "require": { - "laravel-enso/core": "^8.0", - "laravel-enso/dynamic-methods": "^2.0", + "laravel-enso/core": "^9.0", + "laravel-enso/dynamic-methods": "^3.0", "laravel-enso/enums": "^2.0", "laravel-enso/forms": "^4.0", - "laravel-enso/helpers": "^2.0", + "laravel-enso/helpers": "^3.0", "laravel-enso/migrator": "^2.0", "laravel-enso/roles": "^5.0", "laravel-enso/tables": "^4.0" @@ -4262,27 +4222,27 @@ ], "support": { "issues": "https://github.com/laravel-enso/permissions/issues", - "source": "https://github.com/laravel-enso/permissions/tree/5.0.2" + "source": "https://github.com/laravel-enso/permissions/tree/5.1.0" }, - "time": "2022-03-03T11:24:18+00:00" + "time": "2024-01-09T15:29:12+00:00" }, { "name": "laravel-enso/rememberable", - "version": "3.3.0", + "version": "3.4.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/rememberable.git", - "reference": "aaba4a61600a325f6bc259cc1fb107f518311677" + "reference": "145f2b021060bac24105778b461732508bb50e8b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/rememberable/zipball/aaba4a61600a325f6bc259cc1fb107f518311677", - "reference": "aaba4a61600a325f6bc259cc1fb107f518311677", + "url": "https://api.github.com/repos/laravel-enso/rememberable/zipball/145f2b021060bac24105778b461732508bb50e8b", + "reference": "145f2b021060bac24105778b461732508bb50e8b", "shasum": "" }, "require": { - "laravel/framework": "^9.0", - "php": ">=8.0" + "laravel/framework": "^10.0", + "php": "^8.0" }, "type": "library", "extra": { @@ -4320,29 +4280,29 @@ ], "support": { "issues": "https://github.com/laravel-enso/rememberable/issues", - "source": "https://github.com/laravel-enso/rememberable/tree/3.3.0" + "source": "https://github.com/laravel-enso/rememberable/tree/3.4.0" }, - "time": "2022-03-02T12:39:41+00:00" + "time": "2024-01-26T10:08:29+00:00" }, { "name": "laravel-enso/roles", - "version": "5.0.1", + "version": "5.2.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/roles.git", - "reference": "4faf8192b86e70044ef0ca89f35befce212c656b" + "reference": "a6a54c71dec328111bc7b0e682e19210cffdbd25" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/roles/zipball/4faf8192b86e70044ef0ca89f35befce212c656b", - "reference": "4faf8192b86e70044ef0ca89f35befce212c656b", + "url": "https://api.github.com/repos/laravel-enso/roles/zipball/a6a54c71dec328111bc7b0e682e19210cffdbd25", + "reference": "a6a54c71dec328111bc7b0e682e19210cffdbd25", "shasum": "" }, "require": { - "laravel-enso/core": "^8.0", + "laravel-enso/core": "^9.0", "laravel-enso/enums": "^2.0", "laravel-enso/forms": "^4.0", - "laravel-enso/helpers": "^2.0", + "laravel-enso/helpers": "^3.0", "laravel-enso/menus": "^5.0", "laravel-enso/migrator": "^2.0", "laravel-enso/permissions": "^5.0", @@ -4388,26 +4348,26 @@ ], "support": { "issues": "https://github.com/laravel-enso/roles/issues", - "source": "https://github.com/laravel-enso/roles/tree/5.0.1" + "source": "https://github.com/laravel-enso/roles/tree/5.2.0" }, - "time": "2022-03-02T12:41:14+00:00" + "time": "2024-01-26T11:00:51+00:00" }, { "name": "laravel-enso/searchable", - "version": "2.3.0", + "version": "2.4.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/searchable.git", - "reference": "bebc9aa9c697e468335b67e44d3d43310c8952ec" + "reference": "1b6da2c1b69e55aa856b611baa5ccd1c928203af" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/searchable/zipball/bebc9aa9c697e468335b67e44d3d43310c8952ec", - "reference": "bebc9aa9c697e468335b67e44d3d43310c8952ec", + "url": "https://api.github.com/repos/laravel-enso/searchable/zipball/1b6da2c1b69e55aa856b611baa5ccd1c928203af", + "reference": "1b6da2c1b69e55aa856b611baa5ccd1c928203af", "shasum": "" }, "require": { - "laravel-enso/core": "^8.0", + "laravel-enso/core": "^9.0", "laravel-enso/filters": "^2.0", "laravel-enso/migrator": "^2.1", "laravel-enso/permissions": "^5.0" @@ -4449,29 +4409,29 @@ ], "support": { "issues": "https://github.com/laravel-enso/searchable/issues", - "source": "https://github.com/laravel-enso/searchable/tree/2.3.0" + "source": "https://github.com/laravel-enso/searchable/tree/2.4.0" }, - "time": "2022-03-02T12:46:52+00:00" + "time": "2024-01-30T11:35:29+00:00" }, { "name": "laravel-enso/select", - "version": "4.2.0", + "version": "4.3.2", "source": { "type": "git", "url": "https://github.com/laravel-enso/select.git", - "reference": "ab6134c313c2e16dd7b667f3576de0591423c303" + "reference": "dd9fafa0cd3cd9b6d37da35608ce871b7d5e0f54" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/select/zipball/ab6134c313c2e16dd7b667f3576de0591423c303", - "reference": "ab6134c313c2e16dd7b667f3576de0591423c303", + "url": "https://api.github.com/repos/laravel-enso/select/zipball/dd9fafa0cd3cd9b6d37da35608ce871b7d5e0f54", + "reference": "dd9fafa0cd3cd9b6d37da35608ce871b7d5e0f54", "shasum": "" }, "require": { "laravel-enso/filters": "^2.0", - "laravel-enso/helpers": "^2.0", - "laravel/framework": "^9.0", - "php": ">=8.0" + "laravel-enso/helpers": "^3.0", + "laravel/framework": "^10.0", + "php": "^8.0" }, "type": "library", "extra": { @@ -4509,27 +4469,27 @@ ], "support": { "issues": "https://github.com/laravel-enso/select/issues", - "source": "https://github.com/laravel-enso/select/tree/4.2.0" + "source": "https://github.com/laravel-enso/select/tree/4.3.2" }, - "time": "2022-03-02T12:48:23+00:00" + "time": "2024-01-11T11:48:24+00:00" }, { "name": "laravel-enso/sentry", - "version": "1.2.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/sentry.git", - "reference": "20a2275cf0a81d298facce2da5a7ef65d18663e1" + "reference": "70c47b3dd2e39ef2ba8a7cc926d1e1a0a396b9bc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/sentry/zipball/20a2275cf0a81d298facce2da5a7ef65d18663e1", - "reference": "20a2275cf0a81d298facce2da5a7ef65d18663e1", + "url": "https://api.github.com/repos/laravel-enso/sentry/zipball/70c47b3dd2e39ef2ba8a7cc926d1e1a0a396b9bc", + "reference": "70c47b3dd2e39ef2ba8a7cc926d1e1a0a396b9bc", "shasum": "" }, "require": { - "laravel/framework": "^9.0", - "php": ">=8.0" + "laravel/framework": "^10.0", + "php": "^8.0" }, "type": "library", "extra": { @@ -4572,31 +4532,31 @@ ], "support": { "issues": "https://github.com/laravel-enso/sentry/issues", - "source": "https://github.com/laravel-enso/sentry/tree/1.2.0" + "source": "https://github.com/laravel-enso/sentry/tree/1.3.0" }, - "time": "2022-03-02T12:49:11+00:00" + "time": "2024-01-31T07:06:25+00:00" }, { "name": "laravel-enso/tables", - "version": "4.11.2", + "version": "4.17.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/tables.git", - "reference": "abd06fb0c3cf6e62e1787a1657fdcdd31f6c73f0" + "reference": "e4fa3aecbd5a67718d5a1aeb5e2372e0842ec1ee" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/tables/zipball/abd06fb0c3cf6e62e1787a1657fdcdd31f6c73f0", - "reference": "abd06fb0c3cf6e62e1787a1657fdcdd31f6c73f0", + "url": "https://api.github.com/repos/laravel-enso/tables/zipball/e4fa3aecbd5a67718d5a1aeb5e2372e0842ec1ee", + "reference": "e4fa3aecbd5a67718d5a1aeb5e2372e0842ec1ee", "shasum": "" }, "require": { "box/spout": "^3.0", "laravel-enso/enums": "^2.0", "laravel-enso/filters": "^2.0", - "laravel-enso/helpers": "^2.0", - "laravel/framework": "^9.0", - "php": ">=8.0" + "laravel-enso/helpers": "^3.0", + "laravel/framework": "^10.0", + "php": "^8.0" }, "type": "library", "extra": { @@ -4634,29 +4594,29 @@ ], "support": { "issues": "https://github.com/laravel-enso/tables/issues", - "source": "https://github.com/laravel-enso/tables/tree/4.11.2" + "source": "https://github.com/laravel-enso/tables/tree/4.17.0" }, - "time": "2022-03-10T14:53:46+00:00" + "time": "2024-01-17T12:22:46+00:00" }, { "name": "laravel-enso/tasks", - "version": "2.0.2", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/tasks.git", - "reference": "e6789ba03abf52a728e0d0b69d0e1d8d41c73c03" + "reference": "1323115f6734fbb8242e42eaf814ce3cb7a645c5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/tasks/zipball/e6789ba03abf52a728e0d0b69d0e1d8d41c73c03", - "reference": "e6789ba03abf52a728e0d0b69d0e1d8d41c73c03", + "url": "https://api.github.com/repos/laravel-enso/tasks/zipball/1323115f6734fbb8242e42eaf814ce3cb7a645c5", + "reference": "1323115f6734fbb8242e42eaf814ce3cb7a645c5", "shasum": "" }, "require": { - "laravel-enso/core": "^8.0", - "laravel-enso/dynamic-methods": "^2.0", + "laravel-enso/core": "^9.0", + "laravel-enso/dynamic-methods": "^3.0", "laravel-enso/forms": "^4.0", - "laravel-enso/helpers": "^2.0", + "laravel-enso/helpers": "^3.0", "laravel-enso/tables": "^4.0" }, "type": "library", @@ -4704,27 +4664,27 @@ ], "support": { "issues": "https://github.com/laravel-enso/tasks/issues", - "source": "https://github.com/laravel-enso/tasks/tree/2.0.2" + "source": "https://github.com/laravel-enso/tasks/tree/2.1.0" }, - "time": "2022-03-03T11:33:20+00:00" + "time": "2024-01-10T10:22:25+00:00" }, { "name": "laravel-enso/teams", - "version": "4.0.0", + "version": "4.1.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/teams.git", - "reference": "d84f772437e3ba57c81905e5f8f0560ed43c6650" + "reference": "c16205933e766b82e4394ee5314678e2b8ca469a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/teams/zipball/d84f772437e3ba57c81905e5f8f0560ed43c6650", - "reference": "d84f772437e3ba57c81905e5f8f0560ed43c6650", + "url": "https://api.github.com/repos/laravel-enso/teams/zipball/c16205933e766b82e4394ee5314678e2b8ca469a", + "reference": "c16205933e766b82e4394ee5314678e2b8ca469a", "shasum": "" }, "require": { - "laravel-enso/core": "^8.0", - "laravel-enso/dynamic-methods": "^2.0", + "laravel-enso/core": "^9.0", + "laravel-enso/dynamic-methods": "^3.0", "laravel-enso/migrator": "^2.0", "laravel-enso/rememberable": "^3.0", "laravel-enso/select": "^4.0" @@ -4765,27 +4725,27 @@ ], "support": { "issues": "https://github.com/laravel-enso/teams/issues", - "source": "https://github.com/laravel-enso/teams/tree/4.0.0" + "source": "https://github.com/laravel-enso/teams/tree/4.1.0" }, - "time": "2022-02-25T09:23:23+00:00" + "time": "2024-01-10T09:38:51+00:00" }, { "name": "laravel-enso/track-who", - "version": "2.1.0", + "version": "2.2.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/track-who.git", - "reference": "f8561aec9b297f4b3318b3ab451922069d565ac0" + "reference": "63ff174355152ac5f53dcedc11dde86b5faa55e2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/track-who/zipball/f8561aec9b297f4b3318b3ab451922069d565ac0", - "reference": "f8561aec9b297f4b3318b3ab451922069d565ac0", + "url": "https://api.github.com/repos/laravel-enso/track-who/zipball/63ff174355152ac5f53dcedc11dde86b5faa55e2", + "reference": "63ff174355152ac5f53dcedc11dde86b5faa55e2", "shasum": "" }, "require": { - "laravel/framework": "^7.0|^8.0|^9.0", - "php": ">=7.4.0" + "laravel/framework": "^7.0|^8.0|^9.0|^10.0", + "php": "^8.0" }, "type": "library", "autoload": { @@ -4813,30 +4773,30 @@ ], "support": { "issues": "https://github.com/laravel-enso/track-who/issues", - "source": "https://github.com/laravel-enso/track-who/tree/2.1.0" + "source": "https://github.com/laravel-enso/track-who/tree/2.2.0" }, - "time": "2022-03-02T13:00:19+00:00" + "time": "2024-01-17T12:20:55+00:00" }, { "name": "laravel-enso/tutorials", - "version": "5.0.2", + "version": "5.1.1", "source": { "type": "git", "url": "https://github.com/laravel-enso/tutorials.git", - "reference": "b78baf655e3c7d79a194770d5ac3732e14ef2474" + "reference": "7b8f30a27f710e26842cdeb556738138da3b30d2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/tutorials/zipball/b78baf655e3c7d79a194770d5ac3732e14ef2474", - "reference": "b78baf655e3c7d79a194770d5ac3732e14ef2474", + "url": "https://api.github.com/repos/laravel-enso/tutorials/zipball/7b8f30a27f710e26842cdeb556738138da3b30d2", + "reference": "7b8f30a27f710e26842cdeb556738138da3b30d2", "shasum": "" }, "require": { - "laravel-enso/core": "^8.0", - "laravel-enso/dynamic-methods": "^2.0", + "laravel-enso/core": "^9.0", + "laravel-enso/dynamic-methods": "^3.0", "laravel-enso/enums": "^2.0", "laravel-enso/forms": "^4.0", - "laravel-enso/helpers": "^2.0", + "laravel-enso/helpers": "^3.0", "laravel-enso/migrator": "^2.0", "laravel-enso/permissions": "^5.0", "laravel-enso/tables": "^4.0" @@ -4878,30 +4838,30 @@ ], "support": { "issues": "https://github.com/laravel-enso/tutorials/issues", - "source": "https://github.com/laravel-enso/tutorials/tree/5.0.2" + "source": "https://github.com/laravel-enso/tutorials/tree/5.1.1" }, - "time": "2022-03-03T11:34:05+00:00" + "time": "2024-01-10T10:51:51+00:00" }, { "name": "laravel-enso/upgrade", - "version": "2.6.0", + "version": "2.8.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/upgrade.git", - "reference": "8ac62809145ecc4a6260d05becff33543697c66a" + "reference": "890915c887dd4abd54450ca24623217dbc13bba4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/upgrade/zipball/8ac62809145ecc4a6260d05becff33543697c66a", - "reference": "8ac62809145ecc4a6260d05becff33543697c66a", + "url": "https://api.github.com/repos/laravel-enso/upgrade/zipball/890915c887dd4abd54450ca24623217dbc13bba4", + "reference": "890915c887dd4abd54450ca24623217dbc13bba4", "shasum": "" }, "require": { - "laravel-enso/core": "^8.0", - "laravel-enso/helpers": "^2.0", + "laravel-enso/core": "^9.0", + "laravel-enso/helpers": "^3.0", "laravel-enso/permissions": "^5.0", "laravel-enso/roles": "^5.0", - "laravel/framework": "^9.0" + "laravel/framework": "^10.0" }, "type": "library", "extra": { @@ -4937,29 +4897,29 @@ ], "support": { "issues": "https://github.com/laravel-enso/upgrade/issues", - "source": "https://github.com/laravel-enso/upgrade/tree/2.6.0" + "source": "https://github.com/laravel-enso/upgrade/tree/2.8.0" }, - "time": "2022-03-02T13:06:38+00:00" + "time": "2024-01-26T12:23:05+00:00" }, { "name": "laravel-enso/user-groups", - "version": "2.0.2", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/user-groups.git", - "reference": "c2521a7e8713950d2375e491320b437e3b102d23" + "reference": "d41fd8b8246f223a347bfb0b5fcaed1d42d422ee" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/user-groups/zipball/c2521a7e8713950d2375e491320b437e3b102d23", - "reference": "c2521a7e8713950d2375e491320b437e3b102d23", + "url": "https://api.github.com/repos/laravel-enso/user-groups/zipball/d41fd8b8246f223a347bfb0b5fcaed1d42d422ee", + "reference": "d41fd8b8246f223a347bfb0b5fcaed1d42d422ee", "shasum": "" }, "require": { - "laravel-enso/core": "^8.0", + "laravel-enso/core": "^9.0", "laravel-enso/enums": "^2.0", "laravel-enso/forms": "^4.0", - "laravel-enso/helpers": "^2.0", + "laravel-enso/helpers": "^3.0", "laravel-enso/migrator": "^2.0", "laravel-enso/rememberable": "^3.0", "laravel-enso/roles": "^5.0", @@ -5015,32 +4975,32 @@ ], "support": { "issues": "https://github.com/laravel-enso/user-groups/issues", - "source": "https://github.com/laravel-enso/user-groups/tree/2.0.2" + "source": "https://github.com/laravel-enso/user-groups/tree/2.1.0" }, - "time": "2022-03-07T14:14:12+00:00" + "time": "2024-01-26T10:52:07+00:00" }, { "name": "laravel-enso/users", - "version": "2.0.2", + "version": "2.3.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/users.git", - "reference": "018d8030efd7f50b24eb598e74df387fbe50f342" + "reference": "652af491779ad561b1874c1139ef7db58738b578" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/users/zipball/018d8030efd7f50b24eb598e74df387fbe50f342", - "reference": "018d8030efd7f50b24eb598e74df387fbe50f342", + "url": "https://api.github.com/repos/laravel-enso/users/zipball/652af491779ad561b1874c1139ef7db58738b578", + "reference": "652af491779ad561b1874c1139ef7db58738b578", "shasum": "" }, "require": { "laravel-enso/avatars": "^4.0", "laravel-enso/companies": "^4.0", - "laravel-enso/core": "^8.0", - "laravel-enso/dynamic-methods": "^2.0", + "laravel-enso/core": "^9.0", + "laravel-enso/dynamic-methods": "^3.0", "laravel-enso/files": "^5.0", "laravel-enso/forms": "^4.0", - "laravel-enso/helpers": "^2.0", + "laravel-enso/helpers": "^3.0", "laravel-enso/people": "^4.0", "laravel-enso/rememberable": "^3.0", "laravel-enso/roles": "^5.0", @@ -5098,56 +5058,69 @@ ], "support": { "issues": "https://github.com/laravel-enso/users/issues", - "source": "https://github.com/laravel-enso/users/tree/2.0.2" + "source": "https://github.com/laravel-enso/users/tree/2.3.0" }, - "time": "2022-03-08T11:26:07+00:00" + "time": "2024-01-26T11:09:06+00:00" }, { "name": "laravel/framework", - "version": "v9.4.1", + "version": "v10.43.0", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "29f0aaade82eadd20ef881b4efb88b0dad4e9a5b" + "reference": "4f7802dfc9993cb57cf69615491ce1a7eb2e9529" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/29f0aaade82eadd20ef881b4efb88b0dad4e9a5b", - "reference": "29f0aaade82eadd20ef881b4efb88b0dad4e9a5b", + "url": "https://api.github.com/repos/laravel/framework/zipball/4f7802dfc9993cb57cf69615491ce1a7eb2e9529", + "reference": "4f7802dfc9993cb57cf69615491ce1a7eb2e9529", "shasum": "" }, "require": { - "doctrine/inflector": "^2.0", - "dragonmantank/cron-expression": "^3.1", - "egulias/email-validator": "^3.1", + "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12", + "composer-runtime-api": "^2.2", + "doctrine/inflector": "^2.0.5", + "dragonmantank/cron-expression": "^3.3.2", + "egulias/email-validator": "^3.2.1|^4.0", + "ext-ctype": "*", + "ext-filter": "*", + "ext-hash": "*", "ext-mbstring": "*", "ext-openssl": "*", + "ext-session": "*", + "ext-tokenizer": "*", "fruitcake/php-cors": "^1.2", - "laravel/serializable-closure": "^1.0", - "league/commonmark": "^2.2", - "league/flysystem": "^3.0", - "monolog/monolog": "^2.0", - "nesbot/carbon": "^2.53.1", - "php": "^8.0.2", + "guzzlehttp/uri-template": "^1.0", + "laravel/prompts": "^0.1.9", + "laravel/serializable-closure": "^1.3", + "league/commonmark": "^2.2.1", + "league/flysystem": "^3.8.0", + "monolog/monolog": "^3.0", + "nesbot/carbon": "^2.67", + "nunomaduro/termwind": "^1.13", + "php": "^8.1", "psr/container": "^1.1.1|^2.0.1", "psr/log": "^1.0|^2.0|^3.0", "psr/simple-cache": "^1.0|^2.0|^3.0", - "ramsey/uuid": "^4.2.2", - "symfony/console": "^6.0", - "symfony/error-handler": "^6.0", - "symfony/finder": "^6.0", - "symfony/http-foundation": "^6.0", - "symfony/http-kernel": "^6.0", - "symfony/mailer": "^6.0", - "symfony/mime": "^6.0", - "symfony/process": "^6.0", - "symfony/routing": "^6.0", - "symfony/var-dumper": "^6.0", - "tijsverkoyen/css-to-inline-styles": "^2.2.2", + "ramsey/uuid": "^4.7", + "symfony/console": "^6.2", + "symfony/error-handler": "^6.2", + "symfony/finder": "^6.2", + "symfony/http-foundation": "^6.4", + "symfony/http-kernel": "^6.2", + "symfony/mailer": "^6.2", + "symfony/mime": "^6.2", + "symfony/process": "^6.2", + "symfony/routing": "^6.2", + "symfony/uid": "^6.2", + "symfony/var-dumper": "^6.2", + "tijsverkoyen/css-to-inline-styles": "^2.2.5", "vlucas/phpdotenv": "^5.4.1", "voku/portable-ascii": "^2.0" }, "conflict": { + "carbonphp/carbon-doctrine-types": ">=3.0", + "doctrine/dbal": ">=4.0", "tightenco/collect": "<5.5.33" }, "provide": { @@ -5178,6 +5151,7 @@ "illuminate/notifications": "self.version", "illuminate/pagination": "self.version", "illuminate/pipeline": "self.version", + "illuminate/process": "self.version", "illuminate/queue": "self.version", "illuminate/redis": "self.version", "illuminate/routing": "self.version", @@ -5189,64 +5163,76 @@ "illuminate/view": "self.version" }, "require-dev": { - "aws/aws-sdk-php": "^3.198.1", - "doctrine/dbal": "^2.13.3|^3.1.4", - "fakerphp/faker": "^1.9.2", - "guzzlehttp/guzzle": "^7.2", + "ably/ably-php": "^1.0", + "aws/aws-sdk-php": "^3.235.5", + "doctrine/dbal": "^3.5.1", + "ext-gmp": "*", + "fakerphp/faker": "^1.21", + "guzzlehttp/guzzle": "^7.5", "league/flysystem-aws-s3-v3": "^3.0", "league/flysystem-ftp": "^3.0", + "league/flysystem-path-prefixing": "^3.3", + "league/flysystem-read-only": "^3.3", "league/flysystem-sftp-v3": "^3.0", - "mockery/mockery": "^1.4.4", - "orchestra/testbench-core": "^7.1", + "mockery/mockery": "^1.5.1", + "nyholm/psr7": "^1.2", + "orchestra/testbench-core": "^8.18", "pda/pheanstalk": "^4.0", "phpstan/phpstan": "^1.4.7", - "phpunit/phpunit": "^9.5.8", - "predis/predis": "^1.1.9", - "symfony/cache": "^6.0" + "phpunit/phpunit": "^10.0.7", + "predis/predis": "^2.0.2", + "symfony/cache": "^6.2", + "symfony/http-client": "^6.2.4", + "symfony/psr-http-message-bridge": "^2.0" }, "suggest": { "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).", - "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.198.1).", + "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).", "brianium/paratest": "Required to run tests in parallel (^6.0).", - "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).", - "ext-bcmath": "Required to use the multiple_of validation rule.", + "doctrine/dbal": "Required to rename columns and drop SQLite columns (^3.5.1).", + "ext-apcu": "Required to use the APC cache driver.", + "ext-fileinfo": "Required to use the Filesystem class.", "ext-ftp": "Required to use the Flysystem FTP driver.", "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().", "ext-memcached": "Required to use the memcache cache driver.", - "ext-pcntl": "Required to use all features of the queue worker.", + "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.", + "ext-pdo": "Required to use all database features.", "ext-posix": "Required to use all features of the queue worker.", "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).", "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).", "filp/whoops": "Required for friendly error pages in development (^2.14.3).", - "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.2).", + "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).", "laravel/tinker": "Required to use the tinker console command (^2.0).", "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).", "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).", + "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).", + "league/flysystem-read-only": "Required to use read-only disks (^3.3)", "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).", - "mockery/mockery": "Required to use mocking (^1.4.4).", + "mockery/mockery": "Required to use mocking (^1.5.1).", "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).", "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).", - "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8).", - "predis/predis": "Required to use the predis connector (^1.1.9).", + "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8|^10.0.7).", + "predis/predis": "Required to use the predis connector (^2.0.2).", "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).", "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).", - "symfony/cache": "Required to PSR-6 cache bridge (^6.0).", - "symfony/filesystem": "Required to enable support for relative symbolic links (^6.0).", - "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.0).", - "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.0).", - "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.0).", + "symfony/cache": "Required to PSR-6 cache bridge (^6.2).", + "symfony/filesystem": "Required to enable support for relative symbolic links (^6.2).", + "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.2).", + "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.2).", + "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.2).", "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)." }, "type": "library", "extra": { "branch-alias": { - "dev-master": "9.x-dev" + "dev-master": "10.x-dev" } }, "autoload": { "files": [ "src/Illuminate/Collections/helpers.php", "src/Illuminate/Events/functions.php", + "src/Illuminate/Filesystem/functions.php", "src/Illuminate/Foundation/helpers.php", "src/Illuminate/Support/helpers.php" ], @@ -5279,44 +5265,45 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2022-03-08T16:17:00+00:00" + "time": "2024-01-30T16:25:02+00:00" }, { "name": "laravel/horizon", - "version": "v5.9.3", + "version": "v5.22.1", "source": { "type": "git", "url": "https://github.com/laravel/horizon.git", - "reference": "2c2c28dff4b0f8632f74ca1945f830fb462c6b56" + "reference": "8618d65fad70308b8a5e438c4cfc0a1c6c14eea6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/horizon/zipball/2c2c28dff4b0f8632f74ca1945f830fb462c6b56", - "reference": "2c2c28dff4b0f8632f74ca1945f830fb462c6b56", + "url": "https://api.github.com/repos/laravel/horizon/zipball/8618d65fad70308b8a5e438c4cfc0a1c6c14eea6", + "reference": "8618d65fad70308b8a5e438c4cfc0a1c6c14eea6", "shasum": "" }, "require": { "ext-json": "*", "ext-pcntl": "*", "ext-posix": "*", - "illuminate/contracts": "^8.17|^9.0", - "illuminate/queue": "^8.17|^9.0", - "illuminate/support": "^8.17|^9.0", - "nesbot/carbon": "^2.17", + "illuminate/contracts": "^8.17|^9.0|^10.0|^11.0", + "illuminate/queue": "^8.17|^9.0|^10.0|^11.0", + "illuminate/support": "^8.17|^9.0|^10.0|^11.0", + "nesbot/carbon": "^2.17|^3.0", "php": "^7.3|^8.0", "ramsey/uuid": "^4.0", - "symfony/error-handler": "^5.0|^6.0", - "symfony/process": "^5.0|^6.0" + "symfony/error-handler": "^5.0|^6.0|^7.0", + "symfony/process": "^5.0|^6.0|^7.0" }, "require-dev": { "mockery/mockery": "^1.0", - "orchestra/testbench": "^6.0|^7.0", - "phpunit/phpunit": "^9.0", - "predis/predis": "^1.1" + "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^9.0|^10.4", + "predis/predis": "^1.1|^2.0" }, "suggest": { "ext-redis": "Required to use the Redis PHP driver.", - "predis/predis": "Required when not using the Redis PHP driver (^1.1)." + "predis/predis": "Required when not using the Redis PHP driver (^1.1|^2.0)." }, "type": "library", "extra": { @@ -5354,40 +5341,99 @@ ], "support": { "issues": "https://github.com/laravel/horizon/issues", - "source": "https://github.com/laravel/horizon/tree/v5.9.3" + "source": "https://github.com/laravel/horizon/tree/v5.22.1" }, - "time": "2022-02-22T20:56:51+00:00" + "time": "2024-01-30T03:04:51+00:00" + }, + { + "name": "laravel/prompts", + "version": "v0.1.15", + "source": { + "type": "git", + "url": "https://github.com/laravel/prompts.git", + "reference": "d814a27514d99b03c85aa42b22cfd946568636c1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/prompts/zipball/d814a27514d99b03c85aa42b22cfd946568636c1", + "reference": "d814a27514d99b03c85aa42b22cfd946568636c1", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "illuminate/collections": "^10.0|^11.0", + "php": "^8.1", + "symfony/console": "^6.2|^7.0" + }, + "conflict": { + "illuminate/console": ">=10.17.0 <10.25.0", + "laravel/framework": ">=10.17.0 <10.25.0" + }, + "require-dev": { + "mockery/mockery": "^1.5", + "pestphp/pest": "^2.3", + "phpstan/phpstan": "^1.11", + "phpstan/phpstan-mockery": "^1.1" + }, + "suggest": { + "ext-pcntl": "Required for the spinner to be animated." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "0.1.x-dev" + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Laravel\\Prompts\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "support": { + "issues": "https://github.com/laravel/prompts/issues", + "source": "https://github.com/laravel/prompts/tree/v0.1.15" + }, + "time": "2023-12-29T22:37:42+00:00" }, { "name": "laravel/sanctum", - "version": "v2.14.2", + "version": "v3.3.3", "source": { "type": "git", "url": "https://github.com/laravel/sanctum.git", - "reference": "dc5d749ba9bfcfd68d8f5c272238f88bea223e66" + "reference": "8c104366459739f3ada0e994bcd3e6fd681ce3d5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/sanctum/zipball/dc5d749ba9bfcfd68d8f5c272238f88bea223e66", - "reference": "dc5d749ba9bfcfd68d8f5c272238f88bea223e66", + "url": "https://api.github.com/repos/laravel/sanctum/zipball/8c104366459739f3ada0e994bcd3e6fd681ce3d5", + "reference": "8c104366459739f3ada0e994bcd3e6fd681ce3d5", "shasum": "" }, "require": { "ext-json": "*", - "illuminate/contracts": "^6.9|^7.0|^8.0|^9.0", - "illuminate/database": "^6.9|^7.0|^8.0|^9.0", - "illuminate/support": "^6.9|^7.0|^8.0|^9.0", - "php": "^7.2|^8.0" + "illuminate/console": "^9.21|^10.0", + "illuminate/contracts": "^9.21|^10.0", + "illuminate/database": "^9.21|^10.0", + "illuminate/support": "^9.21|^10.0", + "php": "^8.0.2" }, "require-dev": { "mockery/mockery": "^1.0", - "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0", - "phpunit/phpunit": "^8.0|^9.3" + "orchestra/testbench": "^7.28.2|^8.8.3", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^9.6" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.x-dev" + "dev-master": "3.x-dev" }, "laravel": { "providers": [ @@ -5420,29 +5466,30 @@ "issues": "https://github.com/laravel/sanctum/issues", "source": "https://github.com/laravel/sanctum" }, - "time": "2022-02-16T14:40:23+00:00" + "time": "2023-12-19T18:44:48+00:00" }, { "name": "laravel/serializable-closure", - "version": "v1.1.1", + "version": "v1.3.3", "source": { "type": "git", "url": "https://github.com/laravel/serializable-closure.git", - "reference": "9e4b005daa20b0c161f3845040046dc9ddc1d74e" + "reference": "3dbf8a8e914634c48d389c1234552666b3d43754" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/9e4b005daa20b0c161f3845040046dc9ddc1d74e", - "reference": "9e4b005daa20b0c161f3845040046dc9ddc1d74e", + "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/3dbf8a8e914634c48d389c1234552666b3d43754", + "reference": "3dbf8a8e914634c48d389c1234552666b3d43754", "shasum": "" }, "require": { "php": "^7.3|^8.0" }, "require-dev": { - "pestphp/pest": "^1.18", - "phpstan/phpstan": "^0.12.98", - "symfony/var-dumper": "^5.3" + "nesbot/carbon": "^2.61", + "pestphp/pest": "^1.21.3", + "phpstan/phpstan": "^1.8.2", + "symfony/var-dumper": "^5.4.11" }, "type": "library", "extra": { @@ -5479,32 +5526,35 @@ "issues": "https://github.com/laravel/serializable-closure/issues", "source": "https://github.com/laravel/serializable-closure" }, - "time": "2022-02-11T19:23:53+00:00" + "time": "2023-11-08T14:08:06+00:00" }, { "name": "laravel/telescope", - "version": "v4.7.4", + "version": "v4.17.5", "source": { "type": "git", "url": "https://github.com/laravel/telescope.git", - "reference": "6a7815103f9c35fb535f008dec47938352a98d34" + "reference": "2c5295261d1459e4f9b157c407a663a6685f3ddf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/telescope/zipball/6a7815103f9c35fb535f008dec47938352a98d34", - "reference": "6a7815103f9c35fb535f008dec47938352a98d34", + "url": "https://api.github.com/repos/laravel/telescope/zipball/2c5295261d1459e4f9b157c407a663a6685f3ddf", + "reference": "2c5295261d1459e4f9b157c407a663a6685f3ddf", "shasum": "" }, "require": { "ext-json": "*", - "laravel/framework": "^8.37|^9.0", - "php": "^7.3|^8.0", + "laravel/framework": "^8.37|^9.0|^10.0", + "php": "^8.0", "symfony/var-dumper": "^5.0|^6.0" }, "require-dev": { "ext-gd": "*", "guzzlehttp/guzzle": "^6.0|^7.0", - "orchestra/testbench": "^6.0|^7.0" + "laravel/octane": "^1.4", + "orchestra/testbench": "^6.0|^7.0|^8.0", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^9.0" }, "type": "library", "extra": { @@ -5545,44 +5595,42 @@ ], "support": { "issues": "https://github.com/laravel/telescope/issues", - "source": "https://github.com/laravel/telescope/tree/v4.7.4" + "source": "https://github.com/laravel/telescope/tree/v4.17.5" }, - "time": "2022-03-03T12:58:33+00:00" + "time": "2024-01-30T15:41:45+00:00" }, { "name": "laravel/tinker", - "version": "v2.7.0", + "version": "v2.9.0", "source": { "type": "git", "url": "https://github.com/laravel/tinker.git", - "reference": "5f2f9815b7631b9f586a3de7933c25f9327d4073" + "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/tinker/zipball/5f2f9815b7631b9f586a3de7933c25f9327d4073", - "reference": "5f2f9815b7631b9f586a3de7933c25f9327d4073", + "url": "https://api.github.com/repos/laravel/tinker/zipball/502e0fe3f0415d06d5db1f83a472f0f3b754bafe", + "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe", "shasum": "" }, "require": { - "illuminate/console": "^6.0|^7.0|^8.0|^9.0", - "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0", - "illuminate/support": "^6.0|^7.0|^8.0|^9.0", + "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", + "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", + "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", "php": "^7.2.5|^8.0", - "psy/psysh": "^0.10.4|^0.11.1", - "symfony/var-dumper": "^4.3.4|^5.0|^6.0" + "psy/psysh": "^0.11.1|^0.12.0", + "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0" }, "require-dev": { "mockery/mockery": "~1.3.3|^1.4.2", + "phpstan/phpstan": "^1.10", "phpunit/phpunit": "^8.5.8|^9.3.3" }, "suggest": { - "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0)." + "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)." }, "type": "library", "extra": { - "branch-alias": { - "dev-master": "2.x-dev" - }, "laravel": { "providers": [ "Laravel\\Tinker\\TinkerServiceProvider" @@ -5613,38 +5661,39 @@ ], "support": { "issues": "https://github.com/laravel/tinker/issues", - "source": "https://github.com/laravel/tinker/tree/v2.7.0" + "source": "https://github.com/laravel/tinker/tree/v2.9.0" }, - "time": "2022-01-10T08:52:49+00:00" + "time": "2024-01-04T16:10:04+00:00" }, { "name": "laravel/ui", - "version": "v3.4.5", + "version": "v4.4.0", "source": { "type": "git", "url": "https://github.com/laravel/ui.git", - "reference": "f11d295de1508c5bb56206a620b00b6616de414c" + "reference": "7335d7049b2cde345c029e9d2de839b80af62bc0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/ui/zipball/f11d295de1508c5bb56206a620b00b6616de414c", - "reference": "f11d295de1508c5bb56206a620b00b6616de414c", + "url": "https://api.github.com/repos/laravel/ui/zipball/7335d7049b2cde345c029e9d2de839b80af62bc0", + "reference": "7335d7049b2cde345c029e9d2de839b80af62bc0", "shasum": "" }, "require": { - "illuminate/console": "^8.42|^9.0", - "illuminate/filesystem": "^8.42|^9.0", - "illuminate/support": "^8.82|^9.0", - "illuminate/validation": "^8.42|^9.0", - "php": "^7.3|^8.0" + "illuminate/console": "^9.21|^10.0|^11.0", + "illuminate/filesystem": "^9.21|^10.0|^11.0", + "illuminate/support": "^9.21|^10.0|^11.0", + "illuminate/validation": "^9.21|^10.0|^11.0", + "php": "^8.0" }, "require-dev": { - "orchestra/testbench": "^6.23|^7.0" + "orchestra/testbench": "^7.0|^8.0|^9.0", + "phpunit/phpunit": "^9.3|^10.4" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.x-dev" + "dev-master": "4.x-dev" }, "laravel": { "providers": [ @@ -5674,29 +5723,29 @@ "ui" ], "support": { - "source": "https://github.com/laravel/ui/tree/v3.4.5" + "source": "https://github.com/laravel/ui/tree/v4.4.0" }, - "time": "2022-02-21T14:59:16+00:00" + "time": "2024-01-12T15:56:45+00:00" }, { "name": "laravolt/avatar", - "version": "4.1.6", + "version": "5.0.0", "source": { "type": "git", "url": "https://github.com/laravolt/avatar.git", - "reference": "f9a3e612491bfed6fe144d37a58cf4a2c5be141f" + "reference": "a4d533521191449fdb5efc8d9ed015bd639c2307" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravolt/avatar/zipball/f9a3e612491bfed6fe144d37a58cf4a2c5be141f", - "reference": "f9a3e612491bfed6fe144d37a58cf4a2c5be141f", + "url": "https://api.github.com/repos/laravolt/avatar/zipball/a4d533521191449fdb5efc8d9ed015bd639c2307", + "reference": "a4d533521191449fdb5efc8d9ed015bd639c2307", "shasum": "" }, "require": { - "illuminate/cache": "^6.0|^7.0|^8.0|^9.0", - "illuminate/support": "^6.0|^7.0|^8.0|^9.0", - "intervention/image": "^2.5", - "php": ">=7.3" + "illuminate/cache": "^8.0|^9.0|^10.0", + "illuminate/support": "^8.0|^9.0|^10.0", + "intervention/image": "^2.7", + "php": ">=8.0" }, "require-dev": { "mockery/mockery": "~1.3", @@ -5744,7 +5793,7 @@ ], "support": { "issues": "https://github.com/laravolt/avatar/issues", - "source": "https://github.com/laravolt/avatar/tree/4.1.6" + "source": "https://github.com/laravolt/avatar/tree/5.0.0" }, "funding": [ { @@ -5760,20 +5809,20 @@ "type": "patreon" } ], - "time": "2022-02-09T23:23:09+00:00" + "time": "2023-02-25T02:57:48+00:00" }, { "name": "league/commonmark", - "version": "2.2.3", + "version": "2.4.1", "source": { "type": "git", "url": "https://github.com/thephpleague/commonmark.git", - "reference": "47b015bc4e50fd4438c1ffef6139a1fb65d2ab71" + "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/47b015bc4e50fd4438c1ffef6139a1fb65d2ab71", - "reference": "47b015bc4e50fd4438c1ffef6139a1fb65d2ab71", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/3669d6d5f7a47a93c08ddff335e6d945481a1dd5", + "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5", "shasum": "" }, "require": { @@ -5782,24 +5831,26 @@ "php": "^7.4 || ^8.0", "psr/event-dispatcher": "^1.0", "symfony/deprecation-contracts": "^2.1 || ^3.0", - "symfony/polyfill-php80": "^1.15" + "symfony/polyfill-php80": "^1.16" }, "require-dev": { "cebe/markdown": "^1.0", "commonmark/cmark": "0.30.0", "commonmark/commonmark.js": "0.30.0", "composer/package-versions-deprecated": "^1.8", + "embed/embed": "^4.4", "erusev/parsedown": "^1.0", "ext-json": "*", "github/gfm": "0.29.0", - "michelf/php-markdown": "^1.4", - "phpstan/phpstan": "^0.12.88 || ^1.0.0", - "phpunit/phpunit": "^9.5.5", + "michelf/php-markdown": "^1.4 || ^2.0", + "nyholm/psr7": "^1.5", + "phpstan/phpstan": "^1.8.2", + "phpunit/phpunit": "^9.5.21", "scrutinizer/ocular": "^1.8.1", - "symfony/finder": "^5.3", + "symfony/finder": "^5.3 | ^6.0", "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0", - "unleashedtech/php-coding-standard": "^3.1", - "vimeo/psalm": "^4.7.3" + "unleashedtech/php-coding-standard": "^3.1.1", + "vimeo/psalm": "^4.24.0 || ^5.0.0" }, "suggest": { "symfony/yaml": "v2.3+ required if using the Front Matter extension" @@ -5807,7 +5858,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "2.3-dev" + "dev-main": "2.5-dev" } }, "autoload": { @@ -5864,20 +5915,20 @@ "type": "tidelift" } ], - "time": "2022-02-26T21:24:45+00:00" + "time": "2023-08-30T16:55:00+00:00" }, { "name": "league/config", - "version": "v1.1.1", + "version": "v1.2.0", "source": { "type": "git", "url": "https://github.com/thephpleague/config.git", - "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e" + "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/config/zipball/a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e", - "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e", + "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", + "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", "shasum": "" }, "require": { @@ -5886,7 +5937,7 @@ "php": "^7.4 || ^8.0" }, "require-dev": { - "phpstan/phpstan": "^0.12.90", + "phpstan/phpstan": "^1.8.2", "phpunit/phpunit": "^9.5.5", "scrutinizer/ocular": "^1.8.1", "unleashedtech/php-coding-standard": "^3.1", @@ -5946,36 +5997,40 @@ "type": "github" } ], - "time": "2021-08-14T12:15:32+00:00" + "time": "2022-12-11T20:36:23+00:00" }, { "name": "league/flysystem", - "version": "3.0.11", + "version": "3.23.1", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "1ca148713c23cadeb9d7526973f81fb4a04090a3" + "reference": "199e1aebbe3e62bd39f4d4fc8c61ce0b3786197e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/1ca148713c23cadeb9d7526973f81fb4a04090a3", - "reference": "1ca148713c23cadeb9d7526973f81fb4a04090a3", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/199e1aebbe3e62bd39f4d4fc8c61ce0b3786197e", + "reference": "199e1aebbe3e62bd39f4d4fc8c61ce0b3786197e", "shasum": "" }, "require": { + "league/flysystem-local": "^3.0.0", "league/mime-type-detection": "^1.0.0", "php": "^8.0.2" }, "conflict": { + "async-aws/core": "<1.19.0", + "async-aws/s3": "<1.14.0", "aws/aws-sdk-php": "3.209.31 || 3.210.0", "guzzlehttp/guzzle": "<7.0", "guzzlehttp/ringphp": "<1.1.1", + "phpseclib/phpseclib": "3.0.15", "symfony/http-client": "<5.2" }, "require-dev": { - "async-aws/s3": "^1.5", - "async-aws/simple-s3": "^1.0", - "aws/aws-sdk-php": "^3.198.1", + "async-aws/s3": "^1.5 || ^2.0", + "async-aws/simple-s3": "^1.1 || ^2.0", + "aws/aws-sdk-php": "^3.220.0", "composer/semver": "^3.0", "ext-fileinfo": "*", "ext-ftp": "*", @@ -5983,9 +6038,9 @@ "friendsofphp/php-cs-fixer": "^3.5", "google/cloud-storage": "^1.23", "microsoft/azure-storage-blob": "^1.1", - "phpseclib/phpseclib": "^2.0", - "phpstan/phpstan": "^0.12.26", - "phpunit/phpunit": "^9.5.11", + "phpseclib/phpseclib": "^3.0.34", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^9.5.11|^10.0", "sabre/dav": "^4.3.1" }, "type": "library", @@ -6020,46 +6075,102 @@ ], "support": { "issues": "https://github.com/thephpleague/flysystem/issues", - "source": "https://github.com/thephpleague/flysystem/tree/3.0.11" + "source": "https://github.com/thephpleague/flysystem/tree/3.23.1" }, "funding": [ { - "url": "https://offset.earth/frankdejonge", + "url": "https://ecologi.com/frankdejonge", "type": "custom" }, { "url": "https://github.com/frankdejonge", "type": "github" + } + ], + "time": "2024-01-26T18:42:03+00:00" + }, + { + "name": "league/flysystem-local", + "version": "3.23.1", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem-local.git", + "reference": "b884d2bf9b53bb4804a56d2df4902bb51e253f00" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/b884d2bf9b53bb4804a56d2df4902bb51e253f00", + "reference": "b884d2bf9b53bb4804a56d2df4902bb51e253f00", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "league/flysystem": "^3.0.0", + "league/mime-type-detection": "^1.0.0", + "php": "^8.0.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\Flysystem\\Local\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Local filesystem adapter for Flysystem.", + "keywords": [ + "Flysystem", + "file", + "files", + "filesystem", + "local" + ], + "support": { + "issues": "https://github.com/thephpleague/flysystem-local/issues", + "source": "https://github.com/thephpleague/flysystem-local/tree/3.23.1" + }, + "funding": [ + { + "url": "https://ecologi.com/frankdejonge", + "type": "custom" }, { - "url": "https://tidelift.com/funding/github/packagist/league/flysystem", - "type": "tidelift" + "url": "https://github.com/frankdejonge", + "type": "github" } ], - "time": "2022-03-04T16:40:17+00:00" + "time": "2024-01-26T18:25:23+00:00" }, { "name": "league/mime-type-detection", - "version": "1.9.0", + "version": "1.15.0", "source": { "type": "git", "url": "https://github.com/thephpleague/mime-type-detection.git", - "reference": "aa70e813a6ad3d1558fc927863d47309b4c23e69" + "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/aa70e813a6ad3d1558fc927863d47309b4c23e69", - "reference": "aa70e813a6ad3d1558fc927863d47309b4c23e69", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301", + "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301", "shasum": "" }, "require": { "ext-fileinfo": "*", - "php": "^7.2 || ^8.0" + "php": "^7.4 || ^8.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.2", "phpstan/phpstan": "^0.12.68", - "phpunit/phpunit": "^8.5.8 || ^9.3" + "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0" }, "type": "library", "autoload": { @@ -6080,7 +6191,7 @@ "description": "Mime-type detection for Flysystem", "support": { "issues": "https://github.com/thephpleague/mime-type-detection/issues", - "source": "https://github.com/thephpleague/mime-type-detection/tree/1.9.0" + "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0" }, "funding": [ { @@ -6092,27 +6203,27 @@ "type": "tidelift" } ], - "time": "2021-11-21T11:48:40+00:00" + "time": "2024-01-28T23:22:08+00:00" }, { "name": "mobiledetect/mobiledetectlib", - "version": "2.8.39", + "version": "2.8.45", "source": { "type": "git", "url": "https://github.com/serbanghita/Mobile-Detect.git", - "reference": "0fd6753003fc870f6e229bae869cc1337c99bc45" + "reference": "96aaebcf4f50d3d2692ab81d2c5132e425bca266" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/0fd6753003fc870f6e229bae869cc1337c99bc45", - "reference": "0fd6753003fc870f6e229bae869cc1337c99bc45", + "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/96aaebcf4f50d3d2692ab81d2c5132e425bca266", + "reference": "96aaebcf4f50d3d2692ab81d2c5132e425bca266", "shasum": "" }, "require": { "php": ">=5.0.0" }, "require-dev": { - "phpunit/phpunit": "~4.8.35||~5.7" + "phpunit/phpunit": "~4.8.36" }, "type": "library", "autoload": { @@ -6146,46 +6257,55 @@ ], "support": { "issues": "https://github.com/serbanghita/Mobile-Detect/issues", - "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.39" + "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.45" }, - "time": "2022-02-17T19:24:25+00:00" + "funding": [ + { + "url": "https://github.com/serbanghita", + "type": "github" + } + ], + "time": "2023-11-07T21:57:25+00:00" }, { "name": "monolog/monolog", - "version": "2.3.5", + "version": "3.5.0", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "fd4380d6fc37626e2f799f29d91195040137eba9" + "reference": "c915e2634718dbc8a4a15c61b0e62e7a44e14448" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd4380d6fc37626e2f799f29d91195040137eba9", - "reference": "fd4380d6fc37626e2f799f29d91195040137eba9", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c915e2634718dbc8a4a15c61b0e62e7a44e14448", + "reference": "c915e2634718dbc8a4a15c61b0e62e7a44e14448", "shasum": "" }, "require": { - "php": ">=7.2", - "psr/log": "^1.0.1 || ^2.0 || ^3.0" + "php": ">=8.1", + "psr/log": "^2.0 || ^3.0" }, "provide": { - "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0" + "psr/log-implementation": "3.0.0" }, "require-dev": { - "aws/aws-sdk-php": "^2.4.9 || ^3.0", + "aws/aws-sdk-php": "^3.0", "doctrine/couchdb": "~1.0@dev", - "elasticsearch/elasticsearch": "^7", - "graylog2/gelf-php": "^1.4.2", + "elasticsearch/elasticsearch": "^7 || ^8", + "ext-json": "*", + "graylog2/gelf-php": "^1.4.2 || ^2.0", + "guzzlehttp/guzzle": "^7.4.5", + "guzzlehttp/psr7": "^2.2", "mongodb/mongodb": "^1.8", "php-amqplib/php-amqplib": "~2.4 || ^3", - "php-console/php-console": "^3.1.3", - "phpspec/prophecy": "^1.6.1", - "phpstan/phpstan": "^0.12.91", - "phpunit/phpunit": "^8.5", - "predis/predis": "^1.1", - "rollbar/rollbar": "^1.3", - "ruflin/elastica": ">=0.90@dev", - "swiftmailer/swiftmailer": "^5.3|^6.0" + "phpstan/phpstan": "^1.9", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-strict-rules": "^1.4", + "phpunit/phpunit": "^10.1", + "predis/predis": "^1.1 || ^2", + "ruflin/elastica": "^7", + "symfony/mailer": "^5.4 || ^6", + "symfony/mime": "^5.4 || ^6" }, "suggest": { "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", @@ -6200,14 +6320,13 @@ "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)", "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", - "php-console/php-console": "Allow sending log messages to Google Chrome", "rollbar/rollbar": "Allow sending log messages to Rollbar", "ruflin/elastica": "Allow sending log messages to an Elastic Search server" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "2.x-dev" + "dev-main": "3.x-dev" } }, "autoload": { @@ -6235,7 +6354,7 @@ ], "support": { "issues": "https://github.com/Seldaek/monolog/issues", - "source": "https://github.com/Seldaek/monolog/tree/2.3.5" + "source": "https://github.com/Seldaek/monolog/tree/3.5.0" }, "funding": [ { @@ -6247,38 +6366,45 @@ "type": "tidelift" } ], - "time": "2021-10-01T21:08:31+00:00" + "time": "2023-10-27T15:32:31+00:00" }, { "name": "nesbot/carbon", - "version": "2.57.0", + "version": "2.72.3", "source": { "type": "git", "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "4a54375c21eea4811dbd1149fe6b246517554e78" + "reference": "0c6fd108360c562f6e4fd1dedb8233b423e91c83" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4a54375c21eea4811dbd1149fe6b246517554e78", - "reference": "4a54375c21eea4811dbd1149fe6b246517554e78", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/0c6fd108360c562f6e4fd1dedb8233b423e91c83", + "reference": "0c6fd108360c562f6e4fd1dedb8233b423e91c83", "shasum": "" }, "require": { + "carbonphp/carbon-doctrine-types": "*", "ext-json": "*", "php": "^7.1.8 || ^8.0", + "psr/clock": "^1.0", "symfony/polyfill-mbstring": "^1.0", "symfony/polyfill-php80": "^1.16", "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0" }, + "provide": { + "psr/clock-implementation": "1.0" + }, "require-dev": { - "doctrine/dbal": "^2.0 || ^3.0", - "doctrine/orm": "^2.7", + "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0", + "doctrine/orm": "^2.7 || ^3.0", "friendsofphp/php-cs-fixer": "^3.0", "kylekatarnls/multi-tester": "^2.0", + "ondrejmirtes/better-reflection": "*", "phpmd/phpmd": "^2.9", "phpstan/extension-installer": "^1.0", - "phpstan/phpstan": "^0.12.54 || ^1.0", - "phpunit/phpunit": "^7.5.20 || ^8.5.14", + "phpstan/phpstan": "^0.12.99 || ^1.7.14", + "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6", + "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20", "squizlabs/php_codesniffer": "^3.4" }, "bin": [ @@ -6335,43 +6461,47 @@ }, "funding": [ { - "url": "https://opencollective.com/Carbon", - "type": "open_collective" + "url": "https://github.com/sponsors/kylekatarnls", + "type": "github" }, { - "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon", + "url": "https://opencollective.com/Carbon#sponsor", + "type": "opencollective" + }, + { + "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme", "type": "tidelift" } ], - "time": "2022-02-13T18:13:33+00:00" + "time": "2024-01-25T10:35:09+00:00" }, { "name": "nette/schema", - "version": "v1.2.2", + "version": "v1.3.0", "source": { "type": "git", "url": "https://github.com/nette/schema.git", - "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df" + "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/schema/zipball/9a39cef03a5b34c7de64f551538cbba05c2be5df", - "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df", + "url": "https://api.github.com/repos/nette/schema/zipball/a6d3a6d1f545f01ef38e60f375d1cf1f4de98188", + "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188", "shasum": "" }, "require": { - "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0", - "php": ">=7.1 <8.2" + "nette/utils": "^4.0", + "php": "8.1 - 8.3" }, "require-dev": { - "nette/tester": "^2.3 || ^2.4", - "phpstan/phpstan-nette": "^0.12", - "tracy/tracy": "^2.7" + "nette/tester": "^2.4", + "phpstan/phpstan-nette": "^1.0", + "tracy/tracy": "^2.8" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.2-dev" + "dev-master": "1.3-dev" } }, "autoload": { @@ -6403,34 +6533,36 @@ ], "support": { "issues": "https://github.com/nette/schema/issues", - "source": "https://github.com/nette/schema/tree/v1.2.2" + "source": "https://github.com/nette/schema/tree/v1.3.0" }, - "time": "2021-10-15T11:40:02+00:00" + "time": "2023-12-11T11:54:22+00:00" }, { "name": "nette/utils", - "version": "v3.2.7", + "version": "v4.0.4", "source": { "type": "git", "url": "https://github.com/nette/utils.git", - "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99" + "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/utils/zipball/0af4e3de4df9f1543534beab255ccf459e7a2c99", - "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99", + "url": "https://api.github.com/repos/nette/utils/zipball/d3ad0aa3b9f934602cb3e3902ebccf10be34d218", + "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218", "shasum": "" }, "require": { - "php": ">=7.2 <8.2" + "php": ">=8.0 <8.4" }, "conflict": { - "nette/di": "<3.0.6" + "nette/finder": "<3", + "nette/schema": "<1.2.2" }, "require-dev": { - "nette/tester": "~2.0", + "jetbrains/phpstorm-attributes": "dev-master", + "nette/tester": "^2.5", "phpstan/phpstan": "^1.0", - "tracy/tracy": "^2.3" + "tracy/tracy": "^2.9" }, "suggest": { "ext-gd": "to use Image", @@ -6438,13 +6570,12 @@ "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", "ext-json": "to use Nette\\Utils\\Json", "ext-mbstring": "to use Strings::lower() etc...", - "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()", - "ext-xml": "to use Strings::length() etc. when mbstring is not available" + "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.2-dev" + "dev-master": "4.0-dev" } }, "autoload": { @@ -6488,31 +6619,33 @@ ], "support": { "issues": "https://github.com/nette/utils/issues", - "source": "https://github.com/nette/utils/tree/v3.2.7" + "source": "https://github.com/nette/utils/tree/v4.0.4" }, - "time": "2022-01-24T11:29:14+00:00" + "time": "2024-01-17T16:50:36+00:00" }, { "name": "nikic/php-parser", - "version": "v4.13.2", + "version": "v5.0.0", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "210577fe3cf7badcc5814d99455df46564f3c077" + "reference": "4a21235f7e56e713259a6f76bf4b5ea08502b9dc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077", - "reference": "210577fe3cf7badcc5814d99455df46564f3c077", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4a21235f7e56e713259a6f76bf4b5ea08502b9dc", + "reference": "4a21235f7e56e713259a6f76bf4b5ea08502b9dc", "shasum": "" }, "require": { + "ext-ctype": "*", + "ext-json": "*", "ext-tokenizer": "*", - "php": ">=7.0" + "php": ">=7.4" }, "require-dev": { "ircmaxell/php-yacc": "^0.0.7", - "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0" + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0" }, "bin": [ "bin/php-parse" @@ -6520,7 +6653,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.9-dev" + "dev-master": "5.0-dev" } }, "autoload": { @@ -6544,44 +6677,131 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2" + "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.0" }, - "time": "2021-11-30T19:35:32+00:00" + "time": "2024-01-07T17:17:35+00:00" + }, + { + "name": "nunomaduro/termwind", + "version": "v1.15.1", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/termwind.git", + "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc", + "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": "^8.0", + "symfony/console": "^5.3.0|^6.0.0" + }, + "require-dev": { + "ergebnis/phpstan-rules": "^1.0.", + "illuminate/console": "^8.0|^9.0", + "illuminate/support": "^8.0|^9.0", + "laravel/pint": "^1.0.0", + "pestphp/pest": "^1.21.0", + "pestphp/pest-plugin-mock": "^1.0", + "phpstan/phpstan": "^1.4.6", + "phpstan/phpstan-strict-rules": "^1.1.0", + "symfony/var-dumper": "^5.2.7|^6.0.0", + "thecodingmachine/phpstan-strict-rules": "^1.0.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Termwind\\Laravel\\TermwindServiceProvider" + ] + } + }, + "autoload": { + "files": [ + "src/Functions.php" + ], + "psr-4": { + "Termwind\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Its like Tailwind CSS, but for the console.", + "keywords": [ + "cli", + "console", + "css", + "package", + "php", + "style" + ], + "support": { + "issues": "https://github.com/nunomaduro/termwind/issues", + "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1" + }, + "funding": [ + { + "url": "https://www.paypal.com/paypalme/enunomaduro", + "type": "custom" + }, + { + "url": "https://github.com/nunomaduro", + "type": "github" + }, + { + "url": "https://github.com/xiCO2k", + "type": "github" + } + ], + "time": "2023-02-08T01:06:31+00:00" }, { "name": "nyholm/psr7", - "version": "1.5.0", + "version": "1.8.1", "source": { "type": "git", "url": "https://github.com/Nyholm/psr7.git", - "reference": "1461e07a0f2a975a52082ca3b769ca912b816226" + "reference": "aa5fc277a4f5508013d571341ade0c3886d4d00e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Nyholm/psr7/zipball/1461e07a0f2a975a52082ca3b769ca912b816226", - "reference": "1461e07a0f2a975a52082ca3b769ca912b816226", + "url": "https://api.github.com/repos/Nyholm/psr7/zipball/aa5fc277a4f5508013d571341ade0c3886d4d00e", + "reference": "aa5fc277a4f5508013d571341ade0c3886d4d00e", "shasum": "" }, "require": { - "php": ">=7.1", - "php-http/message-factory": "^1.0", + "php": ">=7.2", "psr/http-factory": "^1.0", - "psr/http-message": "^1.0" + "psr/http-message": "^1.1 || ^2.0" }, "provide": { + "php-http/message-factory-implementation": "1.0", "psr/http-factory-implementation": "1.0", "psr/http-message-implementation": "1.0" }, "require-dev": { "http-interop/http-factory-tests": "^0.9", + "php-http/message-factory": "^1.0", "php-http/psr7-integration-tests": "^1.0", - "phpunit/phpunit": "^7.5 || 8.5 || 9.4", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.4", "symfony/error-handler": "^4.4" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.4-dev" + "dev-master": "1.8-dev" } }, "autoload": { @@ -6611,7 +6831,7 @@ ], "support": { "issues": "https://github.com/Nyholm/psr7/issues", - "source": "https://github.com/Nyholm/psr7/tree/1.5.0" + "source": "https://github.com/Nyholm/psr7/tree/1.8.1" }, "funding": [ { @@ -6623,7 +6843,7 @@ "type": "github" } ], - "time": "2022-02-02T18:37:57+00:00" + "time": "2023-11-13T09:31:12+00:00" }, { "name": "paragonie/random_compat", @@ -6677,16 +6897,16 @@ }, { "name": "paragonie/sodium_compat", - "version": "v1.17.0", + "version": "v1.20.0", "source": { "type": "git", "url": "https://github.com/paragonie/sodium_compat.git", - "reference": "c59cac21abbcc0df06a3dd18076450ea4797b321" + "reference": "e592a3e06d1fa0d43988c7c7d9948ca836f644b6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/c59cac21abbcc0df06a3dd18076450ea4797b321", - "reference": "c59cac21abbcc0df06a3dd18076450ea4797b321", + "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/e592a3e06d1fa0d43988c7c7d9948ca836f644b6", + "reference": "e592a3e06d1fa0d43988c7c7d9948ca836f644b6", "shasum": "" }, "require": { @@ -6757,124 +6977,106 @@ ], "support": { "issues": "https://github.com/paragonie/sodium_compat/issues", - "source": "https://github.com/paragonie/sodium_compat/tree/v1.17.0" + "source": "https://github.com/paragonie/sodium_compat/tree/v1.20.0" }, - "time": "2021-08-10T02:43:50+00:00" + "time": "2023-04-30T00:54:53+00:00" }, { - "name": "php-http/client-common", - "version": "2.5.0", + "name": "phpoption/phpoption", + "version": "1.9.2", "source": { "type": "git", - "url": "https://github.com/php-http/client-common.git", - "reference": "d135751167d57e27c74de674d6a30cef2dc8e054" + "url": "https://github.com/schmittjoh/php-option.git", + "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/client-common/zipball/d135751167d57e27c74de674d6a30cef2dc8e054", - "reference": "d135751167d57e27c74de674d6a30cef2dc8e054", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820", + "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0", - "php-http/httplug": "^2.0", - "php-http/message": "^1.6", - "php-http/message-factory": "^1.0", - "psr/http-client": "^1.0", - "psr/http-factory": "^1.0", - "psr/http-message": "^1.0", - "symfony/options-resolver": "~4.0.15 || ~4.1.9 || ^4.2.1 || ^5.0 || ^6.0", - "symfony/polyfill-php80": "^1.17" + "php": "^7.2.5 || ^8.0" }, "require-dev": { - "doctrine/instantiator": "^1.1", - "guzzlehttp/psr7": "^1.4", - "nyholm/psr7": "^1.2", - "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1", - "phpspec/prophecy": "^1.10.2", - "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.3" - }, - "suggest": { - "ext-json": "To detect JSON responses with the ContentTypePlugin", - "ext-libxml": "To detect XML responses with the ContentTypePlugin", - "php-http/cache-plugin": "PSR-6 Cache plugin", - "php-http/logger-plugin": "PSR-3 Logger plugin", - "php-http/stopwatch-plugin": "Symfony Stopwatch plugin" + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" }, "type": "library", "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": true + }, "branch-alias": { - "dev-master": "2.3.x-dev" + "dev-master": "1.9-dev" } }, "autoload": { "psr-4": { - "Http\\Client\\Common\\": "src/" + "PhpOption\\": "src/PhpOption/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "Apache-2.0" ], "authors": [ { - "name": "Márk Sági-Kazár", - "email": "mark.sagikazar@gmail.com" + "name": "Johannes M. Schmitt", + "email": "schmittjoh@gmail.com", + "homepage": "https://github.com/schmittjoh" + }, + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" } ], - "description": "Common HTTP Client implementations and tools for HTTPlug", - "homepage": "http://httplug.io", + "description": "Option Type for PHP", "keywords": [ - "client", - "common", - "http", - "httplug" + "language", + "option", + "php", + "type" ], "support": { - "issues": "https://github.com/php-http/client-common/issues", - "source": "https://github.com/php-http/client-common/tree/2.5.0" + "issues": "https://github.com/schmittjoh/php-option/issues", + "source": "https://github.com/schmittjoh/php-option/tree/1.9.2" }, - "time": "2021-11-26T15:01:24+00:00" + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", + "type": "tidelift" + } + ], + "time": "2023-11-12T21:59:55+00:00" }, { - "name": "php-http/discovery", - "version": "1.14.1", + "name": "psr/clock", + "version": "1.0.0", "source": { "type": "git", - "url": "https://github.com/php-http/discovery.git", - "reference": "de90ab2b41d7d61609f504e031339776bc8c7223" + "url": "https://github.com/php-fig/clock.git", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/discovery/zipball/de90ab2b41d7d61609f504e031339776bc8c7223", - "reference": "de90ab2b41d7d61609f504e031339776bc8c7223", + "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0" - }, - "conflict": { - "nyholm/psr7": "<1.0" - }, - "require-dev": { - "graham-campbell/phpspec-skip-example-extension": "^5.0", - "php-http/httplug": "^1.0 || ^2.0", - "php-http/message-factory": "^1.0", - "phpspec/phpspec": "^5.1 || ^6.1", - "puli/composer-plugin": "1.0.0-beta10" - }, - "suggest": { - "php-http/message": "Allow to use Guzzle, Diactoros or Slim Framework factories" + "php": "^7.0 || ^8.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.9-dev" - } - }, "autoload": { "psr-4": { - "Http\\Discovery\\": "src/" + "Psr\\Clock\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -6883,344 +7085,24 @@ ], "authors": [ { - "name": "Márk Sági-Kazár", - "email": "mark.sagikazar@gmail.com" + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" } ], - "description": "Finds installed HTTPlug implementations and PSR-7 message factories", - "homepage": "http://php-http.org", + "description": "Common interface for reading the clock.", + "homepage": "https://github.com/php-fig/clock", "keywords": [ - "adapter", - "client", - "discovery", - "factory", - "http", - "message", - "psr7" - ], - "support": { - "issues": "https://github.com/php-http/discovery/issues", - "source": "https://github.com/php-http/discovery/tree/1.14.1" - }, - "time": "2021-09-18T07:57:46+00:00" - }, - { - "name": "php-http/httplug", - "version": "2.3.0", - "source": { - "type": "git", - "url": "https://github.com/php-http/httplug.git", - "reference": "f640739f80dfa1152533976e3c112477f69274eb" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-http/httplug/zipball/f640739f80dfa1152533976e3c112477f69274eb", - "reference": "f640739f80dfa1152533976e3c112477f69274eb", - "shasum": "" - }, - "require": { - "php": "^7.1 || ^8.0", - "php-http/promise": "^1.1", - "psr/http-client": "^1.0", - "psr/http-message": "^1.0" - }, - "require-dev": { - "friends-of-phpspec/phpspec-code-coverage": "^4.1", - "phpspec/phpspec": "^5.1 || ^6.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.x-dev" - } - }, - "autoload": { - "psr-4": { - "Http\\Client\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Eric GELOEN", - "email": "geloen.eric@gmail.com" - }, - { - "name": "Márk Sági-Kazár", - "email": "mark.sagikazar@gmail.com", - "homepage": "https://sagikazarmark.hu" - } - ], - "description": "HTTPlug, the HTTP client abstraction for PHP", - "homepage": "http://httplug.io", - "keywords": [ - "client", - "http" - ], - "support": { - "issues": "https://github.com/php-http/httplug/issues", - "source": "https://github.com/php-http/httplug/tree/2.3.0" - }, - "time": "2022-02-21T09:52:22+00:00" - }, - { - "name": "php-http/message", - "version": "1.13.0", - "source": { - "type": "git", - "url": "https://github.com/php-http/message.git", - "reference": "7886e647a30a966a1a8d1dad1845b71ca8678361" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-http/message/zipball/7886e647a30a966a1a8d1dad1845b71ca8678361", - "reference": "7886e647a30a966a1a8d1dad1845b71ca8678361", - "shasum": "" - }, - "require": { - "clue/stream-filter": "^1.5", - "php": "^7.1 || ^8.0", - "php-http/message-factory": "^1.0.2", - "psr/http-message": "^1.0" - }, - "provide": { - "php-http/message-factory-implementation": "1.0" - }, - "require-dev": { - "ergebnis/composer-normalize": "^2.6", - "ext-zlib": "*", - "guzzlehttp/psr7": "^1.0", - "laminas/laminas-diactoros": "^2.0", - "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1", - "slim/slim": "^3.0" - }, - "suggest": { - "ext-zlib": "Used with compressor/decompressor streams", - "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories", - "laminas/laminas-diactoros": "Used with Diactoros Factories", - "slim/slim": "Used with Slim Framework PSR-7 implementation" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.10-dev" - } - }, - "autoload": { - "files": [ - "src/filters.php" - ], - "psr-4": { - "Http\\Message\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Márk Sági-Kazár", - "email": "mark.sagikazar@gmail.com" - } - ], - "description": "HTTP Message related tools", - "homepage": "http://php-http.org", - "keywords": [ - "http", - "message", - "psr-7" - ], - "support": { - "issues": "https://github.com/php-http/message/issues", - "source": "https://github.com/php-http/message/tree/1.13.0" - }, - "time": "2022-02-11T13:41:14+00:00" - }, - { - "name": "php-http/message-factory", - "version": "v1.0.2", - "source": { - "type": "git", - "url": "https://github.com/php-http/message-factory.git", - "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1", - "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1", - "shasum": "" - }, - "require": { - "php": ">=5.4", - "psr/http-message": "^1.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0-dev" - } - }, - "autoload": { - "psr-4": { - "Http\\Message\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Márk Sági-Kazár", - "email": "mark.sagikazar@gmail.com" - } - ], - "description": "Factory interfaces for PSR-7 HTTP Message", - "homepage": "http://php-http.org", - "keywords": [ - "factory", - "http", - "message", - "stream", - "uri" - ], - "support": { - "issues": "https://github.com/php-http/message-factory/issues", - "source": "https://github.com/php-http/message-factory/tree/master" - }, - "time": "2015-12-19T14:08:53+00:00" - }, - { - "name": "php-http/promise", - "version": "1.1.0", - "source": { - "type": "git", - "url": "https://github.com/php-http/promise.git", - "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-http/promise/zipball/4c4c1f9b7289a2ec57cde7f1e9762a5789506f88", - "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88", - "shasum": "" - }, - "require": { - "php": "^7.1 || ^8.0" - }, - "require-dev": { - "friends-of-phpspec/phpspec-code-coverage": "^4.3.2", - "phpspec/phpspec": "^5.1.2 || ^6.2" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.1-dev" - } - }, - "autoload": { - "psr-4": { - "Http\\Promise\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Joel Wurtz", - "email": "joel.wurtz@gmail.com" - }, - { - "name": "Márk Sági-Kazár", - "email": "mark.sagikazar@gmail.com" - } - ], - "description": "Promise used for asynchronous HTTP requests", - "homepage": "http://httplug.io", - "keywords": [ - "promise" - ], - "support": { - "issues": "https://github.com/php-http/promise/issues", - "source": "https://github.com/php-http/promise/tree/1.1.0" - }, - "time": "2020-07-07T09:29:14+00:00" - }, - { - "name": "phpoption/phpoption", - "version": "1.8.1", - "source": { - "type": "git", - "url": "https://github.com/schmittjoh/php-option.git", - "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15", - "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15", - "shasum": "" - }, - "require": { - "php": "^7.0 || ^8.0" - }, - "require-dev": { - "bamarni/composer-bin-plugin": "^1.4.1", - "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.8-dev" - } - }, - "autoload": { - "psr-4": { - "PhpOption\\": "src/PhpOption/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "authors": [ - { - "name": "Johannes M. Schmitt", - "email": "schmittjoh@gmail.com", - "homepage": "https://github.com/schmittjoh" - }, - { - "name": "Graham Campbell", - "email": "hello@gjcampbell.co.uk", - "homepage": "https://github.com/GrahamCampbell" - } - ], - "description": "Option Type for PHP", - "keywords": [ - "language", - "option", - "php", - "type" + "clock", + "now", + "psr", + "psr-20", + "time" ], "support": { - "issues": "https://github.com/schmittjoh/php-option/issues", - "source": "https://github.com/schmittjoh/php-option/tree/1.8.1" + "issues": "https://github.com/php-fig/clock/issues", + "source": "https://github.com/php-fig/clock/tree/1.0.0" }, - "funding": [ - { - "url": "https://github.com/GrahamCampbell", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", - "type": "tidelift" - } - ], - "time": "2021-12-04T23:24:31+00:00" + "time": "2022-11-25T14:36:26+00:00" }, { "name": "psr/container", @@ -7327,21 +7209,21 @@ }, { "name": "psr/http-client", - "version": "1.0.1", + "version": "1.0.3", "source": { "type": "git", "url": "https://github.com/php-fig/http-client.git", - "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621" + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621", - "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621", + "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90", + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90", "shasum": "" }, "require": { "php": "^7.0 || ^8.0", - "psr/http-message": "^1.0" + "psr/http-message": "^1.0 || ^2.0" }, "type": "library", "extra": { @@ -7361,7 +7243,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], "description": "Common interface for HTTP clients", @@ -7373,27 +7255,27 @@ "psr-18" ], "support": { - "source": "https://github.com/php-fig/http-client/tree/master" + "source": "https://github.com/php-fig/http-client" }, - "time": "2020-06-29T06:28:15+00:00" + "time": "2023-09-23T14:17:50+00:00" }, { "name": "psr/http-factory", - "version": "1.0.1", + "version": "1.0.2", "source": { "type": "git", "url": "https://github.com/php-fig/http-factory.git", - "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be" + "reference": "e616d01114759c4c489f93b099585439f795fe35" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be", - "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35", + "reference": "e616d01114759c4c489f93b099585439f795fe35", "shasum": "" }, "require": { "php": ">=7.0.0", - "psr/http-message": "^1.0" + "psr/http-message": "^1.0 || ^2.0" }, "type": "library", "extra": { @@ -7413,7 +7295,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], "description": "Common interfaces for PSR-7 HTTP message factories", @@ -7428,31 +7310,31 @@ "response" ], "support": { - "source": "https://github.com/php-fig/http-factory/tree/master" + "source": "https://github.com/php-fig/http-factory/tree/1.0.2" }, - "time": "2019-04-30T12:38:16+00:00" + "time": "2023-04-10T20:10:41+00:00" }, { "name": "psr/http-message", - "version": "1.0.1", + "version": "2.0", "source": { "type": "git", "url": "https://github.com/php-fig/http-message.git", - "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", - "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71", "shasum": "" }, "require": { - "php": ">=5.3.0" + "php": "^7.2 || ^8.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "2.0.x-dev" } }, "autoload": { @@ -7467,7 +7349,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], "description": "Common interface for HTTP messages", @@ -7481,9 +7363,9 @@ "response" ], "support": { - "source": "https://github.com/php-fig/http-message/tree/master" + "source": "https://github.com/php-fig/http-message/tree/2.0" }, - "time": "2016-08-06T14:39:51+00:00" + "time": "2023-04-04T09:54:51+00:00" }, { "name": "psr/log", @@ -7537,25 +7419,25 @@ }, { "name": "psr/simple-cache", - "version": "1.0.1", + "version": "3.0.0", "source": { "type": "git", "url": "https://github.com/php-fig/simple-cache.git", - "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b" + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", - "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", + "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865", + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865", "shasum": "" }, "require": { - "php": ">=5.3.0" + "php": ">=8.0.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "3.0.x-dev" } }, "autoload": { @@ -7570,7 +7452,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], "description": "Common interfaces for simple caching", @@ -7582,45 +7464,42 @@ "simple-cache" ], "support": { - "source": "https://github.com/php-fig/simple-cache/tree/master" + "source": "https://github.com/php-fig/simple-cache/tree/3.0.0" }, - "time": "2017-10-23T01:57:42+00:00" + "time": "2021-10-29T13:26:27+00:00" }, { "name": "psy/psysh", - "version": "v0.11.2", + "version": "v0.12.0", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "7f7da640d68b9c9fec819caae7c744a213df6514" + "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/7f7da640d68b9c9fec819caae7c744a213df6514", - "reference": "7f7da640d68b9c9fec819caae7c744a213df6514", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/750bf031a48fd07c673dbe3f11f72362ea306d0d", + "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d", "shasum": "" }, "require": { "ext-json": "*", "ext-tokenizer": "*", - "nikic/php-parser": "^4.0 || ^3.1", - "php": "^8.0 || ^7.0.8", - "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4", - "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4" + "nikic/php-parser": "^5.0 || ^4.0", + "php": "^8.0 || ^7.4", + "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4", + "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4" }, "conflict": { "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.2", - "hoa/console": "3.17.05.02" + "bamarni/composer-bin-plugin": "^1.2" }, "suggest": { "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", "ext-pdo-sqlite": "The doc command requires SQLite to work.", - "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.", - "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.", - "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit." + "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well." }, "bin": [ "bin/psysh" @@ -7628,7 +7507,11 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "0.11.x-dev" + "dev-main": "0.12.x-dev" + }, + "bamarni-bin": { + "bin-links": false, + "forward-command": false } }, "autoload": { @@ -7660,22 +7543,22 @@ ], "support": { "issues": "https://github.com/bobthecow/psysh/issues", - "source": "https://github.com/bobthecow/psysh/tree/v0.11.2" + "source": "https://github.com/bobthecow/psysh/tree/v0.12.0" }, - "time": "2022-02-28T15:28:54+00:00" + "time": "2023-12-20T15:28:09+00:00" }, { "name": "pusher/pusher-php-server", - "version": "7.0.2", + "version": "7.2.4", "source": { "type": "git", "url": "https://github.com/pusher/pusher-http-php.git", - "reference": "af3eeaefc0c7959f5b3852f0a4dd5547245d33df" + "reference": "de2f72296808f9cafa6a4462b15a768ff130cddb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/af3eeaefc0c7959f5b3852f0a4dd5547245d33df", - "reference": "af3eeaefc0c7959f5b3852f0a4dd5547245d33df", + "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/de2f72296808f9cafa6a4462b15a768ff130cddb", + "reference": "de2f72296808f9cafa6a4462b15a768ff130cddb", "shasum": "" }, "require": { @@ -7688,7 +7571,7 @@ }, "require-dev": { "overtrue/phplint": "^2.3", - "phpunit/phpunit": "^8.5|^9.3" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { @@ -7721,9 +7604,9 @@ ], "support": { "issues": "https://github.com/pusher/pusher-http-php/issues", - "source": "https://github.com/pusher/pusher-http-php/tree/7.0.2" + "source": "https://github.com/pusher/pusher-http-php/tree/7.2.4" }, - "time": "2021-12-07T13:09:00+00:00" + "time": "2023-12-15T10:58:53+00:00" }, { "name": "ralouphie/getallheaders", @@ -7771,42 +7654,52 @@ }, { "name": "ramsey/collection", - "version": "1.2.2", + "version": "2.0.0", "source": { "type": "git", "url": "https://github.com/ramsey/collection.git", - "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a" + "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a", - "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a", + "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5", + "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5", "shasum": "" }, "require": { - "php": "^7.3 || ^8", - "symfony/polyfill-php81": "^1.23" + "php": "^8.1" }, "require-dev": { - "captainhook/captainhook": "^5.3", - "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", - "ergebnis/composer-normalize": "^2.6", - "fakerphp/faker": "^1.5", - "hamcrest/hamcrest-php": "^2", - "jangregor/phpstan-prophecy": "^0.8", - "mockery/mockery": "^1.3", + "captainhook/plugin-composer": "^5.3", + "ergebnis/composer-normalize": "^2.28.3", + "fakerphp/faker": "^1.21", + "hamcrest/hamcrest-php": "^2.0", + "jangregor/phpstan-prophecy": "^1.0", + "mockery/mockery": "^1.5", + "php-parallel-lint/php-console-highlighter": "^1.0", + "php-parallel-lint/php-parallel-lint": "^1.3", + "phpcsstandards/phpcsutils": "^1.0.0-rc1", "phpspec/prophecy-phpunit": "^2.0", - "phpstan/extension-installer": "^1", - "phpstan/phpstan": "^0.12.32", - "phpstan/phpstan-mockery": "^0.12.5", - "phpstan/phpstan-phpunit": "^0.12.11", - "phpunit/phpunit": "^8.5 || ^9", - "psy/psysh": "^0.10.4", - "slevomat/coding-standard": "^6.3", - "squizlabs/php_codesniffer": "^3.5", - "vimeo/psalm": "^4.4" + "phpstan/extension-installer": "^1.2", + "phpstan/phpstan": "^1.9", + "phpstan/phpstan-mockery": "^1.1", + "phpstan/phpstan-phpunit": "^1.3", + "phpunit/phpunit": "^9.5", + "psalm/plugin-mockery": "^1.1", + "psalm/plugin-phpunit": "^0.18.4", + "ramsey/coding-standard": "^2.0.3", + "ramsey/conventional-commits": "^1.3", + "vimeo/psalm": "^5.4" }, "type": "library", + "extra": { + "captainhook": { + "force-install": true + }, + "ramsey/conventional-commits": { + "configFile": "conventional-commits.json" + } + }, "autoload": { "psr-4": { "Ramsey\\Collection\\": "src/" @@ -7834,7 +7727,7 @@ ], "support": { "issues": "https://github.com/ramsey/collection/issues", - "source": "https://github.com/ramsey/collection/tree/1.2.2" + "source": "https://github.com/ramsey/collection/tree/2.0.0" }, "funding": [ { @@ -7846,29 +7739,27 @@ "type": "tidelift" } ], - "time": "2021-10-10T03:01:02+00:00" + "time": "2022-12-31T21:50:55+00:00" }, { "name": "ramsey/uuid", - "version": "4.2.3", + "version": "4.7.5", "source": { "type": "git", "url": "https://github.com/ramsey/uuid.git", - "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df" + "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df", - "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e", + "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e", "shasum": "" }, "require": { - "brick/math": "^0.8 || ^0.9", + "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11", "ext-json": "*", - "php": "^7.2 || ^8.0", - "ramsey/collection": "^1.0", - "symfony/polyfill-ctype": "^1.8", - "symfony/polyfill-php80": "^1.14" + "php": "^8.0", + "ramsey/collection": "^1.2 || ^2.0" }, "replace": { "rhumsaa/uuid": "self.version" @@ -7880,24 +7771,23 @@ "doctrine/annotations": "^1.8", "ergebnis/composer-normalize": "^2.15", "mockery/mockery": "^1.3", - "moontoast/math": "^1.1", "paragonie/random-lib": "^2", "php-mock/php-mock": "^2.2", "php-mock/php-mock-mockery": "^1.3", "php-parallel-lint/php-parallel-lint": "^1.1", "phpbench/phpbench": "^1.0", - "phpstan/extension-installer": "^1.0", - "phpstan/phpstan": "^0.12", - "phpstan/phpstan-mockery": "^0.12", - "phpstan/phpstan-phpunit": "^0.12", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-mockery": "^1.1", + "phpstan/phpstan-phpunit": "^1.1", "phpunit/phpunit": "^8.5 || ^9", - "slevomat/coding-standard": "^7.0", + "ramsey/composer-repl": "^1.4", + "slevomat/coding-standard": "^8.4", "squizlabs/php_codesniffer": "^3.5", "vimeo/psalm": "^4.9" }, "suggest": { "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.", - "ext-ctype": "Enables faster processing of character classification using ctype functions.", "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.", "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.", "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter", @@ -7905,9 +7795,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "4.x-dev" - }, "captainhook": { "force-install": true } @@ -7932,7 +7819,7 @@ ], "support": { "issues": "https://github.com/ramsey/uuid/issues", - "source": "https://github.com/ramsey/uuid/tree/4.2.3" + "source": "https://github.com/ramsey/uuid/tree/4.7.5" }, "funding": [ { @@ -7944,124 +7831,50 @@ "type": "tidelift" } ], - "time": "2021-09-25T23:10:38+00:00" - }, - { - "name": "sentry/sdk", - "version": "3.1.1", - "source": { - "type": "git", - "url": "https://github.com/getsentry/sentry-php-sdk.git", - "reference": "2de7de3233293f80d1e244bd950adb2121a3731c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/getsentry/sentry-php-sdk/zipball/2de7de3233293f80d1e244bd950adb2121a3731c", - "reference": "2de7de3233293f80d1e244bd950adb2121a3731c", - "shasum": "" - }, - "require": { - "http-interop/http-factory-guzzle": "^1.0", - "sentry/sentry": "^3.1", - "symfony/http-client": "^4.3|^5.0|^6.0" - }, - "type": "metapackage", - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Sentry", - "email": "accounts@sentry.io" - } - ], - "description": "This is a metapackage shipping sentry/sentry with a recommended HTTP client.", - "homepage": "http://sentry.io", - "keywords": [ - "crash-reporting", - "crash-reports", - "error-handler", - "error-monitoring", - "log", - "logging", - "sentry" - ], - "support": { - "source": "https://github.com/getsentry/sentry-php-sdk/tree/3.1.1" - }, - "funding": [ - { - "url": "https://sentry.io/", - "type": "custom" - }, - { - "url": "https://sentry.io/pricing/", - "type": "custom" - } - ], - "time": "2021-11-30T11:54:41+00:00" + "time": "2023-11-08T05:53:05+00:00" }, { "name": "sentry/sentry", - "version": "3.3.7", + "version": "4.5.0", "source": { "type": "git", "url": "https://github.com/getsentry/sentry-php.git", - "reference": "32e5415803ff0349ccb5e5b5e77b016320762786" + "reference": "a6e06f0b7a17e7f68e11297427da76bfe01a3ca3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/32e5415803ff0349ccb5e5b5e77b016320762786", - "reference": "32e5415803ff0349ccb5e5b5e77b016320762786", + "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/a6e06f0b7a17e7f68e11297427da76bfe01a3ca3", + "reference": "a6e06f0b7a17e7f68e11297427da76bfe01a3ca3", "shasum": "" }, "require": { + "ext-curl": "*", "ext-json": "*", "ext-mbstring": "*", - "guzzlehttp/promises": "^1.4", - "guzzlehttp/psr7": "^1.7|^2.0", + "guzzlehttp/psr7": "^1.8.4|^2.1.1", "jean85/pretty-package-versions": "^1.5|^2.0.4", "php": "^7.2|^8.0", - "php-http/async-client-implementation": "^1.0", - "php-http/client-common": "^1.5|^2.0", - "php-http/discovery": "^1.6.1", - "php-http/httplug": "^1.1|^2.0", - "php-http/message": "^1.5", - "psr/http-factory": "^1.0", - "psr/http-message-implementation": "^1.0", "psr/log": "^1.0|^2.0|^3.0", - "symfony/options-resolver": "^3.4.43|^4.4.30|^5.0.11|^6.0", - "symfony/polyfill-php80": "^1.17", - "symfony/polyfill-uuid": "^1.13.1" + "symfony/options-resolver": "^4.4.30|^5.0.11|^6.0|^7.0" }, "conflict": { - "php-http/client-common": "1.8.0", "raven/raven": "*" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^2.19|3.4.*", - "http-interop/http-factory-guzzle": "^1.0", - "monolog/monolog": "^1.3|^2.0", - "nikic/php-parser": "^4.10.3", - "php-http/mock-client": "^1.3", + "friendsofphp/php-cs-fixer": "^3.4", + "guzzlehttp/promises": "^1.0|^2.0", + "guzzlehttp/psr7": "^1.8.4|^2.1.1", + "monolog/monolog": "^1.6|^2.0|^3.0", "phpbench/phpbench": "^1.0", - "phpstan/extension-installer": "^1.0", "phpstan/phpstan": "^1.3", - "phpstan/phpstan-phpunit": "^1.0", "phpunit/phpunit": "^8.5.14|^9.4", - "symfony/phpunit-bridge": "^5.2|^6.0", + "symfony/phpunit-bridge": "^5.2|^6.0|^7.0", "vimeo/psalm": "^4.17" }, "suggest": { "monolog/monolog": "Allow sending log messages to Sentry by using the included Monolog handler." }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.3.x-dev" - } - }, "autoload": { "files": [ "src/functions.php" @@ -8072,7 +7885,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { @@ -8080,7 +7893,7 @@ "email": "accounts@sentry.io" } ], - "description": "A PHP SDK for Sentry (http://sentry.io)", + "description": "PHP SDK for Sentry (http://sentry.io)", "homepage": "http://sentry.io", "keywords": [ "crash-reporting", @@ -8089,11 +7902,13 @@ "error-monitoring", "log", "logging", - "sentry" + "profiling", + "sentry", + "tracing" ], "support": { "issues": "https://github.com/getsentry/sentry-php/issues", - "source": "https://github.com/getsentry/sentry-php/tree/3.3.7" + "source": "https://github.com/getsentry/sentry-php/tree/4.5.0" }, "funding": [ { @@ -8105,46 +7920,42 @@ "type": "custom" } ], - "time": "2022-01-19T08:46:27+00:00" + "time": "2024-01-29T16:16:10+00:00" }, { "name": "sentry/sentry-laravel", - "version": "2.11.1", + "version": "4.2.0", "source": { "type": "git", "url": "https://github.com/getsentry/sentry-laravel.git", - "reference": "183866ec5dc367efe4d5aa22906860e837aa6685" + "reference": "054638ac05d7668e8b2c636e66fed5b5b468f11f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/getsentry/sentry-laravel/zipball/183866ec5dc367efe4d5aa22906860e837aa6685", - "reference": "183866ec5dc367efe4d5aa22906860e837aa6685", + "url": "https://api.github.com/repos/getsentry/sentry-laravel/zipball/054638ac05d7668e8b2c636e66fed5b5b468f11f", + "reference": "054638ac05d7668e8b2c636e66fed5b5b468f11f", "shasum": "" }, "require": { - "illuminate/support": "5.0 - 5.8 | ^6.0 | ^7.0 | ^8.0 | ^9.0", + "illuminate/support": "^6.0 | ^7.0 | ^8.0 | ^9.0 | ^10.0", "nyholm/psr7": "^1.0", "php": "^7.2 | ^8.0", - "sentry/sdk": "^3.1", - "sentry/sentry": "^3.3", - "symfony/psr-http-message-bridge": "^1.0 | ^2.0" + "sentry/sentry": "^4.5", + "symfony/psr-http-message-bridge": "^1.0 | ^2.0 | ^6.0 | ^7.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "2.18.*", - "laravel/framework": "5.0 - 5.8 | ^6.0 | ^7.0 | ^8.0 | ^9.0", + "friendsofphp/php-cs-fixer": "^3.11", + "guzzlehttp/guzzle": "^7.2", + "laravel/folio": "^1.0", + "laravel/framework": "^6.0 | ^7.0 | ^8.0 | ^9.0 | ^10.0", + "livewire/livewire": "^2.0 | ^3.0", "mockery/mockery": "^1.3", - "orchestra/testbench": "3.1 - 3.8 | ^4.7 | ^5.1 | ^6.0 | ^7.0", - "phpunit/phpunit": "^5.7 | ^6.5 | ^7.5 | ^8.4 | ^9.3" - }, - "suggest": { - "zendframework/zend-diactoros": "When using Laravel >=5.1 - <=6.9 this package can help get more accurate request info, not used on Laravel >=6.10 anymore (https://laravel.com/docs/5.8/requests#psr7-requests)" + "orchestra/testbench": "^4.7 | ^5.1 | ^6.0 | ^7.0 | ^8.0", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^8.4 | ^9.3 | ^10.4" }, "type": "library", "extra": { - "branch-alias": { - "dev-master": "2.x-dev", - "dev-0.x": "0.x-dev" - }, "laravel": { "providers": [ "Sentry\\Laravel\\ServiceProvider", @@ -8162,7 +7973,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "Apache-2.0" + "MIT" ], "authors": [ { @@ -8180,11 +7991,13 @@ "laravel", "log", "logging", - "sentry" + "profiling", + "sentry", + "tracing" ], "support": { "issues": "https://github.com/getsentry/sentry-laravel/issues", - "source": "https://github.com/getsentry/sentry-laravel/tree/2.11.1" + "source": "https://github.com/getsentry/sentry-laravel/tree/4.2.0" }, "funding": [ { @@ -8196,31 +8009,32 @@ "type": "custom" } ], - "time": "2022-02-14T20:00:19+00:00" + "time": "2024-01-29T17:08:18+00:00" }, { "name": "spatie/image-optimizer", - "version": "1.6.2", + "version": "1.7.2", "source": { "type": "git", "url": "https://github.com/spatie/image-optimizer.git", - "reference": "6db75529cbf8fa84117046a9d513f277aead90a0" + "reference": "62f7463483d1bd975f6f06025d89d42a29608fe1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/image-optimizer/zipball/6db75529cbf8fa84117046a9d513f277aead90a0", - "reference": "6db75529cbf8fa84117046a9d513f277aead90a0", + "url": "https://api.github.com/repos/spatie/image-optimizer/zipball/62f7463483d1bd975f6f06025d89d42a29608fe1", + "reference": "62f7463483d1bd975f6f06025d89d42a29608fe1", "shasum": "" }, "require": { "ext-fileinfo": "*", "php": "^7.3|^8.0", "psr/log": "^1.0 | ^2.0 | ^3.0", - "symfony/process": "^4.2|^5.0|^6.0" + "symfony/process": "^4.2|^5.0|^6.0|^7.0" }, "require-dev": { + "pestphp/pest": "^1.21", "phpunit/phpunit": "^8.5.21|^9.4.4", - "symfony/var-dumper": "^4.2|^5.0|^6.0" + "symfony/var-dumper": "^4.2|^5.0|^6.0|^7.0" }, "type": "library", "autoload": { @@ -8248,31 +8062,31 @@ ], "support": { "issues": "https://github.com/spatie/image-optimizer/issues", - "source": "https://github.com/spatie/image-optimizer/tree/1.6.2" + "source": "https://github.com/spatie/image-optimizer/tree/1.7.2" }, - "time": "2021-12-21T10:08:05+00:00" + "time": "2023-11-03T10:08:02+00:00" }, { "name": "spatie/laravel-image-optimizer", - "version": "1.7.0", + "version": "1.7.1", "source": { "type": "git", "url": "https://github.com/spatie/laravel-image-optimizer.git", - "reference": "6f9e8520485df7bfceb62824ef5ec7c8d25b3521" + "reference": "cd8945e47b9fd01bc7b770eecd57c56f46c47422" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-image-optimizer/zipball/6f9e8520485df7bfceb62824ef5ec7c8d25b3521", - "reference": "6f9e8520485df7bfceb62824ef5ec7c8d25b3521", + "url": "https://api.github.com/repos/spatie/laravel-image-optimizer/zipball/cd8945e47b9fd01bc7b770eecd57c56f46c47422", + "reference": "cd8945e47b9fd01bc7b770eecd57c56f46c47422", "shasum": "" }, "require": { - "laravel/framework": "^8.0|^9.0", + "laravel/framework": "^8.0|^9.0|^10.0", "php": "^8.0", "spatie/image-optimizer": "^1.2.0" }, "require-dev": { - "orchestra/testbench": "^6.23|^7.0", + "orchestra/testbench": "^6.23|^7.0|^8.0", "phpunit/phpunit": "^9.4" }, "type": "library", @@ -8310,8 +8124,7 @@ "spatie" ], "support": { - "issues": "https://github.com/spatie/laravel-image-optimizer/issues", - "source": "https://github.com/spatie/laravel-image-optimizer/tree/1.7.0" + "source": "https://github.com/spatie/laravel-image-optimizer/tree/1.7.1" }, "funding": [ { @@ -8319,27 +8132,28 @@ "type": "custom" } ], - "time": "2022-01-14T08:03:30+00:00" + "time": "2023-01-24T23:44:33+00:00" }, { "name": "symfony/console", - "version": "v6.0.5", + "version": "v6.4.3", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "3bebf4108b9e07492a2a4057d207aa5a77d146b1" + "reference": "2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/3bebf4108b9e07492a2a4057d207aa5a77d146b1", - "reference": "3bebf4108b9e07492a2a4057d207aa5a77d146b1", + "url": "https://api.github.com/repos/symfony/console/zipball/2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e", + "reference": "2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e", "shasum": "" }, "require": { - "php": ">=8.0.2", + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-mbstring": "~1.0", - "symfony/service-contracts": "^1.1|^2|^3", - "symfony/string": "^5.4|^6.0" + "symfony/service-contracts": "^2.5|^3", + "symfony/string": "^5.4|^6.0|^7.0" }, "conflict": { "symfony/dependency-injection": "<5.4", @@ -8353,18 +8167,16 @@ }, "require-dev": { "psr/log": "^1|^2|^3", - "symfony/config": "^5.4|^6.0", - "symfony/dependency-injection": "^5.4|^6.0", - "symfony/event-dispatcher": "^5.4|^6.0", - "symfony/lock": "^5.4|^6.0", - "symfony/process": "^5.4|^6.0", - "symfony/var-dumper": "^5.4|^6.0" - }, - "suggest": { - "psr/log": "For using the console logger", - "symfony/event-dispatcher": "", - "symfony/lock": "", - "symfony/process": "" + "symfony/config": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/event-dispatcher": "^5.4|^6.0|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/lock": "^5.4|^6.0|^7.0", + "symfony/messenger": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "symfony/stopwatch": "^5.4|^6.0|^7.0", + "symfony/var-dumper": "^5.4|^6.0|^7.0" }, "type": "library", "autoload": { @@ -8393,12 +8205,12 @@ "homepage": "https://symfony.com", "keywords": [ "cli", - "command line", + "command-line", "console", "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v6.0.5" + "source": "https://github.com/symfony/console/tree/v6.4.3" }, "funding": [ { @@ -8414,24 +8226,24 @@ "type": "tidelift" } ], - "time": "2022-02-25T10:48:52+00:00" + "time": "2024-01-23T14:51:35+00:00" }, { "name": "symfony/css-selector", - "version": "v6.0.3", + "version": "v6.4.3", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "1955d595c12c111629cc814d3f2a2ff13580508a" + "reference": "ee0f7ed5cf298cc019431bb3b3977ebc52b86229" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/1955d595c12c111629cc814d3f2a2ff13580508a", - "reference": "1955d595c12c111629cc814d3f2a2ff13580508a", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/ee0f7ed5cf298cc019431bb3b3977ebc52b86229", + "reference": "ee0f7ed5cf298cc019431bb3b3977ebc52b86229", "shasum": "" }, "require": { - "php": ">=8.0.2" + "php": ">=8.1" }, "type": "library", "autoload": { @@ -8463,7 +8275,7 @@ "description": "Converts CSS selectors to XPath expressions", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/css-selector/tree/v6.0.3" + "source": "https://github.com/symfony/css-selector/tree/v6.4.3" }, "funding": [ { @@ -8479,29 +8291,29 @@ "type": "tidelift" } ], - "time": "2022-01-02T09:55:41+00:00" + "time": "2024-01-23T14:51:35+00:00" }, { "name": "symfony/deprecation-contracts", - "version": "v3.0.0", + "version": "v3.4.0", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "c726b64c1ccfe2896cb7df2e1331c357ad1c8ced" + "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/c726b64c1ccfe2896cb7df2e1331c357ad1c8ced", - "reference": "c726b64c1ccfe2896cb7df2e1331c357ad1c8ced", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf", + "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf", "shasum": "" }, "require": { - "php": ">=8.0.2" + "php": ">=8.1" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "3.0-dev" + "dev-main": "3.4-dev" }, "thanks": { "name": "symfony/contracts", @@ -8530,7 +8342,7 @@ "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.0" + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0" }, "funding": [ { @@ -8546,31 +8358,35 @@ "type": "tidelift" } ], - "time": "2021-11-01T23:48:49+00:00" + "time": "2023-05-23T14:45:45+00:00" }, { "name": "symfony/error-handler", - "version": "v6.0.3", + "version": "v6.4.3", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "20343b3bad7ebafa38138ddcb97290a24722b57b" + "reference": "6dc3c76a278b77f01d864a6005d640822c6f26a6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/20343b3bad7ebafa38138ddcb97290a24722b57b", - "reference": "20343b3bad7ebafa38138ddcb97290a24722b57b", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/6dc3c76a278b77f01d864a6005d640822c6f26a6", + "reference": "6dc3c76a278b77f01d864a6005d640822c6f26a6", "shasum": "" }, "require": { - "php": ">=8.0.2", + "php": ">=8.1", "psr/log": "^1|^2|^3", - "symfony/var-dumper": "^5.4|^6.0" + "symfony/var-dumper": "^5.4|^6.0|^7.0" + }, + "conflict": { + "symfony/deprecation-contracts": "<2.5", + "symfony/http-kernel": "<6.4" }, "require-dev": { - "symfony/deprecation-contracts": "^2.1|^3", - "symfony/http-kernel": "^5.4|^6.0", - "symfony/serializer": "^5.4|^6.0" + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/serializer": "^5.4|^6.0|^7.0" }, "bin": [ "Resources/bin/patch-type-declarations" @@ -8601,7 +8417,7 @@ "description": "Provides tools to manage errors and ease debugging PHP code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/error-handler/tree/v6.0.3" + "source": "https://github.com/symfony/error-handler/tree/v6.4.3" }, "funding": [ { @@ -8617,28 +8433,29 @@ "type": "tidelift" } ], - "time": "2022-01-02T09:55:41+00:00" + "time": "2024-01-29T15:40:36+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v6.0.3", + "version": "v6.4.3", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "6472ea2dd415e925b90ca82be64b8bc6157f3934" + "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/6472ea2dd415e925b90ca82be64b8bc6157f3934", - "reference": "6472ea2dd415e925b90ca82be64b8bc6157f3934", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ae9d3a6f3003a6caf56acd7466d8d52378d44fef", + "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef", "shasum": "" }, "require": { - "php": ">=8.0.2", - "symfony/event-dispatcher-contracts": "^2|^3" + "php": ">=8.1", + "symfony/event-dispatcher-contracts": "^2.5|^3" }, "conflict": { - "symfony/dependency-injection": "<5.4" + "symfony/dependency-injection": "<5.4", + "symfony/service-contracts": "<2.5" }, "provide": { "psr/event-dispatcher-implementation": "1.0", @@ -8646,17 +8463,13 @@ }, "require-dev": { "psr/log": "^1|^2|^3", - "symfony/config": "^5.4|^6.0", - "symfony/dependency-injection": "^5.4|^6.0", - "symfony/error-handler": "^5.4|^6.0", - "symfony/expression-language": "^5.4|^6.0", - "symfony/http-foundation": "^5.4|^6.0", - "symfony/service-contracts": "^1.1|^2|^3", - "symfony/stopwatch": "^5.4|^6.0" - }, - "suggest": { - "symfony/dependency-injection": "", - "symfony/http-kernel": "" + "symfony/config": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/error-handler": "^5.4|^6.0|^7.0", + "symfony/expression-language": "^5.4|^6.0|^7.0", + "symfony/http-foundation": "^5.4|^6.0|^7.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/stopwatch": "^5.4|^6.0|^7.0" }, "type": "library", "autoload": { @@ -8684,7 +8497,7 @@ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.3" + "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.3" }, "funding": [ { @@ -8700,33 +8513,30 @@ "type": "tidelift" } ], - "time": "2022-01-02T09:55:41+00:00" + "time": "2024-01-23T14:51:35+00:00" }, { "name": "symfony/event-dispatcher-contracts", - "version": "v3.0.0", + "version": "v3.4.0", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "aa5422287b75594b90ee9cd807caf8f0df491385" + "reference": "a76aed96a42d2b521153fb382d418e30d18b59df" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/aa5422287b75594b90ee9cd807caf8f0df491385", - "reference": "aa5422287b75594b90ee9cd807caf8f0df491385", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df", + "reference": "a76aed96a42d2b521153fb382d418e30d18b59df", "shasum": "" }, "require": { - "php": ">=8.0.2", + "php": ">=8.1", "psr/event-dispatcher": "^1" }, - "suggest": { - "symfony/event-dispatcher-implementation": "" - }, "type": "library", "extra": { "branch-alias": { - "dev-main": "3.0-dev" + "dev-main": "3.4-dev" }, "thanks": { "name": "symfony/contracts", @@ -8763,7 +8573,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.0" + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.0" }, "funding": [ { @@ -8779,24 +8589,27 @@ "type": "tidelift" } ], - "time": "2021-07-15T12:33:35+00:00" + "time": "2023-05-23T14:45:45+00:00" }, { "name": "symfony/finder", - "version": "v6.0.3", + "version": "v6.4.0", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "8661b74dbabc23223f38c9b99d3f8ade71170430" + "reference": "11d736e97f116ac375a81f96e662911a34cd50ce" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/8661b74dbabc23223f38c9b99d3f8ade71170430", - "reference": "8661b74dbabc23223f38c9b99d3f8ade71170430", + "url": "https://api.github.com/repos/symfony/finder/zipball/11d736e97f116ac375a81f96e662911a34cd50ce", + "reference": "11d736e97f116ac375a81f96e662911a34cd50ce", "shasum": "" }, "require": { - "php": ">=8.0.2" + "php": ">=8.1" + }, + "require-dev": { + "symfony/filesystem": "^6.0|^7.0" }, "type": "library", "autoload": { @@ -8824,7 +8637,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v6.0.3" + "source": "https://github.com/symfony/finder/tree/v6.4.0" }, "funding": [ { @@ -8840,27 +8653,32 @@ "type": "tidelift" } ], - "time": "2022-01-26T17:23:29+00:00" + "time": "2023-10-31T17:30:12+00:00" }, { "name": "symfony/http-client", - "version": "v6.0.5", + "version": "v6.4.3", "source": { "type": "git", "url": "https://github.com/symfony/http-client.git", - "reference": "a8f87328930932c455cffd048f965d1223d91915" + "reference": "a9034bc119fab8238f76cf49c770f3135f3ead86" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client/zipball/a8f87328930932c455cffd048f965d1223d91915", - "reference": "a8f87328930932c455cffd048f965d1223d91915", + "url": "https://api.github.com/repos/symfony/http-client/zipball/a9034bc119fab8238f76cf49c770f3135f3ead86", + "reference": "a9034bc119fab8238f76cf49c770f3135f3ead86", "shasum": "" }, "require": { - "php": ">=8.0.2", + "php": ">=8.1", "psr/log": "^1|^2|^3", + "symfony/deprecation-contracts": "^2.5|^3", "symfony/http-client-contracts": "^3", - "symfony/service-contracts": "^1.0|^2|^3" + "symfony/service-contracts": "^2.5|^3" + }, + "conflict": { + "php-http/discovery": "<1.15", + "symfony/http-foundation": "<6.3" }, "provide": { "php-http/async-client-implementation": "*", @@ -8877,10 +8695,11 @@ "nyholm/psr7": "^1.0", "php-http/httplug": "^1.0|^2.0", "psr/http-client": "^1.0", - "symfony/dependency-injection": "^5.4|^6.0", - "symfony/http-kernel": "^5.4|^6.0", - "symfony/process": "^5.4|^6.0", - "symfony/stopwatch": "^5.4|^6.0" + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/http-kernel": "^5.4|^6.0|^7.0", + "symfony/messenger": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "symfony/stopwatch": "^5.4|^6.0|^7.0" }, "type": "library", "autoload": { @@ -8907,8 +8726,11 @@ ], "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously", "homepage": "https://symfony.com", + "keywords": [ + "http" + ], "support": { - "source": "https://github.com/symfony/http-client/tree/v6.0.5" + "source": "https://github.com/symfony/http-client/tree/v6.4.3" }, "funding": [ { @@ -8924,32 +8746,29 @@ "type": "tidelift" } ], - "time": "2022-02-27T08:47:28+00:00" + "time": "2024-01-29T15:01:07+00:00" }, { "name": "symfony/http-client-contracts", - "version": "v3.0.0", + "version": "v3.4.0", "source": { "type": "git", "url": "https://github.com/symfony/http-client-contracts.git", - "reference": "265f03fed057044a8e4dc159aa33596d0f48ed3f" + "reference": "1ee70e699b41909c209a0c930f11034b93578654" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/265f03fed057044a8e4dc159aa33596d0f48ed3f", - "reference": "265f03fed057044a8e4dc159aa33596d0f48ed3f", + "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/1ee70e699b41909c209a0c930f11034b93578654", + "reference": "1ee70e699b41909c209a0c930f11034b93578654", "shasum": "" }, "require": { - "php": ">=8.0.2" - }, - "suggest": { - "symfony/http-client-implementation": "" + "php": ">=8.1" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "3.0-dev" + "dev-main": "3.4-dev" }, "thanks": { "name": "symfony/contracts", @@ -8959,7 +8778,10 @@ "autoload": { "psr-4": { "Symfony\\Contracts\\HttpClient\\": "" - } + }, + "exclude-from-classmap": [ + "/Test/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -8986,7 +8808,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/http-client-contracts/tree/v3.0.0" + "source": "https://github.com/symfony/http-client-contracts/tree/v3.4.0" }, "funding": [ { @@ -9002,35 +8824,40 @@ "type": "tidelift" } ], - "time": "2021-11-03T13:44:55+00:00" + "time": "2023-07-30T20:28:31+00:00" }, { "name": "symfony/http-foundation", - "version": "v6.0.6", + "version": "v6.4.3", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "a000fcf2298a1bc79a1dcff22608792506534719" + "reference": "5677bdf7cade4619cb17fc9e1e7b31ec392244a9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a000fcf2298a1bc79a1dcff22608792506534719", - "reference": "a000fcf2298a1bc79a1dcff22608792506534719", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/5677bdf7cade4619cb17fc9e1e7b31ec392244a9", + "reference": "5677bdf7cade4619cb17fc9e1e7b31ec392244a9", "shasum": "" }, "require": { - "php": ">=8.0.2", - "symfony/deprecation-contracts": "^2.1|^3", - "symfony/polyfill-mbstring": "~1.1" + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.1", + "symfony/polyfill-php83": "^1.27" }, - "require-dev": { - "predis/predis": "~1.0", - "symfony/cache": "^5.4|^6.0", - "symfony/expression-language": "^5.4|^6.0", - "symfony/mime": "^5.4|^6.0" + "conflict": { + "symfony/cache": "<6.3" }, - "suggest": { - "symfony/mime": "To use the file extension guesser" + "require-dev": { + "doctrine/dbal": "^2.13.1|^3|^4", + "predis/predis": "^1.1|^2.0", + "symfony/cache": "^6.3|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/expression-language": "^5.4|^6.0|^7.0", + "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0", + "symfony/mime": "^5.4|^6.0|^7.0", + "symfony/rate-limiter": "^5.4|^6.0|^7.0" }, "type": "library", "autoload": { @@ -9058,7 +8885,7 @@ "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-foundation/tree/v6.0.6" + "source": "https://github.com/symfony/http-foundation/tree/v6.4.3" }, "funding": [ { @@ -9074,44 +8901,48 @@ "type": "tidelift" } ], - "time": "2022-03-05T21:04:00+00:00" + "time": "2024-01-23T14:51:35+00:00" }, { "name": "symfony/http-kernel", - "version": "v6.0.6", + "version": "v6.4.3", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "f9e49ad9fe16895b24cd7a09dc28d3364282e21a" + "reference": "9c6ec4e543044f7568a53a76ab1484ecd30637a2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f9e49ad9fe16895b24cd7a09dc28d3364282e21a", - "reference": "f9e49ad9fe16895b24cd7a09dc28d3364282e21a", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/9c6ec4e543044f7568a53a76ab1484ecd30637a2", + "reference": "9c6ec4e543044f7568a53a76ab1484ecd30637a2", "shasum": "" }, "require": { - "php": ">=8.0.2", + "php": ">=8.1", "psr/log": "^1|^2|^3", - "symfony/error-handler": "^5.4|^6.0", - "symfony/event-dispatcher": "^5.4|^6.0", - "symfony/http-foundation": "^5.4|^6.0", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/error-handler": "^6.4|^7.0", + "symfony/event-dispatcher": "^5.4|^6.0|^7.0", + "symfony/http-foundation": "^6.4|^7.0", "symfony/polyfill-ctype": "^1.8" }, "conflict": { "symfony/browser-kit": "<5.4", "symfony/cache": "<5.4", - "symfony/config": "<5.4", + "symfony/config": "<6.1", "symfony/console": "<5.4", - "symfony/dependency-injection": "<5.4", + "symfony/dependency-injection": "<6.4", "symfony/doctrine-bridge": "<5.4", "symfony/form": "<5.4", "symfony/http-client": "<5.4", + "symfony/http-client-contracts": "<2.5", "symfony/mailer": "<5.4", "symfony/messenger": "<5.4", "symfony/translation": "<5.4", + "symfony/translation-contracts": "<2.5", "symfony/twig-bridge": "<5.4", - "symfony/validator": "<5.4", + "symfony/validator": "<6.4", + "symfony/var-dumper": "<6.3", "twig/twig": "<2.13" }, "provide": { @@ -9119,28 +8950,28 @@ }, "require-dev": { "psr/cache": "^1.0|^2.0|^3.0", - "symfony/browser-kit": "^5.4|^6.0", - "symfony/config": "^5.4|^6.0", - "symfony/console": "^5.4|^6.0", - "symfony/css-selector": "^5.4|^6.0", - "symfony/dependency-injection": "^5.4|^6.0", - "symfony/dom-crawler": "^5.4|^6.0", - "symfony/expression-language": "^5.4|^6.0", - "symfony/finder": "^5.4|^6.0", - "symfony/http-client-contracts": "^1.1|^2|^3", - "symfony/process": "^5.4|^6.0", - "symfony/routing": "^5.4|^6.0", - "symfony/stopwatch": "^5.4|^6.0", - "symfony/translation": "^5.4|^6.0", - "symfony/translation-contracts": "^1.1|^2|^3", + "symfony/browser-kit": "^5.4|^6.0|^7.0", + "symfony/clock": "^6.2|^7.0", + "symfony/config": "^6.1|^7.0", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/css-selector": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/dom-crawler": "^5.4|^6.0|^7.0", + "symfony/expression-language": "^5.4|^6.0|^7.0", + "symfony/finder": "^5.4|^6.0|^7.0", + "symfony/http-client-contracts": "^2.5|^3", + "symfony/process": "^5.4|^6.0|^7.0", + "symfony/property-access": "^5.4.5|^6.0.5|^7.0", + "symfony/routing": "^5.4|^6.0|^7.0", + "symfony/serializer": "^6.3|^7.0", + "symfony/stopwatch": "^5.4|^6.0|^7.0", + "symfony/translation": "^5.4|^6.0|^7.0", + "symfony/translation-contracts": "^2.5|^3", + "symfony/uid": "^5.4|^6.0|^7.0", + "symfony/validator": "^6.4|^7.0", + "symfony/var-exporter": "^6.2|^7.0", "twig/twig": "^2.13|^3.0.4" }, - "suggest": { - "symfony/browser-kit": "", - "symfony/config": "", - "symfony/console": "", - "symfony/dependency-injection": "" - }, "type": "library", "autoload": { "psr-4": { @@ -9167,7 +8998,7 @@ "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-kernel/tree/v6.0.6" + "source": "https://github.com/symfony/http-kernel/tree/v6.4.3" }, "funding": [ { @@ -9183,37 +9014,43 @@ "type": "tidelift" } ], - "time": "2022-03-05T21:19:20+00:00" + "time": "2024-01-31T07:21:29+00:00" }, { "name": "symfony/mailer", - "version": "v6.0.5", + "version": "v6.4.3", "source": { "type": "git", "url": "https://github.com/symfony/mailer.git", - "reference": "0f4772db6521a1beb44529aa2c0c1e56f671be8f" + "reference": "74412c62f88a85a41b61f0b71ab0afcaad6f03ee" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mailer/zipball/0f4772db6521a1beb44529aa2c0c1e56f671be8f", - "reference": "0f4772db6521a1beb44529aa2c0c1e56f671be8f", + "url": "https://api.github.com/repos/symfony/mailer/zipball/74412c62f88a85a41b61f0b71ab0afcaad6f03ee", + "reference": "74412c62f88a85a41b61f0b71ab0afcaad6f03ee", "shasum": "" }, "require": { - "egulias/email-validator": "^2.1.10|^3", - "php": ">=8.0.2", + "egulias/email-validator": "^2.1.10|^3|^4", + "php": ">=8.1", "psr/event-dispatcher": "^1", "psr/log": "^1|^2|^3", - "symfony/event-dispatcher": "^5.4|^6.0", - "symfony/mime": "^5.4|^6.0", - "symfony/service-contracts": "^1.1|^2|^3" + "symfony/event-dispatcher": "^5.4|^6.0|^7.0", + "symfony/mime": "^6.2|^7.0", + "symfony/service-contracts": "^2.5|^3" }, "conflict": { - "symfony/http-kernel": "<5.4" + "symfony/http-client-contracts": "<2.5", + "symfony/http-kernel": "<5.4", + "symfony/messenger": "<6.2", + "symfony/mime": "<6.2", + "symfony/twig-bridge": "<6.2.1" }, "require-dev": { - "symfony/http-client-contracts": "^1.1|^2|^3", - "symfony/messenger": "^5.4|^6.0" + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/http-client": "^5.4|^6.0|^7.0", + "symfony/messenger": "^6.2|^7.0", + "symfony/twig-bridge": "^6.2|^7.0" }, "type": "library", "autoload": { @@ -9241,7 +9078,7 @@ "description": "Helps sending emails", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/mailer/tree/v6.0.5" + "source": "https://github.com/symfony/mailer/tree/v6.4.3" }, "funding": [ { @@ -9257,28 +9094,32 @@ "type": "tidelift" } ], - "time": "2022-02-25T10:48:52+00:00" + "time": "2024-01-29T15:01:07+00:00" }, { "name": "symfony/mailgun-mailer", - "version": "v6.0.3", + "version": "v6.4.3", "source": { "type": "git", "url": "https://github.com/symfony/mailgun-mailer.git", - "reference": "332442e27d4718a7764dbf06751e9ef1377b9ccd" + "reference": "96d23bb0e773ecfc3fb8d21cdabfbb3f4d6abf04" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mailgun-mailer/zipball/332442e27d4718a7764dbf06751e9ef1377b9ccd", - "reference": "332442e27d4718a7764dbf06751e9ef1377b9ccd", + "url": "https://api.github.com/repos/symfony/mailgun-mailer/zipball/96d23bb0e773ecfc3fb8d21cdabfbb3f4d6abf04", + "reference": "96d23bb0e773ecfc3fb8d21cdabfbb3f4d6abf04", "shasum": "" }, "require": { - "php": ">=8.0.2", - "symfony/mailer": "^5.4|^6.0" + "php": ">=8.1", + "symfony/mailer": "^5.4.21|^6.2.7|^7.0" + }, + "conflict": { + "symfony/http-foundation": "<6.2" }, "require-dev": { - "symfony/http-client": "^5.4|^6.0" + "symfony/http-client": "^6.3|^7.0", + "symfony/webhook": "^6.3|^7.0" }, "type": "symfony-mailer-bridge", "autoload": { @@ -9306,7 +9147,7 @@ "description": "Symfony Mailgun Mailer Bridge", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/mailgun-mailer/tree/v6.0.3" + "source": "https://github.com/symfony/mailgun-mailer/tree/v6.4.3" }, "funding": [ { @@ -9322,24 +9163,25 @@ "type": "tidelift" } ], - "time": "2022-01-02T09:55:41+00:00" + "time": "2024-01-29T15:01:07+00:00" }, { "name": "symfony/mime", - "version": "v6.0.3", + "version": "v6.4.3", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "2cd9601efd040e56f43360daa68f3c6b0534923a" + "reference": "5017e0a9398c77090b7694be46f20eb796262a34" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/2cd9601efd040e56f43360daa68f3c6b0534923a", - "reference": "2cd9601efd040e56f43360daa68f3c6b0534923a", + "url": "https://api.github.com/repos/symfony/mime/zipball/5017e0a9398c77090b7694be46f20eb796262a34", + "reference": "5017e0a9398c77090b7694be46f20eb796262a34", "shasum": "" }, "require": { - "php": ">=8.0.2", + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-intl-idn": "^1.10", "symfony/polyfill-mbstring": "^1.0" }, @@ -9347,15 +9189,17 @@ "egulias/email-validator": "~3.0.0", "phpdocumentor/reflection-docblock": "<3.2.2", "phpdocumentor/type-resolver": "<1.4.0", - "symfony/mailer": "<5.4" + "symfony/mailer": "<5.4", + "symfony/serializer": "<6.3.2" }, "require-dev": { - "egulias/email-validator": "^2.1.10|^3.1", + "egulias/email-validator": "^2.1.10|^3.1|^4", + "league/html-to-markdown": "^5.0", "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", - "symfony/dependency-injection": "^5.4|^6.0", - "symfony/property-access": "^5.4|^6.0", - "symfony/property-info": "^5.4|^6.0", - "symfony/serializer": "^5.4|^6.0" + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/property-access": "^5.4|^6.0|^7.0", + "symfony/property-info": "^5.4|^6.0|^7.0", + "symfony/serializer": "^6.3.2|^7.0" }, "type": "library", "autoload": { @@ -9387,7 +9231,7 @@ "mime-type" ], "support": { - "source": "https://github.com/symfony/mime/tree/v6.0.3" + "source": "https://github.com/symfony/mime/tree/v6.4.3" }, "funding": [ { @@ -9403,25 +9247,25 @@ "type": "tidelift" } ], - "time": "2022-01-02T09:55:41+00:00" + "time": "2024-01-30T08:32:12+00:00" }, { "name": "symfony/options-resolver", - "version": "v6.0.3", + "version": "v6.4.0", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", - "reference": "51f7006670febe4cbcbae177cbffe93ff833250d" + "reference": "22301f0e7fdeaacc14318928612dee79be99860e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/options-resolver/zipball/51f7006670febe4cbcbae177cbffe93ff833250d", - "reference": "51f7006670febe4cbcbae177cbffe93ff833250d", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/22301f0e7fdeaacc14318928612dee79be99860e", + "reference": "22301f0e7fdeaacc14318928612dee79be99860e", "shasum": "" }, "require": { - "php": ">=8.0.2", - "symfony/deprecation-contracts": "^2.1|^3" + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3" }, "type": "library", "autoload": { @@ -9454,7 +9298,7 @@ "options" ], "support": { - "source": "https://github.com/symfony/options-resolver/tree/v6.0.3" + "source": "https://github.com/symfony/options-resolver/tree/v6.4.0" }, "funding": [ { @@ -9470,20 +9314,20 @@ "type": "tidelift" } ], - "time": "2022-01-02T09:55:41+00:00" + "time": "2023-08-08T10:16:24+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.25.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "30885182c981ab175d4d034db0f6f469898070ab" + "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/30885182c981ab175d4d034db0f6f469898070ab", - "reference": "30885182c981ab175d4d034db0f6f469898070ab", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", + "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", "shasum": "" }, "require": { @@ -9498,7 +9342,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -9536,7 +9380,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.25.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0" }, "funding": [ { @@ -9552,20 +9396,20 @@ "type": "tidelift" } ], - "time": "2021-10-20T20:35:02+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/polyfill-iconv", - "version": "v1.25.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-iconv.git", - "reference": "f1aed619e28cb077fc83fac8c4c0383578356e40" + "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/f1aed619e28cb077fc83fac8c4c0383578356e40", - "reference": "f1aed619e28cb077fc83fac8c4c0383578356e40", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6de50471469b8c9afc38164452ab2b6170ee71c1", + "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1", "shasum": "" }, "require": { @@ -9580,7 +9424,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -9619,7 +9463,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-iconv/tree/v1.25.0" + "source": "https://github.com/symfony/polyfill-iconv/tree/v1.28.0" }, "funding": [ { @@ -9635,20 +9479,20 @@ "type": "tidelift" } ], - "time": "2022-01-04T09:04:05+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.25.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "81b86b50cf841a64252b439e738e97f4a34e2783" + "reference": "875e90aeea2777b6f135677f618529449334a612" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/81b86b50cf841a64252b439e738e97f4a34e2783", - "reference": "81b86b50cf841a64252b439e738e97f4a34e2783", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612", + "reference": "875e90aeea2777b6f135677f618529449334a612", "shasum": "" }, "require": { @@ -9660,7 +9504,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -9700,7 +9544,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.25.0" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0" }, "funding": [ { @@ -9716,20 +9560,20 @@ "type": "tidelift" } ], - "time": "2021-11-23T21:10:46+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.25.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "749045c69efb97c70d25d7463abba812e91f3a44" + "reference": "ecaafce9f77234a6a449d29e49267ba10499116d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/749045c69efb97c70d25d7463abba812e91f3a44", - "reference": "749045c69efb97c70d25d7463abba812e91f3a44", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d", + "reference": "ecaafce9f77234a6a449d29e49267ba10499116d", "shasum": "" }, "require": { @@ -9743,7 +9587,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -9787,7 +9631,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.25.0" + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0" }, "funding": [ { @@ -9803,20 +9647,20 @@ "type": "tidelift" } ], - "time": "2021-09-14T14:02:44+00:00" + "time": "2023-01-26T09:30:37+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.25.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8" + "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8", - "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", + "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", "shasum": "" }, "require": { @@ -9828,7 +9672,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -9871,7 +9715,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.25.0" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0" }, "funding": [ { @@ -9887,20 +9731,20 @@ "type": "tidelift" } ], - "time": "2021-02-19T12:13:01+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.25.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825" + "reference": "42292d99c55abe617799667f454222c54c60e229" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/0abb51d2f102e00a4eefcf46ba7fec406d245825", - "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229", + "reference": "42292d99c55abe617799667f454222c54c60e229", "shasum": "" }, "require": { @@ -9915,7 +9759,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -9954,7 +9798,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.25.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0" }, "funding": [ { @@ -9970,20 +9814,20 @@ "type": "tidelift" } ], - "time": "2021-11-30T18:21:41+00:00" + "time": "2023-07-28T09:04:16+00:00" }, { "name": "symfony/polyfill-php72", - "version": "v1.25.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "9a142215a36a3888e30d0a9eeea9766764e96976" + "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976", - "reference": "9a142215a36a3888e30d0a9eeea9766764e96976", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179", + "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179", "shasum": "" }, "require": { @@ -9992,7 +9836,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -10030,7 +9874,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php72/tree/v1.25.0" + "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0" }, "funding": [ { @@ -10046,20 +9890,20 @@ "type": "tidelift" } ], - "time": "2021-05-27T09:17:38+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/polyfill-php80", - "version": "v1.25.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c" + "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/4407588e0d3f1f52efb65fbe92babe41f37fe50c", - "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5", + "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5", "shasum": "" }, "require": { @@ -10068,7 +9912,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -10113,7 +9957,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.25.0" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0" }, "funding": [ { @@ -10129,29 +9973,30 @@ "type": "tidelift" } ], - "time": "2022-03-04T08:16:47+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { - "name": "symfony/polyfill-php81", - "version": "v1.25.0", + "name": "symfony/polyfill-php83", + "version": "v1.28.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php81.git", - "reference": "5de4ba2d41b15f9bd0e19b2ab9674135813ec98f" + "url": "https://github.com/symfony/polyfill-php83.git", + "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/5de4ba2d41b15f9bd0e19b2ab9674135813ec98f", - "reference": "5de4ba2d41b15f9bd0e19b2ab9674135813ec98f", + "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11", + "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.1", + "symfony/polyfill-php80": "^1.14" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -10163,7 +10008,7 @@ "bootstrap.php" ], "psr-4": { - "Symfony\\Polyfill\\Php81\\": "" + "Symfony\\Polyfill\\Php83\\": "" }, "classmap": [ "Resources/stubs" @@ -10183,7 +10028,7 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions", + "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", @@ -10192,7 +10037,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php81/tree/v1.25.0" + "source": "https://github.com/symfony/polyfill-php83/tree/v1.28.0" }, "funding": [ { @@ -10208,20 +10053,20 @@ "type": "tidelift" } ], - "time": "2021-09-13T13:58:11+00:00" + "time": "2023-08-16T06:22:46+00:00" }, { "name": "symfony/polyfill-uuid", - "version": "v1.25.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-uuid.git", - "reference": "7529922412d23ac44413d0f308861d50cf68d3ee" + "reference": "9c44518a5aff8da565c8a55dbe85d2769e6f630e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/7529922412d23ac44413d0f308861d50cf68d3ee", - "reference": "7529922412d23ac44413d0f308861d50cf68d3ee", + "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/9c44518a5aff8da565c8a55dbe85d2769e6f630e", + "reference": "9c44518a5aff8da565c8a55dbe85d2769e6f630e", "shasum": "" }, "require": { @@ -10236,7 +10081,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -10274,7 +10119,7 @@ "uuid" ], "support": { - "source": "https://github.com/symfony/polyfill-uuid/tree/v1.25.0" + "source": "https://github.com/symfony/polyfill-uuid/tree/v1.28.0" }, "funding": [ { @@ -10290,24 +10135,24 @@ "type": "tidelift" } ], - "time": "2021-10-20T20:35:02+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/process", - "version": "v6.0.5", + "version": "v6.4.3", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "1ccceccc6497e96f4f646218f04b97ae7d9fa7a1" + "reference": "31642b0818bfcff85930344ef93193f8c607e0a3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/1ccceccc6497e96f4f646218f04b97ae7d9fa7a1", - "reference": "1ccceccc6497e96f4f646218f04b97ae7d9fa7a1", + "url": "https://api.github.com/repos/symfony/process/zipball/31642b0818bfcff85930344ef93193f8c607e0a3", + "reference": "31642b0818bfcff85930344ef93193f8c607e0a3", "shasum": "" }, "require": { - "php": ">=8.0.2" + "php": ">=8.1" }, "type": "library", "autoload": { @@ -10335,7 +10180,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v6.0.5" + "source": "https://github.com/symfony/process/tree/v6.4.3" }, "funding": [ { @@ -10351,46 +10196,42 @@ "type": "tidelift" } ], - "time": "2022-01-30T18:19:12+00:00" + "time": "2024-01-23T14:51:35+00:00" }, { "name": "symfony/psr-http-message-bridge", - "version": "v2.1.2", + "version": "v6.4.3", "source": { "type": "git", "url": "https://github.com/symfony/psr-http-message-bridge.git", - "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34" + "reference": "49cfb0223ec64379f7154214dcc1f7c46f3c7a47" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34", - "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34", + "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/49cfb0223ec64379f7154214dcc1f7c46f3c7a47", + "reference": "49cfb0223ec64379f7154214dcc1f7c46f3c7a47", "shasum": "" }, "require": { - "php": ">=7.1", - "psr/http-message": "^1.0", - "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0" + "php": ">=8.1", + "psr/http-message": "^1.0|^2.0", + "symfony/http-foundation": "^5.4|^6.0|^7.0" + }, + "conflict": { + "php-http/discovery": "<1.15", + "symfony/http-kernel": "<6.2" }, "require-dev": { "nyholm/psr7": "^1.1", - "psr/log": "^1.1 || ^2 || ^3", - "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0", - "symfony/config": "^4.4 || ^5.0 || ^6.0", - "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0", - "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0", - "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0", - "symfony/phpunit-bridge": "^5.4@dev || ^6.0" - }, - "suggest": { - "nyholm/psr7": "For a super lightweight PSR-7/17 implementation" + "php-http/discovery": "^1.15", + "psr/log": "^1.1.4|^2|^3", + "symfony/browser-kit": "^5.4|^6.0|^7.0", + "symfony/config": "^5.4|^6.0|^7.0", + "symfony/event-dispatcher": "^5.4|^6.0|^7.0", + "symfony/framework-bundle": "^6.2|^7.0", + "symfony/http-kernel": "^6.2|^7.0" }, "type": "symfony-bridge", - "extra": { - "branch-alias": { - "dev-main": "2.1-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Bridge\\PsrHttpMessage\\": "" @@ -10410,11 +10251,11 @@ }, { "name": "Symfony Community", - "homepage": "http://symfony.com/contributors" + "homepage": "https://symfony.com/contributors" } ], "description": "PSR HTTP message bridge", - "homepage": "http://symfony.com", + "homepage": "https://symfony.com", "keywords": [ "http", "http-message", @@ -10422,8 +10263,7 @@ "psr-7" ], "support": { - "issues": "https://github.com/symfony/psr-http-message-bridge/issues", - "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.2" + "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.3" }, "funding": [ { @@ -10439,45 +10279,40 @@ "type": "tidelift" } ], - "time": "2021-11-05T13:13:39+00:00" + "time": "2024-01-23T14:51:35+00:00" }, { "name": "symfony/routing", - "version": "v6.0.5", + "version": "v6.4.3", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "a738b152426ac7fcb94bdab8188264652238bef1" + "reference": "3b2957ad54902f0f544df83e3d58b38d7e8e5842" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/a738b152426ac7fcb94bdab8188264652238bef1", - "reference": "a738b152426ac7fcb94bdab8188264652238bef1", + "url": "https://api.github.com/repos/symfony/routing/zipball/3b2957ad54902f0f544df83e3d58b38d7e8e5842", + "reference": "3b2957ad54902f0f544df83e3d58b38d7e8e5842", "shasum": "" }, "require": { - "php": ">=8.0.2" + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3" }, "conflict": { "doctrine/annotations": "<1.12", - "symfony/config": "<5.4", + "symfony/config": "<6.2", "symfony/dependency-injection": "<5.4", "symfony/yaml": "<5.4" }, "require-dev": { - "doctrine/annotations": "^1.12", + "doctrine/annotations": "^1.12|^2", "psr/log": "^1|^2|^3", - "symfony/config": "^5.4|^6.0", - "symfony/dependency-injection": "^5.4|^6.0", - "symfony/expression-language": "^5.4|^6.0", - "symfony/http-foundation": "^5.4|^6.0", - "symfony/yaml": "^5.4|^6.0" - }, - "suggest": { - "symfony/config": "For using the all-in-one router or any loader", - "symfony/expression-language": "For using expression matching", - "symfony/http-foundation": "For using a Symfony Request object", - "symfony/yaml": "For using the YAML loader" + "symfony/config": "^6.2|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/expression-language": "^5.4|^6.0|^7.0", + "symfony/http-foundation": "^5.4|^6.0|^7.0", + "symfony/yaml": "^5.4|^6.0|^7.0" }, "type": "library", "autoload": { @@ -10511,7 +10346,7 @@ "url" ], "support": { - "source": "https://github.com/symfony/routing/tree/v6.0.5" + "source": "https://github.com/symfony/routing/tree/v6.4.3" }, "funding": [ { @@ -10527,36 +10362,33 @@ "type": "tidelift" } ], - "time": "2022-01-31T19:46:53+00:00" + "time": "2024-01-30T13:55:02+00:00" }, { "name": "symfony/service-contracts", - "version": "v3.0.0", + "version": "v3.4.1", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "36715ebf9fb9db73db0cb24263c79077c6fe8603" + "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/36715ebf9fb9db73db0cb24263c79077c6fe8603", - "reference": "36715ebf9fb9db73db0cb24263c79077c6fe8603", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/fe07cbc8d837f60caf7018068e350cc5163681a0", + "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0", "shasum": "" }, "require": { - "php": ">=8.0.2", - "psr/container": "^2.0" + "php": ">=8.1", + "psr/container": "^1.1|^2.0" }, "conflict": { "ext-psr": "<1.1|>=2" }, - "suggest": { - "symfony/service-implementation": "" - }, "type": "library", "extra": { "branch-alias": { - "dev-main": "3.0-dev" + "dev-main": "3.4-dev" }, "thanks": { "name": "symfony/contracts", @@ -10566,7 +10398,10 @@ "autoload": { "psr-4": { "Symfony\\Contracts\\Service\\": "" - } + }, + "exclude-from-classmap": [ + "/Test/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -10593,7 +10428,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/v3.0.0" + "source": "https://github.com/symfony/service-contracts/tree/v3.4.1" }, "funding": [ { @@ -10609,37 +10444,38 @@ "type": "tidelift" } ], - "time": "2021-11-04T17:53:12+00:00" + "time": "2023-12-26T14:02:43+00:00" }, { "name": "symfony/string", - "version": "v6.0.3", + "version": "v6.4.3", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "522144f0c4c004c80d56fa47e40e17028e2eefc2" + "reference": "7a14736fb179876575464e4658fce0c304e8c15b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/522144f0c4c004c80d56fa47e40e17028e2eefc2", - "reference": "522144f0c4c004c80d56fa47e40e17028e2eefc2", + "url": "https://api.github.com/repos/symfony/string/zipball/7a14736fb179876575464e4658fce0c304e8c15b", + "reference": "7a14736fb179876575464e4658fce0c304e8c15b", "shasum": "" }, "require": { - "php": ">=8.0.2", + "php": ">=8.1", "symfony/polyfill-ctype": "~1.8", "symfony/polyfill-intl-grapheme": "~1.0", "symfony/polyfill-intl-normalizer": "~1.0", "symfony/polyfill-mbstring": "~1.0" }, "conflict": { - "symfony/translation-contracts": "<2.0" + "symfony/translation-contracts": "<2.5" }, "require-dev": { - "symfony/error-handler": "^5.4|^6.0", - "symfony/http-client": "^5.4|^6.0", - "symfony/translation-contracts": "^2.0|^3.0", - "symfony/var-exporter": "^5.4|^6.0" + "symfony/error-handler": "^5.4|^6.0|^7.0", + "symfony/http-client": "^5.4|^6.0|^7.0", + "symfony/intl": "^6.2|^7.0", + "symfony/translation-contracts": "^2.5|^3.0", + "symfony/var-exporter": "^5.4|^6.0|^7.0" }, "type": "library", "autoload": { @@ -10678,7 +10514,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v6.0.3" + "source": "https://github.com/symfony/string/tree/v6.4.3" }, "funding": [ { @@ -10694,32 +10530,35 @@ "type": "tidelift" } ], - "time": "2022-01-02T09:55:41+00:00" + "time": "2024-01-25T09:26:29+00:00" }, { "name": "symfony/translation", - "version": "v6.0.6", + "version": "v6.4.3", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "f6639cb9b5e0c57fe31e3263b900a77eedb0c908" + "reference": "637c51191b6b184184bbf98937702bcf554f7d04" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/f6639cb9b5e0c57fe31e3263b900a77eedb0c908", - "reference": "f6639cb9b5e0c57fe31e3263b900a77eedb0c908", + "url": "https://api.github.com/repos/symfony/translation/zipball/637c51191b6b184184bbf98937702bcf554f7d04", + "reference": "637c51191b6b184184bbf98937702bcf554f7d04", "shasum": "" }, "require": { - "php": ">=8.0.2", + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-mbstring": "~1.0", - "symfony/translation-contracts": "^2.3|^3.0" + "symfony/translation-contracts": "^2.5|^3.0" }, "conflict": { "symfony/config": "<5.4", "symfony/console": "<5.4", "symfony/dependency-injection": "<5.4", + "symfony/http-client-contracts": "<2.5", "symfony/http-kernel": "<5.4", + "symfony/service-contracts": "<2.5", "symfony/twig-bundle": "<5.4", "symfony/yaml": "<5.4" }, @@ -10727,22 +10566,19 @@ "symfony/translation-implementation": "2.3|3.0" }, "require-dev": { + "nikic/php-parser": "^4.18|^5.0", "psr/log": "^1|^2|^3", - "symfony/config": "^5.4|^6.0", - "symfony/console": "^5.4|^6.0", - "symfony/dependency-injection": "^5.4|^6.0", - "symfony/finder": "^5.4|^6.0", - "symfony/http-client-contracts": "^1.1|^2.0|^3.0", - "symfony/http-kernel": "^5.4|^6.0", - "symfony/intl": "^5.4|^6.0", + "symfony/config": "^5.4|^6.0|^7.0", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/finder": "^5.4|^6.0|^7.0", + "symfony/http-client-contracts": "^2.5|^3.0", + "symfony/http-kernel": "^5.4|^6.0|^7.0", + "symfony/intl": "^5.4|^6.0|^7.0", "symfony/polyfill-intl-icu": "^1.21", - "symfony/service-contracts": "^1.1.2|^2|^3", - "symfony/yaml": "^5.4|^6.0" - }, - "suggest": { - "psr/log-implementation": "To use logging capability in translator", - "symfony/config": "", - "symfony/yaml": "" + "symfony/routing": "^5.4|^6.0|^7.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/yaml": "^5.4|^6.0|^7.0" }, "type": "library", "autoload": { @@ -10773,7 +10609,7 @@ "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/v6.0.6" + "source": "https://github.com/symfony/translation/tree/v6.4.3" }, "funding": [ { @@ -10789,32 +10625,29 @@ "type": "tidelift" } ], - "time": "2022-03-02T12:58:14+00:00" + "time": "2024-01-29T13:11:52+00:00" }, { "name": "symfony/translation-contracts", - "version": "v3.0.0", + "version": "v3.4.1", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "1b6ea5a7442af5a12dba3dbd6d71034b5b234e77" + "reference": "06450585bf65e978026bda220cdebca3f867fde7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/1b6ea5a7442af5a12dba3dbd6d71034b5b234e77", - "reference": "1b6ea5a7442af5a12dba3dbd6d71034b5b234e77", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/06450585bf65e978026bda220cdebca3f867fde7", + "reference": "06450585bf65e978026bda220cdebca3f867fde7", "shasum": "" }, "require": { - "php": ">=8.0.2" - }, - "suggest": { - "symfony/translation-implementation": "" + "php": ">=8.1" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "3.0-dev" + "dev-main": "3.4-dev" }, "thanks": { "name": "symfony/contracts", @@ -10824,7 +10657,10 @@ "autoload": { "psr-4": { "Symfony\\Contracts\\Translation\\": "" - } + }, + "exclude-from-classmap": [ + "/Test/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -10851,7 +10687,81 @@ "standards" ], "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v3.0.0" + "source": "https://github.com/symfony/translation-contracts/tree/v3.4.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-12-26T14:02:43+00:00" + }, + { + "name": "symfony/uid", + "version": "v6.4.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/uid.git", + "reference": "1d31267211cc3a2fff32bcfc7c1818dac41b6fc0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/uid/zipball/1d31267211cc3a2fff32bcfc7c1818dac41b6fc0", + "reference": "1d31267211cc3a2fff32bcfc7c1818dac41b6fc0", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/polyfill-uuid": "^1.15" + }, + "require-dev": { + "symfony/console": "^5.4|^6.0|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Uid\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Grégoire Pineau", + "email": "lyrixx@lyrixx.info" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an object-oriented API to generate and represent UIDs", + "homepage": "https://symfony.com", + "keywords": [ + "UID", + "ulid", + "uuid" + ], + "support": { + "source": "https://github.com/symfony/uid/tree/v6.4.3" }, "funding": [ { @@ -10867,42 +10777,39 @@ "type": "tidelift" } ], - "time": "2021-09-07T12:43:40+00:00" + "time": "2024-01-23T14:51:35+00:00" }, { "name": "symfony/var-dumper", - "version": "v6.0.6", + "version": "v6.4.3", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "38358405ae948963c50a3aae3dfea598223ba15e" + "reference": "0435a08f69125535336177c29d56af3abc1f69da" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/38358405ae948963c50a3aae3dfea598223ba15e", - "reference": "38358405ae948963c50a3aae3dfea598223ba15e", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/0435a08f69125535336177c29d56af3abc1f69da", + "reference": "0435a08f69125535336177c29d56af3abc1f69da", "shasum": "" }, "require": { - "php": ">=8.0.2", + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-mbstring": "~1.0" }, "conflict": { - "phpunit/phpunit": "<5.4.3", "symfony/console": "<5.4" }, "require-dev": { "ext-iconv": "*", - "symfony/console": "^5.4|^6.0", - "symfony/process": "^5.4|^6.0", - "symfony/uid": "^5.4|^6.0", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/error-handler": "^6.3|^7.0", + "symfony/http-kernel": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "symfony/uid": "^5.4|^6.0|^7.0", "twig/twig": "^2.13|^3.0.4" }, - "suggest": { - "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).", - "ext-intl": "To show region name in time zone dump", - "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script" - }, "bin": [ "Resources/bin/var-dump-server" ], @@ -10939,7 +10846,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v6.0.6" + "source": "https://github.com/symfony/var-dumper/tree/v6.4.3" }, "funding": [ { @@ -10955,27 +10862,27 @@ "type": "tidelift" } ], - "time": "2022-03-02T12:58:14+00:00" + "time": "2024-01-23T14:53:30+00:00" }, { "name": "tijsverkoyen/css-to-inline-styles", - "version": "2.2.4", + "version": "v2.2.7", "source": { "type": "git", "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", - "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c" + "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/da444caae6aca7a19c0c140f68c6182e337d5b1c", - "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c", + "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb", + "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb", "shasum": "" }, "require": { "ext-dom": "*", "ext-libxml": "*", "php": "^5.5 || ^7.0 || ^8.0", - "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0" + "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0" }, "require-dev": { "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10" @@ -11006,45 +10913,49 @@ "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", "support": { "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues", - "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.4" + "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7" }, - "time": "2021-12-08T09:12:39+00:00" + "time": "2023-12-08T13:03:43+00:00" }, { "name": "vlucas/phpdotenv", - "version": "v5.4.1", + "version": "v5.6.0", "source": { "type": "git", "url": "https://github.com/vlucas/phpdotenv.git", - "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f" + "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/264dce589e7ce37a7ba99cb901eed8249fbec92f", - "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4", + "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4", "shasum": "" }, "require": { "ext-pcre": "*", - "graham-campbell/result-type": "^1.0.2", - "php": "^7.1.3 || ^8.0", - "phpoption/phpoption": "^1.8", - "symfony/polyfill-ctype": "^1.23", - "symfony/polyfill-mbstring": "^1.23.1", - "symfony/polyfill-php80": "^1.23.1" + "graham-campbell/result-type": "^1.1.2", + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.2", + "symfony/polyfill-ctype": "^1.24", + "symfony/polyfill-mbstring": "^1.24", + "symfony/polyfill-php80": "^1.24" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.4.1", + "bamarni/composer-bin-plugin": "^1.8.2", "ext-filter": "*", - "phpunit/phpunit": "^7.5.20 || ^8.5.21 || ^9.5.10" + "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" }, "suggest": { "ext-filter": "Required to use the boolean validator." }, "type": "library", "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": true + }, "branch-alias": { - "dev-master": "5.4-dev" + "dev-master": "5.6-dev" } }, "autoload": { @@ -11076,7 +10987,7 @@ ], "support": { "issues": "https://github.com/vlucas/phpdotenv/issues", - "source": "https://github.com/vlucas/phpdotenv/tree/v5.4.1" + "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0" }, "funding": [ { @@ -11088,20 +10999,20 @@ "type": "tidelift" } ], - "time": "2021-12-12T23:22:04+00:00" + "time": "2023-11-12T22:43:29+00:00" }, { "name": "voku/anti-xss", - "version": "4.1.39", + "version": "4.1.42", "source": { "type": "git", "url": "https://github.com/voku/anti-xss.git", - "reference": "64a59ba4744e6722866ff3440d93561da9e85cd0" + "reference": "bca1f8607e55a3c5077483615cd93bd8f11bd675" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/voku/anti-xss/zipball/64a59ba4744e6722866ff3440d93561da9e85cd0", - "reference": "64a59ba4744e6722866ff3440d93561da9e85cd0", + "url": "https://api.github.com/repos/voku/anti-xss/zipball/bca1f8607e55a3c5077483615cd93bd8f11bd675", + "reference": "bca1f8607e55a3c5077483615cd93bd8f11bd675", "shasum": "" }, "require": { @@ -11147,7 +11058,7 @@ ], "support": { "issues": "https://github.com/voku/anti-xss/issues", - "source": "https://github.com/voku/anti-xss/tree/4.1.39" + "source": "https://github.com/voku/anti-xss/tree/4.1.42" }, "funding": [ { @@ -11171,7 +11082,7 @@ "type": "tidelift" } ], - "time": "2022-03-08T17:03:58+00:00" + "time": "2023-07-03T14:40:46+00:00" }, { "name": "voku/portable-ascii", @@ -11249,16 +11160,16 @@ }, { "name": "voku/portable-utf8", - "version": "6.0.4", + "version": "6.0.13", "source": { "type": "git", "url": "https://github.com/voku/portable-utf8.git", - "reference": "f6c78e492520115bb2d947c3a0d90a2c6b7a60a8" + "reference": "b8ce36bf26593e5c2e81b1850ef0ffb299d2043f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/voku/portable-utf8/zipball/f6c78e492520115bb2d947c3a0d90a2c6b7a60a8", - "reference": "f6c78e492520115bb2d947c3a0d90a2c6b7a60a8", + "url": "https://api.github.com/repos/voku/portable-utf8/zipball/b8ce36bf26593e5c2e81b1850ef0ffb299d2043f", + "reference": "b8ce36bf26593e5c2e81b1850ef0ffb299d2043f", "shasum": "" }, "require": { @@ -11271,7 +11182,11 @@ "voku/portable-ascii": "~2.0.0" }, "require-dev": { - "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0" + "phpstan/phpstan": "1.9.*@dev", + "phpstan/phpstan-strict-rules": "1.4.*@dev", + "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0", + "thecodingmachine/phpstan-strict-rules": "1.0.*@dev", + "voku/phpstan-rules": "3.1.*@dev" }, "suggest": { "ext-ctype": "Use Ctype for e.g. hexadecimal digit detection", @@ -11320,7 +11235,7 @@ ], "support": { "issues": "https://github.com/voku/portable-utf8/issues", - "source": "https://github.com/voku/portable-utf8/tree/6.0.4" + "source": "https://github.com/voku/portable-utf8/tree/6.0.13" }, "funding": [ { @@ -11344,25 +11259,25 @@ "type": "tidelift" } ], - "time": "2022-03-08T17:04:59+00:00" + "time": "2023-03-08T08:35:38+00:00" }, { "name": "webmozart/assert", - "version": "1.10.0", + "version": "1.11.0", "source": { "type": "git", "url": "https://github.com/webmozarts/assert.git", - "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25" + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25", - "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", "shasum": "" }, "require": { - "php": "^7.2 || ^8.0", - "symfony/polyfill-ctype": "^1.8" + "ext-ctype": "*", + "php": "^7.2 || ^8.0" }, "conflict": { "phpstan/phpstan": "<0.12.20", @@ -11400,45 +11315,44 @@ ], "support": { "issues": "https://github.com/webmozarts/assert/issues", - "source": "https://github.com/webmozarts/assert/tree/1.10.0" + "source": "https://github.com/webmozarts/assert/tree/1.11.0" }, - "time": "2021-03-09T10:59:23+00:00" + "time": "2022-06-03T18:03:27+00:00" } ], "packages-dev": [ { "name": "barryvdh/laravel-debugbar", - "version": "v3.6.7", + "version": "v3.9.2", "source": { "type": "git", "url": "https://github.com/barryvdh/laravel-debugbar.git", - "reference": "b96f9820aaf1ff9afe945207883149e1c7afb298" + "reference": "bfd0131c146973cab164e50f5cdd8a67cc60cab1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/b96f9820aaf1ff9afe945207883149e1c7afb298", - "reference": "b96f9820aaf1ff9afe945207883149e1c7afb298", + "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/bfd0131c146973cab164e50f5cdd8a67cc60cab1", + "reference": "bfd0131c146973cab164e50f5cdd8a67cc60cab1", "shasum": "" }, "require": { - "illuminate/routing": "^6|^7|^8|^9", - "illuminate/session": "^6|^7|^8|^9", - "illuminate/support": "^6|^7|^8|^9", - "maximebf/debugbar": "^1.17.2", - "php": ">=7.2", - "symfony/debug": "^4.3|^5|^6", - "symfony/finder": "^4.3|^5|^6" + "illuminate/routing": "^9|^10", + "illuminate/session": "^9|^10", + "illuminate/support": "^9|^10", + "maximebf/debugbar": "^1.18.2", + "php": "^8.0", + "symfony/finder": "^6" }, "require-dev": { "mockery/mockery": "^1.3.3", - "orchestra/testbench-dusk": "^4|^5|^6|^7", - "phpunit/phpunit": "^8.5|^9.0", + "orchestra/testbench-dusk": "^5|^6|^7|^8", + "phpunit/phpunit": "^8.5.30|^9.0", "squizlabs/php_codesniffer": "^3.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.6-dev" + "dev-master": "3.8-dev" }, "laravel": { "providers": [ @@ -11477,7 +11391,7 @@ ], "support": { "issues": "https://github.com/barryvdh/laravel-debugbar/issues", - "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.6.7" + "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.9.2" }, "funding": [ { @@ -11489,20 +11403,20 @@ "type": "github" } ], - "time": "2022-02-09T07:52:32+00:00" + "time": "2023-08-25T18:43:57+00:00" }, { "name": "brianium/paratest", - "version": "v6.4.3", + "version": "v6.11.0", "source": { "type": "git", "url": "https://github.com/paratestphp/paratest.git", - "reference": "5123a31dbf0b5deeaec17b00c0c5f31732c14483" + "reference": "8083a421cee7dad847ee7c464529043ba30de380" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paratestphp/paratest/zipball/5123a31dbf0b5deeaec17b00c0c5f31732c14483", - "reference": "5123a31dbf0b5deeaec17b00c0c5f31732c14483", + "url": "https://api.github.com/repos/paratestphp/paratest/zipball/8083a421cee7dad847ee7c464529043ba30de380", + "reference": "8083a421cee7dad847ee7c464529043ba30de380", "shasum": "" }, "require": { @@ -11510,26 +11424,30 @@ "ext-pcre": "*", "ext-reflection": "*", "ext-simplexml": "*", + "fidry/cpu-core-counter": "^0.4.1 || ^0.5.1 || ^1.0.0", + "jean85/pretty-package-versions": "^2.0.5", "php": "^7.3 || ^8.0", - "phpunit/php-code-coverage": "^9.2.11", + "phpunit/php-code-coverage": "^9.2.25", "phpunit/php-file-iterator": "^3.0.6", "phpunit/php-timer": "^5.0.3", - "phpunit/phpunit": "^9.5.14", - "sebastian/environment": "^5.1.3", - "symfony/console": "^5.4.0 || ^6.0.0", - "symfony/process": "^5.4.0 || ^6.0.0" + "phpunit/phpunit": "^9.6.4", + "sebastian/environment": "^5.1.5", + "symfony/console": "^5.4.28 || ^6.3.4 || ^7.0.0", + "symfony/process": "^5.4.28 || ^6.3.4 || ^7.0.0" }, "require-dev": { - "doctrine/coding-standard": "^9.0.0", + "doctrine/coding-standard": "^12.0.0", + "ext-pcov": "*", "ext-posix": "*", - "infection/infection": "^0.26.5", - "malukenho/mcbumpface": "^1.1.5", - "squizlabs/php_codesniffer": "^3.6.2", - "symfony/filesystem": "^v5.4.0 || ^6.0.0", - "vimeo/psalm": "^4.20.0" + "infection/infection": "^0.27.6", + "squizlabs/php_codesniffer": "^3.7.2", + "symfony/filesystem": "^5.4.25 || ^6.3.1 || ^7.0.0", + "vimeo/psalm": "^5.7.7" }, "bin": [ - "bin/paratest" + "bin/paratest", + "bin/paratest.bat", + "bin/paratest_for_phpstorm" ], "type": "library", "autoload": { @@ -11565,7 +11483,7 @@ ], "support": { "issues": "https://github.com/paratestphp/paratest/issues", - "source": "https://github.com/paratestphp/paratest/tree/v6.4.3" + "source": "https://github.com/paratestphp/paratest/tree/v6.11.0" }, "funding": [ { @@ -11577,271 +11495,85 @@ "type": "paypal" } ], - "time": "2022-02-18T13:23:47+00:00" + "time": "2023-10-31T09:13:57+00:00" }, { - "name": "composer/ca-bundle", - "version": "1.3.1", + "name": "cmgmyr/phploc", + "version": "8.0.3", "source": { "type": "git", - "url": "https://github.com/composer/ca-bundle.git", - "reference": "4c679186f2aca4ab6a0f1b0b9cf9252decb44d0b" + "url": "https://github.com/cmgmyr/phploc.git", + "reference": "e61d4729df46c5920ab61973bfa3f70f81a70b5f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/4c679186f2aca4ab6a0f1b0b9cf9252decb44d0b", - "reference": "4c679186f2aca4ab6a0f1b0b9cf9252decb44d0b", + "url": "https://api.github.com/repos/cmgmyr/phploc/zipball/e61d4729df46c5920ab61973bfa3f70f81a70b5f", + "reference": "e61d4729df46c5920ab61973bfa3f70f81a70b5f", "shasum": "" }, "require": { - "ext-openssl": "*", - "ext-pcre": "*", - "php": "^5.3.2 || ^7.0 || ^8.0" - }, - "require-dev": { - "phpstan/phpstan": "^0.12.55", - "psr/log": "^1.0", - "symfony/phpunit-bridge": "^4.2 || ^5", - "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Composer\\CaBundle\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" - } - ], - "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.", - "keywords": [ - "cabundle", - "cacert", - "certificate", - "ssl", - "tls" - ], - "support": { - "irc": "irc://irc.freenode.org/composer", - "issues": "https://github.com/composer/ca-bundle/issues", - "source": "https://github.com/composer/ca-bundle/tree/1.3.1" - }, - "funding": [ - { - "url": "https://packagist.com", - "type": "custom" - }, - { - "url": "https://github.com/composer", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" - } - ], - "time": "2021-10-28T20:44:15+00:00" - }, - { - "name": "composer/composer", - "version": "dev-main", - "source": { - "type": "git", - "url": "https://github.com/composer/composer.git", - "reference": "ae23647f07932754dc9d7fd1d15657273301a009" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/composer/composer/zipball/ae23647f07932754dc9d7fd1d15657273301a009", - "reference": "ae23647f07932754dc9d7fd1d15657273301a009", - "shasum": "" - }, - "require": { - "composer/ca-bundle": "^1.0", - "composer/metadata-minifier": "^1.0", - "composer/pcre": "^2 || ^3", - "composer/semver": "^3.0", - "composer/spdx-licenses": "^1.2", - "composer/xdebug-handler": "^2.0.2 || ^3.0.3", - "justinrainbow/json-schema": "^5.2.11", - "php": "^7.2.5 || ^8.0", - "psr/log": "^1.0 || ^2.0 || ^3.0", - "react/promise": "^2.8", - "seld/jsonlint": "^1.4", - "seld/phar-utils": "^1.2", - "symfony/console": "^5.4.1 || ^6.0", - "symfony/filesystem": "^5.4 || ^6.0", - "symfony/finder": "^5.4 || ^6.0", - "symfony/polyfill-php73": "^1.24", - "symfony/polyfill-php80": "^1.24", - "symfony/process": "^5.4 || ^6.0" + "ext-dom": "*", + "ext-json": "*", + "php": "^7.4 || ^8.0", + "phpunit/php-file-iterator": "^3.0|^4.0", + "sebastian/cli-parser": "^1.0|^2.0" }, "require-dev": { - "phpstan/phpstan": "^1.4.1", - "phpstan/phpstan-deprecation-rules": "^1", - "phpstan/phpstan-phpunit": "^1.0", - "phpstan/phpstan-strict-rules": "^1", - "phpstan/phpstan-symfony": "^1.1", - "symfony/phpunit-bridge": "^6.0" - }, - "suggest": { - "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages", - "ext-zip": "Enabling the zip extension allows you to unzip archives", - "ext-zlib": "Allow gzip compression of HTTP requests" + "friendsofphp/php-cs-fixer": "^3.2", + "phpunit/phpunit": "^9.0|^10.0", + "vimeo/psalm": "^5.7" }, - "default-branch": true, "bin": [ - "bin/composer" - ], - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "2.3-dev" - } - }, - "autoload": { - "psr-4": { - "Composer\\": "src/Composer" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nils Adermann", - "email": "naderman@naderman.de", - "homepage": "https://www.naderman.de" - }, - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "https://seld.be" - } - ], - "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.", - "homepage": "https://getcomposer.org/", - "keywords": [ - "autoload", - "dependency", - "package" - ], - "support": { - "irc": "ircs://irc.libera.chat:6697/composer", - "issues": "https://github.com/composer/composer/issues", - "source": "https://github.com/composer/composer/tree/main" - }, - "funding": [ - { - "url": "https://packagist.com", - "type": "custom" - }, - { - "url": "https://github.com/composer", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" - } - ], - "time": "2022-03-09T19:45:19+00:00" - }, - { - "name": "composer/metadata-minifier", - "version": "1.0.0", - "source": { - "type": "git", - "url": "https://github.com/composer/metadata-minifier.git", - "reference": "c549d23829536f0d0e984aaabbf02af91f443207" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/composer/metadata-minifier/zipball/c549d23829536f0d0e984aaabbf02af91f443207", - "reference": "c549d23829536f0d0e984aaabbf02af91f443207", - "shasum": "" - }, - "require": { - "php": "^5.3.2 || ^7.0 || ^8.0" - }, - "require-dev": { - "composer/composer": "^2", - "phpstan/phpstan": "^0.12.55", - "symfony/phpunit-bridge": "^4.2 || ^5" - }, + "phploc" + ], "type": "library", "extra": { "branch-alias": { - "dev-main": "1.x-dev" + "dev-main": "8.0-dev" } }, "autoload": { - "psr-4": { - "Composer\\MetadataMinifier\\": "src" - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" + "name": "Chris Gmyr", + "email": "cmgmyr@gmail.com", + "role": "lead" } ], - "description": "Small utility library that handles metadata minification and expansion.", - "keywords": [ - "composer", - "compression" - ], + "description": "A tool for quickly measuring the size of a PHP project.", + "homepage": "https://github.com/cmgmyr/phploc", "support": { - "issues": "https://github.com/composer/metadata-minifier/issues", - "source": "https://github.com/composer/metadata-minifier/tree/1.0.0" + "issues": "https://github.com/cmgmyr/phploc/issues", + "source": "https://github.com/cmgmyr/phploc/tree/8.0.3" }, "funding": [ { - "url": "https://packagist.com", - "type": "custom" - }, - { - "url": "https://github.com/composer", + "url": "https://github.com/cmgmyr", "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" } ], - "time": "2021-04-07T13:37:33+00:00" + "time": "2023-08-05T16:49:39+00:00" }, { "name": "composer/pcre", - "version": "3.0.0", + "version": "3.1.1", "source": { "type": "git", "url": "https://github.com/composer/pcre.git", - "reference": "e300eb6c535192decd27a85bc72a9290f0d6b3bd" + "reference": "00104306927c7a0919b4ced2aaa6782c1e61a3c9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/pcre/zipball/e300eb6c535192decd27a85bc72a9290f0d6b3bd", - "reference": "e300eb6c535192decd27a85bc72a9290f0d6b3bd", + "url": "https://api.github.com/repos/composer/pcre/zipball/00104306927c7a0919b4ced2aaa6782c1e61a3c9", + "reference": "00104306927c7a0919b4ced2aaa6782c1e61a3c9", "shasum": "" }, "require": { @@ -11883,7 +11615,7 @@ ], "support": { "issues": "https://github.com/composer/pcre/issues", - "source": "https://github.com/composer/pcre/tree/3.0.0" + "source": "https://github.com/composer/pcre/tree/3.1.1" }, "funding": [ { @@ -11899,20 +11631,20 @@ "type": "tidelift" } ], - "time": "2022-02-25T20:21:48+00:00" + "time": "2023-10-11T07:11:09+00:00" }, { "name": "composer/semver", - "version": "3.2.9", + "version": "3.4.0", "source": { "type": "git", "url": "https://github.com/composer/semver.git", - "reference": "a951f614bd64dcd26137bc9b7b2637ddcfc57649" + "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/semver/zipball/a951f614bd64dcd26137bc9b7b2637ddcfc57649", - "reference": "a951f614bd64dcd26137bc9b7b2637ddcfc57649", + "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32", + "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32", "shasum": "" }, "require": { @@ -11962,89 +11694,9 @@ "versioning" ], "support": { - "irc": "irc://irc.freenode.org/composer", + "irc": "ircs://irc.libera.chat:6697/composer", "issues": "https://github.com/composer/semver/issues", - "source": "https://github.com/composer/semver/tree/3.2.9" - }, - "funding": [ - { - "url": "https://packagist.com", - "type": "custom" - }, - { - "url": "https://github.com/composer", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" - } - ], - "time": "2022-02-04T13:58:43+00:00" - }, - { - "name": "composer/spdx-licenses", - "version": "1.5.6", - "source": { - "type": "git", - "url": "https://github.com/composer/spdx-licenses.git", - "reference": "a30d487169d799745ca7280bc90fdfa693536901" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/a30d487169d799745ca7280bc90fdfa693536901", - "reference": "a30d487169d799745ca7280bc90fdfa693536901", - "shasum": "" - }, - "require": { - "php": "^5.3.2 || ^7.0 || ^8.0" - }, - "require-dev": { - "phpstan/phpstan": "^0.12.55", - "symfony/phpunit-bridge": "^4.2 || ^5" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Composer\\Spdx\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nils Adermann", - "email": "naderman@naderman.de", - "homepage": "http://www.naderman.de" - }, - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" - }, - { - "name": "Rob Bast", - "email": "rob.bast@gmail.com", - "homepage": "http://robbast.nl" - } - ], - "description": "SPDX licenses list and validation library.", - "keywords": [ - "license", - "spdx", - "validator" - ], - "support": { - "irc": "irc://irc.freenode.org/composer", - "issues": "https://github.com/composer/spdx-licenses/issues", - "source": "https://github.com/composer/spdx-licenses/tree/1.5.6" + "source": "https://github.com/composer/semver/tree/3.4.0" }, "funding": [ { @@ -12060,7 +11712,7 @@ "type": "tidelift" } ], - "time": "2021-11-18T10:14:14+00:00" + "time": "2023-08-31T09:50:34+00:00" }, { "name": "composer/xdebug-handler", @@ -12130,35 +11782,38 @@ }, { "name": "dealerdirect/phpcodesniffer-composer-installer", - "version": "v0.7.2", + "version": "v1.0.0", "source": { "type": "git", - "url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git", - "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db" + "url": "https://github.com/PHPCSStandards/composer-installer.git", + "reference": "4be43904336affa5c2f70744a348312336afd0da" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db", - "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db", + "url": "https://api.github.com/repos/PHPCSStandards/composer-installer/zipball/4be43904336affa5c2f70744a348312336afd0da", + "reference": "4be43904336affa5c2f70744a348312336afd0da", "shasum": "" }, "require": { "composer-plugin-api": "^1.0 || ^2.0", - "php": ">=5.3", + "php": ">=5.4", "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0" }, "require-dev": { "composer/composer": "*", + "ext-json": "*", + "ext-zip": "*", "php-parallel-lint/php-parallel-lint": "^1.3.1", - "phpcompatibility/php-compatibility": "^9.0" + "phpcompatibility/php-compatibility": "^9.0", + "yoast/phpunit-polyfills": "^1.0" }, "type": "composer-plugin", "extra": { - "class": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin" + "class": "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin" }, "autoload": { "psr-4": { - "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/" + "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -12174,7 +11829,7 @@ }, { "name": "Contributors", - "homepage": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer/graphs/contributors" + "homepage": "https://github.com/PHPCSStandards/composer-installer/graphs/contributors" } ], "description": "PHP_CodeSniffer Standards Composer Installer Plugin", @@ -12198,109 +11853,37 @@ "tests" ], "support": { - "issues": "https://github.com/dealerdirect/phpcodesniffer-composer-installer/issues", - "source": "https://github.com/dealerdirect/phpcodesniffer-composer-installer" - }, - "time": "2022-02-04T12:51:07+00:00" - }, - { - "name": "doctrine/annotations", - "version": "1.13.2", - "source": { - "type": "git", - "url": "https://github.com/doctrine/annotations.git", - "reference": "5b668aef16090008790395c02c893b1ba13f7e08" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/doctrine/annotations/zipball/5b668aef16090008790395c02c893b1ba13f7e08", - "reference": "5b668aef16090008790395c02c893b1ba13f7e08", - "shasum": "" - }, - "require": { - "doctrine/lexer": "1.*", - "ext-tokenizer": "*", - "php": "^7.1 || ^8.0", - "psr/cache": "^1 || ^2 || ^3" - }, - "require-dev": { - "doctrine/cache": "^1.11 || ^2.0", - "doctrine/coding-standard": "^6.0 || ^8.1", - "phpstan/phpstan": "^0.12.20", - "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5", - "symfony/cache": "^4.4 || ^5.2" - }, - "type": "library", - "autoload": { - "psr-4": { - "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, - { - "name": "Benjamin Eberlei", - "email": "kontakt@beberlei.de" - }, - { - "name": "Jonathan Wage", - "email": "jonwage@gmail.com" - }, - { - "name": "Johannes Schmitt", - "email": "schmittjoh@gmail.com" - } - ], - "description": "Docblock Annotations Parser", - "homepage": "https://www.doctrine-project.org/projects/annotations.html", - "keywords": [ - "annotations", - "docblock", - "parser" - ], - "support": { - "issues": "https://github.com/doctrine/annotations/issues", - "source": "https://github.com/doctrine/annotations/tree/1.13.2" + "issues": "https://github.com/PHPCSStandards/composer-installer/issues", + "source": "https://github.com/PHPCSStandards/composer-installer" }, - "time": "2021-08-05T19:00:23+00:00" + "time": "2023-01-05T11:28:13+00:00" }, { "name": "doctrine/instantiator", - "version": "1.4.1", + "version": "2.0.0", "source": { "type": "git", "url": "https://github.com/doctrine/instantiator.git", - "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc" + "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc", - "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0", + "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0" + "php": "^8.1" }, "require-dev": { - "doctrine/coding-standard": "^9", + "doctrine/coding-standard": "^11", "ext-pdo": "*", "ext-phar": "*", - "phpbench/phpbench": "^0.16 || ^1", - "phpstan/phpstan": "^1.4", - "phpstan/phpstan-phpunit": "^1", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", - "vimeo/psalm": "^4.22" + "phpbench/phpbench": "^1.2", + "phpstan/phpstan": "^1.9.4", + "phpstan/phpstan-phpunit": "^1.3", + "phpunit/phpunit": "^9.5.27", + "vimeo/psalm": "^5.4" }, "type": "library", "autoload": { @@ -12327,7 +11910,7 @@ ], "support": { "issues": "https://github.com/doctrine/instantiator/issues", - "source": "https://github.com/doctrine/instantiator/tree/1.4.1" + "source": "https://github.com/doctrine/instantiator/tree/2.0.0" }, "funding": [ { @@ -12343,34 +11926,48 @@ "type": "tidelift" } ], - "time": "2022-03-03T08:28:38+00:00" + "time": "2022-12-30T00:23:10+00:00" }, { - "name": "facade/ignition-contracts", - "version": "1.0.2", + "name": "fakerphp/faker", + "version": "v1.23.1", "source": { "type": "git", - "url": "https://github.com/facade/ignition-contracts.git", - "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267" + "url": "https://github.com/FakerPHP/Faker.git", + "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267", - "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267", + "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b", + "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b", "shasum": "" }, "require": { - "php": "^7.3|^8.0" + "php": "^7.4 || ^8.0", + "psr/container": "^1.0 || ^2.0", + "symfony/deprecation-contracts": "^2.2 || ^3.0" + }, + "conflict": { + "fzaninotto/faker": "*" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^v2.15.8", - "phpunit/phpunit": "^9.3.11", - "vimeo/psalm": "^3.17.1" + "bamarni/composer-bin-plugin": "^1.4.1", + "doctrine/persistence": "^1.3 || ^2.0", + "ext-intl": "*", + "phpunit/phpunit": "^9.5.26", + "symfony/phpunit-bridge": "^5.4.16" + }, + "suggest": { + "doctrine/orm": "Required to use Faker\\ORM\\Doctrine", + "ext-curl": "Required by Faker\\Provider\\Image to download images.", + "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.", + "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.", + "ext-mbstring": "Required for multibyte Unicode string functionality." }, "type": "library", "autoload": { "psr-4": { - "Facade\\IgnitionContracts\\": "src" + "Faker\\": "src/Faker/" } }, "notification-url": "https://packagist.org/downloads/", @@ -12379,69 +11976,53 @@ ], "authors": [ { - "name": "Freek Van der Herten", - "email": "freek@spatie.be", - "homepage": "https://flareapp.io", - "role": "Developer" + "name": "François Zaninotto" } ], - "description": "Solution contracts for Ignition", - "homepage": "https://github.com/facade/ignition-contracts", + "description": "Faker is a PHP library that generates fake data for you.", "keywords": [ - "contracts", - "flare", - "ignition" + "data", + "faker", + "fixtures" ], "support": { - "issues": "https://github.com/facade/ignition-contracts/issues", - "source": "https://github.com/facade/ignition-contracts/tree/1.0.2" + "issues": "https://github.com/FakerPHP/Faker/issues", + "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1" }, - "time": "2020-10-16T08:27:54+00:00" + "time": "2024-01-02T13:46:09+00:00" }, { - "name": "fakerphp/faker", - "version": "v1.19.0", + "name": "fidry/cpu-core-counter", + "version": "1.0.0", "source": { "type": "git", - "url": "https://github.com/FakerPHP/Faker.git", - "reference": "d7f08a622b3346766325488aa32ddc93ccdecc75" + "url": "https://github.com/theofidry/cpu-core-counter.git", + "reference": "85193c0b0cb5c47894b5eaec906e946f054e7077" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/d7f08a622b3346766325488aa32ddc93ccdecc75", - "reference": "d7f08a622b3346766325488aa32ddc93ccdecc75", + "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/85193c0b0cb5c47894b5eaec906e946f054e7077", + "reference": "85193c0b0cb5c47894b5eaec906e946f054e7077", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0", - "psr/container": "^1.0 || ^2.0", - "symfony/deprecation-contracts": "^2.2 || ^3.0" - }, - "conflict": { - "fzaninotto/faker": "*" + "php": "^7.2 || ^8.0" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.4.1", - "doctrine/persistence": "^1.3 || ^2.0", - "ext-intl": "*", - "symfony/phpunit-bridge": "^4.4 || ^5.2" - }, - "suggest": { - "doctrine/orm": "Required to use Faker\\ORM\\Doctrine", - "ext-curl": "Required by Faker\\Provider\\Image to download images.", - "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.", - "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.", - "ext-mbstring": "Required for multibyte Unicode string functionality." + "fidry/makefile": "^0.2.0", + "fidry/php-cs-fixer-config": "^1.1.2", + "phpstan/extension-installer": "^1.2.0", + "phpstan/phpstan": "^1.9.2", + "phpstan/phpstan-deprecation-rules": "^1.0.0", + "phpstan/phpstan-phpunit": "^1.2.2", + "phpstan/phpstan-strict-rules": "^1.4.4", + "phpunit/phpunit": "^8.5.31 || ^9.5.26", + "webmozarts/strict-phpunit": "^7.5" }, "type": "library", - "extra": { - "branch-alias": { - "dev-main": "v1.19-dev" - } - }, "autoload": { "psr-4": { - "Faker\\": "src/Faker/" + "Fidry\\CpuCoreCounter\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -12450,33 +12031,39 @@ ], "authors": [ { - "name": "François Zaninotto" + "name": "Théo FIDRY", + "email": "theo.fidry@gmail.com" } ], - "description": "Faker is a PHP library that generates fake data for you.", + "description": "Tiny utility to get the number of CPU cores.", "keywords": [ - "data", - "faker", - "fixtures" + "CPU", + "core" ], "support": { - "issues": "https://github.com/FakerPHP/Faker/issues", - "source": "https://github.com/FakerPHP/Faker/tree/v1.19.0" + "issues": "https://github.com/theofidry/cpu-core-counter/issues", + "source": "https://github.com/theofidry/cpu-core-counter/tree/1.0.0" }, - "time": "2022-02-02T17:38:57+00:00" + "funding": [ + { + "url": "https://github.com/theofidry", + "type": "github" + } + ], + "time": "2023-09-17T21:38:23+00:00" }, { "name": "filp/whoops", - "version": "2.14.5", + "version": "2.15.4", "source": { "type": "git", "url": "https://github.com/filp/whoops.git", - "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc" + "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filp/whoops/zipball/a63e5e8f26ebbebf8ed3c5c691637325512eb0dc", - "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc", + "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546", + "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546", "shasum": "" }, "require": { @@ -12526,7 +12113,7 @@ ], "support": { "issues": "https://github.com/filp/whoops/issues", - "source": "https://github.com/filp/whoops/tree/2.14.5" + "source": "https://github.com/filp/whoops/tree/2.15.4" }, "funding": [ { @@ -12534,56 +12121,52 @@ "type": "github" } ], - "time": "2022-01-07T12:00:00+00:00" + "time": "2023-11-03T12:00:00+00:00" }, { "name": "friendsofphp/php-cs-fixer", - "version": "v3.7.0", + "version": "v3.48.0", "source": { "type": "git", - "url": "https://github.com/FriendsOfPHP/PHP-CS-Fixer.git", - "reference": "7705d5a985132a40282d18a176eb9a4a0497747c" + "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git", + "reference": "a92472c6fb66349de25211f31c77eceae3df024e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FriendsOfPHP/PHP-CS-Fixer/zipball/7705d5a985132a40282d18a176eb9a4a0497747c", - "reference": "7705d5a985132a40282d18a176eb9a4a0497747c", + "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/a92472c6fb66349de25211f31c77eceae3df024e", + "reference": "a92472c6fb66349de25211f31c77eceae3df024e", "shasum": "" }, "require": { - "composer/semver": "^3.2", + "composer/semver": "^3.4", "composer/xdebug-handler": "^3.0.3", - "doctrine/annotations": "^1.13", + "ext-filter": "*", "ext-json": "*", "ext-tokenizer": "*", "php": "^7.4 || ^8.0", - "php-cs-fixer/diff": "^2.0", - "symfony/console": "^5.4 || ^6.0", - "symfony/event-dispatcher": "^5.4 || ^6.0", - "symfony/filesystem": "^5.4 || ^6.0", - "symfony/finder": "^5.4 || ^6.0", - "symfony/options-resolver": "^5.4 || ^6.0", - "symfony/polyfill-mbstring": "^1.23", - "symfony/polyfill-php80": "^1.25", - "symfony/polyfill-php81": "^1.25", - "symfony/process": "^5.4 || ^6.0", - "symfony/stopwatch": "^5.4 || ^6.0" - }, - "require-dev": { + "sebastian/diff": "^4.0 || ^5.0", + "symfony/console": "^5.4 || ^6.0 || ^7.0", + "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0", + "symfony/filesystem": "^5.4 || ^6.0 || ^7.0", + "symfony/finder": "^5.4 || ^6.0 || ^7.0", + "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0", + "symfony/polyfill-mbstring": "^1.28", + "symfony/polyfill-php80": "^1.28", + "symfony/polyfill-php81": "^1.28", + "symfony/process": "^5.4 || ^6.0 || ^7.0", + "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0" + }, + "require-dev": { + "facile-it/paraunit": "^1.3 || ^2.0", "justinrainbow/json-schema": "^5.2", - "keradus/cli-executor": "^1.5", - "mikey179/vfsstream": "^1.6.10", - "php-coveralls/php-coveralls": "^2.5.2", + "keradus/cli-executor": "^2.1", + "mikey179/vfsstream": "^1.6.11", + "php-coveralls/php-coveralls": "^2.7", "php-cs-fixer/accessible-object": "^1.1", - "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.2", - "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.2.1", - "phpspec/prophecy": "^1.15", - "phpspec/prophecy-phpunit": "^2.0", - "phpunit/phpunit": "^9.5", - "phpunitgoodpractices/polyfill": "^1.5", - "phpunitgoodpractices/traits": "^1.9.1", - "symfony/phpunit-bridge": "^6.0", - "symfony/yaml": "^5.4 || ^6.0" + "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4", + "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4", + "phpunit/phpunit": "^9.6 || ^10.5.5", + "symfony/yaml": "^5.4 || ^6.0 || ^7.0" }, "suggest": { "ext-dom": "For handling output formats in XML", @@ -12613,9 +12196,15 @@ } ], "description": "A tool to automatically fix PHP code style", + "keywords": [ + "Static code analysis", + "fixer", + "standards", + "static analysis" + ], "support": { - "issues": "https://github.com/FriendsOfPHP/PHP-CS-Fixer/issues", - "source": "https://github.com/FriendsOfPHP/PHP-CS-Fixer/tree/v3.7.0" + "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues", + "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.48.0" }, "funding": [ { @@ -12623,7 +12212,7 @@ "type": "github" } ], - "time": "2022-03-07T16:59:59+00:00" + "time": "2024-01-19T21:44:39+00:00" }, { "name": "hamcrest/hamcrest-php", @@ -12678,16 +12267,16 @@ }, { "name": "justinrainbow/json-schema", - "version": "5.2.11", + "version": "v5.2.13", "source": { "type": "git", "url": "https://github.com/justinrainbow/json-schema.git", - "reference": "2ab6744b7296ded80f8cc4f9509abbff393399aa" + "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ab6744b7296ded80f8cc4f9509abbff393399aa", - "reference": "2ab6744b7296ded80f8cc4f9509abbff393399aa", + "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/fbbe7e5d79f618997bc3332a6f49246036c45793", + "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793", "shasum": "" }, "require": { @@ -12742,28 +12331,28 @@ ], "support": { "issues": "https://github.com/justinrainbow/json-schema/issues", - "source": "https://github.com/justinrainbow/json-schema/tree/5.2.11" + "source": "https://github.com/justinrainbow/json-schema/tree/v5.2.13" }, - "time": "2021-07-22T09:24:00+00:00" + "time": "2023-09-26T02:20:38+00:00" }, { "name": "laravel-enso/cli", - "version": "5.0.2", + "version": "5.1.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/cli.git", - "reference": "2f5506c2c5f1a43a0fb581ff6a0704f6af459ae1" + "reference": "08cb61018b1f1c51a33a045021191ef40695519d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/cli/zipball/2f5506c2c5f1a43a0fb581ff6a0704f6af459ae1", - "reference": "2f5506c2c5f1a43a0fb581ff6a0704f6af459ae1", + "url": "https://api.github.com/repos/laravel-enso/cli/zipball/08cb61018b1f1c51a33a045021191ef40695519d", + "reference": "08cb61018b1f1c51a33a045021191ef40695519d", "shasum": "" }, "require": { - "laravel-enso/core": "^8.0", + "laravel-enso/core": "^9.0", "laravel-enso/enums": "^2.0", - "laravel-enso/helpers": "^2.0", + "laravel-enso/helpers": "^3.0", "laravel-enso/menus": "^5.0", "laravel-enso/permissions": "^5.0", "laravel-enso/roles": "^5.0" @@ -12803,27 +12392,27 @@ ], "support": { "issues": "https://github.com/laravel-enso/cli/issues", - "source": "https://github.com/laravel-enso/cli/tree/5.0.2" + "source": "https://github.com/laravel-enso/cli/tree/5.1.0" }, - "time": "2022-03-10T16:15:22+00:00" + "time": "2024-01-17T12:29:04+00:00" }, { "name": "laravel-enso/phpunit-pretty-print", - "version": "1.1.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/laravel-enso/phpunit-pretty-print.git", - "reference": "d54e5e18694bc44af36b6762de66746a55681b9e" + "reference": "3a7fff5765275f010b0305c910e66afa3373a260" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/phpunit-pretty-print/zipball/d54e5e18694bc44af36b6762de66746a55681b9e", - "reference": "d54e5e18694bc44af36b6762de66746a55681b9e", + "url": "https://api.github.com/repos/laravel-enso/phpunit-pretty-print/zipball/3a7fff5765275f010b0305c910e66afa3373a260", + "reference": "3a7fff5765275f010b0305c910e66afa3373a260", "shasum": "" }, "require": { - "laravel/framework": "^9.0", - "php": ">=8.0", + "laravel/framework": "^10.0", + "php": "^8.0", "phpunit/phpunit": "^9.0" }, "type": "library", @@ -12856,9 +12445,9 @@ ], "support": { "issues": "https://github.com/laravel-enso/phpunit-pretty-print/issues", - "source": "https://github.com/laravel-enso/phpunit-pretty-print/tree/1.1.0" + "source": "https://github.com/laravel-enso/phpunit-pretty-print/tree/1.2.0" }, - "time": "2022-03-02T12:26:35+00:00" + "time": "2024-01-31T13:27:44+00:00" }, { "name": "league/container", @@ -12944,25 +12533,25 @@ }, { "name": "maximebf/debugbar", - "version": "v1.18.0", + "version": "v1.19.1", "source": { "type": "git", "url": "https://github.com/maximebf/php-debugbar.git", - "reference": "0d44b75f3b5d6d41ae83b79c7a4bceae7fbc78b6" + "reference": "03dd40a1826f4d585ef93ef83afa2a9874a00523" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/0d44b75f3b5d6d41ae83b79c7a4bceae7fbc78b6", - "reference": "0d44b75f3b5d6d41ae83b79c7a4bceae7fbc78b6", + "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/03dd40a1826f4d585ef93ef83afa2a9874a00523", + "reference": "03dd40a1826f4d585ef93ef83afa2a9874a00523", "shasum": "" }, "require": { "php": "^7.1|^8", "psr/log": "^1|^2|^3", - "symfony/var-dumper": "^2.6|^3|^4|^5|^6" + "symfony/var-dumper": "^4|^5|^6" }, "require-dev": { - "phpunit/phpunit": "^7.5.20 || ^9.4.2", + "phpunit/phpunit": ">=7.5.20 <10.0", "twig/twig": "^1.38|^2.7|^3.0" }, "suggest": { @@ -12973,7 +12562,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.17-dev" + "dev-master": "1.18-dev" } }, "autoload": { @@ -13004,44 +12593,44 @@ ], "support": { "issues": "https://github.com/maximebf/php-debugbar/issues", - "source": "https://github.com/maximebf/php-debugbar/tree/v1.18.0" + "source": "https://github.com/maximebf/php-debugbar/tree/v1.19.1" }, - "time": "2021-12-27T18:49:48+00:00" + "time": "2023-10-12T08:10:52+00:00" }, { "name": "mockery/mockery", - "version": "1.5.0", + "version": "1.6.7", "source": { "type": "git", "url": "https://github.com/mockery/mockery.git", - "reference": "c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac" + "reference": "0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mockery/mockery/zipball/c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac", - "reference": "c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac", + "url": "https://api.github.com/repos/mockery/mockery/zipball/0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06", + "reference": "0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06", "shasum": "" }, "require": { "hamcrest/hamcrest-php": "^2.0.1", "lib-pcre": ">=7.0", - "php": "^7.3 || ^8.0" + "php": ">=7.3" }, "conflict": { "phpunit/phpunit": "<8.0" }, "require-dev": { - "phpunit/phpunit": "^8.5 || ^9.3" + "phpunit/phpunit": "^8.5 || ^9.6.10", + "symplify/easy-coding-standard": "^12.0.8" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.4.x-dev" - } - }, "autoload": { - "psr-0": { - "Mockery": "library/" + "files": [ + "library/helpers.php", + "library/Mockery.php" + ], + "psr-4": { + "Mockery\\": "library/Mockery" } }, "notification-url": "https://packagist.org/downloads/", @@ -13052,12 +12641,20 @@ { "name": "Pádraic Brady", "email": "padraic.brady@gmail.com", - "homepage": "http://blog.astrumfutura.com" + "homepage": "https://github.com/padraic", + "role": "Author" }, { "name": "Dave Marshall", "email": "dave.marshall@atstsolutions.co.uk", - "homepage": "http://davedevelopment.co.uk" + "homepage": "https://davedevelopment.co.uk", + "role": "Developer" + }, + { + "name": "Nathanael Esayeas", + "email": "nathanael.esayeas@protonmail.com", + "homepage": "https://github.com/ghostwriter", + "role": "Lead Developer" } ], "description": "Mockery is a simple yet flexible PHP mock object framework", @@ -13075,23 +12672,26 @@ "testing" ], "support": { + "docs": "https://docs.mockery.io/", "issues": "https://github.com/mockery/mockery/issues", - "source": "https://github.com/mockery/mockery/tree/1.5.0" + "rss": "https://github.com/mockery/mockery/releases.atom", + "security": "https://github.com/mockery/mockery/security/advisories", + "source": "https://github.com/mockery/mockery" }, - "time": "2022-01-20T13:18:17+00:00" + "time": "2023-12-10T02:24:34+00:00" }, { "name": "myclabs/deep-copy", - "version": "1.11.0", + "version": "1.11.1", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614" + "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614", - "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", + "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", "shasum": "" }, "require": { @@ -13129,7 +12729,7 @@ ], "support": { "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0" + "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1" }, "funding": [ { @@ -13137,35 +12737,36 @@ "type": "tidelift" } ], - "time": "2022-03-03T13:19:32+00:00" + "time": "2023-03-08T13:26:56+00:00" }, { "name": "nunomaduro/collision", - "version": "v6.1.0", + "version": "v6.4.0", "source": { "type": "git", "url": "https://github.com/nunomaduro/collision.git", - "reference": "df09e21a5e5d5a7d51a8b9ecd44d3dd150d97fec" + "reference": "f05978827b9343cba381ca05b8c7deee346b6015" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nunomaduro/collision/zipball/df09e21a5e5d5a7d51a8b9ecd44d3dd150d97fec", - "reference": "df09e21a5e5d5a7d51a8b9ecd44d3dd150d97fec", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f05978827b9343cba381ca05b8c7deee346b6015", + "reference": "f05978827b9343cba381ca05b8c7deee346b6015", "shasum": "" }, "require": { - "facade/ignition-contracts": "^1.0.2", "filp/whoops": "^2.14.5", "php": "^8.0.0", "symfony/console": "^6.0.2" }, "require-dev": { "brianium/paratest": "^6.4.1", - "laravel/framework": "^9.0", - "nunomaduro/larastan": "^1.0.2", + "laravel/framework": "^9.26.1", + "laravel/pint": "^1.1.1", + "nunomaduro/larastan": "^1.0.3", "nunomaduro/mock-final-classes": "^1.1.0", - "orchestra/testbench": "^7.0.0", - "phpunit/phpunit": "^9.5.11" + "orchestra/testbench": "^7.7", + "phpunit/phpunit": "^9.5.23", + "spatie/ignition": "^1.4.1" }, "type": "library", "extra": { @@ -13224,7 +12825,7 @@ "type": "patreon" } ], - "time": "2022-01-18T17:49:08+00:00" + "time": "2023-01-03T12:54:54+00:00" }, { "name": "nunomaduro/phpinsights", @@ -13232,45 +12833,47 @@ "source": { "type": "git", "url": "https://github.com/nunomaduro/phpinsights.git", - "reference": "51269b417923219301e9a6546ff05dce46238508" + "reference": "f476219759a61aad988641476259465c77203383" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nunomaduro/phpinsights/zipball/51269b417923219301e9a6546ff05dce46238508", - "reference": "51269b417923219301e9a6546ff05dce46238508", + "url": "https://api.github.com/repos/nunomaduro/phpinsights/zipball/f476219759a61aad988641476259465c77203383", + "reference": "f476219759a61aad988641476259465c77203383", "shasum": "" }, "require": { - "composer/composer": "^2.0", + "cmgmyr/phploc": "^8.0.3", + "composer/semver": "^3.4", "ext-iconv": "*", "ext-json": "*", "ext-mbstring": "*", - "ext-tokenizer": "*", - "friendsofphp/php-cs-fixer": "^3.0.0", - "justinrainbow/json-schema": "^5.1", - "league/container": "^3.2|^4.2", - "php": "^7.4 || ^8.0", - "php-parallel-lint/php-parallel-lint": "^1.3", - "phploc/phploc": "^5.0|^6.0|^7.0", - "psr/container": "^1.0|^2.0", - "psr/simple-cache": "^1.0", - "slevomat/coding-standard": "^7.0.8", - "squizlabs/php_codesniffer": "^3.5", - "symfony/cache": "^4.4|^5.0|^6.0", - "symfony/console": "^4.2|^5.0|^6.0", - "symfony/finder": "^4.2|^5.0|^6.0", - "symfony/http-client": "^4.3|^5.0|^6.0" - }, - "require-dev": { - "ergebnis/phpstan-rules": "^0.15.0", - "illuminate/console": "^5.8|^6.0|^7.0|^8.0|^9.0", - "illuminate/support": "^5.8|^6.0|^7.0|^8.0|^9.0", - "mockery/mockery": "^1.0", - "phpstan/phpstan-strict-rules": "^0.12", - "phpunit/phpunit": "^8.0|^9.0", + "ext-tokenizer": "*", + "friendsofphp/php-cs-fixer": "^3.40.0", + "justinrainbow/json-schema": "^5.2.13", + "league/container": "^3.2|^4.2", + "php": "^7.4|^8.0", + "php-parallel-lint/php-parallel-lint": "^1.3.2", + "psr/container": "^1.0|^2.0.2", + "psr/simple-cache": "^1.0|^2.0|^3.0", + "sebastian/diff": "^4.0|^5.0.3", + "slevomat/coding-standard": "^8.14.1", + "squizlabs/php_codesniffer": "^3.7.2", + "symfony/cache": "^5.4|^6.0|^7.0", + "symfony/console": "^5.4|^6.4|^7.0", + "symfony/finder": "^5.4|^6.0|^7.0", + "symfony/http-client": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.4|^7.0" + }, + "require-dev": { + "ergebnis/phpstan-rules": "^0.15.3", + "illuminate/console": "^5.8|^6.0|^7.0|^8.0|^9.20|^10.0", + "illuminate/support": "^5.8|^6.0|^7.0|^8.0|^9.52.16|^10.0", + "mockery/mockery": "^1.6.6", + "phpstan/phpstan-strict-rules": "^0.12.11", + "phpunit/phpunit": "^8.0|^9.0|^10.4.2", "rector/rector": "0.11.56", - "symfony/var-dumper": "^4.2|^5.0|^6.0", - "thecodingmachine/phpstan-strict-rules": "^0.12.0" + "symfony/var-dumper": "^5.4|^6.0|^7.0", + "thecodingmachine/phpstan-strict-rules": "^0.12.2" }, "suggest": { "ext-simplexml": "It is needed for the checkstyle formatter" @@ -13313,27 +12916,23 @@ ], "support": { "issues": "https://github.com/nunomaduro/phpinsights/issues", - "source": "https://github.com/nunomaduro/phpinsights/tree/master" + "source": "https://github.com/nunomaduro/phpinsights/tree/v2.11.0" }, "funding": [ { - "url": "https://www.paypal.com/paypalme/enunomaduro", - "type": "custom" - }, - { - "url": "https://github.com/nunomaduro", + "url": "https://github.com/JustSteveKing", "type": "github" }, { - "url": "https://github.com/olivernybroe", + "url": "https://github.com/cmgmyr", "type": "github" }, { - "url": "https://www.patreon.com/nunomaduro", - "type": "patreon" + "url": "https://github.com/nunomaduro", + "type": "github" } ], - "time": "2022-03-09T01:26:14+00:00" + "time": "2023-11-30T10:54:50+00:00" }, { "name": "phar-io/manifest", @@ -13446,58 +13045,6 @@ }, "time": "2022-02-21T01:04:05+00:00" }, - { - "name": "php-cs-fixer/diff", - "version": "v2.0.2", - "source": { - "type": "git", - "url": "https://github.com/PHP-CS-Fixer/diff.git", - "reference": "29dc0d507e838c4580d018bd8b5cb412474f7ec3" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/PHP-CS-Fixer/diff/zipball/29dc0d507e838c4580d018bd8b5cb412474f7ec3", - "reference": "29dc0d507e838c4580d018bd8b5cb412474f7ec3", - "shasum": "" - }, - "require": { - "php": "^5.6 || ^7.0 || ^8.0" - }, - "require-dev": { - "phpunit/phpunit": "^5.7.23 || ^6.4.3 || ^7.0", - "symfony/process": "^3.3" - }, - "type": "library", - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - }, - { - "name": "Kore Nordmann", - "email": "mail@kore-nordmann.de" - } - ], - "description": "sebastian/diff v3 backport support for PHP 5.6+", - "homepage": "https://github.com/PHP-CS-Fixer", - "keywords": [ - "diff" - ], - "support": { - "issues": "https://github.com/PHP-CS-Fixer/diff/issues", - "source": "https://github.com/PHP-CS-Fixer/diff/tree/v2.0.2" - }, - "time": "2020-10-14T08:32:19+00:00" - }, { "name": "php-parallel-lint/php-parallel-lint", "version": "v1.3.2", @@ -13555,325 +13102,35 @@ }, "time": "2022-02-21T12:50:22+00:00" }, - { - "name": "phpdocumentor/reflection-common", - "version": "2.2.0", - "source": { - "type": "git", - "url": "https://github.com/phpDocumentor/ReflectionCommon.git", - "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b", - "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b", - "shasum": "" - }, - "require": { - "php": "^7.2 || ^8.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-2.x": "2.x-dev" - } - }, - "autoload": { - "psr-4": { - "phpDocumentor\\Reflection\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jaap van Otterdijk", - "email": "opensource@ijaap.nl" - } - ], - "description": "Common reflection classes used by phpdocumentor to reflect the code structure", - "homepage": "http://www.phpdoc.org", - "keywords": [ - "FQSEN", - "phpDocumentor", - "phpdoc", - "reflection", - "static analysis" - ], - "support": { - "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues", - "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x" - }, - "time": "2020-06-27T09:03:43+00:00" - }, - { - "name": "phpdocumentor/reflection-docblock", - "version": "5.3.0", - "source": { - "type": "git", - "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "622548b623e81ca6d78b721c5e029f4ce664f170" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170", - "reference": "622548b623e81ca6d78b721c5e029f4ce664f170", - "shasum": "" - }, - "require": { - "ext-filter": "*", - "php": "^7.2 || ^8.0", - "phpdocumentor/reflection-common": "^2.2", - "phpdocumentor/type-resolver": "^1.3", - "webmozart/assert": "^1.9.1" - }, - "require-dev": { - "mockery/mockery": "~1.3.2", - "psalm/phar": "^4.8" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "5.x-dev" - } - }, - "autoload": { - "psr-4": { - "phpDocumentor\\Reflection\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Mike van Riel", - "email": "me@mikevanriel.com" - }, - { - "name": "Jaap van Otterdijk", - "email": "account@ijaap.nl" - } - ], - "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", - "support": { - "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues", - "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0" - }, - "time": "2021-10-19T17:43:47+00:00" - }, - { - "name": "phpdocumentor/type-resolver", - "version": "1.6.0", - "source": { - "type": "git", - "url": "https://github.com/phpDocumentor/TypeResolver.git", - "reference": "93ebd0014cab80c4ea9f5e297ea48672f1b87706" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/93ebd0014cab80c4ea9f5e297ea48672f1b87706", - "reference": "93ebd0014cab80c4ea9f5e297ea48672f1b87706", - "shasum": "" - }, - "require": { - "php": "^7.2 || ^8.0", - "phpdocumentor/reflection-common": "^2.0" - }, - "require-dev": { - "ext-tokenizer": "*", - "psalm/phar": "^4.8" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "phpDocumentor\\Reflection\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Mike van Riel", - "email": "me@mikevanriel.com" - } - ], - "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", - "support": { - "issues": "https://github.com/phpDocumentor/TypeResolver/issues", - "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.0" - }, - "time": "2022-01-04T19:58:01+00:00" - }, - { - "name": "phploc/phploc", - "version": "7.0.2", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/phploc.git", - "reference": "af0d5fc84f3f7725513ba59cdcbe670ac2a4532a" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phploc/zipball/af0d5fc84f3f7725513ba59cdcbe670ac2a4532a", - "reference": "af0d5fc84f3f7725513ba59cdcbe670ac2a4532a", - "shasum": "" - }, - "require": { - "ext-dom": "*", - "ext-json": "*", - "php": ">=7.3", - "phpunit/php-file-iterator": "^3.0", - "sebastian/cli-parser": "^1.0", - "sebastian/version": "^3.0" - }, - "bin": [ - "phploc" - ], - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "7.0-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" - } - ], - "description": "A tool for quickly measuring the size of a PHP project.", - "homepage": "https://github.com/sebastianbergmann/phploc", - "support": { - "issues": "https://github.com/sebastianbergmann/phploc/issues", - "source": "https://github.com/sebastianbergmann/phploc/tree/7.0.2" - }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - } - ], - "time": "2020-12-07T05:51:20+00:00" - }, - { - "name": "phpspec/prophecy", - "version": "v1.15.0", - "source": { - "type": "git", - "url": "https://github.com/phpspec/prophecy.git", - "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13", - "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13", - "shasum": "" - }, - "require": { - "doctrine/instantiator": "^1.2", - "php": "^7.2 || ~8.0, <8.2", - "phpdocumentor/reflection-docblock": "^5.2", - "sebastian/comparator": "^3.0 || ^4.0", - "sebastian/recursion-context": "^3.0 || ^4.0" - }, - "require-dev": { - "phpspec/phpspec": "^6.0 || ^7.0", - "phpunit/phpunit": "^8.0 || ^9.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Prophecy\\": "src/Prophecy" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" - }, - { - "name": "Marcello Duarte", - "email": "marcello.duarte@gmail.com" - } - ], - "description": "Highly opinionated mocking framework for PHP 5.3+", - "homepage": "https://github.com/phpspec/prophecy", - "keywords": [ - "Double", - "Dummy", - "fake", - "mock", - "spy", - "stub" - ], - "support": { - "issues": "https://github.com/phpspec/prophecy/issues", - "source": "https://github.com/phpspec/prophecy/tree/v1.15.0" - }, - "time": "2021-12-08T12:19:24+00:00" - }, { "name": "phpstan/phpdoc-parser", - "version": "1.2.0", + "version": "1.25.0", "source": { "type": "git", "url": "https://github.com/phpstan/phpdoc-parser.git", - "reference": "dbc093d7af60eff5cd575d2ed761b15ed40bd08e" + "reference": "bd84b629c8de41aa2ae82c067c955e06f1b00240" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/dbc093d7af60eff5cd575d2ed761b15ed40bd08e", - "reference": "dbc093d7af60eff5cd575d2ed761b15ed40bd08e", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/bd84b629c8de41aa2ae82c067c955e06f1b00240", + "reference": "bd84b629c8de41aa2ae82c067c955e06f1b00240", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0" + "php": "^7.2 || ^8.0" }, "require-dev": { + "doctrine/annotations": "^2.0", + "nikic/php-parser": "^4.15", "php-parallel-lint/php-parallel-lint": "^1.2", "phpstan/extension-installer": "^1.0", - "phpstan/phpstan": "^1.0", + "phpstan/phpstan": "^1.5", + "phpstan/phpstan-phpunit": "^1.1", "phpstan/phpstan-strict-rules": "^1.0", "phpunit/phpunit": "^9.5", "symfony/process": "^5.2" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0-dev" - } - }, "autoload": { "psr-4": { "PHPStan\\PhpDocParser\\": [ @@ -13888,29 +13145,29 @@ "description": "PHPDoc parser with support for nullable, intersection and generic types", "support": { "issues": "https://github.com/phpstan/phpdoc-parser/issues", - "source": "https://github.com/phpstan/phpdoc-parser/tree/1.2.0" + "source": "https://github.com/phpstan/phpdoc-parser/tree/1.25.0" }, - "time": "2021-09-16T20:46:02+00:00" + "time": "2024-01-04T17:06:16+00:00" }, { "name": "phpunit/php-code-coverage", - "version": "9.2.15", + "version": "9.2.30", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f" + "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2e9da11878c4202f97915c1cb4bb1ca318a63f5f", - "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ca2bd87d2f9215904682a9cb9bb37dda98e76089", + "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089", "shasum": "" }, "require": { "ext-dom": "*", "ext-libxml": "*", "ext-xmlwriter": "*", - "nikic/php-parser": "^4.13.0", + "nikic/php-parser": "^4.18 || ^5.0", "php": ">=7.3", "phpunit/php-file-iterator": "^3.0.3", "phpunit/php-text-template": "^2.0.2", @@ -13925,8 +13182,8 @@ "phpunit/phpunit": "^9.3" }, "suggest": { - "ext-pcov": "*", - "ext-xdebug": "*" + "ext-pcov": "PHP extension that provides line coverage", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" }, "type": "library", "extra": { @@ -13959,7 +13216,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", - "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.15" + "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.30" }, "funding": [ { @@ -13967,7 +13225,7 @@ "type": "github" } ], - "time": "2022-03-07T09:28:20+00:00" + "time": "2023-12-22T06:47:57+00:00" }, { "name": "phpunit/php-file-iterator", @@ -14212,20 +13470,20 @@ }, { "name": "phpunit/phpunit", - "version": "9.5.18", + "version": "9.6.16", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "1b5856028273bfd855e60a887278857d872ec67a" + "reference": "3767b2c56ce02d01e3491046f33466a1ae60a37f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/1b5856028273bfd855e60a887278857d872ec67a", - "reference": "1b5856028273bfd855e60a887278857d872ec67a", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/3767b2c56ce02d01e3491046f33466a1ae60a37f", + "reference": "3767b2c56ce02d01e3491046f33466a1ae60a37f", "shasum": "" }, "require": { - "doctrine/instantiator": "^1.3.1", + "doctrine/instantiator": "^1.3.1 || ^2", "ext-dom": "*", "ext-json": "*", "ext-libxml": "*", @@ -14236,31 +13494,26 @@ "phar-io/manifest": "^2.0.3", "phar-io/version": "^3.0.2", "php": ">=7.3", - "phpspec/prophecy": "^1.12.1", - "phpunit/php-code-coverage": "^9.2.13", + "phpunit/php-code-coverage": "^9.2.28", "phpunit/php-file-iterator": "^3.0.5", "phpunit/php-invoker": "^3.1.1", "phpunit/php-text-template": "^2.0.3", "phpunit/php-timer": "^5.0.2", "sebastian/cli-parser": "^1.0.1", "sebastian/code-unit": "^1.0.6", - "sebastian/comparator": "^4.0.5", + "sebastian/comparator": "^4.0.8", "sebastian/diff": "^4.0.3", "sebastian/environment": "^5.1.3", - "sebastian/exporter": "^4.0.3", + "sebastian/exporter": "^4.0.5", "sebastian/global-state": "^5.0.1", "sebastian/object-enumerator": "^4.0.3", "sebastian/resource-operations": "^3.0.3", - "sebastian/type": "^2.3.4", + "sebastian/type": "^3.2", "sebastian/version": "^3.0.2" }, - "require-dev": { - "ext-pdo": "*", - "phpspec/prophecy-phpunit": "^2.0.1" - }, "suggest": { - "ext-soap": "*", - "ext-xdebug": "*" + "ext-soap": "To be able to generate mocks based on WSDL files", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" }, "bin": [ "phpunit" @@ -14268,7 +13521,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "9.5-dev" + "dev-master": "9.6-dev" } }, "autoload": { @@ -14299,7 +13552,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", - "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.18" + "security": "https://github.com/sebastianbergmann/phpunit/security/policy", + "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.16" }, "funding": [ { @@ -14309,9 +13563,13 @@ { "url": "https://github.com/sebastianbergmann", "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit", + "type": "tidelift" } ], - "time": "2022-03-08T06:52:28+00:00" + "time": "2024-01-19T07:03:14+00:00" }, { "name": "psr/cache", @@ -14362,82 +13620,6 @@ }, "time": "2021-02-03T23:26:27+00:00" }, - { - "name": "react/promise", - "version": "v2.9.0", - "source": { - "type": "git", - "url": "https://github.com/reactphp/promise.git", - "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/reactphp/promise/zipball/234f8fd1023c9158e2314fa9d7d0e6a83db42910", - "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910", - "shasum": "" - }, - "require": { - "php": ">=5.4.0" - }, - "require-dev": { - "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.36" - }, - "type": "library", - "autoload": { - "files": [ - "src/functions_include.php" - ], - "psr-4": { - "React\\Promise\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jan Sorgalla", - "email": "jsorgalla@gmail.com", - "homepage": "https://sorgalla.com/" - }, - { - "name": "Christian Lück", - "email": "christian@clue.engineering", - "homepage": "https://clue.engineering/" - }, - { - "name": "Cees-Jan Kiewiet", - "email": "reactphp@ceesjankiewiet.nl", - "homepage": "https://wyrihaximus.net/" - }, - { - "name": "Chris Boden", - "email": "cboden@gmail.com", - "homepage": "https://cboden.dev/" - } - ], - "description": "A lightweight implementation of CommonJS Promises/A for PHP", - "keywords": [ - "promise", - "promises" - ], - "support": { - "issues": "https://github.com/reactphp/promise/issues", - "source": "https://github.com/reactphp/promise/tree/v2.9.0" - }, - "funding": [ - { - "url": "https://github.com/WyriHaximus", - "type": "github" - }, - { - "url": "https://github.com/clue", - "type": "github" - } - ], - "time": "2022-02-11T10:27:51+00:00" - }, { "name": "sebastian/cli-parser", "version": "1.0.1", @@ -14607,16 +13789,16 @@ }, { "name": "sebastian/comparator", - "version": "4.0.6", + "version": "4.0.8", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "55f4261989e546dc112258c7a75935a81a7ce382" + "reference": "fa0f136dd2334583309d32b62544682ee972b51a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382", - "reference": "55f4261989e546dc112258c7a75935a81a7ce382", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a", + "reference": "fa0f136dd2334583309d32b62544682ee972b51a", "shasum": "" }, "require": { @@ -14669,7 +13851,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/comparator/issues", - "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6" + "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8" }, "funding": [ { @@ -14677,24 +13859,24 @@ "type": "github" } ], - "time": "2020-10-26T15:49:45+00:00" + "time": "2022-09-14T12:41:17+00:00" }, { "name": "sebastian/complexity", - "version": "2.0.2", + "version": "2.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/complexity.git", - "reference": "739b35e53379900cc9ac327b2147867b8b6efd88" + "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88", - "reference": "739b35e53379900cc9ac327b2147867b8b6efd88", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a", + "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a", "shasum": "" }, "require": { - "nikic/php-parser": "^4.7", + "nikic/php-parser": "^4.18 || ^5.0", "php": ">=7.3" }, "require-dev": { @@ -14726,7 +13908,7 @@ "homepage": "https://github.com/sebastianbergmann/complexity", "support": { "issues": "https://github.com/sebastianbergmann/complexity/issues", - "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2" + "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3" }, "funding": [ { @@ -14734,20 +13916,20 @@ "type": "github" } ], - "time": "2020-10-26T15:52:27+00:00" + "time": "2023-12-22T06:19:30+00:00" }, { "name": "sebastian/diff", - "version": "4.0.4", + "version": "4.0.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d" + "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d", - "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131", + "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131", "shasum": "" }, "require": { @@ -14792,7 +13974,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/diff/issues", - "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4" + "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5" }, "funding": [ { @@ -14800,20 +13982,20 @@ "type": "github" } ], - "time": "2020-10-26T13:10:38+00:00" + "time": "2023-05-07T05:35:17+00:00" }, { "name": "sebastian/environment", - "version": "5.1.3", + "version": "5.1.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/environment.git", - "reference": "388b6ced16caa751030f6a69e588299fa09200ac" + "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac", - "reference": "388b6ced16caa751030f6a69e588299fa09200ac", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", + "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", "shasum": "" }, "require": { @@ -14855,7 +14037,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/environment/issues", - "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3" + "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5" }, "funding": [ { @@ -14863,20 +14045,20 @@ "type": "github" } ], - "time": "2020-09-28T05:52:38+00:00" + "time": "2023-02-03T06:03:51+00:00" }, { "name": "sebastian/exporter", - "version": "4.0.4", + "version": "4.0.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9" + "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9", - "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", + "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", "shasum": "" }, "require": { @@ -14932,7 +14114,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/exporter/issues", - "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4" + "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5" }, "funding": [ { @@ -14940,20 +14122,20 @@ "type": "github" } ], - "time": "2021-11-11T14:18:36+00:00" + "time": "2022-09-14T06:03:37+00:00" }, { "name": "sebastian/global-state", - "version": "5.0.5", + "version": "5.0.6", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/global-state.git", - "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2" + "reference": "bde739e7565280bda77be70044ac1047bc007e34" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2", - "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34", + "reference": "bde739e7565280bda77be70044ac1047bc007e34", "shasum": "" }, "require": { @@ -14996,7 +14178,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/global-state/issues", - "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5" + "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6" }, "funding": [ { @@ -15004,24 +14186,24 @@ "type": "github" } ], - "time": "2022-02-14T08:28:10+00:00" + "time": "2023-08-02T09:26:13+00:00" }, { "name": "sebastian/lines-of-code", - "version": "1.0.3", + "version": "1.0.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/lines-of-code.git", - "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc" + "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc", - "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5", + "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5", "shasum": "" }, "require": { - "nikic/php-parser": "^4.6", + "nikic/php-parser": "^4.18 || ^5.0", "php": ">=7.3" }, "require-dev": { @@ -15053,7 +14235,7 @@ "homepage": "https://github.com/sebastianbergmann/lines-of-code", "support": { "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", - "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3" + "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4" }, "funding": [ { @@ -15061,7 +14243,7 @@ "type": "github" } ], - "time": "2020-11-28T06:42:11+00:00" + "time": "2023-12-22T06:20:34+00:00" }, { "name": "sebastian/object-enumerator", @@ -15177,16 +14359,16 @@ }, { "name": "sebastian/recursion-context", - "version": "4.0.4", + "version": "4.0.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/recursion-context.git", - "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172" + "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172", - "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", + "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", "shasum": "" }, "require": { @@ -15225,10 +14407,10 @@ } ], "description": "Provides functionality to recursively process PHP variables", - "homepage": "http://www.github.com/sebastianbergmann/recursion-context", + "homepage": "https://github.com/sebastianbergmann/recursion-context", "support": { "issues": "https://github.com/sebastianbergmann/recursion-context/issues", - "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4" + "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5" }, "funding": [ { @@ -15236,7 +14418,7 @@ "type": "github" } ], - "time": "2020-10-26T13:17:30+00:00" + "time": "2023-02-03T06:07:39+00:00" }, { "name": "sebastian/resource-operations", @@ -15295,28 +14477,28 @@ }, { "name": "sebastian/type", - "version": "2.3.4", + "version": "3.2.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/type.git", - "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914" + "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b8cd8a1c753c90bc1a0f5372170e3e489136f914", - "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", + "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", "shasum": "" }, "require": { "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^9.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.3-dev" + "dev-master": "3.2-dev" } }, "autoload": { @@ -15339,7 +14521,7 @@ "homepage": "https://github.com/sebastianbergmann/type", "support": { "issues": "https://github.com/sebastianbergmann/type/issues", - "source": "https://github.com/sebastianbergmann/type/tree/2.3.4" + "source": "https://github.com/sebastianbergmann/type/tree/3.2.1" }, "funding": [ { @@ -15347,7 +14529,7 @@ "type": "github" } ], - "time": "2021-06-15T12:49:02+00:00" + "time": "2023-02-03T06:13:03+00:00" }, { "name": "sebastian/version", @@ -15402,155 +14584,44 @@ ], "time": "2020-09-28T06:39:44+00:00" }, - { - "name": "seld/jsonlint", - "version": "1.8.3", - "source": { - "type": "git", - "url": "https://github.com/Seldaek/jsonlint.git", - "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/9ad6ce79c342fbd44df10ea95511a1b24dee5b57", - "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57", - "shasum": "" - }, - "require": { - "php": "^5.3 || ^7.0 || ^8.0" - }, - "require-dev": { - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0" - }, - "bin": [ - "bin/jsonlint" - ], - "type": "library", - "autoload": { - "psr-4": { - "Seld\\JsonLint\\": "src/Seld/JsonLint/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" - } - ], - "description": "JSON Linter", - "keywords": [ - "json", - "linter", - "parser", - "validator" - ], - "support": { - "issues": "https://github.com/Seldaek/jsonlint/issues", - "source": "https://github.com/Seldaek/jsonlint/tree/1.8.3" - }, - "funding": [ - { - "url": "https://github.com/Seldaek", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint", - "type": "tidelift" - } - ], - "time": "2020-11-11T09:19:24+00:00" - }, - { - "name": "seld/phar-utils", - "version": "1.2.0", - "source": { - "type": "git", - "url": "https://github.com/Seldaek/phar-utils.git", - "reference": "9f3452c93ff423469c0d56450431562ca423dcee" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/9f3452c93ff423469c0d56450431562ca423dcee", - "reference": "9f3452c93ff423469c0d56450431562ca423dcee", - "shasum": "" - }, - "require": { - "php": ">=5.3" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Seld\\PharUtils\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be" - } - ], - "description": "PHAR file format utilities, for when PHP phars you up", - "keywords": [ - "phar" - ], - "support": { - "issues": "https://github.com/Seldaek/phar-utils/issues", - "source": "https://github.com/Seldaek/phar-utils/tree/1.2.0" - }, - "time": "2021-12-10T11:20:11+00:00" - }, { "name": "slevomat/coding-standard", - "version": "7.0.19", + "version": "8.14.1", "source": { "type": "git", "url": "https://github.com/slevomat/coding-standard.git", - "reference": "bef66a43815bbf9b5f49775e9ded3f7c6ba0cc37" + "reference": "fea1fd6f137cc84f9cba0ae30d549615dbc6a926" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/bef66a43815bbf9b5f49775e9ded3f7c6ba0cc37", - "reference": "bef66a43815bbf9b5f49775e9ded3f7c6ba0cc37", + "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/fea1fd6f137cc84f9cba0ae30d549615dbc6a926", + "reference": "fea1fd6f137cc84f9cba0ae30d549615dbc6a926", "shasum": "" }, "require": { - "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7", - "php": "^7.1 || ^8.0", - "phpstan/phpdoc-parser": "^1.0.0", - "squizlabs/php_codesniffer": "^3.6.2" + "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7 || ^1.0", + "php": "^7.2 || ^8.0", + "phpstan/phpdoc-parser": "^1.23.1", + "squizlabs/php_codesniffer": "^3.7.1" }, "require-dev": { - "phing/phing": "2.17.2", + "phing/phing": "2.17.4", "php-parallel-lint/php-parallel-lint": "1.3.2", - "phpstan/phpstan": "1.4.6", - "phpstan/phpstan-deprecation-rules": "1.0.0", - "phpstan/phpstan-phpunit": "1.0.0", - "phpstan/phpstan-strict-rules": "1.1.0", - "phpunit/phpunit": "7.5.20|8.5.21|9.5.16" + "phpstan/phpstan": "1.10.37", + "phpstan/phpstan-deprecation-rules": "1.1.4", + "phpstan/phpstan-phpunit": "1.3.14", + "phpstan/phpstan-strict-rules": "1.5.1", + "phpunit/phpunit": "8.5.21|9.6.8|10.3.5" }, "type": "phpcodesniffer-standard", "extra": { "branch-alias": { - "dev-master": "7.x-dev" + "dev-master": "8.x-dev" } }, "autoload": { "psr-4": { - "SlevomatCodingStandard\\": "SlevomatCodingStandard" + "SlevomatCodingStandard\\": "SlevomatCodingStandard/" } }, "notification-url": "https://packagist.org/downloads/", @@ -15558,9 +14629,13 @@ "MIT" ], "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.", + "keywords": [ + "dev", + "phpcs" + ], "support": { "issues": "https://github.com/slevomat/coding-standard/issues", - "source": "https://github.com/slevomat/coding-standard/tree/7.0.19" + "source": "https://github.com/slevomat/coding-standard/tree/8.14.1" }, "funding": [ { @@ -15572,20 +14647,20 @@ "type": "tidelift" } ], - "time": "2022-03-01T18:01:41+00:00" + "time": "2023-10-08T07:28:08+00:00" }, { "name": "spatie/backtrace", - "version": "1.2.1", + "version": "1.5.3", "source": { "type": "git", "url": "https://github.com/spatie/backtrace.git", - "reference": "4ee7d41aa5268107906ea8a4d9ceccde136dbd5b" + "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/backtrace/zipball/4ee7d41aa5268107906ea8a4d9ceccde136dbd5b", - "reference": "4ee7d41aa5268107906ea8a4d9ceccde136dbd5b", + "url": "https://api.github.com/repos/spatie/backtrace/zipball/483f76a82964a0431aa836b6ed0edde0c248e3ab", + "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab", "shasum": "" }, "require": { @@ -15594,6 +14669,7 @@ "require-dev": { "ext-json": "*", "phpunit/phpunit": "^9.3", + "spatie/phpunit-snapshot-assertions": "^4.2", "symfony/var-dumper": "^5.1" }, "type": "library", @@ -15621,8 +14697,7 @@ "spatie" ], "support": { - "issues": "https://github.com/spatie/backtrace/issues", - "source": "https://github.com/spatie/backtrace/tree/1.2.1" + "source": "https://github.com/spatie/backtrace/tree/1.5.3" }, "funding": [ { @@ -15634,40 +14709,45 @@ "type": "other" } ], - "time": "2021-11-09T10:57:15+00:00" + "time": "2023-06-28T12:59:17+00:00" }, { "name": "spatie/flare-client-php", - "version": "1.0.5", + "version": "1.4.4", "source": { "type": "git", "url": "https://github.com/spatie/flare-client-php.git", - "reference": "8ada1e5f4d7a2869f491c5e75d1f689b69db423e" + "reference": "17082e780752d346c2db12ef5d6bee8e835e399c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/8ada1e5f4d7a2869f491c5e75d1f689b69db423e", - "reference": "8ada1e5f4d7a2869f491c5e75d1f689b69db423e", + "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/17082e780752d346c2db12ef5d6bee8e835e399c", + "reference": "17082e780752d346c2db12ef5d6bee8e835e399c", "shasum": "" }, "require": { - "illuminate/pipeline": "^8.0|^9.0", + "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0", "php": "^8.0", - "spatie/backtrace": "^1.2", - "symfony/http-foundation": "^5.0|^6.0", - "symfony/mime": "^5.2|^6.0", - "symfony/process": "^5.2|^6.0", - "symfony/var-dumper": "^5.2|^6.0" + "spatie/backtrace": "^1.5.2", + "symfony/http-foundation": "^5.2|^6.0|^7.0", + "symfony/mime": "^5.2|^6.0|^7.0", + "symfony/process": "^5.2|^6.0|^7.0", + "symfony/var-dumper": "^5.2|^6.0|^7.0" }, "require-dev": { - "dms/phpunit-arraysubset-asserts": "^0.3.0", - "pestphp/pest": "^1.20", + "dms/phpunit-arraysubset-asserts": "^0.5.0", + "pestphp/pest": "^1.20|^2.0", "phpstan/extension-installer": "^1.1", "phpstan/phpstan-deprecation-rules": "^1.0", "phpstan/phpstan-phpunit": "^1.0", - "spatie/phpunit-snapshot-assertions": "^4.0" + "spatie/phpunit-snapshot-assertions": "^4.0|^5.0" }, "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.3.x-dev" + } + }, "autoload": { "files": [ "src/helpers.php" @@ -15690,7 +14770,7 @@ ], "support": { "issues": "https://github.com/spatie/flare-client-php/issues", - "source": "https://github.com/spatie/flare-client-php/tree/1.0.5" + "source": "https://github.com/spatie/flare-client-php/tree/1.4.4" }, "funding": [ { @@ -15698,41 +14778,53 @@ "type": "github" } ], - "time": "2022-03-01T10:52:59+00:00" + "time": "2024-01-31T14:18:45+00:00" }, { "name": "spatie/ignition", - "version": "1.2.3", + "version": "1.12.0", "source": { "type": "git", "url": "https://github.com/spatie/ignition.git", - "reference": "ab8d1f938d3ffd20af25ad788a9d019e1123068c" + "reference": "5b6f801c605a593106b623e45ca41496a6e7d56d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/ignition/zipball/ab8d1f938d3ffd20af25ad788a9d019e1123068c", - "reference": "ab8d1f938d3ffd20af25ad788a9d019e1123068c", + "url": "https://api.github.com/repos/spatie/ignition/zipball/5b6f801c605a593106b623e45ca41496a6e7d56d", + "reference": "5b6f801c605a593106b623e45ca41496a6e7d56d", "shasum": "" }, "require": { "ext-json": "*", "ext-mbstring": "*", - "monolog/monolog": "^2.0", "php": "^8.0", - "spatie/flare-client-php": "^1.0", - "symfony/console": "^5.4|^6.0", - "symfony/var-dumper": "^5.4|^6.0" + "spatie/backtrace": "^1.5.3", + "spatie/flare-client-php": "^1.4.0", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/var-dumper": "^5.4|^6.0|^7.0" }, "require-dev": { + "illuminate/cache": "^9.52|^10.0|^11.0", "mockery/mockery": "^1.4", - "pestphp/pest": "^1.20", + "pestphp/pest": "^1.20|^2.0", "phpstan/extension-installer": "^1.1", "phpstan/phpstan-deprecation-rules": "^1.0", "phpstan/phpstan-phpunit": "^1.0", - "spatie/ray": "^1.32", - "symfony/process": "^5.4|^6.0" + "psr/simple-cache-implementation": "*", + "symfony/cache": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "vlucas/phpdotenv": "^5.5" + }, + "suggest": { + "openai-php/client": "Require get solutions from OpenAI", + "simple-cache-implementation": "To cache solutions from OpenAI" }, "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.5.x-dev" + } + }, "autoload": { "psr-4": { "Spatie\\Ignition\\": "src" @@ -15769,45 +14861,47 @@ "type": "github" } ], - "time": "2022-03-08T15:12:58+00:00" + "time": "2024-01-03T15:49:39+00:00" }, { "name": "spatie/laravel-ignition", - "version": "1.0.7", + "version": "2.4.1", "source": { "type": "git", "url": "https://github.com/spatie/laravel-ignition.git", - "reference": "ea3a5401b631e8a2ce10581c1fec10c240b8e36e" + "reference": "005e1e7b1232f3b22d7e7be3f602693efc7dba67" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/ea3a5401b631e8a2ce10581c1fec10c240b8e36e", - "reference": "ea3a5401b631e8a2ce10581c1fec10c240b8e36e", + "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/005e1e7b1232f3b22d7e7be3f602693efc7dba67", + "reference": "005e1e7b1232f3b22d7e7be3f602693efc7dba67", "shasum": "" }, "require": { "ext-curl": "*", "ext-json": "*", "ext-mbstring": "*", - "illuminate/support": "^8.77|^9.0", - "monolog/monolog": "^2.3", - "php": "^8.0", - "spatie/flare-client-php": "^1.0.1", - "spatie/ignition": "^1.0", - "symfony/console": "^5.0|^6.0", - "symfony/var-dumper": "^5.0|^6.0" + "illuminate/support": "^10.0|^11.0", + "php": "^8.1", + "spatie/flare-client-php": "^1.3.5", + "spatie/ignition": "^1.9", + "symfony/console": "^6.2.3|^7.0", + "symfony/var-dumper": "^6.2.3|^7.0" + }, + "require-dev": { + "livewire/livewire": "^2.11|^3.3.5", + "mockery/mockery": "^1.5.1", + "openai-php/client": "^0.8.1", + "orchestra/testbench": "^8.0|^9.0", + "pestphp/pest": "^2.30", + "phpstan/extension-installer": "^1.2", + "phpstan/phpstan-deprecation-rules": "^1.1.1", + "phpstan/phpstan-phpunit": "^1.3.3", + "vlucas/phpdotenv": "^5.5" }, - "require-dev": { - "filp/whoops": "^2.14", - "livewire/livewire": "^2.8|dev-develop", - "mockery/mockery": "^1.4", - "nunomaduro/larastan": "^1.0", - "orchestra/testbench": "^6.23|^7.0", - "pestphp/pest": "^1.20", - "phpstan/extension-installer": "^1.1", - "phpstan/phpstan-deprecation-rules": "^1.0", - "phpstan/phpstan-phpunit": "^1.0", - "spatie/laravel-ray": "^1.27" + "suggest": { + "openai-php/client": "Require get solutions from OpenAI", + "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI" }, "type": "library", "extra": { @@ -15821,6 +14915,9 @@ } }, "autoload": { + "files": [ + "src/helpers.php" + ], "psr-4": { "Spatie\\LaravelIgnition\\": "src" } @@ -15856,20 +14953,20 @@ "type": "github" } ], - "time": "2022-03-10T12:29:54+00:00" + "time": "2024-01-12T13:14:58+00:00" }, { "name": "squizlabs/php_codesniffer", - "version": "3.6.2", + "version": "3.8.1", "source": { "type": "git", - "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", - "reference": "5e4e71592f69da17871dba6e80dd51bce74a351a" + "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git", + "reference": "14f5fff1e64118595db5408e946f3a22c75807f7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/5e4e71592f69da17871dba6e80dd51bce74a351a", - "reference": "5e4e71592f69da17871dba6e80dd51bce74a351a", + "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/14f5fff1e64118595db5408e946f3a22c75807f7", + "reference": "14f5fff1e64118595db5408e946f3a22c75807f7", "shasum": "" }, "require": { @@ -15879,11 +14976,11 @@ "php": ">=5.4.0" }, "require-dev": { - "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0" + "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4" }, "bin": [ - "bin/phpcs", - "bin/phpcbf" + "bin/phpcbf", + "bin/phpcs" ], "type": "library", "extra": { @@ -15898,43 +14995,67 @@ "authors": [ { "name": "Greg Sherwood", - "role": "lead" + "role": "Former lead" + }, + { + "name": "Juliette Reinders Folmer", + "role": "Current lead" + }, + { + "name": "Contributors", + "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors" } ], "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.", - "homepage": "https://github.com/squizlabs/PHP_CodeSniffer", + "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer", "keywords": [ "phpcs", - "standards" + "standards", + "static analysis" ], "support": { - "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues", - "source": "https://github.com/squizlabs/PHP_CodeSniffer", - "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki" + "issues": "https://github.com/PHPCSStandards/PHP_CodeSniffer/issues", + "security": "https://github.com/PHPCSStandards/PHP_CodeSniffer/security/policy", + "source": "https://github.com/PHPCSStandards/PHP_CodeSniffer", + "wiki": "https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki" }, - "time": "2021-12-12T21:44:58+00:00" + "funding": [ + { + "url": "https://github.com/PHPCSStandards", + "type": "github" + }, + { + "url": "https://github.com/jrfnl", + "type": "github" + }, + { + "url": "https://opencollective.com/php_codesniffer", + "type": "open_collective" + } + ], + "time": "2024-01-11T20:47:48+00:00" }, { "name": "symfony/cache", - "version": "v6.0.6", + "version": "v6.4.3", "source": { "type": "git", "url": "https://github.com/symfony/cache.git", - "reference": "57faad4e0d694f9961f517fdd5e6fbb1f6d0e04f" + "reference": "49f8cdee544a621a621cd21b6cda32a38926d310" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/cache/zipball/57faad4e0d694f9961f517fdd5e6fbb1f6d0e04f", - "reference": "57faad4e0d694f9961f517fdd5e6fbb1f6d0e04f", + "url": "https://api.github.com/repos/symfony/cache/zipball/49f8cdee544a621a621cd21b6cda32a38926d310", + "reference": "49f8cdee544a621a621cd21b6cda32a38926d310", "shasum": "" }, "require": { - "php": ">=8.0.2", + "php": ">=8.1", "psr/cache": "^2.0|^3.0", "psr/log": "^1.1|^2|^3", - "symfony/cache-contracts": "^1.1.7|^2|^3", - "symfony/service-contracts": "^1.1|^2|^3", - "symfony/var-exporter": "^5.4|^6.0" + "symfony/cache-contracts": "^2.5|^3", + "symfony/service-contracts": "^2.5|^3", + "symfony/var-exporter": "^6.3.6|^7.0" }, "conflict": { "doctrine/dbal": "<2.13.1", @@ -15949,21 +15070,24 @@ }, "require-dev": { "cache/integration-tests": "dev-master", - "doctrine/dbal": "^2.13.1|^3.0", - "predis/predis": "^1.1", + "doctrine/dbal": "^2.13.1|^3|^4", + "predis/predis": "^1.1|^2.0", "psr/simple-cache": "^1.0|^2.0|^3.0", - "symfony/config": "^5.4|^6.0", - "symfony/dependency-injection": "^5.4|^6.0", - "symfony/filesystem": "^5.4|^6.0", - "symfony/http-kernel": "^5.4|^6.0", - "symfony/messenger": "^5.4|^6.0", - "symfony/var-dumper": "^5.4|^6.0" + "symfony/config": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/filesystem": "^5.4|^6.0|^7.0", + "symfony/http-kernel": "^5.4|^6.0|^7.0", + "symfony/messenger": "^5.4|^6.0|^7.0", + "symfony/var-dumper": "^5.4|^6.0|^7.0" }, "type": "library", "autoload": { "psr-4": { "Symfony\\Component\\Cache\\": "" }, + "classmap": [ + "Traits/ValueWrapper.php" + ], "exclude-from-classmap": [ "/Tests/" ] @@ -15982,14 +15106,14 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation", + "description": "Provides extended PSR-6, PSR-16 (and tags) implementations", "homepage": "https://symfony.com", "keywords": [ "caching", "psr6" ], "support": { - "source": "https://github.com/symfony/cache/tree/v6.0.6" + "source": "https://github.com/symfony/cache/tree/v6.4.3" }, "funding": [ { @@ -16005,33 +15129,30 @@ "type": "tidelift" } ], - "time": "2022-03-02T12:58:14+00:00" + "time": "2024-01-23T14:51:35+00:00" }, { "name": "symfony/cache-contracts", - "version": "v3.0.0", + "version": "v3.4.0", "source": { "type": "git", "url": "https://github.com/symfony/cache-contracts.git", - "reference": "2f7463f156cf9c665d9317e21a809c3bbff5754e" + "reference": "1d74b127da04ffa87aa940abe15446fa89653778" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/2f7463f156cf9c665d9317e21a809c3bbff5754e", - "reference": "2f7463f156cf9c665d9317e21a809c3bbff5754e", + "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/1d74b127da04ffa87aa940abe15446fa89653778", + "reference": "1d74b127da04ffa87aa940abe15446fa89653778", "shasum": "" }, "require": { - "php": ">=8.0.2", + "php": ">=8.1", "psr/cache": "^3.0" }, - "suggest": { - "symfony/cache-implementation": "" - }, "type": "library", "extra": { "branch-alias": { - "dev-main": "3.0-dev" + "dev-main": "3.4-dev" }, "thanks": { "name": "symfony/contracts", @@ -16068,75 +15189,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/cache-contracts/tree/v3.0.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2021-08-17T15:35:52+00:00" - }, - { - "name": "symfony/debug", - "version": "v4.4.37", - "source": { - "type": "git", - "url": "https://github.com/symfony/debug.git", - "reference": "5de6c6e7f52b364840e53851c126be4d71e60470" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/debug/zipball/5de6c6e7f52b364840e53851c126be4d71e60470", - "reference": "5de6c6e7f52b364840e53851c126be4d71e60470", - "shasum": "" - }, - "require": { - "php": ">=7.1.3", - "psr/log": "^1|^2|^3" - }, - "conflict": { - "symfony/http-kernel": "<3.4" - }, - "require-dev": { - "symfony/http-kernel": "^3.4|^4.0|^5.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\Debug\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Provides tools to ease debugging PHP code", - "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/debug/tree/v4.4.37" + "source": "https://github.com/symfony/cache-contracts/tree/v3.4.0" }, "funding": [ { @@ -16152,24 +15205,24 @@ "type": "tidelift" } ], - "time": "2022-01-02T09:41:36+00:00" + "time": "2023-09-25T12:52:38+00:00" }, { "name": "symfony/filesystem", - "version": "v6.0.6", + "version": "v6.4.3", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "52b888523545b0b4049ab9ce48766802484d7046" + "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/52b888523545b0b4049ab9ce48766802484d7046", - "reference": "52b888523545b0b4049ab9ce48766802484d7046", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb", + "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb", "shasum": "" }, "require": { - "php": ">=8.0.2", + "php": ">=8.1", "symfony/polyfill-ctype": "~1.8", "symfony/polyfill-mbstring": "~1.8" }, @@ -16199,7 +15252,7 @@ "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/filesystem/tree/v6.0.6" + "source": "https://github.com/symfony/filesystem/tree/v6.4.3" }, "funding": [ { @@ -16215,20 +15268,20 @@ "type": "tidelift" } ], - "time": "2022-03-02T12:58:14+00:00" + "time": "2024-01-23T14:51:35+00:00" }, { - "name": "symfony/polyfill-php73", - "version": "v1.25.0", + "name": "symfony/polyfill-php81", + "version": "v1.28.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php73.git", - "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5" + "url": "https://github.com/symfony/polyfill-php81.git", + "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/cc5db0e22b3cb4111010e48785a97f670b350ca5", - "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5", + "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b", + "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b", "shasum": "" }, "require": { @@ -16237,7 +15290,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -16249,7 +15302,7 @@ "bootstrap.php" ], "psr-4": { - "Symfony\\Polyfill\\Php73\\": "" + "Symfony\\Polyfill\\Php81\\": "" }, "classmap": [ "Resources/stubs" @@ -16269,7 +15322,7 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions", + "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", @@ -16278,7 +15331,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php73/tree/v1.25.0" + "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0" }, "funding": [ { @@ -16294,25 +15347,25 @@ "type": "tidelift" } ], - "time": "2021-06-05T21:20:04+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/stopwatch", - "version": "v6.0.5", + "version": "v6.4.3", "source": { "type": "git", "url": "https://github.com/symfony/stopwatch.git", - "reference": "f2c1780607ec6502f2121d9729fd8150a655d337" + "reference": "416596166641f1f728b0a64f5b9dd07cceb410c1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/stopwatch/zipball/f2c1780607ec6502f2121d9729fd8150a655d337", - "reference": "f2c1780607ec6502f2121d9729fd8150a655d337", + "url": "https://api.github.com/repos/symfony/stopwatch/zipball/416596166641f1f728b0a64f5b9dd07cceb410c1", + "reference": "416596166641f1f728b0a64f5b9dd07cceb410c1", "shasum": "" }, "require": { - "php": ">=8.0.2", - "symfony/service-contracts": "^1|^2|^3" + "php": ">=8.1", + "symfony/service-contracts": "^2.5|^3" }, "type": "library", "autoload": { @@ -16340,7 +15393,7 @@ "description": "Provides a way to profile code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/stopwatch/tree/v6.0.5" + "source": "https://github.com/symfony/stopwatch/tree/v6.4.3" }, "funding": [ { @@ -16356,27 +15409,28 @@ "type": "tidelift" } ], - "time": "2022-02-21T17:15:17+00:00" + "time": "2024-01-23T14:35:58+00:00" }, { "name": "symfony/var-exporter", - "version": "v6.0.6", + "version": "v6.4.3", "source": { "type": "git", "url": "https://github.com/symfony/var-exporter.git", - "reference": "130229a482abf17635a685590958894dfb4b4360" + "reference": "a8c12b5448a5ac685347f5eeb2abf6a571ec16b8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-exporter/zipball/130229a482abf17635a685590958894dfb4b4360", - "reference": "130229a482abf17635a685590958894dfb4b4360", + "url": "https://api.github.com/repos/symfony/var-exporter/zipball/a8c12b5448a5ac685347f5eeb2abf6a571ec16b8", + "reference": "a8c12b5448a5ac685347f5eeb2abf6a571ec16b8", "shasum": "" }, "require": { - "php": ">=8.0.2" + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3" }, "require-dev": { - "symfony/var-dumper": "^5.4|^6.0" + "symfony/var-dumper": "^5.4|^6.0|^7.0" }, "type": "library", "autoload": { @@ -16409,10 +15463,12 @@ "export", "hydrate", "instantiate", + "lazy-loading", + "proxy", "serialize" ], "support": { - "source": "https://github.com/symfony/var-exporter/tree/v6.0.6" + "source": "https://github.com/symfony/var-exporter/tree/v6.4.3" }, "funding": [ { @@ -16428,20 +15484,20 @@ "type": "tidelift" } ], - "time": "2022-03-02T12:58:14+00:00" + "time": "2024-01-23T14:51:35+00:00" }, { "name": "theseer/tokenizer", - "version": "1.2.1", + "version": "1.2.2", "source": { "type": "git", "url": "https://github.com/theseer/tokenizer.git", - "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e" + "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e", - "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b2ad5003ca10d4ee50a12da31de12a5774ba6b96", + "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96", "shasum": "" }, "require": { @@ -16470,7 +15526,7 @@ "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", "support": { "issues": "https://github.com/theseer/tokenizer/issues", - "source": "https://github.com/theseer/tokenizer/tree/1.2.1" + "source": "https://github.com/theseer/tokenizer/tree/1.2.2" }, "funding": [ { @@ -16478,7 +15534,7 @@ "type": "github" } ], - "time": "2021-07-28T10:34:58+00:00" + "time": "2023-11-20T00:12:19+00:00" } ], "aliases": [], @@ -16489,8 +15545,8 @@ "prefer-stable": true, "prefer-lowest": false, "platform": { - "php": ">=8.0" + "php": "^8.0" }, "platform-dev": [], - "plugin-api-version": "2.0.0" + "plugin-api-version": "2.6.0" } From 51e707cecd42b65292ae5a04ad4d39307f4b0a95 Mon Sep 17 00:00:00 2001 From: Abdullahi Abdul Kabir Date: Thu, 1 Feb 2024 11:57:27 +0100 Subject: [PATCH 07/31] update --- app/Dynamics/Company/Comments.php | 2 +- app/Dynamics/Company/Discussions.php | 2 +- app/Dynamics/Company/Documents.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Dynamics/Company/Comments.php b/app/Dynamics/Company/Comments.php index 15a57afb2..10dcd66ca 100644 --- a/app/Dynamics/Company/Comments.php +++ b/app/Dynamics/Company/Comments.php @@ -1,6 +1,6 @@ Date: Mon, 5 Feb 2024 10:08:17 +0100 Subject: [PATCH 08/31] update --- composer.lock | 82 +++++++++++++++++++++++++-------------------------- 1 file changed, 41 insertions(+), 41 deletions(-) diff --git a/composer.lock b/composer.lock index 1660f118f..f6c5ae513 100644 --- a/composer.lock +++ b/composer.lock @@ -2643,16 +2643,16 @@ }, { "name": "laravel-enso/countries", - "version": "2.4.1", + "version": "2.4.2", "source": { "type": "git", "url": "https://github.com/laravel-enso/countries.git", - "reference": "787681e8946e247af147f753202583d0e5a649f2" + "reference": "6b0b26a08df6b6203996b69985ef00a4dc6599b3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/countries/zipball/787681e8946e247af147f753202583d0e5a649f2", - "reference": "787681e8946e247af147f753202583d0e5a649f2", + "url": "https://api.github.com/repos/laravel-enso/countries/zipball/6b0b26a08df6b6203996b69985ef00a4dc6599b3", + "reference": "6b0b26a08df6b6203996b69985ef00a4dc6599b3", "shasum": "" }, "require": { @@ -2706,9 +2706,9 @@ ], "support": { "issues": "https://github.com/laravel-enso/countries/issues", - "source": "https://github.com/laravel-enso/countries/tree/2.4.1" + "source": "https://github.com/laravel-enso/countries/tree/2.4.2" }, - "time": "2024-01-10T10:49:17+00:00" + "time": "2024-02-05T07:44:07+00:00" }, { "name": "laravel-enso/data-export", @@ -4094,16 +4094,16 @@ }, { "name": "laravel-enso/people", - "version": "4.3.0", + "version": "4.3.1", "source": { "type": "git", "url": "https://github.com/laravel-enso/people.git", - "reference": "661be09120ada4d9b017636b4056089a7ca5fdfc" + "reference": "39fa465f57bdcb428517d3d54b2e019af77475e5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/people/zipball/661be09120ada4d9b017636b4056089a7ca5fdfc", - "reference": "661be09120ada4d9b017636b4056089a7ca5fdfc", + "url": "https://api.github.com/repos/laravel-enso/people/zipball/39fa465f57bdcb428517d3d54b2e019af77475e5", + "reference": "39fa465f57bdcb428517d3d54b2e019af77475e5", "shasum": "" }, "require": { @@ -4156,9 +4156,9 @@ ], "support": { "issues": "https://github.com/laravel-enso/people/issues", - "source": "https://github.com/laravel-enso/people/tree/4.3.0" + "source": "https://github.com/laravel-enso/people/tree/4.3.1" }, - "time": "2024-01-10T09:43:36+00:00" + "time": "2024-02-05T07:42:49+00:00" }, { "name": "laravel-enso/permissions", @@ -4670,16 +4670,16 @@ }, { "name": "laravel-enso/teams", - "version": "4.1.0", + "version": "4.1.2", "source": { "type": "git", "url": "https://github.com/laravel-enso/teams.git", - "reference": "c16205933e766b82e4394ee5314678e2b8ca469a" + "reference": "2534e8e66a0c5b903bc0ae1da269be630683d98c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/teams/zipball/c16205933e766b82e4394ee5314678e2b8ca469a", - "reference": "c16205933e766b82e4394ee5314678e2b8ca469a", + "url": "https://api.github.com/repos/laravel-enso/teams/zipball/2534e8e66a0c5b903bc0ae1da269be630683d98c", + "reference": "2534e8e66a0c5b903bc0ae1da269be630683d98c", "shasum": "" }, "require": { @@ -4725,9 +4725,9 @@ ], "support": { "issues": "https://github.com/laravel-enso/teams/issues", - "source": "https://github.com/laravel-enso/teams/tree/4.1.0" + "source": "https://github.com/laravel-enso/teams/tree/4.1.2" }, - "time": "2024-01-10T09:38:51+00:00" + "time": "2024-02-05T07:41:24+00:00" }, { "name": "laravel-enso/track-who", @@ -5813,16 +5813,16 @@ }, { "name": "league/commonmark", - "version": "2.4.1", + "version": "2.4.2", "source": { "type": "git", "url": "https://github.com/thephpleague/commonmark.git", - "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5" + "reference": "91c24291965bd6d7c46c46a12ba7492f83b1cadf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/3669d6d5f7a47a93c08ddff335e6d945481a1dd5", - "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/91c24291965bd6d7c46c46a12ba7492f83b1cadf", + "reference": "91c24291965bd6d7c46c46a12ba7492f83b1cadf", "shasum": "" }, "require": { @@ -5835,7 +5835,7 @@ }, "require-dev": { "cebe/markdown": "^1.0", - "commonmark/cmark": "0.30.0", + "commonmark/cmark": "0.30.3", "commonmark/commonmark.js": "0.30.0", "composer/package-versions-deprecated": "^1.8", "embed/embed": "^4.4", @@ -5845,10 +5845,10 @@ "michelf/php-markdown": "^1.4 || ^2.0", "nyholm/psr7": "^1.5", "phpstan/phpstan": "^1.8.2", - "phpunit/phpunit": "^9.5.21", + "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0", "scrutinizer/ocular": "^1.8.1", - "symfony/finder": "^5.3 | ^6.0", - "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0", + "symfony/finder": "^5.3 | ^6.0 || ^7.0", + "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0", "unleashedtech/php-coding-standard": "^3.1.1", "vimeo/psalm": "^4.24.0 || ^5.0.0" }, @@ -5915,7 +5915,7 @@ "type": "tidelift" } ], - "time": "2023-08-30T16:55:00+00:00" + "time": "2024-02-02T11:59:32+00:00" }, { "name": "league/config", @@ -6001,16 +6001,16 @@ }, { "name": "league/flysystem", - "version": "3.23.1", + "version": "3.24.0", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "199e1aebbe3e62bd39f4d4fc8c61ce0b3786197e" + "reference": "b25a361508c407563b34fac6f64a8a17a8819675" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/199e1aebbe3e62bd39f4d4fc8c61ce0b3786197e", - "reference": "199e1aebbe3e62bd39f4d4fc8c61ce0b3786197e", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/b25a361508c407563b34fac6f64a8a17a8819675", + "reference": "b25a361508c407563b34fac6f64a8a17a8819675", "shasum": "" }, "require": { @@ -6030,7 +6030,7 @@ "require-dev": { "async-aws/s3": "^1.5 || ^2.0", "async-aws/simple-s3": "^1.1 || ^2.0", - "aws/aws-sdk-php": "^3.220.0", + "aws/aws-sdk-php": "^3.295.10", "composer/semver": "^3.0", "ext-fileinfo": "*", "ext-ftp": "*", @@ -6041,7 +6041,7 @@ "phpseclib/phpseclib": "^3.0.34", "phpstan/phpstan": "^1.10", "phpunit/phpunit": "^9.5.11|^10.0", - "sabre/dav": "^4.3.1" + "sabre/dav": "^4.6.0" }, "type": "library", "autoload": { @@ -6075,7 +6075,7 @@ ], "support": { "issues": "https://github.com/thephpleague/flysystem/issues", - "source": "https://github.com/thephpleague/flysystem/tree/3.23.1" + "source": "https://github.com/thephpleague/flysystem/tree/3.24.0" }, "funding": [ { @@ -6087,7 +6087,7 @@ "type": "github" } ], - "time": "2024-01-26T18:42:03+00:00" + "time": "2024-02-04T12:10:17+00:00" }, { "name": "league/flysystem-local", @@ -12125,16 +12125,16 @@ }, { "name": "friendsofphp/php-cs-fixer", - "version": "v3.48.0", + "version": "v3.49.0", "source": { "type": "git", "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git", - "reference": "a92472c6fb66349de25211f31c77eceae3df024e" + "reference": "8742f7aa6f72a399688b65e4f58992c2d4681fc2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/a92472c6fb66349de25211f31c77eceae3df024e", - "reference": "a92472c6fb66349de25211f31c77eceae3df024e", + "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/8742f7aa6f72a399688b65e4f58992c2d4681fc2", + "reference": "8742f7aa6f72a399688b65e4f58992c2d4681fc2", "shasum": "" }, "require": { @@ -12204,7 +12204,7 @@ ], "support": { "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues", - "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.48.0" + "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.49.0" }, "funding": [ { @@ -12212,7 +12212,7 @@ "type": "github" } ], - "time": "2024-01-19T21:44:39+00:00" + "time": "2024-02-02T00:41:40+00:00" }, { "name": "hamcrest/hamcrest-php", From f692631fe10715c87db481fdcd10418b10f16c04 Mon Sep 17 00:00:00 2001 From: Abdullahi Abdul Kabir Date: Sun, 11 Feb 2024 17:56:24 +0100 Subject: [PATCH 09/31] update --- composer.lock | 207 +++++++++++++++++++++----------------------------- 1 file changed, 87 insertions(+), 120 deletions(-) diff --git a/composer.lock b/composer.lock index f6c5ae513..df20a9916 100644 --- a/composer.lock +++ b/composer.lock @@ -792,27 +792,27 @@ }, { "name": "doctrine/lexer", - "version": "3.0.0", + "version": "3.0.1", "source": { "type": "git", "url": "https://github.com/doctrine/lexer.git", - "reference": "84a527db05647743d50373e0ec53a152f2cde568" + "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/lexer/zipball/84a527db05647743d50373e0ec53a152f2cde568", - "reference": "84a527db05647743d50373e0ec53a152f2cde568", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd", + "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd", "shasum": "" }, "require": { "php": "^8.1" }, "require-dev": { - "doctrine/coding-standard": "^10", - "phpstan/phpstan": "^1.9", - "phpunit/phpunit": "^9.5", + "doctrine/coding-standard": "^12", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^10.5", "psalm/plugin-phpunit": "^0.18.3", - "vimeo/psalm": "^5.0" + "vimeo/psalm": "^5.21" }, "type": "library", "autoload": { @@ -849,7 +849,7 @@ ], "support": { "issues": "https://github.com/doctrine/lexer/issues", - "source": "https://github.com/doctrine/lexer/tree/3.0.0" + "source": "https://github.com/doctrine/lexer/tree/3.0.1" }, "funding": [ { @@ -865,7 +865,7 @@ "type": "tidelift" } ], - "time": "2022-12-15T16:57:16+00:00" + "time": "2024-02-05T11:56:58+00:00" }, { "name": "dragonmantank/cron-expression", @@ -9318,16 +9318,16 @@ }, { "name": "symfony/polyfill-ctype", - "version": "v1.28.0", + "version": "v1.29.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb" + "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", - "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4", + "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4", "shasum": "" }, "require": { @@ -9341,9 +9341,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -9380,7 +9377,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0" }, "funding": [ { @@ -9396,20 +9393,20 @@ "type": "tidelift" } ], - "time": "2023-01-26T09:26:14+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/polyfill-iconv", - "version": "v1.28.0", + "version": "v1.29.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-iconv.git", - "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1" + "reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6de50471469b8c9afc38164452ab2b6170ee71c1", - "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f", + "reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f", "shasum": "" }, "require": { @@ -9423,9 +9420,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -9463,7 +9457,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-iconv/tree/v1.28.0" + "source": "https://github.com/symfony/polyfill-iconv/tree/v1.29.0" }, "funding": [ { @@ -9479,20 +9473,20 @@ "type": "tidelift" } ], - "time": "2023-01-26T09:26:14+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.28.0", + "version": "v1.29.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "875e90aeea2777b6f135677f618529449334a612" + "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612", - "reference": "875e90aeea2777b6f135677f618529449334a612", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f", + "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f", "shasum": "" }, "require": { @@ -9503,9 +9497,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -9544,7 +9535,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0" }, "funding": [ { @@ -9560,20 +9551,20 @@ "type": "tidelift" } ], - "time": "2023-01-26T09:26:14+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.28.0", + "version": "v1.29.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "ecaafce9f77234a6a449d29e49267ba10499116d" + "reference": "a287ed7475f85bf6f61890146edbc932c0fff919" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d", - "reference": "ecaafce9f77234a6a449d29e49267ba10499116d", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a287ed7475f85bf6f61890146edbc932c0fff919", + "reference": "a287ed7475f85bf6f61890146edbc932c0fff919", "shasum": "" }, "require": { @@ -9586,9 +9577,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -9631,7 +9619,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0" + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.29.0" }, "funding": [ { @@ -9647,20 +9635,20 @@ "type": "tidelift" } ], - "time": "2023-01-26T09:30:37+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.28.0", + "version": "v1.29.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92" + "reference": "bc45c394692b948b4d383a08d7753968bed9a83d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", - "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d", + "reference": "bc45c394692b948b4d383a08d7753968bed9a83d", "shasum": "" }, "require": { @@ -9671,9 +9659,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -9715,7 +9700,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0" }, "funding": [ { @@ -9731,20 +9716,20 @@ "type": "tidelift" } ], - "time": "2023-01-26T09:26:14+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.28.0", + "version": "v1.29.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "42292d99c55abe617799667f454222c54c60e229" + "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229", - "reference": "42292d99c55abe617799667f454222c54c60e229", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec", + "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec", "shasum": "" }, "require": { @@ -9758,9 +9743,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -9798,7 +9780,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0" }, "funding": [ { @@ -9814,20 +9796,20 @@ "type": "tidelift" } ], - "time": "2023-07-28T09:04:16+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/polyfill-php72", - "version": "v1.28.0", + "version": "v1.29.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179" + "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179", - "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25", + "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25", "shasum": "" }, "require": { @@ -9835,9 +9817,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -9874,7 +9853,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0" + "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0" }, "funding": [ { @@ -9890,20 +9869,20 @@ "type": "tidelift" } ], - "time": "2023-01-26T09:26:14+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/polyfill-php80", - "version": "v1.28.0", + "version": "v1.29.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5" + "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5", - "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b", + "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b", "shasum": "" }, "require": { @@ -9911,9 +9890,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -9957,7 +9933,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0" }, "funding": [ { @@ -9973,20 +9949,20 @@ "type": "tidelift" } ], - "time": "2023-01-26T09:26:14+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/polyfill-php83", - "version": "v1.28.0", + "version": "v1.29.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php83.git", - "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11" + "reference": "86fcae159633351e5fd145d1c47de6c528f8caff" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11", - "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11", + "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff", + "reference": "86fcae159633351e5fd145d1c47de6c528f8caff", "shasum": "" }, "require": { @@ -9995,9 +9971,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -10037,7 +10010,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php83/tree/v1.28.0" + "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0" }, "funding": [ { @@ -10053,20 +10026,20 @@ "type": "tidelift" } ], - "time": "2023-08-16T06:22:46+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/polyfill-uuid", - "version": "v1.28.0", + "version": "v1.29.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-uuid.git", - "reference": "9c44518a5aff8da565c8a55dbe85d2769e6f630e" + "reference": "3abdd21b0ceaa3000ee950097bc3cf9efc137853" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/9c44518a5aff8da565c8a55dbe85d2769e6f630e", - "reference": "9c44518a5aff8da565c8a55dbe85d2769e6f630e", + "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/3abdd21b0ceaa3000ee950097bc3cf9efc137853", + "reference": "3abdd21b0ceaa3000ee950097bc3cf9efc137853", "shasum": "" }, "require": { @@ -10080,9 +10053,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -10119,7 +10089,7 @@ "uuid" ], "support": { - "source": "https://github.com/symfony/polyfill-uuid/tree/v1.28.0" + "source": "https://github.com/symfony/polyfill-uuid/tree/v1.29.0" }, "funding": [ { @@ -10135,7 +10105,7 @@ "type": "tidelift" } ], - "time": "2023-01-26T09:26:14+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/process", @@ -11993,16 +11963,16 @@ }, { "name": "fidry/cpu-core-counter", - "version": "1.0.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://github.com/theofidry/cpu-core-counter.git", - "reference": "85193c0b0cb5c47894b5eaec906e946f054e7077" + "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/85193c0b0cb5c47894b5eaec906e946f054e7077", - "reference": "85193c0b0cb5c47894b5eaec906e946f054e7077", + "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/f92996c4d5c1a696a6a970e20f7c4216200fcc42", + "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42", "shasum": "" }, "require": { @@ -12042,7 +12012,7 @@ ], "support": { "issues": "https://github.com/theofidry/cpu-core-counter/issues", - "source": "https://github.com/theofidry/cpu-core-counter/tree/1.0.0" + "source": "https://github.com/theofidry/cpu-core-counter/tree/1.1.0" }, "funding": [ { @@ -12050,7 +12020,7 @@ "type": "github" } ], - "time": "2023-09-17T21:38:23+00:00" + "time": "2024-02-07T09:43:46+00:00" }, { "name": "filp/whoops", @@ -14865,16 +14835,16 @@ }, { "name": "spatie/laravel-ignition", - "version": "2.4.1", + "version": "2.4.2", "source": { "type": "git", "url": "https://github.com/spatie/laravel-ignition.git", - "reference": "005e1e7b1232f3b22d7e7be3f602693efc7dba67" + "reference": "351504f4570e32908839fc5a2dc53bf77d02f85e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/005e1e7b1232f3b22d7e7be3f602693efc7dba67", - "reference": "005e1e7b1232f3b22d7e7be3f602693efc7dba67", + "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/351504f4570e32908839fc5a2dc53bf77d02f85e", + "reference": "351504f4570e32908839fc5a2dc53bf77d02f85e", "shasum": "" }, "require": { @@ -14953,7 +14923,7 @@ "type": "github" } ], - "time": "2024-01-12T13:14:58+00:00" + "time": "2024-02-09T16:08:40+00:00" }, { "name": "squizlabs/php_codesniffer", @@ -15272,16 +15242,16 @@ }, { "name": "symfony/polyfill-php81", - "version": "v1.28.0", + "version": "v1.29.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php81.git", - "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b" + "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b", - "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b", + "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d", + "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d", "shasum": "" }, "require": { @@ -15289,9 +15259,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -15331,7 +15298,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0" + "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0" }, "funding": [ { @@ -15347,7 +15314,7 @@ "type": "tidelift" } ], - "time": "2023-01-26T09:26:14+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/stopwatch", From d62785d562e79a4adf647adcb65c79e567fe2e2f Mon Sep 17 00:00:00 2001 From: Abdullahi Abdul Kabir Date: Mon, 12 Feb 2024 09:21:42 +0100 Subject: [PATCH 10/31] doctrine update --- composer.json | 2 +- composer.lock | 187 +++++++++++++++++++++++++------------------------- 2 files changed, 96 insertions(+), 93 deletions(-) diff --git a/composer.json b/composer.json index 6c22d6ff6..e2dba29fa 100644 --- a/composer.json +++ b/composer.json @@ -9,7 +9,7 @@ "license": "MIT", "require": { "php": "^8.0", - "doctrine/dbal": "^2.8", + "doctrine/dbal": "^3.3", "guzzlehttp/guzzle": "^7.2", "laravel-enso/calendar": "^3.0", "laravel-enso/comments": "^4.0", diff --git a/composer.lock b/composer.lock index df20a9916..dfc93843f 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "e3b21803525e6c60db53130a37bc1c59", + "content-hash": "a3882c12812af40dcb1801d71b17a5bc", "packages": [ { "name": "barryvdh/laravel-snappy", @@ -216,26 +216,26 @@ }, { "name": "carbonphp/carbon-doctrine-types", - "version": "1.0.0", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git", - "reference": "3c430083d0b41ceed84ecccf9dac613241d7305d" + "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/3c430083d0b41ceed84ecccf9dac613241d7305d", - "reference": "3c430083d0b41ceed84ecccf9dac613241d7305d", + "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb", + "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb", "shasum": "" }, "require": { - "php": "^7.1.8 || ^8.0" + "php": "^7.4 || ^8.0" }, "conflict": { - "doctrine/dbal": ">=3.7.0" + "doctrine/dbal": "<3.7.0 || >=4.0.0" }, "require-dev": { - "doctrine/dbal": ">=2.0.0", + "doctrine/dbal": "^3.7.0", "nesbot/carbon": "^2.71.0 || ^3.0.0", "phpunit/phpunit": "^10.3" }, @@ -265,7 +265,7 @@ ], "support": { "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues", - "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/1.0.0" + "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0" }, "funding": [ { @@ -281,7 +281,7 @@ "type": "tidelift" } ], - "time": "2023-10-01T12:35:29+00:00" + "time": "2023-12-11T17:09:12+00:00" }, { "name": "dflydev/dot-access-data", @@ -453,35 +453,40 @@ }, { "name": "doctrine/dbal", - "version": "2.13.9", + "version": "3.8.1", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", - "reference": "c480849ca3ad6706a39c970cdfe6888fa8a058b8" + "reference": "c9ea252cdce4da324ede3d6c5913dd89f769afd2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/dbal/zipball/c480849ca3ad6706a39c970cdfe6888fa8a058b8", - "reference": "c480849ca3ad6706a39c970cdfe6888fa8a058b8", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/c9ea252cdce4da324ede3d6c5913dd89f769afd2", + "reference": "c9ea252cdce4da324ede3d6c5913dd89f769afd2", "shasum": "" }, "require": { - "doctrine/cache": "^1.0|^2.0", + "composer-runtime-api": "^2", + "doctrine/cache": "^1.11|^2.0", "doctrine/deprecations": "^0.5.3|^1", - "doctrine/event-manager": "^1.0", - "ext-pdo": "*", - "php": "^7.1 || ^8" + "doctrine/event-manager": "^1|^2", + "php": "^7.4 || ^8.0", + "psr/cache": "^1|^2|^3", + "psr/log": "^1|^2|^3" }, "require-dev": { - "doctrine/coding-standard": "9.0.0", - "jetbrains/phpstorm-stubs": "2021.1", - "phpstan/phpstan": "1.4.6", - "phpunit/phpunit": "^7.5.20|^8.5|9.5.16", - "psalm/plugin-phpunit": "0.16.1", - "squizlabs/php_codesniffer": "3.6.2", - "symfony/cache": "^4.4", - "symfony/console": "^2.0.5|^3.0|^4.0|^5.0", - "vimeo/psalm": "4.22.0" + "doctrine/coding-standard": "12.0.0", + "fig/log-test": "^1", + "jetbrains/phpstorm-stubs": "2023.1", + "phpstan/phpstan": "1.10.57", + "phpstan/phpstan-strict-rules": "^1.5", + "phpunit/phpunit": "9.6.16", + "psalm/plugin-phpunit": "0.18.4", + "slevomat/coding-standard": "8.13.1", + "squizlabs/php_codesniffer": "3.8.1", + "symfony/cache": "^5.4|^6.0|^7.0", + "symfony/console": "^4.4|^5.4|^6.0|^7.0", + "vimeo/psalm": "4.30.0" }, "suggest": { "symfony/console": "For helpful console commands such as SQL execution and import of files." @@ -492,7 +497,7 @@ "type": "library", "autoload": { "psr-4": { - "Doctrine\\DBAL\\": "lib/Doctrine/DBAL" + "Doctrine\\DBAL\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -535,14 +540,13 @@ "queryobject", "sasql", "sql", - "sqlanywhere", "sqlite", "sqlserver", "sqlsrv" ], "support": { "issues": "https://github.com/doctrine/dbal/issues", - "source": "https://github.com/doctrine/dbal/tree/2.13.9" + "source": "https://github.com/doctrine/dbal/tree/3.8.1" }, "funding": [ { @@ -558,7 +562,7 @@ "type": "tidelift" } ], - "time": "2022-05-02T20:28:55+00:00" + "time": "2024-02-03T17:33:49+00:00" }, { "name": "doctrine/deprecations", @@ -609,30 +613,29 @@ }, { "name": "doctrine/event-manager", - "version": "1.2.0", + "version": "2.0.0", "source": { "type": "git", "url": "https://github.com/doctrine/event-manager.git", - "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520" + "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/event-manager/zipball/95aa4cb529f1e96576f3fda9f5705ada4056a520", - "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520", + "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32", + "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32", "shasum": "" }, "require": { - "doctrine/deprecations": "^0.5.3 || ^1", - "php": "^7.1 || ^8.0" + "php": "^8.1" }, "conflict": { "doctrine/common": "<2.9" }, "require-dev": { - "doctrine/coding-standard": "^9 || ^10", - "phpstan/phpstan": "~1.4.10 || ^1.8.8", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", - "vimeo/psalm": "^4.24" + "doctrine/coding-standard": "^10", + "phpstan/phpstan": "^1.8.8", + "phpunit/phpunit": "^9.5", + "vimeo/psalm": "^4.28" }, "type": "library", "autoload": { @@ -681,7 +684,7 @@ ], "support": { "issues": "https://github.com/doctrine/event-manager/issues", - "source": "https://github.com/doctrine/event-manager/tree/1.2.0" + "source": "https://github.com/doctrine/event-manager/tree/2.0.0" }, "funding": [ { @@ -697,7 +700,7 @@ "type": "tidelift" } ], - "time": "2022-10-12T20:51:15+00:00" + "time": "2022-10-12T20:59:15+00:00" }, { "name": "doctrine/inflector", @@ -7056,6 +7059,55 @@ ], "time": "2023-11-12T21:59:55+00:00" }, + { + "name": "psr/cache", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/cache.git", + "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf", + "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Cache\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for caching libraries", + "keywords": [ + "cache", + "psr", + "psr-6" + ], + "support": { + "source": "https://github.com/php-fig/cache/tree/3.0.0" + }, + "time": "2021-02-03T23:26:27+00:00" + }, { "name": "psr/clock", "version": "1.0.0", @@ -13541,55 +13593,6 @@ ], "time": "2024-01-19T07:03:14+00:00" }, - { - "name": "psr/cache", - "version": "3.0.0", - "source": { - "type": "git", - "url": "https://github.com/php-fig/cache.git", - "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf", - "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf", - "shasum": "" - }, - "require": { - "php": ">=8.0.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\Cache\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "https://www.php-fig.org/" - } - ], - "description": "Common interface for caching libraries", - "keywords": [ - "cache", - "psr", - "psr-6" - ], - "support": { - "source": "https://github.com/php-fig/cache/tree/3.0.0" - }, - "time": "2021-02-03T23:26:27+00:00" - }, { "name": "sebastian/cli-parser", "version": "1.0.1", From 87d9ccecd5ff7beb365a33cfde8651feee8790fa Mon Sep 17 00:00:00 2001 From: Abdullahi Abdul Kabir Date: Wed, 14 Feb 2024 10:08:16 +0100 Subject: [PATCH 11/31] fix docker --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index eed4fce9d..df847429f 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.0-apache +FROM php:8.1-apache # Apache configuration RUN a2enmod rewrite From 42c73f3640596f4eeb38f6c0e19a48283a394281 Mon Sep 17 00:00:00 2001 From: Abdullahi Abdul Kabir Date: Wed, 14 Feb 2024 10:12:37 +0100 Subject: [PATCH 12/31] update workflow --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1d53be164..fbe23a3b1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -30,7 +30,7 @@ jobs: node-version: '14' - uses: shivammathur/setup-php@v2 with: - php-version: '8.0' + php-version: '8.1' - name: 'test node' run: node -v - name: 'install & build' From 91203c6fab53e68de8232facef51084f23eb5bb7 Mon Sep 17 00:00:00 2001 From: Abdullahi Abdul Kabir Date: Wed, 14 Feb 2024 10:17:36 +0100 Subject: [PATCH 13/31] update php version workflow --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fbe23a3b1..3bcb27de5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -58,7 +58,7 @@ jobs: - uses: actions/checkout@v2 - uses: shivammathur/setup-php@v2 with: - php-version: '8.0' + php-version: '8.1' - name: 'PhpUnit' run: | sudo composer install @@ -83,7 +83,7 @@ jobs: - uses: actions/checkout@v2 - uses: shivammathur/setup-php@v2 with: - php-version: '8.0' + php-version: '8.1' - name: 'Run php-insight' run: | sudo composer install @@ -95,7 +95,7 @@ jobs: - uses: actions/checkout@v2 - uses: shivammathur/setup-php@v2 with: - php-version: '8.0' + php-version: '8.1' - name: 'Run php-insight' run: | PHP_SC_VERSION=$(curl -s "https://api.github.com/repos/fabpot/local-php-security-checker/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/;s/^v//') @@ -114,7 +114,7 @@ jobs: mysql password: ${{env.DB_PASSWORD}} - uses: shivammathur/setup-php@v2 with: - php-version: '8.0' + php-version: '8.1' - name: 'Run migration' run: | sudo composer install From 5eab9f85d218f07e736ef88fc455438d6c253f3b Mon Sep 17 00:00:00 2001 From: Abdullahi Abdul Kabir Date: Wed, 14 Feb 2024 10:20:26 +0100 Subject: [PATCH 14/31] update php version workflow --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3bcb27de5..7cdb43ce1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -70,7 +70,7 @@ jobs: - uses: actions/checkout@v2 - uses: shivammathur/setup-php@v2 with: - php-version: '8.0' + php-version: '8.1' - name: 'Run Phpcpd' run: | sudo composer install From 78c2fad2599dde337495e7a0123d09c1e8faca9b Mon Sep 17 00:00:00 2001 From: Abdullahi Abdul Kabir Date: Thu, 15 Feb 2024 06:23:43 +0100 Subject: [PATCH 15/31] update --- composer.lock | 127 +++++++++++++++++++++++++------------------------- 1 file changed, 64 insertions(+), 63 deletions(-) diff --git a/composer.lock b/composer.lock index dfc93843f..57dcef657 100644 --- a/composer.lock +++ b/composer.lock @@ -453,16 +453,16 @@ }, { "name": "doctrine/dbal", - "version": "3.8.1", + "version": "3.8.2", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", - "reference": "c9ea252cdce4da324ede3d6c5913dd89f769afd2" + "reference": "a19a1d05ca211f41089dffcc387733a6875196cb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/dbal/zipball/c9ea252cdce4da324ede3d6c5913dd89f769afd2", - "reference": "c9ea252cdce4da324ede3d6c5913dd89f769afd2", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/a19a1d05ca211f41089dffcc387733a6875196cb", + "reference": "a19a1d05ca211f41089dffcc387733a6875196cb", "shasum": "" }, "require": { @@ -546,7 +546,7 @@ ], "support": { "issues": "https://github.com/doctrine/dbal/issues", - "source": "https://github.com/doctrine/dbal/tree/3.8.1" + "source": "https://github.com/doctrine/dbal/tree/3.8.2" }, "funding": [ { @@ -562,7 +562,7 @@ "type": "tidelift" } ], - "time": "2024-02-03T17:33:49+00:00" + "time": "2024-02-12T18:36:36+00:00" }, { "name": "doctrine/deprecations", @@ -4984,16 +4984,16 @@ }, { "name": "laravel-enso/users", - "version": "2.3.0", + "version": "2.3.1", "source": { "type": "git", "url": "https://github.com/laravel-enso/users.git", - "reference": "652af491779ad561b1874c1139ef7db58738b578" + "reference": "f9a6701d4d1ea314bf5ea45f02d8a7cf49826793" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/users/zipball/652af491779ad561b1874c1139ef7db58738b578", - "reference": "652af491779ad561b1874c1139ef7db58738b578", + "url": "https://api.github.com/repos/laravel-enso/users/zipball/f9a6701d4d1ea314bf5ea45f02d8a7cf49826793", + "reference": "f9a6701d4d1ea314bf5ea45f02d8a7cf49826793", "shasum": "" }, "require": { @@ -5061,22 +5061,22 @@ ], "support": { "issues": "https://github.com/laravel-enso/users/issues", - "source": "https://github.com/laravel-enso/users/tree/2.3.0" + "source": "https://github.com/laravel-enso/users/tree/2.3.1" }, - "time": "2024-01-26T11:09:06+00:00" + "time": "2024-02-15T05:10:35+00:00" }, { "name": "laravel/framework", - "version": "v10.43.0", + "version": "v10.44.0", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "4f7802dfc9993cb57cf69615491ce1a7eb2e9529" + "reference": "1199dbe361787bbe9648131a79f53921b4148cf6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/4f7802dfc9993cb57cf69615491ce1a7eb2e9529", - "reference": "4f7802dfc9993cb57cf69615491ce1a7eb2e9529", + "url": "https://api.github.com/repos/laravel/framework/zipball/1199dbe361787bbe9648131a79f53921b4148cf6", + "reference": "1199dbe361787bbe9648131a79f53921b4148cf6", "shasum": "" }, "require": { @@ -5124,6 +5124,7 @@ "conflict": { "carbonphp/carbon-doctrine-types": ">=3.0", "doctrine/dbal": ">=4.0", + "phpunit/phpunit": ">=11.0.0", "tightenco/collect": "<5.5.33" }, "provide": { @@ -5268,38 +5269,38 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2024-01-30T16:25:02+00:00" + "time": "2024-02-13T16:01:16+00:00" }, { "name": "laravel/horizon", - "version": "v5.22.1", + "version": "v5.23.0", "source": { "type": "git", "url": "https://github.com/laravel/horizon.git", - "reference": "8618d65fad70308b8a5e438c4cfc0a1c6c14eea6" + "reference": "0b1bf46b21c397fdbe80b1ab54451fd227934508" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/horizon/zipball/8618d65fad70308b8a5e438c4cfc0a1c6c14eea6", - "reference": "8618d65fad70308b8a5e438c4cfc0a1c6c14eea6", + "url": "https://api.github.com/repos/laravel/horizon/zipball/0b1bf46b21c397fdbe80b1ab54451fd227934508", + "reference": "0b1bf46b21c397fdbe80b1ab54451fd227934508", "shasum": "" }, "require": { "ext-json": "*", "ext-pcntl": "*", "ext-posix": "*", - "illuminate/contracts": "^8.17|^9.0|^10.0|^11.0", - "illuminate/queue": "^8.17|^9.0|^10.0|^11.0", - "illuminate/support": "^8.17|^9.0|^10.0|^11.0", + "illuminate/contracts": "^9.21|^10.0|^11.0", + "illuminate/queue": "^9.21|^10.0|^11.0", + "illuminate/support": "^9.21|^10.0|^11.0", "nesbot/carbon": "^2.17|^3.0", - "php": "^7.3|^8.0", + "php": "^8.0", "ramsey/uuid": "^4.0", - "symfony/error-handler": "^5.0|^6.0|^7.0", - "symfony/process": "^5.0|^6.0|^7.0" + "symfony/error-handler": "^6.0|^7.0", + "symfony/process": "^6.0|^7.0" }, "require-dev": { "mockery/mockery": "^1.0", - "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0", + "orchestra/testbench": "^7.0|^8.0|^9.0", "phpstan/phpstan": "^1.10", "phpunit/phpunit": "^9.0|^10.4", "predis/predis": "^1.1|^2.0" @@ -5344,9 +5345,9 @@ ], "support": { "issues": "https://github.com/laravel/horizon/issues", - "source": "https://github.com/laravel/horizon/tree/v5.22.1" + "source": "https://github.com/laravel/horizon/tree/v5.23.0" }, - "time": "2024-01-30T03:04:51+00:00" + "time": "2024-02-12T18:36:34+00:00" }, { "name": "laravel/prompts", @@ -5533,16 +5534,16 @@ }, { "name": "laravel/telescope", - "version": "v4.17.5", + "version": "v4.17.6", "source": { "type": "git", "url": "https://github.com/laravel/telescope.git", - "reference": "2c5295261d1459e4f9b157c407a663a6685f3ddf" + "reference": "2d453dc629b27e8cf39fb1217aba062f8c54e690" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/telescope/zipball/2c5295261d1459e4f9b157c407a663a6685f3ddf", - "reference": "2c5295261d1459e4f9b157c407a663a6685f3ddf", + "url": "https://api.github.com/repos/laravel/telescope/zipball/2d453dc629b27e8cf39fb1217aba062f8c54e690", + "reference": "2d453dc629b27e8cf39fb1217aba062f8c54e690", "shasum": "" }, "require": { @@ -5598,9 +5599,9 @@ ], "support": { "issues": "https://github.com/laravel/telescope/issues", - "source": "https://github.com/laravel/telescope/tree/v4.17.5" + "source": "https://github.com/laravel/telescope/tree/v4.17.6" }, - "time": "2024-01-30T15:41:45+00:00" + "time": "2024-02-08T15:04:38+00:00" }, { "name": "laravel/tinker", @@ -7887,16 +7888,16 @@ }, { "name": "sentry/sentry", - "version": "4.5.0", + "version": "4.6.0", "source": { "type": "git", "url": "https://github.com/getsentry/sentry-php.git", - "reference": "a6e06f0b7a17e7f68e11297427da76bfe01a3ca3" + "reference": "30d98a460ab10f7b7032d76c62da5b1ce6c0765d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/a6e06f0b7a17e7f68e11297427da76bfe01a3ca3", - "reference": "a6e06f0b7a17e7f68e11297427da76bfe01a3ca3", + "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/30d98a460ab10f7b7032d76c62da5b1ce6c0765d", + "reference": "30d98a460ab10f7b7032d76c62da5b1ce6c0765d", "shasum": "" }, "require": { @@ -7960,7 +7961,7 @@ ], "support": { "issues": "https://github.com/getsentry/sentry-php/issues", - "source": "https://github.com/getsentry/sentry-php/tree/4.5.0" + "source": "https://github.com/getsentry/sentry-php/tree/4.6.0" }, "funding": [ { @@ -7972,7 +7973,7 @@ "type": "custom" } ], - "time": "2024-01-29T16:16:10+00:00" + "time": "2024-02-13T11:32:56+00:00" }, { "name": "sentry/sentry-laravel", @@ -11345,36 +11346,36 @@ "packages-dev": [ { "name": "barryvdh/laravel-debugbar", - "version": "v3.9.2", + "version": "v3.10.4", "source": { "type": "git", "url": "https://github.com/barryvdh/laravel-debugbar.git", - "reference": "bfd0131c146973cab164e50f5cdd8a67cc60cab1" + "reference": "09d3dc77d7dc1b063e3728a6029c39ee0fbebf1d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/bfd0131c146973cab164e50f5cdd8a67cc60cab1", - "reference": "bfd0131c146973cab164e50f5cdd8a67cc60cab1", + "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/09d3dc77d7dc1b063e3728a6029c39ee0fbebf1d", + "reference": "09d3dc77d7dc1b063e3728a6029c39ee0fbebf1d", "shasum": "" }, "require": { - "illuminate/routing": "^9|^10", - "illuminate/session": "^9|^10", - "illuminate/support": "^9|^10", - "maximebf/debugbar": "^1.18.2", + "illuminate/routing": "^9|^10|^11", + "illuminate/session": "^9|^10|^11", + "illuminate/support": "^9|^10|^11", + "maximebf/debugbar": "~1.20.1", "php": "^8.0", - "symfony/finder": "^6" + "symfony/finder": "^6|^7" }, "require-dev": { "mockery/mockery": "^1.3.3", - "orchestra/testbench-dusk": "^5|^6|^7|^8", + "orchestra/testbench-dusk": "^5|^6|^7|^8|^9", "phpunit/phpunit": "^8.5.30|^9.0", "squizlabs/php_codesniffer": "^3.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.8-dev" + "dev-master": "3.10-dev" }, "laravel": { "providers": [ @@ -11413,7 +11414,7 @@ ], "support": { "issues": "https://github.com/barryvdh/laravel-debugbar/issues", - "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.9.2" + "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.10.4" }, "funding": [ { @@ -11425,7 +11426,7 @@ "type": "github" } ], - "time": "2023-08-25T18:43:57+00:00" + "time": "2024-02-14T08:52:12+00:00" }, { "name": "brianium/paratest", @@ -12555,22 +12556,22 @@ }, { "name": "maximebf/debugbar", - "version": "v1.19.1", + "version": "v1.20.1", "source": { "type": "git", "url": "https://github.com/maximebf/php-debugbar.git", - "reference": "03dd40a1826f4d585ef93ef83afa2a9874a00523" + "reference": "06ebf922ccedfa4cc43015825697ee8c1fb80f7e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/03dd40a1826f4d585ef93ef83afa2a9874a00523", - "reference": "03dd40a1826f4d585ef93ef83afa2a9874a00523", + "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/06ebf922ccedfa4cc43015825697ee8c1fb80f7e", + "reference": "06ebf922ccedfa4cc43015825697ee8c1fb80f7e", "shasum": "" }, "require": { "php": "^7.1|^8", "psr/log": "^1|^2|^3", - "symfony/var-dumper": "^4|^5|^6" + "symfony/var-dumper": "^4|^5|^6|^7" }, "require-dev": { "phpunit/phpunit": ">=7.5.20 <10.0", @@ -12584,7 +12585,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.18-dev" + "dev-master": "1.20-dev" } }, "autoload": { @@ -12615,9 +12616,9 @@ ], "support": { "issues": "https://github.com/maximebf/php-debugbar/issues", - "source": "https://github.com/maximebf/php-debugbar/tree/v1.19.1" + "source": "https://github.com/maximebf/php-debugbar/tree/v1.20.1" }, - "time": "2023-10-12T08:10:52+00:00" + "time": "2024-02-13T19:03:14+00:00" }, { "name": "mockery/mockery", From be42f1709ab7c199cb74e87ed204f7fb39dc317b Mon Sep 17 00:00:00 2001 From: Abdullahi Abdul Kabir Date: Thu, 15 Feb 2024 13:21:57 +0100 Subject: [PATCH 16/31] update factory --- database/factories/UserFactory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php index d80499477..44f30edab 100644 --- a/database/factories/UserFactory.php +++ b/database/factories/UserFactory.php @@ -15,7 +15,7 @@ class UserFactory extends CoreUserFactory public function definition() { return [ - 'person_id' => Person::factory(), + 'person_id' => Person::factory()->test(), 'group_id' => UserGroup::factory(), 'email' => fn ($attributes) => Person::find($attributes['person_id'])->email, 'role_id' => Role::factory(), From 7e568e8254bb61ec8cee4271a2c0900ef3e7e6ba Mon Sep 17 00:00:00 2001 From: Abdullahi Abdul Kabir Date: Fri, 16 Feb 2024 10:45:41 +0100 Subject: [PATCH 17/31] update --- composer.lock | 60 +++++++++++++++++++++++++-------------------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/composer.lock b/composer.lock index 57dcef657..51d6a4693 100644 --- a/composer.lock +++ b/composer.lock @@ -4097,16 +4097,16 @@ }, { "name": "laravel-enso/people", - "version": "4.3.1", + "version": "4.3.2", "source": { "type": "git", "url": "https://github.com/laravel-enso/people.git", - "reference": "39fa465f57bdcb428517d3d54b2e019af77475e5" + "reference": "07d5d02224196097502da8c1c59152ed0e717e10" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/people/zipball/39fa465f57bdcb428517d3d54b2e019af77475e5", - "reference": "39fa465f57bdcb428517d3d54b2e019af77475e5", + "url": "https://api.github.com/repos/laravel-enso/people/zipball/07d5d02224196097502da8c1c59152ed0e717e10", + "reference": "07d5d02224196097502da8c1c59152ed0e717e10", "shasum": "" }, "require": { @@ -4159,9 +4159,9 @@ ], "support": { "issues": "https://github.com/laravel-enso/people/issues", - "source": "https://github.com/laravel-enso/people/tree/4.3.1" + "source": "https://github.com/laravel-enso/people/tree/4.3.2" }, - "time": "2024-02-05T07:42:49+00:00" + "time": "2024-02-16T07:38:55+00:00" }, { "name": "laravel-enso/permissions", @@ -4603,16 +4603,16 @@ }, { "name": "laravel-enso/tasks", - "version": "2.1.0", + "version": "2.1.1", "source": { "type": "git", "url": "https://github.com/laravel-enso/tasks.git", - "reference": "1323115f6734fbb8242e42eaf814ce3cb7a645c5" + "reference": "4646d563b0b716d446dd8aeacbbfa3317e0b3e64" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/tasks/zipball/1323115f6734fbb8242e42eaf814ce3cb7a645c5", - "reference": "1323115f6734fbb8242e42eaf814ce3cb7a645c5", + "url": "https://api.github.com/repos/laravel-enso/tasks/zipball/4646d563b0b716d446dd8aeacbbfa3317e0b3e64", + "reference": "4646d563b0b716d446dd8aeacbbfa3317e0b3e64", "shasum": "" }, "require": { @@ -4667,9 +4667,9 @@ ], "support": { "issues": "https://github.com/laravel-enso/tasks/issues", - "source": "https://github.com/laravel-enso/tasks/tree/2.1.0" + "source": "https://github.com/laravel-enso/tasks/tree/2.1.1" }, - "time": "2024-01-10T10:22:25+00:00" + "time": "2024-02-16T07:36:30+00:00" }, { "name": "laravel-enso/teams", @@ -4984,16 +4984,16 @@ }, { "name": "laravel-enso/users", - "version": "2.3.1", + "version": "2.3.2", "source": { "type": "git", "url": "https://github.com/laravel-enso/users.git", - "reference": "f9a6701d4d1ea314bf5ea45f02d8a7cf49826793" + "reference": "72550100c27e287280bbe2ff8983802147c8150a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/users/zipball/f9a6701d4d1ea314bf5ea45f02d8a7cf49826793", - "reference": "f9a6701d4d1ea314bf5ea45f02d8a7cf49826793", + "url": "https://api.github.com/repos/laravel-enso/users/zipball/72550100c27e287280bbe2ff8983802147c8150a", + "reference": "72550100c27e287280bbe2ff8983802147c8150a", "shasum": "" }, "require": { @@ -5061,9 +5061,9 @@ ], "support": { "issues": "https://github.com/laravel-enso/users/issues", - "source": "https://github.com/laravel-enso/users/tree/2.3.1" + "source": "https://github.com/laravel-enso/users/tree/2.3.2" }, - "time": "2024-02-15T05:10:35+00:00" + "time": "2024-02-16T07:34:46+00:00" }, { "name": "laravel/framework", @@ -11346,16 +11346,16 @@ "packages-dev": [ { "name": "barryvdh/laravel-debugbar", - "version": "v3.10.4", + "version": "v3.10.5", "source": { "type": "git", "url": "https://github.com/barryvdh/laravel-debugbar.git", - "reference": "09d3dc77d7dc1b063e3728a6029c39ee0fbebf1d" + "reference": "d1a48965f2b25a6cec2eea07d719b568a37c9a88" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/09d3dc77d7dc1b063e3728a6029c39ee0fbebf1d", - "reference": "09d3dc77d7dc1b063e3728a6029c39ee0fbebf1d", + "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/d1a48965f2b25a6cec2eea07d719b568a37c9a88", + "reference": "d1a48965f2b25a6cec2eea07d719b568a37c9a88", "shasum": "" }, "require": { @@ -11414,7 +11414,7 @@ ], "support": { "issues": "https://github.com/barryvdh/laravel-debugbar/issues", - "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.10.4" + "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.10.5" }, "funding": [ { @@ -11426,7 +11426,7 @@ "type": "github" } ], - "time": "2024-02-14T08:52:12+00:00" + "time": "2024-02-15T10:45:45+00:00" }, { "name": "brianium/paratest", @@ -12556,16 +12556,16 @@ }, { "name": "maximebf/debugbar", - "version": "v1.20.1", + "version": "v1.20.2", "source": { "type": "git", "url": "https://github.com/maximebf/php-debugbar.git", - "reference": "06ebf922ccedfa4cc43015825697ee8c1fb80f7e" + "reference": "484625c23a4fa4f303617f29fcacd42951c9c01d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/06ebf922ccedfa4cc43015825697ee8c1fb80f7e", - "reference": "06ebf922ccedfa4cc43015825697ee8c1fb80f7e", + "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/484625c23a4fa4f303617f29fcacd42951c9c01d", + "reference": "484625c23a4fa4f303617f29fcacd42951c9c01d", "shasum": "" }, "require": { @@ -12616,9 +12616,9 @@ ], "support": { "issues": "https://github.com/maximebf/php-debugbar/issues", - "source": "https://github.com/maximebf/php-debugbar/tree/v1.20.1" + "source": "https://github.com/maximebf/php-debugbar/tree/v1.20.2" }, - "time": "2024-02-13T19:03:14+00:00" + "time": "2024-02-15T10:49:09+00:00" }, { "name": "mockery/mockery", From e04242371f69e0740744ec93c938dccef3f09c52 Mon Sep 17 00:00:00 2001 From: Vlad Chiovianu Date: Mon, 26 Feb 2024 18:31:40 +0200 Subject: [PATCH 18/31] laravel 10 updates --- .env.example | 1 + .gitignore | 1 + app/Console/Kernel.php | 4 +- app/Exceptions/Handler.php | 13 +- app/Http/Kernel.php | 5 +- app/Http/Middleware/Authenticate.php | 5 +- .../Middleware/RedirectIfAuthenticated.php | 3 +- app/Http/Middleware/TrustHosts.php | 2 +- app/Providers/AuthServiceProvider.php | 5 - app/Providers/RouteServiceProvider.php | 2 +- app/Upgrades/PasswordResetTokens.php | 31 + app/Upgrades/SancumV3.php | 22 + composer.json | 20 +- composer.lock | 1012 +++++++---------- config/app.php | 32 +- config/auth.php | 2 +- ...create_password_reset_tokens_table.php.php | 21 + ...12_100000_create_password_resets_table.php | 22 - lang/ar.json | 2 +- lang/br.json | 2 +- lang/de.json | 2 +- lang/es.json | 2 +- lang/fr.json | 2 +- lang/hu.json | 2 +- lang/mn.json | 2 +- lang/nl.json | 2 +- lang/ro.json | 2 +- lang/ru.json | 2 +- phpunit.xml | 12 +- public/vendor/horizon/app-dark.css | 10 +- public/vendor/horizon/app.css | 10 +- public/vendor/horizon/app.js | 2 +- public/vendor/horizon/mix-manifest.json | 10 +- public/vendor/telescope/app-dark.css | 11 +- public/vendor/telescope/app.css | 8 +- public/vendor/telescope/app.js | 2 +- public/vendor/telescope/mix-manifest.json | 6 +- storage/debugbar/.gitignore | 2 + 38 files changed, 576 insertions(+), 720 deletions(-) create mode 100644 app/Upgrades/PasswordResetTokens.php create mode 100644 app/Upgrades/SancumV3.php create mode 100644 database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php.php delete mode 100644 database/migrations/2014_10_12_100000_create_password_resets_table.php create mode 100644 storage/debugbar/.gitignore diff --git a/.env.example b/.env.example index 43551374b..341b790f1 100644 --- a/.env.example +++ b/.env.example @@ -3,6 +3,7 @@ APP_ENV=local APP_KEY= APP_DEBUG=true APP_URL=http://localhost +VITE_APP_NAME="${APP_NAME}" OWNER_COMPANY_ID=1 diff --git a/.gitignore b/.gitignore index f42c292e2..fd8cd57c2 100644 --- a/.gitignore +++ b/.gitignore @@ -24,6 +24,7 @@ Homestead.yaml .php_cs.cache npm-debug.log yarn-error.log +.phpunit.cache # code editors /.idea diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index bddc0ad92..96263d404 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -12,7 +12,7 @@ class Kernel extends ConsoleKernel private Schedule $schedule; - protected function schedule(Schedule $schedule) + protected function schedule(Schedule $schedule): void { if (App::runningUnitTests()) { return; @@ -28,7 +28,7 @@ protected function schedule(Schedule $schedule) } } - protected function commands() + protected function commands(): void { $this->load(__DIR__.'/Commands'); diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index 03f49f3d5..5bc482b88 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -20,17 +20,10 @@ class Handler extends ExceptionHandler public function report(Throwable $exception) { - if (App::bound('sentry') && $this->shouldReport($exception)) { - Sentry::report($exception); - } + // if (App::bound('sentry') && $this->shouldReport($exception)) { + // Sentry::report($exception); + // } parent::report($exception); } - - // public function register() - // { - // $this->reportable(function (Throwable $e) { - // - // }); - // } } diff --git a/app/Http/Kernel.php b/app/Http/Kernel.php index 0021d62fc..243a39c3a 100644 --- a/app/Http/Kernel.php +++ b/app/Http/Kernel.php @@ -32,11 +32,11 @@ class Kernel extends HttpKernel 'api' => [ \LaravelEnso\Core\Http\Middleware\EnsureFrontendRequestsAreStateful::class, \Illuminate\Routing\Middleware\SubstituteBindings::class, - 'throttle:api', + \Illuminate\Routing\Middleware\ThrottleRequests::class.':api', ], ]; - protected $routeMiddleware = [ + protected $middlewareAliases = [ 'auth' => \App\Http\Middleware\Authenticate::class, 'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class, 'bindings' => \Illuminate\Routing\Middleware\SubstituteBindings::class, @@ -44,6 +44,7 @@ class Kernel extends HttpKernel 'can' => \Illuminate\Auth\Middleware\Authorize::class, 'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class, 'password.confirm' => \Illuminate\Auth\Middleware\RequirePassword::class, + 'precognitive' => \Illuminate\Foundation\Http\Middleware\HandlePrecognitiveRequests::class, 'signed' => \Illuminate\Routing\Middleware\ValidateSignature::class, 'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class, 'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class, diff --git a/app/Http/Middleware/Authenticate.php b/app/Http/Middleware/Authenticate.php index eb627a4bd..c44a5f298 100644 --- a/app/Http/Middleware/Authenticate.php +++ b/app/Http/Middleware/Authenticate.php @@ -3,11 +3,12 @@ namespace App\Http\Middleware; use Illuminate\Auth\Middleware\Authenticate as Middleware; +use Illuminate\Http\Request; class Authenticate extends Middleware { - protected function redirectTo($request) + protected function redirectTo(Request $request): ?string { - return route('login'); + return $request->expectsJson() ? null : route('login'); } } diff --git a/app/Http/Middleware/RedirectIfAuthenticated.php b/app/Http/Middleware/RedirectIfAuthenticated.php index a73dacef4..39e8f46e4 100644 --- a/app/Http/Middleware/RedirectIfAuthenticated.php +++ b/app/Http/Middleware/RedirectIfAuthenticated.php @@ -6,10 +6,11 @@ use Closure; use Illuminate\Http\Request; use Illuminate\Support\Facades\Auth; +use Symfony\Component\HttpFoundation\Response; class RedirectIfAuthenticated { - public function handle(Request $request, Closure $next, ...$guards) + public function handle(Request $request, Closure $next, string ...$guards): Response { $guards = empty($guards) ? [null] : $guards; diff --git a/app/Http/Middleware/TrustHosts.php b/app/Http/Middleware/TrustHosts.php index 963906460..c897d9c89 100644 --- a/app/Http/Middleware/TrustHosts.php +++ b/app/Http/Middleware/TrustHosts.php @@ -6,7 +6,7 @@ class TrustHosts extends Middleware { - public function hosts() + public function hosts(): array { return [ $this->allSubdomainsOfApplicationUrl(), diff --git a/app/Providers/AuthServiceProvider.php b/app/Providers/AuthServiceProvider.php index 74c6c6fe8..1a39b04ba 100644 --- a/app/Providers/AuthServiceProvider.php +++ b/app/Providers/AuthServiceProvider.php @@ -7,9 +7,4 @@ class AuthServiceProvider extends ServiceProvider { protected $policies = []; - - public function boot() - { - $this->registerPolicies(); - } } diff --git a/app/Providers/RouteServiceProvider.php b/app/Providers/RouteServiceProvider.php index 65be4ac5b..ad9ca3331 100644 --- a/app/Providers/RouteServiceProvider.php +++ b/app/Providers/RouteServiceProvider.php @@ -12,7 +12,7 @@ class RouteServiceProvider extends ServiceProvider { public const HOME = '/'; - public function boot() + public function boot(): void { $this->configureRateLimiting(); diff --git a/app/Upgrades/PasswordResetTokens.php b/app/Upgrades/PasswordResetTokens.php new file mode 100644 index 000000000..9e198a679 --- /dev/null +++ b/app/Upgrades/PasswordResetTokens.php @@ -0,0 +1,31 @@ +whereMigration('2014_10_12_100000_create_password_resets_table') + ->update([ + 'migration' => '2014_10_12_100000_create_password_reset_tokens_table', + ]); + } +} diff --git a/app/Upgrades/SancumV3.php b/app/Upgrades/SancumV3.php new file mode 100644 index 000000000..713d80230 --- /dev/null +++ b/app/Upgrades/SancumV3.php @@ -0,0 +1,22 @@ +timestamp('expires_at')->nullable()->after('last_used_at'); + }); + } +} diff --git a/composer.json b/composer.json index e2dba29fa..61222b1f6 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "laravel-enso/enso", "type": "project", - "description": "Laravel Enso can be a solid start for any SPA based on Laravel 7.x, Vue and Bulma", + "description": "Laravel Enso can be a solid start for any SPA based on Laravel 10.x, Vue and Bulma", "keywords": [ "framework", "laravel" @@ -37,20 +37,24 @@ "require-dev": { "fakerphp/faker": "^1.9.1", "barryvdh/laravel-debugbar": "^3.5", - "brianium/paratest": "^6.3", + "brianium/paratest": "^7.4", "filp/whoops": "^2.1.0", "laravel-enso/cli": "^5.0", - "laravel-enso/phpunit-pretty-print": "^1.0", + "laravel-enso/phpunit-pretty-print": "^1.2", "mockery/mockery": "^1.4.4", - "nunomaduro/collision": "^6.1", + "nunomaduro/collision": "^7.0", "nunomaduro/phpinsights": "dev-master", - "phpunit/phpunit": "^9.5.10", + "phpunit/phpunit": "^10.0", "spatie/laravel-ignition": "^2.0" }, "config": { "optimize-autoloader": true, "preferred-install": "dist", - "sort-packages": true + "sort-packages": true, + "allow-plugins": { + "php-http/discovery": true, + "dealerdirect/phpcodesniffer-composer-installer": true + } }, "extra": { "laravel": { @@ -72,7 +76,7 @@ "LaravelEnso\\Tables\\Tests\\": "vendor/laravel-enso/tables/tests/" } }, - "minimum-stability": "dev", + "minimum-stability": "stable", "prefer-stable": true, "scripts": { "post-autoload-dump": [ @@ -93,4 +97,4 @@ "php artisan enso:upgrade:status" ] } -} +} \ No newline at end of file diff --git a/composer.lock b/composer.lock index 51d6a4693..15f9f43aa 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "a3882c12812af40dcb1801d71b17a5bc", + "content-hash": "9d30e87aa6ab0efbeab9ef1ac5484c7c", "packages": [ { "name": "barryvdh/laravel-snappy", @@ -704,16 +704,16 @@ }, { "name": "doctrine/inflector", - "version": "2.0.9", + "version": "2.0.10", "source": { "type": "git", "url": "https://github.com/doctrine/inflector.git", - "reference": "2930cd5ef353871c821d5c43ed030d39ac8cfe65" + "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/inflector/zipball/2930cd5ef353871c821d5c43ed030d39ac8cfe65", - "reference": "2930cd5ef353871c821d5c43ed030d39ac8cfe65", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc", + "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc", "shasum": "" }, "require": { @@ -775,7 +775,7 @@ ], "support": { "issues": "https://github.com/doctrine/inflector/issues", - "source": "https://github.com/doctrine/inflector/tree/2.0.9" + "source": "https://github.com/doctrine/inflector/tree/2.0.10" }, "funding": [ { @@ -791,7 +791,7 @@ "type": "tidelift" } ], - "time": "2024-01-15T18:05:13+00:00" + "time": "2024-02-18T20:23:39+00:00" }, { "name": "doctrine/lexer", @@ -2142,16 +2142,16 @@ }, { "name": "laravel-enso/calendar", - "version": "3.1.0", + "version": "3.1.2", "source": { "type": "git", "url": "https://github.com/laravel-enso/calendar.git", - "reference": "2de2ca23b6b2de1221883c09e15fadd71ce144a3" + "reference": "ab05f04be0540d26b4935cb60bd002af6148d178" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/calendar/zipball/2de2ca23b6b2de1221883c09e15fadd71ce144a3", - "reference": "2de2ca23b6b2de1221883c09e15fadd71ce144a3", + "url": "https://api.github.com/repos/laravel-enso/calendar/zipball/ab05f04be0540d26b4935cb60bd002af6148d178", + "reference": "ab05f04be0540d26b4935cb60bd002af6148d178", "shasum": "" }, "require": { @@ -2216,9 +2216,9 @@ ], "support": { "issues": "https://github.com/laravel-enso/calendar/issues", - "source": "https://github.com/laravel-enso/calendar/tree/3.1.0" + "source": "https://github.com/laravel-enso/calendar/tree/3.1.2" }, - "time": "2024-01-17T07:25:04+00:00" + "time": "2024-02-22T12:39:20+00:00" }, { "name": "laravel-enso/charts", @@ -5067,16 +5067,16 @@ }, { "name": "laravel/framework", - "version": "v10.44.0", + "version": "v10.45.1", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "1199dbe361787bbe9648131a79f53921b4148cf6" + "reference": "dcf5d1d722b84ad38a5e053289130b6962f830bd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/1199dbe361787bbe9648131a79f53921b4148cf6", - "reference": "1199dbe361787bbe9648131a79f53921b4148cf6", + "url": "https://api.github.com/repos/laravel/framework/zipball/dcf5d1d722b84ad38a5e053289130b6962f830bd", + "reference": "dcf5d1d722b84ad38a5e053289130b6962f830bd", "shasum": "" }, "require": { @@ -5269,20 +5269,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2024-02-13T16:01:16+00:00" + "time": "2024-02-21T14:07:36+00:00" }, { "name": "laravel/horizon", - "version": "v5.23.0", + "version": "v5.23.1", "source": { "type": "git", "url": "https://github.com/laravel/horizon.git", - "reference": "0b1bf46b21c397fdbe80b1ab54451fd227934508" + "reference": "7475de7eb5b465c2da84218002fe1a62b8175da0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/horizon/zipball/0b1bf46b21c397fdbe80b1ab54451fd227934508", - "reference": "0b1bf46b21c397fdbe80b1ab54451fd227934508", + "url": "https://api.github.com/repos/laravel/horizon/zipball/7475de7eb5b465c2da84218002fe1a62b8175da0", + "reference": "7475de7eb5b465c2da84218002fe1a62b8175da0", "shasum": "" }, "require": { @@ -5345,9 +5345,9 @@ ], "support": { "issues": "https://github.com/laravel/horizon/issues", - "source": "https://github.com/laravel/horizon/tree/v5.23.0" + "source": "https://github.com/laravel/horizon/tree/v5.23.1" }, - "time": "2024-02-12T18:36:34+00:00" + "time": "2024-02-20T15:14:10+00:00" }, { "name": "laravel/prompts", @@ -6629,16 +6629,16 @@ }, { "name": "nikic/php-parser", - "version": "v5.0.0", + "version": "v5.0.1", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "4a21235f7e56e713259a6f76bf4b5ea08502b9dc" + "reference": "2218c2252c874a4624ab2f613d86ac32d227bc69" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4a21235f7e56e713259a6f76bf4b5ea08502b9dc", - "reference": "4a21235f7e56e713259a6f76bf4b5ea08502b9dc", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/2218c2252c874a4624ab2f613d86ac32d227bc69", + "reference": "2218c2252c874a4624ab2f613d86ac32d227bc69", "shasum": "" }, "require": { @@ -6681,9 +6681,9 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.0" + "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.1" }, - "time": "2024-01-07T17:17:35+00:00" + "time": "2024-02-21T19:24:10+00:00" }, { "name": "nunomaduro/termwind", @@ -8283,20 +8283,20 @@ }, { "name": "symfony/css-selector", - "version": "v6.4.3", + "version": "v7.0.3", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "ee0f7ed5cf298cc019431bb3b3977ebc52b86229" + "reference": "ec60a4edf94e63b0556b6a0888548bb400a3a3be" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/ee0f7ed5cf298cc019431bb3b3977ebc52b86229", - "reference": "ee0f7ed5cf298cc019431bb3b3977ebc52b86229", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/ec60a4edf94e63b0556b6a0888548bb400a3a3be", + "reference": "ec60a4edf94e63b0556b6a0888548bb400a3a3be", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.2" }, "type": "library", "autoload": { @@ -8328,7 +8328,7 @@ "description": "Converts CSS selectors to XPath expressions", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/css-selector/tree/v6.4.3" + "source": "https://github.com/symfony/css-selector/tree/v7.0.3" }, "funding": [ { @@ -8344,7 +8344,7 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2024-01-23T15:02:46+00:00" }, { "name": "symfony/deprecation-contracts", @@ -8490,24 +8490,24 @@ }, { "name": "symfony/event-dispatcher", - "version": "v6.4.3", + "version": "v7.0.3", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef" + "reference": "834c28d533dd0636f910909d01b9ff45cc094b5e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ae9d3a6f3003a6caf56acd7466d8d52378d44fef", - "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/834c28d533dd0636f910909d01b9ff45cc094b5e", + "reference": "834c28d533dd0636f910909d01b9ff45cc094b5e", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/event-dispatcher-contracts": "^2.5|^3" }, "conflict": { - "symfony/dependency-injection": "<5.4", + "symfony/dependency-injection": "<6.4", "symfony/service-contracts": "<2.5" }, "provide": { @@ -8516,13 +8516,13 @@ }, "require-dev": { "psr/log": "^1|^2|^3", - "symfony/config": "^5.4|^6.0|^7.0", - "symfony/dependency-injection": "^5.4|^6.0|^7.0", - "symfony/error-handler": "^5.4|^6.0|^7.0", - "symfony/expression-language": "^5.4|^6.0|^7.0", - "symfony/http-foundation": "^5.4|^6.0|^7.0", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/error-handler": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", "symfony/service-contracts": "^2.5|^3", - "symfony/stopwatch": "^5.4|^6.0|^7.0" + "symfony/stopwatch": "^6.4|^7.0" }, "type": "library", "autoload": { @@ -8550,7 +8550,7 @@ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.3" + "source": "https://github.com/symfony/event-dispatcher/tree/v7.0.3" }, "funding": [ { @@ -8566,7 +8566,7 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2024-01-23T15:02:46+00:00" }, { "name": "symfony/event-dispatcher-contracts", @@ -9304,20 +9304,20 @@ }, { "name": "symfony/options-resolver", - "version": "v6.4.0", + "version": "v7.0.0", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", - "reference": "22301f0e7fdeaacc14318928612dee79be99860e" + "reference": "700ff4096e346f54cb628ea650767c8130f1001f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/options-resolver/zipball/22301f0e7fdeaacc14318928612dee79be99860e", - "reference": "22301f0e7fdeaacc14318928612dee79be99860e", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/700ff4096e346f54cb628ea650767c8130f1001f", + "reference": "700ff4096e346f54cb628ea650767c8130f1001f", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/deprecation-contracts": "^2.5|^3" }, "type": "library", @@ -9351,7 +9351,7 @@ "options" ], "support": { - "source": "https://github.com/symfony/options-resolver/tree/v6.4.0" + "source": "https://github.com/symfony/options-resolver/tree/v7.0.0" }, "funding": [ { @@ -9367,7 +9367,7 @@ "type": "tidelift" } ], - "time": "2023-08-08T10:16:24+00:00" + "time": "2023-08-08T10:20:21+00:00" }, { "name": "symfony/polyfill-ctype", @@ -10223,36 +10223,36 @@ }, { "name": "symfony/psr-http-message-bridge", - "version": "v6.4.3", + "version": "v7.0.3", "source": { "type": "git", "url": "https://github.com/symfony/psr-http-message-bridge.git", - "reference": "49cfb0223ec64379f7154214dcc1f7c46f3c7a47" + "reference": "d9fadaf9541d7c01c307e48905d7ce1dbee6bf38" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/49cfb0223ec64379f7154214dcc1f7c46f3c7a47", - "reference": "49cfb0223ec64379f7154214dcc1f7c46f3c7a47", + "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/d9fadaf9541d7c01c307e48905d7ce1dbee6bf38", + "reference": "d9fadaf9541d7c01c307e48905d7ce1dbee6bf38", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "psr/http-message": "^1.0|^2.0", - "symfony/http-foundation": "^5.4|^6.0|^7.0" + "symfony/http-foundation": "^6.4|^7.0" }, "conflict": { "php-http/discovery": "<1.15", - "symfony/http-kernel": "<6.2" + "symfony/http-kernel": "<6.4" }, "require-dev": { "nyholm/psr7": "^1.1", "php-http/discovery": "^1.15", "psr/log": "^1.1.4|^2|^3", - "symfony/browser-kit": "^5.4|^6.0|^7.0", - "symfony/config": "^5.4|^6.0|^7.0", - "symfony/event-dispatcher": "^5.4|^6.0|^7.0", - "symfony/framework-bundle": "^6.2|^7.0", - "symfony/http-kernel": "^6.2|^7.0" + "symfony/browser-kit": "^6.4|^7.0", + "symfony/config": "^6.4|^7.0", + "symfony/event-dispatcher": "^6.4|^7.0", + "symfony/framework-bundle": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0" }, "type": "symfony-bridge", "autoload": { @@ -10286,7 +10286,7 @@ "psr-7" ], "support": { - "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.3" + "source": "https://github.com/symfony/psr-http-message-bridge/tree/v7.0.3" }, "funding": [ { @@ -10302,7 +10302,7 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2024-01-23T15:02:46+00:00" }, { "name": "symfony/routing", @@ -10471,20 +10471,20 @@ }, { "name": "symfony/string", - "version": "v6.4.3", + "version": "v7.0.3", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "7a14736fb179876575464e4658fce0c304e8c15b" + "reference": "524aac4a280b90a4420d8d6a040718d0586505ac" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/7a14736fb179876575464e4658fce0c304e8c15b", - "reference": "7a14736fb179876575464e4658fce0c304e8c15b", + "url": "https://api.github.com/repos/symfony/string/zipball/524aac4a280b90a4420d8d6a040718d0586505ac", + "reference": "524aac4a280b90a4420d8d6a040718d0586505ac", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/polyfill-ctype": "~1.8", "symfony/polyfill-intl-grapheme": "~1.0", "symfony/polyfill-intl-normalizer": "~1.0", @@ -10494,11 +10494,11 @@ "symfony/translation-contracts": "<2.5" }, "require-dev": { - "symfony/error-handler": "^5.4|^6.0|^7.0", - "symfony/http-client": "^5.4|^6.0|^7.0", - "symfony/intl": "^6.2|^7.0", + "symfony/error-handler": "^6.4|^7.0", + "symfony/http-client": "^6.4|^7.0", + "symfony/intl": "^6.4|^7.0", "symfony/translation-contracts": "^2.5|^3.0", - "symfony/var-exporter": "^5.4|^6.0|^7.0" + "symfony/var-exporter": "^6.4|^7.0" }, "type": "library", "autoload": { @@ -10537,7 +10537,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v6.4.3" + "source": "https://github.com/symfony/string/tree/v7.0.3" }, "funding": [ { @@ -10553,7 +10553,7 @@ "type": "tidelift" } ], - "time": "2024-01-25T09:26:29+00:00" + "time": "2024-01-29T15:41:16+00:00" }, { "name": "symfony/translation", @@ -11430,16 +11430,16 @@ }, { "name": "brianium/paratest", - "version": "v6.11.0", + "version": "v7.4.3", "source": { "type": "git", "url": "https://github.com/paratestphp/paratest.git", - "reference": "8083a421cee7dad847ee7c464529043ba30de380" + "reference": "64fcfd0e28a6b8078a19dbf9127be2ee645b92ec" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paratestphp/paratest/zipball/8083a421cee7dad847ee7c464529043ba30de380", - "reference": "8083a421cee7dad847ee7c464529043ba30de380", + "url": "https://api.github.com/repos/paratestphp/paratest/zipball/64fcfd0e28a6b8078a19dbf9127be2ee645b92ec", + "reference": "64fcfd0e28a6b8078a19dbf9127be2ee645b92ec", "shasum": "" }, "require": { @@ -11447,25 +11447,27 @@ "ext-pcre": "*", "ext-reflection": "*", "ext-simplexml": "*", - "fidry/cpu-core-counter": "^0.4.1 || ^0.5.1 || ^1.0.0", + "fidry/cpu-core-counter": "^1.1.0", "jean85/pretty-package-versions": "^2.0.5", - "php": "^7.3 || ^8.0", - "phpunit/php-code-coverage": "^9.2.25", - "phpunit/php-file-iterator": "^3.0.6", - "phpunit/php-timer": "^5.0.3", - "phpunit/phpunit": "^9.6.4", - "sebastian/environment": "^5.1.5", - "symfony/console": "^5.4.28 || ^6.3.4 || ^7.0.0", - "symfony/process": "^5.4.28 || ^6.3.4 || ^7.0.0" + "php": "~8.2.0 || ~8.3.0", + "phpunit/php-code-coverage": "^10.1.11 || ^11.0.0", + "phpunit/php-file-iterator": "^4.1.0 || ^5.0.0", + "phpunit/php-timer": "^6.0.0 || ^7.0.0", + "phpunit/phpunit": "^10.5.9 || ^11.0.3", + "sebastian/environment": "^6.0.1 || ^7.0.0", + "symfony/console": "^6.4.3 || ^7.0.3", + "symfony/process": "^6.4.3 || ^7.0.3" }, "require-dev": { "doctrine/coding-standard": "^12.0.0", "ext-pcov": "*", "ext-posix": "*", - "infection/infection": "^0.27.6", - "squizlabs/php_codesniffer": "^3.7.2", - "symfony/filesystem": "^5.4.25 || ^6.3.1 || ^7.0.0", - "vimeo/psalm": "^5.7.7" + "phpstan/phpstan": "^1.10.58", + "phpstan/phpstan-deprecation-rules": "^1.1.4", + "phpstan/phpstan-phpunit": "^1.3.15", + "phpstan/phpstan-strict-rules": "^1.5.2", + "squizlabs/php_codesniffer": "^3.9.0", + "symfony/filesystem": "^6.4.3 || ^7.0.3" }, "bin": [ "bin/paratest", @@ -11506,7 +11508,7 @@ ], "support": { "issues": "https://github.com/paratestphp/paratest/issues", - "source": "https://github.com/paratestphp/paratest/tree/v6.11.0" + "source": "https://github.com/paratestphp/paratest/tree/v7.4.3" }, "funding": [ { @@ -11518,7 +11520,7 @@ "type": "paypal" } ], - "time": "2023-10-31T09:13:57+00:00" + "time": "2024-02-20T07:24:02+00:00" }, { "name": "cmgmyr/phploc", @@ -11881,76 +11883,6 @@ }, "time": "2023-01-05T11:28:13+00:00" }, - { - "name": "doctrine/instantiator", - "version": "2.0.0", - "source": { - "type": "git", - "url": "https://github.com/doctrine/instantiator.git", - "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0", - "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0", - "shasum": "" - }, - "require": { - "php": "^8.1" - }, - "require-dev": { - "doctrine/coding-standard": "^11", - "ext-pdo": "*", - "ext-phar": "*", - "phpbench/phpbench": "^1.2", - "phpstan/phpstan": "^1.9.4", - "phpstan/phpstan-phpunit": "^1.3", - "phpunit/phpunit": "^9.5.27", - "vimeo/psalm": "^5.4" - }, - "type": "library", - "autoload": { - "psr-4": { - "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Marco Pivetta", - "email": "ocramius@gmail.com", - "homepage": "https://ocramius.github.io/" - } - ], - "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", - "homepage": "https://www.doctrine-project.org/projects/instantiator.html", - "keywords": [ - "constructor", - "instantiate" - ], - "support": { - "issues": "https://github.com/doctrine/instantiator/issues", - "source": "https://github.com/doctrine/instantiator/tree/2.0.0" - }, - "funding": [ - { - "url": "https://www.doctrine-project.org/sponsorship.html", - "type": "custom" - }, - { - "url": "https://www.patreon.com/phpdoctrine", - "type": "patreon" - }, - { - "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator", - "type": "tidelift" - } - ], - "time": "2022-12-30T00:23:10+00:00" - }, { "name": "fakerphp/faker", "version": "v1.23.1", @@ -12148,16 +12080,16 @@ }, { "name": "friendsofphp/php-cs-fixer", - "version": "v3.49.0", + "version": "v3.50.0", "source": { "type": "git", "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git", - "reference": "8742f7aa6f72a399688b65e4f58992c2d4681fc2" + "reference": "dbea11dcb6d9a1f6c8d51c0e580ab4a8876f524c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/8742f7aa6f72a399688b65e4f58992c2d4681fc2", - "reference": "8742f7aa6f72a399688b65e4f58992c2d4681fc2", + "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/dbea11dcb6d9a1f6c8d51c0e580ab4a8876f524c", + "reference": "dbea11dcb6d9a1f6c8d51c0e580ab4a8876f524c", "shasum": "" }, "require": { @@ -12167,7 +12099,7 @@ "ext-json": "*", "ext-tokenizer": "*", "php": "^7.4 || ^8.0", - "sebastian/diff": "^4.0 || ^5.0", + "sebastian/diff": "^4.0 || ^5.0 || ^6.0", "symfony/console": "^5.4 || ^6.0 || ^7.0", "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0", "symfony/filesystem": "^5.4 || ^6.0 || ^7.0", @@ -12188,7 +12120,8 @@ "php-cs-fixer/accessible-object": "^1.1", "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4", "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4", - "phpunit/phpunit": "^9.6 || ^10.5.5", + "phpunit/phpunit": "^9.6 || ^10.5.5 || ^11.0.2", + "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0", "symfony/yaml": "^5.4 || ^6.0 || ^7.0" }, "suggest": { @@ -12227,7 +12160,7 @@ ], "support": { "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues", - "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.49.0" + "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.50.0" }, "funding": [ { @@ -12235,7 +12168,7 @@ "type": "github" } ], - "time": "2024-02-02T00:41:40+00:00" + "time": "2024-02-23T23:17:45+00:00" }, { "name": "hamcrest/hamcrest-php", @@ -12419,59 +12352,6 @@ }, "time": "2024-01-17T12:29:04+00:00" }, - { - "name": "laravel-enso/phpunit-pretty-print", - "version": "1.2.0", - "source": { - "type": "git", - "url": "https://github.com/laravel-enso/phpunit-pretty-print.git", - "reference": "3a7fff5765275f010b0305c910e66afa3373a260" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/phpunit-pretty-print/zipball/3a7fff5765275f010b0305c910e66afa3373a260", - "reference": "3a7fff5765275f010b0305c910e66afa3373a260", - "shasum": "" - }, - "require": { - "laravel/framework": "^10.0", - "php": "^8.0", - "phpunit/phpunit": "^9.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "LaravelEnso\\PHPUnitPrettyPrint\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Adrian Ocneanu", - "email": "aocneanu@gmail.com", - "homepage": "https://laravel-enso.com", - "role": "Developer" - } - ], - "description": "PHPUnit Pretty Print for Laravel", - "homepage": "https://github.com/laravel-enso/PHPUnitPrettyPrint", - "keywords": [ - "laravel", - "laravel-enso", - "phpunit", - "phpunit-pretty-print", - "pretty-print", - "validator" - ], - "support": { - "issues": "https://github.com/laravel-enso/phpunit-pretty-print/issues", - "source": "https://github.com/laravel-enso/phpunit-pretty-print/tree/1.2.0" - }, - "time": "2024-01-31T13:27:44+00:00" - }, { "name": "league/container", "version": "4.2.0", @@ -12764,38 +12644,43 @@ }, { "name": "nunomaduro/collision", - "version": "v6.4.0", + "version": "v7.10.0", "source": { "type": "git", "url": "https://github.com/nunomaduro/collision.git", - "reference": "f05978827b9343cba381ca05b8c7deee346b6015" + "reference": "49ec67fa7b002712da8526678abd651c09f375b2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f05978827b9343cba381ca05b8c7deee346b6015", - "reference": "f05978827b9343cba381ca05b8c7deee346b6015", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/49ec67fa7b002712da8526678abd651c09f375b2", + "reference": "49ec67fa7b002712da8526678abd651c09f375b2", "shasum": "" }, "require": { - "filp/whoops": "^2.14.5", - "php": "^8.0.0", - "symfony/console": "^6.0.2" + "filp/whoops": "^2.15.3", + "nunomaduro/termwind": "^1.15.1", + "php": "^8.1.0", + "symfony/console": "^6.3.4" + }, + "conflict": { + "laravel/framework": ">=11.0.0" }, "require-dev": { - "brianium/paratest": "^6.4.1", - "laravel/framework": "^9.26.1", - "laravel/pint": "^1.1.1", - "nunomaduro/larastan": "^1.0.3", - "nunomaduro/mock-final-classes": "^1.1.0", - "orchestra/testbench": "^7.7", - "phpunit/phpunit": "^9.5.23", - "spatie/ignition": "^1.4.1" + "brianium/paratest": "^7.3.0", + "laravel/framework": "^10.28.0", + "laravel/pint": "^1.13.3", + "laravel/sail": "^1.25.0", + "laravel/sanctum": "^3.3.1", + "laravel/tinker": "^2.8.2", + "nunomaduro/larastan": "^2.6.4", + "orchestra/testbench-core": "^8.13.0", + "pestphp/pest": "^2.23.2", + "phpunit/phpunit": "^10.4.1", + "sebastian/environment": "^6.0.1", + "spatie/laravel-ignition": "^2.3.1" }, "type": "library", "extra": { - "branch-alias": { - "dev-develop": "6.x-dev" - }, "laravel": { "providers": [ "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider" @@ -12803,6 +12688,9 @@ } }, "autoload": { + "files": [ + "./src/Adapters/Phpunit/Autoload.php" + ], "psr-4": { "NunoMaduro\\Collision\\": "src/" } @@ -12848,7 +12736,7 @@ "type": "patreon" } ], - "time": "2023-01-03T12:54:54+00:00" + "time": "2023-10-11T15:45:01+00:00" }, { "name": "nunomaduro/phpinsights", @@ -13127,16 +13015,16 @@ }, { "name": "phpstan/phpdoc-parser", - "version": "1.25.0", + "version": "1.26.0", "source": { "type": "git", "url": "https://github.com/phpstan/phpdoc-parser.git", - "reference": "bd84b629c8de41aa2ae82c067c955e06f1b00240" + "reference": "231e3186624c03d7e7c890ec662b81e6b0405227" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/bd84b629c8de41aa2ae82c067c955e06f1b00240", - "reference": "bd84b629c8de41aa2ae82c067c955e06f1b00240", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/231e3186624c03d7e7c890ec662b81e6b0405227", + "reference": "231e3186624c03d7e7c890ec662b81e6b0405227", "shasum": "" }, "require": { @@ -13168,22 +13056,22 @@ "description": "PHPDoc parser with support for nullable, intersection and generic types", "support": { "issues": "https://github.com/phpstan/phpdoc-parser/issues", - "source": "https://github.com/phpstan/phpdoc-parser/tree/1.25.0" + "source": "https://github.com/phpstan/phpdoc-parser/tree/1.26.0" }, - "time": "2024-01-04T17:06:16+00:00" + "time": "2024-02-23T16:05:55+00:00" }, { "name": "phpunit/php-code-coverage", - "version": "9.2.30", + "version": "10.1.11", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089" + "reference": "78c3b7625965c2513ee96569a4dbb62601784145" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ca2bd87d2f9215904682a9cb9bb37dda98e76089", - "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/78c3b7625965c2513ee96569a4dbb62601784145", + "reference": "78c3b7625965c2513ee96569a4dbb62601784145", "shasum": "" }, "require": { @@ -13191,18 +13079,18 @@ "ext-libxml": "*", "ext-xmlwriter": "*", "nikic/php-parser": "^4.18 || ^5.0", - "php": ">=7.3", - "phpunit/php-file-iterator": "^3.0.3", - "phpunit/php-text-template": "^2.0.2", - "sebastian/code-unit-reverse-lookup": "^2.0.2", - "sebastian/complexity": "^2.0", - "sebastian/environment": "^5.1.2", - "sebastian/lines-of-code": "^1.0.3", - "sebastian/version": "^3.0.1", + "php": ">=8.1", + "phpunit/php-file-iterator": "^4.0", + "phpunit/php-text-template": "^3.0", + "sebastian/code-unit-reverse-lookup": "^3.0", + "sebastian/complexity": "^3.0", + "sebastian/environment": "^6.0", + "sebastian/lines-of-code": "^2.0", + "sebastian/version": "^4.0", "theseer/tokenizer": "^1.2.0" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.1" }, "suggest": { "ext-pcov": "PHP extension that provides line coverage", @@ -13211,7 +13099,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "9.2-dev" + "dev-main": "10.1-dev" } }, "autoload": { @@ -13240,7 +13128,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", - "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.30" + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.11" }, "funding": [ { @@ -13248,32 +13136,32 @@ "type": "github" } ], - "time": "2023-12-22T06:47:57+00:00" + "time": "2023-12-21T15:38:30+00:00" }, { "name": "phpunit/php-file-iterator", - "version": "3.0.6", + "version": "4.1.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-file-iterator.git", - "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf" + "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", - "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c", + "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-main": "4.0-dev" } }, "autoload": { @@ -13300,7 +13188,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", - "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6" + "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy", + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0" }, "funding": [ { @@ -13308,28 +13197,28 @@ "type": "github" } ], - "time": "2021-12-02T12:48:52+00:00" + "time": "2023-08-31T06:24:48+00:00" }, { "name": "phpunit/php-invoker", - "version": "3.1.1", + "version": "4.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-invoker.git", - "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67" + "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67", - "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7", + "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { "ext-pcntl": "*", - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "suggest": { "ext-pcntl": "*" @@ -13337,7 +13226,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.1-dev" + "dev-main": "4.0-dev" } }, "autoload": { @@ -13363,7 +13252,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-invoker/issues", - "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1" + "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0" }, "funding": [ { @@ -13371,32 +13260,32 @@ "type": "github" } ], - "time": "2020-09-28T05:58:55+00:00" + "time": "2023-02-03T06:56:09+00:00" }, { "name": "phpunit/php-text-template", - "version": "2.0.4", + "version": "3.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-text-template.git", - "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28" + "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", - "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748", + "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-main": "3.0-dev" } }, "autoload": { @@ -13422,7 +13311,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-text-template/issues", - "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4" + "security": "https://github.com/sebastianbergmann/php-text-template/security/policy", + "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1" }, "funding": [ { @@ -13430,32 +13320,32 @@ "type": "github" } ], - "time": "2020-10-26T05:33:50+00:00" + "time": "2023-08-31T14:07:24+00:00" }, { "name": "phpunit/php-timer", - "version": "5.0.3", + "version": "6.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-timer.git", - "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2" + "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", - "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d", + "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "5.0-dev" + "dev-main": "6.0-dev" } }, "autoload": { @@ -13481,7 +13371,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-timer/issues", - "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3" + "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0" }, "funding": [ { @@ -13489,24 +13379,23 @@ "type": "github" } ], - "time": "2020-10-26T13:16:10+00:00" + "time": "2023-02-03T06:57:52+00:00" }, { "name": "phpunit/phpunit", - "version": "9.6.16", + "version": "10.5.11", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "3767b2c56ce02d01e3491046f33466a1ae60a37f" + "reference": "0d968f6323deb3dbfeba5bfd4929b9415eb7a9a4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/3767b2c56ce02d01e3491046f33466a1ae60a37f", - "reference": "3767b2c56ce02d01e3491046f33466a1ae60a37f", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0d968f6323deb3dbfeba5bfd4929b9415eb7a9a4", + "reference": "0d968f6323deb3dbfeba5bfd4929b9415eb7a9a4", "shasum": "" }, "require": { - "doctrine/instantiator": "^1.3.1 || ^2", "ext-dom": "*", "ext-json": "*", "ext-libxml": "*", @@ -13516,27 +13405,26 @@ "myclabs/deep-copy": "^1.10.1", "phar-io/manifest": "^2.0.3", "phar-io/version": "^3.0.2", - "php": ">=7.3", - "phpunit/php-code-coverage": "^9.2.28", - "phpunit/php-file-iterator": "^3.0.5", - "phpunit/php-invoker": "^3.1.1", - "phpunit/php-text-template": "^2.0.3", - "phpunit/php-timer": "^5.0.2", - "sebastian/cli-parser": "^1.0.1", - "sebastian/code-unit": "^1.0.6", - "sebastian/comparator": "^4.0.8", - "sebastian/diff": "^4.0.3", - "sebastian/environment": "^5.1.3", - "sebastian/exporter": "^4.0.5", - "sebastian/global-state": "^5.0.1", - "sebastian/object-enumerator": "^4.0.3", - "sebastian/resource-operations": "^3.0.3", - "sebastian/type": "^3.2", - "sebastian/version": "^3.0.2" + "php": ">=8.1", + "phpunit/php-code-coverage": "^10.1.5", + "phpunit/php-file-iterator": "^4.0", + "phpunit/php-invoker": "^4.0", + "phpunit/php-text-template": "^3.0", + "phpunit/php-timer": "^6.0", + "sebastian/cli-parser": "^2.0", + "sebastian/code-unit": "^2.0", + "sebastian/comparator": "^5.0", + "sebastian/diff": "^5.0", + "sebastian/environment": "^6.0", + "sebastian/exporter": "^5.1", + "sebastian/global-state": "^6.0.1", + "sebastian/object-enumerator": "^5.0", + "sebastian/recursion-context": "^5.0", + "sebastian/type": "^4.0", + "sebastian/version": "^4.0" }, "suggest": { - "ext-soap": "To be able to generate mocks based on WSDL files", - "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" + "ext-soap": "To be able to generate mocks based on WSDL files" }, "bin": [ "phpunit" @@ -13544,7 +13432,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "9.6-dev" + "dev-main": "10.5-dev" } }, "autoload": { @@ -13576,7 +13464,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.16" + "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.11" }, "funding": [ { @@ -13592,32 +13480,32 @@ "type": "tidelift" } ], - "time": "2024-01-19T07:03:14+00:00" + "time": "2024-02-25T14:05:00+00:00" }, { "name": "sebastian/cli-parser", - "version": "1.0.1", + "version": "2.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/cli-parser.git", - "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2" + "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2", - "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2", + "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/efdc130dbbbb8ef0b545a994fd811725c5282cae", + "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-main": "2.0-dev" } }, "autoload": { @@ -13640,7 +13528,7 @@ "homepage": "https://github.com/sebastianbergmann/cli-parser", "support": { "issues": "https://github.com/sebastianbergmann/cli-parser/issues", - "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1" + "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.0" }, "funding": [ { @@ -13648,32 +13536,32 @@ "type": "github" } ], - "time": "2020-09-28T06:08:49+00:00" + "time": "2023-02-03T06:58:15+00:00" }, { "name": "sebastian/code-unit", - "version": "1.0.8", + "version": "2.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/code-unit.git", - "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120" + "reference": "a81fee9eef0b7a76af11d121767abc44c104e503" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120", - "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503", + "reference": "a81fee9eef0b7a76af11d121767abc44c104e503", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-main": "2.0-dev" } }, "autoload": { @@ -13696,7 +13584,7 @@ "homepage": "https://github.com/sebastianbergmann/code-unit", "support": { "issues": "https://github.com/sebastianbergmann/code-unit/issues", - "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8" + "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0" }, "funding": [ { @@ -13704,32 +13592,32 @@ "type": "github" } ], - "time": "2020-10-26T13:08:54+00:00" + "time": "2023-02-03T06:58:43+00:00" }, { "name": "sebastian/code-unit-reverse-lookup", - "version": "2.0.3", + "version": "3.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", - "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5" + "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", - "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d", + "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-main": "3.0-dev" } }, "autoload": { @@ -13751,7 +13639,7 @@ "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", "support": { "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", - "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3" + "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0" }, "funding": [ { @@ -13759,34 +13647,36 @@ "type": "github" } ], - "time": "2020-09-28T05:30:19+00:00" + "time": "2023-02-03T06:59:15+00:00" }, { "name": "sebastian/comparator", - "version": "4.0.8", + "version": "5.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "fa0f136dd2334583309d32b62544682ee972b51a" + "reference": "2db5010a484d53ebf536087a70b4a5423c102372" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a", - "reference": "fa0f136dd2334583309d32b62544682ee972b51a", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372", + "reference": "2db5010a484d53ebf536087a70b4a5423c102372", "shasum": "" }, "require": { - "php": ">=7.3", - "sebastian/diff": "^4.0", - "sebastian/exporter": "^4.0" + "ext-dom": "*", + "ext-mbstring": "*", + "php": ">=8.1", + "sebastian/diff": "^5.0", + "sebastian/exporter": "^5.0" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-main": "5.0-dev" } }, "autoload": { @@ -13825,7 +13715,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/comparator/issues", - "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8" + "security": "https://github.com/sebastianbergmann/comparator/security/policy", + "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1" }, "funding": [ { @@ -13833,33 +13724,33 @@ "type": "github" } ], - "time": "2022-09-14T12:41:17+00:00" + "time": "2023-08-14T13:18:12+00:00" }, { "name": "sebastian/complexity", - "version": "2.0.3", + "version": "3.2.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/complexity.git", - "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a" + "reference": "68ff824baeae169ec9f2137158ee529584553799" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a", - "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799", + "reference": "68ff824baeae169ec9f2137158ee529584553799", "shasum": "" }, "require": { "nikic/php-parser": "^4.18 || ^5.0", - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-main": "3.2-dev" } }, "autoload": { @@ -13882,7 +13773,8 @@ "homepage": "https://github.com/sebastianbergmann/complexity", "support": { "issues": "https://github.com/sebastianbergmann/complexity/issues", - "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3" + "security": "https://github.com/sebastianbergmann/complexity/security/policy", + "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0" }, "funding": [ { @@ -13890,33 +13782,33 @@ "type": "github" } ], - "time": "2023-12-22T06:19:30+00:00" + "time": "2023-12-21T08:37:17+00:00" }, { "name": "sebastian/diff", - "version": "4.0.5", + "version": "5.1.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131" + "reference": "fbf413a49e54f6b9b17e12d900ac7f6101591b7f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131", - "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/fbf413a49e54f6b9b17e12d900ac7f6101591b7f", + "reference": "fbf413a49e54f6b9b17e12d900ac7f6101591b7f", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3", + "phpunit/phpunit": "^10.0", "symfony/process": "^4.2 || ^5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-main": "5.1-dev" } }, "autoload": { @@ -13948,7 +13840,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/diff/issues", - "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5" + "security": "https://github.com/sebastianbergmann/diff/security/policy", + "source": "https://github.com/sebastianbergmann/diff/tree/5.1.0" }, "funding": [ { @@ -13956,27 +13849,27 @@ "type": "github" } ], - "time": "2023-05-07T05:35:17+00:00" + "time": "2023-12-22T10:55:06+00:00" }, { "name": "sebastian/environment", - "version": "5.1.5", + "version": "6.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/environment.git", - "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed" + "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", - "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/43c751b41d74f96cbbd4e07b7aec9675651e2951", + "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "suggest": { "ext-posix": "*" @@ -13984,7 +13877,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "5.1-dev" + "dev-main": "6.0-dev" } }, "autoload": { @@ -14003,7 +13896,7 @@ } ], "description": "Provides functionality to handle HHVM/PHP environments", - "homepage": "http://www.github.com/sebastianbergmann/environment", + "homepage": "https://github.com/sebastianbergmann/environment", "keywords": [ "Xdebug", "environment", @@ -14011,7 +13904,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/environment/issues", - "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5" + "security": "https://github.com/sebastianbergmann/environment/security/policy", + "source": "https://github.com/sebastianbergmann/environment/tree/6.0.1" }, "funding": [ { @@ -14019,34 +13913,34 @@ "type": "github" } ], - "time": "2023-02-03T06:03:51+00:00" + "time": "2023-04-11T05:39:26+00:00" }, { "name": "sebastian/exporter", - "version": "4.0.5", + "version": "5.1.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d" + "reference": "64f51654862e0f5e318db7e9dcc2292c63cdbddc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", - "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/64f51654862e0f5e318db7e9dcc2292c63cdbddc", + "reference": "64f51654862e0f5e318db7e9dcc2292c63cdbddc", "shasum": "" }, "require": { - "php": ">=7.3", - "sebastian/recursion-context": "^4.0" + "ext-mbstring": "*", + "php": ">=8.1", + "sebastian/recursion-context": "^5.0" }, "require-dev": { - "ext-mbstring": "*", - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-main": "5.1-dev" } }, "autoload": { @@ -14088,7 +13982,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/exporter/issues", - "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5" + "security": "https://github.com/sebastianbergmann/exporter/security/policy", + "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.1" }, "funding": [ { @@ -14096,38 +13991,35 @@ "type": "github" } ], - "time": "2022-09-14T06:03:37+00:00" + "time": "2023-09-24T13:22:09+00:00" }, { "name": "sebastian/global-state", - "version": "5.0.6", + "version": "6.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/global-state.git", - "reference": "bde739e7565280bda77be70044ac1047bc007e34" + "reference": "7ea9ead78f6d380d2a667864c132c2f7b83055e4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34", - "reference": "bde739e7565280bda77be70044ac1047bc007e34", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/7ea9ead78f6d380d2a667864c132c2f7b83055e4", + "reference": "7ea9ead78f6d380d2a667864c132c2f7b83055e4", "shasum": "" }, "require": { - "php": ">=7.3", - "sebastian/object-reflector": "^2.0", - "sebastian/recursion-context": "^4.0" + "php": ">=8.1", + "sebastian/object-reflector": "^3.0", + "sebastian/recursion-context": "^5.0" }, "require-dev": { "ext-dom": "*", - "phpunit/phpunit": "^9.3" - }, - "suggest": { - "ext-uopz": "*" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "5.0-dev" + "dev-main": "6.0-dev" } }, "autoload": { @@ -14152,7 +14044,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/global-state/issues", - "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6" + "security": "https://github.com/sebastianbergmann/global-state/security/policy", + "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.1" }, "funding": [ { @@ -14160,33 +14053,33 @@ "type": "github" } ], - "time": "2023-08-02T09:26:13+00:00" + "time": "2023-07-19T07:19:23+00:00" }, { "name": "sebastian/lines-of-code", - "version": "1.0.4", + "version": "2.0.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/lines-of-code.git", - "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5" + "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5", - "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0", + "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0", "shasum": "" }, "require": { "nikic/php-parser": "^4.18 || ^5.0", - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-main": "2.0-dev" } }, "autoload": { @@ -14209,7 +14102,8 @@ "homepage": "https://github.com/sebastianbergmann/lines-of-code", "support": { "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", - "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4" + "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy", + "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2" }, "funding": [ { @@ -14217,34 +14111,34 @@ "type": "github" } ], - "time": "2023-12-22T06:20:34+00:00" + "time": "2023-12-21T08:38:20+00:00" }, { "name": "sebastian/object-enumerator", - "version": "4.0.4", + "version": "5.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/object-enumerator.git", - "reference": "5c9eeac41b290a3712d88851518825ad78f45c71" + "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71", - "reference": "5c9eeac41b290a3712d88851518825ad78f45c71", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906", + "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906", "shasum": "" }, "require": { - "php": ">=7.3", - "sebastian/object-reflector": "^2.0", - "sebastian/recursion-context": "^4.0" + "php": ">=8.1", + "sebastian/object-reflector": "^3.0", + "sebastian/recursion-context": "^5.0" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-main": "5.0-dev" } }, "autoload": { @@ -14266,7 +14160,7 @@ "homepage": "https://github.com/sebastianbergmann/object-enumerator/", "support": { "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", - "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4" + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0" }, "funding": [ { @@ -14274,32 +14168,32 @@ "type": "github" } ], - "time": "2020-10-26T13:12:34+00:00" + "time": "2023-02-03T07:08:32+00:00" }, { "name": "sebastian/object-reflector", - "version": "2.0.4", + "version": "3.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/object-reflector.git", - "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7" + "reference": "24ed13d98130f0e7122df55d06c5c4942a577957" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", - "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957", + "reference": "24ed13d98130f0e7122df55d06c5c4942a577957", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-main": "3.0-dev" } }, "autoload": { @@ -14321,7 +14215,7 @@ "homepage": "https://github.com/sebastianbergmann/object-reflector/", "support": { "issues": "https://github.com/sebastianbergmann/object-reflector/issues", - "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4" + "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0" }, "funding": [ { @@ -14329,32 +14223,32 @@ "type": "github" } ], - "time": "2020-10-26T13:14:26+00:00" + "time": "2023-02-03T07:06:18+00:00" }, { "name": "sebastian/recursion-context", - "version": "4.0.5", + "version": "5.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/recursion-context.git", - "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1" + "reference": "05909fb5bc7df4c52992396d0116aed689f93712" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", - "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712", + "reference": "05909fb5bc7df4c52992396d0116aed689f93712", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-main": "5.0-dev" } }, "autoload": { @@ -14384,62 +14278,7 @@ "homepage": "https://github.com/sebastianbergmann/recursion-context", "support": { "issues": "https://github.com/sebastianbergmann/recursion-context/issues", - "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5" - }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - } - ], - "time": "2023-02-03T06:07:39+00:00" - }, - { - "name": "sebastian/resource-operations", - "version": "3.0.3", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/resource-operations.git", - "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", - "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", - "shasum": "" - }, - "require": { - "php": ">=7.3" - }, - "require-dev": { - "phpunit/phpunit": "^9.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.0-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - } - ], - "description": "Provides a list of PHP built-in functions that operate on resources", - "homepage": "https://www.github.com/sebastianbergmann/resource-operations", - "support": { - "issues": "https://github.com/sebastianbergmann/resource-operations/issues", - "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3" + "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0" }, "funding": [ { @@ -14447,32 +14286,32 @@ "type": "github" } ], - "time": "2020-09-28T06:45:17+00:00" + "time": "2023-02-03T07:05:40+00:00" }, { "name": "sebastian/type", - "version": "3.2.1", + "version": "4.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/type.git", - "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7" + "reference": "462699a16464c3944eefc02ebdd77882bd3925bf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", - "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf", + "reference": "462699a16464c3944eefc02ebdd77882bd3925bf", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.5" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.2-dev" + "dev-main": "4.0-dev" } }, "autoload": { @@ -14495,7 +14334,7 @@ "homepage": "https://github.com/sebastianbergmann/type", "support": { "issues": "https://github.com/sebastianbergmann/type/issues", - "source": "https://github.com/sebastianbergmann/type/tree/3.2.1" + "source": "https://github.com/sebastianbergmann/type/tree/4.0.0" }, "funding": [ { @@ -14503,29 +14342,29 @@ "type": "github" } ], - "time": "2023-02-03T06:13:03+00:00" + "time": "2023-02-03T07:10:45+00:00" }, { "name": "sebastian/version", - "version": "3.0.2", + "version": "4.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/version.git", - "reference": "c6c1022351a901512170118436c764e473f6de8c" + "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c", - "reference": "c6c1022351a901512170118436c764e473f6de8c", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17", + "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-main": "4.0-dev" } }, "autoload": { @@ -14548,7 +14387,7 @@ "homepage": "https://github.com/sebastianbergmann/version", "support": { "issues": "https://github.com/sebastianbergmann/version/issues", - "source": "https://github.com/sebastianbergmann/version/tree/3.0.2" + "source": "https://github.com/sebastianbergmann/version/tree/4.0.1" }, "funding": [ { @@ -14556,7 +14395,7 @@ "type": "github" } ], - "time": "2020-09-28T06:39:44+00:00" + "time": "2023-02-07T11:34:05+00:00" }, { "name": "slevomat/coding-standard", @@ -14931,16 +14770,16 @@ }, { "name": "squizlabs/php_codesniffer", - "version": "3.8.1", + "version": "3.9.0", "source": { "type": "git", "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git", - "reference": "14f5fff1e64118595db5408e946f3a22c75807f7" + "reference": "d63cee4890a8afaf86a22e51ad4d97c91dd4579b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/14f5fff1e64118595db5408e946f3a22c75807f7", - "reference": "14f5fff1e64118595db5408e946f3a22c75807f7", + "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/d63cee4890a8afaf86a22e51ad4d97c91dd4579b", + "reference": "d63cee4890a8afaf86a22e51ad4d97c91dd4579b", "shasum": "" }, "require": { @@ -15007,35 +14846,35 @@ "type": "open_collective" } ], - "time": "2024-01-11T20:47:48+00:00" + "time": "2024-02-16T15:06:51+00:00" }, { "name": "symfony/cache", - "version": "v6.4.3", + "version": "v7.0.3", "source": { "type": "git", "url": "https://github.com/symfony/cache.git", - "reference": "49f8cdee544a621a621cd21b6cda32a38926d310" + "reference": "2207eceb2433d74df81232d97439bf508cb9e050" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/cache/zipball/49f8cdee544a621a621cd21b6cda32a38926d310", - "reference": "49f8cdee544a621a621cd21b6cda32a38926d310", + "url": "https://api.github.com/repos/symfony/cache/zipball/2207eceb2433d74df81232d97439bf508cb9e050", + "reference": "2207eceb2433d74df81232d97439bf508cb9e050", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "psr/cache": "^2.0|^3.0", "psr/log": "^1.1|^2|^3", "symfony/cache-contracts": "^2.5|^3", "symfony/service-contracts": "^2.5|^3", - "symfony/var-exporter": "^6.3.6|^7.0" + "symfony/var-exporter": "^6.4|^7.0" }, "conflict": { - "doctrine/dbal": "<2.13.1", - "symfony/dependency-injection": "<5.4", - "symfony/http-kernel": "<5.4", - "symfony/var-dumper": "<5.4" + "doctrine/dbal": "<3.6", + "symfony/dependency-injection": "<6.4", + "symfony/http-kernel": "<6.4", + "symfony/var-dumper": "<6.4" }, "provide": { "psr/cache-implementation": "2.0|3.0", @@ -15044,15 +14883,15 @@ }, "require-dev": { "cache/integration-tests": "dev-master", - "doctrine/dbal": "^2.13.1|^3|^4", + "doctrine/dbal": "^3.6|^4", "predis/predis": "^1.1|^2.0", "psr/simple-cache": "^1.0|^2.0|^3.0", - "symfony/config": "^5.4|^6.0|^7.0", - "symfony/dependency-injection": "^5.4|^6.0|^7.0", - "symfony/filesystem": "^5.4|^6.0|^7.0", - "symfony/http-kernel": "^5.4|^6.0|^7.0", - "symfony/messenger": "^5.4|^6.0|^7.0", - "symfony/var-dumper": "^5.4|^6.0|^7.0" + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/filesystem": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/messenger": "^6.4|^7.0", + "symfony/var-dumper": "^6.4|^7.0" }, "type": "library", "autoload": { @@ -15087,7 +14926,7 @@ "psr6" ], "support": { - "source": "https://github.com/symfony/cache/tree/v6.4.3" + "source": "https://github.com/symfony/cache/tree/v7.0.3" }, "funding": [ { @@ -15103,7 +14942,7 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2024-01-23T15:02:46+00:00" }, { "name": "symfony/cache-contracts", @@ -15183,20 +15022,20 @@ }, { "name": "symfony/filesystem", - "version": "v6.4.3", + "version": "v7.0.3", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb" + "reference": "2890e3a825bc0c0558526c04499c13f83e1b6b12" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb", - "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/2890e3a825bc0c0558526c04499c13f83e1b6b12", + "reference": "2890e3a825bc0c0558526c04499c13f83e1b6b12", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/polyfill-ctype": "~1.8", "symfony/polyfill-mbstring": "~1.8" }, @@ -15226,7 +15065,7 @@ "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/filesystem/tree/v6.4.3" + "source": "https://github.com/symfony/filesystem/tree/v7.0.3" }, "funding": [ { @@ -15242,7 +15081,7 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2024-01-23T15:02:46+00:00" }, { "name": "symfony/polyfill-php81", @@ -15322,20 +15161,20 @@ }, { "name": "symfony/stopwatch", - "version": "v6.4.3", + "version": "v7.0.3", "source": { "type": "git", "url": "https://github.com/symfony/stopwatch.git", - "reference": "416596166641f1f728b0a64f5b9dd07cceb410c1" + "reference": "983900d6fddf2b0cbaacacbbad07610854bd8112" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/stopwatch/zipball/416596166641f1f728b0a64f5b9dd07cceb410c1", - "reference": "416596166641f1f728b0a64f5b9dd07cceb410c1", + "url": "https://api.github.com/repos/symfony/stopwatch/zipball/983900d6fddf2b0cbaacacbbad07610854bd8112", + "reference": "983900d6fddf2b0cbaacacbbad07610854bd8112", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/service-contracts": "^2.5|^3" }, "type": "library", @@ -15364,7 +15203,7 @@ "description": "Provides a way to profile code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/stopwatch/tree/v6.4.3" + "source": "https://github.com/symfony/stopwatch/tree/v7.0.3" }, "funding": [ { @@ -15380,28 +15219,27 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:35:58+00:00" + "time": "2024-01-23T15:02:46+00:00" }, { "name": "symfony/var-exporter", - "version": "v6.4.3", + "version": "v7.0.3", "source": { "type": "git", "url": "https://github.com/symfony/var-exporter.git", - "reference": "a8c12b5448a5ac685347f5eeb2abf6a571ec16b8" + "reference": "1fb79308cb5fc2b44bff6e8af10a5af6812e05b8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-exporter/zipball/a8c12b5448a5ac685347f5eeb2abf6a571ec16b8", - "reference": "a8c12b5448a5ac685347f5eeb2abf6a571ec16b8", + "url": "https://api.github.com/repos/symfony/var-exporter/zipball/1fb79308cb5fc2b44bff6e8af10a5af6812e05b8", + "reference": "1fb79308cb5fc2b44bff6e8af10a5af6812e05b8", "shasum": "" }, "require": { - "php": ">=8.1", - "symfony/deprecation-contracts": "^2.5|^3" + "php": ">=8.2" }, "require-dev": { - "symfony/var-dumper": "^5.4|^6.0|^7.0" + "symfony/var-dumper": "^6.4|^7.0" }, "type": "library", "autoload": { @@ -15439,7 +15277,7 @@ "serialize" ], "support": { - "source": "https://github.com/symfony/var-exporter/tree/v6.4.3" + "source": "https://github.com/symfony/var-exporter/tree/v7.0.3" }, "funding": [ { @@ -15455,7 +15293,7 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2024-01-23T15:02:46+00:00" }, { "name": "theseer/tokenizer", @@ -15509,7 +15347,7 @@ } ], "aliases": [], - "minimum-stability": "dev", + "minimum-stability": "stable", "stability-flags": { "nunomaduro/phpinsights": 20 }, @@ -15519,5 +15357,5 @@ "php": "^8.0" }, "platform-dev": [], - "plugin-api-version": "2.6.0" + "plugin-api-version": "2.3.0" } diff --git a/config/app.php b/config/app.php index 3845312e7..6904d96fb 100644 --- a/config/app.php +++ b/config/app.php @@ -1,6 +1,7 @@ [ - - /* - * Laravel Framework Service Providers... - */ - Illuminate\Auth\AuthServiceProvider::class, - Illuminate\Broadcasting\BroadcastServiceProvider::class, - Illuminate\Bus\BusServiceProvider::class, - Illuminate\Cache\CacheServiceProvider::class, - Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class, - Illuminate\Cookie\CookieServiceProvider::class, - Illuminate\Database\DatabaseServiceProvider::class, - Illuminate\Encryption\EncryptionServiceProvider::class, - Illuminate\Filesystem\FilesystemServiceProvider::class, - Illuminate\Foundation\Providers\FoundationServiceProvider::class, - Illuminate\Hashing\HashServiceProvider::class, - Illuminate\Mail\MailServiceProvider::class, - Illuminate\Notifications\NotificationServiceProvider::class, - Illuminate\Pagination\PaginationServiceProvider::class, - Illuminate\Pipeline\PipelineServiceProvider::class, - Illuminate\Queue\QueueServiceProvider::class, - Illuminate\Redis\RedisServiceProvider::class, - Illuminate\Auth\Passwords\PasswordResetServiceProvider::class, - Illuminate\Session\SessionServiceProvider::class, - Illuminate\Translation\TranslationServiceProvider::class, - Illuminate\Validation\ValidationServiceProvider::class, - Illuminate\View\ViewServiceProvider::class, - + 'providers' => ServiceProvider::defaultProviders()->merge([ /* * Package Service Providers... */ @@ -179,7 +153,7 @@ App\Providers\TelescopeServiceProvider::class, App\Providers\RouteServiceProvider::class, App\Providers\CalendarServiceProvider::class, - ], + ])->toArray(), /* |-------------------------------------------------------------------------- diff --git a/config/auth.php b/config/auth.php index 84aa8b593..54aab3f48 100644 --- a/config/auth.php +++ b/config/auth.php @@ -95,7 +95,7 @@ 'passwords' => [ 'users' => [ 'provider' => 'users', - 'table' => 'password_resets', + 'table' => 'password_reset_tokens', 'expire' => 60, 'throttle' => 60, ], diff --git a/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php.php b/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php.php new file mode 100644 index 000000000..c897c7a45 --- /dev/null +++ b/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php.php @@ -0,0 +1,21 @@ +string('email')->primary(); + $table->string('token'); + $table->timestamp('created_at')->nullable(); + }); + } + + public function down(): void + { + Schema::dropIfExists('password_reset_tokens'); + } +}; diff --git a/database/migrations/2014_10_12_100000_create_password_resets_table.php b/database/migrations/2014_10_12_100000_create_password_resets_table.php deleted file mode 100644 index 45aa7075c..000000000 --- a/database/migrations/2014_10_12_100000_create_password_resets_table.php +++ /dev/null @@ -1,22 +0,0 @@ -string('email')->index(); - $table->string('token')->index(); - $table->timestamp('created_at')->nullable(); - }); - } - - public function down() - { - Schema::dropIfExists('password_resets'); - } -} diff --git a/lang/ar.json b/lang/ar.json index 04a6897ba..4e9cf2715 100644 --- a/lang/ar.json +++ b/lang/ar.json @@ -1 +1 @@ -{"Full Name":null,"deactivate auto pricing":null,"activate auto pricing":null,"Locality ID":null,"Pagination":null,"Auto AWB Generation":null,"Min Price":null,"Max Price":null,"Min Margin":null,"Courier Account":null,"Locker Service":null,"Free Shipping Above":null,"Create Payment":null,"Create Product":null,"Payment Method":null,"Emag Number":null," Bundle":null,"Date Filter":null,"Auto Pricing":null,"Documentation":null,"download pictures":null,"download":null,"update measurements":null,"activate":null,"marketplace product":null,"marketplace offer":null,"Not published":null,"Card Processor":null,"On Delivery":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Sale":null,"A cancellation request was received for a :channel order.":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"New Position":null,"Download goods received note":null,"Undo receive":null,"Receive":null,"Undo confirm":null,"Confirm":null,"Reference":null,"Undo deliver":null,"Deliver":null,"Undo ship":null,"Ship":null,"Undo prepare":null,"Prepare products":null,"Insert in stock":null,"Undo fulfill":null,"Remove from stock":null,"Order emailed by":null,"Invoice emailed by":null,"No email sent with the current invoice":null,"Issue Proforma":null,"No email sent with the current order":null,"Download order (pdf)":null,"Download order (xlsx)":null,"Fulfill":null,"Store":null,"Cancellation request for :channel order #:number":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"A :channel order cancellation request was received":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us.":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file +{"Full Name":null,"deactivate auto pricing":null,"activate auto pricing":null,"Locality ID":null,"Pagination":null,"Auto AWB Generation":null,"Min Price":null,"Max Price":null,"Min Margin":null,"Courier Account":null,"Locker Service":null,"Free Shipping Above":null,"Create Payment":null,"Create Product":null,"Payment Method":null,"Emag Number":null," Bundle":null,"Date Filter":null,"Auto Pricing":null,"Documentation":null,"download pictures":null,"download":null,"update measurements":null,"activate":null,"marketplace product":null,"marketplace offer":null,"Not published":null,"Card Processor":null,"On Delivery":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Sale":null,"A cancellation request was received for a :channel order.":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"New Position":null,"Download goods received note":null,"Undo receive":null,"Receive":null,"Undo confirm":null,"Confirm":null,"Reference":null,"Undo deliver":null,"Deliver":null,"Undo ship":null,"Ship":null,"Undo prepare":null,"Prepare products":null,"Insert in stock":null,"Undo fulfill":null,"Remove from stock":null,"Order emailed by":null,"Invoice emailed by":null,"No email sent with the current invoice":null,"Issue Proforma":null,"No email sent with the current order":null,"Download order (pdf)":null,"Download order (xlsx)":null,"Fulfill":null,"Store":null,"Cancellation request for :channel order #:number":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"A :channel order cancellation request was received":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"This record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file diff --git a/lang/br.json b/lang/br.json index 04a6897ba..4e9cf2715 100644 --- a/lang/br.json +++ b/lang/br.json @@ -1 +1 @@ -{"Full Name":null,"deactivate auto pricing":null,"activate auto pricing":null,"Locality ID":null,"Pagination":null,"Auto AWB Generation":null,"Min Price":null,"Max Price":null,"Min Margin":null,"Courier Account":null,"Locker Service":null,"Free Shipping Above":null,"Create Payment":null,"Create Product":null,"Payment Method":null,"Emag Number":null," Bundle":null,"Date Filter":null,"Auto Pricing":null,"Documentation":null,"download pictures":null,"download":null,"update measurements":null,"activate":null,"marketplace product":null,"marketplace offer":null,"Not published":null,"Card Processor":null,"On Delivery":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Sale":null,"A cancellation request was received for a :channel order.":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"New Position":null,"Download goods received note":null,"Undo receive":null,"Receive":null,"Undo confirm":null,"Confirm":null,"Reference":null,"Undo deliver":null,"Deliver":null,"Undo ship":null,"Ship":null,"Undo prepare":null,"Prepare products":null,"Insert in stock":null,"Undo fulfill":null,"Remove from stock":null,"Order emailed by":null,"Invoice emailed by":null,"No email sent with the current invoice":null,"Issue Proforma":null,"No email sent with the current order":null,"Download order (pdf)":null,"Download order (xlsx)":null,"Fulfill":null,"Store":null,"Cancellation request for :channel order #:number":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"A :channel order cancellation request was received":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us.":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file +{"Full Name":null,"deactivate auto pricing":null,"activate auto pricing":null,"Locality ID":null,"Pagination":null,"Auto AWB Generation":null,"Min Price":null,"Max Price":null,"Min Margin":null,"Courier Account":null,"Locker Service":null,"Free Shipping Above":null,"Create Payment":null,"Create Product":null,"Payment Method":null,"Emag Number":null," Bundle":null,"Date Filter":null,"Auto Pricing":null,"Documentation":null,"download pictures":null,"download":null,"update measurements":null,"activate":null,"marketplace product":null,"marketplace offer":null,"Not published":null,"Card Processor":null,"On Delivery":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Sale":null,"A cancellation request was received for a :channel order.":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"New Position":null,"Download goods received note":null,"Undo receive":null,"Receive":null,"Undo confirm":null,"Confirm":null,"Reference":null,"Undo deliver":null,"Deliver":null,"Undo ship":null,"Ship":null,"Undo prepare":null,"Prepare products":null,"Insert in stock":null,"Undo fulfill":null,"Remove from stock":null,"Order emailed by":null,"Invoice emailed by":null,"No email sent with the current invoice":null,"Issue Proforma":null,"No email sent with the current order":null,"Download order (pdf)":null,"Download order (xlsx)":null,"Fulfill":null,"Store":null,"Cancellation request for :channel order #:number":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"A :channel order cancellation request was received":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"This record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file diff --git a/lang/de.json b/lang/de.json index 04a6897ba..4e9cf2715 100644 --- a/lang/de.json +++ b/lang/de.json @@ -1 +1 @@ -{"Full Name":null,"deactivate auto pricing":null,"activate auto pricing":null,"Locality ID":null,"Pagination":null,"Auto AWB Generation":null,"Min Price":null,"Max Price":null,"Min Margin":null,"Courier Account":null,"Locker Service":null,"Free Shipping Above":null,"Create Payment":null,"Create Product":null,"Payment Method":null,"Emag Number":null," Bundle":null,"Date Filter":null,"Auto Pricing":null,"Documentation":null,"download pictures":null,"download":null,"update measurements":null,"activate":null,"marketplace product":null,"marketplace offer":null,"Not published":null,"Card Processor":null,"On Delivery":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Sale":null,"A cancellation request was received for a :channel order.":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"New Position":null,"Download goods received note":null,"Undo receive":null,"Receive":null,"Undo confirm":null,"Confirm":null,"Reference":null,"Undo deliver":null,"Deliver":null,"Undo ship":null,"Ship":null,"Undo prepare":null,"Prepare products":null,"Insert in stock":null,"Undo fulfill":null,"Remove from stock":null,"Order emailed by":null,"Invoice emailed by":null,"No email sent with the current invoice":null,"Issue Proforma":null,"No email sent with the current order":null,"Download order (pdf)":null,"Download order (xlsx)":null,"Fulfill":null,"Store":null,"Cancellation request for :channel order #:number":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"A :channel order cancellation request was received":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us.":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file +{"Full Name":null,"deactivate auto pricing":null,"activate auto pricing":null,"Locality ID":null,"Pagination":null,"Auto AWB Generation":null,"Min Price":null,"Max Price":null,"Min Margin":null,"Courier Account":null,"Locker Service":null,"Free Shipping Above":null,"Create Payment":null,"Create Product":null,"Payment Method":null,"Emag Number":null," Bundle":null,"Date Filter":null,"Auto Pricing":null,"Documentation":null,"download pictures":null,"download":null,"update measurements":null,"activate":null,"marketplace product":null,"marketplace offer":null,"Not published":null,"Card Processor":null,"On Delivery":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Sale":null,"A cancellation request was received for a :channel order.":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"New Position":null,"Download goods received note":null,"Undo receive":null,"Receive":null,"Undo confirm":null,"Confirm":null,"Reference":null,"Undo deliver":null,"Deliver":null,"Undo ship":null,"Ship":null,"Undo prepare":null,"Prepare products":null,"Insert in stock":null,"Undo fulfill":null,"Remove from stock":null,"Order emailed by":null,"Invoice emailed by":null,"No email sent with the current invoice":null,"Issue Proforma":null,"No email sent with the current order":null,"Download order (pdf)":null,"Download order (xlsx)":null,"Fulfill":null,"Store":null,"Cancellation request for :channel order #:number":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"A :channel order cancellation request was received":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"This record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file diff --git a/lang/es.json b/lang/es.json index 8550c4b22..0fe994207 100644 --- a/lang/es.json +++ b/lang/es.json @@ -1 +1 @@ -{"On Delivery":null,"Card Processor":null,"Not published":null,"marketplace offer":null,"marketplace product":null,"activate":null,"update measurements":null,"download":null,"download pictures":null,"Auto Pricing":null,"Documentation":null,"Date Filter":null," Bundle":null,"Emag Number":null,"Payment Method":null,"Create Payment":null,"Create Product":null,"Free Shipping Above":null,"Locker Service":null,"Courier Account":null,"Min Margin":null,"Max Price":null,"Min Price":null,"Auto AWB Generation":null,"Pagination":null,"Locality ID":null,"activate auto pricing":null,"deactivate auto pricing":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"Cancellation request for :channel order #:number":null,"Store":null,"Fulfill":null,"Download order (xlsx)":null,"Download order (pdf)":null,"No email sent with the current order":null,"Issue Proforma":null,"No email sent with the current invoice":null,"Invoice emailed by":null,"Order emailed by":null,"Remove from stock":null,"Undo fulfill":null,"Insert in stock":null,"Prepare products":null,"Undo prepare":null,"Ship":null,"Undo ship":null,"Deliver":null,"Undo deliver":null,"Reference":null,"Confirm":null,"Undo confirm":null,"Receive":null,"Undo receive":null,"Download goods received note":null,"New Position":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order.":null,"Sale":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 1":null,"Street line 2":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us.":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file +{"On Delivery":null,"Card Processor":null,"Not published":null,"marketplace offer":null,"marketplace product":null,"activate":null,"update measurements":null,"download":null,"download pictures":null,"Auto Pricing":null,"Documentation":null,"Date Filter":null," Bundle":null,"Emag Number":null,"Payment Method":null,"Create Payment":null,"Create Product":null,"Free Shipping Above":null,"Locker Service":null,"Courier Account":null,"Min Margin":null,"Max Price":null,"Min Price":null,"Auto AWB Generation":null,"Pagination":null,"Locality ID":null,"activate auto pricing":null,"deactivate auto pricing":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"Cancellation request for :channel order #:number":null,"Store":null,"Fulfill":null,"Download order (xlsx)":null,"Download order (pdf)":null,"No email sent with the current order":null,"Issue Proforma":null,"No email sent with the current invoice":null,"Invoice emailed by":null,"Order emailed by":null,"Remove from stock":null,"Undo fulfill":null,"Insert in stock":null,"Prepare products":null,"Undo prepare":null,"Ship":null,"Undo ship":null,"Deliver":null,"Undo deliver":null,"Reference":null,"Confirm":null,"Undo confirm":null,"Receive":null,"Undo receive":null,"Download goods received note":null,"New Position":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order.":null,"Sale":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 1":null,"Street line 2":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"This record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file diff --git a/lang/fr.json b/lang/fr.json index 04a6897ba..4e9cf2715 100644 --- a/lang/fr.json +++ b/lang/fr.json @@ -1 +1 @@ -{"Full Name":null,"deactivate auto pricing":null,"activate auto pricing":null,"Locality ID":null,"Pagination":null,"Auto AWB Generation":null,"Min Price":null,"Max Price":null,"Min Margin":null,"Courier Account":null,"Locker Service":null,"Free Shipping Above":null,"Create Payment":null,"Create Product":null,"Payment Method":null,"Emag Number":null," Bundle":null,"Date Filter":null,"Auto Pricing":null,"Documentation":null,"download pictures":null,"download":null,"update measurements":null,"activate":null,"marketplace product":null,"marketplace offer":null,"Not published":null,"Card Processor":null,"On Delivery":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Sale":null,"A cancellation request was received for a :channel order.":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"New Position":null,"Download goods received note":null,"Undo receive":null,"Receive":null,"Undo confirm":null,"Confirm":null,"Reference":null,"Undo deliver":null,"Deliver":null,"Undo ship":null,"Ship":null,"Undo prepare":null,"Prepare products":null,"Insert in stock":null,"Undo fulfill":null,"Remove from stock":null,"Order emailed by":null,"Invoice emailed by":null,"No email sent with the current invoice":null,"Issue Proforma":null,"No email sent with the current order":null,"Download order (pdf)":null,"Download order (xlsx)":null,"Fulfill":null,"Store":null,"Cancellation request for :channel order #:number":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"A :channel order cancellation request was received":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us.":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file +{"Full Name":null,"deactivate auto pricing":null,"activate auto pricing":null,"Locality ID":null,"Pagination":null,"Auto AWB Generation":null,"Min Price":null,"Max Price":null,"Min Margin":null,"Courier Account":null,"Locker Service":null,"Free Shipping Above":null,"Create Payment":null,"Create Product":null,"Payment Method":null,"Emag Number":null," Bundle":null,"Date Filter":null,"Auto Pricing":null,"Documentation":null,"download pictures":null,"download":null,"update measurements":null,"activate":null,"marketplace product":null,"marketplace offer":null,"Not published":null,"Card Processor":null,"On Delivery":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Sale":null,"A cancellation request was received for a :channel order.":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"New Position":null,"Download goods received note":null,"Undo receive":null,"Receive":null,"Undo confirm":null,"Confirm":null,"Reference":null,"Undo deliver":null,"Deliver":null,"Undo ship":null,"Ship":null,"Undo prepare":null,"Prepare products":null,"Insert in stock":null,"Undo fulfill":null,"Remove from stock":null,"Order emailed by":null,"Invoice emailed by":null,"No email sent with the current invoice":null,"Issue Proforma":null,"No email sent with the current order":null,"Download order (pdf)":null,"Download order (xlsx)":null,"Fulfill":null,"Store":null,"Cancellation request for :channel order #:number":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"A :channel order cancellation request was received":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"This record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file diff --git a/lang/hu.json b/lang/hu.json index 04a6897ba..4e9cf2715 100644 --- a/lang/hu.json +++ b/lang/hu.json @@ -1 +1 @@ -{"Full Name":null,"deactivate auto pricing":null,"activate auto pricing":null,"Locality ID":null,"Pagination":null,"Auto AWB Generation":null,"Min Price":null,"Max Price":null,"Min Margin":null,"Courier Account":null,"Locker Service":null,"Free Shipping Above":null,"Create Payment":null,"Create Product":null,"Payment Method":null,"Emag Number":null," Bundle":null,"Date Filter":null,"Auto Pricing":null,"Documentation":null,"download pictures":null,"download":null,"update measurements":null,"activate":null,"marketplace product":null,"marketplace offer":null,"Not published":null,"Card Processor":null,"On Delivery":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Sale":null,"A cancellation request was received for a :channel order.":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"New Position":null,"Download goods received note":null,"Undo receive":null,"Receive":null,"Undo confirm":null,"Confirm":null,"Reference":null,"Undo deliver":null,"Deliver":null,"Undo ship":null,"Ship":null,"Undo prepare":null,"Prepare products":null,"Insert in stock":null,"Undo fulfill":null,"Remove from stock":null,"Order emailed by":null,"Invoice emailed by":null,"No email sent with the current invoice":null,"Issue Proforma":null,"No email sent with the current order":null,"Download order (pdf)":null,"Download order (xlsx)":null,"Fulfill":null,"Store":null,"Cancellation request for :channel order #:number":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"A :channel order cancellation request was received":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us.":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file +{"Full Name":null,"deactivate auto pricing":null,"activate auto pricing":null,"Locality ID":null,"Pagination":null,"Auto AWB Generation":null,"Min Price":null,"Max Price":null,"Min Margin":null,"Courier Account":null,"Locker Service":null,"Free Shipping Above":null,"Create Payment":null,"Create Product":null,"Payment Method":null,"Emag Number":null," Bundle":null,"Date Filter":null,"Auto Pricing":null,"Documentation":null,"download pictures":null,"download":null,"update measurements":null,"activate":null,"marketplace product":null,"marketplace offer":null,"Not published":null,"Card Processor":null,"On Delivery":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Sale":null,"A cancellation request was received for a :channel order.":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"New Position":null,"Download goods received note":null,"Undo receive":null,"Receive":null,"Undo confirm":null,"Confirm":null,"Reference":null,"Undo deliver":null,"Deliver":null,"Undo ship":null,"Ship":null,"Undo prepare":null,"Prepare products":null,"Insert in stock":null,"Undo fulfill":null,"Remove from stock":null,"Order emailed by":null,"Invoice emailed by":null,"No email sent with the current invoice":null,"Issue Proforma":null,"No email sent with the current order":null,"Download order (pdf)":null,"Download order (xlsx)":null,"Fulfill":null,"Store":null,"Cancellation request for :channel order #:number":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"A :channel order cancellation request was received":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"This record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file diff --git a/lang/mn.json b/lang/mn.json index 2820ec7ee..fb268c388 100644 --- a/lang/mn.json +++ b/lang/mn.json @@ -1 +1 @@ -{"Full Name":null,"deactivate auto pricing":null,"activate auto pricing":null,"Locality ID":null,"Pagination":null,"Auto AWB Generation":null,"Min Price":null,"Max Price":null,"Min Margin":null,"Courier Account":null,"Locker Service":null,"Free Shipping Above":null,"Create Payment":null,"Create Product":null,"Payment Method":null,"Emag Number":null," Bundle":null,"Date Filter":null,"Auto Pricing":null,"Documentation":null,"download pictures":null,"download":null,"update measurements":null,"activate":null,"marketplace product":null,"marketplace offer":null,"Not published":null,"Card Processor":null,"On Delivery":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Sale":null,"A cancellation request was received for a :channel order.":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"New Position":null,"Download goods received note":null,"Undo receive":null,"Receive":null,"Undo confirm":null,"Confirm":null,"Reference":null,"Undo deliver":null,"Deliver":null,"Undo ship":null,"Ship":null,"Undo prepare":null,"Prepare products":null,"Insert in stock":null,"Undo fulfill":null,"Remove from stock":null,"Order emailed by":null,"Invoice emailed by":null,"No email sent with the current invoice":null,"Issue Proforma":null,"No email sent with the current order":null,"Download order (pdf)":null,"Download order (xlsx)":null,"Fulfill":null,"Store":null,"Cancellation request for :channel order #:number":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"A :channel order cancellation request was received":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Navigation":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us.":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file +{"Full Name":null,"deactivate auto pricing":null,"activate auto pricing":null,"Locality ID":null,"Pagination":null,"Auto AWB Generation":null,"Min Price":null,"Max Price":null,"Min Margin":null,"Courier Account":null,"Locker Service":null,"Free Shipping Above":null,"Create Payment":null,"Create Product":null,"Payment Method":null,"Emag Number":null," Bundle":null,"Date Filter":null,"Auto Pricing":null,"Documentation":null,"download pictures":null,"download":null,"update measurements":null,"activate":null,"marketplace product":null,"marketplace offer":null,"Not published":null,"Card Processor":null,"On Delivery":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Sale":null,"A cancellation request was received for a :channel order.":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"New Position":null,"Download goods received note":null,"Undo receive":null,"Receive":null,"Undo confirm":null,"Confirm":null,"Reference":null,"Undo deliver":null,"Deliver":null,"Undo ship":null,"Ship":null,"Undo prepare":null,"Prepare products":null,"Insert in stock":null,"Undo fulfill":null,"Remove from stock":null,"Order emailed by":null,"Invoice emailed by":null,"No email sent with the current invoice":null,"Issue Proforma":null,"No email sent with the current order":null,"Download order (pdf)":null,"Download order (xlsx)":null,"Fulfill":null,"Store":null,"Cancellation request for :channel order #:number":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"A :channel order cancellation request was received":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Navigation":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"This record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file diff --git a/lang/nl.json b/lang/nl.json index b249b3a1b..ec957cc38 100644 --- a/lang/nl.json +++ b/lang/nl.json @@ -1 +1 @@ -{"Full Name":null,"deactivate auto pricing":null,"activate auto pricing":null,"Locality ID":null,"Pagination":null,"Auto AWB Generation":null,"Min Price":null,"Max Price":null,"Min Margin":null,"Courier Account":null,"Locker Service":null,"Free Shipping Above":null,"Create Payment":null,"Create Product":null,"Payment Method":null,"Emag Number":null," Bundle":null,"Date Filter":null,"Auto Pricing":null,"Documentation":null,"download pictures":null,"download":null,"update measurements":null,"activate":null,"marketplace product":null,"marketplace offer":null,"Not published":null,"Card Processor":null,"On Delivery":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Sale":null,"A cancellation request was received for a :channel order.":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"New Position":null,"Download goods received note":null,"Undo receive":null,"Receive":null,"Undo confirm":null,"Confirm":null,"Reference":null,"Undo deliver":null,"Deliver":null,"Undo ship":null,"Ship":null,"Undo prepare":null,"Prepare products":null,"Insert in stock":null,"Undo fulfill":null,"Remove from stock":null,"Order emailed by":null,"Invoice emailed by":null,"No email sent with the current invoice":null,"Issue Proforma":null,"No email sent with the current order":null,"Download order (pdf)":null,"Download order (xlsx)":null,"Fulfill":null,"Store":null,"Cancellation request for :channel order #:number":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"A :channel order cancellation request was received":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Company Name":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us.":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file +{"Full Name":null,"deactivate auto pricing":null,"activate auto pricing":null,"Locality ID":null,"Pagination":null,"Auto AWB Generation":null,"Min Price":null,"Max Price":null,"Min Margin":null,"Courier Account":null,"Locker Service":null,"Free Shipping Above":null,"Create Payment":null,"Create Product":null,"Payment Method":null,"Emag Number":null," Bundle":null,"Date Filter":null,"Auto Pricing":null,"Documentation":null,"download pictures":null,"download":null,"update measurements":null,"activate":null,"marketplace product":null,"marketplace offer":null,"Not published":null,"Card Processor":null,"On Delivery":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Sale":null,"A cancellation request was received for a :channel order.":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"New Position":null,"Download goods received note":null,"Undo receive":null,"Receive":null,"Undo confirm":null,"Confirm":null,"Reference":null,"Undo deliver":null,"Deliver":null,"Undo ship":null,"Ship":null,"Undo prepare":null,"Prepare products":null,"Insert in stock":null,"Undo fulfill":null,"Remove from stock":null,"Order emailed by":null,"Invoice emailed by":null,"No email sent with the current invoice":null,"Issue Proforma":null,"No email sent with the current order":null,"Download order (pdf)":null,"Download order (xlsx)":null,"Fulfill":null,"Store":null,"Cancellation request for :channel order #:number":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"A :channel order cancellation request was received":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Company Name":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"This record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file diff --git a/lang/ro.json b/lang/ro.json index 62e570a5d..38c23dd92 100644 --- a/lang/ro.json +++ b/lang/ro.json @@ -1 +1 @@ -{":name export done":"Export :name efectuat",":name export started":"Exportul :name a început",":type import done":"Import :type efectuat","#":"#","30 days":"30 zile","7 days":"7 zile","A fresh verification link has been sent to your email address.":"Am trimis un nou link de verificare pe adresa dvs. de e-mail","About this brand":"Despre acest brand","About Us":"Despre noi","Above":"Deasupra","Accessories":"Accesorii","Account details":"Detalii cont","Account":"Cont","account":"cont","Acidity":"Aciditate","Acquisition Price":"Preț achiziție","Acquisition Value":"Valoare achiziție","Actions":"Acțiuni","actions":"acțiuni","Active":"Activ","active":"activ","Activity Log":"Activitate","Start Date":"Incepere activitate","Activity":"Activitate","Add :entity":"Adaugă :entity","Add address":"Adaugă adresă","Add Brand":"Adaugă brand","Add card":"Adaugă card","Add Card":"Adaugă card","Add Comment":"Adaugă comentariu","Add company":"Adaugă companie","Add File":"Adaugă fișier","Add Key":"Adaugă cheie","Add Payment":"Adaugă plată","Add to cart":"Adaugă în coș","Add to favorites":"Adaugă la favorite","Add video":"Adaugă clip","Add":"Adaugă","Adding":"Se adaugă","Additional":"Adițional","Address is missing or does not have lat\/long":"Adresa lipseste sau nu are latitudine \/ longitudine","Address":"Adresa","Addresses":"Adrese","Adjustment":"Reglaj","Administration":"Administrare","administration":"administrare","Administrative Area":"Administrare","Again Colors":"Din nou, culori","Agent":"Agent","Algolia":null,"All Menu Items":"Toate elementele","All Products":"Toate Produsele","All products":"Toate produsele","all products":"toate produsele","All rights reserved.":"Toate drepturile rezervate.","all":"tot","Allocated To":"Atribuit către","Amazing Saving":"Preț avantajos","Free Shipping":"Transport Gratuit","Amount":"Suma","An error has occured. Please report this to the administrator":"S-a inregistrat o eroare. Raporteaza acest fapt administratorului","An error was encountered while generationg :export":"A aparut o eroare la generarea exportului :export","An export job is already running for the same table":"Un export este deja in curs pt acelasi tabel","An unknown error occurred while submitting your report. Please try again.":"A fost o eroare la trimiterea mesajului tau. Te rugam sa reincerci.","Analytics Id":null,"Apartment":"Apartament","App Key":null,"App":"App","Appellative":"Apelativ","Approved Documentation":"Documentație aprobată","Approved":"Aprobat","April":"Aprilie","Aprovizionari":null,"Are you sure that you want to delete the template file?":"Esti sigur ca vrei sa stergi fisierul macheta?","Are you sure?":"Esti sigur?","Assign":"Asociaza","Associate Person":"Asociaza persoana","attribute groups":"grupuri de atribute","Audit":null,"audit":null,"Authors":"Autori","Available menus":"Meniuri disponibile","Available slides":"Diapozitive disponibile","Avatar":"Avatar","Avenue":"Bulevard","Awaiting Brand validation":"Se așteaptă validarea brandului","Awaiting Documentation Validation":"Se așteaptă validarea documentației","Awaiting EAN validation":"Se așteaptă validarea EAN","Awaiting MKTP validation":"Se așteaptă validarea MKTP","Award List":"Lista premiilor","Awards":"Premii","Azzure":"Azur","Back":"Inapoi","Backed by":"Sustinut de","Bag":"Pungă","Bank Account":"Cont bancar","Bank":"Banca","Be the first to review this product":"Fii primul care evaluează acest produs","Before proceeding, please check your email for a verification link.":"Înainte de a continua, te rugăm să verifici e-mailul pentru link-ul de verificare.","Below":"Dedesubt","Bend":"Aplecare","Besel":null,"Best Seller":"Cel mai vândut","Between":"Intre","Billing Address":"Adresa de facturare","Birthday":"Data nasterii","birthday":"data nasterii","Birthdays":"Zile de naștere","Blank":"Blank","Blocked":"Blocat","Bookmarks":"Favorite","Bottled Weight":"Greutate îmbuteliată","Boulevard":"Bulevard","Box":"Cutie","Brand Count":"Numar de branduri","Brands":"Branduri","brands":"branduri","BTL":null,"Bucharest":"Bucuresti","Building Type":"Tip cladire","Building":"Cladire","building":"cladire","built with":"construit cu","Business hours":"Program de lucru","Butons":"Butoane","Button Item":"Element Buton","Buttons":"Butoane","buttons":"butoane","By":"De","Calendar":null,"calendar":null,"Calendars":"Calendare","Calories per 100g":"Calorii per 100g","Cancel":"Anuleaza","Cancelled":"Anulat","cancelled":"anulat","Cantitate":null,"Card number":"Număr card","Cardholder name":"Nume deținător card","Carousel":"Carusel","carousel":"carusel","Carrier":"Curier","Cart is empty":"Coșul este gol","Cart Summary":"Sumar cos","Cart Validity Days":"Validitatea cosului in zile","Cart":"Cos","Pay on Delivery":"Plătește la Livrare","Cash Register Receipt":"Bon fiscal","Catalog":null,"Categories":"Categorii","Navigation":"Navigare","categories":"categorii","Category":"Categorie","Channel":"Canal","Characteristics":"Caracteristici","Cheque":"Cec","Choose language":"Alege limba","Choose your payment method":"Alege metoda de plata","Choose":"Alege","City Population by Age":"Populatia in functie de varsta","City":"Oras","Clear all":"Sterge tot","click here to request another":"apasă aici pentru a solicita altul","Client (company)":"Client (companie)","Client (person)":"Client (persoana)","Client Discounts":"Reduceri pentru clienți","Client Invoices":"Facturi clienti","Client Order Reference":"Referința clientului","Client Payment":"Plati clienti","Client Payments":"Plati clienti","Client Reference":"Referință client","Client Stock":"Stoc client","Client Stocks":"Stocuri client","Client":"Client","Clienti":null,"Clients":"Clienti","clients":"clienți","Close":"Inchide","Code":"Cod","Coding":"Codare","Collapse Main Menu":"Restrange meniu principal","Colors Two":"Culori, doi","Colors":"Culori","Coming Soon":"În Curând","Comments":"Comentarii","Commercial":"Comercial","commercial":"comercial","Companies":"Companii","companies":"companii","Company client":"Client companie","Company":"Companie","company":"companie","Completed":"Finalizat","Configure Role":"Configureaza rol","Configure":"Configureaza","configure":"configureaza","Confirm Password":"Confirmare parolă","Confirmed":"Confirmat","Contact Bar Text":"Text bara de contact","contact form":"formular de contact","Contact Form":"Formular de Contact","Contact us with any questions or concerns that you may have and we will get back to you shortly":"Contactează-ne pentru orice întrebări sau nelămuriri și îți vom răspunde în curând","Contact":"Contact","Contacts Index":"Index contacte","Contacts":"Contacte","contacts":"contacte","Content Private":"Continut privat","Content":"Continut","Continue":"Continua","Copied to clipboard":"Copiat in clipboard","Copyright © 2016":"Copyright © 2016","Core":"Core","Country of Origin":"Țara de origine","Country":"Tara","County":"Judet","Courier Service":"Serviciu de curierat","Create a new Entity":"Creeaza o noua entitate","Create a new User":"Creeaza user","Create Button":"Creeaza buton","Create Company":"Creeaza companie","Create Differences Sale":"Genereaza vanzare cu diferente","Create Group":"Creeaza grup","create group":"creeaza grup","Create Language":"Creeaza limba","Create Menu":"Creeaza meniu","Create Owner":"Creaza owner","Create Permission Group":"Creeaza grup permisii","Create Permission":"Creeaza permisie","Create Permissions Group":"Creeaza grup permisii","Create Person":"Creeaza persoana","Create Resource":"Creaza resursa","Create Role":"Creeaza rol","Create Tutorial":"Creeaza tutorial","Create User Group":"Creeaza grup useri","Create User":"Creeaza user","Create":"Creeaza","create":"creeaza","Created Address":"Adresa creata","Created At":"Creat la","Created at":"Creat la","Created By":"Creat de","Created Contact":"Contact creat","Created":"Creat","created":"creat","Currency Placed Before":"Valuta plasata inainte","Current file size is":"Marimea fisierului este","custom":"personalizat","Customer opinions":"Opiniile clienților","Cycling":"Ciclism","Danger":"Pericol","Dashboard":"Dashboard","dashboard":"dashboard","Data Import":"Import date","data import":"import date","Date":"Data","Default Address":"Adresa implicita","Default Menu":"Meniu implicit","Default":"Implicit","default":"implicit","Delete Avatar":"Sterge Avatar","Delete File":"Sterge Fisier","Delete Template":"Sterge template","Delete video":"Sterge clip","Delete":"Sterge","delete":"sterge","deleted":"sters","Delivered":"Livrat","Description":"Descriere","deselect":"deselecteaza","Designing":"Designing","details":"detalii","Details":"Detalii","Diameter":"Diametru","Direct Link":"Link direct","Discount":"Reducere","Discounts":"Discounturi","discounts":"discounturi","Discussions":"Discutii","Display Name":"Nume Afisat","Documents":"Documente","documents":"documente","Don't have an account?":"Nu ai cont?","Download Delivery Note":"Descarca nota de livrare","Download Excel Sale Offer":"Descarca oferta vanzare (excel)","Download Excel Sale Return Offer":"Descarca oferta de retur (excel)","Download Invoice (long click for cancel)":"Descarca factura (click lung pt anulare factura)","Download Payment (long click for cancel)":"Descarca plata (click lung pt anulare plata)","Download Sale Offer":"Descarca oferta vanzare","Download Sale Return Offer":"Download oferta de retur","Download Stock Removal":"Descarca fisa scoatere din stoc","Download Template":"Descarca template","Download":"Descarca","Drag And Drop":"Drag And Drop","Drinking":null,"Due Date":"Scadenta","E-Mail Address":"Adresă de e-mail","Eating":"Mancand","EAV":null,"eav":null,"Edit Button":"Editeaza buton","Edit Company":"Editeaza companie","Edit Invoice":"Editeaza factura","Edit Language":"Editeaza limba","Edit Menu":"Editeaza meniu","Edit Owner":"Editeaza owner","Edit Permission Group":"Editeaza grup permisii","Edit Permission":"Editeaza permisie","Edit Permissions Group":"Editeaza grup permisii","Edit Person":"Editeaza persoana","Edit personal details":"Editeaza detaliile personale","Edit Role":"Editeaza rol","Edit Texts":"Editeaza texte","edit texts":"editeaza texte","Edit Tutorial":"Editeaza tutorial","Edit User Group":"Editeaza grup useri","Edit User":"Editeaza user","Edit":"Editeaza","edit":"editeaza","Editable Limit":"Limita modificari","edited":"editat","Element":"Element","Emag Active Offer":"Oferta activa Emag","Emag documentatie":null,"Emag Offer":"Oferta Emag","Emag pret":null,"Emag Price":"Pret Emag","Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":"Emailul poate fi editat doar prin formularul de user","Email":"Email","Emailed At":"Trimis prin e-mail la","Emailed":"Email","Enabled":"Activat","End":"Sfarsit","Enter Fulfilling Mode":"Acceseaza modul Efectuare","Enter the application":"Intra in aplicatie","Enter warehouse mode":"Intra in mod magazie","Enter Warehouse Mode":"Paraseste modul Depozit","Entities":"Entitati","entities":"entitati","Entity Details":"Detalii entitate","Entity":"Entitate","entity":"entitate","Entries":"Intrari","entries":"intrari","Entry":"Intrare","entry":"intrare","Error":"Eroare","Events":"Evenimente","Excel":"Excel","Expanded Menu":"Meniu colapsat","Expiration Date":"Data expirare","Export available for download: :filename":"Export :filename disponibil pentru descarcare","Export Done":"Export efectuat","Export emailed: :filename":"Export :filename trimis pe email","Export emailed":"Export trimis pe mail","Export error":"Eroare la exportare","Export Notification":"Notificare export","Export started":"Export inceput","Export":"Export","export":"export","exporting rejected":"export refuzate","exports":"exporturi","External":"Extern","Extra Virgin Olive Oils":"Ulei de măsline extravirgin","Facturi clienti":null,"Facturi furnizori":null,"Failed":"Esuat","failed":"esuat","FAQ":null,"Favorites":"Favorite","Favourite products":"Produse favorite","Fax Number":"Numar fax","Fax":"Fax","FEATURED BRANDS":"BRANDURI PROMOVATE","Featured Brands":"Branduri Promovate","Feb":"Feb","February":"Februarie","File name":"Nume fisier","File Size":"Marime fisier","File":"Fisier","File(s)":"Fisier(e)","Files were uploaded successfully":"Fisierele au fost incarcate","Files":"Fisiere","files":"fisiere","Fill":"Completeaza","Filter by name or code":"Filtreaza dupa nume sau cod","Filter":"Filtru","filtered from":"filtrate din","filtered":"filtrat","Filters":"Filtre","Finalize order":"Finalizează comanda","Finalize":"Finalizeaza","Finalized":"Finalizat","finalized":"finalizat","Financial Overview":"Prezentare Financiară","Financials":"Financiar","financials":"financiar","find matches":"găsește potriviri","First Name":"Prenume","Fiscal Code":"Cod fiscal","Fiscal Invoice":"Factura fiscala","Fiscal":null,"Flag Icon Class":"Clasa iconita steag","Flag Sufix":"Sufix steag","Flag":"Steag","Floor":"Etaj","floor":"etaj","Forbidden":"Interzis","Forgot Password?":"Ai uitat parola?","Forgot password":"Parola uitata","Forgot Your Password?":"Ai uitat parola?","Found :total results":":total rezultate gasite","Friday":"Vineri","Frisbo":null,"From":"De la","from":"de la","Fulfilled At":"Efectuat la","Fulfilling":"În procesare","Furnizor":null,"Gender":"Gen","General Settings":"Setari generale","General":null,"Generate":"Genereaza","Generated for order #:number":"Generat pt comanda #:number","Geneva":"Geneva","Get in touch with us":"Contacteaza-ne","Go Home":"Acasă","Google":null,"Got it!":"Am înțeles!","Green":"Verde","Group":"Grup","Groups":"Grupuri","Habits":"Obiceiuri","Harvest 2016\/2017":"Recolta 2016\/2017","Harvest 2017\/2018":"Recolta 2017\/2018","Harvest 2018\/2019":"Recolta 2018\/2019","Harvest 2019\/2020":"Recolta 2019\/2020","Harvest":"Recolta","Has Children":"Are submeniu","Height":"Înălţime","Hello!":"Salut!","Hello":"Salut","Herbs":"Plante aromatice","here":"aici","Hi :name,":"Salut :name,","Hi :name":"Salut :name","Home":"Acasa","Homepage":"Pagina principală","How To Videos":"Clipuri","how to videos":"clipuri","I agree to the":"Sunt de acord cu","I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":"Autorizez :name sa trimita instructiuni institutiei financiare care a emis cardul meu pentru a face plati din contul meu bancar in momentul achizitiei de catre mine a produselor de pe siteul :name","I authorise":"Autorizez","Ian":"Ian","Icon Class":"Clasa icoana","Icon":"Icoana","If you are having trouble clicking the action button, copy and paste the URL below":"Daca întampini dificultati in a accesa butonul, copiază adresa de mai jos","If you did not create an account, no further action is required.":"Dacă nu ai creat un cont, poți ignora acest mesaj.","If you did not receive the email":"Dacă nu ai primit e-mailul","If you did not request a password reset, no further action is required.":"Dacă nu ai solicitat o resetare de parolă, poți ignora acest mesaj.","If you’d like to help, tell us what happened below.":"Daca vrei sa ajuti, noteaza mai jos ce s-a intamplat","IFSC":"CIF","Impersonate":"Impersoneaza","Impersonating":"Impersonare","Import Summary":"Sumar import","Import Type":"Tip import","Import":"Import","Importance":"Importanţă","Important":"Important","Imported At":"Importat la","Imported By":"Importat de","Imported Entries":"Intrari importate","ImportType":"Tip import","In a few minutes you will receive a confirmation email":"In cateva minute vei primi un email de confirmare","In Stock":"In stoc","in stock":"în stoc",":days Days Returns":"Retur Gratuit in :days zile","24h Tracked Shipping":"Livrare cu Tracking in 24h","100% Original Products":"Produse 100% Originale","Secure Payments":"Plati securizate","Income":"Venit","index":"index","Indications":"Indicații","Individual":"Persoana Fizica","Industrial":"Industrial","Info":null,"Ingredients":"Ingrediente","Integrations":"Integrări","Internal #":"Cod intern","Internal Code":"Cod intern","Internal":"Intern","into your web browser":"in browserul dvs.","Invalid signature.":"Semnătură incorectă.","Invalid":null,"Inventory":"Inventar","inventory":"inventar","Invoice Emailed":"Email factura","Invoice for order # :number":"Factura pentru comanda # :number","Invoice for order":"Factura pentru comanda","invoice":"factura","invoices":"facturi","Invoices":"Facturi","Is Active":"Este Activ","Is Cancelled":"Anulat","Is Default":"Este implicit","is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":"Emite factura","Issue Payment":"Adauga plata","Issues":"Probleme","It looks like we’re having issues.":"Se pare ca intampinam probleme","Item":"Articol","items":"articole","Items":"Articole","Jams":"Gemuri","January":"Ianuarie","Jar":"Borcan","July":"Iulie","June":"Iunie","Keep tables configurations":"Pastreaza configuratia tabelelor","Key Collector":"Colector chei","Key Name":"Denumire cheie","Key Value":"Valoare cheie","Key":"Cheie","keys found":"chei gasite","Label Generator":"Generator etichete","Label":"Etichetă","Labels":"Etichete","labels":"etichete","Lane":"Alee","Language Item":"Element limba","Language":"Limba","Languages":"Limbi","languages":"limbi","Last Modified":"Ultima modificare","last month":"luna trecuta","Last Name":"Nume","Last updated":"Ultima modificare","last week":"saptamana trecuta","last year":"anul trecut","Learn more":"Află mai multe","Leave Fulfilling Mode":"Paraseste modul Efectuare","Leave Warehouse Mode":"Acceseaza modul Depozit","Left":"Stanga","Length":"Lungime","limited quantity":"cantitate limitată","Limited Stock Limit":"Pragul pt stoc limitat","Limited Stock":"Stoc limitat","Line":"Linie","Link":"Link","List Price":"Pret lista","Page [page] from [toPage]":"Pagina [page] din [toPage]","List Value":"Valoare lista","List":"Lista","Load More":"Incarca mai multe","Load more":"Incarca mai multe","Loading...":"Se incarca...","Loading":"Se incarca","Localisation Index":"Index localizare","Localisation":"Internationalizare","localisation":"internationalizare","Localities":"Localitati","Locality":"Localitate","Log in":"Autentificare in sistem","Log out":"Delogare","Log Out":"Iesiti","log":"log","Login":"Login","login":"login","Logins":"Logari","logins":"logari","logout":"deconectare","Logout":"Iesire","Logs Index":"Index Loguri","Logs":"Loguri","logs":"loguri","Loss":"Pierdere","Made with Bulma":"Realizat cu Bulma","Made with Laravel":"Realizat cu Laravel","Made with Vue":"Realizat cu Vue","Magazie":null,"Main Menu":"Meniu principal","Manage Buttons":"Editeaza butoane","Manage Menus":"Administreaza meniuri","Manage Permissions":"Administreaza permisii","Mandatary":"Mandatar","Manufacturer":"Producător","Manufacturers":"Producatori","Maps key":null,"Mar":"Mar","March":"Martie","Mark all as read":"Marcheaza-le citite","Mark all read":"Marcheaza tot ca citit","Max":null,"May":"Mai","MB":"MB","Measurement Unit":"Unitate de Masură","Measurement Units":"Unitati de masura","measurement units":"unitati de masura","Member Since":"Membru din","Members":"Membri","Menu Collapse":"Restrange meniu","Menu Items":"Elemente meniu","Menu":"Meniu","Menus Index":"Index meniuri","Menus":"Meniuri","menus":"meniuri","Merge all localisation files":"Îmbină toate fisierele de localizare","Mfr #":"Cod produs","Mfr":"Prod","Min":null,"Miss":null,"Mode":"Mod","Monday":"Luni","more":"mai mult","move to favorites":"muta la favorite","Mr":null,"MU":"UM","N\/A":"N\/A","Name":"Nume","Needs matching":"Necesita match","Net Weight":"Greutate netă","New Address":"Adresa noua","New Password":"Parola noua","New team":"Echipa noua","New Topic":"Subiect nou","New":"Nou","Next Page":"Pagina urmatoare","Next":"Urmator","No activity found":"Nu a fost gasita activitate","No keys found":"Nu au fost gasite chei","No locations found":"Nu au fost găsite locații","No options available":"Nu exista optiuni","No records were found":"Nu au fost gasite inregistrari","No reservations found":"Nu au fost găsite rezervări","No search results found":"Nu au fost gasite rezultate","No teams were created yet":"Încă nu au fost create echipe","No":"Nu","Not Found":"Negăsit","not paid":"neplatit","Note":"Observații","Notes":"Note","Nothing found":"Nu a fost gasit nimic","notification":"notificare","Notifications":"Notificari","notifications":"notificari","Number":"Numar","Observations":"Observatii","of":"din","Offices":"Birouri","Oh no":"O, nu","OK":"OK","on behalf of :company":"pe compania :company","On Demand":"In stoc furnizor","on":"pe","Online":null,"Only missing":"Doar negasite","Operation failed because the permission is allocated to existing role(s)":"Operatia a esuat deoarece permisiunea este alocată unui rol existent","Operation was successfull":"Operatiunea a fost efectuata cu succes","order #:number invoice":"factura pentru comanda #:number","order #:number":"comanda #:number","Order #:number":"Comanda #:number","Order details :number":"Detalii comanda :number","Order Line Limit":null,"Order Payment":"Plata","Order Values":"Valorile comenzii","Order":"Comanda","Orders":"Comenzi","Organize Menus":"Ordonare meniuri","our location":"locatia noastra","Our Location":"Locația noastră","Our team has been notified.":"Echipa noastra a fost notificata","Overdue":"Depășit","Own Stock":"Stoc propriu","Owners Index":"Index owneri","Owners":"Entitati","owners":"owneri","Package Content":"Conținutul pachetului","Packaging Units":"Unități de Ambalare","packaging units":"unități de ambalare","Page Expired":"Pagina a expirat","Parade":"Parada","Parent":"Parinte","Part Number":"Cod","Password Confirmation":"Confirmare parola","Password":"Parola","password":"parola","Passwords must be at least six characters and match the confirmation.":"Parola trebuie să fie de cel puțin șase caractere și să se potrivească cu cea de confirmare.","Past Imports":"Importuri anterioare","Pasta":"Paste","Authorize Only":"Doar Autorizare","pay":"plateste","Pay":"Plateste","Payment method":"Metoda de plata","Payment Methods":"Metode de plata","Payment Order":"OP","Payment":"Plata","payments":"plati","Payments":"Plăți","Pays VAT":"Plateste TVA","People":"Persoane","people":"persoane","Permission Group":"Grup de permisii","Permission Groups Index":"Index grupuri de permisii","Permission Groups":"Grupuri de permisii","Permission Name":"Nume permisie","Permission":"Permisie","permissionGroups":"Grupuri de permisii","Permissions Group Items":"Elemente Permisii Grup","Permissions Group":"Grup Permisii","permissions group":"permisii grup","Permissions Groups":"Grupuri Permisii","Permissions Index":"Index permisii","Permissions":"Permisii","permissions":"permisii","Person client":"Client persoana","Person":"Persoana","person":"persoana","Personal Info":"Informatii personale","Personal information can only be edited via the person form":"Informatiile personale pot fi editate numai prin formularul persoanei","Personal":"Personal","Phone Number":"Numar de telefon","Phone":"Telefon","Pic":null,"Pick an option":"Alege o optiune","Picture":"Poza","Piece":"Buc","Place order":"Plasează comanda","See cart":"Vezi Cos","Placement":"Pozitie","Plati clienti":null,"Plati furnizor":null,"Please choose":"Alege","Please click the button below to verify your email address.":"Te rugăm să accesezi butonul de mai jos pentru a verifica adresa de e-mail.","Please confirm your password before continuing.":"Te rugăm să confirmi parola înainte de a continua.","Please Fill":"Completeaza","Please find attached the order's invoice.":"Găsești factura pentru această comandă în atașament.","Please review your order and payment details":"Te rugăm să verifici detaliile comenzii","Please set or reset your password by clicking the button below.":"Te rugam sa setezi sau sa resetezi parola facand clic pe butonul de mai jos.","POS Receipt":"Chitanta POS","Position":"Pozitie","Positions":"Pozitii","positions":"poziții","Post":"Trimite","Postal Area":"Cod postal","Postal Code":"Cod postal","Postcode":"Cod postal","posted":"postat","Prepared":"Pregătit","Preview":"Previzualizeaza","Previous Page":"Pagina anterioara","Previous":"Anterior","Price":"Pret","Privacy":"Confidențialitate","processed":"procesat","Processing":"In procesare","processing":"in procesare","Product image coming soon":"Poza urmeaza sa fie adaugata","Product":"Produs","Products per page":"Produse per pagina","Products":"Produse","products":"produse","Produs":null,"Profile":"Profil","Profit":"Profit","Proforma Invoice":"Factura proforma","Proforma":null,"Promissory Note":"Bilet la ordin","publish product":"publica produsul","Purchase Returns":"Retur aprovizionari","purchase returns":"retur aprovizionari","Purchase":"Aprovizionare","Purchases":"Aprovizionari","purchases":"aprovizionari","Purple":"Mov","Qty":"Cant.","Quantity":"Cantitate","rating":"evaluare","Rating":"Evaluare","Ratio":"Aspect","Read":"Citire","Recaptcha key":"Cheie Recaptcha","Recaptcha secret":null,"Receipt":"Chitanta","Received":"Primit","Recent orders":"Comenzi recente","Recommended Products":"Produse recomandate","records":"inregistrari","Red":"Rosu","Reference \\ PO":"Referinta","Regards":"Toate cele bune","register":"fă-ți cont","Register":"Fă-ți cont","Registered Entities":"Entitati inregistrate","Registered Users":"Useri Inregistrati","Registry Of Commerce":"Nr. Inreg. Reg. Com.","Registry of commerce":"Registrul comertului","Rejected Association":"Asociația Respinsă","Rejected Brand":"Brand respins","Rejected Documentation":"Documentație respinsă","Rejected EAN":"EAN respins","Reload":"Reincarca","Remember me":"Tine-ma minte","Remember Me":"Ține-mă minte","Reminder":null,"Remove poster":"Sterge poster","remove":"sterge","Reorder Menu":"Reorganizează meniu","reorder":"reorganizează","Repeat Password":"Repeta parola","Replies":"Raspunsuri","Reply":"Raspunde","Resell":"Revanzare","Reservations":"Rezervări","Reserved":"Rezervat","Reset password request":"Cerere resetare parolă","Reset password":"Reseteaza parola","Reset":"Reset","Residential":"Rezidențial","Resource Prefix":"Prefix resursa","Resource":"Resursa","resource":"resursa","Retur aprovizionari":null,"Retur vanzari":null,"Revenue":"Venit","Reviews":"Recenzii","reviews":"recenzii","most popular":"cele mai populare","Right":"Dreapta","Road":"Drum","Role Item":"Element Rol","Role":"Rol","role":"rol","Roles Index":"Index roluri","Roles List":"Lista roluri","Roles":"Roluri","roles":"roluri","Rotatie":null,"Rotation":"Rotatie","Route":"Ruta","Row":"Rand","Running":"Alergare","Sale Channel":"Canal de vânzare","Sale Channels":"Canale de vânzare","sale channels":"canale de vânzare","Sale Price":"Pret vanzare","Sale Returns":"Retur vanzari","sale returns":"returnarea vânzării","Sale Value":"Valoare vanzare","Sales":"Vanzari","sales":"vanzari","Saturday":"Sambata","Sauces":"Sosuri","Save Configuration":"Salveaza configuratie","Save":"Salveaza","Sea Salt":"Sare de mare","Search category limit":"Limita categorii la cautare","Search in products":"Caută în produse","Search placeholder":"Placeholder pt cautare","Search something":"Căutați ceva","Search within brands":"Cauta in branduri","Search...":"Căutare...","Search":"Cauta","Searching...":"Căutând...","Searching":"Caut","Secret":"Secret","See all":"Vezi tot","Select file for import":"Selecteaza fisier pt import","select":"select","selected":"selectat","Send a password reset link":"Genereaza link pentru reset parola","Send a reset password link":"Trimite un link de resetare parola","Send Password Reset Link":"Trimite link-ul pentru resetarea parolei","Serial":"Serie","Server Error":"Eroare de server","Service Unavailable":"Serviciu indisponibil","Service":"Serviciu","Services":"Servicii","services":"Servicii","Set password":"Seteaza parola","Settings":"Setari","settings":"setări","Share your idea...":"Sharuieste ideea","Share your opinion and rate the product":"Împărtășește-ți opinia și evaluează produsul","Share your opinion...":"Sharuieste parerea","Shelf":"Raft","Shift + Enter to post":"Shift + Enter pt a posta","Shipped":"Expediat","Shipping Address":"Adresa de livrare","Shipping charges may be incurred":"Pot fi aplicate costuri de transport","Shipping charges of :value (+VAT) will be added":"Vor fi adaugate costuri de transport in valoare de :value (+TVA)","Shipping cost":"Cost transport","You will pay":"Cat vei plati","Visit the product page":"Viziteaza pagina produsului","Shop Categories":"Categorii","Shopping Cart":"Cos cumparaturi","Show Log":"Arata log","Show Logs from":"Arata log-uri din","Show":"Arata","show":"arata","Showing :from - :to of :total results":"Se afiseaza de la :from pana la :to din :total de rezultate","Sicilian Honey":"Miere siciliană","Sidebar Toggle":"Alterneaza stil meniu","Similar products limit":"Limita pt produse similare","Site Texts":"Texte Site","Size":"Marime","Sleeping":"Dormit","Some fields were invalid. Please correct the errors and try again.":"Cateva campuri au fost invalide. Corecteaza erorile si reincearca.","Something went wrong...":"Ceva nu a functionat corect...","Special Diet":"Dietă specială","Speciality":"Specialitate","Spendings":"Cheltuieli","Square":"Pătrat","Start Tutorial":"Start tutorial","Started":"Inceput","Starters":"Aperitive","Status":"Status","Stock Rotation":"Rotația stocului","Stock: :stock":"Stoc: :stock","Stock":"Stoc","Stopped":"Oprit","Storage Usage":"Utilizare spatiu","store":"magazin","Storing":"Depozitare","Street Type":"Tip strada","Street":"Strada","Sub Administrative Area":"Zona administrativa subordonata","Submit":"Trimite","Success":"Succes","Successful":"Reusite","Summary":"Sumar","Sunday":"Duminica","Supplier Discounts":"Reduceri de la furnizori","Supplier Invoices":"Facturi furnizori","Supplier Number":"Numar furnizor","Supplier Payments":"Plati furnizor","Supplier Ref":"Ref. Furnizor","Supplier Stock":"Stoc furnizor","Supplier":"Furnizor","suppliers":"furnizori","Sweets":"Dulciuri","System":"Sistem","system":"sistem","Table export done":"Export tabel efectuat","Table export error":"Eroare la exportul de tabel","Table export started":"Exportul de tabel a inceput","Table":"Tabel","Tables State Save":"Pastreaza config","Tags":"Taguri","Tasks":"Sarcini","tasks":"sarcini","team":"echipa","Teams":"Echipe","Template":"Șablon","Tenant":"Chiriaş","terms and conditions":"termenii si conditiile","Terms of use":"Termeni si conditii","Terms Of Use":"Termeni si conditii","terms of use":"termenii si conditiile","Thank you for shopping with us.":"Îți multumim pentru cumparaturile facute.","Thank you for using our application!":"Îți multumim ca ne folosești aplicatia!","Thank you for your order":"Îți mulțumim pentru comandă","Thank you":"Multumesc","The :filename file is ready":"Fisierul :filename este gata","The address has been successfully updated":"Adresa a fost actualizata cu succes","The address was successfully created":"Adresa a fost creata cu succes","The admin role already has all permissions and does not need syncing":"Rolul de admin deja are toate permisiile si nu are nevoie de sincronizare","The application was updated, please refresh your page to load the latest application version":"Aplicatia a fost actualizata, te rugram reincarca pagina pentru a folosi noua versiune","The Changes have been saved!":"Modificarile au fost salvate!","The changes have been saved":"Modificarile au fost salvate","The company was successfully created":"Compania a fost creata cu succes","The company was successfully deleted":"Compania a fost stearsa cu succes","The company was successfully updated":"Compania a fost actualizata cu succes","The Entity was created!":"Entitatea a fost creata!","The entity was created!":"Entitatea a fost creata!","The export :name could not be completed due to an unknown error":"Exportul :name nu a putut fi finalizat datorita unei erori","The export was cancelled successfully":"Exportul a fost anulat cu succes","The form contains errors":"Formularul contine erori","The generated document has :entries entries":"Documentul are :entries inregistrari","The import was restarted":"Importul a fost repornit","The language files were successfully merged":"Fisiere de limbi au fost concatenate cu succes","The language files were successfully updated":"Fisierele de limba au fost actualizate","The log file":"Fisierul","The log was cleaned":"Log-ul a fost curatat","The menu was created!":"Meniul a fost creat!","The operation was successful":"Operatiunea a fost efectuata cu succes","New order #:number from :channel for :total :currency was placed by :person":"Comanda noua #:number din :channel in valoare de :total a fost plasată de catre :person","Selected payment method: :paymentMethod":"Metoda de plata selectata: :paymentMethod","The permission group was created!":"Grupul de permisii a fost creat!","The permission was created!":"Permisia a fost creata!","The permissions were created!":"Permisiile au fost create!","The person has assigned resources in the system and cannot be deleted":"Persoana are resurse asignate in sistem si nu poate fi stearsa","The Person was successfully created":"Persoana a fost creata cu succes","The person was successfully created":"Persoana a fost creata cu succes","The person was successfully deleted":"Persoana a fost stearsa cu succes","The person was successfully updated":"Persoana a fost actualizata cu succes","The poster was deleted successfully":"Posterul a fost sters cu succes","The requested report was started. It can take a few minutes before you have it in your inbox":"Raportul a fost trimis spre generare. Poate dura cateva minute pana cand il vei primi pe mail","The requested report was started. It can take a few minutes before you have it in your inbox":"Raportul solicitat a fost pornit. Poate dura cateva minute inainte de a-l primi in casuta de e-mail","The role was created!":"Rolul a fost creat!","The selected record is about to be deleted. Are you sure?":"Inregistrarea selectata este pe cale sa fie stearsa. Esti sigur?","The team was successfully saved":"Echipa a fost salvata cu succes","The tutorial was created!":"Tutorialul a fost creat!","The tutorial was successfully deleted":"Tutorialul a fost sters cu succes","The user group was successfully created":"Grupul de useri a fost creat cu succes","The user group was successfully deleted":"Grupul de useri a fost sters cu succes","The user has activity in the system and cannot be deleted":"Userul are activitate in sistem si nu poate fi sters","The User was created!":"Userul a fost creat!","The video file was deleted successfully":"Clipul a fost sters cu succes","The video was updated successfully":"Clipul a fost actualizat cu succes","The webshop is still under construction, but we're launching soon...":"Magazinul online este încă în construcție, dar il vom lansa în curând...","Theme Color":"Culoare Tema","Theme":"Tema","There are no active carousel slides":"Nu exista slide-uri de carusel active","There are no addresses added yet":"Nu ai nicio adresă adăugată","There are no companies added yet":"Nu există companii adăugate","There are no credit cards added yet":"Nu ai niciun card adăugat","This action is unauthorized.":"Această acțiune nu este permisă.","this month":"luna aceasta","This password reset link will expire in :count minutes.":"Acest link de resetare a parolei va expira în :count minute.","This password reset token is invalid.":"Codul de resetare a parolei este greșit.","This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":"Acest site web folosește cookie-uri pentru a-și furniza serviciile și pentru a analiza traficul. Pentru mai multe detalii viziteaza","privacy policy":"politica de confidentialitate","this week":"săptămâna aceasta","this year":"anul acesta","Thursday":"Joi","Time":"Timp","Timeline":"Cronologie","Tip":null,"Title...":"Titlu...","Title":"Titlu","title":"titlu","to manage your addresses":"pt a gestiona adresele","to manage your cards":"pt a gestiona cardurile","to manage your companies":"pentru a gestiona companiile","to view your order":"pentru a vedea comanda","To":"la","to":"la","Today":"Astăzi","today":"azi","Toggle navigation":"Comută navigarea","Too Many Attempts.":"Prea multe încercări.","Too Many Requests":"Prea multe cereri","Top Banner Content":"Continut top banner","Top Pick":"Alegere de Top","Total amount for order #:number is :currency:total":"Totalul de plată pentru comanda #:number este :total :currency","total records":"inregistrari","Total":"Total","total":"total","Translations":"Traduceri","Tuesday":"Marti","Tutorial":"Tutorial","Tutorials Index":"Index tutoriale","Tutorials":"Tutoriale","tutorials":"tutoriale","Type a new comment":"Adauga un comentariu","Type":"Tip","type":"tip","Types":"Tipuri","Unable to read file":"Nu se poate citi fiserul","Unauthorized":"Nepermis","Undo Stock Insertion":"Anuleaza insertia in stoc","Undo Stock Removal":"Anuleaza scoaterea din stoc","Unique Identifier":"Identificator unic","Unit. Price":"Pret unit.","Unitary Price":"Pret unitar","untagged":"netaguit","Update":"Updateaza","Updated At":"Updatat la","Updated By":"Actualizat de","updated the members":"actualizat membrii","updated":"actualizat","Updated":"Updatat","Upload Avatar":"Incarca Avatar","Upload Template":"Incarca template","uploads":"uploaduri","Use":"Utilizare","User Details":"Detalii User","user groups":"grupuri user","User Groups":"Grupuri","User Info":"Informatii user","User Profile":"Profil user","User":"User","user":"user","Users Administration":"Administrare useri","Users Index":"Index useri","Users":"Useri","users":"useri","Valability":"Valabilitate","Valid":"Valid","Editable time limit in seconds. Use 0 to disable":"Limita de timp pentru modificari, in secunde. Folosește 0 pentru a dezactiva","Value":"Valoare","Vanzari":null,"VAT":"TVA","VAT Value":"Valoare TVA","ver":"ver","Verify Email Address":"Verificare adresă de e-mail","Verify Your Email Address":"Verifică-ți adresa de e-mail","Video description":"Descriere clip","Video name":"Nume clip","Video":"Video","video":"video","View Cart":"Vezi cos","View your order":"Vezi comanda","Virtual Position ID":"ID Poziție Virtuală","Visible Brands":"Branduri vizibile","Visible Top Banner":"Top banner vizibil","Vista":"Perspectivă","Volume":"Volum","Voucher":null,"waiting":"in asteptare","Warehouse":"Depozit","warehouses":"depozite","Warehouses":"Depozite","Warning":"Avertizare","was changed":"a fost schimbat","was last updated":"a fost modificat","We can't find a user with that e-mail address.":"Nu există niciun user cu această adresă de e-mail.","We have e-mailed your password reset link!":"Am trimis un e-mail cu link-ul de resetare a parolei!","We will keep you updated on its progress":"Te vom tine la curent cu progresul ei","We won't ask for your password again for a few hours.":"Nu îți vom mai solicita adresa de e-mail pentru câteva ore","Webshop Name":"Nume webshop","Webshop Order":"Comanda webshop","webshop":"magazin web","Webshop":"Magazin web","Website":null,"Wednesday":"Miercuri","Welcome Back":"Bine ai revenit","Welcome":"Bun venit","What happened?":"Ce s-a intamplat?","What you need to know":"Ce trebuie sa stii","What":"Ce","When":"Cand","Whoops!":"Oops!","Width":"Lăţime","Write a review":"Scrie o recenzie","Write":"Scriere","Yes":"Da","yesterday":"ieri","You are not authorized for this action":"Nu esti autorizat pentru aceasta actiune","You are not authorized to perform this action":"Nu esti autorizat pentru aceasta actiune","You are receiving this email because we received a password reset request for your account.":"Primești acest mesaj pentru că a fost înregistrată o solicitare de resetare a parolei pentru contul asociat acestei adrese de e-mail.","You can click":"Poti da click","You don't have any favorite products yet":"Nu ai niciun produs adăugat la favorite","You don't have any notifications":"Nu ai notificari","You don't have any orders yet":"Nu ai efectuat nicio comandă","You don't have any products in the shopping cart right now":"Nu ai niciun produs în coș momentan","You have":"Ai","You just got a notification...":"Tocmai ai primit o notificare...","You made too many attempts. Please wait 5 minutes and try again.":"Ai apelat de prea multe ori generarea raportului. Asteapta 5 minute si reincearca","You may also like":"S-ar putea sa-ti placa si","You will find attached the requested report.":"Vei gasi atasat raportul cerut.","Your :shop order :number":"Comanda :shop cu numarul :number","Your account has been disabled. Please contact the administrator":"Ne pare rau, contul tau a fost dezactivat. Te rugam contacteaza administratorul","Your card was successfully saved":"Cardul tău a fost salvat cu succes","Your email address is not verified.":"Adresa ta de e-mail nu este verificată.","Your Message":"Mesajul tău","Your password has been reset!":"Parola a fost resetată!","You need to accept our terms of use first":"Mai întâi trebuie să accepți termenii noștri de utilizare","item":"articol","PO #":"Ref #","Your privacy is important for us":"Confidențialitatea ta este importantă pentru noi","cart":"cos","favourites":"favorite","addresses":"adrese","orders":"comenzi","payment":"plata","summary":"sumar","add":"adauga","rate":"evalueaza","review":"recenzie","star":"stea","stars":"stele","Thank you for contributing":"Îți mulțumim pentru contribuție","Do you own or have used this product?":"Deții sau ai folosit acest produs?","This review is awaiting approval":"Această recenzie așteaptă aprobare","This review was approved":"Această recenzie a fost aprobată","This review was rejected. You may edit and repost it.":"Această recenzie a fost respinsă. Poți să îl editezi și să îl repostezi.","Edit review":"Editează recenzia","category":"categorie","terms-of-use":"termeni-si-conditii","privacy":"confidentialitate","about-us":"despre-noi","favorites":"favorite",":user finalized the :model :label for the partner :partner":":user a finalizat :model :label pentru partenerul :partner",":type quantity and total were successfully updated":"Cantitatea si totalul pentru :type au fost actualizate",":type update":"Actualizare :type","Please find attached the order details":"Regasiti detaliile comenzii in atasament","Succeeded":"Reusita","External Reference":"Referinta externa","Incomplete order (#:number)":"Comanda incompleta (#:number)","On :date you placed an order on our webshop but forgot to finalize the payment.":"Pe data de :date ai plasat o comanda pe magazinul nostru online dar nu ai finalizat plata.","Please click bellow to view your order and finalize the payment":"Poti sa dai click mai jos pentru a vizualiza comanda si a finaliza plata","New message from the webshop's contact form":"Mesaj nou din pagina de contact a webshop-ului","Your Webshop.":"Magazinul tau.","Message:":"Mesaj:","Contact phone: :phone":"Telefon de contact: :phone","Your order #:number on :shop was successfully placed":"Comanda ta cu numarul #:number de pe :shop a fost plasata cu succes","You have a new webshop order":"Ai o nouă comandă pe webshop","New user registration":"S-a inregistrat un nou utilizator","Before adjusting stock, select the product default supplier":"Înainte de a ajusta stocul, selecteaza furnizorul implicit al produsului","Cannot increment when quantity <= 0":"Nu se poate incrementa când cantitatea <= 0","Cannot decrement when quantity <= 0":"Nu se poate decrementa atunci când cantitatea <= 0","Order already has a :type invoice":"Comanda are deja o factura de tipul :type","Invalid item":"Articol invalid","Cannot update orders that are externally fulfilled":"Nu se pot actualiza comenzile care sunt îndeplinite extern","Order is already in this status":"Comanda are deja acest status","There are no differences on this order":"Nu există diferențe în această comandă","You are not allowed to issue payments without invoices":"Nu este permis sa emiti plati fara facturi","You are not allowed to issue payments on a cancelled invoice'":"Nu este permis sa emiti plati pentru o factura anulata","Sale is already paid":"Vânzarea este deja plătită","You cannot delete a paid order":"Nu poți șterge o comandă plătită","order details":"detaliile comenzii","Delivery Address":"Adresa de livrare","Disc.":"Disc.","M.U.":"U.M.","Product \/ Code":"Produs \/ Cod","registered in doc.":"înregistrat în doc.","received":"primit","U.P acquision":"P.U achiziţie","(no VAT)":"(fara TVA)","Val. acquision":"Val. achizitie","Val. VAT":"Val. TVA","(afferent)":"(aferent)","Info field":"Câmp informativ","additional":"adițional","piece":"buc","Total General":"Total General","Goods Receipt Note":"Nota de receptie a marfurilor","Unit":"Unitate","The undersigned, members of the reception committee, have received the material values provided by":"Subsemnatii, membri ai comitetului de recepție, au primit valorile materiale furnizate de","delegate":"delegat","based on the accompanying documents":"pe baza documentelor însoțitoare","consisting":"constând","car no.":"masina nr.","Optional field, usable in case of observations":"Câmp opțional, utilizabil în caz de observații","Reception committee members name and surname":"Numele și prenumele membrilor comisiei de recepție","Signature":"Semnătură","Manager name and surename":"Numele și prenumele managerului","Manager name and surname":"Numele și prenumele managerului","Reception comitee conclusions":"Concluziile comitetului de primire","Reception committee conclusions":"Concluziile comitetului de primire","Supplier\/carrier point of view":"Punct de vedere furnizor \/ transportator","Other mentions":"Alte mențiuni","The quantity determination was done by":"Determinarea cantității a fost făcută de","The quality determination was made by the sample":"Determinarea calității a fost făcută de eșantionul","no.":"nr.","Sender":"Expeditor","Companion":"Insotitor","Dispatch station":"Stație de expediere","Destination station":"Stația de destinație","Release date":"Data de lansare","Dispatch date":"Data expedierii","Arrival date":"Data sosirii","Supplier delegates, the carrier who participated in the reception":"Delegații furnizorului, curierul care a participat la recepție","ISBN":"ISBN","Total products":"Totalul produselor","Scale indicated weight":"Greutatea indicata pe cantar","Stock Removal":"Scoatere din stoc","Representative of":"Reprezentant al","Name and surname":"Nume si prenume","Identity card":"Card de identitate","TOTAL":"TOTAL","Reception participants":"Participanți la recepție","for Sale":"de vanzare","Emag API call for :action failed":"Apelul API Emag pentru :action a esuat","The action :action on url :url failed with the following error messages:":"Acțiunea :action catre url :url a eșuat cu următoarele mesaje de eroare","New :type callback from emag":"Un nou callback :type de la emag","New :type callback from emag for id :id":"Un nou callback :type de la emag pentru id-ul :id","Missing app product for emag order :id":"Lipseste produsul din aplicatie pentru comanda emag :id","Product :product":"Produsul :product","Offer mismatch for eMag order :id":"Nepotrivirea ofertei pentru comanda eMag :id","For product :code":"Pentru produsul :code","External part number :code":"Cod extern :code","Part number :code":"Cod :code","New eMag order (id: :id) with vouchers:":"Comandă nouă eMag (id: :id) cu vouchere:",":name, value :value":":name, valoare :value","New eMag order (id: :id) with vouchers":"Comandă nouă eMag (id: :id) cu vouchere","Shipping price mismatch for eMag order :order":"Nepotrivirea prețului de expediere pentru comanda eMag :order","Product price mismatch for eMag order :order":"Nepotrivirea prețului produsului pentru comanda eMag :order","Offer with id :id already exists":"Există deja o oferta cu id-ul :id","An offer for the pnk :pnk already exists":"Există deja o ofertă pentru pnk :pnk","An offer with product id :id already exists and needs eMag intervention":"O ofertă cu id-ul produsului :id există deja și necesită intervenția eMag","No order with id :id found":"Nu s-a găsit nicio comandă cu id-ul :id","Write Review For":"Scrie o recenzie pentru","Don't know what to write about?":"Nu știi despre ce să scrii?","Tell us what you like about the purchased product.":"Spune-ne ce iti place la produsul achizitionat.","Does it live up to your expectations?":"Se ridică la nivelul așteptărilor tale?","Are you satisfied with the value for money?":"Esti mulțumit de raportul calitate-preț?","Would you recommend it to others?":"L-ai recomanda altora?","Remove from favorites":"Elimina din favorite","make default":"fă implicit","delivery":"livrare","billing":"facturare","Not Paid":"Neplatit","Requires Action":"Necesită acțiune","verify":"verifica","Verify":"Verifica","confirmation":"confirmare","No addresses defined":"Nu există adrese definite","Part":"Cod","Complete the payment":"Finaliza plata","An extra confirmation is needed to process your payment":"Este necesară o confirmare suplimentară pentru a procesa plata","Order is already paid":"Comanda este deja plătită","Your payment for this order is still processing":"Plata dvs. pentru această comandă este în curs de procesare","Please find the invoice attached":"Găsești factura în atașament","Invoice issued for order #:number":"Factura emisa pentru comanda #:number","Your order #:number":"Comanda dvs #:number","Payment via :type was successful for order :number":"Plata prin :type a reușit pentru comanda :number","A payment was received for order #:number (:total :currency)":"S-a inregistrat plata pentru comanda :number (:total :currency)","Insufficient stock for :product, only :left left":"Stoc insuficient pentru :product, numai :left ramas","Registration is restricted for the moment, please return soon":"Înregistrarea este restricționată pentru moment, te rugăm să revii în curând","Hello :name":"Salut :name","Thank you for creating an account on :shop":"Îți mulțumim pentru că ți-ai creat cont pe :shop","We hope that you will enjoy our products":"Sperăm că te vei bucura de produsele noastre, așa cum ne bucurăm și noi de ele :)","Go to login":"Intră în cont","If you are having trouble clicking the action button, copy and paste the URL below into your web browser":"Daca întampini dificultati in a accesa butonul, copiază adresa de mai jos in browser-ul tau","Payment via :type was successful for order #:number, amount :amount :currency":"Plata prin :type a reușit pentru comanda #:number, suma :amount :currency","View order":"Vezi comanda","Click bellow to view your order and finalize the payment":"Poti sa dai click mai jos pentru a vizualiza comanda si a finaliza plata","A new account was created : :name":"Un cont nou a fost creat: :name","from: :company":"de la: :company","To manage the account please click the link below":"Pentru a gestiona contul, acceseaza linkul de mai jos","View account":"Vezi contul","Details for delivering your order":"Detalii pentru livrarea comenzii","You're just a few steps away from finalizing your order":"Ești la doar câțiva pași distanță de finalizarea comenzii","If you already have an account click":"Dacă ai deja un cont, click","to go to the login page":"pentru a accesa pagina de autentificare","Your account":"Contul tau","I want to create an account":"Vreau să imi creez cont","Company Name":"Numele Companiei","Ship to a different addressed":"Comanda ta #:number a fost plasată cu succes","Skip":"Sari","New order #:number from :channel for :total :currency":"Comanda noua #:number din :channel in valoare de :total :currency","fast-checkout":"checkout-rapid","Fast Checkout":"Checkout Rapid","The action :action failed with the following error code: :code":"Acțiunea :action a eșuat cu următorul cod de eroare: :code","Reported error message: :message":"Mesaj de eroare raportat: :message","Request payload: :payload":"Payload Request: :payload","API call for :action failed":"Apelul API pentru :action a esuat","Notification, :title":"Notificare, :title","New Comment Tag":"Etichetare noua in comentarii","You were just tagged":"Tocmai ai fost etichetat","Comment Tag Notification":"Notificare etichetare in comentariu","Your password will expire soon":"Parola ta va expira curand","You've got :days days left to change it":"Mai ai :days zile ramase pentru a o schimba","You've got until tomorrow to change it":"Mai ai timp pana maine pentru a o schimba","You must change it today":"Trebuie schimbata astazi","Welcome!":"Bine ai venit!","Task Reminder":"Memento Task","This is a reminder for the following task:":"Acesta este un memento pentru următorul task:","View Task":"Vezi task-ul","Task :description":"Task :description","You cannot delete the default address":"Nu poți șterge adresa implicită","You cannot delete an address that you have previously used":"Nu poți șterge o adresă pe care ai folosit-o anterior","You cannot edit this company, please contact support":"Nu poți edita această companie, te rugăm să contactezi echipa de asistenta","Your cart is empty":"Coșul tau este gol","You cannot delete the default card":"Nu poți șterge cardul implicit","You cannot edit this :model, please contact support":"Nu poți edita acest :model, te rugăm să contactezi echipa de asistență","Company information":"Informațiile companiei","Billing address":"Adresa de facturare","Free":"Gratuit","Get to know us":"Cunoaște-ne","Registration successful":"Inregistrare realizata","Your account needs to be activated before you can login":"Contul trebuie să fie activat înainte de a te putea autentifica","You will receive a confirmation email upon approval":"Vei primi un e-mail de confirmare după aprobare","Thank you!":"Iti multumim!","Frequently asked questions":"Intrebari frecvente","Edit address":"Editeaza adresa","Edit company":"Editeaza compania","Pay by Card":"Plătește cu Card","Click":"Click","Not Implemented":"Neimplementat","Approve":"Aproba","Disapprove":"Dezaproba","for \":query\"":"pentru \":query\"","Review was rejected":"Această recenzie a fost respinsă","Review updated for :product":"Recenzie actualizata pentru produsul :product","New review submitted for :product":"Recenzie adaugata pt produsul :product","A product review for :product was updated by :person:":"Recenzie de produs pentru :product actualizata de :person:","A new product review for :product was posted by :person:":"Recenzie de produs pentru :product adaugata de :person:","Your review for :product was :approval":"Recenzia ta pentru produsul :product a fost :approval","If you want, you can revise your review here:":"Daca vrei, poti actualiza recenzia ta aici:","Review :approval":"Recenzie :approval","approved":"aprobata","rejected":"respinsa","Terms of Use":"Termeni si conditii","Similar products":"Produse similare","Enter your email to reset your password":"Introdu adresa ta de e-mail pentru a iti reseta parola","We'll send you an email with the instructions to follow":"Iti vom trimite un e-mail cu instrucțiunile de urmat","similar-products":"produse-similare","description":"descriere","characteristics":"caracteristici","about-this-brand":"despre-acest-brand","not in stock":"nu este în stoc","Not In Stock":"Nu este în stoc","Hold tight, your order is being processed. We will email you when your order succeeds":"Ține-te bine, comanda ta este în curs de procesare. Iți vom trimite un e-mail când comanda va reuși","Pay by Wire Transfer":"Plătește prin Transfer Bancar","Grand Total":"Total General","A cancellation request was received for order #:id":"Am primit o cerere de anulare pentru comanda #:id","Cancellation request for order #:id":"Cerere de anulare pentru comanda #:id","Please let us know if you are able to cancel the order":"Va rugam sa ne comunicati daca puteti efectua anularea","Cancellation request for emag order with id :id":"Cerere de anulare pentru comanda emag cu id :id","An emag order cancellation request was received":"Am primit cerere de anulare pentru o comanda emag","If you need to change your email please contact us":"Dacă dorești schimbarea emailului te rugăm contactează-ne","Awb status was updated to \":status\" for emag order #:id":"Statusul Awb pentru comanda emag #:id a fost actualizat in \":status\"","Awb status update for emag order #:id":"Actualizare status awb pentru comanda emag #:id","You just asked for a password reset. To complete the process click the button below.":"Tocmai ai solicitat resetarea parolei. Pentru a finaliza procesul, accesează butonul de mai jos.","Set your new password":"Setează noua parolă","The company already exists in our system. Please contact us about that":"Compania există deja în sistemul nostru. Te rugăm să ne contactezi referitor la această situație","Secure payments with":"Plătește în siguranță prin","We will create an account for your future orders":"Iți vom crea un cont pentru comenzile tale viitoare","Go back to the store":"Întoarce-te în magazin","Added":"Adăugat","A payment method was already set for this order":"O metodă de plată a fost deja stabilită pentru această comandă","Street line 1":"Nume stradă, număr etc.","Street line 2":"Apartament, complex, unitate etc. (opțional)","A new account was created: :name":"A fost creat un cont nou: :name","Translator":"Traducător","Publisher":"Editor","Edition":"Ediție","Collection":"Colecție","Year of Publication":"Anul publicării","Number of Pages":"Număr de pagini","Genre":"Gen","Subgenre":"Subgen","Author":"Autor","Your order #:number is being processed":"Comanda ta #:number este în curs de procesare","Your order #:number is ready to be shipped":"Comanda ta #:number este pregatită de livrare","Your order #:number was shipped":"Comanda ta #:number a fost expediată","Your order #:number was delivered":"Comanda ta #:number a fost livrată","Your order #:number is being processed. We'll keep you updated.":"Comanda ta #:number este în curs de procesare. Te vom ține la curent.","Your order #:number has been shipped to the following address: :address":"Comanda ta #:number a fost expediată la următoarea adresă: :address","Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":"Comanda ta #:number a fost livrată. Sperăm să te bucuri de achiziție și ne-ar încânta să primim feedbackul tău. Dacă dorești, ne poți lăsa un review pentru produsele achizitionate.","Don't hesitate to contact us for any questions.":"Pentru orice întrebări, nu ezita să ne contactezi.","Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":"Comanda ta #:number a fost ambalată și este pregatită de expediere. Te vom anunța de îndată ce a fost expediată.","Order #:number from :channel, placed by :person, has a new status update :status":"Comanda #:number de pe :channel, plasată de :person, are o nouă actualizare status :status","Status update for order #:number":"Actualizare status pentru comanda #:number","Cancellation request for :channel order #:number":"Cerere de anulare pentru comanda de :channel #:number","Store":"Magazin","Fulfill":"Proceseaza","Download order (xlsx)":"Descare comanda (xlsx)","Download order (pdf)":"Descarca comanda (pdf)","No email sent with the current order":"Comanda actuala nu a fost trimisa pe email","Issue Proforma":"Emite proforma","No email sent with the current invoice":"Factura curenta nu a fost trimisa pe email","Invoice emailed by":"Factura trimisa de","Order emailed by":"Comanda trimisa de","Remove from stock":"Scoate din stoc","Undo fulfill":"Anuleaza procesarea","Insert in stock":"Insereaza in stoc","Prepare products":"Pregateste produsele","Undo prepare":"Anuleaza pregatirea comenzii","Ship":"Expediaza","Undo ship":"Anuleaza expedierea","Deliver":"Livreaza","Undo deliver":"Anuleaza livrearea","NIN":"CNP","Reference":"Referinta","Confirm":"Confirma","Undo confirm":"Anuleaza confirmarea","Receive":"Receptioneaza","Undo receive":"Anuleaza receptia","Download goods received note":"Descarca nota receptie marfa","New Position":"Pozitie noua","Order #:number from :channel, placed by :person, has a new status update: :status":"Comanda #:number de pe :channel, plasată de :person, are o nouă actualizare de status: :status","Please take the necessary steps.":"Te rog sa iei masurile necesare.","A cancellation request was received for a :channel order.":"Am primit cerere de anulare pentru o comada din :channel.","Sale":"Vanzare","The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":"Aplicația este indisponibilă momentan pentru întreținere programată. Vă rugăm să reveniți în câteva minute","Availability":"Disponibilitate","Price Range":"Interval Pret","price ascending":"pret crescator","price descending":"pret descrescator","Sort":"Ordoneaza","newest":"cele mai noi","On Delivery":"La livrare","Card Processor":"Procesator card","Not published":"Nepublicat","marketplace offer":"oferta marketplace","marketplace product":"produs marketplace","activate":"activeaza","update measurements":"actualizeaza dimensiunile","download":"descarca","download pictures":"descarca pozele","Auto Pricing":null,"Documentation":"Documentatie","Date Filter":"Filtru Data"," Bundle":"Pachet","Emag Number":"Numar emag","Payment Method":"Metoda de plata","Create Payment":"Creeaza plata","Create Product":"Creeaza produs","Free Shipping Above":"Transport gratuit peste","Locker Service":"Serviciu de locker","Courier Account":"Cont curier","Min Margin":"Margine minima","Max Price":"Pret maxim","Min Price":"Pret minim","Auto AWB Generation":"Generare automata AWB","Pagination":"Paginatie","Locality ID":"ID localitate","activate auto pricing":"activeaza auto pricing","deactivate auto pricing":"dezactiveaza auto pricing","Full Name":"Nume si Prenume"} \ No newline at end of file +{":name export done":"Export :name efectuat",":name export started":"Exportul :name a început",":type import done":"Import :type efectuat","#":"#","30 days":"30 zile","7 days":"7 zile","A fresh verification link has been sent to your email address.":"Am trimis un nou link de verificare pe adresa dvs. de e-mail","About this brand":"Despre acest brand","About Us":"Despre noi","Above":"Deasupra","Accessories":"Accesorii","Account details":"Detalii cont","Account":"Cont","account":"cont","Acidity":"Aciditate","Acquisition Price":"Preț achiziție","Acquisition Value":"Valoare achiziție","Actions":"Acțiuni","actions":"acțiuni","Active":"Activ","active":"activ","Activity Log":"Activitate","Start Date":"Incepere activitate","Activity":"Activitate","Add :entity":"Adaugă :entity","Add address":"Adaugă adresă","Add Brand":"Adaugă brand","Add card":"Adaugă card","Add Card":"Adaugă card","Add Comment":"Adaugă comentariu","Add company":"Adaugă companie","Add File":"Adaugă fișier","Add Key":"Adaugă cheie","Add Payment":"Adaugă plată","Add to cart":"Adaugă în coș","Add to favorites":"Adaugă la favorite","Add video":"Adaugă clip","Add":"Adaugă","Adding":"Se adaugă","Additional":"Adițional","Address is missing or does not have lat\/long":"Adresa lipseste sau nu are latitudine \/ longitudine","Address":"Adresa","Addresses":"Adrese","Adjustment":"Reglaj","Administration":"Administrare","administration":"administrare","Administrative Area":"Administrare","Again Colors":"Din nou, culori","Agent":"Agent","Algolia":null,"All Menu Items":"Toate elementele","All Products":"Toate Produsele","All products":"Toate produsele","all products":"toate produsele","All rights reserved.":"Toate drepturile rezervate.","all":"tot","Allocated To":"Atribuit către","Amazing Saving":"Preț avantajos","Free Shipping":"Transport Gratuit","Amount":"Suma","An error has occured. Please report this to the administrator":"S-a inregistrat o eroare. Raporteaza acest fapt administratorului","An error was encountered while generationg :export":"A aparut o eroare la generarea exportului :export","An export job is already running for the same table":"Un export este deja in curs pt acelasi tabel","An unknown error occurred while submitting your report. Please try again.":"A fost o eroare la trimiterea mesajului tau. Te rugam sa reincerci.","Analytics Id":null,"Apartment":"Apartament","App Key":null,"App":"App","Appellative":"Apelativ","Approved Documentation":"Documentație aprobată","Approved":"Aprobat","April":"Aprilie","Aprovizionari":null,"Are you sure that you want to delete the template file?":"Esti sigur ca vrei sa stergi fisierul macheta?","Are you sure?":"Esti sigur?","Assign":"Asociaza","Associate Person":"Asociaza persoana","attribute groups":"grupuri de atribute","Audit":null,"audit":null,"Authors":"Autori","Available menus":"Meniuri disponibile","Available slides":"Diapozitive disponibile","Avatar":"Avatar","Avenue":"Bulevard","Awaiting Brand validation":"Se așteaptă validarea brandului","Awaiting Documentation Validation":"Se așteaptă validarea documentației","Awaiting EAN validation":"Se așteaptă validarea EAN","Awaiting MKTP validation":"Se așteaptă validarea MKTP","Award List":"Lista premiilor","Awards":"Premii","Azzure":"Azur","Back":"Inapoi","Backed by":"Sustinut de","Bag":"Pungă","Bank Account":"Cont bancar","Bank":"Banca","Be the first to review this product":"Fii primul care evaluează acest produs","Before proceeding, please check your email for a verification link.":"Înainte de a continua, te rugăm să verifici e-mailul pentru link-ul de verificare.","Below":"Dedesubt","Bend":"Aplecare","Besel":null,"Best Seller":"Cel mai vândut","Between":"Intre","Billing Address":"Adresa de facturare","Birthday":"Data nasterii","birthday":"data nasterii","Birthdays":"Zile de naștere","Blank":"Blank","Blocked":"Blocat","Bookmarks":"Favorite","Bottled Weight":"Greutate îmbuteliată","Boulevard":"Bulevard","Box":"Cutie","Brand Count":"Numar de branduri","Brands":"Branduri","brands":"branduri","BTL":null,"Bucharest":"Bucuresti","Building Type":"Tip cladire","Building":"Cladire","building":"cladire","built with":"construit cu","Business hours":"Program de lucru","Butons":"Butoane","Button Item":"Element Buton","Buttons":"Butoane","buttons":"butoane","By":"De","Calendar":null,"calendar":null,"Calendars":"Calendare","Calories per 100g":"Calorii per 100g","Cancel":"Anuleaza","Cancelled":"Anulat","cancelled":"anulat","Cantitate":null,"Card number":"Număr card","Cardholder name":"Nume deținător card","Carousel":"Carusel","carousel":"carusel","Carrier":"Curier","Cart is empty":"Coșul este gol","Cart Summary":"Sumar cos","Cart Validity Days":"Validitatea cosului in zile","Cart":"Cos","Pay on Delivery":"Plătește la Livrare","Cash Register Receipt":"Bon fiscal","Catalog":null,"Categories":"Categorii","Navigation":"Navigare","categories":"categorii","Category":"Categorie","Channel":"Canal","Characteristics":"Caracteristici","Cheque":"Cec","Choose language":"Alege limba","Choose your payment method":"Alege metoda de plata","Choose":"Alege","City Population by Age":"Populatia in functie de varsta","City":"Oras","Clear all":"Sterge tot","click here to request another":"apasă aici pentru a solicita altul","Client (company)":"Client (companie)","Client (person)":"Client (persoana)","Client Discounts":"Reduceri pentru clienți","Client Invoices":"Facturi clienti","Client Order Reference":"Referința clientului","Client Payment":"Plati clienti","Client Payments":"Plati clienti","Client Reference":"Referință client","Client Stock":"Stoc client","Client Stocks":"Stocuri client","Client":"Client","Clienti":null,"Clients":"Clienti","clients":"clienți","Close":"Inchide","Code":"Cod","Coding":"Codare","Collapse Main Menu":"Restrange meniu principal","Colors Two":"Culori, doi","Colors":"Culori","Coming Soon":"În Curând","Comments":"Comentarii","Commercial":"Comercial","commercial":"comercial","Companies":"Companii","companies":"companii","Company client":"Client companie","Company":"Companie","company":"companie","Completed":"Finalizat","Configure Role":"Configureaza rol","Configure":"Configureaza","configure":"configureaza","Confirm Password":"Confirmare parolă","Confirmed":"Confirmat","Contact Bar Text":"Text bara de contact","contact form":"formular de contact","Contact Form":"Formular de Contact","Contact us with any questions or concerns that you may have and we will get back to you shortly":"Contactează-ne pentru orice întrebări sau nelămuriri și îți vom răspunde în curând","Contact":"Contact","Contacts Index":"Index contacte","Contacts":"Contacte","contacts":"contacte","Content Private":"Continut privat","Content":"Continut","Continue":"Continua","Copied to clipboard":"Copiat in clipboard","Copyright © 2016":"Copyright © 2016","Core":"Core","Country of Origin":"Țara de origine","Country":"Tara","County":"Judet","Courier Service":"Serviciu de curierat","Create a new Entity":"Creeaza o noua entitate","Create a new User":"Creeaza user","Create Button":"Creeaza buton","Create Company":"Creeaza companie","Create Differences Sale":"Genereaza vanzare cu diferente","Create Group":"Creeaza grup","create group":"creeaza grup","Create Language":"Creeaza limba","Create Menu":"Creeaza meniu","Create Owner":"Creaza owner","Create Permission Group":"Creeaza grup permisii","Create Permission":"Creeaza permisie","Create Permissions Group":"Creeaza grup permisii","Create Person":"Creeaza persoana","Create Resource":"Creaza resursa","Create Role":"Creeaza rol","Create Tutorial":"Creeaza tutorial","Create User Group":"Creeaza grup useri","Create User":"Creeaza user","Create":"Creeaza","create":"creeaza","Created Address":"Adresa creata","Created At":"Creat la","Created at":"Creat la","Created By":"Creat de","Created Contact":"Contact creat","Created":"Creat","created":"creat","Currency Placed Before":"Valuta plasata inainte","Current file size is":"Marimea fisierului este","custom":"personalizat","Customer opinions":"Opiniile clienților","Cycling":"Ciclism","Danger":"Pericol","Dashboard":"Dashboard","dashboard":"dashboard","Data Import":"Import date","data import":"import date","Date":"Data","Default Address":"Adresa implicita","Default Menu":"Meniu implicit","Default":"Implicit","default":"implicit","Delete Avatar":"Sterge Avatar","Delete File":"Sterge Fisier","Delete Template":"Sterge template","Delete video":"Sterge clip","Delete":"Sterge","delete":"sterge","deleted":"sters","Delivered":"Livrat","Description":"Descriere","deselect":"deselecteaza","Designing":"Designing","details":"detalii","Details":"Detalii","Diameter":"Diametru","Direct Link":"Link direct","Discount":"Reducere","Discounts":"Discounturi","discounts":"discounturi","Discussions":"Discutii","Display Name":"Nume Afisat","Documents":"Documente","documents":"documente","Don't have an account?":"Nu ai cont?","Download Delivery Note":"Descarca nota de livrare","Download Excel Sale Offer":"Descarca oferta vanzare (excel)","Download Excel Sale Return Offer":"Descarca oferta de retur (excel)","Download Invoice (long click for cancel)":"Descarca factura (click lung pt anulare factura)","Download Payment (long click for cancel)":"Descarca plata (click lung pt anulare plata)","Download Sale Offer":"Descarca oferta vanzare","Download Sale Return Offer":"Download oferta de retur","Download Stock Removal":"Descarca fisa scoatere din stoc","Download Template":"Descarca template","Download":"Descarca","Drag And Drop":"Drag And Drop","Drinking":null,"Due Date":"Scadenta","E-Mail Address":"Adresă de e-mail","Eating":"Mancand","EAV":null,"eav":null,"Edit Button":"Editeaza buton","Edit Company":"Editeaza companie","Edit Invoice":"Editeaza factura","Edit Language":"Editeaza limba","Edit Menu":"Editeaza meniu","Edit Owner":"Editeaza owner","Edit Permission Group":"Editeaza grup permisii","Edit Permission":"Editeaza permisie","Edit Permissions Group":"Editeaza grup permisii","Edit Person":"Editeaza persoana","Edit personal details":"Editeaza detaliile personale","Edit Role":"Editeaza rol","Edit Texts":"Editeaza texte","edit texts":"editeaza texte","Edit Tutorial":"Editeaza tutorial","Edit User Group":"Editeaza grup useri","Edit User":"Editeaza user","Edit":"Editeaza","edit":"editeaza","Editable Limit":"Limita modificari","edited":"editat","Element":"Element","Emag Active Offer":"Oferta activa Emag","Emag documentatie":null,"Emag Offer":"Oferta Emag","Emag pret":null,"Emag Price":"Pret Emag","Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":"Emailul poate fi editat doar prin formularul de user","Email":"Email","Emailed At":"Trimis prin e-mail la","Emailed":"Email","Enabled":"Activat","End":"Sfarsit","Enter Fulfilling Mode":"Acceseaza modul Efectuare","Enter the application":"Intra in aplicatie","Enter warehouse mode":"Intra in mod magazie","Enter Warehouse Mode":"Paraseste modul Depozit","Entities":"Entitati","entities":"entitati","Entity Details":"Detalii entitate","Entity":"Entitate","entity":"entitate","Entries":"Intrari","entries":"intrari","Entry":"Intrare","entry":"intrare","Error":"Eroare","Events":"Evenimente","Excel":"Excel","Expanded Menu":"Meniu colapsat","Expiration Date":"Data expirare","Export available for download: :filename":"Export :filename disponibil pentru descarcare","Export Done":"Export efectuat","Export emailed: :filename":"Export :filename trimis pe email","Export emailed":"Export trimis pe mail","Export error":"Eroare la exportare","Export Notification":"Notificare export","Export started":"Export inceput","Export":"Export","export":"export","exporting rejected":"export refuzate","exports":"exporturi","External":"Extern","Extra Virgin Olive Oils":"Ulei de măsline extravirgin","Facturi clienti":null,"Facturi furnizori":null,"Failed":"Esuat","failed":"esuat","FAQ":null,"Favorites":"Favorite","Favourite products":"Produse favorite","Fax Number":"Numar fax","Fax":"Fax","FEATURED BRANDS":"BRANDURI PROMOVATE","Featured Brands":"Branduri Promovate","Feb":"Feb","February":"Februarie","File name":"Nume fisier","File Size":"Marime fisier","File":"Fisier","File(s)":"Fisier(e)","Files were uploaded successfully":"Fisierele au fost incarcate","Files":"Fisiere","files":"fisiere","Fill":"Completeaza","Filter by name or code":"Filtreaza dupa nume sau cod","Filter":"Filtru","filtered from":"filtrate din","filtered":"filtrat","Filters":"Filtre","Finalize order":"Finalizează comanda","Finalize":"Finalizeaza","Finalized":"Finalizat","finalized":"finalizat","Financial Overview":"Prezentare Financiară","Financials":"Financiar","financials":"financiar","find matches":"găsește potriviri","First Name":"Prenume","Fiscal Code":"Cod fiscal","Fiscal Invoice":"Factura fiscala","Fiscal":null,"Flag Icon Class":"Clasa iconita steag","Flag Sufix":"Sufix steag","Flag":"Steag","Floor":"Etaj","floor":"etaj","Forbidden":"Interzis","Forgot Password?":"Ai uitat parola?","Forgot password":"Parola uitata","Forgot Your Password?":"Ai uitat parola?","Found :total results":":total rezultate gasite","Friday":"Vineri","Frisbo":null,"From":"De la","from":"de la","Fulfilled At":"Efectuat la","Fulfilling":"În procesare","Furnizor":null,"Gender":"Gen","General Settings":"Setari generale","General":null,"Generate":"Genereaza","Order #:number":"Comanda #:number","Geneva":"Geneva","Get in touch with us":"Contacteaza-ne","Go Home":"Acasă","Google":null,"Got it!":"Am înțeles!","Green":"Verde","Group":"Grup","Groups":"Grupuri","Habits":"Obiceiuri","Harvest 2016\/2017":"Recolta 2016\/2017","Harvest 2017\/2018":"Recolta 2017\/2018","Harvest 2018\/2019":"Recolta 2018\/2019","Harvest 2019\/2020":"Recolta 2019\/2020","Harvest":"Recolta","Has Children":"Are submeniu","Height":"Înălţime","Hello!":"Salut!","Hello":"Salut","Herbs":"Plante aromatice","here":"aici","Hi :name,":"Salut :name,","Hi :name":"Salut :name","Home":"Acasa","Homepage":"Pagina principală","How To Videos":"Clipuri","how to videos":"clipuri","I agree to the":"Sunt de acord cu","I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":"Autorizez :name sa trimita instructiuni institutiei financiare care a emis cardul meu pentru a face plati din contul meu bancar in momentul achizitiei de catre mine a produselor de pe siteul :name","I authorise":"Autorizez","Ian":"Ian","Icon Class":"Clasa icoana","Icon":"Icoana","If you are having trouble clicking the action button, copy and paste the URL below":"Daca întampini dificultati in a accesa butonul, copiază adresa de mai jos","If you did not create an account, no further action is required.":"Dacă nu ai creat un cont, poți ignora acest mesaj.","If you did not receive the email":"Dacă nu ai primit e-mailul","If you did not request a password reset, no further action is required.":"Dacă nu ai solicitat o resetare de parolă, poți ignora acest mesaj.","If you’d like to help, tell us what happened below.":"Daca vrei sa ajuti, noteaza mai jos ce s-a intamplat","IFSC":"CIF","Impersonate":"Impersoneaza","Impersonating":"Impersonare","Import Summary":"Sumar import","Import Type":"Tip import","Import":"Import","Importance":"Importanţă","Important":"Important","Imported At":"Importat la","Imported By":"Importat de","Imported Entries":"Intrari importate","ImportType":"Tip import","In a few minutes you will receive a confirmation email":"In cateva minute vei primi un email de confirmare","In Stock":"In stoc","in stock":"în stoc",":days Days Returns":"Retur Gratuit in :days zile","24h Tracked Shipping":"Livrare cu Tracking in 24h","100% Original Products":"Produse 100% Originale","Secure Payments":"Plati securizate","Income":"Venit","index":"index","Indications":"Indicații","Individual":"Persoana Fizica","Industrial":"Industrial","Info":null,"Ingredients":"Ingrediente","Integrations":"Integrări","Internal #":"Cod intern","Internal Code":"Cod intern","Internal":"Intern","into your web browser":"in browserul dvs.","Invalid signature.":"Semnătură incorectă.","Invalid":null,"Inventory":"Inventar","inventory":"inventar","Invoice Emailed":"Email factura","Invoice for order # :number":"Factura pentru comanda # :number","Invoice for order":"Factura pentru comanda","invoice":"factura","invoices":"facturi","Invoices":"Facturi","Is Active":"Este Activ","Is Cancelled":"Anulat","Is Default":"Este implicit","is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":"Emite factura","Issue Payment":"Adauga plata","Issues":"Probleme","It looks like we’re having issues.":"Se pare ca intampinam probleme","Item":"Articol","items":"articole","Items":"Articole","Jams":"Gemuri","January":"Ianuarie","Jar":"Borcan","July":"Iulie","June":"Iunie","Keep tables configurations":"Pastreaza configuratia tabelelor","Key Collector":"Colector chei","Key Name":"Denumire cheie","Key Value":"Valoare cheie","Key":"Cheie","keys found":"chei gasite","Label Generator":"Generator etichete","Label":"Etichetă","Labels":"Etichete","labels":"etichete","Lane":"Alee","Language Item":"Element limba","Language":"Limba","Languages":"Limbi","languages":"limbi","Last Modified":"Ultima modificare","last month":"luna trecuta","Last Name":"Nume","Last updated":"Ultima modificare","last week":"saptamana trecuta","last year":"anul trecut","Learn more":"Află mai multe","Leave Fulfilling Mode":"Paraseste modul Efectuare","Leave Warehouse Mode":"Acceseaza modul Depozit","Left":"Stanga","Length":"Lungime","limited quantity":"cantitate limitată","Limited Stock Limit":"Pragul pt stoc limitat","Limited Stock":"Stoc limitat","Line":"Linie","Link":"Link","List Price":"Pret lista","Page [page] from [toPage]":"Pagina [page] din [toPage]","List Value":"Valoare lista","List":"Lista","Load More":"Incarca mai multe","Load more":"Incarca mai multe","Loading...":"Se incarca...","Loading":"Se incarca","Localisation Index":"Index localizare","Localisation":"Internationalizare","localisation":"internationalizare","Localities":"Localitati","Locality":"Localitate","Log in":"Autentificare in sistem","Log out":"Delogare","Log Out":"Iesiti","log":"log","Login":"Login","login":"login","Logins":"Logari","logins":"logari","logout":"deconectare","Logout":"Iesire","Logs Index":"Index Loguri","Logs":"Loguri","logs":"loguri","Loss":"Pierdere","Made with Bulma":"Realizat cu Bulma","Made with Laravel":"Realizat cu Laravel","Made with Vue":"Realizat cu Vue","Magazie":null,"Main Menu":"Meniu principal","Manage Buttons":"Editeaza butoane","Manage Menus":"Administreaza meniuri","Manage Permissions":"Administreaza permisii","Mandatary":"Mandatar","Manufacturer":"Producător","Manufacturers":"Producatori","Maps key":null,"Mar":"Mar","March":"Martie","Mark all as read":"Marcheaza-le citite","Mark all read":"Marcheaza tot ca citit","Max":null,"May":"Mai","MB":"MB","Measurement Unit":"Unitate de Masură","Measurement Units":"Unitati de masura","measurement units":"unitati de masura","Member Since":"Membru din","Members":"Membri","Menu Collapse":"Restrange meniu","Menu Items":"Elemente meniu","Menu":"Meniu","Menus Index":"Index meniuri","Menus":"Meniuri","menus":"meniuri","Merge all localisation files":"Îmbină toate fisierele de localizare","Mfr #":"Cod produs","Mfr":"Prod","Min":null,"Miss":null,"Mode":"Mod","Monday":"Luni","more":"mai mult","move to favorites":"muta la favorite","Mr":null,"MU":"UM","N\/A":"N\/A","Name":"Nume","Needs matching":"Necesita match","Net Weight":"Greutate netă","New Address":"Adresa noua","New Password":"Parola noua","New team":"Echipa noua","New Topic":"Subiect nou","New":"Nou","Next Page":"Pagina urmatoare","Next":"Urmator","No activity found":"Nu a fost gasita activitate","No keys found":"Nu au fost gasite chei","No locations found":"Nu au fost găsite locații","No options available":"Nu exista optiuni","No records were found":"Nu au fost gasite inregistrari","No reservations found":"Nu au fost găsite rezervări","No search results found":"Nu au fost gasite rezultate","No teams were created yet":"Încă nu au fost create echipe","No":"Nu","Not Found":"Negăsit","not paid":"neplatit","Note":"Observații","Notes":"Note","Nothing found":"Nu a fost gasit nimic","notification":"notificare","Notifications":"Notificari","notifications":"notificari","Number":"Numar","Observations":"Observatii","of":"din","Offices":"Birouri","Oh no":"O, nu","OK":"OK","on behalf of :company":"pe compania :company","On Demand":"In stoc furnizor","on":"pe","Online":null,"Only missing":"Doar negasite","Operation failed because the permission is allocated to existing role(s)":"Operatia a esuat deoarece permisiunea este alocată unui rol existent","Operation was successfull":"Operatiunea a fost efectuata cu succes","order #:number invoice":"factura pentru comanda #:number","order #:number":"comanda #:number","Order details :number":"Detalii comanda :number","Order Line Limit":null,"Order Payment":"Plata","Order Values":"Valorile comenzii","Order":"Comanda","Orders":"Comenzi","Organize Menus":"Ordonare meniuri","our location":"locatia noastra","Our Location":"Locația noastră","Our team has been notified.":"Echipa noastra a fost notificata","Overdue":"Depășit","Own Stock":"Stoc propriu","Owners Index":"Index owneri","Owners":"Entitati","owners":"owneri","Package Content":"Conținutul pachetului","Packaging Units":"Unități de Ambalare","packaging units":"unități de ambalare","Page Expired":"Pagina a expirat","Parade":"Parada","Parent":"Parinte","Part Number":"Cod","Password Confirmation":"Confirmare parola","Password":"Parola","password":"parola","Passwords must be at least six characters and match the confirmation.":"Parola trebuie să fie de cel puțin șase caractere și să se potrivească cu cea de confirmare.","Past Imports":"Importuri anterioare","Pasta":"Paste","Authorize Only":"Doar Autorizare","pay":"plateste","Pay":"Plateste","Payment method":"Metoda de plata","Payment Methods":"Metode de plata","Payment Order":"OP","Payment":"Plata","payments":"plati","Payments":"Plăți","Pays VAT":"Plateste TVA","People":"Persoane","people":"persoane","Permission Group":"Grup de permisii","Permission Groups Index":"Index grupuri de permisii","Permission Groups":"Grupuri de permisii","Permission Name":"Nume permisie","Permission":"Permisie","permissionGroups":"Grupuri de permisii","Permissions Group Items":"Elemente Permisii Grup","Permissions Group":"Grup Permisii","permissions group":"permisii grup","Permissions Groups":"Grupuri Permisii","Permissions Index":"Index permisii","Permissions":"Permisii","permissions":"permisii","Person client":"Client persoana","Person":"Persoana","person":"persoana","Personal Info":"Informatii personale","Personal information can only be edited via the person form":"Informatiile personale pot fi editate numai prin formularul persoanei","Personal":"Personal","Phone Number":"Numar de telefon","Phone":"Telefon","Pic":null,"Pick an option":"Alege o optiune","Picture":"Poza","Piece":"Buc","Place order":"Plasează comanda","See cart":"Vezi Cos","Placement":"Pozitie","Plati clienti":null,"Plati furnizor":null,"Please choose":"Alege","Please click the button below to verify your email address.":"Te rugăm să accesezi butonul de mai jos pentru a verifica adresa de e-mail.","Please confirm your password before continuing.":"Te rugăm să confirmi parola înainte de a continua.","Please Fill":"Completeaza","Please find attached the order's invoice.":"Găsești factura pentru această comandă în atașament.","Please review your order and payment details":"Te rugăm să verifici detaliile comenzii","Please set or reset your password by clicking the button below.":"Te rugam sa setezi sau sa resetezi parola facand clic pe butonul de mai jos.","POS Receipt":"Chitanta POS","Position":"Pozitie","Positions":"Pozitii","positions":"poziții","Post":"Trimite","Postal Area":"Cod postal","Postal Code":"Cod postal","Postcode":"Cod postal","posted":"postat","Prepared":"Pregătit","Preview":"Previzualizeaza","Previous Page":"Pagina anterioara","Previous":"Anterior","Price":"Pret","Privacy":"Confidențialitate","processed":"procesat","Processing":"In procesare","processing":"in procesare","Product image coming soon":"Poza urmeaza sa fie adaugata","Product":"Produs","Products per page":"Produse per pagina","Products":"Produse","products":"produse","Produs":null,"Profile":"Profil","Profit":"Profit","Proforma Invoice":"Factura proforma","Proforma":null,"Promissory Note":"Bilet la ordin","publish product":"publica produsul","Purchase Returns":"Retur aprovizionari","purchase returns":"retur aprovizionari","Purchase":"Aprovizionare","Purchases":"Aprovizionari","purchases":"aprovizionari","Purple":"Mov","Qty":"Cant.","Quantity":"Cantitate","rating":"evaluare","Rating":"Evaluare","Ratio":"Aspect","Read":"Citire","Recaptcha key":"Cheie Recaptcha","Recaptcha secret":null,"Receipt":"Chitanta","Received":"Primit","Recent orders":"Comenzi recente","Recommended Products":"Produse recomandate","records":"inregistrari","Red":"Rosu","Reference \\ PO":"Referinta","Regards":"Toate cele bune","register":"fă-ți cont","Register":"Fă-ți cont","Registered Entities":"Entitati inregistrate","Registered Users":"Useri Inregistrati","Registry Of Commerce":"Nr. Inreg. Reg. Com.","Registry of commerce":"Registrul comertului","Rejected Association":"Asociația Respinsă","Rejected Brand":"Brand respins","Rejected Documentation":"Documentație respinsă","Rejected EAN":"EAN respins","Reload":"Reincarca","Remember me":"Tine-ma minte","Remember Me":"Ține-mă minte","Reminder":null,"Remove poster":"Sterge poster","remove":"sterge","Reorder Menu":"Reorganizează meniu","reorder":"reorganizează","Repeat Password":"Repeta parola","Replies":"Raspunsuri","Reply":"Raspunde","Resell":"Revanzare","Reservations":"Rezervări","Reserved":"Rezervat","Reset password request":"Cerere resetare parolă","Reset password":"Reseteaza parola","Reset":"Reset","Residential":"Rezidențial","Resource Prefix":"Prefix resursa","Resource":"Resursa","resource":"resursa","Retur aprovizionari":null,"Retur vanzari":null,"Revenue":"Venit","Reviews":"Recenzii","reviews":"recenzii","most popular":"cele mai populare","Right":"Dreapta","Road":"Drum","Role Item":"Element Rol","Role":"Rol","role":"rol","Roles Index":"Index roluri","Roles List":"Lista roluri","Roles":"Roluri","roles":"roluri","Rotatie":null,"Rotation":"Rotatie","Route":"Ruta","Row":"Rand","Running":"Alergare","Sale Channel":"Canal de vânzare","Sale Channels":"Canale de vânzare","sale channels":"canale de vânzare","Sale Price":"Pret vanzare","Sale Returns":"Retur vanzari","sale returns":"returnarea vânzării","Sale Value":"Valoare vanzare","Sales":"Vanzari","sales":"vanzari","Saturday":"Sambata","Sauces":"Sosuri","Save Configuration":"Salveaza configuratie","Save":"Salveaza","Sea Salt":"Sare de mare","Search category limit":"Limita categorii la cautare","Search in products":"Caută în produse","Search placeholder":"Placeholder pt cautare","Search something":"Căutați ceva","Search within brands":"Cauta in branduri","Search...":"Căutare...","Search":"Cauta","Searching...":"Căutând...","Searching":"Caut","Secret":"Secret","See all":"Vezi tot","Select file for import":"Selecteaza fisier pt import","select":"select","selected":"selectat","Send a password reset link":"Genereaza link pentru reset parola","Send a reset password link":"Trimite un link de resetare parola","Send Password Reset Link":"Trimite link-ul pentru resetarea parolei","Serial":"Serie","Server Error":"Eroare de server","Service Unavailable":"Serviciu indisponibil","Service":"Serviciu","Services":"Servicii","services":"Servicii","Set password":"Seteaza parola","Settings":"Setari","settings":"setări","Share your idea...":"Sharuieste ideea","Share your opinion and rate the product":"Împărtășește-ți opinia și evaluează produsul","Share your opinion...":"Sharuieste parerea","Shelf":"Raft","Shift + Enter to post":"Shift + Enter pt a posta","Shipped":"Expediat","Shipping Address":"Adresa de livrare","Shipping charges may be incurred":"Pot fi aplicate costuri de transport","Shipping charges of :value (+VAT) will be added":"Vor fi adaugate costuri de transport in valoare de :value (+TVA)","Shipping cost":"Cost transport","You will pay":"Cat vei plati","Visit the product page":"Viziteaza pagina produsului","Shop Categories":"Categorii","Shopping Cart":"Cos cumparaturi","Show Log":"Arata log","Show Logs from":"Arata log-uri din","Show":"Arata","show":"arata","Showing :from - :to of :total results":"Se afiseaza de la :from pana la :to din :total de rezultate","Sicilian Honey":"Miere siciliană","Sidebar Toggle":"Alterneaza stil meniu","Similar products limit":"Limita pt produse similare","Site Texts":"Texte Site","Size":"Marime","Sleeping":"Dormit","Some fields were invalid. Please correct the errors and try again.":"Cateva campuri au fost invalide. Corecteaza erorile si reincearca.","Something went wrong...":"Ceva nu a functionat corect...","Special Diet":"Dietă specială","Speciality":"Specialitate","Spendings":"Cheltuieli","Square":"Pătrat","Start Tutorial":"Start tutorial","Started":"Inceput","Starters":"Aperitive","Status":"Status","Stock Rotation":"Rotația stocului","Stock: :stock":"Stoc: :stock","Stock":"Stoc","Stopped":"Oprit","Storage Usage":"Utilizare spatiu","store":"magazin","Storing":"Depozitare","Street Type":"Tip strada","Street":"Strada","Sub Administrative Area":"Zona administrativa subordonata","Submit":"Trimite","Success":"Succes","Successful":"Reusite","Summary":"Sumar","Sunday":"Duminica","Supplier Discounts":"Reduceri de la furnizori","Supplier Invoices":"Facturi furnizori","Supplier Number":"Numar furnizor","Supplier Payments":"Plati furnizor","Supplier Ref":"Ref. Furnizor","Supplier Stock":"Stoc furnizor","Supplier":"Furnizor","suppliers":"furnizori","Sweets":"Dulciuri","System":"Sistem","system":"sistem","Table export done":"Export tabel efectuat","Table export error":"Eroare la exportul de tabel","Table export started":"Exportul de tabel a inceput","Table":"Tabel","Tables State Save":"Pastreaza config","Tags":"Taguri","Tasks":"Sarcini","tasks":"sarcini","team":"echipa","Teams":"Echipe","Template":"Șablon","Tenant":"Chiriaş","terms and conditions":"termenii si conditiile","Terms of use":"Termeni si conditii","Terms Of Use":"Termeni si conditii","terms of use":"termenii si conditiile","Thank you for shopping with us":"Îți multumim pentru cumparaturile facute.","Thank you for using our application!":"Îți multumim ca ne folosești aplicatia!","Thank you for your order":"Îți mulțumim pentru comandă","Thank you":"Multumesc","The :filename file is ready":"Fisierul :filename este gata","The address has been successfully updated":"Adresa a fost actualizata cu succes","The address was successfully created":"Adresa a fost creata cu succes","The admin role already has all permissions and does not need syncing":"Rolul de admin deja are toate permisiile si nu are nevoie de sincronizare","The application was updated, please refresh your page to load the latest application version":"Aplicatia a fost actualizata, te rugam reincarca pagina pentru a folosi noua versiune","The Changes have been saved!":"Modificarile au fost salvate!","The changes have been saved":"Modificarile au fost salvate","The company was successfully created":"Compania a fost creata cu succes","The company was successfully deleted":"Compania a fost stearsa cu succes","The company was successfully updated":"Compania a fost actualizata cu succes","The Entity was created!":"Entitatea a fost creata!","The entity was created!":"Entitatea a fost creata!","The export :name could not be completed due to an unknown error":"Exportul :name nu a putut fi finalizat datorita unei erori","The export was cancelled successfully":"Exportul a fost anulat cu succes","The form contains errors":"Formularul contine erori","The generated document has :entries entries":"Documentul are :entries inregistrari","The import was restarted":"Importul a fost repornit","The language files were successfully merged":"Fisiere de limbi au fost concatenate cu succes","The language files were successfully updated":"Fisierele de limba au fost actualizate","The log file":"Fisierul","The log was cleaned":"Log-ul a fost curatat","The menu was created!":"Meniul a fost creat!","The operation was successful":"Operatiunea a fost efectuata cu succes","New order #:number from :channel for :total :currency was placed by :person":"Comanda noua #:number din :channel in valoare de :total a fost plasată de catre :person","Selected payment method: :paymentMethod":"Metoda de plata selectata: :paymentMethod","The permission group was created!":"Grupul de permisii a fost creat!","The permission was created!":"Permisia a fost creata!","The permissions were created!":"Permisiile au fost create!","The person has assigned resources in the system and cannot be deleted":"Persoana are resurse asignate in sistem si nu poate fi stearsa","The Person was successfully created":"Persoana a fost creata cu succes","The person was successfully created":"Persoana a fost creata cu succes","The person was successfully deleted":"Persoana a fost stearsa cu succes","The person was successfully updated":"Persoana a fost actualizata cu succes","The poster was deleted successfully":"Posterul a fost sters cu succes","The requested report was started. It can take a few minutes before you have it in your inbox":"Raportul a fost trimis spre generare. Poate dura cateva minute pana cand il vei primi pe mail","The requested report was started. It can take a few minutes before you have it in your inbox":"Raportul solicitat a fost pornit. Poate dura cateva minute inainte de a-l primi in casuta de e-mail","The role was created!":"Rolul a fost creat!","The selected record is about to be deleted. Are you sure?":"Inregistrarea selectata este pe cale sa fie stearsa. Esti sigur?","This record is about to be deleted. Are you sure?":"Inregistrarea aceasta este pe cale sa fie stearsa. Esti sigur?","The team was successfully saved":"Echipa a fost salvata cu succes","The tutorial was created!":"Tutorialul a fost creat!","The tutorial was successfully deleted":"Tutorialul a fost sters cu succes","The user group was successfully created":"Grupul de useri a fost creat cu succes","The user group was successfully deleted":"Grupul de useri a fost sters cu succes","The user has activity in the system and cannot be deleted":"Userul are activitate in sistem si nu poate fi sters","The User was created!":"Userul a fost creat!","The video file was deleted successfully":"Clipul a fost sters cu succes","The video was updated successfully":"Clipul a fost actualizat cu succes","The webshop is still under construction, but we're launching soon...":"Magazinul online este încă în construcție, dar il vom lansa în curând...","Theme Color":"Culoare Tema","Theme":"Tema","There are no active carousel slides":"Nu exista slide-uri de carusel active","There are no addresses added yet":"Nu ai nicio adresă adăugată","There are no companies added yet":"Nu există companii adăugate","There are no credit cards added yet":"Nu ai niciun card adăugat","This action is unauthorized.":"Această acțiune nu este permisă.","this month":"luna aceasta","This password reset link will expire in :count minutes.":"Acest link de resetare a parolei va expira în :count minute.","This password reset token is invalid.":"Codul de resetare a parolei este greșit.","This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":"Acest site web folosește cookie-uri pentru a-și furniza serviciile și pentru a analiza traficul. Pentru mai multe detalii viziteaza","privacy policy":"politica de confidentialitate","this week":"săptămâna aceasta","this year":"anul acesta","Thursday":"Joi","Time":"Timp","Timeline":"Cronologie","Tip":null,"Title...":"Titlu...","Title":"Titlu","title":"titlu","to manage your addresses":"pt a gestiona adresele","to manage your cards":"pt a gestiona cardurile","to manage your companies":"pentru a gestiona companiile","to view your order":"pentru a vedea comanda","To":"la","to":"la","Today":"Astăzi","today":"azi","Toggle navigation":"Comută navigarea","Too Many Attempts.":"Prea multe încercări.","Too Many Requests":"Prea multe cereri","Top Banner Content":"Continut top banner","Top Pick":"Alegere de Top","Total amount for order #:number is :currency:total":"Totalul de plată pentru comanda #:number este :total :currency","total records":"inregistrari","Total":"Total","total":"total","Translations":"Traduceri","Tuesday":"Marti","Tutorial":"Tutorial","Tutorials Index":"Index tutoriale","Tutorials":"Tutoriale","tutorials":"tutoriale","Type a new comment":"Adauga un comentariu","Type":"Tip","type":"tip","Types":"Tipuri","Unable to read file":"Nu se poate citi fiserul","Unauthorized":"Nepermis","Undo Stock Insertion":"Anuleaza insertia in stoc","Undo Stock Removal":"Anuleaza scoaterea din stoc","Unique Identifier":"Identificator unic","Unit. Price":"Pret unit.","Unitary Price":"Pret unitar","untagged":"netaguit","Update":"Updateaza","Updated At":"Updatat la","Updated By":"Actualizat de","updated the members":"actualizat membrii","updated":"actualizat","Updated":"Updatat","Upload Avatar":"Incarca Avatar","Upload Template":"Incarca template","uploads":"uploaduri","Use":"Utilizare","User Details":"Detalii User","user groups":"grupuri user","User Groups":"Grupuri","User Info":"Informatii user","User Profile":"Profil user","User":"User","user":"user","Users Administration":"Administrare useri","Users Index":"Index useri","Users":"Useri","users":"useri","Valability":"Valabilitate","Valid":"Valid","Editable time limit in seconds. Use 0 to disable":"Limita de timp pentru modificari, in secunde. Folosește 0 pentru a dezactiva","Value":"Valoare","Vanzari":null,"VAT":"TVA","VAT Value":"Valoare TVA","ver":"ver","Verify Email Address":"Verificare adresă de e-mail","Verify Your Email Address":"Verifică-ți adresa de e-mail","Video description":"Descriere clip","Video name":"Nume clip","Video":"Video","video":"video","View Cart":"Vezi cos","View your order":"Vezi comanda","Virtual Position ID":"ID Poziție Virtuală","Visible Brands":"Branduri vizibile","Visible Top Banner":"Top banner vizibil","Vista":"Perspectivă","Volume":"Volum","Voucher":null,"waiting":"in asteptare","Warehouse":"Depozit","warehouses":"depozite","Warehouses":"Depozite","Warning":"Avertizare","was changed":"a fost schimbat","was last updated":"a fost modificat","We can't find a user with that e-mail address.":"Nu există niciun user cu această adresă de e-mail.","We have e-mailed your password reset link!":"Am trimis un e-mail cu link-ul de resetare a parolei!","We will keep you updated on its progress":"Te vom tine la curent cu progresul ei","We won't ask for your password again for a few hours.":"Nu îți vom mai solicita adresa de e-mail pentru câteva ore","Webshop Name":"Nume webshop","Webshop Order":"Comanda webshop","webshop":"magazin web","Webshop":"Magazin web","Website":null,"Wednesday":"Miercuri","Welcome Back":"Bine ai revenit","Welcome":"Bun venit","What happened?":"Ce s-a intamplat?","What you need to know":"Ce trebuie sa stii","What":"Ce","When":"Cand","Whoops!":"Oops!","Width":"Lăţime","Write a review":"Scrie o recenzie","Write":"Scriere","Yes":"Da","yesterday":"ieri","You are not authorized for this action":"Nu esti autorizat pentru aceasta actiune","You are not authorized to perform this action":"Nu esti autorizat pentru aceasta actiune","You are receiving this email because we received a password reset request for your account.":"Primești acest mesaj pentru că a fost înregistrată o solicitare de resetare a parolei pentru contul asociat acestei adrese de e-mail.","You can click":"Poti da click","You don't have any favorite products yet":"Nu ai niciun produs adăugat la favorite","You don't have any notifications":"Nu ai notificari","You don't have any orders yet":"Nu ai efectuat nicio comandă","You don't have any products in the shopping cart right now":"Nu ai niciun produs în coș momentan","You have":"Ai","You just got a notification...":"Tocmai ai primit o notificare...","You made too many attempts. Please wait 5 minutes and try again.":"Ai apelat de prea multe ori generarea raportului. Asteapta 5 minute si reincearca","You may also like":"S-ar putea sa-ti placa si","You will find attached the requested report.":"Vei gasi atasat raportul cerut.","Your :shop order :number":"Comanda :shop cu numarul :number","Your account has been disabled. Please contact the administrator":"Ne pare rau, contul tau a fost dezactivat. Te rugam contacteaza administratorul","Your card was successfully saved":"Cardul tău a fost salvat cu succes","Your email address is not verified.":"Adresa ta de e-mail nu este verificată.","Your Message":"Mesajul tău","Your password has been reset!":"Parola a fost resetată!","You need to accept our terms of use first":"Mai întâi trebuie să accepți termenii noștri de utilizare","item":"articol","PO #":"Ref #","Your privacy is important for us":"Confidențialitatea ta este importantă pentru noi","cart":"cos","favourites":"favorite","addresses":"adrese","orders":"comenzi","payment":"plata","summary":"sumar","add":"adauga","rate":"evalueaza","review":"recenzie","star":"stea","stars":"stele","Thank you for contributing":"Îți mulțumim pentru contribuție","Do you own or have used this product?":"Deții sau ai folosit acest produs?","This review is awaiting approval":"Această recenzie așteaptă aprobare","This review was approved":"Această recenzie a fost aprobată","This review was rejected. You may edit and repost it.":"Această recenzie a fost respinsă. Poți să îl editezi și să îl repostezi.","Edit review":"Editează recenzia","category":"categorie","terms-of-use":"termeni-si-conditii","privacy":"confidentialitate","about-us":"despre-noi","favorites":"favorite",":user finalized the :model :label for the partner :partner":":user a finalizat :model :label pentru partenerul :partner",":type quantity and total were successfully updated":"Cantitatea si totalul pentru :type au fost actualizate",":type update":"Actualizare :type","Please find attached the order details":"Regasiti detaliile comenzii in atasament","Succeeded":"Reusita","External Reference":"Referinta externa","Incomplete order (#:number)":"Comanda incompleta (#:number)","On :date you placed an order on our webshop but forgot to finalize the payment.":"Pe data de :date ai plasat o comanda pe magazinul nostru online dar nu ai finalizat plata.","Please click bellow to view your order and finalize the payment":"Poti sa dai click mai jos pentru a vizualiza comanda si a finaliza plata","New message from the webshop's contact form":"Mesaj nou din pagina de contact a webshop-ului","Your Webshop.":"Magazinul tau.","Message:":"Mesaj:","Contact phone: :phone":"Telefon de contact: :phone","Your order #:number on :shop was successfully placed":"Comanda ta cu numarul #:number de pe :shop a fost plasata cu succes","You have a new webshop order":"Ai o nouă comandă pe webshop","New user registration":"S-a inregistrat un nou utilizator","Before adjusting stock, select the product default supplier":"Înainte de a ajusta stocul, selecteaza furnizorul implicit al produsului","Cannot increment when quantity <= 0":"Nu se poate incrementa când cantitatea <= 0","Cannot decrement when quantity <= 0":"Nu se poate decrementa atunci când cantitatea <= 0","Order already has a :type invoice":"Comanda are deja o factura de tipul :type","Invalid item":"Articol invalid","Cannot update orders that are externally fulfilled":"Nu se pot actualiza comenzile care sunt îndeplinite extern","Order is already in this status":"Comanda are deja acest status","There are no differences on this order":"Nu există diferențe în această comandă","You are not allowed to issue payments without invoices":"Nu este permis sa emiti plati fara facturi","You are not allowed to issue payments on a cancelled invoice'":"Nu este permis sa emiti plati pentru o factura anulata","Sale is already paid":"Vânzarea este deja plătită","You cannot delete a paid order":"Nu poți șterge o comandă plătită","order details":"detaliile comenzii","Delivery Address":"Adresa de livrare","Disc.":"Disc.","M.U.":"U.M.","Product \/ Code":"Produs \/ Cod","registered in doc.":"înregistrat în doc.","received":"primit","U.P acquision":"P.U achiziţie","(no VAT)":"(fara TVA)","Val. acquision":"Val. achizitie","Val. VAT":"Val. TVA","(afferent)":"(aferent)","Info field":"Câmp informativ","additional":"adițional","piece":"buc","Total General":"Total General","Goods Receipt Note":"Nota de receptie a marfurilor","Unit":"Unitate","The undersigned, members of the reception committee, have received the material values provided by":"Subsemnatii, membri ai comitetului de recepție, au primit valorile materiale furnizate de","delegate":"delegat","based on the accompanying documents":"pe baza documentelor însoțitoare","consisting":"constând","car no.":"masina nr.","Optional field, usable in case of observations":"Câmp opțional, utilizabil în caz de observații","Reception committee members name and surname":"Numele și prenumele membrilor comisiei de recepție","Signature":"Semnătură","Manager name and surename":"Numele și prenumele managerului","Manager name and surname":"Numele și prenumele managerului","Reception comitee conclusions":"Concluziile comitetului de primire","Reception committee conclusions":"Concluziile comitetului de primire","Supplier\/carrier point of view":"Punct de vedere furnizor \/ transportator","Other mentions":"Alte mențiuni","The quantity determination was done by":"Determinarea cantității a fost făcută de","The quality determination was made by the sample":"Determinarea calității a fost făcută de eșantionul","no.":"nr.","Sender":"Expeditor","Companion":"Insotitor","Dispatch station":"Stație de expediere","Destination station":"Stația de destinație","Release date":"Data de lansare","Dispatch date":"Data expedierii","Arrival date":"Data sosirii","Supplier delegates, the carrier who participated in the reception":"Delegații furnizorului, curierul care a participat la recepție","ISBN":"ISBN","Total products":"Totalul produselor","Scale indicated weight":"Greutatea indicata pe cantar","Stock Removal":"Scoatere din stoc","Representative of":"Reprezentant al","Name and surname":"Nume si prenume","Identity card":"Card de identitate","TOTAL":"TOTAL","Reception participants":"Participanți la recepție","for Sale":"de vanzare","Emag API call for :action failed":"Apelul API Emag pentru :action a esuat","The action :action on url :url failed with the following error messages:":"Acțiunea :action catre url :url a eșuat cu următoarele mesaje de eroare","New :type callback from emag":"Un nou callback :type de la emag","New :type callback from emag for id :id":"Un nou callback :type de la emag pentru id-ul :id","Missing app product for emag order :id":"Lipseste produsul din aplicatie pentru comanda emag :id","Product :product":"Produsul :product","Offer mismatch for eMag order :id":"Nepotrivirea ofertei pentru comanda eMag :id","For product :code":"Pentru produsul :code","External part number :code":"Cod extern :code","Part number :code":"Cod :code","New eMag order (id: :id) with vouchers:":"Comandă nouă eMag (id: :id) cu vouchere:",":name, value :value":":name, valoare :value","New eMag order (id: :id) with vouchers":"Comandă nouă eMag (id: :id) cu vouchere","Shipping price mismatch for eMag order :order":"Nepotrivirea prețului de expediere pentru comanda eMag :order","Product price mismatch for eMag order :order":"Nepotrivirea prețului produsului pentru comanda eMag :order","Offer with id :id already exists":"Există deja o oferta cu id-ul :id","An offer for the pnk :pnk already exists":"Există deja o ofertă pentru pnk :pnk","An offer with product id :id already exists and needs eMag intervention":"O ofertă cu id-ul produsului :id există deja și necesită intervenția eMag","No order with id :id found":"Nu s-a găsit nicio comandă cu id-ul :id","Write Review For":"Scrie o recenzie pentru","Don't know what to write about?":"Nu știi despre ce să scrii?","Tell us what you like about the purchased product.":"Spune-ne ce iti place la produsul achizitionat.","Does it live up to your expectations?":"Se ridică la nivelul așteptărilor tale?","Are you satisfied with the value for money?":"Esti mulțumit de raportul calitate-preț?","Would you recommend it to others?":"L-ai recomanda altora?","Remove from favorites":"Elimina din favorite","make default":"fă implicit","delivery":"livrare","billing":"facturare","Not Paid":"Neplatit","Requires Action":"Necesită acțiune","verify":"verifica","Verify":"Verifica","confirmation":"confirmare","No addresses defined":"Nu există adrese definite","Part":"Cod","Complete the payment":"Finaliza plata","An extra confirmation is needed to process your payment":"Este necesară o confirmare suplimentară pentru a procesa plata","Order is already paid":"Comanda este deja plătită","Your payment for this order is still processing":"Plata dvs. pentru această comandă este în curs de procesare","Please find the invoice attached":"Găsești factura în atașament","Invoice issued for order #:number":"Factura emisa pentru comanda #:number","Your order #:number":"Comanda dvs #:number","Payment via :type was successful for order :number":"Plata prin :type a reușit pentru comanda :number","A payment was received for order #:number (:total :currency)":"S-a inregistrat plata pentru comanda :number (:total :currency)","Insufficient stock for :product, only :left left":"Stoc insuficient pentru :product, numai :left ramas","Registration is restricted for the moment, please return soon":"Înregistrarea este restricționată pentru moment, te rugăm să revii în curând","Hello :name":"Salut :name","Thank you for creating an account on :shop":"Îți mulțumim pentru că ți-ai creat cont pe :shop","We hope that you will enjoy our products":"Sperăm că te vei bucura de produsele noastre, așa cum ne bucurăm și noi de ele :)","Go to login":"Intră în cont","If you are having trouble clicking the action button, copy and paste the URL below into your web browser":"Daca întampini dificultati in a accesa butonul, copiază adresa de mai jos in browser-ul tau","Payment via :type was successful for order #:number, amount :amount :currency":"Plata prin :type a reușit pentru comanda #:number, suma :amount :currency","View order":"Vezi comanda","Click bellow to view your order and finalize the payment":"Poti sa dai click mai jos pentru a vizualiza comanda si a finaliza plata","A new account was created : :name":"Un cont nou a fost creat: :name","from: :company":"de la: :company","To manage the account please click the link below":"Pentru a gestiona contul, acceseaza linkul de mai jos","View account":"Vezi contul","Details for delivering your order":"Detalii pentru livrarea comenzii","You're just a few steps away from finalizing your order":"Ești la doar câțiva pași distanță de finalizarea comenzii","If you already have an account click":"Dacă ai deja un cont, click","to go to the login page":"pentru a accesa pagina de autentificare","Your account":"Contul tau","I want to create an account":"Vreau să imi creez cont","Company Name":"Numele Companiei","Ship to a different addressed":"Comanda ta #:number a fost plasată cu succes","Skip":"Sari","New order #:number from :channel for :total :currency":"Comanda noua #:number din :channel in valoare de :total :currency","fast-checkout":"checkout-rapid","Fast Checkout":"Checkout Rapid","The action :action failed with the following error code: :code":"Acțiunea :action a eșuat cu următorul cod de eroare: :code","Reported error message: :message":"Mesaj de eroare raportat: :message","Request payload: :payload":"Payload Request: :payload","API call for :action failed":"Apelul API pentru :action a esuat","Notification, :title":"Notificare, :title","New Comment Tag":"Etichetare noua in comentarii","You were just tagged":"Tocmai ai fost etichetat","Comment Tag Notification":"Notificare etichetare in comentariu","Your password will expire soon":"Parola ta va expira curand","You've got :days days left to change it":"Mai ai :days zile ramase pentru a o schimba","You've got until tomorrow to change it":"Mai ai timp pana maine pentru a o schimba","You must change it today":"Trebuie schimbata astazi","Welcome!":"Bine ai venit!","Task Reminder":"Memento Task","This is a reminder for the following task:":"Acesta este un memento pentru următorul task:","View Task":"Vezi task-ul","Task :description":"Task :description","You cannot delete the default address":"Nu poți șterge adresa implicită","You cannot delete an address that you have previously used":"Nu poți șterge o adresă pe care ai folosit-o anterior","You cannot edit this company, please contact support":"Nu poți edita această companie, te rugăm să contactezi echipa de asistenta","Your cart is empty":"Coșul tau este gol","You cannot delete the default card":"Nu poți șterge cardul implicit","You cannot edit this :model, please contact support":"Nu poți edita acest :model, te rugăm să contactezi echipa de asistență","Company information":"Informațiile companiei","Billing address":"Adresa de facturare","Free":"Gratuit","Get to know us":"Cunoaște-ne","Registration successful":"Inregistrare realizata","Your account needs to be activated before you can login":"Contul trebuie să fie activat înainte de a te putea autentifica","You will receive a confirmation email upon approval":"Vei primi un e-mail de confirmare după aprobare","Thank you!":"Iti multumim!","Frequently asked questions":"Intrebari frecvente","Edit address":"Editeaza adresa","Edit company":"Editeaza compania","Pay by Card":"Plătește cu Card","Click":"Click","Not Implemented":"Neimplementat","Approve":"Aproba","Disapprove":"Dezaproba","for \":query\"":"pentru \":query\"","Review was rejected":"Această recenzie a fost respinsă","Review updated for :product":"Recenzie actualizata pentru produsul :product","New review submitted for :product":"Recenzie adaugata pt produsul :product","A product review for :product was updated by :person:":"Recenzie de produs pentru :product actualizata de :person:","A new product review for :product was posted by :person:":"Recenzie de produs pentru :product adaugata de :person:","Your review for :product was :approval":"Recenzia ta pentru produsul :product a fost :approval","If you want, you can revise your review here:":"Daca vrei, poti actualiza recenzia ta aici:","Review :approval":"Recenzie :approval","approved":"aprobata","rejected":"respinsa","Terms of Use":"Termeni si conditii","Similar products":"Produse similare","Enter your email to reset your password":"Introdu adresa ta de e-mail pentru a iti reseta parola","We'll send you an email with the instructions to follow":"Iti vom trimite un e-mail cu instrucțiunile de urmat","similar-products":"produse-similare","description":"descriere","characteristics":"caracteristici","about-this-brand":"despre-acest-brand","not in stock":"nu este în stoc","Not In Stock":"Nu este în stoc","Hold tight, your order is being processed. We will email you when your order succeeds":"Ține-te bine, comanda ta este în curs de procesare. Iți vom trimite un e-mail când comanda va reuși","Pay by Wire Transfer":"Plătește prin Transfer Bancar","Grand Total":"Total General","A cancellation request was received for order #:id":"Am primit o cerere de anulare pentru comanda #:id","Cancellation request for order #:id":"Cerere de anulare pentru comanda #:id","Please let us know if you are able to cancel the order":"Va rugam sa ne comunicati daca puteti efectua anularea","Cancellation request for emag order with id :id":"Cerere de anulare pentru comanda emag cu id :id","An emag order cancellation request was received":"Am primit cerere de anulare pentru o comanda emag","If you need to change your email please contact us":"Dacă dorești schimbarea emailului te rugăm contactează-ne","Awb status was updated to \":status\" for emag order #:id":"Statusul Awb pentru comanda emag #:id a fost actualizat in \":status\"","Awb status update for emag order #:id":"Actualizare status awb pentru comanda emag #:id","You just asked for a password reset. To complete the process click the button below.":"Tocmai ai solicitat resetarea parolei. Pentru a finaliza procesul, accesează butonul de mai jos.","Set your new password":"Setează noua parolă","The company already exists in our system. Please contact us about that":"Compania există deja în sistemul nostru. Te rugăm să ne contactezi referitor la această situație","Secure payments with":"Plătește în siguranță prin","We will create an account for your future orders":"Iți vom crea un cont pentru comenzile tale viitoare","Go back to the store":"Întoarce-te în magazin","Added":"Adăugat","A payment method was already set for this order":"O metodă de plată a fost deja stabilită pentru această comandă","Street line 1":"Nume stradă, număr etc.","Street line 2":"Apartament, complex, unitate etc. (opțional)","A new account was created: :name":"A fost creat un cont nou: :name","Translator":"Traducător","Publisher":"Editor","Edition":"Ediție","Collection":"Colecție","Year of Publication":"Anul publicării","Number of Pages":"Număr de pagini","Genre":"Gen","Subgenre":"Subgen","Author":"Autor","Your order #:number is being processed":"Comanda ta #:number este în curs de procesare","Your order #:number is ready to be shipped":"Comanda ta #:number este pregatită de livrare","Your order #:number was shipped":"Comanda ta #:number a fost expediată","Your order #:number was delivered":"Comanda ta #:number a fost livrată","Your order #:number is being processed. We'll keep you updated.":"Comanda ta #:number este în curs de procesare. Te vom ține la curent.","Your order #:number has been shipped to the following address: :address":"Comanda ta #:number a fost expediată către următoarea adresă: :address","Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":"Comanda ta #:number a fost livrată. Sperăm să te bucuri de achiziție și ne-ar încânta să primim feedbackul tău. Dacă dorești, ne poți lăsa un review pentru produsele achizitionate.","Don't hesitate to contact us for any questions.":"Pentru orice întrebări, nu ezita să ne contactezi.","Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":"Comanda ta #:number a fost ambalată și este pregatită de expediere. Te vom anunța de îndată ce a fost expediată.","Order #:number from :channel, placed by :person, has a new status update :status":"Comanda #:number de pe :channel, plasată de :person, are o nouă actualizare status :status","Status update for order #:number":"Actualizare status pentru comanda #:number","Cancellation request for :channel order #:number":"Cerere de anulare pentru comanda de :channel #:number","Store":"Magazin","Fulfill":"Proceseaza","Download order (xlsx)":"Downloadeaza comanda (xlsx)","Download order (pdf)":"Downloadeaza comanda (pdf)","No email sent with the current order":"Comanda actuala nu a fost trimisa pe email","Issue Proforma":"Emite proforma","No email sent with the current invoice":"Factura curenta nu a fost trimisa pe email","Invoice emailed by":"Factura trimisa de","Order emailed by":"Comanda trimisa de","Remove from stock":"Scoate din stoc","Undo fulfill":"Anuleaza procesarea","Insert in stock":"Insereaza in stoc","Prepare products":"Pregateste produsele","Undo prepare":"Anuleaza pregatirea comenzii","Ship":"Expediaza","Undo ship":"Anuleaza expedierea","Deliver":"Livreaza","Undo deliver":"Anuleaza livrearea","NIN":"CNP","Reference":"Referinta","Confirm":"Confirma","Undo confirm":"Anuleaza confirmarea","Receive":"Receptioneaza","Undo receive":"Anuleaza receptia","Download goods received note":"Descarca nota receptie marfa","New Position":"Pozitie noua","Order #:number from :channel, placed by :person, has a new status update: :status":"Comanda #:number de pe :channel, plasată de :person, are o nouă actualizare de status: :status","Please take the necessary steps.":"Te rog sa iei masurile necesare.","A cancellation request was received for a :channel order.":"Am primit cerere de anulare pentru o comada din :channel.","Sale":"Vanzare","The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":"Aplicația este indisponibilă momentan pentru întreținere programată. Vă rugăm să reveniți în câteva minute","Availability":"Disponibilitate","Price Range":"Interval Pret","price ascending":"pret crescator","price descending":"pret descrescator","Sort":"Ordoneaza","newest":"cele mai noi","On Delivery":"La livrare","Card Processor":"Procesator card","Not published":"Nepublicat","marketplace offer":"oferta marketplace","marketplace product":"produs marketplace","activate":"activeaza","update measurements":"actualizeaza dimensiunile","download":"descarca","download pictures":"descarca pozele","Auto Pricing":null,"Documentation":"Documentatie","Date Filter":"Filtru Data"," Bundle":"Pachet","Emag Number":"Numar emag","Payment Method":"Metoda de plata","Create Payment":"Creeaza plata","Create Product":"Creeaza produs","Free Shipping Above":"Transport gratuit peste","Locker Service":"Serviciu de locker","Courier Account":"Cont curier","Min Margin":"Margine minima","Max Price":"Pret maxim","Min Price":"Pret minim","Auto AWB Generation":"Generare automata AWB","Pagination":"Paginatie","Locality ID":"ID localitate","activate auto pricing":"activeaza auto pricing","deactivate auto pricing":"dezactiveaza auto pricing","Full Name":"Nume si Prenume"} \ No newline at end of file diff --git a/lang/ru.json b/lang/ru.json index 8f3f4a3e0..ec92efb37 100644 --- a/lang/ru.json +++ b/lang/ru.json @@ -1 +1 @@ -{"On Delivery":null,"Card Processor":null,"Not published":null,"marketplace offer":null,"marketplace product":null,"activate":null,"update measurements":null,"download":null,"download pictures":null,"Auto Pricing":null,"Documentation":null,"Date Filter":null," Bundle":null,"Emag Number":null,"Payment Method":null,"Create Payment":null,"Create Product":null,"Free Shipping Above":null,"Locker Service":null,"Courier Account":null,"Min Margin":null,"Max Price":null,"Min Price":null,"Auto AWB Generation":null,"Pagination":null,"Locality ID":null,"activate auto pricing":null,"deactivate auto pricing":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"Cancellation request for :channel order #:number":null,"Store":null,"Fulfill":null,"Download order (xlsx)":null,"Download order (pdf)":null,"No email sent with the current order":null,"Issue Proforma":null,"No email sent with the current invoice":null,"Invoice emailed by":null,"Order emailed by":null,"Remove from stock":null,"Undo fulfill":null,"Insert in stock":null,"Prepare products":null,"Undo prepare":null,"Ship":null,"Undo ship":null,"Deliver":null,"Undo deliver":null,"Reference":null,"Confirm":null,"Undo confirm":null,"Receive":null,"Undo receive":null,"Download goods received note":null,"New Position":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order.":null,"Sale":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Availability":null,"Price Range":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 1":null,"Street line 2":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us.":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file +{"On Delivery":null,"Card Processor":null,"Not published":null,"marketplace offer":null,"marketplace product":null,"activate":null,"update measurements":null,"download":null,"download pictures":null,"Auto Pricing":null,"Documentation":null,"Date Filter":null," Bundle":null,"Emag Number":null,"Payment Method":null,"Create Payment":null,"Create Product":null,"Free Shipping Above":null,"Locker Service":null,"Courier Account":null,"Min Margin":null,"Max Price":null,"Min Price":null,"Auto AWB Generation":null,"Pagination":null,"Locality ID":null,"activate auto pricing":null,"deactivate auto pricing":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"Cancellation request for :channel order #:number":null,"Store":null,"Fulfill":null,"Download order (xlsx)":null,"Download order (pdf)":null,"No email sent with the current order":null,"Issue Proforma":null,"No email sent with the current invoice":null,"Invoice emailed by":null,"Order emailed by":null,"Remove from stock":null,"Undo fulfill":null,"Insert in stock":null,"Prepare products":null,"Undo prepare":null,"Ship":null,"Undo ship":null,"Deliver":null,"Undo deliver":null,"Reference":null,"Confirm":null,"Undo confirm":null,"Receive":null,"Undo receive":null,"Download goods received note":null,"New Position":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order.":null,"Sale":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Availability":null,"Price Range":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 1":null,"Street line 2":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"This record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file diff --git a/phpunit.xml b/phpunit.xml index 1ad9de144..671469aad 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -1,15 +1,5 @@ - - - - ./app - - + ./tests diff --git a/public/vendor/horizon/app-dark.css b/public/vendor/horizon/app-dark.css index 4e66fc981..d82a23d9e 100644 --- a/public/vendor/horizon/app-dark.css +++ b/public/vendor/horizon/app-dark.css @@ -1,8 +1,8 @@ -@charset "UTF-8";.vjs-tree{font-family:Monaco,Menlo,Consolas,Bitstream Vera Sans Mono,monospace!important}.vjs-tree.is-root{position:relative}.vjs-tree .vjs-tree__content{padding-left:1em}.vjs-tree .vjs-tree__content.has-line{border-left:1px dotted hsla(0,0%,80%,.28)!important}.vjs-tree .vjs-tree__brackets{cursor:pointer}.vjs-tree .vjs-tree__brackets:hover{color:#20a0ff}.vjs-tree .vjs-value__boolean,.vjs-tree .vjs-value__null,.vjs-tree .vjs-value__number{color:#a291f5!important}.vjs-tree .vjs-value__string{color:#dacb4d!important} +@charset "UTF-8";.vjs-tree{font-family:Monaco,Menlo,Consolas,Bitstream Vera Sans Mono,monospace!important}.vjs-tree.is-root{position:relative}.vjs-tree .vjs-tree-node{display:flex;position:relative}.vjs-tree .vjs-tree-node .vjs-indent-unit.has-line{border-left:1px dotted hsla(0,0%,80%,.28)!important}.vjs-tree .vjs-tree-node.has-carets{padding-left:15px}.vjs-tree .vjs-tree-node .has-carets.has-selector,.vjs-tree .vjs-tree-node .has-selector{padding-left:30px}.vjs-tree .vjs-indent{display:flex;position:relative}.vjs-tree .vjs-indent-unit{width:1em}.vjs-tree .vjs-tree-brackets{cursor:pointer}.vjs-tree .vjs-tree-brackets:hover{color:#20a0ff}.vjs-tree .vjs-key{color:#c3cbd3!important;padding-right:10px}.vjs-tree .vjs-value-string{color:#c3e88d!important}.vjs-tree .vjs-value-boolean,.vjs-tree .vjs-value-null,.vjs-tree .vjs-value-number,.vjs-tree .vjs-value-undefined{color:#a291f5!important} /*! - * Bootstrap v4.6.0 (https://getbootstrap.com/) - * Copyright 2011-2021 The Bootstrap Authors - * Copyright 2011-2021 Twitter, Inc. + * Bootstrap v4.6.2 (https://getbootstrap.com/) + * Copyright 2011-2022 The Bootstrap Authors + * Copyright 2011-2022 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#494444;--primary:#adadff;--secondary:#494444;--success:#1f9d55;--info:#1c3d5a;--warning:#b08d2f;--danger:#aa2e28;--light:#f8f9fa;--dark:#494444;--breakpoint-xs:0;--breakpoint-sm:2px;--breakpoint-md:8px;--breakpoint-lg:9px;--breakpoint-xl:10px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,:after,:before{box-sizing:border-box}html{-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0);font-family:sans-serif;line-height:1.15}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{background-color:#1c1c1c;color:#e2edf4;font-family:Nunito;font-size:.95rem;font-weight:400;line-height:1.5;margin:0;text-align:left}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;margin-top:0}p{margin-bottom:1rem;margin-top:0}abbr[data-original-title],abbr[title]{border-bottom:0;cursor:help;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{font-style:normal;line-height:inherit}address,dl,ol,ul{margin-bottom:1rem}dl,ol,ul{margin-top:0}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{background-color:transparent;color:#adadff;text-decoration:none}a:hover{color:#6161ff;text-decoration:underline}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}pre{-ms-overflow-style:scrollbar;margin-bottom:1rem;margin-top:0;overflow:auto}figure{margin:0 0 1rem}img{border-style:none}img,svg{vertical-align:middle}svg{overflow:hidden}table{border-collapse:collapse}caption{caption-side:bottom;color:#6c757d;padding-bottom:.75rem;padding-top:.75rem;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit;margin:0}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{border:0;margin:0;min-width:0;padding:0}legend{color:inherit;display:block;font-size:1.5rem;line-height:inherit;margin-bottom:.5rem;max-width:100%;padding:0;white-space:normal;width:100%}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:none;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}output{display:inline-block}summary{cursor:pointer;display:list-item}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-weight:500;line-height:1.2;margin-bottom:.5rem}.h1,h1{font-size:2.375rem}.h2,h2{font-size:1.9rem}.h3,h3{font-size:1.6625rem}.h4,h4{font-size:1.425rem}.h5,h5{font-size:1.1875rem}.h6,h6{font-size:.95rem}.lead{font-size:1.1875rem;font-weight:300}.display-1{font-size:6rem}.display-1,.display-2{font-weight:300;line-height:1.2}.display-2{font-size:5.5rem}.display-3{font-size:4.5rem}.display-3,.display-4{font-weight:300;line-height:1.2}.display-4{font-size:3.5rem}hr{border:0;border-top:1px solid rgba(0,0,0,.1);margin-bottom:1rem;margin-top:1rem}.small,small{font-size:80%;font-weight:400}.mark,mark{background-color:#fcf8e3;padding:.2em}.list-inline,.list-unstyled{list-style:none;padding-left:0}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{font-size:1.1875rem;margin-bottom:1rem}.blockquote-footer{color:#6c757d;display:block;font-size:80%}.blockquote-footer:before{content:"— "}.img-fluid,.img-thumbnail{height:auto;max-width:100%}.img-thumbnail{background-color:#1c1c1c;border:1px solid #dee2e6;border-radius:.25rem;padding:.25rem}.figure{display:inline-block}.figure-img{line-height:1;margin-bottom:.5rem}.figure-caption{color:#6c757d;font-size:90%}code{word-wrap:break-word;color:#e83e8c;font-size:87.5%}a>code{color:inherit}kbd{background-color:#212529;border-radius:.2rem;color:#fff;font-size:87.5%;padding:.2rem .4rem}kbd kbd{font-size:100%;font-weight:700;padding:0}pre{color:#212529;display:block;font-size:87.5%}pre code{color:inherit;font-size:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px;width:100%}@media (min-width:2px){.container,.container-sm{max-width:1137px}}@media (min-width:8px){.container,.container-md,.container-sm{max-width:1138px}}@media (min-width:9px){.container,.container-lg,.container-md,.container-sm{max-width:1139px}}@media (min-width:10px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}.row{display:flex;flex-wrap:wrap;margin-left:-15px;margin-right:-15px}.no-gutters{margin-left:0;margin-right:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-left:0;padding-right:0}.col,.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col-auto,.col-lg,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-auto,.col-md,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md-auto,.col-sm,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-auto{padding-left:15px;padding-right:15px;position:relative;width:100%}.col{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-1>*{flex:0 0 100%;max-width:100%}.row-cols-2>*{flex:0 0 50%;max-width:50%}.row-cols-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-4>*{flex:0 0 25%;max-width:25%}.row-cols-5>*{flex:0 0 20%;max-width:20%}.row-cols-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-auto{flex:0 0 auto;max-width:100%;width:auto}.col-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-12{flex:0 0 100%;max-width:100%}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.3333333333%}.offset-2{margin-left:16.6666666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.3333333333%}.offset-5{margin-left:41.6666666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.3333333333%}.offset-8{margin-left:66.6666666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.3333333333%}.offset-11{margin-left:91.6666666667%}@media (min-width:2px){.col-sm{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-sm-1>*{flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-auto{flex:0 0 auto;max-width:100%;width:auto}.col-sm-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-sm-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-sm-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-sm-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-sm-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.3333333333%}.offset-sm-2{margin-left:16.6666666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.3333333333%}.offset-sm-5{margin-left:41.6666666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.3333333333%}.offset-sm-8{margin-left:66.6666666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.3333333333%}.offset-sm-11{margin-left:91.6666666667%}}@media (min-width:8px){.col-md{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-md-1>*{flex:0 0 100%;max-width:100%}.row-cols-md-2>*{flex:0 0 50%;max-width:50%}.row-cols-md-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-md-4>*{flex:0 0 25%;max-width:25%}.row-cols-md-5>*{flex:0 0 20%;max-width:20%}.row-cols-md-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-auto{flex:0 0 auto;max-width:100%;width:auto}.col-md-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-md-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-md-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-md-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-md-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.3333333333%}.offset-md-2{margin-left:16.6666666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.3333333333%}.offset-md-5{margin-left:41.6666666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.3333333333%}.offset-md-8{margin-left:66.6666666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.3333333333%}.offset-md-11{margin-left:91.6666666667%}}@media (min-width:9px){.col-lg{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-lg-1>*{flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-auto{flex:0 0 auto;max-width:100%;width:auto}.col-lg-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-lg-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-lg-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-lg-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-lg-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.3333333333%}.offset-lg-2{margin-left:16.6666666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.3333333333%}.offset-lg-5{margin-left:41.6666666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.3333333333%}.offset-lg-8{margin-left:66.6666666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.3333333333%}.offset-lg-11{margin-left:91.6666666667%}}@media (min-width:10px){.col-xl{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-xl-1>*{flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-auto{flex:0 0 auto;max-width:100%;width:auto}.col-xl-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-xl-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-xl-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-xl-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-xl-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.3333333333%}.offset-xl-2{margin-left:16.6666666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.3333333333%}.offset-xl-5{margin-left:41.6666666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.3333333333%}.offset-xl-8{margin-left:66.6666666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.3333333333%}.offset-xl-11{margin-left:91.6666666667%}}.table{color:#e2edf4;margin-bottom:1rem;width:100%}.table td,.table th{border-top:1px solid #343434;padding:.75rem;vertical-align:top}.table thead th{border-bottom:2px solid #343434;vertical-align:bottom}.table tbody+tbody{border-top:2px solid #343434}.table-sm td,.table-sm th{padding:.3rem}.table-bordered,.table-bordered td,.table-bordered th{border:1px solid #343434}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{background-color:#343434;color:#e2edf4}.table-primary,.table-primary>td,.table-primary>th{background-color:#e8e8ff}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#d4d4ff}.table-hover .table-primary:hover,.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#cfcfff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#cccbcb}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#a09e9e}.table-hover .table-secondary:hover,.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#bfbebe}.table-success,.table-success>td,.table-success>th{background-color:#c0e4cf}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8bcca7}.table-hover .table-success:hover,.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#aedcc1}.table-info,.table-info>td,.table-info>th{background-color:#bfc9d1}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#899aa9}.table-hover .table-info:hover,.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#b0bcc6}.table-warning,.table-warning>td,.table-warning>th{background-color:#e9dfc5}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#d6c493}.table-hover .table-warning:hover,.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#e2d5b3}.table-danger,.table-danger>td,.table-danger>th{background-color:#e7c4c3}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#d3928f}.table-hover .table-danger:hover,.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#e0b2b1}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.table-hover .table-light:hover,.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#cccbcb}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#a09e9e}.table-hover .table-dark:hover,.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#bfbebe}.table-active,.table-active>td,.table-active>th{background-color:#343434}.table-hover .table-active:hover,.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:#272727}.table .thead-dark th{background-color:#494444;border-color:#5d5656;color:#fff}.table .thead-light th{background-color:#e9ecef;border-color:#343434;color:#495057}.table-dark{background-color:#494444;color:#fff}.table-dark td,.table-dark th,.table-dark thead th{border-color:#5d5656}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:hsla(0,0%,100%,.05)}.table-dark.table-hover tbody tr:hover{background-color:hsla(0,0%,100%,.075);color:#fff}@media (max-width:1.98px){.table-responsive-sm{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:7.98px){.table-responsive-md{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-md>.table-bordered{border:0}}@media (max-width:8.98px){.table-responsive-lg{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:9.98px){.table-responsive-xl{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive>.table-bordered{border:0}.form-control{background-clip:padding-box;background-color:#242424;border:1px solid #343434;border-radius:.25rem;color:#e2edf4;display:block;font-size:.95rem;font-weight:400;height:calc(1.5em + .75rem + 2px);line-height:1.5;padding:.375rem .75rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:100%}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #e2edf4}.form-control:focus{background-color:#242424;border-color:#fff;box-shadow:0 0 0 .2rem rgba(173,173,255,.25);color:#e2edf4;outline:0}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:focus::-ms-value{background-color:#242424;color:#e2edf4}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{font-size:inherit;line-height:1.5;margin-bottom:0;padding-bottom:calc(.375rem + 1px);padding-top:calc(.375rem + 1px)}.col-form-label-lg{font-size:1.1875rem;line-height:1.5;padding-bottom:calc(.5rem + 1px);padding-top:calc(.5rem + 1px)}.col-form-label-sm{font-size:.83125rem;line-height:1.5;padding-bottom:calc(.25rem + 1px);padding-top:calc(.25rem + 1px)}.form-control-plaintext{background-color:transparent;border:solid transparent;border-width:1px 0;color:#e2edf4;display:block;font-size:.95rem;line-height:1.5;margin-bottom:0;padding:.375rem 0;width:100%}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-left:0;padding-right:0}.form-control-sm{border-radius:.2rem;font-size:.83125rem;height:calc(1.5em + .5rem + 2px);line-height:1.5;padding:.25rem .5rem}.form-control-lg{border-radius:.3rem;font-size:1.1875rem;height:calc(1.5em + 1rem + 2px);line-height:1.5;padding:.5rem 1rem}select.form-control[multiple],select.form-control[size],textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:flex;flex-wrap:wrap;margin-left:-5px;margin-right:-5px}.form-row>.col,.form-row>[class*=col-]{padding-left:5px;padding-right:5px}.form-check{display:block;padding-left:1.25rem;position:relative}.form-check-input{margin-left:-1.25rem;margin-top:.3rem;position:absolute}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{align-items:center;display:inline-flex;margin-right:.75rem;padding-left:0}.form-check-inline .form-check-input{margin-left:0;margin-right:.3125rem;margin-top:0;position:static}.valid-feedback{color:#1f9d55;display:none;font-size:80%;margin-top:.25rem;width:100%}.valid-tooltip{background-color:rgba(31,157,85,.9);border-radius:.25rem;color:#fff;display:none;font-size:.83125rem;left:0;line-height:1.5;margin-top:.1rem;max-width:100%;padding:.25rem .5rem;position:absolute;top:100%;z-index:5}.form-row>.col>.valid-tooltip,.form-row>[class*=col-]>.valid-tooltip{left:5px}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%231f9d55' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");background-position:right calc(.375em + .1875rem) center;background-repeat:no-repeat;background-size:calc(.75em + .375rem) calc(.75em + .375rem);border-color:#1f9d55;padding-right:calc(1.5em + .75rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#1f9d55;box-shadow:0 0 0 .2rem rgba(31,157,85,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem);padding-right:calc(1.5em + .75rem)}.custom-select.is-valid,.was-validated .custom-select:valid{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23494444' d='M2 0 0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat,#242424 url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%231f9d55' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat;border-color:#1f9d55;padding-right:calc(.75em + 2.3125rem)}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#1f9d55;box-shadow:0 0 0 .2rem rgba(31,157,85,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#1f9d55}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#1f9d55}.custom-control-input.is-valid~.custom-control-label:before,.was-validated .custom-control-input:valid~.custom-control-label:before{border-color:#1f9d55}.custom-control-input.is-valid:checked~.custom-control-label:before,.was-validated .custom-control-input:valid:checked~.custom-control-label:before{background-color:#27c86c;border-color:#27c86c}.custom-control-input.is-valid:focus~.custom-control-label:before,.was-validated .custom-control-input:valid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(31,157,85,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label:before{border-color:#1f9d55}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#1f9d55}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#1f9d55;box-shadow:0 0 0 .2rem rgba(31,157,85,.25)}.invalid-feedback{color:#aa2e28;display:none;font-size:80%;margin-top:.25rem;width:100%}.invalid-tooltip{background-color:rgba(170,46,40,.9);border-radius:.25rem;color:#fff;display:none;font-size:.83125rem;left:0;line-height:1.5;margin-top:.1rem;max-width:100%;padding:.25rem .5rem;position:absolute;top:100%;z-index:5}.form-row>.col>.invalid-tooltip,.form-row>[class*=col-]>.invalid-tooltip{left:5px}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23aa2e28'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23aa2e28' stroke='none'/%3E%3C/svg%3E");background-position:right calc(.375em + .1875rem) center;background-repeat:no-repeat;background-size:calc(.75em + .375rem) calc(.75em + .375rem);border-color:#aa2e28;padding-right:calc(1.5em + .75rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#aa2e28;box-shadow:0 0 0 .2rem rgba(170,46,40,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem);padding-right:calc(1.5em + .75rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23494444' d='M2 0 0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat,#242424 url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23aa2e28'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23aa2e28' stroke='none'/%3E%3C/svg%3E") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat;border-color:#aa2e28;padding-right:calc(.75em + 2.3125rem)}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#aa2e28;box-shadow:0 0 0 .2rem rgba(170,46,40,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#aa2e28}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#aa2e28}.custom-control-input.is-invalid~.custom-control-label:before,.was-validated .custom-control-input:invalid~.custom-control-label:before{border-color:#aa2e28}.custom-control-input.is-invalid:checked~.custom-control-label:before,.was-validated .custom-control-input:invalid:checked~.custom-control-label:before{background-color:#d03d35;border-color:#d03d35}.custom-control-input.is-invalid:focus~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(170,46,40,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label:before{border-color:#aa2e28}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#aa2e28}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#aa2e28;box-shadow:0 0 0 .2rem rgba(170,46,40,.25)}.form-inline{align-items:center;display:flex;flex-flow:row wrap}.form-inline .form-check{width:100%}@media (min-width:2px){.form-inline label{justify-content:center}.form-inline .form-group,.form-inline label{align-items:center;display:flex;margin-bottom:0}.form-inline .form-group{flex:0 0 auto;flex-flow:row wrap}.form-inline .form-control{display:inline-block;vertical-align:middle;width:auto}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{align-items:center;display:flex;justify-content:center;padding-left:0;width:auto}.form-inline .form-check-input{flex-shrink:0;margin-left:0;margin-right:.25rem;margin-top:0;position:relative}.form-inline .custom-control{align-items:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{background-color:transparent;border:1px solid transparent;border-radius:.25rem;color:#e2edf4;display:inline-block;font-size:.95rem;font-weight:400;line-height:1.5;padding:.375rem .75rem;text-align:center;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#e2edf4;text-decoration:none}.btn.focus,.btn:focus{box-shadow:0 0 0 .2rem rgba(173,173,255,.25);outline:0}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{background-color:#adadff;border-color:#adadff;color:#212529}.btn-primary.focus,.btn-primary:focus,.btn-primary:hover{background-color:#8787ff;border-color:#7a7aff;color:#fff}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 .2rem rgba(152,153,223,.5)}.btn-primary.disabled,.btn-primary:disabled{background-color:#adadff;border-color:#adadff;color:#212529}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{background-color:#7a7aff;border-color:#6d6dff;color:#fff}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(152,153,223,.5)}.btn-secondary{background-color:#494444;border-color:#494444;color:#fff}.btn-secondary.focus,.btn-secondary:focus,.btn-secondary:hover{background-color:#353232;border-color:#2f2b2b;color:#fff}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 .2rem hsla(0,2%,38%,.5)}.btn-secondary.disabled,.btn-secondary:disabled{background-color:#494444;border-color:#494444;color:#fff}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{background-color:#2f2b2b;border-color:#282525;color:#fff}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem hsla(0,2%,38%,.5)}.btn-success{background-color:#1f9d55;border-color:#1f9d55;color:#fff}.btn-success.focus,.btn-success:focus,.btn-success:hover{background-color:#197d44;border-color:#17723e;color:#fff}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 .2rem rgba(65,172,111,.5)}.btn-success.disabled,.btn-success:disabled{background-color:#1f9d55;border-color:#1f9d55;color:#fff}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{background-color:#17723e;border-color:#146838;color:#fff}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(65,172,111,.5)}.btn-info{background-color:#1c3d5a;border-color:#1c3d5a;color:#fff}.btn-info.focus,.btn-info:focus,.btn-info:hover{background-color:#13293d;border-color:#102333;color:#fff}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 .2rem rgba(62,90,115,.5)}.btn-info.disabled,.btn-info:disabled{background-color:#1c3d5a;border-color:#1c3d5a;color:#fff}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{background-color:#102333;border-color:#0d1c29;color:#fff}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(62,90,115,.5)}.btn-warning{background-color:#b08d2f;border-color:#b08d2f;color:#fff}.btn-warning.focus,.btn-warning:focus,.btn-warning:hover{background-color:#927527;border-color:#886d24;color:#fff}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 .2rem rgba(188,158,78,.5)}.btn-warning.disabled,.btn-warning:disabled{background-color:#b08d2f;border-color:#b08d2f;color:#fff}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{background-color:#886d24;border-color:#7e6522;color:#fff}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(188,158,78,.5)}.btn-danger{background-color:#aa2e28;border-color:#aa2e28;color:#fff}.btn-danger.focus,.btn-danger:focus,.btn-danger:hover{background-color:#8b2621;border-color:#81231e;color:#fff}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 .2rem rgba(183,77,72,.5)}.btn-danger.disabled,.btn-danger:disabled{background-color:#aa2e28;border-color:#aa2e28;color:#fff}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{background-color:#81231e;border-color:#76201c;color:#fff}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(183,77,72,.5)}.btn-light{background-color:#f8f9fa;border-color:#f8f9fa;color:#212529}.btn-light.focus,.btn-light:focus,.btn-light:hover{background-color:#e2e6ea;border-color:#dae0e5;color:#212529}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 .2rem hsla(220,4%,85%,.5)}.btn-light.disabled,.btn-light:disabled{background-color:#f8f9fa;border-color:#f8f9fa;color:#212529}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{background-color:#dae0e5;border-color:#d3d9df;color:#212529}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem hsla(220,4%,85%,.5)}.btn-dark{background-color:#494444;border-color:#494444;color:#fff}.btn-dark.focus,.btn-dark:focus,.btn-dark:hover{background-color:#353232;border-color:#2f2b2b;color:#fff}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 .2rem hsla(0,2%,38%,.5)}.btn-dark.disabled,.btn-dark:disabled{background-color:#494444;border-color:#494444;color:#fff}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{background-color:#2f2b2b;border-color:#282525;color:#fff}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem hsla(0,2%,38%,.5)}.btn-outline-primary{border-color:#adadff;color:#adadff}.btn-outline-primary:hover{background-color:#adadff;border-color:#adadff;color:#212529}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(173,173,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{background-color:transparent;color:#adadff}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{background-color:#adadff;border-color:#adadff;color:#212529}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(173,173,255,.5)}.btn-outline-secondary{border-color:#494444;color:#494444}.btn-outline-secondary:hover{background-color:#494444;border-color:#494444;color:#fff}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(73,68,68,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{background-color:transparent;color:#494444}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{background-color:#494444;border-color:#494444;color:#fff}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(73,68,68,.5)}.btn-outline-success{border-color:#1f9d55;color:#1f9d55}.btn-outline-success:hover{background-color:#1f9d55;border-color:#1f9d55;color:#fff}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(31,157,85,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{background-color:transparent;color:#1f9d55}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{background-color:#1f9d55;border-color:#1f9d55;color:#fff}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(31,157,85,.5)}.btn-outline-info{border-color:#1c3d5a;color:#1c3d5a}.btn-outline-info:hover{background-color:#1c3d5a;border-color:#1c3d5a;color:#fff}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(28,61,90,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{background-color:transparent;color:#1c3d5a}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{background-color:#1c3d5a;border-color:#1c3d5a;color:#fff}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(28,61,90,.5)}.btn-outline-warning{border-color:#b08d2f;color:#b08d2f}.btn-outline-warning:hover{background-color:#b08d2f;border-color:#b08d2f;color:#fff}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(176,141,47,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{background-color:transparent;color:#b08d2f}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{background-color:#b08d2f;border-color:#b08d2f;color:#fff}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(176,141,47,.5)}.btn-outline-danger{border-color:#aa2e28;color:#aa2e28}.btn-outline-danger:hover{background-color:#aa2e28;border-color:#aa2e28;color:#fff}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(170,46,40,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{background-color:transparent;color:#aa2e28}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{background-color:#aa2e28;border-color:#aa2e28;color:#fff}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(170,46,40,.5)}.btn-outline-light{border-color:#f8f9fa;color:#f8f9fa}.btn-outline-light:hover{background-color:#f8f9fa;border-color:#f8f9fa;color:#212529}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{background-color:transparent;color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{background-color:#f8f9fa;border-color:#f8f9fa;color:#212529}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{border-color:#494444;color:#494444}.btn-outline-dark:hover{background-color:#494444;border-color:#494444;color:#fff}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(73,68,68,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{background-color:transparent;color:#494444}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{background-color:#494444;border-color:#494444;color:#fff}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(73,68,68,.5)}.btn-link{color:#adadff;font-weight:400;text-decoration:none}.btn-link:hover{color:#6161ff}.btn-link.focus,.btn-link:focus,.btn-link:hover{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{border-radius:.3rem;font-size:1.1875rem;line-height:1.5;padding:.5rem 1rem}.btn-group-sm>.btn,.btn-sm{border-radius:.2rem;font-size:.83125rem;line-height:1.5;padding:.25rem .5rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;position:relative;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:after{border-bottom:0;border-left:.3em solid transparent;border-right:.3em solid transparent;border-top:.3em solid;content:"";display:inline-block;margin-left:.255em;vertical-align:.255em}.dropdown-toggle:empty:after{margin-left:0}.dropdown-menu{background-clip:padding-box;background-color:#181818;border:1px solid rgba(0,0,0,.15);border-radius:.25rem;color:#e2edf4;display:none;float:left;font-size:.95rem;left:0;list-style:none;margin:.125rem 0 0;min-width:10rem;padding:.5rem 0;position:absolute;text-align:left;top:100%;z-index:1000}.dropdown-menu-left{left:0;right:auto}.dropdown-menu-right{left:auto;right:0}@media (min-width:2px){.dropdown-menu-sm-left{left:0;right:auto}.dropdown-menu-sm-right{left:auto;right:0}}@media (min-width:8px){.dropdown-menu-md-left{left:0;right:auto}.dropdown-menu-md-right{left:auto;right:0}}@media (min-width:9px){.dropdown-menu-lg-left{left:0;right:auto}.dropdown-menu-lg-right{left:auto;right:0}}@media (min-width:10px){.dropdown-menu-xl-left{left:0;right:auto}.dropdown-menu-xl-right{left:auto;right:0}}.dropup .dropdown-menu{bottom:100%;margin-bottom:.125rem;margin-top:0;top:auto}.dropup .dropdown-toggle:after{border-bottom:.3em solid;border-left:.3em solid transparent;border-right:.3em solid transparent;border-top:0;content:"";display:inline-block;margin-left:.255em;vertical-align:.255em}.dropup .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-menu{left:100%;margin-left:.125rem;margin-top:0;right:auto;top:0}.dropright .dropdown-toggle:after{border-bottom:.3em solid transparent;border-left:.3em solid;border-right:0;border-top:.3em solid transparent;content:"";display:inline-block;margin-left:.255em;vertical-align:.255em}.dropright .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-toggle:after{vertical-align:0}.dropleft .dropdown-menu{left:auto;margin-right:.125rem;margin-top:0;right:100%;top:0}.dropleft .dropdown-toggle:after{content:"";display:inline-block;display:none;margin-left:.255em;vertical-align:.255em}.dropleft .dropdown-toggle:before{border-bottom:.3em solid transparent;border-right:.3em solid;border-top:.3em solid transparent;content:"";display:inline-block;margin-right:.255em;vertical-align:.255em}.dropleft .dropdown-toggle:empty:after{margin-left:0}.dropleft .dropdown-toggle:before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{bottom:auto;right:auto}.dropdown-divider{border-top:1px solid #e9ecef;height:0;margin:.5rem 0;overflow:hidden}.dropdown-item{background-color:transparent;border:0;clear:both;color:#fff;display:block;font-weight:400;padding:.25rem 1.5rem;text-align:inherit;white-space:nowrap;width:100%}.dropdown-item:focus,.dropdown-item:hover{background-color:#e9ecef;color:#16181b;text-decoration:none}.dropdown-item.active,.dropdown-item:active{background-color:#adadff;color:#fff;text-decoration:none}.dropdown-item.disabled,.dropdown-item:disabled{background-color:transparent;color:#adb5bd;pointer-events:none}.dropdown-menu.show{display:block}.dropdown-header{color:#6c757d;display:block;font-size:.83125rem;margin-bottom:0;padding:.5rem 1.5rem;white-space:nowrap}.dropdown-item-text{color:#fff;display:block;padding:.25rem 1.5rem}.btn-group,.btn-group-vertical{display:inline-flex;position:relative;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{flex:1 1 auto;position:relative}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.dropdown-toggle-split{padding-left:.5625rem;padding-right:.5625rem}.dropdown-toggle-split:after,.dropright .dropdown-toggle-split:after,.dropup .dropdown-toggle-split:after{margin-left:0}.dropleft .dropdown-toggle-split:before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-left:.375rem;padding-right:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-left:.75rem;padding-right:.75rem}.btn-group-vertical{align-items:flex-start;flex-direction:column;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-left-radius:0;border-bottom-right-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio],.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio]{clip:rect(0,0,0,0);pointer-events:none;position:absolute}.input-group{align-items:stretch;display:flex;flex-wrap:wrap;position:relative;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{flex:1 1 auto;margin-bottom:0;min-width:0;position:relative;width:1%}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.input-group>.custom-file{align-items:center;display:flex}.input-group>.custom-file:not(:first-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label{border-bottom-left-radius:0;border-top-left-radius:0}.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label:after,.input-group.has-validation>.custom-select:nth-last-child(n+3),.input-group.has-validation>.form-control:nth-last-child(n+3),.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label:after,.input-group:not(.has-validation)>.custom-select:not(:last-child),.input-group:not(.has-validation)>.form-control:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.input-group-append,.input-group-prepend{display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{align-items:center;background-color:#e9ecef;border:1px solid #343434;border-radius:.25rem;color:#e2edf4;display:flex;font-size:.95rem;font-weight:400;line-height:1.5;margin-bottom:0;padding:.375rem .75rem;text-align:center;white-space:nowrap}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{border-radius:.3rem;font-size:1.1875rem;line-height:1.5;padding:.5rem 1rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{border-radius:.2rem;font-size:.83125rem;line-height:1.5;padding:.25rem .5rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-bottom-right-radius:0;border-top-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-bottom-left-radius:0;border-top-left-radius:0}.custom-control{-webkit-print-color-adjust:exact;color-adjust:exact;display:block;min-height:1.425rem;padding-left:1.5rem;position:relative;z-index:1}.custom-control-inline{display:inline-flex;margin-right:1rem}.custom-control-input{height:1.2125rem;left:0;opacity:0;position:absolute;width:1rem;z-index:-1}.custom-control-input:checked~.custom-control-label:before{background-color:#adadff;border-color:#adadff;color:#fff}.custom-control-input:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(173,173,255,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label:before{border-color:#fff}.custom-control-input:not(:disabled):active~.custom-control-label:before{background-color:#fff;border-color:#fff;color:#fff}.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label:before,.custom-control-input[disabled]~.custom-control-label:before{background-color:#e9ecef}.custom-control-label{margin-bottom:0;position:relative;vertical-align:top}.custom-control-label:before{background-color:#242424;border:1px solid #adb5bd;pointer-events:none}.custom-control-label:after,.custom-control-label:before{content:"";display:block;height:1rem;left:-1.5rem;position:absolute;top:.2125rem;width:1rem}.custom-control-label:after{background:50%/50% 50% no-repeat}.custom-checkbox .custom-control-label:before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%23fff' d='m6.564.75-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:before{background-color:#adadff;border-color:#adadff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(173,173,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label:before{background-color:rgba(173,173,255,.5)}.custom-radio .custom-control-label:before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(173,173,255,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label:before{border-radius:.5rem;left:-2.25rem;pointer-events:all;width:1.75rem}.custom-switch .custom-control-label:after{background-color:#adb5bd;border-radius:.5rem;height:calc(1rem - 4px);left:calc(-2.25rem + 2px);top:calc(.2125rem + 2px);transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:calc(1rem - 4px)}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label:after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label:after{background-color:#242424;transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(173,173,255,.5)}.custom-select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#242424 url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23494444' d='M2 0 0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat;border:1px solid #343434;border-radius:.25rem;color:#e2edf4;display:inline-block;font-size:.95rem;font-weight:400;height:calc(1.5em + .75rem + 2px);line-height:1.5;padding:.375rem 1.75rem .375rem .75rem;vertical-align:middle;width:100%}.custom-select:focus{border-color:#fff;box-shadow:0 0 0 .2rem rgba(173,173,255,.25);outline:0}.custom-select:focus::-ms-value{background-color:#242424;color:#e2edf4}.custom-select[multiple],.custom-select[size]:not([size="1"]){background-image:none;height:auto;padding-right:.75rem}.custom-select:disabled{background-color:#e9ecef;color:#6c757d}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #e2edf4}.custom-select-sm{font-size:.83125rem;height:calc(1.5em + .5rem + 2px);padding-bottom:.25rem;padding-left:.5rem;padding-top:.25rem}.custom-select-lg{font-size:1.1875rem;height:calc(1.5em + 1rem + 2px);padding-bottom:.5rem;padding-left:1rem;padding-top:.5rem}.custom-file{display:inline-block;margin-bottom:0}.custom-file,.custom-file-input{height:calc(1.5em + .75rem + 2px);position:relative;width:100%}.custom-file-input{margin:0;opacity:0;overflow:hidden;z-index:2}.custom-file-input:focus~.custom-file-label{border-color:#fff;box-shadow:0 0 0 .2rem rgba(173,173,255,.25)}.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label:after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]:after{content:attr(data-browse)}.custom-file-label{background-color:#242424;border:1px solid #343434;border-radius:.25rem;font-weight:400;height:calc(1.5em + .75rem + 2px);left:0;overflow:hidden;z-index:1}.custom-file-label,.custom-file-label:after{color:#e2edf4;line-height:1.5;padding:.375rem .75rem;position:absolute;right:0;top:0}.custom-file-label:after{background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0;bottom:0;content:"Browse";display:block;height:calc(1.5em + .75rem);z-index:3}.custom-range{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;height:1.4rem;padding:0;width:100%}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #1c1c1c,0 0 0 .2rem rgba(173,173,255,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #1c1c1c,0 0 0 .2rem rgba(173,173,255,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #1c1c1c,0 0 0 .2rem rgba(173,173,255,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;background-color:#adadff;border:0;border-radius:1rem;height:1rem;margin-top:-.25rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:1rem}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#fff}.custom-range::-webkit-slider-runnable-track{background-color:#dee2e6;border-color:transparent;border-radius:1rem;color:transparent;cursor:pointer;height:.5rem;width:100%}.custom-range::-moz-range-thumb{-moz-appearance:none;appearance:none;background-color:#adadff;border:0;border-radius:1rem;height:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:1rem}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#fff}.custom-range::-moz-range-track{background-color:#dee2e6;border-color:transparent;border-radius:1rem;color:transparent;cursor:pointer;height:.5rem;width:100%}.custom-range::-ms-thumb{appearance:none;background-color:#adadff;border:0;border-radius:1rem;height:1rem;margin-left:.2rem;margin-right:.2rem;margin-top:0;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:1rem}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#fff}.custom-range::-ms-track{background-color:transparent;border-color:transparent;border-width:.5rem;color:transparent;cursor:pointer;height:.5rem;width:100%}.custom-range::-ms-fill-lower,.custom-range::-ms-fill-upper{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label:before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label:before,.custom-file-label,.custom-select{transition:none}}.nav{display:flex;flex-wrap:wrap;list-style:none;margin-bottom:0;padding-left:0}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;cursor:default;pointer-events:none}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem;margin-bottom:-1px}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{background-color:transparent;border-color:transparent;color:#6c757d}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{background-color:#1c1c1c;border-color:#dee2e6 #dee2e6 #1c1c1c;color:#495057}.nav-tabs .dropdown-menu{border-top-left-radius:0;border-top-right-radius:0;margin-top:-1px}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{background-color:#adadff;color:#fff}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{padding:.5rem 1rem;position:relative}.navbar,.navbar .container,.navbar .container-fluid,.navbar .container-lg,.navbar .container-md,.navbar .container-sm,.navbar .container-xl{align-items:center;display:flex;flex-wrap:wrap;justify-content:space-between}.navbar-brand{display:inline-block;font-size:1.1875rem;line-height:inherit;margin-right:1rem;padding-bottom:.321875rem;padding-top:.321875rem;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:flex;flex-direction:column;list-style:none;margin-bottom:0;padding-left:0}.navbar-nav .nav-link{padding-left:0;padding-right:0}.navbar-nav .dropdown-menu{float:none;position:static}.navbar-text{display:inline-block;padding-bottom:.5rem;padding-top:.5rem}.navbar-collapse{align-items:center;flex-basis:100%;flex-grow:1}.navbar-toggler{background-color:transparent;border:1px solid transparent;border-radius:.25rem;font-size:1.1875rem;line-height:1;padding:.25rem .75rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{background:50%/100% 100% no-repeat;content:"";display:inline-block;height:1.5em;vertical-align:middle;width:1.5em}.navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media (max-width:1.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{padding-left:0;padding-right:0}}@media (min-width:2px){.navbar-expand-sm{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{flex-wrap:nowrap}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:7.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{padding-left:0;padding-right:0}}@media (min-width:8px){.navbar-expand-md{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{flex-wrap:nowrap}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:8.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{padding-left:0;padding-right:0}}@media (min-width:9px){.navbar-expand-lg{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{flex-wrap:nowrap}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:9.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{padding-left:0;padding-right:0}}@media (min-width:10px){.navbar-expand-xl{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{flex-wrap:nowrap}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{padding-left:0;padding-right:0}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{flex-wrap:nowrap}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand,.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{border-color:rgba(0,0,0,.1);color:rgba(0,0,0,.5)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand,.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:hsla(0,0%,100%,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:hsla(0,0%,100%,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{border-color:hsla(0,0%,100%,.1);color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-dark .navbar-text{color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{word-wrap:break-word;background-clip:border-box;background-color:#120f12;border:1px solid rgba(0,0,0,.125);border-radius:.25rem;display:flex;flex-direction:column;min-width:0;position:relative}.card>hr{margin-left:0;margin-right:0}.card>.list-group{border-bottom:inherit;border-top:inherit}.card>.list-group:first-child{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px);border-top-width:0}.card>.list-group:last-child{border-bottom-left-radius:calc(.25rem - 1px);border-bottom-right-radius:calc(.25rem - 1px);border-bottom-width:0}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem}.card-subtitle,.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{background-color:#120f12;border-bottom:1px solid rgba(0,0,0,.125);margin-bottom:0;padding:.75rem 1.25rem}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{background-color:#120f12;border-top:1px solid rgba(0,0,0,.125);padding:.75rem 1.25rem}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{border-bottom:0;margin-bottom:-.75rem}.card-header-pills,.card-header-tabs{margin-left:-.625rem;margin-right:-.625rem}.card-img-overlay{border-radius:calc(.25rem - 1px);bottom:0;left:0;padding:1.25rem;position:absolute;right:0;top:0}.card-img,.card-img-bottom,.card-img-top{flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-left-radius:calc(.25rem - 1px);border-bottom-right-radius:calc(.25rem - 1px)}.card-deck .card{margin-bottom:15px}@media (min-width:2px){.card-deck{display:flex;flex-flow:row wrap;margin-left:-15px;margin-right:-15px}.card-deck .card{flex:1 0 0%;margin-bottom:0;margin-left:15px;margin-right:15px}}.card-group>.card{margin-bottom:15px}@media (min-width:2px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{border-left:0;margin-left:0}.card-group>.card:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:2px){.card-columns{-moz-column-count:3;column-count:3;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion{overflow-anchor:none}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-left-radius:0;border-bottom-right-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{background-color:#e9ecef;border-radius:.25rem;display:flex;flex-wrap:wrap;list-style:none;margin-bottom:1rem;padding:.75rem 1rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item:before{color:#6c757d;content:"/";float:left;padding-right:.5rem}.breadcrumb-item+.breadcrumb-item:hover:before{text-decoration:underline;text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{border-radius:.25rem;display:flex;list-style:none;padding-left:0}.page-link{background-color:#fff;border:1px solid #dee2e6;color:#adadff;display:block;line-height:1.25;margin-left:-1px;padding:.5rem .75rem;position:relative}.page-link:hover{background-color:#e9ecef;border-color:#dee2e6;color:#6161ff;text-decoration:none;z-index:2}.page-link:focus{box-shadow:0 0 0 .2rem rgba(173,173,255,.25);outline:0;z-index:3}.page-item:first-child .page-link{border-bottom-left-radius:.25rem;border-top-left-radius:.25rem;margin-left:0}.page-item:last-child .page-link{border-bottom-right-radius:.25rem;border-top-right-radius:.25rem}.page-item.active .page-link{background-color:#adadff;border-color:#adadff;color:#fff;z-index:3}.page-item.disabled .page-link{background-color:#fff;border-color:#dee2e6;color:#6c757d;cursor:auto;pointer-events:none}.pagination-lg .page-link{font-size:1.1875rem;line-height:1.5;padding:.75rem 1.5rem}.pagination-lg .page-item:first-child .page-link{border-bottom-left-radius:.3rem;border-top-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-bottom-right-radius:.3rem;border-top-right-radius:.3rem}.pagination-sm .page-link{font-size:.83125rem;line-height:1.5;padding:.25rem .5rem}.pagination-sm .page-item:first-child .page-link{border-bottom-left-radius:.2rem;border-top-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-bottom-right-radius:.2rem;border-top-right-radius:.2rem}.badge{border-radius:.25rem;display:inline-block;font-size:.95rem;font-weight:700;line-height:1;padding:.25em .4em;text-align:center;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;vertical-align:baseline;white-space:nowrap}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{border-radius:10rem;padding-left:.6em;padding-right:.6em}.badge-primary{background-color:#adadff;color:#212529}a.badge-primary:focus,a.badge-primary:hover{background-color:#7a7aff;color:#212529}a.badge-primary.focus,a.badge-primary:focus{box-shadow:0 0 0 .2rem rgba(173,173,255,.5);outline:0}.badge-secondary{background-color:#494444;color:#fff}a.badge-secondary:focus,a.badge-secondary:hover{background-color:#2f2b2b;color:#fff}a.badge-secondary.focus,a.badge-secondary:focus{box-shadow:0 0 0 .2rem rgba(73,68,68,.5);outline:0}.badge-success{background-color:#1f9d55;color:#fff}a.badge-success:focus,a.badge-success:hover{background-color:#17723e;color:#fff}a.badge-success.focus,a.badge-success:focus{box-shadow:0 0 0 .2rem rgba(31,157,85,.5);outline:0}.badge-info{background-color:#1c3d5a;color:#fff}a.badge-info:focus,a.badge-info:hover{background-color:#102333;color:#fff}a.badge-info.focus,a.badge-info:focus{box-shadow:0 0 0 .2rem rgba(28,61,90,.5);outline:0}.badge-warning{background-color:#b08d2f;color:#fff}a.badge-warning:focus,a.badge-warning:hover{background-color:#886d24;color:#fff}a.badge-warning.focus,a.badge-warning:focus{box-shadow:0 0 0 .2rem rgba(176,141,47,.5);outline:0}.badge-danger{background-color:#aa2e28;color:#fff}a.badge-danger:focus,a.badge-danger:hover{background-color:#81231e;color:#fff}a.badge-danger.focus,a.badge-danger:focus{box-shadow:0 0 0 .2rem rgba(170,46,40,.5);outline:0}.badge-light{background-color:#f8f9fa;color:#212529}a.badge-light:focus,a.badge-light:hover{background-color:#dae0e5;color:#212529}a.badge-light.focus,a.badge-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5);outline:0}.badge-dark{background-color:#494444;color:#fff}a.badge-dark:focus,a.badge-dark:hover{background-color:#2f2b2b;color:#fff}a.badge-dark.focus,a.badge-dark:focus{box-shadow:0 0 0 .2rem rgba(73,68,68,.5);outline:0}.jumbotron{background-color:#e9ecef;border-radius:.3rem;margin-bottom:2rem;padding:2rem 1rem}@media (min-width:2px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{border-radius:0;padding-left:0;padding-right:0}.alert{border:1px solid transparent;border-radius:.25rem;margin-bottom:1rem;padding:.75rem 1.25rem;position:relative}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3.925rem}.alert-dismissible .close{color:inherit;padding:.75rem 1.25rem;position:absolute;right:0;top:0;z-index:2}.alert-primary{background-color:#efefff;border-color:#e8e8ff;color:#5a5a85}.alert-primary hr{border-top-color:#cfcfff}.alert-primary .alert-link{color:#454567}.alert-secondary{background-color:#dbdada;border-color:#cccbcb;color:#262323}.alert-secondary hr{border-top-color:#bfbebe}.alert-secondary .alert-link{color:#0b0b0b}.alert-success{background-color:#d2ebdd;border-color:#c0e4cf;color:#10522c}.alert-success hr{border-top-color:#aedcc1}.alert-success .alert-link{color:#082715}.alert-info{background-color:#d2d8de;border-color:#bfc9d1;color:#0f202f}.alert-info hr{border-top-color:#b0bcc6}.alert-info .alert-link{color:#030608}.alert-warning{background-color:#efe8d5;border-color:#e9dfc5;color:#5c4918}.alert-warning hr{border-top-color:#e2d5b3}.alert-warning .alert-link{color:#34290d}.alert-danger{background-color:#eed5d4;border-color:#e7c4c3;color:#581815}.alert-danger hr{border-top-color:#e0b2b1}.alert-danger .alert-link{color:#2f0d0b}.alert-light{background-color:#fefefe;border-color:#fdfdfe;color:#818182}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{background-color:#dbdada;border-color:#cccbcb;color:#262323}.alert-dark hr{border-top-color:#bfbebe}.alert-dark .alert-link{color:#0b0b0b}@-webkit-keyframes progress-bar-stripes{0%{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{0%{background-position:1rem 0}to{background-position:0 0}}.progress{background-color:#e9ecef;border-radius:.25rem;font-size:.7125rem;height:1rem;line-height:0}.progress,.progress-bar{display:flex;overflow:hidden}.progress-bar{background-color:#adadff;color:#fff;flex-direction:column;justify-content:center;text-align:center;transition:width .6s ease;white-space:nowrap}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{align-items:flex-start;display:flex}.media-body{flex:1}.list-group{border-radius:.25rem;display:flex;flex-direction:column;margin-bottom:0;padding-left:0}.list-group-item-action{color:#495057;text-align:inherit;width:100%}.list-group-item-action:focus,.list-group-item-action:hover{background-color:#f8f9fa;color:#495057;text-decoration:none;z-index:1}.list-group-item-action:active{background-color:#e9ecef;color:#e2edf4}.list-group-item{background-color:#fff;border:1px solid rgba(0,0,0,.125);display:block;padding:.75rem 1.25rem;position:relative}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{background-color:#fff;color:#6c757d;pointer-events:none}.list-group-item.active{background-color:#adadff;border-color:#adadff;color:#fff;z-index:2}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{border-top-width:1px;margin-top:-1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}@media (min-width:2px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}@media (min-width:8px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-md>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}@media (min-width:9px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}@media (min-width:10px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{background-color:#e8e8ff;color:#5a5a85}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{background-color:#cfcfff;color:#5a5a85}.list-group-item-primary.list-group-item-action.active{background-color:#5a5a85;border-color:#5a5a85;color:#fff}.list-group-item-secondary{background-color:#cccbcb;color:#262323}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{background-color:#bfbebe;color:#262323}.list-group-item-secondary.list-group-item-action.active{background-color:#262323;border-color:#262323;color:#fff}.list-group-item-success{background-color:#c0e4cf;color:#10522c}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{background-color:#aedcc1;color:#10522c}.list-group-item-success.list-group-item-action.active{background-color:#10522c;border-color:#10522c;color:#fff}.list-group-item-info{background-color:#bfc9d1;color:#0f202f}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{background-color:#b0bcc6;color:#0f202f}.list-group-item-info.list-group-item-action.active{background-color:#0f202f;border-color:#0f202f;color:#fff}.list-group-item-warning{background-color:#e9dfc5;color:#5c4918}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{background-color:#e2d5b3;color:#5c4918}.list-group-item-warning.list-group-item-action.active{background-color:#5c4918;border-color:#5c4918;color:#fff}.list-group-item-danger{background-color:#e7c4c3;color:#581815}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{background-color:#e0b2b1;color:#581815}.list-group-item-danger.list-group-item-action.active{background-color:#581815;border-color:#581815;color:#fff}.list-group-item-light{background-color:#fdfdfe;color:#818182}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{background-color:#ececf6;color:#818182}.list-group-item-light.list-group-item-action.active{background-color:#818182;border-color:#818182;color:#fff}.list-group-item-dark{background-color:#cccbcb;color:#262323}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{background-color:#bfbebe;color:#262323}.list-group-item-dark.list-group-item-action.active{background-color:#262323;border-color:#262323;color:#fff}.close{color:#000;float:right;font-size:1.425rem;font-weight:700;line-height:1;opacity:.5;text-shadow:0 1px 0 #fff}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{background-color:transparent;border:0;padding:0}a.close.disabled{pointer-events:none}.toast{background-clip:padding-box;background-color:hsla(0,0%,100%,.85);border:1px solid rgba(0,0,0,.1);border-radius:.25rem;box-shadow:0 .25rem .75rem rgba(0,0,0,.1);flex-basis:350px;font-size:.875rem;max-width:350px;opacity:0}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{align-items:center;background-clip:padding-box;background-color:hsla(0,0%,100%,.85);border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px);color:#6c757d;display:flex;padding:.25rem .75rem}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{display:none;height:100%;left:0;outline:0;overflow:hidden;position:fixed;top:0;width:100%;z-index:1050}.modal-dialog{margin:.5rem;pointer-events:none;position:relative;width:auto}.modal.fade .modal-dialog{transform:translateY(-50px);transition:transform .3s ease-out}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{align-items:center;display:flex;min-height:calc(100% - 1rem)}.modal-dialog-centered:before{content:"";display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;height:100%;justify-content:center}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable:before{content:none}.modal-content{background-clip:padding-box;background-color:#181818;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;display:flex;flex-direction:column;outline:0;pointer-events:auto;position:relative;width:100%}.modal-backdrop{background-color:#7e7e7e;height:100vh;left:0;position:fixed;top:0;width:100vw;z-index:1040}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{align-items:flex-start;border-bottom:1px solid #343434;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px);display:flex;justify-content:space-between;padding:1rem}.modal-header .close{margin:-1rem -1rem -1rem auto;padding:1rem}.modal-title{line-height:1.5;margin-bottom:0}.modal-body{flex:1 1 auto;padding:1rem;position:relative}.modal-footer{align-items:center;border-bottom-left-radius:calc(.3rem - 1px);border-bottom-right-radius:calc(.3rem - 1px);border-top:1px solid #343434;display:flex;flex-wrap:wrap;justify-content:flex-end;padding:.75rem}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{height:50px;overflow:scroll;position:absolute;top:-9999px;width:50px}@media (min-width:2px){.modal-dialog{margin:1.75rem auto;max-width:500px}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered:before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}.modal-sm{max-width:300px}}@media (min-width:9px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:10px){.modal-xl{max-width:1140px}}.tooltip{word-wrap:break-word;display:block;font-family:Nunito;font-size:.83125rem;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.5;margin:0;opacity:0;position:absolute;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;z-index:1070}.tooltip.show{opacity:.9}.tooltip .arrow{display:block;height:.4rem;position:absolute;width:.8rem}.tooltip .arrow:before{border-color:transparent;border-style:solid;content:"";position:absolute}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow:before,.bs-tooltip-top .arrow:before{border-top-color:#000;border-width:.4rem .4rem 0;top:0}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{height:.8rem;left:0;width:.4rem}.bs-tooltip-auto[x-placement^=right] .arrow:before,.bs-tooltip-right .arrow:before{border-right-color:#000;border-width:.4rem .4rem .4rem 0;right:0}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow:before,.bs-tooltip-bottom .arrow:before{border-bottom-color:#000;border-width:0 .4rem .4rem;bottom:0}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{height:.8rem;right:0;width:.4rem}.bs-tooltip-auto[x-placement^=left] .arrow:before,.bs-tooltip-left .arrow:before{border-left-color:#000;border-width:.4rem 0 .4rem .4rem;left:0}.tooltip-inner{background-color:#000;border-radius:.25rem;color:#fff;max-width:200px;padding:.25rem .5rem;text-align:center}.popover{word-wrap:break-word;background-clip:padding-box;background-color:#fff;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;font-family:Nunito;font-size:.83125rem;font-style:normal;font-weight:400;left:0;letter-spacing:normal;line-break:auto;line-height:1.5;max-width:276px;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;top:0;white-space:normal;word-break:normal;word-spacing:normal;z-index:1060}.popover,.popover .arrow{display:block;position:absolute}.popover .arrow{height:.5rem;margin:0 .3rem;width:1rem}.popover .arrow:after,.popover .arrow:before{border-color:transparent;border-style:solid;content:"";display:block;position:absolute}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=top]>.arrow:before,.bs-popover-top>.arrow:before{border-top-color:rgba(0,0,0,.25);border-width:.5rem .5rem 0;bottom:0}.bs-popover-auto[x-placement^=top]>.arrow:after,.bs-popover-top>.arrow:after{border-top-color:#fff;border-width:.5rem .5rem 0;bottom:1px}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{height:1rem;left:calc(-.5rem - 1px);margin:.3rem 0;width:.5rem}.bs-popover-auto[x-placement^=right]>.arrow:before,.bs-popover-right>.arrow:before{border-right-color:rgba(0,0,0,.25);border-width:.5rem .5rem .5rem 0;left:0}.bs-popover-auto[x-placement^=right]>.arrow:after,.bs-popover-right>.arrow:after{border-right-color:#fff;border-width:.5rem .5rem .5rem 0;left:1px}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=bottom]>.arrow:before,.bs-popover-bottom>.arrow:before{border-bottom-color:rgba(0,0,0,.25);border-width:0 .5rem .5rem;top:0}.bs-popover-auto[x-placement^=bottom]>.arrow:after,.bs-popover-bottom>.arrow:after{border-bottom-color:#fff;border-width:0 .5rem .5rem;top:1px}.bs-popover-auto[x-placement^=bottom] .popover-header:before,.bs-popover-bottom .popover-header:before{border-bottom:1px solid #f7f7f7;content:"";display:block;left:50%;margin-left:-.5rem;position:absolute;top:0;width:1rem}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{height:1rem;margin:.3rem 0;right:calc(-.5rem - 1px);width:.5rem}.bs-popover-auto[x-placement^=left]>.arrow:before,.bs-popover-left>.arrow:before{border-left-color:rgba(0,0,0,.25);border-width:.5rem 0 .5rem .5rem;right:0}.bs-popover-auto[x-placement^=left]>.arrow:after,.bs-popover-left>.arrow:after{border-left-color:#fff;border-width:.5rem 0 .5rem .5rem;right:1px}.popover-header{background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px);font-size:.95rem;margin-bottom:0;padding:.5rem .75rem}.popover-header:empty{display:none}.popover-body{color:#e2edf4;padding:.5rem .75rem}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{overflow:hidden;position:relative;width:100%}.carousel-inner:after{clear:both;content:"";display:block}.carousel-item{-webkit-backface-visibility:hidden;backface-visibility:hidden;display:none;float:left;margin-right:-100%;position:relative;transition:transform .6s ease-in-out;width:100%}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transform:none;transition-property:opacity}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{opacity:1;z-index:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{opacity:0;transition:opacity 0s .6s;z-index:0}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{align-items:center;bottom:0;color:#fff;display:flex;justify-content:center;opacity:.5;position:absolute;text-align:center;top:0;transition:opacity .15s ease;width:15%;z-index:1}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;opacity:.9;outline:0;text-decoration:none}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{background:50%/100% 100% no-repeat;display:inline-block;height:20px;width:20px}.carousel-control-prev-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='m5.25 0-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3E%3C/svg%3E")}.carousel-control-next-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='m2.75 0-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3E%3C/svg%3E")}.carousel-indicators{bottom:0;display:flex;justify-content:center;left:0;list-style:none;margin-left:15%;margin-right:15%;padding-left:0;position:absolute;right:0;z-index:15}.carousel-indicators li{background-clip:padding-box;background-color:#fff;border-bottom:10px solid transparent;border-top:10px solid transparent;box-sizing:content-box;cursor:pointer;flex:0 1 auto;height:3px;margin-left:3px;margin-right:3px;opacity:.5;text-indent:-999px;transition:opacity .6s ease;width:30px}@media (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{bottom:20px;color:#fff;left:15%;padding-bottom:20px;padding-top:20px;position:absolute;right:15%;text-align:center;z-index:10}@-webkit-keyframes spinner-border{to{transform:rotate(1turn)}}@keyframes spinner-border{to{transform:rotate(1turn)}}.spinner-border{-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite;border:.25em solid;border-radius:50%;border-right:.25em solid transparent;display:inline-block;height:2rem;vertical-align:text-bottom;width:2rem}.spinner-border-sm{border-width:.2em;height:1rem;width:1rem}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite;background-color:currentColor;border-radius:50%;display:inline-block;height:2rem;opacity:0;vertical-align:text-bottom;width:2rem}.spinner-grow-sm{height:1rem;width:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#adadff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#7a7aff!important}.bg-secondary{background-color:#494444!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#2f2b2b!important}.bg-success{background-color:#1f9d55!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#17723e!important}.bg-info{background-color:#1c3d5a!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#102333!important}.bg-warning{background-color:#b08d2f!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#886d24!important}.bg-danger{background-color:#aa2e28!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#81231e!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#494444!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#2f2b2b!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #303030!important}.border-top{border-top:1px solid #303030!important}.border-right{border-right:1px solid #303030!important}.border-bottom{border-bottom:1px solid #303030!important}.border-left{border-left:1px solid #303030!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#adadff!important}.border-secondary{border-color:#494444!important}.border-success{border-color:#1f9d55!important}.border-info{border-color:#1c3d5a!important}.border-warning{border-color:#b08d2f!important}.border-danger{border-color:#aa2e28!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#494444!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important}.rounded-right,.rounded-top{border-top-right-radius:.25rem!important}.rounded-bottom,.rounded-right{border-bottom-right-radius:.25rem!important}.rounded-bottom,.rounded-left{border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix:after{clear:both;content:"";display:block}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}@media (min-width:2px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}}@media (min-width:8px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}}@media (min-width:9px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}}@media (min-width:10px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}}.embed-responsive{display:block;overflow:hidden;padding:0;position:relative;width:100%}.embed-responsive:before{content:"";display:block}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{border:0;bottom:0;height:100%;left:0;position:absolute;top:0;width:100%}.embed-responsive-21by9:before{padding-top:42.8571428571%}.embed-responsive-16by9:before{padding-top:56.25%}.embed-responsive-4by3:before{padding-top:75%}.embed-responsive-1by1:before{padding-top:100%}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-fill{flex:1 1 auto!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}@media (min-width:2px){.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}}@media (min-width:8px){.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}}@media (min-width:9px){.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}}@media (min-width:10px){.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:2px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:8px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:9px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:10px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;-ms-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{top:0}.fixed-bottom,.fixed-top{left:0;position:fixed;right:0;z-index:1030}.fixed-bottom{bottom:0}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{clip:rect(0,0,0,0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;overflow:visible;position:static;white-space:normal;width:auto}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:2px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:8px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:9px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:10px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.stretched-link:after{background-color:transparent;bottom:0;content:"";left:0;pointer-events:auto;position:absolute;right:0;top:0;z-index:1}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:2px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:8px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:9px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:10px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#adadff!important}a.text-primary:focus,a.text-primary:hover{color:#6161ff!important}.text-secondary{color:#494444!important}a.text-secondary:focus,a.text-secondary:hover{color:#211f1f!important}.text-success{color:#1f9d55!important}a.text-success:focus,a.text-success:hover{color:#125d32!important}.text-info{color:#1c3d5a!important}a.text-info:focus,a.text-info:hover{color:#0a1520!important}.text-warning{color:#b08d2f!important}a.text-warning:focus,a.text-warning:hover{color:#745d1f!important}.text-danger{color:#aa2e28!important}a.text-danger:focus,a.text-danger:hover{color:#6c1d19!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#494444!important}a.text-dark:focus,a.text-dark:hover{color:#211f1f!important}.text-body{color:#e2edf4!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:hsla(0,0%,100%,.5)!important}.text-hide{background-color:transparent;border:0;color:transparent;font:0/0 a;text-shadow:none}.text-decoration-none{text-decoration:none!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,:after,:before{box-shadow:none!important;text-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]:after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}.container,body{min-width:9px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#343434}.table .thead-dark th{border-color:#343434;color:inherit}}body{padding-bottom:20px}.container{width:1140px}html{min-width:1140px}[v-cloak]{display:none}svg.icon{height:1rem;width:1rem}.header{border-bottom:1px solid #343434}.header svg.logo{height:2rem;width:2rem}.sidebar .nav-item a{color:#6e6b6b;padding:.5rem 0}.sidebar .nav-item a svg{fill:#9f9898;height:1rem;margin-right:15px;width:1rem}.sidebar .nav-item a.active{color:#adadff}.sidebar .nav-item a.active svg{fill:#adadff}.card{border:none;box-shadow:0 2px 3px #1c1c1c}.card .bottom-radius{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.card .card-header{background-color:#120f12;border-bottom:none;padding-bottom:.7rem;padding-top:.7rem}.card .card-header .btn-group .btn{padding:.2rem .5rem}.card .card-header h5{margin:0}.card .table td,.card .table th{padding:.75rem 1.25rem}.card .table.table-sm td,.card .table.table-sm th{padding:1rem 1.25rem}.card .table th{background-color:#181818;border-bottom:0;font-weight:400;padding:.5rem 1.25rem}.card .table:not(.table-borderless) td{border-top:1px solid #343434}.card .table.penultimate-column-right td:nth-last-child(2),.card .table.penultimate-column-right th:nth-last-child(2){text-align:right}.card .table td.table-fit,.card .table th.table-fit{white-space:nowrap;width:1%}.fill-text-color{fill:#e2edf4}.fill-danger{fill:#aa2e28}.fill-warning{fill:#b08d2f}.fill-info{fill:#1c3d5a}.fill-success{fill:#1f9d55}.fill-primary{fill:#adadff}button:hover .fill-primary{fill:#fff}.btn-outline-primary.active .fill-primary{fill:#1c1c1c}.btn-outline-primary:not(:disabled):not(.disabled).active:focus{box-shadow:none!important}.control-action svg{fill:#ccd2df;height:1.2rem;width:1.2rem}.control-action svg:hover{fill:#adadff}.info-icon{fill:#ccd2df}.paginator .btn{color:#9ea7ac;text-decoration:none}.paginator .btn:hover{color:#adadff}@-webkit-keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.spin{-webkit-animation:spin 2s linear infinite;animation:spin 2s linear infinite}.card .nav-pills .nav-link.active{background:none;border-bottom:2px solid #adadff;color:#adadff}.card .nav-pills .nav-link{border-radius:0;color:#e2edf4;font-size:.9rem;padding:.75rem 1.25rem}.list-enter-active:not(.dontanimate){transition:background 1s linear}.list-enter:not(.dontanimate),.list-leave-to:not(.dontanimate){background:#505e4a}.card table td{vertical-align:middle!important}.card-bg-secondary,.code-bg{background:#262525}.disabled-watcher{background:#aa2e28;color:#fff;padding:.75rem}.badge-sm{font-size:.75rem} + */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#4b5563;--gray-dark:#1f2937;--primary:#8b5cf6;--secondary:#6b7280;--success:#10b981;--info:#3b82f6;--warning:#f59e0b;--danger:#ef4444;--light:#f3f4f6;--dark:#1f2937;--breakpoint-xs:0;--breakpoint-sm:2px;--breakpoint-md:8px;--breakpoint-lg:9px;--breakpoint-xl:10px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,:after,:before{box-sizing:border-box}html{-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0);font-family:sans-serif;line-height:1.15}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{background-color:#111827;color:#f3f4f6;font-family:Figtree,sans-serif;font-size:1rem;font-weight:400;line-height:1.5;margin:0;text-align:left}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;margin-top:0}p{margin-bottom:1rem;margin-top:0}abbr[data-original-title],abbr[title]{border-bottom:0;cursor:help;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{font-style:normal;line-height:inherit}address,dl,ol,ul{margin-bottom:1rem}dl,ol,ul{margin-top:0}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:600}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{background-color:transparent;color:#a78bfa;text-decoration:none}a:hover{color:#c4b5fd;text-decoration:underline}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}pre{-ms-overflow-style:scrollbar;margin-bottom:1rem;margin-top:0;overflow:auto}figure{margin:0 0 1rem}img{border-style:none}img,svg{vertical-align:middle}svg{overflow:hidden}table{border-collapse:collapse}caption{caption-side:bottom;color:#9ca3af;padding-bottom:.75rem;padding-top:.75rem;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit;margin:0}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{border:0;margin:0;min-width:0;padding:0}legend{color:inherit;display:block;font-size:1.5rem;line-height:inherit;margin-bottom:.5rem;max-width:100%;padding:0;white-space:normal;width:100%}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:none;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}output{display:inline-block}summary{cursor:pointer;display:list-item}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-weight:500;line-height:1.2;margin-bottom:.5rem}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem}.display-1,.display-2{font-weight:300;line-height:1.2}.display-2{font-size:5.5rem}.display-3{font-size:4.5rem}.display-3,.display-4{font-weight:300;line-height:1.2}.display-4{font-size:3.5rem}hr{border:0;border-top:1px solid rgba(0,0,0,.1);margin-bottom:1rem;margin-top:1rem}.small,small{font-size:.875em;font-weight:400}.mark,mark{background-color:#fcf8e3;padding:.2em}.list-inline,.list-unstyled{list-style:none;padding-left:0}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{font-size:1.25rem;margin-bottom:1rem}.blockquote-footer{color:#4b5563;display:block;font-size:.875em}.blockquote-footer:before{content:"— "}.img-fluid,.img-thumbnail{height:auto;max-width:100%}.img-thumbnail{background-color:#111827;border:1px solid #d1d5db;border-radius:.25rem;padding:.25rem}.figure{display:inline-block}.figure-img{line-height:1;margin-bottom:.5rem}.figure-caption{color:#4b5563;font-size:90%}code{word-wrap:break-word;color:#e83e8c;font-size:87.5%}a>code{color:inherit}kbd{background-color:#111827;border-radius:.2rem;color:#fff;font-size:87.5%;padding:.2rem .4rem}kbd kbd{font-size:100%;font-weight:600;padding:0}pre{color:#111827;display:block;font-size:87.5%}pre code{color:inherit;font-size:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px;width:100%}@media (min-width:2px){.container,.container-sm{max-width:1137px}}@media (min-width:8px){.container,.container-md,.container-sm{max-width:1138px}}@media (min-width:9px){.container,.container-lg,.container-md,.container-sm{max-width:1139px}}@media (min-width:10px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}.row{display:flex;flex-wrap:wrap;margin-left:-15px;margin-right:-15px}.no-gutters{margin-left:0;margin-right:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-left:0;padding-right:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{padding-left:15px;padding-right:15px;position:relative;width:100%}.col{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-1>*{flex:0 0 100%;max-width:100%}.row-cols-2>*{flex:0 0 50%;max-width:50%}.row-cols-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-4>*{flex:0 0 25%;max-width:25%}.row-cols-5>*{flex:0 0 20%;max-width:20%}.row-cols-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-auto{flex:0 0 auto;max-width:100%;width:auto}.col-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-12{flex:0 0 100%;max-width:100%}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}@media (min-width:2px){.col-sm{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-sm-1>*{flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-auto{flex:0 0 auto;max-width:100%;width:auto}.col-sm-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-sm-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-sm-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-sm-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-sm-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}}@media (min-width:8px){.col-md{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-md-1>*{flex:0 0 100%;max-width:100%}.row-cols-md-2>*{flex:0 0 50%;max-width:50%}.row-cols-md-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-md-4>*{flex:0 0 25%;max-width:25%}.row-cols-md-5>*{flex:0 0 20%;max-width:20%}.row-cols-md-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-auto{flex:0 0 auto;max-width:100%;width:auto}.col-md-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-md-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-md-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-md-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-md-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}}@media (min-width:9px){.col-lg{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-lg-1>*{flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-auto{flex:0 0 auto;max-width:100%;width:auto}.col-lg-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-lg-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-lg-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-lg-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-lg-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}}@media (min-width:10px){.col-xl{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-xl-1>*{flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-auto{flex:0 0 auto;max-width:100%;width:auto}.col-xl-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-xl-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-xl-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-xl-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-xl-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}}.table{color:#f3f4f6;margin-bottom:1rem;width:100%}.table td,.table th{border-top:1px solid #374151;padding:.75rem;vertical-align:top}.table thead th{border-bottom:2px solid #374151;vertical-align:bottom}.table tbody+tbody{border-top:2px solid #374151}.table-sm td,.table-sm th{padding:.3rem}.table-bordered,.table-bordered td,.table-bordered th{border:1px solid #374151}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{background-color:#374151;color:#f3f4f6}.table-primary,.table-primary>td,.table-primary>th{background-color:#dfd1fc}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#c3aafa}.table-hover .table-primary:hover,.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#ceb9fa}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b2b6bd}.table-hover .table-secondary:hover,.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#bcebdc}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#83dbbd}.table-hover .table-success:hover,.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#a8e5d2}.table-info,.table-info>td,.table-info>th{background-color:#c8dcfc}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#99befa}.table-hover .table-info:hover,.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#b0cdfb}.table-warning,.table-warning>td,.table-warning>th{background-color:#fce4bb}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#facd80}.table-hover .table-warning:hover,.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#fbdaa3}.table-danger,.table-danger>td,.table-danger>th{background-color:#fbcbcb}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#f79e9e}.table-hover .table-danger:hover,.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f9b3b3}.table-light,.table-light>td,.table-light>th{background-color:#fcfcfc}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#f9f9fa}.table-hover .table-light:hover,.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#efefef}.table-dark,.table-dark>td,.table-dark>th{background-color:#c0c3c7}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#8b9097}.table-hover .table-dark:hover,.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b3b6bb}.table-active,.table-active>td,.table-active>th{background-color:#374151}.table-hover .table-active:hover,.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:#2d3542}.table .thead-dark th{background-color:#1f2937;border-color:#2d3b4f;color:#fff}.table .thead-light th{background-color:#e5e7eb;border-color:#374151;color:#374151}.table-dark{background-color:#1f2937;color:#fff}.table-dark td,.table-dark th,.table-dark thead th{border-color:#2d3b4f}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:hsla(0,0%,100%,.05)}.table-dark.table-hover tbody tr:hover{background-color:hsla(0,0%,100%,.075);color:#fff}@media (max-width:1.98px){.table-responsive-sm{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:7.98px){.table-responsive-md{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-md>.table-bordered{border:0}}@media (max-width:8.98px){.table-responsive-lg{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:9.98px){.table-responsive-xl{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive>.table-bordered{border:0}.form-control{background-clip:padding-box;background-color:#1f2937;border:1px solid #4b5563;border-radius:.25rem;color:#e5e7eb;display:block;font-size:1rem;font-weight:400;height:calc(1.5em + .75rem + 2px);line-height:1.5;padding:.375rem .75rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:100%}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{background-color:#1f2937;border-color:#e1d5fd;box-shadow:0 0 0 .2rem rgba(139,92,246,.25);color:#e5e7eb;outline:0}.form-control::-moz-placeholder{color:#4b5563;opacity:1}.form-control::placeholder{color:#4b5563;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e5e7eb;opacity:1}input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #e5e7eb}select.form-control:focus::-ms-value{background-color:#1f2937;color:#e5e7eb}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{font-size:inherit;line-height:1.5;margin-bottom:0;padding-bottom:calc(.375rem + 1px);padding-top:calc(.375rem + 1px)}.col-form-label-lg{font-size:1.25rem;line-height:1.5;padding-bottom:calc(.5rem + 1px);padding-top:calc(.5rem + 1px)}.col-form-label-sm{font-size:.875rem;line-height:1.5;padding-bottom:calc(.25rem + 1px);padding-top:calc(.25rem + 1px)}.form-control-plaintext{background-color:transparent;border:solid transparent;border-width:1px 0;color:#f3f4f6;display:block;font-size:1rem;line-height:1.5;margin-bottom:0;padding:.375rem 0;width:100%}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-left:0;padding-right:0}.form-control-sm{border-radius:.2rem;font-size:.875rem;height:calc(1.5em + .5rem + 2px);line-height:1.5;padding:.25rem .5rem}.form-control-lg{border-radius:6px;font-size:1.25rem;height:calc(1.5em + 1rem + 2px);line-height:1.5;padding:.5rem 1rem}select.form-control[multiple],select.form-control[size],textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:flex;flex-wrap:wrap;margin-left:-5px;margin-right:-5px}.form-row>.col,.form-row>[class*=col-]{padding-left:5px;padding-right:5px}.form-check{display:block;padding-left:1.25rem;position:relative}.form-check-input{margin-left:-1.25rem;margin-top:.3rem;position:absolute}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#9ca3af}.form-check-label{margin-bottom:0}.form-check-inline{align-items:center;display:inline-flex;margin-right:.75rem;padding-left:0}.form-check-inline .form-check-input{margin-left:0;margin-right:.3125rem;margin-top:0;position:static}.valid-feedback{color:#10b981;display:none;font-size:.875em;margin-top:.25rem;width:100%}.valid-tooltip{background-color:rgba(16,185,129,.9);border-radius:.25rem;color:#fff;display:none;font-size:.875rem;left:0;line-height:1.5;margin-top:.1rem;max-width:100%;padding:.25rem .5rem;position:absolute;top:100%;z-index:5}.form-row>.col>.valid-tooltip,.form-row>[class*=col-]>.valid-tooltip{left:5px}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2310b981' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");background-position:right calc(.375em + .1875rem) center;background-repeat:no-repeat;background-size:calc(.75em + .375rem) calc(.75em + .375rem);border-color:#10b981;padding-right:calc(1.5em + .75rem)!important}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#10b981;box-shadow:0 0 0 .2rem rgba(16,185,129,.25)}.was-validated select.form-control:valid,select.form-control.is-valid{background-position:right 1.5rem center;padding-right:3rem!important}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem);padding-right:calc(1.5em + .75rem)}.custom-select.is-valid,.was-validated .custom-select:valid{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%231f2937' d='M2 0 0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat,#1f2937 url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2310b981' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat;border-color:#10b981;padding-right:calc(.75em + 2.3125rem)!important}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#10b981;box-shadow:0 0 0 .2rem rgba(16,185,129,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#10b981}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#10b981}.custom-control-input.is-valid~.custom-control-label:before,.was-validated .custom-control-input:valid~.custom-control-label:before{border-color:#10b981}.custom-control-input.is-valid:checked~.custom-control-label:before,.was-validated .custom-control-input:valid:checked~.custom-control-label:before{background-color:#14e8a2;border-color:#14e8a2}.custom-control-input.is-valid:focus~.custom-control-label:before,.was-validated .custom-control-input:valid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(16,185,129,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label:before{border-color:#10b981}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#10b981}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#10b981;box-shadow:0 0 0 .2rem rgba(16,185,129,.25)}.invalid-feedback{color:#ef4444;display:none;font-size:.875em;margin-top:.25rem;width:100%}.invalid-tooltip{background-color:rgba(239,68,68,.9);border-radius:.25rem;color:#fff;display:none;font-size:.875rem;left:0;line-height:1.5;margin-top:.1rem;max-width:100%;padding:.25rem .5rem;position:absolute;top:100%;z-index:5}.form-row>.col>.invalid-tooltip,.form-row>[class*=col-]>.invalid-tooltip{left:5px}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ef4444'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23ef4444' stroke='none'/%3E%3C/svg%3E");background-position:right calc(.375em + .1875rem) center;background-repeat:no-repeat;background-size:calc(.75em + .375rem) calc(.75em + .375rem);border-color:#ef4444;padding-right:calc(1.5em + .75rem)!important}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#ef4444;box-shadow:0 0 0 .2rem rgba(239,68,68,.25)}.was-validated select.form-control:invalid,select.form-control.is-invalid{background-position:right 1.5rem center;padding-right:3rem!important}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem);padding-right:calc(1.5em + .75rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%231f2937' d='M2 0 0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat,#1f2937 url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ef4444'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23ef4444' stroke='none'/%3E%3C/svg%3E") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat;border-color:#ef4444;padding-right:calc(.75em + 2.3125rem)!important}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#ef4444;box-shadow:0 0 0 .2rem rgba(239,68,68,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#ef4444}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#ef4444}.custom-control-input.is-invalid~.custom-control-label:before,.was-validated .custom-control-input:invalid~.custom-control-label:before{border-color:#ef4444}.custom-control-input.is-invalid:checked~.custom-control-label:before,.was-validated .custom-control-input:invalid:checked~.custom-control-label:before{background-color:#f37373;border-color:#f37373}.custom-control-input.is-invalid:focus~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(239,68,68,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label:before{border-color:#ef4444}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#ef4444}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#ef4444;box-shadow:0 0 0 .2rem rgba(239,68,68,.25)}.form-inline{align-items:center;display:flex;flex-flow:row wrap}.form-inline .form-check{width:100%}@media (min-width:2px){.form-inline label{justify-content:center}.form-inline .form-group,.form-inline label{align-items:center;display:flex;margin-bottom:0}.form-inline .form-group{flex:0 0 auto;flex-flow:row wrap}.form-inline .form-control{display:inline-block;vertical-align:middle;width:auto}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{align-items:center;display:flex;justify-content:center;padding-left:0;width:auto}.form-inline .form-check-input{flex-shrink:0;margin-left:0;margin-right:.25rem;margin-top:0;position:relative}.form-inline .custom-control{align-items:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{background-color:transparent;border:1px solid transparent;border-radius:.25rem;color:#f3f4f6;display:inline-block;font-size:1rem;font-weight:400;line-height:1.5;padding:.375rem .75rem;text-align:center;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#f3f4f6;text-decoration:none}.btn.focus,.btn:focus{box-shadow:0 0 0 .2rem rgba(139,92,246,.25);outline:0}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{background-color:#8b5cf6;border-color:#8b5cf6;color:#fff}.btn-primary.focus,.btn-primary:focus,.btn-primary:hover{background-color:#7138f4;border-color:#692cf3;color:#fff}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 .2rem rgba(156,116,247,.5)}.btn-primary.disabled,.btn-primary:disabled{background-color:#8b5cf6;border-color:#8b5cf6;color:#fff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{background-color:#692cf3;border-color:#6020f3;color:#fff}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(156,116,247,.5)}.btn-secondary{background-color:#6b7280;border-color:#6b7280;color:#fff}.btn-secondary.focus,.btn-secondary:focus,.btn-secondary:hover{background-color:#5a5f6b;border-color:#545964;color:#fff}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 .2rem hsla(220,8%,54%,.5)}.btn-secondary.disabled,.btn-secondary:disabled{background-color:#6b7280;border-color:#6b7280;color:#fff}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{background-color:#545964;border-color:#4e535d;color:#fff}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem hsla(220,8%,54%,.5)}.btn-success{background-color:#10b981;border-color:#10b981;color:#fff}.btn-success.focus,.btn-success:focus,.btn-success:hover{background-color:#0d9668;border-color:#0c8a60;color:#fff}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 .2rem rgba(52,196,148,.5)}.btn-success.disabled,.btn-success:disabled{background-color:#10b981;border-color:#10b981;color:#fff}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{background-color:#0c8a60;border-color:#0b7e58;color:#fff}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,196,148,.5)}.btn-info{background-color:#3b82f6;border-color:#3b82f6;color:#fff}.btn-info.focus,.btn-info:focus,.btn-info:hover{background-color:#166bf4;border-color:#0b63f3;color:#fff}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 .2rem rgba(88,149,247,.5)}.btn-info.disabled,.btn-info:disabled{background-color:#3b82f6;border-color:#3b82f6;color:#fff}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{background-color:#0b63f3;border-color:#0b5ee7;color:#fff}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(88,149,247,.5)}.btn-warning{background-color:#f59e0b;border-color:#f59e0b;color:#111827}.btn-warning.focus,.btn-warning:focus,.btn-warning:hover{background-color:#d18709;border-color:#c57f08;color:#fff}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 .2rem rgba(211,138,15,.5)}.btn-warning.disabled,.btn-warning:disabled{background-color:#f59e0b;border-color:#f59e0b;color:#111827}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{background-color:#c57f08;border-color:#b97708;color:#fff}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(211,138,15,.5)}.btn-danger{background-color:#ef4444;border-color:#ef4444;color:#fff}.btn-danger.focus,.btn-danger:focus,.btn-danger:hover{background-color:#ec2121;border-color:#eb1515;color:#fff}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 .2rem rgba(241,96,96,.5)}.btn-danger.disabled,.btn-danger:disabled{background-color:#ef4444;border-color:#ef4444;color:#fff}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{background-color:#eb1515;border-color:#e01313;color:#fff}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(241,96,96,.5)}.btn-light{background-color:#f3f4f6;border-color:#f3f4f6;color:#111827}.btn-light.focus,.btn-light:focus,.btn-light:hover{background-color:#dde0e6;border-color:#d6d9e0;color:#111827}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 .2rem hsla(220,7%,83%,.5)}.btn-light.disabled,.btn-light:disabled{background-color:#f3f4f6;border-color:#f3f4f6;color:#111827}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{background-color:#d6d9e0;border-color:#cfd3db;color:#111827}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem hsla(220,7%,83%,.5)}.btn-dark{background-color:#1f2937;border-color:#1f2937;color:#fff}.btn-dark.focus,.btn-dark:focus,.btn-dark:hover{background-color:#11171f;border-color:#0d1116;color:#fff}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 .2rem rgba(65,73,85,.5)}.btn-dark.disabled,.btn-dark:disabled{background-color:#1f2937;border-color:#1f2937;color:#fff}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{background-color:#0d1116;border-color:#080b0e;color:#fff}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(65,73,85,.5)}.btn-outline-primary{border-color:#8b5cf6;color:#8b5cf6}.btn-outline-primary:hover{background-color:#8b5cf6;border-color:#8b5cf6;color:#fff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(139,92,246,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{background-color:transparent;color:#8b5cf6}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{background-color:#8b5cf6;border-color:#8b5cf6;color:#fff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(139,92,246,.5)}.btn-outline-secondary{border-color:#6b7280;color:#6b7280}.btn-outline-secondary:hover{background-color:#6b7280;border-color:#6b7280;color:#fff}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem hsla(220,9%,46%,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{background-color:transparent;color:#6b7280}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{background-color:#6b7280;border-color:#6b7280;color:#fff}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem hsla(220,9%,46%,.5)}.btn-outline-success{border-color:#10b981;color:#10b981}.btn-outline-success:hover{background-color:#10b981;border-color:#10b981;color:#fff}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(16,185,129,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{background-color:transparent;color:#10b981}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{background-color:#10b981;border-color:#10b981;color:#fff}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(16,185,129,.5)}.btn-outline-info{border-color:#3b82f6;color:#3b82f6}.btn-outline-info:hover{background-color:#3b82f6;border-color:#3b82f6;color:#fff}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(59,130,246,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{background-color:transparent;color:#3b82f6}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{background-color:#3b82f6;border-color:#3b82f6;color:#fff}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(59,130,246,.5)}.btn-outline-warning{border-color:#f59e0b;color:#f59e0b}.btn-outline-warning:hover{background-color:#f59e0b;border-color:#f59e0b;color:#111827}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(245,158,11,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{background-color:transparent;color:#f59e0b}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{background-color:#f59e0b;border-color:#f59e0b;color:#111827}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(245,158,11,.5)}.btn-outline-danger{border-color:#ef4444;color:#ef4444}.btn-outline-danger:hover{background-color:#ef4444;border-color:#ef4444;color:#fff}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(239,68,68,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{background-color:transparent;color:#ef4444}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{background-color:#ef4444;border-color:#ef4444;color:#fff}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(239,68,68,.5)}.btn-outline-light{border-color:#f3f4f6;color:#f3f4f6}.btn-outline-light:hover{background-color:#f3f4f6;border-color:#f3f4f6;color:#111827}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(243,244,246,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{background-color:transparent;color:#f3f4f6}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{background-color:#f3f4f6;border-color:#f3f4f6;color:#111827}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(243,244,246,.5)}.btn-outline-dark{border-color:#1f2937;color:#1f2937}.btn-outline-dark:hover{background-color:#1f2937;border-color:#1f2937;color:#fff}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(31,41,55,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{background-color:transparent;color:#1f2937}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{background-color:#1f2937;border-color:#1f2937;color:#fff}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(31,41,55,.5)}.btn-link{color:#a78bfa;font-weight:400;text-decoration:none}.btn-link:hover{color:#c4b5fd}.btn-link.focus,.btn-link:focus,.btn-link:hover{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#4b5563;pointer-events:none}.btn-group-lg>.btn,.btn-lg{border-radius:6px;font-size:1.25rem;line-height:1.5;padding:.5rem 1rem}.btn-group-sm>.btn,.btn-sm{border-radius:.2rem;font-size:.875rem;line-height:1.5;padding:.25rem .5rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;position:relative;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.width{height:auto;transition:width .35s ease;width:0}@media (prefers-reduced-motion:reduce){.collapsing.width{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:after{border-bottom:0;border-left:.3em solid transparent;border-right:.3em solid transparent;border-top:.3em solid;content:"";display:inline-block;margin-left:.255em;vertical-align:.255em}.dropdown-toggle:empty:after{margin-left:0}.dropdown-menu{background-clip:padding-box;background-color:#374151;border:1px solid rgba(0,0,0,.15);border-radius:.25rem;color:#f3f4f6;display:none;float:left;font-size:1rem;left:0;list-style:none;margin:.125rem 0 0;min-width:10rem;padding:.5rem 0;position:absolute;text-align:left;top:100%;z-index:1000}.dropdown-menu-left{left:0;right:auto}.dropdown-menu-right{left:auto;right:0}@media (min-width:2px){.dropdown-menu-sm-left{left:0;right:auto}.dropdown-menu-sm-right{left:auto;right:0}}@media (min-width:8px){.dropdown-menu-md-left{left:0;right:auto}.dropdown-menu-md-right{left:auto;right:0}}@media (min-width:9px){.dropdown-menu-lg-left{left:0;right:auto}.dropdown-menu-lg-right{left:auto;right:0}}@media (min-width:10px){.dropdown-menu-xl-left{left:0;right:auto}.dropdown-menu-xl-right{left:auto;right:0}}.dropup .dropdown-menu{bottom:100%;margin-bottom:.125rem;margin-top:0;top:auto}.dropup .dropdown-toggle:after{border-bottom:.3em solid;border-left:.3em solid transparent;border-right:.3em solid transparent;border-top:0;content:"";display:inline-block;margin-left:.255em;vertical-align:.255em}.dropup .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-menu{left:100%;margin-left:.125rem;margin-top:0;right:auto;top:0}.dropright .dropdown-toggle:after{border-bottom:.3em solid transparent;border-left:.3em solid;border-right:0;border-top:.3em solid transparent;content:"";display:inline-block;margin-left:.255em;vertical-align:.255em}.dropright .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-toggle:after{vertical-align:0}.dropleft .dropdown-menu{left:auto;margin-right:.125rem;margin-top:0;right:100%;top:0}.dropleft .dropdown-toggle:after{content:"";display:inline-block;display:none;margin-left:.255em;vertical-align:.255em}.dropleft .dropdown-toggle:before{border-bottom:.3em solid transparent;border-right:.3em solid;border-top:.3em solid transparent;content:"";display:inline-block;margin-right:.255em;vertical-align:.255em}.dropleft .dropdown-toggle:empty:after{margin-left:0}.dropleft .dropdown-toggle:before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{bottom:auto;right:auto}.dropdown-divider{border-top:1px solid #e5e7eb;height:0;margin:.5rem 0;overflow:hidden}.dropdown-item{background-color:transparent;border:0;clear:both;color:#fff;display:block;font-weight:400;padding:.25rem 1.5rem;text-align:inherit;white-space:nowrap;width:100%}.dropdown-item:focus,.dropdown-item:hover{background-color:#e5e7eb;color:#090d15;text-decoration:none}.dropdown-item.active,.dropdown-item:active{background-color:#8b5cf6;color:#fff;text-decoration:none}.dropdown-item.disabled,.dropdown-item:disabled{background-color:transparent;color:#6b7280;pointer-events:none}.dropdown-menu.show{display:block}.dropdown-header{color:#4b5563;display:block;font-size:.875rem;margin-bottom:0;padding:.5rem 1.5rem;white-space:nowrap}.dropdown-item-text{color:#fff;display:block;padding:.25rem 1.5rem}.btn-group,.btn-group-vertical{display:inline-flex;position:relative;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{flex:1 1 auto;position:relative}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.dropdown-toggle-split{padding-left:.5625rem;padding-right:.5625rem}.dropdown-toggle-split:after,.dropright .dropdown-toggle-split:after,.dropup .dropdown-toggle-split:after{margin-left:0}.dropleft .dropdown-toggle-split:before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-left:.375rem;padding-right:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-left:.75rem;padding-right:.75rem}.btn-group-vertical{align-items:flex-start;flex-direction:column;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-left-radius:0;border-bottom-right-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{clip:rect(0,0,0,0);pointer-events:none;position:absolute}.input-group{align-items:stretch;display:flex;flex-wrap:wrap;position:relative;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{flex:1 1 auto;margin-bottom:0;min-width:0;position:relative;width:1%}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.input-group>.custom-file{align-items:center;display:flex}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label:after{border-bottom-right-radius:0;border-top-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-bottom-left-radius:0;border-top-left-radius:0}.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label,.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label:after,.input-group.has-validation>.custom-select:nth-last-child(n+3),.input-group.has-validation>.form-control:nth-last-child(n+3),.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label,.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label:after,.input-group:not(.has-validation)>.custom-select:not(:last-child),.input-group:not(.has-validation)>.form-control:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.input-group-append,.input-group-prepend{display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{align-items:center;background-color:#e5e7eb;border:1px solid #4b5563;border-radius:.25rem;color:#e5e7eb;display:flex;font-size:1rem;font-weight:400;line-height:1.5;margin-bottom:0;padding:.375rem .75rem;text-align:center;white-space:nowrap}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{border-radius:6px;font-size:1.25rem;line-height:1.5;padding:.5rem 1rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{border-radius:.2rem;font-size:.875rem;line-height:1.5;padding:.25rem .5rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-bottom-right-radius:0;border-top-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-bottom-left-radius:0;border-top-left-radius:0}.custom-control{display:block;min-height:1.5rem;padding-left:1.5rem;position:relative;-webkit-print-color-adjust:exact;print-color-adjust:exact;z-index:1}.custom-control-inline{display:inline-flex;margin-right:1rem}.custom-control-input{height:1.25rem;left:0;opacity:0;position:absolute;width:1rem;z-index:-1}.custom-control-input:checked~.custom-control-label:before{background-color:#8b5cf6;border-color:#8b5cf6;color:#fff}.custom-control-input:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(139,92,246,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label:before{border-color:#e1d5fd}.custom-control-input:not(:disabled):active~.custom-control-label:before{background-color:#fff;border-color:#fff;color:#fff}.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label{color:#4b5563}.custom-control-input:disabled~.custom-control-label:before,.custom-control-input[disabled]~.custom-control-label:before{background-color:#e5e7eb}.custom-control-label{margin-bottom:0;position:relative;vertical-align:top}.custom-control-label:before{background-color:#1f2937;border:1px solid #6b7280;pointer-events:none}.custom-control-label:after,.custom-control-label:before{content:"";display:block;height:1rem;left:-1.5rem;position:absolute;top:.25rem;width:1rem}.custom-control-label:after{background:50%/50% 50% no-repeat}.custom-checkbox .custom-control-label:before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%23fff' d='m6.564.75-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:before{background-color:#8b5cf6;border-color:#8b5cf6}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(139,92,246,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label:before{background-color:rgba(139,92,246,.5)}.custom-radio .custom-control-label:before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(139,92,246,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label:before{border-radius:.5rem;left:-2.25rem;pointer-events:all;width:1.75rem}.custom-switch .custom-control-label:after{background-color:#6b7280;border-radius:.5rem;height:calc(1rem - 4px);left:calc(-2.25rem + 2px);top:calc(.25rem + 2px);transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:calc(1rem - 4px)}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label:after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label:after{background-color:#1f2937;transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(139,92,246,.5)}.custom-select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#1f2937 url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%231f2937' d='M2 0 0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat;border:1px solid #4b5563;border-radius:.25rem;color:#e5e7eb;display:inline-block;font-size:1rem;font-weight:400;height:calc(1.5em + .75rem + 2px);line-height:1.5;padding:.375rem 1.75rem .375rem .75rem;vertical-align:middle;width:100%}.custom-select:focus{border-color:#e1d5fd;box-shadow:0 0 0 .2rem rgba(139,92,246,.25);outline:0}.custom-select:focus::-ms-value{background-color:#1f2937;color:#e5e7eb}.custom-select[multiple],.custom-select[size]:not([size="1"]){background-image:none;height:auto;padding-right:.75rem}.custom-select:disabled{background-color:#e5e7eb;color:#4b5563}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #e5e7eb}.custom-select-sm{font-size:.875rem;height:calc(1.5em + .5rem + 2px);padding-bottom:.25rem;padding-left:.5rem;padding-top:.25rem}.custom-select-lg{font-size:1.25rem;height:calc(1.5em + 1rem + 2px);padding-bottom:.5rem;padding-left:1rem;padding-top:.5rem}.custom-file{display:inline-block;margin-bottom:0}.custom-file,.custom-file-input{height:calc(1.5em + .75rem + 2px);position:relative;width:100%}.custom-file-input{margin:0;opacity:0;overflow:hidden;z-index:2}.custom-file-input:focus~.custom-file-label{border-color:#e1d5fd;box-shadow:0 0 0 .2rem rgba(139,92,246,.25)}.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#e5e7eb}.custom-file-input:lang(en)~.custom-file-label:after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]:after{content:attr(data-browse)}.custom-file-label{background-color:#1f2937;border:1px solid #4b5563;border-radius:.25rem;font-weight:400;height:calc(1.5em + .75rem + 2px);left:0;overflow:hidden;z-index:1}.custom-file-label,.custom-file-label:after{color:#e5e7eb;line-height:1.5;padding:.375rem .75rem;position:absolute;right:0;top:0}.custom-file-label:after{background-color:#e5e7eb;border-left:inherit;border-radius:0 .25rem .25rem 0;bottom:0;content:"Browse";display:block;height:calc(1.5em + .75rem);z-index:3}.custom-range{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;height:1.4rem;padding:0;width:100%}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #111827,0 0 0 .2rem rgba(139,92,246,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #111827,0 0 0 .2rem rgba(139,92,246,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #111827,0 0 0 .2rem rgba(139,92,246,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;background-color:#8b5cf6;border:0;border-radius:1rem;height:1rem;margin-top:-.25rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:1rem}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#fff}.custom-range::-webkit-slider-runnable-track{background-color:#d1d5db;border-color:transparent;border-radius:1rem;color:transparent;cursor:pointer;height:.5rem;width:100%}.custom-range::-moz-range-thumb{-moz-appearance:none;appearance:none;background-color:#8b5cf6;border:0;border-radius:1rem;height:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:1rem}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#fff}.custom-range::-moz-range-track{background-color:#d1d5db;border-color:transparent;border-radius:1rem;color:transparent;cursor:pointer;height:.5rem;width:100%}.custom-range::-ms-thumb{appearance:none;background-color:#8b5cf6;border:0;border-radius:1rem;height:1rem;margin-left:.2rem;margin-right:.2rem;margin-top:0;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:1rem}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#fff}.custom-range::-ms-track{background-color:transparent;border-color:transparent;border-width:.5rem;color:transparent;cursor:pointer;height:.5rem;width:100%}.custom-range::-ms-fill-lower,.custom-range::-ms-fill-upper{background-color:#d1d5db;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px}.custom-range:disabled::-webkit-slider-thumb{background-color:#6b7280}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#6b7280}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#6b7280}.custom-control-label:before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label:before,.custom-file-label,.custom-select{transition:none}}.nav{display:flex;flex-wrap:wrap;list-style:none;margin-bottom:0;padding-left:0}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#4b5563;cursor:default;pointer-events:none}.nav-tabs{border-bottom:1px solid #d1d5db}.nav-tabs .nav-link{background-color:transparent;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem;margin-bottom:-1px}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e5e7eb #e5e7eb #d1d5db;isolation:isolate}.nav-tabs .nav-link.disabled{background-color:transparent;border-color:transparent;color:#4b5563}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{background-color:#111827;border-color:#d1d5db #d1d5db #111827;color:#374151}.nav-tabs .dropdown-menu{border-top-left-radius:0;border-top-right-radius:0;margin-top:-1px}.nav-pills .nav-link{background:none;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{background-color:#1f2937;color:#fff}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{padding:.5rem 1rem;position:relative}.navbar,.navbar .container,.navbar .container-fluid,.navbar .container-lg,.navbar .container-md,.navbar .container-sm,.navbar .container-xl{align-items:center;display:flex;flex-wrap:wrap;justify-content:space-between}.navbar-brand{display:inline-block;font-size:1.25rem;line-height:inherit;margin-right:1rem;padding-bottom:.3125rem;padding-top:.3125rem;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:flex;flex-direction:column;list-style:none;margin-bottom:0;padding-left:0}.navbar-nav .nav-link{padding-left:0;padding-right:0}.navbar-nav .dropdown-menu{float:none;position:static}.navbar-text{display:inline-block;padding-bottom:.5rem;padding-top:.5rem}.navbar-collapse{align-items:center;flex-basis:100%;flex-grow:1}.navbar-toggler{background-color:transparent;border:1px solid transparent;border-radius:.25rem;font-size:1.25rem;line-height:1;padding:.25rem .75rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{background:50%/100% 100% no-repeat;content:"";display:inline-block;height:1.5em;vertical-align:middle;width:1.5em}.navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media (max-width:1.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{padding-left:0;padding-right:0}}@media (min-width:2px){.navbar-expand-sm{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{flex-wrap:nowrap}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:7.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{padding-left:0;padding-right:0}}@media (min-width:8px){.navbar-expand-md{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{flex-wrap:nowrap}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:8.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{padding-left:0;padding-right:0}}@media (min-width:9px){.navbar-expand-lg{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{flex-wrap:nowrap}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:9.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{padding-left:0;padding-right:0}}@media (min-width:10px){.navbar-expand-xl{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{flex-wrap:nowrap}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{padding-left:0;padding-right:0}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{flex-wrap:nowrap}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand,.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{border-color:rgba(0,0,0,.1);color:rgba(0,0,0,.5)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand,.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:hsla(0,0%,100%,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:hsla(0,0%,100%,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{border-color:hsla(0,0%,100%,.1);color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-dark .navbar-text{color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{word-wrap:break-word;background-clip:border-box;background-color:#1f2937;border:1px solid rgba(0,0,0,.125);border-radius:6px;display:flex;flex-direction:column;min-width:0;position:relative}.card>hr{margin-left:0;margin-right:0}.card>.list-group{border-bottom:inherit;border-top:inherit}.card>.list-group:first-child{border-top-left-radius:5px;border-top-right-radius:5px;border-top-width:0}.card>.list-group:last-child{border-bottom-left-radius:5px;border-bottom-right-radius:5px;border-bottom-width:0}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem}.card-subtitle,.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{background-color:#374151;border-bottom:1px solid rgba(0,0,0,.125);margin-bottom:0;padding:.75rem 1.25rem}.card-header:first-child{border-radius:5px 5px 0 0}.card-footer{background-color:#374151;border-top:1px solid rgba(0,0,0,.125);padding:.75rem 1.25rem}.card-footer:last-child{border-radius:0 0 5px 5px}.card-header-tabs{border-bottom:0;margin-bottom:-.75rem}.card-header-pills,.card-header-tabs{margin-left:-.625rem;margin-right:-.625rem}.card-img-overlay{border-radius:5px;bottom:0;left:0;padding:1.25rem;position:absolute;right:0;top:0}.card-img,.card-img-bottom,.card-img-top{flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:5px;border-top-right-radius:5px}.card-img,.card-img-bottom{border-bottom-left-radius:5px;border-bottom-right-radius:5px}.card-deck .card{margin-bottom:15px}@media (min-width:2px){.card-deck{display:flex;flex-flow:row wrap;margin-left:-15px;margin-right:-15px}.card-deck .card{flex:1 0 0%;margin-bottom:0;margin-left:15px;margin-right:15px}}.card-group>.card{margin-bottom:15px}@media (min-width:2px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{border-left:0;margin-left:0}.card-group>.card:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:2px){.card-columns{-moz-column-count:3;column-count:3;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion{overflow-anchor:none}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-left-radius:0;border-bottom-right-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{background-color:#e5e7eb;border-radius:.25rem;display:flex;flex-wrap:wrap;list-style:none;margin-bottom:1rem;padding:.75rem 1rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item:before{color:#4b5563;content:"/";float:left;padding-right:.5rem}.breadcrumb-item+.breadcrumb-item:hover:before{text-decoration:underline;text-decoration:none}.breadcrumb-item.active{color:#4b5563}.pagination{border-radius:.25rem;display:flex;list-style:none;padding-left:0}.page-link{background-color:#fff;border:1px solid #d1d5db;color:#a78bfa;display:block;line-height:1.25;margin-left:-1px;padding:.5rem .75rem;position:relative}.page-link:hover{background-color:#e5e7eb;border-color:#d1d5db;color:#c4b5fd;text-decoration:none;z-index:2}.page-link:focus{box-shadow:0 0 0 .2rem rgba(139,92,246,.25);outline:0;z-index:3}.page-item:first-child .page-link{border-bottom-left-radius:.25rem;border-top-left-radius:.25rem;margin-left:0}.page-item:last-child .page-link{border-bottom-right-radius:.25rem;border-top-right-radius:.25rem}.page-item.active .page-link{background-color:#8b5cf6;border-color:#8b5cf6;color:#fff;z-index:3}.page-item.disabled .page-link{background-color:#fff;border-color:#d1d5db;color:#4b5563;cursor:auto;pointer-events:none}.pagination-lg .page-link{font-size:1.25rem;line-height:1.5;padding:.75rem 1.5rem}.pagination-lg .page-item:first-child .page-link{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg .page-item:last-child .page-link{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm .page-link{font-size:.875rem;line-height:1.5;padding:.25rem .5rem}.pagination-sm .page-item:first-child .page-link{border-bottom-left-radius:.2rem;border-top-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-bottom-right-radius:.2rem;border-top-right-radius:.2rem}.badge{border-radius:.25rem;display:inline-block;font-size:.875rem;font-weight:600;line-height:1;padding:.25em .4em;text-align:center;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;vertical-align:baseline;white-space:nowrap}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{border-radius:10rem;padding-left:.6em;padding-right:.6em}.badge-primary{background-color:#8b5cf6;color:#fff}a.badge-primary:focus,a.badge-primary:hover{background-color:#692cf3;color:#fff}a.badge-primary.focus,a.badge-primary:focus{box-shadow:0 0 0 .2rem rgba(139,92,246,.5);outline:0}.badge-secondary{background-color:#6b7280;color:#fff}a.badge-secondary:focus,a.badge-secondary:hover{background-color:#545964;color:#fff}a.badge-secondary.focus,a.badge-secondary:focus{box-shadow:0 0 0 .2rem hsla(220,9%,46%,.5);outline:0}.badge-success{background-color:#10b981}a.badge-success:focus,a.badge-success:hover{background-color:#0c8a60;color:#fff}a.badge-success.focus,a.badge-success:focus{box-shadow:0 0 0 .2rem rgba(16,185,129,.5);outline:0}.badge-info{background-color:#3b82f6}a.badge-info:focus,a.badge-info:hover{background-color:#0b63f3;color:#fff}a.badge-info.focus,a.badge-info:focus{box-shadow:0 0 0 .2rem rgba(59,130,246,.5);outline:0}.badge-warning{background-color:#f59e0b;color:#111827}a.badge-warning:focus,a.badge-warning:hover{background-color:#c57f08;color:#111827}a.badge-warning.focus,a.badge-warning:focus{box-shadow:0 0 0 .2rem rgba(245,158,11,.5);outline:0}.badge-danger{background-color:#ef4444}a.badge-danger:focus,a.badge-danger:hover{background-color:#eb1515;color:#fff}a.badge-danger.focus,a.badge-danger:focus{box-shadow:0 0 0 .2rem rgba(239,68,68,.5);outline:0}.badge-light{background-color:#f3f4f6;color:#111827}a.badge-light:focus,a.badge-light:hover{background-color:#d6d9e0;color:#111827}a.badge-light.focus,a.badge-light:focus{box-shadow:0 0 0 .2rem rgba(243,244,246,.5);outline:0}.badge-dark{background-color:#1f2937;color:#fff}a.badge-dark:focus,a.badge-dark:hover{background-color:#0d1116;color:#fff}a.badge-dark.focus,a.badge-dark:focus{box-shadow:0 0 0 .2rem rgba(31,41,55,.5);outline:0}.jumbotron{background-color:#e5e7eb;border-radius:6px;margin-bottom:2rem;padding:2rem 1rem}@media (min-width:2px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{border-radius:0;padding-left:0;padding-right:0}.alert{border:1px solid transparent;border-radius:.25rem;margin-bottom:1rem;padding:.75rem 1.25rem;position:relative}.alert-heading{color:inherit}.alert-link{font-weight:600}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{color:inherit;padding:.75rem 1.25rem;position:absolute;right:0;top:0;z-index:2}.alert-primary{background-color:#e8defd;border-color:#dfd1fc;color:#483080}.alert-primary hr{border-top-color:#ceb9fa}.alert-primary .alert-link{color:#33225b}.alert-secondary{background-color:#e1e3e6;border-color:#d6d8db;color:#383b43}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#212327}.alert-success{background-color:#cff1e6;border-color:#bcebdc;color:#086043}.alert-success hr{border-top-color:#a8e5d2}.alert-success .alert-link{color:#043122}.alert-info{background-color:#d8e6fd;border-color:#c8dcfc;color:#1f4480}.alert-info hr{border-top-color:#b0cdfb}.alert-info .alert-link{color:#152e57}.alert-warning{background-color:#fdecce;border-color:#fce4bb;color:#7f5206}.alert-warning hr{border-top-color:#fbdaa3}.alert-warning .alert-link{color:#4e3304}.alert-danger{background-color:#fcdada;border-color:#fbcbcb;color:#7c2323}.alert-danger hr{border-top-color:#f9b3b3}.alert-danger .alert-link{color:#541818}.alert-light{background-color:#fdfdfd;border-color:#fcfcfc;color:#7e7f80}.alert-light hr{border-top-color:#efefef}.alert-light .alert-link{color:#656666}.alert-dark{background-color:#d2d4d7;border-color:#c0c3c7;color:#10151d}.alert-dark hr{border-top-color:#b3b6bb}.alert-dark .alert-link{color:#000}@keyframes progress-bar-stripes{0%{background-position:1rem 0}to{background-position:0 0}}.progress{background-color:#e5e7eb;border-radius:.25rem;font-size:.75rem;height:1rem;line-height:0}.progress,.progress-bar{display:flex;overflow:hidden}.progress-bar{background-color:#8b5cf6;color:#fff;flex-direction:column;justify-content:center;text-align:center;transition:width .6s ease;white-space:nowrap}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem}.progress-bar-animated{animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion:reduce){.progress-bar-animated{animation:none}}.media{align-items:flex-start;display:flex}.media-body{flex:1}.list-group{border-radius:.25rem;display:flex;flex-direction:column;margin-bottom:0;padding-left:0}.list-group-item-action{color:#374151;text-align:inherit;width:100%}.list-group-item-action:focus,.list-group-item-action:hover{background-color:#f3f4f6;color:#374151;text-decoration:none;z-index:1}.list-group-item-action:active{background-color:#e5e7eb;color:#f3f4f6}.list-group-item{background-color:#fff;border:1px solid rgba(0,0,0,.125);display:block;padding:.75rem 1.25rem;position:relative}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{background-color:#fff;color:#4b5563;pointer-events:none}.list-group-item.active{background-color:#8b5cf6;border-color:#8b5cf6;color:#fff;z-index:2}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{border-top-width:1px;margin-top:-1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}@media (min-width:2px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}@media (min-width:8px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-md>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}@media (min-width:9px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}@media (min-width:10px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{background-color:#dfd1fc;color:#483080}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{background-color:#ceb9fa;color:#483080}.list-group-item-primary.list-group-item-action.active{background-color:#483080;border-color:#483080;color:#fff}.list-group-item-secondary{background-color:#d6d8db;color:#383b43}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{background-color:#c8cbcf;color:#383b43}.list-group-item-secondary.list-group-item-action.active{background-color:#383b43;border-color:#383b43;color:#fff}.list-group-item-success{background-color:#bcebdc;color:#086043}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{background-color:#a8e5d2;color:#086043}.list-group-item-success.list-group-item-action.active{background-color:#086043;border-color:#086043;color:#fff}.list-group-item-info{background-color:#c8dcfc;color:#1f4480}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{background-color:#b0cdfb;color:#1f4480}.list-group-item-info.list-group-item-action.active{background-color:#1f4480;border-color:#1f4480;color:#fff}.list-group-item-warning{background-color:#fce4bb;color:#7f5206}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{background-color:#fbdaa3;color:#7f5206}.list-group-item-warning.list-group-item-action.active{background-color:#7f5206;border-color:#7f5206;color:#fff}.list-group-item-danger{background-color:#fbcbcb;color:#7c2323}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{background-color:#f9b3b3;color:#7c2323}.list-group-item-danger.list-group-item-action.active{background-color:#7c2323;border-color:#7c2323;color:#fff}.list-group-item-light{background-color:#fcfcfc;color:#7e7f80}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{background-color:#efefef;color:#7e7f80}.list-group-item-light.list-group-item-action.active{background-color:#7e7f80;border-color:#7e7f80;color:#fff}.list-group-item-dark{background-color:#c0c3c7;color:#10151d}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{background-color:#b3b6bb;color:#10151d}.list-group-item-dark.list-group-item-action.active{background-color:#10151d;border-color:#10151d;color:#fff}.close{color:#000;float:right;font-size:1.5rem;font-weight:600;line-height:1;opacity:.5;text-shadow:0 1px 0 #fff}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{background-color:transparent;border:0;padding:0}a.close.disabled{pointer-events:none}.toast{background-clip:padding-box;background-color:hsla(0,0%,100%,.85);border:1px solid rgba(0,0,0,.1);border-radius:.25rem;box-shadow:0 .25rem .75rem rgba(0,0,0,.1);flex-basis:350px;font-size:.875rem;max-width:350px;opacity:0}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{align-items:center;background-clip:padding-box;background-color:hsla(0,0%,100%,.85);border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px);color:#4b5563;display:flex;padding:.25rem .75rem}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{display:none;height:100%;left:0;outline:0;overflow:hidden;position:fixed;top:0;width:100%;z-index:1050}.modal-dialog{margin:.5rem;pointer-events:none;position:relative;width:auto}.modal.fade .modal-dialog{transform:translateY(-50px);transition:transform .3s ease-out}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{align-items:center;display:flex;min-height:calc(100% - 1rem)}.modal-dialog-centered:before{content:"";display:block;height:calc(100vh - 1rem);height:-moz-min-content;height:min-content}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;height:100%;justify-content:center}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable:before{content:none}.modal-content{background-clip:padding-box;background-color:#1f2937;border:1px solid rgba(0,0,0,.2);border-radius:6px;display:flex;flex-direction:column;outline:0;pointer-events:auto;position:relative;width:100%}.modal-backdrop{background-color:#4b5563;height:100vh;left:0;position:fixed;top:0;width:100vw;z-index:1040}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{align-items:flex-start;border-bottom:1px solid #4b5563;border-top-left-radius:5px;border-top-right-radius:5px;display:flex;justify-content:space-between;padding:1rem}.modal-header .close{margin:-1rem -1rem -1rem auto;padding:1rem}.modal-title{line-height:1.5;margin-bottom:0}.modal-body{flex:1 1 auto;padding:1rem;position:relative}.modal-footer{align-items:center;border-bottom-left-radius:5px;border-bottom-right-radius:5px;border-top:1px solid #4b5563;display:flex;flex-wrap:wrap;justify-content:flex-end;padding:.75rem}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{height:50px;overflow:scroll;position:absolute;top:-9999px;width:50px}@media (min-width:2px){.modal-dialog{margin:1.75rem auto;max-width:500px}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered:before{height:calc(100vh - 3.5rem);height:-moz-min-content;height:min-content}.modal-sm{max-width:300px}}@media (min-width:9px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:10px){.modal-xl{max-width:1140px}}.tooltip{word-wrap:break-word;display:block;font-family:Figtree,sans-serif;font-size:.875rem;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.5;margin:0;opacity:0;position:absolute;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;z-index:1070}.tooltip.show{opacity:.9}.tooltip .arrow{display:block;height:.4rem;position:absolute;width:.8rem}.tooltip .arrow:before{border-color:transparent;border-style:solid;content:"";position:absolute}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow:before,.bs-tooltip-top .arrow:before{border-top-color:#000;border-width:.4rem .4rem 0;top:0}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{height:.8rem;left:0;width:.4rem}.bs-tooltip-auto[x-placement^=right] .arrow:before,.bs-tooltip-right .arrow:before{border-right-color:#000;border-width:.4rem .4rem .4rem 0;right:0}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow:before,.bs-tooltip-bottom .arrow:before{border-bottom-color:#000;border-width:0 .4rem .4rem;bottom:0}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{height:.8rem;right:0;width:.4rem}.bs-tooltip-auto[x-placement^=left] .arrow:before,.bs-tooltip-left .arrow:before{border-left-color:#000;border-width:.4rem 0 .4rem .4rem;left:0}.tooltip-inner{background-color:#000;border-radius:.25rem;color:#fff;max-width:200px;padding:.25rem .5rem;text-align:center}.popover{word-wrap:break-word;background-clip:padding-box;background-color:#fff;border:1px solid rgba(0,0,0,.2);border-radius:6px;font-family:Figtree,sans-serif;font-size:.875rem;font-style:normal;font-weight:400;left:0;letter-spacing:normal;line-break:auto;line-height:1.5;max-width:276px;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;top:0;white-space:normal;word-break:normal;word-spacing:normal;z-index:1060}.popover,.popover .arrow{display:block;position:absolute}.popover .arrow{height:.5rem;margin:0 6px;width:1rem}.popover .arrow:after,.popover .arrow:before{border-color:transparent;border-style:solid;content:"";display:block;position:absolute}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=top]>.arrow:before,.bs-popover-top>.arrow:before{border-top-color:rgba(0,0,0,.25);border-width:.5rem .5rem 0;bottom:0}.bs-popover-auto[x-placement^=top]>.arrow:after,.bs-popover-top>.arrow:after{border-top-color:#fff;border-width:.5rem .5rem 0;bottom:1px}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{height:1rem;left:calc(-.5rem - 1px);margin:6px 0;width:.5rem}.bs-popover-auto[x-placement^=right]>.arrow:before,.bs-popover-right>.arrow:before{border-right-color:rgba(0,0,0,.25);border-width:.5rem .5rem .5rem 0;left:0}.bs-popover-auto[x-placement^=right]>.arrow:after,.bs-popover-right>.arrow:after{border-right-color:#fff;border-width:.5rem .5rem .5rem 0;left:1px}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=bottom]>.arrow:before,.bs-popover-bottom>.arrow:before{border-bottom-color:rgba(0,0,0,.25);border-width:0 .5rem .5rem;top:0}.bs-popover-auto[x-placement^=bottom]>.arrow:after,.bs-popover-bottom>.arrow:after{border-bottom-color:#fff;border-width:0 .5rem .5rem;top:1px}.bs-popover-auto[x-placement^=bottom] .popover-header:before,.bs-popover-bottom .popover-header:before{border-bottom:1px solid #f7f7f7;content:"";display:block;left:50%;margin-left:-.5rem;position:absolute;top:0;width:1rem}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{height:1rem;margin:6px 0;right:calc(-.5rem - 1px);width:.5rem}.bs-popover-auto[x-placement^=left]>.arrow:before,.bs-popover-left>.arrow:before{border-left-color:rgba(0,0,0,.25);border-width:.5rem 0 .5rem .5rem;right:0}.bs-popover-auto[x-placement^=left]>.arrow:after,.bs-popover-left>.arrow:after{border-left-color:#fff;border-width:.5rem 0 .5rem .5rem;right:1px}.popover-header{background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:5px;border-top-right-radius:5px;font-size:1rem;margin-bottom:0;padding:.5rem .75rem}.popover-header:empty{display:none}.popover-body{color:#f3f4f6;padding:.5rem .75rem}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{overflow:hidden;position:relative;width:100%}.carousel-inner:after{clear:both;content:"";display:block}.carousel-item{-webkit-backface-visibility:hidden;backface-visibility:hidden;display:none;float:left;margin-right:-100%;position:relative;transition:transform .6s ease-in-out;width:100%}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transform:none;transition-property:opacity}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{opacity:1;z-index:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{opacity:0;transition:opacity 0s .6s;z-index:0}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{align-items:center;background:none;border:0;bottom:0;color:#fff;display:flex;justify-content:center;opacity:.5;padding:0;position:absolute;text-align:center;top:0;transition:opacity .15s ease;width:15%;z-index:1}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;opacity:.9;outline:0;text-decoration:none}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{background:50%/100% 100% no-repeat;display:inline-block;height:20px;width:20px}.carousel-control-prev-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='m5.25 0-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3E%3C/svg%3E")}.carousel-control-next-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='m2.75 0-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3E%3C/svg%3E")}.carousel-indicators{bottom:0;display:flex;justify-content:center;left:0;list-style:none;margin-left:15%;margin-right:15%;padding-left:0;position:absolute;right:0;z-index:15}.carousel-indicators li{background-clip:padding-box;background-color:#fff;border-bottom:10px solid transparent;border-top:10px solid transparent;box-sizing:content-box;cursor:pointer;flex:0 1 auto;height:3px;margin-left:3px;margin-right:3px;opacity:.5;text-indent:-999px;transition:opacity .6s ease;width:30px}@media (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{bottom:20px;color:#fff;left:15%;padding-bottom:20px;padding-top:20px;position:absolute;right:15%;text-align:center;z-index:10}@keyframes spinner-border{to{transform:rotate(1turn)}}.spinner-border{animation:spinner-border .75s linear infinite;border:.25em solid;border-radius:50%;border-right:.25em solid transparent;display:inline-block;height:2rem;vertical-align:-.125em;width:2rem}.spinner-border-sm{border-width:.2em;height:1rem;width:1rem}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{animation:spinner-grow .75s linear infinite;background-color:currentcolor;border-radius:50%;display:inline-block;height:2rem;opacity:0;vertical-align:-.125em;width:2rem}.spinner-grow-sm{height:1rem;width:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{animation-duration:1.5s}}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#8b5cf6!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#692cf3!important}.bg-secondary{background-color:#6b7280!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545964!important}.bg-success{background-color:#10b981!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#0c8a60!important}.bg-info{background-color:#3b82f6!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#0b63f3!important}.bg-warning{background-color:#f59e0b!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#c57f08!important}.bg-danger{background-color:#ef4444!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#eb1515!important}.bg-light{background-color:#f3f4f6!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#d6d9e0!important}.bg-dark{background-color:#1f2937!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#0d1116!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #4b5563!important}.border-top{border-top:1px solid #4b5563!important}.border-right{border-right:1px solid #4b5563!important}.border-bottom{border-bottom:1px solid #4b5563!important}.border-left{border-left:1px solid #4b5563!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#8b5cf6!important}.border-secondary{border-color:#6b7280!important}.border-success{border-color:#10b981!important}.border-info{border-color:#3b82f6!important}.border-warning{border-color:#f59e0b!important}.border-danger{border-color:#ef4444!important}.border-light{border-color:#f3f4f6!important}.border-dark{border-color:#1f2937!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important}.rounded-right,.rounded-top{border-top-right-radius:.25rem!important}.rounded-bottom,.rounded-right{border-bottom-right-radius:.25rem!important}.rounded-bottom,.rounded-left{border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important}.rounded-lg{border-radius:6px!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix:after{clear:both;content:"";display:block}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}@media (min-width:2px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}}@media (min-width:8px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}}@media (min-width:9px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}}@media (min-width:10px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}}.embed-responsive{display:block;overflow:hidden;padding:0;position:relative;width:100%}.embed-responsive:before{content:"";display:block}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{border:0;bottom:0;height:100%;left:0;position:absolute;top:0;width:100%}.embed-responsive-21by9:before{padding-top:42.85714286%}.embed-responsive-16by9:before{padding-top:56.25%}.embed-responsive-4by3:before{padding-top:75%}.embed-responsive-1by1:before{padding-top:100%}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-fill{flex:1 1 auto!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}@media (min-width:2px){.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}}@media (min-width:8px){.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}}@media (min-width:9px){.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}}@media (min-width:10px){.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:2px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:8px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:9px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:10px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:sticky!important}.fixed-top{top:0}.fixed-bottom,.fixed-top{left:0;position:fixed;right:0;z-index:1030}.fixed-bottom{bottom:0}@supports (position:sticky){.sticky-top{position:sticky;top:0;z-index:1020}}.sr-only{clip:rect(0,0,0,0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;overflow:visible;position:static;white-space:normal;width:auto}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:2px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:8px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:9px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:10px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.stretched-link:after{background-color:transparent;bottom:0;content:"";left:0;pointer-events:auto;position:absolute;right:0;top:0;z-index:1}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:2px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:8px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:9px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:10px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:600!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#8b5cf6!important}a.text-primary:focus,a.text-primary:hover{color:#5714f2!important}.text-secondary{color:#6b7280!important}a.text-secondary:focus,a.text-secondary:hover{color:#484d56!important}.text-success{color:#10b981!important}a.text-success:focus,a.text-success:hover{color:#0a7350!important}.text-info{color:#3b82f6!important}a.text-info:focus,a.text-info:hover{color:#0a59da!important}.text-warning{color:#f59e0b!important}a.text-warning:focus,a.text-warning:hover{color:#ac6f07!important}.text-danger{color:#ef4444!important}a.text-danger:focus,a.text-danger:hover{color:#d41212!important}.text-light{color:#f3f4f6!important}a.text-light:focus,a.text-light:hover{color:#c7ccd5!important}.text-dark{color:#1f2937!important}a.text-dark:focus,a.text-dark:hover{color:#030506!important}.text-body{color:#f3f4f6!important}.text-muted{color:#9ca3af!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:hsla(0,0%,100%,.5)!important}.text-hide{background-color:transparent;border:0;color:transparent;font:0/0 a;text-shadow:none}.text-decoration-none{text-decoration:none!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,:after,:before{box-shadow:none!important;text-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]:after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #6b7280}blockquote,img,pre,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}.container,body{min-width:9px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #d1d5db!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#374151}.table .thead-dark th{border-color:#374151;color:inherit}}body{padding-bottom:20px}.container{max-width:1440px}html{min-width:1140px}[v-cloak]{display:none}svg.icon{height:1rem;width:1rem}.header{border-bottom:1px solid #374151}.header .logo{color:#e5e7eb;text-decoration:none}.header .logo svg{height:2rem;width:2rem}.sidebar .nav-item a{border-radius:6px;color:#9ca3af;margin-bottom:4px;padding:.5rem .75rem}.sidebar .nav-item a svg{fill:#6b7280;height:1.25rem;margin-right:15px;width:1.25rem}.sidebar .nav-item a:hover{background-color:#1f2937;color:#d1d5db}.sidebar .nav-item a.active{background-color:#1f2937;color:#a78bfa}.sidebar .nav-item a.active svg{fill:#8b5cf6}.card{border:none;box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1)}.card .bottom-radius{border-bottom-left-radius:6px;border-bottom-right-radius:6px}.card .card-header{background-color:#374151;border-bottom:none;min-height:60px;padding-bottom:.7rem;padding-top:.7rem}.card .card-header .btn-group .btn{padding:.2rem .5rem}.card .card-header .form-control-with-icon{position:relative}.card .card-header .form-control-with-icon .icon-wrapper{jusify-content:center;align-items:center;bottom:0;display:flex;left:.75rem;position:absolute;top:0}.card .card-header .form-control-with-icon .icon-wrapper .icon{fill:#9ca3af}.card .card-header .form-control-with-icon .form-control{border-radius:9999px;font-size:.875rem;padding-left:2.25rem}.card .table td,.card .table th{padding:.75rem 1.25rem}.card .table.table-sm td,.card .table.table-sm th{padding:1rem 1.25rem}.card .table th{background-color:#1f2937;border-bottom:0;font-size:.875rem;padding:.5rem 1.25rem}.card .table:not(.table-borderless) td{border-top:1px solid #374151}.card .table.penultimate-column-right td:nth-last-child(2),.card .table.penultimate-column-right th:nth-last-child(2){text-align:right}.card .table td.table-fit,.card .table th.table-fit{white-space:nowrap;width:1%}.fill-text-color{fill:#f3f4f6}.fill-danger{fill:#ef4444}.fill-warning{fill:#f59e0b}.fill-info{fill:#3b82f6}.fill-success{fill:#10b981}.fill-primary{fill:#8b5cf6}button:hover .fill-primary{fill:#fff}.btn-outline-primary.active .fill-primary{fill:#111827}.btn-outline-primary:not(:disabled):not(.disabled).active:focus{box-shadow:none!important}.btn-muted{background:#1f2937;color:#9ca3af}.btn-muted:focus,.btn-muted:hover{background:#374151;color:#d1d5db}.btn-muted.active{background:#8b5cf6;color:#fff}.badge-secondary{background:#d1d5db;color:#374151}.badge-success{background:#10b981;color:#fff}.badge-info{background:#3b82f6;color:#fff}.badge-warning{background:#f59e0b;color:#fff}.badge-danger{background:#ef4444;color:#fff}.control-action svg{fill:#6b7280;height:1.2rem;width:1.2rem}.control-action svg:hover{fill:#a78bfa}.info-icon{fill:#6b7280}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.spin{animation:spin 2s linear infinite}.card .nav-pills{background:#374151}.card .nav-pills .nav-link{border-radius:0;color:#9ca3af;font-size:.9rem;padding:.75rem 1.25rem}.card .nav-pills .nav-link:focus,.card .nav-pills .nav-link:hover{color:#e5e7eb}.card .nav-pills .nav-link.active{background:none;border-bottom:2px solid #a78bfa;color:#a78bfa}.list-enter-active:not(.dontanimate){transition:background 1s linear}.list-enter:not(.dontanimate),.list-leave-to:not(.dontanimate){background:#4c1d95}.code-bg .list-enter:not(.dontanimate),.code-bg .list-leave-to:not(.dontanimate){background:#4b5563}.card table td{vertical-align:middle!important}.card-bg-secondary{background:#1f2937}.code-bg{background:#292d3e}.disabled-watcher{background:#ef4444;color:#fff;padding:.75rem}.badge-sm{font-size:.75rem} diff --git a/public/vendor/horizon/app.css b/public/vendor/horizon/app.css index 701833556..961bf475b 100644 --- a/public/vendor/horizon/app.css +++ b/public/vendor/horizon/app.css @@ -1,8 +1,8 @@ -@charset "UTF-8";.vjs-tree{font-family:Monaco,Menlo,Consolas,Bitstream Vera Sans Mono,monospace!important}.vjs-tree.is-root{position:relative}.vjs-tree .vjs-tree__content{padding-left:1em}.vjs-tree .vjs-tree__content.has-line{border-left:1px dotted hsla(0,0%,80%,.28)!important}.vjs-tree .vjs-tree__brackets{cursor:pointer}.vjs-tree .vjs-tree__brackets:hover{color:#20a0ff}.vjs-tree .vjs-value__boolean,.vjs-tree .vjs-value__null,.vjs-tree .vjs-value__number{color:#a291f5!important}.vjs-tree .vjs-value__string{color:#dacb4d!important} +@charset "UTF-8";.vjs-tree{font-family:Monaco,Menlo,Consolas,Bitstream Vera Sans Mono,monospace!important}.vjs-tree.is-root{position:relative}.vjs-tree .vjs-tree-node{display:flex;position:relative}.vjs-tree .vjs-tree-node .vjs-indent-unit.has-line{border-left:1px dotted hsla(0,0%,80%,.28)!important}.vjs-tree .vjs-tree-node.has-carets{padding-left:15px}.vjs-tree .vjs-tree-node .has-carets.has-selector,.vjs-tree .vjs-tree-node .has-selector{padding-left:30px}.vjs-tree .vjs-indent{display:flex;position:relative}.vjs-tree .vjs-indent-unit{width:1em}.vjs-tree .vjs-tree-brackets{cursor:pointer}.vjs-tree .vjs-tree-brackets:hover{color:#20a0ff}.vjs-tree .vjs-key{color:#c3cbd3!important;padding-right:10px}.vjs-tree .vjs-value-string{color:#c3e88d!important}.vjs-tree .vjs-value-boolean,.vjs-tree .vjs-value-null,.vjs-tree .vjs-value-number,.vjs-tree .vjs-value-undefined{color:#a291f5!important} /*! - * Bootstrap v4.6.0 (https://getbootstrap.com/) - * Copyright 2011-2021 The Bootstrap Authors - * Copyright 2011-2021 Twitter, Inc. + * Bootstrap v4.6.2 (https://getbootstrap.com/) + * Copyright 2011-2022 The Bootstrap Authors + * Copyright 2011-2022 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#7746ec;--secondary:#dae1e7;--success:#51d88a;--info:#bcdefa;--warning:#ffa260;--danger:#ef5753;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:2px;--breakpoint-md:8px;--breakpoint-lg:9px;--breakpoint-xl:10px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,:after,:before{box-sizing:border-box}html{-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0);font-family:sans-serif;line-height:1.15}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{background-color:#ebebeb;color:#212529;font-family:Nunito,sans-serif;font-size:.95rem;font-weight:400;line-height:1.5;margin:0;text-align:left}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;margin-top:0}p{margin-bottom:1rem;margin-top:0}abbr[data-original-title],abbr[title]{border-bottom:0;cursor:help;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{font-style:normal;line-height:inherit}address,dl,ol,ul{margin-bottom:1rem}dl,ol,ul{margin-top:0}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{background-color:transparent;color:#7746ec;text-decoration:none}a:hover{color:#4d15d0;text-decoration:underline}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}pre{-ms-overflow-style:scrollbar;margin-bottom:1rem;margin-top:0;overflow:auto}figure{margin:0 0 1rem}img{border-style:none}img,svg{vertical-align:middle}svg{overflow:hidden}table{border-collapse:collapse}caption{caption-side:bottom;color:#6c757d;padding-bottom:.75rem;padding-top:.75rem;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit;margin:0}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{border:0;margin:0;min-width:0;padding:0}legend{color:inherit;display:block;font-size:1.5rem;line-height:inherit;margin-bottom:.5rem;max-width:100%;padding:0;white-space:normal;width:100%}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:none;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}output{display:inline-block}summary{cursor:pointer;display:list-item}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-weight:500;line-height:1.2;margin-bottom:.5rem}.h1,h1{font-size:2.375rem}.h2,h2{font-size:1.9rem}.h3,h3{font-size:1.6625rem}.h4,h4{font-size:1.425rem}.h5,h5{font-size:1.1875rem}.h6,h6{font-size:.95rem}.lead{font-size:1.1875rem;font-weight:300}.display-1{font-size:6rem}.display-1,.display-2{font-weight:300;line-height:1.2}.display-2{font-size:5.5rem}.display-3{font-size:4.5rem}.display-3,.display-4{font-weight:300;line-height:1.2}.display-4{font-size:3.5rem}hr{border:0;border-top:1px solid rgba(0,0,0,.1);margin-bottom:1rem;margin-top:1rem}.small,small{font-size:80%;font-weight:400}.mark,mark{background-color:#fcf8e3;padding:.2em}.list-inline,.list-unstyled{list-style:none;padding-left:0}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{font-size:1.1875rem;margin-bottom:1rem}.blockquote-footer{color:#6c757d;display:block;font-size:80%}.blockquote-footer:before{content:"— "}.img-fluid,.img-thumbnail{height:auto;max-width:100%}.img-thumbnail{background-color:#ebebeb;border:1px solid #dee2e6;border-radius:.25rem;padding:.25rem}.figure{display:inline-block}.figure-img{line-height:1;margin-bottom:.5rem}.figure-caption{color:#6c757d;font-size:90%}code{word-wrap:break-word;color:#e83e8c;font-size:87.5%}a>code{color:inherit}kbd{background-color:#212529;border-radius:.2rem;color:#fff;font-size:87.5%;padding:.2rem .4rem}kbd kbd{font-size:100%;font-weight:700;padding:0}pre{color:#212529;display:block;font-size:87.5%}pre code{color:inherit;font-size:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px;width:100%}@media (min-width:2px){.container,.container-sm{max-width:1137px}}@media (min-width:8px){.container,.container-md,.container-sm{max-width:1138px}}@media (min-width:9px){.container,.container-lg,.container-md,.container-sm{max-width:1139px}}@media (min-width:10px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}.row{display:flex;flex-wrap:wrap;margin-left:-15px;margin-right:-15px}.no-gutters{margin-left:0;margin-right:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-left:0;padding-right:0}.col,.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col-auto,.col-lg,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-auto,.col-md,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md-auto,.col-sm,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-auto{padding-left:15px;padding-right:15px;position:relative;width:100%}.col{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-1>*{flex:0 0 100%;max-width:100%}.row-cols-2>*{flex:0 0 50%;max-width:50%}.row-cols-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-4>*{flex:0 0 25%;max-width:25%}.row-cols-5>*{flex:0 0 20%;max-width:20%}.row-cols-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-auto{flex:0 0 auto;max-width:100%;width:auto}.col-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-12{flex:0 0 100%;max-width:100%}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.3333333333%}.offset-2{margin-left:16.6666666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.3333333333%}.offset-5{margin-left:41.6666666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.3333333333%}.offset-8{margin-left:66.6666666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.3333333333%}.offset-11{margin-left:91.6666666667%}@media (min-width:2px){.col-sm{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-sm-1>*{flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-auto{flex:0 0 auto;max-width:100%;width:auto}.col-sm-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-sm-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-sm-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-sm-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-sm-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.3333333333%}.offset-sm-2{margin-left:16.6666666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.3333333333%}.offset-sm-5{margin-left:41.6666666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.3333333333%}.offset-sm-8{margin-left:66.6666666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.3333333333%}.offset-sm-11{margin-left:91.6666666667%}}@media (min-width:8px){.col-md{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-md-1>*{flex:0 0 100%;max-width:100%}.row-cols-md-2>*{flex:0 0 50%;max-width:50%}.row-cols-md-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-md-4>*{flex:0 0 25%;max-width:25%}.row-cols-md-5>*{flex:0 0 20%;max-width:20%}.row-cols-md-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-auto{flex:0 0 auto;max-width:100%;width:auto}.col-md-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-md-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-md-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-md-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-md-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.3333333333%}.offset-md-2{margin-left:16.6666666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.3333333333%}.offset-md-5{margin-left:41.6666666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.3333333333%}.offset-md-8{margin-left:66.6666666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.3333333333%}.offset-md-11{margin-left:91.6666666667%}}@media (min-width:9px){.col-lg{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-lg-1>*{flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-auto{flex:0 0 auto;max-width:100%;width:auto}.col-lg-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-lg-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-lg-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-lg-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-lg-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.3333333333%}.offset-lg-2{margin-left:16.6666666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.3333333333%}.offset-lg-5{margin-left:41.6666666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.3333333333%}.offset-lg-8{margin-left:66.6666666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.3333333333%}.offset-lg-11{margin-left:91.6666666667%}}@media (min-width:10px){.col-xl{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-xl-1>*{flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-auto{flex:0 0 auto;max-width:100%;width:auto}.col-xl-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-xl-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-xl-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-xl-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-xl-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.3333333333%}.offset-xl-2{margin-left:16.6666666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.3333333333%}.offset-xl-5{margin-left:41.6666666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.3333333333%}.offset-xl-8{margin-left:66.6666666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.3333333333%}.offset-xl-11{margin-left:91.6666666667%}}.table{color:#212529;margin-bottom:1rem;width:100%}.table td,.table th{border-top:1px solid #efefef;padding:.75rem;vertical-align:top}.table thead th{border-bottom:2px solid #efefef;vertical-align:bottom}.table tbody+tbody{border-top:2px solid #efefef}.table-sm td,.table-sm th{padding:.3rem}.table-bordered,.table-bordered td,.table-bordered th{border:1px solid #efefef}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{background-color:#f1f7fa;color:#212529}.table-primary,.table-primary>td,.table-primary>th{background-color:#d9cbfa}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#b89ff5}.table-hover .table-primary:hover,.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#c8b4f8}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#f5f7f8}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#eceff3}.table-hover .table-secondary:hover,.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#e6ebee}.table-success,.table-success>td,.table-success>th{background-color:#cef4de}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#a5ebc2}.table-hover .table-success:hover,.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b9efd0}.table-info,.table-info>td,.table-info>th{background-color:#ecf6fe}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#dceefc}.table-hover .table-info:hover,.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#d4ebfd}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffe5d2}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffcfac}.table-hover .table-warning:hover,.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffd6b9}.table-danger,.table-danger>td,.table-danger>th{background-color:#fbd0cf}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#f7a8a6}.table-hover .table-danger:hover,.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f9b9b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.table-hover .table-light:hover,.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#95999c}.table-hover .table-dark:hover,.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:#f1f7fa}.table-hover .table-active:hover,.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:#deecf3}.table .thead-dark th{background-color:#343a40;border-color:#454d55;color:#fff}.table .thead-light th{background-color:#e9ecef;border-color:#efefef;color:#495057}.table-dark{background-color:#343a40;color:#fff}.table-dark td,.table-dark th,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:hsla(0,0%,100%,.05)}.table-dark.table-hover tbody tr:hover{background-color:hsla(0,0%,100%,.075);color:#fff}@media (max-width:1.98px){.table-responsive-sm{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:7.98px){.table-responsive-md{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-md>.table-bordered{border:0}}@media (max-width:8.98px){.table-responsive-lg{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:9.98px){.table-responsive-xl{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive>.table-bordered{border:0}.form-control{background-clip:padding-box;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;color:#495057;display:block;font-size:.95rem;font-weight:400;height:calc(1.5em + .75rem + 2px);line-height:1.5;padding:.375rem .75rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:100%}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.form-control:focus{background-color:#fff;border-color:#ccbaf8;box-shadow:0 0 0 .2rem rgba(119,70,236,.25);color:#495057;outline:0}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:focus::-ms-value{background-color:#fff;color:#495057}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{font-size:inherit;line-height:1.5;margin-bottom:0;padding-bottom:calc(.375rem + 1px);padding-top:calc(.375rem + 1px)}.col-form-label-lg{font-size:1.1875rem;line-height:1.5;padding-bottom:calc(.5rem + 1px);padding-top:calc(.5rem + 1px)}.col-form-label-sm{font-size:.83125rem;line-height:1.5;padding-bottom:calc(.25rem + 1px);padding-top:calc(.25rem + 1px)}.form-control-plaintext{background-color:transparent;border:solid transparent;border-width:1px 0;color:#212529;display:block;font-size:.95rem;line-height:1.5;margin-bottom:0;padding:.375rem 0;width:100%}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-left:0;padding-right:0}.form-control-sm{border-radius:.2rem;font-size:.83125rem;height:calc(1.5em + .5rem + 2px);line-height:1.5;padding:.25rem .5rem}.form-control-lg{border-radius:.3rem;font-size:1.1875rem;height:calc(1.5em + 1rem + 2px);line-height:1.5;padding:.5rem 1rem}select.form-control[multiple],select.form-control[size],textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:flex;flex-wrap:wrap;margin-left:-5px;margin-right:-5px}.form-row>.col,.form-row>[class*=col-]{padding-left:5px;padding-right:5px}.form-check{display:block;padding-left:1.25rem;position:relative}.form-check-input{margin-left:-1.25rem;margin-top:.3rem;position:absolute}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{align-items:center;display:inline-flex;margin-right:.75rem;padding-left:0}.form-check-inline .form-check-input{margin-left:0;margin-right:.3125rem;margin-top:0;position:static}.valid-feedback{color:#51d88a;display:none;font-size:80%;margin-top:.25rem;width:100%}.valid-tooltip{background-color:rgba(81,216,138,.9);border-radius:.25rem;color:#212529;display:none;font-size:.83125rem;left:0;line-height:1.5;margin-top:.1rem;max-width:100%;padding:.25rem .5rem;position:absolute;top:100%;z-index:5}.form-row>.col>.valid-tooltip,.form-row>[class*=col-]>.valid-tooltip{left:5px}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2351d88a' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");background-position:right calc(.375em + .1875rem) center;background-repeat:no-repeat;background-size:calc(.75em + .375rem) calc(.75em + .375rem);border-color:#51d88a;padding-right:calc(1.5em + .75rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#51d88a;box-shadow:0 0 0 .2rem rgba(81,216,138,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem);padding-right:calc(1.5em + .75rem)}.custom-select.is-valid,.was-validated .custom-select:valid{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0 0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2351d88a' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat;border-color:#51d88a;padding-right:calc(.75em + 2.3125rem)}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#51d88a;box-shadow:0 0 0 .2rem rgba(81,216,138,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#51d88a}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#51d88a}.custom-control-input.is-valid~.custom-control-label:before,.was-validated .custom-control-input:valid~.custom-control-label:before{border-color:#51d88a}.custom-control-input.is-valid:checked~.custom-control-label:before,.was-validated .custom-control-input:valid:checked~.custom-control-label:before{background-color:#7be1a6;border-color:#7be1a6}.custom-control-input.is-valid:focus~.custom-control-label:before,.was-validated .custom-control-input:valid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(81,216,138,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label:before{border-color:#51d88a}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#51d88a}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#51d88a;box-shadow:0 0 0 .2rem rgba(81,216,138,.25)}.invalid-feedback{color:#ef5753;display:none;font-size:80%;margin-top:.25rem;width:100%}.invalid-tooltip{background-color:rgba(239,87,83,.9);border-radius:.25rem;color:#fff;display:none;font-size:.83125rem;left:0;line-height:1.5;margin-top:.1rem;max-width:100%;padding:.25rem .5rem;position:absolute;top:100%;z-index:5}.form-row>.col>.invalid-tooltip,.form-row>[class*=col-]>.invalid-tooltip{left:5px}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ef5753'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23ef5753' stroke='none'/%3E%3C/svg%3E");background-position:right calc(.375em + .1875rem) center;background-repeat:no-repeat;background-size:calc(.75em + .375rem) calc(.75em + .375rem);border-color:#ef5753;padding-right:calc(1.5em + .75rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#ef5753;box-shadow:0 0 0 .2rem rgba(239,87,83,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem);padding-right:calc(1.5em + .75rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0 0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ef5753'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23ef5753' stroke='none'/%3E%3C/svg%3E") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat;border-color:#ef5753;padding-right:calc(.75em + 2.3125rem)}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#ef5753;box-shadow:0 0 0 .2rem rgba(239,87,83,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#ef5753}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#ef5753}.custom-control-input.is-invalid~.custom-control-label:before,.was-validated .custom-control-input:invalid~.custom-control-label:before{border-color:#ef5753}.custom-control-input.is-invalid:checked~.custom-control-label:before,.was-validated .custom-control-input:invalid:checked~.custom-control-label:before{background-color:#f38582;border-color:#f38582}.custom-control-input.is-invalid:focus~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(239,87,83,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label:before{border-color:#ef5753}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#ef5753}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#ef5753;box-shadow:0 0 0 .2rem rgba(239,87,83,.25)}.form-inline{align-items:center;display:flex;flex-flow:row wrap}.form-inline .form-check{width:100%}@media (min-width:2px){.form-inline label{justify-content:center}.form-inline .form-group,.form-inline label{align-items:center;display:flex;margin-bottom:0}.form-inline .form-group{flex:0 0 auto;flex-flow:row wrap}.form-inline .form-control{display:inline-block;vertical-align:middle;width:auto}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{align-items:center;display:flex;justify-content:center;padding-left:0;width:auto}.form-inline .form-check-input{flex-shrink:0;margin-left:0;margin-right:.25rem;margin-top:0;position:relative}.form-inline .custom-control{align-items:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{background-color:transparent;border:1px solid transparent;border-radius:.25rem;color:#212529;display:inline-block;font-size:.95rem;font-weight:400;line-height:1.5;padding:.375rem .75rem;text-align:center;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn.focus,.btn:focus{box-shadow:0 0 0 .2rem rgba(119,70,236,.25);outline:0}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{background-color:#7746ec;border-color:#7746ec;color:#fff}.btn-primary.focus,.btn-primary:focus,.btn-primary:hover{background-color:#5e23e8;border-color:#5518e7;color:#fff}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 0 rgba(139,98,239,.5)}.btn-primary.disabled,.btn-primary:disabled{background-color:#7746ec;border-color:#7746ec;color:#fff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{background-color:#5518e7;border-color:#5117dc;color:#fff}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(139,98,239,.5)}.btn-secondary{background-color:#dae1e7;border-color:#dae1e7;color:#212529}.btn-secondary.focus,.btn-secondary:focus,.btn-secondary:hover{background-color:#c3ced8;border-color:#bbc8d3;color:#212529}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 0 rgba(190,197,203,.5)}.btn-secondary.disabled,.btn-secondary:disabled{background-color:#dae1e7;border-color:#dae1e7;color:#212529}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{background-color:#bbc8d3;border-color:#b3c2ce;color:#212529}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(190,197,203,.5)}.btn-success{background-color:#51d88a;border-color:#51d88a;color:#212529}.btn-success.focus,.btn-success:focus,.btn-success:hover{background-color:#32d175;border-color:#2dc96f;color:#212529}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 0 rgba(74,189,123,.5)}.btn-success.disabled,.btn-success:disabled{background-color:#51d88a;border-color:#51d88a;color:#212529}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{background-color:#2dc96f;border-color:#2bbf69;color:#fff}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(74,189,123,.5)}.btn-info{background-color:#bcdefa;border-color:#bcdefa;color:#212529}.btn-info.focus,.btn-info:focus,.btn-info:hover{background-color:#98ccf7;border-color:#8dc7f6;color:#212529}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 0 rgba(165,194,219,.5)}.btn-info.disabled,.btn-info:disabled{background-color:#bcdefa;border-color:#bcdefa;color:#212529}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{background-color:#8dc7f6;border-color:#81c1f6;color:#212529}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(165,194,219,.5)}.btn-warning{background-color:#ffa260;border-color:#ffa260;color:#212529}.btn-warning.focus,.btn-warning:focus,.btn-warning:hover{background-color:#ff8c3a;border-color:#ff842d;color:#212529}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 0 rgba(222,143,88,.5)}.btn-warning.disabled,.btn-warning:disabled{background-color:#ffa260;border-color:#ffa260;color:#212529}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{background-color:#ff842d;border-color:#ff7d20;color:#212529}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(222,143,88,.5)}.btn-danger{background-color:#ef5753;border-color:#ef5753;color:#fff}.btn-danger.focus,.btn-danger:focus,.btn-danger:hover{background-color:#ec3530;border-color:#eb2924;color:#fff}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 0 hsla(1,82%,69%,.5)}.btn-danger.disabled,.btn-danger:disabled{background-color:#ef5753;border-color:#ef5753;color:#fff}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{background-color:#eb2924;border-color:#ea1e19;color:#fff}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 0 hsla(1,82%,69%,.5)}.btn-light{background-color:#f8f9fa;border-color:#f8f9fa;color:#212529}.btn-light.focus,.btn-light:focus,.btn-light:hover{background-color:#e2e6ea;border-color:#dae0e5;color:#212529}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 0 hsla(220,4%,85%,.5)}.btn-light.disabled,.btn-light:disabled{background-color:#f8f9fa;border-color:#f8f9fa;color:#212529}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{background-color:#dae0e5;border-color:#d3d9df;color:#212529}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 0 hsla(220,4%,85%,.5)}.btn-dark{background-color:#343a40;border-color:#343a40;color:#fff}.btn-dark.focus,.btn-dark:focus,.btn-dark:hover{background-color:#23272b;border-color:#1d2124;color:#fff}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 0 rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{background-color:#343a40;border-color:#343a40;color:#fff}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{background-color:#1d2124;border-color:#171a1d;color:#fff}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(82,88,93,.5)}.btn-outline-primary{border-color:#7746ec;color:#7746ec}.btn-outline-primary:hover{background-color:#7746ec;border-color:#7746ec;color:#fff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 0 rgba(119,70,236,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{background-color:transparent;color:#7746ec}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{background-color:#7746ec;border-color:#7746ec;color:#fff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(119,70,236,.5)}.btn-outline-secondary{border-color:#dae1e7;color:#dae1e7}.btn-outline-secondary:hover{background-color:#dae1e7;border-color:#dae1e7;color:#212529}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 0 rgba(218,225,231,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{background-color:transparent;color:#dae1e7}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{background-color:#dae1e7;border-color:#dae1e7;color:#212529}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(218,225,231,.5)}.btn-outline-success{border-color:#51d88a;color:#51d88a}.btn-outline-success:hover{background-color:#51d88a;border-color:#51d88a;color:#212529}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 0 rgba(81,216,138,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{background-color:transparent;color:#51d88a}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{background-color:#51d88a;border-color:#51d88a;color:#212529}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(81,216,138,.5)}.btn-outline-info{border-color:#bcdefa;color:#bcdefa}.btn-outline-info:hover{background-color:#bcdefa;border-color:#bcdefa;color:#212529}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 0 rgba(188,222,250,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{background-color:transparent;color:#bcdefa}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{background-color:#bcdefa;border-color:#bcdefa;color:#212529}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(188,222,250,.5)}.btn-outline-warning{border-color:#ffa260;color:#ffa260}.btn-outline-warning:hover{background-color:#ffa260;border-color:#ffa260;color:#212529}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 0 rgba(255,162,96,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{background-color:transparent;color:#ffa260}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{background-color:#ffa260;border-color:#ffa260;color:#212529}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(255,162,96,.5)}.btn-outline-danger{border-color:#ef5753;color:#ef5753}.btn-outline-danger:hover{background-color:#ef5753;border-color:#ef5753;color:#fff}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 0 rgba(239,87,83,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{background-color:transparent;color:#ef5753}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{background-color:#ef5753;border-color:#ef5753;color:#fff}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(239,87,83,.5)}.btn-outline-light{border-color:#f8f9fa;color:#f8f9fa}.btn-outline-light:hover{background-color:#f8f9fa;border-color:#f8f9fa;color:#212529}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 0 rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{background-color:transparent;color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{background-color:#f8f9fa;border-color:#f8f9fa;color:#212529}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(248,249,250,.5)}.btn-outline-dark{border-color:#343a40;color:#343a40}.btn-outline-dark:hover{background-color:#343a40;border-color:#343a40;color:#fff}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 0 rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{background-color:transparent;color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{background-color:#343a40;border-color:#343a40;color:#fff}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(52,58,64,.5)}.btn-link{color:#7746ec;font-weight:400;text-decoration:none}.btn-link:hover{color:#4d15d0}.btn-link.focus,.btn-link:focus,.btn-link:hover{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{border-radius:.3rem;font-size:1.1875rem;line-height:1.5;padding:.5rem 1rem}.btn-group-sm>.btn,.btn-sm{border-radius:.2rem;font-size:.83125rem;line-height:1.5;padding:.25rem .5rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;position:relative;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:after{border-bottom:0;border-left:.3em solid transparent;border-right:.3em solid transparent;border-top:.3em solid;content:"";display:inline-block;margin-left:.255em;vertical-align:.255em}.dropdown-toggle:empty:after{margin-left:0}.dropdown-menu{background-clip:padding-box;background-color:#fff;border:1px solid rgba(0,0,0,.15);border-radius:.25rem;color:#212529;display:none;float:left;font-size:.95rem;left:0;list-style:none;margin:.125rem 0 0;min-width:10rem;padding:.5rem 0;position:absolute;text-align:left;top:100%;z-index:1000}.dropdown-menu-left{left:0;right:auto}.dropdown-menu-right{left:auto;right:0}@media (min-width:2px){.dropdown-menu-sm-left{left:0;right:auto}.dropdown-menu-sm-right{left:auto;right:0}}@media (min-width:8px){.dropdown-menu-md-left{left:0;right:auto}.dropdown-menu-md-right{left:auto;right:0}}@media (min-width:9px){.dropdown-menu-lg-left{left:0;right:auto}.dropdown-menu-lg-right{left:auto;right:0}}@media (min-width:10px){.dropdown-menu-xl-left{left:0;right:auto}.dropdown-menu-xl-right{left:auto;right:0}}.dropup .dropdown-menu{bottom:100%;margin-bottom:.125rem;margin-top:0;top:auto}.dropup .dropdown-toggle:after{border-bottom:.3em solid;border-left:.3em solid transparent;border-right:.3em solid transparent;border-top:0;content:"";display:inline-block;margin-left:.255em;vertical-align:.255em}.dropup .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-menu{left:100%;margin-left:.125rem;margin-top:0;right:auto;top:0}.dropright .dropdown-toggle:after{border-bottom:.3em solid transparent;border-left:.3em solid;border-right:0;border-top:.3em solid transparent;content:"";display:inline-block;margin-left:.255em;vertical-align:.255em}.dropright .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-toggle:after{vertical-align:0}.dropleft .dropdown-menu{left:auto;margin-right:.125rem;margin-top:0;right:100%;top:0}.dropleft .dropdown-toggle:after{content:"";display:inline-block;display:none;margin-left:.255em;vertical-align:.255em}.dropleft .dropdown-toggle:before{border-bottom:.3em solid transparent;border-right:.3em solid;border-top:.3em solid transparent;content:"";display:inline-block;margin-right:.255em;vertical-align:.255em}.dropleft .dropdown-toggle:empty:after{margin-left:0}.dropleft .dropdown-toggle:before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{bottom:auto;right:auto}.dropdown-divider{border-top:1px solid #e9ecef;height:0;margin:.5rem 0;overflow:hidden}.dropdown-item{background-color:transparent;border:0;clear:both;color:#212529;display:block;font-weight:400;padding:.25rem 1.5rem;text-align:inherit;white-space:nowrap;width:100%}.dropdown-item:focus,.dropdown-item:hover{background-color:#e9ecef;color:#16181b;text-decoration:none}.dropdown-item.active,.dropdown-item:active{background-color:#7746ec;color:#fff;text-decoration:none}.dropdown-item.disabled,.dropdown-item:disabled{background-color:transparent;color:#adb5bd;pointer-events:none}.dropdown-menu.show{display:block}.dropdown-header{color:#6c757d;display:block;font-size:.83125rem;margin-bottom:0;padding:.5rem 1.5rem;white-space:nowrap}.dropdown-item-text{color:#212529;display:block;padding:.25rem 1.5rem}.btn-group,.btn-group-vertical{display:inline-flex;position:relative;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{flex:1 1 auto;position:relative}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.dropdown-toggle-split{padding-left:.5625rem;padding-right:.5625rem}.dropdown-toggle-split:after,.dropright .dropdown-toggle-split:after,.dropup .dropdown-toggle-split:after{margin-left:0}.dropleft .dropdown-toggle-split:before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-left:.375rem;padding-right:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-left:.75rem;padding-right:.75rem}.btn-group-vertical{align-items:flex-start;flex-direction:column;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-left-radius:0;border-bottom-right-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio],.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio]{clip:rect(0,0,0,0);pointer-events:none;position:absolute}.input-group{align-items:stretch;display:flex;flex-wrap:wrap;position:relative;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{flex:1 1 auto;margin-bottom:0;min-width:0;position:relative;width:1%}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.input-group>.custom-file{align-items:center;display:flex}.input-group>.custom-file:not(:first-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label{border-bottom-left-radius:0;border-top-left-radius:0}.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label:after,.input-group.has-validation>.custom-select:nth-last-child(n+3),.input-group.has-validation>.form-control:nth-last-child(n+3),.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label:after,.input-group:not(.has-validation)>.custom-select:not(:last-child),.input-group:not(.has-validation)>.form-control:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.input-group-append,.input-group-prepend{display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{align-items:center;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem;color:#495057;display:flex;font-size:.95rem;font-weight:400;line-height:1.5;margin-bottom:0;padding:.375rem .75rem;text-align:center;white-space:nowrap}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{border-radius:.3rem;font-size:1.1875rem;line-height:1.5;padding:.5rem 1rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{border-radius:.2rem;font-size:.83125rem;line-height:1.5;padding:.25rem .5rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-bottom-right-radius:0;border-top-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-bottom-left-radius:0;border-top-left-radius:0}.custom-control{-webkit-print-color-adjust:exact;color-adjust:exact;display:block;min-height:1.425rem;padding-left:1.5rem;position:relative;z-index:1}.custom-control-inline{display:inline-flex;margin-right:1rem}.custom-control-input{height:1.2125rem;left:0;opacity:0;position:absolute;width:1rem;z-index:-1}.custom-control-input:checked~.custom-control-label:before{background-color:#7746ec;border-color:#7746ec;color:#fff}.custom-control-input:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(119,70,236,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label:before{border-color:#ccbaf8}.custom-control-input:not(:disabled):active~.custom-control-label:before{background-color:#eee8fd;border-color:#eee8fd;color:#fff}.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label:before,.custom-control-input[disabled]~.custom-control-label:before{background-color:#e9ecef}.custom-control-label{margin-bottom:0;position:relative;vertical-align:top}.custom-control-label:before{background-color:#fff;border:1px solid #adb5bd;pointer-events:none}.custom-control-label:after,.custom-control-label:before{content:"";display:block;height:1rem;left:-1.5rem;position:absolute;top:.2125rem;width:1rem}.custom-control-label:after{background:50%/50% 50% no-repeat}.custom-checkbox .custom-control-label:before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%23fff' d='m6.564.75-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:before{background-color:#7746ec;border-color:#7746ec}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(119,70,236,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label:before{background-color:rgba(119,70,236,.5)}.custom-radio .custom-control-label:before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(119,70,236,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label:before{border-radius:.5rem;left:-2.25rem;pointer-events:all;width:1.75rem}.custom-switch .custom-control-label:after{background-color:#adb5bd;border-radius:.5rem;height:calc(1rem - 4px);left:calc(-2.25rem + 2px);top:calc(.2125rem + 2px);transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:calc(1rem - 4px)}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label:after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label:after{background-color:#fff;transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(119,70,236,.5)}.custom-select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0 0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat;border:1px solid #ced4da;border-radius:.25rem;color:#495057;display:inline-block;font-size:.95rem;font-weight:400;height:calc(1.5em + .75rem + 2px);line-height:1.5;padding:.375rem 1.75rem .375rem .75rem;vertical-align:middle;width:100%}.custom-select:focus{border-color:#ccbaf8;box-shadow:0 0 0 .2rem rgba(119,70,236,.25);outline:0}.custom-select:focus::-ms-value{background-color:#fff;color:#495057}.custom-select[multiple],.custom-select[size]:not([size="1"]){background-image:none;height:auto;padding-right:.75rem}.custom-select:disabled{background-color:#e9ecef;color:#6c757d}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.custom-select-sm{font-size:.83125rem;height:calc(1.5em + .5rem + 2px);padding-bottom:.25rem;padding-left:.5rem;padding-top:.25rem}.custom-select-lg{font-size:1.1875rem;height:calc(1.5em + 1rem + 2px);padding-bottom:.5rem;padding-left:1rem;padding-top:.5rem}.custom-file{display:inline-block;margin-bottom:0}.custom-file,.custom-file-input{height:calc(1.5em + .75rem + 2px);position:relative;width:100%}.custom-file-input{margin:0;opacity:0;overflow:hidden;z-index:2}.custom-file-input:focus~.custom-file-label{border-color:#ccbaf8;box-shadow:0 0 0 .2rem rgba(119,70,236,.25)}.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label:after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]:after{content:attr(data-browse)}.custom-file-label{background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;font-weight:400;height:calc(1.5em + .75rem + 2px);left:0;overflow:hidden;z-index:1}.custom-file-label,.custom-file-label:after{color:#495057;line-height:1.5;padding:.375rem .75rem;position:absolute;right:0;top:0}.custom-file-label:after{background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0;bottom:0;content:"Browse";display:block;height:calc(1.5em + .75rem);z-index:3}.custom-range{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;height:1.4rem;padding:0;width:100%}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #ebebeb,0 0 0 .2rem rgba(119,70,236,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #ebebeb,0 0 0 .2rem rgba(119,70,236,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #ebebeb,0 0 0 .2rem rgba(119,70,236,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;background-color:#7746ec;border:0;border-radius:1rem;height:1rem;margin-top:-.25rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:1rem}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#eee8fd}.custom-range::-webkit-slider-runnable-track{background-color:#dee2e6;border-color:transparent;border-radius:1rem;color:transparent;cursor:pointer;height:.5rem;width:100%}.custom-range::-moz-range-thumb{-moz-appearance:none;appearance:none;background-color:#7746ec;border:0;border-radius:1rem;height:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:1rem}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#eee8fd}.custom-range::-moz-range-track{background-color:#dee2e6;border-color:transparent;border-radius:1rem;color:transparent;cursor:pointer;height:.5rem;width:100%}.custom-range::-ms-thumb{appearance:none;background-color:#7746ec;border:0;border-radius:1rem;height:1rem;margin-left:.2rem;margin-right:.2rem;margin-top:0;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:1rem}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#eee8fd}.custom-range::-ms-track{background-color:transparent;border-color:transparent;border-width:.5rem;color:transparent;cursor:pointer;height:.5rem;width:100%}.custom-range::-ms-fill-lower,.custom-range::-ms-fill-upper{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label:before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label:before,.custom-file-label,.custom-select{transition:none}}.nav{display:flex;flex-wrap:wrap;list-style:none;margin-bottom:0;padding-left:0}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;cursor:default;pointer-events:none}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem;margin-bottom:-1px}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{background-color:transparent;border-color:transparent;color:#6c757d}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{background-color:#ebebeb;border-color:#dee2e6 #dee2e6 #ebebeb;color:#495057}.nav-tabs .dropdown-menu{border-top-left-radius:0;border-top-right-radius:0;margin-top:-1px}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{background-color:#7746ec;color:#fff}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{padding:.5rem 1rem;position:relative}.navbar,.navbar .container,.navbar .container-fluid,.navbar .container-lg,.navbar .container-md,.navbar .container-sm,.navbar .container-xl{align-items:center;display:flex;flex-wrap:wrap;justify-content:space-between}.navbar-brand{display:inline-block;font-size:1.1875rem;line-height:inherit;margin-right:1rem;padding-bottom:.321875rem;padding-top:.321875rem;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:flex;flex-direction:column;list-style:none;margin-bottom:0;padding-left:0}.navbar-nav .nav-link{padding-left:0;padding-right:0}.navbar-nav .dropdown-menu{float:none;position:static}.navbar-text{display:inline-block;padding-bottom:.5rem;padding-top:.5rem}.navbar-collapse{align-items:center;flex-basis:100%;flex-grow:1}.navbar-toggler{background-color:transparent;border:1px solid transparent;border-radius:.25rem;font-size:1.1875rem;line-height:1;padding:.25rem .75rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{background:50%/100% 100% no-repeat;content:"";display:inline-block;height:1.5em;vertical-align:middle;width:1.5em}.navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media (max-width:1.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{padding-left:0;padding-right:0}}@media (min-width:2px){.navbar-expand-sm{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{flex-wrap:nowrap}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:7.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{padding-left:0;padding-right:0}}@media (min-width:8px){.navbar-expand-md{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{flex-wrap:nowrap}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:8.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{padding-left:0;padding-right:0}}@media (min-width:9px){.navbar-expand-lg{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{flex-wrap:nowrap}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:9.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{padding-left:0;padding-right:0}}@media (min-width:10px){.navbar-expand-xl{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{flex-wrap:nowrap}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{padding-left:0;padding-right:0}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{flex-wrap:nowrap}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand,.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{border-color:rgba(0,0,0,.1);color:rgba(0,0,0,.5)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand,.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:hsla(0,0%,100%,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:hsla(0,0%,100%,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{border-color:hsla(0,0%,100%,.1);color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-dark .navbar-text{color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{word-wrap:break-word;background-clip:border-box;background-color:#fff;border:1px solid rgba(0,0,0,.125);border-radius:.25rem;display:flex;flex-direction:column;min-width:0;position:relative}.card>hr{margin-left:0;margin-right:0}.card>.list-group{border-bottom:inherit;border-top:inherit}.card>.list-group:first-child{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px);border-top-width:0}.card>.list-group:last-child{border-bottom-left-radius:calc(.25rem - 1px);border-bottom-right-radius:calc(.25rem - 1px);border-bottom-width:0}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem}.card-subtitle,.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{background-color:#fff;border-bottom:1px solid rgba(0,0,0,.125);margin-bottom:0;padding:.75rem 1.25rem}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{background-color:#fff;border-top:1px solid rgba(0,0,0,.125);padding:.75rem 1.25rem}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{border-bottom:0;margin-bottom:-.75rem}.card-header-pills,.card-header-tabs{margin-left:-.625rem;margin-right:-.625rem}.card-img-overlay{border-radius:calc(.25rem - 1px);bottom:0;left:0;padding:1.25rem;position:absolute;right:0;top:0}.card-img,.card-img-bottom,.card-img-top{flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-left-radius:calc(.25rem - 1px);border-bottom-right-radius:calc(.25rem - 1px)}.card-deck .card{margin-bottom:15px}@media (min-width:2px){.card-deck{display:flex;flex-flow:row wrap;margin-left:-15px;margin-right:-15px}.card-deck .card{flex:1 0 0%;margin-bottom:0;margin-left:15px;margin-right:15px}}.card-group>.card{margin-bottom:15px}@media (min-width:2px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{border-left:0;margin-left:0}.card-group>.card:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:2px){.card-columns{-moz-column-count:3;column-count:3;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion{overflow-anchor:none}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-left-radius:0;border-bottom-right-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{background-color:#e9ecef;border-radius:.25rem;display:flex;flex-wrap:wrap;list-style:none;margin-bottom:1rem;padding:.75rem 1rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item:before{color:#6c757d;content:"/";float:left;padding-right:.5rem}.breadcrumb-item+.breadcrumb-item:hover:before{text-decoration:underline;text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{border-radius:.25rem;display:flex;list-style:none;padding-left:0}.page-link{background-color:#fff;border:1px solid #dee2e6;color:#7746ec;display:block;line-height:1.25;margin-left:-1px;padding:.5rem .75rem;position:relative}.page-link:hover{background-color:#e9ecef;border-color:#dee2e6;color:#4d15d0;text-decoration:none;z-index:2}.page-link:focus{box-shadow:0 0 0 .2rem rgba(119,70,236,.25);outline:0;z-index:3}.page-item:first-child .page-link{border-bottom-left-radius:.25rem;border-top-left-radius:.25rem;margin-left:0}.page-item:last-child .page-link{border-bottom-right-radius:.25rem;border-top-right-radius:.25rem}.page-item.active .page-link{background-color:#7746ec;border-color:#7746ec;color:#fff;z-index:3}.page-item.disabled .page-link{background-color:#fff;border-color:#dee2e6;color:#6c757d;cursor:auto;pointer-events:none}.pagination-lg .page-link{font-size:1.1875rem;line-height:1.5;padding:.75rem 1.5rem}.pagination-lg .page-item:first-child .page-link{border-bottom-left-radius:.3rem;border-top-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-bottom-right-radius:.3rem;border-top-right-radius:.3rem}.pagination-sm .page-link{font-size:.83125rem;line-height:1.5;padding:.25rem .5rem}.pagination-sm .page-item:first-child .page-link{border-bottom-left-radius:.2rem;border-top-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-bottom-right-radius:.2rem;border-top-right-radius:.2rem}.badge{border-radius:.25rem;display:inline-block;font-size:.95rem;font-weight:700;line-height:1;padding:.25em .4em;text-align:center;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;vertical-align:baseline;white-space:nowrap}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{border-radius:10rem;padding-left:.6em;padding-right:.6em}.badge-primary{background-color:#7746ec;color:#fff}a.badge-primary:focus,a.badge-primary:hover{background-color:#5518e7;color:#fff}a.badge-primary.focus,a.badge-primary:focus{box-shadow:0 0 0 .2rem rgba(119,70,236,.5);outline:0}.badge-secondary{background-color:#dae1e7;color:#212529}a.badge-secondary:focus,a.badge-secondary:hover{background-color:#bbc8d3;color:#212529}a.badge-secondary.focus,a.badge-secondary:focus{box-shadow:0 0 0 .2rem rgba(218,225,231,.5);outline:0}.badge-success{background-color:#51d88a;color:#212529}a.badge-success:focus,a.badge-success:hover{background-color:#2dc96f;color:#212529}a.badge-success.focus,a.badge-success:focus{box-shadow:0 0 0 .2rem rgba(81,216,138,.5);outline:0}.badge-info{background-color:#bcdefa;color:#212529}a.badge-info:focus,a.badge-info:hover{background-color:#8dc7f6;color:#212529}a.badge-info.focus,a.badge-info:focus{box-shadow:0 0 0 .2rem rgba(188,222,250,.5);outline:0}.badge-warning{background-color:#ffa260;color:#212529}a.badge-warning:focus,a.badge-warning:hover{background-color:#ff842d;color:#212529}a.badge-warning.focus,a.badge-warning:focus{box-shadow:0 0 0 .2rem rgba(255,162,96,.5);outline:0}.badge-danger{background-color:#ef5753;color:#fff}a.badge-danger:focus,a.badge-danger:hover{background-color:#eb2924;color:#fff}a.badge-danger.focus,a.badge-danger:focus{box-shadow:0 0 0 .2rem rgba(239,87,83,.5);outline:0}.badge-light{background-color:#f8f9fa;color:#212529}a.badge-light:focus,a.badge-light:hover{background-color:#dae0e5;color:#212529}a.badge-light.focus,a.badge-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5);outline:0}.badge-dark{background-color:#343a40;color:#fff}a.badge-dark:focus,a.badge-dark:hover{background-color:#1d2124;color:#fff}a.badge-dark.focus,a.badge-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5);outline:0}.jumbotron{background-color:#e9ecef;border-radius:.3rem;margin-bottom:2rem;padding:2rem 1rem}@media (min-width:2px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{border-radius:0;padding-left:0;padding-right:0}.alert{border:1px solid transparent;border-radius:.25rem;margin-bottom:1rem;padding:.75rem 1.25rem;position:relative}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3.925rem}.alert-dismissible .close{color:inherit;padding:.75rem 1.25rem;position:absolute;right:0;top:0;z-index:2}.alert-primary{background-color:#e4dafb;border-color:#d9cbfa;color:#3e247b}.alert-primary hr{border-top-color:#c8b4f8}.alert-primary .alert-link{color:#2a1854}.alert-secondary{background-color:#f8f9fa;border-color:#f5f7f8;color:#717578}.alert-secondary hr{border-top-color:#e6ebee}.alert-secondary .alert-link{color:#585b5e}.alert-success{background-color:#dcf7e8;border-color:#cef4de;color:#2a7048}.alert-success hr{border-top-color:#b9efd0}.alert-success .alert-link{color:#1c4b30}.alert-info{background-color:#f2f8fe;border-color:#ecf6fe;color:#627382}.alert-info hr{border-top-color:#d4ebfd}.alert-info .alert-link{color:#4c5965}.alert-warning{background-color:#ffecdf;border-color:#ffe5d2;color:#855432}.alert-warning hr{border-top-color:#ffd6b9}.alert-warning .alert-link{color:#603d24}.alert-danger{background-color:#fcdddd;border-color:#fbd0cf;color:#7c2d2b}.alert-danger hr{border-top-color:#f9b9b7}.alert-danger .alert-link{color:#561f1e}.alert-light{background-color:#fefefe;border-color:#fdfdfe;color:#818182}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{background-color:#d6d8d9;border-color:#c6c8ca;color:#1b1e21}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{0%{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{0%{background-position:1rem 0}to{background-position:0 0}}.progress{background-color:#e9ecef;border-radius:.25rem;font-size:.7125rem;height:1rem;line-height:0}.progress,.progress-bar{display:flex;overflow:hidden}.progress-bar{background-color:#7746ec;color:#fff;flex-direction:column;justify-content:center;text-align:center;transition:width .6s ease;white-space:nowrap}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{align-items:flex-start;display:flex}.media-body{flex:1}.list-group{border-radius:.25rem;display:flex;flex-direction:column;margin-bottom:0;padding-left:0}.list-group-item-action{color:#495057;text-align:inherit;width:100%}.list-group-item-action:focus,.list-group-item-action:hover{background-color:#f8f9fa;color:#495057;text-decoration:none;z-index:1}.list-group-item-action:active{background-color:#e9ecef;color:#212529}.list-group-item{background-color:#fff;border:1px solid rgba(0,0,0,.125);display:block;padding:.75rem 1.25rem;position:relative}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{background-color:#fff;color:#6c757d;pointer-events:none}.list-group-item.active{background-color:#7746ec;border-color:#7746ec;color:#fff;z-index:2}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{border-top-width:1px;margin-top:-1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}@media (min-width:2px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}@media (min-width:8px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-md>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}@media (min-width:9px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}@media (min-width:10px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{background-color:#d9cbfa;color:#3e247b}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{background-color:#c8b4f8;color:#3e247b}.list-group-item-primary.list-group-item-action.active{background-color:#3e247b;border-color:#3e247b;color:#fff}.list-group-item-secondary{background-color:#f5f7f8;color:#717578}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{background-color:#e6ebee;color:#717578}.list-group-item-secondary.list-group-item-action.active{background-color:#717578;border-color:#717578;color:#fff}.list-group-item-success{background-color:#cef4de;color:#2a7048}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{background-color:#b9efd0;color:#2a7048}.list-group-item-success.list-group-item-action.active{background-color:#2a7048;border-color:#2a7048;color:#fff}.list-group-item-info{background-color:#ecf6fe;color:#627382}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{background-color:#d4ebfd;color:#627382}.list-group-item-info.list-group-item-action.active{background-color:#627382;border-color:#627382;color:#fff}.list-group-item-warning{background-color:#ffe5d2;color:#855432}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{background-color:#ffd6b9;color:#855432}.list-group-item-warning.list-group-item-action.active{background-color:#855432;border-color:#855432;color:#fff}.list-group-item-danger{background-color:#fbd0cf;color:#7c2d2b}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{background-color:#f9b9b7;color:#7c2d2b}.list-group-item-danger.list-group-item-action.active{background-color:#7c2d2b;border-color:#7c2d2b;color:#fff}.list-group-item-light{background-color:#fdfdfe;color:#818182}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{background-color:#ececf6;color:#818182}.list-group-item-light.list-group-item-action.active{background-color:#818182;border-color:#818182;color:#fff}.list-group-item-dark{background-color:#c6c8ca;color:#1b1e21}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{background-color:#b9bbbe;color:#1b1e21}.list-group-item-dark.list-group-item-action.active{background-color:#1b1e21;border-color:#1b1e21;color:#fff}.close{color:#000;float:right;font-size:1.425rem;font-weight:700;line-height:1;opacity:.5;text-shadow:0 1px 0 #fff}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{background-color:transparent;border:0;padding:0}a.close.disabled{pointer-events:none}.toast{background-clip:padding-box;background-color:hsla(0,0%,100%,.85);border:1px solid rgba(0,0,0,.1);border-radius:.25rem;box-shadow:0 .25rem .75rem rgba(0,0,0,.1);flex-basis:350px;font-size:.875rem;max-width:350px;opacity:0}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{align-items:center;background-clip:padding-box;background-color:hsla(0,0%,100%,.85);border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px);color:#6c757d;display:flex;padding:.25rem .75rem}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{display:none;height:100%;left:0;outline:0;overflow:hidden;position:fixed;top:0;width:100%;z-index:1050}.modal-dialog{margin:.5rem;pointer-events:none;position:relative;width:auto}.modal.fade .modal-dialog{transform:translateY(-50px);transition:transform .3s ease-out}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{align-items:center;display:flex;min-height:calc(100% - 1rem)}.modal-dialog-centered:before{content:"";display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;height:100%;justify-content:center}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable:before{content:none}.modal-content{background-clip:padding-box;background-color:#fff;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;display:flex;flex-direction:column;outline:0;pointer-events:auto;position:relative;width:100%}.modal-backdrop{background-color:#000;height:100vh;left:0;position:fixed;top:0;width:100vw;z-index:1040}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{align-items:flex-start;border-bottom:1px solid #efefef;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px);display:flex;justify-content:space-between;padding:1rem}.modal-header .close{margin:-1rem -1rem -1rem auto;padding:1rem}.modal-title{line-height:1.5;margin-bottom:0}.modal-body{flex:1 1 auto;padding:1rem;position:relative}.modal-footer{align-items:center;border-bottom-left-radius:calc(.3rem - 1px);border-bottom-right-radius:calc(.3rem - 1px);border-top:1px solid #efefef;display:flex;flex-wrap:wrap;justify-content:flex-end;padding:.75rem}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{height:50px;overflow:scroll;position:absolute;top:-9999px;width:50px}@media (min-width:2px){.modal-dialog{margin:1.75rem auto;max-width:500px}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered:before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}.modal-sm{max-width:300px}}@media (min-width:9px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:10px){.modal-xl{max-width:1140px}}.tooltip{word-wrap:break-word;display:block;font-family:Nunito,sans-serif;font-size:.83125rem;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.5;margin:0;opacity:0;position:absolute;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;z-index:1070}.tooltip.show{opacity:.9}.tooltip .arrow{display:block;height:.4rem;position:absolute;width:.8rem}.tooltip .arrow:before{border-color:transparent;border-style:solid;content:"";position:absolute}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow:before,.bs-tooltip-top .arrow:before{border-top-color:#000;border-width:.4rem .4rem 0;top:0}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{height:.8rem;left:0;width:.4rem}.bs-tooltip-auto[x-placement^=right] .arrow:before,.bs-tooltip-right .arrow:before{border-right-color:#000;border-width:.4rem .4rem .4rem 0;right:0}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow:before,.bs-tooltip-bottom .arrow:before{border-bottom-color:#000;border-width:0 .4rem .4rem;bottom:0}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{height:.8rem;right:0;width:.4rem}.bs-tooltip-auto[x-placement^=left] .arrow:before,.bs-tooltip-left .arrow:before{border-left-color:#000;border-width:.4rem 0 .4rem .4rem;left:0}.tooltip-inner{background-color:#000;border-radius:.25rem;color:#fff;max-width:200px;padding:.25rem .5rem;text-align:center}.popover{word-wrap:break-word;background-clip:padding-box;background-color:#fff;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;font-family:Nunito,sans-serif;font-size:.83125rem;font-style:normal;font-weight:400;left:0;letter-spacing:normal;line-break:auto;line-height:1.5;max-width:276px;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;top:0;white-space:normal;word-break:normal;word-spacing:normal;z-index:1060}.popover,.popover .arrow{display:block;position:absolute}.popover .arrow{height:.5rem;margin:0 .3rem;width:1rem}.popover .arrow:after,.popover .arrow:before{border-color:transparent;border-style:solid;content:"";display:block;position:absolute}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=top]>.arrow:before,.bs-popover-top>.arrow:before{border-top-color:rgba(0,0,0,.25);border-width:.5rem .5rem 0;bottom:0}.bs-popover-auto[x-placement^=top]>.arrow:after,.bs-popover-top>.arrow:after{border-top-color:#fff;border-width:.5rem .5rem 0;bottom:1px}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{height:1rem;left:calc(-.5rem - 1px);margin:.3rem 0;width:.5rem}.bs-popover-auto[x-placement^=right]>.arrow:before,.bs-popover-right>.arrow:before{border-right-color:rgba(0,0,0,.25);border-width:.5rem .5rem .5rem 0;left:0}.bs-popover-auto[x-placement^=right]>.arrow:after,.bs-popover-right>.arrow:after{border-right-color:#fff;border-width:.5rem .5rem .5rem 0;left:1px}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=bottom]>.arrow:before,.bs-popover-bottom>.arrow:before{border-bottom-color:rgba(0,0,0,.25);border-width:0 .5rem .5rem;top:0}.bs-popover-auto[x-placement^=bottom]>.arrow:after,.bs-popover-bottom>.arrow:after{border-bottom-color:#fff;border-width:0 .5rem .5rem;top:1px}.bs-popover-auto[x-placement^=bottom] .popover-header:before,.bs-popover-bottom .popover-header:before{border-bottom:1px solid #f7f7f7;content:"";display:block;left:50%;margin-left:-.5rem;position:absolute;top:0;width:1rem}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{height:1rem;margin:.3rem 0;right:calc(-.5rem - 1px);width:.5rem}.bs-popover-auto[x-placement^=left]>.arrow:before,.bs-popover-left>.arrow:before{border-left-color:rgba(0,0,0,.25);border-width:.5rem 0 .5rem .5rem;right:0}.bs-popover-auto[x-placement^=left]>.arrow:after,.bs-popover-left>.arrow:after{border-left-color:#fff;border-width:.5rem 0 .5rem .5rem;right:1px}.popover-header{background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px);font-size:.95rem;margin-bottom:0;padding:.5rem .75rem}.popover-header:empty{display:none}.popover-body{color:#212529;padding:.5rem .75rem}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{overflow:hidden;position:relative;width:100%}.carousel-inner:after{clear:both;content:"";display:block}.carousel-item{-webkit-backface-visibility:hidden;backface-visibility:hidden;display:none;float:left;margin-right:-100%;position:relative;transition:transform .6s ease-in-out;width:100%}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transform:none;transition-property:opacity}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{opacity:1;z-index:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{opacity:0;transition:opacity 0s .6s;z-index:0}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{align-items:center;bottom:0;color:#fff;display:flex;justify-content:center;opacity:.5;position:absolute;text-align:center;top:0;transition:opacity .15s ease;width:15%;z-index:1}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;opacity:.9;outline:0;text-decoration:none}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{background:50%/100% 100% no-repeat;display:inline-block;height:20px;width:20px}.carousel-control-prev-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='m5.25 0-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3E%3C/svg%3E")}.carousel-control-next-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='m2.75 0-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3E%3C/svg%3E")}.carousel-indicators{bottom:0;display:flex;justify-content:center;left:0;list-style:none;margin-left:15%;margin-right:15%;padding-left:0;position:absolute;right:0;z-index:15}.carousel-indicators li{background-clip:padding-box;background-color:#fff;border-bottom:10px solid transparent;border-top:10px solid transparent;box-sizing:content-box;cursor:pointer;flex:0 1 auto;height:3px;margin-left:3px;margin-right:3px;opacity:.5;text-indent:-999px;transition:opacity .6s ease;width:30px}@media (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{bottom:20px;color:#fff;left:15%;padding-bottom:20px;padding-top:20px;position:absolute;right:15%;text-align:center;z-index:10}@-webkit-keyframes spinner-border{to{transform:rotate(1turn)}}@keyframes spinner-border{to{transform:rotate(1turn)}}.spinner-border{-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite;border:.25em solid;border-radius:50%;border-right:.25em solid transparent;display:inline-block;height:2rem;vertical-align:text-bottom;width:2rem}.spinner-border-sm{border-width:.2em;height:1rem;width:1rem}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite;background-color:currentColor;border-radius:50%;display:inline-block;height:2rem;opacity:0;vertical-align:text-bottom;width:2rem}.spinner-grow-sm{height:1rem;width:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#7746ec!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#5518e7!important}.bg-secondary{background-color:#dae1e7!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#bbc8d3!important}.bg-success{background-color:#51d88a!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#2dc96f!important}.bg-info{background-color:#bcdefa!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#8dc7f6!important}.bg-warning{background-color:#ffa260!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#ff842d!important}.bg-danger{background-color:#ef5753!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#eb2924!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #efefef!important}.border-top{border-top:1px solid #efefef!important}.border-right{border-right:1px solid #efefef!important}.border-bottom{border-bottom:1px solid #efefef!important}.border-left{border-left:1px solid #efefef!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#7746ec!important}.border-secondary{border-color:#dae1e7!important}.border-success{border-color:#51d88a!important}.border-info{border-color:#bcdefa!important}.border-warning{border-color:#ffa260!important}.border-danger{border-color:#ef5753!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important}.rounded-right,.rounded-top{border-top-right-radius:.25rem!important}.rounded-bottom,.rounded-right{border-bottom-right-radius:.25rem!important}.rounded-bottom,.rounded-left{border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix:after{clear:both;content:"";display:block}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}@media (min-width:2px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}}@media (min-width:8px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}}@media (min-width:9px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}}@media (min-width:10px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}}.embed-responsive{display:block;overflow:hidden;padding:0;position:relative;width:100%}.embed-responsive:before{content:"";display:block}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{border:0;bottom:0;height:100%;left:0;position:absolute;top:0;width:100%}.embed-responsive-21by9:before{padding-top:42.8571428571%}.embed-responsive-16by9:before{padding-top:56.25%}.embed-responsive-4by3:before{padding-top:75%}.embed-responsive-1by1:before{padding-top:100%}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-fill{flex:1 1 auto!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}@media (min-width:2px){.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}}@media (min-width:8px){.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}}@media (min-width:9px){.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}}@media (min-width:10px){.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:2px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:8px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:9px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:10px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;-ms-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{top:0}.fixed-bottom,.fixed-top{left:0;position:fixed;right:0;z-index:1030}.fixed-bottom{bottom:0}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{clip:rect(0,0,0,0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;overflow:visible;position:static;white-space:normal;width:auto}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:2px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:8px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:9px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:10px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.stretched-link:after{background-color:transparent;bottom:0;content:"";left:0;pointer-events:auto;position:absolute;right:0;top:0;z-index:1}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:2px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:8px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:9px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:10px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#7746ec!important}a.text-primary:focus,a.text-primary:hover{color:#4d15d0!important}.text-secondary{color:#dae1e7!important}a.text-secondary:focus,a.text-secondary:hover{color:#acbbc9!important}.text-success{color:#51d88a!important}a.text-success:focus,a.text-success:hover{color:#28b463!important}.text-info{color:#bcdefa!important}a.text-info:focus,a.text-info:hover{color:#75bbf5!important}.text-warning{color:#ffa260!important}a.text-warning:focus,a.text-warning:hover{color:#ff7514!important}.text-danger{color:#ef5753!important}a.text-danger:focus,a.text-danger:hover{color:#e11a15!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:hsla(0,0%,100%,.5)!important}.text-hide{background-color:transparent;border:0;color:transparent;font:0/0 a;text-shadow:none}.text-decoration-none{text-decoration:none!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,:after,:before{box-shadow:none!important;text-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]:after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}.container,body{min-width:9px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#efefef}.table .thead-dark th{border-color:#efefef;color:inherit}}body{padding-bottom:20px}.container{width:1140px}html{min-width:1140px}[v-cloak]{display:none}svg.icon{height:1rem;width:1rem}.header{border-bottom:1px solid #d5dfe9}.header svg.logo{height:2rem;width:2rem}.sidebar .nav-item a{color:#2a5164;padding:.5rem 0}.sidebar .nav-item a svg{fill:#c3cbd3;height:1rem;margin-right:15px;width:1rem}.sidebar .nav-item a.active{color:#7746ec}.sidebar .nav-item a.active svg{fill:#7746ec}.card{border:none;box-shadow:0 2px 3px #cdd8df}.card .bottom-radius{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.card .card-header{background-color:#fff;border-bottom:none;padding-bottom:.7rem;padding-top:.7rem}.card .card-header .btn-group .btn{padding:.2rem .5rem}.card .card-header h5{margin:0}.card .table td,.card .table th{padding:.75rem 1.25rem}.card .table.table-sm td,.card .table.table-sm th{padding:1rem 1.25rem}.card .table th{background-color:#f3f4f6;border-bottom:0;font-weight:400;padding:.5rem 1.25rem}.card .table:not(.table-borderless) td{border-top:1px solid #efefef}.card .table.penultimate-column-right td:nth-last-child(2),.card .table.penultimate-column-right th:nth-last-child(2){text-align:right}.card .table td.table-fit,.card .table th.table-fit{white-space:nowrap;width:1%}.fill-text-color{fill:#212529}.fill-danger{fill:#ef5753}.fill-warning{fill:#ffa260}.fill-info{fill:#bcdefa}.fill-success{fill:#51d88a}.fill-primary{fill:#7746ec}button:hover .fill-primary{fill:#fff}.btn-outline-primary.active .fill-primary{fill:#ebebeb}.btn-outline-primary:not(:disabled):not(.disabled).active:focus{box-shadow:none!important}.control-action svg{fill:#ccd2df;height:1.2rem;width:1.2rem}.control-action svg:hover{fill:#7746ec}.info-icon{fill:#ccd2df}.paginator .btn{color:#9ea7ac;text-decoration:none}.paginator .btn:hover{color:#7746ec}@-webkit-keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.spin{-webkit-animation:spin 2s linear infinite;animation:spin 2s linear infinite}.card .nav-pills .nav-link.active{background:none;border-bottom:2px solid #7746ec;color:#7746ec}.card .nav-pills .nav-link{border-radius:0;color:#212529;font-size:.9rem;padding:.75rem 1.25rem}.list-enter-active:not(.dontanimate){transition:background 1s linear}.list-enter:not(.dontanimate),.list-leave-to:not(.dontanimate){background:#fffee9}.card table td{vertical-align:middle!important}.card-bg-secondary{background:#fafafa}.code-bg{background:#120f12}.disabled-watcher{background:#ef5753;color:#fff;padding:.75rem}.badge-sm{font-size:.75rem} + */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#4b5563;--gray-dark:#1f2937;--primary:#7746ec;--secondary:#6b7280;--success:#10b981;--info:#3b82f6;--warning:#f59e0b;--danger:#ef4444;--light:#f3f4f6;--dark:#1f2937;--breakpoint-xs:0;--breakpoint-sm:2px;--breakpoint-md:8px;--breakpoint-lg:9px;--breakpoint-xl:10px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,:after,:before{box-sizing:border-box}html{-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0);font-family:sans-serif;line-height:1.15}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{background-color:#f3f4f6;color:#111827;font-family:Figtree,sans-serif;font-size:1rem;font-weight:400;line-height:1.5;margin:0;text-align:left}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;margin-top:0}p{margin-bottom:1rem;margin-top:0}abbr[data-original-title],abbr[title]{border-bottom:0;cursor:help;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{font-style:normal;line-height:inherit}address,dl,ol,ul{margin-bottom:1rem}dl,ol,ul{margin-top:0}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:600}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{background-color:transparent;color:#7746ec;text-decoration:none}a:hover{color:#4d15d0;text-decoration:underline}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}pre{-ms-overflow-style:scrollbar;margin-bottom:1rem;margin-top:0;overflow:auto}figure{margin:0 0 1rem}img{border-style:none}img,svg{vertical-align:middle}svg{overflow:hidden}table{border-collapse:collapse}caption{caption-side:bottom;color:#6b7280;padding-bottom:.75rem;padding-top:.75rem;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit;margin:0}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{border:0;margin:0;min-width:0;padding:0}legend{color:inherit;display:block;font-size:1.5rem;line-height:inherit;margin-bottom:.5rem;max-width:100%;padding:0;white-space:normal;width:100%}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:none;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}output{display:inline-block}summary{cursor:pointer;display:list-item}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-weight:500;line-height:1.2;margin-bottom:.5rem}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem}.display-1,.display-2{font-weight:300;line-height:1.2}.display-2{font-size:5.5rem}.display-3{font-size:4.5rem}.display-3,.display-4{font-weight:300;line-height:1.2}.display-4{font-size:3.5rem}hr{border:0;border-top:1px solid rgba(0,0,0,.1);margin-bottom:1rem;margin-top:1rem}.small,small{font-size:.875em;font-weight:400}.mark,mark{background-color:#fcf8e3;padding:.2em}.list-inline,.list-unstyled{list-style:none;padding-left:0}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{font-size:1.25rem;margin-bottom:1rem}.blockquote-footer{color:#4b5563;display:block;font-size:.875em}.blockquote-footer:before{content:"— "}.img-fluid,.img-thumbnail{height:auto;max-width:100%}.img-thumbnail{background-color:#f3f4f6;border:1px solid #d1d5db;border-radius:.25rem;padding:.25rem}.figure{display:inline-block}.figure-img{line-height:1;margin-bottom:.5rem}.figure-caption{color:#4b5563;font-size:90%}code{word-wrap:break-word;color:#e83e8c;font-size:87.5%}a>code{color:inherit}kbd{background-color:#111827;border-radius:.2rem;color:#fff;font-size:87.5%;padding:.2rem .4rem}kbd kbd{font-size:100%;font-weight:600;padding:0}pre{color:#111827;display:block;font-size:87.5%}pre code{color:inherit;font-size:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px;width:100%}@media (min-width:2px){.container,.container-sm{max-width:1137px}}@media (min-width:8px){.container,.container-md,.container-sm{max-width:1138px}}@media (min-width:9px){.container,.container-lg,.container-md,.container-sm{max-width:1139px}}@media (min-width:10px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}.row{display:flex;flex-wrap:wrap;margin-left:-15px;margin-right:-15px}.no-gutters{margin-left:0;margin-right:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-left:0;padding-right:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{padding-left:15px;padding-right:15px;position:relative;width:100%}.col{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-1>*{flex:0 0 100%;max-width:100%}.row-cols-2>*{flex:0 0 50%;max-width:50%}.row-cols-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-4>*{flex:0 0 25%;max-width:25%}.row-cols-5>*{flex:0 0 20%;max-width:20%}.row-cols-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-auto{flex:0 0 auto;max-width:100%;width:auto}.col-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-12{flex:0 0 100%;max-width:100%}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}@media (min-width:2px){.col-sm{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-sm-1>*{flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-auto{flex:0 0 auto;max-width:100%;width:auto}.col-sm-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-sm-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-sm-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-sm-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-sm-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}}@media (min-width:8px){.col-md{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-md-1>*{flex:0 0 100%;max-width:100%}.row-cols-md-2>*{flex:0 0 50%;max-width:50%}.row-cols-md-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-md-4>*{flex:0 0 25%;max-width:25%}.row-cols-md-5>*{flex:0 0 20%;max-width:20%}.row-cols-md-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-auto{flex:0 0 auto;max-width:100%;width:auto}.col-md-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-md-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-md-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-md-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-md-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}}@media (min-width:9px){.col-lg{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-lg-1>*{flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-auto{flex:0 0 auto;max-width:100%;width:auto}.col-lg-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-lg-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-lg-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-lg-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-lg-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}}@media (min-width:10px){.col-xl{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-xl-1>*{flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-auto{flex:0 0 auto;max-width:100%;width:auto}.col-xl-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-xl-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-xl-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-xl-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-xl-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}}.table{color:#111827;margin-bottom:1rem;width:100%}.table td,.table th{border-top:1px solid #e5e7eb;padding:.75rem;vertical-align:top}.table thead th{border-bottom:2px solid #e5e7eb;vertical-align:bottom}.table tbody+tbody{border-top:2px solid #e5e7eb}.table-sm td,.table-sm th{padding:.3rem}.table-bordered,.table-bordered td,.table-bordered th{border:1px solid #e5e7eb}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{background-color:#f3f4f6;color:#111827}.table-primary,.table-primary>td,.table-primary>th{background-color:#d9cbfa}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#b89ff5}.table-hover .table-primary:hover,.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#c8b4f8}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b2b6bd}.table-hover .table-secondary:hover,.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#bcebdc}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#83dbbd}.table-hover .table-success:hover,.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#a8e5d2}.table-info,.table-info>td,.table-info>th{background-color:#c8dcfc}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#99befa}.table-hover .table-info:hover,.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#b0cdfb}.table-warning,.table-warning>td,.table-warning>th{background-color:#fce4bb}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#facd80}.table-hover .table-warning:hover,.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#fbdaa3}.table-danger,.table-danger>td,.table-danger>th{background-color:#fbcbcb}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#f79e9e}.table-hover .table-danger:hover,.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f9b3b3}.table-light,.table-light>td,.table-light>th{background-color:#fcfcfc}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#f9f9fa}.table-hover .table-light:hover,.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#efefef}.table-dark,.table-dark>td,.table-dark>th{background-color:#c0c3c7}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#8b9097}.table-hover .table-dark:hover,.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b3b6bb}.table-active,.table-active>td,.table-active>th{background-color:#f3f4f6}.table-hover .table-active:hover,.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:#e4e7eb}.table .thead-dark th{background-color:#1f2937;border-color:#2d3b4f;color:#fff}.table .thead-light th{background-color:#e5e7eb;border-color:#e5e7eb;color:#374151}.table-dark{background-color:#1f2937;color:#fff}.table-dark td,.table-dark th,.table-dark thead th{border-color:#2d3b4f}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:hsla(0,0%,100%,.05)}.table-dark.table-hover tbody tr:hover{background-color:hsla(0,0%,100%,.075);color:#fff}@media (max-width:1.98px){.table-responsive-sm{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:7.98px){.table-responsive-md{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-md>.table-bordered{border:0}}@media (max-width:8.98px){.table-responsive-lg{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:9.98px){.table-responsive-xl{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive>.table-bordered{border:0}.form-control{background-clip:padding-box;background-color:#fff;border:1px solid #d1d5db;border-radius:.25rem;color:#1f2937;display:block;font-size:1rem;font-weight:400;height:calc(1.5em + .75rem + 2px);line-height:1.5;padding:.375rem .75rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:100%}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{background-color:#fff;border-color:#ccbaf8;box-shadow:0 0 0 .2rem rgba(119,70,236,.25);color:#1f2937;outline:0}.form-control::-moz-placeholder{color:#4b5563;opacity:1}.form-control::placeholder{color:#4b5563;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e5e7eb;opacity:1}input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #1f2937}select.form-control:focus::-ms-value{background-color:#fff;color:#1f2937}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{font-size:inherit;line-height:1.5;margin-bottom:0;padding-bottom:calc(.375rem + 1px);padding-top:calc(.375rem + 1px)}.col-form-label-lg{font-size:1.25rem;line-height:1.5;padding-bottom:calc(.5rem + 1px);padding-top:calc(.5rem + 1px)}.col-form-label-sm{font-size:.875rem;line-height:1.5;padding-bottom:calc(.25rem + 1px);padding-top:calc(.25rem + 1px)}.form-control-plaintext{background-color:transparent;border:solid transparent;border-width:1px 0;color:#111827;display:block;font-size:1rem;line-height:1.5;margin-bottom:0;padding:.375rem 0;width:100%}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-left:0;padding-right:0}.form-control-sm{border-radius:.2rem;font-size:.875rem;height:calc(1.5em + .5rem + 2px);line-height:1.5;padding:.25rem .5rem}.form-control-lg{border-radius:6px;font-size:1.25rem;height:calc(1.5em + 1rem + 2px);line-height:1.5;padding:.5rem 1rem}select.form-control[multiple],select.form-control[size],textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:flex;flex-wrap:wrap;margin-left:-5px;margin-right:-5px}.form-row>.col,.form-row>[class*=col-]{padding-left:5px;padding-right:5px}.form-check{display:block;padding-left:1.25rem;position:relative}.form-check-input{margin-left:-1.25rem;margin-top:.3rem;position:absolute}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#6b7280}.form-check-label{margin-bottom:0}.form-check-inline{align-items:center;display:inline-flex;margin-right:.75rem;padding-left:0}.form-check-inline .form-check-input{margin-left:0;margin-right:.3125rem;margin-top:0;position:static}.valid-feedback{color:#10b981;display:none;font-size:.875em;margin-top:.25rem;width:100%}.valid-tooltip{background-color:rgba(16,185,129,.9);border-radius:.25rem;color:#fff;display:none;font-size:.875rem;left:0;line-height:1.5;margin-top:.1rem;max-width:100%;padding:.25rem .5rem;position:absolute;top:100%;z-index:5}.form-row>.col>.valid-tooltip,.form-row>[class*=col-]>.valid-tooltip{left:5px}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2310b981' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");background-position:right calc(.375em + .1875rem) center;background-repeat:no-repeat;background-size:calc(.75em + .375rem) calc(.75em + .375rem);border-color:#10b981;padding-right:calc(1.5em + .75rem)!important}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#10b981;box-shadow:0 0 0 .2rem rgba(16,185,129,.25)}.was-validated select.form-control:valid,select.form-control.is-valid{background-position:right 1.5rem center;padding-right:3rem!important}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem);padding-right:calc(1.5em + .75rem)}.custom-select.is-valid,.was-validated .custom-select:valid{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%231f2937' d='M2 0 0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2310b981' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat;border-color:#10b981;padding-right:calc(.75em + 2.3125rem)!important}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#10b981;box-shadow:0 0 0 .2rem rgba(16,185,129,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#10b981}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#10b981}.custom-control-input.is-valid~.custom-control-label:before,.was-validated .custom-control-input:valid~.custom-control-label:before{border-color:#10b981}.custom-control-input.is-valid:checked~.custom-control-label:before,.was-validated .custom-control-input:valid:checked~.custom-control-label:before{background-color:#14e8a2;border-color:#14e8a2}.custom-control-input.is-valid:focus~.custom-control-label:before,.was-validated .custom-control-input:valid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(16,185,129,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label:before{border-color:#10b981}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#10b981}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#10b981;box-shadow:0 0 0 .2rem rgba(16,185,129,.25)}.invalid-feedback{color:#ef4444;display:none;font-size:.875em;margin-top:.25rem;width:100%}.invalid-tooltip{background-color:rgba(239,68,68,.9);border-radius:.25rem;color:#fff;display:none;font-size:.875rem;left:0;line-height:1.5;margin-top:.1rem;max-width:100%;padding:.25rem .5rem;position:absolute;top:100%;z-index:5}.form-row>.col>.invalid-tooltip,.form-row>[class*=col-]>.invalid-tooltip{left:5px}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ef4444'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23ef4444' stroke='none'/%3E%3C/svg%3E");background-position:right calc(.375em + .1875rem) center;background-repeat:no-repeat;background-size:calc(.75em + .375rem) calc(.75em + .375rem);border-color:#ef4444;padding-right:calc(1.5em + .75rem)!important}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#ef4444;box-shadow:0 0 0 .2rem rgba(239,68,68,.25)}.was-validated select.form-control:invalid,select.form-control.is-invalid{background-position:right 1.5rem center;padding-right:3rem!important}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem);padding-right:calc(1.5em + .75rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%231f2937' d='M2 0 0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ef4444'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23ef4444' stroke='none'/%3E%3C/svg%3E") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat;border-color:#ef4444;padding-right:calc(.75em + 2.3125rem)!important}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#ef4444;box-shadow:0 0 0 .2rem rgba(239,68,68,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#ef4444}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#ef4444}.custom-control-input.is-invalid~.custom-control-label:before,.was-validated .custom-control-input:invalid~.custom-control-label:before{border-color:#ef4444}.custom-control-input.is-invalid:checked~.custom-control-label:before,.was-validated .custom-control-input:invalid:checked~.custom-control-label:before{background-color:#f37373;border-color:#f37373}.custom-control-input.is-invalid:focus~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(239,68,68,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label:before{border-color:#ef4444}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#ef4444}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#ef4444;box-shadow:0 0 0 .2rem rgba(239,68,68,.25)}.form-inline{align-items:center;display:flex;flex-flow:row wrap}.form-inline .form-check{width:100%}@media (min-width:2px){.form-inline label{justify-content:center}.form-inline .form-group,.form-inline label{align-items:center;display:flex;margin-bottom:0}.form-inline .form-group{flex:0 0 auto;flex-flow:row wrap}.form-inline .form-control{display:inline-block;vertical-align:middle;width:auto}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{align-items:center;display:flex;justify-content:center;padding-left:0;width:auto}.form-inline .form-check-input{flex-shrink:0;margin-left:0;margin-right:.25rem;margin-top:0;position:relative}.form-inline .custom-control{align-items:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{background-color:transparent;border:1px solid transparent;border-radius:.25rem;color:#111827;display:inline-block;font-size:1rem;font-weight:400;line-height:1.5;padding:.375rem .75rem;text-align:center;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#111827;text-decoration:none}.btn.focus,.btn:focus{box-shadow:0 0 0 .2rem rgba(119,70,236,.25);outline:0}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{background-color:#7746ec;border-color:#7746ec;color:#fff}.btn-primary.focus,.btn-primary:focus,.btn-primary:hover{background-color:#5e23e8;border-color:#5518e7;color:#fff}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 0 rgba(139,98,239,.5)}.btn-primary.disabled,.btn-primary:disabled{background-color:#7746ec;border-color:#7746ec;color:#fff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{background-color:#5518e7;border-color:#5117dc;color:#fff}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(139,98,239,.5)}.btn-secondary{background-color:#6b7280;border-color:#6b7280;color:#fff}.btn-secondary.focus,.btn-secondary:focus,.btn-secondary:hover{background-color:#5a5f6b;border-color:#545964;color:#fff}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 0 hsla(220,8%,54%,.5)}.btn-secondary.disabled,.btn-secondary:disabled{background-color:#6b7280;border-color:#6b7280;color:#fff}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{background-color:#545964;border-color:#4e535d;color:#fff}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 0 hsla(220,8%,54%,.5)}.btn-success{background-color:#10b981;border-color:#10b981;color:#fff}.btn-success.focus,.btn-success:focus,.btn-success:hover{background-color:#0d9668;border-color:#0c8a60;color:#fff}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 0 rgba(52,196,148,.5)}.btn-success.disabled,.btn-success:disabled{background-color:#10b981;border-color:#10b981;color:#fff}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{background-color:#0c8a60;border-color:#0b7e58;color:#fff}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(52,196,148,.5)}.btn-info{background-color:#3b82f6;border-color:#3b82f6;color:#fff}.btn-info.focus,.btn-info:focus,.btn-info:hover{background-color:#166bf4;border-color:#0b63f3;color:#fff}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 0 rgba(88,149,247,.5)}.btn-info.disabled,.btn-info:disabled{background-color:#3b82f6;border-color:#3b82f6;color:#fff}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{background-color:#0b63f3;border-color:#0b5ee7;color:#fff}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(88,149,247,.5)}.btn-warning{background-color:#f59e0b;border-color:#f59e0b;color:#111827}.btn-warning.focus,.btn-warning:focus,.btn-warning:hover{background-color:#d18709;border-color:#c57f08;color:#fff}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 0 rgba(211,138,15,.5)}.btn-warning.disabled,.btn-warning:disabled{background-color:#f59e0b;border-color:#f59e0b;color:#111827}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{background-color:#c57f08;border-color:#b97708;color:#fff}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(211,138,15,.5)}.btn-danger{background-color:#ef4444;border-color:#ef4444;color:#fff}.btn-danger.focus,.btn-danger:focus,.btn-danger:hover{background-color:#ec2121;border-color:#eb1515;color:#fff}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 0 rgba(241,96,96,.5)}.btn-danger.disabled,.btn-danger:disabled{background-color:#ef4444;border-color:#ef4444;color:#fff}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{background-color:#eb1515;border-color:#e01313;color:#fff}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(241,96,96,.5)}.btn-light{background-color:#f3f4f6;border-color:#f3f4f6;color:#111827}.btn-light.focus,.btn-light:focus,.btn-light:hover{background-color:#dde0e6;border-color:#d6d9e0;color:#111827}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 0 hsla(220,7%,83%,.5)}.btn-light.disabled,.btn-light:disabled{background-color:#f3f4f6;border-color:#f3f4f6;color:#111827}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{background-color:#d6d9e0;border-color:#cfd3db;color:#111827}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 0 hsla(220,7%,83%,.5)}.btn-dark{background-color:#1f2937;border-color:#1f2937;color:#fff}.btn-dark.focus,.btn-dark:focus,.btn-dark:hover{background-color:#11171f;border-color:#0d1116;color:#fff}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 0 rgba(65,73,85,.5)}.btn-dark.disabled,.btn-dark:disabled{background-color:#1f2937;border-color:#1f2937;color:#fff}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{background-color:#0d1116;border-color:#080b0e;color:#fff}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(65,73,85,.5)}.btn-outline-primary{border-color:#7746ec;color:#7746ec}.btn-outline-primary:hover{background-color:#7746ec;border-color:#7746ec;color:#fff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 0 rgba(119,70,236,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{background-color:transparent;color:#7746ec}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{background-color:#7746ec;border-color:#7746ec;color:#fff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(119,70,236,.5)}.btn-outline-secondary{border-color:#6b7280;color:#6b7280}.btn-outline-secondary:hover{background-color:#6b7280;border-color:#6b7280;color:#fff}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 0 hsla(220,9%,46%,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{background-color:transparent;color:#6b7280}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{background-color:#6b7280;border-color:#6b7280;color:#fff}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 0 hsla(220,9%,46%,.5)}.btn-outline-success{border-color:#10b981;color:#10b981}.btn-outline-success:hover{background-color:#10b981;border-color:#10b981;color:#fff}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 0 rgba(16,185,129,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{background-color:transparent;color:#10b981}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{background-color:#10b981;border-color:#10b981;color:#fff}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(16,185,129,.5)}.btn-outline-info{border-color:#3b82f6;color:#3b82f6}.btn-outline-info:hover{background-color:#3b82f6;border-color:#3b82f6;color:#fff}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 0 rgba(59,130,246,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{background-color:transparent;color:#3b82f6}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{background-color:#3b82f6;border-color:#3b82f6;color:#fff}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(59,130,246,.5)}.btn-outline-warning{border-color:#f59e0b;color:#f59e0b}.btn-outline-warning:hover{background-color:#f59e0b;border-color:#f59e0b;color:#111827}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 0 rgba(245,158,11,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{background-color:transparent;color:#f59e0b}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{background-color:#f59e0b;border-color:#f59e0b;color:#111827}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(245,158,11,.5)}.btn-outline-danger{border-color:#ef4444;color:#ef4444}.btn-outline-danger:hover{background-color:#ef4444;border-color:#ef4444;color:#fff}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 0 rgba(239,68,68,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{background-color:transparent;color:#ef4444}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{background-color:#ef4444;border-color:#ef4444;color:#fff}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(239,68,68,.5)}.btn-outline-light{border-color:#f3f4f6;color:#f3f4f6}.btn-outline-light:hover{background-color:#f3f4f6;border-color:#f3f4f6;color:#111827}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 0 rgba(243,244,246,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{background-color:transparent;color:#f3f4f6}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{background-color:#f3f4f6;border-color:#f3f4f6;color:#111827}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(243,244,246,.5)}.btn-outline-dark{border-color:#1f2937;color:#1f2937}.btn-outline-dark:hover{background-color:#1f2937;border-color:#1f2937;color:#fff}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 0 rgba(31,41,55,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{background-color:transparent;color:#1f2937}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{background-color:#1f2937;border-color:#1f2937;color:#fff}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(31,41,55,.5)}.btn-link{color:#7746ec;font-weight:400;text-decoration:none}.btn-link:hover{color:#4d15d0}.btn-link.focus,.btn-link:focus,.btn-link:hover{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#4b5563;pointer-events:none}.btn-group-lg>.btn,.btn-lg{border-radius:6px;font-size:1.25rem;line-height:1.5;padding:.5rem 1rem}.btn-group-sm>.btn,.btn-sm{border-radius:.2rem;font-size:.875rem;line-height:1.5;padding:.25rem .5rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;position:relative;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.width{height:auto;transition:width .35s ease;width:0}@media (prefers-reduced-motion:reduce){.collapsing.width{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:after{border-bottom:0;border-left:.3em solid transparent;border-right:.3em solid transparent;border-top:.3em solid;content:"";display:inline-block;margin-left:.255em;vertical-align:.255em}.dropdown-toggle:empty:after{margin-left:0}.dropdown-menu{background-clip:padding-box;background-color:#fff;border:1px solid rgba(0,0,0,.15);border-radius:.25rem;color:#111827;display:none;float:left;font-size:1rem;left:0;list-style:none;margin:.125rem 0 0;min-width:10rem;padding:.5rem 0;position:absolute;text-align:left;top:100%;z-index:1000}.dropdown-menu-left{left:0;right:auto}.dropdown-menu-right{left:auto;right:0}@media (min-width:2px){.dropdown-menu-sm-left{left:0;right:auto}.dropdown-menu-sm-right{left:auto;right:0}}@media (min-width:8px){.dropdown-menu-md-left{left:0;right:auto}.dropdown-menu-md-right{left:auto;right:0}}@media (min-width:9px){.dropdown-menu-lg-left{left:0;right:auto}.dropdown-menu-lg-right{left:auto;right:0}}@media (min-width:10px){.dropdown-menu-xl-left{left:0;right:auto}.dropdown-menu-xl-right{left:auto;right:0}}.dropup .dropdown-menu{bottom:100%;margin-bottom:.125rem;margin-top:0;top:auto}.dropup .dropdown-toggle:after{border-bottom:.3em solid;border-left:.3em solid transparent;border-right:.3em solid transparent;border-top:0;content:"";display:inline-block;margin-left:.255em;vertical-align:.255em}.dropup .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-menu{left:100%;margin-left:.125rem;margin-top:0;right:auto;top:0}.dropright .dropdown-toggle:after{border-bottom:.3em solid transparent;border-left:.3em solid;border-right:0;border-top:.3em solid transparent;content:"";display:inline-block;margin-left:.255em;vertical-align:.255em}.dropright .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-toggle:after{vertical-align:0}.dropleft .dropdown-menu{left:auto;margin-right:.125rem;margin-top:0;right:100%;top:0}.dropleft .dropdown-toggle:after{content:"";display:inline-block;display:none;margin-left:.255em;vertical-align:.255em}.dropleft .dropdown-toggle:before{border-bottom:.3em solid transparent;border-right:.3em solid;border-top:.3em solid transparent;content:"";display:inline-block;margin-right:.255em;vertical-align:.255em}.dropleft .dropdown-toggle:empty:after{margin-left:0}.dropleft .dropdown-toggle:before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{bottom:auto;right:auto}.dropdown-divider{border-top:1px solid #e5e7eb;height:0;margin:.5rem 0;overflow:hidden}.dropdown-item{background-color:transparent;border:0;clear:both;color:#374151;display:block;font-weight:400;padding:.25rem 1.5rem;text-align:inherit;white-space:nowrap;width:100%}.dropdown-item:focus,.dropdown-item:hover{background-color:#e5e7eb;color:#090d15;text-decoration:none}.dropdown-item.active,.dropdown-item:active{background-color:#7746ec;color:#fff;text-decoration:none}.dropdown-item.disabled,.dropdown-item:disabled{background-color:transparent;color:#6b7280;pointer-events:none}.dropdown-menu.show{display:block}.dropdown-header{color:#4b5563;display:block;font-size:.875rem;margin-bottom:0;padding:.5rem 1.5rem;white-space:nowrap}.dropdown-item-text{color:#374151;display:block;padding:.25rem 1.5rem}.btn-group,.btn-group-vertical{display:inline-flex;position:relative;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{flex:1 1 auto;position:relative}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.dropdown-toggle-split{padding-left:.5625rem;padding-right:.5625rem}.dropdown-toggle-split:after,.dropright .dropdown-toggle-split:after,.dropup .dropdown-toggle-split:after{margin-left:0}.dropleft .dropdown-toggle-split:before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-left:.375rem;padding-right:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-left:.75rem;padding-right:.75rem}.btn-group-vertical{align-items:flex-start;flex-direction:column;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-left-radius:0;border-bottom-right-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{clip:rect(0,0,0,0);pointer-events:none;position:absolute}.input-group{align-items:stretch;display:flex;flex-wrap:wrap;position:relative;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{flex:1 1 auto;margin-bottom:0;min-width:0;position:relative;width:1%}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.input-group>.custom-file{align-items:center;display:flex}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label:after{border-bottom-right-radius:0;border-top-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-bottom-left-radius:0;border-top-left-radius:0}.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label,.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label:after,.input-group.has-validation>.custom-select:nth-last-child(n+3),.input-group.has-validation>.form-control:nth-last-child(n+3),.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label,.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label:after,.input-group:not(.has-validation)>.custom-select:not(:last-child),.input-group:not(.has-validation)>.form-control:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.input-group-append,.input-group-prepend{display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{align-items:center;background-color:#e5e7eb;border:1px solid #d1d5db;border-radius:.25rem;color:#1f2937;display:flex;font-size:1rem;font-weight:400;line-height:1.5;margin-bottom:0;padding:.375rem .75rem;text-align:center;white-space:nowrap}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{border-radius:6px;font-size:1.25rem;line-height:1.5;padding:.5rem 1rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{border-radius:.2rem;font-size:.875rem;line-height:1.5;padding:.25rem .5rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-bottom-right-radius:0;border-top-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-bottom-left-radius:0;border-top-left-radius:0}.custom-control{display:block;min-height:1.5rem;padding-left:1.5rem;position:relative;-webkit-print-color-adjust:exact;print-color-adjust:exact;z-index:1}.custom-control-inline{display:inline-flex;margin-right:1rem}.custom-control-input{height:1.25rem;left:0;opacity:0;position:absolute;width:1rem;z-index:-1}.custom-control-input:checked~.custom-control-label:before{background-color:#7746ec;border-color:#7746ec;color:#fff}.custom-control-input:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(119,70,236,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label:before{border-color:#ccbaf8}.custom-control-input:not(:disabled):active~.custom-control-label:before{background-color:#eee8fd;border-color:#eee8fd;color:#fff}.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label{color:#4b5563}.custom-control-input:disabled~.custom-control-label:before,.custom-control-input[disabled]~.custom-control-label:before{background-color:#e5e7eb}.custom-control-label{margin-bottom:0;position:relative;vertical-align:top}.custom-control-label:before{background-color:#fff;border:1px solid #6b7280;pointer-events:none}.custom-control-label:after,.custom-control-label:before{content:"";display:block;height:1rem;left:-1.5rem;position:absolute;top:.25rem;width:1rem}.custom-control-label:after{background:50%/50% 50% no-repeat}.custom-checkbox .custom-control-label:before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%23fff' d='m6.564.75-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:before{background-color:#7746ec;border-color:#7746ec}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(119,70,236,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label:before{background-color:rgba(119,70,236,.5)}.custom-radio .custom-control-label:before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(119,70,236,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label:before{border-radius:.5rem;left:-2.25rem;pointer-events:all;width:1.75rem}.custom-switch .custom-control-label:after{background-color:#6b7280;border-radius:.5rem;height:calc(1rem - 4px);left:calc(-2.25rem + 2px);top:calc(.25rem + 2px);transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:calc(1rem - 4px)}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label:after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label:after{background-color:#fff;transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(119,70,236,.5)}.custom-select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%231f2937' d='M2 0 0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat;border:1px solid #d1d5db;border-radius:.25rem;color:#1f2937;display:inline-block;font-size:1rem;font-weight:400;height:calc(1.5em + .75rem + 2px);line-height:1.5;padding:.375rem 1.75rem .375rem .75rem;vertical-align:middle;width:100%}.custom-select:focus{border-color:#ccbaf8;box-shadow:0 0 0 .2rem rgba(119,70,236,.25);outline:0}.custom-select:focus::-ms-value{background-color:#fff;color:#1f2937}.custom-select[multiple],.custom-select[size]:not([size="1"]){background-image:none;height:auto;padding-right:.75rem}.custom-select:disabled{background-color:#e5e7eb;color:#4b5563}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #1f2937}.custom-select-sm{font-size:.875rem;height:calc(1.5em + .5rem + 2px);padding-bottom:.25rem;padding-left:.5rem;padding-top:.25rem}.custom-select-lg{font-size:1.25rem;height:calc(1.5em + 1rem + 2px);padding-bottom:.5rem;padding-left:1rem;padding-top:.5rem}.custom-file{display:inline-block;margin-bottom:0}.custom-file,.custom-file-input{height:calc(1.5em + .75rem + 2px);position:relative;width:100%}.custom-file-input{margin:0;opacity:0;overflow:hidden;z-index:2}.custom-file-input:focus~.custom-file-label{border-color:#ccbaf8;box-shadow:0 0 0 .2rem rgba(119,70,236,.25)}.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#e5e7eb}.custom-file-input:lang(en)~.custom-file-label:after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]:after{content:attr(data-browse)}.custom-file-label{background-color:#fff;border:1px solid #d1d5db;border-radius:.25rem;font-weight:400;height:calc(1.5em + .75rem + 2px);left:0;overflow:hidden;z-index:1}.custom-file-label,.custom-file-label:after{color:#1f2937;line-height:1.5;padding:.375rem .75rem;position:absolute;right:0;top:0}.custom-file-label:after{background-color:#e5e7eb;border-left:inherit;border-radius:0 .25rem .25rem 0;bottom:0;content:"Browse";display:block;height:calc(1.5em + .75rem);z-index:3}.custom-range{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;height:1.4rem;padding:0;width:100%}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #f3f4f6,0 0 0 .2rem rgba(119,70,236,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #f3f4f6,0 0 0 .2rem rgba(119,70,236,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #f3f4f6,0 0 0 .2rem rgba(119,70,236,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;background-color:#7746ec;border:0;border-radius:1rem;height:1rem;margin-top:-.25rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:1rem}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#eee8fd}.custom-range::-webkit-slider-runnable-track{background-color:#d1d5db;border-color:transparent;border-radius:1rem;color:transparent;cursor:pointer;height:.5rem;width:100%}.custom-range::-moz-range-thumb{-moz-appearance:none;appearance:none;background-color:#7746ec;border:0;border-radius:1rem;height:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:1rem}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#eee8fd}.custom-range::-moz-range-track{background-color:#d1d5db;border-color:transparent;border-radius:1rem;color:transparent;cursor:pointer;height:.5rem;width:100%}.custom-range::-ms-thumb{appearance:none;background-color:#7746ec;border:0;border-radius:1rem;height:1rem;margin-left:.2rem;margin-right:.2rem;margin-top:0;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:1rem}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#eee8fd}.custom-range::-ms-track{background-color:transparent;border-color:transparent;border-width:.5rem;color:transparent;cursor:pointer;height:.5rem;width:100%}.custom-range::-ms-fill-lower,.custom-range::-ms-fill-upper{background-color:#d1d5db;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px}.custom-range:disabled::-webkit-slider-thumb{background-color:#6b7280}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#6b7280}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#6b7280}.custom-control-label:before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label:before,.custom-file-label,.custom-select{transition:none}}.nav{display:flex;flex-wrap:wrap;list-style:none;margin-bottom:0;padding-left:0}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#4b5563;cursor:default;pointer-events:none}.nav-tabs{border-bottom:1px solid #d1d5db}.nav-tabs .nav-link{background-color:transparent;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem;margin-bottom:-1px}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e5e7eb #e5e7eb #d1d5db;isolation:isolate}.nav-tabs .nav-link.disabled{background-color:transparent;border-color:transparent;color:#4b5563}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{background-color:#f3f4f6;border-color:#d1d5db #d1d5db #f3f4f6;color:#374151}.nav-tabs .dropdown-menu{border-top-left-radius:0;border-top-right-radius:0;margin-top:-1px}.nav-pills .nav-link{background:none;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{background-color:#e5e7eb;color:#fff}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{padding:.5rem 1rem;position:relative}.navbar,.navbar .container,.navbar .container-fluid,.navbar .container-lg,.navbar .container-md,.navbar .container-sm,.navbar .container-xl{align-items:center;display:flex;flex-wrap:wrap;justify-content:space-between}.navbar-brand{display:inline-block;font-size:1.25rem;line-height:inherit;margin-right:1rem;padding-bottom:.3125rem;padding-top:.3125rem;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:flex;flex-direction:column;list-style:none;margin-bottom:0;padding-left:0}.navbar-nav .nav-link{padding-left:0;padding-right:0}.navbar-nav .dropdown-menu{float:none;position:static}.navbar-text{display:inline-block;padding-bottom:.5rem;padding-top:.5rem}.navbar-collapse{align-items:center;flex-basis:100%;flex-grow:1}.navbar-toggler{background-color:transparent;border:1px solid transparent;border-radius:.25rem;font-size:1.25rem;line-height:1;padding:.25rem .75rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{background:50%/100% 100% no-repeat;content:"";display:inline-block;height:1.5em;vertical-align:middle;width:1.5em}.navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media (max-width:1.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{padding-left:0;padding-right:0}}@media (min-width:2px){.navbar-expand-sm{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{flex-wrap:nowrap}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:7.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{padding-left:0;padding-right:0}}@media (min-width:8px){.navbar-expand-md{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{flex-wrap:nowrap}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:8.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{padding-left:0;padding-right:0}}@media (min-width:9px){.navbar-expand-lg{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{flex-wrap:nowrap}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:9.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{padding-left:0;padding-right:0}}@media (min-width:10px){.navbar-expand-xl{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{flex-wrap:nowrap}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{padding-left:0;padding-right:0}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{flex-wrap:nowrap}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand,.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{border-color:rgba(0,0,0,.1);color:rgba(0,0,0,.5)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand,.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:hsla(0,0%,100%,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:hsla(0,0%,100%,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{border-color:hsla(0,0%,100%,.1);color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-dark .navbar-text{color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{word-wrap:break-word;background-clip:border-box;background-color:#fff;border:1px solid rgba(0,0,0,.125);border-radius:6px;display:flex;flex-direction:column;min-width:0;position:relative}.card>hr{margin-left:0;margin-right:0}.card>.list-group{border-bottom:inherit;border-top:inherit}.card>.list-group:first-child{border-top-left-radius:5px;border-top-right-radius:5px;border-top-width:0}.card>.list-group:last-child{border-bottom-left-radius:5px;border-bottom-right-radius:5px;border-bottom-width:0}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem}.card-subtitle,.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{background-color:#fff;border-bottom:1px solid rgba(0,0,0,.125);margin-bottom:0;padding:.75rem 1.25rem}.card-header:first-child{border-radius:5px 5px 0 0}.card-footer{background-color:#fff;border-top:1px solid rgba(0,0,0,.125);padding:.75rem 1.25rem}.card-footer:last-child{border-radius:0 0 5px 5px}.card-header-tabs{border-bottom:0;margin-bottom:-.75rem}.card-header-pills,.card-header-tabs{margin-left:-.625rem;margin-right:-.625rem}.card-img-overlay{border-radius:5px;bottom:0;left:0;padding:1.25rem;position:absolute;right:0;top:0}.card-img,.card-img-bottom,.card-img-top{flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:5px;border-top-right-radius:5px}.card-img,.card-img-bottom{border-bottom-left-radius:5px;border-bottom-right-radius:5px}.card-deck .card{margin-bottom:15px}@media (min-width:2px){.card-deck{display:flex;flex-flow:row wrap;margin-left:-15px;margin-right:-15px}.card-deck .card{flex:1 0 0%;margin-bottom:0;margin-left:15px;margin-right:15px}}.card-group>.card{margin-bottom:15px}@media (min-width:2px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{border-left:0;margin-left:0}.card-group>.card:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:2px){.card-columns{-moz-column-count:3;column-count:3;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion{overflow-anchor:none}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-left-radius:0;border-bottom-right-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{background-color:#e5e7eb;border-radius:.25rem;display:flex;flex-wrap:wrap;list-style:none;margin-bottom:1rem;padding:.75rem 1rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item:before{color:#4b5563;content:"/";float:left;padding-right:.5rem}.breadcrumb-item+.breadcrumb-item:hover:before{text-decoration:underline;text-decoration:none}.breadcrumb-item.active{color:#4b5563}.pagination{border-radius:.25rem;display:flex;list-style:none;padding-left:0}.page-link{background-color:#fff;border:1px solid #d1d5db;color:#7746ec;display:block;line-height:1.25;margin-left:-1px;padding:.5rem .75rem;position:relative}.page-link:hover{background-color:#e5e7eb;border-color:#d1d5db;color:#4d15d0;text-decoration:none;z-index:2}.page-link:focus{box-shadow:0 0 0 .2rem rgba(119,70,236,.25);outline:0;z-index:3}.page-item:first-child .page-link{border-bottom-left-radius:.25rem;border-top-left-radius:.25rem;margin-left:0}.page-item:last-child .page-link{border-bottom-right-radius:.25rem;border-top-right-radius:.25rem}.page-item.active .page-link{background-color:#7746ec;border-color:#7746ec;color:#fff;z-index:3}.page-item.disabled .page-link{background-color:#fff;border-color:#d1d5db;color:#4b5563;cursor:auto;pointer-events:none}.pagination-lg .page-link{font-size:1.25rem;line-height:1.5;padding:.75rem 1.5rem}.pagination-lg .page-item:first-child .page-link{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg .page-item:last-child .page-link{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm .page-link{font-size:.875rem;line-height:1.5;padding:.25rem .5rem}.pagination-sm .page-item:first-child .page-link{border-bottom-left-radius:.2rem;border-top-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-bottom-right-radius:.2rem;border-top-right-radius:.2rem}.badge{border-radius:.25rem;display:inline-block;font-size:.875rem;font-weight:600;line-height:1;padding:.25em .4em;text-align:center;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;vertical-align:baseline;white-space:nowrap}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{border-radius:10rem;padding-left:.6em;padding-right:.6em}.badge-primary{background-color:#7746ec;color:#fff}a.badge-primary:focus,a.badge-primary:hover{background-color:#5518e7;color:#fff}a.badge-primary.focus,a.badge-primary:focus{box-shadow:0 0 0 .2rem rgba(119,70,236,.5);outline:0}.badge-secondary{background-color:#6b7280;color:#fff}a.badge-secondary:focus,a.badge-secondary:hover{background-color:#545964;color:#fff}a.badge-secondary.focus,a.badge-secondary:focus{box-shadow:0 0 0 .2rem hsla(220,9%,46%,.5);outline:0}.badge-success{background-color:#10b981;color:#fff}a.badge-success:focus,a.badge-success:hover{background-color:#0c8a60;color:#fff}a.badge-success.focus,a.badge-success:focus{box-shadow:0 0 0 .2rem rgba(16,185,129,.5);outline:0}.badge-info{background-color:#3b82f6;color:#fff}a.badge-info:focus,a.badge-info:hover{background-color:#0b63f3;color:#fff}a.badge-info.focus,a.badge-info:focus{box-shadow:0 0 0 .2rem rgba(59,130,246,.5);outline:0}.badge-warning{background-color:#f59e0b;color:#111827}a.badge-warning:focus,a.badge-warning:hover{background-color:#c57f08;color:#111827}a.badge-warning.focus,a.badge-warning:focus{box-shadow:0 0 0 .2rem rgba(245,158,11,.5);outline:0}.badge-danger{background-color:#ef4444;color:#fff}a.badge-danger:focus,a.badge-danger:hover{background-color:#eb1515;color:#fff}a.badge-danger.focus,a.badge-danger:focus{box-shadow:0 0 0 .2rem rgba(239,68,68,.5);outline:0}.badge-light{background-color:#f3f4f6;color:#111827}a.badge-light:focus,a.badge-light:hover{background-color:#d6d9e0;color:#111827}a.badge-light.focus,a.badge-light:focus{box-shadow:0 0 0 .2rem rgba(243,244,246,.5);outline:0}.badge-dark{background-color:#1f2937;color:#fff}a.badge-dark:focus,a.badge-dark:hover{background-color:#0d1116;color:#fff}a.badge-dark.focus,a.badge-dark:focus{box-shadow:0 0 0 .2rem rgba(31,41,55,.5);outline:0}.jumbotron{background-color:#e5e7eb;border-radius:6px;margin-bottom:2rem;padding:2rem 1rem}@media (min-width:2px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{border-radius:0;padding-left:0;padding-right:0}.alert{border:1px solid transparent;border-radius:.25rem;margin-bottom:1rem;padding:.75rem 1.25rem;position:relative}.alert-heading{color:inherit}.alert-link{font-weight:600}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{color:inherit;padding:.75rem 1.25rem;position:absolute;right:0;top:0;z-index:2}.alert-primary{background-color:#e4dafb;border-color:#d9cbfa;color:#3e247b}.alert-primary hr{border-top-color:#c8b4f8}.alert-primary .alert-link{color:#2a1854}.alert-secondary{background-color:#e1e3e6;border-color:#d6d8db;color:#383b43}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#212327}.alert-success{background-color:#cff1e6;border-color:#bcebdc;color:#086043}.alert-success hr{border-top-color:#a8e5d2}.alert-success .alert-link{color:#043122}.alert-info{background-color:#d8e6fd;border-color:#c8dcfc;color:#1f4480}.alert-info hr{border-top-color:#b0cdfb}.alert-info .alert-link{color:#152e57}.alert-warning{background-color:#fdecce;border-color:#fce4bb;color:#7f5206}.alert-warning hr{border-top-color:#fbdaa3}.alert-warning .alert-link{color:#4e3304}.alert-danger{background-color:#fcdada;border-color:#fbcbcb;color:#7c2323}.alert-danger hr{border-top-color:#f9b3b3}.alert-danger .alert-link{color:#541818}.alert-light{background-color:#fdfdfd;border-color:#fcfcfc;color:#7e7f80}.alert-light hr{border-top-color:#efefef}.alert-light .alert-link{color:#656666}.alert-dark{background-color:#d2d4d7;border-color:#c0c3c7;color:#10151d}.alert-dark hr{border-top-color:#b3b6bb}.alert-dark .alert-link{color:#000}@keyframes progress-bar-stripes{0%{background-position:1rem 0}to{background-position:0 0}}.progress{background-color:#e5e7eb;border-radius:.25rem;font-size:.75rem;height:1rem;line-height:0}.progress,.progress-bar{display:flex;overflow:hidden}.progress-bar{background-color:#7746ec;color:#fff;flex-direction:column;justify-content:center;text-align:center;transition:width .6s ease;white-space:nowrap}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem}.progress-bar-animated{animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion:reduce){.progress-bar-animated{animation:none}}.media{align-items:flex-start;display:flex}.media-body{flex:1}.list-group{border-radius:.25rem;display:flex;flex-direction:column;margin-bottom:0;padding-left:0}.list-group-item-action{color:#374151;text-align:inherit;width:100%}.list-group-item-action:focus,.list-group-item-action:hover{background-color:#f3f4f6;color:#374151;text-decoration:none;z-index:1}.list-group-item-action:active{background-color:#e5e7eb;color:#111827}.list-group-item{background-color:#fff;border:1px solid rgba(0,0,0,.125);display:block;padding:.75rem 1.25rem;position:relative}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{background-color:#fff;color:#4b5563;pointer-events:none}.list-group-item.active{background-color:#7746ec;border-color:#7746ec;color:#fff;z-index:2}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{border-top-width:1px;margin-top:-1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}@media (min-width:2px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}@media (min-width:8px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-md>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}@media (min-width:9px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}@media (min-width:10px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{background-color:#d9cbfa;color:#3e247b}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{background-color:#c8b4f8;color:#3e247b}.list-group-item-primary.list-group-item-action.active{background-color:#3e247b;border-color:#3e247b;color:#fff}.list-group-item-secondary{background-color:#d6d8db;color:#383b43}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{background-color:#c8cbcf;color:#383b43}.list-group-item-secondary.list-group-item-action.active{background-color:#383b43;border-color:#383b43;color:#fff}.list-group-item-success{background-color:#bcebdc;color:#086043}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{background-color:#a8e5d2;color:#086043}.list-group-item-success.list-group-item-action.active{background-color:#086043;border-color:#086043;color:#fff}.list-group-item-info{background-color:#c8dcfc;color:#1f4480}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{background-color:#b0cdfb;color:#1f4480}.list-group-item-info.list-group-item-action.active{background-color:#1f4480;border-color:#1f4480;color:#fff}.list-group-item-warning{background-color:#fce4bb;color:#7f5206}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{background-color:#fbdaa3;color:#7f5206}.list-group-item-warning.list-group-item-action.active{background-color:#7f5206;border-color:#7f5206;color:#fff}.list-group-item-danger{background-color:#fbcbcb;color:#7c2323}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{background-color:#f9b3b3;color:#7c2323}.list-group-item-danger.list-group-item-action.active{background-color:#7c2323;border-color:#7c2323;color:#fff}.list-group-item-light{background-color:#fcfcfc;color:#7e7f80}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{background-color:#efefef;color:#7e7f80}.list-group-item-light.list-group-item-action.active{background-color:#7e7f80;border-color:#7e7f80;color:#fff}.list-group-item-dark{background-color:#c0c3c7;color:#10151d}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{background-color:#b3b6bb;color:#10151d}.list-group-item-dark.list-group-item-action.active{background-color:#10151d;border-color:#10151d;color:#fff}.close{color:#000;float:right;font-size:1.5rem;font-weight:600;line-height:1;opacity:.5;text-shadow:0 1px 0 #fff}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{background-color:transparent;border:0;padding:0}a.close.disabled{pointer-events:none}.toast{background-clip:padding-box;background-color:hsla(0,0%,100%,.85);border:1px solid rgba(0,0,0,.1);border-radius:.25rem;box-shadow:0 .25rem .75rem rgba(0,0,0,.1);flex-basis:350px;font-size:.875rem;max-width:350px;opacity:0}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{align-items:center;background-clip:padding-box;background-color:hsla(0,0%,100%,.85);border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px);color:#4b5563;display:flex;padding:.25rem .75rem}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{display:none;height:100%;left:0;outline:0;overflow:hidden;position:fixed;top:0;width:100%;z-index:1050}.modal-dialog{margin:.5rem;pointer-events:none;position:relative;width:auto}.modal.fade .modal-dialog{transform:translateY(-50px);transition:transform .3s ease-out}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{align-items:center;display:flex;min-height:calc(100% - 1rem)}.modal-dialog-centered:before{content:"";display:block;height:calc(100vh - 1rem);height:-moz-min-content;height:min-content}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;height:100%;justify-content:center}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable:before{content:none}.modal-content{background-clip:padding-box;background-color:#fff;border:1px solid rgba(0,0,0,.2);border-radius:6px;display:flex;flex-direction:column;outline:0;pointer-events:auto;position:relative;width:100%}.modal-backdrop{background-color:#000;height:100vh;left:0;position:fixed;top:0;width:100vw;z-index:1040}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{align-items:flex-start;border-bottom:1px solid #d1d5db;border-top-left-radius:5px;border-top-right-radius:5px;display:flex;justify-content:space-between;padding:1rem}.modal-header .close{margin:-1rem -1rem -1rem auto;padding:1rem}.modal-title{line-height:1.5;margin-bottom:0}.modal-body{flex:1 1 auto;padding:1rem;position:relative}.modal-footer{align-items:center;border-bottom-left-radius:5px;border-bottom-right-radius:5px;border-top:1px solid #d1d5db;display:flex;flex-wrap:wrap;justify-content:flex-end;padding:.75rem}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{height:50px;overflow:scroll;position:absolute;top:-9999px;width:50px}@media (min-width:2px){.modal-dialog{margin:1.75rem auto;max-width:500px}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered:before{height:calc(100vh - 3.5rem);height:-moz-min-content;height:min-content}.modal-sm{max-width:300px}}@media (min-width:9px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:10px){.modal-xl{max-width:1140px}}.tooltip{word-wrap:break-word;display:block;font-family:Figtree,sans-serif;font-size:.875rem;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.5;margin:0;opacity:0;position:absolute;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;z-index:1070}.tooltip.show{opacity:.9}.tooltip .arrow{display:block;height:.4rem;position:absolute;width:.8rem}.tooltip .arrow:before{border-color:transparent;border-style:solid;content:"";position:absolute}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow:before,.bs-tooltip-top .arrow:before{border-top-color:#000;border-width:.4rem .4rem 0;top:0}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{height:.8rem;left:0;width:.4rem}.bs-tooltip-auto[x-placement^=right] .arrow:before,.bs-tooltip-right .arrow:before{border-right-color:#000;border-width:.4rem .4rem .4rem 0;right:0}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow:before,.bs-tooltip-bottom .arrow:before{border-bottom-color:#000;border-width:0 .4rem .4rem;bottom:0}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{height:.8rem;right:0;width:.4rem}.bs-tooltip-auto[x-placement^=left] .arrow:before,.bs-tooltip-left .arrow:before{border-left-color:#000;border-width:.4rem 0 .4rem .4rem;left:0}.tooltip-inner{background-color:#000;border-radius:.25rem;color:#fff;max-width:200px;padding:.25rem .5rem;text-align:center}.popover{word-wrap:break-word;background-clip:padding-box;background-color:#fff;border:1px solid rgba(0,0,0,.2);border-radius:6px;font-family:Figtree,sans-serif;font-size:.875rem;font-style:normal;font-weight:400;left:0;letter-spacing:normal;line-break:auto;line-height:1.5;max-width:276px;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;top:0;white-space:normal;word-break:normal;word-spacing:normal;z-index:1060}.popover,.popover .arrow{display:block;position:absolute}.popover .arrow{height:.5rem;margin:0 6px;width:1rem}.popover .arrow:after,.popover .arrow:before{border-color:transparent;border-style:solid;content:"";display:block;position:absolute}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=top]>.arrow:before,.bs-popover-top>.arrow:before{border-top-color:rgba(0,0,0,.25);border-width:.5rem .5rem 0;bottom:0}.bs-popover-auto[x-placement^=top]>.arrow:after,.bs-popover-top>.arrow:after{border-top-color:#fff;border-width:.5rem .5rem 0;bottom:1px}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{height:1rem;left:calc(-.5rem - 1px);margin:6px 0;width:.5rem}.bs-popover-auto[x-placement^=right]>.arrow:before,.bs-popover-right>.arrow:before{border-right-color:rgba(0,0,0,.25);border-width:.5rem .5rem .5rem 0;left:0}.bs-popover-auto[x-placement^=right]>.arrow:after,.bs-popover-right>.arrow:after{border-right-color:#fff;border-width:.5rem .5rem .5rem 0;left:1px}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=bottom]>.arrow:before,.bs-popover-bottom>.arrow:before{border-bottom-color:rgba(0,0,0,.25);border-width:0 .5rem .5rem;top:0}.bs-popover-auto[x-placement^=bottom]>.arrow:after,.bs-popover-bottom>.arrow:after{border-bottom-color:#fff;border-width:0 .5rem .5rem;top:1px}.bs-popover-auto[x-placement^=bottom] .popover-header:before,.bs-popover-bottom .popover-header:before{border-bottom:1px solid #f7f7f7;content:"";display:block;left:50%;margin-left:-.5rem;position:absolute;top:0;width:1rem}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{height:1rem;margin:6px 0;right:calc(-.5rem - 1px);width:.5rem}.bs-popover-auto[x-placement^=left]>.arrow:before,.bs-popover-left>.arrow:before{border-left-color:rgba(0,0,0,.25);border-width:.5rem 0 .5rem .5rem;right:0}.bs-popover-auto[x-placement^=left]>.arrow:after,.bs-popover-left>.arrow:after{border-left-color:#fff;border-width:.5rem 0 .5rem .5rem;right:1px}.popover-header{background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:5px;border-top-right-radius:5px;font-size:1rem;margin-bottom:0;padding:.5rem .75rem}.popover-header:empty{display:none}.popover-body{color:#111827;padding:.5rem .75rem}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{overflow:hidden;position:relative;width:100%}.carousel-inner:after{clear:both;content:"";display:block}.carousel-item{-webkit-backface-visibility:hidden;backface-visibility:hidden;display:none;float:left;margin-right:-100%;position:relative;transition:transform .6s ease-in-out;width:100%}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transform:none;transition-property:opacity}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{opacity:1;z-index:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{opacity:0;transition:opacity 0s .6s;z-index:0}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{align-items:center;background:none;border:0;bottom:0;color:#fff;display:flex;justify-content:center;opacity:.5;padding:0;position:absolute;text-align:center;top:0;transition:opacity .15s ease;width:15%;z-index:1}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;opacity:.9;outline:0;text-decoration:none}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{background:50%/100% 100% no-repeat;display:inline-block;height:20px;width:20px}.carousel-control-prev-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='m5.25 0-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3E%3C/svg%3E")}.carousel-control-next-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='m2.75 0-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3E%3C/svg%3E")}.carousel-indicators{bottom:0;display:flex;justify-content:center;left:0;list-style:none;margin-left:15%;margin-right:15%;padding-left:0;position:absolute;right:0;z-index:15}.carousel-indicators li{background-clip:padding-box;background-color:#fff;border-bottom:10px solid transparent;border-top:10px solid transparent;box-sizing:content-box;cursor:pointer;flex:0 1 auto;height:3px;margin-left:3px;margin-right:3px;opacity:.5;text-indent:-999px;transition:opacity .6s ease;width:30px}@media (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{bottom:20px;color:#fff;left:15%;padding-bottom:20px;padding-top:20px;position:absolute;right:15%;text-align:center;z-index:10}@keyframes spinner-border{to{transform:rotate(1turn)}}.spinner-border{animation:spinner-border .75s linear infinite;border:.25em solid;border-radius:50%;border-right:.25em solid transparent;display:inline-block;height:2rem;vertical-align:-.125em;width:2rem}.spinner-border-sm{border-width:.2em;height:1rem;width:1rem}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{animation:spinner-grow .75s linear infinite;background-color:currentcolor;border-radius:50%;display:inline-block;height:2rem;opacity:0;vertical-align:-.125em;width:2rem}.spinner-grow-sm{height:1rem;width:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{animation-duration:1.5s}}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#7746ec!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#5518e7!important}.bg-secondary{background-color:#6b7280!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545964!important}.bg-success{background-color:#10b981!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#0c8a60!important}.bg-info{background-color:#3b82f6!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#0b63f3!important}.bg-warning{background-color:#f59e0b!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#c57f08!important}.bg-danger{background-color:#ef4444!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#eb1515!important}.bg-light{background-color:#f3f4f6!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#d6d9e0!important}.bg-dark{background-color:#1f2937!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#0d1116!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #d1d5db!important}.border-top{border-top:1px solid #d1d5db!important}.border-right{border-right:1px solid #d1d5db!important}.border-bottom{border-bottom:1px solid #d1d5db!important}.border-left{border-left:1px solid #d1d5db!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#7746ec!important}.border-secondary{border-color:#6b7280!important}.border-success{border-color:#10b981!important}.border-info{border-color:#3b82f6!important}.border-warning{border-color:#f59e0b!important}.border-danger{border-color:#ef4444!important}.border-light{border-color:#f3f4f6!important}.border-dark{border-color:#1f2937!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important}.rounded-right,.rounded-top{border-top-right-radius:.25rem!important}.rounded-bottom,.rounded-right{border-bottom-right-radius:.25rem!important}.rounded-bottom,.rounded-left{border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important}.rounded-lg{border-radius:6px!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix:after{clear:both;content:"";display:block}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}@media (min-width:2px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}}@media (min-width:8px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}}@media (min-width:9px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}}@media (min-width:10px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}}.embed-responsive{display:block;overflow:hidden;padding:0;position:relative;width:100%}.embed-responsive:before{content:"";display:block}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{border:0;bottom:0;height:100%;left:0;position:absolute;top:0;width:100%}.embed-responsive-21by9:before{padding-top:42.85714286%}.embed-responsive-16by9:before{padding-top:56.25%}.embed-responsive-4by3:before{padding-top:75%}.embed-responsive-1by1:before{padding-top:100%}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-fill{flex:1 1 auto!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}@media (min-width:2px){.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}}@media (min-width:8px){.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}}@media (min-width:9px){.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}}@media (min-width:10px){.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:2px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:8px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:9px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:10px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:sticky!important}.fixed-top{top:0}.fixed-bottom,.fixed-top{left:0;position:fixed;right:0;z-index:1030}.fixed-bottom{bottom:0}@supports (position:sticky){.sticky-top{position:sticky;top:0;z-index:1020}}.sr-only{clip:rect(0,0,0,0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;overflow:visible;position:static;white-space:normal;width:auto}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:2px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:8px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:9px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:10px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.stretched-link:after{background-color:transparent;bottom:0;content:"";left:0;pointer-events:auto;position:absolute;right:0;top:0;z-index:1}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:2px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:8px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:9px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:10px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:600!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#7746ec!important}a.text-primary:focus,a.text-primary:hover{color:#4d15d0!important}.text-secondary{color:#6b7280!important}a.text-secondary:focus,a.text-secondary:hover{color:#484d56!important}.text-success{color:#10b981!important}a.text-success:focus,a.text-success:hover{color:#0a7350!important}.text-info{color:#3b82f6!important}a.text-info:focus,a.text-info:hover{color:#0a59da!important}.text-warning{color:#f59e0b!important}a.text-warning:focus,a.text-warning:hover{color:#ac6f07!important}.text-danger{color:#ef4444!important}a.text-danger:focus,a.text-danger:hover{color:#d41212!important}.text-light{color:#f3f4f6!important}a.text-light:focus,a.text-light:hover{color:#c7ccd5!important}.text-dark{color:#1f2937!important}a.text-dark:focus,a.text-dark:hover{color:#030506!important}.text-body{color:#111827!important}.text-muted{color:#6b7280!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:hsla(0,0%,100%,.5)!important}.text-hide{background-color:transparent;border:0;color:transparent;font:0/0 a;text-shadow:none}.text-decoration-none{text-decoration:none!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,:after,:before{box-shadow:none!important;text-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]:after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #6b7280}blockquote,img,pre,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}.container,body{min-width:9px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #d1d5db!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#e5e7eb}.table .thead-dark th{border-color:#e5e7eb;color:inherit}}body{padding-bottom:20px}.container{max-width:1440px}html{min-width:1140px}[v-cloak]{display:none}svg.icon{height:1rem;width:1rem}.header{border-bottom:1px solid #e5e7eb}.header .logo{color:#374151;text-decoration:none}.header .logo svg{height:2rem;width:2rem}.sidebar .nav-item a{border-radius:6px;color:#4b5563;margin-bottom:4px;padding:.5rem .75rem}.sidebar .nav-item a svg{fill:#9ca3af;height:1.25rem;margin-right:15px;width:1.25rem}.sidebar .nav-item a.active,.sidebar .nav-item a:hover{background-color:#e5e7eb;color:#7746ec}.sidebar .nav-item a.active svg{fill:#7746ec}.card{border:none;box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1)}.card .bottom-radius{border-bottom-left-radius:6px;border-bottom-right-radius:6px}.card .card-header{background-color:#fff;border-bottom:none;min-height:60px;padding-bottom:.7rem;padding-top:.7rem}.card .card-header .btn-group .btn{padding:.2rem .5rem}.card .card-header .form-control-with-icon{position:relative}.card .card-header .form-control-with-icon .icon-wrapper{jusify-content:center;align-items:center;bottom:0;display:flex;left:.75rem;position:absolute;top:0}.card .card-header .form-control-with-icon .icon-wrapper .icon{fill:#6b7280}.card .card-header .form-control-with-icon .form-control{border-radius:9999px;font-size:.875rem;padding-left:2.25rem}.card .table td,.card .table th{padding:.75rem 1.25rem}.card .table.table-sm td,.card .table.table-sm th{padding:1rem 1.25rem}.card .table th{background-color:#f3f4f6;border-bottom:0;font-size:.875rem;padding:.5rem 1.25rem}.card .table:not(.table-borderless) td{border-top:1px solid #e5e7eb}.card .table.penultimate-column-right td:nth-last-child(2),.card .table.penultimate-column-right th:nth-last-child(2){text-align:right}.card .table td.table-fit,.card .table th.table-fit{white-space:nowrap;width:1%}.fill-text-color{fill:#111827}.fill-danger{fill:#ef4444}.fill-warning{fill:#f59e0b}.fill-info{fill:#3b82f6}.fill-success{fill:#10b981}.fill-primary{fill:#7746ec}button:hover .fill-primary{fill:#fff}.btn-outline-primary.active .fill-primary{fill:#f3f4f6}.btn-outline-primary:not(:disabled):not(.disabled).active:focus{box-shadow:none!important}.btn-muted{background:#e5e7eb;color:#4b5563}.btn-muted:focus,.btn-muted:hover{background:#d1d5db;color:#111827}.btn-muted.active{background:#7746ec;color:#fff}.badge-secondary{background:#e5e7eb;color:#4b5563}.badge-success{background:#d1fae5;color:#059669}.badge-info{background:#dbeafe;color:#2563eb}.badge-warning{background:#fef3c7;color:#d97706}.badge-danger{background:#fee2e2;color:#dc2626}.control-action svg{fill:#d1d5db;height:1.2rem;width:1.2rem}.control-action svg:hover{fill:#7c3aed}.info-icon{fill:#d1d5db}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.spin{animation:spin 2s linear infinite}.card .nav-pills{background:#fff}.card .nav-pills .nav-link{border-radius:0;color:#4b5563;font-size:.9rem;padding:.75rem 1.25rem}.card .nav-pills .nav-link:focus,.card .nav-pills .nav-link:hover{color:#1f2937}.card .nav-pills .nav-link.active{background:none;border-bottom:2px solid #7c3aed;color:#7c3aed}.list-enter-active:not(.dontanimate){transition:background 1s linear}.list-enter:not(.dontanimate),.list-leave-to:not(.dontanimate){background:#f5f3ff}.code-bg .list-enter:not(.dontanimate),.code-bg .list-leave-to:not(.dontanimate){background:#4b5563}.card table td{vertical-align:middle!important}.card-bg-secondary{background:#f3f4f6}.code-bg{background:#292d3e}.disabled-watcher{background:#ef4444;color:#fff;padding:.75rem}.badge-sm{font-size:.75rem} diff --git a/public/vendor/horizon/app.js b/public/vendor/horizon/app.js index cfff2f835..8bb4173dc 100644 --- a/public/vendor/horizon/app.js +++ b/public/vendor/horizon/app.js @@ -1,2 +1,2 @@ /*! For license information please see app.js.LICENSE.txt */ -(()=>{var t,e={9669:(t,e,n)=>{t.exports=n(1609)},5448:(t,e,n)=>{"use strict";var r=n(4867),i=n(6026),o=n(4372),a=n(5327),c=n(4097),s=n(4109),l=n(7985),u=n(5061);t.exports=function(t){return new Promise((function(e,n){var f=t.data,d=t.headers,p=t.responseType;r.isFormData(f)&&delete d["Content-Type"];var h=new XMLHttpRequest;if(t.auth){var M=t.auth.username||"",b=t.auth.password?unescape(encodeURIComponent(t.auth.password)):"";d.Authorization="Basic "+btoa(M+":"+b)}var m=c(t.baseURL,t.url);function v(){if(h){var r="getAllResponseHeaders"in h?s(h.getAllResponseHeaders()):null,o={data:p&&"text"!==p&&"json"!==p?h.response:h.responseText,status:h.status,statusText:h.statusText,headers:r,config:t,request:h};i(e,n,o),h=null}}if(h.open(t.method.toUpperCase(),a(m,t.params,t.paramsSerializer),!0),h.timeout=t.timeout,"onloadend"in h?h.onloadend=v:h.onreadystatechange=function(){h&&4===h.readyState&&(0!==h.status||h.responseURL&&0===h.responseURL.indexOf("file:"))&&setTimeout(v)},h.onabort=function(){h&&(n(u("Request aborted",t,"ECONNABORTED",h)),h=null)},h.onerror=function(){n(u("Network Error",t,null,h)),h=null},h.ontimeout=function(){var e="timeout of "+t.timeout+"ms exceeded";t.timeoutErrorMessage&&(e=t.timeoutErrorMessage),n(u(e,t,t.transitional&&t.transitional.clarifyTimeoutError?"ETIMEDOUT":"ECONNABORTED",h)),h=null},r.isStandardBrowserEnv()){var g=(t.withCredentials||l(m))&&t.xsrfCookieName?o.read(t.xsrfCookieName):void 0;g&&(d[t.xsrfHeaderName]=g)}"setRequestHeader"in h&&r.forEach(d,(function(t,e){void 0===f&&"content-type"===e.toLowerCase()?delete d[e]:h.setRequestHeader(e,t)})),r.isUndefined(t.withCredentials)||(h.withCredentials=!!t.withCredentials),p&&"json"!==p&&(h.responseType=t.responseType),"function"==typeof t.onDownloadProgress&&h.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&h.upload&&h.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then((function(t){h&&(h.abort(),n(t),h=null)})),f||(f=null),h.send(f)}))}},1609:(t,e,n)=>{"use strict";var r=n(4867),i=n(1849),o=n(321),a=n(7185);function c(t){var e=new o(t),n=i(o.prototype.request,e);return r.extend(n,o.prototype,e),r.extend(n,e),n}var s=c(n(5655));s.Axios=o,s.create=function(t){return c(a(s.defaults,t))},s.Cancel=n(5263),s.CancelToken=n(4972),s.isCancel=n(6502),s.all=function(t){return Promise.all(t)},s.spread=n(8713),s.isAxiosError=n(6268),t.exports=s,t.exports.default=s},5263:t=>{"use strict";function e(t){this.message=t}e.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},e.prototype.__CANCEL__=!0,t.exports=e},4972:(t,e,n)=>{"use strict";var r=n(5263);function i(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise((function(t){e=t}));var n=this;t((function(t){n.reason||(n.reason=new r(t),e(n.reason))}))}i.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},i.source=function(){var t;return{token:new i((function(e){t=e})),cancel:t}},t.exports=i},6502:t=>{"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},321:(t,e,n)=>{"use strict";var r=n(4867),i=n(5327),o=n(782),a=n(3572),c=n(7185),s=n(4875),l=s.validators;function u(t){this.defaults=t,this.interceptors={request:new o,response:new o}}u.prototype.request=function(t){"string"==typeof t?(t=arguments[1]||{}).url=arguments[0]:t=t||{},(t=c(this.defaults,t)).method?t.method=t.method.toLowerCase():this.defaults.method?t.method=this.defaults.method.toLowerCase():t.method="get";var e=t.transitional;void 0!==e&&s.assertOptions(e,{silentJSONParsing:l.transitional(l.boolean,"1.0.0"),forcedJSONParsing:l.transitional(l.boolean,"1.0.0"),clarifyTimeoutError:l.transitional(l.boolean,"1.0.0")},!1);var n=[],r=!0;this.interceptors.request.forEach((function(e){"function"==typeof e.runWhen&&!1===e.runWhen(t)||(r=r&&e.synchronous,n.unshift(e.fulfilled,e.rejected))}));var i,o=[];if(this.interceptors.response.forEach((function(t){o.push(t.fulfilled,t.rejected)})),!r){var u=[a,void 0];for(Array.prototype.unshift.apply(u,n),u=u.concat(o),i=Promise.resolve(t);u.length;)i=i.then(u.shift(),u.shift());return i}for(var f=t;n.length;){var d=n.shift(),p=n.shift();try{f=d(f)}catch(t){p(t);break}}try{i=a(f)}catch(t){return Promise.reject(t)}for(;o.length;)i=i.then(o.shift(),o.shift());return i},u.prototype.getUri=function(t){return t=c(this.defaults,t),i(t.url,t.params,t.paramsSerializer).replace(/^\?/,"")},r.forEach(["delete","get","head","options"],(function(t){u.prototype[t]=function(e,n){return this.request(c(n||{},{method:t,url:e,data:(n||{}).data}))}})),r.forEach(["post","put","patch"],(function(t){u.prototype[t]=function(e,n,r){return this.request(c(r||{},{method:t,url:e,data:n}))}})),t.exports=u},782:(t,e,n)=>{"use strict";var r=n(4867);function i(){this.handlers=[]}i.prototype.use=function(t,e,n){return this.handlers.push({fulfilled:t,rejected:e,synchronous:!!n&&n.synchronous,runWhen:n?n.runWhen:null}),this.handlers.length-1},i.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},i.prototype.forEach=function(t){r.forEach(this.handlers,(function(e){null!==e&&t(e)}))},t.exports=i},4097:(t,e,n)=>{"use strict";var r=n(1793),i=n(7303);t.exports=function(t,e){return t&&!r(e)?i(t,e):e}},5061:(t,e,n)=>{"use strict";var r=n(481);t.exports=function(t,e,n,i,o){var a=new Error(t);return r(a,e,n,i,o)}},3572:(t,e,n)=>{"use strict";var r=n(4867),i=n(8527),o=n(6502),a=n(5655);function c(t){t.cancelToken&&t.cancelToken.throwIfRequested()}t.exports=function(t){return c(t),t.headers=t.headers||{},t.data=i.call(t,t.data,t.headers,t.transformRequest),t.headers=r.merge(t.headers.common||{},t.headers[t.method]||{},t.headers),r.forEach(["delete","get","head","post","put","patch","common"],(function(e){delete t.headers[e]})),(t.adapter||a.adapter)(t).then((function(e){return c(t),e.data=i.call(t,e.data,e.headers,t.transformResponse),e}),(function(e){return o(e)||(c(t),e&&e.response&&(e.response.data=i.call(t,e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)}))}},481:t=>{"use strict";t.exports=function(t,e,n,r,i){return t.config=e,n&&(t.code=n),t.request=r,t.response=i,t.isAxiosError=!0,t.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:this.config,code:this.code}},t}},7185:(t,e,n)=>{"use strict";var r=n(4867);t.exports=function(t,e){e=e||{};var n={},i=["url","method","data"],o=["headers","auth","proxy","params"],a=["baseURL","transformRequest","transformResponse","paramsSerializer","timeout","timeoutMessage","withCredentials","adapter","responseType","xsrfCookieName","xsrfHeaderName","onUploadProgress","onDownloadProgress","decompress","maxContentLength","maxBodyLength","maxRedirects","transport","httpAgent","httpsAgent","cancelToken","socketPath","responseEncoding"],c=["validateStatus"];function s(t,e){return r.isPlainObject(t)&&r.isPlainObject(e)?r.merge(t,e):r.isPlainObject(e)?r.merge({},e):r.isArray(e)?e.slice():e}function l(i){r.isUndefined(e[i])?r.isUndefined(t[i])||(n[i]=s(void 0,t[i])):n[i]=s(t[i],e[i])}r.forEach(i,(function(t){r.isUndefined(e[t])||(n[t]=s(void 0,e[t]))})),r.forEach(o,l),r.forEach(a,(function(i){r.isUndefined(e[i])?r.isUndefined(t[i])||(n[i]=s(void 0,t[i])):n[i]=s(void 0,e[i])})),r.forEach(c,(function(r){r in e?n[r]=s(t[r],e[r]):r in t&&(n[r]=s(void 0,t[r]))}));var u=i.concat(o).concat(a).concat(c),f=Object.keys(t).concat(Object.keys(e)).filter((function(t){return-1===u.indexOf(t)}));return r.forEach(f,l),n}},6026:(t,e,n)=>{"use strict";var r=n(5061);t.exports=function(t,e,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?e(r("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},8527:(t,e,n)=>{"use strict";var r=n(4867),i=n(5655);t.exports=function(t,e,n){var o=this||i;return r.forEach(n,(function(n){t=n.call(o,t,e)})),t}},5655:(t,e,n)=>{"use strict";var r=n(4155),i=n(4867),o=n(6016),a=n(481),c={"Content-Type":"application/x-www-form-urlencoded"};function s(t,e){!i.isUndefined(t)&&i.isUndefined(t["Content-Type"])&&(t["Content-Type"]=e)}var l,u={transitional:{silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},adapter:(("undefined"!=typeof XMLHttpRequest||void 0!==r&&"[object process]"===Object.prototype.toString.call(r))&&(l=n(5448)),l),transformRequest:[function(t,e){return o(e,"Accept"),o(e,"Content-Type"),i.isFormData(t)||i.isArrayBuffer(t)||i.isBuffer(t)||i.isStream(t)||i.isFile(t)||i.isBlob(t)?t:i.isArrayBufferView(t)?t.buffer:i.isURLSearchParams(t)?(s(e,"application/x-www-form-urlencoded;charset=utf-8"),t.toString()):i.isObject(t)||e&&"application/json"===e["Content-Type"]?(s(e,"application/json"),function(t,e,n){if(i.isString(t))try{return(e||JSON.parse)(t),i.trim(t)}catch(t){if("SyntaxError"!==t.name)throw t}return(n||JSON.stringify)(t)}(t)):t}],transformResponse:[function(t){var e=this.transitional,n=e&&e.silentJSONParsing,r=e&&e.forcedJSONParsing,o=!n&&"json"===this.responseType;if(o||r&&i.isString(t)&&t.length)try{return JSON.parse(t)}catch(t){if(o){if("SyntaxError"===t.name)throw a(t,this,"E_JSON_PARSE");throw t}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,validateStatus:function(t){return t>=200&&t<300}};u.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],(function(t){u.headers[t]={}})),i.forEach(["post","put","patch"],(function(t){u.headers[t]=i.merge(c)})),t.exports=u},1849:t=>{"use strict";t.exports=function(t,e){return function(){for(var n=new Array(arguments.length),r=0;r{"use strict";var r=n(4867);function i(t){return encodeURIComponent(t).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}t.exports=function(t,e,n){if(!e)return t;var o;if(n)o=n(e);else if(r.isURLSearchParams(e))o=e.toString();else{var a=[];r.forEach(e,(function(t,e){null!=t&&(r.isArray(t)?e+="[]":t=[t],r.forEach(t,(function(t){r.isDate(t)?t=t.toISOString():r.isObject(t)&&(t=JSON.stringify(t)),a.push(i(e)+"="+i(t))})))})),o=a.join("&")}if(o){var c=t.indexOf("#");-1!==c&&(t=t.slice(0,c)),t+=(-1===t.indexOf("?")?"?":"&")+o}return t}},7303:t=>{"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},4372:(t,e,n)=>{"use strict";var r=n(4867);t.exports=r.isStandardBrowserEnv()?{write:function(t,e,n,i,o,a){var c=[];c.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&c.push("expires="+new Date(n).toGMTString()),r.isString(i)&&c.push("path="+i),r.isString(o)&&c.push("domain="+o),!0===a&&c.push("secure"),document.cookie=c.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},1793:t=>{"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},6268:t=>{"use strict";t.exports=function(t){return"object"==typeof t&&!0===t.isAxiosError}},7985:(t,e,n)=>{"use strict";var r=n(4867);t.exports=r.isStandardBrowserEnv()?function(){var t,e=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");function i(t){var r=t;return e&&(n.setAttribute("href",r),r=n.href),n.setAttribute("href",r),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:"/"===n.pathname.charAt(0)?n.pathname:"/"+n.pathname}}return t=i(window.location.href),function(e){var n=r.isString(e)?i(e):e;return n.protocol===t.protocol&&n.host===t.host}}():function(){return!0}},6016:(t,e,n)=>{"use strict";var r=n(4867);t.exports=function(t,e){r.forEach(t,(function(n,r){r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])}))}},4109:(t,e,n)=>{"use strict";var r=n(4867),i=["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"];t.exports=function(t){var e,n,o,a={};return t?(r.forEach(t.split("\n"),(function(t){if(o=t.indexOf(":"),e=r.trim(t.substr(0,o)).toLowerCase(),n=r.trim(t.substr(o+1)),e){if(a[e]&&i.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+", "+n:n}})),a):a}},8713:t=>{"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}},4875:(t,e,n)=>{"use strict";var r=n(8593),i={};["object","boolean","number","function","string","symbol"].forEach((function(t,e){i[t]=function(n){return typeof n===t||"a"+(e<1?"n ":" ")+t}}));var o={},a=r.version.split(".");function c(t,e){for(var n=e?e.split("."):a,r=t.split("."),i=0;i<3;i++){if(n[i]>r[i])return!0;if(n[i]0;){var o=r[i],a=e[o];if(a){var c=t[o],s=void 0===c||a(c,o,t);if(!0!==s)throw new TypeError("option "+o+" must be "+s)}else if(!0!==n)throw Error("Unknown option "+o)}},validators:i}},4867:(t,e,n)=>{"use strict";var r=n(1849),i=Object.prototype.toString;function o(t){return"[object Array]"===i.call(t)}function a(t){return void 0===t}function c(t){return null!==t&&"object"==typeof t}function s(t){if("[object Object]"!==i.call(t))return!1;var e=Object.getPrototypeOf(t);return null===e||e===Object.prototype}function l(t){return"[object Function]"===i.call(t)}function u(t,e){if(null!=t)if("object"!=typeof t&&(t=[t]),o(t))for(var n=0,r=t.length;n{"use strict";var r=Object.freeze({});function i(t){return null==t}function o(t){return null!=t}function a(t){return!0===t}function c(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function s(t){return null!==t&&"object"==typeof t}var l=Object.prototype.toString;function u(t){return"[object Object]"===l.call(t)}function f(t){return"[object RegExp]"===l.call(t)}function d(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function p(t){return o(t)&&"function"==typeof t.then&&"function"==typeof t.catch}function h(t){return null==t?"":Array.isArray(t)||u(t)&&t.toString===l?JSON.stringify(t,null,2):String(t)}function M(t){var e=parseFloat(t);return isNaN(e)?t:e}function b(t,e){for(var n=Object.create(null),r=t.split(","),i=0;i-1)return t.splice(n,1)}}var y=Object.prototype.hasOwnProperty;function A(t,e){return y.call(t,e)}function _(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}var z=/-(\w)/g,O=_((function(t){return t.replace(z,(function(t,e){return e?e.toUpperCase():""}))})),x=_((function(t){return t.charAt(0).toUpperCase()+t.slice(1)})),w=/\B([A-Z])/g,L=_((function(t){return t.replace(w,"-$1").toLowerCase()}));var N=Function.prototype.bind?function(t,e){return t.bind(e)}:function(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n};function T(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function C(t,e){for(var n in e)t[n]=e[n];return t}function q(t){for(var e={},n=0;n0,et=Q&&Q.indexOf("edge/")>0,nt=(Q&&Q.indexOf("android"),Q&&/iphone|ipad|ipod|ios/.test(Q)||"ios"===K),rt=(Q&&/chrome\/\d+/.test(Q),Q&&/phantomjs/.test(Q),Q&&Q.match(/firefox\/(\d+)/)),it={}.watch,ot=!1;if(G)try{var at={};Object.defineProperty(at,"passive",{get:function(){ot=!0}}),window.addEventListener("test-passive",null,at)}catch(t){}var ct=function(){return void 0===V&&(V=!G&&!J&&void 0!==n.g&&(n.g.process&&"server"===n.g.process.env.VUE_ENV)),V},st=G&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function lt(t){return"function"==typeof t&&/native code/.test(t.toString())}var ut,ft="undefined"!=typeof Symbol&<(Symbol)&&"undefined"!=typeof Reflect&<(Reflect.ownKeys);ut="undefined"!=typeof Set&<(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var dt=S,pt=0,ht=function(){this.id=pt++,this.subs=[]};ht.prototype.addSub=function(t){this.subs.push(t)},ht.prototype.removeSub=function(t){g(this.subs,t)},ht.prototype.depend=function(){ht.target&&ht.target.addDep(this)},ht.prototype.notify=function(){var t=this.subs.slice();for(var e=0,n=t.length;e-1)if(o&&!A(i,"default"))a=!1;else if(""===a||a===L(t)){var s=$t(String,i.type);(s<0||c0&&(Me((r=be(r,(e||"")+"_"+n))[0])&&Me(l)&&(u[s]=At(l.text+r[0].text),r.shift()),u.push.apply(u,r)):c(r)?Me(l)?u[s]=At(l.text+r):""!==r&&u.push(At(r)):Me(r)&&Me(l)?u[s]=At(l.text+r.text):(a(t._isVList)&&o(r.tag)&&i(r.key)&&o(e)&&(r.key="__vlist"+e+"_"+n+"__"),u.push(r)));return u}function me(t,e){if(t){for(var n=Object.create(null),r=ft?Reflect.ownKeys(t):Object.keys(t),i=0;i0,a=t?!!t.$stable:!o,c=t&&t.$key;if(t){if(t._normalized)return t._normalized;if(a&&n&&n!==r&&c===n.$key&&!o&&!n.$hasNormal)return n;for(var s in i={},t)t[s]&&"$"!==s[0]&&(i[s]=Ae(e,s,t[s]))}else i={};for(var l in e)l in i||(i[l]=_e(e,l));return t&&Object.isExtensible(t)&&(t._normalized=i),H(i,"$stable",a),H(i,"$key",c),H(i,"$hasNormal",o),i}function Ae(t,e,n){var r=function(){var t=arguments.length?n.apply(null,arguments):n({});return(t=t&&"object"==typeof t&&!Array.isArray(t)?[t]:he(t))&&(0===t.length||1===t.length&&t[0].isComment)?void 0:t};return n.proxy&&Object.defineProperty(t,e,{get:r,enumerable:!0,configurable:!0}),r}function _e(t,e){return function(){return t[e]}}function ze(t,e){var n,r,i,a,c;if(Array.isArray(t)||"string"==typeof t)for(n=new Array(t.length),r=0,i=t.length;rdocument.createEvent("Event").timeStamp&&(bn=function(){return mn.now()})}function vn(){var t,e;for(Mn=bn(),pn=!0,ln.sort((function(t,e){return t.id-e.id})),hn=0;hnhn&&ln[n].id>t.id;)n--;ln.splice(n+1,0,t)}else ln.push(t);dn||(dn=!0,oe(vn))}}(this)},yn.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||s(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){Ut(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},yn.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},yn.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},yn.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||g(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var An={enumerable:!0,configurable:!0,get:S,set:S};function _n(t,e,n){An.get=function(){return this[e][n]},An.set=function(t){this[e][n]=t},Object.defineProperty(t,n,An)}function zn(t){t._watchers=[];var e=t.$options;e.props&&function(t,e){var n=t.$options.propsData||{},r=t._props={},i=t.$options._propKeys=[];t.$parent&&Lt(!1);var o=function(o){i.push(o);var a=It(o,e,n,t);Ct(r,o,a),o in t||_n(t,"_props",o)};for(var a in e)o(a);Lt(!0)}(t,e.props),e.methods&&function(t,e){t.$options.props;for(var n in e)t[n]="function"!=typeof e[n]?S:N(e[n],t)}(t,e.methods),e.data?function(t){var e=t.$options.data;u(e=t._data="function"==typeof e?function(t,e){bt();try{return t.call(e,e)}catch(t){return Ut(t,e,"data()"),{}}finally{mt()}}(e,t):e||{})||(e={});var n=Object.keys(e),r=t.$options.props,i=(t.$options.methods,n.length);for(;i--;){var o=n[i];0,r&&A(r,o)||F(o)||_n(t,"_data",o)}Tt(e,!0)}(t):Tt(t._data={},!0),e.computed&&function(t,e){var n=t._computedWatchers=Object.create(null),r=ct();for(var i in e){var o=e[i],a="function"==typeof o?o:o.get;0,r||(n[i]=new yn(t,a||S,S,On)),i in t||xn(t,i,o)}}(t,e.computed),e.watch&&e.watch!==it&&function(t,e){for(var n in e){var r=e[n];if(Array.isArray(r))for(var i=0;i-1:"string"==typeof t?t.split(",").indexOf(e)>-1:!!f(t)&&t.test(e)}function Wn(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var a=n[o];if(a){var c=kn(a.componentOptions);c&&!e(c)&&Bn(n,o,r,i)}}}function Bn(t,e,n,r){var i=t[e];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[e]=null,g(n,e)}!function(t){t.prototype._init=function(t){var e=this;e._uid=Tn++,e._isVue=!0,t&&t._isComponent?function(t,e){var n=t.$options=Object.create(t.constructor.options),r=e._parentVnode;n.parent=e.parent,n._parentVnode=r;var i=r.componentOptions;n.propsData=i.propsData,n._parentListeners=i.listeners,n._renderChildren=i.children,n._componentTag=i.tag,e.render&&(n.render=e.render,n.staticRenderFns=e.staticRenderFns)}(e,t):e.$options=Rt(Cn(e.constructor),t||{},e),e._renderProxy=e,e._self=e,function(t){var e=t.$options,n=e.parent;if(n&&!e.abstract){for(;n.$options.abstract&&n.$parent;)n=n.$parent;n.$children.push(t)}t.$parent=n,t.$root=n?n.$root:t,t.$children=[],t.$refs={},t._watcher=null,t._inactive=null,t._directInactive=!1,t._isMounted=!1,t._isDestroyed=!1,t._isBeingDestroyed=!1}(e),function(t){t._events=Object.create(null),t._hasHookEvent=!1;var e=t.$options._parentListeners;e&&en(t,e)}(e),function(t){t._vnode=null,t._staticTrees=null;var e=t.$options,n=t.$vnode=e._parentVnode,i=n&&n.context;t.$slots=ve(e._renderChildren,i),t.$scopedSlots=r,t._c=function(e,n,r,i){return $e(t,e,n,r,i,!1)},t.$createElement=function(e,n,r,i){return $e(t,e,n,r,i,!0)};var o=n&&n.data;Ct(t,"$attrs",o&&o.attrs||r,null,!0),Ct(t,"$listeners",e._parentListeners||r,null,!0)}(e),sn(e,"beforeCreate"),function(t){var e=me(t.$options.inject,t);e&&(Lt(!1),Object.keys(e).forEach((function(n){Ct(t,n,e[n])})),Lt(!0))}(e),zn(e),function(t){var e=t.$options.provide;e&&(t._provided="function"==typeof e?e.call(t):e)}(e),sn(e,"created"),e.$options.el&&e.$mount(e.$options.el)}}(qn),function(t){var e={get:function(){return this._data}},n={get:function(){return this._props}};Object.defineProperty(t.prototype,"$data",e),Object.defineProperty(t.prototype,"$props",n),t.prototype.$set=qt,t.prototype.$delete=St,t.prototype.$watch=function(t,e,n){var r=this;if(u(e))return Nn(r,t,e,n);(n=n||{}).user=!0;var i=new yn(r,t,e,n);if(n.immediate)try{e.call(r,i.value)}catch(t){Ut(t,r,'callback for immediate watcher "'+i.expression+'"')}return function(){i.teardown()}}}(qn),function(t){var e=/^hook:/;t.prototype.$on=function(t,n){var r=this;if(Array.isArray(t))for(var i=0,o=t.length;i1?T(n):n;for(var r=T(arguments,1),i='event handler for "'+t+'"',o=0,a=n.length;oparseInt(this.max)&&Bn(a,c[0],c,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={get:function(){return j}};Object.defineProperty(t,"config",e),t.util={warn:dt,extend:C,mergeOptions:Rt,defineReactive:Ct},t.set=qt,t.delete=St,t.nextTick=oe,t.observable=function(t){return Tt(t),t},t.options=Object.create(null),P.forEach((function(e){t.options[e+"s"]=Object.create(null)})),t.options._base=t,C(t.options.components,Xn),function(t){t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=T(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this}}(t),function(t){t.mixin=function(t){return this.options=Rt(this.options,t),this}}(t),Sn(t),function(t){P.forEach((function(e){t[e]=function(t,n){return n?("component"===e&&u(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}}))}(t)}(qn),Object.defineProperty(qn.prototype,"$isServer",{get:ct}),Object.defineProperty(qn.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(qn,"FunctionalRenderContext",{value:Xe}),qn.version="2.6.12";var Pn=b("style,class"),Rn=b("input,textarea,option,select,progress"),jn=function(t,e,n){return"value"===n&&Rn(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},In=b("contenteditable,draggable,spellcheck"),Fn=b("events,caret,typing,plaintext-only"),Hn=b("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),$n="http://www.w3.org/1999/xlink",Un=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},Vn=function(t){return Un(t)?t.slice(6,t.length):""},Yn=function(t){return null==t||!1===t};function Gn(t){for(var e=t.data,n=t,r=t;o(r.componentInstance);)(r=r.componentInstance._vnode)&&r.data&&(e=Jn(r.data,e));for(;o(n=n.parent);)n&&n.data&&(e=Jn(e,n.data));return function(t,e){if(o(t)||o(e))return Kn(t,Qn(e));return""}(e.staticClass,e.class)}function Jn(t,e){return{staticClass:Kn(t.staticClass,e.staticClass),class:o(t.class)?[t.class,e.class]:e.class}}function Kn(t,e){return t?e?t+" "+e:t:e||""}function Qn(t){return Array.isArray(t)?function(t){for(var e,n="",r=0,i=t.length;r-1?zr(t,e,n):Hn(e)?Yn(n)?t.removeAttribute(e):(n="allowfullscreen"===e&&"EMBED"===t.tagName?"true":e,t.setAttribute(e,n)):In(e)?t.setAttribute(e,function(t,e){return Yn(e)||"false"===e?"false":"contenteditable"===t&&Fn(e)?e:"true"}(e,n)):Un(e)?Yn(n)?t.removeAttributeNS($n,Vn(e)):t.setAttributeNS($n,e,n):zr(t,e,n)}function zr(t,e,n){if(Yn(n))t.removeAttribute(e);else{if(Z&&!tt&&"TEXTAREA"===t.tagName&&"placeholder"===e&&""!==n&&!t.__ieph){var r=function(e){e.stopImmediatePropagation(),t.removeEventListener("input",r)};t.addEventListener("input",r),t.__ieph=!0}t.setAttribute(e,n)}}var Or={create:Ar,update:Ar};function xr(t,e){var n=e.elm,r=e.data,a=t.data;if(!(i(r.staticClass)&&i(r.class)&&(i(a)||i(a.staticClass)&&i(a.class)))){var c=Gn(e),s=n._transitionClasses;o(s)&&(c=Kn(c,Qn(s))),c!==n._prevClass&&(n.setAttribute("class",c),n._prevClass=c)}}var wr,Lr,Nr,Tr,Cr,qr,Sr={create:xr,update:xr},kr=/[\w).+\-_$\]]/;function Er(t){var e,n,r,i,o,a=!1,c=!1,s=!1,l=!1,u=0,f=0,d=0,p=0;for(r=0;r=0&&" "===(M=t.charAt(h));h--);M&&kr.test(M)||(l=!0)}}else void 0===i?(p=r+1,i=t.slice(0,r).trim()):b();function b(){(o||(o=[])).push(t.slice(p,r).trim()),p=r+1}if(void 0===i?i=t.slice(0,r).trim():0!==p&&b(),o)for(r=0;r-1?{exp:t.slice(0,Tr),key:'"'+t.slice(Tr+1)+'"'}:{exp:t,key:null};Lr=t,Tr=Cr=qr=0;for(;!Kr();)Qr(Nr=Jr())?ti(Nr):91===Nr&&Zr(Nr);return{exp:t.slice(0,Cr),key:t.slice(Cr+1,qr)}}(t);return null===n.key?t+"="+e:"$set("+n.exp+", "+n.key+", "+e+")"}function Jr(){return Lr.charCodeAt(++Tr)}function Kr(){return Tr>=wr}function Qr(t){return 34===t||39===t}function Zr(t){var e=1;for(Cr=Tr;!Kr();)if(Qr(t=Jr()))ti(t);else if(91===t&&e++,93===t&&e--,0===e){qr=Tr;break}}function ti(t){for(var e=t;!Kr()&&(t=Jr())!==e;);}var ei,ni="__r";function ri(t,e,n){var r=ei;return function i(){var o=e.apply(null,arguments);null!==o&&ai(t,i,n,r)}}var ii=Kt&&!(rt&&Number(rt[1])<=53);function oi(t,e,n,r){if(ii){var i=Mn,o=e;e=o._wrapper=function(t){if(t.target===t.currentTarget||t.timeStamp>=i||t.timeStamp<=0||t.target.ownerDocument!==document)return o.apply(this,arguments)}}ei.addEventListener(t,e,ot?{capture:n,passive:r}:n)}function ai(t,e,n,r){(r||ei).removeEventListener(t,e._wrapper||e,n)}function ci(t,e){if(!i(t.data.on)||!i(e.data.on)){var n=e.data.on||{},r=t.data.on||{};ei=e.elm,function(t){if(o(t.__r)){var e=Z?"change":"input";t[e]=[].concat(t.__r,t[e]||[]),delete t.__r}o(t.__c)&&(t.change=[].concat(t.__c,t.change||[]),delete t.__c)}(n),fe(n,r,oi,ai,ri,e.context),ei=void 0}}var si,li={create:ci,update:ci};function ui(t,e){if(!i(t.data.domProps)||!i(e.data.domProps)){var n,r,a=e.elm,c=t.data.domProps||{},s=e.data.domProps||{};for(n in o(s.__ob__)&&(s=e.data.domProps=C({},s)),c)n in s||(a[n]="");for(n in s){if(r=s[n],"textContent"===n||"innerHTML"===n){if(e.children&&(e.children.length=0),r===c[n])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===n&&"PROGRESS"!==a.tagName){a._value=r;var l=i(r)?"":String(r);fi(a,l)&&(a.value=l)}else if("innerHTML"===n&&er(a.tagName)&&i(a.innerHTML)){(si=si||document.createElement("div")).innerHTML=""+r+"";for(var u=si.firstChild;a.firstChild;)a.removeChild(a.firstChild);for(;u.firstChild;)a.appendChild(u.firstChild)}else if(r!==c[n])try{a[n]=r}catch(t){}}}}function fi(t,e){return!t.composing&&("OPTION"===t.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(t,e)||function(t,e){var n=t.value,r=t._vModifiers;if(o(r)){if(r.number)return M(n)!==M(e);if(r.trim)return n.trim()!==e.trim()}return n!==e}(t,e))}var di={create:ui,update:ui},pi=_((function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach((function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}})),e}));function hi(t){var e=Mi(t.style);return t.staticStyle?C(t.staticStyle,e):e}function Mi(t){return Array.isArray(t)?q(t):"string"==typeof t?pi(t):t}var bi,mi=/^--/,vi=/\s*!important$/,gi=function(t,e,n){if(mi.test(e))t.style.setProperty(e,n);else if(vi.test(n))t.style.setProperty(L(e),n.replace(vi,""),"important");else{var r=Ai(e);if(Array.isArray(n))for(var i=0,o=n.length;i-1?e.split(Oi).forEach((function(e){return t.classList.add(e)})):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function wi(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(Oi).forEach((function(e){return t.classList.remove(e)})):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function Li(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&C(e,Ni(t.name||"v")),C(e,t),e}return"string"==typeof t?Ni(t):void 0}}var Ni=_((function(t){return{enterClass:t+"-enter",enterToClass:t+"-enter-to",enterActiveClass:t+"-enter-active",leaveClass:t+"-leave",leaveToClass:t+"-leave-to",leaveActiveClass:t+"-leave-active"}})),Ti=G&&!tt,Ci="transition",qi="animation",Si="transition",ki="transitionend",Ei="animation",Wi="animationend";Ti&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(Si="WebkitTransition",ki="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(Ei="WebkitAnimation",Wi="webkitAnimationEnd"));var Bi=G?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function Di(t){Bi((function(){Bi(t)}))}function Xi(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),xi(t,e))}function Pi(t,e){t._transitionClasses&&g(t._transitionClasses,e),wi(t,e)}function Ri(t,e,n){var r=Ii(t,e),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var c=i===Ci?ki:Wi,s=0,l=function(){t.removeEventListener(c,u),n()},u=function(e){e.target===t&&++s>=a&&l()};setTimeout((function(){s0&&(n=Ci,u=a,f=o.length):e===qi?l>0&&(n=qi,u=l,f=s.length):f=(n=(u=Math.max(a,l))>0?a>l?Ci:qi:null)?n===Ci?o.length:s.length:0,{type:n,timeout:u,propCount:f,hasTransform:n===Ci&&ji.test(r[Si+"Property"])}}function Fi(t,e){for(;t.length1}function Gi(t,e){!0!==e.data.show&&$i(e)}var Ji=function(t){var e,n,r={},s=t.modules,l=t.nodeOps;for(e=0;eh?g(t,i(n[m+1])?null:n[m+1].elm,n,p,m,r):p>m&&A(e,d,h)}(d,b,m,n,u):o(m)?(o(t.text)&&l.setTextContent(d,""),g(d,null,m,0,m.length-1,n)):o(b)?A(b,0,b.length-1):o(t.text)&&l.setTextContent(d,""):t.text!==e.text&&l.setTextContent(d,e.text),o(h)&&o(p=h.hook)&&o(p=p.postpatch)&&p(t,e)}}}function x(t,e,n){if(a(n)&&o(t.parent))t.parent.data.pendingInsert=e;else for(var r=0;r-1,a.selected!==o&&(a.selected=o);else if(W(eo(a),r))return void(t.selectedIndex!==c&&(t.selectedIndex=c));i||(t.selectedIndex=-1)}}function to(t,e){return e.every((function(e){return!W(e,t)}))}function eo(t){return"_value"in t?t._value:t.value}function no(t){t.target.composing=!0}function ro(t){t.target.composing&&(t.target.composing=!1,io(t.target,"input"))}function io(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function oo(t){return!t.componentInstance||t.data&&t.data.transition?t:oo(t.componentInstance._vnode)}var ao={bind:function(t,e,n){var r=e.value,i=(n=oo(n)).data&&n.data.transition,o=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;r&&i?(n.data.show=!0,$i(n,(function(){t.style.display=o}))):t.style.display=r?o:"none"},update:function(t,e,n){var r=e.value;!r!=!e.oldValue&&((n=oo(n)).data&&n.data.transition?(n.data.show=!0,r?$i(n,(function(){t.style.display=t.__vOriginalDisplay})):Ui(n,(function(){t.style.display="none"}))):t.style.display=r?t.__vOriginalDisplay:"none")},unbind:function(t,e,n,r,i){i||(t.style.display=t.__vOriginalDisplay)}},co={model:Ki,show:ao},so={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function lo(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?lo(Ke(e.children)):t}function uo(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var i=n._parentListeners;for(var o in i)e[O(o)]=i[o];return e}function fo(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}var po=function(t){return t.tag||Je(t)},ho=function(t){return"show"===t.name},Mo={name:"transition",props:so,abstract:!0,render:function(t){var e=this,n=this.$slots.default;if(n&&(n=n.filter(po)).length){0;var r=this.mode;0;var i=n[0];if(function(t){for(;t=t.parent;)if(t.data.transition)return!0}(this.$vnode))return i;var o=lo(i);if(!o)return i;if(this._leaving)return fo(t,i);var a="__transition-"+this._uid+"-";o.key=null==o.key?o.isComment?a+"comment":a+o.tag:c(o.key)?0===String(o.key).indexOf(a)?o.key:a+o.key:o.key;var s=(o.data||(o.data={})).transition=uo(this),l=this._vnode,u=lo(l);if(o.data.directives&&o.data.directives.some(ho)&&(o.data.show=!0),u&&u.data&&!function(t,e){return e.key===t.key&&e.tag===t.tag}(o,u)&&!Je(u)&&(!u.componentInstance||!u.componentInstance._vnode.isComment)){var f=u.data.transition=C({},s);if("out-in"===r)return this._leaving=!0,de(f,"afterLeave",(function(){e._leaving=!1,e.$forceUpdate()})),fo(t,i);if("in-out"===r){if(Je(o))return l;var d,p=function(){d()};de(s,"afterEnter",p),de(s,"enterCancelled",p),de(f,"delayLeave",(function(t){d=t}))}}return i}}},bo=C({tag:String,moveClass:String},so);delete bo.mode;var mo={props:bo,beforeMount:function(){var t=this,e=this._update;this._update=function(n,r){var i=rn(t);t.__patch__(t._vnode,t.kept,!1,!0),t._vnode=t.kept,i(),e.call(t,n,r)}},render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),r=this.prevChildren=this.children,i=this.$slots.default||[],o=this.children=[],a=uo(this),c=0;c-1?ir[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:ir[t]=/HTMLUnknownElement/.test(e.toString())},C(qn.options.directives,co),C(qn.options.components,Ao),qn.prototype.__patch__=G?Ji:S,qn.prototype.$mount=function(t,e){return function(t,e,n){var r;return t.$el=e,t.$options.render||(t.$options.render=yt),sn(t,"beforeMount"),r=function(){t._update(t._render(),n)},new yn(t,r,S,{before:function(){t._isMounted&&!t._isDestroyed&&sn(t,"beforeUpdate")}},!0),n=!1,null==t.$vnode&&(t._isMounted=!0,sn(t,"mounted")),t}(this,t=t&&G?ar(t):void 0,e)},G&&setTimeout((function(){j.devtools&&st&&st.emit("init",qn)}),0);var _o=/\{\{((?:.|\r?\n)+?)\}\}/g,zo=/[-.*+?^${}()|[\]\/\\]/g,Oo=_((function(t){var e=t[0].replace(zo,"\\$&"),n=t[1].replace(zo,"\\$&");return new RegExp(e+"((?:.|\\n)+?)"+n,"g")}));var xo={staticKeys:["staticClass"],transformNode:function(t,e){e.warn;var n=$r(t,"class");n&&(t.staticClass=JSON.stringify(n));var r=Hr(t,"class",!1);r&&(t.classBinding=r)},genData:function(t){var e="";return t.staticClass&&(e+="staticClass:"+t.staticClass+","),t.classBinding&&(e+="class:"+t.classBinding+","),e}};var wo,Lo={staticKeys:["staticStyle"],transformNode:function(t,e){e.warn;var n=$r(t,"style");n&&(t.staticStyle=JSON.stringify(pi(n)));var r=Hr(t,"style",!1);r&&(t.styleBinding=r)},genData:function(t){var e="";return t.staticStyle&&(e+="staticStyle:"+t.staticStyle+","),t.styleBinding&&(e+="style:("+t.styleBinding+"),"),e}},No=function(t){return(wo=wo||document.createElement("div")).innerHTML=t,wo.textContent},To=b("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),Co=b("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),qo=b("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),So=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,ko=/^\s*((?:v-[\w-]+:|@|:|#)\[[^=]+\][^\s"'<>\/=]*)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,Eo="[a-zA-Z_][\\-\\.0-9_a-zA-Z"+I.source+"]*",Wo="((?:"+Eo+"\\:)?"+Eo+")",Bo=new RegExp("^<"+Wo),Do=/^\s*(\/?)>/,Xo=new RegExp("^<\\/"+Wo+"[^>]*>"),Po=/^]+>/i,Ro=/^",""":'"',"&":"&"," ":"\n"," ":"\t","'":"'"},$o=/&(?:lt|gt|quot|amp|#39);/g,Uo=/&(?:lt|gt|quot|amp|#39|#10|#9);/g,Vo=b("pre,textarea",!0),Yo=function(t,e){return t&&Vo(t)&&"\n"===e[0]};function Go(t,e){var n=e?Uo:$o;return t.replace(n,(function(t){return Ho[t]}))}var Jo,Ko,Qo,Zo,ta,ea,na,ra,ia=/^@|^v-on:/,oa=/^v-|^@|^:|^#/,aa=/([\s\S]*?)\s+(?:in|of)\s+([\s\S]*)/,ca=/,([^,\}\]]*)(?:,([^,\}\]]*))?$/,sa=/^\(|\)$/g,la=/^\[.*\]$/,ua=/:(.*)$/,fa=/^:|^\.|^v-bind:/,da=/\.[^.\]]+(?=[^\]]*$)/g,pa=/^v-slot(:|$)|^#/,ha=/[\r\n]/,Ma=/\s+/g,ba=_(No),ma="_empty_";function va(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:xa(e),rawAttrsMap:{},parent:n,children:[]}}function ga(t,e){Jo=e.warn||Br,ea=e.isPreTag||k,na=e.mustUseProp||k,ra=e.getTagNamespace||k;var n=e.isReservedTag||k;(function(t){return!!t.component||!n(t.tag)}),Qo=Dr(e.modules,"transformNode"),Zo=Dr(e.modules,"preTransformNode"),ta=Dr(e.modules,"postTransformNode"),Ko=e.delimiters;var r,i,o=[],a=!1!==e.preserveWhitespace,c=e.whitespace,s=!1,l=!1;function u(t){if(f(t),s||t.processed||(t=ya(t,e)),o.length||t===r||r.if&&(t.elseif||t.else)&&_a(r,{exp:t.elseif,block:t}),i&&!t.forbidden)if(t.elseif||t.else)a=t,c=function(t){for(var e=t.length;e--;){if(1===t[e].type)return t[e];t.pop()}}(i.children),c&&c.if&&_a(c,{exp:a.elseif,block:a});else{if(t.slotScope){var n=t.slotTarget||'"default"';(i.scopedSlots||(i.scopedSlots={}))[n]=t}i.children.push(t),t.parent=i}var a,c;t.children=t.children.filter((function(t){return!t.slotScope})),f(t),t.pre&&(s=!1),ea(t.tag)&&(l=!1);for(var u=0;u]*>)","i")),d=t.replace(f,(function(t,n,r){return l=r.length,Io(u)||"noscript"===u||(n=n.replace(//g,"$1").replace(//g,"$1")),Yo(u,n)&&(n=n.slice(1)),e.chars&&e.chars(n),""}));s+=t.length-d.length,t=d,w(u,s-l,s)}else{var p=t.indexOf("<");if(0===p){if(Ro.test(t)){var h=t.indexOf("--\x3e");if(h>=0){e.shouldKeepComment&&e.comment(t.substring(4,h),s,s+h+3),z(h+3);continue}}if(jo.test(t)){var M=t.indexOf("]>");if(M>=0){z(M+2);continue}}var b=t.match(Po);if(b){z(b[0].length);continue}var m=t.match(Xo);if(m){var v=s;z(m[0].length),w(m[1],v,s);continue}var g=O();if(g){x(g),Yo(g.tagName,t)&&z(1);continue}}var y=void 0,A=void 0,_=void 0;if(p>=0){for(A=t.slice(p);!(Xo.test(A)||Bo.test(A)||Ro.test(A)||jo.test(A)||(_=A.indexOf("<",1))<0);)p+=_,A=t.slice(p);y=t.substring(0,p)}p<0&&(y=t),y&&z(y.length),e.chars&&y&&e.chars(y,s-y.length,s)}if(t===n){e.chars&&e.chars(t);break}}function z(e){s+=e,t=t.substring(e)}function O(){var e=t.match(Bo);if(e){var n,r,i={tagName:e[1],attrs:[],start:s};for(z(e[0].length);!(n=t.match(Do))&&(r=t.match(ko)||t.match(So));)r.start=s,z(r[0].length),r.end=s,i.attrs.push(r);if(n)return i.unarySlash=n[1],z(n[0].length),i.end=s,i}}function x(t){var n=t.tagName,s=t.unarySlash;o&&("p"===r&&qo(n)&&w(r),c(n)&&r===n&&w(n));for(var l=a(n)||!!s,u=t.attrs.length,f=new Array(u),d=0;d=0&&i[a].lowerCasedTag!==c;a--);else a=0;if(a>=0){for(var l=i.length-1;l>=a;l--)e.end&&e.end(i[l].tag,n,o);i.length=a,r=a&&i[a-1].tag}else"br"===c?e.start&&e.start(t,[],!0,n,o):"p"===c&&(e.start&&e.start(t,[],!1,n,o),e.end&&e.end(t,n,o))}w()}(t,{warn:Jo,expectHTML:e.expectHTML,isUnaryTag:e.isUnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecodeNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,outputSourceRange:e.outputSourceRange,start:function(t,n,a,c,f){var d=i&&i.ns||ra(t);Z&&"svg"===d&&(n=function(t){for(var e=[],n=0;ns&&(c.push(o=t.slice(s,i)),a.push(JSON.stringify(o)));var l=Er(r[1].trim());a.push("_s("+l+")"),c.push({"@binding":l}),s=i+r[0].length}return s-1"+("true"===o?":("+e+")":":_q("+e+","+o+")")),Fr(t,"change","var $$a="+e+",$$el=$event.target,$$c=$$el.checked?("+o+"):("+a+");if(Array.isArray($$a)){var $$v="+(r?"_n("+i+")":i)+",$$i=_i($$a,$$v);if($$el.checked){$$i<0&&("+Gr(e,"$$a.concat([$$v])")+")}else{$$i>-1&&("+Gr(e,"$$a.slice(0,$$i).concat($$a.slice($$i+1))")+")}}else{"+Gr(e,"$$c")+"}",null,!0)}(t,r,i);else if("input"===o&&"radio"===a)!function(t,e,n){var r=n&&n.number,i=Hr(t,"value")||"null";Xr(t,"checked","_q("+e+","+(i=r?"_n("+i+")":i)+")"),Fr(t,"change",Gr(e,i),null,!0)}(t,r,i);else if("input"===o||"textarea"===o)!function(t,e,n){var r=t.attrsMap.type;0;var i=n||{},o=i.lazy,a=i.number,c=i.trim,s=!o&&"range"!==r,l=o?"change":"range"===r?ni:"input",u="$event.target.value";c&&(u="$event.target.value.trim()");a&&(u="_n("+u+")");var f=Gr(e,u);s&&(f="if($event.target.composing)return;"+f);Xr(t,"value","("+e+")"),Fr(t,l,f,null,!0),(c||a)&&Fr(t,"blur","$forceUpdate()")}(t,r,i);else{if(!j.isReservedTag(o))return Yr(t,r,i),!1}return!0},text:function(t,e){e.value&&Xr(t,"textContent","_s("+e.value+")",e)},html:function(t,e){e.value&&Xr(t,"innerHTML","_s("+e.value+")",e)}},ka={expectHTML:!0,modules:Ta,directives:Sa,isPreTag:function(t){return"pre"===t},isUnaryTag:To,mustUseProp:jn,canBeLeftOpenTag:Co,isReservedTag:nr,getTagNamespace:rr,staticKeys:function(t){return t.reduce((function(t,e){return t.concat(e.staticKeys||[])}),[]).join(",")}(Ta)},Ea=_((function(t){return b("type,tag,attrsList,attrsMap,plain,parent,children,attrs,start,end,rawAttrsMap"+(t?","+t:""))}));function Wa(t,e){t&&(Ca=Ea(e.staticKeys||""),qa=e.isReservedTag||k,Ba(t),Da(t,!1))}function Ba(t){if(t.static=function(t){if(2===t.type)return!1;if(3===t.type)return!0;return!(!t.pre&&(t.hasBindings||t.if||t.for||m(t.tag)||!qa(t.tag)||function(t){for(;t.parent;){if("template"!==(t=t.parent).tag)return!1;if(t.for)return!0}return!1}(t)||!Object.keys(t).every(Ca)))}(t),1===t.type){if(!qa(t.tag)&&"slot"!==t.tag&&null==t.attrsMap["inline-template"])return;for(var e=0,n=t.children.length;e|^function(?:\s+[\w$]+)?\s*\(/,Pa=/\([^)]*?\);*$/,Ra=/^[A-Za-z_$][\w$]*(?:\.[A-Za-z_$][\w$]*|\['[^']*?']|\["[^"]*?"]|\[\d+]|\[[A-Za-z_$][\w$]*])*$/,ja={esc:27,tab:9,enter:13,space:32,up:38,left:37,right:39,down:40,delete:[8,46]},Ia={esc:["Esc","Escape"],tab:"Tab",enter:"Enter",space:[" ","Spacebar"],up:["Up","ArrowUp"],left:["Left","ArrowLeft"],right:["Right","ArrowRight"],down:["Down","ArrowDown"],delete:["Backspace","Delete","Del"]},Fa=function(t){return"if("+t+")return null;"},Ha={stop:"$event.stopPropagation();",prevent:"$event.preventDefault();",self:Fa("$event.target !== $event.currentTarget"),ctrl:Fa("!$event.ctrlKey"),shift:Fa("!$event.shiftKey"),alt:Fa("!$event.altKey"),meta:Fa("!$event.metaKey"),left:Fa("'button' in $event && $event.button !== 0"),middle:Fa("'button' in $event && $event.button !== 1"),right:Fa("'button' in $event && $event.button !== 2")};function $a(t,e){var n=e?"nativeOn:":"on:",r="",i="";for(var o in t){var a=Ua(t[o]);t[o]&&t[o].dynamic?i+=o+","+a+",":r+='"'+o+'":'+a+","}return r="{"+r.slice(0,-1)+"}",i?n+"_d("+r+",["+i.slice(0,-1)+"])":n+r}function Ua(t){if(!t)return"function(){}";if(Array.isArray(t))return"["+t.map((function(t){return Ua(t)})).join(",")+"]";var e=Ra.test(t.value),n=Xa.test(t.value),r=Ra.test(t.value.replace(Pa,""));if(t.modifiers){var i="",o="",a=[];for(var c in t.modifiers)if(Ha[c])o+=Ha[c],ja[c]&&a.push(c);else if("exact"===c){var s=t.modifiers;o+=Fa(["ctrl","shift","alt","meta"].filter((function(t){return!s[t]})).map((function(t){return"$event."+t+"Key"})).join("||"))}else a.push(c);return a.length&&(i+=function(t){return"if(!$event.type.indexOf('key')&&"+t.map(Va).join("&&")+")return null;"}(a)),o&&(i+=o),"function($event){"+i+(e?"return "+t.value+"($event)":n?"return ("+t.value+")($event)":r?"return "+t.value:t.value)+"}"}return e||n?t.value:"function($event){"+(r?"return "+t.value:t.value)+"}"}function Va(t){var e=parseInt(t,10);if(e)return"$event.keyCode!=="+e;var n=ja[t],r=Ia[t];return"_k($event.keyCode,"+JSON.stringify(t)+","+JSON.stringify(n)+",$event.key,"+JSON.stringify(r)+")"}var Ya={on:function(t,e){t.wrapListeners=function(t){return"_g("+t+","+e.value+")"}},bind:function(t,e){t.wrapData=function(n){return"_b("+n+",'"+t.tag+"',"+e.value+","+(e.modifiers&&e.modifiers.prop?"true":"false")+(e.modifiers&&e.modifiers.sync?",true":"")+")"}},cloak:S},Ga=function(t){this.options=t,this.warn=t.warn||Br,this.transforms=Dr(t.modules,"transformCode"),this.dataGenFns=Dr(t.modules,"genData"),this.directives=C(C({},Ya),t.directives);var e=t.isReservedTag||k;this.maybeComponent=function(t){return!!t.component||!e(t.tag)},this.onceId=0,this.staticRenderFns=[],this.pre=!1};function Ja(t,e){var n=new Ga(e);return{render:"with(this){return "+(t?Ka(t,n):'_c("div")')+"}",staticRenderFns:n.staticRenderFns}}function Ka(t,e){if(t.parent&&(t.pre=t.pre||t.parent.pre),t.staticRoot&&!t.staticProcessed)return Qa(t,e);if(t.once&&!t.onceProcessed)return Za(t,e);if(t.for&&!t.forProcessed)return nc(t,e);if(t.if&&!t.ifProcessed)return tc(t,e);if("template"!==t.tag||t.slotTarget||e.pre){if("slot"===t.tag)return function(t,e){var n=t.slotName||'"default"',r=ac(t,e),i="_t("+n+(r?","+r:""),o=t.attrs||t.dynamicAttrs?lc((t.attrs||[]).concat(t.dynamicAttrs||[]).map((function(t){return{name:O(t.name),value:t.value,dynamic:t.dynamic}}))):null,a=t.attrsMap["v-bind"];!o&&!a||r||(i+=",null");o&&(i+=","+o);a&&(i+=(o?"":",null")+","+a);return i+")"}(t,e);var n;if(t.component)n=function(t,e,n){var r=e.inlineTemplate?null:ac(e,n,!0);return"_c("+t+","+rc(e,n)+(r?","+r:"")+")"}(t.component,t,e);else{var r;(!t.plain||t.pre&&e.maybeComponent(t))&&(r=rc(t,e));var i=t.inlineTemplate?null:ac(t,e,!0);n="_c('"+t.tag+"'"+(r?","+r:"")+(i?","+i:"")+")"}for(var o=0;o>>0}(a):"")+")"}(t,t.scopedSlots,e)+","),t.model&&(n+="model:{value:"+t.model.value+",callback:"+t.model.callback+",expression:"+t.model.expression+"},"),t.inlineTemplate){var o=function(t,e){var n=t.children[0];0;if(n&&1===n.type){var r=Ja(n,e.options);return"inlineTemplate:{render:function(){"+r.render+"},staticRenderFns:["+r.staticRenderFns.map((function(t){return"function(){"+t+"}"})).join(",")+"]}"}}(t,e);o&&(n+=o+",")}return n=n.replace(/,$/,"")+"}",t.dynamicAttrs&&(n="_b("+n+',"'+t.tag+'",'+lc(t.dynamicAttrs)+")"),t.wrapData&&(n=t.wrapData(n)),t.wrapListeners&&(n=t.wrapListeners(n)),n}function ic(t){return 1===t.type&&("slot"===t.tag||t.children.some(ic))}function oc(t,e){var n=t.attrsMap["slot-scope"];if(t.if&&!t.ifProcessed&&!n)return tc(t,e,oc,"null");if(t.for&&!t.forProcessed)return nc(t,e,oc);var r=t.slotScope===ma?"":String(t.slotScope),i="function("+r+"){return "+("template"===t.tag?t.if&&n?"("+t.if+")?"+(ac(t,e)||"undefined")+":undefined":ac(t,e)||"undefined":Ka(t,e))+"}",o=r?"":",proxy:true";return"{key:"+(t.slotTarget||'"default"')+",fn:"+i+o+"}"}function ac(t,e,n,r,i){var o=t.children;if(o.length){var a=o[0];if(1===o.length&&a.for&&"template"!==a.tag&&"slot"!==a.tag){var c=n?e.maybeComponent(a)?",1":",0":"";return""+(r||Ka)(a,e)+c}var s=n?function(t,e){for(var n=0,r=0;r':'
',hc.innerHTML.indexOf(" ")>0}var gc=!!G&&vc(!1),yc=!!G&&vc(!0),Ac=_((function(t){var e=ar(t);return e&&e.innerHTML})),_c=qn.prototype.$mount;qn.prototype.$mount=function(t,e){if((t=t&&ar(t))===document.body||t===document.documentElement)return this;var n=this.$options;if(!n.render){var r=n.template;if(r)if("string"==typeof r)"#"===r.charAt(0)&&(r=Ac(r));else{if(!r.nodeType)return this;r=r.innerHTML}else t&&(r=function(t){if(t.outerHTML)return t.outerHTML;var e=document.createElement("div");return e.appendChild(t.cloneNode(!0)),e.innerHTML}(t));if(r){0;var i=mc(r,{outputSourceRange:!1,shouldDecodeNewlines:gc,shouldDecodeNewlinesForHref:yc,delimiters:n.delimiters,comments:n.comments},this),o=i.render,a=i.staticRenderFns;n.render=o,n.staticRenderFns=a}}return _c.call(this,t,e)},qn.compile=mc;const zc=qn;var Oc=n(8),xc=n.n(Oc);const wc={computed:{Horizon:function(t){function e(){return t.apply(this,arguments)}return e.toString=function(){return t.toString()},e}((function(){return Horizon}))},methods:{formatDate:function(t){return xc()(1e3*t).add((new Date).getTimezoneOffset()/60)},formatDateIso:function(t){return xc()(t).add((new Date).getTimezoneOffset()/60)},jobBaseName:function(t){if(!t.includes("\\"))return t;var e=t.split("\\");return e[e.length-1]},autoLoadNewEntries:function(){this.autoLoadsNewEntries?(this.autoLoadsNewEntries=!1,localStorage.autoLoadsNewEntries=0):(this.autoLoadsNewEntries=!0,localStorage.autoLoadsNewEntries=1)},readableTimestamp:function(t){return this.formatDate(t).format("YYYY-MM-DD HH:mm:ss")}}};var Lc=n(9669),Nc=n.n(Lc);const Tc=[{path:"/",redirect:"/dashboard"},{path:"/dashboard",name:"dashboard",component:n(5093).Z},{path:"/monitoring",name:"monitoring",component:n(7618).Z},{path:"/monitoring/:tag",component:n(4418).Z,children:[{path:"jobs",name:"monitoring-jobs",component:n(6461).Z,props:{type:"jobs"}},{path:"failed",name:"monitoring-failed",component:n(6461).Z,props:{type:"failed"}}]},{path:"/metrics",redirect:"/metrics/jobs"},{path:"/metrics/",component:n(1477).Z,children:[{path:"jobs",name:"metrics-jobs",component:n(4469).Z},{path:"queues",name:"metrics-queues",component:n(626).Z}]},{path:"/metrics/:type/:slug",name:"metrics-preview",component:n(8004).Z},{path:"/jobs/:type",name:"jobs",component:n(4248).Z},{path:"/jobs/pending/:jobId",name:"pending-jobs-preview",component:n(2668).Z},{path:"/jobs/completed/:jobId",name:"completed-jobs-preview",component:n(2668).Z},{path:"/failed",name:"failed-jobs",component:n(6744).Z},{path:"/failed/:jobId",name:"failed-jobs-preview",component:n(6222).Z},{path:"/batches",name:"batches",component:n(2343).Z},{path:"/batches/:batchId",name:"batches-preview",component:n(5213).Z}];function Cc(t,e){for(var n in e)t[n]=e[n];return t}var qc=/[!'()*]/g,Sc=function(t){return"%"+t.charCodeAt(0).toString(16)},kc=/%2C/g,Ec=function(t){return encodeURIComponent(t).replace(qc,Sc).replace(kc,",")};function Wc(t){try{return decodeURIComponent(t)}catch(t){0}return t}var Bc=function(t){return null==t||"object"==typeof t?t:String(t)};function Dc(t){var e={};return(t=t.trim().replace(/^(\?|#|&)/,""))?(t.split("&").forEach((function(t){var n=t.replace(/\+/g," ").split("="),r=Wc(n.shift()),i=n.length>0?Wc(n.join("=")):null;void 0===e[r]?e[r]=i:Array.isArray(e[r])?e[r].push(i):e[r]=[e[r],i]})),e):e}function Xc(t){var e=t?Object.keys(t).map((function(e){var n=t[e];if(void 0===n)return"";if(null===n)return Ec(e);if(Array.isArray(n)){var r=[];return n.forEach((function(t){void 0!==t&&(null===t?r.push(Ec(e)):r.push(Ec(e)+"="+Ec(t)))})),r.join("&")}return Ec(e)+"="+Ec(n)})).filter((function(t){return t.length>0})).join("&"):null;return e?"?"+e:""}var Pc=/\/?$/;function Rc(t,e,n,r){var i=r&&r.options.stringifyQuery,o=e.query||{};try{o=jc(o)}catch(t){}var a={name:e.name||t&&t.name,meta:t&&t.meta||{},path:e.path||"/",hash:e.hash||"",query:o,params:e.params||{},fullPath:Hc(e,i),matched:t?Fc(t):[]};return n&&(a.redirectedFrom=Hc(n,i)),Object.freeze(a)}function jc(t){if(Array.isArray(t))return t.map(jc);if(t&&"object"==typeof t){var e={};for(var n in t)e[n]=jc(t[n]);return e}return t}var Ic=Rc(null,{path:"/"});function Fc(t){for(var e=[];t;)e.unshift(t),t=t.parent;return e}function Hc(t,e){var n=t.path,r=t.query;void 0===r&&(r={});var i=t.hash;return void 0===i&&(i=""),(n||"/")+(e||Xc)(r)+i}function $c(t,e,n){return e===Ic?t===e:!!e&&(t.path&&e.path?t.path.replace(Pc,"")===e.path.replace(Pc,"")&&(n||t.hash===e.hash&&Uc(t.query,e.query)):!(!t.name||!e.name)&&(t.name===e.name&&(n||t.hash===e.hash&&Uc(t.query,e.query)&&Uc(t.params,e.params))))}function Uc(t,e){if(void 0===t&&(t={}),void 0===e&&(e={}),!t||!e)return t===e;var n=Object.keys(t).sort(),r=Object.keys(e).sort();return n.length===r.length&&n.every((function(n,i){var o=t[n];if(r[i]!==n)return!1;var a=e[n];return null==o||null==a?o===a:"object"==typeof o&&"object"==typeof a?Uc(o,a):String(o)===String(a)}))}function Vc(t){for(var e=0;e=0&&(e=t.slice(r),t=t.slice(0,r));var i=t.indexOf("?");return i>=0&&(n=t.slice(i+1),t=t.slice(0,i)),{path:t,query:n,hash:e}}(i.path||""),l=e&&e.path||"/",u=s.path?Jc(s.path,l,n||i.append):l,f=function(t,e,n){void 0===e&&(e={});var r,i=n||Dc;try{r=i(t||"")}catch(t){r={}}for(var o in e){var a=e[o];r[o]=Array.isArray(a)?a.map(Bc):Bc(a)}return r}(s.query,i.query,r&&r.options.parseQuery),d=i.hash||s.hash;return d&&"#"!==d.charAt(0)&&(d="#"+d),{_normalized:!0,path:u,query:f,hash:d}}var vs,gs=function(){},ys={name:"RouterLink",props:{to:{type:[String,Object],required:!0},tag:{type:String,default:"a"},custom:Boolean,exact:Boolean,exactPath:Boolean,append:Boolean,replace:Boolean,activeClass:String,exactActiveClass:String,ariaCurrentValue:{type:String,default:"page"},event:{type:[String,Array],default:"click"}},render:function(t){var e=this,n=this.$router,r=this.$route,i=n.resolve(this.to,r,this.append),o=i.location,a=i.route,c=i.href,s={},l=n.options.linkActiveClass,u=n.options.linkExactActiveClass,f=null==l?"router-link-active":l,d=null==u?"router-link-exact-active":u,p=null==this.activeClass?f:this.activeClass,h=null==this.exactActiveClass?d:this.exactActiveClass,M=a.redirectedFrom?Rc(null,ms(a.redirectedFrom),null,n):a;s[h]=$c(r,M,this.exactPath),s[p]=this.exact||this.exactPath?s[h]:function(t,e){return 0===t.path.replace(Pc,"/").indexOf(e.path.replace(Pc,"/"))&&(!e.hash||t.hash===e.hash)&&function(t,e){for(var n in e)if(!(n in t))return!1;return!0}(t.query,e.query)}(r,M);var b=s[h]?this.ariaCurrentValue:null,m=function(t){As(t)&&(e.replace?n.replace(o,gs):n.push(o,gs))},v={click:As};Array.isArray(this.event)?this.event.forEach((function(t){v[t]=m})):v[this.event]=m;var g={class:s},y=!this.$scopedSlots.$hasNormal&&this.$scopedSlots.default&&this.$scopedSlots.default({href:c,route:a,navigate:m,isActive:s[p],isExactActive:s[h]});if(y){if(1===y.length)return y[0];if(y.length>1||!y.length)return 0===y.length?t():t("span",{},y)}if("a"===this.tag)g.on=v,g.attrs={href:c,"aria-current":b};else{var A=_s(this.$slots.default);if(A){A.isStatic=!1;var _=A.data=Cc({},A.data);for(var z in _.on=_.on||{},_.on){var O=_.on[z];z in v&&(_.on[z]=Array.isArray(O)?O:[O])}for(var x in v)x in _.on?_.on[x].push(v[x]):_.on[x]=m;var w=A.data.attrs=Cc({},A.data.attrs);w.href=c,w["aria-current"]=b}else g.on=v}return t(this.tag,g,this.$slots.default)}};function As(t){if(!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey||t.defaultPrevented||void 0!==t.button&&0!==t.button)){if(t.currentTarget&&t.currentTarget.getAttribute){var e=t.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(e))return}return t.preventDefault&&t.preventDefault(),!0}}function _s(t){if(t)for(var e,n=0;n-1&&(c.params[d]=n.params[d]);return c.path=bs(u.path,c.params),s(u,c,a)}if(c.path){c.params={};for(var p=0;p=t.length?n():t[i]?e(t[i],(function(){r(i+1)})):r(i+1)};r(0)}var Gs={redirected:2,aborted:4,cancelled:8,duplicated:16};function Js(t,e){return Qs(t,e,Gs.redirected,'Redirected when going from "'+t.fullPath+'" to "'+function(t){if("string"==typeof t)return t;if("path"in t)return t.path;var e={};return Zs.forEach((function(n){n in t&&(e[n]=t[n])})),JSON.stringify(e,null,2)}(e)+'" via a navigation guard.')}function Ks(t,e){return Qs(t,e,Gs.cancelled,'Navigation cancelled from "'+t.fullPath+'" to "'+e.fullPath+'" with a new navigation.')}function Qs(t,e,n,r){var i=new Error(r);return i._isRouter=!0,i.from=t,i.to=e,i.type=n,i}var Zs=["params","query","hash"];function tl(t){return Object.prototype.toString.call(t).indexOf("Error")>-1}function el(t,e){return tl(t)&&t._isRouter&&(null==e||t.type===e)}function nl(t){return function(e,n,r){var i=!1,o=0,a=null;rl(t,(function(t,e,n,c){if("function"==typeof t&&void 0===t.cid){i=!0,o++;var s,l=al((function(e){var i;((i=e).__esModule||ol&&"Module"===i[Symbol.toStringTag])&&(e=e.default),t.resolved="function"==typeof e?e:vs.extend(e),n.components[c]=e,--o<=0&&r()})),u=al((function(t){var e="Failed to resolve async component "+c+": "+t;a||(a=tl(t)?t:new Error(e),r(a))}));try{s=t(l,u)}catch(t){u(t)}if(s)if("function"==typeof s.then)s.then(l,u);else{var f=s.component;f&&"function"==typeof f.then&&f.then(l,u)}}})),i||r()}}function rl(t,e){return il(t.map((function(t){return Object.keys(t.components).map((function(n){return e(t.components[n],t.instances[n],t,n)}))})))}function il(t){return Array.prototype.concat.apply([],t)}var ol="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag;function al(t){var e=!1;return function(){for(var n=[],r=arguments.length;r--;)n[r]=arguments[r];if(!e)return e=!0,t.apply(this,n)}}var cl=function(t,e){this.router=t,this.base=function(t){if(!t)if(zs){var e=document.querySelector("base");t=(t=e&&e.getAttribute("href")||"/").replace(/^https?:\/\/[^\/]+/,"")}else t="/";"/"!==t.charAt(0)&&(t="/"+t);return t.replace(/\/$/,"")}(e),this.current=Ic,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[],this.listeners=[]};function sl(t,e,n,r){var i=rl(t,(function(t,r,i,o){var a=function(t,e){"function"!=typeof t&&(t=vs.extend(t));return t.options[e]}(t,e);if(a)return Array.isArray(a)?a.map((function(t){return n(t,r,i,o)})):n(a,r,i,o)}));return il(r?i.reverse():i)}function ll(t,e){if(e)return function(){return t.apply(e,arguments)}}cl.prototype.listen=function(t){this.cb=t},cl.prototype.onReady=function(t,e){this.ready?t():(this.readyCbs.push(t),e&&this.readyErrorCbs.push(e))},cl.prototype.onError=function(t){this.errorCbs.push(t)},cl.prototype.transitionTo=function(t,e,n){var r,i=this;try{r=this.router.match(t,this.current)}catch(t){throw this.errorCbs.forEach((function(e){e(t)})),t}var o=this.current;this.confirmTransition(r,(function(){i.updateRoute(r),e&&e(r),i.ensureURL(),i.router.afterHooks.forEach((function(t){t&&t(r,o)})),i.ready||(i.ready=!0,i.readyCbs.forEach((function(t){t(r)})))}),(function(t){n&&n(t),t&&!i.ready&&(el(t,Gs.redirected)&&o===Ic||(i.ready=!0,i.readyErrorCbs.forEach((function(e){e(t)}))))}))},cl.prototype.confirmTransition=function(t,e,n){var r=this,i=this.current;this.pending=t;var o,a,c=function(t){!el(t)&&tl(t)&&r.errorCbs.length&&r.errorCbs.forEach((function(e){e(t)})),n&&n(t)},s=t.matched.length-1,l=i.matched.length-1;if($c(t,i)&&s===l&&t.matched[s]===i.matched[l])return this.ensureURL(),c(((a=Qs(o=i,t,Gs.duplicated,'Avoided redundant navigation to current location: "'+o.fullPath+'".')).name="NavigationDuplicated",a));var u=function(t,e){var n,r=Math.max(t.length,e.length);for(n=0;n0)){var e=this.router,n=e.options.scrollBehavior,r=$s&&n;r&&this.listeners.push(Ws());var i=function(){var n=t.current,i=fl(t.base);t.current===Ic&&i===t._startLocation||t.transitionTo(i,(function(t){r&&Bs(e,t,n,!0)}))};window.addEventListener("popstate",i),this.listeners.push((function(){window.removeEventListener("popstate",i)}))}},e.prototype.go=function(t){window.history.go(t)},e.prototype.push=function(t,e,n){var r=this,i=this.current;this.transitionTo(t,(function(t){Us(Kc(r.base+t.fullPath)),Bs(r.router,t,i,!1),e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var r=this,i=this.current;this.transitionTo(t,(function(t){Vs(Kc(r.base+t.fullPath)),Bs(r.router,t,i,!1),e&&e(t)}),n)},e.prototype.ensureURL=function(t){if(fl(this.base)!==this.current.fullPath){var e=Kc(this.base+this.current.fullPath);t?Us(e):Vs(e)}},e.prototype.getCurrentLocation=function(){return fl(this.base)},e}(cl);function fl(t){var e=window.location.pathname;return t&&0===e.toLowerCase().indexOf(t.toLowerCase())&&(e=e.slice(t.length)),(e||"/")+window.location.search+window.location.hash}var dl=function(t){function e(e,n,r){t.call(this,e,n),r&&function(t){var e=fl(t);if(!/^\/#/.test(e))return window.location.replace(Kc(t+"/#"+e)),!0}(this.base)||pl()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setupListeners=function(){var t=this;if(!(this.listeners.length>0)){var e=this.router.options.scrollBehavior,n=$s&&e;n&&this.listeners.push(Ws());var r=function(){var e=t.current;pl()&&t.transitionTo(hl(),(function(r){n&&Bs(t.router,r,e,!0),$s||ml(r.fullPath)}))},i=$s?"popstate":"hashchange";window.addEventListener(i,r),this.listeners.push((function(){window.removeEventListener(i,r)}))}},e.prototype.push=function(t,e,n){var r=this,i=this.current;this.transitionTo(t,(function(t){bl(t.fullPath),Bs(r.router,t,i,!1),e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var r=this,i=this.current;this.transitionTo(t,(function(t){ml(t.fullPath),Bs(r.router,t,i,!1),e&&e(t)}),n)},e.prototype.go=function(t){window.history.go(t)},e.prototype.ensureURL=function(t){var e=this.current.fullPath;hl()!==e&&(t?bl(e):ml(e))},e.prototype.getCurrentLocation=function(){return hl()},e}(cl);function pl(){var t=hl();return"/"===t.charAt(0)||(ml("/"+t),!1)}function hl(){var t=window.location.href,e=t.indexOf("#");return e<0?"":t=t.slice(e+1)}function Ml(t){var e=window.location.href,n=e.indexOf("#");return(n>=0?e.slice(0,n):e)+"#"+t}function bl(t){$s?Us(Ml(t)):window.location.hash=t}function ml(t){$s?Vs(Ml(t)):window.location.replace(Ml(t))}var vl=function(t){function e(e,n){t.call(this,e,n),this.stack=[],this.index=-1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.push=function(t,e,n){var r=this;this.transitionTo(t,(function(t){r.stack=r.stack.slice(0,r.index+1).concat(t),r.index++,e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var r=this;this.transitionTo(t,(function(t){r.stack=r.stack.slice(0,r.index).concat(t),e&&e(t)}),n)},e.prototype.go=function(t){var e=this,n=this.index+t;if(!(n<0||n>=this.stack.length)){var r=this.stack[n];this.confirmTransition(r,(function(){var t=e.current;e.index=n,e.updateRoute(r),e.router.afterHooks.forEach((function(e){e&&e(r,t)}))}),(function(t){el(t,Gs.duplicated)&&(e.index=n)}))}},e.prototype.getCurrentLocation=function(){var t=this.stack[this.stack.length-1];return t?t.fullPath:"/"},e.prototype.ensureURL=function(){},e}(cl),gl=function(t){void 0===t&&(t={}),this.app=null,this.apps=[],this.options=t,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=Ls(t.routes||[],this);var e=t.mode||"hash";switch(this.fallback="history"===e&&!$s&&!1!==t.fallback,this.fallback&&(e="hash"),zs||(e="abstract"),this.mode=e,e){case"history":this.history=new ul(this,t.base);break;case"hash":this.history=new dl(this,t.base,this.fallback);break;case"abstract":this.history=new vl(this,t.base)}},yl={currentRoute:{configurable:!0}};function Al(t,e){return t.push(e),function(){var n=t.indexOf(e);n>-1&&t.splice(n,1)}}gl.prototype.match=function(t,e,n){return this.matcher.match(t,e,n)},yl.currentRoute.get=function(){return this.history&&this.history.current},gl.prototype.init=function(t){var e=this;if(this.apps.push(t),t.$once("hook:destroyed",(function(){var n=e.apps.indexOf(t);n>-1&&e.apps.splice(n,1),e.app===t&&(e.app=e.apps[0]||null),e.app||e.history.teardown()})),!this.app){this.app=t;var n=this.history;if(n instanceof ul||n instanceof dl){var r=function(t){n.setupListeners(),function(t){var r=n.current,i=e.options.scrollBehavior;$s&&i&&"fullPath"in t&&Bs(e,t,r,!1)}(t)};n.transitionTo(n.getCurrentLocation(),r,r)}n.listen((function(t){e.apps.forEach((function(e){e._route=t}))}))}},gl.prototype.beforeEach=function(t){return Al(this.beforeHooks,t)},gl.prototype.beforeResolve=function(t){return Al(this.resolveHooks,t)},gl.prototype.afterEach=function(t){return Al(this.afterHooks,t)},gl.prototype.onReady=function(t,e){this.history.onReady(t,e)},gl.prototype.onError=function(t){this.history.onError(t)},gl.prototype.push=function(t,e,n){var r=this;if(!e&&!n&&"undefined"!=typeof Promise)return new Promise((function(e,n){r.history.push(t,e,n)}));this.history.push(t,e,n)},gl.prototype.replace=function(t,e,n){var r=this;if(!e&&!n&&"undefined"!=typeof Promise)return new Promise((function(e,n){r.history.replace(t,e,n)}));this.history.replace(t,e,n)},gl.prototype.go=function(t){this.history.go(t)},gl.prototype.back=function(){this.go(-1)},gl.prototype.forward=function(){this.go(1)},gl.prototype.getMatchedComponents=function(t){var e=t?t.matched?t:this.resolve(t).route:this.currentRoute;return e?[].concat.apply([],e.matched.map((function(t){return Object.keys(t.components).map((function(e){return t.components[e]}))}))):[]},gl.prototype.resolve=function(t,e,n){var r=ms(t,e=e||this.history.current,n,this),i=this.match(r,e),o=i.redirectedFrom||i.fullPath,a=function(t,e,n){var r="hash"===n?"#"+e:e;return t?Kc(t+"/"+r):r}(this.history.base,o,this.mode);return{location:r,route:i,href:a,normalizedTo:r,resolved:i}},gl.prototype.getRoutes=function(){return this.matcher.getRoutes()},gl.prototype.addRoute=function(t,e){this.matcher.addRoute(t,e),this.history.current!==Ic&&this.history.transitionTo(this.history.getCurrentLocation())},gl.prototype.addRoutes=function(t){this.matcher.addRoutes(t),this.history.current!==Ic&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(gl.prototype,yl),gl.install=function t(e){if(!t.installed||vs!==e){t.installed=!0,vs=e;var n=function(t){return void 0!==t},r=function(t,e){var r=t.$options._parentVnode;n(r)&&n(r=r.data)&&n(r=r.registerRouteInstance)&&r(t,e)};e.mixin({beforeCreate:function(){n(this.$options.router)?(this._routerRoot=this,this._router=this.$options.router,this._router.init(this),e.util.defineReactive(this,"_route",this._router.history.current)):this._routerRoot=this.$parent&&this.$parent._routerRoot||this,r(this,this)},destroyed:function(){r(this)}}),Object.defineProperty(e.prototype,"$router",{get:function(){return this._routerRoot._router}}),Object.defineProperty(e.prototype,"$route",{get:function(){return this._routerRoot._route}}),e.component("RouterView",Yc),e.component("RouterLink",ys);var i=e.config.optionMergeStrategies;i.beforeRouteEnter=i.beforeRouteLeave=i.beforeRouteUpdate=i.created}},gl.version="3.5.1",gl.isNavigationFailure=el,gl.NavigationFailureType=Gs,gl.START_LOCATION=Ic,zs&&window.Vue&&window.Vue.use(gl);const _l=gl;var zl=n(4566),Ol=n.n(zl);window.Popper=n(8981).default;try{window.$=window.jQuery=n(9755),n(3734)}catch(t){}var xl=document.head.querySelector('meta[name="csrf-token"]');Nc().defaults.headers.common["X-Requested-With"]="XMLHttpRequest",xl&&(Nc().defaults.headers.common["X-CSRF-TOKEN"]=xl.content),zc.use(_l),zc.prototype.$http=Nc().create(),window.Horizon.basePath="/"+window.Horizon.path;var wl=window.Horizon.basePath+"/";""!==window.Horizon.path&&"/"!==window.Horizon.path||(wl="/",window.Horizon.basePath="");var Ll=new _l({routes:Tc,mode:"history",base:wl});zc.component("vue-json-pretty",Ol()),zc.component("alert",n(2254).Z),zc.mixin(wc),zc.directive("tooltip",(function(t,e){$(t).tooltip({title:e.value,placement:e.arg,trigger:"hover"})})),new zc({el:"#horizon",router:Ll,data:function(){return{alert:{type:null,autoClose:0,message:"",confirmationProceed:null,confirmationCancel:null},autoLoadsNewEntries:"1"===localStorage.autoLoadsNewEntries}}})},3734:function(t,e,n){!function(t,e,n){"use strict";function r(t){return t&&"object"==typeof t&&"default"in t?t:{default:t}}var i=r(e),o=r(n);function a(t,e){for(var n=0;n=a)throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}};m.jQueryDetection(),b();var v="alert",g="4.6.0",y="bs.alert",A="."+y,_=".data-api",z=i.default.fn[v],O='[data-dismiss="alert"]',x="close"+A,w="closed"+A,L="click"+A+_,N="alert",T="fade",C="show",q=function(){function t(t){this._element=t}var e=t.prototype;return e.close=function(t){var e=this._element;t&&(e=this._getRootElement(t)),this._triggerCloseEvent(e).isDefaultPrevented()||this._removeElement(e)},e.dispose=function(){i.default.removeData(this._element,y),this._element=null},e._getRootElement=function(t){var e=m.getSelectorFromElement(t),n=!1;return e&&(n=document.querySelector(e)),n||(n=i.default(t).closest("."+N)[0]),n},e._triggerCloseEvent=function(t){var e=i.default.Event(x);return i.default(t).trigger(e),e},e._removeElement=function(t){var e=this;if(i.default(t).removeClass(C),i.default(t).hasClass(T)){var n=m.getTransitionDurationFromElement(t);i.default(t).one(m.TRANSITION_END,(function(n){return e._destroyElement(t,n)})).emulateTransitionEnd(n)}else this._destroyElement(t)},e._destroyElement=function(t){i.default(t).detach().trigger(w).remove()},t._jQueryInterface=function(e){return this.each((function(){var n=i.default(this),r=n.data(y);r||(r=new t(this),n.data(y,r)),"close"===e&&r[e](this)}))},t._handleDismiss=function(t){return function(e){e&&e.preventDefault(),t.close(this)}},c(t,null,[{key:"VERSION",get:function(){return g}}]),t}();i.default(document).on(L,O,q._handleDismiss(new q)),i.default.fn[v]=q._jQueryInterface,i.default.fn[v].Constructor=q,i.default.fn[v].noConflict=function(){return i.default.fn[v]=z,q._jQueryInterface};var S="button",k="4.6.0",E="bs.button",W="."+E,B=".data-api",D=i.default.fn[S],X="active",P="btn",R="focus",j='[data-toggle^="button"]',I='[data-toggle="buttons"]',F='[data-toggle="button"]',H='[data-toggle="buttons"] .btn',$='input:not([type="hidden"])',U=".active",V=".btn",Y="click"+W+B,G="focus"+W+B+" blur"+W+B,J="load"+W+B,K=function(){function t(t){this._element=t,this.shouldAvoidTriggerChange=!1}var e=t.prototype;return e.toggle=function(){var t=!0,e=!0,n=i.default(this._element).closest(I)[0];if(n){var r=this._element.querySelector($);if(r){if("radio"===r.type)if(r.checked&&this._element.classList.contains(X))t=!1;else{var o=n.querySelector(U);o&&i.default(o).removeClass(X)}t&&("checkbox"!==r.type&&"radio"!==r.type||(r.checked=!this._element.classList.contains(X)),this.shouldAvoidTriggerChange||i.default(r).trigger("change")),r.focus(),e=!1}}this._element.hasAttribute("disabled")||this._element.classList.contains("disabled")||(e&&this._element.setAttribute("aria-pressed",!this._element.classList.contains(X)),t&&i.default(this._element).toggleClass(X))},e.dispose=function(){i.default.removeData(this._element,E),this._element=null},t._jQueryInterface=function(e,n){return this.each((function(){var r=i.default(this),o=r.data(E);o||(o=new t(this),r.data(E,o)),o.shouldAvoidTriggerChange=n,"toggle"===e&&o[e]()}))},c(t,null,[{key:"VERSION",get:function(){return k}}]),t}();i.default(document).on(Y,j,(function(t){var e=t.target,n=e;if(i.default(e).hasClass(P)||(e=i.default(e).closest(V)[0]),!e||e.hasAttribute("disabled")||e.classList.contains("disabled"))t.preventDefault();else{var r=e.querySelector($);if(r&&(r.hasAttribute("disabled")||r.classList.contains("disabled")))return void t.preventDefault();"INPUT"!==n.tagName&&"LABEL"===e.tagName||K._jQueryInterface.call(i.default(e),"toggle","INPUT"===n.tagName)}})).on(G,j,(function(t){var e=i.default(t.target).closest(V)[0];i.default(e).toggleClass(R,/^focus(in)?$/.test(t.type))})),i.default(window).on(J,(function(){for(var t=[].slice.call(document.querySelectorAll(H)),e=0,n=t.length;e0,this._pointerEvent=Boolean(window.PointerEvent||window.MSPointerEvent),this._addEventListeners()}var e=t.prototype;return e.next=function(){this._isSliding||this._slide(ut)},e.nextWhenVisible=function(){var t=i.default(this._element);!document.hidden&&t.is(":visible")&&"hidden"!==t.css("visibility")&&this.next()},e.prev=function(){this._isSliding||this._slide(ft)},e.pause=function(t){t||(this._isPaused=!0),this._element.querySelector(Pt)&&(m.triggerTransitionEnd(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null},e.cycle=function(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config.interval&&!this._isPaused&&(this._updateInterval(),this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))},e.to=function(t){var e=this;this._activeElement=this._element.querySelector(Bt);var n=this._getItemIndex(this._activeElement);if(!(t>this._items.length-1||t<0))if(this._isSliding)i.default(this._element).one(Mt,(function(){return e.to(t)}));else{if(n===t)return this.pause(),void this.cycle();var r=t>n?ut:ft;this._slide(r,this._items[t])}},e.dispose=function(){i.default(this._element).off(et),i.default.removeData(this._element,tt),this._items=null,this._config=null,this._element=null,this._interval=null,this._isPaused=null,this._isSliding=null,this._activeElement=null,this._indicatorsElement=null},e._getConfig=function(t){return t=s({},st,t),m.typeCheckConfig(Q,t,lt),t},e._handleSwipe=function(){var t=Math.abs(this.touchDeltaX);if(!(t<=ct)){var e=t/this.touchDeltaX;this.touchDeltaX=0,e>0&&this.prev(),e<0&&this.next()}},e._addEventListeners=function(){var t=this;this._config.keyboard&&i.default(this._element).on(bt,(function(e){return t._keydown(e)})),"hover"===this._config.pause&&i.default(this._element).on(mt,(function(e){return t.pause(e)})).on(vt,(function(e){return t.cycle(e)})),this._config.touch&&this._addTouchEventListeners()},e._addTouchEventListeners=function(){var t=this;if(this._touchSupported){var e=function(e){t._pointerEvent&&Ft[e.originalEvent.pointerType.toUpperCase()]?t.touchStartX=e.originalEvent.clientX:t._pointerEvent||(t.touchStartX=e.originalEvent.touches[0].clientX)},n=function(e){e.originalEvent.touches&&e.originalEvent.touches.length>1?t.touchDeltaX=0:t.touchDeltaX=e.originalEvent.touches[0].clientX-t.touchStartX},r=function(e){t._pointerEvent&&Ft[e.originalEvent.pointerType.toUpperCase()]&&(t.touchDeltaX=e.originalEvent.clientX-t.touchStartX),t._handleSwipe(),"hover"===t._config.pause&&(t.pause(),t.touchTimeout&&clearTimeout(t.touchTimeout),t.touchTimeout=setTimeout((function(e){return t.cycle(e)}),at+t._config.interval))};i.default(this._element.querySelectorAll(Xt)).on(Ot,(function(t){return t.preventDefault()})),this._pointerEvent?(i.default(this._element).on(_t,(function(t){return e(t)})),i.default(this._element).on(zt,(function(t){return r(t)})),this._element.classList.add(Et)):(i.default(this._element).on(gt,(function(t){return e(t)})),i.default(this._element).on(yt,(function(t){return n(t)})),i.default(this._element).on(At,(function(t){return r(t)})))}},e._keydown=function(t){if(!/input|textarea/i.test(t.target.tagName))switch(t.which){case it:t.preventDefault(),this.prev();break;case ot:t.preventDefault(),this.next()}},e._getItemIndex=function(t){return this._items=t&&t.parentNode?[].slice.call(t.parentNode.querySelectorAll(Dt)):[],this._items.indexOf(t)},e._getItemByDirection=function(t,e){var n=t===ut,r=t===ft,i=this._getItemIndex(e),o=this._items.length-1;if((r&&0===i||n&&i===o)&&!this._config.wrap)return e;var a=(i+(t===ft?-1:1))%this._items.length;return-1===a?this._items[this._items.length-1]:this._items[a]},e._triggerSlideEvent=function(t,e){var n=this._getItemIndex(t),r=this._getItemIndex(this._element.querySelector(Bt)),o=i.default.Event(ht,{relatedTarget:t,direction:e,from:r,to:n});return i.default(this._element).trigger(o),o},e._setActiveIndicatorElement=function(t){if(this._indicatorsElement){var e=[].slice.call(this._indicatorsElement.querySelectorAll(Wt));i.default(e).removeClass(Nt);var n=this._indicatorsElement.children[this._getItemIndex(t)];n&&i.default(n).addClass(Nt)}},e._updateInterval=function(){var t=this._activeElement||this._element.querySelector(Bt);if(t){var e=parseInt(t.getAttribute("data-interval"),10);e?(this._config.defaultInterval=this._config.defaultInterval||this._config.interval,this._config.interval=e):this._config.interval=this._config.defaultInterval||this._config.interval}},e._slide=function(t,e){var n,r,o,a=this,c=this._element.querySelector(Bt),s=this._getItemIndex(c),l=e||c&&this._getItemByDirection(t,c),u=this._getItemIndex(l),f=Boolean(this._interval);if(t===ut?(n=qt,r=St,o=dt):(n=Ct,r=kt,o=pt),l&&i.default(l).hasClass(Nt))this._isSliding=!1;else if(!this._triggerSlideEvent(l,o).isDefaultPrevented()&&c&&l){this._isSliding=!0,f&&this.pause(),this._setActiveIndicatorElement(l),this._activeElement=l;var d=i.default.Event(Mt,{relatedTarget:l,direction:o,from:s,to:u});if(i.default(this._element).hasClass(Tt)){i.default(l).addClass(r),m.reflow(l),i.default(c).addClass(n),i.default(l).addClass(n);var p=m.getTransitionDurationFromElement(c);i.default(c).one(m.TRANSITION_END,(function(){i.default(l).removeClass(n+" "+r).addClass(Nt),i.default(c).removeClass(Nt+" "+r+" "+n),a._isSliding=!1,setTimeout((function(){return i.default(a._element).trigger(d)}),0)})).emulateTransitionEnd(p)}else i.default(c).removeClass(Nt),i.default(l).addClass(Nt),this._isSliding=!1,i.default(this._element).trigger(d);f&&this.cycle()}},t._jQueryInterface=function(e){return this.each((function(){var n=i.default(this).data(tt),r=s({},st,i.default(this).data());"object"==typeof e&&(r=s({},r,e));var o="string"==typeof e?e:r.slide;if(n||(n=new t(this,r),i.default(this).data(tt,n)),"number"==typeof e)n.to(e);else if("string"==typeof o){if(void 0===n[o])throw new TypeError('No method named "'+o+'"');n[o]()}else r.interval&&r.ride&&(n.pause(),n.cycle())}))},t._dataApiClickHandler=function(e){var n=m.getSelectorFromElement(this);if(n){var r=i.default(n)[0];if(r&&i.default(r).hasClass(Lt)){var o=s({},i.default(r).data(),i.default(this).data()),a=this.getAttribute("data-slide-to");a&&(o.interval=!1),t._jQueryInterface.call(i.default(r),o),a&&i.default(r).data(tt).to(a),e.preventDefault()}}},c(t,null,[{key:"VERSION",get:function(){return Z}},{key:"Default",get:function(){return st}}]),t}();i.default(document).on(wt,jt,Ht._dataApiClickHandler),i.default(window).on(xt,(function(){for(var t=[].slice.call(document.querySelectorAll(It)),e=0,n=t.length;e0&&(this._selector=a,this._triggerArray.push(o))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}var e=t.prototype;return e.toggle=function(){i.default(this._element).hasClass(ie)?this.hide():this.show()},e.show=function(){var e,n,r=this;if(!(this._isTransitioning||i.default(this._element).hasClass(ie)||(this._parent&&0===(e=[].slice.call(this._parent.querySelectorAll(ue)).filter((function(t){return"string"==typeof r._config.parent?t.getAttribute("data-parent")===r._config.parent:t.classList.contains(oe)}))).length&&(e=null),e&&(n=i.default(e).not(this._selector).data(Vt))&&n._isTransitioning))){var o=i.default.Event(Zt);if(i.default(this._element).trigger(o),!o.isDefaultPrevented()){e&&(t._jQueryInterface.call(i.default(e).not(this._selector),"hide"),n||i.default(e).data(Vt,null));var a=this._getDimension();i.default(this._element).removeClass(oe).addClass(ae),this._element.style[a]=0,this._triggerArray.length&&i.default(this._triggerArray).removeClass(ce).attr("aria-expanded",!0),this.setTransitioning(!0);var c=function(){i.default(r._element).removeClass(ae).addClass(oe+" "+ie),r._element.style[a]="",r.setTransitioning(!1),i.default(r._element).trigger(te)},s="scroll"+(a[0].toUpperCase()+a.slice(1)),l=m.getTransitionDurationFromElement(this._element);i.default(this._element).one(m.TRANSITION_END,c).emulateTransitionEnd(l),this._element.style[a]=this._element[s]+"px"}}},e.hide=function(){var t=this;if(!this._isTransitioning&&i.default(this._element).hasClass(ie)){var e=i.default.Event(ee);if(i.default(this._element).trigger(e),!e.isDefaultPrevented()){var n=this._getDimension();this._element.style[n]=this._element.getBoundingClientRect()[n]+"px",m.reflow(this._element),i.default(this._element).addClass(ae).removeClass(oe+" "+ie);var r=this._triggerArray.length;if(r>0)for(var o=0;o0},e._getOffset=function(){var t=this,e={};return"function"==typeof this._config.offset?e.fn=function(e){return e.offsets=s({},e.offsets,t._config.offset(e.offsets,t._element)||{}),e}:e.offset=this._config.offset,e},e._getPopperConfig=function(){var t={placement:this._getPlacement(),modifiers:{offset:this._getOffset(),flip:{enabled:this._config.flip},preventOverflow:{boundariesElement:this._config.boundary}}};return"static"===this._config.display&&(t.modifiers.applyStyle={enabled:!1}),s({},t,this._config.popperConfig)},t._jQueryInterface=function(e){return this.each((function(){var n=i.default(this).data(Me);if(n||(n=new t(this,"object"==typeof e?e:null),i.default(this).data(Me,n)),"string"==typeof e){if(void 0===n[e])throw new TypeError('No method named "'+e+'"');n[e]()}}))},t._clearMenus=function(e){if(!e||e.which!==Oe&&("keyup"!==e.type||e.which===Ae))for(var n=[].slice.call(document.querySelectorAll(je)),r=0,o=n.length;r0&&a--,e.which===ze&&adocument.documentElement.clientHeight;n||(this._element.style.overflowY="hidden"),this._element.classList.add(Tn);var r=m.getTransitionDurationFromElement(this._dialog);i.default(this._element).off(m.TRANSITION_END),i.default(this._element).one(m.TRANSITION_END,(function(){t._element.classList.remove(Tn),n||i.default(t._element).one(m.TRANSITION_END,(function(){t._element.style.overflowY=""})).emulateTransitionEnd(t._element,r)})).emulateTransitionEnd(r),this._element.focus()}},e._showElement=function(t){var e=this,n=i.default(this._element).hasClass(Ln),r=this._dialog?this._dialog.querySelector(qn):null;this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.appendChild(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),i.default(this._dialog).hasClass(zn)&&r?r.scrollTop=0:this._element.scrollTop=0,n&&m.reflow(this._element),i.default(this._element).addClass(Nn),this._config.focus&&this._enforceFocus();var o=i.default.Event(Mn,{relatedTarget:t}),a=function(){e._config.focus&&e._element.focus(),e._isTransitioning=!1,i.default(e._element).trigger(o)};if(n){var c=m.getTransitionDurationFromElement(this._dialog);i.default(this._dialog).one(m.TRANSITION_END,a).emulateTransitionEnd(c)}else a()},e._enforceFocus=function(){var t=this;i.default(document).off(bn).on(bn,(function(e){document!==e.target&&t._element!==e.target&&0===i.default(t._element).has(e.target).length&&t._element.focus()}))},e._setEscapeEvent=function(){var t=this;this._isShown?i.default(this._element).on(gn,(function(e){t._config.keyboard&&e.which===sn?(e.preventDefault(),t.hide()):t._config.keyboard||e.which!==sn||t._triggerBackdropTransition()})):this._isShown||i.default(this._element).off(gn)},e._setResizeEvent=function(){var t=this;this._isShown?i.default(window).on(mn,(function(e){return t.handleUpdate(e)})):i.default(window).off(mn)},e._hideModal=function(){var t=this;this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._showBackdrop((function(){i.default(document.body).removeClass(wn),t._resetAdjustments(),t._resetScrollbar(),i.default(t._element).trigger(pn)}))},e._removeBackdrop=function(){this._backdrop&&(i.default(this._backdrop).remove(),this._backdrop=null)},e._showBackdrop=function(t){var e=this,n=i.default(this._element).hasClass(Ln)?Ln:"";if(this._isShown&&this._config.backdrop){if(this._backdrop=document.createElement("div"),this._backdrop.className=xn,n&&this._backdrop.classList.add(n),i.default(this._backdrop).appendTo(document.body),i.default(this._element).on(vn,(function(t){e._ignoreBackdropClick?e._ignoreBackdropClick=!1:t.target===t.currentTarget&&("static"===e._config.backdrop?e._triggerBackdropTransition():e.hide())})),n&&m.reflow(this._backdrop),i.default(this._backdrop).addClass(Nn),!t)return;if(!n)return void t();var r=m.getTransitionDurationFromElement(this._backdrop);i.default(this._backdrop).one(m.TRANSITION_END,t).emulateTransitionEnd(r)}else if(!this._isShown&&this._backdrop){i.default(this._backdrop).removeClass(Nn);var o=function(){e._removeBackdrop(),t&&t()};if(i.default(this._element).hasClass(Ln)){var a=m.getTransitionDurationFromElement(this._backdrop);i.default(this._backdrop).one(m.TRANSITION_END,o).emulateTransitionEnd(a)}else o()}else t&&t()},e._adjustDialog=function(){var t=this._element.scrollHeight>document.documentElement.clientHeight;!this._isBodyOverflowing&&t&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!t&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},e._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},e._checkScrollbar=function(){var t=document.body.getBoundingClientRect();this._isBodyOverflowing=Math.round(t.left+t.right)
',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent",customClass:"",sanitize:!0,sanitizeFn:null,whiteList:Xn,popperConfig:null},tr="show",er="out",nr={HIDE:"hide"+Un,HIDDEN:"hidden"+Un,SHOW:"show"+Un,SHOWN:"shown"+Un,INSERTED:"inserted"+Un,CLICK:"click"+Un,FOCUSIN:"focusin"+Un,FOCUSOUT:"focusout"+Un,MOUSEENTER:"mouseenter"+Un,MOUSELEAVE:"mouseleave"+Un},rr="fade",ir="show",or=".tooltip-inner",ar=".arrow",cr="hover",sr="focus",lr="click",ur="manual",fr=function(){function t(t,e){if(void 0===o.default)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var e=t.prototype;return e.enable=function(){this._isEnabled=!0},e.disable=function(){this._isEnabled=!1},e.toggleEnabled=function(){this._isEnabled=!this._isEnabled},e.toggle=function(t){if(this._isEnabled)if(t){var e=this.constructor.DATA_KEY,n=i.default(t.currentTarget).data(e);n||(n=new this.constructor(t.currentTarget,this._getDelegateConfig()),i.default(t.currentTarget).data(e,n)),n._activeTrigger.click=!n._activeTrigger.click,n._isWithActiveTrigger()?n._enter(null,n):n._leave(null,n)}else{if(i.default(this.getTipElement()).hasClass(ir))return void this._leave(null,this);this._enter(null,this)}},e.dispose=function(){clearTimeout(this._timeout),i.default.removeData(this.element,this.constructor.DATA_KEY),i.default(this.element).off(this.constructor.EVENT_KEY),i.default(this.element).closest(".modal").off("hide.bs.modal",this._hideModalHandler),this.tip&&i.default(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,this._activeTrigger=null,this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},e.show=function(){var t=this;if("none"===i.default(this.element).css("display"))throw new Error("Please use show on visible elements");var e=i.default.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){i.default(this.element).trigger(e);var n=m.findShadowRoot(this.element),r=i.default.contains(null!==n?n:this.element.ownerDocument.documentElement,this.element);if(e.isDefaultPrevented()||!r)return;var a=this.getTipElement(),c=m.getUID(this.constructor.NAME);a.setAttribute("id",c),this.element.setAttribute("aria-describedby",c),this.setContent(),this.config.animation&&i.default(a).addClass(rr);var s="function"==typeof this.config.placement?this.config.placement.call(this,a,this.element):this.config.placement,l=this._getAttachment(s);this.addAttachmentClass(l);var u=this._getContainer();i.default(a).data(this.constructor.DATA_KEY,this),i.default.contains(this.element.ownerDocument.documentElement,this.tip)||i.default(a).appendTo(u),i.default(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new o.default(this.element,a,this._getPopperConfig(l)),i.default(a).addClass(ir),i.default(a).addClass(this.config.customClass),"ontouchstart"in document.documentElement&&i.default(document.body).children().on("mouseover",null,i.default.noop);var f=function(){t.config.animation&&t._fixTransition();var e=t._hoverState;t._hoverState=null,i.default(t.element).trigger(t.constructor.Event.SHOWN),e===er&&t._leave(null,t)};if(i.default(this.tip).hasClass(rr)){var d=m.getTransitionDurationFromElement(this.tip);i.default(this.tip).one(m.TRANSITION_END,f).emulateTransitionEnd(d)}else f()}},e.hide=function(t){var e=this,n=this.getTipElement(),r=i.default.Event(this.constructor.Event.HIDE),o=function(){e._hoverState!==tr&&n.parentNode&&n.parentNode.removeChild(n),e._cleanTipClass(),e.element.removeAttribute("aria-describedby"),i.default(e.element).trigger(e.constructor.Event.HIDDEN),null!==e._popper&&e._popper.destroy(),t&&t()};if(i.default(this.element).trigger(r),!r.isDefaultPrevented()){if(i.default(n).removeClass(ir),"ontouchstart"in document.documentElement&&i.default(document.body).children().off("mouseover",null,i.default.noop),this._activeTrigger[lr]=!1,this._activeTrigger[sr]=!1,this._activeTrigger[cr]=!1,i.default(this.tip).hasClass(rr)){var a=m.getTransitionDurationFromElement(n);i.default(n).one(m.TRANSITION_END,o).emulateTransitionEnd(a)}else o();this._hoverState=""}},e.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},e.isWithContent=function(){return Boolean(this.getTitle())},e.addAttachmentClass=function(t){i.default(this.getTipElement()).addClass(Yn+"-"+t)},e.getTipElement=function(){return this.tip=this.tip||i.default(this.config.template)[0],this.tip},e.setContent=function(){var t=this.getTipElement();this.setElementContent(i.default(t.querySelectorAll(or)),this.getTitle()),i.default(t).removeClass(rr+" "+ir)},e.setElementContent=function(t,e){"object"!=typeof e||!e.nodeType&&!e.jquery?this.config.html?(this.config.sanitize&&(e=In(e,this.config.whiteList,this.config.sanitizeFn)),t.html(e)):t.text(e):this.config.html?i.default(e).parent().is(t)||t.empty().append(e):t.text(i.default(e).text())},e.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},e._getPopperConfig=function(t){var e=this;return s({},{placement:t,modifiers:{offset:this._getOffset(),flip:{behavior:this.config.fallbackPlacement},arrow:{element:ar},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){return e._handlePopperPlacementChange(t)}},this.config.popperConfig)},e._getOffset=function(){var t=this,e={};return"function"==typeof this.config.offset?e.fn=function(e){return e.offsets=s({},e.offsets,t.config.offset(e.offsets,t.element)||{}),e}:e.offset=this.config.offset,e},e._getContainer=function(){return!1===this.config.container?document.body:m.isElement(this.config.container)?i.default(this.config.container):i.default(document).find(this.config.container)},e._getAttachment=function(t){return Qn[t.toUpperCase()]},e._setListeners=function(){var t=this;this.config.trigger.split(" ").forEach((function(e){if("click"===e)i.default(t.element).on(t.constructor.Event.CLICK,t.config.selector,(function(e){return t.toggle(e)}));else if(e!==ur){var n=e===cr?t.constructor.Event.MOUSEENTER:t.constructor.Event.FOCUSIN,r=e===cr?t.constructor.Event.MOUSELEAVE:t.constructor.Event.FOCUSOUT;i.default(t.element).on(n,t.config.selector,(function(e){return t._enter(e)})).on(r,t.config.selector,(function(e){return t._leave(e)}))}})),this._hideModalHandler=function(){t.element&&t.hide()},i.default(this.element).closest(".modal").on("hide.bs.modal",this._hideModalHandler),this.config.selector?this.config=s({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},e._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},e._enter=function(t,e){var n=this.constructor.DATA_KEY;(e=e||i.default(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),i.default(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusin"===t.type?sr:cr]=!0),i.default(e.getTipElement()).hasClass(ir)||e._hoverState===tr?e._hoverState=tr:(clearTimeout(e._timeout),e._hoverState=tr,e.config.delay&&e.config.delay.show?e._timeout=setTimeout((function(){e._hoverState===tr&&e.show()}),e.config.delay.show):e.show())},e._leave=function(t,e){var n=this.constructor.DATA_KEY;(e=e||i.default(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),i.default(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusout"===t.type?sr:cr]=!1),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState=er,e.config.delay&&e.config.delay.hide?e._timeout=setTimeout((function(){e._hoverState===er&&e.hide()}),e.config.delay.hide):e.hide())},e._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},e._getConfig=function(t){var e=i.default(this.element).data();return Object.keys(e).forEach((function(t){-1!==Jn.indexOf(t)&&delete e[t]})),"number"==typeof(t=s({},this.constructor.Default,e,"object"==typeof t&&t?t:{})).delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),m.typeCheckConfig(Fn,t,this.constructor.DefaultType),t.sanitize&&(t.template=In(t.template,t.whiteList,t.sanitizeFn)),t},e._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},e._cleanTipClass=function(){var t=i.default(this.getTipElement()),e=t.attr("class").match(Gn);null!==e&&e.length&&t.removeClass(e.join(""))},e._handlePopperPlacementChange=function(t){this.tip=t.instance.popper,this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(t.placement))},e._fixTransition=function(){var t=this.getTipElement(),e=this.config.animation;null===t.getAttribute("x-placement")&&(i.default(t).removeClass(rr),this.config.animation=!1,this.hide(),this.show(),this.config.animation=e)},t._jQueryInterface=function(e){return this.each((function(){var n=i.default(this),r=n.data($n),o="object"==typeof e&&e;if((r||!/dispose|hide/.test(e))&&(r||(r=new t(this,o),n.data($n,r)),"string"==typeof e)){if(void 0===r[e])throw new TypeError('No method named "'+e+'"');r[e]()}}))},c(t,null,[{key:"VERSION",get:function(){return Hn}},{key:"Default",get:function(){return Zn}},{key:"NAME",get:function(){return Fn}},{key:"DATA_KEY",get:function(){return $n}},{key:"Event",get:function(){return nr}},{key:"EVENT_KEY",get:function(){return Un}},{key:"DefaultType",get:function(){return Kn}}]),t}();i.default.fn[Fn]=fr._jQueryInterface,i.default.fn[Fn].Constructor=fr,i.default.fn[Fn].noConflict=function(){return i.default.fn[Fn]=Vn,fr._jQueryInterface};var dr="popover",pr="4.6.0",hr="bs.popover",Mr="."+hr,br=i.default.fn[dr],mr="bs-popover",vr=new RegExp("(^|\\s)"+mr+"\\S+","g"),gr=s({},fr.Default,{placement:"right",trigger:"click",content:"",template:''}),yr=s({},fr.DefaultType,{content:"(string|element|function)"}),Ar="fade",_r="show",zr=".popover-header",Or=".popover-body",xr={HIDE:"hide"+Mr,HIDDEN:"hidden"+Mr,SHOW:"show"+Mr,SHOWN:"shown"+Mr,INSERTED:"inserted"+Mr,CLICK:"click"+Mr,FOCUSIN:"focusin"+Mr,FOCUSOUT:"focusout"+Mr,MOUSEENTER:"mouseenter"+Mr,MOUSELEAVE:"mouseleave"+Mr},wr=function(t){function e(){return t.apply(this,arguments)||this}l(e,t);var n=e.prototype;return n.isWithContent=function(){return this.getTitle()||this._getContent()},n.addAttachmentClass=function(t){i.default(this.getTipElement()).addClass(mr+"-"+t)},n.getTipElement=function(){return this.tip=this.tip||i.default(this.config.template)[0],this.tip},n.setContent=function(){var t=i.default(this.getTipElement());this.setElementContent(t.find(zr),this.getTitle());var e=this._getContent();"function"==typeof e&&(e=e.call(this.element)),this.setElementContent(t.find(Or),e),t.removeClass(Ar+" "+_r)},n._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},n._cleanTipClass=function(){var t=i.default(this.getTipElement()),e=t.attr("class").match(vr);null!==e&&e.length>0&&t.removeClass(e.join(""))},e._jQueryInterface=function(t){return this.each((function(){var n=i.default(this).data(hr),r="object"==typeof t?t:null;if((n||!/dispose|hide/.test(t))&&(n||(n=new e(this,r),i.default(this).data(hr,n)),"string"==typeof t)){if(void 0===n[t])throw new TypeError('No method named "'+t+'"');n[t]()}}))},c(e,null,[{key:"VERSION",get:function(){return pr}},{key:"Default",get:function(){return gr}},{key:"NAME",get:function(){return dr}},{key:"DATA_KEY",get:function(){return hr}},{key:"Event",get:function(){return xr}},{key:"EVENT_KEY",get:function(){return Mr}},{key:"DefaultType",get:function(){return yr}}]),e}(fr);i.default.fn[dr]=wr._jQueryInterface,i.default.fn[dr].Constructor=wr,i.default.fn[dr].noConflict=function(){return i.default.fn[dr]=br,wr._jQueryInterface};var Lr="scrollspy",Nr="4.6.0",Tr="bs.scrollspy",Cr="."+Tr,qr=".data-api",Sr=i.default.fn[Lr],kr={offset:10,method:"auto",target:""},Er={offset:"number",method:"string",target:"(string|element)"},Wr="activate"+Cr,Br="scroll"+Cr,Dr="load"+Cr+qr,Xr="dropdown-item",Pr="active",Rr='[data-spy="scroll"]',jr=".nav, .list-group",Ir=".nav-link",Fr=".nav-item",Hr=".list-group-item",$r=".dropdown",Ur=".dropdown-item",Vr=".dropdown-toggle",Yr="offset",Gr="position",Jr=function(){function t(t,e){var n=this;this._element=t,this._scrollElement="BODY"===t.tagName?window:t,this._config=this._getConfig(e),this._selector=this._config.target+" "+Ir+","+this._config.target+" "+Hr+","+this._config.target+" "+Ur,this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,i.default(this._scrollElement).on(Br,(function(t){return n._process(t)})),this.refresh(),this._process()}var e=t.prototype;return e.refresh=function(){var t=this,e=this._scrollElement===this._scrollElement.window?Yr:Gr,n="auto"===this._config.method?e:this._config.method,r=n===Gr?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),[].slice.call(document.querySelectorAll(this._selector)).map((function(t){var e,o=m.getSelectorFromElement(t);if(o&&(e=document.querySelector(o)),e){var a=e.getBoundingClientRect();if(a.width||a.height)return[i.default(e)[n]().top+r,o]}return null})).filter((function(t){return t})).sort((function(t,e){return t[0]-e[0]})).forEach((function(e){t._offsets.push(e[0]),t._targets.push(e[1])}))},e.dispose=function(){i.default.removeData(this._element,Tr),i.default(this._scrollElement).off(Cr),this._element=null,this._scrollElement=null,this._config=null,this._selector=null,this._offsets=null,this._targets=null,this._activeTarget=null,this._scrollHeight=null},e._getConfig=function(t){if("string"!=typeof(t=s({},kr,"object"==typeof t&&t?t:{})).target&&m.isElement(t.target)){var e=i.default(t.target).attr("id");e||(e=m.getUID(Lr),i.default(t.target).attr("id",e)),t.target="#"+e}return m.typeCheckConfig(Lr,t,Er),t},e._getScrollTop=function(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop},e._getScrollHeight=function(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)},e._getOffsetHeight=function(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height},e._process=function(){var t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),n=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=n){var r=this._targets[this._targets.length-1];this._activeTarget!==r&&this._activate(r)}else{if(this._activeTarget&&t0)return this._activeTarget=null,void this._clear();for(var i=this._offsets.length;i--;)this._activeTarget!==this._targets[i]&&t>=this._offsets[i]&&(void 0===this._offsets[i+1]||t1&&(i-=1)),[360*i,100*o,100*l]},i.rgb.hwb=function(t){var e=t[0],n=t[1],r=t[2];return[i.rgb.hsl(t)[0],1/255*Math.min(e,Math.min(n,r))*100,100*(r=1-1/255*Math.max(e,Math.max(n,r)))]},i.rgb.cmyk=function(t){var e,n=t[0]/255,r=t[1]/255,i=t[2]/255;return[100*((1-n-(e=Math.min(1-n,1-r,1-i)))/(1-e)||0),100*((1-r-e)/(1-e)||0),100*((1-i-e)/(1-e)||0),100*e]},i.rgb.keyword=function(t){var n=e[t];if(n)return n;var i,o=1/0;for(var a in r)if(r.hasOwnProperty(a)){var c=s(t,r[a]);c.04045?Math.pow((e+.055)/1.055,2.4):e/12.92)+.3576*(n=n>.04045?Math.pow((n+.055)/1.055,2.4):n/12.92)+.1805*(r=r>.04045?Math.pow((r+.055)/1.055,2.4):r/12.92)),100*(.2126*e+.7152*n+.0722*r),100*(.0193*e+.1192*n+.9505*r)]},i.rgb.lab=function(t){var e=i.rgb.xyz(t),n=e[0],r=e[1],o=e[2];return r/=100,o/=108.883,n=(n/=95.047)>.008856?Math.pow(n,1/3):7.787*n+16/116,[116*(r=r>.008856?Math.pow(r,1/3):7.787*r+16/116)-16,500*(n-r),200*(r-(o=o>.008856?Math.pow(o,1/3):7.787*o+16/116))]},i.hsl.rgb=function(t){var e,n,r,i,o,a=t[0]/360,c=t[1]/100,s=t[2]/100;if(0===c)return[o=255*s,o,o];e=2*s-(n=s<.5?s*(1+c):s+c-s*c),i=[0,0,0];for(var l=0;l<3;l++)(r=a+1/3*-(l-1))<0&&r++,r>1&&r--,o=6*r<1?e+6*(n-e)*r:2*r<1?n:3*r<2?e+(n-e)*(2/3-r)*6:e,i[l]=255*o;return i},i.hsl.hsv=function(t){var e=t[0],n=t[1]/100,r=t[2]/100,i=n,o=Math.max(r,.01);return n*=(r*=2)<=1?r:2-r,i*=o<=1?o:2-o,[e,100*(0===r?2*i/(o+i):2*n/(r+n)),(r+n)/2*100]},i.hsv.rgb=function(t){var e=t[0]/60,n=t[1]/100,r=t[2]/100,i=Math.floor(e)%6,o=e-Math.floor(e),a=255*r*(1-n),c=255*r*(1-n*o),s=255*r*(1-n*(1-o));switch(r*=255,i){case 0:return[r,s,a];case 1:return[c,r,a];case 2:return[a,r,s];case 3:return[a,c,r];case 4:return[s,a,r];case 5:return[r,a,c]}},i.hsv.hsl=function(t){var e,n,r,i=t[0],o=t[1]/100,a=t[2]/100,c=Math.max(a,.01);return r=(2-o)*a,n=o*c,[i,100*(n=(n/=(e=(2-o)*c)<=1?e:2-e)||0),100*(r/=2)]},i.hwb.rgb=function(t){var e,n,r,i,o,a,c,s=t[0]/360,l=t[1]/100,u=t[2]/100,f=l+u;switch(f>1&&(l/=f,u/=f),r=6*s-(e=Math.floor(6*s)),0!=(1&e)&&(r=1-r),i=l+r*((n=1-u)-l),e){default:case 6:case 0:o=n,a=i,c=l;break;case 1:o=i,a=n,c=l;break;case 2:o=l,a=n,c=i;break;case 3:o=l,a=i,c=n;break;case 4:o=i,a=l,c=n;break;case 5:o=n,a=l,c=i}return[255*o,255*a,255*c]},i.cmyk.rgb=function(t){var e=t[0]/100,n=t[1]/100,r=t[2]/100,i=t[3]/100;return[255*(1-Math.min(1,e*(1-i)+i)),255*(1-Math.min(1,n*(1-i)+i)),255*(1-Math.min(1,r*(1-i)+i))]},i.xyz.rgb=function(t){var e,n,r,i=t[0]/100,o=t[1]/100,a=t[2]/100;return n=-.9689*i+1.8758*o+.0415*a,r=.0557*i+-.204*o+1.057*a,e=(e=3.2406*i+-1.5372*o+-.4986*a)>.0031308?1.055*Math.pow(e,1/2.4)-.055:12.92*e,n=n>.0031308?1.055*Math.pow(n,1/2.4)-.055:12.92*n,r=r>.0031308?1.055*Math.pow(r,1/2.4)-.055:12.92*r,[255*(e=Math.min(Math.max(0,e),1)),255*(n=Math.min(Math.max(0,n),1)),255*(r=Math.min(Math.max(0,r),1))]},i.xyz.lab=function(t){var e=t[0],n=t[1],r=t[2];return n/=100,r/=108.883,e=(e/=95.047)>.008856?Math.pow(e,1/3):7.787*e+16/116,[116*(n=n>.008856?Math.pow(n,1/3):7.787*n+16/116)-16,500*(e-n),200*(n-(r=r>.008856?Math.pow(r,1/3):7.787*r+16/116))]},i.lab.xyz=function(t){var e,n,r,i=t[0];e=t[1]/500+(n=(i+16)/116),r=n-t[2]/200;var o=Math.pow(n,3),a=Math.pow(e,3),c=Math.pow(r,3);return n=o>.008856?o:(n-16/116)/7.787,e=a>.008856?a:(e-16/116)/7.787,r=c>.008856?c:(r-16/116)/7.787,[e*=95.047,n*=100,r*=108.883]},i.lab.lch=function(t){var e,n=t[0],r=t[1],i=t[2];return(e=360*Math.atan2(i,r)/2/Math.PI)<0&&(e+=360),[n,Math.sqrt(r*r+i*i),e]},i.lch.lab=function(t){var e,n=t[0],r=t[1];return e=t[2]/360*2*Math.PI,[n,r*Math.cos(e),r*Math.sin(e)]},i.rgb.ansi16=function(t){var e=t[0],n=t[1],r=t[2],o=1 in arguments?arguments[1]:i.rgb.hsv(t)[2];if(0===(o=Math.round(o/50)))return 30;var a=30+(Math.round(r/255)<<2|Math.round(n/255)<<1|Math.round(e/255));return 2===o&&(a+=60),a},i.hsv.ansi16=function(t){return i.rgb.ansi16(i.hsv.rgb(t),t[2])},i.rgb.ansi256=function(t){var e=t[0],n=t[1],r=t[2];return e===n&&n===r?e<8?16:e>248?231:Math.round((e-8)/247*24)+232:16+36*Math.round(e/255*5)+6*Math.round(n/255*5)+Math.round(r/255*5)},i.ansi16.rgb=function(t){var e=t%10;if(0===e||7===e)return t>50&&(e+=3.5),[e=e/10.5*255,e,e];var n=.5*(1+~~(t>50));return[(1&e)*n*255,(e>>1&1)*n*255,(e>>2&1)*n*255]},i.ansi256.rgb=function(t){if(t>=232){var e=10*(t-232)+8;return[e,e,e]}var n;return t-=16,[Math.floor(t/36)/5*255,Math.floor((n=t%36)/6)/5*255,n%6/5*255]},i.rgb.hex=function(t){var e=(((255&Math.round(t[0]))<<16)+((255&Math.round(t[1]))<<8)+(255&Math.round(t[2]))).toString(16).toUpperCase();return"000000".substring(e.length)+e},i.hex.rgb=function(t){var e=t.toString(16).match(/[a-f0-9]{6}|[a-f0-9]{3}/i);if(!e)return[0,0,0];var n=e[0];3===e[0].length&&(n=n.split("").map((function(t){return t+t})).join(""));var r=parseInt(n,16);return[r>>16&255,r>>8&255,255&r]},i.rgb.hcg=function(t){var e,n=t[0]/255,r=t[1]/255,i=t[2]/255,o=Math.max(Math.max(n,r),i),a=Math.min(Math.min(n,r),i),c=o-a;return e=c<=0?0:o===n?(r-i)/c%6:o===r?2+(i-n)/c:4+(n-r)/c+4,e/=6,[360*(e%=1),100*c,100*(c<1?a/(1-c):0)]},i.hsl.hcg=function(t){var e=t[1]/100,n=t[2]/100,r=1,i=0;return(r=n<.5?2*e*n:2*e*(1-n))<1&&(i=(n-.5*r)/(1-r)),[t[0],100*r,100*i]},i.hsv.hcg=function(t){var e=t[1]/100,n=t[2]/100,r=e*n,i=0;return r<1&&(i=(n-r)/(1-r)),[t[0],100*r,100*i]},i.hcg.rgb=function(t){var e=t[0]/360,n=t[1]/100,r=t[2]/100;if(0===n)return[255*r,255*r,255*r];var i=[0,0,0],o=e%1*6,a=o%1,c=1-a,s=0;switch(Math.floor(o)){case 0:i[0]=1,i[1]=a,i[2]=0;break;case 1:i[0]=c,i[1]=1,i[2]=0;break;case 2:i[0]=0,i[1]=1,i[2]=a;break;case 3:i[0]=0,i[1]=c,i[2]=1;break;case 4:i[0]=a,i[1]=0,i[2]=1;break;default:i[0]=1,i[1]=0,i[2]=c}return s=(1-n)*r,[255*(n*i[0]+s),255*(n*i[1]+s),255*(n*i[2]+s)]},i.hcg.hsv=function(t){var e=t[1]/100,n=e+t[2]/100*(1-e),r=0;return n>0&&(r=e/n),[t[0],100*r,100*n]},i.hcg.hsl=function(t){var e=t[1]/100,n=t[2]/100*(1-e)+.5*e,r=0;return n>0&&n<.5?r=e/(2*n):n>=.5&&n<1&&(r=e/(2*(1-n))),[t[0],100*r,100*n]},i.hcg.hwb=function(t){var e=t[1]/100,n=e+t[2]/100*(1-e);return[t[0],100*(n-e),100*(1-n)]},i.hwb.hcg=function(t){var e=t[1]/100,n=1-t[2]/100,r=n-e,i=0;return r<1&&(i=(n-r)/(1-r)),[t[0],100*r,100*i]},i.apple.rgb=function(t){return[t[0]/65535*255,t[1]/65535*255,t[2]/65535*255]},i.rgb.apple=function(t){return[t[0]/255*65535,t[1]/255*65535,t[2]/255*65535]},i.gray.rgb=function(t){return[t[0]/100*255,t[0]/100*255,t[0]/100*255]},i.gray.hsl=i.gray.hsv=function(t){return[0,0,t[0]]},i.gray.hwb=function(t){return[0,100,t[0]]},i.gray.cmyk=function(t){return[0,0,0,t[0]]},i.gray.lab=function(t){return[t[0],0,0]},i.gray.hex=function(t){var e=255&Math.round(t[0]/100*255),n=((e<<16)+(e<<8)+e).toString(16).toUpperCase();return"000000".substring(n.length)+n},i.rgb.gray=function(t){return[(t[0]+t[1]+t[2])/3/255*100]}}));function o(){for(var t={},e=Object.keys(i),n=e.length,r=0;r1&&(e=Array.prototype.slice.call(arguments)),t(e))};return"conversion"in t&&(e.conversion=t.conversion),e}function d(t){var e=function(e){if(null==e)return e;arguments.length>1&&(e=Array.prototype.slice.call(arguments));var n=t(e);if("object"==typeof n)for(var r=n.length,i=0;i=0&&e<1?S(Math.round(255*e)):"")}function z(t,e){return e<1||t[3]&&t[3]<1?O(t,e):"rgb("+t[0]+", "+t[1]+", "+t[2]+")"}function O(t,e){return void 0===e&&(e=void 0!==t[3]?t[3]:1),"rgba("+t[0]+", "+t[1]+", "+t[2]+", "+e+")"}function x(t,e){return e<1||t[3]&&t[3]<1?w(t,e):"rgb("+Math.round(t[0]/255*100)+"%, "+Math.round(t[1]/255*100)+"%, "+Math.round(t[2]/255*100)+"%)"}function w(t,e){return"rgba("+Math.round(t[0]/255*100)+"%, "+Math.round(t[1]/255*100)+"%, "+Math.round(t[2]/255*100)+"%, "+(e||t[3]||1)+")"}function L(t,e){return e<1||t[3]&&t[3]<1?N(t,e):"hsl("+t[0]+", "+t[1]+"%, "+t[2]+"%)"}function N(t,e){return void 0===e&&(e=void 0!==t[3]?t[3]:1),"hsla("+t[0]+", "+t[1]+"%, "+t[2]+"%, "+e+")"}function T(t,e){return void 0===e&&(e=void 0!==t[3]?t[3]:1),"hwb("+t[0]+", "+t[1]+"%, "+t[2]+"%"+(void 0!==e&&1!==e?", "+e:"")+")"}function C(t){return k[t.slice(0,3)]}function q(t,e,n){return Math.min(Math.max(e,t),n)}function S(t){var e=t.toString(16).toUpperCase();return e.length<2?"0"+e:e}var k={};for(var E in h)k[h[E]]=E;var W=function(t){return t instanceof W?t:this instanceof W?(this.valid=!1,this.values={rgb:[0,0,0],hsl:[0,0,0],hsv:[0,0,0],hwb:[0,0,0],cmyk:[0,0,0,0],alpha:1},void("string"==typeof t?(e=M.getRgba(t))?this.setValues("rgb",e):(e=M.getHsla(t))?this.setValues("hsl",e):(e=M.getHwb(t))&&this.setValues("hwb",e):"object"==typeof t&&(void 0!==(e=t).r||void 0!==e.red?this.setValues("rgb",e):void 0!==e.l||void 0!==e.lightness?this.setValues("hsl",e):void 0!==e.v||void 0!==e.value?this.setValues("hsv",e):void 0!==e.w||void 0!==e.whiteness?this.setValues("hwb",e):void 0===e.c&&void 0===e.cyan||this.setValues("cmyk",e)))):new W(t);var e};W.prototype={isValid:function(){return this.valid},rgb:function(){return this.setSpace("rgb",arguments)},hsl:function(){return this.setSpace("hsl",arguments)},hsv:function(){return this.setSpace("hsv",arguments)},hwb:function(){return this.setSpace("hwb",arguments)},cmyk:function(){return this.setSpace("cmyk",arguments)},rgbArray:function(){return this.values.rgb},hslArray:function(){return this.values.hsl},hsvArray:function(){return this.values.hsv},hwbArray:function(){var t=this.values;return 1!==t.alpha?t.hwb.concat([t.alpha]):t.hwb},cmykArray:function(){return this.values.cmyk},rgbaArray:function(){var t=this.values;return t.rgb.concat([t.alpha])},hslaArray:function(){var t=this.values;return t.hsl.concat([t.alpha])},alpha:function(t){return void 0===t?this.values.alpha:(this.setValues("alpha",t),this)},red:function(t){return this.setChannel("rgb",0,t)},green:function(t){return this.setChannel("rgb",1,t)},blue:function(t){return this.setChannel("rgb",2,t)},hue:function(t){return t&&(t=(t%=360)<0?360+t:t),this.setChannel("hsl",0,t)},saturation:function(t){return this.setChannel("hsl",1,t)},lightness:function(t){return this.setChannel("hsl",2,t)},saturationv:function(t){return this.setChannel("hsv",1,t)},whiteness:function(t){return this.setChannel("hwb",1,t)},blackness:function(t){return this.setChannel("hwb",2,t)},value:function(t){return this.setChannel("hsv",2,t)},cyan:function(t){return this.setChannel("cmyk",0,t)},magenta:function(t){return this.setChannel("cmyk",1,t)},yellow:function(t){return this.setChannel("cmyk",2,t)},black:function(t){return this.setChannel("cmyk",3,t)},hexString:function(){return M.hexString(this.values.rgb)},rgbString:function(){return M.rgbString(this.values.rgb,this.values.alpha)},rgbaString:function(){return M.rgbaString(this.values.rgb,this.values.alpha)},percentString:function(){return M.percentString(this.values.rgb,this.values.alpha)},hslString:function(){return M.hslString(this.values.hsl,this.values.alpha)},hslaString:function(){return M.hslaString(this.values.hsl,this.values.alpha)},hwbString:function(){return M.hwbString(this.values.hwb,this.values.alpha)},keyword:function(){return M.keyword(this.values.rgb,this.values.alpha)},rgbNumber:function(){var t=this.values.rgb;return t[0]<<16|t[1]<<8|t[2]},luminosity:function(){for(var t=this.values.rgb,e=[],n=0;nn?(e+.05)/(n+.05):(n+.05)/(e+.05)},level:function(t){var e=this.contrast(t);return e>=7.1?"AAA":e>=4.5?"AA":""},dark:function(){var t=this.values.rgb;return(299*t[0]+587*t[1]+114*t[2])/1e3<128},light:function(){return!this.dark()},negate:function(){for(var t=[],e=0;e<3;e++)t[e]=255-this.values.rgb[e];return this.setValues("rgb",t),this},lighten:function(t){var e=this.values.hsl;return e[2]+=e[2]*t,this.setValues("hsl",e),this},darken:function(t){var e=this.values.hsl;return e[2]-=e[2]*t,this.setValues("hsl",e),this},saturate:function(t){var e=this.values.hsl;return e[1]+=e[1]*t,this.setValues("hsl",e),this},desaturate:function(t){var e=this.values.hsl;return e[1]-=e[1]*t,this.setValues("hsl",e),this},whiten:function(t){var e=this.values.hwb;return e[1]+=e[1]*t,this.setValues("hwb",e),this},blacken:function(t){var e=this.values.hwb;return e[2]+=e[2]*t,this.setValues("hwb",e),this},greyscale:function(){var t=this.values.rgb,e=.3*t[0]+.59*t[1]+.11*t[2];return this.setValues("rgb",[e,e,e]),this},clearer:function(t){var e=this.values.alpha;return this.setValues("alpha",e-e*t),this},opaquer:function(t){var e=this.values.alpha;return this.setValues("alpha",e+e*t),this},rotate:function(t){var e=this.values.hsl,n=(e[0]+t)%360;return e[0]=n<0?360+n:n,this.setValues("hsl",e),this},mix:function(t,e){var n=this,r=t,i=void 0===e?.5:e,o=2*i-1,a=n.alpha()-r.alpha(),c=((o*a==-1?o:(o+a)/(1+o*a))+1)/2,s=1-c;return this.rgb(c*n.red()+s*r.red(),c*n.green()+s*r.green(),c*n.blue()+s*r.blue()).alpha(n.alpha()*i+r.alpha()*(1-i))},toJSON:function(){return this.rgb()},clone:function(){var t,e,n=new W,r=this.values,i=n.values;for(var o in r)r.hasOwnProperty(o)&&(t=r[o],"[object Array]"===(e={}.toString.call(t))?i[o]=t.slice(0):"[object Number]"===e&&(i[o]=t));return n}},W.prototype.spaces={rgb:["red","green","blue"],hsl:["hue","saturation","lightness"],hsv:["hue","saturation","value"],hwb:["hue","whiteness","blackness"],cmyk:["cyan","magenta","yellow","black"]},W.prototype.maxes={rgb:[255,255,255],hsl:[360,100,100],hsv:[360,100,100],hwb:[360,100,100],cmyk:[100,100,100,100]},W.prototype.getValues=function(t){for(var e=this.values,n={},r=0;r=0;i--)e.call(n,t[i],i);else for(i=0;i=1?t:-(Math.sqrt(1-t*t)-1)},easeOutCirc:function(t){return Math.sqrt(1-(t-=1)*t)},easeInOutCirc:function(t){return(t/=.5)<1?-.5*(Math.sqrt(1-t*t)-1):.5*(Math.sqrt(1-(t-=2)*t)+1)},easeInElastic:function(t){var e=1.70158,n=0,r=1;return 0===t?0:1===t?1:(n||(n=.3),r<1?(r=1,e=n/4):e=n/(2*Math.PI)*Math.asin(1/r),-r*Math.pow(2,10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/n))},easeOutElastic:function(t){var e=1.70158,n=0,r=1;return 0===t?0:1===t?1:(n||(n=.3),r<1?(r=1,e=n/4):e=n/(2*Math.PI)*Math.asin(1/r),r*Math.pow(2,-10*t)*Math.sin((t-e)*(2*Math.PI)/n)+1)},easeInOutElastic:function(t){var e=1.70158,n=0,r=1;return 0===t?0:2==(t/=.5)?1:(n||(n=.45),r<1?(r=1,e=n/4):e=n/(2*Math.PI)*Math.asin(1/r),t<1?r*Math.pow(2,10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/n)*-.5:r*Math.pow(2,-10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/n)*.5+1)},easeInBack:function(t){var e=1.70158;return t*t*((e+1)*t-e)},easeOutBack:function(t){var e=1.70158;return(t-=1)*t*((e+1)*t+e)+1},easeInOutBack:function(t){var e=1.70158;return(t/=.5)<1?t*t*((1+(e*=1.525))*t-e)*.5:.5*((t-=2)*t*((1+(e*=1.525))*t+e)+2)},easeInBounce:function(t){return 1-j.easeOutBounce(1-t)},easeOutBounce:function(t){return t<1/2.75?7.5625*t*t:t<2/2.75?7.5625*(t-=1.5/2.75)*t+.75:t<2.5/2.75?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375},easeInOutBounce:function(t){return t<.5?.5*j.easeInBounce(2*t):.5*j.easeOutBounce(2*t-1)+.5}},I={effects:j};R.easingEffects=j;var F=Math.PI,H=F/180,$=2*F,U=F/2,V=F/4,Y=2*F/3,G={clear:function(t){t.ctx.clearRect(0,0,t.width,t.height)},roundedRect:function(t,e,n,r,i,o){if(o){var a=Math.min(o,i/2,r/2),c=e+a,s=n+a,l=e+r-a,u=n+i-a;t.moveTo(e,s),ce.left-n&&t.xe.top-n&&t.y0&&t.requestAnimationFrame()},advance:function(){for(var t,e,n,r,i=this.animations,o=0;o=n?(ct.callback(t.onAnimationComplete,[t],e),e.animating=!1,i.splice(o,1)):++o}},gt=ct.options.resolve,yt=["push","pop","shift","splice","unshift"];function At(t,e){t._chartjs?t._chartjs.listeners.push(e):(Object.defineProperty(t,"_chartjs",{configurable:!0,enumerable:!1,value:{listeners:[e]}}),yt.forEach((function(e){var n="onData"+e.charAt(0).toUpperCase()+e.slice(1),r=t[e];Object.defineProperty(t,e,{configurable:!0,enumerable:!1,value:function(){var e=Array.prototype.slice.call(arguments),i=r.apply(this,e);return ct.each(t._chartjs.listeners,(function(t){"function"==typeof t[n]&&t[n].apply(t,e)})),i}})})))}function _t(t,e){var n=t._chartjs;if(n){var r=n.listeners,i=r.indexOf(e);-1!==i&&r.splice(i,1),r.length>0||(yt.forEach((function(e){delete t[e]})),delete t._chartjs)}}var zt=function(t,e){this.initialize(t,e)};ct.extend(zt.prototype,{datasetElementType:null,dataElementType:null,_datasetElementOptions:["backgroundColor","borderCapStyle","borderColor","borderDash","borderDashOffset","borderJoinStyle","borderWidth"],_dataElementOptions:["backgroundColor","borderColor","borderWidth","pointStyle"],initialize:function(t,e){var n=this;n.chart=t,n.index=e,n.linkScales(),n.addElements(),n._type=n.getMeta().type},updateIndex:function(t){this.index=t},linkScales:function(){var t=this,e=t.getMeta(),n=t.chart,r=n.scales,i=t.getDataset(),o=n.options.scales;null!==e.xAxisID&&e.xAxisID in r&&!i.xAxisID||(e.xAxisID=i.xAxisID||o.xAxes[0].id),null!==e.yAxisID&&e.yAxisID in r&&!i.yAxisID||(e.yAxisID=i.yAxisID||o.yAxes[0].id)},getDataset:function(){return this.chart.data.datasets[this.index]},getMeta:function(){return this.chart.getDatasetMeta(this.index)},getScaleForId:function(t){return this.chart.scales[t]},_getValueScaleId:function(){return this.getMeta().yAxisID},_getIndexScaleId:function(){return this.getMeta().xAxisID},_getValueScale:function(){return this.getScaleForId(this._getValueScaleId())},_getIndexScale:function(){return this.getScaleForId(this._getIndexScaleId())},reset:function(){this._update(!0)},destroy:function(){this._data&&_t(this._data,this)},createMetaDataset:function(){var t=this,e=t.datasetElementType;return e&&new e({_chart:t.chart,_datasetIndex:t.index})},createMetaData:function(t){var e=this,n=e.dataElementType;return n&&new n({_chart:e.chart,_datasetIndex:e.index,_index:t})},addElements:function(){var t,e,n=this,r=n.getMeta(),i=n.getDataset().data||[],o=r.data;for(t=0,e=i.length;tr&&t.insertElements(r,i-r)},insertElements:function(t,e){for(var n=0;ni?(o=i/e.innerRadius,t.arc(a,c,e.innerRadius-i,r+o,n-o,!0)):t.arc(a,c,i,r+Math.PI/2,n-Math.PI/2),t.closePath(),t.clip()}function Lt(t,e,n,r){var i,o=n.endAngle;for(r&&(n.endAngle=n.startAngle+xt,wt(t,n),n.endAngle=o,n.endAngle===n.startAngle&&n.fullCircles&&(n.endAngle+=xt,n.fullCircles--)),t.beginPath(),t.arc(n.x,n.y,n.innerRadius,n.startAngle+xt,n.startAngle,!0),i=0;ic;)i-=xt;for(;i=a&&i<=c,l=o>=n.innerRadius&&o<=n.outerRadius;return s&&l}return!1},getCenterPoint:function(){var t=this._view,e=(t.startAngle+t.endAngle)/2,n=(t.innerRadius+t.outerRadius)/2;return{x:t.x+Math.cos(e)*n,y:t.y+Math.sin(e)*n}},getArea:function(){var t=this._view;return Math.PI*((t.endAngle-t.startAngle)/(2*Math.PI))*(Math.pow(t.outerRadius,2)-Math.pow(t.innerRadius,2))},tooltipPosition:function(){var t=this._view,e=t.startAngle+(t.endAngle-t.startAngle)/2,n=(t.outerRadius-t.innerRadius)/2+t.innerRadius;return{x:t.x+Math.cos(e)*n,y:t.y+Math.sin(e)*n}},draw:function(){var t,e=this._chart.ctx,n=this._view,r="inner"===n.borderAlign?.33:0,i={x:n.x,y:n.y,innerRadius:n.innerRadius,outerRadius:Math.max(n.outerRadius-r,0),pixelMargin:r,startAngle:n.startAngle,endAngle:n.endAngle,fullCircles:Math.floor(n.circumference/xt)};if(e.save(),e.fillStyle=n.backgroundColor,e.strokeStyle=n.borderColor,i.fullCircles){for(i.endAngle=i.startAngle+xt,e.beginPath(),e.arc(i.x,i.y,i.outerRadius,i.startAngle,i.endAngle),e.arc(i.x,i.y,i.innerRadius,i.endAngle,i.startAngle,!0),e.closePath(),t=0;tt.x&&(e=jt(e,"left","right")):t.basen?n:r,r:s.right||i<0?0:i>e?e:i,b:s.bottom||o<0?0:o>n?n:o,l:s.left||a<0?0:a>e?e:a}}function Ht(t){var e=Rt(t),n=e.right-e.left,r=e.bottom-e.top,i=Ft(t,n/2,r/2);return{outer:{x:e.left,y:e.top,w:n,h:r},inner:{x:e.left+i.l,y:e.top+i.t,w:n-i.l-i.r,h:r-i.t-i.b}}}function $t(t,e,n){var r=null===e,i=null===n,o=!(!t||r&&i)&&Rt(t);return o&&(r||e>=o.left&&e<=o.right)&&(i||n>=o.top&&n<=o.bottom)}Q._set("global",{elements:{rectangle:{backgroundColor:Xt,borderColor:Xt,borderSkipped:"bottom",borderWidth:0}}});var Ut=Mt.extend({_type:"rectangle",draw:function(){var t=this._chart.ctx,e=this._view,n=Ht(e),r=n.outer,i=n.inner;t.fillStyle=e.backgroundColor,t.fillRect(r.x,r.y,r.w,r.h),r.w===i.w&&r.h===i.h||(t.save(),t.beginPath(),t.rect(r.x,r.y,r.w,r.h),t.clip(),t.fillStyle=e.borderColor,t.rect(i.x,i.y,i.w,i.h),t.fill("evenodd"),t.restore())},height:function(){var t=this._view;return t.base-t.y},inRange:function(t,e){return $t(this._view,t,e)},inLabelRange:function(t,e){var n=this._view;return Pt(n)?$t(n,t,null):$t(n,null,e)},inXRange:function(t){return $t(this._view,t,null)},inYRange:function(t){return $t(this._view,null,t)},getCenterPoint:function(){var t,e,n=this._view;return Pt(n)?(t=n.x,e=(n.y+n.base)/2):(t=(n.x+n.base)/2,e=n.y),{x:t,y:e}},getArea:function(){var t=this._view;return Pt(t)?t.width*Math.abs(t.y-t.base):t.height*Math.abs(t.x-t.base)},tooltipPosition:function(){var t=this._view;return{x:t.x,y:t.y}}}),Vt={},Yt=Tt,Gt=St,Jt=Dt,Kt=Ut;Vt.Arc=Yt,Vt.Line=Gt,Vt.Point=Jt,Vt.Rectangle=Kt;var Qt=ct._deprecated,Zt=ct.valueOrDefault;function te(t,e){var n,r,i,o,a=t._length;for(i=1,o=e.length;i0?Math.min(a,Math.abs(r-n)):a,n=r;return a}function ee(t,e,n){var r,i,o=n.barThickness,a=e.stackCount,c=e.pixels[t],s=ct.isNullOrUndef(o)?te(e.scale,e.pixels):-1;return ct.isNullOrUndef(o)?(r=s*n.categoryPercentage,i=n.barPercentage):(r=o*a,i=1),{chunk:r/a,ratio:i,start:c-r/2}}function ne(t,e,n){var r,i=e.pixels,o=i[t],a=t>0?i[t-1]:null,c=t=0&&b.min>=0?b.min:b.max,A=void 0===b.start?b.end:b.max>=0&&b.min>=0?b.max-b.min:b.min-b.max,_=M.length;if(v||void 0===v&&void 0!==g)for(r=0;r<_&&(i=M[r]).index!==t;++r)i.stack===g&&(o=void 0===(l=d._parseValue(h[i.index].data[e])).start?l.end:l.min>=0&&l.max>=0?l.max:l.min,(b.min<0&&o<0||b.max>=0&&o>0)&&(y+=o));return a=d.getPixelForValue(y),s=(c=d.getPixelForValue(y+A))-a,void 0!==m&&Math.abs(s)=0&&!p||A<0&&p?a-m:a+m),{size:s,base:a,head:c,center:c+s/2}},calculateBarIndexPixels:function(t,e,n,r){var i=this,o="flex"===r.barThickness?ne(e,n,r):ee(e,n,r),a=i.getStackIndex(t,i.getMeta().stack),c=o.start+o.chunk*a+o.chunk/2,s=Math.min(Zt(r.maxBarThickness,1/0),o.chunk*o.ratio);return{base:c-s/2,head:c+s/2,center:c,size:s}},draw:function(){var t=this,e=t.chart,n=t._getValueScale(),r=t.getMeta().data,i=t.getDataset(),o=r.length,a=0;for(ct.canvas.clipArea(e.ctx,e.chartArea);a=se?-le:v<-se?le:0)+b,y=Math.cos(v),A=Math.sin(v),_=Math.cos(g),z=Math.sin(g),O=v<=0&&g>=0||g>=le,x=v<=ue&&g>=ue||g>=le+ue,w=v<=-ue&&g>=-ue||g>=se+ue,L=v===-se||g>=se?-1:Math.min(y,y*M,_,_*M),N=w?-1:Math.min(A,A*M,z,z*M),T=O?1:Math.max(y,y*M,_,_*M),C=x?1:Math.max(A,A*M,z,z*M);l=(T-L)/2,u=(C-N)/2,f=-(T+L)/2,d=-(C+N)/2}for(r=0,i=h.length;r0&&!isNaN(t)?le*(Math.abs(t)/e):0},getMaxBorderWidth:function(t){var e,n,r,i,o,a,c,s,l=this,u=0,f=l.chart;if(!t)for(e=0,n=f.data.datasets.length;e(u=c>u?c:u)?s:u);return u},setHoverStyle:function(t){var e=t._model,n=t._options,r=ct.getHoverColor;t.$previousStyle={backgroundColor:e.backgroundColor,borderColor:e.borderColor,borderWidth:e.borderWidth},e.backgroundColor=ce(n.hoverBackgroundColor,r(n.backgroundColor)),e.borderColor=ce(n.hoverBorderColor,r(n.borderColor)),e.borderWidth=ce(n.hoverBorderWidth,n.borderWidth)},_getRingWeightOffset:function(t){for(var e=0,n=0;n0&&Me(l[t-1]._model,s)&&(n.controlPointPreviousX=u(n.controlPointPreviousX,s.left,s.right),n.controlPointPreviousY=u(n.controlPointPreviousY,s.top,s.bottom)),t0&&(o=t.getDatasetMeta(o[0]._datasetIndex).data),o},"x-axis":function(t,e){return qe(t,e,{intersect:!1})},point:function(t,e){return Ne(t,we(e,t))},nearest:function(t,e,n){var r=we(e,t);n.axis=n.axis||"xy";var i=Ce(n.axis);return Te(t,r,n.intersect,i)},x:function(t,e,n){var r=we(e,t),i=[],o=!1;return Le(t,(function(t){t.inXRange(r.x)&&i.push(t),t.inRange(r.x,r.y)&&(o=!0)})),n.intersect&&!o&&(i=[]),i},y:function(t,e,n){var r=we(e,t),i=[],o=!1;return Le(t,(function(t){t.inYRange(r.y)&&i.push(t),t.inRange(r.x,r.y)&&(o=!0)})),n.intersect&&!o&&(i=[]),i}}},ke=ct.extend;function Ee(t,e){return ct.where(t,(function(t){return t.pos===e}))}function We(t,e){return t.sort((function(t,n){var r=e?n:t,i=e?t:n;return r.weight===i.weight?r.index-i.index:r.weight-i.weight}))}function Be(t){var e,n,r,i=[];for(e=0,n=(t||[]).length;e div {\r\n\tposition: absolute;\r\n\twidth: 1000000px;\r\n\theight: 1000000px;\r\n\tleft: 0;\r\n\ttop: 0;\r\n}\r\n\r\n.chartjs-size-monitor-shrink > div {\r\n\tposition: absolute;\r\n\twidth: 200%;\r\n\theight: 200%;\r\n\tleft: 0;\r\n\ttop: 0;\r\n}\r\n",Ye=n(Object.freeze({__proto__:null,default:Ve})),Ge="$chartjs",Je="chartjs-",Ke=Je+"size-monitor",Qe=Je+"render-monitor",Ze=Je+"render-animation",tn=["animationstart","webkitAnimationStart"],en={touchstart:"mousedown",touchmove:"mousemove",touchend:"mouseup",pointerenter:"mouseenter",pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointerleave:"mouseout",pointerout:"mouseout"};function nn(t,e){var n=ct.getStyle(t,e),r=n&&n.match(/^(\d+)(\.\d+)?px$/);return r?Number(r[1]):void 0}function rn(t,e){var n=t.style,r=t.getAttribute("height"),i=t.getAttribute("width");if(t[Ge]={initial:{height:r,width:i,style:{display:n.display,height:n.height,width:n.width}}},n.display=n.display||"block",null===i||""===i){var o=nn(t,"width");void 0!==o&&(t.width=o)}if(null===r||""===r)if(""===t.style.height)t.height=t.width/(e.options.aspectRatio||2);else{var a=nn(t,"height");void 0!==o&&(t.height=a)}return t}var on=function(){var t=!1;try{var e=Object.defineProperty({},"passive",{get:function(){t=!0}});window.addEventListener("e",null,e)}catch(t){}return t}(),an=!!on&&{passive:!0};function cn(t,e,n){t.addEventListener(e,n,an)}function sn(t,e,n){t.removeEventListener(e,n,an)}function ln(t,e,n,r,i){return{type:t,chart:e,native:i||null,x:void 0!==n?n:null,y:void 0!==r?r:null}}function un(t,e){var n=en[t.type]||t.type,r=ct.getRelativePosition(t,e);return ln(n,e,r.x,r.y,t)}function fn(t,e){var n=!1,r=[];return function(){r=Array.prototype.slice.call(arguments),e=e||this,n||(n=!0,ct.requestAnimFrame.call(window,(function(){n=!1,t.apply(e,r)})))}}function dn(t){var e=document.createElement("div");return e.className=t||"",e}function pn(t){var e=1e6,n=dn(Ke),r=dn(Ke+"-expand"),i=dn(Ke+"-shrink");r.appendChild(dn()),i.appendChild(dn()),n.appendChild(r),n.appendChild(i),n._reset=function(){r.scrollLeft=e,r.scrollTop=e,i.scrollLeft=e,i.scrollTop=e};var o=function(){n._reset(),t()};return cn(r,"scroll",o.bind(r,"expand")),cn(i,"scroll",o.bind(i,"shrink")),n}function hn(t,e){var n=t[Ge]||(t[Ge]={}),r=n.renderProxy=function(t){t.animationName===Ze&&e()};ct.each(tn,(function(e){cn(t,e,r)})),n.reflow=!!t.offsetParent,t.classList.add(Qe)}function Mn(t){var e=t[Ge]||{},n=e.renderProxy;n&&(ct.each(tn,(function(e){sn(t,e,n)})),delete e.renderProxy),t.classList.remove(Qe)}function bn(t,e,n){var r=t[Ge]||(t[Ge]={}),i=r.resizer=pn(fn((function(){if(r.resizer){var i=n.options.maintainAspectRatio&&t.parentNode,o=i?i.clientWidth:0;e(ln("resize",n)),i&&i.clientWidth0){var o=t[0];o.label?n=o.label:o.xLabel?n=o.xLabel:i>0&&o.index-1?t.split("\n"):t}function Tn(t){var e=t._xScale,n=t._yScale||t._scale,r=t._index,i=t._datasetIndex,o=t._chart.getDatasetMeta(i).controller,a=o._getIndexScale(),c=o._getValueScale();return{xLabel:e?e.getLabelForIndex(r,i):"",yLabel:n?n.getLabelForIndex(r,i):"",label:a?""+a.getLabelForIndex(r,i):"",value:c?""+c.getLabelForIndex(r,i):"",index:r,datasetIndex:i,x:t._model.x,y:t._model.y}}function Cn(t){var e=Q.global;return{xPadding:t.xPadding,yPadding:t.yPadding,xAlign:t.xAlign,yAlign:t.yAlign,rtl:t.rtl,textDirection:t.textDirection,bodyFontColor:t.bodyFontColor,_bodyFontFamily:On(t.bodyFontFamily,e.defaultFontFamily),_bodyFontStyle:On(t.bodyFontStyle,e.defaultFontStyle),_bodyAlign:t.bodyAlign,bodyFontSize:On(t.bodyFontSize,e.defaultFontSize),bodySpacing:t.bodySpacing,titleFontColor:t.titleFontColor,_titleFontFamily:On(t.titleFontFamily,e.defaultFontFamily),_titleFontStyle:On(t.titleFontStyle,e.defaultFontStyle),titleFontSize:On(t.titleFontSize,e.defaultFontSize),_titleAlign:t.titleAlign,titleSpacing:t.titleSpacing,titleMarginBottom:t.titleMarginBottom,footerFontColor:t.footerFontColor,_footerFontFamily:On(t.footerFontFamily,e.defaultFontFamily),_footerFontStyle:On(t.footerFontStyle,e.defaultFontStyle),footerFontSize:On(t.footerFontSize,e.defaultFontSize),_footerAlign:t.footerAlign,footerSpacing:t.footerSpacing,footerMarginTop:t.footerMarginTop,caretSize:t.caretSize,cornerRadius:t.cornerRadius,backgroundColor:t.backgroundColor,opacity:0,legendColorBackground:t.multiKeyBackground,displayColors:t.displayColors,borderColor:t.borderColor,borderWidth:t.borderWidth}}function qn(t,e){var n=t._chart.ctx,r=2*e.yPadding,i=0,o=e.body,a=o.reduce((function(t,e){return t+e.before.length+e.lines.length+e.after.length}),0);a+=e.beforeBody.length+e.afterBody.length;var c=e.title.length,s=e.footer.length,l=e.titleFontSize,u=e.bodyFontSize,f=e.footerFontSize;r+=c*l,r+=c?(c-1)*e.titleSpacing:0,r+=c?e.titleMarginBottom:0,r+=a*u,r+=a?(a-1)*e.bodySpacing:0,r+=s?e.footerMarginTop:0,r+=s*f,r+=s?(s-1)*e.footerSpacing:0;var d=0,p=function(t){i=Math.max(i,n.measureText(t).width+d)};return n.font=ct.fontString(l,e._titleFontStyle,e._titleFontFamily),ct.each(e.title,p),n.font=ct.fontString(u,e._bodyFontStyle,e._bodyFontFamily),ct.each(e.beforeBody.concat(e.afterBody),p),d=e.displayColors?u+2:0,ct.each(o,(function(t){ct.each(t.before,p),ct.each(t.lines,p),ct.each(t.after,p)})),d=0,n.font=ct.fontString(f,e._footerFontStyle,e._footerFontFamily),ct.each(e.footer,p),{width:i+=2*e.xPadding,height:r}}function Sn(t,e){var n,r,i,o,a,c=t._model,s=t._chart,l=t._chart.chartArea,u="center",f="center";c.ys.height-e.height&&(f="bottom");var d=(l.left+l.right)/2,p=(l.top+l.bottom)/2;"center"===f?(n=function(t){return t<=d},r=function(t){return t>d}):(n=function(t){return t<=e.width/2},r=function(t){return t>=s.width-e.width/2}),i=function(t){return t+e.width+c.caretSize+c.caretPadding>s.width},o=function(t){return t-e.width-c.caretSize-c.caretPadding<0},a=function(t){return t<=p?"top":"bottom"},n(c.x)?(u="left",i(c.x)&&(u="center",f=a(c.y))):r(c.x)&&(u="right",o(c.x)&&(u="center",f=a(c.y)));var h=t._options;return{xAlign:h.xAlign?h.xAlign:u,yAlign:h.yAlign?h.yAlign:f}}function kn(t,e,n,r){var i=t.x,o=t.y,a=t.caretSize,c=t.caretPadding,s=t.cornerRadius,l=n.xAlign,u=n.yAlign,f=a+c,d=s+c;return"right"===l?i-=e.width:"center"===l&&((i-=e.width/2)+e.width>r.width&&(i=r.width-e.width),i<0&&(i=0)),"top"===u?o+=f:o-="bottom"===u?e.height+f:e.height/2,"center"===u?"left"===l?i+=f:"right"===l&&(i-=f):"left"===l?i-=d:"right"===l&&(i+=d),{x:i,y:o}}function En(t,e){return"center"===e?t.x+t.width/2:"right"===e?t.x+t.width-t.xPadding:t.x+t.xPadding}function Wn(t){return Ln([],Nn(t))}var Bn=Mt.extend({initialize:function(){this._model=Cn(this._options),this._lastActive=[]},getTitle:function(){var t=this,e=t._options.callbacks,n=e.beforeTitle.apply(t,arguments),r=e.title.apply(t,arguments),i=e.afterTitle.apply(t,arguments),o=[];return o=Ln(o,Nn(n)),o=Ln(o,Nn(r)),o=Ln(o,Nn(i))},getBeforeBody:function(){return Wn(this._options.callbacks.beforeBody.apply(this,arguments))},getBody:function(t,e){var n=this,r=n._options.callbacks,i=[];return ct.each(t,(function(t){var o={before:[],lines:[],after:[]};Ln(o.before,Nn(r.beforeLabel.call(n,t,e))),Ln(o.lines,r.label.call(n,t,e)),Ln(o.after,Nn(r.afterLabel.call(n,t,e))),i.push(o)})),i},getAfterBody:function(){return Wn(this._options.callbacks.afterBody.apply(this,arguments))},getFooter:function(){var t=this,e=t._options.callbacks,n=e.beforeFooter.apply(t,arguments),r=e.footer.apply(t,arguments),i=e.afterFooter.apply(t,arguments),o=[];return o=Ln(o,Nn(n)),o=Ln(o,Nn(r)),o=Ln(o,Nn(i))},update:function(t){var e,n,r=this,i=r._options,o=r._model,a=r._model=Cn(i),c=r._active,s=r._data,l={xAlign:o.xAlign,yAlign:o.yAlign},u={x:o.x,y:o.y},f={width:o.width,height:o.height},d={x:o.caretX,y:o.caretY};if(c.length){a.opacity=1;var p=[],h=[];d=wn[i.position].call(r,c,r._eventPosition);var M=[];for(e=0,n=c.length;e0&&n.stroke()},draw:function(){var t=this._chart.ctx,e=this._view;if(0!==e.opacity){var n={width:e.width,height:e.height},r={x:e.x,y:e.y},i=Math.abs(e.opacity<.001)?0:e.opacity,o=e.title.length||e.beforeBody.length||e.body.length||e.afterBody.length||e.footer.length;this._options.enabled&&o&&(t.save(),t.globalAlpha=i,this.drawBackground(r,e,t,n),r.y+=e.yPadding,ct.rtl.overrideTextDirection(t,e.textDirection),this.drawTitle(r,e,t),this.drawBody(r,e,t),this.drawFooter(r,e,t),ct.rtl.restoreTextDirection(t,e.textDirection),t.restore())}},handleEvent:function(t){var e=this,n=e._options,r=!1;return e._lastActive=e._lastActive||[],"mouseout"===t.type?e._active=[]:(e._active=e._chart.getElementsAtEventForMode(t,n.mode,n),n.reverse&&e._active.reverse()),(r=!ct.arrayEquals(e._active,e._lastActive))&&(e._lastActive=e._active,(n.enabled||n.custom)&&(e._eventPosition={x:t.x,y:t.y},e.update(!0),e.pivot())),r}}),Dn=wn,Xn=Bn;Xn.positioners=Dn;var Pn=ct.valueOrDefault;function Rn(){return ct.merge(Object.create(null),[].slice.call(arguments),{merger:function(t,e,n,r){if("xAxes"===t||"yAxes"===t){var i,o,a,c=n[t].length;for(e[t]||(e[t]=[]),i=0;i=e[t].length&&e[t].push({}),!e[t][i].type||a.type&&a.type!==e[t][i].type?ct.merge(e[t][i],[zn.getScaleDefaults(o),a]):ct.merge(e[t][i],a)}else ct._merger(t,e,n,r)}})}function jn(){return ct.merge(Object.create(null),[].slice.call(arguments),{merger:function(t,e,n,r){var i=e[t]||Object.create(null),o=n[t];"scales"===t?e[t]=Rn(i,o):"scale"===t?e[t]=ct.merge(i,[zn.getScaleDefaults(o.type),o]):ct._merger(t,e,n,r)}})}function In(t){var e=(t=t||Object.create(null)).data=t.data||{};return e.datasets=e.datasets||[],e.labels=e.labels||[],t.options=jn(Q.global,Q[t.type],t.options||{}),t}function Fn(t){var e=t.options;ct.each(t.scales,(function(e){$e.removeBox(t,e)})),e=jn(Q.global,Q[t.config.type],e),t.options=t.config.options=e,t.ensureScalesHaveIDs(),t.buildOrUpdateScales(),t.tooltip._options=e.tooltips,t.tooltip.initialize()}function Hn(t,e,n){var r,i=function(t){return t.id===r};do{r=e+n++}while(ct.findIndex(t,i)>=0);return r}function $n(t){return"top"===t||"bottom"===t}function Un(t,e){return function(n,r){return n[t]===r[t]?n[e]-r[e]:n[t]-r[t]}}Q._set("global",{elements:{},events:["mousemove","mouseout","click","touchstart","touchmove"],hover:{onHover:null,mode:"nearest",intersect:!0,animationDuration:400},onClick:null,maintainAspectRatio:!0,responsive:!0,responsiveAnimationDuration:0});var Vn=function(t,e){return this.construct(t,e),this};ct.extend(Vn.prototype,{construct:function(t,e){var n=this;e=In(e);var r=An.acquireContext(t,e),i=r&&r.canvas,o=i&&i.height,a=i&&i.width;n.id=ct.uid(),n.ctx=r,n.canvas=i,n.config=e,n.width=a,n.height=o,n.aspectRatio=o?a/o:null,n.options=e.options,n._bufferedRender=!1,n._layers=[],n.chart=n,n.controller=n,Vn.instances[n.id]=n,Object.defineProperty(n,"data",{get:function(){return n.config.data},set:function(t){n.config.data=t}}),r&&i&&(n.initialize(),n.update())},initialize:function(){var t=this;return _n.notify(t,"beforeInit"),ct.retinaScale(t,t.options.devicePixelRatio),t.bindEvents(),t.options.responsive&&t.resize(!0),t.initToolTip(),_n.notify(t,"afterInit"),t},clear:function(){return ct.canvas.clear(this),this},stop:function(){return vt.cancelAnimation(this),this},resize:function(t){var e=this,n=e.options,r=e.canvas,i=n.maintainAspectRatio&&e.aspectRatio||null,o=Math.max(0,Math.floor(ct.getMaximumWidth(r))),a=Math.max(0,Math.floor(i?o/i:ct.getMaximumHeight(r)));if((e.width!==o||e.height!==a)&&(r.width=e.width=o,r.height=e.height=a,r.style.width=o+"px",r.style.height=a+"px",ct.retinaScale(e,n.devicePixelRatio),!t)){var c={width:o,height:a};_n.notify(e,"resize",[c]),n.onResize&&n.onResize(e,c),e.stop(),e.update({duration:n.responsiveAnimationDuration})}},ensureScalesHaveIDs:function(){var t=this.options,e=t.scales||{},n=t.scale;ct.each(e.xAxes,(function(t,n){t.id||(t.id=Hn(e.xAxes,"x-axis-",n))})),ct.each(e.yAxes,(function(t,n){t.id||(t.id=Hn(e.yAxes,"y-axis-",n))})),n&&(n.id=n.id||"scale")},buildOrUpdateScales:function(){var t=this,e=t.options,n=t.scales||{},r=[],i=Object.keys(n).reduce((function(t,e){return t[e]=!1,t}),{});e.scales&&(r=r.concat((e.scales.xAxes||[]).map((function(t){return{options:t,dtype:"category",dposition:"bottom"}})),(e.scales.yAxes||[]).map((function(t){return{options:t,dtype:"linear",dposition:"left"}})))),e.scale&&r.push({options:e.scale,dtype:"radialLinear",isDefault:!0,dposition:"chartArea"}),ct.each(r,(function(e){var r=e.options,o=r.id,a=Pn(r.type,e.dtype);$n(r.position)!==$n(e.dposition)&&(r.position=e.dposition),i[o]=!0;var c=null;if(o in n&&n[o].type===a)(c=n[o]).options=r,c.ctx=t.ctx,c.chart=t;else{var s=zn.getScaleConstructor(a);if(!s)return;c=new s({id:o,type:a,options:r,ctx:t.ctx,chart:t}),n[c.id]=c}c.mergeTicksOptions(),e.isDefault&&(t.scale=c)})),ct.each(i,(function(t,e){t||delete n[e]})),t.scales=n,zn.addScalesToLayout(this)},buildOrUpdateControllers:function(){var t,e,n=this,r=[],i=n.data.datasets;for(t=0,e=i.length;t=0;--n)r.drawDataset(e[n],t);_n.notify(r,"afterDatasetsDraw",[t])}},drawDataset:function(t,e){var n=this,r={meta:t,index:t.index,easingValue:e};!1!==_n.notify(n,"beforeDatasetDraw",[r])&&(t.controller.draw(e),_n.notify(n,"afterDatasetDraw",[r]))},_drawTooltip:function(t){var e=this,n=e.tooltip,r={tooltip:n,easingValue:t};!1!==_n.notify(e,"beforeTooltipDraw",[r])&&(n.draw(),_n.notify(e,"afterTooltipDraw",[r]))},getElementAtEvent:function(t){return Se.modes.single(this,t)},getElementsAtEvent:function(t){return Se.modes.label(this,t,{intersect:!0})},getElementsAtXAxis:function(t){return Se.modes["x-axis"](this,t,{intersect:!0})},getElementsAtEventForMode:function(t,e,n){var r=Se.modes[e];return"function"==typeof r?r(this,t,n):[]},getDatasetAtEvent:function(t){return Se.modes.dataset(this,t,{intersect:!0})},getDatasetMeta:function(t){var e=this,n=e.data.datasets[t];n._meta||(n._meta={});var r=n._meta[e.id];return r||(r=n._meta[e.id]={type:null,data:[],dataset:null,controller:null,hidden:null,xAxisID:null,yAxisID:null,order:n.order||0,index:t}),r},getVisibleDatasetCount:function(){for(var t=0,e=0,n=this.data.datasets.length;e=0;r--){var i=t[r];if(e(i))return i}},ct.isNumber=function(t){return!isNaN(parseFloat(t))&&isFinite(t)},ct.almostEquals=function(t,e,n){return Math.abs(t-e)=t},ct.max=function(t){return t.reduce((function(t,e){return isNaN(e)?t:Math.max(t,e)}),Number.NEGATIVE_INFINITY)},ct.min=function(t){return t.reduce((function(t,e){return isNaN(e)?t:Math.min(t,e)}),Number.POSITIVE_INFINITY)},ct.sign=Math.sign?function(t){return Math.sign(t)}:function(t){return 0==(t=+t)||isNaN(t)?t:t>0?1:-1},ct.toRadians=function(t){return t*(Math.PI/180)},ct.toDegrees=function(t){return t*(180/Math.PI)},ct._decimalPlaces=function(t){if(ct.isFinite(t)){for(var e=1,n=0;Math.round(t*e)/e!==t;)e*=10,n++;return n}},ct.getAngleFromPoint=function(t,e){var n=e.x-t.x,r=e.y-t.y,i=Math.sqrt(n*n+r*r),o=Math.atan2(r,n);return o<-.5*Math.PI&&(o+=2*Math.PI),{angle:o,distance:i}},ct.distanceBetweenPoints=function(t,e){return Math.sqrt(Math.pow(e.x-t.x,2)+Math.pow(e.y-t.y,2))},ct.aliasPixel=function(t){return t%2==0?0:.5},ct._alignPixel=function(t,e,n){var r=t.currentDevicePixelRatio,i=n/2;return Math.round((e-i)*r)/r+i},ct.splineCurve=function(t,e,n,r){var i=t.skip?e:t,o=e,a=n.skip?e:n,c=Math.sqrt(Math.pow(o.x-i.x,2)+Math.pow(o.y-i.y,2)),s=Math.sqrt(Math.pow(a.x-o.x,2)+Math.pow(a.y-o.y,2)),l=c/(c+s),u=s/(c+s),f=r*(l=isNaN(l)?0:l),d=r*(u=isNaN(u)?0:u);return{previous:{x:o.x-f*(a.x-i.x),y:o.y-f*(a.y-i.y)},next:{x:o.x+d*(a.x-i.x),y:o.y+d*(a.y-i.y)}}},ct.EPSILON=Number.EPSILON||1e-14,ct.splineCurveMonotone=function(t){var e,n,r,i,o,a,c,s,l,u=(t||[]).map((function(t){return{model:t._model,deltaK:0,mK:0}})),f=u.length;for(e=0;e0?u[e-1]:null,(i=e0?u[e-1]:null,i=e=t.length-1?t[0]:t[e+1]:e>=t.length-1?t[t.length-1]:t[e+1]},ct.previousItem=function(t,e,n){return n?e<=0?t[t.length-1]:t[e-1]:e<=0?t[0]:t[e-1]},ct.niceNum=function(t,e){var n=Math.floor(ct.log10(t)),r=t/Math.pow(10,n);return(e?r<1.5?1:r<3?2:r<7?5:10:r<=1?1:r<=2?2:r<=5?5:10)*Math.pow(10,n)},ct.requestAnimFrame="undefined"==typeof window?function(t){t()}:window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(t){return window.setTimeout(t,1e3/60)},ct.getRelativePosition=function(t,e){var n,r,i=t.originalEvent||t,o=t.target||t.srcElement,a=o.getBoundingClientRect(),c=i.touches;c&&c.length>0?(n=c[0].clientX,r=c[0].clientY):(n=i.clientX,r=i.clientY);var s=parseFloat(ct.getStyle(o,"padding-left")),l=parseFloat(ct.getStyle(o,"padding-top")),u=parseFloat(ct.getStyle(o,"padding-right")),f=parseFloat(ct.getStyle(o,"padding-bottom")),d=a.right-a.left-s-u,p=a.bottom-a.top-l-f;return{x:n=Math.round((n-a.left-s)/d*o.width/e.currentDevicePixelRatio),y:r=Math.round((r-a.top-l)/p*o.height/e.currentDevicePixelRatio)}},ct.getConstraintWidth=function(t){return n(t,"max-width","clientWidth")},ct.getConstraintHeight=function(t){return n(t,"max-height","clientHeight")},ct._calculatePadding=function(t,e,n){return(e=ct.getStyle(t,e)).indexOf("%")>-1?n*parseInt(e,10)/100:parseInt(e,10)},ct._getParentNode=function(t){var e=t.parentNode;return e&&"[object ShadowRoot]"===e.toString()&&(e=e.host),e},ct.getMaximumWidth=function(t){var e=ct._getParentNode(t);if(!e)return t.clientWidth;var n=e.clientWidth,r=n-ct._calculatePadding(e,"padding-left",n)-ct._calculatePadding(e,"padding-right",n),i=ct.getConstraintWidth(t);return isNaN(i)?r:Math.min(r,i)},ct.getMaximumHeight=function(t){var e=ct._getParentNode(t);if(!e)return t.clientHeight;var n=e.clientHeight,r=n-ct._calculatePadding(e,"padding-top",n)-ct._calculatePadding(e,"padding-bottom",n),i=ct.getConstraintHeight(t);return isNaN(i)?r:Math.min(r,i)},ct.getStyle=function(t,e){return t.currentStyle?t.currentStyle[e]:document.defaultView.getComputedStyle(t,null).getPropertyValue(e)},ct.retinaScale=function(t,e){var n=t.currentDevicePixelRatio=e||"undefined"!=typeof window&&window.devicePixelRatio||1;if(1!==n){var r=t.canvas,i=t.height,o=t.width;r.height=i*n,r.width=o*n,t.ctx.scale(n,n),r.style.height||r.style.width||(r.style.height=i+"px",r.style.width=o+"px")}},ct.fontString=function(t,e,n){return e+" "+t+"px "+n},ct.longestText=function(t,e,n,r){var i=(r=r||{}).data=r.data||{},o=r.garbageCollect=r.garbageCollect||[];r.font!==e&&(i=r.data={},o=r.garbageCollect=[],r.font=e),t.font=e;var a,c,s,l,u,f=0,d=n.length;for(a=0;an.length){for(a=0;ar&&(r=o),r},ct.numberOfLabelLines=function(t){var e=1;return ct.each(t,(function(t){ct.isArray(t)&&t.length>e&&(e=t.length)})),e},ct.color=B?function(t){return t instanceof CanvasGradient&&(t=Q.global.defaultColor),B(t)}:function(t){return t},ct.getHoverColor=function(t){return t instanceof CanvasPattern||t instanceof CanvasGradient?t:ct.color(t).saturate(.5).darken(.1).rgbString()}};function Jn(){throw new Error("This method is not implemented: either no adapter can be found or an incomplete integration was provided.")}function Kn(t){this.options=t||{}}ct.extend(Kn.prototype,{formats:Jn,parse:Jn,format:Jn,add:Jn,diff:Jn,startOf:Jn,endOf:Jn,_create:function(t){return t}}),Kn.override=function(t){ct.extend(Kn.prototype,t)};var Qn={_date:Kn},Zn={formatters:{values:function(t){return ct.isArray(t)?t:""+t},linear:function(t,e,n){var r=n.length>3?n[2]-n[1]:n[1]-n[0];Math.abs(r)>1&&t!==Math.floor(t)&&(r=t-Math.floor(t));var i=ct.log10(Math.abs(r)),o="";if(0!==t)if(Math.max(Math.abs(n[0]),Math.abs(n[n.length-1]))<1e-4){var a=ct.log10(Math.abs(t)),c=Math.floor(a)-Math.floor(i);c=Math.max(Math.min(c,20),0),o=t.toExponential(c)}else{var s=-1*Math.floor(i);s=Math.max(Math.min(s,20),0),o=t.toFixed(s)}else o="0";return o},logarithmic:function(t,e,n){var r=t/Math.pow(10,Math.floor(ct.log10(t)));return 0===t?"0":1===r||2===r||5===r||0===e||e===n.length-1?t.toExponential():""}}},tr=ct.isArray,er=ct.isNullOrUndef,nr=ct.valueOrDefault,rr=ct.valueAtIndexOrDefault;function ir(t,e){for(var n=[],r=t.length/e,i=0,o=t.length;is+l)))return a}function ar(t,e){ct.each(t,(function(t){var n,r=t.gc,i=r.length/2;if(i>e){for(n=0;nl)return o;return Math.max(l,1)}function Mr(t){var e,n,r=[];for(e=0,n=t.length;e=d||u<=1||!c.isHorizontal()?c.labelRotation=f:(e=(t=c._getLabelSizes()).widest.width,n=t.highest.height-t.highest.offset,r=Math.min(c.maxWidth,c.chart.width-e),e+6>(i=s.offset?c.maxWidth/u:r/(u-1))&&(i=r/(u-(s.offset?.5:1)),o=c.maxHeight-sr(s.gridLines)-l.padding-lr(s.scaleLabel),a=Math.sqrt(e*e+n*n),p=ct.toDegrees(Math.min(Math.asin(Math.min((t.highest.height+6)/i,1)),Math.asin(Math.min(o/a,1))-Math.asin(n/a))),p=Math.max(f,Math.min(d,p))),c.labelRotation=p)},afterCalculateTickRotation:function(){ct.callback(this.options.afterCalculateTickRotation,[this])},beforeFit:function(){ct.callback(this.options.beforeFit,[this])},fit:function(){var t=this,e=t.minSize={width:0,height:0},n=t.chart,r=t.options,i=r.ticks,o=r.scaleLabel,a=r.gridLines,c=t._isVisible(),s="bottom"===r.position,l=t.isHorizontal();if(l?e.width=t.maxWidth:c&&(e.width=sr(a)+lr(o)),l?c&&(e.height=sr(a)+lr(o)):e.height=t.maxHeight,i.display&&c){var u=fr(i),f=t._getLabelSizes(),d=f.first,p=f.last,h=f.widest,M=f.highest,b=.4*u.minor.lineHeight,m=i.padding;if(l){var v=0!==t.labelRotation,g=ct.toRadians(t.labelRotation),y=Math.cos(g),A=Math.sin(g),_=A*h.width+y*(M.height-(v?M.offset:0))+(v?0:b);e.height=Math.min(t.maxHeight,e.height+_+m);var z,O,x=t.getPixelForTick(0)-t.left,w=t.right-t.getPixelForTick(t.getTicks().length-1);v?(z=s?y*d.width+A*d.offset:A*(d.height-d.offset),O=s?A*(p.height-p.offset):y*p.width+A*p.offset):(z=d.width/2,O=p.width/2),t.paddingLeft=Math.max((z-x)*t.width/(t.width-x),0)+3,t.paddingRight=Math.max((O-w)*t.width/(t.width-w),0)+3}else{var L=i.mirror?0:h.width+m+b;e.width=Math.min(t.maxWidth,e.width+L),t.paddingTop=d.height/2,t.paddingBottom=p.height/2}}t.handleMargins(),l?(t.width=t._length=n.width-t.margins.left-t.margins.right,t.height=e.height):(t.width=e.width,t.height=t._length=n.height-t.margins.top-t.margins.bottom)},handleMargins:function(){var t=this;t.margins&&(t.margins.left=Math.max(t.paddingLeft,t.margins.left),t.margins.top=Math.max(t.paddingTop,t.margins.top),t.margins.right=Math.max(t.paddingRight,t.margins.right),t.margins.bottom=Math.max(t.paddingBottom,t.margins.bottom))},afterFit:function(){ct.callback(this.options.afterFit,[this])},isHorizontal:function(){var t=this.options.position;return"top"===t||"bottom"===t},isFullWidth:function(){return this.options.fullWidth},getRightValue:function(t){if(er(t))return NaN;if(("number"==typeof t||t instanceof Number)&&!isFinite(t))return NaN;if(t)if(this.isHorizontal()){if(void 0!==t.x)return this.getRightValue(t.x)}else if(void 0!==t.y)return this.getRightValue(t.y);return t},_convertTicksToLabels:function(t){var e,n,r,i=this;for(i.ticks=t.map((function(t){return t.value})),i.beforeTickToLabelConversion(),e=i.convertTicksToLabels(t)||i.ticks,i.afterTickToLabelConversion(),n=0,r=t.length;nr-1?null:e.getPixelForDecimal(t*i+(n?i/2:0))},getPixelForDecimal:function(t){var e=this;return e._reversePixels&&(t=1-t),e._startPixel+t*e._length},getDecimalForPixel:function(t){var e=(t-this._startPixel)/this._length;return this._reversePixels?1-e:e},getBasePixel:function(){return this.getPixelForValue(this.getBaseValue())},getBaseValue:function(){var t=this,e=t.min,n=t.max;return t.beginAtZero?0:e<0&&n<0?n:e>0&&n>0?e:0},_autoSkip:function(t){var e,n,r,i,o=this,a=o.options.ticks,c=o._length,s=a.maxTicksLimit||c/o._tickSize()+1,l=a.major.enabled?Mr(t):[],u=l.length,f=l[0],d=l[u-1];if(u>s)return br(t,l,u/s),dr(t);if(r=hr(l,t,c,s),u>0){for(e=0,n=u-1;e1?(d-f)/(u-1):null,mr(t,r,ct.isNullOrUndef(i)?0:f-i,f),mr(t,r,d,ct.isNullOrUndef(i)?t.length:d+i),dr(t)}return mr(t,r),dr(t)},_tickSize:function(){var t=this,e=t.options.ticks,n=ct.toRadians(t.labelRotation),r=Math.abs(Math.cos(n)),i=Math.abs(Math.sin(n)),o=t._getLabelSizes(),a=e.autoSkipPadding||0,c=o?o.widest.width+a:0,s=o?o.highest.height+a:0;return t.isHorizontal()?s*r>c*i?c/r:s/i:s*i=0&&(a=t),void 0!==o&&(t=n.indexOf(o))>=0&&(c=t),e.minIndex=a,e.maxIndex=c,e.min=n[a],e.max=n[c]},buildTicks:function(){var t=this,e=t._getLabels(),n=t.minIndex,r=t.maxIndex;t.ticks=0===n&&r===e.length-1?e:e.slice(n,r+1)},getLabelForIndex:function(t,e){var n=this,r=n.chart;return r.getDatasetMeta(e).controller._getValueScaleId()===n.id?n.getRightValue(r.data.datasets[e].data[t]):n._getLabels()[t]},_configure:function(){var t=this,e=t.options.offset,n=t.ticks;gr.prototype._configure.call(t),t.isHorizontal()||(t._reversePixels=!t._reversePixels),n&&(t._startValue=t.minIndex-(e?.5:0),t._valueRange=Math.max(n.length-(e?0:1),1))},getPixelForValue:function(t,e,n){var r,i,o,a=this;return yr(e)||yr(n)||(t=a.chart.data.datasets[n].data[e]),yr(t)||(r=a.isHorizontal()?t.x:t.y),(void 0!==r||void 0!==t&&isNaN(e))&&(i=a._getLabels(),t=ct.valueOrDefault(r,t),e=-1!==(o=i.indexOf(t))?o:e,isNaN(e)&&(e=t)),a.getPixelForDecimal((e-a._startValue)/a._valueRange)},getPixelForTick:function(t){var e=this.ticks;return t<0||t>e.length-1?null:this.getPixelForValue(e[t],t+this.minIndex)},getValueForPixel:function(t){var e=this,n=Math.round(e._startValue+e.getDecimalForPixel(t)*e._valueRange);return Math.min(Math.max(n,0),e.ticks.length-1)},getBasePixel:function(){return this.bottom}}),zr=Ar;_r._defaults=zr;var Or=ct.noop,xr=ct.isNullOrUndef;function wr(t,e){var n,r,i,o,a=[],c=1e-14,s=t.stepSize,l=s||1,u=t.maxTicks-1,f=t.min,d=t.max,p=t.precision,h=e.min,M=e.max,b=ct.niceNum((M-h)/u/l)*l;if(bu&&(b=ct.niceNum(o*b/u/l)*l),s||xr(p)?n=Math.pow(10,ct._decimalPlaces(b)):(n=Math.pow(10,p),b=Math.ceil(b*n)/n),r=Math.floor(h/b)*b,i=Math.ceil(M/b)*b,s&&(!xr(f)&&ct.almostWhole(f/b,b/1e3)&&(r=f),!xr(d)&&ct.almostWhole(d/b,b/1e3)&&(i=d)),o=(i-r)/b,o=ct.almostEquals(o,Math.round(o),b/1e3)?Math.round(o):Math.ceil(o),r=Math.round(r*n)/n,i=Math.round(i*n)/n,a.push(xr(f)?r:f);for(var m=1;m0&&r>0&&(t.min=0)}var i=void 0!==e.min||void 0!==e.suggestedMin,o=void 0!==e.max||void 0!==e.suggestedMax;void 0!==e.min?t.min=e.min:void 0!==e.suggestedMin&&(null===t.min?t.min=e.suggestedMin:t.min=Math.min(t.min,e.suggestedMin)),void 0!==e.max?t.max=e.max:void 0!==e.suggestedMax&&(null===t.max?t.max=e.suggestedMax:t.max=Math.max(t.max,e.suggestedMax)),i!==o&&t.min>=t.max&&(i?t.max=t.min+1:t.min=t.max-1),t.min===t.max&&(t.max++,e.beginAtZero||t.min--)},getTickLimit:function(){var t,e=this,n=e.options.ticks,r=n.stepSize,i=n.maxTicksLimit;return r?t=Math.ceil(e.max/r)-Math.floor(e.min/r)+1:(t=e._computeTickLimit(),i=i||11),i&&(t=Math.min(i,t)),t},_computeTickLimit:function(){return Number.POSITIVE_INFINITY},handleDirectionalChanges:Or,buildTicks:function(){var t=this,e=t.options.ticks,n=t.getTickLimit(),r={maxTicks:n=Math.max(2,n),min:e.min,max:e.max,precision:e.precision,stepSize:ct.valueOrDefault(e.fixedStepSize,e.stepSize)},i=t.ticks=wr(r,t);t.handleDirectionalChanges(),t.max=ct.max(i),t.min=ct.min(i),e.reverse?(i.reverse(),t.start=t.max,t.end=t.min):(t.start=t.min,t.end=t.max)},convertTicksToLabels:function(){var t=this;t.ticksAsNumbers=t.ticks.slice(),t.zeroLineIndex=t.ticks.indexOf(0),gr.prototype.convertTicksToLabels.call(t)},_configure:function(){var t,e=this,n=e.getTicks(),r=e.min,i=e.max;gr.prototype._configure.call(e),e.options.offset&&n.length&&(r-=t=(i-r)/Math.max(n.length-1,1)/2,i+=t),e._startValue=r,e._endValue=i,e._valueRange=i-r}}),Nr={position:"left",ticks:{callback:Zn.formatters.linear}},Tr=0,Cr=1;function qr(t,e,n){var r=[n.type,void 0===e&&void 0===n.stack?n.index:"",n.stack].join(".");return void 0===t[r]&&(t[r]={pos:[],neg:[]}),t[r]}function Sr(t,e,n,r){var i,o,a=t.options,c=qr(e,a.stacked,n),s=c.pos,l=c.neg,u=r.length;for(i=0;ie.length-1?null:this.getPixelForValue(e[t])}}),Wr=Nr;Er._defaults=Wr;var Br=ct.valueOrDefault,Dr=ct.math.log10;function Xr(t,e){var n,r,i=[],o=Br(t.min,Math.pow(10,Math.floor(Dr(e.min)))),a=Math.floor(Dr(e.max)),c=Math.ceil(e.max/Math.pow(10,a));0===o?(n=Math.floor(Dr(e.minNotZero)),r=Math.floor(e.minNotZero/Math.pow(10,n)),i.push(o),o=r*Math.pow(10,n)):(n=Math.floor(Dr(o)),r=Math.floor(o/Math.pow(10,n)));var s=n<0?Math.pow(10,Math.abs(n)):1;do{i.push(o),10==++r&&(r=1,s=++n>=0?1:s),o=Math.round(r*Math.pow(10,n)*s)/s}while(n=0?t:e}var jr=gr.extend({determineDataLimits:function(){var t,e,n,r,i,o,a=this,c=a.options,s=a.chart,l=s.data.datasets,u=a.isHorizontal();function f(t){return u?t.xAxisID===a.id:t.yAxisID===a.id}a.min=Number.POSITIVE_INFINITY,a.max=Number.NEGATIVE_INFINITY,a.minNotZero=Number.POSITIVE_INFINITY;var d=c.stacked;if(void 0===d)for(t=0;t0){var e=ct.min(t),n=ct.max(t);a.min=Math.min(a.min,e),a.max=Math.max(a.max,n)}}))}else for(t=0;t0?t.minNotZero=t.min:t.max<1?t.minNotZero=Math.pow(10,Math.floor(Dr(t.max))):t.minNotZero=n)},buildTicks:function(){var t=this,e=t.options.ticks,n=!t.isHorizontal(),r={min:Rr(e.min),max:Rr(e.max)},i=t.ticks=Xr(r,t);t.max=ct.max(i),t.min=ct.min(i),e.reverse?(n=!n,t.start=t.max,t.end=t.min):(t.start=t.min,t.end=t.max),n&&i.reverse()},convertTicksToLabels:function(){this.tickValues=this.ticks.slice(),gr.prototype.convertTicksToLabels.call(this)},getLabelForIndex:function(t,e){return this._getScaleLabel(this.chart.data.datasets[e].data[t])},getPixelForTick:function(t){var e=this.tickValues;return t<0||t>e.length-1?null:this.getPixelForValue(e[t])},_getFirstTickValue:function(t){var e=Math.floor(Dr(t));return Math.floor(t/Math.pow(10,e))*Math.pow(10,e)},_configure:function(){var t=this,e=t.min,n=0;gr.prototype._configure.call(t),0===e&&(e=t._getFirstTickValue(t.minNotZero),n=Br(t.options.ticks.fontSize,Q.global.defaultFontSize)/t._length),t._startValue=Dr(e),t._valueOffset=n,t._valueRange=(Dr(t.max)-Dr(e))/(1-n)},getPixelForValue:function(t){var e=this,n=0;return(t=+e.getRightValue(t))>e.min&&t>0&&(n=(Dr(t)-e._startValue)/e._valueRange+e._valueOffset),e.getPixelForDecimal(n)},getValueForPixel:function(t){var e=this,n=e.getDecimalForPixel(t);return 0===n&&0===e.min?0:Math.pow(10,e._startValue+(n-e._valueOffset)*e._valueRange)}}),Ir=Pr;jr._defaults=Ir;var Fr=ct.valueOrDefault,Hr=ct.valueAtIndexOrDefault,$r=ct.options.resolve,Ur={display:!0,animate:!0,position:"chartArea",angleLines:{display:!0,color:"rgba(0,0,0,0.1)",lineWidth:1,borderDash:[],borderDashOffset:0},gridLines:{circular:!1},ticks:{showLabelBackdrop:!0,backdropColor:"rgba(255,255,255,0.75)",backdropPaddingY:2,backdropPaddingX:2,callback:Zn.formatters.linear},pointLabels:{display:!0,fontSize:10,callback:function(t){return t}}};function Vr(t){var e=t.ticks;return e.display&&t.display?Fr(e.fontSize,Q.global.defaultFontSize)+2*e.backdropPaddingY:0}function Yr(t,e,n){return ct.isArray(n)?{w:ct.longestText(t,t.font,n),h:n.length*e}:{w:t.measureText(n).width,h:e}}function Gr(t,e,n,r,i){return t===r||t===i?{start:e-n/2,end:e+n/2}:ti?{start:e-n,end:e}:{start:e,end:e+n}}function Jr(t){var e,n,r,i=ct.options._parseFont(t.options.pointLabels),o={l:0,r:t.width,t:0,b:t.height-t.paddingTop},a={};t.ctx.font=i.string,t._pointLabelSizes=[];var c=t.chart.data.labels.length;for(e=0;eo.r&&(o.r=u.end,a.r=s),f.starto.b&&(o.b=f.end,a.b=s)}t.setReductions(t.drawingArea,o,a)}function Kr(t){return 0===t||180===t?"center":t<180?"left":"right"}function Qr(t,e,n,r){var i,o,a=n.y+r/2;if(ct.isArray(e))for(i=0,o=e.length;i270||t<90)&&(n.y-=e.h)}function ti(t){var e=t.ctx,n=t.options,r=n.pointLabels,i=Vr(n),o=t.getDistanceFromCenterForValue(n.ticks.reverse?t.min:t.max),a=ct.options._parseFont(r);e.save(),e.font=a.string,e.textBaseline="middle";for(var c=t.chart.data.labels.length-1;c>=0;c--){var s=0===c?i/2:0,l=t.getPointPosition(c,o+s+5),u=Hr(r.fontColor,c,Q.global.defaultFontColor);e.fillStyle=u;var f=t.getIndexAngle(c),d=ct.toDegrees(f);e.textAlign=Kr(d),Zr(d,t._pointLabelSizes[c],l),Qr(e,t.pointLabels[c],l,a.lineHeight)}e.restore()}function ei(t,e,n,r){var i,o=t.ctx,a=e.circular,c=t.chart.data.labels.length,s=Hr(e.color,r-1),l=Hr(e.lineWidth,r-1);if((a||c)&&s&&l){if(o.save(),o.strokeStyle=s,o.lineWidth=l,o.setLineDash&&(o.setLineDash(e.borderDash||[]),o.lineDashOffset=e.borderDashOffset||0),o.beginPath(),a)o.arc(t.xCenter,t.yCenter,n,0,2*Math.PI);else{i=t.getPointPosition(0,n),o.moveTo(i.x,i.y);for(var u=1;u0&&r>0?n:0)},_drawGrid:function(){var t,e,n,r=this,i=r.ctx,o=r.options,a=o.gridLines,c=o.angleLines,s=Fr(c.lineWidth,a.lineWidth),l=Fr(c.color,a.color);if(o.pointLabels.display&&ti(r),a.display&&ct.each(r.ticks,(function(t,n){0!==n&&(e=r.getDistanceFromCenterForValue(r.ticksAsNumbers[n]),ei(r,a,e,n))})),c.display&&s&&l){for(i.save(),i.lineWidth=s,i.strokeStyle=l,i.setLineDash&&(i.setLineDash($r([c.borderDash,a.borderDash,[]])),i.lineDashOffset=$r([c.borderDashOffset,a.borderDashOffset,0])),t=r.chart.data.labels.length-1;t>=0;t--)e=r.getDistanceFromCenterForValue(o.ticks.reverse?r.min:r.max),n=r.getPointPosition(t,e),i.beginPath(),i.moveTo(r.xCenter,r.yCenter),i.lineTo(n.x,n.y),i.stroke();i.restore()}},_drawLabels:function(){var t=this,e=t.ctx,n=t.options.ticks;if(n.display){var r,i,o=t.getIndexAngle(0),a=ct.options._parseFont(n),c=Fr(n.fontColor,Q.global.defaultFontColor);e.save(),e.font=a.string,e.translate(t.xCenter,t.yCenter),e.rotate(o),e.textAlign="center",e.textBaseline="middle",ct.each(t.ticks,(function(o,s){(0!==s||n.reverse)&&(r=t.getDistanceFromCenterForValue(t.ticksAsNumbers[s]),n.showLabelBackdrop&&(i=e.measureText(o).width,e.fillStyle=n.backdropColor,e.fillRect(-i/2-n.backdropPaddingX,-r-a.size/2-n.backdropPaddingY,i+2*n.backdropPaddingX,a.size+2*n.backdropPaddingY)),e.fillStyle=c,e.fillText(o,0,-r))})),e.restore()}},_drawTitle:ct.noop}),ii=Ur;ri._defaults=ii;var oi=ct._deprecated,ai=ct.options.resolve,ci=ct.valueOrDefault,si=Number.MIN_SAFE_INTEGER||-9007199254740991,li=Number.MAX_SAFE_INTEGER||9007199254740991,ui={millisecond:{common:!0,size:1,steps:1e3},second:{common:!0,size:1e3,steps:60},minute:{common:!0,size:6e4,steps:60},hour:{common:!0,size:36e5,steps:24},day:{common:!0,size:864e5,steps:30},week:{common:!1,size:6048e5,steps:4},month:{common:!0,size:2628e6,steps:12},quarter:{common:!1,size:7884e6,steps:4},year:{common:!0,size:3154e7}},fi=Object.keys(ui);function di(t,e){return t-e}function pi(t){var e,n,r,i={},o=[];for(e=0,n=t.length;ee&&c=0&&a<=c;){if(i=t[(r=a+c>>1)-1]||null,o=t[r],!i)return{lo:null,hi:o};if(o[e]n))return{lo:i,hi:o};c=r-1}}return{lo:o,hi:null}}function vi(t,e,n,r){var i=mi(t,e,n),o=i.lo?i.hi?i.lo:t[t.length-2]:t[0],a=i.lo?i.hi?i.hi:t[t.length-1]:t[1],c=a[e]-o[e],s=c?(n-o[e])/c:0,l=(a[r]-o[r])*s;return o[r]+l}function gi(t,e){var n=t._adapter,r=t.options.time,i=r.parser,o=i||r.format,a=e;return"function"==typeof i&&(a=i(a)),ct.isFinite(a)||(a="string"==typeof o?n.parse(a,o):n.parse(a)),null!==a?+a:(i||"function"!=typeof o||(a=o(e),ct.isFinite(a)||(a=n.parse(a))),a)}function yi(t,e){if(ct.isNullOrUndef(e))return null;var n=t.options.time,r=gi(t,t.getRightValue(e));return null===r||n.round&&(r=+t._adapter.startOf(r,n.round)),r}function Ai(t,e,n,r){var i,o,a,c=fi.length;for(i=fi.indexOf(t);i=fi.indexOf(n);o--)if(a=fi[o],ui[a].common&&t._adapter.diff(i,r,a)>=e-1)return a;return fi[n?fi.indexOf(n):0]}function zi(t){for(var e=fi.indexOf(t)+1,n=fi.length;e1e5*l)throw e+" and "+n+" are too far apart with stepSize of "+l+" "+s;for(i=f;i=0&&(e[o].major=!0);return e}function Li(t,e,n){var r,i,o=[],a={},c=e.length;for(r=0;r1?pi(h).sort(di):h.sort(di),d=Math.min(d,h[0]),p=Math.max(p,h[h.length-1])),d=yi(c,hi(u))||d,p=yi(c,Mi(u))||p,d=d===li?+l.startOf(Date.now(),f):d,p=p===si?+l.endOf(Date.now(),f)+1:p,c.min=Math.min(d,p),c.max=Math.max(d+1,p),c._table=[],c._timestamps={data:h,datasets:M,labels:b}},buildTicks:function(){var t,e,n,r=this,i=r.min,o=r.max,a=r.options,c=a.ticks,s=a.time,l=r._timestamps,u=[],f=r.getLabelCapacity(i),d=c.source,p=a.distribution;for(l="data"===d||"auto"===d&&"series"===p?l.data:"labels"===d?l.labels:Oi(r,i,o,f),"ticks"===a.bounds&&l.length&&(i=l[0],o=l[l.length-1]),i=yi(r,hi(a))||i,o=yi(r,Mi(a))||o,t=0,e=l.length;t=i&&n<=o&&u.push(n);return r.min=i,r.max=o,r._unit=s.unit||(c.autoSkip?Ai(s.minUnit,r.min,r.max,f):_i(r,u.length,s.minUnit,r.min,r.max)),r._majorUnit=c.major.enabled&&"year"!==r._unit?zi(r._unit):void 0,r._table=bi(r._timestamps.data,i,o,p),r._offsets=xi(r._table,u,i,o,a),c.reverse&&u.reverse(),Li(r,u,r._majorUnit)},getLabelForIndex:function(t,e){var n=this,r=n._adapter,i=n.chart.data,o=n.options.time,a=i.labels&&t=0&&t0?c:1}}),Ci=Ni;Ti._defaults=Ci;var qi={category:_r,linear:Er,logarithmic:jr,radialLinear:ri,time:Ti},Si={datetime:"MMM D, YYYY, h:mm:ss a",millisecond:"h:mm:ss.SSS a",second:"h:mm:ss a",minute:"h:mm a",hour:"hA",day:"MMM D",week:"ll",month:"MMM YYYY",quarter:"[Q]Q - YYYY",year:"YYYY"};Qn._date.override("function"==typeof t?{_id:"moment",formats:function(){return Si},parse:function(e,n){return"string"==typeof e&&"string"==typeof n?e=t(e,n):e instanceof t||(e=t(e)),e.isValid()?e.valueOf():null},format:function(e,n){return t(e).format(n)},add:function(e,n,r){return t(e).add(n,r).valueOf()},diff:function(e,n,r){return t(e).diff(t(n),r)},startOf:function(e,n,r){return e=t(e),"isoWeek"===n?e.isoWeekday(r).valueOf():e.startOf(n).valueOf()},endOf:function(e,n){return t(e).endOf(n).valueOf()},_create:function(e){return t(e)}}:{}),Q._set("global",{plugins:{filler:{propagate:!0}}});var ki={dataset:function(t){var e=t.fill,n=t.chart,r=n.getDatasetMeta(e),i=r&&n.isDatasetVisible(e)&&r.dataset._children||[],o=i.length||0;return o?function(t,e){return e=n)&&r;switch(o){case"bottom":return"start";case"top":return"end";case"zero":return"origin";case"origin":case"start":case"end":return o;default:return!1}}function Wi(t){var e,n=t.el._model||{},r=t.el._scale||{},i=t.fill,o=null;if(isFinite(i))return null;if("start"===i?o=void 0===n.scaleBottom?r.bottom:n.scaleBottom:"end"===i?o=void 0===n.scaleTop?r.top:n.scaleTop:void 0!==n.scaleZero?o=n.scaleZero:r.getBasePixel&&(o=r.getBasePixel()),null!=o){if(void 0!==o.x&&void 0!==o.y)return o;if(ct.isFinite(o))return{x:(e=r.isHorizontal())?o:null,y:e?null:o}}return null}function Bi(t){var e,n,r,i,o,a=t.el._scale,c=a.options,s=a.chart.data.labels.length,l=t.fill,u=[];if(!s)return null;for(e=c.ticks.reverse?a.max:a.min,n=c.ticks.reverse?a.min:a.max,r=a.getPointPositionForValue(0,e),i=0;i0;--o)ct.canvas.lineTo(t,n[o],n[o-1],!0);else for(a=n[0].cx,c=n[0].cy,s=Math.sqrt(Math.pow(n[0].x-a,2)+Math.pow(n[0].y-c,2)),o=i-1;o>0;--o)t.arc(a,c,s,n[o].angle,n[o-1].angle,!0)}}function Ii(t,e,n,r,i,o){var a,c,s,l,u,f,d,p,h=e.length,M=r.spanGaps,b=[],m=[],v=0,g=0;for(t.beginPath(),a=0,c=h;a=0;--n)(e=s[n].$filler)&&e.visible&&(i=(r=e.el)._view,o=r._children||[],a=e.mapper,c=i.backgroundColor||Q.global.defaultColor,a&&c&&o.length&&(ct.canvas.clipArea(l,t.chartArea),Ii(l,o,a,i,c,r._loop),ct.canvas.unclipArea(l)))}},Hi=ct.rtl.getRtlAdapter,$i=ct.noop,Ui=ct.valueOrDefault;function Vi(t,e){return t.usePointStyle&&t.boxWidth>e?e:t.boxWidth}Q._set("global",{legend:{display:!0,position:"top",align:"center",fullWidth:!0,reverse:!1,weight:1e3,onClick:function(t,e){var n=e.datasetIndex,r=this.chart,i=r.getDatasetMeta(n);i.hidden=null===i.hidden?!r.data.datasets[n].hidden:null,r.update()},onHover:null,onLeave:null,labels:{boxWidth:40,padding:10,generateLabels:function(t){var e=t.data.datasets,n=t.options.legend||{},r=n.labels&&n.labels.usePointStyle;return t._getSortedDatasetMetas().map((function(n){var i=n.controller.getStyle(r?0:void 0);return{text:e[n.index].label,fillStyle:i.backgroundColor,hidden:!t.isDatasetVisible(n.index),lineCap:i.borderCapStyle,lineDash:i.borderDash,lineDashOffset:i.borderDashOffset,lineJoin:i.borderJoinStyle,lineWidth:i.borderWidth,strokeStyle:i.borderColor,pointStyle:i.pointStyle,rotation:i.rotation,datasetIndex:n.index}}),this)}}},legendCallback:function(t){var e,n,r,i=document.createElement("ul"),o=t.data.datasets;for(i.setAttribute("class",t.id+"-legend"),e=0,n=o.length;es.width)&&(f+=a+n.padding,u[u.length-(e>0?0:1)]=0),c[e]={left:0,top:0,width:r,height:a},u[u.length-1]+=r+n.padding})),s.height+=f}else{var d=n.padding,p=t.columnWidths=[],h=t.columnHeights=[],M=n.padding,b=0,m=0;ct.each(t.legendItems,(function(t,e){var r=Vi(n,a)+a/2+i.measureText(t.text).width;e>0&&m+a+2*d>s.height&&(M+=b+n.padding,p.push(b),h.push(m),b=0,m=0),b=Math.max(b,r),m+=a+d,c[e]={left:0,top:0,width:r,height:a}})),M+=b,p.push(b),h.push(m),s.width+=M}t.width=s.width,t.height=s.height}else t.width=s.width=t.height=s.height=0},afterFit:$i,isHorizontal:function(){return"top"===this.options.position||"bottom"===this.options.position},draw:function(){var t=this,e=t.options,n=e.labels,r=Q.global,i=r.defaultColor,o=r.elements.line,a=t.height,c=t.columnHeights,s=t.width,l=t.lineWidths;if(e.display){var u,f=Hi(e.rtl,t.left,t.minSize.width),d=t.ctx,p=Ui(n.fontColor,r.defaultFontColor),h=ct.options._parseFont(n),M=h.size;d.textAlign=f.textAlign("left"),d.textBaseline="middle",d.lineWidth=.5,d.strokeStyle=p,d.fillStyle=p,d.font=h.string;var b=Vi(n,M),m=t.legendHitBoxes,v=function(t,e,r){if(!(isNaN(b)||b<=0)){d.save();var a=Ui(r.lineWidth,o.borderWidth);if(d.fillStyle=Ui(r.fillStyle,i),d.lineCap=Ui(r.lineCap,o.borderCapStyle),d.lineDashOffset=Ui(r.lineDashOffset,o.borderDashOffset),d.lineJoin=Ui(r.lineJoin,o.borderJoinStyle),d.lineWidth=a,d.strokeStyle=Ui(r.strokeStyle,i),d.setLineDash&&d.setLineDash(Ui(r.lineDash,o.borderDash)),n&&n.usePointStyle){var c=b*Math.SQRT2/2,s=f.xPlus(t,b/2),l=e+M/2;ct.canvas.drawPoint(d,r.pointStyle,c,s,l,r.rotation)}else d.fillRect(f.leftForLtr(t,b),e,b,M),0!==a&&d.strokeRect(f.leftForLtr(t,b),e,b,M);d.restore()}},g=function(t,e,n,r){var i=M/2,o=f.xPlus(t,b+i),a=e+i;d.fillText(n.text,o,a),n.hidden&&(d.beginPath(),d.lineWidth=2,d.moveTo(o,a),d.lineTo(f.xPlus(o,r),a),d.stroke())},y=function(t,r){switch(e.align){case"start":return n.padding;case"end":return t-r;default:return(t-r+n.padding)/2}},A=t.isHorizontal();u=A?{x:t.left+y(s,l[0]),y:t.top+n.padding,line:0}:{x:t.left+n.padding,y:t.top+y(a,c[0]),line:0},ct.rtl.overrideTextDirection(t.ctx,e.textDirection);var _=M+n.padding;ct.each(t.legendItems,(function(e,r){var i=d.measureText(e.text).width,o=b+M/2+i,p=u.x,h=u.y;f.setWidth(t.minSize.width),A?r>0&&p+o+n.padding>t.left+t.minSize.width&&(h=u.y+=_,u.line++,p=u.x=t.left+y(s,l[u.line])):r>0&&h+_>t.top+t.minSize.height&&(p=u.x=p+t.columnWidths[u.line]+n.padding,u.line++,h=u.y=t.top+y(a,c[u.line]));var z=f.x(p);v(z,h,e),m[r].left=f.leftForLtr(z,m[r].width),m[r].top=h,g(z,h,e,i),A?u.x+=o+n.padding:u.y+=_})),ct.rtl.restoreTextDirection(t.ctx,e.textDirection)}},_getLegendItemAt:function(t,e){var n,r,i,o=this;if(t>=o.left&&t<=o.right&&e>=o.top&&e<=o.bottom)for(i=o.legendHitBoxes,n=0;n=(r=i[n]).left&&t<=r.left+r.width&&e>=r.top&&e<=r.top+r.height)return o.legendItems[n];return null},handleEvent:function(t){var e,n=this,r=n.options,i="mouseup"===t.type?"click":t.type;if("mousemove"===i){if(!r.onHover&&!r.onLeave)return}else{if("click"!==i)return;if(!r.onClick)return}e=n._getLegendItemAt(t.x,t.y),"click"===i?e&&r.onClick&&r.onClick.call(n,t.native,e):(r.onLeave&&e!==n._hoveredItem&&(n._hoveredItem&&r.onLeave.call(n,t.native,n._hoveredItem),n._hoveredItem=e),r.onHover&&e&&r.onHover.call(n,t.native,e))}});function Gi(t,e){var n=new Yi({ctx:t.ctx,options:e,chart:t});$e.configure(t,n,e),$e.addBox(t,n),t.legend=n}var Ji={id:"legend",_element:Yi,beforeInit:function(t){var e=t.options.legend;e&&Gi(t,e)},beforeUpdate:function(t){var e=t.options.legend,n=t.legend;e?(ct.mergeIf(e,Q.global.legend),n?($e.configure(t,n,e),n.options=e):Gi(t,e)):n&&($e.removeBox(t,n),delete t.legend)},afterEvent:function(t,e){var n=t.legend;n&&n.handleEvent(e)}},Ki=ct.noop;Q._set("global",{title:{display:!1,fontStyle:"bold",fullWidth:!0,padding:10,position:"top",text:"",weight:2e3}});var Qi=Mt.extend({initialize:function(t){var e=this;ct.extend(e,t),e.legendHitBoxes=[]},beforeUpdate:Ki,update:function(t,e,n){var r=this;return r.beforeUpdate(),r.maxWidth=t,r.maxHeight=e,r.margins=n,r.beforeSetDimensions(),r.setDimensions(),r.afterSetDimensions(),r.beforeBuildLabels(),r.buildLabels(),r.afterBuildLabels(),r.beforeFit(),r.fit(),r.afterFit(),r.afterUpdate(),r.minSize},afterUpdate:Ki,beforeSetDimensions:Ki,setDimensions:function(){var t=this;t.isHorizontal()?(t.width=t.maxWidth,t.left=0,t.right=t.width):(t.height=t.maxHeight,t.top=0,t.bottom=t.height),t.paddingLeft=0,t.paddingTop=0,t.paddingRight=0,t.paddingBottom=0,t.minSize={width:0,height:0}},afterSetDimensions:Ki,beforeBuildLabels:Ki,buildLabels:Ki,afterBuildLabels:Ki,beforeFit:Ki,fit:function(){var t,e=this,n=e.options,r=e.minSize={},i=e.isHorizontal();n.display?(t=(ct.isArray(n.text)?n.text.length:1)*ct.options._parseFont(n).lineHeight+2*n.padding,e.width=r.width=i?e.maxWidth:t,e.height=r.height=i?t:e.maxHeight):e.width=r.width=e.height=r.height=0},afterFit:Ki,isHorizontal:function(){var t=this.options.position;return"top"===t||"bottom"===t},draw:function(){var t=this,e=t.ctx,n=t.options;if(n.display){var r,i,o,a=ct.options._parseFont(n),c=a.lineHeight,s=c/2+n.padding,l=0,u=t.top,f=t.left,d=t.bottom,p=t.right;e.fillStyle=ct.valueOrDefault(n.fontColor,Q.global.defaultFontColor),e.font=a.string,t.isHorizontal()?(i=f+(p-f)/2,o=u+s,r=p-f):(i="left"===n.position?f+s:p-s,o=u+(d-u)/2,r=d-u,l=Math.PI*("left"===n.position?-.5:.5)),e.save(),e.translate(i,o),e.rotate(l),e.textAlign="center",e.textBaseline="middle";var h=n.text;if(ct.isArray(h))for(var M=0,b=0;b{"use strict";n.d(e,{Z:()=>o});var r=n(3645),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,"#alertModal{background:rgba(0,0,0,.5);z-index:99999}#alertModal svg{display:block;height:4rem;margin:0 auto;width:4rem}",""]);const o=i},3645:t=>{"use strict";t.exports=function(t){var e=[];return e.toString=function(){return this.map((function(e){var n=t(e);return e[2]?"@media ".concat(e[2]," {").concat(n,"}"):n})).join("")},e.i=function(t,n,r){"string"==typeof t&&(t=[[null,t,""]]);var i={};if(r)for(var o=0;o0&&e-1 in t)}O.fn=O.prototype={jquery:z,constructor:O,length:0,toArray:function(){return c.call(this)},get:function(t){return null==t?c.call(this):t<0?this[t+this.length]:this[t]},pushStack:function(t){var e=O.merge(this.constructor(),t);return e.prevObject=this,e},each:function(t){return O.each(this,t)},map:function(t){return this.pushStack(O.map(this,(function(e,n){return t.call(e,n,e)})))},slice:function(){return this.pushStack(c.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(O.grep(this,(function(t,e){return(e+1)%2})))},odd:function(){return this.pushStack(O.grep(this,(function(t,e){return e%2})))},eq:function(t){var e=this.length,n=+t+(t<0?e:0);return this.pushStack(n>=0&&n+~]|[\\x20\\t\\r\\n\\f])[\\x20\\t\\r\\n\\f]*"),$=new RegExp(D+"|>"),U=new RegExp(R),V=new RegExp("^"+X+"$"),Y={ID:new RegExp("^#("+X+")"),CLASS:new RegExp("^\\.("+X+")"),TAG:new RegExp("^("+X+"|[*])"),ATTR:new RegExp("^"+P),PSEUDO:new RegExp("^"+R),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\([\\x20\\t\\r\\n\\f]*(even|odd|(([+-]|)(\\d*)n|)[\\x20\\t\\r\\n\\f]*(?:([+-]|)[\\x20\\t\\r\\n\\f]*(\\d+)|))[\\x20\\t\\r\\n\\f]*\\)|)","i"),bool:new RegExp("^(?:"+B+")$","i"),needsContext:new RegExp("^[\\x20\\t\\r\\n\\f]*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\([\\x20\\t\\r\\n\\f]*((?:-\\d)?\\d*)[\\x20\\t\\r\\n\\f]*\\)|)(?=[^-]|$)","i")},G=/HTML$/i,J=/^(?:input|select|textarea|button)$/i,K=/^h\d$/i,Q=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,tt=/[+~]/,et=new RegExp("\\\\[\\da-fA-F]{1,6}[\\x20\\t\\r\\n\\f]?|\\\\([^\\r\\n\\f])","g"),nt=function(t,e){var n="0x"+t.slice(1)-65536;return e||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},rt=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,it=function(t,e){return e?"\0"===t?"�":t.slice(0,-1)+"\\"+t.charCodeAt(t.length-1).toString(16)+" ":"\\"+t},ot=function(){d()},at=yt((function(t){return!0===t.disabled&&"fieldset"===t.nodeName.toLowerCase()}),{dir:"parentNode",next:"legend"});try{k.apply(C=E.call(A.childNodes),A.childNodes),C[A.childNodes.length].nodeType}catch(t){k={apply:C.length?function(t,e){S.apply(t,E.call(e))}:function(t,e){for(var n=t.length,r=0;t[n++]=e[r++];);t.length=n-1}}}function ct(t,e,r,i){var o,c,l,u,f,h,m,v=e&&e.ownerDocument,A=e?e.nodeType:9;if(r=r||[],"string"!=typeof t||!t||1!==A&&9!==A&&11!==A)return r;if(!i&&(d(e),e=e||p,M)){if(11!==A&&(f=Z.exec(t)))if(o=f[1]){if(9===A){if(!(l=e.getElementById(o)))return r;if(l.id===o)return r.push(l),r}else if(v&&(l=v.getElementById(o))&&g(e,l)&&l.id===o)return r.push(l),r}else{if(f[2])return k.apply(r,e.getElementsByTagName(t)),r;if((o=f[3])&&n.getElementsByClassName&&e.getElementsByClassName)return k.apply(r,e.getElementsByClassName(o)),r}if(n.qsa&&!L[t+" "]&&(!b||!b.test(t))&&(1!==A||"object"!==e.nodeName.toLowerCase())){if(m=t,v=e,1===A&&($.test(t)||H.test(t))){for((v=tt.test(t)&&mt(e.parentNode)||e)===e&&n.scope||((u=e.getAttribute("id"))?u=u.replace(rt,it):e.setAttribute("id",u=y)),c=(h=a(t)).length;c--;)h[c]=(u?"#"+u:":scope")+" "+gt(h[c]);m=h.join(",")}try{return k.apply(r,v.querySelectorAll(m)),r}catch(e){L(t,!0)}finally{u===y&&e.removeAttribute("id")}}}return s(t.replace(I,"$1"),e,r,i)}function st(){var t=[];return function e(n,i){return t.push(n+" ")>r.cacheLength&&delete e[t.shift()],e[n+" "]=i}}function lt(t){return t[y]=!0,t}function ut(t){var e=p.createElement("fieldset");try{return!!t(e)}catch(t){return!1}finally{e.parentNode&&e.parentNode.removeChild(e),e=null}}function ft(t,e){for(var n=t.split("|"),i=n.length;i--;)r.attrHandle[n[i]]=e}function dt(t,e){var n=e&&t,r=n&&1===t.nodeType&&1===e.nodeType&&t.sourceIndex-e.sourceIndex;if(r)return r;if(n)for(;n=n.nextSibling;)if(n===e)return-1;return t?1:-1}function pt(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function ht(t){return function(e){var n=e.nodeName.toLowerCase();return("input"===n||"button"===n)&&e.type===t}}function Mt(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&at(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function bt(t){return lt((function(e){return e=+e,lt((function(n,r){for(var i,o=t([],n.length,e),a=o.length;a--;)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))}))}))}function mt(t){return t&&void 0!==t.getElementsByTagName&&t}for(e in n=ct.support={},o=ct.isXML=function(t){var e=t&&t.namespaceURI,n=t&&(t.ownerDocument||t).documentElement;return!G.test(e||n&&n.nodeName||"HTML")},d=ct.setDocument=function(t){var e,i,a=t?t.ownerDocument||t:A;return a!=p&&9===a.nodeType&&a.documentElement?(h=(p=a).documentElement,M=!o(p),A!=p&&(i=p.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener("unload",ot,!1):i.attachEvent&&i.attachEvent("onunload",ot)),n.scope=ut((function(t){return h.appendChild(t).appendChild(p.createElement("div")),void 0!==t.querySelectorAll&&!t.querySelectorAll(":scope fieldset div").length})),n.attributes=ut((function(t){return t.className="i",!t.getAttribute("className")})),n.getElementsByTagName=ut((function(t){return t.appendChild(p.createComment("")),!t.getElementsByTagName("*").length})),n.getElementsByClassName=Q.test(p.getElementsByClassName),n.getById=ut((function(t){return h.appendChild(t).id=y,!p.getElementsByName||!p.getElementsByName(y).length})),n.getById?(r.filter.ID=function(t){var e=t.replace(et,nt);return function(t){return t.getAttribute("id")===e}},r.find.ID=function(t,e){if(void 0!==e.getElementById&&M){var n=e.getElementById(t);return n?[n]:[]}}):(r.filter.ID=function(t){var e=t.replace(et,nt);return function(t){var n=void 0!==t.getAttributeNode&&t.getAttributeNode("id");return n&&n.value===e}},r.find.ID=function(t,e){if(void 0!==e.getElementById&&M){var n,r,i,o=e.getElementById(t);if(o){if((n=o.getAttributeNode("id"))&&n.value===t)return[o];for(i=e.getElementsByName(t),r=0;o=i[r++];)if((n=o.getAttributeNode("id"))&&n.value===t)return[o]}return[]}}),r.find.TAG=n.getElementsByTagName?function(t,e){return void 0!==e.getElementsByTagName?e.getElementsByTagName(t):n.qsa?e.querySelectorAll(t):void 0}:function(t,e){var n,r=[],i=0,o=e.getElementsByTagName(t);if("*"===t){for(;n=o[i++];)1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(t,e){if(void 0!==e.getElementsByClassName&&M)return e.getElementsByClassName(t)},m=[],b=[],(n.qsa=Q.test(p.querySelectorAll))&&(ut((function(t){var e;h.appendChild(t).innerHTML="",t.querySelectorAll("[msallowcapture^='']").length&&b.push("[*^$]=[\\x20\\t\\r\\n\\f]*(?:''|\"\")"),t.querySelectorAll("[selected]").length||b.push("\\[[\\x20\\t\\r\\n\\f]*(?:value|"+B+")"),t.querySelectorAll("[id~="+y+"-]").length||b.push("~="),(e=p.createElement("input")).setAttribute("name",""),t.appendChild(e),t.querySelectorAll("[name='']").length||b.push("\\[[\\x20\\t\\r\\n\\f]*name[\\x20\\t\\r\\n\\f]*=[\\x20\\t\\r\\n\\f]*(?:''|\"\")"),t.querySelectorAll(":checked").length||b.push(":checked"),t.querySelectorAll("a#"+y+"+*").length||b.push(".#.+[+~]"),t.querySelectorAll("\\\f"),b.push("[\\r\\n\\f]")})),ut((function(t){t.innerHTML="";var e=p.createElement("input");e.setAttribute("type","hidden"),t.appendChild(e).setAttribute("name","D"),t.querySelectorAll("[name=d]").length&&b.push("name[\\x20\\t\\r\\n\\f]*[*^$|!~]?="),2!==t.querySelectorAll(":enabled").length&&b.push(":enabled",":disabled"),h.appendChild(t).disabled=!0,2!==t.querySelectorAll(":disabled").length&&b.push(":enabled",":disabled"),t.querySelectorAll("*,:x"),b.push(",.*:")}))),(n.matchesSelector=Q.test(v=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&&ut((function(t){n.disconnectedMatch=v.call(t,"*"),v.call(t,"[s!='']:x"),m.push("!=",R)})),b=b.length&&new RegExp(b.join("|")),m=m.length&&new RegExp(m.join("|")),e=Q.test(h.compareDocumentPosition),g=e||Q.test(h.contains)?function(t,e){var n=9===t.nodeType?t.documentElement:t,r=e&&e.parentNode;return t===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):t.compareDocumentPosition&&16&t.compareDocumentPosition(r)))}:function(t,e){if(e)for(;e=e.parentNode;)if(e===t)return!0;return!1},N=e?function(t,e){if(t===e)return f=!0,0;var r=!t.compareDocumentPosition-!e.compareDocumentPosition;return r||(1&(r=(t.ownerDocument||t)==(e.ownerDocument||e)?t.compareDocumentPosition(e):1)||!n.sortDetached&&e.compareDocumentPosition(t)===r?t==p||t.ownerDocument==A&&g(A,t)?-1:e==p||e.ownerDocument==A&&g(A,e)?1:u?W(u,t)-W(u,e):0:4&r?-1:1)}:function(t,e){if(t===e)return f=!0,0;var n,r=0,i=t.parentNode,o=e.parentNode,a=[t],c=[e];if(!i||!o)return t==p?-1:e==p?1:i?-1:o?1:u?W(u,t)-W(u,e):0;if(i===o)return dt(t,e);for(n=t;n=n.parentNode;)a.unshift(n);for(n=e;n=n.parentNode;)c.unshift(n);for(;a[r]===c[r];)r++;return r?dt(a[r],c[r]):a[r]==A?-1:c[r]==A?1:0},p):p},ct.matches=function(t,e){return ct(t,null,null,e)},ct.matchesSelector=function(t,e){if(d(t),n.matchesSelector&&M&&!L[e+" "]&&(!m||!m.test(e))&&(!b||!b.test(e)))try{var r=v.call(t,e);if(r||n.disconnectedMatch||t.document&&11!==t.document.nodeType)return r}catch(t){L(e,!0)}return ct(e,p,null,[t]).length>0},ct.contains=function(t,e){return(t.ownerDocument||t)!=p&&d(t),g(t,e)},ct.attr=function(t,e){(t.ownerDocument||t)!=p&&d(t);var i=r.attrHandle[e.toLowerCase()],o=i&&T.call(r.attrHandle,e.toLowerCase())?i(t,e,!M):void 0;return void 0!==o?o:n.attributes||!M?t.getAttribute(e):(o=t.getAttributeNode(e))&&o.specified?o.value:null},ct.escape=function(t){return(t+"").replace(rt,it)},ct.error=function(t){throw new Error("Syntax error, unrecognized expression: "+t)},ct.uniqueSort=function(t){var e,r=[],i=0,o=0;if(f=!n.detectDuplicates,u=!n.sortStable&&t.slice(0),t.sort(N),f){for(;e=t[o++];)e===t[o]&&(i=r.push(o));for(;i--;)t.splice(r[i],1)}return u=null,t},i=ct.getText=function(t){var e,n="",r=0,o=t.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof t.textContent)return t.textContent;for(t=t.firstChild;t;t=t.nextSibling)n+=i(t)}else if(3===o||4===o)return t.nodeValue}else for(;e=t[r++];)n+=i(e);return n},r=ct.selectors={cacheLength:50,createPseudo:lt,match:Y,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(t){return t[1]=t[1].replace(et,nt),t[3]=(t[3]||t[4]||t[5]||"").replace(et,nt),"~="===t[2]&&(t[3]=" "+t[3]+" "),t.slice(0,4)},CHILD:function(t){return t[1]=t[1].toLowerCase(),"nth"===t[1].slice(0,3)?(t[3]||ct.error(t[0]),t[4]=+(t[4]?t[5]+(t[6]||1):2*("even"===t[3]||"odd"===t[3])),t[5]=+(t[7]+t[8]||"odd"===t[3])):t[3]&&ct.error(t[0]),t},PSEUDO:function(t){var e,n=!t[6]&&t[2];return Y.CHILD.test(t[0])?null:(t[3]?t[2]=t[4]||t[5]||"":n&&U.test(n)&&(e=a(n,!0))&&(e=n.indexOf(")",n.length-e)-n.length)&&(t[0]=t[0].slice(0,e),t[2]=n.slice(0,e)),t.slice(0,3))}},filter:{TAG:function(t){var e=t.replace(et,nt).toLowerCase();return"*"===t?function(){return!0}:function(t){return t.nodeName&&t.nodeName.toLowerCase()===e}},CLASS:function(t){var e=O[t+" "];return e||(e=new RegExp("(^|[\\x20\\t\\r\\n\\f])"+t+"("+D+"|$)"))&&O(t,(function(t){return e.test("string"==typeof t.className&&t.className||void 0!==t.getAttribute&&t.getAttribute("class")||"")}))},ATTR:function(t,e,n){return function(r){var i=ct.attr(r,t);return null==i?"!="===e:!e||(i+="","="===e?i===n:"!="===e?i!==n:"^="===e?n&&0===i.indexOf(n):"*="===e?n&&i.indexOf(n)>-1:"$="===e?n&&i.slice(-n.length)===n:"~="===e?(" "+i.replace(j," ")+" ").indexOf(n)>-1:"|="===e&&(i===n||i.slice(0,n.length+1)===n+"-"))}},CHILD:function(t,e,n,r,i){var o="nth"!==t.slice(0,3),a="last"!==t.slice(-4),c="of-type"===e;return 1===r&&0===i?function(t){return!!t.parentNode}:function(e,n,s){var l,u,f,d,p,h,M=o!==a?"nextSibling":"previousSibling",b=e.parentNode,m=c&&e.nodeName.toLowerCase(),v=!s&&!c,g=!1;if(b){if(o){for(;M;){for(d=e;d=d[M];)if(c?d.nodeName.toLowerCase()===m:1===d.nodeType)return!1;h=M="only"===t&&!h&&"nextSibling"}return!0}if(h=[a?b.firstChild:b.lastChild],a&&v){for(g=(p=(l=(u=(f=(d=b)[y]||(d[y]={}))[d.uniqueID]||(f[d.uniqueID]={}))[t]||[])[0]===_&&l[1])&&l[2],d=p&&b.childNodes[p];d=++p&&d&&d[M]||(g=p=0)||h.pop();)if(1===d.nodeType&&++g&&d===e){u[t]=[_,p,g];break}}else if(v&&(g=p=(l=(u=(f=(d=e)[y]||(d[y]={}))[d.uniqueID]||(f[d.uniqueID]={}))[t]||[])[0]===_&&l[1]),!1===g)for(;(d=++p&&d&&d[M]||(g=p=0)||h.pop())&&((c?d.nodeName.toLowerCase()!==m:1!==d.nodeType)||!++g||(v&&((u=(f=d[y]||(d[y]={}))[d.uniqueID]||(f[d.uniqueID]={}))[t]=[_,g]),d!==e)););return(g-=i)===r||g%r==0&&g/r>=0}}},PSEUDO:function(t,e){var n,i=r.pseudos[t]||r.setFilters[t.toLowerCase()]||ct.error("unsupported pseudo: "+t);return i[y]?i(e):i.length>1?(n=[t,t,"",e],r.setFilters.hasOwnProperty(t.toLowerCase())?lt((function(t,n){for(var r,o=i(t,e),a=o.length;a--;)t[r=W(t,o[a])]=!(n[r]=o[a])})):function(t){return i(t,0,n)}):i}},pseudos:{not:lt((function(t){var e=[],n=[],r=c(t.replace(I,"$1"));return r[y]?lt((function(t,e,n,i){for(var o,a=r(t,null,i,[]),c=t.length;c--;)(o=a[c])&&(t[c]=!(e[c]=o))})):function(t,i,o){return e[0]=t,r(e,null,o,n),e[0]=null,!n.pop()}})),has:lt((function(t){return function(e){return ct(t,e).length>0}})),contains:lt((function(t){return t=t.replace(et,nt),function(e){return(e.textContent||i(e)).indexOf(t)>-1}})),lang:lt((function(t){return V.test(t||"")||ct.error("unsupported lang: "+t),t=t.replace(et,nt).toLowerCase(),function(e){var n;do{if(n=M?e.lang:e.getAttribute("xml:lang")||e.getAttribute("lang"))return(n=n.toLowerCase())===t||0===n.indexOf(t+"-")}while((e=e.parentNode)&&1===e.nodeType);return!1}})),target:function(e){var n=t.location&&t.location.hash;return n&&n.slice(1)===e.id},root:function(t){return t===h},focus:function(t){return t===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(t.type||t.href||~t.tabIndex)},enabled:Mt(!1),disabled:Mt(!0),checked:function(t){var e=t.nodeName.toLowerCase();return"input"===e&&!!t.checked||"option"===e&&!!t.selected},selected:function(t){return t.parentNode&&t.parentNode.selectedIndex,!0===t.selected},empty:function(t){for(t=t.firstChild;t;t=t.nextSibling)if(t.nodeType<6)return!1;return!0},parent:function(t){return!r.pseudos.empty(t)},header:function(t){return K.test(t.nodeName)},input:function(t){return J.test(t.nodeName)},button:function(t){var e=t.nodeName.toLowerCase();return"input"===e&&"button"===t.type||"button"===e},text:function(t){var e;return"input"===t.nodeName.toLowerCase()&&"text"===t.type&&(null==(e=t.getAttribute("type"))||"text"===e.toLowerCase())},first:bt((function(){return[0]})),last:bt((function(t,e){return[e-1]})),eq:bt((function(t,e,n){return[n<0?n+e:n]})),even:bt((function(t,e){for(var n=0;ne?e:n;--r>=0;)t.push(r);return t})),gt:bt((function(t,e,n){for(var r=n<0?n+e:n;++r1?function(e,n,r){for(var i=t.length;i--;)if(!t[i](e,n,r))return!1;return!0}:t[0]}function _t(t,e,n,r,i){for(var o,a=[],c=0,s=t.length,l=null!=e;c-1&&(o[l]=!(a[l]=f))}}else m=_t(m===a?m.splice(h,m.length):m),i?i(null,a,m,s):k.apply(a,m)}))}function Ot(t){for(var e,n,i,o=t.length,a=r.relative[t[0].type],c=a||r.relative[" "],s=a?1:0,u=yt((function(t){return t===e}),c,!0),f=yt((function(t){return W(e,t)>-1}),c,!0),d=[function(t,n,r){var i=!a&&(r||n!==l)||((e=n).nodeType?u(t,n,r):f(t,n,r));return e=null,i}];s1&&At(d),s>1&>(t.slice(0,s-1).concat({value:" "===t[s-2].type?"*":""})).replace(I,"$1"),n,s0,i=t.length>0,o=function(o,a,c,s,u){var f,h,b,m=0,v="0",g=o&&[],y=[],A=l,z=o||i&&r.find.TAG("*",u),O=_+=null==A?1:Math.random()||.1,x=z.length;for(u&&(l=a==p||a||u);v!==x&&null!=(f=z[v]);v++){if(i&&f){for(h=0,a||f.ownerDocument==p||(d(f),c=!M);b=t[h++];)if(b(f,a||p,c)){s.push(f);break}u&&(_=O)}n&&((f=!b&&f)&&m--,o&&g.push(f))}if(m+=v,n&&v!==m){for(h=0;b=e[h++];)b(g,y,a,c);if(o){if(m>0)for(;v--;)g[v]||y[v]||(y[v]=q.call(s));y=_t(y)}k.apply(s,y),u&&!o&&y.length>0&&m+e.length>1&&ct.uniqueSort(s)}return u&&(_=O,l=A),g};return n?lt(o):o}(o,i)),c.selector=t}return c},s=ct.select=function(t,e,n,i){var o,s,l,u,f,d="function"==typeof t&&t,p=!i&&a(t=d.selector||t);if(n=n||[],1===p.length){if((s=p[0]=p[0].slice(0)).length>2&&"ID"===(l=s[0]).type&&9===e.nodeType&&M&&r.relative[s[1].type]){if(!(e=(r.find.ID(l.matches[0].replace(et,nt),e)||[])[0]))return n;d&&(e=e.parentNode),t=t.slice(s.shift().value.length)}for(o=Y.needsContext.test(t)?0:s.length;o--&&(l=s[o],!r.relative[u=l.type]);)if((f=r.find[u])&&(i=f(l.matches[0].replace(et,nt),tt.test(s[0].type)&&mt(e.parentNode)||e))){if(s.splice(o,1),!(t=i.length&>(s)))return k.apply(n,i),n;break}}return(d||c(t,p))(i,e,!M,n,!e||tt.test(t)&&mt(e.parentNode)||e),n},n.sortStable=y.split("").sort(N).join("")===y,n.detectDuplicates=!!f,d(),n.sortDetached=ut((function(t){return 1&t.compareDocumentPosition(p.createElement("fieldset"))})),ut((function(t){return t.innerHTML="","#"===t.firstChild.getAttribute("href")}))||ft("type|href|height|width",(function(t,e,n){if(!n)return t.getAttribute(e,"type"===e.toLowerCase()?1:2)})),n.attributes&&ut((function(t){return t.innerHTML="",t.firstChild.setAttribute("value",""),""===t.firstChild.getAttribute("value")}))||ft("value",(function(t,e,n){if(!n&&"input"===t.nodeName.toLowerCase())return t.defaultValue})),ut((function(t){return null==t.getAttribute("disabled")}))||ft(B,(function(t,e,n){var r;if(!n)return!0===t[e]?e.toLowerCase():(r=t.getAttributeNode(e))&&r.specified?r.value:null})),ct}(r);O.find=w,O.expr=w.selectors,O.expr[":"]=O.expr.pseudos,O.uniqueSort=O.unique=w.uniqueSort,O.text=w.getText,O.isXMLDoc=w.isXML,O.contains=w.contains,O.escapeSelector=w.escape;var L=function(t,e,n){for(var r=[],i=void 0!==n;(t=t[e])&&9!==t.nodeType;)if(1===t.nodeType){if(i&&O(t).is(n))break;r.push(t)}return r},N=function(t,e){for(var n=[];t;t=t.nextSibling)1===t.nodeType&&t!==e&&n.push(t);return n},T=O.expr.match.needsContext;function C(t,e){return t.nodeName&&t.nodeName.toLowerCase()===e.toLowerCase()}var q=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function S(t,e,n){return m(e)?O.grep(t,(function(t,r){return!!e.call(t,r,t)!==n})):e.nodeType?O.grep(t,(function(t){return t===e!==n})):"string"!=typeof e?O.grep(t,(function(t){return u.call(e,t)>-1!==n})):O.filter(e,t,n)}O.filter=function(t,e,n){var r=e[0];return n&&(t=":not("+t+")"),1===e.length&&1===r.nodeType?O.find.matchesSelector(r,t)?[r]:[]:O.find.matches(t,O.grep(e,(function(t){return 1===t.nodeType})))},O.fn.extend({find:function(t){var e,n,r=this.length,i=this;if("string"!=typeof t)return this.pushStack(O(t).filter((function(){for(e=0;e1?O.uniqueSort(n):n},filter:function(t){return this.pushStack(S(this,t||[],!1))},not:function(t){return this.pushStack(S(this,t||[],!0))},is:function(t){return!!S(this,"string"==typeof t&&T.test(t)?O(t):t||[],!1).length}});var k,E=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(O.fn.init=function(t,e,n){var r,i;if(!t)return this;if(n=n||k,"string"==typeof t){if(!(r="<"===t[0]&&">"===t[t.length-1]&&t.length>=3?[null,t,null]:E.exec(t))||!r[1]&&e)return!e||e.jquery?(e||n).find(t):this.constructor(e).find(t);if(r[1]){if(e=e instanceof O?e[0]:e,O.merge(this,O.parseHTML(r[1],e&&e.nodeType?e.ownerDocument||e:g,!0)),q.test(r[1])&&O.isPlainObject(e))for(r in e)m(this[r])?this[r](e[r]):this.attr(r,e[r]);return this}return(i=g.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return t.nodeType?(this[0]=t,this.length=1,this):m(t)?void 0!==n.ready?n.ready(t):t(O):O.makeArray(t,this)}).prototype=O.fn,k=O(g);var W=/^(?:parents|prev(?:Until|All))/,B={children:!0,contents:!0,next:!0,prev:!0};function D(t,e){for(;(t=t[e])&&1!==t.nodeType;);return t}O.fn.extend({has:function(t){var e=O(t,this),n=e.length;return this.filter((function(){for(var t=0;t-1:1===n.nodeType&&O.find.matchesSelector(n,t))){o.push(n);break}return this.pushStack(o.length>1?O.uniqueSort(o):o)},index:function(t){return t?"string"==typeof t?u.call(O(t),this[0]):u.call(this,t.jquery?t[0]:t):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(t,e){return this.pushStack(O.uniqueSort(O.merge(this.get(),O(t,e))))},addBack:function(t){return this.add(null==t?this.prevObject:this.prevObject.filter(t))}}),O.each({parent:function(t){var e=t.parentNode;return e&&11!==e.nodeType?e:null},parents:function(t){return L(t,"parentNode")},parentsUntil:function(t,e,n){return L(t,"parentNode",n)},next:function(t){return D(t,"nextSibling")},prev:function(t){return D(t,"previousSibling")},nextAll:function(t){return L(t,"nextSibling")},prevAll:function(t){return L(t,"previousSibling")},nextUntil:function(t,e,n){return L(t,"nextSibling",n)},prevUntil:function(t,e,n){return L(t,"previousSibling",n)},siblings:function(t){return N((t.parentNode||{}).firstChild,t)},children:function(t){return N(t.firstChild)},contents:function(t){return null!=t.contentDocument&&a(t.contentDocument)?t.contentDocument:(C(t,"template")&&(t=t.content||t),O.merge([],t.childNodes))}},(function(t,e){O.fn[t]=function(n,r){var i=O.map(this,e,n);return"Until"!==t.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=O.filter(r,i)),this.length>1&&(B[t]||O.uniqueSort(i),W.test(t)&&i.reverse()),this.pushStack(i)}}));var X=/[^\x20\t\r\n\f]+/g;function P(t){return t}function R(t){throw t}function j(t,e,n,r){var i;try{t&&m(i=t.promise)?i.call(t).done(e).fail(n):t&&m(i=t.then)?i.call(t,e,n):e.apply(void 0,[t].slice(r))}catch(t){n.apply(void 0,[t])}}O.Callbacks=function(t){t="string"==typeof t?function(t){var e={};return O.each(t.match(X)||[],(function(t,n){e[n]=!0})),e}(t):O.extend({},t);var e,n,r,i,o=[],a=[],c=-1,s=function(){for(i=i||t.once,r=e=!0;a.length;c=-1)for(n=a.shift();++c-1;)o.splice(n,1),n<=c&&c--})),this},has:function(t){return t?O.inArray(t,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=a=[],o=n="",this},disabled:function(){return!o},lock:function(){return i=a=[],n||e||(o=n=""),this},locked:function(){return!!i},fireWith:function(t,n){return i||(n=[t,(n=n||[]).slice?n.slice():n],a.push(n),e||s()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!r}};return l},O.extend({Deferred:function(t){var e=[["notify","progress",O.Callbacks("memory"),O.Callbacks("memory"),2],["resolve","done",O.Callbacks("once memory"),O.Callbacks("once memory"),0,"resolved"],["reject","fail",O.Callbacks("once memory"),O.Callbacks("once memory"),1,"rejected"]],n="pending",i={state:function(){return n},always:function(){return o.done(arguments).fail(arguments),this},catch:function(t){return i.then(null,t)},pipe:function(){var t=arguments;return O.Deferred((function(n){O.each(e,(function(e,r){var i=m(t[r[4]])&&t[r[4]];o[r[1]]((function(){var t=i&&i.apply(this,arguments);t&&m(t.promise)?t.promise().progress(n.notify).done(n.resolve).fail(n.reject):n[r[0]+"With"](this,i?[t]:arguments)}))})),t=null})).promise()},then:function(t,n,i){var o=0;function a(t,e,n,i){return function(){var c=this,s=arguments,l=function(){var r,l;if(!(t=o&&(n!==R&&(c=void 0,s=[r]),e.rejectWith(c,s))}};t?u():(O.Deferred.getStackHook&&(u.stackTrace=O.Deferred.getStackHook()),r.setTimeout(u))}}return O.Deferred((function(r){e[0][3].add(a(0,r,m(i)?i:P,r.notifyWith)),e[1][3].add(a(0,r,m(t)?t:P)),e[2][3].add(a(0,r,m(n)?n:R))})).promise()},promise:function(t){return null!=t?O.extend(t,i):i}},o={};return O.each(e,(function(t,r){var a=r[2],c=r[5];i[r[1]]=a.add,c&&a.add((function(){n=c}),e[3-t][2].disable,e[3-t][3].disable,e[0][2].lock,e[0][3].lock),a.add(r[3].fire),o[r[0]]=function(){return o[r[0]+"With"](this===o?void 0:this,arguments),this},o[r[0]+"With"]=a.fireWith})),i.promise(o),t&&t.call(o,o),o},when:function(t){var e=arguments.length,n=e,r=Array(n),i=c.call(arguments),o=O.Deferred(),a=function(t){return function(n){r[t]=this,i[t]=arguments.length>1?c.call(arguments):n,--e||o.resolveWith(r,i)}};if(e<=1&&(j(t,o.done(a(n)).resolve,o.reject,!e),"pending"===o.state()||m(i[n]&&i[n].then)))return o.then();for(;n--;)j(i[n],a(n),o.reject);return o.promise()}});var I=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;O.Deferred.exceptionHook=function(t,e){r.console&&r.console.warn&&t&&I.test(t.name)&&r.console.warn("jQuery.Deferred exception: "+t.message,t.stack,e)},O.readyException=function(t){r.setTimeout((function(){throw t}))};var F=O.Deferred();function H(){g.removeEventListener("DOMContentLoaded",H),r.removeEventListener("load",H),O.ready()}O.fn.ready=function(t){return F.then(t).catch((function(t){O.readyException(t)})),this},O.extend({isReady:!1,readyWait:1,ready:function(t){(!0===t?--O.readyWait:O.isReady)||(O.isReady=!0,!0!==t&&--O.readyWait>0||F.resolveWith(g,[O]))}}),O.ready.then=F.then,"complete"===g.readyState||"loading"!==g.readyState&&!g.documentElement.doScroll?r.setTimeout(O.ready):(g.addEventListener("DOMContentLoaded",H),r.addEventListener("load",H));var $=function(t,e,n,r,i,o,a){var c=0,s=t.length,l=null==n;if("object"===_(n))for(c in i=!0,n)$(t,e,c,n[c],!0,o,a);else if(void 0!==r&&(i=!0,m(r)||(a=!0),l&&(a?(e.call(t,r),e=null):(l=e,e=function(t,e,n){return l.call(O(t),n)})),e))for(;c1,null,!0)},removeData:function(t){return this.each((function(){Z.remove(this,t)}))}}),O.extend({queue:function(t,e,n){var r;if(t)return e=(e||"fx")+"queue",r=Q.get(t,e),n&&(!r||Array.isArray(n)?r=Q.access(t,e,O.makeArray(n)):r.push(n)),r||[]},dequeue:function(t,e){e=e||"fx";var n=O.queue(t,e),r=n.length,i=n.shift(),o=O._queueHooks(t,e);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===e&&n.unshift("inprogress"),delete o.stop,i.call(t,(function(){O.dequeue(t,e)}),o)),!r&&o&&o.empty.fire()},_queueHooks:function(t,e){var n=e+"queueHooks";return Q.get(t,n)||Q.access(t,n,{empty:O.Callbacks("once memory").add((function(){Q.remove(t,[e+"queue",n])}))})}}),O.fn.extend({queue:function(t,e){var n=2;return"string"!=typeof t&&(e=t,t="fx",n--),arguments.length\x20\t\r\n\f]*)/i,vt=/^$|^module$|\/(?:java|ecma)script/i;ht=g.createDocumentFragment().appendChild(g.createElement("div")),(Mt=g.createElement("input")).setAttribute("type","radio"),Mt.setAttribute("checked","checked"),Mt.setAttribute("name","t"),ht.appendChild(Mt),b.checkClone=ht.cloneNode(!0).cloneNode(!0).lastChild.checked,ht.innerHTML="",b.noCloneChecked=!!ht.cloneNode(!0).lastChild.defaultValue,ht.innerHTML="",b.option=!!ht.lastChild;var gt={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function yt(t,e){var n;return n=void 0!==t.getElementsByTagName?t.getElementsByTagName(e||"*"):void 0!==t.querySelectorAll?t.querySelectorAll(e||"*"):[],void 0===e||e&&C(t,e)?O.merge([t],n):n}function At(t,e){for(var n=0,r=t.length;n",""]);var _t=/<|&#?\w+;/;function zt(t,e,n,r,i){for(var o,a,c,s,l,u,f=e.createDocumentFragment(),d=[],p=0,h=t.length;p-1)i&&i.push(o);else if(l=ct(o),a=yt(f.appendChild(o),"script"),l&&At(a),n)for(u=0;o=a[u++];)vt.test(o.type||"")&&n.push(o);return f}var Ot=/^([^.]*)(?:\.(.+)|)/;function xt(){return!0}function wt(){return!1}function Lt(t,e){return t===function(){try{return g.activeElement}catch(t){}}()==("focus"===e)}function Nt(t,e,n,r,i,o){var a,c;if("object"==typeof e){for(c in"string"!=typeof n&&(r=r||n,n=void 0),e)Nt(t,c,n,r,e[c],o);return t}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=wt;else if(!i)return t;return 1===o&&(a=i,i=function(t){return O().off(t),a.apply(this,arguments)},i.guid=a.guid||(a.guid=O.guid++)),t.each((function(){O.event.add(this,e,i,r,n)}))}function Tt(t,e,n){n?(Q.set(t,e,!1),O.event.add(t,e,{namespace:!1,handler:function(t){var r,i,o=Q.get(this,e);if(1&t.isTrigger&&this[e]){if(o.length)(O.event.special[e]||{}).delegateType&&t.stopPropagation();else if(o=c.call(arguments),Q.set(this,e,o),r=n(this,e),this[e](),o!==(i=Q.get(this,e))||r?Q.set(this,e,!1):i={},o!==i)return t.stopImmediatePropagation(),t.preventDefault(),i&&i.value}else o.length&&(Q.set(this,e,{value:O.event.trigger(O.extend(o[0],O.Event.prototype),o.slice(1),this)}),t.stopImmediatePropagation())}})):void 0===Q.get(t,e)&&O.event.add(t,e,xt)}O.event={global:{},add:function(t,e,n,r,i){var o,a,c,s,l,u,f,d,p,h,M,b=Q.get(t);if(J(t))for(n.handler&&(n=(o=n).handler,i=o.selector),i&&O.find.matchesSelector(at,i),n.guid||(n.guid=O.guid++),(s=b.events)||(s=b.events=Object.create(null)),(a=b.handle)||(a=b.handle=function(e){return void 0!==O&&O.event.triggered!==e.type?O.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(X)||[""]).length;l--;)p=M=(c=Ot.exec(e[l])||[])[1],h=(c[2]||"").split(".").sort(),p&&(f=O.event.special[p]||{},p=(i?f.delegateType:f.bindType)||p,f=O.event.special[p]||{},u=O.extend({type:p,origType:M,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&O.expr.match.needsContext.test(i),namespace:h.join(".")},o),(d=s[p])||((d=s[p]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(p,a)),f.add&&(f.add.call(t,u),u.handler.guid||(u.handler.guid=n.guid)),i?d.splice(d.delegateCount++,0,u):d.push(u),O.event.global[p]=!0)},remove:function(t,e,n,r,i){var o,a,c,s,l,u,f,d,p,h,M,b=Q.hasData(t)&&Q.get(t);if(b&&(s=b.events)){for(l=(e=(e||"").match(X)||[""]).length;l--;)if(p=M=(c=Ot.exec(e[l])||[])[1],h=(c[2]||"").split(".").sort(),p){for(f=O.event.special[p]||{},d=s[p=(r?f.delegateType:f.bindType)||p]||[],c=c[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=d.length;o--;)u=d[o],!i&&M!==u.origType||n&&n.guid!==u.guid||c&&!c.test(u.namespace)||r&&r!==u.selector&&("**"!==r||!u.selector)||(d.splice(o,1),u.selector&&d.delegateCount--,f.remove&&f.remove.call(t,u));a&&!d.length&&(f.teardown&&!1!==f.teardown.call(t,h,b.handle)||O.removeEvent(t,p,b.handle),delete s[p])}else for(p in s)O.event.remove(t,p+e[l],n,r,!0);O.isEmptyObject(s)&&Q.remove(t,"handle events")}},dispatch:function(t){var e,n,r,i,o,a,c=new Array(arguments.length),s=O.event.fix(t),l=(Q.get(this,"events")||Object.create(null))[s.type]||[],u=O.event.special[s.type]||{};for(c[0]=s,e=1;e=1))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==t.type||!0!==l.disabled)){for(o=[],a={},n=0;n-1:O.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&c.push({elem:l,handlers:o})}return l=this,s\s*$/g;function kt(t,e){return C(t,"table")&&C(11!==e.nodeType?e:e.firstChild,"tr")&&O(t).children("tbody")[0]||t}function Et(t){return t.type=(null!==t.getAttribute("type"))+"/"+t.type,t}function Wt(t){return"true/"===(t.type||"").slice(0,5)?t.type=t.type.slice(5):t.removeAttribute("type"),t}function Bt(t,e){var n,r,i,o,a,c;if(1===e.nodeType){if(Q.hasData(t)&&(c=Q.get(t).events))for(i in Q.remove(e,"handle events"),c)for(n=0,r=c[i].length;n1&&"string"==typeof h&&!b.checkClone&&qt.test(h))return t.each((function(i){var o=t.eq(i);M&&(e[0]=h.call(this,i,o.html())),Xt(o,e,n,r)}));if(d&&(o=(i=zt(e,t[0].ownerDocument,!1,t,r)).firstChild,1===i.childNodes.length&&(i=o),o||r)){for(c=(a=O.map(yt(i,"script"),Et)).length;f0&&At(a,!s&&yt(t,"script")),c},cleanData:function(t){for(var e,n,r,i=O.event.special,o=0;void 0!==(n=t[o]);o++)if(J(n)){if(e=n[Q.expando]){if(e.events)for(r in e.events)i[r]?O.event.remove(n,r):O.removeEvent(n,r,e.handle);n[Q.expando]=void 0}n[Z.expando]&&(n[Z.expando]=void 0)}}}),O.fn.extend({detach:function(t){return Pt(this,t,!0)},remove:function(t){return Pt(this,t)},text:function(t){return $(this,(function(t){return void 0===t?O.text(this):this.empty().each((function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=t)}))}),null,t,arguments.length)},append:function(){return Xt(this,arguments,(function(t){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||kt(this,t).appendChild(t)}))},prepend:function(){return Xt(this,arguments,(function(t){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var e=kt(this,t);e.insertBefore(t,e.firstChild)}}))},before:function(){return Xt(this,arguments,(function(t){this.parentNode&&this.parentNode.insertBefore(t,this)}))},after:function(){return Xt(this,arguments,(function(t){this.parentNode&&this.parentNode.insertBefore(t,this.nextSibling)}))},empty:function(){for(var t,e=0;null!=(t=this[e]);e++)1===t.nodeType&&(O.cleanData(yt(t,!1)),t.textContent="");return this},clone:function(t,e){return t=null!=t&&t,e=null==e?t:e,this.map((function(){return O.clone(this,t,e)}))},html:function(t){return $(this,(function(t){var e=this[0]||{},n=0,r=this.length;if(void 0===t&&1===e.nodeType)return e.innerHTML;if("string"==typeof t&&!Ct.test(t)&&!gt[(mt.exec(t)||["",""])[1].toLowerCase()]){t=O.htmlPrefilter(t);try{for(;n=0&&(s+=Math.max(0,Math.ceil(t["offset"+e[0].toUpperCase()+e.slice(1)]-o-s-c-.5))||0),s}function ne(t,e,n){var r=jt(t),i=(!b.boxSizingReliable()||n)&&"border-box"===O.css(t,"boxSizing",!1,r),o=i,a=Ht(t,e,r),c="offset"+e[0].toUpperCase()+e.slice(1);if(Rt.test(a)){if(!n)return a;a="auto"}return(!b.boxSizingReliable()&&i||!b.reliableTrDimensions()&&C(t,"tr")||"auto"===a||!parseFloat(a)&&"inline"===O.css(t,"display",!1,r))&&t.getClientRects().length&&(i="border-box"===O.css(t,"boxSizing",!1,r),(o=c in t)&&(a=t[c])),(a=parseFloat(a)||0)+ee(t,e,n||(i?"border":"content"),o,r,a)+"px"}function re(t,e,n,r,i){return new re.prototype.init(t,e,n,r,i)}O.extend({cssHooks:{opacity:{get:function(t,e){if(e){var n=Ht(t,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(t,e,n,r){if(t&&3!==t.nodeType&&8!==t.nodeType&&t.style){var i,o,a,c=G(e),s=Kt.test(e),l=t.style;if(s||(e=Gt(c)),a=O.cssHooks[e]||O.cssHooks[c],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(t,!1,r))?i:l[e];"string"===(o=typeof n)&&(i=it.exec(n))&&i[1]&&(n=ut(t,e,i),o="number"),null!=n&&n==n&&("number"!==o||s||(n+=i&&i[3]||(O.cssNumber[c]?"":"px")),b.clearCloneStyle||""!==n||0!==e.indexOf("background")||(l[e]="inherit"),a&&"set"in a&&void 0===(n=a.set(t,n,r))||(s?l.setProperty(e,n):l[e]=n))}},css:function(t,e,n,r){var i,o,a,c=G(e);return Kt.test(e)||(e=Gt(c)),(a=O.cssHooks[e]||O.cssHooks[c])&&"get"in a&&(i=a.get(t,!0,n)),void 0===i&&(i=Ht(t,e,r)),"normal"===i&&e in Zt&&(i=Zt[e]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),O.each(["height","width"],(function(t,e){O.cssHooks[e]={get:function(t,n,r){if(n)return!Jt.test(O.css(t,"display"))||t.getClientRects().length&&t.getBoundingClientRect().width?ne(t,e,r):It(t,Qt,(function(){return ne(t,e,r)}))},set:function(t,n,r){var i,o=jt(t),a=!b.scrollboxSize()&&"absolute"===o.position,c=(a||r)&&"border-box"===O.css(t,"boxSizing",!1,o),s=r?ee(t,e,r,c,o):0;return c&&a&&(s-=Math.ceil(t["offset"+e[0].toUpperCase()+e.slice(1)]-parseFloat(o[e])-ee(t,e,"border",!1,o)-.5)),s&&(i=it.exec(n))&&"px"!==(i[3]||"px")&&(t.style[e]=n,n=O.css(t,e)),te(0,n,s)}}})),O.cssHooks.marginLeft=$t(b.reliableMarginLeft,(function(t,e){if(e)return(parseFloat(Ht(t,"marginLeft"))||t.getBoundingClientRect().left-It(t,{marginLeft:0},(function(){return t.getBoundingClientRect().left})))+"px"})),O.each({margin:"",padding:"",border:"Width"},(function(t,e){O.cssHooks[t+e]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];r<4;r++)i[t+ot[r]+e]=o[r]||o[r-2]||o[0];return i}},"margin"!==t&&(O.cssHooks[t+e].set=te)})),O.fn.extend({css:function(t,e){return $(this,(function(t,e,n){var r,i,o={},a=0;if(Array.isArray(e)){for(r=jt(t),i=e.length;a1)}}),O.Tween=re,re.prototype={constructor:re,init:function(t,e,n,r,i,o){this.elem=t,this.prop=n,this.easing=i||O.easing._default,this.options=e,this.start=this.now=this.cur(),this.end=r,this.unit=o||(O.cssNumber[n]?"":"px")},cur:function(){var t=re.propHooks[this.prop];return t&&t.get?t.get(this):re.propHooks._default.get(this)},run:function(t){var e,n=re.propHooks[this.prop];return this.options.duration?this.pos=e=O.easing[this.easing](t,this.options.duration*t,0,1,this.options.duration):this.pos=e=t,this.now=(this.end-this.start)*e+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):re.propHooks._default.set(this),this}},re.prototype.init.prototype=re.prototype,re.propHooks={_default:{get:function(t){var e;return 1!==t.elem.nodeType||null!=t.elem[t.prop]&&null==t.elem.style[t.prop]?t.elem[t.prop]:(e=O.css(t.elem,t.prop,""))&&"auto"!==e?e:0},set:function(t){O.fx.step[t.prop]?O.fx.step[t.prop](t):1!==t.elem.nodeType||!O.cssHooks[t.prop]&&null==t.elem.style[Gt(t.prop)]?t.elem[t.prop]=t.now:O.style(t.elem,t.prop,t.now+t.unit)}}},re.propHooks.scrollTop=re.propHooks.scrollLeft={set:function(t){t.elem.nodeType&&t.elem.parentNode&&(t.elem[t.prop]=t.now)}},O.easing={linear:function(t){return t},swing:function(t){return.5-Math.cos(t*Math.PI)/2},_default:"swing"},O.fx=re.prototype.init,O.fx.step={};var ie,oe,ae=/^(?:toggle|show|hide)$/,ce=/queueHooks$/;function se(){oe&&(!1===g.hidden&&r.requestAnimationFrame?r.requestAnimationFrame(se):r.setTimeout(se,O.fx.interval),O.fx.tick())}function le(){return r.setTimeout((function(){ie=void 0})),ie=Date.now()}function ue(t,e){var n,r=0,i={height:t};for(e=e?1:0;r<4;r+=2-e)i["margin"+(n=ot[r])]=i["padding"+n]=t;return e&&(i.opacity=i.width=t),i}function fe(t,e,n){for(var r,i=(de.tweeners[e]||[]).concat(de.tweeners["*"]),o=0,a=i.length;o1)},removeAttr:function(t){return this.each((function(){O.removeAttr(this,t)}))}}),O.extend({attr:function(t,e,n){var r,i,o=t.nodeType;if(3!==o&&8!==o&&2!==o)return void 0===t.getAttribute?O.prop(t,e,n):(1===o&&O.isXMLDoc(t)||(i=O.attrHooks[e.toLowerCase()]||(O.expr.match.bool.test(e)?pe:void 0)),void 0!==n?null===n?void O.removeAttr(t,e):i&&"set"in i&&void 0!==(r=i.set(t,n,e))?r:(t.setAttribute(e,n+""),n):i&&"get"in i&&null!==(r=i.get(t,e))?r:null==(r=O.find.attr(t,e))?void 0:r)},attrHooks:{type:{set:function(t,e){if(!b.radioValue&&"radio"===e&&C(t,"input")){var n=t.value;return t.setAttribute("type",e),n&&(t.value=n),e}}}},removeAttr:function(t,e){var n,r=0,i=e&&e.match(X);if(i&&1===t.nodeType)for(;n=i[r++];)t.removeAttribute(n)}}),pe={set:function(t,e,n){return!1===e?O.removeAttr(t,n):t.setAttribute(n,n),n}},O.each(O.expr.match.bool.source.match(/\w+/g),(function(t,e){var n=he[e]||O.find.attr;he[e]=function(t,e,r){var i,o,a=e.toLowerCase();return r||(o=he[a],he[a]=i,i=null!=n(t,e,r)?a:null,he[a]=o),i}}));var Me=/^(?:input|select|textarea|button)$/i,be=/^(?:a|area)$/i;function me(t){return(t.match(X)||[]).join(" ")}function ve(t){return t.getAttribute&&t.getAttribute("class")||""}function ge(t){return Array.isArray(t)?t:"string"==typeof t&&t.match(X)||[]}O.fn.extend({prop:function(t,e){return $(this,O.prop,t,e,arguments.length>1)},removeProp:function(t){return this.each((function(){delete this[O.propFix[t]||t]}))}}),O.extend({prop:function(t,e,n){var r,i,o=t.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&O.isXMLDoc(t)||(e=O.propFix[e]||e,i=O.propHooks[e]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(t,n,e))?r:t[e]=n:i&&"get"in i&&null!==(r=i.get(t,e))?r:t[e]},propHooks:{tabIndex:{get:function(t){var e=O.find.attr(t,"tabindex");return e?parseInt(e,10):Me.test(t.nodeName)||be.test(t.nodeName)&&t.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),b.optSelected||(O.propHooks.selected={get:function(t){var e=t.parentNode;return e&&e.parentNode&&e.parentNode.selectedIndex,null},set:function(t){var e=t.parentNode;e&&(e.selectedIndex,e.parentNode&&e.parentNode.selectedIndex)}}),O.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],(function(){O.propFix[this.toLowerCase()]=this})),O.fn.extend({addClass:function(t){var e,n,r,i,o,a,c,s=0;if(m(t))return this.each((function(e){O(this).addClass(t.call(this,e,ve(this)))}));if((e=ge(t)).length)for(;n=this[s++];)if(i=ve(n),r=1===n.nodeType&&" "+me(i)+" "){for(a=0;o=e[a++];)r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(c=me(r))&&n.setAttribute("class",c)}return this},removeClass:function(t){var e,n,r,i,o,a,c,s=0;if(m(t))return this.each((function(e){O(this).removeClass(t.call(this,e,ve(this)))}));if(!arguments.length)return this.attr("class","");if((e=ge(t)).length)for(;n=this[s++];)if(i=ve(n),r=1===n.nodeType&&" "+me(i)+" "){for(a=0;o=e[a++];)for(;r.indexOf(" "+o+" ")>-1;)r=r.replace(" "+o+" "," ");i!==(c=me(r))&&n.setAttribute("class",c)}return this},toggleClass:function(t,e){var n=typeof t,r="string"===n||Array.isArray(t);return"boolean"==typeof e&&r?e?this.addClass(t):this.removeClass(t):m(t)?this.each((function(n){O(this).toggleClass(t.call(this,n,ve(this),e),e)})):this.each((function(){var e,i,o,a;if(r)for(i=0,o=O(this),a=ge(t);e=a[i++];)o.hasClass(e)?o.removeClass(e):o.addClass(e);else void 0!==t&&"boolean"!==n||((e=ve(this))&&Q.set(this,"__className__",e),this.setAttribute&&this.setAttribute("class",e||!1===t?"":Q.get(this,"__className__")||""))}))},hasClass:function(t){var e,n,r=0;for(e=" "+t+" ";n=this[r++];)if(1===n.nodeType&&(" "+me(ve(n))+" ").indexOf(e)>-1)return!0;return!1}});var ye=/\r/g;O.fn.extend({val:function(t){var e,n,r,i=this[0];return arguments.length?(r=m(t),this.each((function(n){var i;1===this.nodeType&&(null==(i=r?t.call(this,n,O(this).val()):t)?i="":"number"==typeof i?i+="":Array.isArray(i)&&(i=O.map(i,(function(t){return null==t?"":t+""}))),(e=O.valHooks[this.type]||O.valHooks[this.nodeName.toLowerCase()])&&"set"in e&&void 0!==e.set(this,i,"value")||(this.value=i))}))):i?(e=O.valHooks[i.type]||O.valHooks[i.nodeName.toLowerCase()])&&"get"in e&&void 0!==(n=e.get(i,"value"))?n:"string"==typeof(n=i.value)?n.replace(ye,""):null==n?"":n:void 0}}),O.extend({valHooks:{option:{get:function(t){var e=O.find.attr(t,"value");return null!=e?e:me(O.text(t))}},select:{get:function(t){var e,n,r,i=t.options,o=t.selectedIndex,a="select-one"===t.type,c=a?null:[],s=a?o+1:i.length;for(r=o<0?s:a?o:0;r-1)&&(n=!0);return n||(t.selectedIndex=-1),o}}}}),O.each(["radio","checkbox"],(function(){O.valHooks[this]={set:function(t,e){if(Array.isArray(e))return t.checked=O.inArray(O(t).val(),e)>-1}},b.checkOn||(O.valHooks[this].get=function(t){return null===t.getAttribute("value")?"on":t.value})})),b.focusin="onfocusin"in r;var Ae=/^(?:focusinfocus|focusoutblur)$/,_e=function(t){t.stopPropagation()};O.extend(O.event,{trigger:function(t,e,n,i){var o,a,c,s,l,u,f,d,h=[n||g],M=p.call(t,"type")?t.type:t,b=p.call(t,"namespace")?t.namespace.split("."):[];if(a=d=c=n=n||g,3!==n.nodeType&&8!==n.nodeType&&!Ae.test(M+O.event.triggered)&&(M.indexOf(".")>-1&&(b=M.split("."),M=b.shift(),b.sort()),l=M.indexOf(":")<0&&"on"+M,(t=t[O.expando]?t:new O.Event(M,"object"==typeof t&&t)).isTrigger=i?2:3,t.namespace=b.join("."),t.rnamespace=t.namespace?new RegExp("(^|\\.)"+b.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=void 0,t.target||(t.target=n),e=null==e?[t]:O.makeArray(e,[t]),f=O.event.special[M]||{},i||!f.trigger||!1!==f.trigger.apply(n,e))){if(!i&&!f.noBubble&&!v(n)){for(s=f.delegateType||M,Ae.test(s+M)||(a=a.parentNode);a;a=a.parentNode)h.push(a),c=a;c===(n.ownerDocument||g)&&h.push(c.defaultView||c.parentWindow||r)}for(o=0;(a=h[o++])&&!t.isPropagationStopped();)d=a,t.type=o>1?s:f.bindType||M,(u=(Q.get(a,"events")||Object.create(null))[t.type]&&Q.get(a,"handle"))&&u.apply(a,e),(u=l&&a[l])&&u.apply&&J(a)&&(t.result=u.apply(a,e),!1===t.result&&t.preventDefault());return t.type=M,i||t.isDefaultPrevented()||f._default&&!1!==f._default.apply(h.pop(),e)||!J(n)||l&&m(n[M])&&!v(n)&&((c=n[l])&&(n[l]=null),O.event.triggered=M,t.isPropagationStopped()&&d.addEventListener(M,_e),n[M](),t.isPropagationStopped()&&d.removeEventListener(M,_e),O.event.triggered=void 0,c&&(n[l]=c)),t.result}},simulate:function(t,e,n){var r=O.extend(new O.Event,n,{type:t,isSimulated:!0});O.event.trigger(r,null,e)}}),O.fn.extend({trigger:function(t,e){return this.each((function(){O.event.trigger(t,e,this)}))},triggerHandler:function(t,e){var n=this[0];if(n)return O.event.trigger(t,e,n,!0)}}),b.focusin||O.each({focus:"focusin",blur:"focusout"},(function(t,e){var n=function(t){O.event.simulate(e,t.target,O.event.fix(t))};O.event.special[e]={setup:function(){var r=this.ownerDocument||this.document||this,i=Q.access(r,e);i||r.addEventListener(t,n,!0),Q.access(r,e,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this.document||this,i=Q.access(r,e)-1;i?Q.access(r,e,i):(r.removeEventListener(t,n,!0),Q.remove(r,e))}}}));var ze=r.location,Oe={guid:Date.now()},xe=/\?/;O.parseXML=function(t){var e,n;if(!t||"string"!=typeof t)return null;try{e=(new r.DOMParser).parseFromString(t,"text/xml")}catch(t){}return n=e&&e.getElementsByTagName("parsererror")[0],e&&!n||O.error("Invalid XML: "+(n?O.map(n.childNodes,(function(t){return t.textContent})).join("\n"):t)),e};var we=/\[\]$/,Le=/\r?\n/g,Ne=/^(?:submit|button|image|reset|file)$/i,Te=/^(?:input|select|textarea|keygen)/i;function Ce(t,e,n,r){var i;if(Array.isArray(e))O.each(e,(function(e,i){n||we.test(t)?r(t,i):Ce(t+"["+("object"==typeof i&&null!=i?e:"")+"]",i,n,r)}));else if(n||"object"!==_(e))r(t,e);else for(i in e)Ce(t+"["+i+"]",e[i],n,r)}O.param=function(t,e){var n,r=[],i=function(t,e){var n=m(e)?e():e;r[r.length]=encodeURIComponent(t)+"="+encodeURIComponent(null==n?"":n)};if(null==t)return"";if(Array.isArray(t)||t.jquery&&!O.isPlainObject(t))O.each(t,(function(){i(this.name,this.value)}));else for(n in t)Ce(n,t[n],e,i);return r.join("&")},O.fn.extend({serialize:function(){return O.param(this.serializeArray())},serializeArray:function(){return this.map((function(){var t=O.prop(this,"elements");return t?O.makeArray(t):this})).filter((function(){var t=this.type;return this.name&&!O(this).is(":disabled")&&Te.test(this.nodeName)&&!Ne.test(t)&&(this.checked||!bt.test(t))})).map((function(t,e){var n=O(this).val();return null==n?null:Array.isArray(n)?O.map(n,(function(t){return{name:e.name,value:t.replace(Le,"\r\n")}})):{name:e.name,value:n.replace(Le,"\r\n")}})).get()}});var qe=/%20/g,Se=/#.*$/,ke=/([?&])_=[^&]*/,Ee=/^(.*?):[ \t]*([^\r\n]*)$/gm,We=/^(?:GET|HEAD)$/,Be=/^\/\//,De={},Xe={},Pe="*/".concat("*"),Re=g.createElement("a");function je(t){return function(e,n){"string"!=typeof e&&(n=e,e="*");var r,i=0,o=e.toLowerCase().match(X)||[];if(m(n))for(;r=o[i++];)"+"===r[0]?(r=r.slice(1)||"*",(t[r]=t[r]||[]).unshift(n)):(t[r]=t[r]||[]).push(n)}}function Ie(t,e,n,r){var i={},o=t===Xe;function a(c){var s;return i[c]=!0,O.each(t[c]||[],(function(t,c){var l=c(e,n,r);return"string"!=typeof l||o||i[l]?o?!(s=l):void 0:(e.dataTypes.unshift(l),a(l),!1)})),s}return a(e.dataTypes[0])||!i["*"]&&a("*")}function Fe(t,e){var n,r,i=O.ajaxSettings.flatOptions||{};for(n in e)void 0!==e[n]&&((i[n]?t:r||(r={}))[n]=e[n]);return r&&O.extend(!0,t,r),t}Re.href=ze.href,O.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:ze.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(ze.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Pe,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":O.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(t,e){return e?Fe(Fe(t,O.ajaxSettings),e):Fe(O.ajaxSettings,t)},ajaxPrefilter:je(De),ajaxTransport:je(Xe),ajax:function(t,e){"object"==typeof t&&(e=t,t=void 0),e=e||{};var n,i,o,a,c,s,l,u,f,d,p=O.ajaxSetup({},e),h=p.context||p,M=p.context&&(h.nodeType||h.jquery)?O(h):O.event,b=O.Deferred(),m=O.Callbacks("once memory"),v=p.statusCode||{},y={},A={},_="canceled",z={readyState:0,getResponseHeader:function(t){var e;if(l){if(!a)for(a={};e=Ee.exec(o);)a[e[1].toLowerCase()+" "]=(a[e[1].toLowerCase()+" "]||[]).concat(e[2]);e=a[t.toLowerCase()+" "]}return null==e?null:e.join(", ")},getAllResponseHeaders:function(){return l?o:null},setRequestHeader:function(t,e){return null==l&&(t=A[t.toLowerCase()]=A[t.toLowerCase()]||t,y[t]=e),this},overrideMimeType:function(t){return null==l&&(p.mimeType=t),this},statusCode:function(t){var e;if(t)if(l)z.always(t[z.status]);else for(e in t)v[e]=[v[e],t[e]];return this},abort:function(t){var e=t||_;return n&&n.abort(e),x(0,e),this}};if(b.promise(z),p.url=((t||p.url||ze.href)+"").replace(Be,ze.protocol+"//"),p.type=e.method||e.type||p.method||p.type,p.dataTypes=(p.dataType||"*").toLowerCase().match(X)||[""],null==p.crossDomain){s=g.createElement("a");try{s.href=p.url,s.href=s.href,p.crossDomain=Re.protocol+"//"+Re.host!=s.protocol+"//"+s.host}catch(t){p.crossDomain=!0}}if(p.data&&p.processData&&"string"!=typeof p.data&&(p.data=O.param(p.data,p.traditional)),Ie(De,p,e,z),l)return z;for(f in(u=O.event&&p.global)&&0==O.active++&&O.event.trigger("ajaxStart"),p.type=p.type.toUpperCase(),p.hasContent=!We.test(p.type),i=p.url.replace(Se,""),p.hasContent?p.data&&p.processData&&0===(p.contentType||"").indexOf("application/x-www-form-urlencoded")&&(p.data=p.data.replace(qe,"+")):(d=p.url.slice(i.length),p.data&&(p.processData||"string"==typeof p.data)&&(i+=(xe.test(i)?"&":"?")+p.data,delete p.data),!1===p.cache&&(i=i.replace(ke,"$1"),d=(xe.test(i)?"&":"?")+"_="+Oe.guid+++d),p.url=i+d),p.ifModified&&(O.lastModified[i]&&z.setRequestHeader("If-Modified-Since",O.lastModified[i]),O.etag[i]&&z.setRequestHeader("If-None-Match",O.etag[i])),(p.data&&p.hasContent&&!1!==p.contentType||e.contentType)&&z.setRequestHeader("Content-Type",p.contentType),z.setRequestHeader("Accept",p.dataTypes[0]&&p.accepts[p.dataTypes[0]]?p.accepts[p.dataTypes[0]]+("*"!==p.dataTypes[0]?", "+Pe+"; q=0.01":""):p.accepts["*"]),p.headers)z.setRequestHeader(f,p.headers[f]);if(p.beforeSend&&(!1===p.beforeSend.call(h,z,p)||l))return z.abort();if(_="abort",m.add(p.complete),z.done(p.success),z.fail(p.error),n=Ie(Xe,p,e,z)){if(z.readyState=1,u&&M.trigger("ajaxSend",[z,p]),l)return z;p.async&&p.timeout>0&&(c=r.setTimeout((function(){z.abort("timeout")}),p.timeout));try{l=!1,n.send(y,x)}catch(t){if(l)throw t;x(-1,t)}}else x(-1,"No Transport");function x(t,e,a,s){var f,d,g,y,A,_=e;l||(l=!0,c&&r.clearTimeout(c),n=void 0,o=s||"",z.readyState=t>0?4:0,f=t>=200&&t<300||304===t,a&&(y=function(t,e,n){for(var r,i,o,a,c=t.contents,s=t.dataTypes;"*"===s[0];)s.shift(),void 0===r&&(r=t.mimeType||e.getResponseHeader("Content-Type"));if(r)for(i in c)if(c[i]&&c[i].test(r)){s.unshift(i);break}if(s[0]in n)o=s[0];else{for(i in n){if(!s[0]||t.converters[i+" "+s[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==s[0]&&s.unshift(o),n[o]}(p,z,a)),!f&&O.inArray("script",p.dataTypes)>-1&&O.inArray("json",p.dataTypes)<0&&(p.converters["text script"]=function(){}),y=function(t,e,n,r){var i,o,a,c,s,l={},u=t.dataTypes.slice();if(u[1])for(a in t.converters)l[a.toLowerCase()]=t.converters[a];for(o=u.shift();o;)if(t.responseFields[o]&&(n[t.responseFields[o]]=e),!s&&r&&t.dataFilter&&(e=t.dataFilter(e,t.dataType)),s=o,o=u.shift())if("*"===o)o=s;else if("*"!==s&&s!==o){if(!(a=l[s+" "+o]||l["* "+o]))for(i in l)if((c=i.split(" "))[1]===o&&(a=l[s+" "+c[0]]||l["* "+c[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=c[0],u.unshift(c[1]));break}if(!0!==a)if(a&&t.throws)e=a(e);else try{e=a(e)}catch(t){return{state:"parsererror",error:a?t:"No conversion from "+s+" to "+o}}}return{state:"success",data:e}}(p,y,z,f),f?(p.ifModified&&((A=z.getResponseHeader("Last-Modified"))&&(O.lastModified[i]=A),(A=z.getResponseHeader("etag"))&&(O.etag[i]=A)),204===t||"HEAD"===p.type?_="nocontent":304===t?_="notmodified":(_=y.state,d=y.data,f=!(g=y.error))):(g=_,!t&&_||(_="error",t<0&&(t=0))),z.status=t,z.statusText=(e||_)+"",f?b.resolveWith(h,[d,_,z]):b.rejectWith(h,[z,_,g]),z.statusCode(v),v=void 0,u&&M.trigger(f?"ajaxSuccess":"ajaxError",[z,p,f?d:g]),m.fireWith(h,[z,_]),u&&(M.trigger("ajaxComplete",[z,p]),--O.active||O.event.trigger("ajaxStop")))}return z},getJSON:function(t,e,n){return O.get(t,e,n,"json")},getScript:function(t,e){return O.get(t,void 0,e,"script")}}),O.each(["get","post"],(function(t,e){O[e]=function(t,n,r,i){return m(n)&&(i=i||r,r=n,n=void 0),O.ajax(O.extend({url:t,type:e,dataType:i,data:n,success:r},O.isPlainObject(t)&&t))}})),O.ajaxPrefilter((function(t){var e;for(e in t.headers)"content-type"===e.toLowerCase()&&(t.contentType=t.headers[e]||"")})),O._evalUrl=function(t,e,n){return O.ajax({url:t,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(t){O.globalEval(t,e,n)}})},O.fn.extend({wrapAll:function(t){var e;return this[0]&&(m(t)&&(t=t.call(this[0])),e=O(t,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&e.insertBefore(this[0]),e.map((function(){for(var t=this;t.firstElementChild;)t=t.firstElementChild;return t})).append(this)),this},wrapInner:function(t){return m(t)?this.each((function(e){O(this).wrapInner(t.call(this,e))})):this.each((function(){var e=O(this),n=e.contents();n.length?n.wrapAll(t):e.append(t)}))},wrap:function(t){var e=m(t);return this.each((function(n){O(this).wrapAll(e?t.call(this,n):t)}))},unwrap:function(t){return this.parent(t).not("body").each((function(){O(this).replaceWith(this.childNodes)})),this}}),O.expr.pseudos.hidden=function(t){return!O.expr.pseudos.visible(t)},O.expr.pseudos.visible=function(t){return!!(t.offsetWidth||t.offsetHeight||t.getClientRects().length)},O.ajaxSettings.xhr=function(){try{return new r.XMLHttpRequest}catch(t){}};var He={0:200,1223:204},$e=O.ajaxSettings.xhr();b.cors=!!$e&&"withCredentials"in $e,b.ajax=$e=!!$e,O.ajaxTransport((function(t){var e,n;if(b.cors||$e&&!t.crossDomain)return{send:function(i,o){var a,c=t.xhr();if(c.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(a in t.xhrFields)c[a]=t.xhrFields[a];for(a in t.mimeType&&c.overrideMimeType&&c.overrideMimeType(t.mimeType),t.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest"),i)c.setRequestHeader(a,i[a]);e=function(t){return function(){e&&(e=n=c.onload=c.onerror=c.onabort=c.ontimeout=c.onreadystatechange=null,"abort"===t?c.abort():"error"===t?"number"!=typeof c.status?o(0,"error"):o(c.status,c.statusText):o(He[c.status]||c.status,c.statusText,"text"!==(c.responseType||"text")||"string"!=typeof c.responseText?{binary:c.response}:{text:c.responseText},c.getAllResponseHeaders()))}},c.onload=e(),n=c.onerror=c.ontimeout=e("error"),void 0!==c.onabort?c.onabort=n:c.onreadystatechange=function(){4===c.readyState&&r.setTimeout((function(){e&&n()}))},e=e("abort");try{c.send(t.hasContent&&t.data||null)}catch(t){if(e)throw t}},abort:function(){e&&e()}}})),O.ajaxPrefilter((function(t){t.crossDomain&&(t.contents.script=!1)})),O.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(t){return O.globalEval(t),t}}}),O.ajaxPrefilter("script",(function(t){void 0===t.cache&&(t.cache=!1),t.crossDomain&&(t.type="GET")})),O.ajaxTransport("script",(function(t){var e,n;if(t.crossDomain||t.scriptAttrs)return{send:function(r,i){e=O("