From 63607e9b4e490e17b464fe2c7436aa3ddb5927de Mon Sep 17 00:00:00 2001 From: Regis Freyd Date: Mon, 17 Feb 2020 08:23:37 -0500 Subject: [PATCH 1/4] chore: add audit logs for company creation --- app/Helpers/AuditLogHelper.php | 20 ++++++----- .../Account/Company/CreateCompany.php | 33 +++++++++++++++++++ public/js/langs/en.json | 2 +- public/js/vendor.js | 2 +- public/mix-manifest.json | 2 +- resources/lang/en/app.php | 14 -------- resources/lang/en/logs.php | 28 ++++++++++++++++ tests/Unit/Helpers/AuditLogHelperTest.php | 2 +- .../Account/Company/CreateCompanyTest.php | 19 +++++++++++ 9 files changed, 95 insertions(+), 27 deletions(-) create mode 100644 resources/lang/en/logs.php diff --git a/app/Helpers/AuditLogHelper.php b/app/Helpers/AuditLogHelper.php index c601c4227c0..390837e27c5 100644 --- a/app/Helpers/AuditLogHelper.php +++ b/app/Helpers/AuditLogHelper.php @@ -28,23 +28,25 @@ public static function getCollectionOfAuditForSettings($logs): Collection // in that case, we will display a link to point to this contact $contact = Contact::findOrFail($log->object->{'contact_id'}); $description = trans( - 'app.settings_log_'.$log->action.'_with_name_with_link', + 'logs.settings_log_'.$log->action.'_with_name_with_link', [ 'link' => '/people/'.$contact->hashId(), 'name' => $contact->name, ] ); } catch (ModelNotFoundException $e) { - // the contact doesn't exist anymore, we don't need a link - $description = trans('app.settings_log_'.$log->action.'_with_name', ['name' => $log->object->{'contact_name'}]); + // the contact doesn't exist anymore, we don't need a link, we'll only display a name + $description = trans('logs.settings_log_'.$log->action.'_with_name', ['name' => $log->object->{'contact_name'}]); } - - $logsCollection->push([ - 'author_name' => ($log->author) ? $log->author->name : $log->author_name, - 'description' => $description, - 'audited_at' => DateHelper::getShortDateWithTime($log->audited_at), - ]); + } else { + $description = trans('logs.settings_log_'.$log->action, ['name' => $log->object->{'name'}]); } + + $logsCollection->push([ + 'author_name' => ($log->author) ? $log->author->name : $log->author_name, + 'description' => $description, + 'audited_at' => DateHelper::getShortDateWithTime($log->audited_at), + ]); } return $logsCollection; diff --git a/app/Services/Account/Company/CreateCompany.php b/app/Services/Account/Company/CreateCompany.php index 34ea2c5fa3c..0ff1d2ffd42 100644 --- a/app/Services/Account/Company/CreateCompany.php +++ b/app/Services/Account/Company/CreateCompany.php @@ -2,8 +2,13 @@ namespace App\Services\Account\Company; +use App\Jobs\AuditLog\LogAccountAudit; +use App\Models\Contact\Contact; +use App\Models\User\User; use App\Services\BaseService; use App\Models\Account\Company; +use Safe\Exceptions\JsonException; +use function Safe\json_encode; class CreateCompany extends BaseService { @@ -16,6 +21,7 @@ public function rules() { return [ 'account_id' => 'required|integer|exists:accounts,id', + 'author_id' => 'required|integer|exists:users,id', 'name' => 'required|string|max:255', 'website' => 'nullable|string|max:255', 'number_of_employees' => 'nullable|integer', @@ -32,6 +38,8 @@ public function execute(array $data): Company { $this->validate($data); + $this->log($data); + return Company::create([ 'account_id' => $data['account_id'], 'name' => $data['name'], @@ -39,4 +47,29 @@ public function execute(array $data): Company 'number_of_employees' => $this->nullOrValue($data, 'number_of_employees'), ]); } + + /** + * Add an audit log. + * + * @param array $data + * @return void + * @throws JsonException + */ + private function log(array $data): void + { + $author = User::find($data['author_id']); + + LogAccountAudit::dispatch([ + 'action' => 'company_created', + 'account_id' => $data['account_id'], + 'about_contact_id' => null, + 'author_id' => $author->id, + 'author_name' => $author->name, + 'audited_at' => now(), + 'should_appear_on_dashboard' => true, + 'objects' => json_encode([ + 'name' => $data['name'], + ]), + ]); + } } diff --git a/public/js/langs/en.json b/public/js/langs/en.json index 8279499a5f7..e6cf9a9d31c 100644 --- a/public/js/langs/en.json +++ b/public/js/langs/en.json @@ -1 +1 @@ -{"app":{"add":"Add","another_day":"another day","application_description":"Monica is a tool to manage your interactions with your loved ones, friends, and family.","application_og_title":"Have better relations with your loved ones. Free Online CRM for friends and family.","application_title":"Monica \u2013 personal relationship manager","back":"Back","breadcrumb_add_note":"Add a note","breadcrumb_add_significant_other":"Add significant other","breadcrumb_api":"API","breadcrumb_archived_contacts":"Archived contacts","breadcrumb_dashboard":"Dashboard","breadcrumb_dav":"DAV Resources","breadcrumb_edit_introductions":"How did you meet","breadcrumb_edit_note":"Edit a note","breadcrumb_edit_significant_other":"Edit significant other","breadcrumb_journal":"Journal","breadcrumb_list_contacts":"List of people","breadcrumb_profile":"Profile of :name","breadcrumb_settings":"Settings","breadcrumb_settings_export":"Export","breadcrumb_settings_import":"Import","breadcrumb_settings_import_report":"Import report","breadcrumb_settings_import_upload":"Upload","breadcrumb_settings_personalization":"Personalization","breadcrumb_settings_security":"Security","breadcrumb_settings_security_2fa":"Two Factor Authentication","breadcrumb_settings_subscriptions":"Subscription","breadcrumb_settings_tags":"Tags","breadcrumb_settings_users":"Users","breadcrumb_settings_users_add":"Add a user","cancel":"Cancel","close":"Close","compliance_desc":"We have changed our Terms of Use<\/a> and Privacy Policy<\/a>. By law we have to ask you to review them and accept them so you can continue to use your account.","compliance_desc_end":"We don\u2019t do anything nasty with your data or your account and we never will.","compliance_terms":"Accept new terms and privacy policy","compliance_title":"Sorry for the interruption.","confirm":"Confirm","contact_log_contact_created":"Created the contact.","contact_log_contact_description_cleared":"Cleared the description.","contact_log_contact_description_updated":"Updated the description.","contact_log_contact_work_updated":"Updated work information.","copy":"Copy","create":"Create","date":"Date","dav_birthdays":"Birthdays","dav_birthdays_description":":name\u2019s contact\u2019s birthdays","dav_contacts":"Contacts","dav_contacts_description":":name\u2019s contacts","dav_tasks":"Tasks","dav_tasks_description":":name\u2019s tasks","default_save_success":"The data has been saved.","delete":"Delete","delete_confirm":"Sure?","done":"Done","download":"Download","edit":"Edit","emotion_adoration":"Adoration","emotion_affection":"Affection","emotion_aggravation":"Aggravation","emotion_agitation":"Agitation","emotion_agony":"Agony","emotion_alarm":"Alarm","emotion_alienation":"Alienation","emotion_amazement":"Amazement","emotion_amusement":"Amusement","emotion_anger":"Anger","emotion_anguish":"Anguish","emotion_annoyance":"Annoyance","emotion_anxiety":"Anxiety","emotion_apprehension":"Apprehension","emotion_arousal":"Arousal","emotion_astonishment":"Astonishment","emotion_attraction":"Attraction","emotion_bitterness":"Bitterness","emotion_bliss":"Bliss","emotion_caring":"Caring","emotion_cheerfulness":"Cheerfulness","emotion_compassion":"Compassion","emotion_contempt":"Contempt","emotion_contentment":"Contentment","emotion_defeat":"Defeat","emotion_dejection":"Dejection","emotion_delight":"Delight","emotion_depression":"Depression","emotion_desire":"Desire","emotion_despair":"Despair","emotion_disappointment":"Disappointment","emotion_disgust":"Disgust","emotion_dislike":"Dislike","emotion_dismay":"Dismay","emotion_displeasure":"Displeasure","emotion_distress":"Distress","emotion_dread":"Dread","emotion_eagerness":"Eagerness","emotion_ecstasy":"Ecstasy","emotion_elation":"Elation","emotion_embarrassment":"Embarrassment","emotion_enjoyment":"Enjoyment","emotion_enthrallment":"Enthrallment","emotion_enthusiasm":"Enthusiasm","emotion_envy":"Envy","emotion_euphoria":"Euphoria","emotion_exasperation":"Exasperation","emotion_excitement":"Excitement","emotion_exhilaration":"Exhilaration","emotion_fear":"Fear","emotion_ferocity":"Ferocity","emotion_fondness":"Fondness","emotion_fright":"Fright","emotion_frustration":"Frustration","emotion_fury":"Fury","emotion_gaiety":"Gaiety","emotion_gladness":"Gladness","emotion_glee":"Glee","emotion_gloom":"Gloom","emotion_glumness":"Glumness","emotion_grief":"Grief","emotion_grouchiness":"Grouchiness","emotion_grumpiness":"Grumpiness","emotion_guilt":"Guilt","emotion_happiness":"Happiness","emotion_hate":"Hate","emotion_homesickness":"Homesickness","emotion_hope":"Hope","emotion_hopelessness":"Hopelessness","emotion_horror":"Horror","emotion_hostility":"Hostility","emotion_humiliation":"Humiliation","emotion_hurt":"Hurt","emotion_hysteria":"Hysteria","emotion_infatuation":"Infatuation","emotion_insecurity":"Insecurity","emotion_insult":"Insult","emotion_irritation":"Irritation","emotion_isolation":"Isolation","emotion_jealousy":"Jealousy","emotion_jolliness":"Jolliness","emotion_joviality":"Joviality","emotion_joy":"Joy","emotion_jubilation":"Jubilation","emotion_liking":"Liking","emotion_loathing":"Loathing","emotion_loneliness":"Loneliness","emotion_longing":"Longing","emotion_love":"Love","emotion_lust":"Lust","emotion_melancholy":"Melancholy","emotion_misery":"Misery","emotion_mortification":"Mortification","emotion_neglect":"Neglect","emotion_nervousness":"Nervousness","emotion_optimism":"Optimism","emotion_outrage":"Outrage","emotion_panic":"Panic","emotion_passion":"Passion","emotion_pity":"Pity","emotion_pleasure":"Pleasure","emotion_pride":"Pride","emotion_primary_anger":"Anger","emotion_primary_fear":"Fear","emotion_primary_joy":"Joy","emotion_primary_love":"Love","emotion_primary_sadness":"Sadness","emotion_primary_surprise":"Surprise","emotion_rage":"Rage","emotion_rapture":"Rapture","emotion_regret":"Regret","emotion_rejection":"Rejection","emotion_relief":"Relief","emotion_remorse":"Remorse","emotion_resentment":"Resentment","emotion_revulsion":"Revulsion","emotion_sadness":"Sadness","emotion_satisfaction":"Satisfaction","emotion_scorn":"Scorn","emotion_secondary_affection":"Affection","emotion_secondary_cheerfulness":"Cheerfulness","emotion_secondary_contentment":"Contentment","emotion_secondary_disappointment":"Disappointment","emotion_secondary_disgust":"Disgust","emotion_secondary_enthrallment":"Enthrallment","emotion_secondary_envy":"Envy","emotion_secondary_exasperation":"Exasperation","emotion_secondary_horror":"Horror","emotion_secondary_irritation":"Irritation","emotion_secondary_longing":"Longing","emotion_secondary_lust":"Lust","emotion_secondary_neglect":"Neglect","emotion_secondary_nervousness":"Nervousness","emotion_secondary_optimism":"Optimism","emotion_secondary_pride":"Pride","emotion_secondary_rage":"Rage","emotion_secondary_relief":"Relief","emotion_secondary_sadness":"Sadness","emotion_secondary_shame":"Shame","emotion_secondary_suffering":"Suffering","emotion_secondary_surprise":"Surprise","emotion_secondary_sympathy":"Sympathy","emotion_secondary_zest":"Zest","emotion_sentimentality":"Sentimentality","emotion_shame":"Shame","emotion_shock":"Shock","emotion_sorrow":"Sorrow","emotion_spite":"Spite","emotion_suffering":"Suffering","emotion_surprise":"Surprise","emotion_sympathy":"Sympathy","emotion_tenderness":"Tenderness","emotion_tenseness":"Tenseness","emotion_terror":"Terror","emotion_thrill":"Thrill","emotion_uneasiness":"Uneasiness","emotion_unhappiness":"Unhappiness","emotion_vengefulness":"Vengefulness","emotion_woe":"Woe","emotion_worry":"Worry","emotion_wrath":"Wrath","emotion_zeal":"Zeal","emotion_zest":"Zest","error_help":"We\u2019ll be right back.","error_id":"Error ID: :id","error_maintenance":"Maintenance in progress. Be right back.","error_no_term":"There is no policy for this instance yet.","error_save":"We had an error trying to save the data.","error_title":"Whoops! Something went wrong.","error_try_again":"Something went wrong. Please try again.","error_twitter":"Follow our Twitter account<\/a> to be alerted when it\u2019s up again.","error_unauthorized":"You don\u2019t have the right to edit this resource.","error_unavailable":"Service unavailable","error_user_account":"This user does not belong to the given account.","file_selected":"1 file selected...|{count} files selected...","filter":"Filter the list","footer_modal_version_release_away":"You are 1 release behind the latest version available. You should update your instance.|You are :number releases behind the latest version available. You should update your instance.","footer_modal_version_whats_new":"What\u2019s new","footer_new_version":"A new version is available","footer_newsletter":"Newsletter","footer_privacy":"Privacy policy","footer_release":"Release notes","footer_remarks":"Any remarks?","footer_send_email":"Send me an email","footer_source_code":"Contribute","footer_version":"Version: :version","gender_female":"Woman","gender_male":"Man","gender_no_gender":"No gender","gender_none":"Rather not say","go_back":"Go back","header_changelog_link":"Product changes","header_logout_link":"Logout","header_settings_link":"Settings","load_more":"Load more","loading":"Loading...","main_nav_activities":"Activities","main_nav_cta":"Add people","main_nav_dashboard":"Dashboard","main_nav_family":"Contacts","main_nav_journal":"Journal","main_nav_tasks":"Tasks","markdown_description":"Want to format your text nicely? We support Markdown to add bold, italic, lists, and more.","markdown_link":"Read documentation","new":"new","no":"No","percent_uploaded":"{percent}% uploaded","relationship_type_bestfriend":"best friend","relationship_type_bestfriend_female":"best friend","relationship_type_bestfriend_female_with_name":":name\u2019s best friend","relationship_type_bestfriend_with_name":":name\u2019s best friend","relationship_type_boss":"boss","relationship_type_boss_female":"boss","relationship_type_boss_female_with_name":":name\u2019s boss","relationship_type_boss_with_name":":name\u2019s boss","relationship_type_child":"son","relationship_type_child_female":"daughter","relationship_type_child_female_with_name":":name\u2019s daughter","relationship_type_child_with_name":":name\u2019s son","relationship_type_colleague":"colleague","relationship_type_colleague_female":"colleague","relationship_type_colleague_female_with_name":":name\u2019s colleague","relationship_type_colleague_with_name":":name\u2019s colleague","relationship_type_cousin":"cousin","relationship_type_cousin_female":"cousin","relationship_type_cousin_female_with_name":":name\u2019s cousin","relationship_type_cousin_with_name":":name\u2019s cousin","relationship_type_date":"date","relationship_type_date_female":"date","relationship_type_date_female_with_name":":name\u2019s date","relationship_type_date_with_name":":name\u2019s date","relationship_type_ex":"ex-boyfriend","relationship_type_ex_female":"ex-girlfriend","relationship_type_ex_female_with_name":":name\u2019s ex-girlfriend","relationship_type_ex_husband":"ex-husband","relationship_type_ex_husband_female":"ex-wife","relationship_type_ex_husband_female_with_name":":name\u2019s ex-wife","relationship_type_ex_husband_with_name":":name\u2019s ex-husband","relationship_type_ex_with_name":":name\u2019s ex-boyfriend","relationship_type_friend":"friend","relationship_type_friend_female":"friend","relationship_type_friend_female_with_name":":name\u2019s friend","relationship_type_friend_with_name":":name\u2019s friend","relationship_type_godfather":"godfather","relationship_type_godfather_female":"godmother","relationship_type_godfather_female_with_name":":name\u2019s godmother","relationship_type_godfather_with_name":":name\u2019s godfather","relationship_type_godson":"godson","relationship_type_godson_female":"goddaughter","relationship_type_godson_female_with_name":":name\u2019s goddaughter","relationship_type_godson_with_name":":name\u2019s godson","relationship_type_grandchild":"grand child","relationship_type_grandchild_female":"grand child","relationship_type_grandchild_female_with_name":":name\u2019s grand child","relationship_type_grandchild_with_name":":name\u2019s grand child","relationship_type_grandparent":"grand parent","relationship_type_grandparent_female":"grand parent","relationship_type_grandparent_female_with_name":":name\u2019s grand parent","relationship_type_grandparent_with_name":":name\u2019s grand parent","relationship_type_group_family":"Family relationships","relationship_type_group_friend":"Friend relationships","relationship_type_group_love":"Love relationships","relationship_type_group_other":"Other kind of relationships","relationship_type_group_work":"Work relationships","relationship_type_inlovewith":"in love with","relationship_type_inlovewith_female":"in love with","relationship_type_inlovewith_female_with_name":"someone :name is in love with","relationship_type_inlovewith_with_name":"someone :name is in love with","relationship_type_lovedby":"loved by","relationship_type_lovedby_female":"loved by","relationship_type_lovedby_female_with_name":":name\u2019s secret lover","relationship_type_lovedby_with_name":":name\u2019s secret lover","relationship_type_lover":"lover","relationship_type_lover_female":"lover","relationship_type_lover_female_with_name":":name\u2019s lover","relationship_type_lover_with_name":":name\u2019s lover","relationship_type_mentor":"mentor","relationship_type_mentor_female":"mentor","relationship_type_mentor_female_with_name":":name\u2019s mentor","relationship_type_mentor_with_name":":name\u2019s mentor","relationship_type_nephew":"nephew","relationship_type_nephew_female":"niece","relationship_type_nephew_female_with_name":":name\u2019s niece","relationship_type_nephew_with_name":":name\u2019s nephew","relationship_type_parent":"father","relationship_type_parent_female":"mother","relationship_type_parent_female_with_name":":name\u2019s mother","relationship_type_parent_with_name":":name\u2019s father","relationship_type_partner":"significant other","relationship_type_partner_female":"significant other","relationship_type_partner_female_with_name":":name\u2019s significant other","relationship_type_partner_with_name":":name\u2019s significant other","relationship_type_protege":"protege","relationship_type_protege_female":"protege","relationship_type_protege_female_with_name":":name\u2019s protege","relationship_type_protege_with_name":":name\u2019s protege","relationship_type_sibling":"brother","relationship_type_sibling_female":"sister","relationship_type_sibling_female_with_name":":name\u2019s sister","relationship_type_sibling_with_name":":name\u2019s brother","relationship_type_spouse":"spouse","relationship_type_spouse_female":"spouse","relationship_type_spouse_female_with_name":":name\u2019s spouse","relationship_type_spouse_with_name":":name\u2019s spouse","relationship_type_stepchild":"stepson","relationship_type_stepchild_female":"stepdaughter","relationship_type_stepchild_female_with_name":":name\u2019s stepdaughter","relationship_type_stepchild_with_name":":name\u2019s stepson","relationship_type_stepparent":"stepfather","relationship_type_stepparent_female":"stepmother","relationship_type_stepparent_female_with_name":":name\u2019s stepmother","relationship_type_stepparent_with_name":":name\u2019s stepfather","relationship_type_subordinate":"subordinate","relationship_type_subordinate_female":"subordinate","relationship_type_subordinate_female_with_name":":name\u2019s subordinate","relationship_type_subordinate_with_name":":name\u2019s subordinate","relationship_type_uncle":"uncle","relationship_type_uncle_female":"aunt","relationship_type_uncle_female_with_name":":name\u2019s aunt","relationship_type_uncle_with_name":":name\u2019s uncle","remove":"Remove","retry":"Retry","revoke":"Revoke","save":"Save","save_close":"Save and close","settings_log_contact_created_with_name":"Added :name as a contact.","settings_log_contact_created_with_name_with_link":"Added :name<\/a> as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_cleared_with_name_with_link":"Cleared the description of :name<\/a>.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_description_updated_with_name_with_link":"Updated the description of :name<\/a>.","settings_log_contact_work_updated_with_name":"Updated work information of :name.","settings_log_contact_work_updated_with_name_with_link":"Updated work information of :name<\/a>.","today":"today","type":"Type","unknown":"I don\u2019t know","update":"Update","upgrade":"Upgrade to unlock","upload":"Upload","verify":"Verify","weather_clear-day":"Clear day","weather_clear-night":"Clear night","weather_cloudy":"Cloudy","weather_current_temperature_celsius":":temperature \u00b0C","weather_current_temperature_fahrenheit":":temperature \u00b0F","weather_current_title":"Current weather","weather_fog":"Fog","weather_partly-cloudy-day":"Partly cloudy day","weather_partly-cloudy-night":"Partly cloudy night","weather_rain":"Rain","weather_sleet":"Sleet","weather_snow":"Snow","weather_wind":"Wind","with":"with","yes":"Yes","yesterday":"yesterday","zoom":"Zoom"},"auth":{"2fa_one_time_password":"Two factor authentication code","2fa_otp_help":"Open up your two factor authentication mobile app and copy the code","2fa_recuperation_code":"Enter a two factor recovery code","2fa_title":"Two Factor Authentication","2fa_wrong_validation":"The two factor authentication has failed.","back_homepage":"Back to homepage","button_remember":"Remember Me","change_language":"Change language to :lang","change_language_title":"Change language:","confirmation_again":"If you want to change your email address you can click here<\/a>.","confirmation_check":"Before proceeding, please check your email for a verification link.","confirmation_fresh":"A fresh verification link has been sent to your email address.","confirmation_request_another":"If you did not receive the email click here to request another<\/a>.","confirmation_title":"Verify Your Email Address","create_account":"Create the first account by signing up<\/a>","email":"Email","email_change_current_email":"Current email address:","email_change_new":"New email address","email_change_title":"Change your email address","email_changed":"Your email address has been changed. Check your mailbox to validate it.","failed":"These credentials do not match our records.","login":"Login","login_again":"Please login again to your account","login_to_account":"Login to your account","login_with_recovery":"Login with a recovery code","mfa_auth_otp":"Authenticate with your two factor device","mfa_auth_u2f":"Authenticate with a U2F device","mfa_auth_webauthn":"Authenticate with a security key (WebAuthn)","not_authorized":"You are not authorized to execute this action","password":"Password","password_forget":"Forget your password?","password_reset":"Reset your password","password_reset_action":"Reset Password","password_reset_email":"E-Mail Address","password_reset_email_content":"Click here to reset your password:","password_reset_password":"Password","password_reset_password_confirm":"Confirm Password","password_reset_send_link":"Send Password Reset Link","password_reset_title":"Reset Password","recovery":"Recovery code","register_action":"Register","register_create_account":"You need to create an account to use Monica","register_email":"Enter a valid email address","register_email_example":"you@home","register_firstname":"First name","register_firstname_example":"eg. John","register_invitation_email":"For security purposes, please indicate the email of the person who\u2019ve invited you to join this account. This information is provided in the invitation email.","register_lastname":"Last name","register_lastname_example":"eg. Doe","register_login":"Log in<\/a> if you already have an account.","register_password":"Password","register_password_confirmation":"Password confirmation","register_password_example":"Enter a secure password","register_policy":"Signing up signifies you\u2019ve read and agree to our Privacy Policy<\/a> and Terms of use<\/a>.","register_title_create":"Create your Monica account","register_title_welcome":"Welcome to your newly installed Monica instance","signup":"Sign up","signup_disabled":"Registration is currently disabled","signup_no_account":"Don\u2019t have an account?","throttle":"Too many login attempts. Please try again in :seconds seconds.","u2f_otp_extension":"U2F is supported natively on Chrome, Firefox<\/a> and Opera. On old Firefox versions, install the U2F Support Add-on<\/a>.","use_recovery":"Or you can use a recovery code<\/a>"},"changelog":{"note":"Note: unfortunately, this page is only in English.","title":"Product changes"},"dashboard":{"dashboard_blank_cta":"Add your first contact","dashboard_blank_description":"Monica is the place to organize all the interactions you have with the ones you care about.","dashboard_blank_illustration":"Illustration by Freepik<\/a>","dashboard_blank_title":"Welcome to your account!","debts_you_owe":"You owe","notes_title":"You don\u2019t have any starred notes yet.","product_changes":"Product changes","product_view_details":"View details","reminders_next_months":"Events in the next 3 months","reminders_none":"No reminder for this month","statistics_activities":"Activities","statistics_contacts":"Contacts","statistics_gifts":"Gifts","tab_calls_blank":"You haven\u2019t logged a call yet.","tab_debts":"Debts","tab_debts_blank":"You haven\u2019t logged any debt yet.","tab_favorite_notes":"Favorite notes","tab_recent_calls":"Recent calls","tab_tasks":"Tasks","tab_tasks_blank":"You haven\u2019t any task yet.","task_add_cta":"Add a task","tasks_add_note":"Press Enter<\/kbd> to add the task.","tasks_add_task_placeholder":"What is this task about?","tasks_tab_your_contacts":"Tasks related to your contacts","tasks_tab_your_tasks":"Your tasks"},"format":{"full_date_year":"F d, Y","full_hour":"h.i A","full_month":"F","full_month_year":"F Y","short_date":"M d","short_date_year":"M d, Y","short_date_year_time":"M d, Y H:i","short_day":"D","short_month":"M","short_month_year":"M Y","short_text":"{text}\u2026"},"journal":{"delete_confirmation":"Are you sure you want to delete this journal entry?","entry_delete_success":"The journal entry has been successfully deleted.","journal_add":"Add a journal entry","journal_add_comment":"Care to add a comment (optional)?","journal_add_cta":"Save","journal_add_date":"Date","journal_add_post":"Entry","journal_add_title":"Title (optional)","journal_blank_cta":"Add your first journal entry","journal_blank_description":"The journal lets you write events that happened to you, and remember them.","journal_come_back":"Thanks. Come back tomorrow to rate your day again.","journal_created_automatically":"Created automatically","journal_description":"Note: the journal lists both manual journal entries, and automatic entries like Activities done with your contacts. While you can delete journal entries manually, you\u2019ll have to delete the activity directly on the contact page.","journal_edit":"Edit a journal entry","journal_empty":"Empty journal","journal_entry_rate":"You rated your day.","journal_entry_type_activity":"Activity","journal_entry_type_journal":"Journal entry","journal_rate":"How was your day? You can rate it once a day.","journal_show_comment":"Show comment"},"mail":{"comment":"Comment: :comment","confirmation_email_bottom":"If you did not create an account, no further action is required.","confirmation_email_button":"Verify email address","confirmation_email_intro":"To validate your email click on the button below","confirmation_email_title":"Monica \u2013 Email verification","footer_contact_info":"Add, view, complete, and change information about this contact:","footer_contact_info2":"See :name\u2019s profile","footer_contact_info2_link":"See :name\u2019s profile: :url","for":"For: :name","greetings":"Hi :username","invitation_button":"Accept invitation","invitation_expiration":"This link will expire in :count days.","invitation_intro":"You\u2019ve been invited by :name (:email) to use Monica, a nice Personal Relationship Management tool.","invitation_link":"To accept the invitation, click on the link below:","invitation_title":"Monica \u2013 You are invited by :name","notification_description":"In :count days (on :date), the following event will happen:","notification_subject_line":"You have an upcoming event","notifications_footer":"If you\u2019re having trouble clicking the \":actionText\" button, copy and paste the URL below into your web browser: [:actionURL](:actionURL)","notifications_hello":"Hello!","notifications_regards":"Regards","notifications_rights":"All rights reserved","notifications_whoops":"Whoops!","password_reset_bottom":"If you did not request a password reset, no further action is required.","password_reset_button":"Reset Password","password_reset_expiration":"This password reset link will expire in :count minutes.","password_reset_intro":"You are receiving this email because we received a password reset request for your account.","password_reset_title":"Monica \u2013 Reset Password Notification","stay_in_touch_subject_description":"You asked to be reminded to stay in touch with :name every :frequency day.|You asked to be reminded to stay in touch with :name every :frequency days.","stay_in_touch_subject_line":"Stay in touch with :name","subject_line":"Reminder for :contact","want_reminded_of":"You wanted to be reminded of :reason"},"pagination":{"next":"Next \u276f","previous":"\u276e Previous"},"passwords":{"changed":"Password changed successfully.","invalid":"Current password you entered is not correct.","reset":"Your password has been reset!","sent":"If the email you entered exists in our records, you\u2019ve been sent a password reset link.","throttled":"Please wait before retrying.","token":"This password reset token is invalid.","user":"If the email you entered exists in our records, you\u2019ve been sent a password reset link."},"people":{"activities_activity":"Activity Category","activities_add_activity":"Add activity","activities_add_category":"Indicate a category","activities_add_date_occured":"The activity happened on...","activities_add_emotions":"Add emotions","activities_add_emotions_title":"Do you want to log how you felt during this activity? (optional)","activities_add_error":"Error when adding the activity","activities_add_more_details":"Add more details","activities_add_participants":"Who, apart from {name}, participated in this activity? (optional)","activities_add_participants_cta":"Add participants","activities_add_pick_activity":"(Optional) Would you like to categorize this activity? You don\u2019t have to, but it will give you statistics later on","activities_add_success":"The activity has been added successfully","activities_add_title":"What did you do with {name}?","activities_blank_add_activity":"Add an activity","activities_blank_title":"Keep track of what you\u2019ve done with {name} in the past, and what you\u2019ve talked about","activities_delete_success":"The activity has been deleted successfully","activities_item_information":":Activity. Happened on :date","activities_list_category":"Category:","activities_list_date":"Happened on","activities_list_emotions":"Emotions felt:","activities_list_participants":"Participants:","activities_profile_number_occurences":":value activity|:value activities","activities_profile_subtitle":"You\u2019ve logged :total_activities activity with :name in total and :activities_last_twelve_months in the last 12 months so far.|You\u2019ve logged :total_activities activities with :name in total and :activities_last_twelve_months in the last 12 months so far.","activities_profile_title":"Activities report between :name and you","activities_profile_year_summary":"Here is what you two have done in :year","activities_profile_year_summary_activity_types":"Here is a breakdown of the type of activities you\u2019ve done together in :year","activities_summary":"Describe what you did","activities_update_success":"The activity has been updated successfully","activities_view_activities_report":"View activities report","activities_who_was_involved":"Who was involved?","activity_title":"Activities","activity_type_ate_at_his_place":"ate at their place","activity_type_ate_at_home":"ate at home","activity_type_ate_restaurant":"ate at a restaurant","activity_type_category_cultural_activities":"Cultural activities","activity_type_category_food":"Food","activity_type_category_simple_activities":"Simple activities","activity_type_category_sport":"Sport","activity_type_did_sport_activities_together":"did sport together","activity_type_just_hung_out":"just hung out","activity_type_picnicked":"picnicked","activity_type_talked_at_home":"just talked at home","activity_type_watched_movie_at_home":"watched a movie at home","activity_type_went_bar":"went to a bar","activity_type_went_concert":"went to a concert","activity_type_went_museum":"went to the museum","activity_type_went_play":"went to a play","activity_type_went_theater":"went to the theater","age_approximate_in_years":"around :age years old","age_exact_birthdate":"born :date","age_exact_in_years":":age years old","auditlogs_author":"By :name on :date","auditlogs_breadcrumb":"History","auditlogs_link":"History","auditlogs_title":"Everything that happened to :name","avatar_adorable_avatar":"The Adorable avatar","avatar_change_title":"Change your avatar","avatar_current":"Keep the current avatar","avatar_default_avatar":"The default avatar","avatar_gravatar":"The Gravatar associated with the email address of this person. Gravatar<\/a> is a global system that lets users associate email addresses with photos.","avatar_photo":"From a photo that you upload","avatar_question":"Which avatar would you like to use?","birthdate_not_set":"Birthdate is not set","call_blank_desc":"You called {name}","call_blank_title":"Keep track of the phone calls you\u2019ve done with {name}","call_button":"Log a call","call_delete_confirmation":"Are you sure you want to delete this call?","call_delete_success":"The call has been deleted successfully","call_emotions":"Emotions:","call_empty_comment":"No details","call_he_called":"{name} called","call_title":"Phone calls","call_you_called":"You called","calls_add_success":"The phone call has been saved.","contact_address_form_city":"City (optional)","contact_address_form_country":"Country (optional)","contact_address_form_latitude":"Latitude (numbers only) (optional)","contact_address_form_longitude":"Longitude (numbers only) (optional)","contact_address_form_name":"Label (optional)","contact_address_form_postal_code":"Postal code (optional)","contact_address_form_province":"Province (optional)","contact_address_form_street":"Street (optional)","contact_address_title":"Addresses","contact_archive":"Archive contact","contact_archive_help":"Archived contacts will not be shown on the contact list, but still appear in search results.","contact_info_address":"Lives in","contact_info_form_contact_type":"Contact type","contact_info_form_content":"Content","contact_info_form_personalize":"Personalize","contact_info_title":"Contact information","contact_unarchive":"Unarchive contact","conversation_add_another":"Add another message","conversation_add_content":"Write down what was said","conversation_add_error":"You must add at least one message.","conversation_add_how":"How did you communicate?","conversation_add_success":"The conversation has been successfully added.","conversation_add_title":"Record a new conversation","conversation_add_what_was_said":"What did you say?","conversation_add_when":"When did you have this conversation?","conversation_add_who_wrote":"Who said this message?","conversation_add_you":"You","conversation_blank":"Record conversations you have with :name on social media, SMS, ...","conversation_delete_link":"Delete the conversation","conversation_delete_success":"The conversation has been successfully deleted.","conversation_edit_delete":"Are you sure you want to delete this conversation? Deletion is permanent.","conversation_edit_success":"The conversation has been successfully updated.","conversation_edit_title":"Edit conversation","conversation_list_cta":"Log conversation","conversation_list_table_content":"Partial content (last message)","conversation_list_table_messages":"Messages","conversation_list_title":"Conversations","debt_add_add_cta":"Add debt","debt_add_amount":"the sum of","debt_add_cta":"Add debt","debt_add_reason":"for the following reason (optional)","debt_add_success":"The debt has been added successfully","debt_add_they_owe":":name owes you","debt_add_title":"Debt management","debt_add_you_owe":"You owe :name","debt_delete_confirmation":"Are you sure you want to delete this debt?","debt_delete_success":"The debt has been deleted successfully","debt_edit_success":"The debt has been updated successfully","debt_edit_update_cta":"Update debt","debt_they_owe":":name owes you :amount","debt_title":"Debts","debt_you_owe":"You owe :amount","debts_blank_title":"Manage debts you owe to :name or :name owes you","deceased_add_reminder":"Add a reminder for this date","deceased_age":"Age at death","deceased_date_label":"Deceased date","deceased_know_date":"I know the date this person died","deceased_label":"Deceased","deceased_label_with_date":"Deceased on :date","deceased_mark_person_deceased":"Mark this person as deceased","deceased_reminder_title":"Anniversary of the death of :name","document_list_blank_desc":"Here you can store documents related to this person.","document_list_cta":"Upload document","document_list_title":"Documents","document_upload_zone_cta":"Upload a file","document_upload_zone_error":"There was an error uploading the document. Please try again below.","document_upload_zone_progress":"Uploading the document...","edit_contact_information":"Edit contact information","emotion_this_made_me_feel":"This made you feel\u2026","food_preferences_add_success":"Food preferences have been saved","food_preferences_cta":"Add food preferences","food_preferences_edit_cta":"Save food preferences","food_preferences_edit_description":"Perhaps :firstname or someone in the :family\u2019s family has an allergy. Or doesn\u2019t like a specific bottle of wine. Indicate them here so you will remember it next time you invite them for dinner","food_preferences_edit_description_no_last_name":"Perhaps :firstname has an allergy. Or doesn\u2019t like a specific bottle of wine. Indicate them here so you will remember it next time you invite them for dinner","food_preferences_edit_title":"Indicate food preferences","food_preferences_title":"Food preferences","gifts_add_comment":"Comment (optional)","gifts_add_gift":"Add a gift","gifts_add_gift_already_offered":"Gift offered","gifts_add_gift_idea":"Gift idea","gifts_add_gift_name":"Gift name","gifts_add_gift_received":"Gift received","gifts_add_gift_title":"What is this gift?","gifts_add_link":"Link to the web page (optional)","gifts_add_photo":"Photo (optional)","gifts_add_photo_title":"Add a photo for this gift","gifts_add_recipient":"Recipient (optional)","gifts_add_recipient_field":"Recipient","gifts_add_someone":"This gift is for someone in {name}\u2019s family in particular","gifts_add_success":"The gift has been added successfully","gifts_add_title":"Gift management for :name","gifts_add_value":"Value (optional)","gifts_delete_confirmation":"Are you sure you want to delete this gift?","gifts_delete_cta":"Delete","gifts_delete_success":"The gift has been deleted successfully","gifts_delete_title":"Delete a gift","gifts_for":"For: {name}","gifts_ideas":"Gift ideas","gifts_link":"Link","gifts_mark_offered":"Mark as offered","gifts_offered":"Gifts offered","gifts_offered_as_an_idea":"Mark as an idea","gifts_received":"Gifts received","gifts_title":"Gifts","gifts_update_success":"The gift has been updated successfully","gifts_view_comment":"View comment","information_edit_birthdate_label":"Birthdate","information_edit_description":"Description (Optional)","information_edit_description_help":"Used on the contact list to add some context, if necessary.","information_edit_exact":"I know the exact birthdate of this person...","information_edit_firstname":"First name","information_edit_lastname":"Last name (Optional)","information_edit_max_size":"Max :size Kb.","information_edit_max_size2":"Max {size} Kb.","information_edit_not_year":"I know the day and month of the birthdate of this person, but not the year\u2026","information_edit_probably":"This person is probably...","information_edit_success":"The profile has been updated successfully","information_edit_title":"Edit :name\u2019s personal information","information_edit_unknown":"I do not know this person\u2019s age","information_no_work_defined":"No work information defined","information_work_at":"at :company","introductions_add_reminder":"Add a reminder to celebrate this encounter on the anniversary this event happened","introductions_additional_info":"Explain how and where you met","introductions_blank_cta":"Indicate how you met :name","introductions_edit_met_through":"Has someone introduced you to this person?","introductions_first_met_date":"Date you met","introductions_first_met_date_known":"This is the date we met","introductions_met_date":"Met on :date","introductions_met_through":"Met through :name<\/a>","introductions_no_first_met_date":"I don\u2019t know the date we met","introductions_no_met_through":"No one","introductions_reminder_title":"Anniversary of the day you first met","introductions_sidebar_title":"How you met","introductions_title_edit":"How did you meet :name?","introductions_update_success":"You\u2019ve successfully updated the information about how you met this person","last_activity_date":"Last activity together: :date","last_activity_date_empty":"Last activity together: unknown","last_called":"Last called: :date","last_called_empty":"Last called: unknown","life_event_blank":"Log what happens to the life of {name} for your future reference.","life_event_create_add_yearly_reminder":"Add a yearly reminder for this event","life_event_create_category":"All categories","life_event_create_date":"You do not need to indicate a month or a day - only the year is mandatory.","life_event_create_default_description":"Add information about what you know","life_event_create_default_story":"Story (optional)","life_event_create_default_title":"Title (optional)","life_event_create_life_event":"Add life event","life_event_create_success":"The life event has been added","life_event_date_it_happened":"Date it happened","life_event_delete_description":"Are you sure you want to delete this life event? Deletion is permanent.","life_event_delete_success":"The life event has been deleted","life_event_delete_title":"Delete a life event","life_event_list_cta":"Add life event","life_event_list_tab_life_events":"Life events","life_event_list_tab_other":"Notes, reminders, ...","life_event_list_title":"Life events","life_event_sentence_achievement_or_award":"Got an achievement or award","life_event_sentence_anniversary":"Anniversary","life_event_sentence_bought_a_home":"Bought a home","life_event_sentence_broken_bone":"Broke a bone","life_event_sentence_changed_beliefs":"Changed beliefs","life_event_sentence_dentist":"Went to the dentist","life_event_sentence_end_of_relationship":"Ended a relationship","life_event_sentence_engagement":"Got engaged","life_event_sentence_expecting_a_baby":"Expects a baby","life_event_sentence_first_kiss":"Kissed for the first time","life_event_sentence_first_word":"Spoke for the first time","life_event_sentence_holidays":"Went on holidays","life_event_sentence_home_improvement":"Made a home improvement","life_event_sentence_loss_of_a_loved_one":"Lost a loved one","life_event_sentence_marriage":"Got married","life_event_sentence_military_service":"Started military service","life_event_sentence_moved":"Moved","life_event_sentence_new_child":"Had a child","life_event_sentence_new_eating_habits":"Started new eating habits","life_event_sentence_new_family_member":"Added a family member","life_event_sentence_new_hobby":"Started a hobby","life_event_sentence_new_instrument":"Learned a new instrument","life_event_sentence_new_job":"Started a new job","life_event_sentence_new_language":"Learned a new language","life_event_sentence_new_license":"Got a license","life_event_sentence_new_pet":"Got a pet","life_event_sentence_new_relationship":"Started a relationship","life_event_sentence_new_roommate":"Got a roommate","life_event_sentence_new_school":"Started school","life_event_sentence_new_sport":"Started a sport","life_event_sentence_new_vehicle":"Got a new vehicle","life_event_sentence_overcame_an_illness":"Overcame an illness","life_event_sentence_published_book_or_paper":"Published a paper","life_event_sentence_quit_a_habit":"Quit a habit","life_event_sentence_removed_braces":"Removed braces","life_event_sentence_retirement":"Retired","life_event_sentence_study_abroad":"Studied abroad","life_event_sentence_surgery":"Got a surgery","life_event_sentence_tattoo_or_piercing":"Got a tattoo or piercing","life_event_sentence_travel":"Traveled","life_event_sentence_volunteer_work":"Started volunteering","life_event_sentence_wear_glass_or_contact":"Started to wear glass or contact lenses","life_event_sentence_weight_loss":"Lost weight","list_link_to_active_contacts":"You are viewing archived contacts. See the list of active contacts<\/a> instead.","list_link_to_archived_contacts":"List of archived contacts","me":"This is you","modal_call_comment":"What did you talk about? (optional)","modal_call_emotion":"Do you want to log how you felt during this call? (optional)","modal_call_exact_date":"The phone call happened on","modal_call_title":"Log a call","modal_call_who_called":"Who called?","notes_add_cta":"Add note","notes_create_success":"The note has been created successfully","notes_delete_confirmation":"Are you sure you want to delete this note? Deletion is permanent","notes_delete_success":"The note has been deleted successfully","notes_delete_title":"Delete a note","notes_favorite":"Add\/remove from favorites","notes_update_success":"The note has been saved successfully","people_add_birthday_reminder":"Wish happy birthday to :name","people_add_cta":"Add","people_add_firstname":"First name","people_add_gender":"Gender","people_add_import":"Do you want to import your contacts<\/a>?","people_add_lastname":"Last name (Optional)","people_add_middlename":"Middle name (Optional)","people_add_missing":"No Person Found Add New One Now","people_add_new":"Add new person","people_add_nickname":"Nickname (Optional)","people_add_reminder_for_birthday":"Create an annual reminder for the birthday","people_add_success":":name has been successfully created","people_add_title":"Add a new person","people_delete_confirmation":"Are you sure you want to delete this contact? Deletion is permanent.","people_delete_message":"Delete contact","people_delete_success":"The contact has been deleted","people_edit_email_error":"There is already a contact in your account with this email address. Please choose another one.","people_export":"Export as vCard","people_list_account_upgrade_cta":"Upgrade now","people_list_account_upgrade_title":"Upgrade your account to unlock it to its full potential.","people_list_account_usage":"Your account usage: :current\/:limit contacts","people_list_blank_cta":"Add someone","people_list_blank_title":"You don\u2019t have anyone in your account yet","people_list_clear_filter":"Clear filter","people_list_contacts_per_tags":"1 contact|:count contacts","people_list_filter_tag":"Showing all the contacts tagged with","people_list_filter_untag":"Showing all untagged contacts","people_list_firstnameAZ":"Sort by first name A \u2192 Z","people_list_firstnameZA":"Sort by first name Z \u2192 A","people_list_hide_dead":"Hide deceased people (:count)","people_list_last_updated":"Last consulted:","people_list_lastactivitydateNewtoOld":"Sort by last activity date newest to oldest","people_list_lastactivitydateOldtoNew":"Sort by last activity date oldest to newest","people_list_lastnameAZ":"Sort by last name A \u2192 Z","people_list_lastnameZA":"Sort by last name Z \u2192 A","people_list_number_kids":"1 kid|:count kids","people_list_number_reminders":"1 reminder|:count reminders","people_list_show_dead":"Show deceased people (:count)","people_list_sort":"Sort","people_list_stats":"1 contact|:count contacts","people_list_untagged":"View untagged contacts","people_not_found":"Contact not found","people_save_and_add_another_cta":"Submit and add someone else","people_search":"Search your contacts...","people_search_all":"All","people_search_next":"Next","people_search_no_results":"No results found","people_search_of":"of","people_search_page":"Page","people_search_prev":"Prev","people_search_rows_per_page":"Rows per page:","pets_bird":"Bird","pets_cat":"Cat","pets_create_success":"The pet has been successfully added","pets_delete_success":"The pet has been deleted","pets_dog":"Dog","pets_fish":"Fish","pets_hamster":"Hamster","pets_horse":"Horse","pets_kind":"Kind of pet","pets_name":"Name (optional)","pets_other":"Other","pets_rabbit":"Rabbit","pets_rat":"Rat","pets_reptile":"Reptile","pets_small_animal":"Small animal","pets_title":"Pets","pets_update_success":"The pet has been updated","photo_current_profile_pic":"Current profile picture","photo_delete":"Delete photo","photo_list_blank_desc":"You can store images about this contact. Upload one now!","photo_list_cta":"Upload photo","photo_list_title":"Related photos","photo_make_profile_pic":"Make profile picture","photo_title":"Photos","photo_upload_zone_cta":"Upload a photo","relationship_delete_confirmation":"Are you sure you want to delete this relationship? Deletion is permanent.","relationship_form_add":"Add a new relationship","relationship_form_add_choice":"Who is the relationship with?","relationship_form_add_description":"This will let you treat this person like any other contact.","relationship_form_add_no_existing_contact":"You don\u2019t have any contacts who can be related to :name at the moment.","relationship_form_add_success":"The relationship has been successfully set.","relationship_form_also_create_contact":"Create a Contact entry for this person.","relationship_form_associate_contact":"An existing contact","relationship_form_associate_dropdown":"Search and select an existing contact from the dropdown below","relationship_form_associate_dropdown_placeholder":"Search and select an existing contact","relationship_form_create_contact":"Add a new person","relationship_form_deletion_success":"The relationship has been deleted.","relationship_form_edit":"Edit an existing relationship","relationship_form_is_with":"This person is...","relationship_form_is_with_name":":name is...","relationship_unlink_confirmation":"Are you sure you want to delete this relationship? This person will not be deleted \u2013 only the relationship between the two.","reminder_frequency_day":"every day|every :number days","reminder_frequency_month":"every month|every :number months","reminder_frequency_one_time":"on :date","reminder_frequency_week":"every week|every :number weeks","reminder_frequency_year":"every year|every :number year","reminders_add_cta":"Add reminder","reminders_add_description":"Please remind me to...","reminders_add_error_custom_text":"You need to indicate a text for this reminder","reminders_add_next_time":"When is the next time you would like to be reminded about this?","reminders_add_once":"Remind me about this just once","reminders_add_optional_comment":"Optional comment","reminders_add_recurrent":"Remind me about this every","reminders_add_starting_from":"starting from the date specified above","reminders_add_title":"What would you like to be reminded of about :name?","reminders_birthday":"Birthday of :name","reminders_blank_add_activity":"Add a reminder","reminders_blank_title":"Is there something you want to be reminded of about :name?","reminders_create_success":"The reminder has been added successfully","reminders_cta":"Add a reminder","reminders_delete_confirmation":"Are you sure you want to delete this reminder?","reminders_delete_cta":"Delete","reminders_delete_success":"The reminder has been deleted successfully","reminders_description":"We will send an email for each one of the reminders below. Reminders are sent every morning the day events will happen. Reminders automatically added for birthdates can not be deleted. If you want to change those dates, edit the birthdate of the contacts.","reminders_edit_update_cta":"Update reminder","reminders_free_plan_warning":"You are on the Free plan. No emails are sent on this plan. To receive your reminders by email, upgrade your account.","reminders_next_expected_date":"on","reminders_one_time":"One time","reminders_type_month":"month","reminders_type_week":"week","reminders_type_year":"year","reminders_update_success":"The reminder has been updated successfully","section_contact_information":"Contact information","section_personal_activities":"Activities","section_personal_gifts":"Gifts","section_personal_notes":"Notes","section_personal_reminders":"Reminders","section_personal_tasks":"Tasks","set_favorite":"Favorite contacts are placed at the top of the contact list","stay_in_touch":"Stay in touch","stay_in_touch_frequency":"Stay in touch every day|Stay in touch every {count} days","stay_in_touch_invalid":"The frequency must be a number greater than 0.","stay_in_touch_modal_desc":"We can remind you by email to keep in touch with {firstname} at a regular interval.","stay_in_touch_modal_label":"Send me an email every... {count} day|Send me an email every... {count} days","stay_in_touch_modal_title":"Stay in touch","stay_in_touch_premium":"You need to upgrade your account to make use of this feature","tag_add":"Add tags","tag_add_search":"Add or search tags","tag_edit":"Edit tag","tag_no_tags":"No tags yet","tasks_add_task":"Add a task","tasks_blank_title":"You don\u2019t have any tasks yet.","tasks_complete_success":"The task has changed status successfully","tasks_delete_success":"The task has been deleted successfully","tasks_form_description":"Description (optional)","tasks_form_title":"Title","tasks_title":"Tasks","work_add_cta":"Update work information","work_edit_company":"Company (optional)","work_edit_job":"Job title (optional)","work_edit_success":"Work information have been updated with success","work_edit_title":"Update :name\u2019s job information","work_information":"Work information"},"reminder":{"type_birthday":"Wish happy birthday to","type_birthday_kid":"Wish happy birthday to the kid of","type_email":"Email","type_hangout":"Hangout with","type_lunch":"Lunch with","type_phone_call":"Call"},"settings":{"2fa_disable_description":"Disable Two Factor Authentication for your account. Be careful, your account will not be secured anymore !","2fa_disable_error":"Error when trying to disable Two Factor Authentication","2fa_disable_success":"Two Factor Authentication disabled","2fa_disable_title":"Disable Two Factor Authentication","2fa_enable_description":"Enable Two Factor Authentication to increase security with your account.","2fa_enable_error":"Error when trying to activate Two Factor Authentication","2fa_enable_error_already_set":"Two Factor Authentication is already activated","2fa_enable_otp":"Open up your two factor authentication mobile app and scan the following QR barcode:","2fa_enable_otp_help":"If your two factor authentication mobile app does not support QR barcodes, enter in the following code:","2fa_enable_otp_validate":"Please validate the new device you\u2019ve just set:","2fa_enable_success":"Two Factor Authentication activated","2fa_enable_title":"Enable Two Factor Authentication","2fa_otp_title":"Two Factor Authentication mobile application","2fa_title":"Two Factor Authentication","api_authorized_clients":"List of authorized clients","api_authorized_clients_desc":"This section lists all the clients you\u2019ve authorized to access your application data. You can revoke this authorization at anytime.","api_authorized_clients_name":"Name","api_authorized_clients_none":"There is no authorized client yet.","api_authorized_clients_scopes":"Scopes","api_authorized_clients_title":"Authorized Applications","api_description":"The API can be used to manipulate Monica\u2019s data from an external application, like a mobile application for instance.","api_endpoint":"The API endpoint for this Monica instance is:","api_help":"To use the API, a token is mandatory. You can either create a personal access token (Bearer authentication), or authorize an OAuth client to create it for you. See API documentation<\/a>.","api_oauth_clientid":"Client ID","api_oauth_clients":"Your OAuth clients","api_oauth_clients_desc":"This section lets you register your own OAuth clients.","api_oauth_clients_desc2":"Use this client id to request a new token, and convert authorization codes to access tokens. See Laravel Passport documentation<\/a> for more information.","api_oauth_create":"Create Client","api_oauth_create_new":"Create New Client","api_oauth_edit":"Edit Client","api_oauth_name":"Name","api_oauth_name_help":"Something your users will recognize and trust.","api_oauth_not_created":"You have not created any OAuth clients.","api_oauth_redirecturl":"Redirect URL","api_oauth_redirecturl_help":"Your application\u2019s authorization callback URL.","api_oauth_secret":"Secret","api_oauth_title":"OAuth Clients","api_pao_description":"Make sure you give this token to a source you trust \u2013 as they allow you to access all your data.","api_personal_access_tokens":"Personal access tokens","api_title":"API access","api_token_create":"Create Token","api_token_create_new":"Create New Token","api_token_delete":"Delete","api_token_expire":"Expires at {date}","api_token_help":"Here is your new personal access token. This is the only time it will be shown so don\u2019t lose it! You may now use this token to make API requests.","api_token_name":"Token name","api_token_not_created":"You have not created any personal access tokens.","api_token_scopes":"Scopes","api_token_title":"Personal Access Tokens","archive_cta":"Archive all your contacts","archive_desc":"This will archive all the contacts in your account.","archive_title":"Archive all your contacts in your account","currency":"Currency","dav_caldav_birthdays_export":"Export all birthdays in one file","dav_caldav_tasks_export":"Export all tasks in one file","dav_carddav_export":"Export all contacts in one file","dav_clipboard_copied":"Value copied into your clipboard","dav_connect_help":"You can connect your contacts and\/or calendars with this base url on you phone or computer.","dav_connect_help2":"Use your login (email) and password, or create an API token to authenticate.","dav_copy_help":"Copy into your clipboard","dav_description":"Here you can find all settings to use WebDAV resources for CardDAV and CalDAV exports.","dav_title":"WebDAV","dav_title_caldav":"CalDAV","dav_title_carddav":"CardDAV","dav_url_base":"Base url for all CardDAV and CalDAV resources:","dav_url_caldav_birthdays":"CalDAV url for Birthdays resources:","dav_url_caldav_tasks":"CalDAV url for Tasks resources:","dav_url_carddav":"CardDAV url for Contacts resource:","delete_cta":"Delete account","delete_desc":"Do you wish to delete your account? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.","delete_notice":"Are you sure to delete your account? There is no turning back.","delete_other_desc":"Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days \u2013 then it\u2019s completely deleted. It\u2019s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.","delete_title":"Delete your account","email":"Email address","email_help":"This is the email used to login, and this is where you\u2019ll receive your reminders.","email_placeholder":"Enter email","export_be_patient":"Click the button to start the export. It might take several minutes to process the export \u2013 please be patient and do not spam the button.","export_sql_cta":"Export to SQL","export_sql_explanation":"Exporting your data in SQL format allows you to take your data and import it to your own Monica instance. This is only valuable if you do have your own server.","export_sql_link_instructions":"Note: read the instructions<\/a> to learn more about importing this file to your instance.","export_title":"Export your account data","export_title_sql":"Export to SQL","firstname":"First name","import_blank_cta":"Import vCard","import_blank_description":"We can import vCard files that you can get from Google Contacts or your Contact manager.","import_blank_question":"Would you like to import contacts now?","import_blank_title":"You haven\u2019t imported any contacts yet.","import_cta":"Upload contacts","import_in_progress":"The import is in progress. Reload the page in one minute.","import_need_subscription":"Importing data requires a subscription.","import_report_date":"Date of the import","import_report_number_contacts":"Number of contacts in the file","import_report_number_contacts_imported":"Number of imported contacts","import_report_number_contacts_skipped":"Number of skipped contacts","import_report_status_imported":"Imported","import_report_status_skipped":"Skipped","import_report_title":"Importing report","import_report_type":"Type of import","import_result_stat":"Uploaded vCard with 1 contact (:total_imported imported, :total_skipped skipped)|Uploaded vCard with :total_contacts contacts (:total_imported imported, :total_skipped skipped)","import_stat":"You\u2019ve imported :number files so far.","import_title":"Import contacts in your account","import_upload_behaviour":"Import behaviour:","import_upload_behaviour_add":"Add new contacts, skip existing","import_upload_behaviour_help":"Note: Replacing will replace all data found in the vCard, but will keep existing contact fields.","import_upload_behaviour_replace":"Replace existing contacts","import_upload_form_file":"Your .vcf<\/code> or .vCard<\/code> file:","import_upload_rule_cant_revert":"Make sure data is accurate before uploading, as you can\u2019t undo the upload.","import_upload_rule_format":"We support .vcard<\/code> and .vcf<\/code> files.","import_upload_rule_instructions":"Export instructions for Contacts.app (macOS)<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10MB.","import_upload_rule_multiple":"For now, if your contacts have multiple email addresses or phone numbers, only the first entry will be picked up.","import_upload_rule_time":"It might take up to 1 minute to upload the contacts and process them. Be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for Contacts.app (macOS) and Google Contacts.","import_upload_rules_desc":"We do however have some rules:","import_upload_title":"Import your contacts from a vCard file","import_vcard_contact_exist":"Contact already exists","import_vcard_contact_no_firstname":"No firstname (mandatory)","import_vcard_file_no_entries":"File contains no entries","import_vcard_file_not_found":"File not found","import_vcard_parse_error":"Error when parsing the vCard entry","import_vcard_unknown_entry":"Unknown contact name","import_view_report":"View report","lastname":"Last name","layout":"Layout","layout_big":"Full width of the browser","layout_small":"Maximum 1200 pixels wide","locale":"Language used in the app","locale_ar":"Arabic","locale_cs":"Czech","locale_de":"German","locale_en":"English","locale_en-GB":"English (United Kingdom)","locale_es":"Spanish","locale_fr":"French","locale_he":"Hebrew","locale_help":"Do you want to help translating Monica or add a new language? Please follow this link for more information<\/a>.","locale_hr":"Croatian","locale_it":"Italian","locale_nl":"Dutch","locale_pt":"Portuguese","locale_pt-BR":"Portuguese (Brazil)","locale_ru":"Russian","locale_tr":"Turkish","locale_zh":"Chinese Simplified","logs_author":"By :name on :date","logs_title":"Everything that happened to this account","name":"Your name: :name","name_order":"Name order","name_order_firstname_lastname":" - John Doe","name_order_firstname_lastname_nickname":" () - John Doe (Rambo)","name_order_firstname_nickname_lastname":" () - John (Rambo) Doe","name_order_lastname_firstname":" - Doe John","name_order_lastname_firstname_nickname":" () - Doe John (Rambo)","name_order_lastname_nickname_firstname":" () - Doe (Rambo) John","name_order_nickname":" - Rambo","password_btn":"Change password","password_change":"Password change","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter a new password","password_new2":"Confirmation","password_new2_placeholder":"Retype the new password","personalisation_paid_upgrade":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription.","personalization_activity_type_add_button":"Add a new activity type","personalization_activity_type_category_add":"Add a new activity type category","personalization_activity_type_category_description":"An activity done with one of your contact can have a type and a category type. Your account comes by default with a set of predefined category types, but you can customize everything here.","personalization_activity_type_category_modal_add":"Add a new activity type category","personalization_activity_type_category_modal_delete":"Delete an activity type category","personalization_activity_type_category_modal_delete_desc":"Are you sure you want to delete this category? Deleting it will delete all associated activity types. However, activities that belong to this category will not be affected by this deletion.","personalization_activity_type_category_modal_delete_error":"We can\u2019t find this activity type category.","personalization_activity_type_category_modal_edit":"Edit an activity type category","personalization_activity_type_category_modal_question":"How should we name this new category?","personalization_activity_type_category_table_actions":"Actions","personalization_activity_type_category_table_name":"Name","personalization_activity_type_category_title":"Activity type categories","personalization_activity_type_modal_add":"Add a new activity type","personalization_activity_type_modal_delete":"Delete an activity type","personalization_activity_type_modal_delete_desc":"Are you sure you want to delete this activity type? Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_modal_delete_error":"We can\u2019t find this activity type.","personalization_activity_type_modal_edit":"Edit an activity type","personalization_activity_type_modal_question":"How should we name this new activity type?","personalization_contact_field_type_add":"Add new field type","personalization_contact_field_type_add_success":"The contact field type has been successfully added.","personalization_contact_field_type_delete_success":"The contact field type has been deleted with success.","personalization_contact_field_type_description":"Here you can configure all the different types of contact fields that you can associate to all your contacts. If in the future, a new social network appears, you will be able to add this new type of ways of contacting your contacts right here.","personalization_contact_field_type_edit_success":"The contact field type has been successfully updated.","personalization_contact_field_type_modal_delete_description":"Are you sure you want to delete this contact field type? Deleting this type of contact field will delete ALL the data with this type for all your contacts.","personalization_contact_field_type_modal_delete_title":"Delete an existing contact field type","personalization_contact_field_type_modal_edit_title":"Edit an existing contact field type","personalization_contact_field_type_modal_icon":"Icon (optional)","personalization_contact_field_type_modal_icon_help":"You can associate an icon with this contact field type. You need to add a reference to a Font Awesome icon.","personalization_contact_field_type_modal_name":"Name","personalization_contact_field_type_modal_protocol":"Protocol (optional)","personalization_contact_field_type_modal_protocol_help":"Each new contact field type can be clickable. If a protocol is set, we will use it to trigger the action that is set.","personalization_contact_field_type_modal_title":"Add a new contact field type","personalization_contact_field_type_table_actions":"Actions","personalization_contact_field_type_table_name":"Name","personalization_contact_field_type_table_protocol":"Protocol","personalization_contact_field_type_title":"Contact field types","personalization_genders_add":"Add new gender type","personalization_genders_default":"Default gender","personalization_genders_desc":"You can define as many genders as you need to. You need at least one gender type in your account.","personalization_genders_f":"Female","personalization_genders_list_contact_number":"{count} contact|{count} contacts","personalization_genders_m":"Male","personalization_genders_make_default":"Change default gender","personalization_genders_modal_add":"Add gender type","personalization_genders_modal_default":"Is this the default gender for a new contact?","personalization_genders_modal_delete":"Delete gender type","personalization_genders_modal_delete_desc":"Are you sure you want to delete {name}?","personalization_genders_modal_delete_question":"You currently have {count} contact that has this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts that have this gender. If you delete this gender, what gender should these contacts have?","personalization_genders_modal_delete_question_default":"This gender is the default one. If you delete this gender, which one will be the next default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a valid gender from the list.","personalization_genders_modal_name":"Name","personalization_genders_modal_name_help":"The name used to display the gender on a contact page.","personalization_genders_modal_sex":"Sex","personalization_genders_modal_sex_help":"Used to define the relationships, and during the VCard import\/export process.","personalization_genders_n":"None or not applicable","personalization_genders_o":"Other","personalization_genders_select_default":"Select default gender","personalization_genders_table_default":"Default","personalization_genders_table_name":"Name","personalization_genders_table_sex":"Sex","personalization_genders_title":"Gender types","personalization_genders_u":"Unknown","personalization_life_event_category_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","personalization_life_event_category_travel_experiences":"Travel & experiences","personalization_life_event_category_work_education":"Work & education","personalization_life_event_type_achievement_or_award":"Achievement or award","personalization_life_event_type_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"Bought a home","personalization_life_event_type_broken_bone":"Broken bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Dentist","personalization_life_event_type_end_of_relationship":"End of relationship","personalization_life_event_type_engagement":"Engagement","personalization_life_event_type_expecting_a_baby":"Expecting a baby","personalization_life_event_type_first_kiss":"First kiss","personalization_life_event_type_first_met":"First met","personalization_life_event_type_first_word":"First word","personalization_life_event_type_holidays":"Holidays","personalization_life_event_type_home_improvement":"Home improvement","personalization_life_event_type_loss_of_a_loved_one":"Loss of a loved one","personalization_life_event_type_marriage":"Marriage","personalization_life_event_type_military_service":"Military service","personalization_life_event_type_moved":"Moved","personalization_life_event_type_new_child":"New child","personalization_life_event_type_new_eating_habits":"New eating habits","personalization_life_event_type_new_family_member":"New family member","personalization_life_event_type_new_hobby":"New hobby","personalization_life_event_type_new_instrument":"New instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"New language","personalization_life_event_type_new_license":"New license","personalization_life_event_type_new_pet":"New pet","personalization_life_event_type_new_relationship":"New relationship","personalization_life_event_type_new_roommate":"New roommate","personalization_life_event_type_new_school":"New school","personalization_life_event_type_new_sport":"New sport","personalization_life_event_type_new_vehicle":"New vehicle","personalization_life_event_type_overcame_an_illness":"Overcame an illness","personalization_life_event_type_published_book_or_paper":"Published a book or paper","personalization_life_event_type_quit_a_habit":"Quit a habit","personalization_life_event_type_removed_braces":"Removed braces","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"Surgery","personalization_life_event_type_tattoo_or_piercing":"Tattoo or piercing","personalization_life_event_type_travel":"Travel","personalization_life_event_type_volunteer_work":"Volunteer work","personalization_life_event_type_wear_glass_or_contact":"Wear glass or contact","personalization_life_event_type_weight_loss":"Weight loss","personalization_module_desc":"Some people don\u2019t need all the features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Note that if you turn off one of these features, data will not be lost - we will simply hide the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, we can send you an email some days before the event happens. You can toggle those notifications here. Note that those notifications only apply to monthly and yearly reminders.","personalization_reminder_rule_line":"{count} day before|{count} days before","personalization_reminder_rule_save":"The change has been saved","personalization_reminder_rule_title":"Reminder rules","personalization_tab_title":"Personalize your account","personalization_title":"Here you can find different settings to configure your account. These features are more for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used","recovery_clipboard":"Codes copied in the clipboard","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes...","recovery_generate_help":"Be aware that generating new codes will invalidate previously generated codes","recovery_help_information":"You can use each recovery code once.","recovery_help_intro":"These are your recovery codes:","recovery_show":"Get recovery codes","recovery_title":"Recovery codes","reminder_time_to_send":"Time of the day reminders should be sent","reminder_time_to_send_help":"For your information, your next reminder will be sent on {dateTime}<\/span>.","reset_cta":"Reset account","reset_desc":"Do you wish to reset your account? This will remove all your contacts, and the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? There is no turning back.","reset_success":"Your account has been reset successfully","reset_title":"Reset your account","save":"Update preferences","security_help":"Change security matters for your account.","security_title":"Security","settings_success":"Preferences updated!","sidebar_personalization":"Personalization","sidebar_settings":"Account settings","sidebar_settings_api":"API","sidebar_settings_auditlogs":"Audit logs","sidebar_settings_dav":"DAV Resources","sidebar_settings_export":"Export data","sidebar_settings_import":"Import data","sidebar_settings_security":"Security","sidebar_settings_storage":"Storage","sidebar_settings_subscriptions":"Subscription","sidebar_settings_tags":"Tags management","sidebar_settings_users":"Users","storage_account_info":"Your account limit: :accountLimit Mb \/ Your current usage: :currentAccountSize Mb (:percentUsage%)","storage_description":"Here you can see all the documents and photos uploaded about your contacts.","storage_title":"Storage","storage_upgrade_notice":"Upgrade your account to be able to upload documents and photos.","stripe_error_api_connection":"Network communication with Stripe failed. Try again later.","stripe_error_authentication":"Wrong authentication with Stripe","stripe_error_card":"Your card was declined. Decline message is: :message","stripe_error_invalid_request":"Invalid parameters. Try again later.","stripe_error_rate_limit":"Too many requests with Stripe right now. Try again later.","subscriptions_account_cancel":"You can cancel subscription<\/a> anytime.","subscriptions_account_confirm_payment":"Your payment is currently incomplete, please confirm your payment<\/a>.","subscriptions_account_current_paid_plan":"You are on the :name plan. Thanks so much for being a subscriber.","subscriptions_account_current_plan":"Your current plan","subscriptions_account_free_plan":"You are on the free plan.","subscriptions_account_free_plan_benefits_import_data_vcard":"Import your contacts with vCard","subscriptions_account_free_plan_benefits_reminders":"Reminders by email","subscriptions_account_free_plan_benefits_support":"Support the project on the long run, so we can introduce more great features.","subscriptions_account_free_plan_benefits_users":"Unlimited number of users","subscriptions_account_free_plan_upgrade":"You can upgrade your account to the :name plan, which costs $:price per month. Here are the advantages:","subscriptions_account_invoices":"Invoices","subscriptions_account_invoices_download":"Download","subscriptions_account_invoices_subscription":"Subscription from :startDate to :endDate","subscriptions_account_next_billing":"Your subscription will auto-renew on :date<\/strong>.","subscriptions_account_payment":"Which payment option fits you best?","subscriptions_account_upgrade":"Upgrade your account","subscriptions_account_upgrade_choice":"Pick a plan below and join over :customers persons who upgraded their Monica.","subscriptions_account_upgrade_title":"Upgrade Monica today and have more meaningful relationships.","subscriptions_back":"Back to settings","subscriptions_downgrade_cta":"Downgrade","subscriptions_downgrade_limitations":"The free plan has limitations. In order to be able to downgrade, you need to pass the checklist below:","subscriptions_downgrade_rule_contacts":"You must not have more than :number active contacts","subscriptions_downgrade_rule_contacts_constraint":"You currently have 1 contact<\/a>.|You currently have :count contacts<\/a>.","subscriptions_downgrade_rule_invitations":"You must not have pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a> sent to people.|You currently have :count pending invitations<\/a> sent to people.","subscriptions_downgrade_rule_users":"You must have only 1 user in your account","subscriptions_downgrade_rule_users_constraint":"You currently have 1 user<\/a> in your account.|You currently have :count users<\/a> in your account.","subscriptions_downgrade_success":"You are back to the Free plan!","subscriptions_downgrade_thanks":"Thanks so much for having tried the paid plan. We keep adding new features on Monica all the time \u2013 so you might want to come back in the future to see if you might be interested in taking a subscription again.","subscriptions_downgrade_title":"Downgrade your account to the free plan","subscriptions_help_change_desc":"You can cancel anytime, no questions asked, and all by yourself \u2013 no need to contact support or whatever. However, you will not be refunded for the current period.","subscriptions_help_change_title":"What if I change my mind?","subscriptions_help_discounts_desc":"We do! Monica is free for students, and free for non-profits and charities. Just contact the support<\/a> with a proof of your status and we\u2019ll apply this special status in your account.","subscriptions_help_discounts_title":"Do you have discounts for non-profits and education?","subscriptions_help_limits_plan":"Yes. Free plans let you manage :number contacts.","subscriptions_help_limits_title":"Is there any limit to the number of contacts we can have on the free plan?","subscriptions_help_opensource_desc":"Monica is an open source project. This means it is built by an entirely benevolent community who just wants to provide a great tool for the greater good. Being open source means the code is publicly available on GitHub, and everyone can inspect it, modify it or enhance it. All the money we raise is dedicated to build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn\u2019t do it without you \u2013 literally.","subscriptions_help_opensource_title":"What is an open source project?","subscriptions_help_title":"Additional details you may be curious about","subscriptions_payment_cancelled":"This payment was cancelled.","subscriptions_payment_cancelled_title":"Payment Cancelled","subscriptions_payment_confirm_information":"Extra confirmation is needed to process your payment. Please confirm your payment by filling out your payment details below.","subscriptions_payment_confirm_title":"Confirm your :amount payment","subscriptions_payment_error_name":"Please provide your name.","subscriptions_payment_succeeded":"This payment was already successfully confirmed.","subscriptions_payment_succeeded_title":"Payment Successful","subscriptions_payment_success":"The payment was successful.","subscriptions_pdf_title":"Your :name monthly subscription","subscriptions_plan_choose":"Choose this plan","subscriptions_plan_include1":"Included with your upgrade:","subscriptions_plan_include2":"Unlimited number of contacts \u2022 Unlimited number of users \u2022 Reminders by email \u2022 Import with vCard \u2022 Personalization of the contact sheet","subscriptions_plan_include3":"100% of the profits go the development of this great open source project.","subscriptions_plan_month_bonus":"Cancel any time","subscriptions_plan_month_cost":"$5\/month","subscriptions_plan_month_title":"Pay monthly","subscriptions_plan_year_bonus":"Peace of mind for a whole year","subscriptions_plan_year_cost":"$45\/year","subscriptions_plan_year_cost_save":"you\u2019ll save 25%","subscriptions_plan_year_title":"Pay annually","subscriptions_upgrade_charge":"We\u2019ll charge your card :price now. The next charge will be on :date. If you ever change your mind, you can cancel anytime, no questions asked.","subscriptions_upgrade_charge_handled":"The payment is handled by Stripe<\/a>. No card information touches our server.","subscriptions_upgrade_choose":"You picked the :plan plan.","subscriptions_upgrade_credit":"Credit or debit card","subscriptions_upgrade_infos":"We couldn\u2019t be happier. Enter your payment info below.","subscriptions_upgrade_name":"Name on card","subscriptions_upgrade_submit":"Pay {amount}","subscriptions_upgrade_success":"Thank you! You are now subscribed.","subscriptions_upgrade_thanks":"Welcome to the community of people who try to make the world a better place.","subscriptions_upgrade_title":"Upgrade your account","subscriptions_upgrade_zip":"ZIP or postal code","tags_blank_description":"Tags work like folders, but you can add more than one tag to a contact. Go to a contact and tag a friend, right below the name. Once a contact is tagged, go back here to manage all the tags in your account.","tags_blank_title":"Tags are a great way of categorizing your contacts.","tags_list_contact_number":"1 contact|:count contacts","tags_list_delete_confirmation":"Are you sure you want to delete the tag? No contacts will be deleted, only the tag.","tags_list_delete_success":"The tag has been successfully deleted","tags_list_description":"You can organize your contacts by setting up tags. Tags work like folders, but you can add more than one tag to a contact. To add a new tag, add it on the contact itself.","tags_list_title":"Tags","temperature_scale":"Temperature scale","temperature_scale_celsius":"Celsius","temperature_scale_fahrenheit":"Fahrenheit","timezone":"Timezone","u2f_buttonAdvise":"If your security key has a button, press it.","u2f_delete_confirmation":"Are you sure you want to delete this key?","u2f_delete_success":"Key deleted","u2f_enable_description":"Add a new U2F security key","u2f_error_bad_request":"The visited URL doesn\u2019t match the App ID or your are not using HTTPS","u2f_error_configuration_unsupported":"Client configuration is not supported.","u2f_error_device_ineligible":"The presented device is not eligible for this request. For a registration request this may mean that the token is already registered, and for a sign request it may mean that the token does not know the presented key handle.","u2f_error_other_error":"An error occurred.","u2f_error_timeout":"Timeout reached before request could be satisfied.","u2f_insertKey":"Insert your security key.","u2f_key_name":"Key name:","u2f_key_name_help":"Give your key a name.","u2f_last_use":"Last use: {timestamp}","u2f_noButtonAdvise":"If it does not, remove it and insert it again.","u2f_success":"Your key is detected and validated.","u2f_title":"U2F security key","users_accept_title":"Accept invitation and create a new account","users_add_confirmation":"I confirm that I want to invite this user to my account. This person will access ALL my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same rights as you do, including inviting other users and deleting them (including you). Therefore, make sure you trust this person.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user by email to your account","users_blank_add_title":"Would you like to invite someone else?","users_blank_cta":"Invite someone","users_blank_description":"This person will have the same access that you have, and will be able to add, edit or delete contact information.","users_blank_title":"You are the only one who has access to this account.","users_error_already_invited":"You already have invited this user. Please choose another email address.","users_error_email_already_taken":"This email is already taken. Please choose another one","users_error_email_not_similar":"This is not the email of the person who\u2019ve invited you.","users_error_please_confirm":"Please confirm that you want to invite this user before proceeding with the invitation","users_invitation_deleted_confirmation_message":"The invitation has been successfully deleted","users_invitation_need_subscription":"Adding more users requires a subscription.","users_invitations_delete_confirmation":"Are you sure you want to delete this invitation?","users_list_add_user":"Invite a new user","users_list_delete_confirmation":"Are you sure to delete this user from your account?","users_list_invitations_explanation":"Below are the people you\u2019ve invited to join Monica as a collaborator.","users_list_invitations_invited_by":"invited by :name","users_list_invitations_sent_date":"sent on :date","users_list_invitations_title":"Pending invitations","users_list_title":"Users with access to your account","users_list_you":"That\u2019s you","webauthn_buttonAdvise":"If your security key has a button, press it.","webauthn_delete_confirmation":"Are you sure you want to delete this key?","webauthn_delete_success":"Key deleted","webauthn_enable_description":"Add a new security key","webauthn_error_already_used":"This key is already registered. It\u2019s not necessary to register it again.","webauthn_error_not_allowed":"The operation either timed out or was not allowed.","webauthn_insertKey":"Insert your security key.","webauthn_key_name":"Key name:","webauthn_key_name_help":"Give your key a name.","webauthn_last_use":"Last use: {timestamp}","webauthn_noButtonAdvise":"If it does not, remove it and insert it again.","webauthn_not_secured":"WebAuthn only supports secure connections. Please load this page with https scheme.","webauthn_not_supported":"Your browser doesn\u2019t currently support WebAuthn.","webauthn_success":"Your key is detected and validated.","webauthn_title":"Security key \u2014 WebAuthn protocol"},"validation":{"accepted":"The :attribute must be accepted.","active_url":"The :attribute is not a valid URL.","after":"The :attribute must be a date after :date.","after_or_equal":"The :attribute must be a date after or equal to :date.","alpha":"The :attribute may only contain letters.","alpha_dash":"The :attribute may only contain letters, numbers, and dashes.","alpha_num":"The :attribute may only contain letters and numbers.","array":"The :attribute must be an array.","attributes":[],"before":"The :attribute must be a date before :date.","before_or_equal":"The :attribute must be a date before or equal to :date.","between":{"array":"The :attribute must have between :min and :max items.","file":"The :attribute must be between :min and :max kilobytes.","numeric":"The :attribute must be between :min and :max.","string":"The :attribute must be between :min and :max characters."},"boolean":"The :attribute field must be true or false.","confirmed":"The :attribute confirmation does not match.","custom":{"attribute-name":{"rule-name":"custom-message"}},"date":"The :attribute is not a valid date.","date_format":"The :attribute does not match the format :format.","different":"The :attribute and :other must be different.","digits":"The :attribute must be :digits digits.","digits_between":"The :attribute must be between :min and :max digits.","dimensions":"The :attribute has invalid image dimensions.","distinct":"The :attribute field has a duplicate value.","email":"The :attribute must be a valid email address.","exists":"The selected :attribute is invalid.","file":"The :attribute must be a file.","filled":"The :attribute field must have a value.","image":"The :attribute must be an image.","in":"The selected :attribute is invalid.","in_array":"The :attribute field does not exist in :other.","integer":"The :attribute must be an integer.","ip":"The :attribute must be a valid IP address.","ipv4":"The :attribute must be a valid IPv4 address.","ipv6":"The :attribute must be a valid IPv6 address.","json":"The :attribute must be a valid JSON string.","max":{"array":"The :attribute may not have more than :max items.","file":"The :attribute may not be greater than :max kilobytes.","numeric":"The :attribute may not be greater than :max.","string":"The :attribute may not be greater than :max characters."},"mimes":"The :attribute must be a file of type: :values.","mimetypes":"The :attribute must be a file of type: :values.","min":{"array":"The :attribute must have at least :min items.","file":"The :attribute must be at least :min kilobytes.","numeric":"The :attribute must be at least :min.","string":"The :attribute must be at least :min characters."},"not_in":"The selected :attribute is invalid.","not_regex":"The :attribute format is invalid.","numeric":"The :attribute must be a number.","password":"The password is incorrect.","present":"The :attribute field must be present.","regex":"The :attribute format is invalid.","required":"The :attribute field is required.","required_if":"The :attribute field is required when :other is :value.","required_unless":"The :attribute field is required unless :other is in :values.","required_with":"The :attribute field is required when :values is present.","required_with_all":"The :attribute field is required when :values is present.","required_without":"The :attribute field is required when :values is not present.","required_without_all":"The :attribute field is required when none of :values are present.","same":"The :attribute and :other must match.","size":{"array":"The :attribute must contain :size items.","file":"The :attribute must be :size kilobytes.","numeric":"The :attribute must be :size.","string":"The :attribute must be :size characters."},"string":"The :attribute must be a string.","timezone":"The :attribute must be a valid zone.","unique":"The :attribute has already been taken.","uploaded":"The :attribute failed to upload.","url":"The :attribute format is invalid.","vue":{"max":{"numeric":"{field} may not be greater than {max}.","string":"{field} may not be greater than {max} characters."},"required":"{field} is required.","url":"{field} is not a valid URL."}}} +{"app":{"add":"Add","another_day":"another day","application_description":"Monica is a tool to manage your interactions with your loved ones, friends, and family.","application_og_title":"Have better relations with your loved ones. Free Online CRM for friends and family.","application_title":"Monica \u2013 personal relationship manager","back":"Back","breadcrumb_add_note":"Add a note","breadcrumb_add_significant_other":"Add significant other","breadcrumb_api":"API","breadcrumb_archived_contacts":"Archived contacts","breadcrumb_dashboard":"Dashboard","breadcrumb_dav":"DAV Resources","breadcrumb_edit_introductions":"How did you meet","breadcrumb_edit_note":"Edit a note","breadcrumb_edit_significant_other":"Edit significant other","breadcrumb_journal":"Journal","breadcrumb_list_contacts":"List of people","breadcrumb_profile":"Profile of :name","breadcrumb_settings":"Settings","breadcrumb_settings_export":"Export","breadcrumb_settings_import":"Import","breadcrumb_settings_import_report":"Import report","breadcrumb_settings_import_upload":"Upload","breadcrumb_settings_personalization":"Personalization","breadcrumb_settings_security":"Security","breadcrumb_settings_security_2fa":"Two Factor Authentication","breadcrumb_settings_subscriptions":"Subscription","breadcrumb_settings_tags":"Tags","breadcrumb_settings_users":"Users","breadcrumb_settings_users_add":"Add a user","cancel":"Cancel","close":"Close","compliance_desc":"We have changed our Terms of Use<\/a> and Privacy Policy<\/a>. By law we have to ask you to review them and accept them so you can continue to use your account.","compliance_desc_end":"We don\u2019t do anything nasty with your data or your account and we never will.","compliance_terms":"Accept new terms and privacy policy","compliance_title":"Sorry for the interruption.","confirm":"Confirm","copy":"Copy","create":"Create","date":"Date","dav_birthdays":"Birthdays","dav_birthdays_description":":name\u2019s contact\u2019s birthdays","dav_contacts":"Contacts","dav_contacts_description":":name\u2019s contacts","dav_tasks":"Tasks","dav_tasks_description":":name\u2019s tasks","default_save_success":"The data has been saved.","delete":"Delete","delete_confirm":"Sure?","done":"Done","download":"Download","edit":"Edit","emotion_adoration":"Adoration","emotion_affection":"Affection","emotion_aggravation":"Aggravation","emotion_agitation":"Agitation","emotion_agony":"Agony","emotion_alarm":"Alarm","emotion_alienation":"Alienation","emotion_amazement":"Amazement","emotion_amusement":"Amusement","emotion_anger":"Anger","emotion_anguish":"Anguish","emotion_annoyance":"Annoyance","emotion_anxiety":"Anxiety","emotion_apprehension":"Apprehension","emotion_arousal":"Arousal","emotion_astonishment":"Astonishment","emotion_attraction":"Attraction","emotion_bitterness":"Bitterness","emotion_bliss":"Bliss","emotion_caring":"Caring","emotion_cheerfulness":"Cheerfulness","emotion_compassion":"Compassion","emotion_contempt":"Contempt","emotion_contentment":"Contentment","emotion_defeat":"Defeat","emotion_dejection":"Dejection","emotion_delight":"Delight","emotion_depression":"Depression","emotion_desire":"Desire","emotion_despair":"Despair","emotion_disappointment":"Disappointment","emotion_disgust":"Disgust","emotion_dislike":"Dislike","emotion_dismay":"Dismay","emotion_displeasure":"Displeasure","emotion_distress":"Distress","emotion_dread":"Dread","emotion_eagerness":"Eagerness","emotion_ecstasy":"Ecstasy","emotion_elation":"Elation","emotion_embarrassment":"Embarrassment","emotion_enjoyment":"Enjoyment","emotion_enthrallment":"Enthrallment","emotion_enthusiasm":"Enthusiasm","emotion_envy":"Envy","emotion_euphoria":"Euphoria","emotion_exasperation":"Exasperation","emotion_excitement":"Excitement","emotion_exhilaration":"Exhilaration","emotion_fear":"Fear","emotion_ferocity":"Ferocity","emotion_fondness":"Fondness","emotion_fright":"Fright","emotion_frustration":"Frustration","emotion_fury":"Fury","emotion_gaiety":"Gaiety","emotion_gladness":"Gladness","emotion_glee":"Glee","emotion_gloom":"Gloom","emotion_glumness":"Glumness","emotion_grief":"Grief","emotion_grouchiness":"Grouchiness","emotion_grumpiness":"Grumpiness","emotion_guilt":"Guilt","emotion_happiness":"Happiness","emotion_hate":"Hate","emotion_homesickness":"Homesickness","emotion_hope":"Hope","emotion_hopelessness":"Hopelessness","emotion_horror":"Horror","emotion_hostility":"Hostility","emotion_humiliation":"Humiliation","emotion_hurt":"Hurt","emotion_hysteria":"Hysteria","emotion_infatuation":"Infatuation","emotion_insecurity":"Insecurity","emotion_insult":"Insult","emotion_irritation":"Irritation","emotion_isolation":"Isolation","emotion_jealousy":"Jealousy","emotion_jolliness":"Jolliness","emotion_joviality":"Joviality","emotion_joy":"Joy","emotion_jubilation":"Jubilation","emotion_liking":"Liking","emotion_loathing":"Loathing","emotion_loneliness":"Loneliness","emotion_longing":"Longing","emotion_love":"Love","emotion_lust":"Lust","emotion_melancholy":"Melancholy","emotion_misery":"Misery","emotion_mortification":"Mortification","emotion_neglect":"Neglect","emotion_nervousness":"Nervousness","emotion_optimism":"Optimism","emotion_outrage":"Outrage","emotion_panic":"Panic","emotion_passion":"Passion","emotion_pity":"Pity","emotion_pleasure":"Pleasure","emotion_pride":"Pride","emotion_primary_anger":"Anger","emotion_primary_fear":"Fear","emotion_primary_joy":"Joy","emotion_primary_love":"Love","emotion_primary_sadness":"Sadness","emotion_primary_surprise":"Surprise","emotion_rage":"Rage","emotion_rapture":"Rapture","emotion_regret":"Regret","emotion_rejection":"Rejection","emotion_relief":"Relief","emotion_remorse":"Remorse","emotion_resentment":"Resentment","emotion_revulsion":"Revulsion","emotion_sadness":"Sadness","emotion_satisfaction":"Satisfaction","emotion_scorn":"Scorn","emotion_secondary_affection":"Affection","emotion_secondary_cheerfulness":"Cheerfulness","emotion_secondary_contentment":"Contentment","emotion_secondary_disappointment":"Disappointment","emotion_secondary_disgust":"Disgust","emotion_secondary_enthrallment":"Enthrallment","emotion_secondary_envy":"Envy","emotion_secondary_exasperation":"Exasperation","emotion_secondary_horror":"Horror","emotion_secondary_irritation":"Irritation","emotion_secondary_longing":"Longing","emotion_secondary_lust":"Lust","emotion_secondary_neglect":"Neglect","emotion_secondary_nervousness":"Nervousness","emotion_secondary_optimism":"Optimism","emotion_secondary_pride":"Pride","emotion_secondary_rage":"Rage","emotion_secondary_relief":"Relief","emotion_secondary_sadness":"Sadness","emotion_secondary_shame":"Shame","emotion_secondary_suffering":"Suffering","emotion_secondary_surprise":"Surprise","emotion_secondary_sympathy":"Sympathy","emotion_secondary_zest":"Zest","emotion_sentimentality":"Sentimentality","emotion_shame":"Shame","emotion_shock":"Shock","emotion_sorrow":"Sorrow","emotion_spite":"Spite","emotion_suffering":"Suffering","emotion_surprise":"Surprise","emotion_sympathy":"Sympathy","emotion_tenderness":"Tenderness","emotion_tenseness":"Tenseness","emotion_terror":"Terror","emotion_thrill":"Thrill","emotion_uneasiness":"Uneasiness","emotion_unhappiness":"Unhappiness","emotion_vengefulness":"Vengefulness","emotion_woe":"Woe","emotion_worry":"Worry","emotion_wrath":"Wrath","emotion_zeal":"Zeal","emotion_zest":"Zest","error_help":"We\u2019ll be right back.","error_id":"Error ID: :id","error_maintenance":"Maintenance in progress. Be right back.","error_no_term":"There is no policy for this instance yet.","error_save":"We had an error trying to save the data.","error_title":"Whoops! Something went wrong.","error_try_again":"Something went wrong. Please try again.","error_twitter":"Follow our Twitter account<\/a> to be alerted when it\u2019s up again.","error_unauthorized":"You don\u2019t have the right to edit this resource.","error_unavailable":"Service unavailable","error_user_account":"This user does not belong to the given account.","file_selected":"1 file selected...|{count} files selected...","filter":"Filter the list","footer_modal_version_release_away":"You are 1 release behind the latest version available. You should update your instance.|You are :number releases behind the latest version available. You should update your instance.","footer_modal_version_whats_new":"What\u2019s new","footer_new_version":"A new version is available","footer_newsletter":"Newsletter","footer_privacy":"Privacy policy","footer_release":"Release notes","footer_remarks":"Any remarks?","footer_send_email":"Send me an email","footer_source_code":"Contribute","footer_version":"Version: :version","gender_female":"Woman","gender_male":"Man","gender_no_gender":"No gender","gender_none":"Rather not say","go_back":"Go back","header_changelog_link":"Product changes","header_logout_link":"Logout","header_settings_link":"Settings","load_more":"Load more","loading":"Loading...","main_nav_activities":"Activities","main_nav_cta":"Add people","main_nav_dashboard":"Dashboard","main_nav_family":"Contacts","main_nav_journal":"Journal","main_nav_tasks":"Tasks","markdown_description":"Want to format your text nicely? We support Markdown to add bold, italic, lists, and more.","markdown_link":"Read documentation","new":"new","no":"No","percent_uploaded":"{percent}% uploaded","relationship_type_bestfriend":"best friend","relationship_type_bestfriend_female":"best friend","relationship_type_bestfriend_female_with_name":":name\u2019s best friend","relationship_type_bestfriend_with_name":":name\u2019s best friend","relationship_type_boss":"boss","relationship_type_boss_female":"boss","relationship_type_boss_female_with_name":":name\u2019s boss","relationship_type_boss_with_name":":name\u2019s boss","relationship_type_child":"son","relationship_type_child_female":"daughter","relationship_type_child_female_with_name":":name\u2019s daughter","relationship_type_child_with_name":":name\u2019s son","relationship_type_colleague":"colleague","relationship_type_colleague_female":"colleague","relationship_type_colleague_female_with_name":":name\u2019s colleague","relationship_type_colleague_with_name":":name\u2019s colleague","relationship_type_cousin":"cousin","relationship_type_cousin_female":"cousin","relationship_type_cousin_female_with_name":":name\u2019s cousin","relationship_type_cousin_with_name":":name\u2019s cousin","relationship_type_date":"date","relationship_type_date_female":"date","relationship_type_date_female_with_name":":name\u2019s date","relationship_type_date_with_name":":name\u2019s date","relationship_type_ex":"ex-boyfriend","relationship_type_ex_female":"ex-girlfriend","relationship_type_ex_female_with_name":":name\u2019s ex-girlfriend","relationship_type_ex_husband":"ex-husband","relationship_type_ex_husband_female":"ex-wife","relationship_type_ex_husband_female_with_name":":name\u2019s ex-wife","relationship_type_ex_husband_with_name":":name\u2019s ex-husband","relationship_type_ex_with_name":":name\u2019s ex-boyfriend","relationship_type_friend":"friend","relationship_type_friend_female":"friend","relationship_type_friend_female_with_name":":name\u2019s friend","relationship_type_friend_with_name":":name\u2019s friend","relationship_type_godfather":"godfather","relationship_type_godfather_female":"godmother","relationship_type_godfather_female_with_name":":name\u2019s godmother","relationship_type_godfather_with_name":":name\u2019s godfather","relationship_type_godson":"godson","relationship_type_godson_female":"goddaughter","relationship_type_godson_female_with_name":":name\u2019s goddaughter","relationship_type_godson_with_name":":name\u2019s godson","relationship_type_grandchild":"grand child","relationship_type_grandchild_female":"grand child","relationship_type_grandchild_female_with_name":":name\u2019s grand child","relationship_type_grandchild_with_name":":name\u2019s grand child","relationship_type_grandparent":"grand parent","relationship_type_grandparent_female":"grand parent","relationship_type_grandparent_female_with_name":":name\u2019s grand parent","relationship_type_grandparent_with_name":":name\u2019s grand parent","relationship_type_group_family":"Family relationships","relationship_type_group_friend":"Friend relationships","relationship_type_group_love":"Love relationships","relationship_type_group_other":"Other kind of relationships","relationship_type_group_work":"Work relationships","relationship_type_inlovewith":"in love with","relationship_type_inlovewith_female":"in love with","relationship_type_inlovewith_female_with_name":"someone :name is in love with","relationship_type_inlovewith_with_name":"someone :name is in love with","relationship_type_lovedby":"loved by","relationship_type_lovedby_female":"loved by","relationship_type_lovedby_female_with_name":":name\u2019s secret lover","relationship_type_lovedby_with_name":":name\u2019s secret lover","relationship_type_lover":"lover","relationship_type_lover_female":"lover","relationship_type_lover_female_with_name":":name\u2019s lover","relationship_type_lover_with_name":":name\u2019s lover","relationship_type_mentor":"mentor","relationship_type_mentor_female":"mentor","relationship_type_mentor_female_with_name":":name\u2019s mentor","relationship_type_mentor_with_name":":name\u2019s mentor","relationship_type_nephew":"nephew","relationship_type_nephew_female":"niece","relationship_type_nephew_female_with_name":":name\u2019s niece","relationship_type_nephew_with_name":":name\u2019s nephew","relationship_type_parent":"father","relationship_type_parent_female":"mother","relationship_type_parent_female_with_name":":name\u2019s mother","relationship_type_parent_with_name":":name\u2019s father","relationship_type_partner":"significant other","relationship_type_partner_female":"significant other","relationship_type_partner_female_with_name":":name\u2019s significant other","relationship_type_partner_with_name":":name\u2019s significant other","relationship_type_protege":"protege","relationship_type_protege_female":"protege","relationship_type_protege_female_with_name":":name\u2019s protege","relationship_type_protege_with_name":":name\u2019s protege","relationship_type_sibling":"brother","relationship_type_sibling_female":"sister","relationship_type_sibling_female_with_name":":name\u2019s sister","relationship_type_sibling_with_name":":name\u2019s brother","relationship_type_spouse":"spouse","relationship_type_spouse_female":"spouse","relationship_type_spouse_female_with_name":":name\u2019s spouse","relationship_type_spouse_with_name":":name\u2019s spouse","relationship_type_stepchild":"stepson","relationship_type_stepchild_female":"stepdaughter","relationship_type_stepchild_female_with_name":":name\u2019s stepdaughter","relationship_type_stepchild_with_name":":name\u2019s stepson","relationship_type_stepparent":"stepfather","relationship_type_stepparent_female":"stepmother","relationship_type_stepparent_female_with_name":":name\u2019s stepmother","relationship_type_stepparent_with_name":":name\u2019s stepfather","relationship_type_subordinate":"subordinate","relationship_type_subordinate_female":"subordinate","relationship_type_subordinate_female_with_name":":name\u2019s subordinate","relationship_type_subordinate_with_name":":name\u2019s subordinate","relationship_type_uncle":"uncle","relationship_type_uncle_female":"aunt","relationship_type_uncle_female_with_name":":name\u2019s aunt","relationship_type_uncle_with_name":":name\u2019s uncle","remove":"Remove","retry":"Retry","revoke":"Revoke","save":"Save","save_close":"Save and close","today":"today","type":"Type","unknown":"I don\u2019t know","update":"Update","upgrade":"Upgrade to unlock","upload":"Upload","verify":"Verify","weather_clear-day":"Clear day","weather_clear-night":"Clear night","weather_cloudy":"Cloudy","weather_current_temperature_celsius":":temperature \u00b0C","weather_current_temperature_fahrenheit":":temperature \u00b0F","weather_current_title":"Current weather","weather_fog":"Fog","weather_partly-cloudy-day":"Partly cloudy day","weather_partly-cloudy-night":"Partly cloudy night","weather_rain":"Rain","weather_sleet":"Sleet","weather_snow":"Snow","weather_wind":"Wind","with":"with","yes":"Yes","yesterday":"yesterday","zoom":"Zoom"},"auth":{"2fa_one_time_password":"Two factor authentication code","2fa_otp_help":"Open up your two factor authentication mobile app and copy the code","2fa_recuperation_code":"Enter a two factor recovery code","2fa_title":"Two Factor Authentication","2fa_wrong_validation":"The two factor authentication has failed.","back_homepage":"Back to homepage","button_remember":"Remember Me","change_language":"Change language to :lang","change_language_title":"Change language:","confirmation_again":"If you want to change your email address you can click here<\/a>.","confirmation_check":"Before proceeding, please check your email for a verification link.","confirmation_fresh":"A fresh verification link has been sent to your email address.","confirmation_request_another":"If you did not receive the email click here to request another<\/a>.","confirmation_title":"Verify Your Email Address","create_account":"Create the first account by signing up<\/a>","email":"Email","email_change_current_email":"Current email address:","email_change_new":"New email address","email_change_title":"Change your email address","email_changed":"Your email address has been changed. Check your mailbox to validate it.","failed":"These credentials do not match our records.","login":"Login","login_again":"Please login again to your account","login_to_account":"Login to your account","login_with_recovery":"Login with a recovery code","mfa_auth_otp":"Authenticate with your two factor device","mfa_auth_u2f":"Authenticate with a U2F device","mfa_auth_webauthn":"Authenticate with a security key (WebAuthn)","not_authorized":"You are not authorized to execute this action","password":"Password","password_forget":"Forget your password?","password_reset":"Reset your password","password_reset_action":"Reset Password","password_reset_email":"E-Mail Address","password_reset_email_content":"Click here to reset your password:","password_reset_password":"Password","password_reset_password_confirm":"Confirm Password","password_reset_send_link":"Send Password Reset Link","password_reset_title":"Reset Password","recovery":"Recovery code","register_action":"Register","register_create_account":"You need to create an account to use Monica","register_email":"Enter a valid email address","register_email_example":"you@home","register_firstname":"First name","register_firstname_example":"eg. John","register_invitation_email":"For security purposes, please indicate the email of the person who\u2019ve invited you to join this account. This information is provided in the invitation email.","register_lastname":"Last name","register_lastname_example":"eg. Doe","register_login":"Log in<\/a> if you already have an account.","register_password":"Password","register_password_confirmation":"Password confirmation","register_password_example":"Enter a secure password","register_policy":"Signing up signifies you\u2019ve read and agree to our Privacy Policy<\/a> and Terms of use<\/a>.","register_title_create":"Create your Monica account","register_title_welcome":"Welcome to your newly installed Monica instance","signup":"Sign up","signup_disabled":"Registration is currently disabled","signup_no_account":"Don\u2019t have an account?","throttle":"Too many login attempts. Please try again in :seconds seconds.","u2f_otp_extension":"U2F is supported natively on Chrome, Firefox<\/a> and Opera. On old Firefox versions, install the U2F Support Add-on<\/a>.","use_recovery":"Or you can use a recovery code<\/a>"},"changelog":{"note":"Note: unfortunately, this page is only in English.","title":"Product changes"},"dashboard":{"dashboard_blank_cta":"Add your first contact","dashboard_blank_description":"Monica is the place to organize all the interactions you have with the ones you care about.","dashboard_blank_illustration":"Illustration by Freepik<\/a>","dashboard_blank_title":"Welcome to your account!","debts_you_owe":"You owe","notes_title":"You don\u2019t have any starred notes yet.","product_changes":"Product changes","product_view_details":"View details","reminders_next_months":"Events in the next 3 months","reminders_none":"No reminder for this month","statistics_activities":"Activities","statistics_contacts":"Contacts","statistics_gifts":"Gifts","tab_calls_blank":"You haven\u2019t logged a call yet.","tab_debts":"Debts","tab_debts_blank":"You haven\u2019t logged any debt yet.","tab_favorite_notes":"Favorite notes","tab_recent_calls":"Recent calls","tab_tasks":"Tasks","tab_tasks_blank":"You haven\u2019t any task yet.","task_add_cta":"Add a task","tasks_add_note":"Press Enter<\/kbd> to add the task.","tasks_add_task_placeholder":"What is this task about?","tasks_tab_your_contacts":"Tasks related to your contacts","tasks_tab_your_tasks":"Your tasks"},"format":{"full_date_year":"F d, Y","full_hour":"h.i A","full_month":"F","full_month_year":"F Y","short_date":"M d","short_date_year":"M d, Y","short_date_year_time":"M d, Y H:i","short_day":"D","short_month":"M","short_month_year":"M Y","short_text":"{text}\u2026"},"journal":{"delete_confirmation":"Are you sure you want to delete this journal entry?","entry_delete_success":"The journal entry has been successfully deleted.","journal_add":"Add a journal entry","journal_add_comment":"Care to add a comment (optional)?","journal_add_cta":"Save","journal_add_date":"Date","journal_add_post":"Entry","journal_add_title":"Title (optional)","journal_blank_cta":"Add your first journal entry","journal_blank_description":"The journal lets you write events that happened to you, and remember them.","journal_come_back":"Thanks. Come back tomorrow to rate your day again.","journal_created_automatically":"Created automatically","journal_description":"Note: the journal lists both manual journal entries, and automatic entries like Activities done with your contacts. While you can delete journal entries manually, you\u2019ll have to delete the activity directly on the contact page.","journal_edit":"Edit a journal entry","journal_empty":"Empty journal","journal_entry_rate":"You rated your day.","journal_entry_type_activity":"Activity","journal_entry_type_journal":"Journal entry","journal_rate":"How was your day? You can rate it once a day.","journal_show_comment":"Show comment"},"logs":{"contact_log_contact_created":"Created the contact.","contact_log_contact_description_cleared":"Cleared the description.","contact_log_contact_description_updated":"Updated the description.","contact_log_contact_work_updated":"Updated work information.","settings_log_company_created":"Created a company called :name.","settings_log_contact_created_with_name":"Added :name as a contact.","settings_log_contact_created_with_name_with_link":"Added :name<\/a> as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_cleared_with_name_with_link":"Cleared the description of :name<\/a>.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_description_updated_with_name_with_link":"Updated the description of :name<\/a>.","settings_log_contact_work_updated_with_name":"Updated work information of :name.","settings_log_contact_work_updated_with_name_with_link":"Updated work information of :name<\/a>."},"mail":{"comment":"Comment: :comment","confirmation_email_bottom":"If you did not create an account, no further action is required.","confirmation_email_button":"Verify email address","confirmation_email_intro":"To validate your email click on the button below","confirmation_email_title":"Monica \u2013 Email verification","footer_contact_info":"Add, view, complete, and change information about this contact:","footer_contact_info2":"See :name\u2019s profile","footer_contact_info2_link":"See :name\u2019s profile: :url","for":"For: :name","greetings":"Hi :username","invitation_button":"Accept invitation","invitation_expiration":"This link will expire in :count days.","invitation_intro":"You\u2019ve been invited by :name (:email) to use Monica, a nice Personal Relationship Management tool.","invitation_link":"To accept the invitation, click on the link below:","invitation_title":"Monica \u2013 You are invited by :name","notification_description":"In :count days (on :date), the following event will happen:","notification_subject_line":"You have an upcoming event","notifications_footer":"If you\u2019re having trouble clicking the \":actionText\" button, copy and paste the URL below into your web browser: [:actionURL](:actionURL)","notifications_hello":"Hello!","notifications_regards":"Regards","notifications_rights":"All rights reserved","notifications_whoops":"Whoops!","password_reset_bottom":"If you did not request a password reset, no further action is required.","password_reset_button":"Reset Password","password_reset_expiration":"This password reset link will expire in :count minutes.","password_reset_intro":"You are receiving this email because we received a password reset request for your account.","password_reset_title":"Monica \u2013 Reset Password Notification","stay_in_touch_subject_description":"You asked to be reminded to stay in touch with :name every :frequency day.|You asked to be reminded to stay in touch with :name every :frequency days.","stay_in_touch_subject_line":"Stay in touch with :name","subject_line":"Reminder for :contact","want_reminded_of":"You wanted to be reminded of :reason"},"pagination":{"next":"Next \u276f","previous":"\u276e Previous"},"passwords":{"changed":"Password changed successfully.","invalid":"Current password you entered is not correct.","reset":"Your password has been reset!","sent":"If the email you entered exists in our records, you\u2019ve been sent a password reset link.","throttled":"Please wait before retrying.","token":"This password reset token is invalid.","user":"If the email you entered exists in our records, you\u2019ve been sent a password reset link."},"people":{"activities_activity":"Activity Category","activities_add_activity":"Add activity","activities_add_category":"Indicate a category","activities_add_date_occured":"The activity happened on...","activities_add_emotions":"Add emotions","activities_add_emotions_title":"Do you want to log how you felt during this activity? (optional)","activities_add_error":"Error when adding the activity","activities_add_more_details":"Add more details","activities_add_participants":"Who, apart from {name}, participated in this activity? (optional)","activities_add_participants_cta":"Add participants","activities_add_pick_activity":"(Optional) Would you like to categorize this activity? You don\u2019t have to, but it will give you statistics later on","activities_add_success":"The activity has been added successfully","activities_add_title":"What did you do with {name}?","activities_blank_add_activity":"Add an activity","activities_blank_title":"Keep track of what you\u2019ve done with {name} in the past, and what you\u2019ve talked about","activities_delete_success":"The activity has been deleted successfully","activities_item_information":":Activity. Happened on :date","activities_list_category":"Category:","activities_list_date":"Happened on","activities_list_emotions":"Emotions felt:","activities_list_participants":"Participants:","activities_profile_number_occurences":":value activity|:value activities","activities_profile_subtitle":"You\u2019ve logged :total_activities activity with :name in total and :activities_last_twelve_months in the last 12 months so far.|You\u2019ve logged :total_activities activities with :name in total and :activities_last_twelve_months in the last 12 months so far.","activities_profile_title":"Activities report between :name and you","activities_profile_year_summary":"Here is what you two have done in :year","activities_profile_year_summary_activity_types":"Here is a breakdown of the type of activities you\u2019ve done together in :year","activities_summary":"Describe what you did","activities_update_success":"The activity has been updated successfully","activities_view_activities_report":"View activities report","activities_who_was_involved":"Who was involved?","activity_title":"Activities","activity_type_ate_at_his_place":"ate at their place","activity_type_ate_at_home":"ate at home","activity_type_ate_restaurant":"ate at a restaurant","activity_type_category_cultural_activities":"Cultural activities","activity_type_category_food":"Food","activity_type_category_simple_activities":"Simple activities","activity_type_category_sport":"Sport","activity_type_did_sport_activities_together":"did sport together","activity_type_just_hung_out":"just hung out","activity_type_picnicked":"picnicked","activity_type_talked_at_home":"just talked at home","activity_type_watched_movie_at_home":"watched a movie at home","activity_type_went_bar":"went to a bar","activity_type_went_concert":"went to a concert","activity_type_went_museum":"went to the museum","activity_type_went_play":"went to a play","activity_type_went_theater":"went to the theater","age_approximate_in_years":"around :age years old","age_exact_birthdate":"born :date","age_exact_in_years":":age years old","auditlogs_author":"By :name on :date","auditlogs_breadcrumb":"History","auditlogs_link":"History","auditlogs_title":"Everything that happened to :name","avatar_adorable_avatar":"The Adorable avatar","avatar_change_title":"Change your avatar","avatar_current":"Keep the current avatar","avatar_default_avatar":"The default avatar","avatar_gravatar":"The Gravatar associated with the email address of this person. Gravatar<\/a> is a global system that lets users associate email addresses with photos.","avatar_photo":"From a photo that you upload","avatar_question":"Which avatar would you like to use?","birthdate_not_set":"Birthdate is not set","call_blank_desc":"You called {name}","call_blank_title":"Keep track of the phone calls you\u2019ve done with {name}","call_button":"Log a call","call_delete_confirmation":"Are you sure you want to delete this call?","call_delete_success":"The call has been deleted successfully","call_emotions":"Emotions:","call_empty_comment":"No details","call_he_called":"{name} called","call_title":"Phone calls","call_you_called":"You called","calls_add_success":"The phone call has been saved.","contact_address_form_city":"City (optional)","contact_address_form_country":"Country (optional)","contact_address_form_latitude":"Latitude (numbers only) (optional)","contact_address_form_longitude":"Longitude (numbers only) (optional)","contact_address_form_name":"Label (optional)","contact_address_form_postal_code":"Postal code (optional)","contact_address_form_province":"Province (optional)","contact_address_form_street":"Street (optional)","contact_address_title":"Addresses","contact_archive":"Archive contact","contact_archive_help":"Archived contacts will not be shown on the contact list, but still appear in search results.","contact_info_address":"Lives in","contact_info_form_contact_type":"Contact type","contact_info_form_content":"Content","contact_info_form_personalize":"Personalize","contact_info_title":"Contact information","contact_unarchive":"Unarchive contact","conversation_add_another":"Add another message","conversation_add_content":"Write down what was said","conversation_add_error":"You must add at least one message.","conversation_add_how":"How did you communicate?","conversation_add_success":"The conversation has been successfully added.","conversation_add_title":"Record a new conversation","conversation_add_what_was_said":"What did you say?","conversation_add_when":"When did you have this conversation?","conversation_add_who_wrote":"Who said this message?","conversation_add_you":"You","conversation_blank":"Record conversations you have with :name on social media, SMS, ...","conversation_delete_link":"Delete the conversation","conversation_delete_success":"The conversation has been successfully deleted.","conversation_edit_delete":"Are you sure you want to delete this conversation? Deletion is permanent.","conversation_edit_success":"The conversation has been successfully updated.","conversation_edit_title":"Edit conversation","conversation_list_cta":"Log conversation","conversation_list_table_content":"Partial content (last message)","conversation_list_table_messages":"Messages","conversation_list_title":"Conversations","debt_add_add_cta":"Add debt","debt_add_amount":"the sum of","debt_add_cta":"Add debt","debt_add_reason":"for the following reason (optional)","debt_add_success":"The debt has been added successfully","debt_add_they_owe":":name owes you","debt_add_title":"Debt management","debt_add_you_owe":"You owe :name","debt_delete_confirmation":"Are you sure you want to delete this debt?","debt_delete_success":"The debt has been deleted successfully","debt_edit_success":"The debt has been updated successfully","debt_edit_update_cta":"Update debt","debt_they_owe":":name owes you :amount","debt_title":"Debts","debt_you_owe":"You owe :amount","debts_blank_title":"Manage debts you owe to :name or :name owes you","deceased_add_reminder":"Add a reminder for this date","deceased_age":"Age at death","deceased_date_label":"Deceased date","deceased_know_date":"I know the date this person died","deceased_label":"Deceased","deceased_label_with_date":"Deceased on :date","deceased_mark_person_deceased":"Mark this person as deceased","deceased_reminder_title":"Anniversary of the death of :name","document_list_blank_desc":"Here you can store documents related to this person.","document_list_cta":"Upload document","document_list_title":"Documents","document_upload_zone_cta":"Upload a file","document_upload_zone_error":"There was an error uploading the document. Please try again below.","document_upload_zone_progress":"Uploading the document...","edit_contact_information":"Edit contact information","emotion_this_made_me_feel":"This made you feel\u2026","food_preferences_add_success":"Food preferences have been saved","food_preferences_cta":"Add food preferences","food_preferences_edit_cta":"Save food preferences","food_preferences_edit_description":"Perhaps :firstname or someone in the :family\u2019s family has an allergy. Or doesn\u2019t like a specific bottle of wine. Indicate them here so you will remember it next time you invite them for dinner","food_preferences_edit_description_no_last_name":"Perhaps :firstname has an allergy. Or doesn\u2019t like a specific bottle of wine. Indicate them here so you will remember it next time you invite them for dinner","food_preferences_edit_title":"Indicate food preferences","food_preferences_title":"Food preferences","gifts_add_comment":"Comment (optional)","gifts_add_gift":"Add a gift","gifts_add_gift_already_offered":"Gift offered","gifts_add_gift_idea":"Gift idea","gifts_add_gift_name":"Gift name","gifts_add_gift_received":"Gift received","gifts_add_gift_title":"What is this gift?","gifts_add_link":"Link to the web page (optional)","gifts_add_photo":"Photo (optional)","gifts_add_photo_title":"Add a photo for this gift","gifts_add_recipient":"Recipient (optional)","gifts_add_recipient_field":"Recipient","gifts_add_someone":"This gift is for someone in {name}\u2019s family in particular","gifts_add_success":"The gift has been added successfully","gifts_add_title":"Gift management for :name","gifts_add_value":"Value (optional)","gifts_delete_confirmation":"Are you sure you want to delete this gift?","gifts_delete_cta":"Delete","gifts_delete_success":"The gift has been deleted successfully","gifts_delete_title":"Delete a gift","gifts_for":"For: {name}","gifts_ideas":"Gift ideas","gifts_link":"Link","gifts_mark_offered":"Mark as offered","gifts_offered":"Gifts offered","gifts_offered_as_an_idea":"Mark as an idea","gifts_received":"Gifts received","gifts_title":"Gifts","gifts_update_success":"The gift has been updated successfully","gifts_view_comment":"View comment","information_edit_birthdate_label":"Birthdate","information_edit_description":"Description (Optional)","information_edit_description_help":"Used on the contact list to add some context, if necessary.","information_edit_exact":"I know the exact birthdate of this person...","information_edit_firstname":"First name","information_edit_lastname":"Last name (Optional)","information_edit_max_size":"Max :size Kb.","information_edit_max_size2":"Max {size} Kb.","information_edit_not_year":"I know the day and month of the birthdate of this person, but not the year\u2026","information_edit_probably":"This person is probably...","information_edit_success":"The profile has been updated successfully","information_edit_title":"Edit :name\u2019s personal information","information_edit_unknown":"I do not know this person\u2019s age","information_no_work_defined":"No work information defined","information_work_at":"at :company","introductions_add_reminder":"Add a reminder to celebrate this encounter on the anniversary this event happened","introductions_additional_info":"Explain how and where you met","introductions_blank_cta":"Indicate how you met :name","introductions_edit_met_through":"Has someone introduced you to this person?","introductions_first_met_date":"Date you met","introductions_first_met_date_known":"This is the date we met","introductions_met_date":"Met on :date","introductions_met_through":"Met through :name<\/a>","introductions_no_first_met_date":"I don\u2019t know the date we met","introductions_no_met_through":"No one","introductions_reminder_title":"Anniversary of the day you first met","introductions_sidebar_title":"How you met","introductions_title_edit":"How did you meet :name?","introductions_update_success":"You\u2019ve successfully updated the information about how you met this person","last_activity_date":"Last activity together: :date","last_activity_date_empty":"Last activity together: unknown","last_called":"Last called: :date","last_called_empty":"Last called: unknown","life_event_blank":"Log what happens to the life of {name} for your future reference.","life_event_create_add_yearly_reminder":"Add a yearly reminder for this event","life_event_create_category":"All categories","life_event_create_date":"You do not need to indicate a month or a day - only the year is mandatory.","life_event_create_default_description":"Add information about what you know","life_event_create_default_story":"Story (optional)","life_event_create_default_title":"Title (optional)","life_event_create_life_event":"Add life event","life_event_create_success":"The life event has been added","life_event_date_it_happened":"Date it happened","life_event_delete_description":"Are you sure you want to delete this life event? Deletion is permanent.","life_event_delete_success":"The life event has been deleted","life_event_delete_title":"Delete a life event","life_event_list_cta":"Add life event","life_event_list_tab_life_events":"Life events","life_event_list_tab_other":"Notes, reminders, ...","life_event_list_title":"Life events","life_event_sentence_achievement_or_award":"Got an achievement or award","life_event_sentence_anniversary":"Anniversary","life_event_sentence_bought_a_home":"Bought a home","life_event_sentence_broken_bone":"Broke a bone","life_event_sentence_changed_beliefs":"Changed beliefs","life_event_sentence_dentist":"Went to the dentist","life_event_sentence_end_of_relationship":"Ended a relationship","life_event_sentence_engagement":"Got engaged","life_event_sentence_expecting_a_baby":"Expects a baby","life_event_sentence_first_kiss":"Kissed for the first time","life_event_sentence_first_word":"Spoke for the first time","life_event_sentence_holidays":"Went on holidays","life_event_sentence_home_improvement":"Made a home improvement","life_event_sentence_loss_of_a_loved_one":"Lost a loved one","life_event_sentence_marriage":"Got married","life_event_sentence_military_service":"Started military service","life_event_sentence_moved":"Moved","life_event_sentence_new_child":"Had a child","life_event_sentence_new_eating_habits":"Started new eating habits","life_event_sentence_new_family_member":"Added a family member","life_event_sentence_new_hobby":"Started a hobby","life_event_sentence_new_instrument":"Learned a new instrument","life_event_sentence_new_job":"Started a new job","life_event_sentence_new_language":"Learned a new language","life_event_sentence_new_license":"Got a license","life_event_sentence_new_pet":"Got a pet","life_event_sentence_new_relationship":"Started a relationship","life_event_sentence_new_roommate":"Got a roommate","life_event_sentence_new_school":"Started school","life_event_sentence_new_sport":"Started a sport","life_event_sentence_new_vehicle":"Got a new vehicle","life_event_sentence_overcame_an_illness":"Overcame an illness","life_event_sentence_published_book_or_paper":"Published a paper","life_event_sentence_quit_a_habit":"Quit a habit","life_event_sentence_removed_braces":"Removed braces","life_event_sentence_retirement":"Retired","life_event_sentence_study_abroad":"Studied abroad","life_event_sentence_surgery":"Got a surgery","life_event_sentence_tattoo_or_piercing":"Got a tattoo or piercing","life_event_sentence_travel":"Traveled","life_event_sentence_volunteer_work":"Started volunteering","life_event_sentence_wear_glass_or_contact":"Started to wear glass or contact lenses","life_event_sentence_weight_loss":"Lost weight","list_link_to_active_contacts":"You are viewing archived contacts. See the list of active contacts<\/a> instead.","list_link_to_archived_contacts":"List of archived contacts","me":"This is you","modal_call_comment":"What did you talk about? (optional)","modal_call_emotion":"Do you want to log how you felt during this call? (optional)","modal_call_exact_date":"The phone call happened on","modal_call_title":"Log a call","modal_call_who_called":"Who called?","notes_add_cta":"Add note","notes_create_success":"The note has been created successfully","notes_delete_confirmation":"Are you sure you want to delete this note? Deletion is permanent","notes_delete_success":"The note has been deleted successfully","notes_delete_title":"Delete a note","notes_favorite":"Add\/remove from favorites","notes_update_success":"The note has been saved successfully","people_add_birthday_reminder":"Wish happy birthday to :name","people_add_cta":"Add","people_add_firstname":"First name","people_add_gender":"Gender","people_add_import":"Do you want to import your contacts<\/a>?","people_add_lastname":"Last name (Optional)","people_add_middlename":"Middle name (Optional)","people_add_missing":"No Person Found Add New One Now","people_add_new":"Add new person","people_add_nickname":"Nickname (Optional)","people_add_reminder_for_birthday":"Create an annual reminder for the birthday","people_add_success":":name has been successfully created","people_add_title":"Add a new person","people_delete_confirmation":"Are you sure you want to delete this contact? Deletion is permanent.","people_delete_message":"Delete contact","people_delete_success":"The contact has been deleted","people_edit_email_error":"There is already a contact in your account with this email address. Please choose another one.","people_export":"Export as vCard","people_list_account_upgrade_cta":"Upgrade now","people_list_account_upgrade_title":"Upgrade your account to unlock it to its full potential.","people_list_account_usage":"Your account usage: :current\/:limit contacts","people_list_blank_cta":"Add someone","people_list_blank_title":"You don\u2019t have anyone in your account yet","people_list_clear_filter":"Clear filter","people_list_contacts_per_tags":"1 contact|:count contacts","people_list_filter_tag":"Showing all the contacts tagged with","people_list_filter_untag":"Showing all untagged contacts","people_list_firstnameAZ":"Sort by first name A \u2192 Z","people_list_firstnameZA":"Sort by first name Z \u2192 A","people_list_hide_dead":"Hide deceased people (:count)","people_list_last_updated":"Last consulted:","people_list_lastactivitydateNewtoOld":"Sort by last activity date newest to oldest","people_list_lastactivitydateOldtoNew":"Sort by last activity date oldest to newest","people_list_lastnameAZ":"Sort by last name A \u2192 Z","people_list_lastnameZA":"Sort by last name Z \u2192 A","people_list_number_kids":"1 kid|:count kids","people_list_number_reminders":"1 reminder|:count reminders","people_list_show_dead":"Show deceased people (:count)","people_list_sort":"Sort","people_list_stats":"1 contact|:count contacts","people_list_untagged":"View untagged contacts","people_not_found":"Contact not found","people_save_and_add_another_cta":"Submit and add someone else","people_search":"Search your contacts...","people_search_all":"All","people_search_next":"Next","people_search_no_results":"No results found","people_search_of":"of","people_search_page":"Page","people_search_prev":"Prev","people_search_rows_per_page":"Rows per page:","pets_bird":"Bird","pets_cat":"Cat","pets_create_success":"The pet has been successfully added","pets_delete_success":"The pet has been deleted","pets_dog":"Dog","pets_fish":"Fish","pets_hamster":"Hamster","pets_horse":"Horse","pets_kind":"Kind of pet","pets_name":"Name (optional)","pets_other":"Other","pets_rabbit":"Rabbit","pets_rat":"Rat","pets_reptile":"Reptile","pets_small_animal":"Small animal","pets_title":"Pets","pets_update_success":"The pet has been updated","photo_current_profile_pic":"Current profile picture","photo_delete":"Delete photo","photo_list_blank_desc":"You can store images about this contact. Upload one now!","photo_list_cta":"Upload photo","photo_list_title":"Related photos","photo_make_profile_pic":"Make profile picture","photo_title":"Photos","photo_upload_zone_cta":"Upload a photo","relationship_delete_confirmation":"Are you sure you want to delete this relationship? Deletion is permanent.","relationship_form_add":"Add a new relationship","relationship_form_add_choice":"Who is the relationship with?","relationship_form_add_description":"This will let you treat this person like any other contact.","relationship_form_add_no_existing_contact":"You don\u2019t have any contacts who can be related to :name at the moment.","relationship_form_add_success":"The relationship has been successfully set.","relationship_form_also_create_contact":"Create a Contact entry for this person.","relationship_form_associate_contact":"An existing contact","relationship_form_associate_dropdown":"Search and select an existing contact from the dropdown below","relationship_form_associate_dropdown_placeholder":"Search and select an existing contact","relationship_form_create_contact":"Add a new person","relationship_form_deletion_success":"The relationship has been deleted.","relationship_form_edit":"Edit an existing relationship","relationship_form_is_with":"This person is...","relationship_form_is_with_name":":name is...","relationship_unlink_confirmation":"Are you sure you want to delete this relationship? This person will not be deleted \u2013 only the relationship between the two.","reminder_frequency_day":"every day|every :number days","reminder_frequency_month":"every month|every :number months","reminder_frequency_one_time":"on :date","reminder_frequency_week":"every week|every :number weeks","reminder_frequency_year":"every year|every :number year","reminders_add_cta":"Add reminder","reminders_add_description":"Please remind me to...","reminders_add_error_custom_text":"You need to indicate a text for this reminder","reminders_add_next_time":"When is the next time you would like to be reminded about this?","reminders_add_once":"Remind me about this just once","reminders_add_optional_comment":"Optional comment","reminders_add_recurrent":"Remind me about this every","reminders_add_starting_from":"starting from the date specified above","reminders_add_title":"What would you like to be reminded of about :name?","reminders_birthday":"Birthday of :name","reminders_blank_add_activity":"Add a reminder","reminders_blank_title":"Is there something you want to be reminded of about :name?","reminders_create_success":"The reminder has been added successfully","reminders_cta":"Add a reminder","reminders_delete_confirmation":"Are you sure you want to delete this reminder?","reminders_delete_cta":"Delete","reminders_delete_success":"The reminder has been deleted successfully","reminders_description":"We will send an email for each one of the reminders below. Reminders are sent every morning the day events will happen. Reminders automatically added for birthdates can not be deleted. If you want to change those dates, edit the birthdate of the contacts.","reminders_edit_update_cta":"Update reminder","reminders_free_plan_warning":"You are on the Free plan. No emails are sent on this plan. To receive your reminders by email, upgrade your account.","reminders_next_expected_date":"on","reminders_one_time":"One time","reminders_type_month":"month","reminders_type_week":"week","reminders_type_year":"year","reminders_update_success":"The reminder has been updated successfully","section_contact_information":"Contact information","section_personal_activities":"Activities","section_personal_gifts":"Gifts","section_personal_notes":"Notes","section_personal_reminders":"Reminders","section_personal_tasks":"Tasks","set_favorite":"Favorite contacts are placed at the top of the contact list","stay_in_touch":"Stay in touch","stay_in_touch_frequency":"Stay in touch every day|Stay in touch every {count} days","stay_in_touch_invalid":"The frequency must be a number greater than 0.","stay_in_touch_modal_desc":"We can remind you by email to keep in touch with {firstname} at a regular interval.","stay_in_touch_modal_label":"Send me an email every... {count} day|Send me an email every... {count} days","stay_in_touch_modal_title":"Stay in touch","stay_in_touch_premium":"You need to upgrade your account to make use of this feature","tag_add":"Add tags","tag_add_search":"Add or search tags","tag_edit":"Edit tag","tag_no_tags":"No tags yet","tasks_add_task":"Add a task","tasks_blank_title":"You don\u2019t have any tasks yet.","tasks_complete_success":"The task has changed status successfully","tasks_delete_success":"The task has been deleted successfully","tasks_form_description":"Description (optional)","tasks_form_title":"Title","tasks_title":"Tasks","work_add_cta":"Update work information","work_edit_company":"Company (optional)","work_edit_job":"Job title (optional)","work_edit_success":"Work information have been updated with success","work_edit_title":"Update :name\u2019s job information","work_information":"Work information"},"reminder":{"type_birthday":"Wish happy birthday to","type_birthday_kid":"Wish happy birthday to the kid of","type_email":"Email","type_hangout":"Hangout with","type_lunch":"Lunch with","type_phone_call":"Call"},"settings":{"2fa_disable_description":"Disable Two Factor Authentication for your account. Be careful, your account will not be secured anymore !","2fa_disable_error":"Error when trying to disable Two Factor Authentication","2fa_disable_success":"Two Factor Authentication disabled","2fa_disable_title":"Disable Two Factor Authentication","2fa_enable_description":"Enable Two Factor Authentication to increase security with your account.","2fa_enable_error":"Error when trying to activate Two Factor Authentication","2fa_enable_error_already_set":"Two Factor Authentication is already activated","2fa_enable_otp":"Open up your two factor authentication mobile app and scan the following QR barcode:","2fa_enable_otp_help":"If your two factor authentication mobile app does not support QR barcodes, enter in the following code:","2fa_enable_otp_validate":"Please validate the new device you\u2019ve just set:","2fa_enable_success":"Two Factor Authentication activated","2fa_enable_title":"Enable Two Factor Authentication","2fa_otp_title":"Two Factor Authentication mobile application","2fa_title":"Two Factor Authentication","api_authorized_clients":"List of authorized clients","api_authorized_clients_desc":"This section lists all the clients you\u2019ve authorized to access your application data. You can revoke this authorization at anytime.","api_authorized_clients_name":"Name","api_authorized_clients_none":"There is no authorized client yet.","api_authorized_clients_scopes":"Scopes","api_authorized_clients_title":"Authorized Applications","api_description":"The API can be used to manipulate Monica\u2019s data from an external application, like a mobile application for instance.","api_endpoint":"The API endpoint for this Monica instance is:","api_help":"To use the API, a token is mandatory. You can either create a personal access token (Bearer authentication), or authorize an OAuth client to create it for you. See API documentation<\/a>.","api_oauth_clientid":"Client ID","api_oauth_clients":"Your OAuth clients","api_oauth_clients_desc":"This section lets you register your own OAuth clients.","api_oauth_clients_desc2":"Use this client id to request a new token, and convert authorization codes to access tokens. See Laravel Passport documentation<\/a> for more information.","api_oauth_create":"Create Client","api_oauth_create_new":"Create New Client","api_oauth_edit":"Edit Client","api_oauth_name":"Name","api_oauth_name_help":"Something your users will recognize and trust.","api_oauth_not_created":"You have not created any OAuth clients.","api_oauth_redirecturl":"Redirect URL","api_oauth_redirecturl_help":"Your application\u2019s authorization callback URL.","api_oauth_secret":"Secret","api_oauth_title":"OAuth Clients","api_pao_description":"Make sure you give this token to a source you trust \u2013 as they allow you to access all your data.","api_personal_access_tokens":"Personal access tokens","api_title":"API access","api_token_create":"Create Token","api_token_create_new":"Create New Token","api_token_delete":"Delete","api_token_expire":"Expires at {date}","api_token_help":"Here is your new personal access token. This is the only time it will be shown so don\u2019t lose it! You may now use this token to make API requests.","api_token_name":"Token name","api_token_not_created":"You have not created any personal access tokens.","api_token_scopes":"Scopes","api_token_title":"Personal Access Tokens","archive_cta":"Archive all your contacts","archive_desc":"This will archive all the contacts in your account.","archive_title":"Archive all your contacts in your account","currency":"Currency","dav_caldav_birthdays_export":"Export all birthdays in one file","dav_caldav_tasks_export":"Export all tasks in one file","dav_carddav_export":"Export all contacts in one file","dav_clipboard_copied":"Value copied into your clipboard","dav_connect_help":"You can connect your contacts and\/or calendars with this base url on you phone or computer.","dav_connect_help2":"Use your login (email) and password, or create an API token to authenticate.","dav_copy_help":"Copy into your clipboard","dav_description":"Here you can find all settings to use WebDAV resources for CardDAV and CalDAV exports.","dav_title":"WebDAV","dav_title_caldav":"CalDAV","dav_title_carddav":"CardDAV","dav_url_base":"Base url for all CardDAV and CalDAV resources:","dav_url_caldav_birthdays":"CalDAV url for Birthdays resources:","dav_url_caldav_tasks":"CalDAV url for Tasks resources:","dav_url_carddav":"CardDAV url for Contacts resource:","delete_cta":"Delete account","delete_desc":"Do you wish to delete your account? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.","delete_notice":"Are you sure to delete your account? There is no turning back.","delete_other_desc":"Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days \u2013 then it\u2019s completely deleted. It\u2019s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.","delete_title":"Delete your account","email":"Email address","email_help":"This is the email used to login, and this is where you\u2019ll receive your reminders.","email_placeholder":"Enter email","export_be_patient":"Click the button to start the export. It might take several minutes to process the export \u2013 please be patient and do not spam the button.","export_sql_cta":"Export to SQL","export_sql_explanation":"Exporting your data in SQL format allows you to take your data and import it to your own Monica instance. This is only valuable if you do have your own server.","export_sql_link_instructions":"Note: read the instructions<\/a> to learn more about importing this file to your instance.","export_title":"Export your account data","export_title_sql":"Export to SQL","firstname":"First name","import_blank_cta":"Import vCard","import_blank_description":"We can import vCard files that you can get from Google Contacts or your Contact manager.","import_blank_question":"Would you like to import contacts now?","import_blank_title":"You haven\u2019t imported any contacts yet.","import_cta":"Upload contacts","import_in_progress":"The import is in progress. Reload the page in one minute.","import_need_subscription":"Importing data requires a subscription.","import_report_date":"Date of the import","import_report_number_contacts":"Number of contacts in the file","import_report_number_contacts_imported":"Number of imported contacts","import_report_number_contacts_skipped":"Number of skipped contacts","import_report_status_imported":"Imported","import_report_status_skipped":"Skipped","import_report_title":"Importing report","import_report_type":"Type of import","import_result_stat":"Uploaded vCard with 1 contact (:total_imported imported, :total_skipped skipped)|Uploaded vCard with :total_contacts contacts (:total_imported imported, :total_skipped skipped)","import_stat":"You\u2019ve imported :number files so far.","import_title":"Import contacts in your account","import_upload_behaviour":"Import behaviour:","import_upload_behaviour_add":"Add new contacts, skip existing","import_upload_behaviour_help":"Note: Replacing will replace all data found in the vCard, but will keep existing contact fields.","import_upload_behaviour_replace":"Replace existing contacts","import_upload_form_file":"Your .vcf<\/code> or .vCard<\/code> file:","import_upload_rule_cant_revert":"Make sure data is accurate before uploading, as you can\u2019t undo the upload.","import_upload_rule_format":"We support .vcard<\/code> and .vcf<\/code> files.","import_upload_rule_instructions":"Export instructions for Contacts.app (macOS)<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10MB.","import_upload_rule_multiple":"For now, if your contacts have multiple email addresses or phone numbers, only the first entry will be picked up.","import_upload_rule_time":"It might take up to 1 minute to upload the contacts and process them. Be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for Contacts.app (macOS) and Google Contacts.","import_upload_rules_desc":"We do however have some rules:","import_upload_title":"Import your contacts from a vCard file","import_vcard_contact_exist":"Contact already exists","import_vcard_contact_no_firstname":"No firstname (mandatory)","import_vcard_file_no_entries":"File contains no entries","import_vcard_file_not_found":"File not found","import_vcard_parse_error":"Error when parsing the vCard entry","import_vcard_unknown_entry":"Unknown contact name","import_view_report":"View report","lastname":"Last name","layout":"Layout","layout_big":"Full width of the browser","layout_small":"Maximum 1200 pixels wide","locale":"Language used in the app","locale_ar":"Arabic","locale_cs":"Czech","locale_de":"German","locale_en":"English","locale_en-GB":"English (United Kingdom)","locale_es":"Spanish","locale_fr":"French","locale_he":"Hebrew","locale_help":"Do you want to help translating Monica or add a new language? Please follow this link for more information<\/a>.","locale_hr":"Croatian","locale_it":"Italian","locale_nl":"Dutch","locale_pt":"Portuguese","locale_pt-BR":"Portuguese (Brazil)","locale_ru":"Russian","locale_tr":"Turkish","locale_zh":"Chinese Simplified","logs_author":"By :name on :date","logs_title":"Everything that happened to this account","name":"Your name: :name","name_order":"Name order","name_order_firstname_lastname":" - John Doe","name_order_firstname_lastname_nickname":" () - John Doe (Rambo)","name_order_firstname_nickname_lastname":" () - John (Rambo) Doe","name_order_lastname_firstname":" - Doe John","name_order_lastname_firstname_nickname":" () - Doe John (Rambo)","name_order_lastname_nickname_firstname":" () - Doe (Rambo) John","name_order_nickname":" - Rambo","password_btn":"Change password","password_change":"Password change","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter a new password","password_new2":"Confirmation","password_new2_placeholder":"Retype the new password","personalisation_paid_upgrade":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription.","personalization_activity_type_add_button":"Add a new activity type","personalization_activity_type_category_add":"Add a new activity type category","personalization_activity_type_category_description":"An activity done with one of your contact can have a type and a category type. Your account comes by default with a set of predefined category types, but you can customize everything here.","personalization_activity_type_category_modal_add":"Add a new activity type category","personalization_activity_type_category_modal_delete":"Delete an activity type category","personalization_activity_type_category_modal_delete_desc":"Are you sure you want to delete this category? Deleting it will delete all associated activity types. However, activities that belong to this category will not be affected by this deletion.","personalization_activity_type_category_modal_delete_error":"We can\u2019t find this activity type category.","personalization_activity_type_category_modal_edit":"Edit an activity type category","personalization_activity_type_category_modal_question":"How should we name this new category?","personalization_activity_type_category_table_actions":"Actions","personalization_activity_type_category_table_name":"Name","personalization_activity_type_category_title":"Activity type categories","personalization_activity_type_modal_add":"Add a new activity type","personalization_activity_type_modal_delete":"Delete an activity type","personalization_activity_type_modal_delete_desc":"Are you sure you want to delete this activity type? Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_modal_delete_error":"We can\u2019t find this activity type.","personalization_activity_type_modal_edit":"Edit an activity type","personalization_activity_type_modal_question":"How should we name this new activity type?","personalization_contact_field_type_add":"Add new field type","personalization_contact_field_type_add_success":"The contact field type has been successfully added.","personalization_contact_field_type_delete_success":"The contact field type has been deleted with success.","personalization_contact_field_type_description":"Here you can configure all the different types of contact fields that you can associate to all your contacts. If in the future, a new social network appears, you will be able to add this new type of ways of contacting your contacts right here.","personalization_contact_field_type_edit_success":"The contact field type has been successfully updated.","personalization_contact_field_type_modal_delete_description":"Are you sure you want to delete this contact field type? Deleting this type of contact field will delete ALL the data with this type for all your contacts.","personalization_contact_field_type_modal_delete_title":"Delete an existing contact field type","personalization_contact_field_type_modal_edit_title":"Edit an existing contact field type","personalization_contact_field_type_modal_icon":"Icon (optional)","personalization_contact_field_type_modal_icon_help":"You can associate an icon with this contact field type. You need to add a reference to a Font Awesome icon.","personalization_contact_field_type_modal_name":"Name","personalization_contact_field_type_modal_protocol":"Protocol (optional)","personalization_contact_field_type_modal_protocol_help":"Each new contact field type can be clickable. If a protocol is set, we will use it to trigger the action that is set.","personalization_contact_field_type_modal_title":"Add a new contact field type","personalization_contact_field_type_table_actions":"Actions","personalization_contact_field_type_table_name":"Name","personalization_contact_field_type_table_protocol":"Protocol","personalization_contact_field_type_title":"Contact field types","personalization_genders_add":"Add new gender type","personalization_genders_default":"Default gender","personalization_genders_desc":"You can define as many genders as you need to. You need at least one gender type in your account.","personalization_genders_f":"Female","personalization_genders_list_contact_number":"{count} contact|{count} contacts","personalization_genders_m":"Male","personalization_genders_make_default":"Change default gender","personalization_genders_modal_add":"Add gender type","personalization_genders_modal_default":"Is this the default gender for a new contact?","personalization_genders_modal_delete":"Delete gender type","personalization_genders_modal_delete_desc":"Are you sure you want to delete {name}?","personalization_genders_modal_delete_question":"You currently have {count} contact that has this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts that have this gender. If you delete this gender, what gender should these contacts have?","personalization_genders_modal_delete_question_default":"This gender is the default one. If you delete this gender, which one will be the next default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a valid gender from the list.","personalization_genders_modal_name":"Name","personalization_genders_modal_name_help":"The name used to display the gender on a contact page.","personalization_genders_modal_sex":"Sex","personalization_genders_modal_sex_help":"Used to define the relationships, and during the VCard import\/export process.","personalization_genders_n":"None or not applicable","personalization_genders_o":"Other","personalization_genders_select_default":"Select default gender","personalization_genders_table_default":"Default","personalization_genders_table_name":"Name","personalization_genders_table_sex":"Sex","personalization_genders_title":"Gender types","personalization_genders_u":"Unknown","personalization_life_event_category_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","personalization_life_event_category_travel_experiences":"Travel & experiences","personalization_life_event_category_work_education":"Work & education","personalization_life_event_type_achievement_or_award":"Achievement or award","personalization_life_event_type_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"Bought a home","personalization_life_event_type_broken_bone":"Broken bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Dentist","personalization_life_event_type_end_of_relationship":"End of relationship","personalization_life_event_type_engagement":"Engagement","personalization_life_event_type_expecting_a_baby":"Expecting a baby","personalization_life_event_type_first_kiss":"First kiss","personalization_life_event_type_first_met":"First met","personalization_life_event_type_first_word":"First word","personalization_life_event_type_holidays":"Holidays","personalization_life_event_type_home_improvement":"Home improvement","personalization_life_event_type_loss_of_a_loved_one":"Loss of a loved one","personalization_life_event_type_marriage":"Marriage","personalization_life_event_type_military_service":"Military service","personalization_life_event_type_moved":"Moved","personalization_life_event_type_new_child":"New child","personalization_life_event_type_new_eating_habits":"New eating habits","personalization_life_event_type_new_family_member":"New family member","personalization_life_event_type_new_hobby":"New hobby","personalization_life_event_type_new_instrument":"New instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"New language","personalization_life_event_type_new_license":"New license","personalization_life_event_type_new_pet":"New pet","personalization_life_event_type_new_relationship":"New relationship","personalization_life_event_type_new_roommate":"New roommate","personalization_life_event_type_new_school":"New school","personalization_life_event_type_new_sport":"New sport","personalization_life_event_type_new_vehicle":"New vehicle","personalization_life_event_type_overcame_an_illness":"Overcame an illness","personalization_life_event_type_published_book_or_paper":"Published a book or paper","personalization_life_event_type_quit_a_habit":"Quit a habit","personalization_life_event_type_removed_braces":"Removed braces","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"Surgery","personalization_life_event_type_tattoo_or_piercing":"Tattoo or piercing","personalization_life_event_type_travel":"Travel","personalization_life_event_type_volunteer_work":"Volunteer work","personalization_life_event_type_wear_glass_or_contact":"Wear glass or contact","personalization_life_event_type_weight_loss":"Weight loss","personalization_module_desc":"Some people don\u2019t need all the features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Note that if you turn off one of these features, data will not be lost - we will simply hide the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, we can send you an email some days before the event happens. You can toggle those notifications here. Note that those notifications only apply to monthly and yearly reminders.","personalization_reminder_rule_line":"{count} day before|{count} days before","personalization_reminder_rule_save":"The change has been saved","personalization_reminder_rule_title":"Reminder rules","personalization_tab_title":"Personalize your account","personalization_title":"Here you can find different settings to configure your account. These features are more for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used","recovery_clipboard":"Codes copied in the clipboard","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes...","recovery_generate_help":"Be aware that generating new codes will invalidate previously generated codes","recovery_help_information":"You can use each recovery code once.","recovery_help_intro":"These are your recovery codes:","recovery_show":"Get recovery codes","recovery_title":"Recovery codes","reminder_time_to_send":"Time of the day reminders should be sent","reminder_time_to_send_help":"For your information, your next reminder will be sent on {dateTime}<\/span>.","reset_cta":"Reset account","reset_desc":"Do you wish to reset your account? This will remove all your contacts, and the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? There is no turning back.","reset_success":"Your account has been reset successfully","reset_title":"Reset your account","save":"Update preferences","security_help":"Change security matters for your account.","security_title":"Security","settings_success":"Preferences updated!","sidebar_personalization":"Personalization","sidebar_settings":"Account settings","sidebar_settings_api":"API","sidebar_settings_auditlogs":"Audit logs","sidebar_settings_dav":"DAV Resources","sidebar_settings_export":"Export data","sidebar_settings_import":"Import data","sidebar_settings_security":"Security","sidebar_settings_storage":"Storage","sidebar_settings_subscriptions":"Subscription","sidebar_settings_tags":"Tags management","sidebar_settings_users":"Users","storage_account_info":"Your account limit: :accountLimit Mb \/ Your current usage: :currentAccountSize Mb (:percentUsage%)","storage_description":"Here you can see all the documents and photos uploaded about your contacts.","storage_title":"Storage","storage_upgrade_notice":"Upgrade your account to be able to upload documents and photos.","stripe_error_api_connection":"Network communication with Stripe failed. Try again later.","stripe_error_authentication":"Wrong authentication with Stripe","stripe_error_card":"Your card was declined. Decline message is: :message","stripe_error_invalid_request":"Invalid parameters. Try again later.","stripe_error_rate_limit":"Too many requests with Stripe right now. Try again later.","subscriptions_account_cancel":"You can cancel subscription<\/a> anytime.","subscriptions_account_confirm_payment":"Your payment is currently incomplete, please confirm your payment<\/a>.","subscriptions_account_current_paid_plan":"You are on the :name plan. Thanks so much for being a subscriber.","subscriptions_account_current_plan":"Your current plan","subscriptions_account_free_plan":"You are on the free plan.","subscriptions_account_free_plan_benefits_import_data_vcard":"Import your contacts with vCard","subscriptions_account_free_plan_benefits_reminders":"Reminders by email","subscriptions_account_free_plan_benefits_support":"Support the project on the long run, so we can introduce more great features.","subscriptions_account_free_plan_benefits_users":"Unlimited number of users","subscriptions_account_free_plan_upgrade":"You can upgrade your account to the :name plan, which costs $:price per month. Here are the advantages:","subscriptions_account_invoices":"Invoices","subscriptions_account_invoices_download":"Download","subscriptions_account_invoices_subscription":"Subscription from :startDate to :endDate","subscriptions_account_next_billing":"Your subscription will auto-renew on :date<\/strong>.","subscriptions_account_payment":"Which payment option fits you best?","subscriptions_account_upgrade":"Upgrade your account","subscriptions_account_upgrade_choice":"Pick a plan below and join over :customers persons who upgraded their Monica.","subscriptions_account_upgrade_title":"Upgrade Monica today and have more meaningful relationships.","subscriptions_back":"Back to settings","subscriptions_downgrade_cta":"Downgrade","subscriptions_downgrade_limitations":"The free plan has limitations. In order to be able to downgrade, you need to pass the checklist below:","subscriptions_downgrade_rule_contacts":"You must not have more than :number active contacts","subscriptions_downgrade_rule_contacts_constraint":"You currently have 1 contact<\/a>.|You currently have :count contacts<\/a>.","subscriptions_downgrade_rule_invitations":"You must not have pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a> sent to people.|You currently have :count pending invitations<\/a> sent to people.","subscriptions_downgrade_rule_users":"You must have only 1 user in your account","subscriptions_downgrade_rule_users_constraint":"You currently have 1 user<\/a> in your account.|You currently have :count users<\/a> in your account.","subscriptions_downgrade_success":"You are back to the Free plan!","subscriptions_downgrade_thanks":"Thanks so much for having tried the paid plan. We keep adding new features on Monica all the time \u2013 so you might want to come back in the future to see if you might be interested in taking a subscription again.","subscriptions_downgrade_title":"Downgrade your account to the free plan","subscriptions_help_change_desc":"You can cancel anytime, no questions asked, and all by yourself \u2013 no need to contact support or whatever. However, you will not be refunded for the current period.","subscriptions_help_change_title":"What if I change my mind?","subscriptions_help_discounts_desc":"We do! Monica is free for students, and free for non-profits and charities. Just contact the support<\/a> with a proof of your status and we\u2019ll apply this special status in your account.","subscriptions_help_discounts_title":"Do you have discounts for non-profits and education?","subscriptions_help_limits_plan":"Yes. Free plans let you manage :number contacts.","subscriptions_help_limits_title":"Is there any limit to the number of contacts we can have on the free plan?","subscriptions_help_opensource_desc":"Monica is an open source project. This means it is built by an entirely benevolent community who just wants to provide a great tool for the greater good. Being open source means the code is publicly available on GitHub, and everyone can inspect it, modify it or enhance it. All the money we raise is dedicated to build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn\u2019t do it without you \u2013 literally.","subscriptions_help_opensource_title":"What is an open source project?","subscriptions_help_title":"Additional details you may be curious about","subscriptions_payment_cancelled":"This payment was cancelled.","subscriptions_payment_cancelled_title":"Payment Cancelled","subscriptions_payment_confirm_information":"Extra confirmation is needed to process your payment. Please confirm your payment by filling out your payment details below.","subscriptions_payment_confirm_title":"Confirm your :amount payment","subscriptions_payment_error_name":"Please provide your name.","subscriptions_payment_succeeded":"This payment was already successfully confirmed.","subscriptions_payment_succeeded_title":"Payment Successful","subscriptions_payment_success":"The payment was successful.","subscriptions_pdf_title":"Your :name monthly subscription","subscriptions_plan_choose":"Choose this plan","subscriptions_plan_include1":"Included with your upgrade:","subscriptions_plan_include2":"Unlimited number of contacts \u2022 Unlimited number of users \u2022 Reminders by email \u2022 Import with vCard \u2022 Personalization of the contact sheet","subscriptions_plan_include3":"100% of the profits go the development of this great open source project.","subscriptions_plan_month_bonus":"Cancel any time","subscriptions_plan_month_cost":"$5\/month","subscriptions_plan_month_title":"Pay monthly","subscriptions_plan_year_bonus":"Peace of mind for a whole year","subscriptions_plan_year_cost":"$45\/year","subscriptions_plan_year_cost_save":"you\u2019ll save 25%","subscriptions_plan_year_title":"Pay annually","subscriptions_upgrade_charge":"We\u2019ll charge your card :price now. The next charge will be on :date. If you ever change your mind, you can cancel anytime, no questions asked.","subscriptions_upgrade_charge_handled":"The payment is handled by Stripe<\/a>. No card information touches our server.","subscriptions_upgrade_choose":"You picked the :plan plan.","subscriptions_upgrade_credit":"Credit or debit card","subscriptions_upgrade_infos":"We couldn\u2019t be happier. Enter your payment info below.","subscriptions_upgrade_name":"Name on card","subscriptions_upgrade_submit":"Pay {amount}","subscriptions_upgrade_success":"Thank you! You are now subscribed.","subscriptions_upgrade_thanks":"Welcome to the community of people who try to make the world a better place.","subscriptions_upgrade_title":"Upgrade your account","subscriptions_upgrade_zip":"ZIP or postal code","tags_blank_description":"Tags work like folders, but you can add more than one tag to a contact. Go to a contact and tag a friend, right below the name. Once a contact is tagged, go back here to manage all the tags in your account.","tags_blank_title":"Tags are a great way of categorizing your contacts.","tags_list_contact_number":"1 contact|:count contacts","tags_list_delete_confirmation":"Are you sure you want to delete the tag? No contacts will be deleted, only the tag.","tags_list_delete_success":"The tag has been successfully deleted","tags_list_description":"You can organize your contacts by setting up tags. Tags work like folders, but you can add more than one tag to a contact. To add a new tag, add it on the contact itself.","tags_list_title":"Tags","temperature_scale":"Temperature scale","temperature_scale_celsius":"Celsius","temperature_scale_fahrenheit":"Fahrenheit","timezone":"Timezone","u2f_buttonAdvise":"If your security key has a button, press it.","u2f_delete_confirmation":"Are you sure you want to delete this key?","u2f_delete_success":"Key deleted","u2f_enable_description":"Add a new U2F security key","u2f_error_bad_request":"The visited URL doesn\u2019t match the App ID or your are not using HTTPS","u2f_error_configuration_unsupported":"Client configuration is not supported.","u2f_error_device_ineligible":"The presented device is not eligible for this request. For a registration request this may mean that the token is already registered, and for a sign request it may mean that the token does not know the presented key handle.","u2f_error_other_error":"An error occurred.","u2f_error_timeout":"Timeout reached before request could be satisfied.","u2f_insertKey":"Insert your security key.","u2f_key_name":"Key name:","u2f_key_name_help":"Give your key a name.","u2f_last_use":"Last use: {timestamp}","u2f_noButtonAdvise":"If it does not, remove it and insert it again.","u2f_success":"Your key is detected and validated.","u2f_title":"U2F security key","users_accept_title":"Accept invitation and create a new account","users_add_confirmation":"I confirm that I want to invite this user to my account. This person will access ALL my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same rights as you do, including inviting other users and deleting them (including you). Therefore, make sure you trust this person.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user by email to your account","users_blank_add_title":"Would you like to invite someone else?","users_blank_cta":"Invite someone","users_blank_description":"This person will have the same access that you have, and will be able to add, edit or delete contact information.","users_blank_title":"You are the only one who has access to this account.","users_error_already_invited":"You already have invited this user. Please choose another email address.","users_error_email_already_taken":"This email is already taken. Please choose another one","users_error_email_not_similar":"This is not the email of the person who\u2019ve invited you.","users_error_please_confirm":"Please confirm that you want to invite this user before proceeding with the invitation","users_invitation_deleted_confirmation_message":"The invitation has been successfully deleted","users_invitation_need_subscription":"Adding more users requires a subscription.","users_invitations_delete_confirmation":"Are you sure you want to delete this invitation?","users_list_add_user":"Invite a new user","users_list_delete_confirmation":"Are you sure to delete this user from your account?","users_list_invitations_explanation":"Below are the people you\u2019ve invited to join Monica as a collaborator.","users_list_invitations_invited_by":"invited by :name","users_list_invitations_sent_date":"sent on :date","users_list_invitations_title":"Pending invitations","users_list_title":"Users with access to your account","users_list_you":"That\u2019s you","webauthn_buttonAdvise":"If your security key has a button, press it.","webauthn_delete_confirmation":"Are you sure you want to delete this key?","webauthn_delete_success":"Key deleted","webauthn_enable_description":"Add a new security key","webauthn_error_already_used":"This key is already registered. It\u2019s not necessary to register it again.","webauthn_error_not_allowed":"The operation either timed out or was not allowed.","webauthn_insertKey":"Insert your security key.","webauthn_key_name":"Key name:","webauthn_key_name_help":"Give your key a name.","webauthn_last_use":"Last use: {timestamp}","webauthn_noButtonAdvise":"If it does not, remove it and insert it again.","webauthn_not_secured":"WebAuthn only supports secure connections. Please load this page with https scheme.","webauthn_not_supported":"Your browser doesn\u2019t currently support WebAuthn.","webauthn_success":"Your key is detected and validated.","webauthn_title":"Security key \u2014 WebAuthn protocol"},"validation":{"accepted":"The :attribute must be accepted.","active_url":"The :attribute is not a valid URL.","after":"The :attribute must be a date after :date.","after_or_equal":"The :attribute must be a date after or equal to :date.","alpha":"The :attribute may only contain letters.","alpha_dash":"The :attribute may only contain letters, numbers, and dashes.","alpha_num":"The :attribute may only contain letters and numbers.","array":"The :attribute must be an array.","attributes":[],"before":"The :attribute must be a date before :date.","before_or_equal":"The :attribute must be a date before or equal to :date.","between":{"array":"The :attribute must have between :min and :max items.","file":"The :attribute must be between :min and :max kilobytes.","numeric":"The :attribute must be between :min and :max.","string":"The :attribute must be between :min and :max characters."},"boolean":"The :attribute field must be true or false.","confirmed":"The :attribute confirmation does not match.","custom":{"attribute-name":{"rule-name":"custom-message"}},"date":"The :attribute is not a valid date.","date_format":"The :attribute does not match the format :format.","different":"The :attribute and :other must be different.","digits":"The :attribute must be :digits digits.","digits_between":"The :attribute must be between :min and :max digits.","dimensions":"The :attribute has invalid image dimensions.","distinct":"The :attribute field has a duplicate value.","email":"The :attribute must be a valid email address.","exists":"The selected :attribute is invalid.","file":"The :attribute must be a file.","filled":"The :attribute field must have a value.","image":"The :attribute must be an image.","in":"The selected :attribute is invalid.","in_array":"The :attribute field does not exist in :other.","integer":"The :attribute must be an integer.","ip":"The :attribute must be a valid IP address.","ipv4":"The :attribute must be a valid IPv4 address.","ipv6":"The :attribute must be a valid IPv6 address.","json":"The :attribute must be a valid JSON string.","max":{"array":"The :attribute may not have more than :max items.","file":"The :attribute may not be greater than :max kilobytes.","numeric":"The :attribute may not be greater than :max.","string":"The :attribute may not be greater than :max characters."},"mimes":"The :attribute must be a file of type: :values.","mimetypes":"The :attribute must be a file of type: :values.","min":{"array":"The :attribute must have at least :min items.","file":"The :attribute must be at least :min kilobytes.","numeric":"The :attribute must be at least :min.","string":"The :attribute must be at least :min characters."},"not_in":"The selected :attribute is invalid.","not_regex":"The :attribute format is invalid.","numeric":"The :attribute must be a number.","password":"The password is incorrect.","present":"The :attribute field must be present.","regex":"The :attribute format is invalid.","required":"The :attribute field is required.","required_if":"The :attribute field is required when :other is :value.","required_unless":"The :attribute field is required unless :other is in :values.","required_with":"The :attribute field is required when :values is present.","required_with_all":"The :attribute field is required when :values is present.","required_without":"The :attribute field is required when :values is not present.","required_without_all":"The :attribute field is required when none of :values are present.","same":"The :attribute and :other must match.","size":{"array":"The :attribute must contain :size items.","file":"The :attribute must be :size kilobytes.","numeric":"The :attribute must be :size.","string":"The :attribute must be :size characters."},"string":"The :attribute must be a string.","timezone":"The :attribute must be a valid zone.","unique":"The :attribute has already been taken.","uploaded":"The :attribute failed to upload.","url":"The :attribute format is invalid.","vue":{"max":{"numeric":"{field} may not be greater than {max}.","string":"{field} may not be greater than {max} characters."},"required":"{field} is required.","url":"{field} is not a valid URL."}}} diff --git a/public/js/vendor.js b/public/js/vendor.js index 6f4b56de86e..2a5afcb2439 100644 --- a/public/js/vendor.js +++ b/public/js/vendor.js @@ -1,2 +1,2 @@ /*! For license information please see vendor.js.LICENSE */ -(window.webpackJsonp=window.webpackJsonp||[]).push([[1],{"+/RH":function(e,t,n){"use strict";function r(e){return null==e}function o(e){return null!=e}function i(e,t){return t.tag===e.tag&&t.key===e.key}function a(e){var t=e.tag;e.vm=new t({data:e.args})}function s(e,t,n){var r,i,a={};for(r=t;r<=n;++r)o(i=e[r].key)&&(a[i]=r);return a}function c(e,t,n){for(;t<=n;++t)a(e[t])}function l(e,t,n){for(;t<=n;++t){var r=e[t];o(r)&&(r.vm.$destroy(),r.vm=null)}}function u(e,t){e!==t&&(t.vm=e.vm,function(e){for(var t=Object.keys(e.args),n=0;nm?c(t,h,_):h>_&&l(e,p,m)}(e,t):o(t)?c(t,0,t.length-1):o(e)&&l(e,0,e.length-1)},t.h=function(e,t,n){return{tag:e,key:t,args:n}}},"+/fp":function(e,t){e.exports=class{strong(e){return e}em(e){return e}codespan(e){return e}del(e){return e}text(e){return e}link(e,t,n){return""+n}image(e,t,n){return""+n}br(){return""}}},"+s0g":function(e,t,n){!function(e){"use strict";var t="jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"),n="jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_"),r=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],o=/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i;e.defineLocale("nl",{months:"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),monthsShort:function(e,r){return e?/-MMM-/.test(r)?n[e.month()]:t[e.month()]:t},monthsRegex:o,monthsShortRegex:o,monthsStrictRegex:/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"),weekdaysShort:"zo._ma._di._wo._do._vr._za.".split("_"),weekdaysMin:"zo_ma_di_wo_do_vr_za".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[vandaag om] LT",nextDay:"[morgen om] LT",nextWeek:"dddd [om] LT",lastDay:"[gisteren om] LT",lastWeek:"[afgelopen] dddd [om] LT",sameElse:"L"},relativeTime:{future:"over %s",past:"%s geleden",s:"een paar seconden",ss:"%d seconden",m:"één minuut",mm:"%d minuten",h:"één uur",hh:"%d uur",d:"één dag",dd:"%d dagen",M:"één maand",MM:"%d maanden",y:"één jaar",yy:"%d jaar"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}})}(n("wd/R"))},"0pQ5":function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=n("eO9T");t.default=function(){for(var e=arguments.length,t=new Array(e),n=0;n0&&t.reduce((function(t,n){return t||n.apply(e,r)}),!1)}))}},"0tRk":function(e,t,n){!function(e){"use strict";e.defineLocale("pt-br",{months:"Janeiro_Fevereiro_Março_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro".split("_"),monthsShort:"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez".split("_"),weekdays:"Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado".split("_"),weekdaysShort:"Dom_Seg_Ter_Qua_Qui_Sex_Sáb".split("_"),weekdaysMin:"Do_2ª_3ª_4ª_5ª_6ª_Sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY [às] HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY [às] HH:mm"},calendar:{sameDay:"[Hoje às] LT",nextDay:"[Amanhã às] LT",nextWeek:"dddd [às] LT",lastDay:"[Ontem às] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[Último] dddd [às] LT":"[Última] dddd [às] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"há %s",s:"poucos segundos",ss:"%d segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mês",MM:"%d meses",y:"um ano",yy:"%d anos"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº"})}(n("wd/R"))},"1PTn":function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=n("eO9T"),o=(0,r.withParams)({type:"required"},(function(e){return"string"==typeof e?(0,r.req)(e.trim()):(0,r.req)(e)}));t.default=o},"1aTm":function(e,t,n){"use strict";var r={props:{item:{type:Object,required:!0,default:null},withName:{type:Boolean,default:!0},className:{type:String,default:"avatar"}},data:function(){return{check:!0}}},o=(n("zEOk"),n("KHd+")),i=Object(o.a)(r,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.item.id>0?n("div",{staticClass:"item-search-result",attrs:{"data-contact":e.item.id,"data-name":e.item.name}},[n("a",{attrs:{href:e.item.route}},[e.check?n("img",{class:e.className,attrs:{src:e.item.information.avatar.url,alt:e.item.complete_name},on:{error:function(t){e.check=!1}}}):n("div",{class:[e.className,"avatar-initials"],style:"background-color: "+e.item.information.avatar.default_avatar_color},[e._v("\n "+e._s(e.item.initials)+"\n ")]),e._v(" "),e.withName?[e._v("\n "+e._s(e.item.complete_name)+"\n ")]:e._e(),e._v(" "),n("span")],2)]):n("div",{staticClass:"item-search-result"},[n("a",{attrs:{href:"people/add"}},[n("div",{staticClass:"avatar avatar-initials avatar-new"},[e._v("+")]),e._v("\n "+e._s(e.$t("people.people_add_new"))+"\n "),n("span")])])}),[],!1,null,"42490b6e",null);t.a=i.exports},"2SVd":function(e,t,n){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},"4MG8":function(e,t,n){const r=n("T9Ld"),o=n("66f7"),i=n("SbYC"),a=n("+/fp"),s=n("hyX7"),c=n("J7Ao"),{merge:l,checkSanitizeDeprecation:u,escape:d}=n("rUJ1"),{getDefaults:f,changeDefaults:p,defaults:h}=n("vbtb");function m(e,t,n){if(null==e)throw new Error("marked(): input parameter is undefined or null");if("string"!=typeof e)throw new Error("marked(): input parameter is of type "+Object.prototype.toString.call(e)+", string expected");if(n||"function"==typeof t){n||(n=t,t=null),t=l({},m.defaults,t||{}),u(t);const i=t.highlight;let a,s,c=0;try{a=r.lex(e,t)}catch(e){return n(e)}s=a.length;const d=function(e){if(e)return t.highlight=i,n(e);let r;try{r=o.parse(a,t)}catch(t){e=t}return t.highlight=i,e?n(e):n(null,r)};if(!i||i.length<3)return d();if(delete t.highlight,!s)return d();for(;cAn error occurred:

"+d(e.message+"",!0)+"
";throw e}}m.options=m.setOptions=function(e){return l(m.defaults,e),p(m.defaults),m},m.getDefaults=f,m.defaults=h,m.Parser=o,m.parser=o.parse,m.Renderer=i,m.TextRenderer=a,m.Lexer=r,m.lexer=r.lex,m.InlineLexer=s,m.inlineLexer=s.output,m.Slugger=c,m.parse=m,e.exports=m},"5lKX":function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=n("eO9T");t.default=function(e){return(0,r.withParams)({type:"requiredUnless",prop:e},(function(t,n){return!!(0,r.ref)(e,this,n)||(0,r.req)(t)}))}},"5oMp":function(e,t,n){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},"62b2":function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=n("eO9T");t.default=function(e){return(0,r.withParams)({type:"minValue",min:e},(function(t){return!(0,r.req)(t)||(!/\s/.test(t)||t instanceof Date)&&+t>=+e}))}},"66f7":function(e,t,n){const r=n("SbYC"),o=n("J7Ao"),i=n("hyX7"),a=n("+/fp"),{defaults:s}=n("vbtb"),{merge:c,unescape:l}=n("rUJ1");e.exports=class e{constructor(e){this.tokens=[],this.token=null,this.options=e||s,this.options.renderer=this.options.renderer||new r,this.renderer=this.options.renderer,this.renderer.options=this.options,this.slugger=new o}static parse(t,n){return new e(n).parse(t)}parse(e){this.inline=new i(e.links,this.options),this.inlineText=new i(e.links,c({},this.options,{renderer:new a})),this.tokens=e.reverse();let t="";for(;this.next();)t+=this.tok();return t}next(){return this.token=this.tokens.pop(),this.token}peek(){return this.tokens[this.tokens.length-1]||0}parseText(){let e=this.token.text;for(;"text"===this.peek().type;)e+="\n"+this.next().text;return this.inline.output(e)}tok(){let e="";switch(this.token.type){case"space":return"";case"hr":return this.renderer.hr();case"heading":return this.renderer.heading(this.inline.output(this.token.text),this.token.depth,l(this.inlineText.output(this.token.text)),this.slugger);case"code":return this.renderer.code(this.token.text,this.token.lang,this.token.escaped);case"table":{let t,n,r,o,i="";for(r="",t=0;t=+n}))}},"7pj7":function(e,t,n){var r;r=function(e){return function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=e,n.c=t,n.i=function(e){return e},n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:r})},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/dist/",n(n.s=2)}([function(e,t){e.exports=function(e,t,n,r){var o,i=e=e||{},a=typeof e.default;"object"!==a&&"function"!==a||(o=e,i=e.default);var s="function"==typeof i?i.options:i;if(t&&(s.render=t.render,s.staticRenderFns=t.staticRenderFns),n&&(s._scopeId=n),r){var c=Object.create(s.computed||null);Object.keys(r).forEach((function(e){var t=r[e];c[e]=function(){return t}})),s.computed=c}return{esModule:o,exports:i,options:s}}},function(e,t,n){"use strict";n.d(t,"a",(function(){return o}));var r=n(20),o=new(n.n(r).a)({name:"vue-notification"})},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(3),o=n.n(r),i=n(1),a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s={install:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(!this.installed){this.installed=!0,this.params=t,e.component(t.componentName||"notifications",o.a);var n=function(e){"string"==typeof e&&(e={title:"",text:e}),"object"===(void 0===e?"undefined":a(e))&&i.a.$emit("add",e)};n.close=function(e){i.a.$emit("close",e)};var r=t.name||"notify";e.prototype["$"+r]=n,e[r]=n}}};t.default=s},function(e,t,n){n(17);var r=n(0)(n(5),n(15),null,null);e.exports=r.exports},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={name:"CssGroup",props:["name"]}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(2),o=n(1),i=n(9),a=n(7),s=n(13),c=n.n(s),l=n(12),u=n.n(l),d=n(8),f=0,p=2,h={name:"Notifications",components:{VelocityGroup:c.a,CssGroup:u.a},props:{group:{type:String,default:""},width:{type:[Number,String],default:300},reverse:{type:Boolean,default:!1},position:{type:[String,Array],default:function(){return a.a.position}},classes:{type:String,default:"vue-notification"},animationType:{type:String,default:"css",validator:function(e){return"css"===e||"velocity"===e}},animation:{type:Object,default:function(){return a.a.velocityAnimation}},animationName:{type:String,default:a.a.cssAnimation},speed:{type:Number,default:300},cooldown:{type:Number,default:0},duration:{type:Number,default:3e3},delay:{type:Number,default:0},max:{type:Number,default:1/0},ignoreDuplicates:{type:Boolean,default:!1},closeOnClick:{type:Boolean,default:!0}},data:function(){return{list:[],velocity:r.default.params.velocity}},mounted:function(){o.a.$on("add",this.addItem),o.a.$on("close",this.closeItem)},computed:{actualWidth:function(){return n.i(d.a)(this.width)},isVA:function(){return"velocity"===this.animationType},componentName:function(){return this.isVA?"VelocityGroup":"CssGroup"},styles:function(){var e,t,r,o=n.i(i.a)(this.position),a=o.x,s=o.y,c=this.actualWidth.value,l=this.actualWidth.type,u=(r="0px",(t=s)in(e={width:c+l})?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e);return"center"===a?u.left="calc(50% - "+c/2+l+")":u[a]="0px",u},active:function(){return this.list.filter((function(e){return e.state!==p}))},botToTop:function(){return this.styles.hasOwnProperty("bottom")}},methods:{destroyIfNecessary:function(e){this.closeOnClick&&this.destroy(e)},addItem:function(e){var t=this;if(e.group=e.group||"",this.group===e.group)if(e.clean||e.clear)this.destroyAll();else{var r="number"==typeof e.duration?e.duration:this.duration,o="number"==typeof e.speed?e.speed:this.speed,a="boolean"==typeof e.ignoreDuplicates?e.ignoreDuplicates:this.ignoreDuplicates,s=e.title,c=e.text,l=e.type,u=e.data,d={id:e.id||n.i(i.b)(),title:s,text:c,type:l,state:f,speed:o,length:r+2*o,data:u};r>=0&&(d.timer=setTimeout((function(){t.destroy(d)}),d.length));var p=this.reverse?!this.botToTop:this.botToTop,h=-1,m=this.active.some((function(t){return t.title===e.title&&t.text===e.text}));(!a||!m)&&(p?(this.list.push(d),this.active.length>this.max&&(h=0)):(this.list.unshift(d),this.active.length>this.max&&(h=this.active.length-1)),-1!==h&&this.destroy(this.active[h]))}},closeItem:function(e){this.destroyById(e)},notifyClass:function(e){return["vue-notification-template",this.classes,e.type]},notifyWrapperStyle:function(e){return this.isVA?null:{transition:"all "+e.speed+"ms"}},destroy:function(e){clearTimeout(e.timer),e.state=p,this.isVA||this.clean()},destroyById:function(e){var t=this.list.find((function(t){return t.id===e}));t&&this.destroy(t)},destroyAll:function(){this.active.forEach(this.destroy)},getAnimation:function(e,t){var n=this.animation[e];return"function"==typeof n?n.call(this,t):n},enter:function(e){var t=e.el,n=e.complete,r=this.getAnimation("enter",t);this.velocity(t,r,{duration:this.speed,complete:n})},leave:function(e){var t=e.el,n=e.complete,r=this.getAnimation("leave",t);this.velocity(t,r,{duration:this.speed,complete:n})},clean:function(){this.list=this.list.filter((function(e){return e.state!==p}))}}};t.default=h},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={name:"VelocityGroup",methods:{enter:function(e,t){this.$emit("enter",{el:e,complete:t})},leave:function(e,t){this.$emit("leave",{el:e,complete:t})},afterLeave:function(){this.$emit("afterLeave")}}}},function(e,t,n){"use strict";t.a={position:["top","right"],cssAnimation:"vn-fade",velocityAnimation:{enter:function(e){return{height:[e.clientHeight,0],opacity:[1,0]}},leave:{height:0,opacity:[0,1]}}}},function(e,t,n){"use strict";var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o=[{name:"px",regexp:new RegExp("^[-+]?[0-9]*.?[0-9]+px$")},{name:"%",regexp:new RegExp("^[-+]?[0-9]*.?[0-9]+%$")},{name:"px",regexp:new RegExp("^[-+]?[0-9]*.?[0-9]+$")}];t.a=function(e){switch(void 0===e?"undefined":r(e)){case"number":return{type:"px",value:e};case"string":return function(e){if("auto"===e)return{type:e,value:0};for(var t=0;tn.parts.length&&(r.parts.length=n.parts.length)}else{var a=[];for(o=0;o=0)return 1;return 0}();var o=n&&window.Promise?function(e){var t=!1;return function(){t||(t=!0,window.Promise.resolve().then((function(){t=!1,e()})))}}:function(e){var t=!1;return function(){t||(t=!0,setTimeout((function(){t=!1,e()}),r))}};function i(e){return e&&"[object Function]"==={}.toString.call(e)}function a(e,t){if(1!==e.nodeType)return[];var n=e.ownerDocument.defaultView.getComputedStyle(e,null);return t?n[t]:n}function s(e){return"HTML"===e.nodeName?e:e.parentNode||e.host}function c(e){if(!e)return document.body;switch(e.nodeName){case"HTML":case"BODY":return e.ownerDocument.body;case"#document":return e.body}var t=a(e),n=t.overflow,r=t.overflowX,o=t.overflowY;return/(auto|scroll|overlay)/.test(n+o+r)?e:c(s(e))}function l(e){return e&&e.referenceNode?e.referenceNode:e}var u=n&&!(!window.MSInputMethodContext||!document.documentMode),d=n&&/MSIE 10/.test(navigator.userAgent);function f(e){return 11===e?u:10===e?d:u||d}function p(e){if(!e)return document.documentElement;for(var t=f(10)?document.body:null,n=e.offsetParent||null;n===t&&e.nextElementSibling;)n=(e=e.nextElementSibling).offsetParent;var r=n&&n.nodeName;return r&&"BODY"!==r&&"HTML"!==r?-1!==["TH","TD","TABLE"].indexOf(n.nodeName)&&"static"===a(n,"position")?p(n):n:e?e.ownerDocument.documentElement:document.documentElement}function h(e){return null!==e.parentNode?h(e.parentNode):e}function m(e,t){if(!(e&&e.nodeType&&t&&t.nodeType))return document.documentElement;var n=e.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_FOLLOWING,r=n?e:t,o=n?t:e,i=document.createRange();i.setStart(r,0),i.setEnd(o,0);var a,s,c=i.commonAncestorContainer;if(e!==c&&t!==c||r.contains(o))return"BODY"===(s=(a=c).nodeName)||"HTML"!==s&&p(a.firstElementChild)!==a?p(c):c;var l=h(e);return l.host?m(l.host,t):m(e,h(t).host)}function b(e){var t="top"===(arguments.length>1&&void 0!==arguments[1]?arguments[1]:"top")?"scrollTop":"scrollLeft",n=e.nodeName;if("BODY"===n||"HTML"===n){var r=e.ownerDocument.documentElement;return(e.ownerDocument.scrollingElement||r)[t]}return e[t]}function g(e,t){var n="x"===t?"Left":"Top",r="Left"===n?"Right":"Bottom";return parseFloat(e["border"+n+"Width"])+parseFloat(e["border"+r+"Width"])}function _(e,t,n,r){return Math.max(t["offset"+e],t["scroll"+e],n["client"+e],n["offset"+e],n["scroll"+e],f(10)?parseInt(n["offset"+e])+parseInt(r["margin"+("Height"===e?"Top":"Left")])+parseInt(r["margin"+("Height"===e?"Bottom":"Right")]):0)}function v(e){var t=e.body,n=e.documentElement,r=f(10)&&getComputedStyle(n);return{height:_("Height",t,n,r),width:_("Width",t,n,r)}}var M=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")},y=function(){function e(e,t){for(var n=0;n2&&void 0!==arguments[2]&&arguments[2],r=f(10),o="HTML"===t.nodeName,i=O(e),s=O(t),l=c(e),u=a(t),d=parseFloat(u.borderTopWidth),p=parseFloat(u.borderLeftWidth);n&&o&&(s.top=Math.max(s.top,0),s.left=Math.max(s.left,0));var h=z({top:i.top-s.top-d,left:i.left-s.left-p,width:i.width,height:i.height});if(h.marginTop=0,h.marginLeft=0,!r&&o){var m=parseFloat(u.marginTop),g=parseFloat(u.marginLeft);h.top-=d-m,h.bottom-=d-m,h.left-=p-g,h.right-=p-g,h.marginTop=m,h.marginLeft=g}return(r&&!n?t.contains(l):t===l&&"BODY"!==l.nodeName)&&(h=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],r=b(t,"top"),o=b(t,"left"),i=n?-1:1;return e.top+=r*i,e.bottom+=r*i,e.left+=o*i,e.right+=o*i,e}(h,t)),h}function L(e){if(!e||!e.parentElement||f())return document.documentElement;for(var t=e.parentElement;t&&"none"===a(t,"transform");)t=t.parentElement;return t||document.documentElement}function x(e,t,n,r){var o=arguments.length>4&&void 0!==arguments[4]&&arguments[4],i={top:0,left:0},u=o?L(e):m(e,l(t));if("viewport"===r)i=function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=e.ownerDocument.documentElement,r=T(e,n),o=Math.max(n.clientWidth,window.innerWidth||0),i=Math.max(n.clientHeight,window.innerHeight||0),a=t?0:b(n),s=t?0:b(n,"left");return z({top:a-r.top+r.marginTop,left:s-r.left+r.marginLeft,width:o,height:i})}(u,o);else{var d=void 0;"scrollParent"===r?"BODY"===(d=c(s(t))).nodeName&&(d=e.ownerDocument.documentElement):d="window"===r?e.ownerDocument.documentElement:r;var f=T(d,u,o);if("HTML"!==d.nodeName||function e(t){var n=t.nodeName;if("BODY"===n||"HTML"===n)return!1;if("fixed"===a(t,"position"))return!0;var r=s(t);return!!r&&e(r)}(u))i=f;else{var p=v(e.ownerDocument),h=p.height,g=p.width;i.top+=f.top-f.marginTop,i.bottom=h+f.top,i.left+=f.left-f.marginLeft,i.right=g+f.left}}var _="number"==typeof(n=n||0);return i.left+=_?n:n.left||0,i.top+=_?n:n.top||0,i.right-=_?n:n.right||0,i.bottom-=_?n:n.bottom||0,i}function k(e,t,n,r,o){var i=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0;if(-1===e.indexOf("auto"))return e;var a=x(n,r,i,o),s={top:{width:a.width,height:t.top-a.top},right:{width:a.right-t.right,height:a.height},bottom:{width:a.width,height:a.bottom-t.bottom},left:{width:t.left-a.left,height:a.height}},c=Object.keys(s).map((function(e){return A({key:e},s[e],{area:(t=s[e],t.width*t.height)});var t})).sort((function(e,t){return t.area-e.area})),l=c.filter((function(e){var t=e.width,r=e.height;return t>=n.clientWidth&&r>=n.clientHeight})),u=l.length>0?l[0].key:c[0].key,d=e.split("-")[1];return u+(d?"-"+d:"")}function N(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;return T(n,r?L(t):m(t,l(n)),r)}function S(e){var t=e.ownerDocument.defaultView.getComputedStyle(e),n=parseFloat(t.marginTop||0)+parseFloat(t.marginBottom||0),r=parseFloat(t.marginLeft||0)+parseFloat(t.marginRight||0);return{width:e.offsetWidth+r,height:e.offsetHeight+n}}function C(e){var t={left:"right",right:"left",bottom:"top",top:"bottom"};return e.replace(/left|right|bottom|top/g,(function(e){return t[e]}))}function q(e,t,n){n=n.split("-")[0];var r=S(e),o={width:r.width,height:r.height},i=-1!==["right","left"].indexOf(n),a=i?"top":"left",s=i?"left":"top",c=i?"height":"width",l=i?"width":"height";return o[a]=t[a]+t[c]/2-r[c]/2,o[s]=n===s?t[s]-r[l]:t[C(s)],o}function D(e,t){return Array.prototype.find?e.find(t):e.filter(t)[0]}function W(e,t,n){return(void 0===n?e:e.slice(0,function(e,t,n){if(Array.prototype.findIndex)return e.findIndex((function(e){return e[t]===n}));var r=D(e,(function(e){return e[t]===n}));return e.indexOf(r)}(e,"name",n))).forEach((function(e){e.function&&console.warn("`modifier.function` is deprecated, use `modifier.fn`!");var n=e.function||e.fn;e.enabled&&i(n)&&(t.offsets.popper=z(t.offsets.popper),t.offsets.reference=z(t.offsets.reference),t=n(t,e))})),t}function E(){if(!this.state.isDestroyed){var e={instance:this,styles:{},arrowStyles:{},attributes:{},flipped:!1,offsets:{}};e.offsets.reference=N(this.state,this.popper,this.reference,this.options.positionFixed),e.placement=k(this.options.placement,e.offsets.reference,this.popper,this.reference,this.options.modifiers.flip.boundariesElement,this.options.modifiers.flip.padding),e.originalPlacement=e.placement,e.positionFixed=this.options.positionFixed,e.offsets.popper=q(this.popper,e.offsets.reference,e.placement),e.offsets.popper.position=this.options.positionFixed?"fixed":"absolute",e=W(this.modifiers,e),this.state.isCreated?this.options.onUpdate(e):(this.state.isCreated=!0,this.options.onCreate(e))}}function B(e,t){return e.some((function(e){var n=e.name;return e.enabled&&n===t}))}function P(e){for(var t=[!1,"ms","Webkit","Moz","O"],n=e.charAt(0).toUpperCase()+e.slice(1),r=0;r1&&void 0!==arguments[1]&&arguments[1],n=G.indexOf(e),r=G.slice(n+1).concat(G.slice(0,n));return t?r.reverse():r}var Q={FLIP:"flip",CLOCKWISE:"clockwise",COUNTERCLOCKWISE:"counterclockwise"};function J(e,t,n,r){var o=[0,0],i=-1!==["right","left"].indexOf(r),a=e.split(/(\+|\-)/).map((function(e){return e.trim()})),s=a.indexOf(D(a,(function(e){return-1!==e.search(/,|\s/)})));a[s]&&-1===a[s].indexOf(",")&&console.warn("Offsets separated by white space(s) are deprecated, use a comma (,) instead.");var c=/\s*,\s*|\s+/,l=-1!==s?[a.slice(0,s).concat([a[s].split(c)[0]]),[a[s].split(c)[1]].concat(a.slice(s+1))]:[a];return(l=l.map((function(e,r){var o=(1===r?!i:i)?"height":"width",a=!1;return e.reduce((function(e,t){return""===e[e.length-1]&&-1!==["+","-"].indexOf(t)?(e[e.length-1]=t,a=!0,e):a?(e[e.length-1]+=t,a=!1,e):e.concat(t)}),[]).map((function(e){return function(e,t,n,r){var o=e.match(/((?:\-|\+)?\d*\.?\d*)(.*)/),i=+o[1],a=o[2];if(!i)return e;if(0===a.indexOf("%")){var s=void 0;switch(a){case"%p":s=n;break;case"%":case"%r":default:s=r}return z(s)[t]/100*i}if("vh"===a||"vw"===a){return("vh"===a?Math.max(document.documentElement.clientHeight,window.innerHeight||0):Math.max(document.documentElement.clientWidth,window.innerWidth||0))/100*i}return i}(e,o,t,n)}))}))).forEach((function(e,t){e.forEach((function(n,r){$(n)&&(o[t]+=n*("-"===e[r-1]?-1:1))}))})),o}var Z={placement:"bottom",positionFixed:!1,eventsEnabled:!0,removeOnDestroy:!1,onCreate:function(){},onUpdate:function(){},modifiers:{shift:{order:100,enabled:!0,fn:function(e){var t=e.placement,n=t.split("-")[0],r=t.split("-")[1];if(r){var o=e.offsets,i=o.reference,a=o.popper,s=-1!==["bottom","top"].indexOf(n),c=s?"left":"top",l=s?"width":"height",u={start:w({},c,i[c]),end:w({},c,i[c]+i[l]-a[l])};e.offsets.popper=A({},a,u[r])}return e}},offset:{order:200,enabled:!0,fn:function(e,t){var n=t.offset,r=e.placement,o=e.offsets,i=o.popper,a=o.reference,s=r.split("-")[0],c=void 0;return c=$(+n)?[+n,0]:J(n,i,a,s),"left"===s?(i.top+=c[0],i.left-=c[1]):"right"===s?(i.top+=c[0],i.left+=c[1]):"top"===s?(i.left+=c[0],i.top-=c[1]):"bottom"===s&&(i.left+=c[0],i.top+=c[1]),e.popper=i,e},offset:0},preventOverflow:{order:300,enabled:!0,fn:function(e,t){var n=t.boundariesElement||p(e.instance.popper);e.instance.reference===n&&(n=p(n));var r=P("transform"),o=e.instance.popper.style,i=o.top,a=o.left,s=o[r];o.top="",o.left="",o[r]="";var c=x(e.instance.popper,e.instance.reference,t.padding,n,e.positionFixed);o.top=i,o.left=a,o[r]=s,t.boundaries=c;var l=t.priority,u=e.offsets.popper,d={primary:function(e){var n=u[e];return u[e]c[e]&&!t.escapeWithReference&&(r=Math.min(u[n],c[e]-("right"===e?u.width:u.height))),w({},n,r)}};return l.forEach((function(e){var t=-1!==["left","top"].indexOf(e)?"primary":"secondary";u=A({},u,d[t](e))})),e.offsets.popper=u,e},priority:["left","right","top","bottom"],padding:5,boundariesElement:"scrollParent"},keepTogether:{order:400,enabled:!0,fn:function(e){var t=e.offsets,n=t.popper,r=t.reference,o=e.placement.split("-")[0],i=Math.floor,a=-1!==["top","bottom"].indexOf(o),s=a?"right":"bottom",c=a?"left":"top",l=a?"width":"height";return n[s]i(r[s])&&(e.offsets.popper[c]=i(r[s])),e}},arrow:{order:500,enabled:!0,fn:function(e,t){var n;if(!U(e.instance.modifiers,"arrow","keepTogether"))return e;var r=t.element;if("string"==typeof r){if(!(r=e.instance.popper.querySelector(r)))return e}else if(!e.instance.popper.contains(r))return console.warn("WARNING: `arrow.element` must be child of its popper element!"),e;var o=e.placement.split("-")[0],i=e.offsets,s=i.popper,c=i.reference,l=-1!==["left","right"].indexOf(o),u=l?"height":"width",d=l?"Top":"Left",f=d.toLowerCase(),p=l?"left":"top",h=l?"bottom":"right",m=S(r)[u];c[h]-ms[h]&&(e.offsets.popper[f]+=c[f]+m-s[h]),e.offsets.popper=z(e.offsets.popper);var b=c[f]+c[u]/2-m/2,g=a(e.instance.popper),_=parseFloat(g["margin"+d]),v=parseFloat(g["border"+d+"Width"]),M=b-e.offsets.popper[f]-_-v;return M=Math.max(Math.min(s[u]-m,M),0),e.arrowElement=r,e.offsets.arrow=(w(n={},f,Math.round(M)),w(n,p,""),n),e},element:"[x-arrow]"},flip:{order:600,enabled:!0,fn:function(e,t){if(B(e.instance.modifiers,"inner"))return e;if(e.flipped&&e.placement===e.originalPlacement)return e;var n=x(e.instance.popper,e.instance.reference,t.padding,t.boundariesElement,e.positionFixed),r=e.placement.split("-")[0],o=C(r),i=e.placement.split("-")[1]||"",a=[];switch(t.behavior){case Q.FLIP:a=[r,o];break;case Q.CLOCKWISE:a=K(r);break;case Q.COUNTERCLOCKWISE:a=K(r,!0);break;default:a=t.behavior}return a.forEach((function(s,c){if(r!==s||a.length===c+1)return e;r=e.placement.split("-")[0],o=C(r);var l=e.offsets.popper,u=e.offsets.reference,d=Math.floor,f="left"===r&&d(l.right)>d(u.left)||"right"===r&&d(l.left)d(u.top)||"bottom"===r&&d(l.top)d(n.right),m=d(l.top)d(n.bottom),g="left"===r&&p||"right"===r&&h||"top"===r&&m||"bottom"===r&&b,_=-1!==["top","bottom"].indexOf(r),v=!!t.flipVariations&&(_&&"start"===i&&p||_&&"end"===i&&h||!_&&"start"===i&&m||!_&&"end"===i&&b),M=!!t.flipVariationsByContent&&(_&&"start"===i&&h||_&&"end"===i&&p||!_&&"start"===i&&b||!_&&"end"===i&&m),y=v||M;(f||g||y)&&(e.flipped=!0,(f||g)&&(r=a[c+1]),y&&(i=function(e){return"end"===e?"start":"start"===e?"end":e}(i)),e.placement=r+(i?"-"+i:""),e.offsets.popper=A({},e.offsets.popper,q(e.instance.popper,e.offsets.reference,e.placement)),e=W(e.instance.modifiers,e,"flip"))})),e},behavior:"flip",padding:5,boundariesElement:"viewport",flipVariations:!1,flipVariationsByContent:!1},inner:{order:700,enabled:!1,fn:function(e){var t=e.placement,n=t.split("-")[0],r=e.offsets,o=r.popper,i=r.reference,a=-1!==["left","right"].indexOf(n),s=-1===["top","left"].indexOf(n);return o[a?"left":"top"]=i[n]-(s?o[a?"width":"height"]:0),e.placement=C(t),e.offsets.popper=z(o),e}},hide:{order:800,enabled:!0,fn:function(e){if(!U(e.instance.modifiers,"hide","preventOverflow"))return e;var t=e.offsets.reference,n=D(e.instance.modifiers,(function(e){return"preventOverflow"===e.name})).boundaries;if(t.bottomn.right||t.top>n.bottom||t.right2&&void 0!==arguments[2]?arguments[2]:{};M(this,e),this.scheduleUpdate=function(){return requestAnimationFrame(r.update)},this.update=o(this.update.bind(this)),this.options=A({},e.Defaults,a),this.state={isDestroyed:!1,isCreated:!1,scrollParents:[]},this.reference=t&&t.jquery?t[0]:t,this.popper=n&&n.jquery?n[0]:n,this.options.modifiers={},Object.keys(A({},e.Defaults.modifiers,a.modifiers)).forEach((function(t){r.options.modifiers[t]=A({},e.Defaults.modifiers[t]||{},a.modifiers?a.modifiers[t]:{})})),this.modifiers=Object.keys(this.options.modifiers).map((function(e){return A({name:e},r.options.modifiers[e])})).sort((function(e,t){return e.order-t.order})),this.modifiers.forEach((function(e){e.enabled&&i(e.onLoad)&&e.onLoad(r.reference,r.popper,r.options,e,r.state)})),this.update();var s=this.options.eventsEnabled;s&&this.enableEventListeners(),this.state.eventsEnabled=s}return y(e,[{key:"update",value:function(){return E.call(this)}},{key:"destroy",value:function(){return X.call(this)}},{key:"enableEventListeners",value:function(){return I.call(this)}},{key:"disableEventListeners",value:function(){return F.call(this)}}]),e}();ee.Utils=("undefined"!=typeof window?window:e).PopperUtils,ee.placements=V,ee.Defaults=Z,t.default=ee}.call(this,n("yLpj"))},"8gbZ":function(e,t,n){var r;r=function(){return function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=e,n.c=t,n.i=function(e){return e},n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:r})},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/dist/",n(n.s=2)}([function(e,t,n){n(8);var r=n(6)(n(1),n(7),"data-v-25adc6c0",null);e.exports=r.exports},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(3),o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};t.default={name:"ToggleButton",props:{value:{type:Boolean,default:!1},name:{type:String},disabled:{type:Boolean,default:!1},tag:{type:String},sync:{type:Boolean,default:!1},speed:{type:Number,default:300},color:{type:[String,Object],validator:function(e){return n.i(r.a)(e)||n.i(r.b)(e,"checked")||n.i(r.b)(e,"unchecked")||n.i(r.b)(e,"disabled")}},switchColor:{type:[String,Object],validator:function(e){return n.i(r.a)(e)||n.i(r.b)(e,"checked")||n.i(r.b)(e,"unchecked")}},cssColors:{type:Boolean,default:!1},labels:{type:[Boolean,Object],default:!1,validator:function(e){return"object"===(void 0===e?"undefined":o(e))?e.checked||e.unchecked:"boolean"==typeof e}},height:{type:Number,default:22},width:{type:Number,default:50},margin:{type:Number,default:3},fontSize:{type:Number}},computed:{className:function(){return["vue-js-switch",{toggled:this.toggled,disabled:this.disabled}]},coreStyle:function(){return{width:n.i(r.c)(this.width),height:n.i(r.c)(this.height),backgroundColor:this.cssColors?null:this.disabled?this.colorDisabled:this.colorCurrent,borderRadius:n.i(r.c)(Math.round(this.height/2))}},buttonRadius:function(){return this.height-2*this.margin},distance:function(){return n.i(r.c)(this.width-this.height+this.margin)},buttonStyle:function(){var e="transform "+this.speed+"ms",t=n.i(r.c)(this.margin),o=this.toggled?n.i(r.d)(this.distance,t):n.i(r.d)(t,t),i=this.switchColor?this.switchColorCurrent:null;return{width:n.i(r.c)(this.buttonRadius),height:n.i(r.c)(this.buttonRadius),transition:e,transform:o,background:i}},labelStyle:function(){return{lineHeight:n.i(r.c)(this.height),fontSize:this.fontSize?n.i(r.c)(this.fontSize):null}},colorChecked:function(){var e=this.color;return n.i(r.e)(e)?n.i(r.f)(e,"checked","#75c791"):e||"#75c791"},colorUnchecked:function(){return n.i(r.f)(this.color,"unchecked","#bfcbd9")},colorDisabled:function(){return n.i(r.f)(this.color,"disabled",this.colorCurrent)},colorCurrent:function(){return this.toggled?this.colorChecked:this.colorUnchecked},labelChecked:function(){return n.i(r.f)(this.labels,"checked","on")},labelUnchecked:function(){return n.i(r.f)(this.labels,"unchecked","off")},switchColorChecked:function(){return n.i(r.f)(this.switchColor,"checked","#fff")},switchColorUnchecked:function(){return n.i(r.f)(this.switchColor,"unchecked","#fff")},switchColorCurrent:function(){return this.switchColor,n.i(r.e)(this.switchColor)?this.toggled?this.switchColorChecked:this.switchColorUnchecked:this.switchColor||"#fff"}},watch:{value:function(e){this.sync&&(this.toggled=!!e)}},data:function(){return{toggled:!!this.value}},methods:{toggle:function(e){var t=!this.toggled;this.sync||(this.toggled=t),this.$emit("input",t),this.$emit("change",{value:t,tag:this.tag,srcEvent:e})}}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0),o=n.n(r);n.d(t,"ToggleButton",(function(){return o.a}));var i=!1;t.default={install:function(e){i||(e.component("ToggleButton",o.a),i=!0)}}},function(e,t,n){"use strict";n.d(t,"a",(function(){return o})),n.d(t,"e",(function(){return i})),n.d(t,"b",(function(){return a})),n.d(t,"f",(function(){return s})),n.d(t,"c",(function(){return c})),n.d(t,"d",(function(){return l}));var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o=function(e){return"string"==typeof e},i=function(e){return"object"===(void 0===e?"undefined":r(e))},a=function(e,t){return i(e)&&e.hasOwnProperty(t)},s=function(e,t,n){return a(e,t)?e[t]:n},c=function(e){return e+"px"},l=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"0px";return"translate3d("+e+", "+t+", "+n+")"}},function(e,t,n){(e.exports=n(5)()).push([e.i,".vue-js-switch[data-v-25adc6c0]{display:inline-block;position:relative;vertical-align:middle;user-select:none;font-size:10px;cursor:pointer}.vue-js-switch .v-switch-input[data-v-25adc6c0]{opacity:0;position:absolute;width:1px;height:1px}.vue-js-switch .v-switch-label[data-v-25adc6c0]{position:absolute;top:0;font-weight:600;color:#fff;z-index:1}.vue-js-switch .v-switch-label.v-left[data-v-25adc6c0]{left:10px}.vue-js-switch .v-switch-label.v-right[data-v-25adc6c0]{right:10px}.vue-js-switch .v-switch-core[data-v-25adc6c0]{display:block;position:relative;box-sizing:border-box;outline:0;margin:0;transition:border-color .3s,background-color .3s;user-select:none}.vue-js-switch .v-switch-core .v-switch-button[data-v-25adc6c0]{display:block;position:absolute;overflow:hidden;top:0;left:0;border-radius:100%;background-color:#fff;z-index:2}.vue-js-switch.disabled[data-v-25adc6c0]{pointer-events:none;opacity:.6}",""])},function(e,t){e.exports=function(){var e=[];return e.toString=function(){for(var e=[],t=0;tn.parts.length&&(r.parts.length=n.parts.length)}else{var a=[];for(o=0;o1)for(var n=1;n-1&&e%1==0&&e-1&&e%1==0&&e<=a}(e.length)&&!function(e){var t=function(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}(e)?b.call(e):"";return t==c||t==l}(e)}function x(e){return L(e)?v(e):z(e)}function k(e){return e}var N=function(e,t){return(T(e)?d:w)(e,"function"==typeof t?t:k)},S=9007199254740991,C="[object Arguments]",q="[object Function]",D="[object GeneratorFunction]",W=/^(?:0|[1-9]\d*)$/;function E(e,t,n){switch(n.length){case 0:return e.call(t);case 1:return e.call(t,n[0]);case 2:return e.call(t,n[0],n[1]);case 3:return e.call(t,n[0],n[1],n[2])}return e.apply(t,n)}var B=Object.prototype,P=B.hasOwnProperty,X=B.toString,R=B.propertyIsEnumerable,j=function(e,t){return function(n){return e(t(n))}}(Object.keys,Object),I=Math.max,F=!R.call({valueOf:1},"valueOf");function $(e,t){var n=K(e)||function(e){return function(e){return function(e){return!!e&&"object"==typeof e}(e)&&Q(e)}(e)&&P.call(e,"callee")&&(!R.call(e,"callee")||X.call(e)==C)}(e)?function(e,t){for(var n=-1,r=Array(e);++n-1&&e%1==0&&e-1&&e%1==0&&e<=S}(e.length)&&!function(e){var t=J(e)?X.call(e):"";return t==q||t==D}(e)}function J(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}var Z=(G=function(e,t){if(F||U(t)||Q(t))!function(e,t,n,r){n||(n={});for(var o=-1,i=t.length;++o1?t[r-1]:void 0,i=r>2?t[2]:void 0;for(o=G.length>3&&"function"==typeof o?(r--,o):void 0,i&&function(e,t,n){if(!J(n))return!1;var r=typeof t;return!!("number"==r?Q(n)&&Y(t,n.length):"string"==r&&t in n)&&V(n[t],e)}(t[0],t[1],i)&&(o=r<3?void 0:o,r=1),e=Object(e);++n-1},Te.prototype.set=function(e,t){var n=this.__data__,r=Se(n,e);return r<0?n.push([e,t]):n[r][1]=t,this},Le.prototype.clear=function(){this.__data__={hash:new Oe,map:new(pe||Te),string:new Oe}},Le.prototype.delete=function(e){return Ee(this,e).delete(e)},Le.prototype.get=function(e){return Ee(this,e).get(e)},Le.prototype.has=function(e){return Ee(this,e).has(e)},Le.prototype.set=function(e,t){return Ee(this,e).set(e,t),this},xe.prototype.clear=function(){this.__data__=new Te},xe.prototype.delete=function(e){return this.__data__.delete(e)},xe.prototype.get=function(e){return this.__data__.get(e)},xe.prototype.has=function(e){return this.__data__.has(e)},xe.prototype.set=function(e,t){var r=this.__data__;if(r instanceof Te){var o=r.__data__;if(!pe||o.length-1&&e%1==0&&e-1&&e%1==0&&e<=o}(e.length)&&!Ue(e)}var Ye=ue||function(){return!1};function Ue(e){var t=Ve(e)?Z.call(e):"";return t==c||t==l}function Ve(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}function Ge(e){return He(e)?ke(e):function(e){if(!je(e))return de(e);var t=[];for(var n in Object(e))J.call(e,n)&&"constructor"!=n&&t.push(n);return t}(e)}e.exports=function(e){return Ce(e,!0,!0)}})),re=te((function(e,t){var n=200,r="Expected a function",o="__lodash_hash_undefined__",i=1,a=2,s=1/0,c=9007199254740991,l="[object Arguments]",u="[object Array]",d="[object Boolean]",f="[object Date]",p="[object Error]",h="[object Function]",m="[object GeneratorFunction]",b="[object Map]",g="[object Number]",_="[object Object]",v="[object RegExp]",M="[object Set]",y="[object String]",w="[object Symbol]",A="[object ArrayBuffer]",z="[object DataView]",O=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,T=/^\w*$/,L=/^\./,x=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,k=/\\(\\)?/g,N=/^\[object .+?Constructor\]$/,S=/^(?:0|[1-9]\d*)$/,C={};C["[object Float32Array]"]=C["[object Float64Array]"]=C["[object Int8Array]"]=C["[object Int16Array]"]=C["[object Int32Array]"]=C["[object Uint8Array]"]=C["[object Uint8ClampedArray]"]=C["[object Uint16Array]"]=C["[object Uint32Array]"]=!0,C[l]=C[u]=C[A]=C[d]=C[z]=C[f]=C[p]=C[h]=C[b]=C[g]=C[_]=C[v]=C[M]=C[y]=C["[object WeakMap]"]=!1;var q="object"==typeof ee&&ee&&ee.Object===Object&&ee,D="object"==typeof self&&self&&self.Object===Object&&self,W=q||D||Function("return this")(),E=t&&!t.nodeType&&t,B=E&&e&&!e.nodeType&&e,P=B&&B.exports===E&&q.process,X=function(){try{return P&&P.binding("util")}catch(e){}}(),R=X&&X.isTypedArray;function j(e,t){for(var n=-1,r=e?e.length:0,o=0,i=[];++n-1},Ae.prototype.set=function(e,t){var n=this.__data__,r=xe(n,e);return r<0?n.push([e,t]):n[r][1]=t,this},ze.prototype.clear=function(){this.__data__={hash:new we,map:new(le||Ae),string:new we}},ze.prototype.delete=function(e){return Re(this,e).delete(e)},ze.prototype.get=function(e){return Re(this,e).get(e)},ze.prototype.has=function(e){return Re(this,e).has(e)},ze.prototype.set=function(e,t){return Re(this,e).set(e,t),this},Oe.prototype.add=Oe.prototype.push=function(e){return this.__data__.set(e,o),this},Oe.prototype.has=function(e){return this.__data__.has(e)},Te.prototype.clear=function(){this.__data__=new Ae},Te.prototype.delete=function(e){return this.__data__.delete(e)},Te.prototype.get=function(e){return this.__data__.get(e)},Te.prototype.has=function(e){return this.__data__.has(e)},Te.prototype.set=function(e,t){var r=this.__data__;if(r instanceof Ae){var o=r.__data__;if(!le||o.lengthl))return!1;var d=s.get(e);if(d&&s.get(t))return d==t;var f=-1,p=!0,h=o&i?new Oe:void 0;for(s.set(e,t),s.set(t,e);++f-1&&e%1==0&&e-1&&e%1==0&&e<=c}function rt(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}function ot(e){return!!e&&"object"==typeof e}function it(e){return"symbol"==typeof e||ot(e)&&te.call(e)==w}var at=R?function(e){return function(t){return e(t)}}(R):function(e){return ot(e)&&nt(e.length)&&!!C[te.call(e)]};function st(e){return et(e)?Le(e):Be(e)}function ct(e){return e}e.exports=function(e,t){return(Ze(e)?j:Ne)(e,Ee(t))}})),oe=te((function(e,t){var n=200,r="__lodash_hash_undefined__",o=1,i=2,a=9007199254740991,s="[object Arguments]",c="[object Array]",l="[object AsyncFunction]",u="[object Boolean]",d="[object Date]",f="[object Error]",p="[object Function]",h="[object GeneratorFunction]",m="[object Map]",b="[object Number]",g="[object Null]",_="[object Object]",v="[object Proxy]",M="[object RegExp]",y="[object Set]",w="[object String]",A="[object Symbol]",z="[object Undefined]",O="[object ArrayBuffer]",T="[object DataView]",L=/^\[object .+?Constructor\]$/,x=/^(?:0|[1-9]\d*)$/,k={};k["[object Float32Array]"]=k["[object Float64Array]"]=k["[object Int8Array]"]=k["[object Int16Array]"]=k["[object Int32Array]"]=k["[object Uint8Array]"]=k["[object Uint8ClampedArray]"]=k["[object Uint16Array]"]=k["[object Uint32Array]"]=!0,k[s]=k[c]=k[O]=k[u]=k[T]=k[d]=k[f]=k[p]=k[m]=k[b]=k[_]=k[M]=k[y]=k[w]=k["[object WeakMap]"]=!1;var N="object"==typeof ee&&ee&&ee.Object===Object&&ee,S="object"==typeof self&&self&&self.Object===Object&&self,C=N||S||Function("return this")(),q=t&&!t.nodeType&&t,D=q&&e&&!e.nodeType&&e,W=D&&D.exports===q,E=W&&N.process,B=function(){try{return E&&E.binding&&E.binding("util")}catch(e){}}(),P=B&&B.isTypedArray;function X(e,t){for(var n=-1,r=null==e?0:e.length;++nl))return!1;var d=s.get(e);if(d&&s.get(t))return d==t;var f=-1,p=!0,h=n&i?new ze:void 0;for(s.set(e,t),s.set(t,e);++f-1},we.prototype.set=function(e,t){var n=this.__data__,r=Le(n,e);return r<0?(++this.size,n.push([e,t])):n[r][1]=t,this},Ae.prototype.clear=function(){this.size=0,this.__data__={hash:new ye,map:new(le||we),string:new ye}},Ae.prototype.delete=function(e){var t=We(this,e).delete(e);return this.size-=t?1:0,t},Ae.prototype.get=function(e){return We(this,e).get(e)},Ae.prototype.has=function(e){return We(this,e).has(e)},Ae.prototype.set=function(e,t){var n=We(this,e),r=n.size;return n.set(e,t),this.size+=n.size==r?0:1,this},ze.prototype.add=ze.prototype.push=function(e){return this.__data__.set(e,r),this},ze.prototype.has=function(e){return this.__data__.has(e)},Oe.prototype.clear=function(){this.__data__=new we,this.size=0},Oe.prototype.delete=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n},Oe.prototype.get=function(e){return this.__data__.get(e)},Oe.prototype.has=function(e){return this.__data__.has(e)},Oe.prototype.set=function(e,t){var r=this.__data__;if(r instanceof we){var o=r.__data__;if(!le||o.length-1&&e%1==0&&e-1&&e%1==0&&e<=a}function Ue(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}function Ve(e){return null!=e&&"object"==typeof e}var Ge=P?function(e){return function(t){return e(t)}}(P):function(e){return Ve(e)&&Ye(e.length)&&!!k[xe(e)]};function Ke(e){return null!=(t=e)&&Ye(t.length)&&!He(t)?Te(e):Ce(e);var t}e.exports=function(e,t){return Ne(e,t)}})),ie={a:["a","à","á","â","ã","ä","å","æ","ā","ă","ą","ǎ","ǟ","ǡ","ǻ","ȁ","ȃ","ȧ","ɐ","ɑ","ɒ","ͣ","а","ӑ","ӓ","ᵃ","ᵄ","ᶏ","ḁ","ẚ","ạ","ả","ấ","ầ","ẩ","ẫ","ậ","ắ","ằ","ẳ","ẵ","ặ","ₐ","ⱥ","a"],A:["A","À","Á","Â","Ã","Ä","Å","Ā","Ă","Ą","Ǎ","Ǟ","Ǡ","Ǻ","Ȁ","Ȃ","Ȧ","Ⱥ","А","Ӑ","Ӓ","ᴀ","ᴬ","Ḁ","Ạ","Ả","Ấ","Ầ","Ẩ","Ẫ","Ậ","Ắ","Ằ","Ẳ","Ẵ","Ặ","A"],b:["b","ƀ","ƃ","ɓ","ᖯ","ᵇ","ᵬ","ᶀ","ḃ","ḅ","ḇ","b"],B:["B","Ɓ","Ƃ","Ƀ","ʙ","ᛒ","ᴃ","ᴮ","ᴯ","Ḃ","Ḅ","Ḇ","B"],c:["c","ç","ć","ĉ","ċ","č","ƈ","ȼ","ɕ","ͨ","ᴄ","ᶜ","ḉ","ↄ","c"],C:["C","Ç","Ć","Ĉ","Ċ","Č","Ƈ","Ȼ","ʗ","Ḉ","C"],d:["d","ď","đ","Ƌ","ƌ","ȡ","ɖ","ɗ","ͩ","ᵈ","ᵭ","ᶁ","ᶑ","ḋ","ḍ","ḏ","ḑ","ḓ","d"],D:["D","Ď","Đ","Ɖ","Ɗ","ᴰ","Ḋ","Ḍ","Ḏ","Ḑ","Ḓ","D"],e:["e","è","é","ê","ë","ē","ĕ","ė","ę","ě","ǝ","ȅ","ȇ","ȩ","ɇ","ɘ","ͤ","ᵉ","ᶒ","ḕ","ḗ","ḙ","ḛ","ḝ","ẹ","ẻ","ẽ","ế","ề","ể","ễ","ệ","ₑ","e"],E:["E","È","É","Ê","Ë","Ē","Ĕ","Ė","Ę","Ě","Œ","Ǝ","Ɛ","Ȅ","Ȇ","Ȩ","Ɇ","ɛ","ɜ","ɶ","Є","Э","э","є","Ӭ","ӭ","ᴇ","ᴈ","ᴱ","ᴲ","ᵋ","ᵌ","ᶓ","ᶔ","ᶟ","Ḕ","Ḗ","Ḙ","Ḛ","Ḝ","Ẹ","Ẻ","Ẽ","Ế","Ề","Ể","Ễ","Ệ","E","𐐁","𐐩"],f:["f","ƒ","ᵮ","ᶂ","ᶠ","ḟ","f"],F:["F","Ƒ","Ḟ","ⅎ","F"],g:["g","ĝ","ğ","ġ","ģ","ǥ","ǧ","ǵ","ɠ","ɡ","ᵍ","ᵷ","ᵹ","ᶃ","ᶢ","ḡ","g"],G:["G","Ĝ","Ğ","Ġ","Ģ","Ɠ","Ǥ","Ǧ","Ǵ","ɢ","ʛ","ᴳ","Ḡ","G"],h:["h","ĥ","ħ","ƕ","ȟ","ɥ","ɦ","ʮ","ʯ","ʰ","ʱ","ͪ","Һ","һ","ᑋ","ᶣ","ḣ","ḥ","ḧ","ḩ","ḫ","ⱨ","h"],H:["H","Ĥ","Ħ","Ȟ","ʜ","ᕼ","ᚺ","ᚻ","ᴴ","Ḣ","Ḥ","Ḧ","Ḩ","Ḫ","Ⱨ","H"],i:["i","ì","í","î","ï","ĩ","ī","ĭ","į","ǐ","ȉ","ȋ","ɨ","ͥ","ᴉ","ᵎ","ᵢ","ᶖ","ᶤ","ḭ","ḯ","ỉ","ị","i"],I:["I","Ì","Í","Î","Ï","Ĩ","Ī","Ĭ","Į","İ","Ǐ","Ȉ","Ȋ","ɪ","І","ᴵ","ᵻ","ᶦ","ᶧ","Ḭ","Ḯ","Ỉ","Ị","I"],j:["j","ĵ","ǰ","ɉ","ʝ","ʲ","ᶡ","ᶨ","j"],J:["J","Ĵ","ᴊ","ᴶ","J"],k:["k","ķ","ƙ","ǩ","ʞ","ᵏ","ᶄ","ḱ","ḳ","ḵ","ⱪ","k"],K:["K","Ķ","Ƙ","Ǩ","ᴷ","Ḱ","Ḳ","Ḵ","Ⱪ","K"],l:["l","ĺ","ļ","ľ","ŀ","ł","ƚ","ȴ","ɫ","ɬ","ɭ","ˡ","ᶅ","ᶩ","ᶪ","ḷ","ḹ","ḻ","ḽ","ℓ","ⱡ"],L:["L","Ĺ","Ļ","Ľ","Ŀ","Ł","Ƚ","ʟ","ᴌ","ᴸ","ᶫ","Ḷ","Ḹ","Ḻ","Ḽ","Ⱡ","Ɫ"],m:["m","ɯ","ɰ","ɱ","ͫ","ᴟ","ᵐ","ᵚ","ᵯ","ᶆ","ᶬ","ᶭ","ḿ","ṁ","ṃ","㎡","㎥","m"],M:["M","Ɯ","ᴍ","ᴹ","Ḿ","Ṁ","Ṃ","M"],n:["n","ñ","ń","ņ","ň","ʼn","ƞ","ǹ","ȵ","ɲ","ɳ","ᵰ","ᶇ","ᶮ","ᶯ","ṅ","ṇ","ṉ","ṋ","ⁿ","n"],N:["N","Ñ","Ń","Ņ","Ň","Ɲ","Ǹ","Ƞ","ɴ","ᴎ","ᴺ","ᴻ","ᶰ","Ṅ","Ṇ","Ṉ","Ṋ","N"],o:["o","ò","ó","ô","õ","ö","ø","ō","ŏ","ő","ơ","ǒ","ǫ","ǭ","ǿ","ȍ","ȏ","ȫ","ȭ","ȯ","ȱ","ɵ","ͦ","о","ӧ","ө","ᴏ","ᴑ","ᴓ","ᴼ","ᵒ","ᶱ","ṍ","ṏ","ṑ","ṓ","ọ","ỏ","ố","ồ","ổ","ỗ","ộ","ớ","ờ","ở","ỡ","ợ","ₒ","o","𐐬"],O:["O","Ò","Ó","Ô","Õ","Ö","Ø","Ō","Ŏ","Ő","Ɵ","Ơ","Ǒ","Ǫ","Ǭ","Ǿ","Ȍ","Ȏ","Ȫ","Ȭ","Ȯ","Ȱ","О","Ӧ","Ө","Ṍ","Ṏ","Ṑ","Ṓ","Ọ","Ỏ","Ố","Ồ","Ổ","Ỗ","Ộ","Ớ","Ờ","Ở","Ỡ","Ợ","O","𐐄"],p:["p","ᵖ","ᵱ","ᵽ","ᶈ","ṕ","ṗ","p"],P:["P","Ƥ","ᴘ","ᴾ","Ṕ","Ṗ","Ᵽ","P"],q:["q","ɋ","ʠ","ᛩ","q"],Q:["Q","Ɋ","Q"],r:["r","ŕ","ŗ","ř","ȑ","ȓ","ɍ","ɹ","ɻ","ʳ","ʴ","ʵ","ͬ","ᵣ","ᵲ","ᶉ","ṙ","ṛ","ṝ","ṟ"],R:["R","Ŕ","Ŗ","Ř","Ʀ","Ȑ","Ȓ","Ɍ","ʀ","ʁ","ʶ","ᚱ","ᴙ","ᴚ","ᴿ","Ṙ","Ṛ","Ṝ","Ṟ","Ɽ"],s:["s","ś","ŝ","ş","š","ș","ʂ","ᔆ","ᶊ","ṡ","ṣ","ṥ","ṧ","ṩ","s"],S:["S","Ś","Ŝ","Ş","Š","Ș","ȿ","ˢ","ᵴ","Ṡ","Ṣ","Ṥ","Ṧ","Ṩ","S"],t:["t","ţ","ť","ŧ","ƫ","ƭ","ț","ʇ","ͭ","ᵀ","ᵗ","ᵵ","ᶵ","ṫ","ṭ","ṯ","ṱ","ẗ","t"],T:["T","Ţ","Ť","Ƭ","Ʈ","Ț","Ⱦ","ᴛ","ᵀ","Ṫ","Ṭ","Ṯ","Ṱ","T"],u:["u","ù","ú","û","ü","ũ","ū","ŭ","ů","ű","ų","ư","ǔ","ǖ","ǘ","ǚ","ǜ","ȕ","ȗ","ͧ","ߎ","ᵘ","ᵤ","ṳ","ṵ","ṷ","ṹ","ṻ","ụ","ủ","ứ","ừ","ử","ữ","ự","u"],U:["U","Ù","Ú","Û","Ü","Ũ","Ū","Ŭ","Ů","Ű","Ų","Ư","Ǔ","Ǖ","Ǘ","Ǚ","Ǜ","Ȕ","Ȗ","Ʉ","ᴜ","ᵁ","ᵾ","Ṳ","Ṵ","Ṷ","Ṹ","Ṻ","Ụ","Ủ","Ứ","Ừ","Ử","Ữ","Ự","U"],v:["v","ʋ","ͮ","ᵛ","ᵥ","ᶹ","ṽ","ṿ","ⱱ","v","ⱴ"],V:["V","Ʋ","Ʌ","ʌ","ᴠ","ᶌ","Ṽ","Ṿ","V"],w:["w","ŵ","ʷ","ᵂ","ẁ","ẃ","ẅ","ẇ","ẉ","ẘ","ⱳ","w"],W:["W","Ŵ","ʍ","ᴡ","Ẁ","Ẃ","Ẅ","Ẇ","Ẉ","Ⱳ","W"],x:["x","̽","͓","ᶍ","ͯ","ẋ","ẍ","ₓ","x"],X:["X","ˣ","ͯ","Ẋ","Ẍ","☒","✕","✖","✗","✘","X"],y:["y","ý","ÿ","ŷ","ȳ","ɏ","ʸ","ẏ","ỳ","ỵ","ỷ","ỹ","y"],Y:["Y","Ý","Ŷ","Ÿ","Ƴ","ƴ","Ȳ","Ɏ","ʎ","ʏ","Ẏ","Ỳ","Ỵ","Ỷ","Ỹ","Y"],z:["z","ź","ż","ž","ƶ","ȥ","ɀ","ʐ","ʑ","ᙆ","ᙇ","ᶻ","ᶼ","ᶽ","ẑ","ẓ","ẕ","ⱬ","z"],Z:["Z","Ź","Ż","Ž","Ƶ","Ȥ","ᴢ","ᵶ","Ẑ","Ẓ","Ẕ","Ⱬ","Z"]},ae=function(e){for(var t=[],n=0;n2&&void 0!==arguments[2]&&arguments[2],r=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if(null==e)return!1;var o=n?String(e).toLowerCase():ae(se(String(e)).toLowerCase()),i=n?t.toLowerCase():ae(se(t).toLowerCase());return r?o===i:o.indexOf(i)>-1},compare:function(e,t){function n(e){return null==e?"":ae(e.toLowerCase())}return(e=n(e))<(t=n(t))?-1:e>t?1:0}};var le=function(e,t,n,r,o,i,a,s,c,l){"boolean"!=typeof a&&(c=s,s=a,a=!1);var u,d="function"==typeof n?n.options:n;if(e&&e.render&&(d.render=e.render,d.staticRenderFns=e.staticRenderFns,d._compiled=!0,o&&(d.functional=!0)),r&&(d._scopeId=r),i?(u=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),t&&t.call(this,c(e)),e&&e._registeredComponents&&e._registeredComponents.add(i)},d._ssrRegister=u):t&&(u=a?function(){t.call(this,l(this.$root.$options.shadowRoot))}:function(e){t.call(this,s(e))}),u)if(d.functional){var f=d.render;d.render=function(e,t){return u.call(t),f(e,t)}}else{var p=d.beforeCreate;d.beforeCreate=p?[].concat(p,u):[u]}return n},ue=le({render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"footer__navigation__page-info"},[e._v("\n "+e._s(e.pageText)+" "),n("input",{staticClass:"footer__navigation__page-info__current-entry",attrs:{type:"text"},domProps:{value:e.currentPage},on:{keyup:function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:(t.stopPropagation(),e.changePage(t))}}}),e._v(" "+e._s(e.pageInfo)+"\n")])},staticRenderFns:[]},void 0,{name:"VgtPaginationPageInfo",props:{currentPage:{default:1},lastPage:{default:1},totalRecords:{default:0},ofText:{default:"of",type:String},pageText:{default:"page",type:String}},data:function(){return{}},computed:{pageInfo:function(){return"".concat(this.ofText," ").concat(this.lastPage)}},methods:{changePage:function(e){var t=parseInt(e.target.value,10);if(Number.isNaN(t)||t>this.lastPage||t<1)return e.target.value=this.currentPage,!1;e.target.value=t,this.$emit("page-changed",t)}},mounted:function(){},components:{}},"data-v-9a8cd1f4",!1,void 0,void 0,void 0),de=[10,20,30,40,50],fe=le({render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"vgt-wrap__footer vgt-clearfix"},[n("div",{staticClass:"footer__row-count vgt-pull-left"},[n("span",{staticClass:"footer__row-count__label"},[e._v(e._s(e.rowsPerPageText))]),e._v(" "),n("select",{directives:[{name:"model",rawName:"v-model",value:e.currentPerPage,expression:"currentPerPage"}],staticClass:"footer__row-count__select",attrs:{autocomplete:"off",name:"perPageSelect"},on:{change:[function(t){var n=Array.prototype.filter.call(t.target.options,(function(e){return e.selected})).map((function(e){return"_value"in e?e._value:e.value}));e.currentPerPage=t.target.multiple?n:n[0]},e.perPageChanged]}},[e._l(e.rowsPerPageOptions,(function(t,r){return n("option",{key:"rows-dropdown-option-"+r,domProps:{value:t}},[e._v("\n "+e._s(t)+"\n ")])})),e._v(" "),e.paginateDropdownAllowAll?n("option",{domProps:{value:e.total}},[e._v(e._s(e.allText))]):e._e()],2)]),e._v(" "),n("div",{staticClass:"footer__navigation vgt-pull-right"},[n("a",{staticClass:"footer__navigation__page-btn",class:{disabled:!e.prevIsPossible},attrs:{href:"javascript:undefined",tabindex:"0"},on:{click:function(t){return t.preventDefault(),t.stopPropagation(),e.previousPage(t)}}},[n("span",{staticClass:"chevron",class:{left:!e.rtl,right:e.rtl}}),e._v(" "),n("span",[e._v(e._s(e.prevText))])]),e._v(" "),"pages"===e.mode?n("pagination-page-info",{attrs:{totalRecords:e.total,lastPage:e.pagesCount,currentPage:e.currentPage,ofText:e.ofText,pageText:e.pageText},on:{"page-changed":e.changePage}}):n("div",{staticClass:"footer__navigation__info"},[e._v(e._s(e.paginatedInfo))]),e._v(" "),n("a",{staticClass:"footer__navigation__page-btn",class:{disabled:!e.nextIsPossible},attrs:{href:"javascript:undefined",tabindex:"0"},on:{click:function(t){return t.preventDefault(),t.stopPropagation(),e.nextPage(t)}}},[n("span",[e._v(e._s(e.nextText))]),e._v(" "),n("span",{staticClass:"chevron",class:{right:!e.rtl,left:e.rtl}})])],1)])},staticRenderFns:[]},void 0,{name:"VgtPagination",props:{styleClass:{default:"table table-bordered"},total:{default:null},perPage:{},rtl:{default:!1},customRowsPerPageDropdown:{default:function(){return[]}},paginateDropdownAllowAll:{default:!0},mode:{default:"records"},nextText:{default:"Next"},prevText:{default:"Prev"},rowsPerPageText:{default:"Rows per page:"},ofText:{default:"of"},pageText:{default:"page"},allText:{default:"All"}},data:function(){return{currentPage:1,prevPage:0,currentPerPage:10,rowsPerPageOptions:[]}},watch:{perPage:{handler:function(e,t){this.handlePerPage(),this.perPageChanged(t)},immediate:!0},customRowsPerPageDropdown:function(){this.handlePerPage()}},computed:{pagesCount:function(){var e=Math.floor(this.total/this.currentPerPage);return 0===this.total%this.currentPerPage?e:e+1},paginatedInfo:function(){var e=(this.currentPage-1)*this.currentPerPage+1,t=Math.min(this.total,this.currentPage*this.currentPerPage);return 0===t&&(e=0),"".concat(e," - ").concat(t," ").concat(this.ofText," ").concat(this.total)},nextIsPossible:function(){return this.currentPage1}},methods:{changePage:function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];e>0&&this.total>this.currentPerPage*(e-1)&&(this.prevPage=this.currentPage,this.currentPage=e,t&&this.pageChanged())},nextPage:function(){this.nextIsPossible&&(this.prevPage=this.currentPage,++this.currentPage,this.pageChanged())},previousPage:function(){this.prevIsPossible&&(this.prevPage=this.currentPage,--this.currentPage,this.pageChanged())},pageChanged:function(){this.$emit("page-changed",{currentPage:this.currentPage,prevPage:this.prevPage})},perPageChanged:function(e){e&&this.$emit("per-page-changed",{currentPerPage:this.currentPerPage}),this.changePage(1,!1)},handlePerPage:function(){if(null!==this.customRowsPerPageDropdown&&Array.isArray(this.customRowsPerPageDropdown)&&0!==this.customRowsPerPageDropdown.length?this.rowsPerPageOptions=ne(this.customRowsPerPageDropdown):this.rowsPerPageOptions=ne(de),this.perPage){this.currentPerPage=this.perPage;for(var e=!1,t=0;t0&&void 0!==arguments[0]&&arguments[0];this.columnFilters={},e&&this.$emit("filter-changed",this.columnFilters)},isFilterable:function(e){return e.filterOptions&&e.filterOptions.enabled},isDropdown:function(e){return this.isFilterable(e)&&e.filterOptions.filterDropdownItems&&e.filterOptions.filterDropdownItems.length},isDropdownObjects:function(e){return this.isDropdown(e)&&"object"===r(e.filterOptions.filterDropdownItems[0])},isDropdownArray:function(e){return this.isDropdown(e)&&"object"!==r(e.filterOptions.filterDropdownItems[0])},getPlaceholder:function(e){return this.isFilterable(e)&&e.filterOptions.placeholder||"Filter ".concat(e.label)},updateFiltersOnEnter:function(e,t){this.timer&&clearTimeout(this.timer),this.updateFiltersImmediately(e,t)},updateFiltersOnKeyup:function(e,t){"enter"!==e.filterOptions.trigger&&this.updateFilters(e,t)},updateFilters:function(e,t){var n=this;this.timer&&clearTimeout(this.timer),this.timer=setTimeout((function(){n.updateFiltersImmediately(e,t)}),400)},updateFiltersImmediately:function(e,t){this.$set(this.columnFilters,e.field,t),this.$emit("filter-changed",this.columnFilters)},populateInitialFilters:function(){for(var e=0;e0?"in "+r:r+" ago":r},formatLong:Oe,formatRelative:function(e,t,n,r){return Te[e]},localize:{ordinalNumber:function(e,t){var n=Number(e),r=n%100;if(r>20||r<10)switch(r%10){case 1:return n+"st";case 2:return n+"nd";case 3:return n+"rd"}return n+"th"},era:Le({values:{narrow:["B","A"],abbreviated:["BC","AD"],wide:["Before Christ","Anno Domini"]},defaultWidth:"wide"}),quarter:Le({values:{narrow:["1","2","3","4"],abbreviated:["Q1","Q2","Q3","Q4"],wide:["1st quarter","2nd quarter","3rd quarter","4th quarter"]},defaultWidth:"wide",argumentCallback:function(e){return Number(e)-1}}),month:Le({values:{narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],wide:["January","February","March","April","May","June","July","August","September","October","November","December"]},defaultWidth:"wide"}),day:Le({values:{narrow:["S","M","T","W","T","F","S"],short:["Su","Mo","Tu","We","Th","Fr","Sa"],abbreviated:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],wide:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},defaultWidth:"wide"}),dayPeriod:Le({values:{narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"}},defaultWidth:"wide",formattingValues:{narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"}},defaultFormattingWidth:"wide"})},match:{ordinalNumber:(ke={matchPattern:/^(\d+)(th|st|nd|rd)?/i,parsePattern:/\d+/i,valueCallback:function(e){return parseInt(e,10)}},function(e,t){var n=String(e),r=t||{},o=n.match(ke.matchPattern);if(!o)return null;var i=o[0],a=n.match(ke.parsePattern);if(!a)return null;var s=ke.valueCallback?ke.valueCallback(a[0]):a[0];return{value:s=r.valueCallback?r.valueCallback(s):s,rest:n.slice(i.length)}}),era:xe({matchPatterns:{narrow:/^(b|a)/i,abbreviated:/^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,wide:/^(before christ|before common era|anno domini|common era)/i},defaultMatchWidth:"wide",parsePatterns:{any:[/^b/i,/^(a|c)/i]},defaultParseWidth:"any"}),quarter:xe({matchPatterns:{narrow:/^[1234]/i,abbreviated:/^q[1234]/i,wide:/^[1234](th|st|nd|rd)? quarter/i},defaultMatchWidth:"wide",parsePatterns:{any:[/1/i,/2/i,/3/i,/4/i]},defaultParseWidth:"any",valueCallback:function(e){return e+1}}),month:xe({matchPatterns:{narrow:/^[jfmasond]/i,abbreviated:/^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,wide:/^(january|february|march|april|may|june|july|august|september|october|november|december)/i},defaultMatchWidth:"wide",parsePatterns:{narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^ja/i,/^f/i,/^mar/i,/^ap/i,/^may/i,/^jun/i,/^jul/i,/^au/i,/^s/i,/^o/i,/^n/i,/^d/i]},defaultParseWidth:"any"}),day:xe({matchPatterns:{narrow:/^[smtwf]/i,short:/^(su|mo|tu|we|th|fr|sa)/i,abbreviated:/^(sun|mon|tue|wed|thu|fri|sat)/i,wide:/^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i},defaultMatchWidth:"wide",parsePatterns:{narrow:[/^s/i,/^m/i,/^t/i,/^w/i,/^t/i,/^f/i,/^s/i],any:[/^su/i,/^m/i,/^tu/i,/^w/i,/^th/i,/^f/i,/^sa/i]},defaultParseWidth:"any"}),dayPeriod:xe({matchPatterns:{narrow:/^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,any:/^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i},defaultMatchWidth:"any",parsePatterns:{any:{am:/^a/i,pm:/^p/i,midnight:/^mi/i,noon:/^no/i,morning:/morning/i,afternoon:/afternoon/i,evening:/evening/i,night:/night/i}},defaultParseWidth:"any"})},options:{weekStartsOn:0,firstWeekContainsDate:1}};function Se(e,t){if(arguments.length<2)throw new TypeError("2 arguments required, but only "+arguments.length+" present");return function(e,t){if(arguments.length<2)throw new TypeError("2 arguments required, but only "+arguments.length+" present");var n=_e(e).getTime(),r=ve(t);return new Date(n+r)}(e,-ve(t))}function Ce(e,t){for(var n=e<0?"-":"",r=Math.abs(e).toString();r.length0?n:1-n;return Ce("yy"===t?r%100:r,t.length)},De=function(e,t){var n=e.getUTCMonth();return"M"===t?String(n+1):Ce(n+1,2)},We=function(e,t){return Ce(e.getUTCDate(),t.length)},Ee=function(e,t){return Ce(e.getUTCHours()%12||12,t.length)},Be=function(e,t){return Ce(e.getUTCHours(),t.length)},Pe=function(e,t){return Ce(e.getUTCMinutes(),t.length)},Xe=function(e,t){return Ce(e.getUTCSeconds(),t.length)},Re=function(e,t){var n=t.length,r=e.getUTCMilliseconds();return Ce(Math.floor(r*Math.pow(10,n-3)),t.length)},je=864e5;function Ie(e){if(arguments.length<1)throw new TypeError("1 argument required, but only "+arguments.length+" present");var t=_e(e),n=t.getUTCDay(),r=(n<1?7:0)+n-1;return t.setUTCDate(t.getUTCDate()-r),t.setUTCHours(0,0,0,0),t}function Fe(e){if(arguments.length<1)throw new TypeError("1 argument required, but only "+arguments.length+" present");var t=_e(e),n=t.getUTCFullYear(),r=new Date(0);r.setUTCFullYear(n+1,0,4),r.setUTCHours(0,0,0,0);var o=Ie(r),i=new Date(0);i.setUTCFullYear(n,0,4),i.setUTCHours(0,0,0,0);var a=Ie(i);return t.getTime()>=o.getTime()?n+1:t.getTime()>=a.getTime()?n:n-1}var $e=6048e5;function He(e){if(arguments.length<1)throw new TypeError("1 argument required, but only "+arguments.length+" present");var t=_e(e),n=Ie(t).getTime()-function(e){if(arguments.length<1)throw new TypeError("1 argument required, but only "+arguments.length+" present");var t=Fe(e),n=new Date(0);return n.setUTCFullYear(t,0,4),n.setUTCHours(0,0,0,0),Ie(n)}(t).getTime();return Math.round(n/$e)+1}function Ye(e,t){if(arguments.length<1)throw new TypeError("1 argument required, but only "+arguments.length+" present");var n=t||{},r=n.locale,o=r&&r.options&&r.options.weekStartsOn,i=null==o?0:ve(o),a=null==n.weekStartsOn?i:ve(n.weekStartsOn);if(!(a>=0&&a<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");var s=_e(e),c=s.getUTCDay(),l=(c=1&&c<=7))throw new RangeError("firstWeekContainsDate must be between 1 and 7 inclusively");var l=new Date(0);l.setUTCFullYear(r+1,0,c),l.setUTCHours(0,0,0,0);var u=Ye(l,t),d=new Date(0);d.setUTCFullYear(r,0,c),d.setUTCHours(0,0,0,0);var f=Ye(d,t);return n.getTime()>=u.getTime()?r+1:n.getTime()>=f.getTime()?r:r-1}var Ve=6048e5;function Ge(e,t){if(arguments.length<1)throw new TypeError("1 argument required, but only "+arguments.length+" present");var n=_e(e),r=Ye(n,t).getTime()-function(e,t){if(arguments.length<1)throw new TypeError("1 argument required, but only "+arguments.length+" present");var n=t||{},r=n.locale,o=r&&r.options&&r.options.firstWeekContainsDate,i=null==o?1:ve(o),a=null==n.firstWeekContainsDate?i:ve(n.firstWeekContainsDate),s=Ue(e,t),c=new Date(0);return c.setUTCFullYear(s,0,a),c.setUTCHours(0,0,0,0),Ye(c,t)}(n,t).getTime();return Math.round(r/Ve)+1}var Ke="midnight",Qe="noon",Je="morning",Ze="afternoon",et="evening",tt="night",nt={G:function(e,t,n){var r=e.getUTCFullYear()>0?1:0;switch(t){case"G":case"GG":case"GGG":return n.era(r,{width:"abbreviated"});case"GGGGG":return n.era(r,{width:"narrow"});case"GGGG":default:return n.era(r,{width:"wide"})}},y:function(e,t,n){if("yo"===t){var r=e.getUTCFullYear(),o=r>0?r:1-r;return n.ordinalNumber(o,{unit:"year"})}return qe(e,t)},Y:function(e,t,n,r){var o=Ue(e,r),i=o>0?o:1-o;return"YY"===t?Ce(i%100,2):"Yo"===t?n.ordinalNumber(i,{unit:"year"}):Ce(i,t.length)},R:function(e,t){return Ce(Fe(e),t.length)},u:function(e,t){return Ce(e.getUTCFullYear(),t.length)},Q:function(e,t,n){var r=Math.ceil((e.getUTCMonth()+1)/3);switch(t){case"Q":return String(r);case"QQ":return Ce(r,2);case"Qo":return n.ordinalNumber(r,{unit:"quarter"});case"QQQ":return n.quarter(r,{width:"abbreviated",context:"formatting"});case"QQQQQ":return n.quarter(r,{width:"narrow",context:"formatting"});case"QQQQ":default:return n.quarter(r,{width:"wide",context:"formatting"})}},q:function(e,t,n){var r=Math.ceil((e.getUTCMonth()+1)/3);switch(t){case"q":return String(r);case"qq":return Ce(r,2);case"qo":return n.ordinalNumber(r,{unit:"quarter"});case"qqq":return n.quarter(r,{width:"abbreviated",context:"standalone"});case"qqqqq":return n.quarter(r,{width:"narrow",context:"standalone"});case"qqqq":default:return n.quarter(r,{width:"wide",context:"standalone"})}},M:function(e,t,n){var r=e.getUTCMonth();switch(t){case"M":case"MM":return De(e,t);case"Mo":return n.ordinalNumber(r+1,{unit:"month"});case"MMM":return n.month(r,{width:"abbreviated",context:"formatting"});case"MMMMM":return n.month(r,{width:"narrow",context:"formatting"});case"MMMM":default:return n.month(r,{width:"wide",context:"formatting"})}},L:function(e,t,n){var r=e.getUTCMonth();switch(t){case"L":return String(r+1);case"LL":return Ce(r+1,2);case"Lo":return n.ordinalNumber(r+1,{unit:"month"});case"LLL":return n.month(r,{width:"abbreviated",context:"standalone"});case"LLLLL":return n.month(r,{width:"narrow",context:"standalone"});case"LLLL":default:return n.month(r,{width:"wide",context:"standalone"})}},w:function(e,t,n,r){var o=Ge(e,r);return"wo"===t?n.ordinalNumber(o,{unit:"week"}):Ce(o,t.length)},I:function(e,t,n){var r=He(e);return"Io"===t?n.ordinalNumber(r,{unit:"week"}):Ce(r,t.length)},d:function(e,t,n){return"do"===t?n.ordinalNumber(e.getUTCDate(),{unit:"date"}):We(e,t)},D:function(e,t,n){var r=function(e){if(arguments.length<1)throw new TypeError("1 argument required, but only "+arguments.length+" present");var t=_e(e),n=t.getTime();t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0);var r=n-t.getTime();return Math.floor(r/je)+1}(e);return"Do"===t?n.ordinalNumber(r,{unit:"dayOfYear"}):Ce(r,t.length)},E:function(e,t,n){var r=e.getUTCDay();switch(t){case"E":case"EE":case"EEE":return n.day(r,{width:"abbreviated",context:"formatting"});case"EEEEE":return n.day(r,{width:"narrow",context:"formatting"});case"EEEEEE":return n.day(r,{width:"short",context:"formatting"});case"EEEE":default:return n.day(r,{width:"wide",context:"formatting"})}},e:function(e,t,n,r){var o=e.getUTCDay(),i=(o-r.weekStartsOn+8)%7||7;switch(t){case"e":return String(i);case"ee":return Ce(i,2);case"eo":return n.ordinalNumber(i,{unit:"day"});case"eee":return n.day(o,{width:"abbreviated",context:"formatting"});case"eeeee":return n.day(o,{width:"narrow",context:"formatting"});case"eeeeee":return n.day(o,{width:"short",context:"formatting"});case"eeee":default:return n.day(o,{width:"wide",context:"formatting"})}},c:function(e,t,n,r){var o=e.getUTCDay(),i=(o-r.weekStartsOn+8)%7||7;switch(t){case"c":return String(i);case"cc":return Ce(i,t.length);case"co":return n.ordinalNumber(i,{unit:"day"});case"ccc":return n.day(o,{width:"abbreviated",context:"standalone"});case"ccccc":return n.day(o,{width:"narrow",context:"standalone"});case"cccccc":return n.day(o,{width:"short",context:"standalone"});case"cccc":default:return n.day(o,{width:"wide",context:"standalone"})}},i:function(e,t,n){var r=e.getUTCDay(),o=0===r?7:r;switch(t){case"i":return String(o);case"ii":return Ce(o,t.length);case"io":return n.ordinalNumber(o,{unit:"day"});case"iii":return n.day(r,{width:"abbreviated",context:"formatting"});case"iiiii":return n.day(r,{width:"narrow",context:"formatting"});case"iiiiii":return n.day(r,{width:"short",context:"formatting"});case"iiii":default:return n.day(r,{width:"wide",context:"formatting"})}},a:function(e,t,n){var r=e.getUTCHours()/12>=1?"pm":"am";switch(t){case"a":case"aa":case"aaa":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"});case"aaaaa":return n.dayPeriod(r,{width:"narrow",context:"formatting"});case"aaaa":default:return n.dayPeriod(r,{width:"wide",context:"formatting"})}},b:function(e,t,n){var r,o=e.getUTCHours();switch(r=12===o?Qe:0===o?Ke:o/12>=1?"pm":"am",t){case"b":case"bb":case"bbb":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"});case"bbbbb":return n.dayPeriod(r,{width:"narrow",context:"formatting"});case"bbbb":default:return n.dayPeriod(r,{width:"wide",context:"formatting"})}},B:function(e,t,n){var r,o=e.getUTCHours();switch(r=o>=17?et:o>=12?Ze:o>=4?Je:tt,t){case"B":case"BB":case"BBB":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"});case"BBBBB":return n.dayPeriod(r,{width:"narrow",context:"formatting"});case"BBBB":default:return n.dayPeriod(r,{width:"wide",context:"formatting"})}},h:function(e,t,n){if("ho"===t){var r=e.getUTCHours()%12;return 0===r&&(r=12),n.ordinalNumber(r,{unit:"hour"})}return Ee(e,t)},H:function(e,t,n){return"Ho"===t?n.ordinalNumber(e.getUTCHours(),{unit:"hour"}):Be(e,t)},K:function(e,t,n){var r=e.getUTCHours()%12;return"Ko"===t?n.ordinalNumber(r,{unit:"hour"}):Ce(r,t.length)},k:function(e,t,n){var r=e.getUTCHours();return 0===r&&(r=24),"ko"===t?n.ordinalNumber(r,{unit:"hour"}):Ce(r,t.length)},m:function(e,t,n){return"mo"===t?n.ordinalNumber(e.getUTCMinutes(),{unit:"minute"}):Pe(e,t)},s:function(e,t,n){return"so"===t?n.ordinalNumber(e.getUTCSeconds(),{unit:"second"}):Xe(e,t)},S:function(e,t){return Re(e,t)},X:function(e,t,n,r){var o=(r._originalDate||e).getTimezoneOffset();if(0===o)return"Z";switch(t){case"X":return ot(o);case"XXXX":case"XX":return it(o);case"XXXXX":case"XXX":default:return it(o,":")}},x:function(e,t,n,r){var o=(r._originalDate||e).getTimezoneOffset();switch(t){case"x":return ot(o);case"xxxx":case"xx":return it(o);case"xxxxx":case"xxx":default:return it(o,":")}},O:function(e,t,n,r){var o=(r._originalDate||e).getTimezoneOffset();switch(t){case"O":case"OO":case"OOO":return"GMT"+rt(o,":");case"OOOO":default:return"GMT"+it(o,":")}},z:function(e,t,n,r){var o=(r._originalDate||e).getTimezoneOffset();switch(t){case"z":case"zz":case"zzz":return"GMT"+rt(o,":");case"zzzz":default:return"GMT"+it(o,":")}},t:function(e,t,n,r){var o=r._originalDate||e;return Ce(Math.floor(o.getTime()/1e3),t.length)},T:function(e,t,n,r){return Ce((r._originalDate||e).getTime(),t.length)}};function rt(e,t){var n=e>0?"-":"+",r=Math.abs(e),o=Math.floor(r/60),i=r%60;if(0===i)return n+String(o);var a=t||"";return n+String(o)+a+Ce(i,2)}function ot(e,t){return e%60==0?(e>0?"-":"+")+Ce(Math.abs(e)/60,2):it(e,t)}function it(e,t){var n=t||"",r=e>0?"-":"+",o=Math.abs(e);return r+Ce(Math.floor(o/60),2)+n+Ce(o%60,2)}function at(e,t){switch(e){case"P":return t.date({width:"short"});case"PP":return t.date({width:"medium"});case"PPP":return t.date({width:"long"});case"PPPP":default:return t.date({width:"full"})}}function st(e,t){switch(e){case"p":return t.time({width:"short"});case"pp":return t.time({width:"medium"});case"ppp":return t.time({width:"long"});case"pppp":default:return t.time({width:"full"})}}var ct={p:st,P:function(e,t){var n,r=e.match(/(P+)(p+)?/),o=r[1],i=r[2];if(!i)return at(e,t);switch(o){case"P":n=t.dateTime({width:"short"});break;case"PP":n=t.dateTime({width:"medium"});break;case"PPP":n=t.dateTime({width:"long"});break;case"PPPP":default:n=t.dateTime({width:"full"})}return n.replace("{{date}}",at(o,t)).replace("{{time}}",st(i,t))}},lt=["D","DD"],ut=["YY","YYYY"];function dt(e){return-1!==lt.indexOf(e)}function ft(e){return-1!==ut.indexOf(e)}function pt(e){if("YYYY"===e)throw new RangeError("Use `yyyy` instead of `YYYY` for formatting years; see: https://git.io/fxCyr");if("YY"===e)throw new RangeError("Use `yy` instead of `YY` for formatting years; see: https://git.io/fxCyr");if("D"===e)throw new RangeError("Use `d` instead of `D` for formatting days of the month; see: https://git.io/fxCyr");if("DD"===e)throw new RangeError("Use `dd` instead of `DD` for formatting days of the month; see: https://git.io/fxCyr")}var ht=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,mt=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,bt=/^'(.*?)'?$/,gt=/''/g,_t=/[a-zA-Z]/;function vt(e,t,n){if(arguments.length<2)throw new TypeError("2 arguments required, but only "+arguments.length+" present");var r=String(t),o=n||{},i=o.locale||Ne,a=i.options&&i.options.firstWeekContainsDate,s=null==a?1:ve(a),c=null==o.firstWeekContainsDate?s:ve(o.firstWeekContainsDate);if(!(c>=1&&c<=7))throw new RangeError("firstWeekContainsDate must be between 1 and 7 inclusively");var l=i.options&&i.options.weekStartsOn,u=null==l?0:ve(l),d=null==o.weekStartsOn?u:ve(o.weekStartsOn);if(!(d>=0&&d<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");if(!i.localize)throw new RangeError("locale must contain localize property");if(!i.formatLong)throw new RangeError("locale must contain formatLong property");var f=_e(e);if(!we(f))throw new RangeError("Invalid time value");var p=Se(f,ye(f)),h={firstWeekContainsDate:c,weekStartsOn:d,locale:i,_originalDate:f};return r.match(mt).map((function(e){var t=e[0];return"p"===t||"P"===t?(0,ct[t])(e,i.formatLong,h):e})).join("").match(ht).map((function(e){if("''"===e)return"'";var t=e[0];if("'"===t)return e.match(bt)[1].replace(gt,"'");var n=nt[t];if(n)return!o.useAdditionalWeekYearTokens&&ft(e)&&pt(e),!o.useAdditionalDayOfYearTokens&&dt(e)&&pt(e),n(p,e,i.localize,h);if(t.match(_t))throw new RangeError("Format string contains an unescaped latin alphabet character `"+t+"`");return e})).join("")}function Mt(e,t){if(null==e)throw new TypeError("assign requires that input parameter not be null or undefined");for(var n in t=t||{})t.hasOwnProperty(n)&&(e[n]=t[n]);return e}function yt(e,t,n){if(arguments.length<2)throw new TypeError("2 arguments required, but only "+arguments.length+" present");var r=n||{},o=r.locale,i=o&&o.options&&o.options.weekStartsOn,a=null==i?0:ve(i),s=null==r.weekStartsOn?a:ve(r.weekStartsOn);if(!(s>=0&&s<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");var c=_e(e),l=ve(t),u=((l%7+7)%70,o=r?t:1-t;if(o<=50)n=e||100;else{var i=o+50;n=e+100*Math.floor(i/100)-(e>=i%100?100:0)}return r?n:1-n}var Pt=[31,28,31,30,31,30,31,31,30,31,30,31],Xt=[31,29,31,30,31,30,31,31,30,31,30,31];function Rt(e){return e%400==0||e%4==0&&e%100!=0}var jt={G:{priority:140,parse:function(e,t,n,r){switch(t){case"G":case"GG":case"GGG":return n.era(e,{width:"abbreviated"})||n.era(e,{width:"narrow"});case"GGGGG":return n.era(e,{width:"narrow"});case"GGGG":default:return n.era(e,{width:"wide"})||n.era(e,{width:"abbreviated"})||n.era(e,{width:"narrow"})}},set:function(e,t,n,r){return t.era=n,e.setUTCFullYear(n,0,1),e.setUTCHours(0,0,0,0),e},incompatibleTokens:["R","u","t","T"]},y:{priority:130,parse:function(e,t,n,r){var o=function(e){return{year:e,isTwoDigitYear:"yy"===t}};switch(t){case"y":return Dt(4,e,o);case"yo":return n.ordinalNumber(e,{unit:"year",valueCallback:o});default:return Dt(t.length,e,o)}},validate:function(e,t,n){return t.isTwoDigitYear||t.year>0},set:function(e,t,n,r){var o=e.getUTCFullYear();if(n.isTwoDigitYear){var i=Bt(n.year,o);return e.setUTCFullYear(i,0,1),e.setUTCHours(0,0,0,0),e}var a="era"in t&&1!==t.era?1-n.year:n.year;return e.setUTCFullYear(a,0,1),e.setUTCHours(0,0,0,0),e},incompatibleTokens:["Y","R","u","w","I","i","e","c","t","T"]},Y:{priority:130,parse:function(e,t,n,r){var o=function(e){return{year:e,isTwoDigitYear:"YY"===t}};switch(t){case"Y":return Dt(4,e,o);case"Yo":return n.ordinalNumber(e,{unit:"year",valueCallback:o});default:return Dt(t.length,e,o)}},validate:function(e,t,n){return t.isTwoDigitYear||t.year>0},set:function(e,t,n,r){var o=Ue(e,r);if(n.isTwoDigitYear){var i=Bt(n.year,o);return e.setUTCFullYear(i,0,r.firstWeekContainsDate),e.setUTCHours(0,0,0,0),Ye(e,r)}var a="era"in t&&1!==t.era?1-n.year:n.year;return e.setUTCFullYear(a,0,r.firstWeekContainsDate),e.setUTCHours(0,0,0,0),Ye(e,r)},incompatibleTokens:["y","R","u","Q","q","M","L","I","d","D","i","t","T"]},R:{priority:130,parse:function(e,t,n,r){return Wt("R"===t?4:t.length,e)},set:function(e,t,n,r){var o=new Date(0);return o.setUTCFullYear(n,0,4),o.setUTCHours(0,0,0,0),Ie(o)},incompatibleTokens:["G","y","Y","u","Q","q","M","L","w","d","D","e","c","t","T"]},u:{priority:130,parse:function(e,t,n,r){return Wt("u"===t?4:t.length,e)},set:function(e,t,n,r){return e.setUTCFullYear(n,0,1),e.setUTCHours(0,0,0,0),e},incompatibleTokens:["G","y","Y","R","w","I","i","e","c","t","T"]},Q:{priority:120,parse:function(e,t,n,r){switch(t){case"Q":case"QQ":return Dt(t.length,e);case"Qo":return n.ordinalNumber(e,{unit:"quarter"});case"QQQ":return n.quarter(e,{width:"abbreviated",context:"formatting"})||n.quarter(e,{width:"narrow",context:"formatting"});case"QQQQQ":return n.quarter(e,{width:"narrow",context:"formatting"});case"QQQQ":default:return n.quarter(e,{width:"wide",context:"formatting"})||n.quarter(e,{width:"abbreviated",context:"formatting"})||n.quarter(e,{width:"narrow",context:"formatting"})}},validate:function(e,t,n){return t>=1&&t<=4},set:function(e,t,n,r){return e.setUTCMonth(3*(n-1),1),e.setUTCHours(0,0,0,0),e},incompatibleTokens:["Y","R","q","M","L","w","I","d","D","i","e","c","t","T"]},q:{priority:120,parse:function(e,t,n,r){switch(t){case"q":case"qq":return Dt(t.length,e);case"qo":return n.ordinalNumber(e,{unit:"quarter"});case"qqq":return n.quarter(e,{width:"abbreviated",context:"standalone"})||n.quarter(e,{width:"narrow",context:"standalone"});case"qqqqq":return n.quarter(e,{width:"narrow",context:"standalone"});case"qqqq":default:return n.quarter(e,{width:"wide",context:"standalone"})||n.quarter(e,{width:"abbreviated",context:"standalone"})||n.quarter(e,{width:"narrow",context:"standalone"})}},validate:function(e,t,n){return t>=1&&t<=4},set:function(e,t,n,r){return e.setUTCMonth(3*(n-1),1),e.setUTCHours(0,0,0,0),e},incompatibleTokens:["Y","R","Q","M","L","w","I","d","D","i","e","c","t","T"]},M:{priority:110,parse:function(e,t,n,r){var o=function(e){return e-1};switch(t){case"M":return St(Ot.month,e,o);case"MM":return Dt(2,e,o);case"Mo":return n.ordinalNumber(e,{unit:"month",valueCallback:o});case"MMM":return n.month(e,{width:"abbreviated",context:"formatting"})||n.month(e,{width:"narrow",context:"formatting"});case"MMMMM":return n.month(e,{width:"narrow",context:"formatting"});case"MMMM":default:return n.month(e,{width:"wide",context:"formatting"})||n.month(e,{width:"abbreviated",context:"formatting"})||n.month(e,{width:"narrow",context:"formatting"})}},validate:function(e,t,n){return t>=0&&t<=11},set:function(e,t,n,r){return e.setUTCMonth(n,1),e.setUTCHours(0,0,0,0),e},incompatibleTokens:["Y","R","q","Q","L","w","I","D","i","e","c","t","T"]},L:{priority:110,parse:function(e,t,n,r){var o=function(e){return e-1};switch(t){case"L":return St(Ot.month,e,o);case"LL":return Dt(2,e,o);case"Lo":return n.ordinalNumber(e,{unit:"month",valueCallback:o});case"LLL":return n.month(e,{width:"abbreviated",context:"standalone"})||n.month(e,{width:"narrow",context:"standalone"});case"LLLLL":return n.month(e,{width:"narrow",context:"standalone"});case"LLLL":default:return n.month(e,{width:"wide",context:"standalone"})||n.month(e,{width:"abbreviated",context:"standalone"})||n.month(e,{width:"narrow",context:"standalone"})}},validate:function(e,t,n){return t>=0&&t<=11},set:function(e,t,n,r){return e.setUTCMonth(n,1),e.setUTCHours(0,0,0,0),e},incompatibleTokens:["Y","R","q","Q","M","w","I","D","i","e","c","t","T"]},w:{priority:100,parse:function(e,t,n,r){switch(t){case"w":return St(Ot.week,e);case"wo":return n.ordinalNumber(e,{unit:"week"});default:return Dt(t.length,e)}},validate:function(e,t,n){return t>=1&&t<=53},set:function(e,t,n,r){return Ye(function(e,t,n){if(arguments.length<2)throw new TypeError("2 arguments required, but only "+arguments.length+" present");var r=_e(e),o=ve(t),i=Ge(r,n)-o;return r.setUTCDate(r.getUTCDate()-7*i),r}(e,n,r),r)},incompatibleTokens:["y","R","u","q","Q","M","L","I","d","D","i","t","T"]},I:{priority:100,parse:function(e,t,n,r){switch(t){case"I":return St(Ot.week,e);case"Io":return n.ordinalNumber(e,{unit:"week"});default:return Dt(t.length,e)}},validate:function(e,t,n){return t>=1&&t<=53},set:function(e,t,n,r){return Ie(function(e,t){if(arguments.length<2)throw new TypeError("2 arguments required, but only "+arguments.length+" present");var n=_e(e),r=ve(t),o=He(n)-r;return n.setUTCDate(n.getUTCDate()-7*o),n}(e,n,r),r)},incompatibleTokens:["y","Y","u","q","Q","M","L","w","d","D","e","c","t","T"]},d:{priority:90,parse:function(e,t,n,r){switch(t){case"d":return St(Ot.date,e);case"do":return n.ordinalNumber(e,{unit:"date"});default:return Dt(t.length,e)}},validate:function(e,t,n){var r=Rt(e.getUTCFullYear()),o=e.getUTCMonth();return r?t>=1&&t<=Xt[o]:t>=1&&t<=Pt[o]},set:function(e,t,n,r){return e.setUTCDate(n),e.setUTCHours(0,0,0,0),e},incompatibleTokens:["Y","R","q","Q","w","I","D","i","e","c","t","T"]},D:{priority:90,parse:function(e,t,n,r){switch(t){case"D":case"DD":return St(Ot.dayOfYear,e);case"Do":return n.ordinalNumber(e,{unit:"date"});default:return Dt(t.length,e)}},validate:function(e,t,n){return Rt(e.getUTCFullYear())?t>=1&&t<=366:t>=1&&t<=365},set:function(e,t,n,r){return e.setUTCMonth(0,n),e.setUTCHours(0,0,0,0),e},incompatibleTokens:["Y","R","q","Q","M","L","w","I","d","E","i","e","c","t","T"]},E:{priority:90,parse:function(e,t,n,r){switch(t){case"E":case"EE":case"EEE":return n.day(e,{width:"abbreviated",context:"formatting"})||n.day(e,{width:"short",context:"formatting"})||n.day(e,{width:"narrow",context:"formatting"});case"EEEEE":return n.day(e,{width:"narrow",context:"formatting"});case"EEEEEE":return n.day(e,{width:"short",context:"formatting"})||n.day(e,{width:"narrow",context:"formatting"});case"EEEE":default:return n.day(e,{width:"wide",context:"formatting"})||n.day(e,{width:"abbreviated",context:"formatting"})||n.day(e,{width:"short",context:"formatting"})||n.day(e,{width:"narrow",context:"formatting"})}},validate:function(e,t,n){return t>=0&&t<=6},set:function(e,t,n,r){return(e=yt(e,n,r)).setUTCHours(0,0,0,0),e},incompatibleTokens:["D","i","e","c","t","T"]},e:{priority:90,parse:function(e,t,n,r){var o=function(e){var t=7*Math.floor((e-1)/7);return(e+r.weekStartsOn+6)%7+t};switch(t){case"e":case"ee":return Dt(t.length,e,o);case"eo":return n.ordinalNumber(e,{unit:"day",valueCallback:o});case"eee":return n.day(e,{width:"abbreviated",context:"formatting"})||n.day(e,{width:"short",context:"formatting"})||n.day(e,{width:"narrow",context:"formatting"});case"eeeee":return n.day(e,{width:"narrow",context:"formatting"});case"eeeeee":return n.day(e,{width:"short",context:"formatting"})||n.day(e,{width:"narrow",context:"formatting"});case"eeee":default:return n.day(e,{width:"wide",context:"formatting"})||n.day(e,{width:"abbreviated",context:"formatting"})||n.day(e,{width:"short",context:"formatting"})||n.day(e,{width:"narrow",context:"formatting"})}},validate:function(e,t,n){return t>=0&&t<=6},set:function(e,t,n,r){return(e=yt(e,n,r)).setUTCHours(0,0,0,0),e},incompatibleTokens:["y","R","u","q","Q","M","L","I","d","D","E","i","c","t","T"]},c:{priority:90,parse:function(e,t,n,r){var o=function(e){var t=7*Math.floor((e-1)/7);return(e+r.weekStartsOn+6)%7+t};switch(t){case"c":case"cc":return Dt(t.length,e,o);case"co":return n.ordinalNumber(e,{unit:"day",valueCallback:o});case"ccc":return n.day(e,{width:"abbreviated",context:"standalone"})||n.day(e,{width:"short",context:"standalone"})||n.day(e,{width:"narrow",context:"standalone"});case"ccccc":return n.day(e,{width:"narrow",context:"standalone"});case"cccccc":return n.day(e,{width:"short",context:"standalone"})||n.day(e,{width:"narrow",context:"standalone"});case"cccc":default:return n.day(e,{width:"wide",context:"standalone"})||n.day(e,{width:"abbreviated",context:"standalone"})||n.day(e,{width:"short",context:"standalone"})||n.day(e,{width:"narrow",context:"standalone"})}},validate:function(e,t,n){return t>=0&&t<=6},set:function(e,t,n,r){return(e=yt(e,n,r)).setUTCHours(0,0,0,0),e},incompatibleTokens:["y","R","u","q","Q","M","L","I","d","D","E","i","e","t","T"]},i:{priority:90,parse:function(e,t,n,r){var o=function(e){return 0===e?7:e};switch(t){case"i":case"ii":return Dt(t.length,e);case"io":return n.ordinalNumber(e,{unit:"day"});case"iii":return n.day(e,{width:"abbreviated",context:"formatting",valueCallback:o})||n.day(e,{width:"short",context:"formatting",valueCallback:o})||n.day(e,{width:"narrow",context:"formatting",valueCallback:o});case"iiiii":return n.day(e,{width:"narrow",context:"formatting",valueCallback:o});case"iiiiii":return n.day(e,{width:"short",context:"formatting",valueCallback:o})||n.day(e,{width:"narrow",context:"formatting",valueCallback:o});case"iiii":default:return n.day(e,{width:"wide",context:"formatting",valueCallback:o})||n.day(e,{width:"abbreviated",context:"formatting",valueCallback:o})||n.day(e,{width:"short",context:"formatting",valueCallback:o})||n.day(e,{width:"narrow",context:"formatting",valueCallback:o})}},validate:function(e,t,n){return t>=1&&t<=7},set:function(e,t,n,r){return(e=function(e,t){if(arguments.length<2)throw new TypeError("2 arguments required, but only "+arguments.length+" present");var n=ve(t);n%7==0&&(n-=7);var r=_e(e),o=((n%7+7)%7<1?7:0)+n-r.getUTCDay();return r.setUTCDate(r.getUTCDate()+o),r}(e,n,r)).setUTCHours(0,0,0,0),e},incompatibleTokens:["y","Y","u","q","Q","M","L","w","d","D","E","e","c","t","T"]},a:{priority:80,parse:function(e,t,n,r){switch(t){case"a":case"aa":case"aaa":return n.dayPeriod(e,{width:"abbreviated",context:"formatting"})||n.dayPeriod(e,{width:"narrow",context:"formatting"});case"aaaaa":return n.dayPeriod(e,{width:"narrow",context:"formatting"});case"aaaa":default:return n.dayPeriod(e,{width:"wide",context:"formatting"})||n.dayPeriod(e,{width:"abbreviated",context:"formatting"})||n.dayPeriod(e,{width:"narrow",context:"formatting"})}},set:function(e,t,n,r){return e.setUTCHours(Et(n),0,0,0),e},incompatibleTokens:["b","B","H","K","k","t","T"]},b:{priority:80,parse:function(e,t,n,r){switch(t){case"b":case"bb":case"bbb":return n.dayPeriod(e,{width:"abbreviated",context:"formatting"})||n.dayPeriod(e,{width:"narrow",context:"formatting"});case"bbbbb":return n.dayPeriod(e,{width:"narrow",context:"formatting"});case"bbbb":default:return n.dayPeriod(e,{width:"wide",context:"formatting"})||n.dayPeriod(e,{width:"abbreviated",context:"formatting"})||n.dayPeriod(e,{width:"narrow",context:"formatting"})}},set:function(e,t,n,r){return e.setUTCHours(Et(n),0,0,0),e},incompatibleTokens:["a","B","H","K","k","t","T"]},B:{priority:80,parse:function(e,t,n,r){switch(t){case"B":case"BB":case"BBB":return n.dayPeriod(e,{width:"abbreviated",context:"formatting"})||n.dayPeriod(e,{width:"narrow",context:"formatting"});case"BBBBB":return n.dayPeriod(e,{width:"narrow",context:"formatting"});case"BBBB":default:return n.dayPeriod(e,{width:"wide",context:"formatting"})||n.dayPeriod(e,{width:"abbreviated",context:"formatting"})||n.dayPeriod(e,{width:"narrow",context:"formatting"})}},set:function(e,t,n,r){return e.setUTCHours(Et(n),0,0,0),e},incompatibleTokens:["a","b","t","T"]},h:{priority:70,parse:function(e,t,n,r){switch(t){case"h":return St(Ot.hour12h,e);case"ho":return n.ordinalNumber(e,{unit:"hour"});default:return Dt(t.length,e)}},validate:function(e,t,n){return t>=1&&t<=12},set:function(e,t,n,r){var o=e.getUTCHours()>=12;return o&&n<12?e.setUTCHours(n+12,0,0,0):o||12!==n?e.setUTCHours(n,0,0,0):e.setUTCHours(0,0,0,0),e},incompatibleTokens:["H","K","k","t","T"]},H:{priority:70,parse:function(e,t,n,r){switch(t){case"H":return St(Ot.hour23h,e);case"Ho":return n.ordinalNumber(e,{unit:"hour"});default:return Dt(t.length,e)}},validate:function(e,t,n){return t>=0&&t<=23},set:function(e,t,n,r){return e.setUTCHours(n,0,0,0),e},incompatibleTokens:["a","b","h","K","k","t","T"]},K:{priority:70,parse:function(e,t,n,r){switch(t){case"K":return St(Ot.hour11h,e);case"Ko":return n.ordinalNumber(e,{unit:"hour"});default:return Dt(t.length,e)}},validate:function(e,t,n){return t>=0&&t<=11},set:function(e,t,n,r){return e.getUTCHours()>=12&&n<12?e.setUTCHours(n+12,0,0,0):e.setUTCHours(n,0,0,0),e},incompatibleTokens:["a","b","h","H","k","t","T"]},k:{priority:70,parse:function(e,t,n,r){switch(t){case"k":return St(Ot.hour24h,e);case"ko":return n.ordinalNumber(e,{unit:"hour"});default:return Dt(t.length,e)}},validate:function(e,t,n){return t>=1&&t<=24},set:function(e,t,n,r){var o=n<=24?n%24:n;return e.setUTCHours(o,0,0,0),e},incompatibleTokens:["a","b","h","H","K","t","T"]},m:{priority:60,parse:function(e,t,n,r){switch(t){case"m":return St(Ot.minute,e);case"mo":return n.ordinalNumber(e,{unit:"minute"});default:return Dt(t.length,e)}},validate:function(e,t,n){return t>=0&&t<=59},set:function(e,t,n,r){return e.setUTCMinutes(n,0,0),e},incompatibleTokens:["t","T"]},s:{priority:50,parse:function(e,t,n,r){switch(t){case"s":return St(Ot.second,e);case"so":return n.ordinalNumber(e,{unit:"second"});default:return Dt(t.length,e)}},validate:function(e,t,n){return t>=0&&t<=59},set:function(e,t,n,r){return e.setUTCSeconds(n,0),e},incompatibleTokens:["t","T"]},S:{priority:30,parse:function(e,t,n,r){return Dt(t.length,e,(function(e){return Math.floor(e*Math.pow(10,3-t.length))}))},set:function(e,t,n,r){return e.setUTCMilliseconds(n),e},incompatibleTokens:["t","T"]},X:{priority:10,parse:function(e,t,n,r){switch(t){case"X":return Ct(Tt,e);case"XX":return Ct(Lt,e);case"XXXX":return Ct(xt,e);case"XXXXX":return Ct(Nt,e);case"XXX":default:return Ct(kt,e)}},set:function(e,t,n,r){return t.timestampIsSet?e:new Date(e.getTime()-n)},incompatibleTokens:["t","T","x"]},x:{priority:10,parse:function(e,t,n,r){switch(t){case"x":return Ct(Tt,e);case"xx":return Ct(Lt,e);case"xxxx":return Ct(xt,e);case"xxxxx":return Ct(Nt,e);case"xxx":default:return Ct(kt,e)}},set:function(e,t,n,r){return t.timestampIsSet?e:new Date(e.getTime()-n)},incompatibleTokens:["t","T","X"]},t:{priority:40,parse:function(e,t,n,r){return qt(e)},set:function(e,t,n,r){return[new Date(1e3*n),{timestampIsSet:!0}]},incompatibleTokens:"*"},T:{priority:20,parse:function(e,t,n,r){return qt(e)},set:function(e,t,n,r){return[new Date(n),{timestampIsSet:!0}]},incompatibleTokens:"*"}},It=10,Ft=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,$t=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,Ht=/^'(.*?)'?$/,Yt=/''/g,Ut=/\S/,Vt=/[a-zA-Z]/;function Gt(e,t,n,r){if(arguments.length<3)throw new TypeError("3 arguments required, but only "+arguments.length+" present");var o=String(e),i=String(t),a=r||{},s=a.locale||Ne;if(!s.match)throw new RangeError("locale must contain match property");var c=s.options&&s.options.firstWeekContainsDate,l=null==c?1:ve(c),u=null==a.firstWeekContainsDate?l:ve(a.firstWeekContainsDate);if(!(u>=1&&u<=7))throw new RangeError("firstWeekContainsDate must be between 1 and 7 inclusively");var d=s.options&&s.options.weekStartsOn,f=null==d?0:ve(d),p=null==a.weekStartsOn?f:ve(a.weekStartsOn);if(!(p>=0&&p<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");if(""===i)return""===o?_e(n):new Date(NaN);var h,m={firstWeekContainsDate:u,weekStartsOn:p,locale:s},b=[{priority:It,set:Kt,index:0}],g=i.match($t).map((function(e){var t=e[0];return"p"===t||"P"===t?(0,ct[t])(e,s.formatLong,m):e})).join("").match(Ft),_=[];for(h=0;h0&&Ut.test(o))return new Date(NaN);var L=b.map((function(e){return e.priority})).sort((function(e,t){return t-e})).filter((function(e,t,n){return n.indexOf(e)===t})).map((function(e){return b.filter((function(t){return t.priority===e})).reverse()})).map((function(e){return e[0]})),x=_e(n);if(isNaN(x))return new Date(NaN);var k=Se(x,ye(x)),N={};for(h=0;h0?1:o}(e,t):1:-1},Qt.format=function(e,t){if(null==e)return"";var n=Gt(e,t.dateInputFormat,new Date);return we(n)?vt(n,t.dateOutputFormat):(console.error('Not a valid date: "'.concat(e,'"')),null)};var Jt=Object.freeze({default:Qt}),Zt=ne(ce);Zt.isRight=!0,Zt.filterPredicate=function(e,t){return 0===Zt.compare(e,t)},Zt.compare=function(e,t){function n(e){return null==e?-1/0:e.indexOf(".")>=0?parseFloat(e):parseInt(e,10)}return(e="number"==typeof e?e:n(e))<(t="number"==typeof t?t:n(t))?-1:e>t?1:0};var en=Object.freeze({default:Zt}),tn=ne(Zt);tn.format=function(e){return null==e?"":parseFloat(Math.round(100*e)/100).toFixed(2)};var nn=Object.freeze({default:tn}),rn=ne(Zt);rn.format=function(e){return null==e?"":"".concat(parseFloat(100*e).toFixed(2),"%")};var on=Object.freeze({default:rn}),an=ne(ce);an.isRight=!0,an.filterPredicate=function(e,t){return 0===an.compare(e,t)},an.compare=function(e,t){function n(e){return"boolean"==typeof e?e?1:0:"string"==typeof e?"true"===e?1:0:-1/0}return(e=n(e))<(t=n(t))?-1:e>t?1:0};var sn={},cn={date:Jt,decimal:nn,number:en,percentage:on,boolean:Object.freeze({default:an})};N(Object.keys(cn),(function(e){var t=e.replace(/^\.\//,"").replace(/\.js/,"");sn[t]=cn[e].default}));var ln=le({render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{class:e.wrapStyleClasses},[e.isLoading?n("div",{staticClass:"vgt-loading vgt-center-align"},[e._t("loadingContent",[n("span",{staticClass:"vgt-loading__content"},[e._v("\n Loading...\n ")])])],2):e._e(),e._v(" "),n("div",{staticClass:"vgt-inner-wrap",class:{"is-loading":e.isLoading}},[e.paginate&&e.paginateOnTop?e._t("pagination-top",[n("vgt-pagination",{ref:"paginationTop",attrs:{perPage:e.perPage,rtl:e.rtl,total:e.totalRows||e.totalRowCount,mode:e.paginationMode,nextText:e.nextText,prevText:e.prevText,rowsPerPageText:e.rowsPerPageText,customRowsPerPageDropdown:e.customRowsPerPageDropdown,paginateDropdownAllowAll:e.paginateDropdownAllowAll,ofText:e.ofText,pageText:e.pageText,allText:e.allText},on:{"page-changed":e.pageChanged,"per-page-changed":e.perPageChanged}})],{pageChanged:e.pageChanged,perPageChanged:e.perPageChanged,total:e.totalRows||e.totalRowCount}):e._e(),e._v(" "),n("vgt-global-search",{attrs:{"search-enabled":e.searchEnabled&&null==e.externalSearchQuery,"global-search-placeholder":e.searchPlaceholder},on:{"on-keyup":e.searchTableOnKeyUp,"on-enter":e.searchTableOnEnter},model:{value:e.globalSearchTerm,callback:function(t){e.globalSearchTerm=t},expression:"globalSearchTerm"}},[n("template",{slot:"internal-table-actions"},[e._t("table-actions")],2)],2),e._v(" "),e.selectedRowCount&&!e.disableSelectInfo?n("div",{staticClass:"vgt-selection-info-row clearfix",class:e.selectionInfoClass},[e._v("\n "+e._s(e.selectionInfo)+"\n "),n("a",{attrs:{href:""},on:{click:function(t){return t.preventDefault(),e.unselectAllInternal(!0)}}},[e._v("\n "+e._s(e.clearSelectionText)+"\n ")]),e._v(" "),n("div",{staticClass:"vgt-selection-info-row__actions vgt-pull-right"},[e._t("selected-row-actions")],2)]):e._e(),e._v(" "),n("div",{staticClass:"vgt-fixed-header"},[e.fixedHeader?n("table",{class:e.tableStyleClasses},[n("vgt-table-header",{ref:"table-header-secondary",tag:"thead",attrs:{columns:e.columns,"line-numbers":e.lineNumbers,selectable:e.selectable,"all-selected":e.allSelected,"all-selected-indeterminate":e.allSelectedIndeterminate,mode:e.mode,sortable:e.sortable,"typed-columns":e.typedColumns,getClasses:e.getClasses,searchEnabled:e.searchEnabled,paginated:e.paginated,"table-ref":e.$refs.table},on:{"on-toggle-select-all":e.toggleSelectAll,"on-sort-change":e.changeSort,"filter-changed":e.filterRows},scopedSlots:e._u([{key:"table-column",fn:function(t){return[e._t("table-column",[n("span",[e._v(e._s(t.column.label))])],{column:t.column})]}}],null,!0)})],1):e._e()]),e._v(" "),n("div",{class:{"vgt-responsive":e.responsive},style:e.wrapperStyles},[n("table",{ref:"table",class:e.tableStyleClasses},[n("vgt-table-header",{ref:"table-header-primary",tag:"thead",attrs:{columns:e.columns,"line-numbers":e.lineNumbers,selectable:e.selectable,"all-selected":e.allSelected,"all-selected-indeterminate":e.allSelectedIndeterminate,mode:e.mode,sortable:e.sortable,"typed-columns":e.typedColumns,getClasses:e.getClasses,searchEnabled:e.searchEnabled},on:{"on-toggle-select-all":e.toggleSelectAll,"on-sort-change":e.changeSort,"filter-changed":e.filterRows},scopedSlots:e._u([{key:"table-column",fn:function(t){return[e._t("table-column",[n("span",[e._v(e._s(t.column.label))])],{column:t.column})]}}],null,!0)}),e._v(" "),e._l(e.paginated,(function(t,r){return n("tbody",{key:r},[e.groupHeaderOnTop?n("vgt-header-row",{attrs:{"header-row":t,columns:e.columns,"line-numbers":e.lineNumbers,selectable:e.selectable,"collect-formatted":e.collectFormatted,"formatted-row":e.formattedRow,"get-classes":e.getClasses,"full-colspan":e.fullColspan},scopedSlots:e._u([{key:"table-header-row",fn:function(t){return e.hasHeaderRowTemplate?[e._t("table-header-row",null,{column:t.column,formattedRow:t.formattedRow,row:t.row})]:void 0}}],null,!0)}):e._e(),e._v(" "),e._l(t.children,(function(t,r){return n("tr",{key:t.originalIndex,class:e.getRowStyleClass(t),on:{mouseenter:function(n){return e.onMouseenter(t,r)},mouseleave:function(n){return e.onMouseleave(t,r)},dblclick:function(n){return e.onRowDoubleClicked(t,r,n)},click:function(n){return e.onRowClicked(t,r,n)},auxclick:function(n){return e.onRowAuxClicked(t,r,n)}}},[e.lineNumbers?n("th",{staticClass:"line-numbers"},[e._v("\n "+e._s(e.getCurrentIndex(r))+"\n ")]):e._e(),e._v(" "),e.selectable?n("th",{staticClass:"vgt-checkbox-col",on:{click:function(n){return n.stopPropagation(),e.onCheckboxClicked(t,r,n)}}},[n("input",{attrs:{type:"checkbox"},domProps:{checked:t.vgtSelected}})]):e._e(),e._v(" "),e._l(e.columns,(function(o,i){return!o.hidden&&o.field?n("td",{key:i,class:e.getClasses(i,"td",t),on:{click:function(n){return e.onCellClicked(t,o,r,n)}}},[e._t("table-row",[o.html?e._e():n("span",[e._v("\n "+e._s(e.collectFormatted(t,o))+"\n ")]),e._v(" "),o.html?n("span",{domProps:{innerHTML:e._s(e.collect(t,o.field))}}):e._e()],{row:t,column:o,formattedRow:e.formattedRow(t),index:r})],2):e._e()}))],2)})),e._v(" "),e.groupHeaderOnBottom?n("vgt-header-row",{attrs:{"header-row":t,columns:e.columns,"line-numbers":e.lineNumbers,selectable:e.selectable,"collect-formatted":e.collectFormatted,"formatted-row":e.formattedRow,"get-classes":e.getClasses,"full-colspan":e.fullColspan},scopedSlots:e._u([{key:"table-header-row",fn:function(t){return e.hasHeaderRowTemplate?[e._t("table-header-row",null,{column:t.column,formattedRow:t.formattedRow,row:t.row})]:void 0}}],null,!0)}):e._e()],2)})),e._v(" "),e.showEmptySlot?n("tbody",[n("tr",[n("td",{attrs:{colspan:e.fullColspan}},[e._t("emptystate",[n("div",{staticClass:"vgt-center-align vgt-text-disabled"},[e._v("\n No data for table\n ")])])],2)])]):e._e()],2)]),e._v(" "),e.hasFooterSlot?n("div",{staticClass:"vgt-wrap__actions-footer"},[e._t("table-actions-bottom")],2):e._e(),e._v(" "),e.paginate&&e.paginateOnBottom?e._t("pagination-bottom",[n("vgt-pagination",{ref:"paginationBottom",attrs:{perPage:e.perPage,rtl:e.rtl,total:e.totalRows||e.totalRowCount,mode:e.paginationMode,nextText:e.nextText,prevText:e.prevText,rowsPerPageText:e.rowsPerPageText,customRowsPerPageDropdown:e.customRowsPerPageDropdown,paginateDropdownAllowAll:e.paginateDropdownAllowAll,ofText:e.ofText,pageText:e.pageText,allText:e.allText},on:{"page-changed":e.pageChanged,"per-page-changed":e.perPageChanged}})],{pageChanged:e.pageChanged,perPageChanged:e.perPageChanged,total:e.totalRows||e.totalRowCount}):e._e()],2)])},staticRenderFns:[]},void 0,{name:"vue-good-table",props:{isLoading:{default:null,type:Boolean},maxHeight:{default:null,type:String},fixedHeader:{default:!1,type:Boolean},theme:{default:""},mode:{default:"local"},totalRows:{},styleClass:{default:"vgt-table bordered"},columns:{},rows:{},lineNumbers:{default:!1},responsive:{default:!0},rtl:{default:!1},rowStyleClass:{default:null,type:[Function,String]},groupOptions:{default:function(){return{enabled:!1}}},selectOptions:{default:function(){return{enabled:!1,selectionInfoClass:"",selectionText:"rows selected",clearSelectionText:"clear",disableSelectInfo:!1}}},sortOptions:{default:function(){return{enabled:!0,initialSortBy:{}}}},paginationOptions:{default:function(){return{enabled:!1,perPage:10,perPageDropdown:null,position:"bottom",dropdownAllowAll:!0,mode:"records"}}},searchOptions:{default:function(){return{enabled:!1,trigger:null,externalQuery:null,searchFn:null,placeholder:"Search Table"}}}},data:function(){return{tableLoading:!1,nextText:"Next",prevText:"Prev",rowsPerPageText:"Rows per page",ofText:"of",allText:"All",pageText:"page",selectable:!1,selectOnCheckboxOnly:!1,selectAllByPage:!0,disableSelectInfo:!1,selectionInfoClass:"",selectionText:"rows selected",clearSelectionText:"clear",sortable:!0,defaultSortBy:null,searchEnabled:!1,searchTrigger:null,externalSearchQuery:null,searchFn:null,searchPlaceholder:"Search Table",searchSkipDiacritics:!1,perPage:null,paginate:!1,paginateOnTop:!1,paginateOnBottom:!0,customRowsPerPageDropdown:[],paginateDropdownAllowAll:!0,paginationMode:"records",currentPage:1,currentPerPage:10,sorts:[],globalSearchTerm:"",filteredRows:[],columnFilters:{},forceSearch:!1,sortChanged:!1,dataTypes:sn||{}}},watch:{rows:{handler:function(){this.$emit("update:isLoading",!1),this.filterRows(this.columnFilters,!1)},deep:!0,immediate:!0},selectOptions:{handler:function(){this.initializeSelect()},deep:!0,immediate:!0},paginationOptions:{handler:function(e,t){oe(e,t)||this.initializePagination()},deep:!0,immediate:!0},searchOptions:{handler:function(){void 0!==this.searchOptions.externalQuery&&this.searchOptions.externalQuery!==this.searchTerm&&(this.externalSearchQuery=this.searchOptions.externalQuery,this.handleSearch()),this.initializeSearch()},deep:!0,immediate:!0},sortOptions:{handler:function(e,t){oe(e,t)||this.initializeSort()},deep:!0},selectedRows:function(e,t){oe(e,t)||this.$emit("on-selected-rows-change",{selectedRows:this.selectedRows})}},computed:{hasFooterSlot:function(){return!!this.$slots["table-actions-bottom"]},wrapperStyles:function(){return{overflow:"scroll-y",maxHeight:this.maxHeight?this.maxHeight:"auto"}},hasHeaderRowTemplate:function(){return!!this.$slots["table-header-row"]||!!this.$scopedSlots["table-header-row"]},showEmptySlot:function(){return!this.paginated.length||"no groups"===this.paginated[0].label&&!this.paginated[0].children.length},allSelected:function(){return this.selectedRowCount>0&&(this.selectAllByPage&&this.selectedPageRowsCount===this.totalPageRowCount||!this.selectAllByPage&&this.selectedRowCount===this.totalRowCount)},allSelectedIndeterminate:function(){return!this.allSelected&&(this.selectAllByPage&&this.selectedPageRowsCount>0||!this.selectAllByPage&&this.selectedRowCount>0)},selectionInfo:function(){return"".concat(this.selectedRowCount," ").concat(this.selectionText)},selectedRowCount:function(){return this.selectedRows.length},selectedPageRowsCount:function(){return this.selectedPageRows.length},selectedPageRows:function(){var e=[];return N(this.paginated,(function(t){N(t.children,(function(t){t.vgtSelected&&e.push(t)}))})),e},selectedRows:function(){var e=[];return N(this.processedRows,(function(t){N(t.children,(function(t){t.vgtSelected&&e.push(t)}))})),e.sort((function(e,t){return e.originalIndex-t.originalIndex}))},fullColspan:function(){for(var e=0,t=0;t=e.length||-1===this.currentPerPage)&&(this.currentPage=1,t=0);var n=e.length+1;-1!==this.currentPerPage&&(n=this.currentPage*this.currentPerPage),e=e.slice(t,n)}var r=[];return N(this.processedRows,(function(t){var n=t.vgt_header_id,o=re(e,["vgt_id",n]);if(o.length){var i=ne(t);i.children=o,r.push(i)}})),r},originalRows:function(){var e=ne(this.rows),t=[];t=this.groupOptions.enabled?this.handleGrouped(e):this.handleGrouped([{label:"no groups",children:e}]);var n=0;return N(t,(function(e,t){N(e.children,(function(e,t){e.originalIndex=n++}))})),t},typedColumns:function(){for(var e=Z(this.columns,[]),t=0;t2&&void 0!==arguments[2]&&arguments[2];if(void 0===(n=r&&t.headerField?this.collect(e,t.headerField):this.collect(e,t.field)))return"";if(t.formatFn&&"function"==typeof t.formatFn)return t.formatFn(n,e);var o=t.typeDef;return o||(o=this.dataTypes[t.type]||ce),o.format(n,t)},formattedRow:function(e){for(var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n={},r=0;r1&&void 0!==arguments[1])||arguments[1];this.columnFilters=e;var o=ne(this.originalRows);if(this.columnFilters&&Object.keys(this.columnFilters).length){if(("remote"!==this.mode||n)&&this.changePage(1),n&&this.$emit("on-column-filter",{columnFilters:this.columnFilters}),"remote"===this.mode)return void(n?this.$emit("update:isLoading",!0):this.filteredRows=o);for(var i=function(e){var n=t.typedColumns[e];t.columnFilters[n.field]&&(o=N(o,(function(e){var o=e.children.filter((function(e){return n.filterOptions&&"function"==typeof n.filterOptions.filterFn?n.filterOptions.filterFn(t.collect(e,n.field),t.columnFilters[n.field]):n.typeDef.filterPredicate(t.collect(e,n.field),t.columnFilters[n.field],!1,n.filterOptions&&"object"===r(n.filterOptions.filterDropdownItems))}));e.children=o})))},a=0;a=100?100:null])}},week:{dow:1,doy:7}})}(n("wd/R"))},Dvum:function(e,t,n){var r,o,i;!function(a,s){"use strict";e.exports?e.exports=s(n("wd/R")):(o=[n("wd/R")],void 0===(i="function"==typeof(r=s)?r.apply(t,o):r)||(e.exports=i))}(0,(function(e){"use strict";var t,n={},r={},o={},i={};e&&"string"==typeof e.version||L("Moment Timezone requires Moment.js. See https://momentjs.com/timezone/docs/#/use-it/browser/");var a=e.version.split("."),s=+a[0],c=+a[1];function l(e){return e>96?e-87:e>64?e-29:e-48}function u(e){var t=0,n=e.split("."),r=n[0],o=n[1]||"",i=1,a=0,s=1;for(45===e.charCodeAt(0)&&(t=1,s=-1);t3){var t=o[w(e)];if(t)return t;L("Moment Timezone found "+e+" from the Intl api, but did not have that data loaded.")}}catch(e){}var n,r,i,a=function(){var e,t,n,r=(new Date).getFullYear()-2,o=new m(new Date(r,0,1)),i=[o];for(n=1;n<48;n++)(t=new m(new Date(r,n,1))).offset!==o.offset&&(e=g(o,t),i.push(e),i.push(new m(new Date(e.at+6e4)))),o=t;for(n=0;n<4;n++)i.push(new m(new Date(r+n,0,1))),i.push(new m(new Date(r+n,6,1)));return i}(),s=a.length,c=M(a),l=[];for(r=0;r0?l[0].zone.name:void 0}function w(e){return(e||"").toLowerCase().replace(/\//g,"_")}function A(e){var t,r,i,a;for("string"==typeof e&&(e=[e]),t=0;t= 2.6.0. You are using Moment.js "+e.version+". See momentjs.com"),h.prototype={_set:function(e){this.name=e.name,this.abbrs=e.abbrs,this.untils=e.untils,this.offsets=e.offsets,this.population=e.population},_index:function(e){var t,n=+e,r=this.untils;for(t=0;tr&&x.moveInvalidForward&&(t=r),i0&&(this._z=null),k.apply(this,arguments)}),e.tz.setDefault=function(t){return(s<2||2===s&&c<9)&&L("Moment Timezone setDefault() requires Moment.js >= 2.9.0. You are using Moment.js "+e.version+"."),e.defaultZone=t?z(t):null,e};var q=e.momentProperties;return"[object Array]"===Object.prototype.toString.call(q)?(q.push("_z"),q.push("_a")):q&&(q._z=null),e}))},EVdn:function(e,t,n){var r;!function(t,n){"use strict";"object"==typeof e.exports?e.exports=t.document?n(t,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return n(e)}:n(t)}("undefined"!=typeof window?window:this,(function(n,o){"use strict";var i=[],a=n.document,s=Object.getPrototypeOf,c=i.slice,l=i.concat,u=i.push,d=i.indexOf,f={},p=f.toString,h=f.hasOwnProperty,m=h.toString,b=m.call(Object),g={},_=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},v=function(e){return null!=e&&e===e.window},M={type:!0,src:!0,nonce:!0,noModule:!0};function y(e,t,n){var r,o,i=(n=n||a).createElement("script");if(i.text=e,t)for(r in M)(o=t[r]||t.getAttribute&&t.getAttribute(r))&&i.setAttribute(r,o);n.head.appendChild(i).parentNode.removeChild(i)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?f[p.call(e)]||"object":typeof e}var A=function(e,t){return new A.fn.init(e,t)},z=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;function O(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!_(e)&&!v(e)&&("array"===n||0===t||"number"==typeof t&&t>0&&t-1 in e)}A.fn=A.prototype={jquery:"3.4.1",constructor:A,length:0,toArray:function(){return c.call(this)},get:function(e){return null==e?c.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=A.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return A.each(this,e)},map:function(e){return this.pushStack(A.map(this,(function(t,n){return e.call(t,n,t)})))},slice:function(){return this.pushStack(c.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n+~]|"+B+")"+B+"*"),H=new RegExp(B+"|>"),Y=new RegExp(R),U=new RegExp("^"+P+"$"),V={ID:new RegExp("^#("+P+")"),CLASS:new RegExp("^\\.("+P+")"),TAG:new RegExp("^("+P+"|[*])"),ATTR:new RegExp("^"+X),PSEUDO:new RegExp("^"+R),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+B+"*(even|odd|(([+-]|)(\\d*)n|)"+B+"*(?:([+-]|)"+B+"*(\\d+)|))"+B+"*\\)|)","i"),bool:new RegExp("^(?:"+E+")$","i"),needsContext:new RegExp("^"+B+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+B+"*((?:-\\d)?\\d*)"+B+"*\\)|)(?=[^-]|$)","i")},G=/HTML$/i,K=/^(?:input|select|textarea|button)$/i,Q=/^h\d$/i,J=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\([\\da-f]{1,6}"+B+"?|("+B+")|.)","ig"),ne=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,oe=function(e,t){return t?"\0"===e?"�":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},ie=function(){f()},ae=Me((function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()}),{dir:"parentNode",next:"legend"});try{q.apply(N=D.call(y.childNodes),y.childNodes),N[y.childNodes.length].nodeType}catch(e){q={apply:N.length?function(e,t){C.apply(e,D.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}function se(e,t,r,o){var i,s,l,u,d,h,g,_=t&&t.ownerDocument,w=t?t.nodeType:9;if(r=r||[],"string"!=typeof e||!e||1!==w&&9!==w&&11!==w)return r;if(!o&&((t?t.ownerDocument||t:y)!==p&&f(t),t=t||p,m)){if(11!==w&&(d=Z.exec(e)))if(i=d[1]){if(9===w){if(!(l=t.getElementById(i)))return r;if(l.id===i)return r.push(l),r}else if(_&&(l=_.getElementById(i))&&v(t,l)&&l.id===i)return r.push(l),r}else{if(d[2])return q.apply(r,t.getElementsByTagName(e)),r;if((i=d[3])&&n.getElementsByClassName&&t.getElementsByClassName)return q.apply(r,t.getElementsByClassName(i)),r}if(n.qsa&&!L[e+" "]&&(!b||!b.test(e))&&(1!==w||"object"!==t.nodeName.toLowerCase())){if(g=e,_=t,1===w&&H.test(e)){for((u=t.getAttribute("id"))?u=u.replace(re,oe):t.setAttribute("id",u=M),s=(h=a(e)).length;s--;)h[s]="#"+u+" "+ve(h[s]);g=h.join(","),_=ee.test(e)&&ge(t.parentNode)||t}try{return q.apply(r,_.querySelectorAll(g)),r}catch(t){L(e,!0)}finally{u===M&&t.removeAttribute("id")}}}return c(e.replace(I,"$1"),t,r,o)}function ce(){var e=[];return function t(n,o){return e.push(n+" ")>r.cacheLength&&delete t[e.shift()],t[n+" "]=o}}function le(e){return e[M]=!0,e}function ue(e){var t=p.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function de(e,t){for(var n=e.split("|"),o=n.length;o--;)r.attrHandle[n[o]]=t}function fe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function pe(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}}function he(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function me(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&ae(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function be(e){return le((function(t){return t=+t,le((function(n,r){for(var o,i=e([],n.length,t),a=i.length;a--;)n[o=i[a]]&&(n[o]=!(r[o]=n[o]))}))}))}function ge(e){return e&&void 0!==e.getElementsByTagName&&e}for(t in n=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!G.test(t||n&&n.nodeName||"HTML")},f=se.setDocument=function(e){var t,o,a=e?e.ownerDocument||e:y;return a!==p&&9===a.nodeType&&a.documentElement?(h=(p=a).documentElement,m=!i(p),y!==p&&(o=p.defaultView)&&o.top!==o&&(o.addEventListener?o.addEventListener("unload",ie,!1):o.attachEvent&&o.attachEvent("onunload",ie)),n.attributes=ue((function(e){return e.className="i",!e.getAttribute("className")})),n.getElementsByTagName=ue((function(e){return e.appendChild(p.createComment("")),!e.getElementsByTagName("*").length})),n.getElementsByClassName=J.test(p.getElementsByClassName),n.getById=ue((function(e){return h.appendChild(e).id=M,!p.getElementsByName||!p.getElementsByName(M).length})),n.getById?(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&m){var n=t.getElementById(e);return n?[n]:[]}}):(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&m){var n,r,o,i=t.getElementById(e);if(i){if((n=i.getAttributeNode("id"))&&n.value===e)return[i];for(o=t.getElementsByName(e),r=0;i=o[r++];)if((n=i.getAttributeNode("id"))&&n.value===e)return[i]}return[]}}),r.find.TAG=n.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],o=0,i=t.getElementsByTagName(e);if("*"===e){for(;n=i[o++];)1===n.nodeType&&r.push(n);return r}return i},r.find.CLASS=n.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&m)return t.getElementsByClassName(e)},g=[],b=[],(n.qsa=J.test(p.querySelectorAll))&&(ue((function(e){h.appendChild(e).innerHTML="
",e.querySelectorAll("[msallowcapture^='']").length&&b.push("[*^$]="+B+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||b.push("\\["+B+"*(?:value|"+E+")"),e.querySelectorAll("[id~="+M+"-]").length||b.push("~="),e.querySelectorAll(":checked").length||b.push(":checked"),e.querySelectorAll("a#"+M+"+*").length||b.push(".#.+[+~]")})),ue((function(e){e.innerHTML="";var t=p.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&b.push("name"+B+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&b.push(":enabled",":disabled"),h.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&b.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),b.push(",.*:")}))),(n.matchesSelector=J.test(_=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&&ue((function(e){n.disconnectedMatch=_.call(e,"*"),_.call(e,"[s!='']:x"),g.push("!=",R)})),b=b.length&&new RegExp(b.join("|")),g=g.length&&new RegExp(g.join("|")),t=J.test(h.compareDocumentPosition),v=t||J.test(h.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},x=t?function(e,t){if(e===t)return d=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e===p||e.ownerDocument===y&&v(y,e)?-1:t===p||t.ownerDocument===y&&v(y,t)?1:u?W(u,e)-W(u,t):0:4&r?-1:1)}:function(e,t){if(e===t)return d=!0,0;var n,r=0,o=e.parentNode,i=t.parentNode,a=[e],s=[t];if(!o||!i)return e===p?-1:t===p?1:o?-1:i?1:u?W(u,e)-W(u,t):0;if(o===i)return fe(e,t);for(n=e;n=n.parentNode;)a.unshift(n);for(n=t;n=n.parentNode;)s.unshift(n);for(;a[r]===s[r];)r++;return r?fe(a[r],s[r]):a[r]===y?-1:s[r]===y?1:0},p):p},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if((e.ownerDocument||e)!==p&&f(e),n.matchesSelector&&m&&!L[t+" "]&&(!g||!g.test(t))&&(!b||!b.test(t)))try{var r=_.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){L(t,!0)}return se(t,p,null,[e]).length>0},se.contains=function(e,t){return(e.ownerDocument||e)!==p&&f(e),v(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!==p&&f(e);var o=r.attrHandle[t.toLowerCase()],i=o&&k.call(r.attrHandle,t.toLowerCase())?o(e,t,!m):void 0;return void 0!==i?i:n.attributes||!m?e.getAttribute(t):(i=e.getAttributeNode(t))&&i.specified?i.value:null},se.escape=function(e){return(e+"").replace(re,oe)},se.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},se.uniqueSort=function(e){var t,r=[],o=0,i=0;if(d=!n.detectDuplicates,u=!n.sortStable&&e.slice(0),e.sort(x),d){for(;t=e[i++];)t===e[i]&&(o=r.push(i));for(;o--;)e.splice(r[o],1)}return u=null,e},o=se.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r++];)n+=o(t);return n},(r=se.selectors={cacheLength:50,createPseudo:le,match:V,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return V.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&Y.test(n)&&(t=a(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=z[e+" "];return t||(t=new RegExp("(^|"+B+")"+e+"("+B+"|$)"))&&z(e,(function(e){return t.test("string"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute("class")||"")}))},ATTR:function(e,t,n){return function(r){var o=se.attr(r,e);return null==o?"!="===t:!t||(o+="","="===t?o===n:"!="===t?o!==n:"^="===t?n&&0===o.indexOf(n):"*="===t?n&&o.indexOf(n)>-1:"$="===t?n&&o.slice(-n.length)===n:"~="===t?(" "+o.replace(j," ")+" ").indexOf(n)>-1:"|="===t&&(o===n||o.slice(0,n.length+1)===n+"-"))}},CHILD:function(e,t,n,r,o){var i="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===o?function(e){return!!e.parentNode}:function(t,n,c){var l,u,d,f,p,h,m=i!==a?"nextSibling":"previousSibling",b=t.parentNode,g=s&&t.nodeName.toLowerCase(),_=!c&&!s,v=!1;if(b){if(i){for(;m;){for(f=t;f=f[m];)if(s?f.nodeName.toLowerCase()===g:1===f.nodeType)return!1;h=m="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?b.firstChild:b.lastChild],a&&_){for(v=(p=(l=(u=(d=(f=b)[M]||(f[M]={}))[f.uniqueID]||(d[f.uniqueID]={}))[e]||[])[0]===w&&l[1])&&l[2],f=p&&b.childNodes[p];f=++p&&f&&f[m]||(v=p=0)||h.pop();)if(1===f.nodeType&&++v&&f===t){u[e]=[w,p,v];break}}else if(_&&(v=p=(l=(u=(d=(f=t)[M]||(f[M]={}))[f.uniqueID]||(d[f.uniqueID]={}))[e]||[])[0]===w&&l[1]),!1===v)for(;(f=++p&&f&&f[m]||(v=p=0)||h.pop())&&((s?f.nodeName.toLowerCase()!==g:1!==f.nodeType)||!++v||(_&&((u=(d=f[M]||(f[M]={}))[f.uniqueID]||(d[f.uniqueID]={}))[e]=[w,v]),f!==t)););return(v-=o)===r||v%r==0&&v/r>=0}}},PSEUDO:function(e,t){var n,o=r.pseudos[e]||r.setFilters[e.toLowerCase()]||se.error("unsupported pseudo: "+e);return o[M]?o(t):o.length>1?(n=[e,e,"",t],r.setFilters.hasOwnProperty(e.toLowerCase())?le((function(e,n){for(var r,i=o(e,t),a=i.length;a--;)e[r=W(e,i[a])]=!(n[r]=i[a])})):function(e){return o(e,0,n)}):o}},pseudos:{not:le((function(e){var t=[],n=[],r=s(e.replace(I,"$1"));return r[M]?le((function(e,t,n,o){for(var i,a=r(e,null,o,[]),s=e.length;s--;)(i=a[s])&&(e[s]=!(t[s]=i))})):function(e,o,i){return t[0]=e,r(t,null,i,n),t[0]=null,!n.pop()}})),has:le((function(e){return function(t){return se(e,t).length>0}})),contains:le((function(e){return e=e.replace(te,ne),function(t){return(t.textContent||o(t)).indexOf(e)>-1}})),lang:le((function(e){return U.test(e||"")||se.error("unsupported lang: "+e),e=e.replace(te,ne).toLowerCase(),function(t){var n;do{if(n=m?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}})),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===h},focus:function(e){return e===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:me(!1),disabled:me(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return Q.test(e.nodeName)},input:function(e){return K.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:be((function(){return[0]})),last:be((function(e,t){return[t-1]})),eq:be((function(e,t,n){return[n<0?n+t:n]})),even:be((function(e,t){for(var n=0;nt?t:n;--r>=0;)e.push(r);return e})),gt:be((function(e,t,n){for(var r=n<0?n+t:n;++r1?function(t,n,r){for(var o=e.length;o--;)if(!e[o](t,n,r))return!1;return!0}:e[0]}function we(e,t,n,r,o){for(var i,a=[],s=0,c=e.length,l=null!=t;s-1&&(i[l]=!(a[l]=d))}}else g=we(g===a?g.splice(h,g.length):g),o?o(null,a,g,c):q.apply(a,g)}))}function ze(e){for(var t,n,o,i=e.length,a=r.relative[e[0].type],s=a||r.relative[" "],c=a?1:0,u=Me((function(e){return e===t}),s,!0),d=Me((function(e){return W(t,e)>-1}),s,!0),f=[function(e,n,r){var o=!a&&(r||n!==l)||((t=n).nodeType?u(e,n,r):d(e,n,r));return t=null,o}];c1&&ye(f),c>1&&ve(e.slice(0,c-1).concat({value:" "===e[c-2].type?"*":""})).replace(I,"$1"),n,c0,o=e.length>0,i=function(i,a,s,c,u){var d,h,b,g=0,_="0",v=i&&[],M=[],y=l,A=i||o&&r.find.TAG("*",u),z=w+=null==y?1:Math.random()||.1,O=A.length;for(u&&(l=a===p||a||u);_!==O&&null!=(d=A[_]);_++){if(o&&d){for(h=0,a||d.ownerDocument===p||(f(d),s=!m);b=e[h++];)if(b(d,a||p,s)){c.push(d);break}u&&(w=z)}n&&((d=!b&&d)&&g--,i&&v.push(d))}if(g+=_,n&&_!==g){for(h=0;b=t[h++];)b(v,M,a,s);if(i){if(g>0)for(;_--;)v[_]||M[_]||(M[_]=S.call(c));M=we(M)}q.apply(c,M),u&&!i&&M.length>0&&g+t.length>1&&se.uniqueSort(c)}return u&&(w=z,l=y),v};return n?le(i):i}(i,o))).selector=e}return s},c=se.select=function(e,t,n,o){var i,c,l,u,d,f="function"==typeof e&&e,p=!o&&a(e=f.selector||e);if(n=n||[],1===p.length){if((c=p[0]=p[0].slice(0)).length>2&&"ID"===(l=c[0]).type&&9===t.nodeType&&m&&r.relative[c[1].type]){if(!(t=(r.find.ID(l.matches[0].replace(te,ne),t)||[])[0]))return n;f&&(t=t.parentNode),e=e.slice(c.shift().value.length)}for(i=V.needsContext.test(e)?0:c.length;i--&&(l=c[i],!r.relative[u=l.type]);)if((d=r.find[u])&&(o=d(l.matches[0].replace(te,ne),ee.test(c[0].type)&&ge(t.parentNode)||t))){if(c.splice(i,1),!(e=o.length&&ve(c)))return q.apply(n,o),n;break}}return(f||s(e,p))(o,t,!m,n,!t||ee.test(e)&&ge(t.parentNode)||t),n},n.sortStable=M.split("").sort(x).join("")===M,n.detectDuplicates=!!d,f(),n.sortDetached=ue((function(e){return 1&e.compareDocumentPosition(p.createElement("fieldset"))})),ue((function(e){return e.innerHTML="","#"===e.firstChild.getAttribute("href")}))||de("type|href|height|width",(function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)})),n.attributes&&ue((function(e){return e.innerHTML="",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")}))||de("value",(function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue})),ue((function(e){return null==e.getAttribute("disabled")}))||de(E,(function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null})),se}(n);A.find=T,A.expr=T.selectors,A.expr[":"]=A.expr.pseudos,A.uniqueSort=A.unique=T.uniqueSort,A.text=T.getText,A.isXMLDoc=T.isXML,A.contains=T.contains,A.escapeSelector=T.escape;var L=function(e,t,n){for(var r=[],o=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(o&&A(e).is(n))break;r.push(e)}return r},x=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},k=A.expr.match.needsContext;function N(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var S=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function C(e,t,n){return _(t)?A.grep(e,(function(e,r){return!!t.call(e,r,e)!==n})):t.nodeType?A.grep(e,(function(e){return e===t!==n})):"string"!=typeof t?A.grep(e,(function(e){return d.call(t,e)>-1!==n})):A.filter(t,e,n)}A.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?A.find.matchesSelector(r,e)?[r]:[]:A.find.matches(e,A.grep(t,(function(e){return 1===e.nodeType})))},A.fn.extend({find:function(e){var t,n,r=this.length,o=this;if("string"!=typeof e)return this.pushStack(A(e).filter((function(){for(t=0;t1?A.uniqueSort(n):n},filter:function(e){return this.pushStack(C(this,e||[],!1))},not:function(e){return this.pushStack(C(this,e||[],!0))},is:function(e){return!!C(this,"string"==typeof e&&k.test(e)?A(e):e||[],!1).length}});var q,D=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(A.fn.init=function(e,t,n){var r,o;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:D.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof A?t[0]:t,A.merge(this,A.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:a,!0)),S.test(r[1])&&A.isPlainObject(t))for(r in t)_(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(o=a.getElementById(r[2]))&&(this[0]=o,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):_(e)?void 0!==n.ready?n.ready(e):e(A):A.makeArray(e,this)}).prototype=A.fn,q=A(a);var W=/^(?:parents|prev(?:Until|All))/,E={children:!0,contents:!0,next:!0,prev:!0};function B(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}A.fn.extend({has:function(e){var t=A(e,this),n=t.length;return this.filter((function(){for(var e=0;e-1:1===n.nodeType&&A.find.matchesSelector(n,e))){i.push(n);break}return this.pushStack(i.length>1?A.uniqueSort(i):i)},index:function(e){return e?"string"==typeof e?d.call(A(e),this[0]):d.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(A.uniqueSort(A.merge(this.get(),A(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),A.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return L(e,"parentNode")},parentsUntil:function(e,t,n){return L(e,"parentNode",n)},next:function(e){return B(e,"nextSibling")},prev:function(e){return B(e,"previousSibling")},nextAll:function(e){return L(e,"nextSibling")},prevAll:function(e){return L(e,"previousSibling")},nextUntil:function(e,t,n){return L(e,"nextSibling",n)},prevUntil:function(e,t,n){return L(e,"previousSibling",n)},siblings:function(e){return x((e.parentNode||{}).firstChild,e)},children:function(e){return x(e.firstChild)},contents:function(e){return void 0!==e.contentDocument?e.contentDocument:(N(e,"template")&&(e=e.content||e),A.merge([],e.childNodes))}},(function(e,t){A.fn[e]=function(n,r){var o=A.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(o=A.filter(r,o)),this.length>1&&(E[e]||A.uniqueSort(o),W.test(e)&&o.reverse()),this.pushStack(o)}}));var P=/[^\x20\t\r\n\f]+/g;function X(e){return e}function R(e){throw e}function j(e,t,n,r){var o;try{e&&_(o=e.promise)?o.call(e).done(t).fail(n):e&&_(o=e.then)?o.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}A.Callbacks=function(e){e="string"==typeof e?function(e){var t={};return A.each(e.match(P)||[],(function(e,n){t[n]=!0})),t}(e):A.extend({},e);var t,n,r,o,i=[],a=[],s=-1,c=function(){for(o=o||e.once,r=t=!0;a.length;s=-1)for(n=a.shift();++s-1;)i.splice(n,1),n<=s&&s--})),this},has:function(e){return e?A.inArray(e,i)>-1:i.length>0},empty:function(){return i&&(i=[]),this},disable:function(){return o=a=[],i=n="",this},disabled:function(){return!i},lock:function(){return o=a=[],n||t||(i=n=""),this},locked:function(){return!!o},fireWith:function(e,n){return o||(n=[e,(n=n||[]).slice?n.slice():n],a.push(n),t||c()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!r}};return l},A.extend({Deferred:function(e){var t=[["notify","progress",A.Callbacks("memory"),A.Callbacks("memory"),2],["resolve","done",A.Callbacks("once memory"),A.Callbacks("once memory"),0,"resolved"],["reject","fail",A.Callbacks("once memory"),A.Callbacks("once memory"),1,"rejected"]],r="pending",o={state:function(){return r},always:function(){return i.done(arguments).fail(arguments),this},catch:function(e){return o.then(null,e)},pipe:function(){var e=arguments;return A.Deferred((function(n){A.each(t,(function(t,r){var o=_(e[r[4]])&&e[r[4]];i[r[1]]((function(){var e=o&&o.apply(this,arguments);e&&_(e.promise)?e.promise().progress(n.notify).done(n.resolve).fail(n.reject):n[r[0]+"With"](this,o?[e]:arguments)}))})),e=null})).promise()},then:function(e,r,o){var i=0;function a(e,t,r,o){return function(){var s=this,c=arguments,l=function(){var n,l;if(!(e=i&&(r!==R&&(s=void 0,c=[n]),t.rejectWith(s,c))}};e?u():(A.Deferred.getStackHook&&(u.stackTrace=A.Deferred.getStackHook()),n.setTimeout(u))}}return A.Deferred((function(n){t[0][3].add(a(0,n,_(o)?o:X,n.notifyWith)),t[1][3].add(a(0,n,_(e)?e:X)),t[2][3].add(a(0,n,_(r)?r:R))})).promise()},promise:function(e){return null!=e?A.extend(e,o):o}},i={};return A.each(t,(function(e,n){var a=n[2],s=n[5];o[n[1]]=a.add,s&&a.add((function(){r=s}),t[3-e][2].disable,t[3-e][3].disable,t[0][2].lock,t[0][3].lock),a.add(n[3].fire),i[n[0]]=function(){return i[n[0]+"With"](this===i?void 0:this,arguments),this},i[n[0]+"With"]=a.fireWith})),o.promise(i),e&&e.call(i,i),i},when:function(e){var t=arguments.length,n=t,r=Array(n),o=c.call(arguments),i=A.Deferred(),a=function(e){return function(n){r[e]=this,o[e]=arguments.length>1?c.call(arguments):n,--t||i.resolveWith(r,o)}};if(t<=1&&(j(e,i.done(a(n)).resolve,i.reject,!t),"pending"===i.state()||_(o[n]&&o[n].then)))return i.then();for(;n--;)j(o[n],a(n),i.reject);return i.promise()}});var I=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;A.Deferred.exceptionHook=function(e,t){n.console&&n.console.warn&&e&&I.test(e.name)&&n.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)},A.readyException=function(e){n.setTimeout((function(){throw e}))};var F=A.Deferred();function $(){a.removeEventListener("DOMContentLoaded",$),n.removeEventListener("load",$),A.ready()}A.fn.ready=function(e){return F.then(e).catch((function(e){A.readyException(e)})),this},A.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--A.readyWait:A.isReady)||(A.isReady=!0,!0!==e&&--A.readyWait>0||F.resolveWith(a,[A]))}}),A.ready.then=F.then,"complete"===a.readyState||"loading"!==a.readyState&&!a.documentElement.doScroll?n.setTimeout(A.ready):(a.addEventListener("DOMContentLoaded",$),n.addEventListener("load",$));var H=function(e,t,n,r,o,i,a){var s=0,c=e.length,l=null==n;if("object"===w(n))for(s in o=!0,n)H(e,t,s,n[s],!0,i,a);else if(void 0!==r&&(o=!0,_(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(A(e),n)})),t))for(;s1,null,!0)},removeData:function(e){return this.each((function(){Z.remove(this,e)}))}}),A.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=J.get(e,t),n&&(!r||Array.isArray(n)?r=J.access(e,t,A.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=A.queue(e,t),r=n.length,o=n.shift(),i=A._queueHooks(e,t);"inprogress"===o&&(o=n.shift(),r--),o&&("fx"===t&&n.unshift("inprogress"),delete i.stop,o.call(e,(function(){A.dequeue(e,t)}),i)),!r&&i&&i.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return J.get(e,n)||J.access(e,n,{empty:A.Callbacks("once memory").add((function(){J.remove(e,[t+"queue",n])}))})}}),A.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length\x20\t\r\n\f]*)/i,ge=/^$|^module$|\/(?:java|ecma)script/i,_e={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||"*"):void 0!==e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&N(e,t)?A.merge([e],n):n}function Me(e,t){for(var n=0,r=e.length;n-1)o&&o.push(i);else if(l=se(i),a=ve(d.appendChild(i),"script"),l&&Me(a),n)for(u=0;i=a[u++];)ge.test(i.type||"")&&n.push(i);return d}ye=a.createDocumentFragment().appendChild(a.createElement("div")),(we=a.createElement("input")).setAttribute("type","radio"),we.setAttribute("checked","checked"),we.setAttribute("name","t"),ye.appendChild(we),g.checkClone=ye.cloneNode(!0).cloneNode(!0).lastChild.checked,ye.innerHTML="",g.noCloneChecked=!!ye.cloneNode(!0).lastChild.defaultValue;var Oe=/^key/,Te=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Le=/^([^.]*)(?:\.(.+)|)/;function xe(){return!0}function ke(){return!1}function Ne(e,t){return e===function(){try{return a.activeElement}catch(e){}}()==("focus"===t)}function Se(e,t,n,r,o,i){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Se(e,s,n,r,t[s],i);return e}if(null==r&&null==o?(o=n,r=n=void 0):null==o&&("string"==typeof n?(o=r,r=void 0):(o=r,r=n,n=void 0)),!1===o)o=ke;else if(!o)return e;return 1===i&&(a=o,(o=function(e){return A().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=A.guid++)),e.each((function(){A.event.add(this,t,o,r,n)}))}function Ce(e,t,n){n?(J.set(e,t,!1),A.event.add(e,t,{namespace:!1,handler:function(e){var r,o,i=J.get(this,t);if(1&e.isTrigger&&this[t]){if(i.length)(A.event.special[t]||{}).delegateType&&e.stopPropagation();else if(i=c.call(arguments),J.set(this,t,i),r=n(this,t),this[t](),i!==(o=J.get(this,t))||r?J.set(this,t,!1):o={},i!==o)return e.stopImmediatePropagation(),e.preventDefault(),o.value}else i.length&&(J.set(this,t,{value:A.event.trigger(A.extend(i[0],A.Event.prototype),i.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===J.get(e,t)&&A.event.add(e,t,xe)}A.event={global:{},add:function(e,t,n,r,o){var i,a,s,c,l,u,d,f,p,h,m,b=J.get(e);if(b)for(n.handler&&(n=(i=n).handler,o=i.selector),o&&A.find.matchesSelector(ae,o),n.guid||(n.guid=A.guid++),(c=b.events)||(c=b.events={}),(a=b.handle)||(a=b.handle=function(t){return void 0!==A&&A.event.triggered!==t.type?A.event.dispatch.apply(e,arguments):void 0}),l=(t=(t||"").match(P)||[""]).length;l--;)p=m=(s=Le.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),p&&(d=A.event.special[p]||{},p=(o?d.delegateType:d.bindType)||p,d=A.event.special[p]||{},u=A.extend({type:p,origType:m,data:r,handler:n,guid:n.guid,selector:o,needsContext:o&&A.expr.match.needsContext.test(o),namespace:h.join(".")},i),(f=c[p])||((f=c[p]=[]).delegateCount=0,d.setup&&!1!==d.setup.call(e,r,h,a)||e.addEventListener&&e.addEventListener(p,a)),d.add&&(d.add.call(e,u),u.handler.guid||(u.handler.guid=n.guid)),o?f.splice(f.delegateCount++,0,u):f.push(u),A.event.global[p]=!0)},remove:function(e,t,n,r,o){var i,a,s,c,l,u,d,f,p,h,m,b=J.hasData(e)&&J.get(e);if(b&&(c=b.events)){for(l=(t=(t||"").match(P)||[""]).length;l--;)if(p=m=(s=Le.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),p){for(d=A.event.special[p]||{},f=c[p=(r?d.delegateType:d.bindType)||p]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=i=f.length;i--;)u=f[i],!o&&m!==u.origType||n&&n.guid!==u.guid||s&&!s.test(u.namespace)||r&&r!==u.selector&&("**"!==r||!u.selector)||(f.splice(i,1),u.selector&&f.delegateCount--,d.remove&&d.remove.call(e,u));a&&!f.length&&(d.teardown&&!1!==d.teardown.call(e,h,b.handle)||A.removeEvent(e,p,b.handle),delete c[p])}else for(p in c)A.event.remove(e,p+t[l],n,r,!0);A.isEmptyObject(c)&&J.remove(e,"handle events")}},dispatch:function(e){var t,n,r,o,i,a,s=A.event.fix(e),c=new Array(arguments.length),l=(J.get(this,"events")||{})[s.type]||[],u=A.event.special[s.type]||{};for(c[0]=s,t=1;t=1))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(i=[],a={},n=0;n-1:A.find(o,this,null,[l]).length),a[o]&&i.push(r);i.length&&s.push({elem:l,handlers:i})}return l=this,c\x20\t\r\n\f]*)[^>]*)\/>/gi,De=/\s*$/g;function Be(e,t){return N(e,"table")&&N(11!==t.nodeType?t:t.firstChild,"tr")&&A(e).children("tbody")[0]||e}function Pe(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Xe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Re(e,t){var n,r,o,i,a,s,c,l;if(1===t.nodeType){if(J.hasData(e)&&(i=J.access(e),a=J.set(t,i),l=i.events))for(o in delete a.handle,a.events={},l)for(n=0,r=l[o].length;n1&&"string"==typeof h&&!g.checkClone&&We.test(h))return e.each((function(o){var i=e.eq(o);m&&(t[0]=h.call(this,o,i.html())),Ie(i,t,n,r)}));if(f&&(i=(o=ze(t,e[0].ownerDocument,!1,e,r)).firstChild,1===o.childNodes.length&&(o=i),i||r)){for(s=(a=A.map(ve(o,"script"),Pe)).length;d")},clone:function(e,t,n){var r,o,i,a,s=e.cloneNode(!0),c=se(e);if(!(g.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||A.isXMLDoc(e)))for(a=ve(s),r=0,o=(i=ve(e)).length;r0&&Me(a,!c&&ve(e,"script")),s},cleanData:function(e){for(var t,n,r,o=A.event.special,i=0;void 0!==(n=e[i]);i++)if(K(n)){if(t=n[J.expando]){if(t.events)for(r in t.events)o[r]?A.event.remove(n,r):A.removeEvent(n,r,t.handle);n[J.expando]=void 0}n[Z.expando]&&(n[Z.expando]=void 0)}}}),A.fn.extend({detach:function(e){return Fe(this,e,!0)},remove:function(e){return Fe(this,e)},text:function(e){return H(this,(function(e){return void 0===e?A.text(this):this.empty().each((function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)}))}),null,e,arguments.length)},append:function(){return Ie(this,arguments,(function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||Be(this,e).appendChild(e)}))},prepend:function(){return Ie(this,arguments,(function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Be(this,e);t.insertBefore(e,t.firstChild)}}))},before:function(){return Ie(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this)}))},after:function(){return Ie(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)}))},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(A.cleanData(ve(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map((function(){return A.clone(this,e,t)}))},html:function(e){return H(this,(function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!De.test(e)&&!_e[(be.exec(e)||["",""])[1].toLowerCase()]){e=A.htmlPrefilter(e);try{for(;n=0&&(c+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-i-c-s-.5))||0),c}function it(e,t,n){var r=He(e),o=(!g.boxSizingReliable()||n)&&"border-box"===A.css(e,"boxSizing",!1,r),i=o,a=Ue(e,t,r),s="offset"+t[0].toUpperCase()+t.slice(1);if($e.test(a)){if(!n)return a;a="auto"}return(!g.boxSizingReliable()&&o||"auto"===a||!parseFloat(a)&&"inline"===A.css(e,"display",!1,r))&&e.getClientRects().length&&(o="border-box"===A.css(e,"boxSizing",!1,r),(i=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+ot(e,t,n||(o?"border":"content"),i,r,a)+"px"}function at(e,t,n,r,o){return new at.prototype.init(e,t,n,r,o)}A.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Ue(e,"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(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var o,i,a,s=G(t),c=et.test(t),l=e.style;if(c||(t=Je(s)),a=A.cssHooks[t]||A.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(o=a.get(e,!1,r))?o:l[t];"string"===(i=typeof n)&&(o=oe.exec(n))&&o[1]&&(n=de(e,t,o),i="number"),null!=n&&n==n&&("number"!==i||c||(n+=o&&o[3]||(A.cssNumber[s]?"":"px")),g.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(c?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var o,i,a,s=G(t);return et.test(t)||(t=Je(s)),(a=A.cssHooks[t]||A.cssHooks[s])&&"get"in a&&(o=a.get(e,!0,n)),void 0===o&&(o=Ue(e,t,r)),"normal"===o&&t in nt&&(o=nt[t]),""===n||n?(i=parseFloat(o),!0===n||isFinite(i)?i||0:o):o}}),A.each(["height","width"],(function(e,t){A.cssHooks[t]={get:function(e,n,r){if(n)return!Ze.test(A.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?it(e,t,r):ue(e,tt,(function(){return it(e,t,r)}))},set:function(e,n,r){var o,i=He(e),a=!g.scrollboxSize()&&"absolute"===i.position,s=(a||r)&&"border-box"===A.css(e,"boxSizing",!1,i),c=r?ot(e,t,r,s,i):0;return s&&a&&(c-=Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-parseFloat(i[t])-ot(e,t,"border",!1,i)-.5)),c&&(o=oe.exec(n))&&"px"!==(o[3]||"px")&&(e.style[t]=n,n=A.css(e,t)),rt(0,n,c)}}})),A.cssHooks.marginLeft=Ve(g.reliableMarginLeft,(function(e,t){if(t)return(parseFloat(Ue(e,"marginLeft"))||e.getBoundingClientRect().left-ue(e,{marginLeft:0},(function(){return e.getBoundingClientRect().left})))+"px"})),A.each({margin:"",padding:"",border:"Width"},(function(e,t){A.cssHooks[e+t]={expand:function(n){for(var r=0,o={},i="string"==typeof n?n.split(" "):[n];r<4;r++)o[e+ie[r]+t]=i[r]||i[r-2]||i[0];return o}},"margin"!==e&&(A.cssHooks[e+t].set=rt)})),A.fn.extend({css:function(e,t){return H(this,(function(e,t,n){var r,o,i={},a=0;if(Array.isArray(t)){for(r=He(e),o=t.length;a1)}}),A.Tween=at,at.prototype={constructor:at,init:function(e,t,n,r,o,i){this.elem=e,this.prop=n,this.easing=o||A.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=i||(A.cssNumber[n]?"":"px")},cur:function(){var e=at.propHooks[this.prop];return e&&e.get?e.get(this):at.propHooks._default.get(this)},run:function(e){var t,n=at.propHooks[this.prop];return this.options.duration?this.pos=t=A.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):at.propHooks._default.set(this),this}},at.prototype.init.prototype=at.prototype,at.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=A.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){A.fx.step[e.prop]?A.fx.step[e.prop](e):1!==e.elem.nodeType||!A.cssHooks[e.prop]&&null==e.elem.style[Je(e.prop)]?e.elem[e.prop]=e.now:A.style(e.elem,e.prop,e.now+e.unit)}}},at.propHooks.scrollTop=at.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},A.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},A.fx=at.prototype.init,A.fx.step={};var st,ct,lt=/^(?:toggle|show|hide)$/,ut=/queueHooks$/;function dt(){ct&&(!1===a.hidden&&n.requestAnimationFrame?n.requestAnimationFrame(dt):n.setTimeout(dt,A.fx.interval),A.fx.tick())}function ft(){return n.setTimeout((function(){st=void 0})),st=Date.now()}function pt(e,t){var n,r=0,o={height:e};for(t=t?1:0;r<4;r+=2-t)o["margin"+(n=ie[r])]=o["padding"+n]=e;return t&&(o.opacity=o.width=e),o}function ht(e,t,n){for(var r,o=(mt.tweeners[t]||[]).concat(mt.tweeners["*"]),i=0,a=o.length;i1)},removeAttr:function(e){return this.each((function(){A.removeAttr(this,e)}))}}),A.extend({attr:function(e,t,n){var r,o,i=e.nodeType;if(3!==i&&8!==i&&2!==i)return void 0===e.getAttribute?A.prop(e,t,n):(1===i&&A.isXMLDoc(e)||(o=A.attrHooks[t.toLowerCase()]||(A.expr.match.bool.test(t)?bt:void 0)),void 0!==n?null===n?void A.removeAttr(e,t):o&&"set"in o&&void 0!==(r=o.set(e,n,t))?r:(e.setAttribute(t,n+""),n):o&&"get"in o&&null!==(r=o.get(e,t))?r:null==(r=A.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!g.radioValue&&"radio"===t&&N(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,o=t&&t.match(P);if(o&&1===e.nodeType)for(;n=o[r++];)e.removeAttribute(n)}}),bt={set:function(e,t,n){return!1===t?A.removeAttr(e,n):e.setAttribute(n,n),n}},A.each(A.expr.match.bool.source.match(/\w+/g),(function(e,t){var n=gt[t]||A.find.attr;gt[t]=function(e,t,r){var o,i,a=t.toLowerCase();return r||(i=gt[a],gt[a]=o,o=null!=n(e,t,r)?a:null,gt[a]=i),o}}));var _t=/^(?:input|select|textarea|button)$/i,vt=/^(?:a|area)$/i;function Mt(e){return(e.match(P)||[]).join(" ")}function yt(e){return e.getAttribute&&e.getAttribute("class")||""}function wt(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(P)||[]}A.fn.extend({prop:function(e,t){return H(this,A.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each((function(){delete this[A.propFix[e]||e]}))}}),A.extend({prop:function(e,t,n){var r,o,i=e.nodeType;if(3!==i&&8!==i&&2!==i)return 1===i&&A.isXMLDoc(e)||(t=A.propFix[t]||t,o=A.propHooks[t]),void 0!==n?o&&"set"in o&&void 0!==(r=o.set(e,n,t))?r:e[t]=n:o&&"get"in o&&null!==(r=o.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=A.find.attr(e,"tabindex");return t?parseInt(t,10):_t.test(e.nodeName)||vt.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),g.optSelected||(A.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),A.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],(function(){A.propFix[this.toLowerCase()]=this})),A.fn.extend({addClass:function(e){var t,n,r,o,i,a,s,c=0;if(_(e))return this.each((function(t){A(this).addClass(e.call(this,t,yt(this)))}));if((t=wt(e)).length)for(;n=this[c++];)if(o=yt(n),r=1===n.nodeType&&" "+Mt(o)+" "){for(a=0;i=t[a++];)r.indexOf(" "+i+" ")<0&&(r+=i+" ");o!==(s=Mt(r))&&n.setAttribute("class",s)}return this},removeClass:function(e){var t,n,r,o,i,a,s,c=0;if(_(e))return this.each((function(t){A(this).removeClass(e.call(this,t,yt(this)))}));if(!arguments.length)return this.attr("class","");if((t=wt(e)).length)for(;n=this[c++];)if(o=yt(n),r=1===n.nodeType&&" "+Mt(o)+" "){for(a=0;i=t[a++];)for(;r.indexOf(" "+i+" ")>-1;)r=r.replace(" "+i+" "," ");o!==(s=Mt(r))&&n.setAttribute("class",s)}return this},toggleClass:function(e,t){var n=typeof e,r="string"===n||Array.isArray(e);return"boolean"==typeof t&&r?t?this.addClass(e):this.removeClass(e):_(e)?this.each((function(n){A(this).toggleClass(e.call(this,n,yt(this),t),t)})):this.each((function(){var t,o,i,a;if(r)for(o=0,i=A(this),a=wt(e);t=a[o++];)i.hasClass(t)?i.removeClass(t):i.addClass(t);else void 0!==e&&"boolean"!==n||((t=yt(this))&&J.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":J.get(this,"__className__")||""))}))},hasClass:function(e){var t,n,r=0;for(t=" "+e+" ";n=this[r++];)if(1===n.nodeType&&(" "+Mt(yt(n))+" ").indexOf(t)>-1)return!0;return!1}});var At=/\r/g;A.fn.extend({val:function(e){var t,n,r,o=this[0];return arguments.length?(r=_(e),this.each((function(n){var o;1===this.nodeType&&(null==(o=r?e.call(this,n,A(this).val()):e)?o="":"number"==typeof o?o+="":Array.isArray(o)&&(o=A.map(o,(function(e){return null==e?"":e+""}))),(t=A.valHooks[this.type]||A.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,o,"value")||(this.value=o))}))):o?(t=A.valHooks[o.type]||A.valHooks[o.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(o,"value"))?n:"string"==typeof(n=o.value)?n.replace(At,""):null==n?"":n:void 0}}),A.extend({valHooks:{option:{get:function(e){var t=A.find.attr(e,"value");return null!=t?t:Mt(A.text(e))}},select:{get:function(e){var t,n,r,o=e.options,i=e.selectedIndex,a="select-one"===e.type,s=a?null:[],c=a?i+1:o.length;for(r=i<0?c:a?i:0;r-1)&&(n=!0);return n||(e.selectedIndex=-1),i}}}}),A.each(["radio","checkbox"],(function(){A.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=A.inArray(A(e).val(),t)>-1}},g.checkOn||(A.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})})),g.focusin="onfocusin"in n;var zt=/^(?:focusinfocus|focusoutblur)$/,Ot=function(e){e.stopPropagation()};A.extend(A.event,{trigger:function(e,t,r,o){var i,s,c,l,u,d,f,p,m=[r||a],b=h.call(e,"type")?e.type:e,g=h.call(e,"namespace")?e.namespace.split("."):[];if(s=p=c=r=r||a,3!==r.nodeType&&8!==r.nodeType&&!zt.test(b+A.event.triggered)&&(b.indexOf(".")>-1&&(g=b.split("."),b=g.shift(),g.sort()),u=b.indexOf(":")<0&&"on"+b,(e=e[A.expando]?e:new A.Event(b,"object"==typeof e&&e)).isTrigger=o?2:3,e.namespace=g.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+g.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=r),t=null==t?[e]:A.makeArray(t,[e]),f=A.event.special[b]||{},o||!f.trigger||!1!==f.trigger.apply(r,t))){if(!o&&!f.noBubble&&!v(r)){for(l=f.delegateType||b,zt.test(l+b)||(s=s.parentNode);s;s=s.parentNode)m.push(s),c=s;c===(r.ownerDocument||a)&&m.push(c.defaultView||c.parentWindow||n)}for(i=0;(s=m[i++])&&!e.isPropagationStopped();)p=s,e.type=i>1?l:f.bindType||b,(d=(J.get(s,"events")||{})[e.type]&&J.get(s,"handle"))&&d.apply(s,t),(d=u&&s[u])&&d.apply&&K(s)&&(e.result=d.apply(s,t),!1===e.result&&e.preventDefault());return e.type=b,o||e.isDefaultPrevented()||f._default&&!1!==f._default.apply(m.pop(),t)||!K(r)||u&&_(r[b])&&!v(r)&&((c=r[u])&&(r[u]=null),A.event.triggered=b,e.isPropagationStopped()&&p.addEventListener(b,Ot),r[b](),e.isPropagationStopped()&&p.removeEventListener(b,Ot),A.event.triggered=void 0,c&&(r[u]=c)),e.result}},simulate:function(e,t,n){var r=A.extend(new A.Event,n,{type:e,isSimulated:!0});A.event.trigger(r,null,t)}}),A.fn.extend({trigger:function(e,t){return this.each((function(){A.event.trigger(e,t,this)}))},triggerHandler:function(e,t){var n=this[0];if(n)return A.event.trigger(e,t,n,!0)}}),g.focusin||A.each({focus:"focusin",blur:"focusout"},(function(e,t){var n=function(e){A.event.simulate(t,e.target,A.event.fix(e))};A.event.special[t]={setup:function(){var r=this.ownerDocument||this,o=J.access(r,t);o||r.addEventListener(e,n,!0),J.access(r,t,(o||0)+1)},teardown:function(){var r=this.ownerDocument||this,o=J.access(r,t)-1;o?J.access(r,t,o):(r.removeEventListener(e,n,!0),J.remove(r,t))}}}));var Tt=n.location,Lt=Date.now(),xt=/\?/;A.parseXML=function(e){var t;if(!e||"string"!=typeof e)return null;try{t=(new n.DOMParser).parseFromString(e,"text/xml")}catch(e){t=void 0}return t&&!t.getElementsByTagName("parsererror").length||A.error("Invalid XML: "+e),t};var kt=/\[\]$/,Nt=/\r?\n/g,St=/^(?:submit|button|image|reset|file)$/i,Ct=/^(?:input|select|textarea|keygen)/i;function qt(e,t,n,r){var o;if(Array.isArray(t))A.each(t,(function(t,o){n||kt.test(e)?r(e,o):qt(e+"["+("object"==typeof o&&null!=o?t:"")+"]",o,n,r)}));else if(n||"object"!==w(t))r(e,t);else for(o in t)qt(e+"["+o+"]",t[o],n,r)}A.param=function(e,t){var n,r=[],o=function(e,t){var n=_(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!A.isPlainObject(e))A.each(e,(function(){o(this.name,this.value)}));else for(n in e)qt(n,e[n],t,o);return r.join("&")},A.fn.extend({serialize:function(){return A.param(this.serializeArray())},serializeArray:function(){return this.map((function(){var e=A.prop(this,"elements");return e?A.makeArray(e):this})).filter((function(){var e=this.type;return this.name&&!A(this).is(":disabled")&&Ct.test(this.nodeName)&&!St.test(e)&&(this.checked||!me.test(e))})).map((function(e,t){var n=A(this).val();return null==n?null:Array.isArray(n)?A.map(n,(function(e){return{name:t.name,value:e.replace(Nt,"\r\n")}})):{name:t.name,value:n.replace(Nt,"\r\n")}})).get()}});var Dt=/%20/g,Wt=/#.*$/,Et=/([?&])_=[^&]*/,Bt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Pt=/^(?:GET|HEAD)$/,Xt=/^\/\//,Rt={},jt={},It="*/".concat("*"),Ft=a.createElement("a");function $t(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,o=0,i=t.toLowerCase().match(P)||[];if(_(n))for(;r=i[o++];)"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function Ht(e,t,n,r){var o={},i=e===jt;function a(s){var c;return o[s]=!0,A.each(e[s]||[],(function(e,s){var l=s(t,n,r);return"string"!=typeof l||i||o[l]?i?!(c=l):void 0:(t.dataTypes.unshift(l),a(l),!1)})),c}return a(t.dataTypes[0])||!o["*"]&&a("*")}function Yt(e,t){var n,r,o=A.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((o[n]?e:r||(r={}))[n]=t[n]);return r&&A.extend(!0,e,r),e}Ft.href=Tt.href,A.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Tt.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(Tt.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":It,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":A.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Yt(Yt(e,A.ajaxSettings),t):Yt(A.ajaxSettings,e)},ajaxPrefilter:$t(Rt),ajaxTransport:$t(jt),ajax:function(e,t){"object"==typeof e&&(t=e,e=void 0),t=t||{};var r,o,i,s,c,l,u,d,f,p,h=A.ajaxSetup({},t),m=h.context||h,b=h.context&&(m.nodeType||m.jquery)?A(m):A.event,g=A.Deferred(),_=A.Callbacks("once memory"),v=h.statusCode||{},M={},y={},w="canceled",z={readyState:0,getResponseHeader:function(e){var t;if(u){if(!s)for(s={};t=Bt.exec(i);)s[t[1].toLowerCase()+" "]=(s[t[1].toLowerCase()+" "]||[]).concat(t[2]);t=s[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return u?i:null},setRequestHeader:function(e,t){return null==u&&(e=y[e.toLowerCase()]=y[e.toLowerCase()]||e,M[e]=t),this},overrideMimeType:function(e){return null==u&&(h.mimeType=e),this},statusCode:function(e){var t;if(e)if(u)z.always(e[z.status]);else for(t in e)v[t]=[v[t],e[t]];return this},abort:function(e){var t=e||w;return r&&r.abort(t),O(0,t),this}};if(g.promise(z),h.url=((e||h.url||Tt.href)+"").replace(Xt,Tt.protocol+"//"),h.type=t.method||t.type||h.method||h.type,h.dataTypes=(h.dataType||"*").toLowerCase().match(P)||[""],null==h.crossDomain){l=a.createElement("a");try{l.href=h.url,l.href=l.href,h.crossDomain=Ft.protocol+"//"+Ft.host!=l.protocol+"//"+l.host}catch(e){h.crossDomain=!0}}if(h.data&&h.processData&&"string"!=typeof h.data&&(h.data=A.param(h.data,h.traditional)),Ht(Rt,h,t,z),u)return z;for(f in(d=A.event&&h.global)&&0==A.active++&&A.event.trigger("ajaxStart"),h.type=h.type.toUpperCase(),h.hasContent=!Pt.test(h.type),o=h.url.replace(Wt,""),h.hasContent?h.data&&h.processData&&0===(h.contentType||"").indexOf("application/x-www-form-urlencoded")&&(h.data=h.data.replace(Dt,"+")):(p=h.url.slice(o.length),h.data&&(h.processData||"string"==typeof h.data)&&(o+=(xt.test(o)?"&":"?")+h.data,delete h.data),!1===h.cache&&(o=o.replace(Et,"$1"),p=(xt.test(o)?"&":"?")+"_="+Lt+++p),h.url=o+p),h.ifModified&&(A.lastModified[o]&&z.setRequestHeader("If-Modified-Since",A.lastModified[o]),A.etag[o]&&z.setRequestHeader("If-None-Match",A.etag[o])),(h.data&&h.hasContent&&!1!==h.contentType||t.contentType)&&z.setRequestHeader("Content-Type",h.contentType),z.setRequestHeader("Accept",h.dataTypes[0]&&h.accepts[h.dataTypes[0]]?h.accepts[h.dataTypes[0]]+("*"!==h.dataTypes[0]?", "+It+"; q=0.01":""):h.accepts["*"]),h.headers)z.setRequestHeader(f,h.headers[f]);if(h.beforeSend&&(!1===h.beforeSend.call(m,z,h)||u))return z.abort();if(w="abort",_.add(h.complete),z.done(h.success),z.fail(h.error),r=Ht(jt,h,t,z)){if(z.readyState=1,d&&b.trigger("ajaxSend",[z,h]),u)return z;h.async&&h.timeout>0&&(c=n.setTimeout((function(){z.abort("timeout")}),h.timeout));try{u=!1,r.send(M,O)}catch(e){if(u)throw e;O(-1,e)}}else O(-1,"No Transport");function O(e,t,a,s){var l,f,p,M,y,w=t;u||(u=!0,c&&n.clearTimeout(c),r=void 0,i=s||"",z.readyState=e>0?4:0,l=e>=200&&e<300||304===e,a&&(M=function(e,t,n){for(var r,o,i,a,s=e.contents,c=e.dataTypes;"*"===c[0];)c.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(o in s)if(s[o]&&s[o].test(r)){c.unshift(o);break}if(c[0]in n)i=c[0];else{for(o in n){if(!c[0]||e.converters[o+" "+c[0]]){i=o;break}a||(a=o)}i=i||a}if(i)return i!==c[0]&&c.unshift(i),n[i]}(h,z,a)),M=function(e,t,n,r){var o,i,a,s,c,l={},u=e.dataTypes.slice();if(u[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];for(i=u.shift();i;)if(e.responseFields[i]&&(n[e.responseFields[i]]=t),!c&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),c=i,i=u.shift())if("*"===i)i=c;else if("*"!==c&&c!==i){if(!(a=l[c+" "+i]||l["* "+i]))for(o in l)if((s=o.split(" "))[1]===i&&(a=l[c+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[o]:!0!==l[o]&&(i=s[0],u.unshift(s[1]));break}if(!0!==a)if(a&&e.throws)t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+c+" to "+i}}}return{state:"success",data:t}}(h,M,z,l),l?(h.ifModified&&((y=z.getResponseHeader("Last-Modified"))&&(A.lastModified[o]=y),(y=z.getResponseHeader("etag"))&&(A.etag[o]=y)),204===e||"HEAD"===h.type?w="nocontent":304===e?w="notmodified":(w=M.state,f=M.data,l=!(p=M.error))):(p=w,!e&&w||(w="error",e<0&&(e=0))),z.status=e,z.statusText=(t||w)+"",l?g.resolveWith(m,[f,w,z]):g.rejectWith(m,[z,w,p]),z.statusCode(v),v=void 0,d&&b.trigger(l?"ajaxSuccess":"ajaxError",[z,h,l?f:p]),_.fireWith(m,[z,w]),d&&(b.trigger("ajaxComplete",[z,h]),--A.active||A.event.trigger("ajaxStop")))}return z},getJSON:function(e,t,n){return A.get(e,t,n,"json")},getScript:function(e,t){return A.get(e,void 0,t,"script")}}),A.each(["get","post"],(function(e,t){A[t]=function(e,n,r,o){return _(n)&&(o=o||r,r=n,n=void 0),A.ajax(A.extend({url:e,type:t,dataType:o,data:n,success:r},A.isPlainObject(e)&&e))}})),A._evalUrl=function(e,t){return A.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){A.globalEval(e,t)}})},A.fn.extend({wrapAll:function(e){var t;return this[0]&&(_(e)&&(e=e.call(this[0])),t=A(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map((function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e})).append(this)),this},wrapInner:function(e){return _(e)?this.each((function(t){A(this).wrapInner(e.call(this,t))})):this.each((function(){var t=A(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)}))},wrap:function(e){var t=_(e);return this.each((function(n){A(this).wrapAll(t?e.call(this,n):e)}))},unwrap:function(e){return this.parent(e).not("body").each((function(){A(this).replaceWith(this.childNodes)})),this}}),A.expr.pseudos.hidden=function(e){return!A.expr.pseudos.visible(e)},A.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},A.ajaxSettings.xhr=function(){try{return new n.XMLHttpRequest}catch(e){}};var Ut={0:200,1223:204},Vt=A.ajaxSettings.xhr();g.cors=!!Vt&&"withCredentials"in Vt,g.ajax=Vt=!!Vt,A.ajaxTransport((function(e){var t,r;if(g.cors||Vt&&!e.crossDomain)return{send:function(o,i){var a,s=e.xhr();if(s.open(e.type,e.url,e.async,e.username,e.password),e.xhrFields)for(a in e.xhrFields)s[a]=e.xhrFields[a];for(a in e.mimeType&&s.overrideMimeType&&s.overrideMimeType(e.mimeType),e.crossDomain||o["X-Requested-With"]||(o["X-Requested-With"]="XMLHttpRequest"),o)s.setRequestHeader(a,o[a]);t=function(e){return function(){t&&(t=r=s.onload=s.onerror=s.onabort=s.ontimeout=s.onreadystatechange=null,"abort"===e?s.abort():"error"===e?"number"!=typeof s.status?i(0,"error"):i(s.status,s.statusText):i(Ut[s.status]||s.status,s.statusText,"text"!==(s.responseType||"text")||"string"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=t(),r=s.onerror=s.ontimeout=t("error"),void 0!==s.onabort?s.onabort=r:s.onreadystatechange=function(){4===s.readyState&&n.setTimeout((function(){t&&r()}))},t=t("abort");try{s.send(e.hasContent&&e.data||null)}catch(e){if(t)throw e}},abort:function(){t&&t()}}})),A.ajaxPrefilter((function(e){e.crossDomain&&(e.contents.script=!1)})),A.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return A.globalEval(e),e}}}),A.ajaxPrefilter("script",(function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")})),A.ajaxTransport("script",(function(e){var t,n;if(e.crossDomain||e.scriptAttrs)return{send:function(r,o){t=A("