Version Description
Read the blog post update = * NEW Matomo Analytics as a WP Dashboard widget (PRO) * NEW Pros and cons for Product structured data types (PRO) * NEW +2000% performance improvement on frontend * NEW WP Job Manager breadcrumbs compatibility * NEW "Stop WordPress to attempt to guess a redirect URL for a 404 request" option (SEO, PRO, Redirections / 404) * NEW "seopress_content_analysis_cleaning" hook to run custom action when cleaning content for analysis (https://www.seopress.org/support/hooks/run-custom-action-when-cleaning-content-for-analysis/) * INFO Automatically enable by default IndexNow for Bing and Yandex on new installs * INFO Exclude TablePress "edit" links from Content Analysis - NoFollow links * INFO Update our block icons for the Block Editor * INFO Improve Page Speed PDF export * INFO Remove log for Page Speed CRON * INFO Add a notice if SEOPress PRO version is extremely old to prevent any issues * INFO Improve Get started block from SEO Dashboard page * INFO We now automatically flush permalinks when saving XML sitemaps global settings * INFO Drop support for Oxygen < 4.0 (please update!) * FIX Remove duplicated posts in HTML sitemap * FIX Warning: Use of undefined constant SEOPRESS_PRO_VERSION - assumed 'SEOPRESS_PRO_VERSION' * FIX Regenerate IndexNow key button in specific cases * FIX Useless quotes for Post Author name with automatic Recipe schema * FIX CSS conflicts with table * FIX CSS conflits between Universal SEO metabox and a WP theme * FIX Warning on plugin activation related to the significant keywords SQL table * FIX Duplicated custom tracking for BODY tag with Oxygen v4 * FIX Tracking scripts with Oxygen v4 * FIX Word counters with inline CSS * FIX Sitemap block not listing all CPT * FIX Test URL redirection button in specific cases * FIX Doc links
View our complete changelog
Release Info
Developer | rainbowgeek |
Plugin | SEOPress |
Version | 6.0 |
Comparing to | |
See all releases |
Code changes from version 5.9.0.4 to 6.0
- assets/css/seopress.css +24 -4
- assets/css/seopress.min.css +1 -1
- assets/js/build/primary-category-select.js.map +0 -1
- assets/js/seopress-dashboard.js +1 -0
- assets/js/seopress-dashboard.min.js +1 -1
- assets/js/src/blocks/faq/accordion.js +0 -9
- assets/js/src/blocks/faq/edit.js +0 -421
- assets/js/src/blocks/faq/editor.scss +0 -37
- assets/js/src/blocks/faq/image-control.js +0 -131
- assets/js/src/blocks/faq/index.js +0 -15
- assets/js/src/blocks/faq/style.scss +0 -0
- assets/js/src/blocks/sitemap/edit.js +0 -34
- assets/js/src/blocks/sitemap/editor.scss +0 -5
- assets/js/src/blocks/sitemap/index.js +0 -11
- assets/js/src/blocks/sitemap/inspector.js +0 -39
- assets/js/src/primary-category-select.js +0 -108
- inc/admin/admin-pages/Analytics.php +1 -0
- inc/admin/admin-pages/Main.php +1 -1
- inc/admin/admin.php +28 -2
- inc/admin/ajax.php +7 -3
- inc/admin/{admin-features-list.php → blocks/features-list.php} +0 -0
- inc/admin/blocks/notifications-center.php +53 -225
- inc/admin/blocks/tasks.php +50 -6
- inc/admin/callbacks/Analytics.php +1 -0
- inc/admin/cron.php +1 -1
- inc/admin/docs/DocsLinks.php +6 -2
- inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php +2 -2
- inc/admin/metaboxes/admin-metaboxes.php +1 -1
- inc/admin/page-builders/gutenberg/blocks.php +3 -3
- inc/admin/page-builders/gutenberg/{block-faq.php → blocks/faq/block.php} +11 -7
- {assets/js/src → inc/admin/page-builders/gutenberg}/blocks/sitemap/block.json +4 -4
- inc/admin/page-builders/gutenberg/{block-sitemap.php → blocks/sitemap/block.php} +0 -0
- inc/admin/sanitize/Sanitize.php +8 -2
- inc/admin/sections/Analytics.php +11 -0
- inc/admin/sections/Sitemaps.php +8 -8
- inc/functions/options-google-analytics.php +15 -23
- inc/functions/options-instant-indexing.php +10 -5
- inc/functions/options-titles-metas.php +0 -2
- inc/functions/options.php +8 -18
- inc/functions/sitemap/template-html-sitemap.php +9 -0
- inc/functions/variables/dynamic-variables.php +336 -334
- languages/wp-seopress.pot +766 -693
- public/editor/blocks/faq/index.asset.php +1 -0
- public/{gutenberg → editor}/blocks/faq/index.css +0 -0
- public/{gutenberg → editor}/blocks/faq/index.js +1 -1
- public/{gutenberg → editor}/blocks/faq/style-index.css +0 -0
- public/{gutenberg → editor}/blocks/sitemap/index.asset.php +1 -1
- public/{gutenberg → editor}/blocks/sitemap/index.css +0 -0
- public/{gutenberg → editor}/blocks/sitemap/index.js +1 -1
- assets/js/build/primary-category-select.asset.php → public/editor/primary-category-select/index.asset.php +0 -0
- assets/js/build/primary-category-select.js → public/editor/primary-category-select/index.js +0 -0
- public/gutenberg/blocks/faq/index.asset.php +0 -1
- public/gutenberg/primary-category-select.asset.php +0 -1
- public/gutenberg/primary-category-select.js +0 -1
- public/gutenberg/primary-category-select/index.asset.php +0 -1
- public/gutenberg/primary-category-select/index.js +0 -1
- public/images/.gitkeep +0 -0
- public/metaboxe.js +0 -1
@@ -41,6 +41,8 @@
|
|
41 |
#seopress_cpt,
|
42 |
#seopress_content_analysis,
|
43 |
#seopress_pro_cpt,
|
|
|
|
|
44 |
.column-seopress_score,
|
45 |
.seopress-ui-datepicker {
|
46 |
--primaryColor: #007cba;
|
@@ -388,19 +390,19 @@ body .seopress-option input[type="checkbox"]:active,
|
|
388 |
}
|
389 |
|
390 |
/* Table */
|
391 |
-
.form-table td {
|
392 |
padding: 15px 0;
|
393 |
}
|
394 |
|
395 |
-
.form-table td p {
|
396 |
margin: 4px 0;
|
397 |
}
|
398 |
|
399 |
-
.form-table td p.seopress_wrap_archive_cpt {
|
400 |
margin-bottom: 15px;
|
401 |
}
|
402 |
|
403 |
-
.form-table td label {
|
404 |
display: block;
|
405 |
}
|
406 |
|
@@ -549,9 +551,27 @@ table.fixed thead .column-seopress_noindex {
|
|
549 |
width: 50%;
|
550 |
color: var(--colorDark);
|
551 |
justify-content: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
552 |
}
|
553 |
|
554 |
@media only screen and (max-width: 782px) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
555 |
.seopress-summary-item {
|
556 |
width: 100%;
|
557 |
}
|
41 |
#seopress_cpt,
|
42 |
#seopress_content_analysis,
|
43 |
#seopress_pro_cpt,
|
44 |
+
#seopress_matomo_dashboard_widget,
|
45 |
+
#seopress_ga_dashboard_widget,
|
46 |
.column-seopress_score,
|
47 |
.seopress-ui-datepicker {
|
48 |
--primaryColor: #007cba;
|
390 |
}
|
391 |
|
392 |
/* Table */
|
393 |
+
.seopress-tab .form-table td {
|
394 |
padding: 15px 0;
|
395 |
}
|
396 |
|
397 |
+
.seopress-tab .form-table td p {
|
398 |
margin: 4px 0;
|
399 |
}
|
400 |
|
401 |
+
.seopress-tab .form-table td p.seopress_wrap_archive_cpt {
|
402 |
margin-bottom: 15px;
|
403 |
}
|
404 |
|
405 |
+
.seopress-tab .form-table td label {
|
406 |
display: block;
|
407 |
}
|
408 |
|
551 |
width: 50%;
|
552 |
color: var(--colorDark);
|
553 |
justify-content: center;
|
554 |
+
box-sizing: border-box;
|
555 |
+
}
|
556 |
+
|
557 |
+
#seopress_matomo_dashboard_widget .seopress-summary-item:nth-child(even) {
|
558 |
+
border-right: none;
|
559 |
+
}
|
560 |
+
|
561 |
+
#seopress_matomo_dashboard_widget .seopress-summary-item:nth-last-child(2),
|
562 |
+
#seopress_matomo_dashboard_widget .seopress-summary-item:last-child {
|
563 |
+
border-bottom: none;
|
564 |
}
|
565 |
|
566 |
@media only screen and (max-width: 782px) {
|
567 |
+
#seopress_matomo_dashboard_widget .seopress-summary-item {
|
568 |
+
border-right: none;
|
569 |
+
}
|
570 |
+
|
571 |
+
#seopress_matomo_dashboard_widget .seopress-summary-item:nth-last-child(2) {
|
572 |
+
border-bottom: 1px solid var(--borderColorLight40);
|
573 |
+
}
|
574 |
+
|
575 |
.seopress-summary-item {
|
576 |
width: 100%;
|
577 |
}
|
@@ -1 +1 @@
|
|
1 |
-
#seopress_content_analysis *,#seopress_cpt *,#seopress_pro_cpt *,.seopress-option *,.seopress-styles *{box-sizing:border-box}@font-face{font-family:seopress;src:url(../fonts/seopress.eot?81521271);src:url(../fonts/seopress.eot?81521271#iefix) format("embedded-opentype"),url(../fonts/seopress.woff?81521271) format("woff2"),url(../fonts/seopress.woff?81521271) format("woff"),url(../fonts/seopress.ttf?81521271) format("truetype"),url(../fonts/seopress.svg?81521271#seopress) format("svg");font-weight:400;font-style:normal}[class*=" icon-seopress"],[class^=icon-seopress-]{font-family:seopress!important;font-size:14px!important;line-height:24px!important}#adminmenu div.wp-menu-image.dashicons-admin-seopress::before{content:"\e800";font-family:seopress;font-weight:700;font-size:12px;line-height:20px}#seopress_content_analysis,#seopress_cpt,#seopress_pro_cpt,#wpadminbar,.column-seopress_score,.post-type-seopress_404 #wpcontent,.post-type-seopress_schemas #wpcontent,.seopress-option #wpcontent,.seopress-styles #wpcontent,.seopress-ui-datepicker{--primaryColor:#007cba;--paragraphColor:#757575;--fontSize:13px;--fontFamily:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;--color:#757575;--colorDark:#1e1e1e;--colorAlert:#eb0f00;--colorWarning:#ffba00;--colorSuccess:#4ab866;--colorLowAlert:#e39f48;--colorPre:#37864b;--colorIcon:#d7dade;--lineHeight:24px;--titleColor:#3c434a;--titleFontSize:20px;--titleFontWeight:normal;--titleMargin:10px 0;--backgroundPrimary:#007cba;--backgroundPrimaryHover:#006ba1;--backgroundSecondaryHover:#f0f0f0;--borderColor:#a7aaad;--borderColorLight:#dcdcde;--borderColorLight40:rgba(220, 220, 222, 0.4);--borderColorCard:#e2e4e7;--borderColorTab:#c3c4c7}.seopress-option .text-center,.seopress-styles .text-center{text-align:center}.post-type-seopress_404 .btn,.post-type-seopress_schemas .btn,.seopress-option .btn,.seopress-styles .btn{display:inline-flex;text-decoration:none;font-size:var(--fontSize);margin:0;border:0;cursor:pointer;-webkit-appearance:none;background:0 0;transition:box-shadow .1s linear;height:36px;align-items:center;padding:6px 12px;border-radius:2px;vertical-align:middle;color:var(--colorDark);white-space:nowrap;outline:1px solid transparent}.post-type-seopress_404 .btnPrimary,.post-type-seopress_schemas .btnPrimary,.seopress-option .btnPrimary,.seopress-styles .btnPrimary{background:var(--primaryColor);color:#fff;text-decoration:none}.post-type-seopress_404 .btnPrimary:hover,.post-type-seopress_schemas .btnPrimary:hover,.seopress-option .btnPrimary:hover,.seopress-styles .btnPrimary:hover{background:var(--backgroundPrimaryHover);color:#fff}.post-type-seopress_404 .btnSecondary,.post-type-seopress_schemas .btnSecondary,.seopress-option .btnSecondary,.seopress-styles .btnSecondary{box-shadow:inset 0 0 0 1px var(--primaryColor);color:var(--primaryColor);background:0 0}.seopress-option .btnSecondary.is-deletable,.seopress-styles .btnSecondary.is-deletable{border-color:#cc1818;color:#cc1818;box-shadow:rgb(204 24 24) 0 0 0 1px inset}.post-type-seopress_404 .btnTertiary,.post-type-seopress_schemas .btnTertiary,.seopress-option .btnTertiary,.seopress-styles .btnTertiary{color:var(--primaryColor);background:0 0}.post-type-seopress_404 .btnTertiary:hover,.post-type-seopress_schemas .btnTertiary:hover,.seopress-option .btnTertiary:hover,.seopress-styles .btnTertiary:hover{box-shadow:inset 0 0 0 1px var(--primaryColor)}.seopress-option hr,.seopress-setup hr,.seopress-styles hr{align-self:center;flex-grow:1;height:1px;margin:0;border:0;border-top:1px solid #dcdcde;border-bottom:1px solid #f6f7f7}.seopress-setup hr{margin-left:10px}#seopress-tabs.wrap .list-none{list-style:none;padding-left:0}.seopress-option .dashicons,.seopress-page-list .dashicons{vertical-align:middle;margin-right:5px;text-decoration:none}.seopress-activity-panel .dashicons{margin-right:0}#seopress-news-panel .seopress-item-inner .dashicons{vertical-align:top}.seopress-button{text-transform:uppercase;background:#fff;border-color:#c8d7e1;border-style:solid;border-width:1px 1px 2px;color:#2e4453;display:inline-block;margin:0;outline:0;overflow:hidden;text-overflow:ellipsis;text-decoration:none;vertical-align:top;font-size:14px;line-height:20px;padding:6px 8px 6px;-webkit-appearance:none;-moz-appearance:none;appearance:none}.seopress-button:hover{border-color:#a8bece;color:#00a0d2}.seopress-button .dashicons{vertical-align:middle}body .seopress-option h2{color:var(--titleColor);font-size:20px;line-height:24px;font-weight:400}body .seopress-option h3{color:var(--titleColor);font-size:16px;line-height:20px}#seopress_content_analysis input[type=text],#seopress_content_analysis textarea,#seopress_cpt input[type=text],#seopress_cpt textarea,#seopress_pro_cpt input[type=text],#seopress_pro_cpt textarea{width:100%;display:inline-block}#seopress_cpt #tabs-6 input[type=number]{min-width:200px}#seopress_cpt #tabs-6 #wrap-videos .video:first-child .remove-video{display:none}#seopress_content_analysis label,#seopress_cpt label,#seopress_pro_cpt label{margin-bottom:8px;display:inline-block;width:100%}#seopress_cpt #tabs-6{padding:0}body .seopress-option input[type=password],body .seopress-option input[type=text],body .seopress-option select,body .seopress-option textarea{max-width:35rem;border:1px solid var(--borderColor);box-shadow:0 2px 6px rgb(0 0 0 / 5%);width:100%}body .seopress-option select{min-height:50px}.wrap-opening-hours select{width:inherit}body .seopress-option input[type=number],body .seopress-option input[type=password],body .seopress-option input[type=text]{line-height:46px}body .seopress-option input[type=number]:hover,body .seopress-option input[type=password]:hover,body .seopress-option input[type=text]:hover,body .seopress-option select:hover,body .seopress-option textarea:hover{border-color:#787c82}body .seopress-option input[type=number]:active,body .seopress-option input[type=number]:focus,body .seopress-option input[type=password]:active,body .seopress-option input[type=password]:focus,body .seopress-option input[type=text]:active,body .seopress-option input[type=text]:focus,body .seopress-option select:active,body .seopress-option select:focus,body .seopress-option textarea:active,body .seopress-option textarea:focus{box-shadow:0 0 0 2px var(--primaryColor);border-color:transparent}@media only screen and (max-width:1024px){body .seopress-option input[type=number],body .seopress-option input[type=password],body .seopress-option input[type=text],body .seopress-option textarea{min-width:inherit;width:100%}}#seopress_content_analysis input[type=checkbox],#seopress_cpt input[type=checkbox],#seopress_pro_cpt input[type=checkbox],body .seopress-option input[type=checkbox]{font-family:var(--fontFamily);padding:6px 8px;box-shadow:0 0 0 transparent;transition:box-shadow .1s linear;border-radius:2px;border:1px solid var(--color);font-size:16px;line-height:normal;border:1px solid var(--colorDark);margin-right:12px;transition:none;border-radius:2px;background:#fff;color:var(--colorDark);clear:none;cursor:pointer;display:inline-block;line-height:0;margin:-1px 4px 0 0!important;outline:0;padding:0!important;text-align:center;vertical-align:top;width:20px;height:20px;-webkit-appearance:none;appearance:none;transition:.1s border-color ease-in-out}#seopress_content_analysis input[type=checkbox]:checked::before,#seopress_cpt input[type=checkbox]:checked::before,#seopress_pro_cpt input[type=checkbox]:checked::before,body .seopress-option input[type=checkbox]:checked::before{content:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");background:var(--primaryColor);margin:-1px;width:20px;height:20px}#seopress_content_analysis input[type=checkbox]:active,#seopress_content_analysis input[type=checkbox]:focus,#seopress_cpt input[type=checkbox]:active,#seopress_cpt input[type=checkbox]:focus,#seopress_pro_cpt input[type=checkbox]:active,#seopress_pro_cpt input[type=checkbox]:focus,body .seopress-option input[type=checkbox]:active,body .seopress-option input[type=checkbox]:focus{box-shadow:0 0 0 2px var(--primaryColor);border-color:transparent}.field-recommended,.field-required{font-weight:700}.field-required{color:var(--colorAlert)}.field-recommended{color:var(--colorWarning)}.form-table td{padding:15px 0}.form-table td p{margin:4px 0}.form-table td p.seopress_wrap_archive_cpt{margin-bottom:15px}.form-table td label{display:block}table.wp-list-table .manage_column.column-seopress_canonical,table.wp-list-table .manage_column.column-seopress_desc,table.wp-list-table .manage_column.column-seopress_insights,table.wp-list-table .manage_column.column-seopress_noindex,table.wp-list-table .manage_column.column-seopress_redirect_enable,table.wp-list-table .manage_column.column-seopress_redirect_url,table.wp-list-table .manage_column.column-seopress_title,table.wp-list-table .manage_column.column-seopress_tkw{width:7%!important}.post-type-product table.fixed thead .column-seopress_desc,.post-type-product table.fixed thead .column-seopress_title{width:8%}.post-type-product .fixed .column-seopress_ps,.post-type-product .fixed .column-seopress_words,.post-type-product table.fixed thead .column-seopress_canonical,.post-type-product table.fixed thead .column-seopress_redirect_enable,.post-type-product table.fixed thead .column-seopress_redirect_url,.post-type-product table.fixed thead .column-seopress_tkw{width:6%}.post-type-product .fixed .column-seopress_score{width:50px}table.fixed thead .column-seopress_nofollow,table.fixed thead .column-seopress_noindex{width:100px}@media only screen and (max-width:1200px){table.fixed .column-seopress_canonical>div,table.fixed .column-seopress_desc>div,table.fixed .column-seopress_redirect_enable>div,table.fixed .column-seopress_redirect_url>div,table.fixed .column-seopress_title>div{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}table.fixed thead .column-seopress_canonical,table.fixed thead .column-seopress_nofollow,table.fixed thead .column-seopress_noindex,table.fixed thead .column-seopress_ps,table.fixed thead .column-seopress_redirect_enable,table.fixed thead .column-seopress_redirect_url,table.fixed thead .column-seopress_score,table.fixed thead .column-seopress_tkw,table.fixed thead .column-seopress_words{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}}.post-type-seopress_backlinks .wp-list-table .column-seopress_backlinks_url{width:35%}.post-type-seopress_backlinks .wp-list-table .column-seopress_backlinks_anchor_text{width:20%}.seopress-styles #seopress-header{padding:22px 120px 22px 40px;height:60px;margin:0 auto;width:calc(100% - 160px);background:#fff;position:fixed;top:32px;z-index:110;display:flex;justify-content:space-between;align-items:center}.folded.seopress-styles #seopress-header{width:calc(100% - 35px)}@media only screen and (max-width:782px){.seopress-styles #seopress-header{width:100%;padding:22px;top:46px;position:absolute}}#seopress-header #seopress-navbar ul{margin:0;padding:0}#seopress-header #seopress-navbar ul li{margin:0;display:inline-block;position:relative;padding:0 20px 0 0;font-weight:700}#seopress-header #seopress-navbar ul li::after{content:"/";color:var(--paragraphColor);position:absolute;display:block;top:0;left:calc(100% - 10px)}#seopress-header #seopress-navbar ul li:last-child:after{content:none}.sp-dashboard-card-highlight{border:1px dashed #c3c4c7;margin:20px 0}.seopress-summary-items{display:flex;flex-wrap:wrap}.seopress-summary-item{display:flex;flex-direction:column;padding:20px;border-bottom:1px solid var(--borderColorLight40);border-right:1px solid var(--borderColorLight40);line-height:1.4em;text-decoration:none;width:50%;color:var(--colorDark);justify-content:center}@media only screen and (max-width:782px){.seopress-summary-item{width:100%}}.seopress-summary-item-label{display:block;margin-bottom:16px;color:var(--color);font-size:14px;line-height:20px}.seopress-summary-item-data{margin-bottom:4px;font-weight:500;color:var(--colorDark);font-size:20px;line-height:28px}.seopress-summary-item-data small{font-weight:400;font-size:11px;text-transform:uppercase}.seopress-summary-items .inside,.seopress-tab.inside{padding:20px}#seopress-admin-tabs.ui-tabs{position:relative;padding:.2em;border:none;font-family:inherit;font-size:inherit}#seopress-admin-tabs.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:-1px .2em 0 0;padding:0;white-space:nowrap;border:none;background:0 0}#seopress-admin-tabs.ui-tabs .ui-tabs-nav li a{float:left;padding:.38em 1em .75rem;outline:0;border-bottom:2px solid #fff}#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px}#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-state-disabled a,#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-tabs-active a,#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-tabs-loading a{cursor:text;border-bottom:2px solid #23282d;color:#23282d}#seopress-admin-tabs.ui-tabs .ui-tabs-nav li a,#seopress-admin-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a{cursor:pointer;color:#0073aa;text-decoration:none}#seopress-admin-tabs.ui-tabs-vertical{width:55em}#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav{padding:.2em .1em .2em .2em;float:left;width:12em}#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav li{clear:left;width:100%;border-bottom-width:1px!important;border-right-width:0!important;margin:0 -1px .2em 0}#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active{padding-bottom:0;padding-right:.1em;border-right-width:1px}#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-panel{padding:1em;float:right;width:40em}#seopress-admin-tabs.wrap{background:#fff;display:block;width:64rem;max-width:100%;margin:0 auto}@media only screen and (max-width:1024px){#seopress-admin-tabs.wrap{width:100%}}#seopress-admin-tabs .seopress-tab{width:100%;display:none}#seopress-admin-tabs .seopress-tab.active{visibility:visible;overflow:inherit;opacity:1;transform:translateX(0);display:inherit;position:relative}.seopress-dashboard-columns{display:flex;max-width:64rem;margin:0 auto;justify-content:space-between;flex-direction:row}.seopress-dashboard-column{align-self:flex-start;width:calc(50% - 12px);margin:0}@media only screen and (max-width:782px){.seopress-dashboard-columns{max-width:100%;flex-direction:column}.seopress-dashboard-column{width:100%}}#seopress-admin-tabs .ui-tabs-nav,.seopress-get-started{margin:0 auto 20px;max-width:64rem;padding:2rem;width:100%;border-radius:0 0 4px 4px}.seopress-get-started{background:#fff url(../img/bg-hero-started.svg) no-repeat 100% 50%/contain;position:relative}.seopress-get-started .inside{padding:2rem}.seopress-get-started .preheader{text-transform:uppercase;font-size:11px;font-weight:600;color:var(--paragraphColor)}.seopress-activity-panel-tabs{height:60px;display:flex;align-items:center}.seopress-activity-panel-tabs .btn{display:flex;flex-direction:column;justify-content:center;color:var(--color);height:60px;padding:10px 26px;border-bottom:3px solid transparent}.seopress-activity-panel-tabs .btn:hover{background:var(--backgroundSecondaryHover)}.seopress-activity-panel-tabs .btn.is-active{border-bottom:3px solid var(--backgroundPrimary);color:var(--colorDark)}.seopress-activity-panel-wrapper{height:calc(100vh - 92px);top:92px;background:var(--backgroundSecondaryHover);width:510px;transform:translateX(100%);transition-duration:.3s;transition-timing-function:ease-in-out;position:fixed;right:0;z-index:1000;overflow-x:hidden;overflow-y:auto}@media only screen and (max-width:782px){.seopress-activity-panel-wrapper{top:106px}}.seopress-activity-panel-wrapper.is-open{transform:none;box-shadow:0 12px 12px 0 rgb(85 93 102 / 30%)}.seopress-activity-panel-header{background:#e0e0e0;padding:16px 24px}.seopress-activity-panel-content{background:#fff;padding:16px 24px}.seopress-list-items,.seopress-list-items .seopress-item{margin:0}.seopress-list-items .seopress-item{border-bottom:1px solid var(--borderColorLight40)}.seopress-list-items .seopress-item:last-child{border-bottom:none}.seopress-list-items .seopress-item .seopress-item-inner{color:var(--primaryColor);text-decoration:none;padding:15px 20px;background:#fff;font-size:var(--fontSize);font-weight:700;width:100%}.seopress-option .has-action{display:flex;align-items:center}.seopress-list-items .seopress-item .seopress-item-inner.done{text-decoration:line-through}.seopress-list-items .seopress-item .seopress-item-inner:hover{background:var(--backgroundSecondaryHover)}.seopress-list-items .seopress-item-after,.seopress-list-items .seopress-item-before{margin:0 20px 0 10px;position:relative}.seopress-list-items .seopress-item-after::after,.seopress-list-items .seopress-item-before::before{content:"\f330";font-family:Dashicons;vertical-align:middle;font-size:20px;font-weight:400}.seopress-list-items .seopress-item-after{margin-left:auto;padding-left:20px;margin-right:0}.seopress-list-items .seopress-item-after::after{content:"\f345"}.seopress-list-items .seopress-item .seopress-item-title{margin:5px 0;color:var(--primaryColor)}.seopress-list-items .seopress-item .seopress-item-date{color:var(--paragraphColor);font-weight:400;margin:0}.seopress-list-items .seopress-item .seopress-item-content{color:var(--colorDark);font-weight:400;margin:0}.indexing-log,.seopress-list-items .seopress-item .seopress-item-inner.check{position:relative}.indexing-log::before,.seopress-list-items .seopress-item .seopress-item-inner.check::before{content:"";width:32px;height:32px;font-size:24px;vertical-align:middle;border-radius:50px;color:#fff;margin-right:10px;display:inline-block;border:1px solid var(--borderColorLight);line-height:32px;text-align:center}.seopress-list-items .seopress-item .seopress-item-inner.check::before{content:attr(data-index);color:var(--primaryColor);font-size:16px;border-color:var(--primaryColor)}.indexing-log.indexing-done::before,.indexing-log.indexing-failed::before,.seopress-list-items .seopress-item .seopress-item-inner.done::before{background:var(--backgroundPrimary);border:none;content:"\f15e";font-family:Dashicons;color:#fff;font-size:24px}.seopress-list-items .seopress-item.is-active:first-child a{box-shadow:inset 5px 0 0 0 var(--primaryColor);transition:box-shadow .1s linear}.seopress-list-items .seopress-item.is-active:first-child a::after{content:'';box-shadow:inset 5px 0 0 0 var(--primaryColor);transition:box-shadow .1s linear;background-color:var(--primaryColor);opacity:.1;position:absolute;width:100%;height:100%;left:0;top:0}.indexing-log.indexing-done::before{background:var(--colorSuccess)}.indexing-log.indexing-failed::before{background:var(--colorAlert);content:"\f335"}.sp-tooltip{position:relative;margin-left:5px;display:inline-block;cursor:help;vertical-align:bottom;text-align:left;background:0 0;border:none;padding:0}.sp-tooltip .dashicons{color:var(--colorDark)}.sp-tooltip .sp-tooltiptext{visibility:hidden;position:absolute;z-index:999999999;width:350px;right:-310px;padding:20px;top:25px;font-weight:400;box-shadow:0 3px 30px rgb(25 30 35 / 10%);border:1px solid var(--borderColorLight40);background:#fff;word-break:break-word;text-transform:none}.sp-tooltip .sp-tooltiptext::before{border:8px solid var(--borderColorLight40);top:-8px}.sp-tooltip .sp-tooltiptext::after{border:8px solid #fff;top:-6px}.sp-tooltip .sp-tooltiptext::after,.sp-tooltip .sp-tooltiptext::before{border-bottom-style:solid;border-left-color:transparent;border-right-color:transparent;border-top:none;margin-left:-10px;content:"";position:absolute;height:0;width:0;line-height:0;left:30px}.sp-tooltip:active .sp-tooltiptext,.sp-tooltip:focus .sp-tooltiptext,.sp-tooltip:hover .sp-tooltiptext{visibility:visible}.sp-tooltip .sp-tooltip-headings{font-size:18px;font-weight:600;margin-bottom:20px;display:block}.sp-tooltip .sp-tooltip-desc{margin-bottom:20px;display:block;border-bottom:1px solid var(--borderColorLight40);padding-bottom:20px;font-size:var(--fontSize);line-height:1.5}.sp-tooltip .sp-tooltip-code{font-family:Menlo,Monaco,Andale Mono,Courier New,monospace;display:block;word-break:break-all;color:var(--colorPre);font-size:11px}.analysis-score .sp-tooltip{vertical-align:middle;font-size:.75em}#seopress_content_analysis .wrap-insights-post .sp-tooltip *{font-weight:400}#seopress_content_analysis .wrap-insights-post .sp-tooltip-headings{font-weight:700}#seopress_content_analysis a{color:var(--backgroundPrimary)}#seopress_content_analysis a.nounderline,#seopress_content_analysis a.nounderline:hover{text-decoration:none}#seopress_content_analysis .wrap-seopress-analysis{display:inline-block;width:100%}#seopress_content_analysis .col-left{width:calc(50% - 30px);float:left;margin-right:30px}#seopress_content_analysis .col-right{float:right;width:50%}#seopress_content_analysis #seopress_suggestions{display:inline-block;width:100%;margin:0;height:auto;padding:20px 0;position:relative;left:-5px}#seopress_content_analysis #seopress_suggestions li{list-style:none;margin:5px;display:inline-block}#seopress_content_analysis .analysis-score{clear:both;border-top:1px solid var(--borderColorCard);display:flex;justify-content:space-between;align-items:center}.column-seopress_score .analysis-score{display:flex;align-content:center}#seopress_content_analysis .analysis-score p,.column-seopress_score .analysis-score p{font-weight:700;font-size:1.2em}#seopress-ca-tabs .seopress-gsc-render{margin:1rem 0}#seopress-ca-tabs .dashicons{vertical-align:middle;margin-right:1rem}#seopress-ca-tabs .seopress-gsc-verdict .dashicons{font-size:30px;width:30px;height:30px}#seopress-ca-tabs .dashicons-yes-alt{color:var(--colorSuccess)}#seopress-ca-tabs .dashicons-info{color:var(--colorWarning)}#seopress-ca-tabs .dashicons-dismiss{color:var(--colorAlert)}#seopress-ca-tabs .seopress-gsc-analysis{margin-top:1rem;margin-bottom:1rem;display:inline-block;width:100%}#seopress-ca-tabs .seopress-gsc-cat{border-bottom:1px solid var(--borderColorCard);margin-bottom:.5rem;font-weight:700;padding-bottom:.5rem}#seopress-ca-tabs .seopress-gsc-analysis .seopress-gsc-item{display:flex}#seopress-ca-tabs .seopress-gsc-analysis .seopress-gsc-item-name{width:240px}#seopress-ca-tabs .seopress-gsc-analysis .seopress-gsc-item div{margin:.5rem 0}#seopress-ca-tabs .seopress-gsc-summary{display:block;padding:20px;margin:20px 0;top:0;left:0}#seopress-ca-tabs .seopress-gsc-verdict{font-weight:700;font-size:1.2em}#seopress_content_analysis .analysis-score svg,.column-seopress_score .analysis-score svg{display:inline-block;height:30px;width:30px;margin:0;border-radius:100%;position:relative;font-weight:600;shape-rendering:geometricprecision;font-size:.5rem;vertical-align:middle;margin-right:15px}.column-seopress_score .analysis-score p,.column-seopress_score .analysis-score svg{margin:0}@keyframes loadingPulse{0%{stroke:#adc5d2}50%{stroke:#00a0d2}100%{stroke:#adc5d2}}#seopress_content_analysis .analysis-score .loading #bar{stroke-dashoffset:0!important;stroke:#adc5d2!important;animation:loadingPulse 3s infinite ease-in-out}#seopress_content_analysis .analysis-score .good #bar,.column-seopress_score .analysis-score #bar.good{stroke:var(--colorSuccess)}#seopress_content_analysis .analysis-score .notgood #bar,.column-seopress_score .analysis-score #bar.notgood{stroke-dashoffset:101px;stroke:var(--colorWarning)}#seopress_content_analysis .analysis-score svg circle,.column-seopress_score .analysis-score svg circle{stroke-dashoffset:0;transition:stroke-dashoffset 1s linear;stroke:#ccc;stroke-width:2em}#tab_seopress_page_speed .ps-score svg path,#tab_seopress_ps .ps-score svg path{stroke-linecap:round;stroke-width:2.8;fill:none}#tab_seopress_page_speed .ps-score,#tab_seopress_ps .ps-score{position:relative;display:inline-block}#tab_seopress_page_speed .ps-score svg,#tab_seopress_ps .ps-score svg{width:80px;height:80px}#tab_seopress_page_speed .ps-score span,#tab_seopress_ps .ps-score span{font-weight:700;left:0;position:absolute;top:0;width:80px;height:80px;align-items:center;display:flex;justify-content:center;margin:0}#tab_seopress_page_speed .ps-score.green #bar,#tab_seopress_ps .ps-score.green #bar{stroke:var(--colorSuccess)}#tab_seopress_page_speed .ps-score.yellow #bar,#tab_seopress_ps .ps-score.yellow #bar{stroke:var(--colorWarning)}#tab_seopress_page_speed .ps-score.red #bar,#tab_seopress_ps .ps-score.red #bar{stroke:var(--colorAlert)}#tab_seopress_ps .score,.wrap-seopress-score .score{width:12px;height:12px;display:inline-block;margin-right:10px;vertical-align:middle}#tab_seopress_ps .score.red,.wrap-seopress-score .score.red{border-bottom-color:var(--colorAlert);border-bottom-style:solid;border-bottom-width:12px;border-left-color:transparent;border-left-style:solid;border-left-width:6px;border-right-color:transparent;border-right-style:solid;border-right-width:6px}.wrap-seopress-score small{font-size:12px}.wrap-seopress-score small.red,.wrap-seopress-score small.yellow{color:var(--colorAlert)}#tab_seopress_ps .score.yellow,.wrap-seopress-score .score.yellow{background-color:var(--colorWarning);display:inline-block}#tab_seopress_ps .score.green,.wrap-seopress-score .score.green{border-radius:100%;background-color:var(--colorSuccess)}.wrap-seopress-score small.green{color:var(--colorSuccess)}.wrap-seopress-score .score.null{background:#ccc;border-radius:100%}#seopress_content_analysis .gr-analysis{clear:both}#seopress_content_analysis .gr-analysis-title{border-top:1px solid var(--borderColorCard);position:relative}#seopress_content_analysis .gr-analysis-title .impact,#seopress_cpt .impact{position:absolute;left:10px;top:calc(50% - 5px);width:10px;height:10px;border-radius:50px;padding:0;margin:0;border:1px solid #fff}#seopress_content_analysis .gr-analysis .impact.good{background:var(--colorSuccess);box-shadow:0 0 5px var(--colorSuccess)}#seopress_content_analysis .gr-analysis .impact.low{background:var(--colorWarning);box-shadow:0 0 5px var(--colorWarning)}#seopress_content_analysis .gr-analysis .impact.medium{background:var(--colorLowAlert);box-shadow:0 0 5px var(--colorLowAlert)}#seopress_content_analysis .gr-analysis .impact.high,#seopress_cpt .impact.high{background:var(--colorAlert);box-shadow:0 0 5px var(--colorAlert)}#seopress_content_analysis .gr-analysis-content .impact.high{background:var(--colorAlert);box-shadow:none;color:#fff;padding:2px 4px;margin-left:5px;border-radius:4px;font-weight:700}#seopress_cpt .impact.high{position:relative;top:calc(50% - 18px);display:inline-block;left:inherit;right:-10px}#seopress_content_analysis .description,#seopress_cpt .description,#seopress_pro_cpt .description,.seopress-option .description{display:block;font-size:12px;color:var(--color)}@media only screen and (max-width:782px){#seopress_content_analysis .description,#seopress_cpt .description,#seopress_pro_cpt .description,.seopress-option .description{word-break:break-word}}#seopress_content_analysis input~span.description,#seopress_content_analysis span.description~input,#seopress_cpt input~span.description,#seopress_cpt span.description~input,#seopress_pro_cpt input~span.description,#seopress_pro_cpt span.description~input{margin-top:5px}#seopress_content_analysis .gr-analysis-title button{background:#fff;border:0;cursor:pointer;display:block;margin:0;position:relative;text-align:left;width:100%;padding:15px 30px;align-items:center;transition:all .3s linear}#seopress_content_analysis .gr-analysis-title button:hover{background:#f3f4f5}#seopress_content_analysis .gr-analysis-title button:focus{color:#191e23;border:none;box-shadow:none;outline-offset:-2px;outline:1px dotted #555d66}#seopress_content_analysis .gr-analysis-title button .seopress-arrow::after{content:"\f343";font-family:Dashicons;position:absolute;right:10px;top:calc(50% - 7px)}#seopress_content_analysis .gr-analysis-title button.open .seopress-arrow::after{content:"\f347"}#seopress_content_analysis .gr-analysis-content{padding:0 1rem .5rem 1rem;display:none;width:100%;border-top:1px solid var(--borderColorCard)}#seopress_content_analysis h3{margin:0;font-size:1em}#seopress_content_analysis h4{border-bottom:1px solid var(--borderColorCard);padding-bottom:.5rem;text-transform:uppercase;font-size:.85em;position:-webkit-sticky;position:sticky;top:0;background:#fff}#seopress_content_analysis .wrap-analysis-img ul{display:flex;flex-wrap:wrap}#seopress_content_analysis .wrap-analysis-img ul li{padding:0;text-align:left;cursor:default;user-select:auto}#seopress_content_analysis .wrap-analysis-img h4{border-bottom:1px solid var(--borderColorLight);padding-bottom:10px}#seopress_content_analysis .wrap-analysis-img ul li img{max-width:150px;max-height:150px;object-fit:cover;border:1px solid var(--borderColorLight);cursor:default;padding:1px}#seopress-analysis-tabs .dashicons,#seopress_cpt .dashicons{vertical-align:middle}#seopress-analysis-tabs{clear:both}#seopress_content_analysis .dashicons-no-alt,#seopress_content_analysis .dashicons-yes,#seopress_pro_cpt .dashicons-no-alt,#seopress_pro_cpt .dashicons-yes{color:#fff;background:var(--colorSuccess);border-radius:50px;margin-right:10px}#seopress_content_analysis .dashicons-no-alt,#seopress_pro_cpt .dashicons-no-alt{background:var(--colorAlert)}#seopress-schemas-tabs .description-alt,#seopress_content_analysis .description-alt,#seopress_cpt .description-alt{padding:1em 0;border-top:1px solid var(--borderColorLight);border-bottom:1px solid var(--borderColorLight);display:flex}#seopress_cpt .desc-fb{margin-top:0;border-top:none}#seopress-schemas-tabs .description-alt svg,#seopress_content_analysis .description-alt svg,#seopress_cpt .description-alt svg{vertical-align:middle;align-self:center;fill:#f0b849;flex-shrink:0;margin-right:16px}#seopress_cpt .notice{padding:10px 14px;margin:0}#seopress_cpt .inside{margin:0;padding:0}#seopress_cpt .ui-tabs .ui-tabs-nav{display:flex;position:relative;width:100%;z-index:10;margin:0;border-radius:0;padding:0;align-items:center;padding:0;height:48px;border-bottom:1px solid #ddd;background:inherit;line-height:inherit;color:inherit;border-top:none;border-left:none;border-right:none}#seopress_cpt .ui-tabs .sp-section{font-weight:700;font-size:var(--fontSize)}#seopress_cpt .ui-helper-clearfix:after{content:none}.seopress_page_seopress-titles #seopress-tabs .form-table td,.seopress_page_seopress-titles #seopress_content_analysis .form-table td{padding:0}#seopress_cpt .ui-tabs .ui-tabs-panel{background:#fff;border-radius:0;display:inline-block;padding:1em 1.4em;width:100%}#seopress_content_analysis .dashicons-info,#seopress_cpt .ui-tabs .ui-tabs-panel .dashicons-info,#seopress_pro_cpt .dashicons-info{font-size:16px;vertical-align:middle;height:16px;width:16px}#seopress_cpt .ui-tabs .ui-tabs-nav li,#seopress_cpt .ui-tabs-anchor{cursor:pointer!important}body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active{position:relative;z-index:60;cursor:pointer;border-radius:0;border-bottom:4px solid var(--backgroundPrimary)!important}#seopress_cpt .wp-color-result{margin:0}#seopress_cpt #tabs-6 #wrap-videos .video .accordion-section-content,#seopress_cpt #tabs-6>p{padding:0 1.4em}#seopress_cpt #tabs-6 #wrap-videos .video .accordion-section-content{padding:0 1.4em 1em}#seopress_cpt #tabs-6 #wrap-videos .video{border-top:1px solid var(--borderColorLight)}#seopress_cpt #tabs-6 #wrap-videos .video .accordion-section-title{border-left:none;border-right:none;font-size:1em;padding:1em 1.4em}#seopress_cpt #tabs-6 #wrap-videos .video:last-child .accordion-section-content,#seopress_cpt #tabs-6 #wrap-videos .video:last-child .accordion-section-title{border-bottom:1px solid var(--borderColorLight)}#seopress_content_analysis .mandatory,#seopress_cpt .mandatory{color:var(--colorAlert)}#seopress_cpt .box-left{float:left;width:49%;margin-right:1%}#seopress_cpt .box-right{float:left;width:49%;margin-left:1%}#seopress_cpt #tabs-3 .box-left{width:44%}#seopress_cpt #tabs-3 .box-right{width:54%}@media only screen and (max-width:1200px){#seopress_cpt .box-left,#seopress_cpt .box-right{float:none;width:100%;margin:0}}@media only screen and (max-width:1500px){#seopress_cpt #tabs-3 .box-left,#seopress_cpt #tabs-3 .box-right{float:none;width:100%;margin:0}}#edittag #seopress_cpt #tabs-3 .box-left,#edittag #seopress_cpt #tabs-3 .box-right{float:none;width:100%;margin:0}#seopress-tabs .seopress_media_upload,#seopress_pro_cpt .seopress_media_upload{margin-top:.5rem}#term-seopress #seopress_cpt{width:95%}#seopress_cpt .ui-tabs{position:relative;padding:0;border:none;font-family:inherit;font-size:inherit;display:inline-block;width:100%}#seopress_cpt .ui-tabs .ui-tabs-nav li{list-style:none;position:relative;padding:0;white-space:nowrap;margin:0;border:none;height:48px;background:0 0}#seopress_cpt .ui-tabs .ui-tabs-nav li a{display:flex;padding:3px 15px;align-items:center}#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav li a,#seopress_cpt .ui-tabs-vertical .ui-tabs-nav li a{display:block}#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:0;padding-bottom:0}#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-state-disabled a,#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active a,#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-loading a{font-weight:500}#seopress_cpt .ui-tabs .ui-tabs-nav li a,#seopress_cpt .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a{cursor:pointer;color:#191e23;text-decoration:none;height:48px}#seopress_cpt .ui-tabs .ui-tabs-nav li a:focus,#seopress_cpt .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a:focus{outline:3px solid transparent;box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--backgroundPrimary),inset 0 -4px 0 0 var(--backgroundPrimary)}#seopress_cpt .ui-tabs-vertical{width:55em}#seopress_cpt .ui-tabs-vertical .ui-tabs-nav{padding:.2em .1em .2em .2em;float:left;width:12em}#seopress_cpt .ui-tabs-vertical .ui-tabs-nav li{clear:left;width:100%;border-bottom-width:1px!important;border-right-width:0!important;margin:0 -1px .2em 0}#seopress_cpt .ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active{padding-bottom:0;padding-right:.1em;border-right-width:1px}#seopress_cpt .ui-tabs-vertical .ui-tabs-panel{padding:1em;float:right;width:40em}#seopress_cpt .ui-tabs .ui-tabs-nav li a .dashicons{margin-right:2px}#seopress_cpt .google-snippet-preview{font-family:arial,sans-serif;word-break:break-all}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-snippet{margin:0 0 10px 0;box-shadow:0 1px 6px rgba(32,33,36,.28);border-radius:8px;padding:12px 16px}#seopress_cpt .google-snippet-preview>p{word-break:normal}#seopress_cpt .google-snippet-preview .snippet-title,#seopress_cpt .google-snippet-preview .snippet-title-custom,#seopress_cpt .google-snippet-preview .snippet-title-default{color:#1a0dab;font-size:18px;font-weight:400;line-height:21.6px}#seopress_cpt .google-snippet-preview.mobile-preview .snippet-title,#seopress_cpt .google-snippet-preview.mobile-preview .snippet-title-custom,#seopress_cpt .google-snippet-preview.mobile-preview .snippet-title-default{font-size:16px;line-height:20px;margin-bottom:12px}#seopress_cpt .google-snippet-preview .snippet-permalink{color:#006621;font-size:14px;font-style:normal;font-weight:400;line-height:16px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#seopress_cpt .google-snippet-preview .wrap-snippet .wrap-m-icon-permalink,#seopress_cpt .google-snippet-preview.mobile-preview .snippet-permalink{display:none}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-snippet-mobile{display:flex;justify-content:space-between}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-meta-desc{margin-right:8px}#seopress_cpt .google-snippet-preview .wrap-post-thumb{display:none}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-post-thumb{margin-left:8px;display:block}#seopress_cpt .google-snippet-preview.mobile-preview .snippet-post-thumb{width:104px;max-width:inherit;height:104px;border-radius:8px;object-fit:cover}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-m-icon-permalink{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-bottom:12px;display:flex}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-m-icon-permalink .snippet-permalink{display:block;color:#3c4043;font-size:12px}#seopress_cpt .google-snippet-preview.mobile-preview .snippet-favicon{margin-right:12px;vertical-align:middle}#seopress_cpt .google-snippet-preview.mobile-preview .snippet-favicon img{width:16px;height:16px;max-width:inherit}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-snippet .snippet-permalink:first-child{color:#3c4043;white-space:nowrap;font-size:12px;display:block}#seopress_cpt .google-snippet-preview .snippet-description,#seopress_cpt .google-snippet-preview .snippet-description-custom,#seopress_cpt .google-snippet-preview .snippet-description-default{color:#545454;font-size:14px;font-weight:400;line-height:18.2px;display:inline;hyphens:none;word-break:normal}#seopress_cpt .google-snippet-preview.mobile-preview .snippet-description,#seopress_cpt .google-snippet-preview.mobile-preview .snippet-description-custom,#seopress_cpt .google-snippet-preview.mobile-preview .snippet-description-default{color:#3c4043;font-size:14px;line-height:20px}#seopress_cpt .google-snippet-preview .snippet-date{color:grey;display:inline}#seopress_cpt .facebook-snippet-box{color:#4b4f56;font-size:14px;width:524px;max-width:100%}#seopress_cpt .facebook-snippet-box .notice,#seopress_cpt .twitter-snippet-box .notice{padding:10px 14px;margin:0 0 10px 0;width:100%}#seopress_cpt .facebook-snippet-box .notice span,#seopress_cpt .twitter-snippet-box .notice span{font-weight:700}#seopress_cpt .snippet-meta{display:flex;overflow:hidden;max-height:12px}#seopress_cpt .fb-by,#seopress_cpt .snippet-fb-site-name,#seopress_cpt .snippet-fb-url{color:#606770;font-size:12px;white-space:normal;line-height:11px;text-transform:uppercase;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis}#seopress_cpt .fb-sep{padding-left:5px;padding-right:5px;color:#606770;line-height:11px;font-size:12px}#seopress_cpt .facebook-snippet-box .facebook-snippet-text{border:1px solid #dadde1;background-color:#f2f3f5;padding:10px 12px}#seopress_cpt .facebook-snippet-box .title-desc{max-height:46px;overflow:hidden}#seopress_cpt .facebook-snippet-box .snippet-fb-title,#seopress_cpt .facebook-snippet-box .snippet-fb-title-custom,#seopress_cpt .facebook-snippet-box .snippet-fb-title-default{font-size:16px;line-height:20px;margin:3px 0 0;padding-top:2px;color:#1d2129;font-weight:700;overflow:hidden;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis;white-space:normal;word-break:break-word;max-height:22px}#seopress_cpt .facebook-snippet-box .snippet-fb-description,#seopress_cpt .facebook-snippet-box .snippet-fb-description-custom,#seopress_cpt .facebook-snippet-box .snippet-fb-description-default{color:#606770;font-size:14px;line-height:20px;word-break:break-word;font-family:Helvetica,Arial,sans-serif;max-height:80px;overflow:hidden;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis;white-space:normal;width:100%}#seopress_cpt .facebook-snippet-box img{display:block;height:274px;width:524px;object-fit:cover;background-color:#f0f0f0;text-align:center;border-bottom:none}.term-php #seopress_cpt .facebook-snippet-box img,.term-php #seopress_cpt .twitter-snippet-box img{width:100%;height:auto}.seopress_social_fb_img_upload,.seopress_social_twitter_img_upload{position:absolute;width:100%;cursor:pointer;height:100%;left:0;top:0}.seopress_social_fb_img_upload:hover::after,.seopress_social_twitter_img_upload:hover::after{content:"\f464";position:absolute;font-family:dashicons;width:100%;height:100%;top:0;left:0;font-size:40px;background:rgb(255 255 255 / 70%);display:flex;justify-content:center;align-items:center;color:#1e1e1e}.snippet-fb-img,.snippet-fb-img-custom,.snippet-fb-img-default,.snippet-twitter-img,.snippet-twitter-img-custom,.snippet-twitter-img-default{position:relative}#seopress_cpt .twitter-snippet-box{color:#4b4f56;font-size:14px;width:504px;max-width:100%}#seopress_cpt .snippet-twitter-url{color:#8899a6;font-size:14px;white-space:normal;line-height:11px;text-transform:uppercase;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis}#seopress_cpt .twitter-snippet-box .twitter-snippet-text{border:1px solid #dadde1;background-color:#fff;padding:10px 12px;border-radius:0 0 10px 10px}#seopress_cpt .twitter-snippet-box .title-desc{max-height:46px;overflow:hidden}#seopress_cpt .twitter-snippet-box .snippet-twitter-img,#seopress_cpt .twitter-snippet-box .snippet-twitter-img-custom,#seopress_cpt .twitter-snippet-box .snippet-twitter-img-default{border-radius:10px 10px 0 0;overflow:hidden}#seopress_cpt .twitter-snippet-box .snippet-twitter-title,#seopress_cpt .twitter-snippet-box .snippet-twitter-title-custom,#seopress_cpt .twitter-snippet-box .snippet-twitter-title-default{font-size:1em;line-height:20px;margin-bottom:5px;max-height:1.3em;color:#000;font-weight:700;overflow:hidden;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis;white-space:normal;word-break:break-word}#seopress_cpt .twitter-snippet-box .snippet-twitter-description,#seopress_cpt .twitter-snippet-box .snippet-twitter-description-custom,#seopress_cpt .twitter-snippet-box .snippet-twitter-description-default{color:#000;font-size:14px;line-height:20px;word-break:break-word;font-family:Helvetica,Arial,sans-serif;max-height:80px;overflow:hidden;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis;white-space:normal;width:100%}#seopress_cpt .twitter-snippet-box img{display:block;height:263px;width:504px;object-fit:cover;background-color:#f0f0f0;text-align:center;border-bottom:none}.wrap-toggle-preview{position:relative}.wrap-toggle-preview p{font-weight:700;margin:0 0 1rem 0}#seopress_add_to_insights{margin-left:1rem}#seopress_add_to_insights_status{display:inline-block;font-weight:700;margin:0 0 0 1rem;vertical-align:middle;padding:.3rem;font-style:italic}.seo_page_seopress-instant-indexing .wrap-sp-progress{max-width:35rem}#seopress_cpt .wrap-seopress-counters,#seopress_pro_cpt .wrap-seopress-counters,.seopress-setup .wrap-seopress-counters,.seopress-styles .wrap-seopress-counters{text-align:right;background:#e9ecef;padding:2px 5px;display:flex;font-size:12px;justify-content:flex-end;border-radius:0 0 .25rem .25rem}#seopress_cpt .sp-progress,#seopress_pro_cpt .sp-progress,.seopress-setup .sp-progress,.seopress-styles .sp-progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem .25rem 0 0;margin:-15px 0 0 0}#seopress_cpt .sp-progress-bar,#seopress_pro_cpt .sp-progress-bar,.seopress-setup .sp-progress-bar,.seopress-styles .sp-progress-bar{display:flex;flex-direction:column;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#0085ba;transition:width .6s ease}#seopress_cpt #seopress_titles_desc_counters,#seopress_cpt #seopress_titles_title_counters,#seopress_pro_cpt #seopress_rich_snippets_articles_counters,#seopress_pro_cpt #seopress_rich_snippets_courses_counters{display:inline;margin-right:5px}#seopress_cpt #seopress_titles_desc_counters_val,#seopress_cpt #seopress_titles_title_counters_val,#seopress_pro_cpt #seopress_rich_snippets_articles_counters_val,#seopress_pro_cpt #seopress_rich_snippets_courses_counters_val{display:inline;font-weight:700}#tab-panel-seopress_titles_help_tab li span{font-weight:700;margin-right:10px}.seopress-styles .seopress-option{margin:85px 40px 40px}@media only screen and (max-width:782px){.seopress-styles .seopress-option{margin:85px 22px 22px}}.seopress-setup .seopress-option h1,.seopress-styles .seopress-option h1{font-size:var(--titleFontSize);color:var(--titleColor);font-weight:var(--titleFontWeight);margin:var(--titleMargin);display:flex;justify-content:space-between}.seopress-setup .seopress-option h1{margin-bottom:30px}.seopress_wrap_archive_cpt,.seopress_wrap_single_cpt,.seopress_wrap_single_tax,.seopress_wrap_tax{margin:0 0 20px 0}#tab_seopress_titles_archives .form-table th:empty,#tab_seopress_titles_single .form-table th:empty,#tab_seopress_titles_tax .form-table th:empty{display:none}.seopress-styles .seopress-option .link-archive{font-size:var(--fontSize)}.seopress-styles .seopress-option .link-archive .dashicons{font-size:18px;width:20px;height:20px;margin:inherit}.seopress-option h1 .feature-state .dashicons{font-size:16px;width:16px;height:16px;vertical-align:middle;margin:0 10px 0 0}.seopress-styles .seopress-option .submit{padding:20px 0 20px 0;left:0;margin:0;position:sticky;bottom:0;z-index:100;display:inline-block}@media only screen and (max-width:782px){.seopress-styles .seopress-option .submit{position:relative}}.seopress-styles .seopress-option .seopress-tab .submit{display:block;position:relative}.seopress-styles #wpcontent{padding-left:0}.seopress-styles pre{font-family:Menlo,Monaco,Andale Mono,Courier New,monospace;padding:10px;display:inline-block;background-color:var(--backgroundSecondaryHover);border-radius:3px;color:var(--colorDark);font-size:var(--fontSize)}.seopress-option .seopress-settings{float:left;max-width:750px;width:100%}.seopress-option .seopress-settings label{margin:0 0 0 10px}.wrap-seopress-tab-content{position:relative;display:block;width:100%;max-width:64rem;margin:0 auto}#seopress-tabs .seopress-tab{padding:10px 1.5rem;width:100%;display:none}#seopress-tabs.full-width .seopress-tab{width:100%}@media only screen and (max-width:1024px){#seopress-tabs .seopress-tab{width:100%}}#seopress-tabs .seopress-tab.active{display:inline-block;background:#fff}@media only screen and (max-width:782px){#seopress-tabs .seopress-tab.active{width:100%;border-left:none;border-top:1px solid RGB(238,238,238)}}#seopress_htaccess_file{width:100%}.seopress-option textarea{min-height:100px}.seopress-option .wp-picker-container button{box-shadow:none;border:1px solid #0071a1;border-radius:3px;background:#f3f5f6;text-transform:none}.seopress-option .wp-picker-container input[type=text].wp-color-picker{min-width:inherit}.seopress-option .wp-picker-container .wp-picker-default{margin:0}.seopress-option .wp-picker-container .wp-picker-clear{box-shadow:none;text-transform:none;border-radius:0;background:0 0;margin:0}.seopress-option .wp-picker-container .wp-picker-clear:hover{background:0 0;text-decoration:currentColor;color:inherit}.seopress-inbox-title p{font-size:20px;color:var(--titleColor);margin:0}#seopress-admin-tabs .ui-tabs-nav{display:flex;padding-top:1rem;padding-bottom:0}#seopress-admin-tabs .nav-tab-wrapper a.nav-tab-active:focus{color:inherit}.seopress-intro{padding:20px}.seopress-option .seopress-table{background:#fff;border:1px solid var(--borderColorLight)}.seopress-option .seopress-table th{padding:15px 10px;vertical-align:middle}.wp-admin-ui_page_seopress-roles .seopress-option .seopress-table th{min-width:200px}.seopress-option .seopress-table .seopress-settings-section{background:#f1f1f1}.seopress-option .seopress-table .seopress-table-head .seopress-feature{border-bottom:1px solid var(--borderColorLight);font-weight:700;background:#f1f1f1}#seopress-content .feature-state,.seopress-option .feature-state{font-style:italic;font-size:11px;font-weight:400}@media only screen and (max-width:782px){#seopress-content .feature-state,.seopress-option .feature-state{display:none}}.seopress-option #tab_seopress_titles_archives h3,.seopress-option #tab_seopress_titles_single h3,.seopress-option #tab_seopress_titles_tax h3{margin:2em 0 1em 0;border-top:1px solid var(--borderColorLight);padding:1em 0 0 0}.seopress-option #tab_seopress_titles_archives h3:first-child,.seopress-option #tab_seopress_titles_single h3:first-child,.seopress-option #tab_seopress_titles_tax h3:first-child{margin:0 0 1em 0}.seopress-option #tab_seopress_titles_archives h3 div,.seopress-option #tab_seopress_titles_single h3 div,.seopress-option #tab_seopress_titles_tax h3 div{display:inline}#seopress-content .feature-state-on,#seopress-content .feature-state.feature-state-on,.seopress-option .feature-state-on,.seopress-option .feature-state.feature-state-on{display:inline-block}#seopress-content .feature-state-off,.seopress-option .feature-state-off{display:none}.seopress-option .postbox .inside li{list-style:square inside;padding-left:5px}#tab_seopress_page_speed .inside li{list-style:none;padding-left:0;word-break:break-word}.seopress-option .log{display:none;font-weight:700}.seopress-option input[type=text].seopress-admin-menu-input{min-width:inherit;width:100%}.seopress_page_seopress-import-export .postbox{width:calc(100% - 20px)}#seopress_cpt #seopress_titles_title_meta{margin-bottom:.2rem}.seopress-option .section-tool{border:none;box-shadow:none;background:0 0;position:relative}.seopress-option .section-tool::after{content:"";background:#dedede;height:1px;width:100%;display:block}.seopress-option .section-tool:last-child{margin-bottom:0}.seopress-option .section-tool:last-child::after{content:none}.seopress-option .section-tool .inside{padding-left:0;padding-right:0}.seopress-option .sp-section-header{width:100%;display:flex;position:relative;align-items:center}.seopress-option .sp-section-header h2{font-size:1.5em;margin:20px 0}.seopress-option .sp-section-header>.dashicons{color:var(--primaryColor);padding:10px;border-radius:6px;margin-right:10px;background:#c4f0ff}.seopress-option .sp-section-header .wrap-toggle-checkboxes{display:flex}.seopress-notice{margin:5px 0 35px 15px;position:relative;top:75px;left:25px;background:rgb(0 124 186 / 10%);border-left:4px solid var(--primaryColor);padding:8px 12px;width:calc(100% - 108px);z-index:10}#seopress-ca-tabs .seopress-notice,#seopress-tabs .seopress-notice,#seopress_insights_dashboard_rankings_widget .seopress-notice,#seopress_pro_cpt .seopress-notice,.seopress-setup .seopress-notice{top:inherit;left:inherit;margin:15px 0 30px 0;width:auto}.seopress-hidden{display:none}.seopress-notice pre{background:#fff}.seopress-notice.is-success{border-left-color:var(--colorSuccess);background:#eff9f1}.seopress-notice.is-warning{border-left-color:#f0b849;background:#fef8ee}.seopress-notice.is-error{border-left-color:#cc1818;background:rgb(244 162 162 / 30%)}#seopress-tabs .seopress-notice.is-inline,.seopress-setup .seopress-notice.is-inline{margin-bottom:0;width:fit-content}#seopress-tabs.wrap{margin:30px 0 0 0}#seopress-notifications-center .seopress-alert ul,#seopress-tabs.wrap ul{list-style:square inside;padding-left:5px;display:inline-block;max-width:35rem;width:100%}.post-type-seopress_404 .seopress-BlankState-message::before,.post-type-seopress_schemas .seopress-BlankState-message::before{font-family:Dashicons;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\f103"}.post-type-seopress_schemas .seopress-BlankState-message::before{content:"\f495"}.seopress-BlankState{text-align:center;padding:5em 0 0}.seopress-BlankState .seopress-BlankState-message{color:#aaa;margin:0 auto 1.5em;line-height:1.5em;font-size:1.2em;max-width:500px}.seopress-BlankState .seopress-BlankState-message::before{color:#ddd;text-shadow:0 -1px 1px rgba(0,0,0,.2),0 1px 0 rgba(255,255,255,.8);font-size:8em;display:block;position:relative!important;top:auto;left:auto;line-height:1em;margin:0 0 .1875em}.seopress-BlankState .seopress-BlankState-cta{font-size:1.2em;padding:.75em 1.5em;margin:0 .25em}.seopress-BlankState{max-width:764px;text-align:center;margin:auto}.seopress-BlankState .seopress-BlankState-message{color:var(--titleColor);font-size:1.5em;margin:0 auto 1em}.seopress-BlankState .seopress-BlankState-message::before{font-size:120px}.seopress-BlankState .seopress-BlankState-buttons{margin-bottom:4em}#seopress_content_analysis .up,#seopress_content_analysis .up .dashicons{color:var(--colorSuccess)}#seopress_content_analysis .down,#seopress_content_analysis .down .dashicons{color:var(--colorAlert)}#seopress_content_analysis .up .dashicons{transform:rotateZ(45deg)}#seopress_content_analysis .stable .dashicons{transform:rotateZ(90deg)}#seopress_content_analysis .down .dashicons{transform:rotateZ(135deg)}#seopress_content_analysis .wrap-insights-post{clear:both;border-top:1px solid var(--borderColorCard);display:flex;align-items:center}#seopress_content_analysis .wrap-insights-post .widget-insights-title{margin:0 1rem}#seopress_content_analysis .wrap-insights-post span{font-weight:700;margin:0 .2rem 0 0}.wrap-user-roles{display:grid;grid-template-columns:repeat(4,1fr)}@media only screen and (max-width:782px){.wrap-user-roles{display:block}}#notice-insights-alert.is-active,#seopress-news-panel.is-active,#seopress-notifications-center.is-active{display:block!important}#seopress-notifications-center .seopress-alert{padding:16px 25px;position:relative;transition:all 150ms ease;justify-content:space-between;margin-bottom:20px}#seopress-notifications-center .seopress-alert:last-child{margin-bottom:0;border-bottom:none}#seopress-notifications-center .dashicons{display:flex;align-self:normal;width:30px;height:30px;color:var(--colorIcon);font-size:30px;margin:0 0 10px 0}#seopress-admin-tabs #tab_seopress_notifications.seopress-tab{background:0 0;padding:0;border-radius:0;width:100%}.seopress-notice #message{margin:5px 10px 2px 0}#seopress-notice a{position:relative;text-decoration:none;margin:0 0 0 .3rem}#seopress-notice a .tooltip{white-space:pre;z-index:200;padding:2px 5px;font-weight:500;font-size:12px;color:#aab7c4;background:#fff;box-shadow:0 1px 2px 0 rgba(49,49,93,.1),0 0 1px 0 rgba(0,0,0,.1);border-radius:2px;position:absolute;opacity:0;top:30px;transition:opacity .2s ease;visibility:hidden;line-height:20px;left:-100%;overflow:hidden}#seopress-notice a:hover .tooltip{opacity:1;visibility:visible}.seopress-page-list{margin:1.5rem auto}.post-type-seopress_404 .seopress-notice,.post-type-seopress_bot .seopress-notice,.post-type-seopress_schemas .seopress-notice{left:0;top:40px;margin:0 0 50px;width:calc(100% - 48px)}.seopress-search{position:relative;padding:20px}.seopress-search::before{content:"\f179";font-family:Dashicons;position:absolute;top:35px;left:30px;font-size:20px}.seopress-search input{padding-left:40px}.seopress-item-toggle-options{position:relative;cursor:pointer;padding:5px 10px;border:1px solid var(--borderColor);border-radius:3px;transform:rotate(90deg);display:inline-block}.seopress-item-toggle-options::before{content:"\f11c";font-family:Dashicons;font-size:18px;vertical-align:middle}.seopress-card{background:#fff;border:1px solid var(--borderColorCard);border-radius:3px;position:relative}.seopress-option .seopress-card-actions a+button{margin-left:.5em}.seopress-card-title{border-bottom:1px solid var(--borderColorCard);padding:18px 24px;display:flex;justify-content:space-between;align-items:center}.seopress-dashboard-columns .seopress-dashboard-column:last-child .seopress-card-title:hover{cursor:move}.seopress-card-title h2{margin:0}.seopress-cart-list{border-bottom:1px solid var(--borderColorCard);padding:0 0 0 24px;display:flex;align-items:center;text-decoration:none;color:var(--primaryColor);font-weight:700;line-height:20px}.seopress-cart-list *{text-decoration:none}.seopress-cart-list a{display:block;width:100%;padding:18px 24px 18px 0}.seopress-cart-list:last-child{border-bottom:none}.seopress-cart-list:active,.seopress-cart-list:focus,.seopress-cart-list:hover{background:var(--backgroundSecondaryHover)}body .seopress-cart-list h3{font-size:var(--fontSize);color:var(--primaryColor);font-weight:700;margin:0}.seopress-cart-list p{color:var(--titleColor);font-weight:400;margin:0;font-size:12px;line-height:20px}.seopress-card-footer{padding:10px 20px;border-top:1px solid var(--borderColorLight40)}.seopress-card-popover{display:none;background:#fff;border:1px solid var(--borderColor);padding:20px;position:absolute;top:55px;overflow-y:auto;right:28px;z-index:20}.seopress-card-popover.is-open{display:block}#seopress-tabs .seopress-tag-dropdown,#seopress_cpt .seopress-tag-dropdown,#seopress_cpt .tag-title,#seopress_pro_cpt .tag-title,.seopress-button,.seopress-option .tag-title{cursor:pointer;font-weight:500;border-radius:4px;transition:all .3s linear}#seopress_cpt .wrap-tags,#seopress_pro_cpt .wrap-tags,.seopress-option .wrap-tags{position:relative;display:inline-flex;width:100%;margin:10px 0}.seopress-option .wrap-tags{flex-wrap:wrap}.seopress-option .wrap-tags button{margin-bottom:10px}@media only screen and (max-width:782px){#seopress_cpt .wrap-tags,#seopress_pro_cpt .wrap-tags,.seopress-option .wrap-tags{flex-wrap:wrap}}#seopress-tabs .sp-wrap-tag-variables-list,#seopress_cpt .sp-wrap-tag-variables-list,#seopress_pro_cpt .sp-wrap-tag-variables-list{position:relative;float:left;display:none}#seopress-tabs.wrap .sp-tag-variables-list,#seopress_cpt .sp-tag-variables-list,#seopress_pro_cpt .sp-tag-variables-list{position:absolute;left:-48px;width:300px;z-index:100;top:20px;color:var(--titleColor);height:300px;z-index:100;overflow:auto;background:#fff;border:1px solid var(--borderColorLight);box-shadow:0 2px 6px rgb(0 0 0 / 5%);border-radius:2px;list-style:none;padding:0}#seopress-tabs .sp-wrap-tag-variables-list.open,#seopress_cpt .sp-wrap-tag-variables-list.open,#seopress_pro_cpt .sp-wrap-tag-variables-list.open{display:block}#seopress-tabs .seopress-tag-single-all.tag-description .dashicons,#seopress-tabs .seopress-tag-single-all.tag-title .dashicons,#seopress_cpt .seopress-tag-single-all.seopress-tag-dropdown .dashicons,#seopress_cpt .seopress-tag-single-all.tag-title .dashicons,#seopress_pro_cpt .seopress-tag-single-all.tag-title .dashicons{margin:0;transition:all 150ms linear}#seopress-tabs .seopress-tag-single-all.open .dashicons,#seopress_cpt .seopress-tag-single-all.open .dashicons,#seopress_pro_cpt .seopress-tag-single-all.open .dashicons{transform:rotateX(180deg)}#seopress-tabs.wrap .sp-tag-variables-list li,#seopress_cpt .sp-tag-variables-list li,#seopress_pro_cpt .sp-tag-variables-list li{padding:8px 12px;cursor:pointer;margin:0;border-bottom:1px solid var(--borderColorLight40)}#seopress-tabs .sp-tag-variables-list li span,#seopress_cpt .sp-tag-variables-list li span,#seopress_pro_cpt .sp-tag-variables-list li span{display:block;font-weight:700;font-size:12px;margin-bottom:2px}#seopress-tabs.wrap .sp-tag-variables-list li:hover,#seopress_cpt .sp-tag-variables-list li:hover,#seopress_pro_cpt .sp-tag-variables-list li:hover{background:var(--backgroundPrimaryHover);color:#fff;border-bottom-color:#fff}#seopress-tabs.wrap .sp-tag-variables-list li::after,#seopress_cpt .sp-tag-variables-list li::after,#seopress_pro_cpt .sp-tag-variables-list li::after{content:attr(data-value);display:inline-block;background:#e9ecef;padding:1px 5px;color:#333;font-family:Menlo,Monaco,Andale Mono,Courier New,monospace;border-radius:3px;font-size:11px}#seopress-tabs.wrap .seopress-tag-dropdown .dashicons,#seopress_cpt .seopress-tag-dropdown .dashicons,#seopress_cpt .tag-title .dashicons,#seopress_pro_cpt .tag-title .dashicons,.seopress-option .tag-title .dashicons{padding:0;height:16px;width:16px;font-size:16px;margin-right:5px;color:var(--primaryColor);vertical-align:middle}#seopress-tabs.wrap .seopress-tag-dropdown:hover .dashicons,#seopress_cpt .seopress-tag-dropdown:hover .dashicons,#seopress_cpt .tag-title:hover .dashicons,#seopress_pro_cpt .tag-title:hover .dashicons,.seopress-option .tag-title:hover .dashicons{color:#fff}#seopress-tabs.wrap .seopress-tag-dropdown .dashicons{margin:0}.seopress-overlay-tag-dropdown{position:absolute;display:none;top:0;left:0;width:100%;height:100%;z-index:50}.seopress-overlay-tag-dropdown.active{display:block}#seopress-tabs .seopress-tag-dropdown,#seopress_cpt .seopress-tag-dropdown,#seopress_cpt .tag-title,#seopress_pro_cpt .tag-title,.seopress-option .tag-title{padding:5px 12px;font-size:10px;user-select:none;margin:0 5px 0 0;display:inline-flex;text-transform:uppercase;align-items:center;color:var(--primaryColor)}#seopress-tabs .seopress-tag-dropdown:focus,#seopress-tabs .seopress-tag-dropdown:hover,#seopress_cpt .seopress-tag-dropdown:focus,#seopress_cpt .seopress-tag-dropdown:hover,#seopress_cpt .tag-title:focus,#seopress_cpt .tag-title:hover,#seopress_pro_cpt .tag-title:focus,#seopress_pro_cpt .tag-title:hover,.seopress-option .tag-title:focus,.seopress-option .tag-title:hover{box-shadow:0 0 var(--wp-admin-border-width-focus) var(--backgroundPrimary);background:var(--backgroundPrimaryHover);color:#fff}@media only screen and (max-width:782px){#seopress-tabs .seopress-tag-dropdown,#seopress_cpt .seopress-tag-dropdown,#seopress_cpt .tag-title,#seopress_pro_cpt .tag-title,.seopress-option .tag-title{margin-bottom:10px}}#seopress-content .seopress-useful-tools .widget-reverse li{padding:10px;margin:0;border-bottom:1px solid var(--borderColorLight)}#seopress-content .seopress-reverse label,#seopress-content .seopress-useful-tools .widget-whois ul li span{font-weight:700}#seopress-content #seopress-reverse-url{width:100%;margin:10px 0}#seopress-content .widget-reverse p{margin:0}.seopress-styles #screen-meta{position:relative;top:60px}.seopress-styles #screen-meta-links .show-settings{box-shadow:none}.seopress-styles #screen-meta-links .screen-meta-toggle{position:fixed;top:32px;z-index:2000;right:40px}@media only screen and (max-width:782px){.seopress-styles #screen-meta-links .screen-meta-toggle{position:relative;top:60px}}#seopress-content input.toggle,#seopress_cpt input.toggle,.seopress-option input.toggle{max-height:0;max-width:0;opacity:0;position:relative}.seopress-feature input.toggle{display:block}#seopress_cpt input.toggle,.seopress_wrap_single_cpt input.toggle,.seopress_wrap_tax input.toggle{margin:0;border:none;min-width:0}#seopress-content input.toggle+label,#seopress_cpt #tabs-1 input.toggle+label,.seopress-option input.toggle+label{display:inline-block;position:relative;box-shadow:inset 0 0 0 1px #d5d5d5;text-indent:-5000px;height:20px;width:40px;border-radius:15px;margin:0 10px 0 0}#seopress-content input.toggle+label{margin:0;left:-20px}#seopress_cpt #tabs-1 input.toggle+label{margin:0}.wrap-toggle-checkboxes input.toggle+label{float:left;margin-right:10px}#seopress-content input.toggle+label:before,#seopress_cpt input.toggle+label:before,.seopress-option input.toggle+label:before{content:"";position:absolute;display:block;height:20px;width:30px;top:0;left:0;border-radius:15px;background:rgba(19,191,17,0);transition:.25s ease-in-out}#seopress-content input.toggle+label:after,#seopress_cpt input.toggle+label:after,.seopress-option input.toggle+label:after{content:"";position:absolute;display:block;height:20px;width:20px;top:0;left:0;border-radius:15px;background:#fff;box-shadow:inset 0 0 0 1px rgba(0,0,0,.2),0 2px 4px rgba(0,0,0,.2);transition:.25s ease-in-out}#seopress_cpt input.toggle+label,#seopress_cpt input.toggle+label:before,.seopress_wrap_single_cpt input.toggle+label,.seopress_wrap_single_cpt input.toggle+label:before,.seopress_wrap_tax input.toggle+label,.seopress_wrap_tax input.toggle+label:before{width:40px;height:20px}#seopress_cpt input.toggle+label:after,.seopress_wrap_single_cpt input.toggle+label:after,.seopress_wrap_tax input.toggle+label:after{width:20px;height:20px}#seopress-content input.toggle[data-toggle="1"]+label:before,#seopress_cpt input.toggle[data-toggle="1"]+label:before,.seopress-option input.toggle[data-toggle="1"]+label:before,.seopress_wrap_single_cpt input.toggle[data-toggle="1"]+label:before,.seopress_wrap_tax input.toggle[data-toggle="1"]+label:before{width:40px;background:var(--backgroundPrimary)}#seopress-content input.toggle[data-toggle="1"]+label:after,#seopress_cpt input.toggle[data-toggle="1"]+label:after,.seopress-option input.toggle[data-toggle="1"]+label:after{left:20px;box-shadow:inset 0 0 0 1px var(--backgroundPrimary),0 2px 4px rgba(0,0,0,.2)}#seopress_cpt input.toggle[data-toggle="1"]+label:after,.seopress_wrap_single_cpt input.toggle[data-toggle="1"]+label:after,.seopress_wrap_tax input.toggle[data-toggle="1"]+label:after{box-shadow:inset 0 0 0 1px var(--backgroundPrimary),0 2px 4px rgba(0,0,0,.2)}#seopress-content .seopress-page-list{position:relative;display:block;max-width:64rem}@media only screen and (max-width:782px){#seopress-content .seopress-page-list{grid-template-columns:repeat(1,1fr)}}.seopress-setup .wrap,.seopress-styles .wrap{margin:0;display:flex;position:relative}.toplevel_page_seopress-option.seopress-styles .wrap{display:inherit;position:inherit;margin:inherit}@media only screen and (max-width:782px){.seopress-setup .wrap,.seopress-styles .wrap{display:inherit;position:inherit;margin:inherit}}.seopress-option .wrap div.nav-tab-wrapper{margin:0;padding:0;line-height:inherit;width:15%;z-index:10;font-weight:400;display:block;border-bottom:none}@media only screen and (max-width:782px){.seopress-option .wrap div.nav-tab-wrapper{width:100%;margin:0 0 20px 0;padding:0}}#seopress-admin-tabs.wrap div.nav-tab-wrapper{background:#fff;margin:0 auto;max-width:64rem;width:100%;border-bottom:1px solid var(--borderColorCard);padding:0;line-height:inherit;position:sticky;z-index:10;top:92px;border-radius:4px 4px 0 0;font-weight:400;overflow:hidden;display:flex;align-items:center;justify-content:space-between}@media only screen and (max-width:600px){#seopress-admin-tabs.wrap div.nav-tab-wrapper{top:0;display:block}}@media only screen and (max-width:1024px){#seopress-admin-tabs.wrap div.nav-tab-wrapper{display:block}}.seopress-option .nav-tab{border:0;background:0 0;opacity:.5;padding:6px 30px 6px 10px;transition:opacity .3s linear;color:var(--titleColor);margin:0;float:none;display:inline-block;width:100%;text-align:left;font-weight:400;white-space:normal;line-height:1.71428571;font-size:14px;text-decoration:none}#seopress-admin-tabs .nav-tab{background:0 0;opacity:.5;padding:14px 20px;transition:opacity .3s linear;margin:0;float:none;display:inline-block;font-weight:400}#seopress-admin-tabs .nav-tab{width:100%}#seopress-admin-tabs .nav-tab-active,#seopress-admin-tabs .nav-tab-active:focus,#seopress-admin-tabs .nav-tab-active:focus:active,#seopress-admin-tabs .nav-tab-active:hover,#seopress-admin-tabs .nav-tab:focus,.nav-tab-active:focus,.seopress-option .nav-tab-active,.seopress-option .nav-tab-active:focus:active,.seopress-option .nav-tab-active:hover,.seopress-option .nav-tab:focus{opacity:1;outline:0;font-weight:600;position:relative;border-left:3px solid var(--backgroundPrimary)}#seopress-admin-tabs .nav-tab-active,#seopress-admin-tabs .nav-tab-active:focus,#seopress-admin-tabs .nav-tab-active:focus:active,#seopress-admin-tabs .nav-tab-active:hover,#seopress-admin-tabs .nav-tab:focus{border-bottom:4px solid var(--backgroundPrimary);border-left:none}#seopress-admin-tabs .nav-tab:hover,.seopress-option .nav-tab:hover{opacity:1}#seopress-admin-tabs .nav-tab:focus,.seopress-option .nav-tab:focus{outline:0;box-shadow:none}@keyframes sp-fade-in-out{0%{opacity:0;bottom:0;visibility:hidden}25%{opacity:1;bottom:40px;visibility:visible}75%{opacity:1;visibility:visible}100%{opacity:0;visibility:hidden}}.sp-components-snackbar-list{position:fixed;right:0;bottom:40px;padding-left:16px;padding-right:16px;animation-name:sp-fade-in-out;animation-duration:5s;animation-iteration-count:1;animation-fill-mode:forwards;visibility:hidden;z-index:1}.sp-components-snackbar__content{display:flex;align-items:center;justify-content:space-between;line-height:1.4}.sp-components-snackbar{font-family:var(--fontFamily);font-size:var(--fontSize);background-color:#32373c;border-radius:4px;box-shadow:0 2px 4px rgba(0,0,0,.3);color:#fff;padding:16px 24px;cursor:pointer}.sp-components-snackbar .dashicons{color:#fff}
|
1 |
+
#seopress_content_analysis *,#seopress_cpt *,#seopress_pro_cpt *,.seopress-option *,.seopress-styles *{box-sizing:border-box}@font-face{font-family:seopress;src:url(../fonts/seopress.eot?81521271);src:url(../fonts/seopress.eot?81521271#iefix) format("embedded-opentype"),url(../fonts/seopress.woff?81521271) format("woff2"),url(../fonts/seopress.woff?81521271) format("woff"),url(../fonts/seopress.ttf?81521271) format("truetype"),url(../fonts/seopress.svg?81521271#seopress) format("svg");font-weight:400;font-style:normal}[class*=" icon-seopress"],[class^=icon-seopress-]{font-family:seopress!important;font-size:14px!important;line-height:24px!important}#adminmenu div.wp-menu-image.dashicons-admin-seopress::before{content:"\e800";font-family:seopress;font-weight:700;font-size:12px;line-height:20px}#seopress_content_analysis,#seopress_cpt,#seopress_ga_dashboard_widget,#seopress_matomo_dashboard_widget,#seopress_pro_cpt,#wpadminbar,.column-seopress_score,.post-type-seopress_404 #wpcontent,.post-type-seopress_schemas #wpcontent,.seopress-option #wpcontent,.seopress-styles #wpcontent,.seopress-ui-datepicker{--primaryColor:#007cba;--paragraphColor:#757575;--fontSize:13px;--fontFamily:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;--color:#757575;--colorDark:#1e1e1e;--colorAlert:#eb0f00;--colorWarning:#ffba00;--colorSuccess:#4ab866;--colorLowAlert:#e39f48;--colorPre:#37864b;--colorIcon:#d7dade;--lineHeight:24px;--titleColor:#3c434a;--titleFontSize:20px;--titleFontWeight:normal;--titleMargin:10px 0;--backgroundPrimary:#007cba;--backgroundPrimaryHover:#006ba1;--backgroundSecondaryHover:#f0f0f0;--borderColor:#a7aaad;--borderColorLight:#dcdcde;--borderColorLight40:rgba(220, 220, 222, 0.4);--borderColorCard:#e2e4e7;--borderColorTab:#c3c4c7}.seopress-option .text-center,.seopress-styles .text-center{text-align:center}.post-type-seopress_404 .btn,.post-type-seopress_schemas .btn,.seopress-option .btn,.seopress-styles .btn{display:inline-flex;text-decoration:none;font-size:var(--fontSize);margin:0;border:0;cursor:pointer;-webkit-appearance:none;background:0 0;transition:box-shadow .1s linear;height:36px;align-items:center;padding:6px 12px;border-radius:2px;vertical-align:middle;color:var(--colorDark);white-space:nowrap;outline:1px solid transparent}.post-type-seopress_404 .btnPrimary,.post-type-seopress_schemas .btnPrimary,.seopress-option .btnPrimary,.seopress-styles .btnPrimary{background:var(--primaryColor);color:#fff;text-decoration:none}.post-type-seopress_404 .btnPrimary:hover,.post-type-seopress_schemas .btnPrimary:hover,.seopress-option .btnPrimary:hover,.seopress-styles .btnPrimary:hover{background:var(--backgroundPrimaryHover);color:#fff}.post-type-seopress_404 .btnSecondary,.post-type-seopress_schemas .btnSecondary,.seopress-option .btnSecondary,.seopress-styles .btnSecondary{box-shadow:inset 0 0 0 1px var(--primaryColor);color:var(--primaryColor);background:0 0}.seopress-option .btnSecondary.is-deletable,.seopress-styles .btnSecondary.is-deletable{border-color:#cc1818;color:#cc1818;box-shadow:rgb(204 24 24) 0 0 0 1px inset}.post-type-seopress_404 .btnTertiary,.post-type-seopress_schemas .btnTertiary,.seopress-option .btnTertiary,.seopress-styles .btnTertiary{color:var(--primaryColor);background:0 0}.post-type-seopress_404 .btnTertiary:hover,.post-type-seopress_schemas .btnTertiary:hover,.seopress-option .btnTertiary:hover,.seopress-styles .btnTertiary:hover{box-shadow:inset 0 0 0 1px var(--primaryColor)}.seopress-option hr,.seopress-setup hr,.seopress-styles hr{align-self:center;flex-grow:1;height:1px;margin:0;border:0;border-top:1px solid #dcdcde;border-bottom:1px solid #f6f7f7}.seopress-setup hr{margin-left:10px}#seopress-tabs.wrap .list-none{list-style:none;padding-left:0}.seopress-option .dashicons,.seopress-page-list .dashicons{vertical-align:middle;margin-right:5px;text-decoration:none}.seopress-activity-panel .dashicons{margin-right:0}#seopress-news-panel .seopress-item-inner .dashicons{vertical-align:top}.seopress-button{text-transform:uppercase;background:#fff;border-color:#c8d7e1;border-style:solid;border-width:1px 1px 2px;color:#2e4453;display:inline-block;margin:0;outline:0;overflow:hidden;text-overflow:ellipsis;text-decoration:none;vertical-align:top;font-size:14px;line-height:20px;padding:6px 8px 6px;-webkit-appearance:none;-moz-appearance:none;appearance:none}.seopress-button:hover{border-color:#a8bece;color:#00a0d2}.seopress-button .dashicons{vertical-align:middle}body .seopress-option h2{color:var(--titleColor);font-size:20px;line-height:24px;font-weight:400}body .seopress-option h3{color:var(--titleColor);font-size:16px;line-height:20px}#seopress_content_analysis input[type=text],#seopress_content_analysis textarea,#seopress_cpt input[type=text],#seopress_cpt textarea,#seopress_pro_cpt input[type=text],#seopress_pro_cpt textarea{width:100%;display:inline-block}#seopress_cpt #tabs-6 input[type=number]{min-width:200px}#seopress_cpt #tabs-6 #wrap-videos .video:first-child .remove-video{display:none}#seopress_content_analysis label,#seopress_cpt label,#seopress_pro_cpt label{margin-bottom:8px;display:inline-block;width:100%}#seopress_cpt #tabs-6{padding:0}body .seopress-option input[type=password],body .seopress-option input[type=text],body .seopress-option select,body .seopress-option textarea{max-width:35rem;border:1px solid var(--borderColor);box-shadow:0 2px 6px rgb(0 0 0 / 5%);width:100%}body .seopress-option select{min-height:50px}.wrap-opening-hours select{width:inherit}body .seopress-option input[type=number],body .seopress-option input[type=password],body .seopress-option input[type=text]{line-height:46px}body .seopress-option input[type=number]:hover,body .seopress-option input[type=password]:hover,body .seopress-option input[type=text]:hover,body .seopress-option select:hover,body .seopress-option textarea:hover{border-color:#787c82}body .seopress-option input[type=number]:active,body .seopress-option input[type=number]:focus,body .seopress-option input[type=password]:active,body .seopress-option input[type=password]:focus,body .seopress-option input[type=text]:active,body .seopress-option input[type=text]:focus,body .seopress-option select:active,body .seopress-option select:focus,body .seopress-option textarea:active,body .seopress-option textarea:focus{box-shadow:0 0 0 2px var(--primaryColor);border-color:transparent}@media only screen and (max-width:1024px){body .seopress-option input[type=number],body .seopress-option input[type=password],body .seopress-option input[type=text],body .seopress-option textarea{min-width:inherit;width:100%}}#seopress_content_analysis input[type=checkbox],#seopress_cpt input[type=checkbox],#seopress_pro_cpt input[type=checkbox],body .seopress-option input[type=checkbox]{font-family:var(--fontFamily);padding:6px 8px;box-shadow:0 0 0 transparent;transition:box-shadow .1s linear;border-radius:2px;border:1px solid var(--color);font-size:16px;line-height:normal;border:1px solid var(--colorDark);margin-right:12px;transition:none;border-radius:2px;background:#fff;color:var(--colorDark);clear:none;cursor:pointer;display:inline-block;line-height:0;margin:-1px 4px 0 0!important;outline:0;padding:0!important;text-align:center;vertical-align:top;width:20px;height:20px;-webkit-appearance:none;appearance:none;transition:.1s border-color ease-in-out}#seopress_content_analysis input[type=checkbox]:checked::before,#seopress_cpt input[type=checkbox]:checked::before,#seopress_pro_cpt input[type=checkbox]:checked::before,body .seopress-option input[type=checkbox]:checked::before{content:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");background:var(--primaryColor);margin:-1px;width:20px;height:20px}#seopress_content_analysis input[type=checkbox]:active,#seopress_content_analysis input[type=checkbox]:focus,#seopress_cpt input[type=checkbox]:active,#seopress_cpt input[type=checkbox]:focus,#seopress_pro_cpt input[type=checkbox]:active,#seopress_pro_cpt input[type=checkbox]:focus,body .seopress-option input[type=checkbox]:active,body .seopress-option input[type=checkbox]:focus{box-shadow:0 0 0 2px var(--primaryColor);border-color:transparent}.field-recommended,.field-required{font-weight:700}.field-required{color:var(--colorAlert)}.field-recommended{color:var(--colorWarning)}.seopress-tab .form-table td{padding:15px 0}.seopress-tab .form-table td p{margin:4px 0}.seopress-tab .form-table td p.seopress_wrap_archive_cpt{margin-bottom:15px}.seopress-tab .form-table td label{display:block}table.wp-list-table .manage_column.column-seopress_canonical,table.wp-list-table .manage_column.column-seopress_desc,table.wp-list-table .manage_column.column-seopress_insights,table.wp-list-table .manage_column.column-seopress_noindex,table.wp-list-table .manage_column.column-seopress_redirect_enable,table.wp-list-table .manage_column.column-seopress_redirect_url,table.wp-list-table .manage_column.column-seopress_title,table.wp-list-table .manage_column.column-seopress_tkw{width:7%!important}.post-type-product table.fixed thead .column-seopress_desc,.post-type-product table.fixed thead .column-seopress_title{width:8%}.post-type-product .fixed .column-seopress_ps,.post-type-product .fixed .column-seopress_words,.post-type-product table.fixed thead .column-seopress_canonical,.post-type-product table.fixed thead .column-seopress_redirect_enable,.post-type-product table.fixed thead .column-seopress_redirect_url,.post-type-product table.fixed thead .column-seopress_tkw{width:6%}.post-type-product .fixed .column-seopress_score{width:50px}table.fixed thead .column-seopress_nofollow,table.fixed thead .column-seopress_noindex{width:100px}@media only screen and (max-width:1200px){table.fixed .column-seopress_canonical>div,table.fixed .column-seopress_desc>div,table.fixed .column-seopress_redirect_enable>div,table.fixed .column-seopress_redirect_url>div,table.fixed .column-seopress_title>div{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}table.fixed thead .column-seopress_canonical,table.fixed thead .column-seopress_nofollow,table.fixed thead .column-seopress_noindex,table.fixed thead .column-seopress_ps,table.fixed thead .column-seopress_redirect_enable,table.fixed thead .column-seopress_redirect_url,table.fixed thead .column-seopress_score,table.fixed thead .column-seopress_tkw,table.fixed thead .column-seopress_words{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}}.post-type-seopress_backlinks .wp-list-table .column-seopress_backlinks_url{width:35%}.post-type-seopress_backlinks .wp-list-table .column-seopress_backlinks_anchor_text{width:20%}.seopress-styles #seopress-header{padding:22px 120px 22px 40px;height:60px;margin:0 auto;width:calc(100% - 160px);background:#fff;position:fixed;top:32px;z-index:110;display:flex;justify-content:space-between;align-items:center}.folded.seopress-styles #seopress-header{width:calc(100% - 35px)}@media only screen and (max-width:782px){.seopress-styles #seopress-header{width:100%;padding:22px;top:46px;position:absolute}}#seopress-header #seopress-navbar ul{margin:0;padding:0}#seopress-header #seopress-navbar ul li{margin:0;display:inline-block;position:relative;padding:0 20px 0 0;font-weight:700}#seopress-header #seopress-navbar ul li::after{content:"/";color:var(--paragraphColor);position:absolute;display:block;top:0;left:calc(100% - 10px)}#seopress-header #seopress-navbar ul li:last-child:after{content:none}.sp-dashboard-card-highlight{border:1px dashed #c3c4c7;margin:20px 0}.seopress-summary-items{display:flex;flex-wrap:wrap}.seopress-summary-item{display:flex;flex-direction:column;padding:20px;border-bottom:1px solid var(--borderColorLight40);border-right:1px solid var(--borderColorLight40);line-height:1.4em;text-decoration:none;width:50%;color:var(--colorDark);justify-content:center;box-sizing:border-box}#seopress_matomo_dashboard_widget .seopress-summary-item:nth-child(even){border-right:none}#seopress_matomo_dashboard_widget .seopress-summary-item:last-child,#seopress_matomo_dashboard_widget .seopress-summary-item:nth-last-child(2){border-bottom:none}@media only screen and (max-width:782px){#seopress_matomo_dashboard_widget .seopress-summary-item{border-right:none}#seopress_matomo_dashboard_widget .seopress-summary-item:nth-last-child(2){border-bottom:1px solid var(--borderColorLight40)}.seopress-summary-item{width:100%}}.seopress-summary-item-label{display:block;margin-bottom:16px;color:var(--color);font-size:14px;line-height:20px}.seopress-summary-item-data{margin-bottom:4px;font-weight:500;color:var(--colorDark);font-size:20px;line-height:28px}.seopress-summary-item-data small{font-weight:400;font-size:11px;text-transform:uppercase}.seopress-summary-items .inside,.seopress-tab.inside{padding:20px}#seopress-admin-tabs.ui-tabs{position:relative;padding:.2em;border:none;font-family:inherit;font-size:inherit}#seopress-admin-tabs.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:-1px .2em 0 0;padding:0;white-space:nowrap;border:none;background:0 0}#seopress-admin-tabs.ui-tabs .ui-tabs-nav li a{float:left;padding:.38em 1em .75rem;outline:0;border-bottom:2px solid #fff}#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px}#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-state-disabled a,#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-tabs-active a,#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-tabs-loading a{cursor:text;border-bottom:2px solid #23282d;color:#23282d}#seopress-admin-tabs.ui-tabs .ui-tabs-nav li a,#seopress-admin-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a{cursor:pointer;color:#0073aa;text-decoration:none}#seopress-admin-tabs.ui-tabs-vertical{width:55em}#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav{padding:.2em .1em .2em .2em;float:left;width:12em}#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav li{clear:left;width:100%;border-bottom-width:1px!important;border-right-width:0!important;margin:0 -1px .2em 0}#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active{padding-bottom:0;padding-right:.1em;border-right-width:1px}#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-panel{padding:1em;float:right;width:40em}#seopress-admin-tabs.wrap{background:#fff;display:block;width:64rem;max-width:100%;margin:0 auto}@media only screen and (max-width:1024px){#seopress-admin-tabs.wrap{width:100%}}#seopress-admin-tabs .seopress-tab{width:100%;display:none}#seopress-admin-tabs .seopress-tab.active{visibility:visible;overflow:inherit;opacity:1;transform:translateX(0);display:inherit;position:relative}.seopress-dashboard-columns{display:flex;max-width:64rem;margin:0 auto;justify-content:space-between;flex-direction:row}.seopress-dashboard-column{align-self:flex-start;width:calc(50% - 12px);margin:0}@media only screen and (max-width:782px){.seopress-dashboard-columns{max-width:100%;flex-direction:column}.seopress-dashboard-column{width:100%}}#seopress-admin-tabs .ui-tabs-nav,.seopress-get-started{margin:0 auto 20px;max-width:64rem;padding:2rem;width:100%;border-radius:0 0 4px 4px}.seopress-get-started{background:#fff url(../img/bg-hero-started.svg) no-repeat 100% 50%/contain;position:relative}.seopress-get-started .inside{padding:2rem}.seopress-get-started .preheader{text-transform:uppercase;font-size:11px;font-weight:600;color:var(--paragraphColor)}.seopress-activity-panel-tabs{height:60px;display:flex;align-items:center}.seopress-activity-panel-tabs .btn{display:flex;flex-direction:column;justify-content:center;color:var(--color);height:60px;padding:10px 26px;border-bottom:3px solid transparent}.seopress-activity-panel-tabs .btn:hover{background:var(--backgroundSecondaryHover)}.seopress-activity-panel-tabs .btn.is-active{border-bottom:3px solid var(--backgroundPrimary);color:var(--colorDark)}.seopress-activity-panel-wrapper{height:calc(100vh - 92px);top:92px;background:var(--backgroundSecondaryHover);width:510px;transform:translateX(100%);transition-duration:.3s;transition-timing-function:ease-in-out;position:fixed;right:0;z-index:1000;overflow-x:hidden;overflow-y:auto}@media only screen and (max-width:782px){.seopress-activity-panel-wrapper{top:106px}}.seopress-activity-panel-wrapper.is-open{transform:none;box-shadow:0 12px 12px 0 rgb(85 93 102 / 30%)}.seopress-activity-panel-header{background:#e0e0e0;padding:16px 24px}.seopress-activity-panel-content{background:#fff;padding:16px 24px}.seopress-list-items,.seopress-list-items .seopress-item{margin:0}.seopress-list-items .seopress-item{border-bottom:1px solid var(--borderColorLight40)}.seopress-list-items .seopress-item:last-child{border-bottom:none}.seopress-list-items .seopress-item .seopress-item-inner{color:var(--primaryColor);text-decoration:none;padding:15px 20px;background:#fff;font-size:var(--fontSize);font-weight:700;width:100%}.seopress-option .has-action{display:flex;align-items:center}.seopress-list-items .seopress-item .seopress-item-inner.done{text-decoration:line-through}.seopress-list-items .seopress-item .seopress-item-inner:hover{background:var(--backgroundSecondaryHover)}.seopress-list-items .seopress-item-after,.seopress-list-items .seopress-item-before{margin:0 20px 0 10px;position:relative}.seopress-list-items .seopress-item-after::after,.seopress-list-items .seopress-item-before::before{content:"\f330";font-family:Dashicons;vertical-align:middle;font-size:20px;font-weight:400}.seopress-list-items .seopress-item-after{margin-left:auto;padding-left:20px;margin-right:0}.seopress-list-items .seopress-item-after::after{content:"\f345"}.seopress-list-items .seopress-item .seopress-item-title{margin:5px 0;color:var(--primaryColor)}.seopress-list-items .seopress-item .seopress-item-date{color:var(--paragraphColor);font-weight:400;margin:0}.seopress-list-items .seopress-item .seopress-item-content{color:var(--colorDark);font-weight:400;margin:0}.indexing-log,.seopress-list-items .seopress-item .seopress-item-inner.check{position:relative}.indexing-log::before,.seopress-list-items .seopress-item .seopress-item-inner.check::before{content:"";width:32px;height:32px;font-size:24px;vertical-align:middle;border-radius:50px;color:#fff;margin-right:10px;display:inline-block;border:1px solid var(--borderColorLight);line-height:32px;text-align:center}.seopress-list-items .seopress-item .seopress-item-inner.check::before{content:attr(data-index);color:var(--primaryColor);font-size:16px;border-color:var(--primaryColor)}.indexing-log.indexing-done::before,.indexing-log.indexing-failed::before,.seopress-list-items .seopress-item .seopress-item-inner.done::before{background:var(--backgroundPrimary);border:none;content:"\f15e";font-family:Dashicons;color:#fff;font-size:24px}.seopress-list-items .seopress-item.is-active:first-child a{box-shadow:inset 5px 0 0 0 var(--primaryColor);transition:box-shadow .1s linear}.seopress-list-items .seopress-item.is-active:first-child a::after{content:'';box-shadow:inset 5px 0 0 0 var(--primaryColor);transition:box-shadow .1s linear;background-color:var(--primaryColor);opacity:.1;position:absolute;width:100%;height:100%;left:0;top:0}.indexing-log.indexing-done::before{background:var(--colorSuccess)}.indexing-log.indexing-failed::before{background:var(--colorAlert);content:"\f335"}.sp-tooltip{position:relative;margin-left:5px;display:inline-block;cursor:help;vertical-align:bottom;text-align:left;background:0 0;border:none;padding:0}.sp-tooltip .dashicons{color:var(--colorDark)}.sp-tooltip .sp-tooltiptext{visibility:hidden;position:absolute;z-index:999999999;width:350px;right:-310px;padding:20px;top:25px;font-weight:400;box-shadow:0 3px 30px rgb(25 30 35 / 10%);border:1px solid var(--borderColorLight40);background:#fff;word-break:break-word;text-transform:none}.sp-tooltip .sp-tooltiptext::before{border:8px solid var(--borderColorLight40);top:-8px}.sp-tooltip .sp-tooltiptext::after{border:8px solid #fff;top:-6px}.sp-tooltip .sp-tooltiptext::after,.sp-tooltip .sp-tooltiptext::before{border-bottom-style:solid;border-left-color:transparent;border-right-color:transparent;border-top:none;margin-left:-10px;content:"";position:absolute;height:0;width:0;line-height:0;left:30px}.sp-tooltip:active .sp-tooltiptext,.sp-tooltip:focus .sp-tooltiptext,.sp-tooltip:hover .sp-tooltiptext{visibility:visible}.sp-tooltip .sp-tooltip-headings{font-size:18px;font-weight:600;margin-bottom:20px;display:block}.sp-tooltip .sp-tooltip-desc{margin-bottom:20px;display:block;border-bottom:1px solid var(--borderColorLight40);padding-bottom:20px;font-size:var(--fontSize);line-height:1.5}.sp-tooltip .sp-tooltip-code{font-family:Menlo,Monaco,Andale Mono,Courier New,monospace;display:block;word-break:break-all;color:var(--colorPre);font-size:11px}.analysis-score .sp-tooltip{vertical-align:middle;font-size:.75em}#seopress_content_analysis .wrap-insights-post .sp-tooltip *{font-weight:400}#seopress_content_analysis .wrap-insights-post .sp-tooltip-headings{font-weight:700}#seopress_content_analysis a{color:var(--backgroundPrimary)}#seopress_content_analysis a.nounderline,#seopress_content_analysis a.nounderline:hover{text-decoration:none}#seopress_content_analysis .wrap-seopress-analysis{display:inline-block;width:100%}#seopress_content_analysis .col-left{width:calc(50% - 30px);float:left;margin-right:30px}#seopress_content_analysis .col-right{float:right;width:50%}#seopress_content_analysis #seopress_suggestions{display:inline-block;width:100%;margin:0;height:auto;padding:20px 0;position:relative;left:-5px}#seopress_content_analysis #seopress_suggestions li{list-style:none;margin:5px;display:inline-block}#seopress_content_analysis .analysis-score{clear:both;border-top:1px solid var(--borderColorCard);display:flex;justify-content:space-between;align-items:center}.column-seopress_score .analysis-score{display:flex;align-content:center}#seopress_content_analysis .analysis-score p,.column-seopress_score .analysis-score p{font-weight:700;font-size:1.2em}#seopress-ca-tabs .seopress-gsc-render{margin:1rem 0}#seopress-ca-tabs .dashicons{vertical-align:middle;margin-right:1rem}#seopress-ca-tabs .seopress-gsc-verdict .dashicons{font-size:30px;width:30px;height:30px}#seopress-ca-tabs .dashicons-yes-alt{color:var(--colorSuccess)}#seopress-ca-tabs .dashicons-info{color:var(--colorWarning)}#seopress-ca-tabs .dashicons-dismiss{color:var(--colorAlert)}#seopress-ca-tabs .seopress-gsc-analysis{margin-top:1rem;margin-bottom:1rem;display:inline-block;width:100%}#seopress-ca-tabs .seopress-gsc-cat{border-bottom:1px solid var(--borderColorCard);margin-bottom:.5rem;font-weight:700;padding-bottom:.5rem}#seopress-ca-tabs .seopress-gsc-analysis .seopress-gsc-item{display:flex}#seopress-ca-tabs .seopress-gsc-analysis .seopress-gsc-item-name{width:240px}#seopress-ca-tabs .seopress-gsc-analysis .seopress-gsc-item div{margin:.5rem 0}#seopress-ca-tabs .seopress-gsc-summary{display:block;padding:20px;margin:20px 0;top:0;left:0}#seopress-ca-tabs .seopress-gsc-verdict{font-weight:700;font-size:1.2em}#seopress_content_analysis .analysis-score svg,.column-seopress_score .analysis-score svg{display:inline-block;height:30px;width:30px;margin:0;border-radius:100%;position:relative;font-weight:600;shape-rendering:geometricprecision;font-size:.5rem;vertical-align:middle;margin-right:15px}.column-seopress_score .analysis-score p,.column-seopress_score .analysis-score svg{margin:0}@keyframes loadingPulse{0%{stroke:#adc5d2}50%{stroke:#00a0d2}100%{stroke:#adc5d2}}#seopress_content_analysis .analysis-score .loading #bar{stroke-dashoffset:0!important;stroke:#adc5d2!important;animation:loadingPulse 3s infinite ease-in-out}#seopress_content_analysis .analysis-score .good #bar,.column-seopress_score .analysis-score #bar.good{stroke:var(--colorSuccess)}#seopress_content_analysis .analysis-score .notgood #bar,.column-seopress_score .analysis-score #bar.notgood{stroke-dashoffset:101px;stroke:var(--colorWarning)}#seopress_content_analysis .analysis-score svg circle,.column-seopress_score .analysis-score svg circle{stroke-dashoffset:0;transition:stroke-dashoffset 1s linear;stroke:#ccc;stroke-width:2em}#tab_seopress_page_speed .ps-score svg path,#tab_seopress_ps .ps-score svg path{stroke-linecap:round;stroke-width:2.8;fill:none}#tab_seopress_page_speed .ps-score,#tab_seopress_ps .ps-score{position:relative;display:inline-block}#tab_seopress_page_speed .ps-score svg,#tab_seopress_ps .ps-score svg{width:80px;height:80px}#tab_seopress_page_speed .ps-score span,#tab_seopress_ps .ps-score span{font-weight:700;left:0;position:absolute;top:0;width:80px;height:80px;align-items:center;display:flex;justify-content:center;margin:0}#tab_seopress_page_speed .ps-score.green #bar,#tab_seopress_ps .ps-score.green #bar{stroke:var(--colorSuccess)}#tab_seopress_page_speed .ps-score.yellow #bar,#tab_seopress_ps .ps-score.yellow #bar{stroke:var(--colorWarning)}#tab_seopress_page_speed .ps-score.red #bar,#tab_seopress_ps .ps-score.red #bar{stroke:var(--colorAlert)}#tab_seopress_ps .score,.wrap-seopress-score .score{width:12px;height:12px;display:inline-block;margin-right:10px;vertical-align:middle}#tab_seopress_ps .score.red,.wrap-seopress-score .score.red{border-bottom-color:var(--colorAlert);border-bottom-style:solid;border-bottom-width:12px;border-left-color:transparent;border-left-style:solid;border-left-width:6px;border-right-color:transparent;border-right-style:solid;border-right-width:6px}.wrap-seopress-score small{font-size:12px}.wrap-seopress-score small.red,.wrap-seopress-score small.yellow{color:var(--colorAlert)}#tab_seopress_ps .score.yellow,.wrap-seopress-score .score.yellow{background-color:var(--colorWarning);display:inline-block}#tab_seopress_ps .score.green,.wrap-seopress-score .score.green{border-radius:100%;background-color:var(--colorSuccess)}.wrap-seopress-score small.green{color:var(--colorSuccess)}.wrap-seopress-score .score.null{background:#ccc;border-radius:100%}#seopress_content_analysis .gr-analysis{clear:both}#seopress_content_analysis .gr-analysis-title{border-top:1px solid var(--borderColorCard);position:relative}#seopress_content_analysis .gr-analysis-title .impact,#seopress_cpt .impact{position:absolute;left:10px;top:calc(50% - 5px);width:10px;height:10px;border-radius:50px;padding:0;margin:0;border:1px solid #fff}#seopress_content_analysis .gr-analysis .impact.good{background:var(--colorSuccess);box-shadow:0 0 5px var(--colorSuccess)}#seopress_content_analysis .gr-analysis .impact.low{background:var(--colorWarning);box-shadow:0 0 5px var(--colorWarning)}#seopress_content_analysis .gr-analysis .impact.medium{background:var(--colorLowAlert);box-shadow:0 0 5px var(--colorLowAlert)}#seopress_content_analysis .gr-analysis .impact.high,#seopress_cpt .impact.high{background:var(--colorAlert);box-shadow:0 0 5px var(--colorAlert)}#seopress_content_analysis .gr-analysis-content .impact.high{background:var(--colorAlert);box-shadow:none;color:#fff;padding:2px 4px;margin-left:5px;border-radius:4px;font-weight:700}#seopress_cpt .impact.high{position:relative;top:calc(50% - 18px);display:inline-block;left:inherit;right:-10px}#seopress_content_analysis .description,#seopress_cpt .description,#seopress_pro_cpt .description,.seopress-option .description{display:block;font-size:12px;color:var(--color)}@media only screen and (max-width:782px){#seopress_content_analysis .description,#seopress_cpt .description,#seopress_pro_cpt .description,.seopress-option .description{word-break:break-word}}#seopress_content_analysis input~span.description,#seopress_content_analysis span.description~input,#seopress_cpt input~span.description,#seopress_cpt span.description~input,#seopress_pro_cpt input~span.description,#seopress_pro_cpt span.description~input{margin-top:5px}#seopress_content_analysis .gr-analysis-title button{background:#fff;border:0;cursor:pointer;display:block;margin:0;position:relative;text-align:left;width:100%;padding:15px 30px;align-items:center;transition:all .3s linear}#seopress_content_analysis .gr-analysis-title button:hover{background:#f3f4f5}#seopress_content_analysis .gr-analysis-title button:focus{color:#191e23;border:none;box-shadow:none;outline-offset:-2px;outline:1px dotted #555d66}#seopress_content_analysis .gr-analysis-title button .seopress-arrow::after{content:"\f343";font-family:Dashicons;position:absolute;right:10px;top:calc(50% - 7px)}#seopress_content_analysis .gr-analysis-title button.open .seopress-arrow::after{content:"\f347"}#seopress_content_analysis .gr-analysis-content{padding:0 1rem .5rem 1rem;display:none;width:100%;border-top:1px solid var(--borderColorCard)}#seopress_content_analysis h3{margin:0;font-size:1em}#seopress_content_analysis h4{border-bottom:1px solid var(--borderColorCard);padding-bottom:.5rem;text-transform:uppercase;font-size:.85em;position:-webkit-sticky;position:sticky;top:0;background:#fff}#seopress_content_analysis .wrap-analysis-img ul{display:flex;flex-wrap:wrap}#seopress_content_analysis .wrap-analysis-img ul li{padding:0;text-align:left;cursor:default;user-select:auto}#seopress_content_analysis .wrap-analysis-img h4{border-bottom:1px solid var(--borderColorLight);padding-bottom:10px}#seopress_content_analysis .wrap-analysis-img ul li img{max-width:150px;max-height:150px;object-fit:cover;border:1px solid var(--borderColorLight);cursor:default;padding:1px}#seopress-analysis-tabs .dashicons,#seopress_cpt .dashicons{vertical-align:middle}#seopress-analysis-tabs{clear:both}#seopress_content_analysis .dashicons-no-alt,#seopress_content_analysis .dashicons-yes,#seopress_pro_cpt .dashicons-no-alt,#seopress_pro_cpt .dashicons-yes{color:#fff;background:var(--colorSuccess);border-radius:50px;margin-right:10px}#seopress_content_analysis .dashicons-no-alt,#seopress_pro_cpt .dashicons-no-alt{background:var(--colorAlert)}#seopress-schemas-tabs .description-alt,#seopress_content_analysis .description-alt,#seopress_cpt .description-alt{padding:1em 0;border-top:1px solid var(--borderColorLight);border-bottom:1px solid var(--borderColorLight);display:flex}#seopress_cpt .desc-fb{margin-top:0;border-top:none}#seopress-schemas-tabs .description-alt svg,#seopress_content_analysis .description-alt svg,#seopress_cpt .description-alt svg{vertical-align:middle;align-self:center;fill:#f0b849;flex-shrink:0;margin-right:16px}#seopress_cpt .notice{padding:10px 14px;margin:0}#seopress_cpt .inside{margin:0;padding:0}#seopress_cpt .ui-tabs .ui-tabs-nav{display:flex;position:relative;width:100%;z-index:10;margin:0;border-radius:0;padding:0;align-items:center;padding:0;height:48px;border-bottom:1px solid #ddd;background:inherit;line-height:inherit;color:inherit;border-top:none;border-left:none;border-right:none}#seopress_cpt .ui-tabs .sp-section{font-weight:700;font-size:var(--fontSize)}#seopress_cpt .ui-helper-clearfix:after{content:none}.seopress_page_seopress-titles #seopress-tabs .form-table td,.seopress_page_seopress-titles #seopress_content_analysis .form-table td{padding:0}#seopress_cpt .ui-tabs .ui-tabs-panel{background:#fff;border-radius:0;display:inline-block;padding:1em 1.4em;width:100%}#seopress_content_analysis .dashicons-info,#seopress_cpt .ui-tabs .ui-tabs-panel .dashicons-info,#seopress_pro_cpt .dashicons-info{font-size:16px;vertical-align:middle;height:16px;width:16px}#seopress_cpt .ui-tabs .ui-tabs-nav li,#seopress_cpt .ui-tabs-anchor{cursor:pointer!important}body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active{position:relative;z-index:60;cursor:pointer;border-radius:0;border-bottom:4px solid var(--backgroundPrimary)!important}#seopress_cpt .wp-color-result{margin:0}#seopress_cpt #tabs-6 #wrap-videos .video .accordion-section-content,#seopress_cpt #tabs-6>p{padding:0 1.4em}#seopress_cpt #tabs-6 #wrap-videos .video .accordion-section-content{padding:0 1.4em 1em}#seopress_cpt #tabs-6 #wrap-videos .video{border-top:1px solid var(--borderColorLight)}#seopress_cpt #tabs-6 #wrap-videos .video .accordion-section-title{border-left:none;border-right:none;font-size:1em;padding:1em 1.4em}#seopress_cpt #tabs-6 #wrap-videos .video:last-child .accordion-section-content,#seopress_cpt #tabs-6 #wrap-videos .video:last-child .accordion-section-title{border-bottom:1px solid var(--borderColorLight)}#seopress_content_analysis .mandatory,#seopress_cpt .mandatory{color:var(--colorAlert)}#seopress_cpt .box-left{float:left;width:49%;margin-right:1%}#seopress_cpt .box-right{float:left;width:49%;margin-left:1%}#seopress_cpt #tabs-3 .box-left{width:44%}#seopress_cpt #tabs-3 .box-right{width:54%}@media only screen and (max-width:1200px){#seopress_cpt .box-left,#seopress_cpt .box-right{float:none;width:100%;margin:0}}@media only screen and (max-width:1500px){#seopress_cpt #tabs-3 .box-left,#seopress_cpt #tabs-3 .box-right{float:none;width:100%;margin:0}}#edittag #seopress_cpt #tabs-3 .box-left,#edittag #seopress_cpt #tabs-3 .box-right{float:none;width:100%;margin:0}#seopress-tabs .seopress_media_upload,#seopress_pro_cpt .seopress_media_upload{margin-top:.5rem}#term-seopress #seopress_cpt{width:95%}#seopress_cpt .ui-tabs{position:relative;padding:0;border:none;font-family:inherit;font-size:inherit;display:inline-block;width:100%}#seopress_cpt .ui-tabs .ui-tabs-nav li{list-style:none;position:relative;padding:0;white-space:nowrap;margin:0;border:none;height:48px;background:0 0}#seopress_cpt .ui-tabs .ui-tabs-nav li a{display:flex;padding:3px 15px;align-items:center}#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav li a,#seopress_cpt .ui-tabs-vertical .ui-tabs-nav li a{display:block}#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:0;padding-bottom:0}#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-state-disabled a,#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active a,#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-loading a{font-weight:500}#seopress_cpt .ui-tabs .ui-tabs-nav li a,#seopress_cpt .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a{cursor:pointer;color:#191e23;text-decoration:none;height:48px}#seopress_cpt .ui-tabs .ui-tabs-nav li a:focus,#seopress_cpt .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a:focus{outline:3px solid transparent;box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--backgroundPrimary),inset 0 -4px 0 0 var(--backgroundPrimary)}#seopress_cpt .ui-tabs-vertical{width:55em}#seopress_cpt .ui-tabs-vertical .ui-tabs-nav{padding:.2em .1em .2em .2em;float:left;width:12em}#seopress_cpt .ui-tabs-vertical .ui-tabs-nav li{clear:left;width:100%;border-bottom-width:1px!important;border-right-width:0!important;margin:0 -1px .2em 0}#seopress_cpt .ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active{padding-bottom:0;padding-right:.1em;border-right-width:1px}#seopress_cpt .ui-tabs-vertical .ui-tabs-panel{padding:1em;float:right;width:40em}#seopress_cpt .ui-tabs .ui-tabs-nav li a .dashicons{margin-right:2px}#seopress_cpt .google-snippet-preview{font-family:arial,sans-serif;word-break:break-all}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-snippet{margin:0 0 10px 0;box-shadow:0 1px 6px rgba(32,33,36,.28);border-radius:8px;padding:12px 16px}#seopress_cpt .google-snippet-preview>p{word-break:normal}#seopress_cpt .google-snippet-preview .snippet-title,#seopress_cpt .google-snippet-preview .snippet-title-custom,#seopress_cpt .google-snippet-preview .snippet-title-default{color:#1a0dab;font-size:18px;font-weight:400;line-height:21.6px}#seopress_cpt .google-snippet-preview.mobile-preview .snippet-title,#seopress_cpt .google-snippet-preview.mobile-preview .snippet-title-custom,#seopress_cpt .google-snippet-preview.mobile-preview .snippet-title-default{font-size:16px;line-height:20px;margin-bottom:12px}#seopress_cpt .google-snippet-preview .snippet-permalink{color:#006621;font-size:14px;font-style:normal;font-weight:400;line-height:16px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#seopress_cpt .google-snippet-preview .wrap-snippet .wrap-m-icon-permalink,#seopress_cpt .google-snippet-preview.mobile-preview .snippet-permalink{display:none}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-snippet-mobile{display:flex;justify-content:space-between}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-meta-desc{margin-right:8px}#seopress_cpt .google-snippet-preview .wrap-post-thumb{display:none}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-post-thumb{margin-left:8px;display:block}#seopress_cpt .google-snippet-preview.mobile-preview .snippet-post-thumb{width:104px;max-width:inherit;height:104px;border-radius:8px;object-fit:cover}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-m-icon-permalink{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-bottom:12px;display:flex}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-m-icon-permalink .snippet-permalink{display:block;color:#3c4043;font-size:12px}#seopress_cpt .google-snippet-preview.mobile-preview .snippet-favicon{margin-right:12px;vertical-align:middle}#seopress_cpt .google-snippet-preview.mobile-preview .snippet-favicon img{width:16px;height:16px;max-width:inherit}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-snippet .snippet-permalink:first-child{color:#3c4043;white-space:nowrap;font-size:12px;display:block}#seopress_cpt .google-snippet-preview .snippet-description,#seopress_cpt .google-snippet-preview .snippet-description-custom,#seopress_cpt .google-snippet-preview .snippet-description-default{color:#545454;font-size:14px;font-weight:400;line-height:18.2px;display:inline;hyphens:none;word-break:normal}#seopress_cpt .google-snippet-preview.mobile-preview .snippet-description,#seopress_cpt .google-snippet-preview.mobile-preview .snippet-description-custom,#seopress_cpt .google-snippet-preview.mobile-preview .snippet-description-default{color:#3c4043;font-size:14px;line-height:20px}#seopress_cpt .google-snippet-preview .snippet-date{color:grey;display:inline}#seopress_cpt .facebook-snippet-box{color:#4b4f56;font-size:14px;width:524px;max-width:100%}#seopress_cpt .facebook-snippet-box .notice,#seopress_cpt .twitter-snippet-box .notice{padding:10px 14px;margin:0 0 10px 0;width:100%}#seopress_cpt .facebook-snippet-box .notice span,#seopress_cpt .twitter-snippet-box .notice span{font-weight:700}#seopress_cpt .snippet-meta{display:flex;overflow:hidden;max-height:12px}#seopress_cpt .fb-by,#seopress_cpt .snippet-fb-site-name,#seopress_cpt .snippet-fb-url{color:#606770;font-size:12px;white-space:normal;line-height:11px;text-transform:uppercase;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis}#seopress_cpt .fb-sep{padding-left:5px;padding-right:5px;color:#606770;line-height:11px;font-size:12px}#seopress_cpt .facebook-snippet-box .facebook-snippet-text{border:1px solid #dadde1;background-color:#f2f3f5;padding:10px 12px}#seopress_cpt .facebook-snippet-box .title-desc{max-height:46px;overflow:hidden}#seopress_cpt .facebook-snippet-box .snippet-fb-title,#seopress_cpt .facebook-snippet-box .snippet-fb-title-custom,#seopress_cpt .facebook-snippet-box .snippet-fb-title-default{font-size:16px;line-height:20px;margin:3px 0 0;padding-top:2px;color:#1d2129;font-weight:700;overflow:hidden;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis;white-space:normal;word-break:break-word;max-height:22px}#seopress_cpt .facebook-snippet-box .snippet-fb-description,#seopress_cpt .facebook-snippet-box .snippet-fb-description-custom,#seopress_cpt .facebook-snippet-box .snippet-fb-description-default{color:#606770;font-size:14px;line-height:20px;word-break:break-word;font-family:Helvetica,Arial,sans-serif;max-height:80px;overflow:hidden;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis;white-space:normal;width:100%}#seopress_cpt .facebook-snippet-box img{display:block;height:274px;width:524px;object-fit:cover;background-color:#f0f0f0;text-align:center;border-bottom:none}.term-php #seopress_cpt .facebook-snippet-box img,.term-php #seopress_cpt .twitter-snippet-box img{width:100%;height:auto}.seopress_social_fb_img_upload,.seopress_social_twitter_img_upload{position:absolute;width:100%;cursor:pointer;height:100%;left:0;top:0}.seopress_social_fb_img_upload:hover::after,.seopress_social_twitter_img_upload:hover::after{content:"\f464";position:absolute;font-family:dashicons;width:100%;height:100%;top:0;left:0;font-size:40px;background:rgb(255 255 255 / 70%);display:flex;justify-content:center;align-items:center;color:#1e1e1e}.snippet-fb-img,.snippet-fb-img-custom,.snippet-fb-img-default,.snippet-twitter-img,.snippet-twitter-img-custom,.snippet-twitter-img-default{position:relative}#seopress_cpt .twitter-snippet-box{color:#4b4f56;font-size:14px;width:504px;max-width:100%}#seopress_cpt .snippet-twitter-url{color:#8899a6;font-size:14px;white-space:normal;line-height:11px;text-transform:uppercase;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis}#seopress_cpt .twitter-snippet-box .twitter-snippet-text{border:1px solid #dadde1;background-color:#fff;padding:10px 12px;border-radius:0 0 10px 10px}#seopress_cpt .twitter-snippet-box .title-desc{max-height:46px;overflow:hidden}#seopress_cpt .twitter-snippet-box .snippet-twitter-img,#seopress_cpt .twitter-snippet-box .snippet-twitter-img-custom,#seopress_cpt .twitter-snippet-box .snippet-twitter-img-default{border-radius:10px 10px 0 0;overflow:hidden}#seopress_cpt .twitter-snippet-box .snippet-twitter-title,#seopress_cpt .twitter-snippet-box .snippet-twitter-title-custom,#seopress_cpt .twitter-snippet-box .snippet-twitter-title-default{font-size:1em;line-height:20px;margin-bottom:5px;max-height:1.3em;color:#000;font-weight:700;overflow:hidden;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis;white-space:normal;word-break:break-word}#seopress_cpt .twitter-snippet-box .snippet-twitter-description,#seopress_cpt .twitter-snippet-box .snippet-twitter-description-custom,#seopress_cpt .twitter-snippet-box .snippet-twitter-description-default{color:#000;font-size:14px;line-height:20px;word-break:break-word;font-family:Helvetica,Arial,sans-serif;max-height:80px;overflow:hidden;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis;white-space:normal;width:100%}#seopress_cpt .twitter-snippet-box img{display:block;height:263px;width:504px;object-fit:cover;background-color:#f0f0f0;text-align:center;border-bottom:none}.wrap-toggle-preview{position:relative}.wrap-toggle-preview p{font-weight:700;margin:0 0 1rem 0}#seopress_add_to_insights{margin-left:1rem}#seopress_add_to_insights_status{display:inline-block;font-weight:700;margin:0 0 0 1rem;vertical-align:middle;padding:.3rem;font-style:italic}.seo_page_seopress-instant-indexing .wrap-sp-progress{max-width:35rem}#seopress_cpt .wrap-seopress-counters,#seopress_pro_cpt .wrap-seopress-counters,.seopress-setup .wrap-seopress-counters,.seopress-styles .wrap-seopress-counters{text-align:right;background:#e9ecef;padding:2px 5px;display:flex;font-size:12px;justify-content:flex-end;border-radius:0 0 .25rem .25rem}#seopress_cpt .sp-progress,#seopress_pro_cpt .sp-progress,.seopress-setup .sp-progress,.seopress-styles .sp-progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem .25rem 0 0;margin:-15px 0 0 0}#seopress_cpt .sp-progress-bar,#seopress_pro_cpt .sp-progress-bar,.seopress-setup .sp-progress-bar,.seopress-styles .sp-progress-bar{display:flex;flex-direction:column;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#0085ba;transition:width .6s ease}#seopress_cpt #seopress_titles_desc_counters,#seopress_cpt #seopress_titles_title_counters,#seopress_pro_cpt #seopress_rich_snippets_articles_counters,#seopress_pro_cpt #seopress_rich_snippets_courses_counters{display:inline;margin-right:5px}#seopress_cpt #seopress_titles_desc_counters_val,#seopress_cpt #seopress_titles_title_counters_val,#seopress_pro_cpt #seopress_rich_snippets_articles_counters_val,#seopress_pro_cpt #seopress_rich_snippets_courses_counters_val{display:inline;font-weight:700}#tab-panel-seopress_titles_help_tab li span{font-weight:700;margin-right:10px}.seopress-styles .seopress-option{margin:85px 40px 40px}@media only screen and (max-width:782px){.seopress-styles .seopress-option{margin:85px 22px 22px}}.seopress-setup .seopress-option h1,.seopress-styles .seopress-option h1{font-size:var(--titleFontSize);color:var(--titleColor);font-weight:var(--titleFontWeight);margin:var(--titleMargin);display:flex;justify-content:space-between}.seopress-setup .seopress-option h1{margin-bottom:30px}.seopress_wrap_archive_cpt,.seopress_wrap_single_cpt,.seopress_wrap_single_tax,.seopress_wrap_tax{margin:0 0 20px 0}#tab_seopress_titles_archives .form-table th:empty,#tab_seopress_titles_single .form-table th:empty,#tab_seopress_titles_tax .form-table th:empty{display:none}.seopress-styles .seopress-option .link-archive{font-size:var(--fontSize)}.seopress-styles .seopress-option .link-archive .dashicons{font-size:18px;width:20px;height:20px;margin:inherit}.seopress-option h1 .feature-state .dashicons{font-size:16px;width:16px;height:16px;vertical-align:middle;margin:0 10px 0 0}.seopress-styles .seopress-option .submit{padding:20px 0 20px 0;left:0;margin:0;position:sticky;bottom:0;z-index:100;display:inline-block}@media only screen and (max-width:782px){.seopress-styles .seopress-option .submit{position:relative}}.seopress-styles .seopress-option .seopress-tab .submit{display:block;position:relative}.seopress-styles #wpcontent{padding-left:0}.seopress-styles pre{font-family:Menlo,Monaco,Andale Mono,Courier New,monospace;padding:10px;display:inline-block;background-color:var(--backgroundSecondaryHover);border-radius:3px;color:var(--colorDark);font-size:var(--fontSize)}.seopress-option .seopress-settings{float:left;max-width:750px;width:100%}.seopress-option .seopress-settings label{margin:0 0 0 10px}.wrap-seopress-tab-content{position:relative;display:block;width:100%;max-width:64rem;margin:0 auto}#seopress-tabs .seopress-tab{padding:10px 1.5rem;width:100%;display:none}#seopress-tabs.full-width .seopress-tab{width:100%}@media only screen and (max-width:1024px){#seopress-tabs .seopress-tab{width:100%}}#seopress-tabs .seopress-tab.active{display:inline-block;background:#fff}@media only screen and (max-width:782px){#seopress-tabs .seopress-tab.active{width:100%;border-left:none;border-top:1px solid RGB(238,238,238)}}#seopress_htaccess_file{width:100%}.seopress-option textarea{min-height:100px}.seopress-option .wp-picker-container button{box-shadow:none;border:1px solid #0071a1;border-radius:3px;background:#f3f5f6;text-transform:none}.seopress-option .wp-picker-container input[type=text].wp-color-picker{min-width:inherit}.seopress-option .wp-picker-container .wp-picker-default{margin:0}.seopress-option .wp-picker-container .wp-picker-clear{box-shadow:none;text-transform:none;border-radius:0;background:0 0;margin:0}.seopress-option .wp-picker-container .wp-picker-clear:hover{background:0 0;text-decoration:currentColor;color:inherit}.seopress-inbox-title p{font-size:20px;color:var(--titleColor);margin:0}#seopress-admin-tabs .ui-tabs-nav{display:flex;padding-top:1rem;padding-bottom:0}#seopress-admin-tabs .nav-tab-wrapper a.nav-tab-active:focus{color:inherit}.seopress-intro{padding:20px}.seopress-option .seopress-table{background:#fff;border:1px solid var(--borderColorLight)}.seopress-option .seopress-table th{padding:15px 10px;vertical-align:middle}.wp-admin-ui_page_seopress-roles .seopress-option .seopress-table th{min-width:200px}.seopress-option .seopress-table .seopress-settings-section{background:#f1f1f1}.seopress-option .seopress-table .seopress-table-head .seopress-feature{border-bottom:1px solid var(--borderColorLight);font-weight:700;background:#f1f1f1}#seopress-content .feature-state,.seopress-option .feature-state{font-style:italic;font-size:11px;font-weight:400}@media only screen and (max-width:782px){#seopress-content .feature-state,.seopress-option .feature-state{display:none}}.seopress-option #tab_seopress_titles_archives h3,.seopress-option #tab_seopress_titles_single h3,.seopress-option #tab_seopress_titles_tax h3{margin:2em 0 1em 0;border-top:1px solid var(--borderColorLight);padding:1em 0 0 0}.seopress-option #tab_seopress_titles_archives h3:first-child,.seopress-option #tab_seopress_titles_single h3:first-child,.seopress-option #tab_seopress_titles_tax h3:first-child{margin:0 0 1em 0}.seopress-option #tab_seopress_titles_archives h3 div,.seopress-option #tab_seopress_titles_single h3 div,.seopress-option #tab_seopress_titles_tax h3 div{display:inline}#seopress-content .feature-state-on,#seopress-content .feature-state.feature-state-on,.seopress-option .feature-state-on,.seopress-option .feature-state.feature-state-on{display:inline-block}#seopress-content .feature-state-off,.seopress-option .feature-state-off{display:none}.seopress-option .postbox .inside li{list-style:square inside;padding-left:5px}#tab_seopress_page_speed .inside li{list-style:none;padding-left:0;word-break:break-word}.seopress-option .log{display:none;font-weight:700}.seopress-option input[type=text].seopress-admin-menu-input{min-width:inherit;width:100%}.seopress_page_seopress-import-export .postbox{width:calc(100% - 20px)}#seopress_cpt #seopress_titles_title_meta{margin-bottom:.2rem}.seopress-option .section-tool{border:none;box-shadow:none;background:0 0;position:relative}.seopress-option .section-tool::after{content:"";background:#dedede;height:1px;width:100%;display:block}.seopress-option .section-tool:last-child{margin-bottom:0}.seopress-option .section-tool:last-child::after{content:none}.seopress-option .section-tool .inside{padding-left:0;padding-right:0}.seopress-option .sp-section-header{width:100%;display:flex;position:relative;align-items:center}.seopress-option .sp-section-header h2{font-size:1.5em;margin:20px 0}.seopress-option .sp-section-header>.dashicons{color:var(--primaryColor);padding:10px;border-radius:6px;margin-right:10px;background:#c4f0ff}.seopress-option .sp-section-header .wrap-toggle-checkboxes{display:flex}.seopress-notice{margin:5px 0 35px 15px;position:relative;top:75px;left:25px;background:rgb(0 124 186 / 10%);border-left:4px solid var(--primaryColor);padding:8px 12px;width:calc(100% - 108px);z-index:10}#seopress-ca-tabs .seopress-notice,#seopress-tabs .seopress-notice,#seopress_insights_dashboard_rankings_widget .seopress-notice,#seopress_pro_cpt .seopress-notice,.seopress-setup .seopress-notice{top:inherit;left:inherit;margin:15px 0 30px 0;width:auto}.seopress-hidden{display:none}.seopress-notice pre{background:#fff}.seopress-notice.is-success{border-left-color:var(--colorSuccess);background:#eff9f1}.seopress-notice.is-warning{border-left-color:#f0b849;background:#fef8ee}.seopress-notice.is-error{border-left-color:#cc1818;background:rgb(244 162 162 / 30%)}#seopress-tabs .seopress-notice.is-inline,.seopress-setup .seopress-notice.is-inline{margin-bottom:0;width:fit-content}#seopress-tabs.wrap{margin:30px 0 0 0}#seopress-notifications-center .seopress-alert ul,#seopress-tabs.wrap ul{list-style:square inside;padding-left:5px;display:inline-block;max-width:35rem;width:100%}.post-type-seopress_404 .seopress-BlankState-message::before,.post-type-seopress_schemas .seopress-BlankState-message::before{font-family:Dashicons;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\f103"}.post-type-seopress_schemas .seopress-BlankState-message::before{content:"\f495"}.seopress-BlankState{text-align:center;padding:5em 0 0}.seopress-BlankState .seopress-BlankState-message{color:#aaa;margin:0 auto 1.5em;line-height:1.5em;font-size:1.2em;max-width:500px}.seopress-BlankState .seopress-BlankState-message::before{color:#ddd;text-shadow:0 -1px 1px rgba(0,0,0,.2),0 1px 0 rgba(255,255,255,.8);font-size:8em;display:block;position:relative!important;top:auto;left:auto;line-height:1em;margin:0 0 .1875em}.seopress-BlankState .seopress-BlankState-cta{font-size:1.2em;padding:.75em 1.5em;margin:0 .25em}.seopress-BlankState{max-width:764px;text-align:center;margin:auto}.seopress-BlankState .seopress-BlankState-message{color:var(--titleColor);font-size:1.5em;margin:0 auto 1em}.seopress-BlankState .seopress-BlankState-message::before{font-size:120px}.seopress-BlankState .seopress-BlankState-buttons{margin-bottom:4em}#seopress_content_analysis .up,#seopress_content_analysis .up .dashicons{color:var(--colorSuccess)}#seopress_content_analysis .down,#seopress_content_analysis .down .dashicons{color:var(--colorAlert)}#seopress_content_analysis .up .dashicons{transform:rotateZ(45deg)}#seopress_content_analysis .stable .dashicons{transform:rotateZ(90deg)}#seopress_content_analysis .down .dashicons{transform:rotateZ(135deg)}#seopress_content_analysis .wrap-insights-post{clear:both;border-top:1px solid var(--borderColorCard);display:flex;align-items:center}#seopress_content_analysis .wrap-insights-post .widget-insights-title{margin:0 1rem}#seopress_content_analysis .wrap-insights-post span{font-weight:700;margin:0 .2rem 0 0}.wrap-user-roles{display:grid;grid-template-columns:repeat(4,1fr)}@media only screen and (max-width:782px){.wrap-user-roles{display:block}}#notice-insights-alert.is-active,#seopress-news-panel.is-active,#seopress-notifications-center.is-active{display:block!important}#seopress-notifications-center .seopress-alert{padding:16px 25px;position:relative;transition:all 150ms ease;justify-content:space-between;margin-bottom:20px}#seopress-notifications-center .seopress-alert:last-child{margin-bottom:0;border-bottom:none}#seopress-notifications-center .dashicons{display:flex;align-self:normal;width:30px;height:30px;color:var(--colorIcon);font-size:30px;margin:0 0 10px 0}#seopress-admin-tabs #tab_seopress_notifications.seopress-tab{background:0 0;padding:0;border-radius:0;width:100%}.seopress-notice #message{margin:5px 10px 2px 0}#seopress-notice a{position:relative;text-decoration:none;margin:0 0 0 .3rem}#seopress-notice a .tooltip{white-space:pre;z-index:200;padding:2px 5px;font-weight:500;font-size:12px;color:#aab7c4;background:#fff;box-shadow:0 1px 2px 0 rgba(49,49,93,.1),0 0 1px 0 rgba(0,0,0,.1);border-radius:2px;position:absolute;opacity:0;top:30px;transition:opacity .2s ease;visibility:hidden;line-height:20px;left:-100%;overflow:hidden}#seopress-notice a:hover .tooltip{opacity:1;visibility:visible}.seopress-page-list{margin:1.5rem auto}.post-type-seopress_404 .seopress-notice,.post-type-seopress_bot .seopress-notice,.post-type-seopress_schemas .seopress-notice{left:0;top:40px;margin:0 0 50px;width:calc(100% - 48px)}.seopress-search{position:relative;padding:20px}.seopress-search::before{content:"\f179";font-family:Dashicons;position:absolute;top:35px;left:30px;font-size:20px}.seopress-search input{padding-left:40px}.seopress-item-toggle-options{position:relative;cursor:pointer;padding:5px 10px;border:1px solid var(--borderColor);border-radius:3px;transform:rotate(90deg);display:inline-block}.seopress-item-toggle-options::before{content:"\f11c";font-family:Dashicons;font-size:18px;vertical-align:middle}.seopress-card{background:#fff;border:1px solid var(--borderColorCard);border-radius:3px;position:relative}.seopress-option .seopress-card-actions a+button{margin-left:.5em}.seopress-card-title{border-bottom:1px solid var(--borderColorCard);padding:18px 24px;display:flex;justify-content:space-between;align-items:center}.seopress-dashboard-columns .seopress-dashboard-column:last-child .seopress-card-title:hover{cursor:move}.seopress-card-title h2{margin:0}.seopress-cart-list{border-bottom:1px solid var(--borderColorCard);padding:0 0 0 24px;display:flex;align-items:center;text-decoration:none;color:var(--primaryColor);font-weight:700;line-height:20px}.seopress-cart-list *{text-decoration:none}.seopress-cart-list a{display:block;width:100%;padding:18px 24px 18px 0}.seopress-cart-list:last-child{border-bottom:none}.seopress-cart-list:active,.seopress-cart-list:focus,.seopress-cart-list:hover{background:var(--backgroundSecondaryHover)}body .seopress-cart-list h3{font-size:var(--fontSize);color:var(--primaryColor);font-weight:700;margin:0}.seopress-cart-list p{color:var(--titleColor);font-weight:400;margin:0;font-size:12px;line-height:20px}.seopress-card-footer{padding:10px 20px;border-top:1px solid var(--borderColorLight40)}.seopress-card-popover{display:none;background:#fff;border:1px solid var(--borderColor);padding:20px;position:absolute;top:55px;overflow-y:auto;right:28px;z-index:20}.seopress-card-popover.is-open{display:block}#seopress-tabs .seopress-tag-dropdown,#seopress_cpt .seopress-tag-dropdown,#seopress_cpt .tag-title,#seopress_pro_cpt .tag-title,.seopress-button,.seopress-option .tag-title{cursor:pointer;font-weight:500;border-radius:4px;transition:all .3s linear}#seopress_cpt .wrap-tags,#seopress_pro_cpt .wrap-tags,.seopress-option .wrap-tags{position:relative;display:inline-flex;width:100%;margin:10px 0}.seopress-option .wrap-tags{flex-wrap:wrap}.seopress-option .wrap-tags button{margin-bottom:10px}@media only screen and (max-width:782px){#seopress_cpt .wrap-tags,#seopress_pro_cpt .wrap-tags,.seopress-option .wrap-tags{flex-wrap:wrap}}#seopress-tabs .sp-wrap-tag-variables-list,#seopress_cpt .sp-wrap-tag-variables-list,#seopress_pro_cpt .sp-wrap-tag-variables-list{position:relative;float:left;display:none}#seopress-tabs.wrap .sp-tag-variables-list,#seopress_cpt .sp-tag-variables-list,#seopress_pro_cpt .sp-tag-variables-list{position:absolute;left:-48px;width:300px;z-index:100;top:20px;color:var(--titleColor);height:300px;z-index:100;overflow:auto;background:#fff;border:1px solid var(--borderColorLight);box-shadow:0 2px 6px rgb(0 0 0 / 5%);border-radius:2px;list-style:none;padding:0}#seopress-tabs .sp-wrap-tag-variables-list.open,#seopress_cpt .sp-wrap-tag-variables-list.open,#seopress_pro_cpt .sp-wrap-tag-variables-list.open{display:block}#seopress-tabs .seopress-tag-single-all.tag-description .dashicons,#seopress-tabs .seopress-tag-single-all.tag-title .dashicons,#seopress_cpt .seopress-tag-single-all.seopress-tag-dropdown .dashicons,#seopress_cpt .seopress-tag-single-all.tag-title .dashicons,#seopress_pro_cpt .seopress-tag-single-all.tag-title .dashicons{margin:0;transition:all 150ms linear}#seopress-tabs .seopress-tag-single-all.open .dashicons,#seopress_cpt .seopress-tag-single-all.open .dashicons,#seopress_pro_cpt .seopress-tag-single-all.open .dashicons{transform:rotateX(180deg)}#seopress-tabs.wrap .sp-tag-variables-list li,#seopress_cpt .sp-tag-variables-list li,#seopress_pro_cpt .sp-tag-variables-list li{padding:8px 12px;cursor:pointer;margin:0;border-bottom:1px solid var(--borderColorLight40)}#seopress-tabs .sp-tag-variables-list li span,#seopress_cpt .sp-tag-variables-list li span,#seopress_pro_cpt .sp-tag-variables-list li span{display:block;font-weight:700;font-size:12px;margin-bottom:2px}#seopress-tabs.wrap .sp-tag-variables-list li:hover,#seopress_cpt .sp-tag-variables-list li:hover,#seopress_pro_cpt .sp-tag-variables-list li:hover{background:var(--backgroundPrimaryHover);color:#fff;border-bottom-color:#fff}#seopress-tabs.wrap .sp-tag-variables-list li::after,#seopress_cpt .sp-tag-variables-list li::after,#seopress_pro_cpt .sp-tag-variables-list li::after{content:attr(data-value);display:inline-block;background:#e9ecef;padding:1px 5px;color:#333;font-family:Menlo,Monaco,Andale Mono,Courier New,monospace;border-radius:3px;font-size:11px}#seopress-tabs.wrap .seopress-tag-dropdown .dashicons,#seopress_cpt .seopress-tag-dropdown .dashicons,#seopress_cpt .tag-title .dashicons,#seopress_pro_cpt .tag-title .dashicons,.seopress-option .tag-title .dashicons{padding:0;height:16px;width:16px;font-size:16px;margin-right:5px;color:var(--primaryColor);vertical-align:middle}#seopress-tabs.wrap .seopress-tag-dropdown:hover .dashicons,#seopress_cpt .seopress-tag-dropdown:hover .dashicons,#seopress_cpt .tag-title:hover .dashicons,#seopress_pro_cpt .tag-title:hover .dashicons,.seopress-option .tag-title:hover .dashicons{color:#fff}#seopress-tabs.wrap .seopress-tag-dropdown .dashicons{margin:0}.seopress-overlay-tag-dropdown{position:absolute;display:none;top:0;left:0;width:100%;height:100%;z-index:50}.seopress-overlay-tag-dropdown.active{display:block}#seopress-tabs .seopress-tag-dropdown,#seopress_cpt .seopress-tag-dropdown,#seopress_cpt .tag-title,#seopress_pro_cpt .tag-title,.seopress-option .tag-title{padding:5px 12px;font-size:10px;user-select:none;margin:0 5px 0 0;display:inline-flex;text-transform:uppercase;align-items:center;color:var(--primaryColor)}#seopress-tabs .seopress-tag-dropdown:focus,#seopress-tabs .seopress-tag-dropdown:hover,#seopress_cpt .seopress-tag-dropdown:focus,#seopress_cpt .seopress-tag-dropdown:hover,#seopress_cpt .tag-title:focus,#seopress_cpt .tag-title:hover,#seopress_pro_cpt .tag-title:focus,#seopress_pro_cpt .tag-title:hover,.seopress-option .tag-title:focus,.seopress-option .tag-title:hover{box-shadow:0 0 var(--wp-admin-border-width-focus) var(--backgroundPrimary);background:var(--backgroundPrimaryHover);color:#fff}@media only screen and (max-width:782px){#seopress-tabs .seopress-tag-dropdown,#seopress_cpt .seopress-tag-dropdown,#seopress_cpt .tag-title,#seopress_pro_cpt .tag-title,.seopress-option .tag-title{margin-bottom:10px}}#seopress-content .seopress-useful-tools .widget-reverse li{padding:10px;margin:0;border-bottom:1px solid var(--borderColorLight)}#seopress-content .seopress-reverse label,#seopress-content .seopress-useful-tools .widget-whois ul li span{font-weight:700}#seopress-content #seopress-reverse-url{width:100%;margin:10px 0}#seopress-content .widget-reverse p{margin:0}.seopress-styles #screen-meta{position:relative;top:60px}.seopress-styles #screen-meta-links .show-settings{box-shadow:none}.seopress-styles #screen-meta-links .screen-meta-toggle{position:fixed;top:32px;z-index:2000;right:40px}@media only screen and (max-width:782px){.seopress-styles #screen-meta-links .screen-meta-toggle{position:relative;top:60px}}#seopress-content input.toggle,#seopress_cpt input.toggle,.seopress-option input.toggle{max-height:0;max-width:0;opacity:0;position:relative}.seopress-feature input.toggle{display:block}#seopress_cpt input.toggle,.seopress_wrap_single_cpt input.toggle,.seopress_wrap_tax input.toggle{margin:0;border:none;min-width:0}#seopress-content input.toggle+label,#seopress_cpt #tabs-1 input.toggle+label,.seopress-option input.toggle+label{display:inline-block;position:relative;box-shadow:inset 0 0 0 1px #d5d5d5;text-indent:-5000px;height:20px;width:40px;border-radius:15px;margin:0 10px 0 0}#seopress-content input.toggle+label{margin:0;left:-20px}#seopress_cpt #tabs-1 input.toggle+label{margin:0}.wrap-toggle-checkboxes input.toggle+label{float:left;margin-right:10px}#seopress-content input.toggle+label:before,#seopress_cpt input.toggle+label:before,.seopress-option input.toggle+label:before{content:"";position:absolute;display:block;height:20px;width:30px;top:0;left:0;border-radius:15px;background:rgba(19,191,17,0);transition:.25s ease-in-out}#seopress-content input.toggle+label:after,#seopress_cpt input.toggle+label:after,.seopress-option input.toggle+label:after{content:"";position:absolute;display:block;height:20px;width:20px;top:0;left:0;border-radius:15px;background:#fff;box-shadow:inset 0 0 0 1px rgba(0,0,0,.2),0 2px 4px rgba(0,0,0,.2);transition:.25s ease-in-out}#seopress_cpt input.toggle+label,#seopress_cpt input.toggle+label:before,.seopress_wrap_single_cpt input.toggle+label,.seopress_wrap_single_cpt input.toggle+label:before,.seopress_wrap_tax input.toggle+label,.seopress_wrap_tax input.toggle+label:before{width:40px;height:20px}#seopress_cpt input.toggle+label:after,.seopress_wrap_single_cpt input.toggle+label:after,.seopress_wrap_tax input.toggle+label:after{width:20px;height:20px}#seopress-content input.toggle[data-toggle="1"]+label:before,#seopress_cpt input.toggle[data-toggle="1"]+label:before,.seopress-option input.toggle[data-toggle="1"]+label:before,.seopress_wrap_single_cpt input.toggle[data-toggle="1"]+label:before,.seopress_wrap_tax input.toggle[data-toggle="1"]+label:before{width:40px;background:var(--backgroundPrimary)}#seopress-content input.toggle[data-toggle="1"]+label:after,#seopress_cpt input.toggle[data-toggle="1"]+label:after,.seopress-option input.toggle[data-toggle="1"]+label:after{left:20px;box-shadow:inset 0 0 0 1px var(--backgroundPrimary),0 2px 4px rgba(0,0,0,.2)}#seopress_cpt input.toggle[data-toggle="1"]+label:after,.seopress_wrap_single_cpt input.toggle[data-toggle="1"]+label:after,.seopress_wrap_tax input.toggle[data-toggle="1"]+label:after{box-shadow:inset 0 0 0 1px var(--backgroundPrimary),0 2px 4px rgba(0,0,0,.2)}#seopress-content .seopress-page-list{position:relative;display:block;max-width:64rem}@media only screen and (max-width:782px){#seopress-content .seopress-page-list{grid-template-columns:repeat(1,1fr)}}.seopress-setup .wrap,.seopress-styles .wrap{margin:0;display:flex;position:relative}.toplevel_page_seopress-option.seopress-styles .wrap{display:inherit;position:inherit;margin:inherit}@media only screen and (max-width:782px){.seopress-setup .wrap,.seopress-styles .wrap{display:inherit;position:inherit;margin:inherit}}.seopress-option .wrap div.nav-tab-wrapper{margin:0;padding:0;line-height:inherit;width:15%;z-index:10;font-weight:400;display:block;border-bottom:none}@media only screen and (max-width:782px){.seopress-option .wrap div.nav-tab-wrapper{width:100%;margin:0 0 20px 0;padding:0}}#seopress-admin-tabs.wrap div.nav-tab-wrapper{background:#fff;margin:0 auto;max-width:64rem;width:100%;border-bottom:1px solid var(--borderColorCard);padding:0;line-height:inherit;position:sticky;z-index:10;top:92px;border-radius:4px 4px 0 0;font-weight:400;overflow:hidden;display:flex;align-items:center;justify-content:space-between}@media only screen and (max-width:600px){#seopress-admin-tabs.wrap div.nav-tab-wrapper{top:0;display:block}}@media only screen and (max-width:1024px){#seopress-admin-tabs.wrap div.nav-tab-wrapper{display:block}}.seopress-option .nav-tab{border:0;background:0 0;opacity:.5;padding:6px 30px 6px 10px;transition:opacity .3s linear;color:var(--titleColor);margin:0;float:none;display:inline-block;width:100%;text-align:left;font-weight:400;white-space:normal;line-height:1.71428571;font-size:14px;text-decoration:none}#seopress-admin-tabs .nav-tab{background:0 0;opacity:.5;padding:14px 20px;transition:opacity .3s linear;margin:0;float:none;display:inline-block;font-weight:400}#seopress-admin-tabs .nav-tab{width:100%}#seopress-admin-tabs .nav-tab-active,#seopress-admin-tabs .nav-tab-active:focus,#seopress-admin-tabs .nav-tab-active:focus:active,#seopress-admin-tabs .nav-tab-active:hover,#seopress-admin-tabs .nav-tab:focus,.nav-tab-active:focus,.seopress-option .nav-tab-active,.seopress-option .nav-tab-active:focus:active,.seopress-option .nav-tab-active:hover,.seopress-option .nav-tab:focus{opacity:1;outline:0;font-weight:600;position:relative;border-left:3px solid var(--backgroundPrimary)}#seopress-admin-tabs .nav-tab-active,#seopress-admin-tabs .nav-tab-active:focus,#seopress-admin-tabs .nav-tab-active:focus:active,#seopress-admin-tabs .nav-tab-active:hover,#seopress-admin-tabs .nav-tab:focus{border-bottom:4px solid var(--backgroundPrimary);border-left:none}#seopress-admin-tabs .nav-tab:hover,.seopress-option .nav-tab:hover{opacity:1}#seopress-admin-tabs .nav-tab:focus,.seopress-option .nav-tab:focus{outline:0;box-shadow:none}@keyframes sp-fade-in-out{0%{opacity:0;bottom:0;visibility:hidden}25%{opacity:1;bottom:40px;visibility:visible}75%{opacity:1;visibility:visible}100%{opacity:0;visibility:hidden}}.sp-components-snackbar-list{position:fixed;right:0;bottom:40px;padding-left:16px;padding-right:16px;animation-name:sp-fade-in-out;animation-duration:5s;animation-iteration-count:1;animation-fill-mode:forwards;visibility:hidden;z-index:1}.sp-components-snackbar__content{display:flex;align-items:center;justify-content:space-between;line-height:1.4}.sp-components-snackbar{font-family:var(--fontFamily);font-size:var(--fontSize);background-color:#32373c;border-radius:4px;box-shadow:0 2px 4px rgba(0,0,0,.3);color:#fff;padding:16px 24px;cursor:pointer}.sp-components-snackbar .dashicons{color:#fff}
|
@@ -1 +0,0 @@
|
|
1 |
-
{"version":3,"file":"primary-category-select.js","mappings":";;;;;;;;;;AAAA;;;;;;;;;;ACAA;;;;;;;;;;ACAA;;;;;;;;;;ACAA;;;;;;UCAA;UACA;;UAEA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;;UAEA;UACA;;UAEA;UACA;UACA;;;;;WCtBA;WACA;WACA;WACA,eAAe,4BAA4B;WAC3C,eAAe;WACf,iCAAiC,WAAW;WAC5C;WACA;;;;;WCPA;WACA;WACA;WACA;WACA,yCAAyC,wCAAwC;WACjF;WACA;WACA;;;;;WCPA,8CAA8C;;;;;WCA9C;WACA;WACA;WACA,uDAAuD,iBAAiB;WACxE;WACA,gDAAgD,aAAa;WAC7D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACNA;AACA;AACA;AACA;;IAEMK;;;;;EACF,sBAAc;IAAA;;IAAA;;IACV,2BAASC,SAAT;IACA,MAAKC,QAAL,GAAgB,MAAKA,QAAL,CAAcC,IAAd,+BAAhB;IACA,MAAKC,aAAL,GAAqB,MAAKA,aAAL,CAAmBD,IAAnB,+BAArB;IACA,MAAKE,KAAL,GAAa;MACTC,aAAa,EAAE,MADN;MAETC,eAAe,EAAE;IAFR,CAAb;IAJU;EAQb;;;;WAED,6BAAoB;MAAA;;MAChB,IAAMD,aAAa,GAAG,KAAKE,KAAL,CAAWF,aAAX,IAA4B,MAAlD;MACA,KAAKG,QAAL,CAAc;QAAEH,aAAa,EAAbA;MAAF,CAAd;MACA,KAAKI,YAAL,GAAoBC,QAAQ,CAACC,aAAT,CAAuB,8BAAvB,CAApB;;MACA,IAAI,KAAKF,YAAT,EAAuB;QACnB,KAAKA,YAAL,CAAkBG,gBAAlB,CAAmC,QAAnC,EAA6C,UAAAC,CAAC,EAAI;UAC9C,MAAI,CAACL,QAAL,CAAc;YAAEH,aAAa,EAAEQ,CAAC,CAACC,MAAF,CAASC;UAA1B,CAAd;QACH,CAFD;MAGH;IACJ;;;WAED,4BAAmBC,SAAnB,EAA8BC,SAA9B,EAAyC;MAAA;;MACrC;MACA,IAAID,SAAS,CAACE,QAAV,KAAuB,KAAKX,KAAL,CAAWW,QAAlC,IAA8CF,SAAS,CAACG,eAAV,KAA8B,KAAKZ,KAAL,CAAWY,eAA3F,EAA4G;QACxG,IAAMb,eAAe,GAAG,KAAKC,KAAL,CAAWW,QAAX,IAAuB,KAAKX,KAAL,CAAWW,QAAX,CAAoBE,MAA3C,GAAoD,KAAKb,KAAL,CAAWW,QAAX,CAAoBG,MAApB,CAA2B,UAAAC,IAAI;UAAA,OAAI,MAAI,CAACf,KAAL,CAAWY,eAAX,CAA2BI,QAA3B,CAAoCD,IAAI,CAACE,EAAzC,CAAJ;QAAA,CAA/B,CAApD,GAAuI,EAA/J;QACA,IAAMnB,aAAa,GAAG,CAAC,KAAKE,KAAL,CAAWY,eAAX,CAA2BC,MAA5B,IAAsC,CAAC,KAAKb,KAAL,CAAWY,eAAX,CAA2BI,QAA3B,CAAoCE,QAAQ,CAAC,KAAKrB,KAAL,CAAWC,aAAZ,CAA5C,CAAvC,GAAiH,MAAjH,GAA0H,KAAKD,KAAL,CAAWC,aAA3J;QACA,KAAKG,QAAL,CAAc;UAAEF,eAAe,EAAfA,eAAF;UAAmBD,aAAa,EAAbA;QAAnB,CAAd;MACH;;MACD,IAAIY,SAAS,CAACZ,aAAV,KAA4B,KAAKD,KAAL,CAAWC,aAAvC,IAAwDY,SAAS,CAACX,eAAV,KAA8B,KAAKF,KAAL,CAAWE,eAArG,EAAsH;QAClH,KAAKH,aAAL,CAAmB,KAAKC,KAAL,CAAWC,aAA9B;MACH;IACJ;;;WAED,uBAAcqB,cAAd,EAA8B;MAC1B,IAAI,KAAKjB,YAAT,EAAuB;QACnB,IAAMkB,OAAO,GAAG,KAAKC,UAAL,GAAkBC,GAAlB,CAAsB,UAAAC,MAAM,EAAI;UAC5C,IAAMC,QAAQ,GAAGD,MAAM,CAACf,KAAP,IAAgBW,cAAhB,GAAiC,qBAAjC,GAAyD,EAA1E;UACA,iCAAyBI,MAAM,CAACf,KAAhC,gBAA0CgB,QAA1C,cAAsDD,MAAM,CAACE,KAA7D;QACH,CAHe,CAAhB;QAIA,KAAKvB,YAAL,CAAkBM,KAAlB,GAA0BW,cAA1B;QACA,KAAKjB,YAAL,CAAkBwB,SAAlB,GAA8BN,OAAO,CAACO,IAAR,CAAa,EAAb,CAA9B;MACH;IACJ;;;WAED,sBAAa;MACT,QACI;QAAEnB,KAAK,EAAE,MAAT;QAAiBiB,KAAK,EAAEtC,mDAAE,CAAC,kCAAD,EAAqC,aAArC;MAA1B,CADJ,4BAEO,KAAKU,KAAL,CAAWE,eAAX,CAA2BuB,GAA3B,CAA+B,UAACP,IAAD;QAAA,OAAW;UAAEP,KAAK,EAAEO,IAAI,CAACE,EAAd;UAAkBQ,KAAK,EAAEV,IAAI,CAACa;QAA9B,CAAX;MAAA,CAA/B,CAFP;IAIH;;;WAED,kBAASC,MAAT,EAAiB;MACb,KAAK5B,QAAL,CAAc;QAAEH,aAAa,EAAE+B;MAAjB,CAAd;IACH;;;WAED,kBAAS;MACL,OAAO,CAAC,CAAC,KAAKhC,KAAL,CAAWE,eAAX,CAA2Bc,MAA7B,iBACH,oBAAC,gEAAD;QACI,KAAK,EAAE1B,mDAAE,CAAC,2BAAD,EAA8B,aAA9B,CADb;QAEI,KAAK,EAAE,KAAKU,KAAL,CAAWC,aAFtB;QAGI,OAAO,EAAE,KAAKuB,UAAL,EAHb;QAII,QAAQ,EAAE,KAAK3B;MAJnB,EADJ;IAQH;;;;EAjEoBN;;AAqEzB,IAAM0C,iBAAiB,GAAGzC,2DAAU,CAAC,UAAC0C,MAAD,QAAsB;EAAA,IAAXC,IAAW,QAAXA,IAAW;EACvD,IAAMC,QAAQ,GAAGF,MAAM,CAAC,MAAD,CAAN,CAAeG,WAAf,CAA2BF,IAA3B,CAAjB;EACA,IAAMpB,eAAe,GAAGqB,QAAQ,GAAGF,MAAM,CAAC,aAAD,CAAN,CAAsBI,sBAAtB,CAA6CF,QAAQ,CAACG,SAAtD,CAAH,GAAsE,EAAtG;EACA,IAAMzB,QAAQ,GAAGoB,MAAM,CAAC,MAAD,CAAN,CAAeM,gBAAf,CAAgC,UAAhC,EAA4CL,IAA5C,EAAkD;IAAEM,QAAQ,EAAE,CAAC;EAAb,CAAlD,KAAuE,EAAxF;EACA,IAAMxC,aAAa,GAAGiC,MAAM,CAAC,aAAD,CAAN,CAAsBI,sBAAtB,CAA6C,MAA7C,EAAqD,8BAArD,KAAwF,MAA9G;EACA,OAAO;IAAEF,QAAQ,EAARA,QAAF;IAAYtB,QAAQ,EAARA,QAAZ;IAAsBb,aAAa,EAAbA,aAAtB;IAAqCc,eAAe,EAAfA;EAArC,CAAP;AACH,CANmC,CAAV,CAMvBpB,UANuB,CAA1B;AASA+C,EAAE,CAACC,KAAH,CAASC,SAAT,CACI,yBADJ,EAEI,YAFJ,EAGI,UAACC,cAAD;EAAA,OAAoB,UAAC1C,KAAD,EAAW;IAC3B,oBACI,uDACI,oBAAC,cAAD,EAAoBA,KAApB,CADJ,EAEKA,KAAK,CAACgC,IAAN,IAAc,eAAehC,KAAK,CAACgC,IAAnC,iBACG,oBAAC,2DAAD;MAAU,SAAS,EAAC;IAApB,gBACI,oBAAC,iBAAD,EAAuBhC,KAAvB,CADJ,CAHR,CADJ;EAUH,CAXD;AAAA,CAHJ,E","sources":["webpack://wp-seopress/external window [\"wp\",\"components\"]","webpack://wp-seopress/external window [\"wp\",\"data\"]","webpack://wp-seopress/external window [\"wp\",\"element\"]","webpack://wp-seopress/external window [\"wp\",\"i18n\"]","webpack://wp-seopress/webpack/bootstrap","webpack://wp-seopress/webpack/runtime/compat get default export","webpack://wp-seopress/webpack/runtime/define property getters","webpack://wp-seopress/webpack/runtime/hasOwnProperty shorthand","webpack://wp-seopress/webpack/runtime/make namespace object","webpack://wp-seopress/./assets/js/src/primary-category-select.js"],"sourcesContent":["module.exports = window[\"wp\"][\"components\"];","module.exports = window[\"wp\"][\"data\"];","module.exports = window[\"wp\"][\"element\"];","module.exports = window[\"wp\"][\"i18n\"];","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = function(module) {\n\tvar getter = module && module.__esModule ?\n\t\tfunction() { return module['default']; } :\n\t\tfunction() { return module; };\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = function(exports, definition) {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }","// define __esModule on exports\n__webpack_require__.r = function(exports) {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","import { __ } from '@wordpress/i18n'\nimport { Component } from '@wordpress/element'\nimport { withSelect } from '@wordpress/data';\nimport { PanelRow, SelectControl } from '@wordpress/components'\n\nclass TermSelect extends Component {\n constructor() {\n super(...arguments);\n this.onChange = this.onChange.bind(this);\n this.updateMetabox = this.updateMetabox.bind(this);\n this.state = {\n primaryTermId: 'none',\n selectableTerms: [],\n }\n }\n\n componentDidMount() {\n const primaryTermId = this.props.primaryTermId || 'none';\n this.setState({ primaryTermId });\n this.metaboxField = document.querySelector('#seopress_robots_primary_cat');\n if (this.metaboxField) {\n this.metaboxField.addEventListener('change', e => {\n this.setState({ primaryTermId: e.target.value });\n });\n }\n }\n\n componentDidUpdate(prevProps, prevState) {\n // If available terms or selected terms have changed, check state.\n if (prevProps.allTerms !== this.props.allTerms || prevProps.selectedTermIds !== this.props.selectedTermIds) {\n const selectableTerms = this.props.allTerms && this.props.allTerms.length ? this.props.allTerms.filter(term => this.props.selectedTermIds.includes(term.id)) : [];\n const primaryTermId = !this.props.selectedTermIds.length || !this.props.selectedTermIds.includes(parseInt(this.state.primaryTermId)) ? 'none' : this.state.primaryTermId;\n this.setState({ selectableTerms, primaryTermId });\n }\n if (prevState.primaryTermId !== this.state.primaryTermId || prevState.selectableTerms !== this.state.selectableTerms) {\n this.updateMetabox(this.state.primaryTermId);\n }\n }\n\n updateMetabox(selectedTermId) {\n if (this.metaboxField) {\n const options = this.getOptions().map(option => {\n const selected = option.value == selectedTermId ? 'selected=\"selected\"' : '';\n return `<option value=\"${option.value}\" ${selected}>${option.label}</option>`;\n });\n this.metaboxField.value = selectedTermId;\n this.metaboxField.innerHTML = options.join('');\n }\n }\n\n getOptions() {\n return [\n { value: 'none', label: __('None (will disable this feature)', 'wp-seopress') },\n ...this.state.selectableTerms.map((term) => ({ value: term.id, label: term.name, }))\n ];\n }\n\n onChange(termId) {\n this.setState({ primaryTermId: termId });\n }\n\n render() {\n return !!this.state.selectableTerms.length && (\n <SelectControl\n label={__('Select a primary category', 'wp-seopress')}\n value={this.state.primaryTermId}\n options={this.getOptions()}\n onChange={this.onChange}\n />\n );\n }\n}\n\n\nconst PrimaryTermSelect = withSelect((select, { slug }) => {\n const taxonomy = select('core').getTaxonomy(slug);\n const selectedTermIds = taxonomy ? select('core/editor').getEditedPostAttribute(taxonomy.rest_base) : [];\n const allTerms = select('core').getEntityRecords('taxonomy', slug, { per_page: -1 }) || [];\n const primaryTermId = select('core/editor').getEditedPostAttribute('meta')['_seopress_robots_primary_cat'] || 'none';\n return { taxonomy, allTerms, primaryTermId, selectedTermIds }\n})(TermSelect);\n\n\nwp.hooks.addFilter(\n 'editor.PostTaxonomyType',\n 'wpseopress',\n (PostTaxonomies) => (props) => {\n return (\n <>\n <PostTaxonomies {...props} />\n {props.slug && 'category' === props.slug &&\n <PanelRow className=\"seopress-primary-term-picker\">\n <PrimaryTermSelect {...props} />\n </PanelRow>\n }\n </>\n );\n }\n)"],"names":["__","Component","withSelect","PanelRow","SelectControl","TermSelect","arguments","onChange","bind","updateMetabox","state","primaryTermId","selectableTerms","props","setState","metaboxField","document","querySelector","addEventListener","e","target","value","prevProps","prevState","allTerms","selectedTermIds","length","filter","term","includes","id","parseInt","selectedTermId","options","getOptions","map","option","selected","label","innerHTML","join","name","termId","PrimaryTermSelect","select","slug","taxonomy","getTaxonomy","getEditedPostAttribute","rest_base","getEntityRecords","per_page","wp","hooks","addFilter","PostTaxonomies"],"sourceRoot":""}
|
|
@@ -9,6 +9,7 @@ jQuery(document).ready(function ($) {
|
|
9 |
"notice-wizard",
|
10 |
"notice-insights-wizard",
|
11 |
"notice-seo-consultant",
|
|
|
12 |
"notice-tagdiv",
|
13 |
"notice-divide-comments",
|
14 |
"notice-review",
|
9 |
"notice-wizard",
|
10 |
"notice-insights-wizard",
|
11 |
"notice-seo-consultant",
|
12 |
+
"notice-amp-analytics",
|
13 |
"notice-tagdiv",
|
14 |
"notice-divide-comments",
|
15 |
"notice-review",
|
@@ -1 +1 @@
|
|
1 |
-
jQuery(document).ready(function(s){s.trim(s("#seopress-notifications-center").html())||s("#seopress-notifications-center").remove();const e=["notice-get-started","notice-usm","notice-wizard","notice-insights-wizard","notice-seo-consultant","notice-tagdiv","notice-divide-comments","notice-review","notice-trailingslash","notice-posts-number","notice-rss-use-excerpt","notice-ga-ids","notice-search-console","notice-google-business","notice-ssl","notice-title-tag","notice-enfold","notice-themes","notice-page-builders","notice-go-pro","notice-noindex","notice-tasks","notice-insights","notice-robots-txt","notice-robots-txt-valid"];e.forEach(function(e){s("#"+e).on("click",function(){s("#"+e).attr("data-notice","1"==s("#"+e).attr("data-notice")?"0":"1"),s.ajax({method:"POST",url:seopressAjaxHideNotices.seopress_hide_notices,data:{action:"seopress_hide_notices",notice:e,notice_value:s("#"+e).attr("data-notice"),_ajax_nonce:seopressAjaxHideNotices.seopress_nonce},success:function(t){s("#seopress-notice-save").css("display","block"),s("#seopress-notice-save .html").html("Notice successfully removed"),s("#"+e+"-alert").fadeOut(),s("#seopress-notice-save").delay(3500).fadeOut()}})})});const t=["titles","xml-sitemap","social","google-analytics","instant-indexing","advanced","local-business","woocommerce","edd","dublin-core","rich-snippets","breadcrumbs","inspect-url","robots","news","404","bot","rewrite","white-label"];t.forEach(function(e){s("#toggle-"+e).on("click",function(){s("#toggle-"+e).attr("data-toggle","1"==s("#toggle-"+e).attr("data-toggle")?"0":"1"),s(this).siblings("#titles-state-default").toggleClass("feature-state-off"),s(this).siblings("#titles-state").toggleClass("feature-state-off"),s.ajax({method:"POST",url:seopressAjaxToggleFeatures.seopress_toggle_features,data:{action:"seopress_toggle_features",feature:"toggle-"+e,feature_value:s("#toggle-"+e).attr("data-toggle"),_ajax_nonce:seopressAjaxToggleFeatures.seopress_nonce},success:function(){window.history.pushState("","",window.location.href+"&settings-updated=true"),s("#seopress-notice-save").show(),s("#seopress-notice-save").delay(3500).fadeOut(),window.history.pushState("","",window.location.href)}})})}),s("#seopress-activity-panel button").on("click",function(){s(this).toggleClass("is-active"),s("#seopress-activity-panel-"+s(this).data("panel")).toggleClass("is-open")}),s("#seopress-content").on("click",function(){s("#seopress-activity-panel").find(".is-open").toggleClass("is-open"),s("#seopress-activity-panel").find(".is-active").toggleClass("is-active")}),s(".seopress-item-toggle-options").on("click",function(){s(this).next(".seopress-card-popover").toggleClass("is-open")}),s("#seopress-news-items").on("click",function(){s.ajax({method:"POST",url:seopressAjaxNews.seopress_news,data:{action:"seopress_news",news_max_items:s("#news_max_items").val(),_ajax_nonce:seopressAjaxNews.seopress_nonce},success:function(e){s("#seopress-news-panel .seopress-card-content").load(" #seopress-news-panel .seopress-card-content"),s("#seopress-news-panel .seopress-card-popover").toggleClass("is-open")}})}),s("#seopress_news").on("click",function(){s("#seopress-news-panel").toggleClass("is-active"),s("#seopress_news").attr("data-toggle","1"==s("#seopress_news").attr("data-toggle")?"0":"1"),s.ajax({method:"POST",url:seopressAjaxDisplay.seopress_display,data:{action:"seopress_display",news_center:s("#seopress_news").attr("data-toggle"),_ajax_nonce:seopressAjaxDisplay.seopress_nonce}})}),s("#seopress_tools").on("click",function(){s("#notice-insights-alert").toggleClass("is-active"),s("#seopress_tools").attr("data-toggle","1"==s("#seopress_tools").attr("data-toggle")?"0":"1"),s.ajax({method:"POST",url:seopressAjaxDisplay.seopress_display,data:{action:"seopress_display",tools_center:s("#seopress_tools").attr("data-toggle"),_ajax_nonce:seopressAjaxDisplay.seopress_nonce}})}),s("#notifications_center").on("click",function(){s("#seopress-notifications-center").toggleClass("is-active"),s("#notifications_center").attr("data-toggle","1"==s("#notifications_center").attr("data-toggle")?"0":"1"),s.ajax({method:"POST",url:seopressAjaxDisplay.seopress_display,data:{action:"seopress_display",notifications_center:s("#notifications_center").attr("data-toggle"),_ajax_nonce:seopressAjaxDisplay.seopress_nonce}})})}),jQuery(document).ready(function(s){var e=window.location.hash,t=e.split("$");if("undefined"!=typeof sessionStorage){var a=sessionStorage.getItem("seopress_admin_tab");"1"==t[1]?(s("#tab_seopress_analytics-tab").addClass("nav-tab-active"),s("#tab_seopress_analytics").addClass("active")):"2"==t[1]?(s("#tab_seopress_seo_tools-tab").addClass("nav-tab-active"),s("#tab_seopress_seo_tools").addClass("active")):"3"==t[1]?(s("#tab_seopress_ps-tab").addClass("nav-tab-active"),s("#tab_seopress_ps_tools").addClass("active")):a?(s("#seopress-admin-tabs").find(".nav-tab.nav-tab-active").removeClass("nav-tab-active"),s("#seopress-admin-tabs").find(".seopress-tab.active").removeClass("active"),s("#"+a.split("#tab=")+"-tab").addClass("nav-tab-active"),s("#"+a.split("#tab=")).addClass("active")):(s("#seopress-admin-tabs a.nav-tab").first().addClass("nav-tab-active"),s("#seopress-admin-tabs .wrap-seopress-tab-content > div").first().addClass("active"))}s("#seopress-admin-tabs").find("a.nav-tab").click(function(e){e.preventDefault();var a=s(this).attr("href").split("#tab=")[1];s("#seopress-admin-tabs").find(".nav-tab.nav-tab-active").removeClass("nav-tab-active"),s("#"+a+"-tab").addClass("nav-tab-active"),1==t[1]?sessionStorage.setItem("seopress_admin_tab","tab_seopress_analytics"):2==t[1]?sessionStorage.setItem("seopress_admin_tab","tab_seopress_seo_tools"):3==t[1]?sessionStorage.setItem("seopress_admin_tab","tab_seopress_ps_tools"):sessionStorage.setItem("seopress_admin_tab",a),s("#seopress-admin-tabs").find(".seopress-tab.active").removeClass("active"),s("#"+a).addClass("active")}),s("#seopress-reverse-submit").on("click",function(){s.ajax({method:"GET",url:seopressAjaxReverse.seopress_request_reverse,data:{action:"seopress_request_reverse",_ajax_nonce:seopressAjaxReverse.seopress_nonce},success:function(s){window.location.reload(!0)}})}),s("#seopress-reverse-submit").on("click",function(){s(this).attr("disabled","disabled"),s("#spinner-reverse.spinner").css("visibility","visible"),s("#spinner-reverse.spinner").css("float","none")}),s(".seopress-dashboard-columns .seopress-dashboard-column:last-child").sortable({items:".seopress-card",placeholder:"sp-dashboard-card-highlight",cancel:".seopress-intro, .seopress-card-popover",handle:".seopress-card-title",opacity:.9,forcePlaceholderSize:!0,update:function(e){const t=jQuery(e.target);var a=t.sortable("toArray",{attribute:"id"});s.ajax({method:"POST",url:seopressAjaxDndFeatures.seopress_dnd_features,data:{action:"seopress_dnd_features",order:a,_ajax_nonce:seopressAjaxDndFeatures.seopress_nonce}})}})});
|
1 |
+
jQuery(document).ready(function(s){s.trim(s("#seopress-notifications-center").html())||s("#seopress-notifications-center").remove();const e=["notice-get-started","notice-usm","notice-wizard","notice-insights-wizard","notice-seo-consultant","notice-amp-analytics","notice-tagdiv","notice-divide-comments","notice-review","notice-trailingslash","notice-posts-number","notice-rss-use-excerpt","notice-ga-ids","notice-search-console","notice-google-business","notice-ssl","notice-title-tag","notice-enfold","notice-themes","notice-page-builders","notice-go-pro","notice-noindex","notice-tasks","notice-insights","notice-robots-txt","notice-robots-txt-valid"];e.forEach(function(e){s("#"+e).on("click",function(){s("#"+e).attr("data-notice","1"==s("#"+e).attr("data-notice")?"0":"1"),s.ajax({method:"POST",url:seopressAjaxHideNotices.seopress_hide_notices,data:{action:"seopress_hide_notices",notice:e,notice_value:s("#"+e).attr("data-notice"),_ajax_nonce:seopressAjaxHideNotices.seopress_nonce},success:function(t){s("#seopress-notice-save").css("display","block"),s("#seopress-notice-save .html").html("Notice successfully removed"),s("#"+e+"-alert").fadeOut(),s("#seopress-notice-save").delay(3500).fadeOut()}})})});const t=["titles","xml-sitemap","social","google-analytics","instant-indexing","advanced","local-business","woocommerce","edd","dublin-core","rich-snippets","breadcrumbs","inspect-url","robots","news","404","bot","rewrite","white-label"];t.forEach(function(e){s("#toggle-"+e).on("click",function(){s("#toggle-"+e).attr("data-toggle","1"==s("#toggle-"+e).attr("data-toggle")?"0":"1"),s(this).siblings("#titles-state-default").toggleClass("feature-state-off"),s(this).siblings("#titles-state").toggleClass("feature-state-off"),s.ajax({method:"POST",url:seopressAjaxToggleFeatures.seopress_toggle_features,data:{action:"seopress_toggle_features",feature:"toggle-"+e,feature_value:s("#toggle-"+e).attr("data-toggle"),_ajax_nonce:seopressAjaxToggleFeatures.seopress_nonce},success:function(){window.history.pushState("","",window.location.href+"&settings-updated=true"),s("#seopress-notice-save").show(),s("#seopress-notice-save").delay(3500).fadeOut(),window.history.pushState("","",window.location.href)}})})}),s("#seopress-activity-panel button").on("click",function(){s(this).toggleClass("is-active"),s("#seopress-activity-panel-"+s(this).data("panel")).toggleClass("is-open")}),s("#seopress-content").on("click",function(){s("#seopress-activity-panel").find(".is-open").toggleClass("is-open"),s("#seopress-activity-panel").find(".is-active").toggleClass("is-active")}),s(".seopress-item-toggle-options").on("click",function(){s(this).next(".seopress-card-popover").toggleClass("is-open")}),s("#seopress-news-items").on("click",function(){s.ajax({method:"POST",url:seopressAjaxNews.seopress_news,data:{action:"seopress_news",news_max_items:s("#news_max_items").val(),_ajax_nonce:seopressAjaxNews.seopress_nonce},success:function(e){s("#seopress-news-panel .seopress-card-content").load(" #seopress-news-panel .seopress-card-content"),s("#seopress-news-panel .seopress-card-popover").toggleClass("is-open")}})}),s("#seopress_news").on("click",function(){s("#seopress-news-panel").toggleClass("is-active"),s("#seopress_news").attr("data-toggle","1"==s("#seopress_news").attr("data-toggle")?"0":"1"),s.ajax({method:"POST",url:seopressAjaxDisplay.seopress_display,data:{action:"seopress_display",news_center:s("#seopress_news").attr("data-toggle"),_ajax_nonce:seopressAjaxDisplay.seopress_nonce}})}),s("#seopress_tools").on("click",function(){s("#notice-insights-alert").toggleClass("is-active"),s("#seopress_tools").attr("data-toggle","1"==s("#seopress_tools").attr("data-toggle")?"0":"1"),s.ajax({method:"POST",url:seopressAjaxDisplay.seopress_display,data:{action:"seopress_display",tools_center:s("#seopress_tools").attr("data-toggle"),_ajax_nonce:seopressAjaxDisplay.seopress_nonce}})}),s("#notifications_center").on("click",function(){s("#seopress-notifications-center").toggleClass("is-active"),s("#notifications_center").attr("data-toggle","1"==s("#notifications_center").attr("data-toggle")?"0":"1"),s.ajax({method:"POST",url:seopressAjaxDisplay.seopress_display,data:{action:"seopress_display",notifications_center:s("#notifications_center").attr("data-toggle"),_ajax_nonce:seopressAjaxDisplay.seopress_nonce}})})}),jQuery(document).ready(function(s){var e=window.location.hash,t=e.split("$");if("undefined"!=typeof sessionStorage){var a=sessionStorage.getItem("seopress_admin_tab");"1"==t[1]?(s("#tab_seopress_analytics-tab").addClass("nav-tab-active"),s("#tab_seopress_analytics").addClass("active")):"2"==t[1]?(s("#tab_seopress_seo_tools-tab").addClass("nav-tab-active"),s("#tab_seopress_seo_tools").addClass("active")):"3"==t[1]?(s("#tab_seopress_ps-tab").addClass("nav-tab-active"),s("#tab_seopress_ps_tools").addClass("active")):a?(s("#seopress-admin-tabs").find(".nav-tab.nav-tab-active").removeClass("nav-tab-active"),s("#seopress-admin-tabs").find(".seopress-tab.active").removeClass("active"),s("#"+a.split("#tab=")+"-tab").addClass("nav-tab-active"),s("#"+a.split("#tab=")).addClass("active")):(s("#seopress-admin-tabs a.nav-tab").first().addClass("nav-tab-active"),s("#seopress-admin-tabs .wrap-seopress-tab-content > div").first().addClass("active"))}s("#seopress-admin-tabs").find("a.nav-tab").click(function(e){e.preventDefault();var a=s(this).attr("href").split("#tab=")[1];s("#seopress-admin-tabs").find(".nav-tab.nav-tab-active").removeClass("nav-tab-active"),s("#"+a+"-tab").addClass("nav-tab-active"),1==t[1]?sessionStorage.setItem("seopress_admin_tab","tab_seopress_analytics"):2==t[1]?sessionStorage.setItem("seopress_admin_tab","tab_seopress_seo_tools"):3==t[1]?sessionStorage.setItem("seopress_admin_tab","tab_seopress_ps_tools"):sessionStorage.setItem("seopress_admin_tab",a),s("#seopress-admin-tabs").find(".seopress-tab.active").removeClass("active"),s("#"+a).addClass("active")}),s("#seopress-reverse-submit").on("click",function(){s.ajax({method:"GET",url:seopressAjaxReverse.seopress_request_reverse,data:{action:"seopress_request_reverse",_ajax_nonce:seopressAjaxReverse.seopress_nonce},success:function(s){window.location.reload(!0)}})}),s("#seopress-reverse-submit").on("click",function(){s(this).attr("disabled","disabled"),s("#spinner-reverse.spinner").css("visibility","visible"),s("#spinner-reverse.spinner").css("float","none")}),s(".seopress-dashboard-columns .seopress-dashboard-column:last-child").sortable({items:".seopress-card",placeholder:"sp-dashboard-card-highlight",cancel:".seopress-intro, .seopress-card-popover",handle:".seopress-card-title",opacity:.9,forcePlaceholderSize:!0,update:function(e){const t=jQuery(e.target);var a=t.sortable("toArray",{attribute:"id"});s.ajax({method:"POST",url:seopressAjaxDndFeatures.seopress_dnd_features,data:{action:"seopress_dnd_features",order:a,_ajax_nonce:seopressAjaxDndFeatures.seopress_nonce}})}})});
|
@@ -1,9 +0,0 @@
|
|
1 |
-
const accordions = document.querySelectorAll(".wpseopress-wrap-faq-question");
|
2 |
-
for (let i = 0; i < accordions.length; i++) {
|
3 |
-
accordions[i].addEventListener('click', function (e) {
|
4 |
-
var btn = this.nextElementSibling;
|
5 |
-
var aria = this.querySelector('.wpseopress-accordion-button');
|
6 |
-
btn.classList.toggle('wpseopress-hide');
|
7 |
-
aria.getAttribute('aria-expanded') === 'true' ? aria.setAttribute('aria-expanded', 'false') : aria.setAttribute('aria-expanded', 'true');
|
8 |
-
});
|
9 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,421 +0,0 @@
|
|
1 |
-
const { Fragment } = wp.element
|
2 |
-
|
3 |
-
import {
|
4 |
-
PanelBody,
|
5 |
-
Button,
|
6 |
-
ButtonGroup,
|
7 |
-
PanelRow,
|
8 |
-
ToggleControl,
|
9 |
-
} from '@wordpress/components'
|
10 |
-
|
11 |
-
const { __, _x } = wp.i18n
|
12 |
-
|
13 |
-
import { RichText, InspectorControls } from '@wordpress/block-editor'
|
14 |
-
import ImageControl from './image-control'
|
15 |
-
|
16 |
-
const { compose } = wp.compose
|
17 |
-
const { withSelect } = wp.data
|
18 |
-
|
19 |
-
function WPSeopress_FAQ(props) {
|
20 |
-
const { attributes } = props
|
21 |
-
const { listStyle, titleWrapper, imageSize, showFAQScheme, showAccordion, isProActive } = attributes
|
22 |
-
|
23 |
-
const showFAQs = () => {
|
24 |
-
return (
|
25 |
-
(attributes.listStyle === 'none' &&
|
26 |
-
attributes.faqs.map((faq, i) => (
|
27 |
-
<div key={i} className="wpseopress-faqs-area">
|
28 |
-
<div className="wpseopress-faq">
|
29 |
-
<RichText
|
30 |
-
tagName={attributes.titleWrapper}
|
31 |
-
className="wpseopress-faq-question"
|
32 |
-
placeholder={__('Question...', 'wp-seopress')}
|
33 |
-
value={!!faq ? faq.question : ''}
|
34 |
-
onChange={(value) =>
|
35 |
-
handleQuestionChange(value, i)
|
36 |
-
}
|
37 |
-
/>
|
38 |
-
<div className="wpseopress-answer-meta">
|
39 |
-
<ImageControl
|
40 |
-
value={!!faq ? faq.image : ''}
|
41 |
-
onSelect={handleImageChange}
|
42 |
-
onRemoveImage={onRemoveImage}
|
43 |
-
imageSize={attributes.imageSize}
|
44 |
-
index={i}
|
45 |
-
/>
|
46 |
-
<RichText
|
47 |
-
tagName="p"
|
48 |
-
className="wpseopress-faq-answer"
|
49 |
-
placeholder={__('Answer...', 'wp-seopress')}
|
50 |
-
value={!!faq ? faq.answer : ''}
|
51 |
-
onChange={(value) =>
|
52 |
-
handleAnswerChange(value, i)
|
53 |
-
}
|
54 |
-
/>
|
55 |
-
</div>
|
56 |
-
</div>
|
57 |
-
<div className="wpseopress-faq-cta">
|
58 |
-
<button
|
59 |
-
className="components-button is-tertiary is-destructive"
|
60 |
-
value={__('Remove', 'wp-seopress')}
|
61 |
-
onClick={() => removeFAQ(i)}
|
62 |
-
>
|
63 |
-
{__('Remove', 'wp-seopress')}
|
64 |
-
</button>
|
65 |
-
</div>
|
66 |
-
</div>
|
67 |
-
))) ||
|
68 |
-
((attributes.listStyle === 'ul' || attributes.listStyle === 'ol') &&
|
69 |
-
attributes.faqs.map((faq, i) => (
|
70 |
-
<li key={i} className="wpseopress-faqs-area">
|
71 |
-
<div className="wpseopress-faq">
|
72 |
-
<RichText
|
73 |
-
tagName={attributes.titleWrapper}
|
74 |
-
className="wpseopress-faq-question"
|
75 |
-
placeholder={__('Question...', 'wp-seopress')}
|
76 |
-
value={!!faq ? faq.question : ''}
|
77 |
-
onChange={(value) =>
|
78 |
-
handleQuestionChange(value, i)
|
79 |
-
}
|
80 |
-
/>
|
81 |
-
<div className="wpseopress-answer-meta">
|
82 |
-
<ImageControl
|
83 |
-
value={!!faq ? faq.image : ''}
|
84 |
-
onSelect={handleImageChange}
|
85 |
-
onRemoveImage={onRemoveImage}
|
86 |
-
imageSize={attributes.imageSize}
|
87 |
-
index={i}
|
88 |
-
/>
|
89 |
-
<RichText
|
90 |
-
tagName="div"
|
91 |
-
className="wpseopress-faq-answer"
|
92 |
-
placeholder={__('Answer...', 'wp-seopress')}
|
93 |
-
value={!!faq ? faq.answer : ''}
|
94 |
-
onChange={(value) =>
|
95 |
-
handleAnswerChange(value, i)
|
96 |
-
}
|
97 |
-
/>
|
98 |
-
</div>
|
99 |
-
</div>
|
100 |
-
<div className="wpseopress-faq-cta">
|
101 |
-
<button
|
102 |
-
className="components-button is-tertiary is-destructive"
|
103 |
-
value={__('Remove', 'wp-seopress')}
|
104 |
-
onClick={() => removeFAQ(i)}
|
105 |
-
>
|
106 |
-
{__('Remove', 'wp-seopress')}
|
107 |
-
</button>
|
108 |
-
</div>
|
109 |
-
</li>
|
110 |
-
)))
|
111 |
-
) // End return
|
112 |
-
}
|
113 |
-
|
114 |
-
const addFAQ = () => {
|
115 |
-
props.setAttributes({
|
116 |
-
faqs: [...attributes.faqs, { question: '', answer: '', image: '' }],
|
117 |
-
})
|
118 |
-
}
|
119 |
-
|
120 |
-
const removeFAQ = (i) => {
|
121 |
-
const faqs = attributes.faqs.filter((item, key) => key !== i)
|
122 |
-
props.setAttributes({ faqs: faqs })
|
123 |
-
}
|
124 |
-
|
125 |
-
const handleQuestionChange = (value, i) => {
|
126 |
-
const faqs = attributes.faqs.map((faq, key) => {
|
127 |
-
if (key !== i) {
|
128 |
-
return faq
|
129 |
-
}
|
130 |
-
|
131 |
-
return {
|
132 |
-
...faq,
|
133 |
-
question: value,
|
134 |
-
}
|
135 |
-
})
|
136 |
-
props.setAttributes({ faqs: faqs })
|
137 |
-
}
|
138 |
-
|
139 |
-
const handleAnswerChange = (value, i) => {
|
140 |
-
const faqs = attributes.faqs.map((faq, key) => {
|
141 |
-
if (key !== i) {
|
142 |
-
return faq
|
143 |
-
}
|
144 |
-
|
145 |
-
return {
|
146 |
-
...faq,
|
147 |
-
answer: value,
|
148 |
-
}
|
149 |
-
})
|
150 |
-
|
151 |
-
props.setAttributes({ faqs: faqs })
|
152 |
-
}
|
153 |
-
|
154 |
-
const handleImageChange = (value, i) => {
|
155 |
-
const faqs = attributes.faqs.map((faq, key) => {
|
156 |
-
if (key !== i) {
|
157 |
-
return faq
|
158 |
-
}
|
159 |
-
|
160 |
-
return {
|
161 |
-
...faq,
|
162 |
-
image: value,
|
163 |
-
}
|
164 |
-
})
|
165 |
-
|
166 |
-
props.setAttributes({ faqs: faqs })
|
167 |
-
}
|
168 |
-
|
169 |
-
const onRemoveImage = (i) => {
|
170 |
-
const faqs = attributes.faqs.map((faq, key) => {
|
171 |
-
if (key !== i) {
|
172 |
-
return faq
|
173 |
-
}
|
174 |
-
|
175 |
-
return {
|
176 |
-
...faq,
|
177 |
-
image: null,
|
178 |
-
}
|
179 |
-
})
|
180 |
-
props.setAttributes({ faqs: faqs })
|
181 |
-
}
|
182 |
-
|
183 |
-
const inspectorControls = (
|
184 |
-
<InspectorControls>
|
185 |
-
<PanelBody title={__('FAQ Settings', 'wp-seopress')}>
|
186 |
-
<p>{__('List Style', 'wp-seopress')}</p>
|
187 |
-
<PanelRow className="wpseopress-faqs-list-style">
|
188 |
-
<ButtonGroup>
|
189 |
-
<Button
|
190 |
-
isSecondary
|
191 |
-
isPrimary={'none' == listStyle ? true : false}
|
192 |
-
onClick={(e) => {
|
193 |
-
props.setAttributes({
|
194 |
-
listStyle: 'none',
|
195 |
-
})
|
196 |
-
}}
|
197 |
-
>
|
198 |
-
{_x('NONE', 'Div tag List', 'wp-seopress')}
|
199 |
-
</Button>
|
200 |
-
<Button
|
201 |
-
isSecondary
|
202 |
-
isPrimary={'ol' == listStyle ? true : false}
|
203 |
-
onClick={(e) => {
|
204 |
-
props.setAttributes({
|
205 |
-
listStyle: 'ol',
|
206 |
-
})
|
207 |
-
}}
|
208 |
-
>
|
209 |
-
{_x('OL', 'Numbered List', 'wp-seopress')}
|
210 |
-
</Button>
|
211 |
-
<Button
|
212 |
-
isSecondary
|
213 |
-
isPrimary={'ul' == listStyle ? true : false}
|
214 |
-
onClick={(e) => {
|
215 |
-
props.setAttributes({
|
216 |
-
listStyle: 'ul',
|
217 |
-
})
|
218 |
-
}}
|
219 |
-
>
|
220 |
-
{_x('UL', 'Unordered List', 'wp-seopress')}
|
221 |
-
</Button>
|
222 |
-
</ButtonGroup>
|
223 |
-
</PanelRow>
|
224 |
-
<p>{__('Title Wrapper', 'wp-seopress')}</p>
|
225 |
-
<PanelRow className="wpseopress-faqs-title-wrapper">
|
226 |
-
<ButtonGroup>
|
227 |
-
<Button
|
228 |
-
isSecondary
|
229 |
-
isPrimary={'h2' == titleWrapper ? true : false}
|
230 |
-
onClick={(e) => {
|
231 |
-
props.setAttributes({
|
232 |
-
titleWrapper: 'h2',
|
233 |
-
})
|
234 |
-
}}
|
235 |
-
>
|
236 |
-
{_x('H2', 'H2 title tag', 'wp-seopress')}
|
237 |
-
</Button>
|
238 |
-
<Button
|
239 |
-
isSecondary
|
240 |
-
isPrimary={'h3' == titleWrapper ? true : false}
|
241 |
-
onClick={(e) => {
|
242 |
-
props.setAttributes({
|
243 |
-
titleWrapper: 'h3',
|
244 |
-
})
|
245 |
-
}}
|
246 |
-
>
|
247 |
-
{_x('H3', 'H3 title tag', 'wp-seopress')}
|
248 |
-
</Button>
|
249 |
-
<Button
|
250 |
-
isSecondary
|
251 |
-
isPrimary={'h4' == titleWrapper ? true : false}
|
252 |
-
onClick={(e) => {
|
253 |
-
props.setAttributes({
|
254 |
-
titleWrapper: 'h4',
|
255 |
-
})
|
256 |
-
}}
|
257 |
-
>
|
258 |
-
{_x('H4', 'H4 title tag', 'wp-seopress')}
|
259 |
-
</Button>
|
260 |
-
<Button
|
261 |
-
isSecondary
|
262 |
-
isPrimary={'h5' == titleWrapper ? true : false}
|
263 |
-
onClick={(e) => {
|
264 |
-
props.setAttributes({
|
265 |
-
titleWrapper: 'h5',
|
266 |
-
})
|
267 |
-
}}
|
268 |
-
>
|
269 |
-
{_x('H5', 'H5 title tag', 'wp-seopress')}
|
270 |
-
</Button>
|
271 |
-
<Button
|
272 |
-
isSecondary
|
273 |
-
isPrimary={'h6' == titleWrapper ? true : false}
|
274 |
-
onClick={(e) => {
|
275 |
-
props.setAttributes({
|
276 |
-
titleWrapper: 'h6',
|
277 |
-
})
|
278 |
-
}}
|
279 |
-
>
|
280 |
-
{_x('H6', 'H6 title tag', 'wp-seopress')}
|
281 |
-
</Button>
|
282 |
-
<Button
|
283 |
-
isSecondary
|
284 |
-
isPrimary={'p' == titleWrapper ? true : false}
|
285 |
-
onClick={(e) => {
|
286 |
-
props.setAttributes({
|
287 |
-
titleWrapper: 'p',
|
288 |
-
})
|
289 |
-
}}
|
290 |
-
>
|
291 |
-
{_x('P', 'P title tag', 'wp-seopress')}
|
292 |
-
</Button>
|
293 |
-
<Button
|
294 |
-
isSecondary
|
295 |
-
isPrimary={'div' == titleWrapper ? true : false}
|
296 |
-
onClick={(e) => {
|
297 |
-
props.setAttributes({
|
298 |
-
titleWrapper: 'div',
|
299 |
-
})
|
300 |
-
}}
|
301 |
-
>
|
302 |
-
{_x('DIV', 'DIV title tag', 'wp-seopress')}
|
303 |
-
</Button>
|
304 |
-
</ButtonGroup>
|
305 |
-
</PanelRow>
|
306 |
-
<p>{__('Image Size', 'wp-seopress')}</p>
|
307 |
-
<PanelRow className="wpseopress-faqs-image-size">
|
308 |
-
<ButtonGroup>
|
309 |
-
<Button
|
310 |
-
isSecondary
|
311 |
-
isPrimary={'thumbnail' == imageSize ? true : false}
|
312 |
-
onClick={(e) => {
|
313 |
-
props.setAttributes({
|
314 |
-
imageSize: 'thumbnail',
|
315 |
-
})
|
316 |
-
}}
|
317 |
-
>
|
318 |
-
{_x('S', 'Thubmnail Size', 'wp-seopress')}
|
319 |
-
</Button>
|
320 |
-
<Button
|
321 |
-
isSecondary
|
322 |
-
isPrimary={'medium' == imageSize ? true : false}
|
323 |
-
onClick={(e) => {
|
324 |
-
props.setAttributes({
|
325 |
-
imageSize: 'medium',
|
326 |
-
})
|
327 |
-
}}
|
328 |
-
>
|
329 |
-
{_x('M', 'Medium Size', 'wp-seopress')}
|
330 |
-
</Button>
|
331 |
-
<Button
|
332 |
-
isSecondary
|
333 |
-
isPrimary={'large' == imageSize ? true : false}
|
334 |
-
onClick={(e) => {
|
335 |
-
props.setAttributes({
|
336 |
-
imageSize: 'large',
|
337 |
-
})
|
338 |
-
}}
|
339 |
-
>
|
340 |
-
{_x('L', 'Large Size', 'wp-seopress')}
|
341 |
-
</Button>
|
342 |
-
<Button
|
343 |
-
isSecondary
|
344 |
-
isPrimary={'full' == imageSize ? true : false}
|
345 |
-
onClick={(e) => {
|
346 |
-
props.setAttributes({
|
347 |
-
imageSize: 'full',
|
348 |
-
})
|
349 |
-
}}
|
350 |
-
>
|
351 |
-
{_x('XL', 'Original Size', 'wp-seopress')}
|
352 |
-
</Button>
|
353 |
-
</ButtonGroup>
|
354 |
-
</PanelRow>
|
355 |
-
{isProActive &&
|
356 |
-
<>
|
357 |
-
<p>{__('SEO Settings', 'wp-seopress')}</p>
|
358 |
-
<PanelRow>
|
359 |
-
<ToggleControl
|
360 |
-
label={__('Enable FAQ Schema', 'wp-seopress')}
|
361 |
-
checked={!!showFAQScheme}
|
362 |
-
onChange={(e) => {
|
363 |
-
props.setAttributes({
|
364 |
-
showFAQScheme: !showFAQScheme,
|
365 |
-
})
|
366 |
-
}}
|
367 |
-
/>
|
368 |
-
</PanelRow>
|
369 |
-
</>
|
370 |
-
}
|
371 |
-
<p>{__('Display', 'wp-seopress')}</p>
|
372 |
-
<PanelRow>
|
373 |
-
<ToggleControl
|
374 |
-
label={__('Enable accordion', 'wp-seopress')}
|
375 |
-
checked={!!showAccordion}
|
376 |
-
onChange={(e) => {
|
377 |
-
props.setAttributes({
|
378 |
-
showAccordion: !showAccordion,
|
379 |
-
})
|
380 |
-
}}
|
381 |
-
/>
|
382 |
-
</PanelRow>
|
383 |
-
</PanelBody>
|
384 |
-
</InspectorControls>
|
385 |
-
)
|
386 |
-
|
387 |
-
return (
|
388 |
-
<Fragment>
|
389 |
-
{inspectorControls}
|
390 |
-
<div className="wpseopress-faqs">
|
391 |
-
{listStyle === 'ul' && <ul>{showFAQs()}</ul>}
|
392 |
-
{listStyle === 'ol' && <ol>{showFAQs()}</ol>}
|
393 |
-
{listStyle === 'none' && showFAQs()}
|
394 |
-
<div className="wpseopress-faqs-actions">
|
395 |
-
<button
|
396 |
-
type="button"
|
397 |
-
title={__('Add FAQ', 'wp-seopress')}
|
398 |
-
className="add-faq components-button is-secondary"
|
399 |
-
onClick={(e) => {
|
400 |
-
e.preventDefault()
|
401 |
-
addFAQ()
|
402 |
-
}}
|
403 |
-
>
|
404 |
-
{__('Add FAQ', 'wp-seopress')}
|
405 |
-
</button>
|
406 |
-
</div>
|
407 |
-
</div>
|
408 |
-
</Fragment>
|
409 |
-
)
|
410 |
-
}
|
411 |
-
|
412 |
-
export default compose(
|
413 |
-
withSelect((select, { attributes }) => {
|
414 |
-
const { getMedia } = select('core')
|
415 |
-
const { selectedImageId } = attributes
|
416 |
-
|
417 |
-
return {
|
418 |
-
selectedImage: selectedImageId ? getMedia(selectedImageId) : 0,
|
419 |
-
}
|
420 |
-
})
|
421 |
-
)(WPSeopress_FAQ)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,37 +0,0 @@
|
|
1 |
-
.wpseopress-faqs-actions {
|
2 |
-
border: 1px solid #1e1e1e;
|
3 |
-
padding: 1rem;
|
4 |
-
background: #fff;
|
5 |
-
margin-top: 1rem;
|
6 |
-
}
|
7 |
-
.wpseopress-answer-meta {
|
8 |
-
.wp-block-wp-seopress-image {
|
9 |
-
.components-button.editor-post-featured-image__preview {
|
10 |
-
text-align: left;
|
11 |
-
}
|
12 |
-
}
|
13 |
-
}
|
14 |
-
.wpseopress-faq-cta {
|
15 |
-
display: flex;
|
16 |
-
justify-content: flex-end;
|
17 |
-
}
|
18 |
-
|
19 |
-
.wpseopress-faqs-list-style,
|
20 |
-
.wpseopress-faqs-title-wrapper,
|
21 |
-
.wpseopress-faqs-image-size {
|
22 |
-
button.components-button.is-primary {
|
23 |
-
background-color: #007cba;
|
24 |
-
color: #ffffff;
|
25 |
-
border-color: #007cba;
|
26 |
-
box-shadow: inset 0 0 0 1px #007cba;
|
27 |
-
&:hover:not(:disabled) {
|
28 |
-
color: #ffffff;
|
29 |
-
}
|
30 |
-
}
|
31 |
-
}
|
32 |
-
|
33 |
-
.components-panel__body {
|
34 |
-
& > p {
|
35 |
-
margin: 15px 0 0 0;
|
36 |
-
}
|
37 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,131 +0,0 @@
|
|
1 |
-
const wp = window.wp
|
2 |
-
const { withSelect } = wp.data
|
3 |
-
const { Component } = wp.element
|
4 |
-
import { MediaUpload, MediaUploadCheck } from '@wordpress/block-editor'
|
5 |
-
const { Spinner, Button, ResponsiveWrapper } = wp.components
|
6 |
-
const { compose } = wp.compose
|
7 |
-
const { __ } = wp.i18n
|
8 |
-
|
9 |
-
const ALLOWED_MEDIA_TYPES = ['image']
|
10 |
-
|
11 |
-
function ImageControl(props) {
|
12 |
-
const { value, image } = props
|
13 |
-
|
14 |
-
const onUpdateImage = (image) => {
|
15 |
-
props.onSelect(image.id, props.index)
|
16 |
-
}
|
17 |
-
|
18 |
-
const onRemoveImage = () => {
|
19 |
-
props.onRemoveImage(props.index)
|
20 |
-
}
|
21 |
-
|
22 |
-
const getImageSize = (image) => {
|
23 |
-
let imgSize = null
|
24 |
-
|
25 |
-
try {
|
26 |
-
if (undefined != image) {
|
27 |
-
imgSize = {}
|
28 |
-
imgSize.source_url = image.guid.raw
|
29 |
-
|
30 |
-
if (undefined != image.media_details.sizes) {
|
31 |
-
imgSize = null
|
32 |
-
switch (props.imageSize) {
|
33 |
-
case 'thumbnail':
|
34 |
-
imgSize =
|
35 |
-
undefined != image
|
36 |
-
? image.media_details.sizes.thumbnail
|
37 |
-
: null
|
38 |
-
break
|
39 |
-
case 'medium':
|
40 |
-
imgSize =
|
41 |
-
undefined != image
|
42 |
-
? image.media_details.sizes.medium
|
43 |
-
: null
|
44 |
-
break
|
45 |
-
case 'large':
|
46 |
-
imgSize =
|
47 |
-
undefined != image
|
48 |
-
? undefined !=
|
49 |
-
image.media_details.sizes.large
|
50 |
-
? image.media_details.sizes.large
|
51 |
-
: image.media_details.sizes.medium_large
|
52 |
-
: null
|
53 |
-
break
|
54 |
-
default:
|
55 |
-
imgSize =
|
56 |
-
undefined != image
|
57 |
-
? image.media_details.sizes.full
|
58 |
-
: null
|
59 |
-
}
|
60 |
-
}
|
61 |
-
}
|
62 |
-
return imgSize
|
63 |
-
} catch (error) {
|
64 |
-
return imgSize
|
65 |
-
}
|
66 |
-
}
|
67 |
-
|
68 |
-
const instructions = (
|
69 |
-
<p>
|
70 |
-
{__(
|
71 |
-
'To edit the background image, you need permission to upload media.',
|
72 |
-
'wp-seopress'
|
73 |
-
)}
|
74 |
-
</p>
|
75 |
-
)
|
76 |
-
|
77 |
-
return (
|
78 |
-
<div className="wp-block-wp-seopress-image">
|
79 |
-
<MediaUploadCheck fallback={instructions}>
|
80 |
-
<MediaUpload
|
81 |
-
title={__('Set Image', 'wp-seopress')}
|
82 |
-
onSelect={onUpdateImage}
|
83 |
-
allowedTypes={ALLOWED_MEDIA_TYPES}
|
84 |
-
value={value}
|
85 |
-
render={({ open }) => {
|
86 |
-
const imageSize = getImageSize(image)
|
87 |
-
return (
|
88 |
-
<Button
|
89 |
-
className={
|
90 |
-
!value
|
91 |
-
? 'editor-post-featured-image__toggle'
|
92 |
-
: 'editor-post-featured-image__preview'
|
93 |
-
}
|
94 |
-
onClick={open}
|
95 |
-
>
|
96 |
-
{!value && __('Set Image', 'wp-seopress')}
|
97 |
-
{!!value && !image && <Spinner />}
|
98 |
-
{!!value &&
|
99 |
-
image &&
|
100 |
-
imageSize &&
|
101 |
-
imageSize.source_url && (
|
102 |
-
<img
|
103 |
-
src={imageSize.source_url}
|
104 |
-
alt={__('Set Image', 'wp-seopress')}
|
105 |
-
/>
|
106 |
-
)}
|
107 |
-
</Button>
|
108 |
-
)
|
109 |
-
}}
|
110 |
-
/>
|
111 |
-
</MediaUploadCheck>
|
112 |
-
{!!value && (
|
113 |
-
<MediaUploadCheck>
|
114 |
-
<Button onClick={onRemoveImage} isLink isDestructive>
|
115 |
-
{__('Remove Image', 'wp-seopress')}
|
116 |
-
</Button>
|
117 |
-
</MediaUploadCheck>
|
118 |
-
)}
|
119 |
-
</div>
|
120 |
-
)
|
121 |
-
}
|
122 |
-
|
123 |
-
export default compose(
|
124 |
-
withSelect((select, ownProps) => {
|
125 |
-
return {
|
126 |
-
image: ownProps.value
|
127 |
-
? select('core').getMedia(ownProps.value)
|
128 |
-
: null,
|
129 |
-
}
|
130 |
-
})
|
131 |
-
)(ImageControl)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,15 +0,0 @@
|
|
1 |
-
import './editor.scss'
|
2 |
-
import './style.scss'
|
3 |
-
import edit from './edit'
|
4 |
-
import { registerBlockType } from '@wordpress/blocks'
|
5 |
-
import { __ } from '@wordpress/i18n'
|
6 |
-
registerBlockType('wpseopress/faq-block', {
|
7 |
-
title: __('FAQ', 'wp-seopress'),
|
8 |
-
icon: 'index-card',
|
9 |
-
category: 'wpseopress',
|
10 |
-
example: {},
|
11 |
-
edit: edit,
|
12 |
-
save() {
|
13 |
-
return null
|
14 |
-
},
|
15 |
-
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
File without changes
|
@@ -1,34 +0,0 @@
|
|
1 |
-
import { __ } from '@wordpress/i18n';
|
2 |
-
import { Notice } from '@wordpress/components';
|
3 |
-
import { useBlockProps } from '@wordpress/block-editor';
|
4 |
-
import { withSelect } from '@wordpress/data';
|
5 |
-
import Inspector from './inspector.js';
|
6 |
-
import ServerSideRender from '@wordpress/server-side-render';
|
7 |
-
import './editor.scss';
|
8 |
-
|
9 |
-
export default function edit({ attributes, setAttributes }) {
|
10 |
-
const { isSiteMapEnabled, optionsPageUrl } = attributes;
|
11 |
-
const notice = __('It looks like the Sitemap feature is not enabled from your SEO settings. You must activate it to use this block. Make sure the HTML sitemap option is also enabled.', 'wp-seopress');
|
12 |
-
const noticeActions = [{ label: __('Review settings', 'wp-seopress'), url: optionsPageUrl, variant: 'primary', isPrimary: true, noDefaultClasses: true }];
|
13 |
-
const excludes = ['attachment', 'wp_navigation', 'nav_menu_item', 'wp_block', 'wp_template', 'wp_template_part', 'wp_navigation'];
|
14 |
-
|
15 |
-
const Settings = withSelect((select, props) => {
|
16 |
-
let allPostTypes = select('core').getPostTypes() || [];
|
17 |
-
let allowedPostTypes = [];
|
18 |
-
if (allPostTypes && allPostTypes.length) allowedPostTypes = allPostTypes.filter(postType => !excludes.includes(postType.slug));
|
19 |
-
return { allowedPostTypes, ...props };
|
20 |
-
})(Inspector);
|
21 |
-
|
22 |
-
return (
|
23 |
-
<div {...useBlockProps()}>
|
24 |
-
<Settings attributes={attributes} setAttributes={setAttributes} />
|
25 |
-
{isSiteMapEnabled
|
26 |
-
? <ServerSideRender
|
27 |
-
block="wpseopress/sitemap"
|
28 |
-
attributes={attributes}
|
29 |
-
/>
|
30 |
-
: <Notice status="warning" isDismissible={false} actions={noticeActions}><p>{notice}</p></Notice>
|
31 |
-
}
|
32 |
-
</div>
|
33 |
-
);
|
34 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,5 +0,0 @@
|
|
1 |
-
.wp-block-wpseopress-sitemap {
|
2 |
-
.components-notice__content {
|
3 |
-
color: initial;
|
4 |
-
}
|
5 |
-
}
|
|
|
|
|
|
|
|
|
|
@@ -1,11 +0,0 @@
|
|
1 |
-
import { __ } from '@wordpress/i18n';
|
2 |
-
import { registerBlockType } from '@wordpress/blocks';
|
3 |
-
import edit from './edit';
|
4 |
-
|
5 |
-
registerBlockType('wpseopress/sitemap', {
|
6 |
-
title: __('Sitemap', 'wp-seopress'),
|
7 |
-
description: __('Display an HTML sitemap.', 'wp-seopress'),
|
8 |
-
keywords: [__('sitemap', 'wp-seopress'), __('navigation', 'wp-seopress')],
|
9 |
-
edit,
|
10 |
-
save: () => null
|
11 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,39 +0,0 @@
|
|
1 |
-
import { __ } from '@wordpress/i18n';
|
2 |
-
import { InspectorControls } from '@wordpress/block-editor';
|
3 |
-
import { PanelBody, CheckboxControl } from "@wordpress/components";
|
4 |
-
|
5 |
-
const Inspector = ({ attributes, setAttributes, allowedPostTypes }) => {
|
6 |
-
const onChange = slug => {
|
7 |
-
let postTypes = [...attributes.postTypes];
|
8 |
-
if (postTypes.includes(slug)) {
|
9 |
-
postTypes = postTypes.filter(postType => postType !== slug);
|
10 |
-
} else {
|
11 |
-
postTypes.push(slug);
|
12 |
-
}
|
13 |
-
setAttributes({ postTypes });
|
14 |
-
}
|
15 |
-
return (
|
16 |
-
<InspectorControls>
|
17 |
-
<PanelBody title={__('Post types to display', 'wp-seopress')}>
|
18 |
-
{allowedPostTypes &&
|
19 |
-
<>
|
20 |
-
<p>{__('By default, if you have not selected any post types below, we’ll automatically take the ones set from the Sitemap setting page.', 'wp-seopress')}</p>
|
21 |
-
<ul>
|
22 |
-
{allowedPostTypes.map(postType => (
|
23 |
-
<li key={postType.slug}>
|
24 |
-
<CheckboxControl
|
25 |
-
label={postType.name}
|
26 |
-
checked={attributes.postTypes.includes(postType.slug)}
|
27 |
-
onChange={e => onChange(postType.slug)}
|
28 |
-
/>
|
29 |
-
</li>
|
30 |
-
))}
|
31 |
-
</ul>
|
32 |
-
</>
|
33 |
-
}
|
34 |
-
</PanelBody>
|
35 |
-
</InspectorControls>
|
36 |
-
);
|
37 |
-
}
|
38 |
-
|
39 |
-
export default Inspector;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,108 +0,0 @@
|
|
1 |
-
import { __ } from '@wordpress/i18n'
|
2 |
-
import { Component } from '@wordpress/element'
|
3 |
-
import { withSelect } from '@wordpress/data';
|
4 |
-
import { PanelRow, SelectControl } from '@wordpress/components'
|
5 |
-
|
6 |
-
class TermSelect extends Component {
|
7 |
-
constructor() {
|
8 |
-
super(...arguments);
|
9 |
-
this.onChange = this.onChange.bind(this);
|
10 |
-
this.updateMetabox = this.updateMetabox.bind(this);
|
11 |
-
this.onMetaboxChange = this.onMetaboxChange.bind(this);
|
12 |
-
this.state = {
|
13 |
-
primaryTermId: 'none',
|
14 |
-
selectableTerms: [],
|
15 |
-
}
|
16 |
-
}
|
17 |
-
|
18 |
-
componentDidMount() {
|
19 |
-
const primaryTermId = this.props.primaryTermId || 'none';
|
20 |
-
this.setState({ primaryTermId });
|
21 |
-
this.metaboxField = document.querySelector('#seopress_robots_primary_cat');
|
22 |
-
if (this.metaboxField) {
|
23 |
-
this.metaboxField.addEventListener('change', this.onMetaboxChange);
|
24 |
-
}
|
25 |
-
}
|
26 |
-
|
27 |
-
componentWillUnmount() {
|
28 |
-
if (this.metaboxField) {
|
29 |
-
this.metaboxField.removeEventListener('change', this.onMetaboxChange);
|
30 |
-
}
|
31 |
-
}
|
32 |
-
|
33 |
-
componentDidUpdate(prevProps, prevState) {
|
34 |
-
// If available terms or selected terms have changed, check state.
|
35 |
-
if (prevProps.allTerms !== this.props.allTerms || prevProps.selectedTermIds !== this.props.selectedTermIds) {
|
36 |
-
const selectableTerms = this.props.allTerms && this.props.allTerms.length ? this.props.allTerms.filter(term => this.props.selectedTermIds.includes(term.id)) : [];
|
37 |
-
const primaryTermId = !this.props.selectedTermIds.length || !this.props.selectedTermIds.includes(parseInt(this.state.primaryTermId)) ? 'none' : this.state.primaryTermId;
|
38 |
-
this.setState({ selectableTerms, primaryTermId });
|
39 |
-
}
|
40 |
-
if (prevState.primaryTermId !== this.state.primaryTermId || prevState.selectableTerms !== this.state.selectableTerms) {
|
41 |
-
this.updateMetabox(this.state.primaryTermId);
|
42 |
-
}
|
43 |
-
}
|
44 |
-
|
45 |
-
updateMetabox(selectedTermId) {
|
46 |
-
if (this.metaboxField && this.state.selectableTerms && this.state.selectableTerms.length) {
|
47 |
-
const options = this.getOptions().map(option => {
|
48 |
-
const selected = option.value == selectedTermId ? 'selected="selected"' : '';
|
49 |
-
return `<option value="${option.value}" ${selected}>${option.label}</option>`;
|
50 |
-
});
|
51 |
-
this.metaboxField.value = selectedTermId;
|
52 |
-
this.metaboxField.innerHTML = options.join('');
|
53 |
-
}
|
54 |
-
}
|
55 |
-
|
56 |
-
getOptions() {
|
57 |
-
return [
|
58 |
-
{ value: 'none', label: __('None (will disable this feature)', 'wp-seopress') },
|
59 |
-
...this.state.selectableTerms.map((term) => ({ value: term.id, label: term.name, }))
|
60 |
-
];
|
61 |
-
}
|
62 |
-
|
63 |
-
onChange(termId) {
|
64 |
-
this.setState({ primaryTermId: termId });
|
65 |
-
}
|
66 |
-
|
67 |
-
onMetaboxChange(e) {
|
68 |
-
this.setState({ primaryTermId: e.target.value });
|
69 |
-
}
|
70 |
-
|
71 |
-
render() {
|
72 |
-
return !!this.metaboxField && !!this.state.selectableTerms.length && (
|
73 |
-
<SelectControl
|
74 |
-
label={__('Select a primary category', 'wp-seopress')}
|
75 |
-
value={this.state.primaryTermId}
|
76 |
-
options={this.getOptions()}
|
77 |
-
onChange={this.onChange}
|
78 |
-
/>
|
79 |
-
);
|
80 |
-
}
|
81 |
-
}
|
82 |
-
|
83 |
-
|
84 |
-
const PrimaryTermSelect = withSelect((select, { slug }) => {
|
85 |
-
const taxonomy = select('core').getTaxonomy(slug);
|
86 |
-
const selectedTermIds = taxonomy ? select('core/editor').getEditedPostAttribute(taxonomy.rest_base) : [];
|
87 |
-
const allTerms = select('core').getEntityRecords('taxonomy', slug, { per_page: -1, context: 'view' }) || [];
|
88 |
-
const primaryTermId = select('core/editor').getEditedPostAttribute('meta')['_seopress_robots_primary_cat'] || 'none';
|
89 |
-
return { taxonomy, allTerms, primaryTermId, selectedTermIds }
|
90 |
-
})(TermSelect);
|
91 |
-
|
92 |
-
|
93 |
-
wp.hooks.addFilter(
|
94 |
-
'editor.PostTaxonomyType',
|
95 |
-
'wpseopress',
|
96 |
-
(PostTaxonomies) => (props) => {
|
97 |
-
return (
|
98 |
-
<>
|
99 |
-
<PostTaxonomies {...props} />
|
100 |
-
{props.slug && 'category' === props.slug &&
|
101 |
-
<PanelRow className="seopress-primary-term-picker">
|
102 |
-
<PrimaryTermSelect {...props} />
|
103 |
-
</PanelRow>
|
104 |
-
}
|
105 |
-
</>
|
106 |
-
);
|
107 |
-
}
|
108 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -59,6 +59,7 @@ echo '</div>'; ?>
|
|
59 |
<div class="seopress-tab <?php if ('tab_seopress_google_analytics_matomo' == $current_tab) {
|
60 |
echo 'active';
|
61 |
} ?>" id="tab_seopress_google_analytics_matomo"><?php do_settings_sections('seopress-settings-admin-google-analytics-matomo'); ?>
|
|
|
62 |
</div>
|
63 |
<div class="seopress-tab <?php if ('tab_seopress_google_analytics_clarity' == $current_tab) {
|
64 |
echo 'active';
|
59 |
<div class="seopress-tab <?php if ('tab_seopress_google_analytics_matomo' == $current_tab) {
|
60 |
echo 'active';
|
61 |
} ?>" id="tab_seopress_google_analytics_matomo"><?php do_settings_sections('seopress-settings-admin-google-analytics-matomo'); ?>
|
62 |
+
<?php do_settings_sections('seopress-settings-admin-google-analytics-matomo-widget'); ?>
|
63 |
</div>
|
64 |
<div class="seopress-tab <?php if ('tab_seopress_google_analytics_clarity' == $current_tab) {
|
65 |
echo 'active';
|
@@ -64,7 +64,7 @@ if ('1' != seopress_get_hidden_notices_get_started_option()) {
|
|
64 |
$cards = [
|
65 |
'notice-insights-alert' => '/blocks/insights.php',
|
66 |
'seopress-news-panel' => '/blocks/news.php',
|
67 |
-
'seopress-page-list' => '/
|
68 |
];
|
69 |
|
70 |
$order = seopress_dashboard_cards_order_option();
|
64 |
$cards = [
|
65 |
'notice-insights-alert' => '/blocks/insights.php',
|
66 |
'seopress-news-panel' => '/blocks/news.php',
|
67 |
+
'seopress-page-list' => '/blocks/features-list.php'
|
68 |
];
|
69 |
|
70 |
$order = seopress_dashboard_cards_order_option();
|
@@ -167,14 +167,24 @@ class seopress_options
|
|
167 |
if (defined('SEOPRESS_WPMAIN_VERSION')) {
|
168 |
return;
|
169 |
}
|
170 |
-
|
|
|
171 |
$seopress_instant_indexing_option_name = get_option('seopress_instant_indexing_option_name');
|
172 |
|
173 |
//Init if option doesn't exist
|
174 |
if (false === $seopress_instant_indexing_option_name) {
|
|
|
|
|
175 |
if ('1' == seopress_get_toggle_option('instant-indexing')) {
|
176 |
-
seopress_instant_indexing_generate_api_key_fn();
|
177 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
178 |
}
|
179 |
}
|
180 |
|
@@ -284,3 +294,19 @@ class seopress_options
|
|
284 |
if (is_admin()) {
|
285 |
$my_settings_page = new seopress_options();
|
286 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
if (defined('SEOPRESS_WPMAIN_VERSION')) {
|
168 |
return;
|
169 |
}
|
170 |
+
|
171 |
+
//IndewNow======================================================================================
|
172 |
$seopress_instant_indexing_option_name = get_option('seopress_instant_indexing_option_name');
|
173 |
|
174 |
//Init if option doesn't exist
|
175 |
if (false === $seopress_instant_indexing_option_name) {
|
176 |
+
$seopress_instant_indexing_option_name = [];
|
177 |
+
|
178 |
if ('1' == seopress_get_toggle_option('instant-indexing')) {
|
179 |
+
seopress_instant_indexing_generate_api_key_fn(true);
|
180 |
}
|
181 |
+
|
182 |
+
$seopress_instant_indexing_option_name['seopress_instant_indexing_automate_submission'] = '1';
|
183 |
+
}
|
184 |
+
|
185 |
+
//Check if the value is an array (important!)
|
186 |
+
if (is_array($seopress_instant_indexing_option_name)) {
|
187 |
+
add_option('seopress_instant_indexing_option_name', $seopress_instant_indexing_option_name);
|
188 |
}
|
189 |
}
|
190 |
|
294 |
if (is_admin()) {
|
295 |
$my_settings_page = new seopress_options();
|
296 |
}
|
297 |
+
|
298 |
+
/**
|
299 |
+
* Automatically flush permalinks after saving XML sitemaps global settings
|
300 |
+
* @since 6.0.0
|
301 |
+
*
|
302 |
+
* @param string $option
|
303 |
+
* @param string $old_value
|
304 |
+
* @param string $value
|
305 |
+
*
|
306 |
+
* @return void
|
307 |
+
*/
|
308 |
+
add_action('updated_option', function( $option, $old_value, $value ) {
|
309 |
+
if ($option ==='seopress_xml_sitemap_option_name') {
|
310 |
+
flush_rewrite_rules(false);
|
311 |
+
}
|
312 |
+
}, 10, 3);
|
@@ -186,6 +186,10 @@ function seopress_do_real_preview()
|
|
186 |
|
187 |
$seopress_get_the_content = apply_filters('seopress_content_analysis_content', $seopress_get_the_content, $seopress_get_the_id);
|
188 |
|
|
|
|
|
|
|
|
|
189 |
//Bricks compatibility
|
190 |
if (defined('BRICKS_DB_EDITOR_MODE') && ('bricks' == $theme->template || 'Bricks' == $theme->parent_theme)) {
|
191 |
$page_sections = get_post_meta($seopress_get_the_id, BRICKS_DB_PAGE_CONTENT, true);
|
@@ -402,7 +406,7 @@ function seopress_do_real_preview()
|
|
402 |
//Keywords density
|
403 |
if (! is_plugin_active('oxygen/functions.php') && ! function_exists('ct_template_output')) { //disable for Oxygen
|
404 |
foreach ($seopress_analysis_target_kw as $kw) {
|
405 |
-
if (preg_match_all('#\b(' . $kw . ')\b#iu', stripslashes_deep(wp_strip_all_tags(
|
406 |
$data['kws_density']['matches'][$kw][] = $m[0];
|
407 |
}
|
408 |
}
|
@@ -421,7 +425,7 @@ function seopress_do_real_preview()
|
|
421 |
|
422 |
if (isset($kw_slug)) {
|
423 |
foreach ($seopress_analysis_target_kw as $kw) {
|
424 |
-
if (preg_match_all('#\b(' . remove_accents($kw) . ')\b#iu', strip_tags(
|
425 |
$data['kws_permalink']['matches'][$kw][] = $m[0];
|
426 |
}
|
427 |
}
|
@@ -551,7 +555,7 @@ function seopress_do_real_preview()
|
|
551 |
//Words Counter
|
552 |
if (! is_plugin_active('oxygen/functions.php') && ! function_exists('ct_template_output')) { //disable for Oxygen
|
553 |
if ('' != $seopress_get_the_content) {
|
554 |
-
$data['words_counter'] = preg_match_all("/\p{L}[\p{L}\p{Mn}\p{Pd}'\x{2019}]*/u", wp_strip_all_tags(
|
555 |
|
556 |
if (! empty($matches[0])) {
|
557 |
$words_counter_unique = count(array_unique($matches[0]));
|
186 |
|
187 |
$seopress_get_the_content = apply_filters('seopress_content_analysis_content', $seopress_get_the_content, $seopress_get_the_id);
|
188 |
|
189 |
+
if (defined('WP_DEBUG') && WP_DEBUG === true) {
|
190 |
+
$data['analyzed_content'] = $seopress_get_the_content;
|
191 |
+
}
|
192 |
+
|
193 |
//Bricks compatibility
|
194 |
if (defined('BRICKS_DB_EDITOR_MODE') && ('bricks' == $theme->template || 'Bricks' == $theme->parent_theme)) {
|
195 |
$page_sections = get_post_meta($seopress_get_the_id, BRICKS_DB_PAGE_CONTENT, true);
|
406 |
//Keywords density
|
407 |
if (! is_plugin_active('oxygen/functions.php') && ! function_exists('ct_template_output')) { //disable for Oxygen
|
408 |
foreach ($seopress_analysis_target_kw as $kw) {
|
409 |
+
if (preg_match_all('#\b(' . $kw . ')\b#iu', stripslashes_deep(wp_strip_all_tags($seopress_get_the_content)), $m)) {
|
410 |
$data['kws_density']['matches'][$kw][] = $m[0];
|
411 |
}
|
412 |
}
|
425 |
|
426 |
if (isset($kw_slug)) {
|
427 |
foreach ($seopress_analysis_target_kw as $kw) {
|
428 |
+
if (preg_match_all('#\b(' . remove_accents($kw) . ')\b#iu', strip_tags($kw_slug), $m)) {
|
429 |
$data['kws_permalink']['matches'][$kw][] = $m[0];
|
430 |
}
|
431 |
}
|
555 |
//Words Counter
|
556 |
if (! is_plugin_active('oxygen/functions.php') && ! function_exists('ct_template_output')) { //disable for Oxygen
|
557 |
if ('' != $seopress_get_the_content) {
|
558 |
+
$data['words_counter'] = preg_match_all("/\p{L}[\p{L}\p{Mn}\p{Pd}'\x{2019}]*/u", normalize_whitespace(wp_strip_all_tags($seopress_get_the_content)), $matches);
|
559 |
|
560 |
if (! empty($matches[0])) {
|
561 |
$words_counter_unique = count(array_unique($matches[0]));
|
File without changes
|
@@ -11,15 +11,7 @@
|
|
11 |
//Notifications Center
|
12 |
function seopress_advanced_appearance_notifications_option()
|
13 |
{
|
14 |
-
|
15 |
-
if (! empty($seopress_advanced_appearance_notifications_option)) {
|
16 |
-
foreach ($seopress_advanced_appearance_notifications_option as $key => $seopress_advanced_appearance_notifications_value) {
|
17 |
-
$options[$key] = $seopress_advanced_appearance_notifications_value;
|
18 |
-
}
|
19 |
-
if (isset($seopress_advanced_appearance_notifications_option['seopress_advanced_appearance_notifications'])) {
|
20 |
-
return $seopress_advanced_appearance_notifications_option['seopress_advanced_appearance_notifications'];
|
21 |
-
}
|
22 |
-
}
|
23 |
}
|
24 |
?>
|
25 |
|
@@ -38,15 +30,7 @@
|
|
38 |
}
|
39 |
function seopress_get_hidden_notices_review_option()
|
40 |
{
|
41 |
-
|
42 |
-
if (! empty($seopress_get_hidden_notices_review_option)) {
|
43 |
-
foreach ($seopress_get_hidden_notices_review_option as $key => $seopress_get_hidden_notices_review_value) {
|
44 |
-
$options[$key] = $seopress_get_hidden_notices_review_value;
|
45 |
-
}
|
46 |
-
if (isset($seopress_get_hidden_notices_review_option['notice-review'])) {
|
47 |
-
return $seopress_get_hidden_notices_review_option['notice-review'];
|
48 |
-
}
|
49 |
-
}
|
50 |
}
|
51 |
if ('1' != seopress_get_hidden_notices_review_option()) {
|
52 |
$args = [
|
@@ -68,15 +52,7 @@
|
|
68 |
}
|
69 |
function seopress_get_hidden_notices_usm_option()
|
70 |
{
|
71 |
-
|
72 |
-
if (! empty($seopress_get_hidden_notices_usm_option)) {
|
73 |
-
foreach ($seopress_get_hidden_notices_usm_option as $key => $seopress_get_hidden_notices_usm_value) {
|
74 |
-
$options[$key] = $seopress_get_hidden_notices_usm_value;
|
75 |
-
}
|
76 |
-
if (isset($seopress_get_hidden_notices_usm_option['notice-usm'])) {
|
77 |
-
return $seopress_get_hidden_notices_usm_option['notice-usm'];
|
78 |
-
}
|
79 |
-
}
|
80 |
}
|
81 |
if ('1' != seopress_get_hidden_notices_usm_option() && seopress_advanced_appearance_universal_metabox_option() !== '1') {
|
82 |
$args = [
|
@@ -98,15 +74,7 @@
|
|
98 |
}
|
99 |
function seopress_get_hidden_notices_wizard_option()
|
100 |
{
|
101 |
-
|
102 |
-
if (! empty($seopress_get_hidden_notices_wizard_option)) {
|
103 |
-
foreach ($seopress_get_hidden_notices_wizard_option as $key => $seopress_get_hidden_notices_wizard_value) {
|
104 |
-
$options[$key] = $seopress_get_hidden_notices_wizard_value;
|
105 |
-
}
|
106 |
-
if (isset($seopress_get_hidden_notices_wizard_option['notice-wizard'])) {
|
107 |
-
return $seopress_get_hidden_notices_wizard_option['notice-wizard'];
|
108 |
-
}
|
109 |
-
}
|
110 |
}
|
111 |
if ('1' != seopress_get_hidden_notices_wizard_option()) {
|
112 |
$args = [
|
@@ -129,15 +97,7 @@
|
|
129 |
if (is_plugin_active('wp-seopress-insights/seopress-insights.php')) {
|
130 |
function seopress_get_hidden_notices_insights_wizard_option()
|
131 |
{
|
132 |
-
|
133 |
-
if (! empty($seopress_get_hidden_notices_insights_wizard_option)) {
|
134 |
-
foreach ($seopress_get_hidden_notices_insights_wizard_option as $key => $seopress_get_hidden_notices_insights_wizard_value) {
|
135 |
-
$options[$key] = $seopress_get_hidden_notices_insights_wizard_value;
|
136 |
-
}
|
137 |
-
if (isset($seopress_get_hidden_notices_insights_wizard_option['notice-insights-wizard'])) {
|
138 |
-
return $seopress_get_hidden_notices_insights_wizard_option['notice-insights-wizard'];
|
139 |
-
}
|
140 |
-
}
|
141 |
}
|
142 |
if ('1' != seopress_get_hidden_notices_insights_wizard_option()) {
|
143 |
$args = [
|
@@ -160,15 +120,7 @@
|
|
160 |
}
|
161 |
function seopress_get_hidden_notices_seo_consultant_option()
|
162 |
{
|
163 |
-
|
164 |
-
if (! empty($seopress_get_hidden_notices_seo_consultant_option)) {
|
165 |
-
foreach ($seopress_get_hidden_notices_seo_consultant_option as $key => $seopress_get_hidden_notices_seo_consultant_value) {
|
166 |
-
$options[$key] = $seopress_get_hidden_notices_seo_consultant_value;
|
167 |
-
}
|
168 |
-
if (isset($seopress_get_hidden_notices_seo_consultant_option['notice-seo-consultant'])) {
|
169 |
-
return $seopress_get_hidden_notices_seo_consultant_option['notice-seo-consultant'];
|
170 |
-
}
|
171 |
-
}
|
172 |
}
|
173 |
if ('1' != seopress_get_hidden_notices_seo_consultant_option()) {
|
174 |
$args = [
|
@@ -189,6 +141,34 @@
|
|
189 |
];
|
190 |
seopress_notification($args);
|
191 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
192 |
//DIVI SEO options conflict
|
193 |
$theme = wp_get_theme();
|
194 |
if ('Divi' == $theme->template || 'Divi' == $theme->parent_theme) {
|
@@ -228,15 +208,7 @@
|
|
228 |
if (is_plugin_active('td-composer/td-composer.php')) {
|
229 |
function seopress_get_hidden_notices_tagdiv_option()
|
230 |
{
|
231 |
-
|
232 |
-
if (! empty($seopress_get_hidden_notices_tagdiv_option)) {
|
233 |
-
foreach ($seopress_get_hidden_notices_tagdiv_option as $key => $seopress_get_hidden_notices_tagdiv_value) {
|
234 |
-
$options[$key] = $seopress_get_hidden_notices_tagdiv_value;
|
235 |
-
}
|
236 |
-
if (isset($seopress_get_hidden_notices_tagdiv_option['notice-tagdiv'])) {
|
237 |
-
return $seopress_get_hidden_notices_tagdiv_option['notice-tagdiv'];
|
238 |
-
}
|
239 |
-
}
|
240 |
}
|
241 |
if ('1' != seopress_get_hidden_notices_tagdiv_option()) {
|
242 |
$args = [
|
@@ -261,15 +233,7 @@
|
|
261 |
if ('1' != get_theme_support('title-tag') && true !== wp_is_block_theme()) {
|
262 |
function seopress_get_hidden_notices_title_tag_option()
|
263 |
{
|
264 |
-
|
265 |
-
if (! empty($seopress_get_hidden_notices_title_tag_option)) {
|
266 |
-
foreach ($seopress_get_hidden_notices_title_tag_option as $key => $seopress_get_hidden_notices_title_tag_value) {
|
267 |
-
$options[$key] = $seopress_get_hidden_notices_title_tag_value;
|
268 |
-
}
|
269 |
-
if (isset($seopress_get_hidden_notices_title_tag_option['notice-title-tag'])) {
|
270 |
-
return $seopress_get_hidden_notices_title_tag_option['notice-title-tag'];
|
271 |
-
}
|
272 |
-
}
|
273 |
}
|
274 |
if ('1' != seopress_get_hidden_notices_title_tag_option()) {
|
275 |
$args = [
|
@@ -294,28 +258,12 @@
|
|
294 |
if (is_plugin_active('swift-performance-lite/performance.php')) {
|
295 |
function seopress_get_swift_performance_sitemap_option()
|
296 |
{
|
297 |
-
|
298 |
-
if (! empty($seopress_get_swift_performance_sitemap_option)) {
|
299 |
-
foreach ($seopress_get_swift_performance_sitemap_option as $key => $seopress_get_swift_performance_sitemap_value) {
|
300 |
-
$options[$key] = $seopress_get_swift_performance_sitemap_value;
|
301 |
-
}
|
302 |
-
if (isset($seopress_get_swift_performance_sitemap_option['cache-sitemap'])) {
|
303 |
-
return $seopress_get_swift_performance_sitemap_option['cache-sitemap'];
|
304 |
-
}
|
305 |
-
}
|
306 |
}
|
307 |
if (seopress_get_swift_performance_sitemap_option() === "1") {
|
308 |
function seopress_get_hidden_notices_swift_option()
|
309 |
{
|
310 |
-
|
311 |
-
if (! empty($seopress_get_hidden_notices_swift_option)) {
|
312 |
-
foreach ($seopress_get_hidden_notices_swift_option as $key => $seopress_get_hidden_notices_swift_value) {
|
313 |
-
$options[$key] = $seopress_get_hidden_notices_swift_value;
|
314 |
-
}
|
315 |
-
if (isset($seopress_get_hidden_notices_swift_option['notice-swift'])) {
|
316 |
-
return $seopress_get_hidden_notices_swift_option['notice-swift'];
|
317 |
-
}
|
318 |
-
}
|
319 |
}
|
320 |
$args = [
|
321 |
'id' => 'notice-swift',
|
@@ -419,15 +367,7 @@
|
|
419 |
if ('plugin' != $avia_options_enfold['avia']['seo_robots'] || 'plugin' != $avia_options_enfold_child['avia']['seo_robots']) {
|
420 |
function seopress_get_hidden_notices_enfold_option()
|
421 |
{
|
422 |
-
|
423 |
-
if (! empty($seopress_get_hidden_notices_enfold_option)) {
|
424 |
-
foreach ($seopress_get_hidden_notices_enfold_option as $key => $seopress_get_hidden_notices_enfold_value) {
|
425 |
-
$options[$key] = $seopress_get_hidden_notices_enfold_value;
|
426 |
-
}
|
427 |
-
if (isset($seopress_get_hidden_notices_enfold_option['notice-enfold'])) {
|
428 |
-
return $seopress_get_hidden_notices_enfold_option['notice-enfold'];
|
429 |
-
}
|
430 |
-
}
|
431 |
}
|
432 |
if ('1' != seopress_get_hidden_notices_enfold_option()) {
|
433 |
$args = [
|
@@ -529,15 +469,7 @@
|
|
529 |
if (! is_ssl()) {
|
530 |
function seopress_get_hidden_notices_ssl_option()
|
531 |
{
|
532 |
-
|
533 |
-
if (! empty($seopress_get_hidden_notices_ssl_option)) {
|
534 |
-
foreach ($seopress_get_hidden_notices_ssl_option as $key => $seopress_get_hidden_notices_ssl_value) {
|
535 |
-
$options[$key] = $seopress_get_hidden_notices_ssl_value;
|
536 |
-
}
|
537 |
-
if (isset($seopress_get_hidden_notices_ssl_option['notice-ssl'])) {
|
538 |
-
return $seopress_get_hidden_notices_ssl_option['notice-ssl'];
|
539 |
-
}
|
540 |
-
}
|
541 |
}
|
542 |
if ('1' != seopress_get_hidden_notices_ssl_option()) {
|
543 |
$args = [
|
@@ -597,28 +529,12 @@
|
|
597 |
if (! function_exists('seopress_titles_noindex_option')) {
|
598 |
function seopress_titles_noindex_option()
|
599 |
{
|
600 |
-
|
601 |
-
if (! empty($seopress_titles_noindex_option)) {
|
602 |
-
foreach ($seopress_titles_noindex_option as $key => $seopress_titles_noindex_value) {
|
603 |
-
$options[$key] = $seopress_titles_noindex_value;
|
604 |
-
}
|
605 |
-
if (isset($seopress_titles_noindex_option['seopress_titles_noindex'])) {
|
606 |
-
return $seopress_titles_noindex_option['seopress_titles_noindex'];
|
607 |
-
}
|
608 |
-
}
|
609 |
}
|
610 |
}
|
611 |
function seopress_get_hidden_notices_noindex_option()
|
612 |
{
|
613 |
-
|
614 |
-
if (! empty($seopress_get_hidden_notices_noindex_option)) {
|
615 |
-
foreach ($seopress_get_hidden_notices_noindex_option as $key => $seopress_get_hidden_notices_noindex_value) {
|
616 |
-
$options[$key] = $seopress_get_hidden_notices_noindex_value;
|
617 |
-
}
|
618 |
-
if (isset($seopress_get_hidden_notices_noindex_option['notice-noindex'])) {
|
619 |
-
return $seopress_get_hidden_notices_noindex_option['notice-noindex'];
|
620 |
-
}
|
621 |
-
}
|
622 |
}
|
623 |
if ('1' != seopress_get_hidden_notices_noindex_option()) {
|
624 |
if ('1' == seopress_titles_noindex_option() || '1' != get_option('blog_public')) {
|
@@ -678,15 +594,7 @@
|
|
678 |
if ('0' == get_option('rss_use_excerpt')) {
|
679 |
function seopress_get_hidden_notices_rss_use_excerpt_option()
|
680 |
{
|
681 |
-
|
682 |
-
if (! empty($seopress_get_hidden_notices_rss_use_excerpt_option)) {
|
683 |
-
foreach ($seopress_get_hidden_notices_rss_use_excerpt_option as $key => $seopress_get_hidden_notices_rss_use_excerpt_value) {
|
684 |
-
$options[$key] = $seopress_get_hidden_notices_rss_use_excerpt_value;
|
685 |
-
}
|
686 |
-
if (isset($seopress_get_hidden_notices_rss_use_excerpt_option['notice-rss-use-excerpt'])) {
|
687 |
-
return $seopress_get_hidden_notices_rss_use_excerpt_option['notice-rss-use-excerpt'];
|
688 |
-
}
|
689 |
-
}
|
690 |
}
|
691 |
if ('1' != seopress_get_hidden_notices_rss_use_excerpt_option()) {
|
692 |
$args = [
|
@@ -710,52 +618,20 @@
|
|
710 |
|
711 |
function seopress_ga_enable_option()
|
712 |
{
|
713 |
-
|
714 |
-
if (! empty($seopress_ga_enable_option)) {
|
715 |
-
foreach ($seopress_ga_enable_option as $key => $seopress_ga_enable_value) {
|
716 |
-
$options[$key] = $seopress_ga_enable_value;
|
717 |
-
}
|
718 |
-
if (isset($seopress_ga_enable_option['seopress_google_analytics_enable'])) {
|
719 |
-
return $seopress_ga_enable_option['seopress_google_analytics_enable'];
|
720 |
-
}
|
721 |
-
}
|
722 |
}
|
723 |
function seopress_ga_ua_option()
|
724 |
{
|
725 |
-
|
726 |
-
if (! empty($seopress_ga_ua_option)) {
|
727 |
-
foreach ($seopress_ga_ua_option as $key => $seopress_ga_ua_value) {
|
728 |
-
$options[$key] = $seopress_ga_ua_value;
|
729 |
-
}
|
730 |
-
if (isset($seopress_ga_ua_option['seopress_google_analytics_ua'])) {
|
731 |
-
return $seopress_ga_ua_option['seopress_google_analytics_ua'];
|
732 |
-
}
|
733 |
-
}
|
734 |
}
|
735 |
function seopress_ga4_option()
|
736 |
{
|
737 |
-
|
738 |
-
if (! empty($seopress_ga4_option)) {
|
739 |
-
foreach ($seopress_ga4_option as $key => $seopress_ga4_value) {
|
740 |
-
$options[$key] = $seopress_ga4_value;
|
741 |
-
}
|
742 |
-
if (isset($seopress_ga4_option['seopress_google_analytics_ga4'])) {
|
743 |
-
return $seopress_ga4_option['seopress_google_analytics_ga4'];
|
744 |
-
}
|
745 |
-
}
|
746 |
}
|
747 |
if ('' === seopress_ga_ua_option() && '' === seopress_ga4_option() && '1' === seopress_ga_enable_option()) {
|
748 |
function seopress_get_hidden_notices_analytics_option()
|
749 |
{
|
750 |
-
|
751 |
-
if (! empty($seopress_get_hidden_notices_analytics_option)) {
|
752 |
-
foreach ($seopress_get_hidden_notices_analytics_option as $key => $seopress_get_hidden_notices_analytics_value) {
|
753 |
-
$options[$key] = $seopress_get_hidden_notices_analytics_value;
|
754 |
-
}
|
755 |
-
if (isset($seopress_get_hidden_notices_analytics_option['notice-ga-ids'])) {
|
756 |
-
return $seopress_get_hidden_notices_analytics_option['notice-ga-ids'];
|
757 |
-
}
|
758 |
-
}
|
759 |
}
|
760 |
if ('1' != seopress_get_hidden_notices_analytics_option()) {
|
761 |
$args = [
|
@@ -779,15 +655,7 @@
|
|
779 |
if ('1' == get_option('page_comments')) {
|
780 |
function seopress_get_hidden_notices_divide_comments_option()
|
781 |
{
|
782 |
-
|
783 |
-
if (! empty($seopress_get_hidden_notices_divide_comments_option)) {
|
784 |
-
foreach ($seopress_get_hidden_notices_divide_comments_option as $key => $seopress_get_hidden_notices_divide_comments_value) {
|
785 |
-
$options[$key] = $seopress_get_hidden_notices_divide_comments_value;
|
786 |
-
}
|
787 |
-
if (isset($seopress_get_hidden_notices_divide_comments_option['notice-divide-comments'])) {
|
788 |
-
return $seopress_get_hidden_notices_divide_comments_option['notice-divide-comments'];
|
789 |
-
}
|
790 |
-
}
|
791 |
}
|
792 |
if ('1' != seopress_get_hidden_notices_divide_comments_option()) {
|
793 |
$args = [
|
@@ -811,15 +679,7 @@
|
|
811 |
if (get_option('posts_per_page') < '16') {
|
812 |
function seopress_get_hidden_notices_posts_number_option()
|
813 |
{
|
814 |
-
|
815 |
-
if (! empty($seopress_get_hidden_notices_posts_number_option)) {
|
816 |
-
foreach ($seopress_get_hidden_notices_posts_number_option as $key => $seopress_get_hidden_notices_posts_number_value) {
|
817 |
-
$options[$key] = $seopress_get_hidden_notices_posts_number_value;
|
818 |
-
}
|
819 |
-
if (isset($seopress_get_hidden_notices_posts_number_option['notice-posts-number'])) {
|
820 |
-
return $seopress_get_hidden_notices_posts_number_option['notice-posts-number'];
|
821 |
-
}
|
822 |
-
}
|
823 |
}
|
824 |
if ('1' != seopress_get_hidden_notices_posts_number_option()) {
|
825 |
$args = [
|
@@ -859,15 +719,7 @@
|
|
859 |
}
|
860 |
function seopress_get_hidden_notices_google_business_option()
|
861 |
{
|
862 |
-
|
863 |
-
if (! empty($seopress_get_hidden_notices_google_business_option)) {
|
864 |
-
foreach ($seopress_get_hidden_notices_google_business_option as $key => $seopress_get_hidden_notices_google_business_value) {
|
865 |
-
$options[$key] = $seopress_get_hidden_notices_google_business_value;
|
866 |
-
}
|
867 |
-
if (isset($seopress_get_hidden_notices_google_business_option['notice-google-business'])) {
|
868 |
-
return $seopress_get_hidden_notices_google_business_option['notice-google-business'];
|
869 |
-
}
|
870 |
-
}
|
871 |
}
|
872 |
if ('1' != seopress_get_hidden_notices_google_business_option()) {
|
873 |
$args = [
|
@@ -888,27 +740,11 @@
|
|
888 |
}
|
889 |
function seopress_get_hidden_notices_search_console_option()
|
890 |
{
|
891 |
-
|
892 |
-
if (! empty($seopress_get_hidden_notices_search_console_option)) {
|
893 |
-
foreach ($seopress_get_hidden_notices_search_console_option as $key => $seopress_get_hidden_notices_search_console_value) {
|
894 |
-
$options[$key] = $seopress_get_hidden_notices_search_console_value;
|
895 |
-
}
|
896 |
-
if (isset($seopress_get_hidden_notices_search_console_option['notice-search-console'])) {
|
897 |
-
return $seopress_get_hidden_notices_search_console_option['notice-search-console'];
|
898 |
-
}
|
899 |
-
}
|
900 |
}
|
901 |
function seopress_get_google_site_verification_option()
|
902 |
{
|
903 |
-
|
904 |
-
if (! empty($seopress_get_google_site_verification_option)) {
|
905 |
-
foreach ($seopress_get_google_site_verification_option as $key => $seopress_get_google_site_verification_value) {
|
906 |
-
$options[$key] = $seopress_get_google_site_verification_value;
|
907 |
-
}
|
908 |
-
if (isset($seopress_get_google_site_verification_option['seopress_advanced_advanced_google'])) {
|
909 |
-
return $seopress_get_google_site_verification_option['seopress_advanced_advanced_google'];
|
910 |
-
}
|
911 |
-
}
|
912 |
}
|
913 |
if ('1' != seopress_get_hidden_notices_search_console_option() && '' == seopress_get_google_site_verification_option()) {
|
914 |
$args = [
|
@@ -968,15 +804,7 @@
|
|
968 |
if (! is_plugin_active('wp-seopress-pro/seopress-pro.php')) {
|
969 |
function seopress_get_hidden_notices_go_pro_option()
|
970 |
{
|
971 |
-
|
972 |
-
if (! empty($seopress_get_hidden_notices_go_pro_option)) {
|
973 |
-
foreach ($seopress_get_hidden_notices_go_pro_option as $key => $seopress_get_hidden_notices_go_pro_value) {
|
974 |
-
$options[$key] = $seopress_get_hidden_notices_go_pro_value;
|
975 |
-
}
|
976 |
-
if (isset($seopress_get_hidden_notices_go_pro_option['notice-go-pro'])) {
|
977 |
-
return $seopress_get_hidden_notices_go_pro_option['notice-go-pro'];
|
978 |
-
}
|
979 |
-
}
|
980 |
}
|
981 |
if ('1' != seopress_get_hidden_notices_go_pro_option() && '' == seopress_get_hidden_notices_go_pro_option()) {
|
982 |
$args = [
|
11 |
//Notifications Center
|
12 |
function seopress_advanced_appearance_notifications_option()
|
13 |
{
|
14 |
+
return seopress_get_service('AdvancedOption')->getAppearanceNotification();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
}
|
16 |
?>
|
17 |
|
30 |
}
|
31 |
function seopress_get_hidden_notices_review_option()
|
32 |
{
|
33 |
+
return seopress_get_service('NoticeOption')->getNoticeReview();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
}
|
35 |
if ('1' != seopress_get_hidden_notices_review_option()) {
|
36 |
$args = [
|
52 |
}
|
53 |
function seopress_get_hidden_notices_usm_option()
|
54 |
{
|
55 |
+
return seopress_get_service('NoticeOption')->getNoticeUSM();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
}
|
57 |
if ('1' != seopress_get_hidden_notices_usm_option() && seopress_advanced_appearance_universal_metabox_option() !== '1') {
|
58 |
$args = [
|
74 |
}
|
75 |
function seopress_get_hidden_notices_wizard_option()
|
76 |
{
|
77 |
+
return seopress_get_service('NoticeOption')->getNoticeWizard();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
}
|
79 |
if ('1' != seopress_get_hidden_notices_wizard_option()) {
|
80 |
$args = [
|
97 |
if (is_plugin_active('wp-seopress-insights/seopress-insights.php')) {
|
98 |
function seopress_get_hidden_notices_insights_wizard_option()
|
99 |
{
|
100 |
+
return seopress_get_service('NoticeOption')->getNoticeInsightsWizard();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
}
|
102 |
if ('1' != seopress_get_hidden_notices_insights_wizard_option()) {
|
103 |
$args = [
|
120 |
}
|
121 |
function seopress_get_hidden_notices_seo_consultant_option()
|
122 |
{
|
123 |
+
return seopress_get_service('NoticeOption')->getNoticeSEOConsultant();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
}
|
125 |
if ('1' != seopress_get_hidden_notices_seo_consultant_option()) {
|
126 |
$args = [
|
141 |
];
|
142 |
seopress_notification($args);
|
143 |
}
|
144 |
+
|
145 |
+
|
146 |
+
//AMP
|
147 |
+
if (is_plugin_active('amp/amp.php')) {
|
148 |
+
function seopress_get_hidden_notices_amp_analytics_option()
|
149 |
+
{
|
150 |
+
return seopress_get_service('NoticeOption')->getNoticeAMPAnalytics();
|
151 |
+
}
|
152 |
+
if ('1' != seopress_get_hidden_notices_amp_analytics_option()) {
|
153 |
+
$args = [
|
154 |
+
'id' => 'notice-amp-analytics',
|
155 |
+
'title' => __('Use Google Analytics with AMP plugin', 'wp-seopress'),
|
156 |
+
'desc' => __('Your site is using the AMP official plugin. To track users with Google Analytics on AMP pages, please go to this settings page.', 'wp-seopress'),
|
157 |
+
'impact' => [
|
158 |
+
'info' => __('Medium impact', 'wp-seopress'),
|
159 |
+
],
|
160 |
+
'link' => [
|
161 |
+
'en' => admin_url('admin.php?page=amp-options#analytics-options'),
|
162 |
+
'title' => __('Fix this!', 'wp-seopress'),
|
163 |
+
'external' => false,
|
164 |
+
],
|
165 |
+
'icon' => 'dashicons-chart-area',
|
166 |
+
'deleteable' => true,
|
167 |
+
];
|
168 |
+
seopress_notification($args);
|
169 |
+
}
|
170 |
+
}
|
171 |
+
|
172 |
//DIVI SEO options conflict
|
173 |
$theme = wp_get_theme();
|
174 |
if ('Divi' == $theme->template || 'Divi' == $theme->parent_theme) {
|
208 |
if (is_plugin_active('td-composer/td-composer.php')) {
|
209 |
function seopress_get_hidden_notices_tagdiv_option()
|
210 |
{
|
211 |
+
return seopress_get_service('NoticeOption')->getNoticeTagDiv();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
212 |
}
|
213 |
if ('1' != seopress_get_hidden_notices_tagdiv_option()) {
|
214 |
$args = [
|
233 |
if ('1' != get_theme_support('title-tag') && true !== wp_is_block_theme()) {
|
234 |
function seopress_get_hidden_notices_title_tag_option()
|
235 |
{
|
236 |
+
return seopress_get_service('NoticeOption')->getNoticeTitleTag();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
237 |
}
|
238 |
if ('1' != seopress_get_hidden_notices_title_tag_option()) {
|
239 |
$args = [
|
258 |
if (is_plugin_active('swift-performance-lite/performance.php')) {
|
259 |
function seopress_get_swift_performance_sitemap_option()
|
260 |
{
|
261 |
+
return seopress_get_service('NoticeOption')->getNoticeCacheSitemap();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
262 |
}
|
263 |
if (seopress_get_swift_performance_sitemap_option() === "1") {
|
264 |
function seopress_get_hidden_notices_swift_option()
|
265 |
{
|
266 |
+
return seopress_get_service('NoticeOption')->getNoticeSwift();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
267 |
}
|
268 |
$args = [
|
269 |
'id' => 'notice-swift',
|
367 |
if ('plugin' != $avia_options_enfold['avia']['seo_robots'] || 'plugin' != $avia_options_enfold_child['avia']['seo_robots']) {
|
368 |
function seopress_get_hidden_notices_enfold_option()
|
369 |
{
|
370 |
+
return seopress_get_service('NoticeOption')->getNoticeEnfold();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
371 |
}
|
372 |
if ('1' != seopress_get_hidden_notices_enfold_option()) {
|
373 |
$args = [
|
469 |
if (! is_ssl()) {
|
470 |
function seopress_get_hidden_notices_ssl_option()
|
471 |
{
|
472 |
+
return seopress_get_service('NoticeOption')->getNoticeSSL();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
473 |
}
|
474 |
if ('1' != seopress_get_hidden_notices_ssl_option()) {
|
475 |
$args = [
|
529 |
if (! function_exists('seopress_titles_noindex_option')) {
|
530 |
function seopress_titles_noindex_option()
|
531 |
{
|
532 |
+
return seopress_get_service('TitleOption')->getTitleNoIndex();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
533 |
}
|
534 |
}
|
535 |
function seopress_get_hidden_notices_noindex_option()
|
536 |
{
|
537 |
+
return seopress_get_service('NoticeOption')->getNoticeNoIndex();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
538 |
}
|
539 |
if ('1' != seopress_get_hidden_notices_noindex_option()) {
|
540 |
if ('1' == seopress_titles_noindex_option() || '1' != get_option('blog_public')) {
|
594 |
if ('0' == get_option('rss_use_excerpt')) {
|
595 |
function seopress_get_hidden_notices_rss_use_excerpt_option()
|
596 |
{
|
597 |
+
return seopress_get_service('NoticeOption')->getNoticeRSSUseExcerpt();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
598 |
}
|
599 |
if ('1' != seopress_get_hidden_notices_rss_use_excerpt_option()) {
|
600 |
$args = [
|
618 |
|
619 |
function seopress_ga_enable_option()
|
620 |
{
|
621 |
+
return seopress_get_service('GoogleAnalyticsOption')->getEnableOption();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
622 |
}
|
623 |
function seopress_ga_ua_option()
|
624 |
{
|
625 |
+
return seopress_get_service('GoogleAnalyticsOption')->getUA();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
626 |
}
|
627 |
function seopress_ga4_option()
|
628 |
{
|
629 |
+
return seopress_get_service('GoogleAnalyticsOption')->getGA4();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
630 |
}
|
631 |
if ('' === seopress_ga_ua_option() && '' === seopress_ga4_option() && '1' === seopress_ga_enable_option()) {
|
632 |
function seopress_get_hidden_notices_analytics_option()
|
633 |
{
|
634 |
+
return seopress_get_service('NoticeOption')->getNoticeGAIds();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
635 |
}
|
636 |
if ('1' != seopress_get_hidden_notices_analytics_option()) {
|
637 |
$args = [
|
655 |
if ('1' == get_option('page_comments')) {
|
656 |
function seopress_get_hidden_notices_divide_comments_option()
|
657 |
{
|
658 |
+
return seopress_get_service('NoticeOption')->getNoticeDivideComments();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
659 |
}
|
660 |
if ('1' != seopress_get_hidden_notices_divide_comments_option()) {
|
661 |
$args = [
|
679 |
if (get_option('posts_per_page') < '16') {
|
680 |
function seopress_get_hidden_notices_posts_number_option()
|
681 |
{
|
682 |
+
return seopress_get_service('NoticeOption')->getNoticePostsNumber();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
683 |
}
|
684 |
if ('1' != seopress_get_hidden_notices_posts_number_option()) {
|
685 |
$args = [
|
719 |
}
|
720 |
function seopress_get_hidden_notices_google_business_option()
|
721 |
{
|
722 |
+
return seopress_get_service('NoticeOption')->getNoticeGoogleBusiness();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
723 |
}
|
724 |
if ('1' != seopress_get_hidden_notices_google_business_option()) {
|
725 |
$args = [
|
740 |
}
|
741 |
function seopress_get_hidden_notices_search_console_option()
|
742 |
{
|
743 |
+
return seopress_get_service('NoticeOption')->getNoticeSearchConsole();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
744 |
}
|
745 |
function seopress_get_google_site_verification_option()
|
746 |
{
|
747 |
+
return seopress_get_service('AdvancedOption')->getAdvancedGoogleVerification();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
748 |
}
|
749 |
if ('1' != seopress_get_hidden_notices_search_console_option() && '' == seopress_get_google_site_verification_option()) {
|
750 |
$args = [
|
804 |
if (! is_plugin_active('wp-seopress-pro/seopress-pro.php')) {
|
805 |
function seopress_get_hidden_notices_go_pro_option()
|
806 |
{
|
807 |
+
return seopress_get_service('NoticeOption')->getNoticeGoPro();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
808 |
}
|
809 |
if ('1' != seopress_get_hidden_notices_go_pro_option() && '' == seopress_get_hidden_notices_go_pro_option()) {
|
810 |
$args = [
|
@@ -43,6 +43,53 @@
|
|
43 |
</div>
|
44 |
<div class="seopress-card-content">
|
45 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
$tasks = [
|
47 |
[
|
48 |
'done' => ('valid' === get_option('seopress_pro_license_status') && is_plugin_active('wp-seopress-pro/seopress-pro.php') && ! is_multisite()) ? 'done' : '',
|
@@ -50,14 +97,12 @@
|
|
50 |
'label' => __('Activate your license key', 'wp-seopress'),
|
51 |
],
|
52 |
[
|
53 |
-
|
54 |
-
'done' => isset($options['seopress_xml_sitemap_general_enable']) ? 'done' : '',
|
55 |
'link' => admin_url('admin.php?page=seopress-xml-sitemap'),
|
56 |
'label' => __('Generate XML sitemaps', 'wp-seopress'),
|
57 |
],
|
58 |
[
|
59 |
-
|
60 |
-
'done' => isset($options['seopress_social_facebook_og']) ? 'done' : '',
|
61 |
'link' => admin_url('admin.php?page=seopress-social'),
|
62 |
'label' => __('Be social', 'wp-seopress'),
|
63 |
],
|
@@ -67,8 +112,7 @@
|
|
67 |
'label' => __('Improve Local SEO', 'wp-seopress'),
|
68 |
],
|
69 |
[
|
70 |
-
|
71 |
-
'done' => (is_plugin_active('wp-seopress-pro/seopress-pro.php') && isset($options['seopress_rich_snippets_enable'])) ? 'done' : '',
|
72 |
'link' => admin_url('admin.php?page=seopress-pro-page#tab=tab_seopress_rich_snippets'),
|
73 |
'label' => __('Add Structured Data Types to increase visibility in SERPs', 'wp-seopress'),
|
74 |
]
|
43 |
</div>
|
44 |
<div class="seopress-card-content">
|
45 |
<?php
|
46 |
+
/**
|
47 |
+
* Check if XML sitemaps feature is correctly enabled by the user
|
48 |
+
*
|
49 |
+
* @since 6.0
|
50 |
+
* @author Benjamin
|
51 |
+
*
|
52 |
+
*/
|
53 |
+
function seopress_tasks_sitemaps() {
|
54 |
+
$options = get_option('seopress_xml_sitemap_option_name');
|
55 |
+
if (isset($options['seopress_xml_sitemap_general_enable']) && ('1' === seopress_get_toggle_option('xml-sitemap'))) {
|
56 |
+
return 'done';
|
57 |
+
}
|
58 |
+
|
59 |
+
return;
|
60 |
+
}
|
61 |
+
|
62 |
+
/**
|
63 |
+
* Check if Social Networds feature is correctly enabled by the user
|
64 |
+
*
|
65 |
+
* @since 6.0
|
66 |
+
* @author Benjamin
|
67 |
+
*
|
68 |
+
*/
|
69 |
+
function seopress_tasks_social_networks() {
|
70 |
+
$options = get_option('seopress_social_option_name');
|
71 |
+
if (isset($options['seopress_social_facebook_og']) && ('1' === seopress_get_toggle_option('social'))) {
|
72 |
+
return 'done';
|
73 |
+
}
|
74 |
+
|
75 |
+
return;
|
76 |
+
}
|
77 |
+
|
78 |
+
/**
|
79 |
+
* Check if Schemas feature is correctly enabled by the user
|
80 |
+
*
|
81 |
+
* @since 6.0
|
82 |
+
* @author Benjamin
|
83 |
+
*
|
84 |
+
*/
|
85 |
+
function seopress_tasks_schemas() {
|
86 |
+
$options = get_option('seopress_pro_option_name');
|
87 |
+
if (is_plugin_active('wp-seopress-pro/seopress-pro.php') && isset($options['seopress_rich_snippets_enable']) && '1' === seopress_get_toggle_option('rich-snippets')) {
|
88 |
+
return 'done';
|
89 |
+
}
|
90 |
+
|
91 |
+
return;
|
92 |
+
}
|
93 |
$tasks = [
|
94 |
[
|
95 |
'done' => ('valid' === get_option('seopress_pro_license_status') && is_plugin_active('wp-seopress-pro/seopress-pro.php') && ! is_multisite()) ? 'done' : '',
|
97 |
'label' => __('Activate your license key', 'wp-seopress'),
|
98 |
],
|
99 |
[
|
100 |
+
'done' => seopress_tasks_sitemaps(),
|
|
|
101 |
'link' => admin_url('admin.php?page=seopress-xml-sitemap'),
|
102 |
'label' => __('Generate XML sitemaps', 'wp-seopress'),
|
103 |
],
|
104 |
[
|
105 |
+
'done' => seopress_tasks_social_networks(),
|
|
|
106 |
'link' => admin_url('admin.php?page=seopress-social'),
|
107 |
'label' => __('Be social', 'wp-seopress'),
|
108 |
],
|
112 |
'label' => __('Improve Local SEO', 'wp-seopress'),
|
113 |
],
|
114 |
[
|
115 |
+
'done' => seopress_tasks_schemas(),
|
|
|
116 |
'link' => admin_url('admin.php?page=seopress-pro-page#tab=tab_seopress_rich_snippets'),
|
117 |
'label' => __('Add Structured Data Types to increase visibility in SERPs', 'wp-seopress'),
|
118 |
]
|
@@ -1295,6 +1295,7 @@ function seopress_google_analytics_matomo_no_heatmaps_callback() {
|
|
1295 |
esc_attr($options['seopress_google_analytics_matomo_no_heatmaps']);
|
1296 |
}
|
1297 |
}
|
|
|
1298 |
function seopress_google_analytics_clarity_enable_callback() {
|
1299 |
$options = get_option('seopress_google_analytics_option_name');
|
1300 |
$check = isset($options['seopress_google_analytics_clarity_enable']); ?>
|
1295 |
esc_attr($options['seopress_google_analytics_matomo_no_heatmaps']);
|
1296 |
}
|
1297 |
}
|
1298 |
+
|
1299 |
function seopress_google_analytics_clarity_enable_callback() {
|
1300 |
$options = get_option('seopress_google_analytics_option_name');
|
1301 |
$check = isset($options['seopress_google_analytics_clarity_enable']); ?>
|
@@ -12,7 +12,7 @@ if ( ! defined('ABSPATH')) {
|
|
12 |
*
|
13 |
*/
|
14 |
function seopress_xml_sitemaps_ping_cron_action() {
|
15 |
-
//Disable if MainWP add-on
|
16 |
if (defined('SEOPRESS_WPMAIN_VERSION')) {
|
17 |
return;
|
18 |
}
|
12 |
*
|
13 |
*/
|
14 |
function seopress_xml_sitemaps_ping_cron_action() {
|
15 |
+
//Disable if MainWP add-on enabled
|
16 |
if (defined('SEOPRESS_WPMAIN_VERSION')) {
|
17 |
return;
|
18 |
}
|
@@ -15,6 +15,7 @@ function seopress_get_docs_links()
|
|
15 |
$docs = [
|
16 |
'website' => 'https://www.seopress.org/fr/' . $utm,
|
17 |
'blog' => 'https://www.seopress.org/fr/blog/' . $utm,
|
|
|
18 |
'support' => 'https://www.seopress.org/fr/support/' . $utm,
|
19 |
'guides' => 'https://www.seopress.org/fr/support/guides/' . $utm,
|
20 |
'faq' => 'https://www.seopress.org/fr/support/faq/' . $utm,
|
@@ -70,13 +71,14 @@ function seopress_get_docs_links()
|
|
70 |
'gtm' => 'https://www.seopress.org/fr/support/guides/ajouter-google-tag-manager-a-votre-site-wordpress-avec-seopress/' . $utm,
|
71 |
'ecommerce' => 'https://www.seopress.org/fr/support/guides/configurer-le-commerce-electronique-ameliore-pour-google-analytics/' . $utm,
|
72 |
'events' => 'https://www.seopress.org/fr/support/guides/suivre-vos-telechargements-liens-affilies-sortants-et-externes-google-analytics/' . $utm,
|
73 |
-
'ga4_property' => 'https://
|
74 |
'api' => [
|
75 |
'analytics' => 'https://console.cloud.google.com/apis/library/analytics.googleapis.com?hl=fr',
|
76 |
'reporting' => 'https://console.cloud.google.com/apis/library/analyticsreporting.googleapis.com?hl=fr'
|
77 |
],
|
78 |
'matomo' => [
|
79 |
'on_premise' => 'https://www.seopress.org/fr/support/guides/comment-utiliser-matomo-en-auto-heberge-avec-seopress-free/' . $utm,
|
|
|
80 |
],
|
81 |
'clarity' => [
|
82 |
'project' => 'https://www.seopress.org/fr/support/guides/trouver-mon-id-de-project-microsoft-clarity/' . $utm,
|
@@ -147,6 +149,7 @@ function seopress_get_docs_links()
|
|
147 |
$docs = [
|
148 |
'website' => 'https://www.seopress.org/' . $utm,
|
149 |
'blog' => 'https://www.seopress.org/newsroom/' . $utm,
|
|
|
150 |
'support' => 'https://www.seopress.org/support/' . $utm,
|
151 |
'guides' => 'https://www.seopress.org/support/guides/' . $utm,
|
152 |
'faq' => 'https://www.seopress.org/support/faq/' . $utm,
|
@@ -202,13 +205,14 @@ function seopress_get_docs_links()
|
|
202 |
'gtm' => 'https://www.seopress.org/support/guides/google-tag-manager-wordpress-seopress/' . $utm,
|
203 |
'ecommerce' => 'https://www.seopress.org/support/guides/how-to-setup-google-enhanced-ecommerce/' . $utm,
|
204 |
'events' => 'https://www.seopress.org/support/guides/how-to-track-file-downloads-affiliates-outbound-and-external-links-with-google-analytics/' . $utm,
|
205 |
-
'ga4_property' => 'https://
|
206 |
'api' => [
|
207 |
'analytics' => 'https://console.cloud.google.com/apis/library/analytics.googleapis.com?hl=en',
|
208 |
'reporting' => 'https://console.cloud.google.com/apis/library/analyticsreporting.googleapis.com?hl=en'
|
209 |
],
|
210 |
'matomo' => [
|
211 |
'on_premise' => 'https://www.seopress.org/support/guides/how-to-use-matomo-on-premise-with-seopress-free/' . $utm,
|
|
|
212 |
],
|
213 |
'clarity' => [
|
214 |
'project' => 'https://www.seopress.org/support/guides/find-my-microsoft-clarity-project-id/' . $utm,
|
15 |
$docs = [
|
16 |
'website' => 'https://www.seopress.org/fr/' . $utm,
|
17 |
'blog' => 'https://www.seopress.org/fr/blog/' . $utm,
|
18 |
+
'downloads' => 'https://www.seopress.org/fr/mon-compte/mes-telechargements/' . $utm,
|
19 |
'support' => 'https://www.seopress.org/fr/support/' . $utm,
|
20 |
'guides' => 'https://www.seopress.org/fr/support/guides/' . $utm,
|
21 |
'faq' => 'https://www.seopress.org/fr/support/faq/' . $utm,
|
71 |
'gtm' => 'https://www.seopress.org/fr/support/guides/ajouter-google-tag-manager-a-votre-site-wordpress-avec-seopress/' . $utm,
|
72 |
'ecommerce' => 'https://www.seopress.org/fr/support/guides/configurer-le-commerce-electronique-ameliore-pour-google-analytics/' . $utm,
|
73 |
'events' => 'https://www.seopress.org/fr/support/guides/suivre-vos-telechargements-liens-affilies-sortants-et-externes-google-analytics/' . $utm,
|
74 |
+
'ga4_property' => 'https://www.seopress.org/fr/support/guides/trouver-id-de-propriete-google-analytics-4/' . $utm,
|
75 |
'api' => [
|
76 |
'analytics' => 'https://console.cloud.google.com/apis/library/analytics.googleapis.com?hl=fr',
|
77 |
'reporting' => 'https://console.cloud.google.com/apis/library/analyticsreporting.googleapis.com?hl=fr'
|
78 |
],
|
79 |
'matomo' => [
|
80 |
'on_premise' => 'https://www.seopress.org/fr/support/guides/comment-utiliser-matomo-en-auto-heberge-avec-seopress-free/' . $utm,
|
81 |
+
'token' => 'https://www.seopress.org/fr/support/guides/connectez-votre-site-wordpress-avec-matomo-analytics/' . $utm,
|
82 |
],
|
83 |
'clarity' => [
|
84 |
'project' => 'https://www.seopress.org/fr/support/guides/trouver-mon-id-de-project-microsoft-clarity/' . $utm,
|
149 |
$docs = [
|
150 |
'website' => 'https://www.seopress.org/' . $utm,
|
151 |
'blog' => 'https://www.seopress.org/newsroom/' . $utm,
|
152 |
+
'downloads' => 'https://www.seopress.org/account/my-downloads/' . $utm,
|
153 |
'support' => 'https://www.seopress.org/support/' . $utm,
|
154 |
'guides' => 'https://www.seopress.org/support/guides/' . $utm,
|
155 |
'faq' => 'https://www.seopress.org/support/faq/' . $utm,
|
205 |
'gtm' => 'https://www.seopress.org/support/guides/google-tag-manager-wordpress-seopress/' . $utm,
|
206 |
'ecommerce' => 'https://www.seopress.org/support/guides/how-to-setup-google-enhanced-ecommerce/' . $utm,
|
207 |
'events' => 'https://www.seopress.org/support/guides/how-to-track-file-downloads-affiliates-outbound-and-external-links-with-google-analytics/' . $utm,
|
208 |
+
'ga4_property' => 'https://www.seopress.org/support/guides/find-my-google-analytics-4-property-id/' . $utm,
|
209 |
'api' => [
|
210 |
'analytics' => 'https://console.cloud.google.com/apis/library/analytics.googleapis.com?hl=en',
|
211 |
'reporting' => 'https://console.cloud.google.com/apis/library/analyticsreporting.googleapis.com?hl=en'
|
212 |
],
|
213 |
'matomo' => [
|
214 |
'on_premise' => 'https://www.seopress.org/support/guides/how-to-use-matomo-on-premise-with-seopress-free/' . $utm,
|
215 |
+
'token' => 'https://www.seopress.org/support/guides/connect-your-wordpress-site-with-matomo-analytics/' . $utm,
|
216 |
],
|
217 |
'clarity' => [
|
218 |
'project' => 'https://www.seopress.org/support/guides/find-my-microsoft-clarity-project-id/' . $utm,
|
@@ -11,7 +11,7 @@ $data_attr = seopress_metaboxes_init();
|
|
11 |
data_id="<?php echo $data_attr['current_id']; ?>"
|
12 |
data_origin="<?php echo $data_attr['origin']; ?>"
|
13 |
data_tax="<?php echo $data_attr['data_tax']; ?>">
|
14 |
-
<?php if (is_plugin_active('wp-seopress-pro/seopress-pro.php') && version_compare(SEOPRESS_PRO_VERSION, '5.7') >= 0) { ?>
|
15 |
<ul class="wrap-ca-list">
|
16 |
<li><a href="#seopress-ca-tabs-2"><?php _e('Overview', 'wp-seopress'); ?></a></li>
|
17 |
<?php if (seopress_get_toggle_option('inspect-url') ==='1') { ?>
|
@@ -118,7 +118,7 @@ $data_attr = seopress_metaboxes_init();
|
|
118 |
seopress_get_service('RenderContentAnalysis')->render($analyzes, $seopress_analysis_data);
|
119 |
} ?>
|
120 |
</div>
|
121 |
-
<?php if (is_plugin_active('wp-seopress-pro/seopress-pro.php') && version_compare(SEOPRESS_PRO_VERSION, '5.7') >= 0) {
|
122 |
if (seopress_get_toggle_option('inspect-url') === '1') { ?>
|
123 |
<div id="seopress-ca-tabs-1">
|
124 |
<?php if (function_exists('seopress_get_service') && !empty($data_attr['current_id'])) {
|
11 |
data_id="<?php echo $data_attr['current_id']; ?>"
|
12 |
data_origin="<?php echo $data_attr['origin']; ?>"
|
13 |
data_tax="<?php echo $data_attr['data_tax']; ?>">
|
14 |
+
<?php if (is_plugin_active('wp-seopress-pro/seopress-pro.php') && version_compare('SEOPRESS_PRO_VERSION', '5.7') >= 0) { ?>
|
15 |
<ul class="wrap-ca-list">
|
16 |
<li><a href="#seopress-ca-tabs-2"><?php _e('Overview', 'wp-seopress'); ?></a></li>
|
17 |
<?php if (seopress_get_toggle_option('inspect-url') ==='1') { ?>
|
118 |
seopress_get_service('RenderContentAnalysis')->render($analyzes, $seopress_analysis_data);
|
119 |
} ?>
|
120 |
</div>
|
121 |
+
<?php if (is_plugin_active('wp-seopress-pro/seopress-pro.php') && version_compare('SEOPRESS_PRO_VERSION', '5.7') >= 0) {
|
122 |
if (seopress_get_toggle_option('inspect-url') === '1') { ?>
|
123 |
<div id="seopress-ca-tabs-1">
|
124 |
<?php if (function_exists('seopress_get_service') && !empty($data_attr['current_id'])) {
|
@@ -269,7 +269,7 @@ function seopress_display_seo_metaboxe()
|
|
269 |
if ($get_current_screen->is_block_editor) {
|
270 |
wp_enqueue_script('seopress-block-editor-js', SEOPRESS_ASSETS_DIR . '/js/seopress-block-editor' . $prefix . '.js', ['jquery'], SEOPRESS_VERSION, true);
|
271 |
if ( version_compare( $wp_version, '5.8', '>=' ) ) {
|
272 |
-
wp_enqueue_script( 'seopress-primary-category-js', SEOPRESS_URL_PUBLIC . '/
|
273 |
}
|
274 |
}
|
275 |
}
|
269 |
if ($get_current_screen->is_block_editor) {
|
270 |
wp_enqueue_script('seopress-block-editor-js', SEOPRESS_ASSETS_DIR . '/js/seopress-block-editor' . $prefix . '.js', ['jquery'], SEOPRESS_VERSION, true);
|
271 |
if ( version_compare( $wp_version, '5.8', '>=' ) ) {
|
272 |
+
wp_enqueue_script( 'seopress-primary-category-js', SEOPRESS_URL_PUBLIC . '/editor/primary-category-select/index.js', ['wp-hooks'], SEOPRESS_VERSION, true);
|
273 |
}
|
274 |
}
|
275 |
}
|
@@ -29,14 +29,14 @@ function seopress_register_block_categories( $categories ) {
|
|
29 |
*/
|
30 |
add_action( 'init', 'seopress_register_blocks', 1000 );
|
31 |
function seopress_register_blocks() {
|
32 |
-
require_once __DIR__ . '/block
|
33 |
-
require_once __DIR__ . '/block
|
34 |
|
35 |
// FAQ Block
|
36 |
seopress_register_block_faq();
|
37 |
|
38 |
// Sitemap Block
|
39 |
-
register_block_type(
|
40 |
'render_callback' => 'seopress_sitemap_block',
|
41 |
'attributes' => [
|
42 |
'postTypes' => [
|
29 |
*/
|
30 |
add_action( 'init', 'seopress_register_blocks', 1000 );
|
31 |
function seopress_register_blocks() {
|
32 |
+
require_once __DIR__ . '/blocks/faq/block.php';
|
33 |
+
require_once __DIR__ . '/blocks/sitemap/block.php';
|
34 |
|
35 |
// FAQ Block
|
36 |
seopress_register_block_faq();
|
37 |
|
38 |
// Sitemap Block
|
39 |
+
register_block_type( __DIR__ . '/blocks/sitemap', [
|
40 |
'render_callback' => 'seopress_sitemap_block',
|
41 |
'attributes' => [
|
42 |
'postTypes' => [
|
@@ -5,25 +5,29 @@ if (! defined('ABSPATH')) {
|
|
5 |
}
|
6 |
|
7 |
function seopress_register_block_faq() {
|
8 |
-
$
|
|
|
|
|
|
|
9 |
|
|
|
10 |
wp_register_script(
|
11 |
-
'wp-seopress-
|
12 |
-
SEOPRESS_URL_PUBLIC . '/
|
13 |
$asset_file['dependencies'],
|
14 |
$asset_file['version']
|
15 |
);
|
16 |
|
17 |
wp_register_style(
|
18 |
-
'wp-seopress-
|
19 |
-
SEOPRESS_URL_PUBLIC . '/
|
20 |
'',
|
21 |
$asset_file['version']
|
22 |
);
|
23 |
|
24 |
register_block_type('wpseopress/faq-block', [
|
25 |
-
'editor_script' => 'wp-seopress-
|
26 |
-
'editor_style' => 'wp-seopress-
|
27 |
'attributes' => array(
|
28 |
'faqs' => array(
|
29 |
'type' => 'array',
|
5 |
}
|
6 |
|
7 |
function seopress_register_block_faq() {
|
8 |
+
$path = SEOPRESS_PLUGIN_DIR_PATH . 'public/editor/blocks/faq/index.asset.php';
|
9 |
+
if(!file_exists($path)){
|
10 |
+
return;
|
11 |
+
}
|
12 |
|
13 |
+
$asset_file = include_once $path;
|
14 |
wp_register_script(
|
15 |
+
'wp-seopress-faq-block',
|
16 |
+
SEOPRESS_URL_PUBLIC . '/editor/blocks/faq/index.js',
|
17 |
$asset_file['dependencies'],
|
18 |
$asset_file['version']
|
19 |
);
|
20 |
|
21 |
wp_register_style(
|
22 |
+
'wp-seopress-faq-block',
|
23 |
+
SEOPRESS_URL_PUBLIC . '/editor/blocks/faq/index.css',
|
24 |
'',
|
25 |
$asset_file['version']
|
26 |
);
|
27 |
|
28 |
register_block_type('wpseopress/faq-block', [
|
29 |
+
'editor_script' => 'wp-seopress-faq-block',
|
30 |
+
'editor_style' => 'wp-seopress-faq-block',
|
31 |
'attributes' => array(
|
32 |
'faqs' => array(
|
33 |
'type' => 'array',
|
@@ -3,7 +3,7 @@
|
|
3 |
"name": "wpseopress/sitemap",
|
4 |
"title": "Sitemap",
|
5 |
"description": "Display an HTML sitemap",
|
6 |
-
"icon": "
|
7 |
"category": "wpseopress",
|
8 |
"textdomain": "wp-seopress",
|
9 |
"supports": {
|
@@ -21,6 +21,6 @@
|
|
21 |
"lineHeight": true
|
22 |
}
|
23 |
},
|
24 |
-
"editorScript": "file
|
25 |
-
"editorStyle": "file
|
26 |
-
}
|
3 |
"name": "wpseopress/sitemap",
|
4 |
"title": "Sitemap",
|
5 |
"description": "Display an HTML sitemap",
|
6 |
+
"icon": "list-view",
|
7 |
"category": "wpseopress",
|
8 |
"textdomain": "wp-seopress",
|
9 |
"supports": {
|
21 |
"lineHeight": true
|
22 |
}
|
23 |
},
|
24 |
+
"editorScript": "file:../../../../../../public/editor/blocks/sitemap/index.js",
|
25 |
+
"editorStyle": "file:../../../../../../public/editor/blocks/sitemap/index.css"
|
26 |
+
}
|
File without changes
|
@@ -63,6 +63,7 @@ function seopress_sanitize_options_fields($input){
|
|
63 |
'seopress_instant_indexing_bing_api_key',
|
64 |
'seopress_instant_indexing_manual_batch',
|
65 |
'seopress_google_analytics_clarity_project_id',
|
|
|
66 |
//'seopress_instant_indexing_google_api_key',
|
67 |
];
|
68 |
|
@@ -85,9 +86,14 @@ function seopress_sanitize_options_fields($input){
|
|
85 |
}
|
86 |
}
|
87 |
|
88 |
-
|
89 |
foreach ($seopress_sanitize_fields as $value) {
|
90 |
-
if ( ! empty($input['
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
$args = [
|
92 |
'strong' => [],
|
93 |
'em' => [],
|
63 |
'seopress_instant_indexing_bing_api_key',
|
64 |
'seopress_instant_indexing_manual_batch',
|
65 |
'seopress_google_analytics_clarity_project_id',
|
66 |
+
'seopress_google_analytics_matomo_widget_auth_token',
|
67 |
//'seopress_instant_indexing_google_api_key',
|
68 |
];
|
69 |
|
86 |
}
|
87 |
}
|
88 |
|
|
|
89 |
foreach ($seopress_sanitize_fields as $value) {
|
90 |
+
if ( ! empty($input['seopress_google_analytics_matomo_widget_auth_token']) && 'seopress_google_analytics_matomo_widget_auth_token' == $value) {
|
91 |
+
$options = get_option('seopress_google_analytics_option_name');
|
92 |
+
|
93 |
+
$token = isset($options['seopress_google_analytics_matomo_widget_auth_token']) ? $options['seopress_google_analytics_matomo_widget_auth_token'] : null;
|
94 |
+
|
95 |
+
$input[$value] = $input[$value] ==='xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' ? $token : sanitize_text_field($input[$value]);
|
96 |
+
} elseif ( ! empty($input['seopress_google_analytics_opt_out_msg']) && 'seopress_google_analytics_opt_out_msg' == $value) {
|
97 |
$args = [
|
98 |
'strong' => [],
|
99 |
'em' => [],
|
@@ -156,10 +156,21 @@ function print_section_info_google_analytics_matomo()
|
|
156 |
<?php _e('Matomo', 'wp-seopress'); ?>
|
157 |
</h2>
|
158 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
159 |
<p>
|
160 |
<?php _e('Use Matomo to track your users with privacy in mind. We support both On Premise and Cloud installations.', 'wp-seopress'); ?>
|
161 |
</p>
|
162 |
|
|
|
|
|
|
|
|
|
|
|
163 |
<div class="seopress-notice">
|
164 |
<p>
|
165 |
<?php _e('Your <strong>Custom Dimensions</strong> will also work with Matomo tracking code.', 'wp-seopress'); ?>
|
156 |
<?php _e('Matomo', 'wp-seopress'); ?>
|
157 |
</h2>
|
158 |
</div>
|
159 |
+
|
160 |
+
<div class="seopress-sub-tabs">
|
161 |
+
<a href="#seopress-matomo-tracking"><?php _e('Tracking', 'wp-seopress'); ?></a>
|
162 |
+
<?php if ( is_plugin_active('wp-seopress-pro/seopress-pro.php')) { ?> | <a href="#seopress-matomo-stats"><?php _e('Stats in Dashboard', 'wp-seopress'); ?></a><?php } ?>
|
163 |
+
</div>
|
164 |
+
|
165 |
<p>
|
166 |
<?php _e('Use Matomo to track your users with privacy in mind. We support both On Premise and Cloud installations.', 'wp-seopress'); ?>
|
167 |
</p>
|
168 |
|
169 |
+
<hr>
|
170 |
+
<h3 id="seopress-matomo-tracking">
|
171 |
+
<?php _e('Tracking', 'wp-seopress'); ?>
|
172 |
+
</h3>
|
173 |
+
|
174 |
<div class="seopress-notice">
|
175 |
<p>
|
176 |
<?php _e('Your <strong>Custom Dimensions</strong> will also work with Matomo tracking code.', 'wp-seopress'); ?>
|
@@ -141,22 +141,22 @@ function print_section_info_html_sitemap()
|
|
141 |
|
142 |
|
143 |
<div class="seopress-notice">
|
144 |
-
<h3><?php _e('How to use the HTML Sitemap?', 'wp-seopress
|
145 |
|
146 |
-
<h4><?php _e('Block Editor', 'wp-seopress
|
147 |
-
<p><?php _e('Add the HTML sitemap block using the <strong>Block Editor</strong>.', 'wp-seopress
|
148 |
|
149 |
<hr>
|
150 |
-
<h4><?php _e('Shortcode', 'wp-seopress
|
151 |
|
152 |
-
<p><?php _e('You can also use this shortcode in your content (post, page, post type...):', 'wp-seopress
|
153 |
<pre>[seopress_html_sitemap]</pre>
|
154 |
|
155 |
-
<p><?php _e('To include specific custom post types, use the CPT attribute:', 'wp-seopress
|
156 |
<pre>[seopress_html_sitemap cpt="post,product"]</pre>
|
157 |
|
158 |
-
<h4><?php _e('Other', 'wp-seopress
|
159 |
-
<p><?php _e('Dynamically display the sitemap by entering an ID to the first field below.', 'wp-seopress
|
160 |
</div>
|
161 |
<?php
|
162 |
}
|
141 |
|
142 |
|
143 |
<div class="seopress-notice">
|
144 |
+
<h3><?php _e('How to use the HTML Sitemap?', 'wp-seopress'); ?></h3>
|
145 |
|
146 |
+
<h4><?php _e('Block Editor', 'wp-seopress'); ?></h4>
|
147 |
+
<p><?php _e('Add the HTML sitemap block using the <strong>Block Editor</strong>.', 'wp-seopress'); ?></p>
|
148 |
|
149 |
<hr>
|
150 |
+
<h4><?php _e('Shortcode', 'wp-seopress'); ?></h4>
|
151 |
|
152 |
+
<p><?php _e('You can also use this shortcode in your content (post, page, post type...):', 'wp-seopress'); ?></p>
|
153 |
<pre>[seopress_html_sitemap]</pre>
|
154 |
|
155 |
+
<p><?php _e('To include specific custom post types, use the CPT attribute:', 'wp-seopress'); ?></p>
|
156 |
<pre>[seopress_html_sitemap cpt="post,product"]</pre>
|
157 |
|
158 |
+
<h4><?php _e('Other', 'wp-seopress'); ?></h4>
|
159 |
+
<p><?php _e('Dynamically display the sitemap by entering an ID to the first field below.', 'wp-seopress'); ?></p>
|
160 |
</div>
|
161 |
<?php
|
162 |
}
|
@@ -828,16 +828,16 @@ if ('1' == seopress_google_analytics_half_disable_option() || (((isset($_COOKIE[
|
|
828 |
//do nothing
|
829 |
} else {
|
830 |
if ('1' == seopress_google_analytics_enable_option() && ('' != seopress_google_analytics_ua_option() || '' != seopress_google_analytics_ga4_option())) {
|
831 |
-
add_action('wp_head', 'seopress_google_analytics_js_arguments',
|
832 |
-
add_action('wp_head', 'seopress_custom_tracking_hook',
|
833 |
}
|
834 |
if ('1' == seopress_google_analytics_matomo_enable_option() && '' != seopress_google_analytics_matomo_id_option() && '' != seopress_google_analytics_matomo_site_id_option()) {
|
835 |
-
add_action('wp_head', 'seopress_matomo_js_arguments',
|
836 |
}
|
837 |
if ('1' == seopress_google_analytics_clarity_enable_option() && '' != seopress_google_analytics_clarity_project_id_option()) {
|
838 |
-
add_action('wp_head', 'seopress_clarity_js_arguments',
|
839 |
}
|
840 |
-
add_action('wp_head', 'seopress_custom_tracking_head_hook',
|
841 |
add_action('wp_body_open', 'seopress_custom_tracking_body_hook', 1020, 1);
|
842 |
add_action('wp_footer', 'seopress_custom_tracking_footer_hook', 1030, 1);
|
843 |
|
@@ -846,22 +846,19 @@ if ('1' == seopress_google_analytics_half_disable_option() || (((isset($_COOKIE[
|
|
846 |
if ('1' == $purchasesOptions || '1' == $addToCartOption || '1' == $removeFromCartOption) {
|
847 |
add_action('wp_enqueue_scripts', 'seopress_google_analytics_ecommerce_js', 20, 1);
|
848 |
}
|
849 |
-
|
850 |
-
//Oxygen Builder
|
851 |
-
add_action('ct_before_builder', 'seopress_custom_tracking_body_hook', 1020, 1);
|
852 |
}
|
853 |
} else {
|
854 |
if ('1' == seopress_google_analytics_enable_option() && ('' != seopress_google_analytics_ua_option() || '' != seopress_google_analytics_ga4_option())) {
|
855 |
-
add_action('wp_head', 'seopress_google_analytics_js_arguments',
|
856 |
-
add_action('wp_head', 'seopress_custom_tracking_hook',
|
857 |
}
|
858 |
if ('1' == seopress_google_analytics_matomo_enable_option() && '' != seopress_google_analytics_matomo_id_option() && '' != seopress_google_analytics_matomo_site_id_option()) {
|
859 |
-
add_action('wp_head', 'seopress_matomo_js_arguments',
|
860 |
}
|
861 |
if ('1' == seopress_google_analytics_clarity_enable_option() && '' != seopress_google_analytics_clarity_project_id_option()) {
|
862 |
-
add_action('wp_head', 'seopress_clarity_js_arguments',
|
863 |
}
|
864 |
-
add_action('wp_head', 'seopress_custom_tracking_head_hook',
|
865 |
add_action('wp_body_open', 'seopress_custom_tracking_body_hook', 1020, 1);
|
866 |
add_action('wp_footer', 'seopress_custom_tracking_footer_hook', 1030, 1);
|
867 |
|
@@ -870,23 +867,20 @@ if ('1' == seopress_google_analytics_half_disable_option() || (((isset($_COOKIE[
|
|
870 |
if ('1' == $purchasesOptions || '1' == $addToCartOption || '1' == $removeFromCartOption) {
|
871 |
add_action('wp_enqueue_scripts', 'seopress_google_analytics_ecommerce_js', 20, 1);
|
872 |
}
|
873 |
-
|
874 |
-
//Oxygen Builder
|
875 |
-
add_action('ct_before_builder', 'seopress_custom_tracking_body_hook', 1020, 1);
|
876 |
}
|
877 |
}
|
878 |
} else {
|
879 |
if ('1' == seopress_google_analytics_enable_option() && ('' != seopress_google_analytics_ua_option() || '' != seopress_google_analytics_ga4_option())) {
|
880 |
-
add_action('wp_head', 'seopress_google_analytics_js_arguments',
|
881 |
-
add_action('wp_head', 'seopress_custom_tracking_hook',
|
882 |
}
|
883 |
if ('1' == seopress_google_analytics_matomo_enable_option() && '' != seopress_google_analytics_matomo_id_option() && '' != seopress_google_analytics_matomo_site_id_option()) {
|
884 |
-
add_action('wp_head', 'seopress_matomo_js_arguments',
|
885 |
}
|
886 |
if ('1' == seopress_google_analytics_clarity_enable_option() && '' != seopress_google_analytics_clarity_project_id_option()) {
|
887 |
-
add_action('wp_head', 'seopress_clarity_js_arguments',
|
888 |
}
|
889 |
-
add_action('wp_head', 'seopress_custom_tracking_head_hook',
|
890 |
add_action('wp_body_open', 'seopress_custom_tracking_body_hook', 1020, 1);
|
891 |
add_action('wp_footer', 'seopress_custom_tracking_footer_hook', 1030, 1);
|
892 |
|
@@ -895,7 +889,5 @@ if ('1' == seopress_google_analytics_half_disable_option() || (((isset($_COOKIE[
|
|
895 |
if ('1' == $purchasesOptions || '1' == $addToCartOption || '1' == $removeFromCartOption) {
|
896 |
add_action('wp_enqueue_scripts', 'seopress_google_analytics_ecommerce_js', 20, 1);
|
897 |
}
|
898 |
-
|
899 |
-
add_action('ct_before_builder', 'seopress_custom_tracking_body_hook', 1020, 1);
|
900 |
}
|
901 |
}
|
828 |
//do nothing
|
829 |
} else {
|
830 |
if ('1' == seopress_google_analytics_enable_option() && ('' != seopress_google_analytics_ua_option() || '' != seopress_google_analytics_ga4_option())) {
|
831 |
+
add_action('wp_head', 'seopress_google_analytics_js_arguments', 929, 1);
|
832 |
+
add_action('wp_head', 'seopress_custom_tracking_hook', 900, 1);
|
833 |
}
|
834 |
if ('1' == seopress_google_analytics_matomo_enable_option() && '' != seopress_google_analytics_matomo_id_option() && '' != seopress_google_analytics_matomo_site_id_option()) {
|
835 |
+
add_action('wp_head', 'seopress_matomo_js_arguments', 960, 1);
|
836 |
}
|
837 |
if ('1' == seopress_google_analytics_clarity_enable_option() && '' != seopress_google_analytics_clarity_project_id_option()) {
|
838 |
+
add_action('wp_head', 'seopress_clarity_js_arguments', 970, 1);
|
839 |
}
|
840 |
+
add_action('wp_head', 'seopress_custom_tracking_head_hook', 980, 1);
|
841 |
add_action('wp_body_open', 'seopress_custom_tracking_body_hook', 1020, 1);
|
842 |
add_action('wp_footer', 'seopress_custom_tracking_footer_hook', 1030, 1);
|
843 |
|
846 |
if ('1' == $purchasesOptions || '1' == $addToCartOption || '1' == $removeFromCartOption) {
|
847 |
add_action('wp_enqueue_scripts', 'seopress_google_analytics_ecommerce_js', 20, 1);
|
848 |
}
|
|
|
|
|
|
|
849 |
}
|
850 |
} else {
|
851 |
if ('1' == seopress_google_analytics_enable_option() && ('' != seopress_google_analytics_ua_option() || '' != seopress_google_analytics_ga4_option())) {
|
852 |
+
add_action('wp_head', 'seopress_google_analytics_js_arguments', 929, 1);
|
853 |
+
add_action('wp_head', 'seopress_custom_tracking_hook', 900, 1);
|
854 |
}
|
855 |
if ('1' == seopress_google_analytics_matomo_enable_option() && '' != seopress_google_analytics_matomo_id_option() && '' != seopress_google_analytics_matomo_site_id_option()) {
|
856 |
+
add_action('wp_head', 'seopress_matomo_js_arguments', 960, 1);
|
857 |
}
|
858 |
if ('1' == seopress_google_analytics_clarity_enable_option() && '' != seopress_google_analytics_clarity_project_id_option()) {
|
859 |
+
add_action('wp_head', 'seopress_clarity_js_arguments', 970, 1);
|
860 |
}
|
861 |
+
add_action('wp_head', 'seopress_custom_tracking_head_hook', 980, 1); //Oxygen: if prioriry >= 990, nothing will be outputed
|
862 |
add_action('wp_body_open', 'seopress_custom_tracking_body_hook', 1020, 1);
|
863 |
add_action('wp_footer', 'seopress_custom_tracking_footer_hook', 1030, 1);
|
864 |
|
867 |
if ('1' == $purchasesOptions || '1' == $addToCartOption || '1' == $removeFromCartOption) {
|
868 |
add_action('wp_enqueue_scripts', 'seopress_google_analytics_ecommerce_js', 20, 1);
|
869 |
}
|
|
|
|
|
|
|
870 |
}
|
871 |
}
|
872 |
} else {
|
873 |
if ('1' == seopress_google_analytics_enable_option() && ('' != seopress_google_analytics_ua_option() || '' != seopress_google_analytics_ga4_option())) {
|
874 |
+
add_action('wp_head', 'seopress_google_analytics_js_arguments', 929, 1);
|
875 |
+
add_action('wp_head', 'seopress_custom_tracking_hook', 900, 1);
|
876 |
}
|
877 |
if ('1' == seopress_google_analytics_matomo_enable_option() && '' != seopress_google_analytics_matomo_id_option() && '' != seopress_google_analytics_matomo_site_id_option()) {
|
878 |
+
add_action('wp_head', 'seopress_matomo_js_arguments', 960, 1);
|
879 |
}
|
880 |
if ('1' == seopress_google_analytics_clarity_enable_option() && '' != seopress_google_analytics_clarity_project_id_option()) {
|
881 |
+
add_action('wp_head', 'seopress_clarity_js_arguments', 970, 1);
|
882 |
}
|
883 |
+
add_action('wp_head', 'seopress_custom_tracking_head_hook', 980, 1);
|
884 |
add_action('wp_body_open', 'seopress_custom_tracking_body_hook', 1020, 1);
|
885 |
add_action('wp_footer', 'seopress_custom_tracking_footer_hook', 1030, 1);
|
886 |
|
889 |
if ('1' == $purchasesOptions || '1' == $addToCartOption || '1' == $removeFromCartOption) {
|
890 |
add_action('wp_enqueue_scripts', 'seopress_google_analytics_ecommerce_js', 20, 1);
|
891 |
}
|
|
|
|
|
892 |
}
|
893 |
}
|
@@ -5,13 +5,17 @@ defined('ABSPATH') or exit('Please don’t call the plugin directly. Thanks
|
|
5 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
6 |
//Generate dynamically the Instant Indexing API key
|
7 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
8 |
-
function seopress_instant_indexing_generate_api_key_fn() {
|
9 |
-
$options = get_option('seopress_instant_indexing_option_name');
|
10 |
|
11 |
$api_key = wp_generate_uuid4();
|
12 |
$api_key = preg_replace('[-]', '', $api_key);
|
13 |
$options['seopress_instant_indexing_bing_api_key'] = base64_encode($api_key);
|
14 |
|
|
|
|
|
|
|
|
|
15 |
update_option('seopress_instant_indexing_option_name', $options);
|
16 |
}
|
17 |
|
@@ -134,13 +138,13 @@ function seopress_instant_indexing_fn($is_manual_submission = true, $permalink =
|
|
134 |
//Prepare the URLS
|
135 |
if ($is_manual_submission === true) {
|
136 |
$urls = preg_split('/\r\n|\r|\n/', $urls);
|
137 |
-
$x_source_info = 'https://www.seopress.org/
|
138 |
|
139 |
$urls = array_slice($urls, 0, 100);
|
140 |
} elseif ($is_manual_submission === false && !empty($permalink)) {
|
141 |
$urls = null;
|
142 |
$urls[] = $permalink;
|
143 |
-
$x_source_info = 'https://www.seopress.org/
|
144 |
}
|
145 |
|
146 |
//Bing API
|
@@ -255,7 +259,8 @@ function seopress_instant_indexing_generate_api_key()
|
|
255 |
seopress_instant_indexing_generate_api_key_fn();
|
256 |
}
|
257 |
|
258 |
-
|
|
|
259 |
}
|
260 |
add_action('wp_ajax_seopress_instant_indexing_generate_api_key', 'seopress_instant_indexing_generate_api_key');
|
261 |
|
5 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
6 |
//Generate dynamically the Instant Indexing API key
|
7 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
8 |
+
function seopress_instant_indexing_generate_api_key_fn($init = false) {
|
9 |
+
$options = get_option('seopress_instant_indexing_option_name') ? get_option('seopress_instant_indexing_option_name') : [];
|
10 |
|
11 |
$api_key = wp_generate_uuid4();
|
12 |
$api_key = preg_replace('[-]', '', $api_key);
|
13 |
$options['seopress_instant_indexing_bing_api_key'] = base64_encode($api_key);
|
14 |
|
15 |
+
if ($init === true) {
|
16 |
+
$options['seopress_instant_indexing_automate_submission'] = '1';
|
17 |
+
}
|
18 |
+
|
19 |
update_option('seopress_instant_indexing_option_name', $options);
|
20 |
}
|
21 |
|
138 |
//Prepare the URLS
|
139 |
if ($is_manual_submission === true) {
|
140 |
$urls = preg_split('/\r\n|\r|\n/', $urls);
|
141 |
+
$x_source_info = 'https://www.seopress.org/6.0/true';
|
142 |
|
143 |
$urls = array_slice($urls, 0, 100);
|
144 |
} elseif ($is_manual_submission === false && !empty($permalink)) {
|
145 |
$urls = null;
|
146 |
$urls[] = $permalink;
|
147 |
+
$x_source_info = 'https://www.seopress.org/6.0/false';
|
148 |
}
|
149 |
|
150 |
//Bing API
|
259 |
seopress_instant_indexing_generate_api_key_fn();
|
260 |
}
|
261 |
|
262 |
+
wp_safe_redirect(admin_url('admin.php?page=seopress-instant-indexing'));
|
263 |
+
exit();
|
264 |
}
|
265 |
add_action('wp_ajax_seopress_instant_indexing_generate_api_key', 'seopress_instant_indexing_generate_api_key');
|
266 |
|
@@ -1331,7 +1331,6 @@ function seopress_remove_hreflang_polylang($hreflangs) {
|
|
1331 |
}
|
1332 |
|
1333 |
if ('0' != get_option('blog_public')) {// Discourage search engines from indexing this site is OFF
|
1334 |
-
//if (seopress_titles_noindex_bypass() || seopress_titles_nofollow_bypass() || seopress_titles_noodp_bypass() || seopress_titles_noarchive_bypass() || seopress_titles_nosnippet_bypass() || has_filter('seopress_titles_robots')) {
|
1335 |
function seopress_titles_advanced_robots_hook() {
|
1336 |
$seopress_comma_array = [];
|
1337 |
|
@@ -1456,7 +1455,6 @@ if ('0' != get_option('blog_public')) {// Discourage search engines from indexin
|
|
1456 |
echo $seopress_titles_robots;
|
1457 |
}
|
1458 |
add_action('wp_head', 'seopress_titles_advanced_robots_hook', 1);
|
1459 |
-
//}
|
1460 |
}
|
1461 |
|
1462 |
//noimageindex
|
1331 |
}
|
1332 |
|
1333 |
if ('0' != get_option('blog_public')) {// Discourage search engines from indexing this site is OFF
|
|
|
1334 |
function seopress_titles_advanced_robots_hook() {
|
1335 |
$seopress_comma_array = [];
|
1336 |
|
1455 |
echo $seopress_titles_robots;
|
1456 |
}
|
1457 |
add_action('wp_head', 'seopress_titles_advanced_robots_hook', 1);
|
|
|
1458 |
}
|
1459 |
|
1460 |
//noimageindex
|
@@ -21,31 +21,21 @@ function seopress_enable()
|
|
21 |
//Front END
|
22 |
if ('1' == seopress_get_toggle_option('titles')) {
|
23 |
//Author archive Disabled
|
|
|
|
|
|
|
24 |
function seopress_titles_archives_author_disable_option()
|
25 |
{
|
26 |
-
|
27 |
-
if (! empty($seopress_titles_archives_author_disable_option)) {
|
28 |
-
foreach ($seopress_titles_archives_author_disable_option as $key => $seopress_titles_archives_author_disable_value) {
|
29 |
-
$options[$key] = $seopress_titles_archives_author_disable_value;
|
30 |
-
}
|
31 |
-
if (isset($seopress_titles_archives_author_disable_option['seopress_titles_archives_author_disable'])) {
|
32 |
-
return $seopress_titles_archives_author_disable_option['seopress_titles_archives_author_disable'];
|
33 |
-
}
|
34 |
-
}
|
35 |
}
|
36 |
|
37 |
//Date archive Disabled
|
|
|
|
|
|
|
38 |
function seopress_titles_archives_date_disable_option()
|
39 |
{
|
40 |
-
|
41 |
-
if (! empty($seopress_titles_archives_date_disable_option)) {
|
42 |
-
foreach ($seopress_titles_archives_date_disable_option as $key => $seopress_titles_archives_date_disable_value) {
|
43 |
-
$options[$key] = $seopress_titles_archives_date_disable_value;
|
44 |
-
}
|
45 |
-
if (isset($seopress_titles_archives_date_disable_option['seopress_titles_archives_date_disable'])) {
|
46 |
-
return $seopress_titles_archives_date_disable_option['seopress_titles_archives_date_disable'];
|
47 |
-
}
|
48 |
-
}
|
49 |
}
|
50 |
|
51 |
function seopress_titles_disable_archives()
|
21 |
//Front END
|
22 |
if ('1' == seopress_get_toggle_option('titles')) {
|
23 |
//Author archive Disabled
|
24 |
+
/**
|
25 |
+
* @deprecated 6.0.0
|
26 |
+
*/
|
27 |
function seopress_titles_archives_author_disable_option()
|
28 |
{
|
29 |
+
return seopress_get_service('TitleOption')->getArchiveAuthorDisable();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
}
|
31 |
|
32 |
//Date archive Disabled
|
33 |
+
/**
|
34 |
+
* @deprecated 6.0.0
|
35 |
+
*/
|
36 |
function seopress_titles_archives_date_disable_option()
|
37 |
{
|
38 |
+
return seopress_get_service('TitleOption')->getArchiveDateDisable();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
}
|
40 |
|
41 |
function seopress_titles_disable_archives()
|
@@ -44,6 +44,15 @@ if (! empty($postslist)) {
|
|
44 |
|
45 |
foreach ($postslist as $post) {
|
46 |
setup_postdata($post);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
$html .= '<li>';
|
48 |
$html .= '<a href="' . get_permalink($post) . '">' . get_the_title($post) . '</a>';
|
49 |
if ('1' != seopress_xml_sitemap_html_date_option()) {
|
44 |
|
45 |
foreach ($postslist as $post) {
|
46 |
setup_postdata($post);
|
47 |
+
|
48 |
+
//Prevent duplicated items
|
49 |
+
if ($cpt_key === 'post' || $cpt_key === 'product') {
|
50 |
+
$tax = $cpt_key ==='product' ? $tax = 'product_cat' : $tax = 'category';
|
51 |
+
if (!has_term($cat, $tax, $post)) {
|
52 |
+
continue;
|
53 |
+
}
|
54 |
+
}
|
55 |
+
|
56 |
$html .= '<li>';
|
57 |
$html .= '<a href="' . get_permalink($post) . '">' . get_the_title($post) . '</a>';
|
58 |
if ('1' != seopress_xml_sitemap_html_date_option()) {
|
@@ -1,379 +1,381 @@
|
|
1 |
<?php
|
2 |
|
3 |
defined('ABSPATH') or exit('Please don’t call the plugin directly. Thanks :)');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
|
5 |
-
//
|
6 |
-
if (
|
7 |
-
|
8 |
-
}
|
9 |
-
|
10 |
-
global $wp_query;
|
11 |
-
|
12 |
-
|
13 |
-
$seopress_titles_title_template ='';
|
14 |
-
$seopress_titles_description_template ='';
|
15 |
-
$seopress_paged ='1';
|
16 |
-
$seopress_context_paged ='';
|
17 |
-
$the_author_meta ='';
|
18 |
-
$sep ='';
|
19 |
-
$seopress_get_post_title ='';
|
20 |
-
$seopress_excerpt ='';
|
21 |
-
$seopress_content ='';
|
22 |
-
$post_thumbnail_url ='';
|
23 |
-
$post_url ='';
|
24 |
-
$post_category ='';
|
25 |
-
$post_tag ='';
|
26 |
-
$get_search_query ='';
|
27 |
-
$woo_single_cat_html ='';
|
28 |
-
$woo_single_tag_html ='';
|
29 |
-
$woo_single_price ='';
|
30 |
-
$woo_single_price_exc_tax ='';
|
31 |
-
$woo_single_sku ='';
|
32 |
-
$author_first_name ='';
|
33 |
-
$author_last_name ='';
|
34 |
-
$author_website ='';
|
35 |
-
$author_nickname ='';
|
36 |
-
$author_bio ='';
|
37 |
-
$target_kw ='';
|
38 |
-
$month_name_archive ='';
|
39 |
-
|
40 |
-
//Excerpt length
|
41 |
-
$seopress_excerpt_length = 50;
|
42 |
-
$seopress_excerpt_length = apply_filters('seopress_excerpt_length', $seopress_excerpt_length);
|
43 |
-
|
44 |
-
//Remove WordPress Filters
|
45 |
-
$seopress_array_filters = ['category_description', 'tag_description', 'term_description'];
|
46 |
-
foreach ($seopress_array_filters as $key => $value) {
|
47 |
-
remove_filter($value, 'wpautop');
|
48 |
-
}
|
49 |
-
|
50 |
-
//Template variables
|
51 |
-
if (function_exists('seopress_titles_sep_option') && seopress_titles_sep_option()) {
|
52 |
-
$sep = seopress_titles_sep_option();
|
53 |
-
} else {
|
54 |
-
$sep = '-';
|
55 |
-
}
|
56 |
-
|
57 |
-
if ( ! is_404() && '' != $post) {
|
58 |
-
if (has_excerpt($post->ID)) {
|
59 |
-
$seopress_excerpt = get_the_excerpt();
|
60 |
-
$seopress_content = get_post_field('post_content', $post->ID);
|
61 |
}
|
62 |
-
}
|
63 |
|
64 |
-
if (
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
}
|
70 |
|
71 |
-
if (
|
72 |
-
|
73 |
-
$
|
74 |
} else {
|
75 |
-
$
|
76 |
}
|
77 |
-
/* translators: %d current page (eg: 2) %2$d total number of pages (eg: 30) */
|
78 |
-
$seopress_context_paged = sprintf(__('Page %d of %2$d', 'wp-seopress'), $current_page, $wp_query->max_num_pages);
|
79 |
-
$seopress_context_paged = apply_filters('seopress_context_paged', $seopress_context_paged);
|
80 |
-
}
|
81 |
|
82 |
-
if (
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
|
|
|
|
90 |
|
91 |
-
if ((is_singular() || $is_oembed === true) &&
|
92 |
-
|
93 |
-
|
|
|
|
|
|
|
|
|
|
|
94 |
|
95 |
-
if (
|
96 |
-
|
|
|
|
|
|
|
|
|
97 |
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
|
|
105 |
}
|
106 |
-
}
|
107 |
|
108 |
-
if ((is_singular() || $is_oembed === true) && isset($post)) {
|
109 |
-
|
110 |
-
|
111 |
-
}
|
112 |
|
113 |
-
if ((is_singular() || $is_oembed === true) && isset($post)) {
|
114 |
-
|
115 |
-
|
116 |
-
}
|
117 |
|
118 |
-
if ((is_single() || $is_oembed === true) && has_category('', $post)) {
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
}
|
123 |
|
124 |
-
if ((is_single() || $is_oembed === true) && has_tag('', $post)) {
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
}
|
129 |
|
130 |
-
if ('' != get_search_query()) {
|
131 |
-
|
132 |
-
} else {
|
133 |
-
|
134 |
-
}
|
135 |
-
$get_search_query = apply_filters('seopress_get_search_query', $get_search_query);
|
136 |
|
137 |
-
//Post Title
|
138 |
-
if ((is_singular() || $is_oembed === true) && isset($post)) {
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
}
|
143 |
|
144 |
-
//Post Excerpt
|
145 |
-
if ('' != $seopress_excerpt) {
|
146 |
-
|
147 |
-
} elseif ('' != $post) {
|
148 |
-
|
149 |
-
|
|
|
|
|
|
|
150 |
} else {
|
151 |
$seopress_get_the_excerpt = null;
|
152 |
}
|
153 |
-
} else {
|
154 |
-
$seopress_get_the_excerpt = null;
|
155 |
-
}
|
156 |
|
157 |
-
//Post Content
|
158 |
-
if ('' != $post) {
|
159 |
-
|
160 |
-
|
|
|
|
|
|
|
161 |
} else {
|
162 |
$seopress_content = null;
|
163 |
}
|
164 |
-
} else {
|
165 |
-
$seopress_content = null;
|
166 |
-
}
|
167 |
|
168 |
-
//WooCommerce
|
169 |
-
include_once ABSPATH . 'wp-admin/includes/plugin.php';
|
170 |
-
if (is_plugin_active('woocommerce/woocommerce.php')) {
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
|
175 |
-
|
176 |
-
|
177 |
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
|
182 |
-
|
183 |
|
184 |
-
|
185 |
-
|
186 |
|
187 |
-
|
188 |
-
|
189 |
|
190 |
-
|
191 |
-
|
192 |
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
|
197 |
-
|
198 |
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
if (isset($post->ID) && function_exists('wc_get_product')) {
|
203 |
-
$product = wc_get_product($post->ID);
|
204 |
|
205 |
-
if (isset($
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
|
|
|
|
|
|
|
|
217 |
}
|
218 |
}
|
219 |
}
|
220 |
}
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
}
|
228 |
-
}
|
229 |
|
230 |
-
$seopress_titles_template_variables_array = [
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
];
|
285 |
-
|
286 |
-
$seopress_titles_template_variables_array = apply_filters('seopress_titles_template_variables_array', $seopress_titles_template_variables_array);
|
287 |
-
|
288 |
-
$seopress_titles_template_replace_array = [
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
];
|
343 |
-
|
344 |
-
$seopress_titles_template_replace_array = apply_filters('seopress_titles_template_replace_array', $seopress_titles_template_replace_array);
|
345 |
-
|
346 |
-
$variables = [
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
];
|
376 |
-
|
377 |
-
$variables = apply_filters('seopress_titles_template_variables', $variables);
|
378 |
-
|
379 |
-
return $variables;
|
|
|
|
1 |
<?php
|
2 |
|
3 |
defined('ABSPATH') or exit('Please don’t call the plugin directly. Thanks :)');
|
4 |
+
function seopress_get_dynamic_variables($variables, $post, $is_oembed){
|
5 |
+
//Init
|
6 |
+
if (isset($is_oembed) && $is_oembed === false) {
|
7 |
+
global $post;
|
8 |
+
}
|
9 |
+
global $term;
|
10 |
+
global $wp_query;
|
11 |
+
|
12 |
+
|
13 |
+
$seopress_titles_title_template ='';
|
14 |
+
$seopress_titles_description_template ='';
|
15 |
+
$seopress_paged ='1';
|
16 |
+
$seopress_context_paged ='';
|
17 |
+
$the_author_meta ='';
|
18 |
+
$sep ='';
|
19 |
+
$seopress_get_post_title ='';
|
20 |
+
$seopress_excerpt ='';
|
21 |
+
$seopress_content ='';
|
22 |
+
$post_thumbnail_url ='';
|
23 |
+
$post_url ='';
|
24 |
+
$post_category ='';
|
25 |
+
$post_tag ='';
|
26 |
+
$get_search_query ='';
|
27 |
+
$woo_single_cat_html ='';
|
28 |
+
$woo_single_tag_html ='';
|
29 |
+
$woo_single_price ='';
|
30 |
+
$woo_single_price_exc_tax ='';
|
31 |
+
$woo_single_sku ='';
|
32 |
+
$author_first_name ='';
|
33 |
+
$author_last_name ='';
|
34 |
+
$author_website ='';
|
35 |
+
$author_nickname ='';
|
36 |
+
$author_bio ='';
|
37 |
+
$target_kw ='';
|
38 |
+
$month_name_archive ='';
|
39 |
+
|
40 |
+
//Excerpt length
|
41 |
+
$seopress_excerpt_length = 50;
|
42 |
+
$seopress_excerpt_length = apply_filters('seopress_excerpt_length', $seopress_excerpt_length);
|
43 |
+
|
44 |
+
//Remove WordPress Filters
|
45 |
+
$seopress_array_filters = ['category_description', 'tag_description', 'term_description'];
|
46 |
+
foreach ($seopress_array_filters as $key => $value) {
|
47 |
+
remove_filter($value, 'wpautop');
|
48 |
+
}
|
49 |
|
50 |
+
//Template variables
|
51 |
+
if (function_exists('seopress_titles_sep_option') && seopress_titles_sep_option()) {
|
52 |
+
$sep = seopress_titles_sep_option();
|
53 |
+
} else {
|
54 |
+
$sep = '-';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
}
|
|
|
56 |
|
57 |
+
if ( ! is_404() && '' != $post) {
|
58 |
+
if (has_excerpt($post->ID)) {
|
59 |
+
$seopress_excerpt = get_the_excerpt();
|
60 |
+
$seopress_content = get_post_field('post_content', $post->ID);
|
61 |
+
}
|
62 |
+
}
|
63 |
|
64 |
+
if (get_query_var('paged') > '1') {
|
65 |
+
$seopress_paged = get_query_var('paged');
|
66 |
+
$seopress_paged = apply_filters('seopress_paged', $seopress_paged);
|
67 |
} else {
|
68 |
+
$seopress_paged = '';
|
69 |
}
|
|
|
|
|
|
|
|
|
70 |
|
71 |
+
if (isset($wp_query->max_num_pages)) {
|
72 |
+
if (get_query_var('paged') > 1) {
|
73 |
+
$current_page = get_query_var('paged');
|
74 |
+
} else {
|
75 |
+
$current_page = 1;
|
76 |
+
}
|
77 |
+
/* translators: %d current page (eg: 2) %2$d total number of pages (eg: 30) */
|
78 |
+
$seopress_context_paged = sprintf(__('Page %d of %2$d', 'wp-seopress'), $current_page, $wp_query->max_num_pages);
|
79 |
+
$seopress_context_paged = apply_filters('seopress_context_paged', $seopress_context_paged);
|
80 |
+
}
|
81 |
|
82 |
+
if ((is_singular() || $is_oembed === true) && isset($post->post_author)) {
|
83 |
+
$the_author_meta = esc_attr(get_the_author_meta('display_name', $post->post_author));
|
84 |
+
$author_first_name = esc_attr(get_the_author_meta('first_name', $post->post_author));
|
85 |
+
$author_last_name = esc_attr(get_the_author_meta('last_name', $post->post_author));
|
86 |
+
$author_website = esc_attr(get_the_author_meta('url', $post->post_author));
|
87 |
+
$author_nickname = esc_attr(get_the_author_meta('nickname', $post->post_author));
|
88 |
+
$author_bio = esc_attr(get_the_author_meta('description', $post->post_author));
|
89 |
+
}
|
90 |
|
91 |
+
if ((is_singular() || $is_oembed === true) && get_post_meta($post->ID, '_seopress_analysis_target_kw', true)) {
|
92 |
+
$target_kw = get_post_meta($post->ID, '_seopress_analysis_target_kw', true);
|
93 |
+
}
|
94 |
+
|
95 |
+
if (is_author() && is_int(get_queried_object_id())) {
|
96 |
+
$user_info = get_userdata(get_queried_object_id());
|
97 |
|
98 |
+
if (isset($user_info)) {
|
99 |
+
$the_author_meta = esc_attr($user_info->display_name);
|
100 |
+
$author_first_name = esc_attr($user_info->first_name);
|
101 |
+
$author_last_name = esc_attr($user_info->last_name);
|
102 |
+
$author_website = esc_attr($user_info->url);
|
103 |
+
$author_nickname = esc_attr($user_info->nickname);
|
104 |
+
$author_bio = esc_attr($user_info->description);
|
105 |
+
}
|
106 |
}
|
|
|
107 |
|
108 |
+
if ((is_singular() || $is_oembed === true) && isset($post)) {
|
109 |
+
$post_thumbnail_url = get_the_post_thumbnail_url($post, 'full');
|
110 |
+
$post_thumbnail_url = apply_filters('seopress_titles_post_thumbnail_url', $post_thumbnail_url);
|
111 |
+
}
|
112 |
|
113 |
+
if ((is_singular() || $is_oembed === true) && isset($post)) {
|
114 |
+
$post_url = esc_url(get_permalink($post));
|
115 |
+
$post_url = apply_filters('seopress_titles_post_url', $post_url);
|
116 |
+
}
|
117 |
|
118 |
+
if ((is_single() || $is_oembed === true) && has_category('', $post)) {
|
119 |
+
$post_category_array = get_the_terms($post->ID, 'category');
|
120 |
+
$post_category = $post_category_array[0]->name;
|
121 |
+
$post_category = apply_filters('seopress_titles_cat', $post_category);
|
122 |
+
}
|
123 |
|
124 |
+
if ((is_single() || $is_oembed === true) && has_tag('', $post)) {
|
125 |
+
$post_tag_array = get_the_terms($post->ID, 'post_tag');
|
126 |
+
$post_tag = $post_tag_array[0]->name;
|
127 |
+
$post_tag = apply_filters('seopress_titles_tag', $post_tag);
|
128 |
+
}
|
129 |
|
130 |
+
if ('' != get_search_query()) {
|
131 |
+
$get_search_query = esc_attr('"' . get_search_query() . '"');
|
132 |
+
} else {
|
133 |
+
$get_search_query = esc_attr('" "');
|
134 |
+
}
|
135 |
+
$get_search_query = apply_filters('seopress_get_search_query', $get_search_query);
|
136 |
|
137 |
+
//Post Title
|
138 |
+
if ((is_singular() || $is_oembed === true) && isset($post)) {
|
139 |
+
$seopress_get_post_title = get_post_field('post_title', $post->ID);
|
140 |
+
$seopress_get_post_title = str_replace('<br>', ' ', $seopress_get_post_title);
|
141 |
+
$seopress_get_post_title = esc_attr(strip_tags($seopress_get_post_title));
|
142 |
+
}
|
143 |
|
144 |
+
//Post Excerpt
|
145 |
+
if ('' != $seopress_excerpt) {
|
146 |
+
$seopress_get_the_excerpt = wp_trim_words(esc_attr(stripslashes_deep(wp_filter_nohtml_kses(wp_strip_all_tags(strip_shortcodes($seopress_excerpt), true)))), $seopress_excerpt_length);
|
147 |
+
} elseif ('' != $post) {
|
148 |
+
if ('' != get_post_field('post_content', $post->ID)) {
|
149 |
+
$seopress_get_the_excerpt = wp_trim_words(esc_attr(stripslashes_deep(wp_filter_nohtml_kses(wp_strip_all_tags(strip_shortcodes(get_post_field('post_content', $post->ID), true))))), $seopress_excerpt_length);
|
150 |
+
} else {
|
151 |
+
$seopress_get_the_excerpt = null;
|
152 |
+
}
|
153 |
} else {
|
154 |
$seopress_get_the_excerpt = null;
|
155 |
}
|
|
|
|
|
|
|
156 |
|
157 |
+
//Post Content
|
158 |
+
if ('' != $post) {
|
159 |
+
if ('' != get_post_field('post_content', $post->ID)) {
|
160 |
+
$seopress_content = wp_trim_words(esc_attr(stripslashes_deep(wp_filter_nohtml_kses(wp_strip_all_tags(strip_shortcodes(get_post_field('post_content', $post->ID), true))))), $seopress_excerpt_length);
|
161 |
+
} else {
|
162 |
+
$seopress_content = null;
|
163 |
+
}
|
164 |
} else {
|
165 |
$seopress_content = null;
|
166 |
}
|
|
|
|
|
|
|
167 |
|
168 |
+
//WooCommerce
|
169 |
+
include_once ABSPATH . 'wp-admin/includes/plugin.php';
|
170 |
+
if (is_plugin_active('woocommerce/woocommerce.php')) {
|
171 |
+
if (is_singular(['product']) || $is_oembed === true) {
|
172 |
+
//Woo Cat product
|
173 |
+
$woo_single_cats = get_the_terms($post->ID, 'product_cat');
|
174 |
|
175 |
+
if ($woo_single_cats && ! is_wp_error($woo_single_cats)) {
|
176 |
+
$woo_single_cat = [];
|
177 |
|
178 |
+
foreach ($woo_single_cats as $term) {
|
179 |
+
$woo_single_cat[$term->term_id] = $term->name;
|
180 |
+
}
|
181 |
|
182 |
+
$woo_single_cat = apply_filters('seopress_titles_product_cat', $woo_single_cat);
|
183 |
|
184 |
+
$woo_single_cat_html = stripslashes_deep(wp_filter_nohtml_kses(join(', ', $woo_single_cat)));
|
185 |
+
}
|
186 |
|
187 |
+
//Woo Tag product
|
188 |
+
$woo_single_tags = get_the_terms($post->ID, 'product_tag');
|
189 |
|
190 |
+
if ($woo_single_tags && ! is_wp_error($woo_single_tags)) {
|
191 |
+
$woo_single_tag = [];
|
192 |
|
193 |
+
foreach ($woo_single_tags as $term) {
|
194 |
+
$woo_single_tag[$term->term_id] = $term->name;
|
195 |
+
}
|
196 |
|
197 |
+
$woo_single_tag = apply_filters('seopress_titles_product_tag', $woo_single_tag);
|
198 |
|
199 |
+
$woo_single_tag_html = stripslashes_deep(wp_filter_nohtml_kses(join(', ', $woo_single_tag)));
|
200 |
+
}
|
|
|
|
|
|
|
201 |
|
202 |
+
if (isset($post->ID) && function_exists('wc_get_product')) {
|
203 |
+
$product = wc_get_product($post->ID);
|
204 |
+
|
205 |
+
if (isset($product) && is_object($product)) {
|
206 |
+
//Woo Price
|
207 |
+
if (method_exists($product, 'get_price') && function_exists('wc_get_price_including_tax')) {
|
208 |
+
$woo_single_price = wc_get_price_including_tax($product);
|
209 |
+
}
|
210 |
+
//Woo Price tax excluded
|
211 |
+
if (method_exists($product, 'get_price') && function_exists('wc_get_price_excluding_tax')) {
|
212 |
+
$woo_single_price_exc_tax = wc_get_price_excluding_tax($product);
|
213 |
+
}
|
214 |
+
//Woo SKU Number
|
215 |
+
if (method_exists($product, 'get_sku')) {
|
216 |
+
$woo_single_sku = $product->get_sku();
|
217 |
+
}
|
218 |
}
|
219 |
}
|
220 |
}
|
221 |
}
|
222 |
+
if (get_query_var('monthnum')) {
|
223 |
+
global $wp_locale;
|
224 |
+
$month_name_archive = get_query_var('monthnum');
|
225 |
+
if ( ! empty( $month_name_archive ) ) {
|
226 |
+
$month_name_archive = esc_attr(wp_strip_all_tags($wp_locale->get_month( $month_name_archive ) ) );
|
227 |
+
}
|
228 |
}
|
|
|
229 |
|
230 |
+
$seopress_titles_template_variables_array = [
|
231 |
+
'%%sep%%',
|
232 |
+
'%%sitetitle%%',
|
233 |
+
'%%sitename%%',
|
234 |
+
'%%tagline%%',
|
235 |
+
'%%sitedesc%%',
|
236 |
+
'%%title%%',
|
237 |
+
'%%post_title%%',
|
238 |
+
'%%post_excerpt%%',
|
239 |
+
'%%excerpt%%',
|
240 |
+
'%%post_content%%',
|
241 |
+
'%%post_thumbnail_url%%',
|
242 |
+
'%%post_url%%',
|
243 |
+
'%%post_date%%',
|
244 |
+
'%%date%%',
|
245 |
+
'%%post_modified_date%%',
|
246 |
+
'%%post_author%%',
|
247 |
+
'%%post_category%%',
|
248 |
+
'%%post_tag%%',
|
249 |
+
'%%_category_title%%',
|
250 |
+
'%%_category_description%%',
|
251 |
+
'%%tag_title%%',
|
252 |
+
'%%tag_description%%',
|
253 |
+
'%%term_title%%',
|
254 |
+
'%%term_description%%',
|
255 |
+
'%%search_keywords%%',
|
256 |
+
'%%current_pagination%%',
|
257 |
+
'%%page%%',
|
258 |
+
'%%cpt_plural%%',
|
259 |
+
'%%archive_title%%',
|
260 |
+
'%%archive_date%%',
|
261 |
+
'%%archive_date_day%%',
|
262 |
+
'%%archive_date_month%%',
|
263 |
+
'%%archive_date_month_name%%',
|
264 |
+
'%%archive_date_year%%',
|
265 |
+
'%%wc_single_cat%%',
|
266 |
+
'%%wc_single_tag%%',
|
267 |
+
'%%wc_single_short_desc%%',
|
268 |
+
'%%wc_single_price%%',
|
269 |
+
'%%wc_single_price_exc_tax%%',
|
270 |
+
'%%wc_sku%%',
|
271 |
+
'%%currentday%%',
|
272 |
+
'%%currentmonth%%',
|
273 |
+
'%%currentmonth_short%%',
|
274 |
+
'%%currentyear%%',
|
275 |
+
'%%currentdate%%',
|
276 |
+
'%%currenttime%%',
|
277 |
+
'%%author_first_name%%',
|
278 |
+
'%%author_last_name%%',
|
279 |
+
'%%author_website%%',
|
280 |
+
'%%author_nickname%%',
|
281 |
+
'%%author_bio%%',
|
282 |
+
'%%currentmonth_num%%',
|
283 |
+
'%%target_keyword%%',
|
284 |
+
];
|
285 |
+
|
286 |
+
$seopress_titles_template_variables_array = apply_filters('seopress_titles_template_variables_array', $seopress_titles_template_variables_array);
|
287 |
+
|
288 |
+
$seopress_titles_template_replace_array = [
|
289 |
+
$sep,
|
290 |
+
get_bloginfo('name'),
|
291 |
+
get_bloginfo('name'),
|
292 |
+
get_bloginfo('description'),
|
293 |
+
get_bloginfo('description'),
|
294 |
+
$seopress_get_post_title,
|
295 |
+
$seopress_get_post_title,
|
296 |
+
$seopress_get_the_excerpt,
|
297 |
+
$seopress_get_the_excerpt,
|
298 |
+
$seopress_content,
|
299 |
+
$post_thumbnail_url,
|
300 |
+
$post_url,
|
301 |
+
get_the_date('', $post),
|
302 |
+
get_the_date('', $post),
|
303 |
+
get_the_modified_date('', $post),
|
304 |
+
$the_author_meta,
|
305 |
+
$post_category,
|
306 |
+
$post_tag,
|
307 |
+
single_cat_title('', false),
|
308 |
+
wp_trim_words(stripslashes_deep(wp_filter_nohtml_kses(category_description())), $seopress_excerpt_length),
|
309 |
+
single_tag_title('', false),
|
310 |
+
wp_trim_words(stripslashes_deep(wp_filter_nohtml_kses(tag_description())), $seopress_excerpt_length),
|
311 |
+
single_term_title('', false),
|
312 |
+
wp_trim_words(stripslashes_deep(wp_filter_nohtml_kses(term_description())), $seopress_excerpt_length),
|
313 |
+
$get_search_query,
|
314 |
+
$seopress_paged,
|
315 |
+
$seopress_context_paged,
|
316 |
+
post_type_archive_title('', false),
|
317 |
+
get_the_archive_title(),
|
318 |
+
get_query_var('monthnum') . ' - ' . get_query_var('year'),
|
319 |
+
get_query_var('day'),
|
320 |
+
get_query_var('monthnum'),
|
321 |
+
$month_name_archive,
|
322 |
+
get_query_var('year'),
|
323 |
+
$woo_single_cat_html,
|
324 |
+
$woo_single_tag_html,
|
325 |
+
$seopress_get_the_excerpt,
|
326 |
+
$woo_single_price,
|
327 |
+
$woo_single_price_exc_tax,
|
328 |
+
$woo_single_sku,
|
329 |
+
date_i18n('j'),
|
330 |
+
date_i18n('F'),
|
331 |
+
date_i18n('M'),
|
332 |
+
date('Y'),
|
333 |
+
date_i18n(get_option('date_format')),
|
334 |
+
current_time(get_option('time_format')),
|
335 |
+
$author_first_name,
|
336 |
+
$author_last_name,
|
337 |
+
$author_website,
|
338 |
+
$author_nickname,
|
339 |
+
$author_bio,
|
340 |
+
date_i18n('n'),
|
341 |
+
$target_kw,
|
342 |
+
];
|
343 |
+
|
344 |
+
$seopress_titles_template_replace_array = apply_filters('seopress_titles_template_replace_array', $seopress_titles_template_replace_array);
|
345 |
+
|
346 |
+
$variables = [
|
347 |
+
'post' => $post,
|
348 |
+
'term' => $term,
|
349 |
+
'seopress_titles_title_template' => $seopress_titles_title_template,
|
350 |
+
'seopress_titles_description_template' => $seopress_titles_description_template,
|
351 |
+
'seopress_paged' => $seopress_paged,
|
352 |
+
'seopress_context_paged' => $seopress_context_paged,
|
353 |
+
'the_author_meta' => $the_author_meta,
|
354 |
+
'sep' => $sep,
|
355 |
+
'seopress_excerpt' => $seopress_excerpt,
|
356 |
+
'post_category' => $post_category,
|
357 |
+
'post_tag' => $post_tag,
|
358 |
+
'post_thumbnail_url' => $post_thumbnail_url,
|
359 |
+
'post_url' => $post_url,
|
360 |
+
'get_search_query' => $get_search_query,
|
361 |
+
'woo_single_cat_html' => $woo_single_cat_html,
|
362 |
+
'woo_single_tag_html' => $woo_single_tag_html,
|
363 |
+
'woo_single_price' => $woo_single_price,
|
364 |
+
'woo_single_price_exc_tax' => $woo_single_price_exc_tax,
|
365 |
+
'woo_single_sku' => $woo_single_sku,
|
366 |
+
'author_first_name' => $author_first_name,
|
367 |
+
'author_last_name' => $author_last_name,
|
368 |
+
'author_website' => $author_website,
|
369 |
+
'author_nickname' => $author_nickname,
|
370 |
+
'author_bio' => $author_bio,
|
371 |
+
'seopress_get_the_excerpt' => $seopress_get_the_excerpt,
|
372 |
+
'seopress_titles_template_variables_array' => $seopress_titles_template_variables_array,
|
373 |
+
'seopress_titles_template_replace_array' => $seopress_titles_template_replace_array,
|
374 |
+
'seopress_excerpt_length' => $seopress_excerpt_length,
|
375 |
+
];
|
376 |
+
|
377 |
+
$variables = apply_filters('seopress_titles_template_variables', $variables);
|
378 |
+
|
379 |
+
return $variables;
|
380 |
+
|
381 |
+
}
|
@@ -1,21 +1,20 @@
|
|
1 |
-
# Copyright (C) 2022 SEOPress
|
2 |
# This file is distributed under the GPLv2.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: SEOPress
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-seopress\n"
|
7 |
"Last-Translator: SEOPress Team <contact@seopress.org>\n"
|
8 |
"Language-Team: SEOPress Team <contact@seopress.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"POT-Creation-Date: 2022-
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.6.0\n"
|
15 |
"X-Domain: wp-seopress\n"
|
16 |
|
17 |
#. Plugin Name of the plugin
|
18 |
-
#. Author of the plugin
|
19 |
msgid "SEOPress"
|
20 |
msgstr ""
|
21 |
|
@@ -28,6 +27,10 @@ msgstr ""
|
|
28 |
msgid "One of the best SEO plugins for WordPress."
|
29 |
msgstr ""
|
30 |
|
|
|
|
|
|
|
|
|
31 |
#: inc/admin/admin-bar/admin-bar.php:26
|
32 |
#: inc/admin/admin.php:93
|
33 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:39
|
@@ -66,8 +69,8 @@ msgid "nofollow is off."
|
|
66 |
msgstr ""
|
67 |
|
68 |
#: inc/admin/admin-bar/admin-bar.php:106
|
69 |
-
#: inc/admin/admin-features-list.php:18
|
70 |
#: inc/admin/admin.php:100
|
|
|
71 |
#: app/react/constants/tabs.js:28
|
72 |
msgid "Titles & Metas"
|
73 |
msgstr ""
|
@@ -77,20 +80,20 @@ msgid "XML / HTML Sitemap"
|
|
77 |
msgstr ""
|
78 |
|
79 |
#: inc/admin/admin-bar/admin-bar.php:118
|
80 |
-
#: inc/admin/admin-features-list.php:30
|
81 |
#: inc/admin/admin.php:102
|
|
|
82 |
msgid "Social Networks"
|
83 |
msgstr ""
|
84 |
|
85 |
#: inc/admin/admin-bar/admin-bar.php:124
|
86 |
-
#: inc/admin/admin-features-list.php:36
|
87 |
#: inc/admin/admin.php:103
|
|
|
88 |
msgid "Analytics"
|
89 |
msgstr ""
|
90 |
|
91 |
#: inc/admin/admin-bar/admin-bar.php:130
|
92 |
-
#: inc/admin/admin-features-list.php:42
|
93 |
#: inc/admin/admin.php:104
|
|
|
94 |
#: inc/admin/sections/InstantIndexing.php:9
|
95 |
msgid "Instant Indexing"
|
96 |
msgstr ""
|
@@ -110,15 +113,15 @@ msgid "Advanced"
|
|
110 |
msgstr ""
|
111 |
|
112 |
#: inc/admin/admin-bar/admin-bar.php:144
|
113 |
-
#: inc/admin/
|
114 |
#: inc/admin/wizard/admin-wizard.php:262
|
115 |
#: src/Actions/Admin/ManageColumn.php:94
|
116 |
msgid "Insights"
|
117 |
msgstr ""
|
118 |
|
119 |
#: inc/admin/admin-bar/admin-bar.php:151
|
120 |
-
#: inc/admin/admin-features-list.php:164
|
121 |
#: inc/admin/admin.php:106
|
|
|
122 |
msgid "Tools"
|
123 |
msgstr ""
|
124 |
|
@@ -127,13 +130,13 @@ msgid "BOT"
|
|
127 |
msgstr ""
|
128 |
|
129 |
#: inc/admin/admin-bar/admin-bar.php:166
|
130 |
-
#: inc/admin/
|
131 |
-
#: inc/admin/blocks/notifications-center.php:
|
132 |
msgid "License"
|
133 |
msgstr ""
|
134 |
|
135 |
#: inc/admin/admin-bar/admin-bar.php:172
|
136 |
-
#: inc/admin/blocks/notifications-center.php:
|
137 |
#: inc/admin/wizard/admin-wizard.php:261
|
138 |
msgid "PRO"
|
139 |
msgstr ""
|
@@ -144,8 +147,8 @@ msgid "Schemas"
|
|
144 |
msgstr ""
|
145 |
|
146 |
#: inc/admin/admin-bar/admin-bar.php:187
|
147 |
-
#: inc/admin/admin-features-list.php:65
|
148 |
#: inc/admin/admin-pages/Tools.php:24
|
|
|
149 |
msgid "Redirections"
|
150 |
msgstr ""
|
151 |
|
@@ -164,7 +167,7 @@ msgid "Home"
|
|
164 |
msgstr ""
|
165 |
|
166 |
#: inc/admin/admin-bar/admin-header.php:29
|
167 |
-
#:
|
168 |
msgid "Display"
|
169 |
msgstr ""
|
170 |
|
@@ -426,175 +429,6 @@ msgstr ""
|
|
426 |
msgid "Target keyword"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: inc/admin/admin-features-list.php:10
|
430 |
-
msgid "SEO management"
|
431 |
-
msgstr ""
|
432 |
-
|
433 |
-
#: inc/admin/admin-features-list.php:19
|
434 |
-
msgid "Manage all your titles & metas for post types, taxonomies, archives..."
|
435 |
-
msgstr ""
|
436 |
-
|
437 |
-
#: inc/admin/admin-features-list.php:24
|
438 |
-
msgid "XML & HTML Sitemaps"
|
439 |
-
msgstr ""
|
440 |
-
|
441 |
-
#: inc/admin/admin-features-list.php:25
|
442 |
-
msgid "Manage your XML - Image - Video - HTML Sitemap."
|
443 |
-
msgstr ""
|
444 |
-
|
445 |
-
#: inc/admin/admin-features-list.php:31
|
446 |
-
msgid "Open Graph, Twitter Card, Google Knowledge Graph and more..."
|
447 |
-
msgstr ""
|
448 |
-
|
449 |
-
#: inc/admin/admin-features-list.php:37
|
450 |
-
msgid "Track everything about your visitors with Google Analytics / Matomo / Microsoft Clarity."
|
451 |
-
msgstr ""
|
452 |
-
|
453 |
-
#: inc/admin/admin-features-list.php:43
|
454 |
-
msgid "Ping Google & Bing to quickly index your content."
|
455 |
-
msgstr ""
|
456 |
-
|
457 |
-
#: inc/admin/admin-features-list.php:48
|
458 |
-
#: inc/admin/admin.php:105
|
459 |
-
msgid "Image SEO & Advanced settings"
|
460 |
-
msgstr ""
|
461 |
-
|
462 |
-
#: inc/admin/admin-features-list.php:49
|
463 |
-
msgid "Optimize your images for SEO. Configure advanced settings."
|
464 |
-
msgstr ""
|
465 |
-
|
466 |
-
#: inc/admin/admin-features-list.php:57
|
467 |
-
msgid "Track your keyword positions and backlinks directly in your WordPress."
|
468 |
-
msgstr ""
|
469 |
-
|
470 |
-
#: inc/admin/admin-features-list.php:66
|
471 |
-
msgid "Monitor 404, create 301, 302 and 307 redirections."
|
472 |
-
msgstr ""
|
473 |
-
|
474 |
-
#: inc/admin/admin-features-list.php:71
|
475 |
-
msgid "Structured Data Types"
|
476 |
-
msgstr ""
|
477 |
-
|
478 |
-
#: inc/admin/admin-features-list.php:72
|
479 |
-
msgid "Add data types to your content: articles, courses, recipes, videos, events, products and more."
|
480 |
-
msgstr ""
|
481 |
-
|
482 |
-
#: inc/admin/admin-features-list.php:78
|
483 |
-
msgid "robots.txt"
|
484 |
-
msgstr ""
|
485 |
-
|
486 |
-
#: inc/admin/admin-features-list.php:79
|
487 |
-
msgid "Edit your robots.txt file."
|
488 |
-
msgstr ""
|
489 |
-
|
490 |
-
#: inc/admin/admin-features-list.php:86
|
491 |
-
msgid ".htaccess"
|
492 |
-
msgstr ""
|
493 |
-
|
494 |
-
#: inc/admin/admin-features-list.php:87
|
495 |
-
msgid "Edit your htaccess file."
|
496 |
-
msgstr ""
|
497 |
-
|
498 |
-
#: inc/admin/admin-features-list.php:94
|
499 |
-
msgid "Local Business"
|
500 |
-
msgstr ""
|
501 |
-
|
502 |
-
#: inc/admin/admin-features-list.php:95
|
503 |
-
msgid "Add Google Local Business data type."
|
504 |
-
msgstr ""
|
505 |
-
|
506 |
-
#: inc/admin/admin-features-list.php:100
|
507 |
-
msgid "Breadcrumbs"
|
508 |
-
msgstr ""
|
509 |
-
|
510 |
-
#: inc/admin/admin-features-list.php:101
|
511 |
-
msgid "Enable Breadcrumbs for your theme and improve your SEO in SERPs."
|
512 |
-
msgstr ""
|
513 |
-
|
514 |
-
#: inc/admin/admin-features-list.php:106
|
515 |
-
msgid "WooCommerce"
|
516 |
-
msgstr ""
|
517 |
-
|
518 |
-
#: inc/admin/admin-features-list.php:107
|
519 |
-
msgid "Improve WooCommerce SEO."
|
520 |
-
msgstr ""
|
521 |
-
|
522 |
-
#: inc/admin/admin-features-list.php:112
|
523 |
-
msgid "Easy Digital Downloads"
|
524 |
-
msgstr ""
|
525 |
-
|
526 |
-
#: inc/admin/admin-features-list.php:113
|
527 |
-
msgid "Improve Easy Digital Downloads SEO."
|
528 |
-
msgstr ""
|
529 |
-
|
530 |
-
#: inc/admin/admin-features-list.php:118
|
531 |
-
msgid "Google Page Speed"
|
532 |
-
msgstr ""
|
533 |
-
|
534 |
-
#: inc/admin/admin-features-list.php:119
|
535 |
-
msgid "Track your website performance to improve SEO with Google Page Speed."
|
536 |
-
msgstr ""
|
537 |
-
|
538 |
-
#: inc/admin/admin-features-list.php:125
|
539 |
-
msgid "Inspect URL with Google Search Console"
|
540 |
-
msgstr ""
|
541 |
-
|
542 |
-
#: inc/admin/admin-features-list.php:126
|
543 |
-
msgid "Inspect your URL for details about crawling, indexing, mobile compatibility, schemas and more."
|
544 |
-
msgstr ""
|
545 |
-
|
546 |
-
#: inc/admin/admin-features-list.php:132
|
547 |
-
msgid "Google News Sitemap"
|
548 |
-
msgstr ""
|
549 |
-
|
550 |
-
#: inc/admin/admin-features-list.php:133
|
551 |
-
msgid "Optimize your site for Google News."
|
552 |
-
msgstr ""
|
553 |
-
|
554 |
-
#: inc/admin/admin-features-list.php:138
|
555 |
-
msgid "Broken links"
|
556 |
-
msgstr ""
|
557 |
-
|
558 |
-
#: inc/admin/admin-features-list.php:139
|
559 |
-
msgid "Scan your site to find SEO problems."
|
560 |
-
msgstr ""
|
561 |
-
|
562 |
-
#: inc/admin/admin-features-list.php:144
|
563 |
-
msgid "Dublin Core"
|
564 |
-
msgstr ""
|
565 |
-
|
566 |
-
#: inc/admin/admin-features-list.php:145
|
567 |
-
msgid "Add Dublin Core meta tags."
|
568 |
-
msgstr ""
|
569 |
-
|
570 |
-
#: inc/admin/admin-features-list.php:150
|
571 |
-
msgid "URL Rewriting"
|
572 |
-
msgstr ""
|
573 |
-
|
574 |
-
#: inc/admin/admin-features-list.php:151
|
575 |
-
msgid "Customize your permalinks."
|
576 |
-
msgstr ""
|
577 |
-
|
578 |
-
#: inc/admin/admin-features-list.php:156
|
579 |
-
msgid "RSS"
|
580 |
-
msgstr ""
|
581 |
-
|
582 |
-
#: inc/admin/admin-features-list.php:157
|
583 |
-
msgid "Configure default WordPress RSS."
|
584 |
-
msgstr ""
|
585 |
-
|
586 |
-
#: inc/admin/admin-features-list.php:165
|
587 |
-
msgid "Import/Export plugin settings from site to site."
|
588 |
-
msgstr ""
|
589 |
-
|
590 |
-
#: inc/admin/admin-features-list.php:173
|
591 |
-
msgid "Edit your license key."
|
592 |
-
msgstr ""
|
593 |
-
|
594 |
-
#: inc/admin/admin-features-list.php:204
|
595 |
-
msgid "Toggle %s"
|
596 |
-
msgstr ""
|
597 |
-
|
598 |
#: inc/admin/admin-pages/Advanced.php:20
|
599 |
#: inc/admin/sections/ImageSEO.php:10
|
600 |
msgid "Image SEO"
|
@@ -611,12 +445,12 @@ msgid "Security"
|
|
611 |
msgstr ""
|
612 |
|
613 |
#: inc/admin/admin-pages/Advanced.php:52
|
614 |
-
#: inc/admin/admin-pages/Analytics.php:
|
615 |
#: inc/admin/admin-pages/InstantIndexing.php:51
|
616 |
#: inc/admin/admin-pages/Sitemaps.php:43
|
617 |
#: inc/admin/admin-pages/Social.php:43
|
618 |
#: inc/admin/admin-pages/Titles.php:54
|
619 |
-
#: seopress-functions.php:
|
620 |
msgid "Save changes"
|
621 |
msgstr ""
|
622 |
|
@@ -659,7 +493,7 @@ msgstr ""
|
|
659 |
#: inc/admin/admin-pages/Tools.php:22
|
660 |
#: inc/admin/admin-pages/Tools.php:155
|
661 |
#: inc/admin/sections/InstantIndexing.php:54
|
662 |
-
#: seopress.php:
|
663 |
msgid "Settings"
|
664 |
msgstr ""
|
665 |
|
@@ -974,6 +808,11 @@ msgstr ""
|
|
974 |
msgid "XML - HTML Sitemap"
|
975 |
msgstr ""
|
976 |
|
|
|
|
|
|
|
|
|
|
|
977 |
#: inc/admin/ajax.php:32
|
978 |
msgid "A redirect is active for this URL. Turn it off to get the Google preview and content analysis."
|
979 |
msgstr ""
|
@@ -986,166 +825,330 @@ msgstr ""
|
|
986 |
msgid "Your site is protected by an authentification. <a href=\"%s\" target=\"_blank\">Fix this</a> <span class=\"dashicons dashicons-external\"></span>"
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: inc/admin/blocks/
|
990 |
-
msgid "
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: inc/admin/blocks/
|
994 |
-
msgid "
|
995 |
msgstr ""
|
996 |
|
997 |
-
#: inc/admin/blocks/
|
998 |
-
msgid "
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: inc/admin/blocks/
|
1002 |
-
msgid "
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: inc/admin/blocks/
|
1006 |
-
|
1007 |
-
msgid "Dismiss"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: inc/admin/blocks/
|
1011 |
-
msgid "
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: inc/admin/blocks/
|
1015 |
-
msgid "
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: inc/admin/blocks/
|
1019 |
-
msgid "SEO
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: inc/admin/blocks/
|
1023 |
-
msgid "
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: inc/admin/blocks/
|
1027 |
-
msgid "
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: inc/admin/blocks/
|
1031 |
-
msgid "
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: inc/admin/blocks/
|
1035 |
-
msgid "
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: inc/admin/blocks/
|
1039 |
-
msgid "
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: inc/admin/blocks/
|
1043 |
-
msgid "
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: inc/admin/blocks/
|
1047 |
-
msgid "
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: inc/admin/blocks/
|
1051 |
-
msgid "
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: inc/admin/blocks/
|
1055 |
-
msgid "
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: inc/admin/blocks/
|
1059 |
-
msgid "Google
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: inc/admin/blocks/
|
1063 |
-
msgid "
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: inc/admin/blocks/
|
1067 |
-
msgid "
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#: inc/admin/blocks/
|
1071 |
-
msgid "
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: inc/admin/blocks/
|
1075 |
-
msgid "
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: inc/admin/blocks/
|
1079 |
-
msgid "
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: inc/admin/blocks/
|
1083 |
-
msgid "
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: inc/admin/blocks/
|
1087 |
-
msgid "
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: inc/admin/blocks/
|
1091 |
-
msgid "
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: inc/admin/blocks/
|
1095 |
-
msgid "
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#: inc/admin/blocks/
|
1099 |
-
msgid "
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#: inc/admin/blocks/
|
1103 |
-
msgid "
|
1104 |
msgstr ""
|
1105 |
|
1106 |
-
#: inc/admin/blocks/
|
1107 |
-
msgid "
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#: inc/admin/blocks/
|
1111 |
-
msgid "
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: inc/admin/blocks/
|
1115 |
-
msgid "
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: inc/admin/blocks/
|
1119 |
-
msgid "
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: inc/admin/blocks/
|
1123 |
-
msgid "
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: inc/admin/blocks/
|
1127 |
-
msgid "
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: inc/admin/blocks/
|
1131 |
-
msgid "
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: inc/admin/blocks/
|
1135 |
-
msgid "
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: inc/admin/blocks/
|
1139 |
-
msgid "
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: inc/admin/blocks/
|
1143 |
-
msgid "
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#: inc/admin/blocks/
|
1147 |
-
|
1148 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1149 |
#: app/react/layout/Main/components/GoogleNews/index.js:86
|
1150 |
#: app/react/layout/Main/components/Redirection/index.js:149
|
1151 |
#: app/react/layout/Main/components/SchemasManual/index.js:343
|
@@ -1166,152 +1169,169 @@ msgstr ""
|
|
1166 |
msgid "All news"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: inc/admin/blocks/notifications-center.php:
|
1170 |
-
#: inc/admin/blocks/tasks.php:
|
1171 |
msgid "You like SEOPress? Please help us by rating us 5 stars!"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: inc/admin/blocks/notifications-center.php:
|
1175 |
msgid "Support the development and improvement of the plugin by taking 15 seconds of your time to leave us a user review on the official WordPress plugins repository. Thank you!"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: inc/admin/blocks/notifications-center.php:
|
1179 |
msgid "Information"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: inc/admin/blocks/notifications-center.php:
|
1183 |
msgid "Rate us!"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: inc/admin/blocks/notifications-center.php:
|
1187 |
msgid "Enable our universal SEO metabox for the Block Editor"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: inc/admin/blocks/notifications-center.php:
|
1191 |
msgid "By default, our new SEO metabox is disabled for Gutenberg. Test it without further delay!"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: inc/admin/blocks/notifications-center.php:
|
1195 |
-
#: inc/admin/blocks/notifications-center.php:
|
1196 |
-
#: inc/admin/blocks/notifications-center.php:
|
1197 |
-
#: inc/admin/blocks/notifications-center.php:
|
1198 |
msgid "Wizard"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
-
#: inc/admin/blocks/notifications-center.php:
|
1202 |
msgid "Activate it"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: inc/admin/blocks/notifications-center.php:
|
1206 |
msgid "Configure SEOPress in a few minutes with our installation wizard"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: inc/admin/blocks/notifications-center.php:
|
1210 |
msgid "The best way to quickly setup SEOPress on your site."
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: inc/admin/blocks/notifications-center.php:
|
1214 |
-
#: inc/admin/blocks/notifications-center.php:
|
1215 |
msgid "Start the wizard"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: inc/admin/blocks/notifications-center.php:
|
1219 |
msgid "Configure SEOPress Insights in a few minutes with our installation wizard"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: inc/admin/blocks/notifications-center.php:
|
1223 |
msgid "Track your keywords positions and backlinks directly on your WordPress site."
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: inc/admin/blocks/notifications-center.php:
|
1227 |
msgid "Talk to a SEO consultant"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: inc/admin/blocks/notifications-center.php:
|
1231 |
msgid "Your site is growing and you want support for your SEO strategy, increase your sales and conversions? We are there for that. Contact us!"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: inc/admin/blocks/notifications-center.php:
|
1235 |
msgid "Yes, please"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: inc/admin/blocks/notifications-center.php:
|
1239 |
-
msgid "
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: inc/admin/blocks/notifications-center.php:
|
1243 |
-
msgid "
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: inc/admin/blocks/notifications-center.php:
|
1247 |
-
#: inc/admin/blocks/notifications-center.php:
|
1248 |
-
#: inc/admin/blocks/notifications-center.php:
|
1249 |
-
#: inc/admin/blocks/notifications-center.php:
|
1250 |
-
#: inc/admin/blocks/notifications-center.php:
|
1251 |
-
|
1252 |
-
#: inc/admin/blocks/notifications-center.php:438
|
1253 |
-
#: inc/admin/blocks/notifications-center.php:458
|
1254 |
-
#: inc/admin/blocks/notifications-center.php:477
|
1255 |
-
#: inc/admin/blocks/notifications-center.php:496
|
1256 |
-
#: inc/admin/blocks/notifications-center.php:515
|
1257 |
-
#: inc/admin/blocks/notifications-center.php:567
|
1258 |
-
#: inc/admin/blocks/notifications-center.php:585
|
1259 |
-
#: inc/admin/blocks/notifications-center.php:630
|
1260 |
-
#: inc/admin/blocks/notifications-center.php:649
|
1261 |
-
#: inc/admin/blocks/notifications-center.php:666
|
1262 |
-
#: inc/admin/blocks/notifications-center.php:798
|
1263 |
-
#: inc/admin/blocks/notifications-center.php:878
|
1264 |
-
#: inc/admin/blocks/notifications-center.php:919
|
1265 |
-
#: inc/admin/blocks/notifications-center.php:937
|
1266 |
-
#: inc/admin/blocks/notifications-center.php:1034
|
1267 |
-
#: inc/admin/blocks/notifications-center.php:1064
|
1268 |
-
msgid "High impact"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: inc/admin/blocks/notifications-center.php:
|
1272 |
-
#: inc/admin/blocks/notifications-center.php:
|
1273 |
-
#: inc/admin/blocks/notifications-center.php:
|
1274 |
-
#: inc/admin/blocks/notifications-center.php:
|
1275 |
-
#: inc/admin/blocks/notifications-center.php:
|
1276 |
-
#: inc/admin/blocks/notifications-center.php:
|
1277 |
-
#: inc/admin/blocks/notifications-center.php:
|
1278 |
-
#: inc/admin/blocks/notifications-center.php:
|
1279 |
-
#: inc/admin/blocks/notifications-center.php:
|
1280 |
-
#: inc/admin/blocks/notifications-center.php:
|
1281 |
-
#: inc/admin/blocks/notifications-center.php:
|
1282 |
-
#: inc/admin/blocks/notifications-center.php:
|
1283 |
-
#: inc/admin/blocks/notifications-center.php:
|
1284 |
-
#: inc/admin/blocks/notifications-center.php:
|
1285 |
-
#: inc/admin/blocks/notifications-center.php:
|
1286 |
-
#: inc/admin/blocks/notifications-center.php:
|
1287 |
-
#: inc/admin/blocks/notifications-center.php:
|
1288 |
-
#: inc/admin/blocks/notifications-center.php:
|
1289 |
-
#: inc/admin/blocks/notifications-center.php:
|
|
|
1290 |
#: inc/admin/sections/InstantIndexing.php:43
|
1291 |
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:30
|
1292 |
msgid "Fix this!"
|
1293 |
msgstr ""
|
1294 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1295 |
#: inc/admin/blocks/notifications-center.php:244
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1296 |
msgid "TagDiv Composer plugin doesn't use <strong>add_theme_support('title-tag');</strong>"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: inc/admin/blocks/notifications-center.php:
|
1300 |
msgid "Fix this compatibility issue to allow SEOPress generates the correct meta titles."
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: inc/admin/blocks/notifications-center.php:
|
1304 |
msgid "Your theme doesn't use <strong>add_theme_support('title-tag');</strong>"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: inc/admin/blocks/notifications-center.php:
|
1308 |
msgid "This error indicates that your theme uses a deprecated function to generate the title tag of your pages. SEOPress will not be able to generate your custom title tags if this error is not fixed."
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: inc/admin/blocks/notifications-center.php:
|
1312 |
-
#: inc/admin/blocks/notifications-center.php:
|
1313 |
-
#: inc/admin/blocks/notifications-center.php:
|
1314 |
-
#: inc/admin/blocks/notifications-center.php:
|
1315 |
#: inc/admin/callbacks/Analytics.php:605
|
1316 |
#: inc/admin/callbacks/Analytics.php:702
|
1317 |
#: inc/admin/callbacks/Analytics.php:730
|
@@ -1320,229 +1340,222 @@ msgstr ""
|
|
1320 |
msgid "Learn more"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: inc/admin/blocks/notifications-center.php:
|
1324 |
msgid "Your XML sitemap is cached!"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: inc/admin/blocks/notifications-center.php:
|
1328 |
msgid "Swift Performance is caching your XML sitemap. You must disable this option to prevent any compatibility issue (Swift Performance > Settings > Caching, General tab)."
|
1329 |
msgstr ""
|
1330 |
|
1331 |
#. translators: %s name of a SEO plugin (eg: Yoast SEO)
|
1332 |
#. translators: %s name of a WP plugin (eg: IndexNow)
|
1333 |
-
#: inc/admin/blocks/notifications-center.php:
|
1334 |
-
#: inc/admin/blocks/notifications-center.php:
|
1335 |
#: inc/admin/sections/InstantIndexing.php:41
|
1336 |
msgid "We noticed that you use <strong>%s</strong> plugin."
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: inc/admin/blocks/notifications-center.php:
|
1340 |
msgid "Do you want to migrate all your metadata to SEOPress? Do not use multiple SEO plugins at once to avoid conflicts!"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#: inc/admin/blocks/notifications-center.php:
|
1344 |
msgid "Migrate!"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: inc/admin/blocks/notifications-center.php:
|
1348 |
#: inc/admin/sections/InstantIndexing.php:42
|
1349 |
msgid "To prevent any conflicts with our Indexing feature, please disable it."
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: inc/admin/blocks/notifications-center.php:
|
1353 |
msgid "You have enabled 404 cleaning BUT the scheduled task is not running."
|
1354 |
msgstr ""
|
1355 |
|
1356 |
-
#: inc/admin/blocks/notifications-center.php:
|
1357 |
msgid "To solve this, please disable and re-enable SEOPress PRO. No data will be lost."
|
1358 |
msgstr ""
|
1359 |
|
1360 |
-
#: inc/admin/blocks/notifications-center.php:
|
1361 |
msgid "Enfold theme is not correctly setup for SEO!"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: inc/admin/blocks/notifications-center.php:
|
1365 |
msgid "You must disable \"Meta tag robots\" option from Enfold settings (SEO Support tab) to avoid any SEO issues."
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#: inc/admin/blocks/notifications-center.php:
|
1369 |
msgid "Global meta title missing for several custom post types!"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#: inc/admin/blocks/notifications-center.php:
|
1373 |
msgid "Global meta description missing for several custom post types!"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: inc/admin/blocks/notifications-center.php:
|
1377 |
msgid "Global meta title missing for several taxonomies!"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: inc/admin/blocks/notifications-center.php:
|
1381 |
msgid "Global meta description missing for several taxonomies!"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
-
#: inc/admin/blocks/notifications-center.php:
|
1385 |
msgid "Your site doesn't use an SSL certificate!"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
-
#: inc/admin/blocks/notifications-center.php:
|
1389 |
msgid "Https is considered by Google as a positive signal for the ranking of your site. It also reassures your visitors for data security, and improves trust."
|
1390 |
msgstr ""
|
1391 |
|
1392 |
-
#: inc/admin/blocks/notifications-center.php:
|
1393 |
msgid "Low impact"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
-
#: inc/admin/blocks/notifications-center.php:
|
1397 |
msgid "PHP module \"DOM\" is missing on your server."
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: inc/admin/blocks/notifications-center.php:
|
1401 |
-
#: inc/admin/blocks/notifications-center.php:
|
1402 |
msgid "This PHP module, installed by default with PHP, is required by many plugins including SEOPress. Please contact your host as soon as possible to solve this."
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#: inc/admin/blocks/notifications-center.php:
|
1406 |
msgid "PHP module \"mbstring\" is missing on your server."
|
1407 |
msgstr ""
|
1408 |
|
1409 |
-
#: inc/admin/blocks/notifications-center.php:
|
1410 |
msgid "Your site is not visible to Search Engines!"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#: inc/admin/blocks/notifications-center.php:
|
1414 |
msgid "You have activated the blocking of the indexing of your site. If your site is under development, this is probably normal. Otherwise, check your settings. Delete this notification using the cross on the right if you are not concerned."
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: inc/admin/blocks/notifications-center.php:
|
1418 |
msgid "Your site title is empty!"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: inc/admin/blocks/notifications-center.php:
|
1422 |
msgid "Your Site Title is used by WordPress, your theme and your plugins including SEOPress. It is an essential component in the generation of title tags, but not only. Enter one!"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
-
#: inc/admin/blocks/notifications-center.php:
|
1426 |
msgid "Your permalinks are not SEO Friendly! Enable pretty permalinks to fix this."
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: inc/admin/blocks/notifications-center.php:
|
1430 |
-
#: inc/admin/blocks/notifications-center.php:
|
1431 |
msgid "Why is this important? Showing only the summary of each article significantly reduces the theft of your content by third party sites. Not to mention, the increase in your traffic, your advertising revenue, conversions..."
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: inc/admin/blocks/notifications-center.php:
|
1435 |
msgid "Your RSS feed shows full text!"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#: inc/admin/blocks/notifications-center.php:
|
1439 |
-
#: inc/admin/blocks/notifications-center.php:766
|
1440 |
-
#: inc/admin/blocks/notifications-center.php:830
|
1441 |
-
#: inc/admin/blocks/notifications-center.php:848
|
1442 |
-
msgid "Medium impact"
|
1443 |
-
msgstr ""
|
1444 |
-
|
1445 |
-
#: inc/admin/blocks/notifications-center.php:763
|
1446 |
msgid "You have activated Google Analytics tracking without adding identifiers!"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
-
#: inc/admin/blocks/notifications-center.php:
|
1450 |
msgid "Google Analytics will not track your visitors until you finish the configuration."
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: inc/admin/blocks/notifications-center.php:
|
1454 |
msgid "Break comments into pages is ON!"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
-
#: inc/admin/blocks/notifications-center.php:
|
1458 |
msgid "Enabling this option will create duplicate content for each article beyond x comments. This can have a disastrous effect by creating a large number of poor quality pages, and slowing the Google bot unnecessarily, so your ranking in search results."
|
1459 |
msgstr ""
|
1460 |
|
1461 |
-
#: inc/admin/blocks/notifications-center.php:
|
1462 |
msgid "Disable this!"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
-
#: inc/admin/blocks/notifications-center.php:
|
1466 |
msgid "Display more posts per page on homepage and archives"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
-
#: inc/admin/blocks/notifications-center.php:
|
1470 |
msgid "To reduce the number pages search engines have to crawl to find all your articles, it is recommended displaying more posts per page. This should not be a problem for your users. Using mobile, we prefer to scroll down rather than clicking on next page links."
|
1471 |
msgstr ""
|
1472 |
|
1473 |
-
#: inc/admin/blocks/notifications-center.php:
|
1474 |
msgid "You don't have an XML Sitemap!"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
-
#: inc/admin/blocks/notifications-center.php:
|
1478 |
msgid "XML Sitemaps are useful to facilitate the crawling of your content by search engine robots. Indirectly, this can benefit your ranking by reducing the crawl bugdet."
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: inc/admin/blocks/notifications-center.php:
|
1482 |
msgid "Do you have a Google My Business page? It's free!"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
-
#: inc/admin/blocks/notifications-center.php:
|
1486 |
msgid "Local Business websites should have a My Business page to improve visibility in search results. Click on the cross on the right to delete this notification if you are not concerned."
|
1487 |
msgstr ""
|
1488 |
|
1489 |
-
#: inc/admin/blocks/notifications-center.php:
|
1490 |
msgid "Create your page now!"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
-
#: inc/admin/blocks/notifications-center.php:
|
1494 |
msgid "Add your site to Google. It's free!"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
-
#: inc/admin/blocks/notifications-center.php:
|
1498 |
msgid "Is your brand new site online? So reference it as quickly as possible on Google to get your first visitors via Google Search Console. Already the case? Click on the cross on the right to remove this alert."
|
1499 |
msgstr ""
|
1500 |
|
1501 |
-
#: inc/admin/blocks/notifications-center.php:
|
1502 |
msgid "Add your site to Search Console!"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: inc/admin/blocks/notifications-center.php:
|
1506 |
msgid "Structured data types is not correctly enabled"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: inc/admin/blocks/notifications-center.php:
|
1510 |
msgid "Please enable <strong>Structured Data Types metabox for your posts, pages and custom post types</strong> option in order to use automatic and manual schemas. (SEO > PRO > Structured Data Types (schema.org)"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#: inc/admin/blocks/notifications-center.php:
|
1514 |
msgid "You have to enter your licence key to get updates and support"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: inc/admin/blocks/notifications-center.php:
|
1518 |
msgid "Please activate the SEOPress PRO license key to automatically receive updates to guarantee you the best user experience possible."
|
1519 |
msgstr ""
|
1520 |
|
1521 |
-
#: inc/admin/blocks/notifications-center.php:
|
1522 |
msgid "Take your SEO to the next level with SEOPress PRO!"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
-
#: inc/admin/blocks/notifications-center.php:
|
1526 |
msgid "The PRO version of SEOPress allows you to easily manage your structured data (schemas), add a breadcrumb optimized for SEO and accessibility, improve SEO for WooCommerce, gain productivity with our import / export tool from a CSV of your metadata and so much more."
|
1527 |
msgstr ""
|
1528 |
|
1529 |
-
#: inc/admin/blocks/notifications-center.php:
|
1530 |
msgid "Upgrade now!"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
-
#: inc/admin/blocks/notifications-center.php:
|
1534 |
msgid "A physical robots.txt file has been found"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
-
#: inc/admin/blocks/notifications-center.php:
|
1538 |
msgid "A robots.txt file already exists at the root of your site. We invite you to remove it so SEOPress can handle it virtually."
|
1539 |
msgstr ""
|
1540 |
|
1541 |
-
#: inc/admin/blocks/notifications-center.php:
|
1542 |
msgid "Your site is not indexable!"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: inc/admin/blocks/notifications-center.php:
|
1546 |
msgid "Your robots.txt file contains a rule that prevents search engines to index your all site: <code>Disallow: /</code>"
|
1547 |
msgstr ""
|
1548 |
|
@@ -1554,23 +1567,23 @@ msgstr ""
|
|
1554 |
msgid "Hide this"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#: inc/admin/blocks/tasks.php:
|
1558 |
msgid "Activate your license key"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: inc/admin/blocks/tasks.php:
|
1562 |
msgid "Generate XML sitemaps"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
-
#: inc/admin/blocks/tasks.php:
|
1566 |
msgid "Be social"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#: inc/admin/blocks/tasks.php:
|
1570 |
msgid "Improve Local SEO"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
-
#: inc/admin/blocks/tasks.php:
|
1574 |
msgid "Add Structured Data Types to increase visibility in SERPs"
|
1575 |
msgstr ""
|
1576 |
|
@@ -2369,15 +2382,15 @@ msgstr ""
|
|
2369 |
msgid "Disabling all heatmaps and session recordings"
|
2370 |
msgstr ""
|
2371 |
|
2372 |
-
#: inc/admin/callbacks/Analytics.php:
|
2373 |
msgid "Add Microsoft Clarity code to your site"
|
2374 |
msgstr ""
|
2375 |
|
2376 |
-
#: inc/admin/callbacks/Analytics.php:
|
2377 |
msgid "Enter your Project ID"
|
2378 |
msgstr ""
|
2379 |
|
2380 |
-
#: inc/admin/callbacks/Analytics.php:
|
2381 |
msgid "Find your project ID"
|
2382 |
msgstr ""
|
2383 |
|
@@ -2645,12 +2658,8 @@ msgstr ""
|
|
2645 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:286
|
2646 |
#: inc/admin/wizard/admin-wizard.php:719
|
2647 |
#: src/Helpers/Metas/RobotSettings.php:19
|
2648 |
-
#: app/
|
2649 |
-
#:
|
2650 |
-
#: assets/js/src/primary-category-select.js:58
|
2651 |
-
#: public/gutenberg/primary-category-select.js:1
|
2652 |
-
#: public/gutenberg/primary-category-select/index.js:1
|
2653 |
-
#: assets/js/build/primary-category-select.js:106
|
2654 |
msgid "None (will disable this feature)"
|
2655 |
msgstr ""
|
2656 |
|
@@ -2915,7 +2924,7 @@ msgid "Minimum size: 144x144px (300x157px with large card enabled), ideal ratio
|
|
2915 |
msgstr ""
|
2916 |
|
2917 |
#: inc/admin/callbacks/Social.php:549
|
2918 |
-
#: seopress.php:
|
2919 |
msgid "Default"
|
2920 |
msgstr ""
|
2921 |
|
@@ -3248,71 +3257,71 @@ msgstr ""
|
|
3248 |
msgid "eg: https://example.com/my-media-attachment-page"
|
3249 |
msgstr ""
|
3250 |
|
3251 |
-
#: inc/admin/docs/DocsLinks.php:
|
3252 |
msgid "Installation of SEOPress"
|
3253 |
msgstr ""
|
3254 |
|
3255 |
-
#: inc/admin/docs/DocsLinks.php:
|
3256 |
msgid "Activate your license key to receive automatic updates"
|
3257 |
msgstr ""
|
3258 |
|
3259 |
-
#: inc/admin/docs/DocsLinks.php:
|
3260 |
msgid "Configure SEOPress in 5 minutes"
|
3261 |
msgstr ""
|
3262 |
|
3263 |
-
#: inc/admin/docs/DocsLinks.php:
|
3264 |
msgid "Migrate your SEO metadata from other plugins"
|
3265 |
msgstr ""
|
3266 |
|
3267 |
-
#: inc/admin/docs/DocsLinks.php:
|
3268 |
msgid "Promote the exploration of your WordPress site by search engine robots"
|
3269 |
msgstr ""
|
3270 |
|
3271 |
-
#: inc/admin/docs/DocsLinks.php:
|
3272 |
msgid "Optimize content from A to Z with SEOPress"
|
3273 |
msgstr ""
|
3274 |
|
3275 |
-
#: inc/admin/docs/DocsLinks.php:
|
3276 |
msgid "Measure your traffic with Google Analytics"
|
3277 |
msgstr ""
|
3278 |
|
3279 |
-
#: inc/admin/docs/DocsLinks.php:
|
3280 |
msgid "Add your WordPress site to Google’s index"
|
3281 |
msgstr ""
|
3282 |
|
3283 |
-
#: inc/admin/docs/DocsLinks.php:
|
3284 |
msgid "Optimize your click-through rate on social networks"
|
3285 |
msgstr ""
|
3286 |
|
3287 |
-
#: inc/admin/docs/DocsLinks.php:
|
3288 |
msgid "Free ebooks to learn SEO"
|
3289 |
msgstr ""
|
3290 |
|
3291 |
-
#: inc/admin/docs/DocsLinks.php:
|
3292 |
msgid "Activate your SEOPress Insights license"
|
3293 |
msgstr ""
|
3294 |
|
3295 |
-
#: inc/admin/docs/DocsLinks.php:
|
3296 |
msgid "Track your keyword rankings in Google with SEOPress Insights"
|
3297 |
msgstr ""
|
3298 |
|
3299 |
-
#: inc/admin/docs/DocsLinks.php:
|
3300 |
msgid "Monitor and analyse your Backlinks with SEOPress Insights"
|
3301 |
msgstr ""
|
3302 |
|
3303 |
-
#: inc/admin/docs/DocsLinks.php:
|
3304 |
msgid "Finding SEO keywords for your WordPress site"
|
3305 |
msgstr ""
|
3306 |
|
3307 |
-
#: inc/admin/docs/DocsLinks.php:
|
3308 |
msgid "Optimize WordPress posts for a keyword"
|
3309 |
msgstr ""
|
3310 |
|
3311 |
-
#: inc/admin/docs/DocsLinks.php:
|
3312 |
msgid "Audit the backlinks of your WordPress site (in WordPress)"
|
3313 |
msgstr ""
|
3314 |
|
3315 |
-
#: inc/admin/docs/DocsLinks.php:
|
3316 |
msgid "The importance of backlinks"
|
3317 |
msgstr ""
|
3318 |
|
@@ -3654,12 +3663,8 @@ msgstr ""
|
|
3654 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:334
|
3655 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:293
|
3656 |
#: src/Helpers/Metas/RobotSettings.php:109
|
3657 |
-
#: app/
|
3658 |
-
#:
|
3659 |
-
#: assets/js/src/primary-category-select.js:74
|
3660 |
-
#: public/gutenberg/primary-category-select.js:1
|
3661 |
-
#: public/gutenberg/primary-category-select/index.js:1
|
3662 |
-
#: assets/js/build/primary-category-select.js:118
|
3663 |
msgid "Select a primary category"
|
3664 |
msgstr ""
|
3665 |
|
@@ -4284,6 +4289,8 @@ msgstr ""
|
|
4284 |
|
4285 |
#: inc/admin/sections/Analytics.php:16
|
4286 |
#: inc/admin/sections/Analytics.php:54
|
|
|
|
|
4287 |
msgid "Tracking"
|
4288 |
msgstr ""
|
4289 |
|
@@ -4297,6 +4304,7 @@ msgid "Ecommerce"
|
|
4297 |
msgstr ""
|
4298 |
|
4299 |
#: inc/admin/sections/Analytics.php:18
|
|
|
4300 |
msgid "Stats in Dashboard"
|
4301 |
msgstr ""
|
4302 |
|
@@ -4364,23 +4372,23 @@ msgstr ""
|
|
4364 |
msgid "Guide to create custom dimensions in Google Analytics - new window"
|
4365 |
msgstr ""
|
4366 |
|
4367 |
-
#: inc/admin/sections/Analytics.php:
|
4368 |
msgid "Use Matomo to track your users with privacy in mind. We support both On Premise and Cloud installations."
|
4369 |
msgstr ""
|
4370 |
|
4371 |
-
#: inc/admin/sections/Analytics.php:
|
4372 |
msgid "Your <strong>Custom Dimensions</strong> will also work with Matomo tracking code."
|
4373 |
msgstr ""
|
4374 |
|
4375 |
-
#: inc/admin/sections/Analytics.php:
|
4376 |
msgid "Microsoft Clarity"
|
4377 |
msgstr ""
|
4378 |
|
4379 |
-
#: inc/admin/sections/Analytics.php:
|
4380 |
msgid "Use Microsoft Clarity to capture session recordings, get instant heatmaps and powerful Insights for Free. Know how people interact with your site to improve user experience and conversions."
|
4381 |
msgstr ""
|
4382 |
|
4383 |
-
#: inc/admin/sections/Analytics.php:
|
4384 |
msgid "Create your first Microsoft Clarity project <a href=\"%s\" target=\"_blank\">here</a>."
|
4385 |
msgstr ""
|
4386 |
|
@@ -4488,23 +4496,55 @@ msgstr ""
|
|
4488 |
msgid "Limited to 1,000 posts per post type. You can change the order and sorting criteria below."
|
4489 |
msgstr ""
|
4490 |
|
4491 |
-
#: inc/admin/sections/Sitemaps.php:
|
4492 |
-
msgid "
|
4493 |
msgstr ""
|
4494 |
|
4495 |
-
#: inc/admin/sections/Sitemaps.php:
|
4496 |
-
msgid "
|
4497 |
msgstr ""
|
4498 |
|
4499 |
-
#: inc/admin/sections/
|
4500 |
-
msgid "
|
4501 |
msgstr ""
|
4502 |
|
4503 |
-
#: inc/admin/sections/
|
4504 |
-
msgid "
|
4505 |
msgstr ""
|
4506 |
|
4507 |
-
#: inc/admin/sections/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4508 |
msgid "Link your site with your social accounts."
|
4509 |
msgstr ""
|
4510 |
|
@@ -5058,12 +5098,12 @@ msgid "noindex on attachment pages"
|
|
5058 |
msgstr ""
|
5059 |
|
5060 |
#: inc/admin/wizard/admin-wizard.php:131
|
5061 |
-
#: seopress.php:
|
5062 |
msgid "Migration completed!"
|
5063 |
msgstr ""
|
5064 |
|
5065 |
#: inc/admin/wizard/admin-wizard.php:132
|
5066 |
-
#: seopress.php:
|
5067 |
msgid "Export completed!"
|
5068 |
msgstr ""
|
5069 |
|
@@ -5621,23 +5661,23 @@ msgstr ""
|
|
5621 |
msgid "Please choose a separator"
|
5622 |
msgstr ""
|
5623 |
|
5624 |
-
#: inc/functions/options-instant-indexing.php:
|
5625 |
msgid "No URLs to submit"
|
5626 |
msgstr ""
|
5627 |
|
5628 |
-
#: inc/functions/options-instant-indexing.php:
|
5629 |
msgid "No search engines selected"
|
5630 |
msgstr ""
|
5631 |
|
5632 |
-
#: inc/functions/options-instant-indexing.php:
|
5633 |
msgid "No API key defined from the settings tab"
|
5634 |
msgstr ""
|
5635 |
|
5636 |
-
#: inc/functions/options-instant-indexing.php:
|
5637 |
msgid "Bing API key is missing"
|
5638 |
msgstr ""
|
5639 |
|
5640 |
-
#: inc/functions/options-instant-indexing.php:
|
5641 |
msgid "Google API key is missing"
|
5642 |
msgstr ""
|
5643 |
|
@@ -5663,63 +5703,71 @@ msgstr ""
|
|
5663 |
msgid "Page %d of %2$d"
|
5664 |
msgstr ""
|
5665 |
|
5666 |
-
#: seopress-functions.php:
|
5667 |
msgid "Custom Post Types"
|
5668 |
msgstr ""
|
5669 |
|
5670 |
-
#: seopress-functions.php:
|
5671 |
msgid "Custom Taxonomies"
|
5672 |
msgstr ""
|
5673 |
|
5674 |
#. translators: %s: "Custom Post Types" or "Custom Taxonomies" %s: "title" or "description"
|
5675 |
-
#: seopress-functions.php:
|
5676 |
msgid "Some <strong>%s</strong> have no <strong>meta %s</strong> set! We strongly encourage you to add one by filling in the fields below."
|
5677 |
msgstr ""
|
5678 |
|
5679 |
-
#: seopress.php:
|
5680 |
msgid "has been successfully updated!"
|
5681 |
msgstr ""
|
5682 |
|
5683 |
-
#: seopress.php:
|
5684 |
msgid "Regeneration completed!"
|
5685 |
msgstr ""
|
5686 |
|
5687 |
-
#: seopress.php:
|
5688 |
msgid "Clear"
|
5689 |
msgstr ""
|
5690 |
|
5691 |
-
#: seopress.php:
|
5692 |
msgid "Clear color"
|
5693 |
msgstr ""
|
5694 |
|
5695 |
-
#: seopress.php:
|
5696 |
msgid "Select default color"
|
5697 |
msgstr ""
|
5698 |
|
5699 |
-
#: seopress.php:
|
5700 |
msgid "Select Color"
|
5701 |
msgstr ""
|
5702 |
|
5703 |
-
#: seopress.php:
|
5704 |
msgid "Color value"
|
5705 |
msgstr ""
|
5706 |
|
5707 |
-
#: seopress.php:
|
5708 |
msgid "Docs"
|
5709 |
msgstr ""
|
5710 |
|
5711 |
-
#: seopress.php:
|
5712 |
msgid "Configuration Wizard"
|
5713 |
msgstr ""
|
5714 |
|
5715 |
-
#: seopress.php:
|
5716 |
msgid "GO PRO!"
|
5717 |
msgstr ""
|
5718 |
|
5719 |
-
#: seopress.php:
|
5720 |
msgid "Important changes related to XML sitemaps in version 5.8: <a href=\"%s\" target=\"_blank\">Learn more</a>."
|
5721 |
msgstr ""
|
5722 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5723 |
#: src/Actions/Admin/ManageColumn.php:64
|
5724 |
msgid "Meta Desc."
|
5725 |
msgstr ""
|
@@ -5799,7 +5847,7 @@ msgid "Keywords in permalink"
|
|
5799 |
msgstr ""
|
5800 |
|
5801 |
#: src/Helpers/ContentAnalysis.php:43
|
5802 |
-
#: app/react/services/content-analysis/heading.js:
|
5803 |
msgid "Headings"
|
5804 |
msgstr ""
|
5805 |
|
@@ -5809,7 +5857,7 @@ msgid "Social meta tags"
|
|
5809 |
msgstr ""
|
5810 |
|
5811 |
#: src/Helpers/ContentAnalysis.php:63
|
5812 |
-
#: app/react/services/content-analysis/metaRobots.js:
|
5813 |
msgid "Meta robots"
|
5814 |
msgstr ""
|
5815 |
|
@@ -6017,7 +6065,7 @@ msgid "We found %d Heading 1 (H1) in your content."
|
|
6017 |
msgstr ""
|
6018 |
|
6019 |
#: src/Services/ContentAnalysis/GetContent.php:204
|
6020 |
-
#: app/react/services/content-analysis/heading.js:
|
6021 |
msgid "You should not use more than one H1 heading in your post content. The rule is simple: only one H1 for each web page. It is better for both SEO and accessibility. Below, the list:"
|
6022 |
msgstr ""
|
6023 |
|
@@ -6073,6 +6121,7 @@ msgid "The length of your title is correct"
|
|
6073 |
msgstr ""
|
6074 |
|
6075 |
#: src/Services/ContentAnalysis/GetContent.php:314
|
|
|
6076 |
#: app/react/services/content-analysis/metaTitle.js:46
|
6077 |
msgid "No custom title is set for this post. If the global meta title suits you, you can ignore this recommendation."
|
6078 |
msgstr ""
|
@@ -6320,6 +6369,7 @@ msgstr ""
|
|
6320 |
|
6321 |
#: src/Services/ContentAnalysis/GetContent.php:684
|
6322 |
#: app/react/services/content-analysis/metaRobots.js:86
|
|
|
6323 |
msgid "We found no meta robots on this page. It means, your page is index,follow. Search engines will index it, and follow links. "
|
6324 |
msgstr ""
|
6325 |
|
@@ -6918,6 +6968,202 @@ msgstr ""
|
|
6918 |
msgid "Product SKU"
|
6919 |
msgstr ""
|
6920 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6921 |
#: app/react/components/Forms/components/Input/index.js:62
|
6922 |
#: app/react/components/Forms/components/Input/index.js:137
|
6923 |
#: app/react/components/Forms/components/TextArea/index.js:32
|
@@ -6981,6 +7227,24 @@ msgstr ""
|
|
6981 |
msgid "Add step"
|
6982 |
msgstr ""
|
6983 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6984 |
#: app/react/components/Forms/MetaTitleDescription/index.js:121
|
6985 |
#: app/react/components/Forms/MetaTitleDescription/index.js:204
|
6986 |
msgid "pixels"
|
@@ -7165,6 +7429,10 @@ msgstr ""
|
|
7165 |
msgid "Delete schema"
|
7166 |
msgstr ""
|
7167 |
|
|
|
|
|
|
|
|
|
7168 |
#: app/react/layout/Main/components/SchemasManual/index.js:334
|
7169 |
msgid "Add a schema"
|
7170 |
msgstr ""
|
@@ -7198,62 +7466,63 @@ msgid_plural "We found %d canonicals URLs in your source code. Below, the list:"
|
|
7198 |
msgstr[0] ""
|
7199 |
msgstr[1] ""
|
7200 |
|
7201 |
-
#: app/react/services/content-analysis/heading.js:
|
7202 |
-
#: app/react/services/content-analysis/heading.js:
|
|
|
7203 |
msgid "Heading"
|
7204 |
msgstr ""
|
7205 |
|
7206 |
-
#: app/react/services/content-analysis/heading.js:
|
7207 |
msgid "Below the list:"
|
7208 |
msgstr ""
|
7209 |
|
7210 |
#: app/react/services/content-analysis/metaRobots.js:60
|
7211 |
-
#: app/react/services/content-analysis/metaRobots.js:
|
7212 |
msgid "is off. Google will index the images on this page."
|
7213 |
msgstr ""
|
7214 |
|
7215 |
#: app/react/services/content-analysis/metaRobots.js:68
|
7216 |
-
#: app/react/services/content-analysis/metaRobots.js:
|
7217 |
msgid "is off. Google will probably display a sitelinks searchbox in search results."
|
7218 |
msgstr ""
|
7219 |
|
7220 |
-
#: app/react/services/content-analysis/metaRobots.js:
|
7221 |
msgid "is on! Search engines can't index this page."
|
7222 |
msgstr ""
|
7223 |
|
7224 |
-
#: app/react/services/content-analysis/metaRobots.js:
|
7225 |
msgid "is off. Search engines will index this page."
|
7226 |
msgstr ""
|
7227 |
|
7228 |
-
#: app/react/services/content-analysis/metaRobots.js:
|
7229 |
msgid "is on! Search engines can't follow your links on this page."
|
7230 |
msgstr ""
|
7231 |
|
7232 |
-
#: app/react/services/content-analysis/metaRobots.js:
|
7233 |
msgid "is off. Search engines will follow links on this page."
|
7234 |
msgstr ""
|
7235 |
|
7236 |
-
#: app/react/services/content-analysis/metaRobots.js:
|
7237 |
msgid "is on! Search engines will not cache your page."
|
7238 |
msgstr ""
|
7239 |
|
7240 |
-
#: app/react/services/content-analysis/metaRobots.js:
|
7241 |
msgid "is off. Search engines will probably cache your page."
|
7242 |
msgstr ""
|
7243 |
|
7244 |
-
#: app/react/services/content-analysis/metaRobots.js:
|
7245 |
msgid "is on! Search engines will not display a snippet of this page in search results."
|
7246 |
msgstr ""
|
7247 |
|
7248 |
-
#: app/react/services/content-analysis/metaRobots.js:
|
7249 |
msgid "is off. Search engines will display a snippet of this page in search results."
|
7250 |
msgstr ""
|
7251 |
|
7252 |
-
#: app/react/services/content-analysis/metaRobots.js:
|
7253 |
msgid "is on! Google will not index your images on this page (but if someone makes a direct link to one of your image in this page, it will be indexed)."
|
7254 |
msgstr ""
|
7255 |
|
7256 |
-
#: app/react/services/content-analysis/metaRobots.js:
|
7257 |
msgid "is on! Google will not display a sitelinks searchbox in search results."
|
7258 |
msgstr ""
|
7259 |
|
@@ -7303,199 +7572,3 @@ msgstr ""
|
|
7303 |
#: app/react/services/content-analysis/socialTags.js:216
|
7304 |
msgid "We found a"
|
7305 |
msgstr ""
|
7306 |
-
|
7307 |
-
#: assets/js/src/blocks/faq/edit.js:32
|
7308 |
-
#: assets/js/src/blocks/faq/edit.js:75
|
7309 |
-
msgid "Question..."
|
7310 |
-
msgstr ""
|
7311 |
-
|
7312 |
-
#: assets/js/src/blocks/faq/edit.js:49
|
7313 |
-
#: assets/js/src/blocks/faq/edit.js:92
|
7314 |
-
msgid "Answer..."
|
7315 |
-
msgstr ""
|
7316 |
-
|
7317 |
-
#: assets/js/src/blocks/faq/edit.js:60
|
7318 |
-
#: assets/js/src/blocks/faq/edit.js:63
|
7319 |
-
#: assets/js/src/blocks/faq/edit.js:103
|
7320 |
-
#: assets/js/src/blocks/faq/edit.js:106
|
7321 |
-
msgid "Remove"
|
7322 |
-
msgstr ""
|
7323 |
-
|
7324 |
-
#: assets/js/src/blocks/faq/edit.js:185
|
7325 |
-
msgid "FAQ Settings"
|
7326 |
-
msgstr ""
|
7327 |
-
|
7328 |
-
#: assets/js/src/blocks/faq/edit.js:186
|
7329 |
-
msgid "List Style"
|
7330 |
-
msgstr ""
|
7331 |
-
|
7332 |
-
#: assets/js/src/blocks/faq/edit.js:198
|
7333 |
-
#: public/gutenberg/blocks/faq/index.js:1
|
7334 |
-
msgctxt "Div tag List"
|
7335 |
-
msgid "NONE"
|
7336 |
-
msgstr ""
|
7337 |
-
|
7338 |
-
#: assets/js/src/blocks/faq/edit.js:209
|
7339 |
-
#: public/gutenberg/blocks/faq/index.js:1
|
7340 |
-
msgctxt "Numbered List"
|
7341 |
-
msgid "OL"
|
7342 |
-
msgstr ""
|
7343 |
-
|
7344 |
-
#: assets/js/src/blocks/faq/edit.js:220
|
7345 |
-
#: public/gutenberg/blocks/faq/index.js:1
|
7346 |
-
msgctxt "Unordered List"
|
7347 |
-
msgid "UL"
|
7348 |
-
msgstr ""
|
7349 |
-
|
7350 |
-
#: assets/js/src/blocks/faq/edit.js:224
|
7351 |
-
msgid "Title Wrapper"
|
7352 |
-
msgstr ""
|
7353 |
-
|
7354 |
-
#: assets/js/src/blocks/faq/edit.js:236
|
7355 |
-
#: public/gutenberg/blocks/faq/index.js:1
|
7356 |
-
msgctxt "H2 title tag"
|
7357 |
-
msgid "H2"
|
7358 |
-
msgstr ""
|
7359 |
-
|
7360 |
-
#: assets/js/src/blocks/faq/edit.js:247
|
7361 |
-
#: public/gutenberg/blocks/faq/index.js:1
|
7362 |
-
msgctxt "H3 title tag"
|
7363 |
-
msgid "H3"
|
7364 |
-
msgstr ""
|
7365 |
-
|
7366 |
-
#: assets/js/src/blocks/faq/edit.js:258
|
7367 |
-
#: public/gutenberg/blocks/faq/index.js:1
|
7368 |
-
msgctxt "H4 title tag"
|
7369 |
-
msgid "H4"
|
7370 |
-
msgstr ""
|
7371 |
-
|
7372 |
-
#: assets/js/src/blocks/faq/edit.js:269
|
7373 |
-
#: public/gutenberg/blocks/faq/index.js:1
|
7374 |
-
msgctxt "H5 title tag"
|
7375 |
-
msgid "H5"
|
7376 |
-
msgstr ""
|
7377 |
-
|
7378 |
-
#: assets/js/src/blocks/faq/edit.js:280
|
7379 |
-
#: public/gutenberg/blocks/faq/index.js:1
|
7380 |
-
msgctxt "H6 title tag"
|
7381 |
-
msgid "H6"
|
7382 |
-
msgstr ""
|
7383 |
-
|
7384 |
-
#: assets/js/src/blocks/faq/edit.js:291
|
7385 |
-
#: public/gutenberg/blocks/faq/index.js:1
|
7386 |
-
msgctxt "P title tag"
|
7387 |
-
msgid "P"
|
7388 |
-
msgstr ""
|
7389 |
-
|
7390 |
-
#: assets/js/src/blocks/faq/edit.js:302
|
7391 |
-
#: public/gutenberg/blocks/faq/index.js:1
|
7392 |
-
msgctxt "DIV title tag"
|
7393 |
-
msgid "DIV"
|
7394 |
-
msgstr ""
|
7395 |
-
|
7396 |
-
#: assets/js/src/blocks/faq/edit.js:306
|
7397 |
-
msgid "Image Size"
|
7398 |
-
msgstr ""
|
7399 |
-
|
7400 |
-
#: assets/js/src/blocks/faq/edit.js:318
|
7401 |
-
#: public/gutenberg/blocks/faq/index.js:1
|
7402 |
-
msgctxt "Thubmnail Size"
|
7403 |
-
msgid "S"
|
7404 |
-
msgstr ""
|
7405 |
-
|
7406 |
-
#: assets/js/src/blocks/faq/edit.js:329
|
7407 |
-
#: public/gutenberg/blocks/faq/index.js:1
|
7408 |
-
msgctxt "Medium Size"
|
7409 |
-
msgid "M"
|
7410 |
-
msgstr ""
|
7411 |
-
|
7412 |
-
#: assets/js/src/blocks/faq/edit.js:340
|
7413 |
-
#: public/gutenberg/blocks/faq/index.js:1
|
7414 |
-
msgctxt "Large Size"
|
7415 |
-
msgid "L"
|
7416 |
-
msgstr ""
|
7417 |
-
|
7418 |
-
#: assets/js/src/blocks/faq/edit.js:351
|
7419 |
-
#: public/gutenberg/blocks/faq/index.js:1
|
7420 |
-
msgctxt "Original Size"
|
7421 |
-
msgid "XL"
|
7422 |
-
msgstr ""
|
7423 |
-
|
7424 |
-
#: assets/js/src/blocks/faq/edit.js:357
|
7425 |
-
msgid "SEO Settings"
|
7426 |
-
msgstr ""
|
7427 |
-
|
7428 |
-
#: assets/js/src/blocks/faq/edit.js:360
|
7429 |
-
msgid "Enable FAQ Schema"
|
7430 |
-
msgstr ""
|
7431 |
-
|
7432 |
-
#: assets/js/src/blocks/faq/edit.js:374
|
7433 |
-
msgid "Enable accordion"
|
7434 |
-
msgstr ""
|
7435 |
-
|
7436 |
-
#: assets/js/src/blocks/faq/edit.js:397
|
7437 |
-
#: assets/js/src/blocks/faq/edit.js:404
|
7438 |
-
msgid "Add FAQ"
|
7439 |
-
msgstr ""
|
7440 |
-
|
7441 |
-
#: assets/js/src/blocks/faq/image-control.js:70
|
7442 |
-
#: public/gutenberg/blocks/faq/index.js:1
|
7443 |
-
msgid "To edit the background image, you need permission to upload media."
|
7444 |
-
msgstr ""
|
7445 |
-
|
7446 |
-
#: assets/js/src/blocks/faq/image-control.js:81
|
7447 |
-
#: assets/js/src/blocks/faq/image-control.js:96
|
7448 |
-
#: assets/js/src/blocks/faq/image-control.js:104
|
7449 |
-
#: public/gutenberg/blocks/faq/index.js:1
|
7450 |
-
msgid "Set Image"
|
7451 |
-
msgstr ""
|
7452 |
-
|
7453 |
-
#: assets/js/src/blocks/faq/image-control.js:115
|
7454 |
-
#: public/gutenberg/blocks/faq/index.js:1
|
7455 |
-
msgid "Remove Image"
|
7456 |
-
msgstr ""
|
7457 |
-
|
7458 |
-
#: assets/js/src/blocks/faq/index.js:7
|
7459 |
-
#: public/gutenberg/blocks/faq/index.js:1
|
7460 |
-
msgid "FAQ"
|
7461 |
-
msgstr ""
|
7462 |
-
|
7463 |
-
#: assets/js/src/blocks/sitemap/edit.js:11
|
7464 |
-
#: public/gutenberg/blocks/sitemap/index.js:1
|
7465 |
-
msgid "It looks like the Sitemap feature is not enabled from your SEO settings. You must activate it to use this block. Make sure the HTML sitemap option is also enabled."
|
7466 |
-
msgstr ""
|
7467 |
-
|
7468 |
-
#: assets/js/src/blocks/sitemap/edit.js:12
|
7469 |
-
#: public/gutenberg/blocks/sitemap/index.js:1
|
7470 |
-
msgid "Review settings"
|
7471 |
-
msgstr ""
|
7472 |
-
|
7473 |
-
#: assets/js/src/blocks/sitemap/index.js:6
|
7474 |
-
#: public/gutenberg/blocks/sitemap/index.js:1
|
7475 |
-
msgid "Sitemap"
|
7476 |
-
msgstr ""
|
7477 |
-
|
7478 |
-
#: assets/js/src/blocks/sitemap/index.js:7
|
7479 |
-
#: public/gutenberg/blocks/sitemap/index.js:1
|
7480 |
-
msgid "Display an HTML sitemap."
|
7481 |
-
msgstr ""
|
7482 |
-
|
7483 |
-
#: assets/js/src/blocks/sitemap/index.js:8
|
7484 |
-
#: public/gutenberg/blocks/sitemap/index.js:1
|
7485 |
-
msgid "sitemap"
|
7486 |
-
msgstr ""
|
7487 |
-
|
7488 |
-
#: assets/js/src/blocks/sitemap/index.js:8
|
7489 |
-
#: public/gutenberg/blocks/sitemap/index.js:1
|
7490 |
-
msgid "navigation"
|
7491 |
-
msgstr ""
|
7492 |
-
|
7493 |
-
#: assets/js/src/blocks/sitemap/inspector.js:17
|
7494 |
-
#: public/gutenberg/blocks/sitemap/index.js:1
|
7495 |
-
msgid "Post types to display"
|
7496 |
-
msgstr ""
|
7497 |
-
|
7498 |
-
#: assets/js/src/blocks/sitemap/inspector.js:20
|
7499 |
-
#: public/gutenberg/blocks/sitemap/index.js:1
|
7500 |
-
msgid "By default, if you have not selected any post types below, we’ll automatically take the ones set from the Sitemap setting page."
|
7501 |
-
msgstr ""
|
1 |
+
# Copyright (C) 2022 The SEO Guys at SEOPress
|
2 |
# This file is distributed under the GPLv2.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: SEOPress 6.0\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-seopress\n"
|
7 |
"Last-Translator: SEOPress Team <contact@seopress.org>\n"
|
8 |
"Language-Team: SEOPress Team <contact@seopress.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"POT-Creation-Date: 2022-10-03T12:14:23+00:00\n"
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.6.0\n"
|
15 |
"X-Domain: wp-seopress\n"
|
16 |
|
17 |
#. Plugin Name of the plugin
|
|
|
18 |
msgid "SEOPress"
|
19 |
msgstr ""
|
20 |
|
27 |
msgid "One of the best SEO plugins for WordPress."
|
28 |
msgstr ""
|
29 |
|
30 |
+
#. Author of the plugin
|
31 |
+
msgid "The SEO Guys at SEOPress"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
#: inc/admin/admin-bar/admin-bar.php:26
|
35 |
#: inc/admin/admin.php:93
|
36 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:39
|
69 |
msgstr ""
|
70 |
|
71 |
#: inc/admin/admin-bar/admin-bar.php:106
|
|
|
72 |
#: inc/admin/admin.php:100
|
73 |
+
#: inc/admin/blocks/features-list.php:18
|
74 |
#: app/react/constants/tabs.js:28
|
75 |
msgid "Titles & Metas"
|
76 |
msgstr ""
|
80 |
msgstr ""
|
81 |
|
82 |
#: inc/admin/admin-bar/admin-bar.php:118
|
|
|
83 |
#: inc/admin/admin.php:102
|
84 |
+
#: inc/admin/blocks/features-list.php:30
|
85 |
msgid "Social Networks"
|
86 |
msgstr ""
|
87 |
|
88 |
#: inc/admin/admin-bar/admin-bar.php:124
|
|
|
89 |
#: inc/admin/admin.php:103
|
90 |
+
#: inc/admin/blocks/features-list.php:36
|
91 |
msgid "Analytics"
|
92 |
msgstr ""
|
93 |
|
94 |
#: inc/admin/admin-bar/admin-bar.php:130
|
|
|
95 |
#: inc/admin/admin.php:104
|
96 |
+
#: inc/admin/blocks/features-list.php:42
|
97 |
#: inc/admin/sections/InstantIndexing.php:9
|
98 |
msgid "Instant Indexing"
|
99 |
msgstr ""
|
113 |
msgstr ""
|
114 |
|
115 |
#: inc/admin/admin-bar/admin-bar.php:144
|
116 |
+
#: inc/admin/blocks/features-list.php:56
|
117 |
#: inc/admin/wizard/admin-wizard.php:262
|
118 |
#: src/Actions/Admin/ManageColumn.php:94
|
119 |
msgid "Insights"
|
120 |
msgstr ""
|
121 |
|
122 |
#: inc/admin/admin-bar/admin-bar.php:151
|
|
|
123 |
#: inc/admin/admin.php:106
|
124 |
+
#: inc/admin/blocks/features-list.php:164
|
125 |
msgid "Tools"
|
126 |
msgstr ""
|
127 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: inc/admin/admin-bar/admin-bar.php:166
|
133 |
+
#: inc/admin/blocks/features-list.php:172
|
134 |
+
#: inc/admin/blocks/notifications-center.php:792
|
135 |
msgid "License"
|
136 |
msgstr ""
|
137 |
|
138 |
#: inc/admin/admin-bar/admin-bar.php:172
|
139 |
+
#: inc/admin/blocks/notifications-center.php:815
|
140 |
#: inc/admin/wizard/admin-wizard.php:261
|
141 |
msgid "PRO"
|
142 |
msgstr ""
|
147 |
msgstr ""
|
148 |
|
149 |
#: inc/admin/admin-bar/admin-bar.php:187
|
|
|
150 |
#: inc/admin/admin-pages/Tools.php:24
|
151 |
+
#: inc/admin/blocks/features-list.php:65
|
152 |
msgid "Redirections"
|
153 |
msgstr ""
|
154 |
|
167 |
msgstr ""
|
168 |
|
169 |
#: inc/admin/admin-bar/admin-header.php:29
|
170 |
+
#: app/editor/blocks/faq/edit.js:371
|
171 |
msgid "Display"
|
172 |
msgstr ""
|
173 |
|
429 |
msgid "Target keyword"
|
430 |
msgstr ""
|
431 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
432 |
#: inc/admin/admin-pages/Advanced.php:20
|
433 |
#: inc/admin/sections/ImageSEO.php:10
|
434 |
msgid "Image SEO"
|
445 |
msgstr ""
|
446 |
|
447 |
#: inc/admin/admin-pages/Advanced.php:52
|
448 |
+
#: inc/admin/admin-pages/Analytics.php:70
|
449 |
#: inc/admin/admin-pages/InstantIndexing.php:51
|
450 |
#: inc/admin/admin-pages/Sitemaps.php:43
|
451 |
#: inc/admin/admin-pages/Social.php:43
|
452 |
#: inc/admin/admin-pages/Titles.php:54
|
453 |
+
#: seopress-functions.php:757
|
454 |
msgid "Save changes"
|
455 |
msgstr ""
|
456 |
|
493 |
#: inc/admin/admin-pages/Tools.php:22
|
494 |
#: inc/admin/admin-pages/Tools.php:155
|
495 |
#: inc/admin/sections/InstantIndexing.php:54
|
496 |
+
#: seopress.php:612
|
497 |
msgid "Settings"
|
498 |
msgstr ""
|
499 |
|
808 |
msgid "XML - HTML Sitemap"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: inc/admin/admin.php:105
|
812 |
+
#: inc/admin/blocks/features-list.php:48
|
813 |
+
msgid "Image SEO & Advanced settings"
|
814 |
+
msgstr ""
|
815 |
+
|
816 |
#: inc/admin/ajax.php:32
|
817 |
msgid "A redirect is active for this URL. Turn it off to get the Google preview and content analysis."
|
818 |
msgstr ""
|
825 |
msgid "Your site is protected by an authentification. <a href=\"%s\" target=\"_blank\">Fix this</a> <span class=\"dashicons dashicons-external\"></span>"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: inc/admin/blocks/features-list.php:10
|
829 |
+
msgid "SEO management"
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: inc/admin/blocks/features-list.php:19
|
833 |
+
msgid "Manage all your titles & metas for post types, taxonomies, archives..."
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: inc/admin/blocks/features-list.php:24
|
837 |
+
msgid "XML & HTML Sitemaps"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: inc/admin/blocks/features-list.php:25
|
841 |
+
msgid "Manage your XML - Image - Video - HTML Sitemap."
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: inc/admin/blocks/features-list.php:31
|
845 |
+
msgid "Open Graph, Twitter Card, Google Knowledge Graph and more..."
|
|
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: inc/admin/blocks/features-list.php:37
|
849 |
+
msgid "Track everything about your visitors with Google Analytics / Matomo / Microsoft Clarity."
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: inc/admin/blocks/features-list.php:43
|
853 |
+
msgid "Ping Google & Bing to quickly index your content."
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: inc/admin/blocks/features-list.php:49
|
857 |
+
msgid "Optimize your images for SEO. Configure advanced settings."
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: inc/admin/blocks/features-list.php:57
|
861 |
+
msgid "Track your keyword positions and backlinks directly in your WordPress."
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: inc/admin/blocks/features-list.php:66
|
865 |
+
msgid "Monitor 404, create 301, 302 and 307 redirections."
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: inc/admin/blocks/features-list.php:71
|
869 |
+
msgid "Structured Data Types"
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: inc/admin/blocks/features-list.php:72
|
873 |
+
msgid "Add data types to your content: articles, courses, recipes, videos, events, products and more."
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: inc/admin/blocks/features-list.php:78
|
877 |
+
msgid "robots.txt"
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: inc/admin/blocks/features-list.php:79
|
881 |
+
msgid "Edit your robots.txt file."
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: inc/admin/blocks/features-list.php:86
|
885 |
+
msgid ".htaccess"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: inc/admin/blocks/features-list.php:87
|
889 |
+
msgid "Edit your htaccess file."
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: inc/admin/blocks/features-list.php:94
|
893 |
+
msgid "Local Business"
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: inc/admin/blocks/features-list.php:95
|
897 |
+
msgid "Add Google Local Business data type."
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: inc/admin/blocks/features-list.php:100
|
901 |
+
msgid "Breadcrumbs"
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: inc/admin/blocks/features-list.php:101
|
905 |
+
msgid "Enable Breadcrumbs for your theme and improve your SEO in SERPs."
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: inc/admin/blocks/features-list.php:106
|
909 |
+
msgid "WooCommerce"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: inc/admin/blocks/features-list.php:107
|
913 |
+
msgid "Improve WooCommerce SEO."
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: inc/admin/blocks/features-list.php:112
|
917 |
+
msgid "Easy Digital Downloads"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: inc/admin/blocks/features-list.php:113
|
921 |
+
msgid "Improve Easy Digital Downloads SEO."
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: inc/admin/blocks/features-list.php:118
|
925 |
+
msgid "Google Page Speed"
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: inc/admin/blocks/features-list.php:119
|
929 |
+
msgid "Track your website performance to improve SEO with Google Page Speed."
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: inc/admin/blocks/features-list.php:125
|
933 |
+
msgid "Inspect URL with Google Search Console"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: inc/admin/blocks/features-list.php:126
|
937 |
+
msgid "Inspect your URL for details about crawling, indexing, mobile compatibility, schemas and more."
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: inc/admin/blocks/features-list.php:132
|
941 |
+
msgid "Google News Sitemap"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: inc/admin/blocks/features-list.php:133
|
945 |
+
msgid "Optimize your site for Google News."
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: inc/admin/blocks/features-list.php:138
|
949 |
+
msgid "Broken links"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: inc/admin/blocks/features-list.php:139
|
953 |
+
msgid "Scan your site to find SEO problems."
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: inc/admin/blocks/features-list.php:144
|
957 |
+
msgid "Dublin Core"
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: inc/admin/blocks/features-list.php:145
|
961 |
+
msgid "Add Dublin Core meta tags."
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: inc/admin/blocks/features-list.php:150
|
965 |
+
msgid "URL Rewriting"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: inc/admin/blocks/features-list.php:151
|
969 |
+
msgid "Customize your permalinks."
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: inc/admin/blocks/features-list.php:156
|
973 |
+
msgid "RSS"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: inc/admin/blocks/features-list.php:157
|
977 |
+
msgid "Configure default WordPress RSS."
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: inc/admin/blocks/features-list.php:165
|
981 |
+
msgid "Import/Export plugin settings from site to site."
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: inc/admin/blocks/features-list.php:173
|
985 |
+
msgid "Edit your license key."
|
986 |
+
msgstr ""
|
987 |
+
|
988 |
+
#: inc/admin/blocks/features-list.php:204
|
989 |
+
msgid "Toggle %s"
|
990 |
+
msgstr ""
|
991 |
+
|
992 |
+
#: inc/admin/blocks/get-started.php:14
|
993 |
+
msgid "How-to get started"
|
994 |
+
msgstr ""
|
995 |
+
|
996 |
+
#: inc/admin/blocks/get-started.php:16
|
997 |
+
msgid "Welcome to SEOPress!"
|
998 |
+
msgstr ""
|
999 |
+
|
1000 |
+
#: inc/admin/blocks/get-started.php:18
|
1001 |
+
msgid "Launch our installation wizard to quickly and easily configure the basic SEO settings for your site. Browse our video guides to go further. Can't find the answers to your questions? Open a ticket from your customer area. A happiness engineer will be happy to help you."
|
1002 |
+
msgstr ""
|
1003 |
+
|
1004 |
+
#: inc/admin/blocks/get-started.php:22
|
1005 |
+
msgid "Get started"
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: inc/admin/blocks/get-started.php:25
|
1009 |
+
#: seopress-functions.php:515
|
1010 |
+
msgid "Dismiss"
|
1011 |
+
msgstr ""
|
1012 |
+
|
1013 |
+
#: inc/admin/blocks/insights.php:57
|
1014 |
+
msgid "Site overview"
|
1015 |
+
msgstr ""
|
1016 |
+
|
1017 |
+
#: inc/admin/blocks/insights.php:69
|
1018 |
+
msgid "PageSpeed"
|
1019 |
+
msgstr ""
|
1020 |
+
|
1021 |
+
#: inc/admin/blocks/insights.php:70
|
1022 |
+
msgid "SEO Tools"
|
1023 |
+
msgstr ""
|
1024 |
+
|
1025 |
+
#: inc/admin/blocks/insights.php:112
|
1026 |
+
msgid "Sessions"
|
1027 |
+
msgstr ""
|
1028 |
+
|
1029 |
+
#: inc/admin/blocks/insights.php:115
|
1030 |
+
msgid "Users"
|
1031 |
+
msgstr ""
|
1032 |
+
|
1033 |
+
#: inc/admin/blocks/insights.php:118
|
1034 |
+
msgid "Page Views"
|
1035 |
+
msgstr ""
|
1036 |
+
|
1037 |
+
#: inc/admin/blocks/insights.php:121
|
1038 |
+
msgid "Page view / session"
|
1039 |
+
msgstr ""
|
1040 |
+
|
1041 |
+
#: inc/admin/blocks/insights.php:124
|
1042 |
+
msgid "Average session duration"
|
1043 |
+
msgstr ""
|
1044 |
+
|
1045 |
+
#: inc/admin/blocks/insights.php:127
|
1046 |
+
msgid "Bounce rate"
|
1047 |
+
msgstr ""
|
1048 |
+
|
1049 |
+
#: inc/admin/blocks/insights.php:130
|
1050 |
+
msgid "New sessions"
|
1051 |
+
msgstr ""
|
1052 |
+
|
1053 |
+
#: inc/admin/blocks/insights.php:146
|
1054 |
+
msgid "No stats found"
|
1055 |
+
msgstr ""
|
1056 |
+
|
1057 |
+
#: inc/admin/blocks/insights.php:155
|
1058 |
+
msgid "Connect Google Analytics"
|
1059 |
+
msgstr ""
|
1060 |
+
|
1061 |
+
#: inc/admin/blocks/insights.php:167
|
1062 |
+
msgid "Google Page Speed Score"
|
1063 |
+
msgstr ""
|
1064 |
+
|
1065 |
+
#: inc/admin/blocks/insights.php:168
|
1066 |
+
msgid "Learn how your site has performed, based on data from your actual users around the world."
|
1067 |
+
msgstr ""
|
1068 |
+
|
1069 |
+
#: inc/admin/blocks/insights.php:175
|
1070 |
+
msgid "<span><span class=\"score red\"></span>0-49</span><span><span class=\"score yellow\"></span>50-89</span><span><span class=\"score green\"></span>90-100</span>"
|
1071 |
+
msgstr ""
|
1072 |
+
|
1073 |
+
#: inc/admin/blocks/insights.php:188
|
1074 |
+
msgid "Core Web Vitals Assessment: "
|
1075 |
+
msgstr ""
|
1076 |
+
|
1077 |
+
#: inc/admin/blocks/insights.php:191
|
1078 |
+
msgid "Passed"
|
1079 |
+
msgstr ""
|
1080 |
+
|
1081 |
+
#: inc/admin/blocks/insights.php:193
|
1082 |
+
msgid "No data found"
|
1083 |
+
msgstr ""
|
1084 |
+
|
1085 |
+
#: inc/admin/blocks/insights.php:195
|
1086 |
+
msgid "Failed"
|
1087 |
+
msgstr ""
|
1088 |
+
|
1089 |
+
#: inc/admin/blocks/insights.php:198
|
1090 |
+
msgid "Computed from the %s Core Web Vitals metrics over the latest 28-day collection period."
|
1091 |
+
msgstr ""
|
1092 |
+
|
1093 |
+
#: inc/admin/blocks/insights.php:202
|
1094 |
+
msgid "No data available."
|
1095 |
+
msgstr ""
|
1096 |
+
|
1097 |
+
#: inc/admin/blocks/insights.php:207
|
1098 |
+
msgid "See full report"
|
1099 |
+
msgstr ""
|
1100 |
+
|
1101 |
+
#: inc/admin/blocks/insights.php:219
|
1102 |
+
msgid "Check websites setup on your server"
|
1103 |
+
msgstr ""
|
1104 |
+
|
1105 |
+
#: inc/admin/blocks/insights.php:228
|
1106 |
+
msgid "Not found"
|
1107 |
+
msgstr ""
|
1108 |
+
|
1109 |
+
#: inc/admin/blocks/insights.php:233
|
1110 |
+
msgid "No scrape."
|
1111 |
+
msgstr ""
|
1112 |
+
|
1113 |
+
#: inc/admin/blocks/insights.php:238
|
1114 |
+
msgid "No domain found."
|
1115 |
+
msgstr ""
|
1116 |
+
|
1117 |
+
#: inc/admin/blocks/insights.php:249
|
1118 |
+
msgid "Server IP Address: "
|
1119 |
+
msgstr ""
|
1120 |
+
|
1121 |
+
#: inc/admin/blocks/insights.php:256
|
1122 |
+
msgid "Last scrape: "
|
1123 |
+
msgstr ""
|
1124 |
+
|
1125 |
+
#: inc/admin/blocks/insights.php:263
|
1126 |
+
msgid "Number of websites on your server: "
|
1127 |
+
msgstr ""
|
1128 |
+
|
1129 |
+
#: inc/admin/blocks/insights.php:284
|
1130 |
+
msgid "Get list"
|
1131 |
+
msgstr ""
|
1132 |
+
|
1133 |
+
#: inc/admin/blocks/intro.php:11
|
1134 |
+
msgid "Your SEO today"
|
1135 |
+
msgstr ""
|
1136 |
+
|
1137 |
+
#: inc/admin/blocks/intro.php:12
|
1138 |
+
msgid "To do's, tips, and insights for your business"
|
1139 |
+
msgstr ""
|
1140 |
+
|
1141 |
+
#: inc/admin/blocks/news.php:34
|
1142 |
+
msgid "Latest News from SEOPress Blog"
|
1143 |
+
msgstr ""
|
1144 |
+
|
1145 |
+
#: inc/admin/blocks/news.php:50
|
1146 |
+
msgid "How many items would you like to display?"
|
1147 |
+
msgstr ""
|
1148 |
+
|
1149 |
+
#: inc/admin/blocks/news.php:57
|
1150 |
+
#: app/react/components/Forms/MetaTitleDescription/index.js:230
|
1151 |
+
#: app/react/layout/Main/components/Advanced/index.js:244
|
1152 |
#: app/react/layout/Main/components/GoogleNews/index.js:86
|
1153 |
#: app/react/layout/Main/components/Redirection/index.js:149
|
1154 |
#: app/react/layout/Main/components/SchemasManual/index.js:343
|
1169 |
msgid "All news"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: inc/admin/blocks/notifications-center.php:38
|
1173 |
+
#: inc/admin/blocks/tasks.php:141
|
1174 |
msgid "You like SEOPress? Please help us by rating us 5 stars!"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: inc/admin/blocks/notifications-center.php:39
|
1178 |
msgid "Support the development and improvement of the plugin by taking 15 seconds of your time to leave us a user review on the official WordPress plugins repository. Thank you!"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: inc/admin/blocks/notifications-center.php:41
|
1182 |
msgid "Information"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: inc/admin/blocks/notifications-center.php:45
|
1186 |
msgid "Rate us!"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: inc/admin/blocks/notifications-center.php:60
|
1190 |
msgid "Enable our universal SEO metabox for the Block Editor"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: inc/admin/blocks/notifications-center.php:61
|
1194 |
msgid "By default, our new SEO metabox is disabled for Gutenberg. Test it without further delay!"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: inc/admin/blocks/notifications-center.php:63
|
1198 |
+
#: inc/admin/blocks/notifications-center.php:85
|
1199 |
+
#: inc/admin/blocks/notifications-center.php:108
|
1200 |
+
#: inc/admin/blocks/notifications-center.php:131
|
1201 |
msgid "Wizard"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: inc/admin/blocks/notifications-center.php:67
|
1205 |
msgid "Activate it"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: inc/admin/blocks/notifications-center.php:82
|
1209 |
msgid "Configure SEOPress in a few minutes with our installation wizard"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: inc/admin/blocks/notifications-center.php:83
|
1213 |
msgid "The best way to quickly setup SEOPress on your site."
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: inc/admin/blocks/notifications-center.php:89
|
1217 |
+
#: inc/admin/blocks/notifications-center.php:112
|
1218 |
msgid "Start the wizard"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: inc/admin/blocks/notifications-center.php:105
|
1222 |
msgid "Configure SEOPress Insights in a few minutes with our installation wizard"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
+
#: inc/admin/blocks/notifications-center.php:106
|
1226 |
msgid "Track your keywords positions and backlinks directly on your WordPress site."
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: inc/admin/blocks/notifications-center.php:128
|
1230 |
msgid "Talk to a SEO consultant"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: inc/admin/blocks/notifications-center.php:129
|
1234 |
msgid "Your site is growing and you want support for your SEO strategy, increase your sales and conversions? We are there for that. Contact us!"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: inc/admin/blocks/notifications-center.php:136
|
1238 |
msgid "Yes, please"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: inc/admin/blocks/notifications-center.php:155
|
1242 |
+
msgid "Use Google Analytics with AMP plugin"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: inc/admin/blocks/notifications-center.php:156
|
1246 |
+
msgid "Your site is using the AMP official plugin. To track users with Google Analytics on AMP pages, please go to this settings page."
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: inc/admin/blocks/notifications-center.php:158
|
1250 |
+
#: inc/admin/blocks/notifications-center.php:605
|
1251 |
+
#: inc/admin/blocks/notifications-center.php:642
|
1252 |
+
#: inc/admin/blocks/notifications-center.php:690
|
1253 |
+
#: inc/admin/blocks/notifications-center.php:708
|
1254 |
+
msgid "Medium impact"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: inc/admin/blocks/notifications-center.php:162
|
1258 |
+
#: inc/admin/blocks/notifications-center.php:198
|
1259 |
+
#: inc/admin/blocks/notifications-center.php:224
|
1260 |
+
#: inc/admin/blocks/notifications-center.php:277
|
1261 |
+
#: inc/admin/blocks/notifications-center.php:341
|
1262 |
+
#: inc/admin/blocks/notifications-center.php:382
|
1263 |
+
#: inc/admin/blocks/notifications-center.php:402
|
1264 |
+
#: inc/admin/blocks/notifications-center.php:421
|
1265 |
+
#: inc/admin/blocks/notifications-center.php:440
|
1266 |
+
#: inc/admin/blocks/notifications-center.php:459
|
1267 |
+
#: inc/admin/blocks/notifications-center.php:550
|
1268 |
+
#: inc/admin/blocks/notifications-center.php:569
|
1269 |
+
#: inc/admin/blocks/notifications-center.php:586
|
1270 |
+
#: inc/admin/blocks/notifications-center.php:609
|
1271 |
+
#: inc/admin/blocks/notifications-center.php:646
|
1272 |
+
#: inc/admin/blocks/notifications-center.php:694
|
1273 |
+
#: inc/admin/blocks/notifications-center.php:712
|
1274 |
+
#: inc/admin/blocks/notifications-center.php:777
|
1275 |
+
#: inc/admin/blocks/notifications-center.php:796
|
1276 |
+
#: inc/admin/blocks/notifications-center.php:896
|
1277 |
#: inc/admin/sections/InstantIndexing.php:43
|
1278 |
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:30
|
1279 |
msgid "Fix this!"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: inc/admin/blocks/notifications-center.php:191
|
1283 |
+
msgid "We noticed that some SEO DIVI options are enabled!"
|
1284 |
+
msgstr ""
|
1285 |
+
|
1286 |
+
#: inc/admin/blocks/notifications-center.php:192
|
1287 |
+
msgid "To avoid any SEO conflicts, please disable every SEO option from <strong>DIVI theme options page, SEO tab</strong>."
|
1288 |
+
msgstr ""
|
1289 |
+
|
1290 |
+
#: inc/admin/blocks/notifications-center.php:194
|
1291 |
+
#: inc/admin/blocks/notifications-center.php:219
|
1292 |
#: inc/admin/blocks/notifications-center.php:244
|
1293 |
+
#: inc/admin/blocks/notifications-center.php:273
|
1294 |
+
#: inc/admin/blocks/notifications-center.php:310
|
1295 |
+
#: inc/admin/blocks/notifications-center.php:337
|
1296 |
+
#: inc/admin/blocks/notifications-center.php:378
|
1297 |
+
#: inc/admin/blocks/notifications-center.php:398
|
1298 |
+
#: inc/admin/blocks/notifications-center.php:417
|
1299 |
+
#: inc/admin/blocks/notifications-center.php:436
|
1300 |
+
#: inc/admin/blocks/notifications-center.php:455
|
1301 |
+
#: inc/admin/blocks/notifications-center.php:499
|
1302 |
+
#: inc/admin/blocks/notifications-center.php:517
|
1303 |
+
#: inc/admin/blocks/notifications-center.php:546
|
1304 |
+
#: inc/admin/blocks/notifications-center.php:565
|
1305 |
+
#: inc/admin/blocks/notifications-center.php:582
|
1306 |
+
#: inc/admin/blocks/notifications-center.php:666
|
1307 |
+
#: inc/admin/blocks/notifications-center.php:730
|
1308 |
+
#: inc/admin/blocks/notifications-center.php:755
|
1309 |
+
#: inc/admin/blocks/notifications-center.php:773
|
1310 |
+
#: inc/admin/blocks/notifications-center.php:862
|
1311 |
+
#: inc/admin/blocks/notifications-center.php:892
|
1312 |
+
msgid "High impact"
|
1313 |
+
msgstr ""
|
1314 |
+
|
1315 |
+
#: inc/admin/blocks/notifications-center.php:216
|
1316 |
msgid "TagDiv Composer plugin doesn't use <strong>add_theme_support('title-tag');</strong>"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: inc/admin/blocks/notifications-center.php:217
|
1320 |
msgid "Fix this compatibility issue to allow SEOPress generates the correct meta titles."
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: inc/admin/blocks/notifications-center.php:241
|
1324 |
msgid "Your theme doesn't use <strong>add_theme_support('title-tag');</strong>"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: inc/admin/blocks/notifications-center.php:242
|
1328 |
msgid "This error indicates that your theme uses a deprecated function to generate the title tag of your pages. SEOPress will not be able to generate your custom title tags if this error is not fixed."
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: inc/admin/blocks/notifications-center.php:249
|
1332 |
+
#: inc/admin/blocks/notifications-center.php:484
|
1333 |
+
#: inc/admin/blocks/notifications-center.php:504
|
1334 |
+
#: inc/admin/blocks/notifications-center.php:522
|
1335 |
#: inc/admin/callbacks/Analytics.php:605
|
1336 |
#: inc/admin/callbacks/Analytics.php:702
|
1337 |
#: inc/admin/callbacks/Analytics.php:730
|
1340 |
msgid "Learn more"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: inc/admin/blocks/notifications-center.php:270
|
1344 |
msgid "Your XML sitemap is cached!"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: inc/admin/blocks/notifications-center.php:271
|
1348 |
msgid "Swift Performance is caching your XML sitemap. You must disable this option to prevent any compatibility issue (Swift Performance > Settings > Caching, General tab)."
|
1349 |
msgstr ""
|
1350 |
|
1351 |
#. translators: %s name of a SEO plugin (eg: Yoast SEO)
|
1352 |
#. translators: %s name of a WP plugin (eg: IndexNow)
|
1353 |
+
#: inc/admin/blocks/notifications-center.php:307
|
1354 |
+
#: inc/admin/blocks/notifications-center.php:334
|
1355 |
#: inc/admin/sections/InstantIndexing.php:41
|
1356 |
msgid "We noticed that you use <strong>%s</strong> plugin."
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: inc/admin/blocks/notifications-center.php:308
|
1360 |
msgid "Do you want to migrate all your metadata to SEOPress? Do not use multiple SEO plugins at once to avoid conflicts!"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: inc/admin/blocks/notifications-center.php:314
|
1364 |
msgid "Migrate!"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: inc/admin/blocks/notifications-center.php:335
|
1368 |
#: inc/admin/sections/InstantIndexing.php:42
|
1369 |
msgid "To prevent any conflicts with our Indexing feature, please disable it."
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: inc/admin/blocks/notifications-center.php:354
|
1373 |
msgid "You have enabled 404 cleaning BUT the scheduled task is not running."
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: inc/admin/blocks/notifications-center.php:355
|
1377 |
msgid "To solve this, please disable and re-enable SEOPress PRO. No data will be lost."
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: inc/admin/blocks/notifications-center.php:375
|
1381 |
msgid "Enfold theme is not correctly setup for SEO!"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: inc/admin/blocks/notifications-center.php:376
|
1385 |
msgid "You must disable \"Meta tag robots\" option from Enfold settings (SEO Support tab) to avoid any SEO issues."
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: inc/admin/blocks/notifications-center.php:395
|
1389 |
msgid "Global meta title missing for several custom post types!"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: inc/admin/blocks/notifications-center.php:414
|
1393 |
msgid "Global meta description missing for several custom post types!"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: inc/admin/blocks/notifications-center.php:433
|
1397 |
msgid "Global meta title missing for several taxonomies!"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: inc/admin/blocks/notifications-center.php:452
|
1401 |
msgid "Global meta description missing for several taxonomies!"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: inc/admin/blocks/notifications-center.php:477
|
1405 |
msgid "Your site doesn't use an SSL certificate!"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: inc/admin/blocks/notifications-center.php:478
|
1409 |
msgid "Https is considered by Google as a positive signal for the ranking of your site. It also reassures your visitors for data security, and improves trust."
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: inc/admin/blocks/notifications-center.php:480
|
1413 |
msgid "Low impact"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
+
#: inc/admin/blocks/notifications-center.php:496
|
1417 |
msgid "PHP module \"DOM\" is missing on your server."
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: inc/admin/blocks/notifications-center.php:497
|
1421 |
+
#: inc/admin/blocks/notifications-center.php:515
|
1422 |
msgid "This PHP module, installed by default with PHP, is required by many plugins including SEOPress. Please contact your host as soon as possible to solve this."
|
1423 |
msgstr ""
|
1424 |
|
1425 |
+
#: inc/admin/blocks/notifications-center.php:514
|
1426 |
msgid "PHP module \"mbstring\" is missing on your server."
|
1427 |
msgstr ""
|
1428 |
|
1429 |
+
#: inc/admin/blocks/notifications-center.php:543
|
1430 |
msgid "Your site is not visible to Search Engines!"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: inc/admin/blocks/notifications-center.php:544
|
1434 |
msgid "You have activated the blocking of the indexing of your site. If your site is under development, this is probably normal. Otherwise, check your settings. Delete this notification using the cross on the right if you are not concerned."
|
1435 |
msgstr ""
|
1436 |
|
1437 |
+
#: inc/admin/blocks/notifications-center.php:562
|
1438 |
msgid "Your site title is empty!"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: inc/admin/blocks/notifications-center.php:563
|
1442 |
msgid "Your Site Title is used by WordPress, your theme and your plugins including SEOPress. It is an essential component in the generation of title tags, but not only. Enter one!"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: inc/admin/blocks/notifications-center.php:579
|
1446 |
msgid "Your permalinks are not SEO Friendly! Enable pretty permalinks to fix this."
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: inc/admin/blocks/notifications-center.php:580
|
1450 |
+
#: inc/admin/blocks/notifications-center.php:603
|
1451 |
msgid "Why is this important? Showing only the summary of each article significantly reduces the theft of your content by third party sites. Not to mention, the increase in your traffic, your advertising revenue, conversions..."
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: inc/admin/blocks/notifications-center.php:602
|
1455 |
msgid "Your RSS feed shows full text!"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: inc/admin/blocks/notifications-center.php:639
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1459 |
msgid "You have activated Google Analytics tracking without adding identifiers!"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: inc/admin/blocks/notifications-center.php:640
|
1463 |
msgid "Google Analytics will not track your visitors until you finish the configuration."
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: inc/admin/blocks/notifications-center.php:663
|
1467 |
msgid "Break comments into pages is ON!"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: inc/admin/blocks/notifications-center.php:664
|
1471 |
msgid "Enabling this option will create duplicate content for each article beyond x comments. This can have a disastrous effect by creating a large number of poor quality pages, and slowing the Google bot unnecessarily, so your ranking in search results."
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: inc/admin/blocks/notifications-center.php:670
|
1475 |
msgid "Disable this!"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
+
#: inc/admin/blocks/notifications-center.php:687
|
1479 |
msgid "Display more posts per page on homepage and archives"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: inc/admin/blocks/notifications-center.php:688
|
1483 |
msgid "To reduce the number pages search engines have to crawl to find all your articles, it is recommended displaying more posts per page. This should not be a problem for your users. Using mobile, we prefer to scroll down rather than clicking on next page links."
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: inc/admin/blocks/notifications-center.php:705
|
1487 |
msgid "You don't have an XML Sitemap!"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: inc/admin/blocks/notifications-center.php:706
|
1491 |
msgid "XML Sitemaps are useful to facilitate the crawling of your content by search engine robots. Indirectly, this can benefit your ranking by reducing the crawl bugdet."
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: inc/admin/blocks/notifications-center.php:727
|
1495 |
msgid "Do you have a Google My Business page? It's free!"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
#: inc/admin/blocks/notifications-center.php:728
|
1499 |
msgid "Local Business websites should have a My Business page to improve visibility in search results. Click on the cross on the right to delete this notification if you are not concerned."
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: inc/admin/blocks/notifications-center.php:734
|
1503 |
msgid "Create your page now!"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: inc/admin/blocks/notifications-center.php:752
|
1507 |
msgid "Add your site to Google. It's free!"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: inc/admin/blocks/notifications-center.php:753
|
1511 |
msgid "Is your brand new site online? So reference it as quickly as possible on Google to get your first visitors via Google Search Console. Already the case? Click on the cross on the right to remove this alert."
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: inc/admin/blocks/notifications-center.php:759
|
1515 |
msgid "Add your site to Search Console!"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: inc/admin/blocks/notifications-center.php:770
|
1519 |
msgid "Structured data types is not correctly enabled"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: inc/admin/blocks/notifications-center.php:771
|
1523 |
msgid "Please enable <strong>Structured Data Types metabox for your posts, pages and custom post types</strong> option in order to use automatic and manual schemas. (SEO > PRO > Structured Data Types (schema.org)"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: inc/admin/blocks/notifications-center.php:789
|
1527 |
msgid "You have to enter your licence key to get updates and support"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: inc/admin/blocks/notifications-center.php:790
|
1531 |
msgid "Please activate the SEOPress PRO license key to automatically receive updates to guarantee you the best user experience possible."
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: inc/admin/blocks/notifications-center.php:812
|
1535 |
msgid "Take your SEO to the next level with SEOPress PRO!"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: inc/admin/blocks/notifications-center.php:813
|
1539 |
msgid "The PRO version of SEOPress allows you to easily manage your structured data (schemas), add a breadcrumb optimized for SEO and accessibility, improve SEO for WooCommerce, gain productivity with our import / export tool from a CSV of your metadata and so much more."
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: inc/admin/blocks/notifications-center.php:820
|
1543 |
msgid "Upgrade now!"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: inc/admin/blocks/notifications-center.php:859
|
1547 |
msgid "A physical robots.txt file has been found"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: inc/admin/blocks/notifications-center.php:860
|
1551 |
msgid "A robots.txt file already exists at the root of your site. We invite you to remove it so SEOPress can handle it virtually."
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: inc/admin/blocks/notifications-center.php:889
|
1555 |
msgid "Your site is not indexable!"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: inc/admin/blocks/notifications-center.php:890
|
1559 |
msgid "Your robots.txt file contains a rule that prevents search engines to index your all site: <code>Disallow: /</code>"
|
1560 |
msgstr ""
|
1561 |
|
1567 |
msgid "Hide this"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: inc/admin/blocks/tasks.php:97
|
1571 |
msgid "Activate your license key"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
+
#: inc/admin/blocks/tasks.php:102
|
1575 |
msgid "Generate XML sitemaps"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
+
#: inc/admin/blocks/tasks.php:107
|
1579 |
msgid "Be social"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
+
#: inc/admin/blocks/tasks.php:112
|
1583 |
msgid "Improve Local SEO"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: inc/admin/blocks/tasks.php:117
|
1587 |
msgid "Add Structured Data Types to increase visibility in SERPs"
|
1588 |
msgstr ""
|
1589 |
|
2382 |
msgid "Disabling all heatmaps and session recordings"
|
2383 |
msgstr ""
|
2384 |
|
2385 |
+
#: inc/admin/callbacks/Analytics.php:1310
|
2386 |
msgid "Add Microsoft Clarity code to your site"
|
2387 |
msgstr ""
|
2388 |
|
2389 |
+
#: inc/admin/callbacks/Analytics.php:1324
|
2390 |
msgid "Enter your Project ID"
|
2391 |
msgstr ""
|
2392 |
|
2393 |
+
#: inc/admin/callbacks/Analytics.php:1331
|
2394 |
msgid "Find your project ID"
|
2395 |
msgstr ""
|
2396 |
|
2658 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:286
|
2659 |
#: inc/admin/wizard/admin-wizard.php:719
|
2660 |
#: src/Helpers/Metas/RobotSettings.php:19
|
2661 |
+
#: app/editor/primary-category-select/index.js:58
|
2662 |
+
#: public/editor/primary-category-select/index.js:1
|
|
|
|
|
|
|
|
|
2663 |
msgid "None (will disable this feature)"
|
2664 |
msgstr ""
|
2665 |
|
2924 |
msgstr ""
|
2925 |
|
2926 |
#: inc/admin/callbacks/Social.php:549
|
2927 |
+
#: seopress.php:406
|
2928 |
msgid "Default"
|
2929 |
msgstr ""
|
2930 |
|
3257 |
msgid "eg: https://example.com/my-media-attachment-page"
|
3258 |
msgstr ""
|
3259 |
|
3260 |
+
#: inc/admin/docs/DocsLinks.php:158
|
3261 |
msgid "Installation of SEOPress"
|
3262 |
msgstr ""
|
3263 |
|
3264 |
+
#: inc/admin/docs/DocsLinks.php:159
|
3265 |
msgid "Activate your license key to receive automatic updates"
|
3266 |
msgstr ""
|
3267 |
|
3268 |
+
#: inc/admin/docs/DocsLinks.php:160
|
3269 |
msgid "Configure SEOPress in 5 minutes"
|
3270 |
msgstr ""
|
3271 |
|
3272 |
+
#: inc/admin/docs/DocsLinks.php:161
|
3273 |
msgid "Migrate your SEO metadata from other plugins"
|
3274 |
msgstr ""
|
3275 |
|
3276 |
+
#: inc/admin/docs/DocsLinks.php:162
|
3277 |
msgid "Promote the exploration of your WordPress site by search engine robots"
|
3278 |
msgstr ""
|
3279 |
|
3280 |
+
#: inc/admin/docs/DocsLinks.php:163
|
3281 |
msgid "Optimize content from A to Z with SEOPress"
|
3282 |
msgstr ""
|
3283 |
|
3284 |
+
#: inc/admin/docs/DocsLinks.php:164
|
3285 |
msgid "Measure your traffic with Google Analytics"
|
3286 |
msgstr ""
|
3287 |
|
3288 |
+
#: inc/admin/docs/DocsLinks.php:165
|
3289 |
msgid "Add your WordPress site to Google’s index"
|
3290 |
msgstr ""
|
3291 |
|
3292 |
+
#: inc/admin/docs/DocsLinks.php:166
|
3293 |
msgid "Optimize your click-through rate on social networks"
|
3294 |
msgstr ""
|
3295 |
|
3296 |
+
#: inc/admin/docs/DocsLinks.php:167
|
3297 |
msgid "Free ebooks to learn SEO"
|
3298 |
msgstr ""
|
3299 |
|
3300 |
+
#: inc/admin/docs/DocsLinks.php:170
|
3301 |
msgid "Activate your SEOPress Insights license"
|
3302 |
msgstr ""
|
3303 |
|
3304 |
+
#: inc/admin/docs/DocsLinks.php:171
|
3305 |
msgid "Track your keyword rankings in Google with SEOPress Insights"
|
3306 |
msgstr ""
|
3307 |
|
3308 |
+
#: inc/admin/docs/DocsLinks.php:172
|
3309 |
msgid "Monitor and analyse your Backlinks with SEOPress Insights"
|
3310 |
msgstr ""
|
3311 |
|
3312 |
+
#: inc/admin/docs/DocsLinks.php:173
|
3313 |
msgid "Finding SEO keywords for your WordPress site"
|
3314 |
msgstr ""
|
3315 |
|
3316 |
+
#: inc/admin/docs/DocsLinks.php:174
|
3317 |
msgid "Optimize WordPress posts for a keyword"
|
3318 |
msgstr ""
|
3319 |
|
3320 |
+
#: inc/admin/docs/DocsLinks.php:175
|
3321 |
msgid "Audit the backlinks of your WordPress site (in WordPress)"
|
3322 |
msgstr ""
|
3323 |
|
3324 |
+
#: inc/admin/docs/DocsLinks.php:176
|
3325 |
msgid "The importance of backlinks"
|
3326 |
msgstr ""
|
3327 |
|
3663 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:334
|
3664 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:293
|
3665 |
#: src/Helpers/Metas/RobotSettings.php:109
|
3666 |
+
#: app/editor/primary-category-select/index.js:74
|
3667 |
+
#: public/editor/primary-category-select/index.js:1
|
|
|
|
|
|
|
|
|
3668 |
msgid "Select a primary category"
|
3669 |
msgstr ""
|
3670 |
|
4289 |
|
4290 |
#: inc/admin/sections/Analytics.php:16
|
4291 |
#: inc/admin/sections/Analytics.php:54
|
4292 |
+
#: inc/admin/sections/Analytics.php:161
|
4293 |
+
#: inc/admin/sections/Analytics.php:171
|
4294 |
msgid "Tracking"
|
4295 |
msgstr ""
|
4296 |
|
4304 |
msgstr ""
|
4305 |
|
4306 |
#: inc/admin/sections/Analytics.php:18
|
4307 |
+
#: inc/admin/sections/Analytics.php:162
|
4308 |
msgid "Stats in Dashboard"
|
4309 |
msgstr ""
|
4310 |
|
4372 |
msgid "Guide to create custom dimensions in Google Analytics - new window"
|
4373 |
msgstr ""
|
4374 |
|
4375 |
+
#: inc/admin/sections/Analytics.php:166
|
4376 |
msgid "Use Matomo to track your users with privacy in mind. We support both On Premise and Cloud installations."
|
4377 |
msgstr ""
|
4378 |
|
4379 |
+
#: inc/admin/sections/Analytics.php:176
|
4380 |
msgid "Your <strong>Custom Dimensions</strong> will also work with Matomo tracking code."
|
4381 |
msgstr ""
|
4382 |
|
4383 |
+
#: inc/admin/sections/Analytics.php:188
|
4384 |
msgid "Microsoft Clarity"
|
4385 |
msgstr ""
|
4386 |
|
4387 |
+
#: inc/admin/sections/Analytics.php:192
|
4388 |
msgid "Use Microsoft Clarity to capture session recordings, get instant heatmaps and powerful Insights for Free. Know how people interact with your site to improve user experience and conversions."
|
4389 |
msgstr ""
|
4390 |
|
4391 |
+
#: inc/admin/sections/Analytics.php:197
|
4392 |
msgid "Create your first Microsoft Clarity project <a href=\"%s\" target=\"_blank\">here</a>."
|
4393 |
msgstr ""
|
4394 |
|
4496 |
msgid "Limited to 1,000 posts per post type. You can change the order and sorting criteria below."
|
4497 |
msgstr ""
|
4498 |
|
4499 |
+
#: inc/admin/sections/Sitemaps.php:144
|
4500 |
+
msgid "How to use the HTML Sitemap?"
|
4501 |
msgstr ""
|
4502 |
|
4503 |
+
#: inc/admin/sections/Sitemaps.php:146
|
4504 |
+
msgid "Block Editor"
|
4505 |
msgstr ""
|
4506 |
|
4507 |
+
#: inc/admin/sections/Sitemaps.php:147
|
4508 |
+
msgid "Add the HTML sitemap block using the <strong>Block Editor</strong>."
|
4509 |
msgstr ""
|
4510 |
|
4511 |
+
#: inc/admin/sections/Sitemaps.php:150
|
4512 |
+
msgid "Shortcode"
|
4513 |
msgstr ""
|
4514 |
|
4515 |
+
#: inc/admin/sections/Sitemaps.php:152
|
4516 |
+
msgid "You can also use this shortcode in your content (post, page, post type...):"
|
4517 |
+
msgstr ""
|
4518 |
+
|
4519 |
+
#: inc/admin/sections/Sitemaps.php:155
|
4520 |
+
msgid "To include specific custom post types, use the CPT attribute:"
|
4521 |
+
msgstr ""
|
4522 |
+
|
4523 |
+
#: inc/admin/sections/Sitemaps.php:158
|
4524 |
+
msgid "Other"
|
4525 |
+
msgstr ""
|
4526 |
+
|
4527 |
+
#: inc/admin/sections/Sitemaps.php:159
|
4528 |
+
msgid "Dynamically display the sitemap by entering an ID to the first field below."
|
4529 |
+
msgstr ""
|
4530 |
+
|
4531 |
+
#: inc/admin/sections/Sitemaps.php:173
|
4532 |
+
msgid "Include/Exclude Post Types."
|
4533 |
+
msgstr ""
|
4534 |
+
|
4535 |
+
#: inc/admin/sections/Sitemaps.php:188
|
4536 |
+
msgid "Include/Exclude Taxonomies."
|
4537 |
+
msgstr ""
|
4538 |
+
|
4539 |
+
#: inc/admin/sections/Social.php:15
|
4540 |
+
msgid "Configure Google Knowledge Graph."
|
4541 |
+
msgstr ""
|
4542 |
+
|
4543 |
+
#: inc/admin/sections/Social.php:21
|
4544 |
+
msgid "Learn more on Google official website."
|
4545 |
+
msgstr ""
|
4546 |
+
|
4547 |
+
#: inc/admin/sections/Social.php:40
|
4548 |
msgid "Link your site with your social accounts."
|
4549 |
msgstr ""
|
4550 |
|
5098 |
msgstr ""
|
5099 |
|
5100 |
#: inc/admin/wizard/admin-wizard.php:131
|
5101 |
+
#: seopress.php:369
|
5102 |
msgid "Migration completed!"
|
5103 |
msgstr ""
|
5104 |
|
5105 |
#: inc/admin/wizard/admin-wizard.php:132
|
5106 |
+
#: seopress.php:371
|
5107 |
msgid "Export completed!"
|
5108 |
msgstr ""
|
5109 |
|
5661 |
msgid "Please choose a separator"
|
5662 |
msgstr ""
|
5663 |
|
5664 |
+
#: inc/functions/options-instant-indexing.php:119
|
5665 |
msgid "No URLs to submit"
|
5666 |
msgstr ""
|
5667 |
|
5668 |
+
#: inc/functions/options-instant-indexing.php:126
|
5669 |
msgid "No search engines selected"
|
5670 |
msgstr ""
|
5671 |
|
5672 |
+
#: inc/functions/options-instant-indexing.php:133
|
5673 |
msgid "No API key defined from the settings tab"
|
5674 |
msgstr ""
|
5675 |
|
5676 |
+
#: inc/functions/options-instant-indexing.php:185
|
5677 |
msgid "Bing API key is missing"
|
5678 |
msgstr ""
|
5679 |
|
5680 |
+
#: inc/functions/options-instant-indexing.php:220
|
5681 |
msgid "Google API key is missing"
|
5682 |
msgstr ""
|
5683 |
|
5703 |
msgid "Page %d of %2$d"
|
5704 |
msgstr ""
|
5705 |
|
5706 |
+
#: seopress-functions.php:294
|
5707 |
msgid "Custom Post Types"
|
5708 |
msgstr ""
|
5709 |
|
5710 |
+
#: seopress-functions.php:298
|
5711 |
msgid "Custom Taxonomies"
|
5712 |
msgstr ""
|
5713 |
|
5714 |
#. translators: %s: "Custom Post Types" or "Custom Taxonomies" %s: "title" or "description"
|
5715 |
+
#: seopress-functions.php:342
|
5716 |
msgid "Some <strong>%s</strong> have no <strong>meta %s</strong> set! We strongly encourage you to add one by filling in the fields below."
|
5717 |
msgstr ""
|
5718 |
|
5719 |
+
#: seopress.php:259
|
5720 |
msgid "has been successfully updated!"
|
5721 |
msgstr ""
|
5722 |
|
5723 |
+
#: seopress.php:370
|
5724 |
msgid "Regeneration completed!"
|
5725 |
msgstr ""
|
5726 |
|
5727 |
+
#: seopress.php:404
|
5728 |
msgid "Clear"
|
5729 |
msgstr ""
|
5730 |
|
5731 |
+
#: seopress.php:405
|
5732 |
msgid "Clear color"
|
5733 |
msgstr ""
|
5734 |
|
5735 |
+
#: seopress.php:407
|
5736 |
msgid "Select default color"
|
5737 |
msgstr ""
|
5738 |
|
5739 |
+
#: seopress.php:408
|
5740 |
msgid "Select Color"
|
5741 |
msgstr ""
|
5742 |
|
5743 |
+
#: seopress.php:409
|
5744 |
msgid "Color value"
|
5745 |
msgstr ""
|
5746 |
|
5747 |
+
#: seopress.php:613
|
5748 |
msgid "Docs"
|
5749 |
msgstr ""
|
5750 |
|
5751 |
+
#: seopress.php:614
|
5752 |
msgid "Configuration Wizard"
|
5753 |
msgstr ""
|
5754 |
|
5755 |
+
#: seopress.php:616
|
5756 |
msgid "GO PRO!"
|
5757 |
msgstr ""
|
5758 |
|
5759 |
+
#: seopress.php:652
|
5760 |
msgid "Important changes related to XML sitemaps in version 5.8: <a href=\"%s\" target=\"_blank\">Learn more</a>."
|
5761 |
msgstr ""
|
5762 |
|
5763 |
+
#: seopress.php:680
|
5764 |
+
msgid "A new <strong>SEOPress PRO</strong> update (v<code>6.0</code>) is available (current installed version <code>"
|
5765 |
+
msgstr ""
|
5766 |
+
|
5767 |
+
#: seopress.php:684
|
5768 |
+
msgid "Update SEOPress PRO"
|
5769 |
+
msgstr ""
|
5770 |
+
|
5771 |
#: src/Actions/Admin/ManageColumn.php:64
|
5772 |
msgid "Meta Desc."
|
5773 |
msgstr ""
|
5847 |
msgstr ""
|
5848 |
|
5849 |
#: src/Helpers/ContentAnalysis.php:43
|
5850 |
+
#: app/react/services/content-analysis/heading.js:206
|
5851 |
msgid "Headings"
|
5852 |
msgstr ""
|
5853 |
|
5857 |
msgstr ""
|
5858 |
|
5859 |
#: src/Helpers/ContentAnalysis.php:63
|
5860 |
+
#: app/react/services/content-analysis/metaRobots.js:272
|
5861 |
msgid "Meta robots"
|
5862 |
msgstr ""
|
5863 |
|
6065 |
msgstr ""
|
6066 |
|
6067 |
#: src/Services/ContentAnalysis/GetContent.php:204
|
6068 |
+
#: app/react/services/content-analysis/heading.js:167
|
6069 |
msgid "You should not use more than one H1 heading in your post content. The rule is simple: only one H1 for each web page. It is better for both SEO and accessibility. Below, the list:"
|
6070 |
msgstr ""
|
6071 |
|
6121 |
msgstr ""
|
6122 |
|
6123 |
#: src/Services/ContentAnalysis/GetContent.php:314
|
6124 |
+
#: app/react/services/content-analysis/heading.js:69
|
6125 |
#: app/react/services/content-analysis/metaTitle.js:46
|
6126 |
msgid "No custom title is set for this post. If the global meta title suits you, you can ignore this recommendation."
|
6127 |
msgstr ""
|
6369 |
|
6370 |
#: src/Services/ContentAnalysis/GetContent.php:684
|
6371 |
#: app/react/services/content-analysis/metaRobots.js:86
|
6372 |
+
#: app/react/services/content-analysis/metaRobots.js:101
|
6373 |
msgid "We found no meta robots on this page. It means, your page is index,follow. Search engines will index it, and follow links. "
|
6374 |
msgstr ""
|
6375 |
|
6968 |
msgid "Product SKU"
|
6969 |
msgstr ""
|
6970 |
|
6971 |
+
#: app/editor/blocks/faq/edit.js:32
|
6972 |
+
#: app/editor/blocks/faq/edit.js:75
|
6973 |
+
msgid "Question..."
|
6974 |
+
msgstr ""
|
6975 |
+
|
6976 |
+
#: app/editor/blocks/faq/edit.js:49
|
6977 |
+
#: app/editor/blocks/faq/edit.js:92
|
6978 |
+
msgid "Answer..."
|
6979 |
+
msgstr ""
|
6980 |
+
|
6981 |
+
#: app/editor/blocks/faq/edit.js:60
|
6982 |
+
#: app/editor/blocks/faq/edit.js:63
|
6983 |
+
#: app/editor/blocks/faq/edit.js:103
|
6984 |
+
#: app/editor/blocks/faq/edit.js:106
|
6985 |
+
msgid "Remove"
|
6986 |
+
msgstr ""
|
6987 |
+
|
6988 |
+
#: app/editor/blocks/faq/edit.js:185
|
6989 |
+
msgid "FAQ Settings"
|
6990 |
+
msgstr ""
|
6991 |
+
|
6992 |
+
#: app/editor/blocks/faq/edit.js:186
|
6993 |
+
msgid "List Style"
|
6994 |
+
msgstr ""
|
6995 |
+
|
6996 |
+
#: app/editor/blocks/faq/edit.js:198
|
6997 |
+
#: public/editor/blocks/faq/index.js:1
|
6998 |
+
msgctxt "Div tag List"
|
6999 |
+
msgid "NONE"
|
7000 |
+
msgstr ""
|
7001 |
+
|
7002 |
+
#: app/editor/blocks/faq/edit.js:209
|
7003 |
+
#: public/editor/blocks/faq/index.js:1
|
7004 |
+
msgctxt "Numbered List"
|
7005 |
+
msgid "OL"
|
7006 |
+
msgstr ""
|
7007 |
+
|
7008 |
+
#: app/editor/blocks/faq/edit.js:220
|
7009 |
+
#: public/editor/blocks/faq/index.js:1
|
7010 |
+
msgctxt "Unordered List"
|
7011 |
+
msgid "UL"
|
7012 |
+
msgstr ""
|
7013 |
+
|
7014 |
+
#: app/editor/blocks/faq/edit.js:224
|
7015 |
+
msgid "Title Wrapper"
|
7016 |
+
msgstr ""
|
7017 |
+
|
7018 |
+
#: app/editor/blocks/faq/edit.js:236
|
7019 |
+
#: public/editor/blocks/faq/index.js:1
|
7020 |
+
msgctxt "H2 title tag"
|
7021 |
+
msgid "H2"
|
7022 |
+
msgstr ""
|
7023 |
+
|
7024 |
+
#: app/editor/blocks/faq/edit.js:247
|
7025 |
+
#: public/editor/blocks/faq/index.js:1
|
7026 |
+
msgctxt "H3 title tag"
|
7027 |
+
msgid "H3"
|
7028 |
+
msgstr ""
|
7029 |
+
|
7030 |
+
#: app/editor/blocks/faq/edit.js:258
|
7031 |
+
#: public/editor/blocks/faq/index.js:1
|
7032 |
+
msgctxt "H4 title tag"
|
7033 |
+
msgid "H4"
|
7034 |
+
msgstr ""
|
7035 |
+
|
7036 |
+
#: app/editor/blocks/faq/edit.js:269
|
7037 |
+
#: public/editor/blocks/faq/index.js:1
|
7038 |
+
msgctxt "H5 title tag"
|
7039 |
+
msgid "H5"
|
7040 |
+
msgstr ""
|
7041 |
+
|
7042 |
+
#: app/editor/blocks/faq/edit.js:280
|
7043 |
+
#: public/editor/blocks/faq/index.js:1
|
7044 |
+
msgctxt "H6 title tag"
|
7045 |
+
msgid "H6"
|
7046 |
+
msgstr ""
|
7047 |
+
|
7048 |
+
#: app/editor/blocks/faq/edit.js:291
|
7049 |
+
#: public/editor/blocks/faq/index.js:1
|
7050 |
+
msgctxt "P title tag"
|
7051 |
+
msgid "P"
|
7052 |
+
msgstr ""
|
7053 |
+
|
7054 |
+
#: app/editor/blocks/faq/edit.js:302
|
7055 |
+
#: public/editor/blocks/faq/index.js:1
|
7056 |
+
msgctxt "DIV title tag"
|
7057 |
+
msgid "DIV"
|
7058 |
+
msgstr ""
|
7059 |
+
|
7060 |
+
#: app/editor/blocks/faq/edit.js:306
|
7061 |
+
msgid "Image Size"
|
7062 |
+
msgstr ""
|
7063 |
+
|
7064 |
+
#: app/editor/blocks/faq/edit.js:318
|
7065 |
+
#: public/editor/blocks/faq/index.js:1
|
7066 |
+
msgctxt "Thubmnail Size"
|
7067 |
+
msgid "S"
|
7068 |
+
msgstr ""
|
7069 |
+
|
7070 |
+
#: app/editor/blocks/faq/edit.js:329
|
7071 |
+
#: public/editor/blocks/faq/index.js:1
|
7072 |
+
msgctxt "Medium Size"
|
7073 |
+
msgid "M"
|
7074 |
+
msgstr ""
|
7075 |
+
|
7076 |
+
#: app/editor/blocks/faq/edit.js:340
|
7077 |
+
#: public/editor/blocks/faq/index.js:1
|
7078 |
+
msgctxt "Large Size"
|
7079 |
+
msgid "L"
|
7080 |
+
msgstr ""
|
7081 |
+
|
7082 |
+
#: app/editor/blocks/faq/edit.js:351
|
7083 |
+
#: public/editor/blocks/faq/index.js:1
|
7084 |
+
msgctxt "Original Size"
|
7085 |
+
msgid "XL"
|
7086 |
+
msgstr ""
|
7087 |
+
|
7088 |
+
#: app/editor/blocks/faq/edit.js:357
|
7089 |
+
msgid "SEO Settings"
|
7090 |
+
msgstr ""
|
7091 |
+
|
7092 |
+
#: app/editor/blocks/faq/edit.js:360
|
7093 |
+
msgid "Enable FAQ Schema"
|
7094 |
+
msgstr ""
|
7095 |
+
|
7096 |
+
#: app/editor/blocks/faq/edit.js:374
|
7097 |
+
msgid "Enable accordion"
|
7098 |
+
msgstr ""
|
7099 |
+
|
7100 |
+
#: app/editor/blocks/faq/edit.js:397
|
7101 |
+
#: app/editor/blocks/faq/edit.js:404
|
7102 |
+
msgid "Add FAQ"
|
7103 |
+
msgstr ""
|
7104 |
+
|
7105 |
+
#: app/editor/blocks/faq/image-control.js:70
|
7106 |
+
#: public/editor/blocks/faq/index.js:1
|
7107 |
+
msgid "To edit the background image, you need permission to upload media."
|
7108 |
+
msgstr ""
|
7109 |
+
|
7110 |
+
#: app/editor/blocks/faq/image-control.js:81
|
7111 |
+
#: app/editor/blocks/faq/image-control.js:96
|
7112 |
+
#: app/editor/blocks/faq/image-control.js:104
|
7113 |
+
#: public/editor/blocks/faq/index.js:1
|
7114 |
+
msgid "Set Image"
|
7115 |
+
msgstr ""
|
7116 |
+
|
7117 |
+
#: app/editor/blocks/faq/image-control.js:115
|
7118 |
+
#: public/editor/blocks/faq/index.js:1
|
7119 |
+
msgid "Remove Image"
|
7120 |
+
msgstr ""
|
7121 |
+
|
7122 |
+
#: app/editor/blocks/faq/index.js:7
|
7123 |
+
#: public/editor/blocks/faq/index.js:1
|
7124 |
+
msgid "FAQ"
|
7125 |
+
msgstr ""
|
7126 |
+
|
7127 |
+
#: app/editor/blocks/sitemap/edit.js:11
|
7128 |
+
#: public/editor/blocks/sitemap/index.js:1
|
7129 |
+
msgid "It looks like the Sitemap feature is not enabled from your SEO settings. You must activate it to use this block. Make sure the HTML sitemap option is also enabled."
|
7130 |
+
msgstr ""
|
7131 |
+
|
7132 |
+
#: app/editor/blocks/sitemap/edit.js:12
|
7133 |
+
#: public/editor/blocks/sitemap/index.js:1
|
7134 |
+
msgid "Review settings"
|
7135 |
+
msgstr ""
|
7136 |
+
|
7137 |
+
#: app/editor/blocks/sitemap/index.js:6
|
7138 |
+
#: public/editor/blocks/sitemap/index.js:1
|
7139 |
+
msgid "Sitemap"
|
7140 |
+
msgstr ""
|
7141 |
+
|
7142 |
+
#: app/editor/blocks/sitemap/index.js:7
|
7143 |
+
#: public/editor/blocks/sitemap/index.js:1
|
7144 |
+
msgid "Display an HTML sitemap."
|
7145 |
+
msgstr ""
|
7146 |
+
|
7147 |
+
#: app/editor/blocks/sitemap/index.js:8
|
7148 |
+
#: public/editor/blocks/sitemap/index.js:1
|
7149 |
+
msgid "sitemap"
|
7150 |
+
msgstr ""
|
7151 |
+
|
7152 |
+
#: app/editor/blocks/sitemap/index.js:8
|
7153 |
+
#: public/editor/blocks/sitemap/index.js:1
|
7154 |
+
msgid "navigation"
|
7155 |
+
msgstr ""
|
7156 |
+
|
7157 |
+
#: app/editor/blocks/sitemap/inspector.js:17
|
7158 |
+
#: public/editor/blocks/sitemap/index.js:1
|
7159 |
+
msgid "Post types to display"
|
7160 |
+
msgstr ""
|
7161 |
+
|
7162 |
+
#: app/editor/blocks/sitemap/inspector.js:20
|
7163 |
+
#: public/editor/blocks/sitemap/index.js:1
|
7164 |
+
msgid "By default, if you have not selected any post types below, we’ll automatically take the ones set from the Sitemap setting page."
|
7165 |
+
msgstr ""
|
7166 |
+
|
7167 |
#: app/react/components/Forms/components/Input/index.js:62
|
7168 |
#: app/react/components/Forms/components/Input/index.js:137
|
7169 |
#: app/react/components/Forms/components/TextArea/index.js:32
|
7227 |
msgid "Add step"
|
7228 |
msgstr ""
|
7229 |
|
7230 |
+
#: app/react/components/Forms/components/Repeater/NegativeNotesReview/index.js:68
|
7231 |
+
msgid "Your negative statement (required)"
|
7232 |
+
msgstr ""
|
7233 |
+
|
7234 |
+
#: app/react/components/Forms/components/Repeater/NegativeNotesReview/index.js:115
|
7235 |
+
#: app/react/components/Forms/components/Repeater/PositiveNotesReview/index.js:115
|
7236 |
+
msgid "Remove note"
|
7237 |
+
msgstr ""
|
7238 |
+
|
7239 |
+
#: app/react/components/Forms/components/Repeater/NegativeNotesReview/index.js:136
|
7240 |
+
#: app/react/components/Forms/components/Repeater/PositiveNotesReview/index.js:136
|
7241 |
+
msgid "Add a statement"
|
7242 |
+
msgstr ""
|
7243 |
+
|
7244 |
+
#: app/react/components/Forms/components/Repeater/PositiveNotesReview/index.js:68
|
7245 |
+
msgid "Your positive statement (required)"
|
7246 |
+
msgstr ""
|
7247 |
+
|
7248 |
#: app/react/components/Forms/MetaTitleDescription/index.js:121
|
7249 |
#: app/react/components/Forms/MetaTitleDescription/index.js:204
|
7250 |
msgid "pixels"
|
7429 |
msgid "Delete schema"
|
7430 |
msgstr ""
|
7431 |
|
7432 |
+
#: app/react/layout/Main/components/SchemasManual/index.js:237
|
7433 |
+
msgid "It is recommended to enter as many properties as possible to maximize the chances of getting a rich snippet in Google search results."
|
7434 |
+
msgstr ""
|
7435 |
+
|
7436 |
#: app/react/layout/Main/components/SchemasManual/index.js:334
|
7437 |
msgid "Add a schema"
|
7438 |
msgstr ""
|
7466 |
msgstr[0] ""
|
7467 |
msgstr[1] ""
|
7468 |
|
7469 |
+
#: app/react/services/content-analysis/heading.js:63
|
7470 |
+
#: app/react/services/content-analysis/heading.js:94
|
7471 |
+
#: app/react/services/content-analysis/heading.js:121
|
7472 |
msgid "Heading"
|
7473 |
msgstr ""
|
7474 |
|
7475 |
+
#: app/react/services/content-analysis/heading.js:176
|
7476 |
msgid "Below the list:"
|
7477 |
msgstr ""
|
7478 |
|
7479 |
#: app/react/services/content-analysis/metaRobots.js:60
|
7480 |
+
#: app/react/services/content-analysis/metaRobots.js:238
|
7481 |
msgid "is off. Google will index the images on this page."
|
7482 |
msgstr ""
|
7483 |
|
7484 |
#: app/react/services/content-analysis/metaRobots.js:68
|
7485 |
+
#: app/react/services/content-analysis/metaRobots.js:258
|
7486 |
msgid "is off. Google will probably display a sitelinks searchbox in search results."
|
7487 |
msgstr ""
|
7488 |
|
7489 |
+
#: app/react/services/content-analysis/metaRobots.js:145
|
7490 |
msgid "is on! Search engines can't index this page."
|
7491 |
msgstr ""
|
7492 |
|
7493 |
+
#: app/react/services/content-analysis/metaRobots.js:155
|
7494 |
msgid "is off. Search engines will index this page."
|
7495 |
msgstr ""
|
7496 |
|
7497 |
+
#: app/react/services/content-analysis/metaRobots.js:165
|
7498 |
msgid "is on! Search engines can't follow your links on this page."
|
7499 |
msgstr ""
|
7500 |
|
7501 |
+
#: app/react/services/content-analysis/metaRobots.js:175
|
7502 |
msgid "is off. Search engines will follow links on this page."
|
7503 |
msgstr ""
|
7504 |
|
7505 |
+
#: app/react/services/content-analysis/metaRobots.js:185
|
7506 |
msgid "is on! Search engines will not cache your page."
|
7507 |
msgstr ""
|
7508 |
|
7509 |
+
#: app/react/services/content-analysis/metaRobots.js:195
|
7510 |
msgid "is off. Search engines will probably cache your page."
|
7511 |
msgstr ""
|
7512 |
|
7513 |
+
#: app/react/services/content-analysis/metaRobots.js:205
|
7514 |
msgid "is on! Search engines will not display a snippet of this page in search results."
|
7515 |
msgstr ""
|
7516 |
|
7517 |
+
#: app/react/services/content-analysis/metaRobots.js:215
|
7518 |
msgid "is off. Search engines will display a snippet of this page in search results."
|
7519 |
msgstr ""
|
7520 |
|
7521 |
+
#: app/react/services/content-analysis/metaRobots.js:228
|
7522 |
msgid "is on! Google will not index your images on this page (but if someone makes a direct link to one of your image in this page, it will be indexed)."
|
7523 |
msgstr ""
|
7524 |
|
7525 |
+
#: app/react/services/content-analysis/metaRobots.js:248
|
7526 |
msgid "is on! Google will not display a sitelinks searchbox in search results."
|
7527 |
msgstr ""
|
7528 |
|
7572 |
#: app/react/services/content-analysis/socialTags.js:216
|
7573 |
msgid "We found a"
|
7574 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -0,0 +1 @@
|
|
|
1 |
+
<?php return array('dependencies' => array('wp-block-editor', 'wp-blocks', 'wp-components', 'wp-i18n'), 'version' => 'bb807fd76b8d21e56b5b');
|
File without changes
|
@@ -1 +1 @@
|
|
1 |
-
!function(){"use strict";var e,t={166:function(){var e=window.wp.components,t=window.wp.blockEditor,n=window.wp,r=n.data.withSelect,a=(n.element.Component,n.components),s=a.Spinner,i=a.Button,o=(a.ResponsiveWrapper,n.compose.compose),__=n.i18n.__,l=["image"],c=o(r((function(e,t){return{image:t.value?e("core").getMedia(t.value):null}})))((function(e){var n=e.value,r=e.image,a=React.createElement("p",null,__("To edit the background image, you need permission to upload media.","wp-seopress"));return React.createElement("div",{className:"wp-block-wp-seopress-image"},React.createElement(t.MediaUploadCheck,{fallback:a},React.createElement(t.MediaUpload,{title:__("Set Image","wp-seopress"),onSelect:function(t){e.onSelect(t.id,e.index)},allowedTypes:l,value:n,render:function(t){var a=t.open,o=function(t){var n=null;try{if(null!=t&&((n={}).source_url=t.guid.raw,null!=t.media_details.sizes))switch(n=null,e.imageSize){case"thumbnail":n=null!=t?t.media_details.sizes.thumbnail:null;break;case"medium":n=null!=t?t.media_details.sizes.medium:null;break;case"large":n=null!=t?null!=t.media_details.sizes.large?t.media_details.sizes.large:t.media_details.sizes.medium_large:null;break;default:n=null!=t?t.media_details.sizes.full:null}return n}catch(e){return n}}(r);return React.createElement(i,{className:n?"editor-post-featured-image__preview":"editor-post-featured-image__toggle",onClick:a},!n&&__("Set Image","wp-seopress"),!!n&&!r&&React.createElement(s,null),!!n&&r&&o&&o.source_url&&React.createElement("img",{src:o.source_url,alt:__("Set Image","wp-seopress")}))}})),!!n&&React.createElement(t.MediaUploadCheck,null,React.createElement(i,{onClick:function(){e.onRemoveImage(e.index)},isLink:!0,isDestructive:!0},__("Remove Image","wp-seopress"))))}));function u(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function p(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?u(Object(n),!0).forEach((function(t){m(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):u(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function m(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function f(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var d=wp.element.Fragment,w=wp.i18n,g=w.__,_x=w._x,b=(0,wp.compose.compose)((0,wp.data.withSelect)((function(e,t){var n=t.attributes,r=e("core").getMedia,a=n.selectedImageId;return{selectedImage:a?r(a):0}})))((function(n){var r=n.attributes,a=r.listStyle,s=r.titleWrapper,i=r.imageSize,o=r.showFAQScheme,l=r.showAccordion,u=r.isProActive,m=function(){return"none"===r.listStyle&&r.faqs.map((function(e,n){return React.createElement("div",{key:n,className:"wpseopress-faqs-area"},React.createElement("div",{className:"wpseopress-faq"},React.createElement(t.RichText,{tagName:r.titleWrapper,className:"wpseopress-faq-question",placeholder:g("Question...","wp-seopress"),value:e?e.question:"",onChange:function(e){return b(e,n)}}),React.createElement("div",{className:"wpseopress-answer-meta"},React.createElement(c,{value:e?e.image:"",onSelect:v,onRemoveImage:y,imageSize:r.imageSize,index:n}),React.createElement(t.RichText,{tagName:"p",className:"wpseopress-faq-answer",placeholder:g("Answer...","wp-seopress"),value:e?e.answer:"",onChange:function(e){return R(e,n)}}))),React.createElement("div",{className:"wpseopress-faq-cta"},React.createElement("button",{className:"components-button is-tertiary is-destructive",value:g("Remove","wp-seopress"),onClick:function(){return w(n)}},g("Remove","wp-seopress"))))}))||("ul"===r.listStyle||"ol"===r.listStyle)&&r.faqs.map((function(e,n){return React.createElement("li",{key:n,className:"wpseopress-faqs-area"},React.createElement("div",{className:"wpseopress-faq"},React.createElement(t.RichText,{tagName:r.titleWrapper,className:"wpseopress-faq-question",placeholder:g("Question...","wp-seopress"),value:e?e.question:"",onChange:function(e){return b(e,n)}}),React.createElement("div",{className:"wpseopress-answer-meta"},React.createElement(c,{value:e?e.image:"",onSelect:v,onRemoveImage:y,imageSize:r.imageSize,index:n}),React.createElement(t.RichText,{tagName:"div",className:"wpseopress-faq-answer",placeholder:g("Answer...","wp-seopress"),value:e?e.answer:"",onChange:function(e){return R(e,n)}}))),React.createElement("div",{className:"wpseopress-faq-cta"},React.createElement("button",{className:"components-button is-tertiary is-destructive",value:g("Remove","wp-seopress"),onClick:function(){return w(n)}},g("Remove","wp-seopress"))))}))},w=function(e){var t=r.faqs.filter((function(t,n){return n!==e}));n.setAttributes({faqs:t})},b=function(e,t){var a=r.faqs.map((function(n,r){return r!==t?n:p(p({},n),{},{question:e})}));n.setAttributes({faqs:a})},R=function(e,t){var a=r.faqs.map((function(n,r){return r!==t?n:p(p({},n),{},{answer:e})}));n.setAttributes({faqs:a})},v=function(e,t){var a=r.faqs.map((function(n,r){return r!==t?n:p(p({},n),{},{image:e})}));n.setAttributes({faqs:a})},y=function(e){var t=r.faqs.map((function(t,n){return n!==e?t:p(p({},t),{},{image:null})}));n.setAttributes({faqs:t})},E=React.createElement(t.InspectorControls,null,React.createElement(e.PanelBody,{title:g("FAQ Settings","wp-seopress")},React.createElement("p",null,g("List Style","wp-seopress")),React.createElement(e.PanelRow,{className:"wpseopress-faqs-list-style"},React.createElement(e.ButtonGroup,null,React.createElement(e.Button,{isSecondary:!0,isPrimary:"none"==a,onClick:function(e){n.setAttributes({listStyle:"none"})}},_x("NONE","Div tag List","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"ol"==a,onClick:function(e){n.setAttributes({listStyle:"ol"})}},_x("OL","Numbered List","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"ul"==a,onClick:function(e){n.setAttributes({listStyle:"ul"})}},_x("UL","Unordered List","wp-seopress")))),React.createElement("p",null,g("Title Wrapper","wp-seopress")),React.createElement(e.PanelRow,{className:"wpseopress-faqs-title-wrapper"},React.createElement(e.ButtonGroup,null,React.createElement(e.Button,{isSecondary:!0,isPrimary:"h2"==s,onClick:function(e){n.setAttributes({titleWrapper:"h2"})}},_x("H2","H2 title tag","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"h3"==s,onClick:function(e){n.setAttributes({titleWrapper:"h3"})}},_x("H3","H3 title tag","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"h4"==s,onClick:function(e){n.setAttributes({titleWrapper:"h4"})}},_x("H4","H4 title tag","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"h5"==s,onClick:function(e){n.setAttributes({titleWrapper:"h5"})}},_x("H5","H5 title tag","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"h6"==s,onClick:function(e){n.setAttributes({titleWrapper:"h6"})}},_x("H6","H6 title tag","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"p"==s,onClick:function(e){n.setAttributes({titleWrapper:"p"})}},_x("P","P title tag","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"div"==s,onClick:function(e){n.setAttributes({titleWrapper:"div"})}},_x("DIV","DIV title tag","wp-seopress")))),React.createElement("p",null,g("Image Size","wp-seopress")),React.createElement(e.PanelRow,{className:"wpseopress-faqs-image-size"},React.createElement(e.ButtonGroup,null,React.createElement(e.Button,{isSecondary:!0,isPrimary:"thumbnail"==i,onClick:function(e){n.setAttributes({imageSize:"thumbnail"})}},_x("S","Thubmnail Size","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"medium"==i,onClick:function(e){n.setAttributes({imageSize:"medium"})}},_x("M","Medium Size","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"large"==i,onClick:function(e){n.setAttributes({imageSize:"large"})}},_x("L","Large Size","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"full"==i,onClick:function(e){n.setAttributes({imageSize:"full"})}},_x("XL","Original Size","wp-seopress")))),u&&React.createElement(React.Fragment,null,React.createElement("p",null,g("SEO Settings","wp-seopress")),React.createElement(e.PanelRow,null,React.createElement(e.ToggleControl,{label:g("Enable FAQ Schema","wp-seopress"),checked:!!o,onChange:function(e){n.setAttributes({showFAQScheme:!o})}}))),React.createElement("p",null,g("Display","wp-seopress")),React.createElement(e.PanelRow,null,React.createElement(e.ToggleControl,{label:g("Enable accordion","wp-seopress"),checked:!!l,onChange:function(e){n.setAttributes({showAccordion:!l})}}))));return React.createElement(d,null,E,React.createElement("div",{className:"wpseopress-faqs"},"ul"===a&&React.createElement("ul",null,m()),"ol"===a&&React.createElement("ol",null,m()),"none"===a&&m(),React.createElement("div",{className:"wpseopress-faqs-actions"},React.createElement("button",{type:"button",title:g("Add FAQ","wp-seopress"),className:"add-faq components-button is-secondary",onClick:function(e){var t;e.preventDefault(),n.setAttributes({faqs:[].concat((t=r.faqs,function(e){if(Array.isArray(e))return f(e)}(t)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(t)||function(e,t){if(e){if("string"==typeof e)return f(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?f(e,t):void 0}}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),[{question:"",answer:"",image:""}])})}},g("Add FAQ","wp-seopress")))))})),R=window.wp.blocks,v=window.wp.i18n;(0,R.registerBlockType)("wpseopress/faq-block",{title:(0,v.__)("FAQ","wp-seopress"),icon:"index-card",category:"wpseopress",example:{},edit:b,save:function(){return null}})}},n={};function r(e){var a=n[e];if(void 0!==a)return a.exports;var s=n[e]={exports:{}};return t[e](s,s.exports,r),s.exports}r.m=t,e=[],r.O=function(t,n,a,s){if(!n){var i=1/0;for(u=0;u<e.length;u++){n=e[u][0],a=e[u][1],s=e[u][2];for(var o=!0,l=0;l<n.length;l++)(!1&s||i>=s)&&Object.keys(r.O).every((function(e){return r.O[e](n[l])}))?n.splice(l--,1):(o=!1,s<i&&(i=s));if(o){e.splice(u--,1);var c=a();void 0!==c&&(t=c)}}return t}s=s||0;for(var u=e.length;u>0&&e[u-1][2]>s;u--)e[u]=e[u-1];e[u]=[n,a,s]},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},function(){var e={826:0,431:0};r.O.j=function(t){return 0===e[t]};var t=function(t,n){var a,s,i=n[0],o=n[1],l=n[2],c=0;if(i.some((function(t){return 0!==e[t]}))){for(a in o)r.o(o,a)&&(r.m[a]=o[a]);if(l)var u=l(r)}for(t&&t(n);c<i.length;c++)s=i[c],r.o(e,s)&&e[s]&&e[s][0](),e[s]=0;return r.O(u)},n=self.webpackChunkwp_seopress=self.webpackChunkwp_seopress||[];n.forEach(t.bind(null,0)),n.push=t.bind(null,n.push.bind(n))}();var a=r.O(void 0,[431],(function(){return r(166)}));a=r.O(a)}();
|
1 |
+
!function(){"use strict";var e,t={616:function(){var e=window.wp.components,t=window.wp.blockEditor,n=window.wp,r=n.data.withSelect,a=(n.element.Component,n.components),s=a.Spinner,i=a.Button,o=(a.ResponsiveWrapper,n.compose.compose),__=n.i18n.__,l=["image"],c=o(r((function(e,t){return{image:t.value?e("core").getMedia(t.value):null}})))((function(e){var n=e.value,r=e.image,a=React.createElement("p",null,__("To edit the background image, you need permission to upload media.","wp-seopress"));return React.createElement("div",{className:"wp-block-wp-seopress-image"},React.createElement(t.MediaUploadCheck,{fallback:a},React.createElement(t.MediaUpload,{title:__("Set Image","wp-seopress"),onSelect:function(t){e.onSelect(t.id,e.index)},allowedTypes:l,value:n,render:function(t){var a=t.open,o=function(t){var n=null;try{if(null!=t&&((n={}).source_url=t.guid.raw,null!=t.media_details.sizes))switch(n=null,e.imageSize){case"thumbnail":n=null!=t?t.media_details.sizes.thumbnail:null;break;case"medium":n=null!=t?t.media_details.sizes.medium:null;break;case"large":n=null!=t?null!=t.media_details.sizes.large?t.media_details.sizes.large:t.media_details.sizes.medium_large:null;break;default:n=null!=t?t.media_details.sizes.full:null}return n}catch(e){return n}}(r);return React.createElement(i,{className:n?"editor-post-featured-image__preview":"editor-post-featured-image__toggle",onClick:a},!n&&__("Set Image","wp-seopress"),!!n&&!r&&React.createElement(s,null),!!n&&r&&o&&o.source_url&&React.createElement("img",{src:o.source_url,alt:__("Set Image","wp-seopress")}))}})),!!n&&React.createElement(t.MediaUploadCheck,null,React.createElement(i,{onClick:function(){e.onRemoveImage(e.index)},isLink:!0,isDestructive:!0},__("Remove Image","wp-seopress"))))}));function u(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function p(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?u(Object(n),!0).forEach((function(t){m(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):u(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function m(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function f(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var d=wp.element.Fragment,w=wp.i18n,g=w.__,_x=w._x,b=(0,wp.compose.compose)((0,wp.data.withSelect)((function(e,t){var n=t.attributes,r=e("core").getMedia,a=n.selectedImageId;return{selectedImage:a?r(a):0}})))((function(n){var r=n.attributes,a=r.listStyle,s=r.titleWrapper,i=r.imageSize,o=r.showFAQScheme,l=r.showAccordion,u=r.isProActive,m=function(){return"none"===r.listStyle&&r.faqs.map((function(e,n){return React.createElement("div",{key:n,className:"wpseopress-faqs-area"},React.createElement("div",{className:"wpseopress-faq"},React.createElement(t.RichText,{tagName:r.titleWrapper,className:"wpseopress-faq-question",placeholder:g("Question...","wp-seopress"),value:e?e.question:"",onChange:function(e){return b(e,n)}}),React.createElement("div",{className:"wpseopress-answer-meta"},React.createElement(c,{value:e?e.image:"",onSelect:v,onRemoveImage:y,imageSize:r.imageSize,index:n}),React.createElement(t.RichText,{tagName:"p",className:"wpseopress-faq-answer",placeholder:g("Answer...","wp-seopress"),value:e?e.answer:"",onChange:function(e){return R(e,n)}}))),React.createElement("div",{className:"wpseopress-faq-cta"},React.createElement("button",{className:"components-button is-tertiary is-destructive",value:g("Remove","wp-seopress"),onClick:function(){return w(n)}},g("Remove","wp-seopress"))))}))||("ul"===r.listStyle||"ol"===r.listStyle)&&r.faqs.map((function(e,n){return React.createElement("li",{key:n,className:"wpseopress-faqs-area"},React.createElement("div",{className:"wpseopress-faq"},React.createElement(t.RichText,{tagName:r.titleWrapper,className:"wpseopress-faq-question",placeholder:g("Question...","wp-seopress"),value:e?e.question:"",onChange:function(e){return b(e,n)}}),React.createElement("div",{className:"wpseopress-answer-meta"},React.createElement(c,{value:e?e.image:"",onSelect:v,onRemoveImage:y,imageSize:r.imageSize,index:n}),React.createElement(t.RichText,{tagName:"div",className:"wpseopress-faq-answer",placeholder:g("Answer...","wp-seopress"),value:e?e.answer:"",onChange:function(e){return R(e,n)}}))),React.createElement("div",{className:"wpseopress-faq-cta"},React.createElement("button",{className:"components-button is-tertiary is-destructive",value:g("Remove","wp-seopress"),onClick:function(){return w(n)}},g("Remove","wp-seopress"))))}))},w=function(e){var t=r.faqs.filter((function(t,n){return n!==e}));n.setAttributes({faqs:t})},b=function(e,t){var a=r.faqs.map((function(n,r){return r!==t?n:p(p({},n),{},{question:e})}));n.setAttributes({faqs:a})},R=function(e,t){var a=r.faqs.map((function(n,r){return r!==t?n:p(p({},n),{},{answer:e})}));n.setAttributes({faqs:a})},v=function(e,t){var a=r.faqs.map((function(n,r){return r!==t?n:p(p({},n),{},{image:e})}));n.setAttributes({faqs:a})},y=function(e){var t=r.faqs.map((function(t,n){return n!==e?t:p(p({},t),{},{image:null})}));n.setAttributes({faqs:t})},E=React.createElement(t.InspectorControls,null,React.createElement(e.PanelBody,{title:g("FAQ Settings","wp-seopress")},React.createElement("p",null,g("List Style","wp-seopress")),React.createElement(e.PanelRow,{className:"wpseopress-faqs-list-style"},React.createElement(e.ButtonGroup,null,React.createElement(e.Button,{isSecondary:!0,isPrimary:"none"==a,onClick:function(e){n.setAttributes({listStyle:"none"})}},_x("NONE","Div tag List","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"ol"==a,onClick:function(e){n.setAttributes({listStyle:"ol"})}},_x("OL","Numbered List","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"ul"==a,onClick:function(e){n.setAttributes({listStyle:"ul"})}},_x("UL","Unordered List","wp-seopress")))),React.createElement("p",null,g("Title Wrapper","wp-seopress")),React.createElement(e.PanelRow,{className:"wpseopress-faqs-title-wrapper"},React.createElement(e.ButtonGroup,null,React.createElement(e.Button,{isSecondary:!0,isPrimary:"h2"==s,onClick:function(e){n.setAttributes({titleWrapper:"h2"})}},_x("H2","H2 title tag","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"h3"==s,onClick:function(e){n.setAttributes({titleWrapper:"h3"})}},_x("H3","H3 title tag","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"h4"==s,onClick:function(e){n.setAttributes({titleWrapper:"h4"})}},_x("H4","H4 title tag","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"h5"==s,onClick:function(e){n.setAttributes({titleWrapper:"h5"})}},_x("H5","H5 title tag","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"h6"==s,onClick:function(e){n.setAttributes({titleWrapper:"h6"})}},_x("H6","H6 title tag","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"p"==s,onClick:function(e){n.setAttributes({titleWrapper:"p"})}},_x("P","P title tag","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"div"==s,onClick:function(e){n.setAttributes({titleWrapper:"div"})}},_x("DIV","DIV title tag","wp-seopress")))),React.createElement("p",null,g("Image Size","wp-seopress")),React.createElement(e.PanelRow,{className:"wpseopress-faqs-image-size"},React.createElement(e.ButtonGroup,null,React.createElement(e.Button,{isSecondary:!0,isPrimary:"thumbnail"==i,onClick:function(e){n.setAttributes({imageSize:"thumbnail"})}},_x("S","Thubmnail Size","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"medium"==i,onClick:function(e){n.setAttributes({imageSize:"medium"})}},_x("M","Medium Size","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"large"==i,onClick:function(e){n.setAttributes({imageSize:"large"})}},_x("L","Large Size","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"full"==i,onClick:function(e){n.setAttributes({imageSize:"full"})}},_x("XL","Original Size","wp-seopress")))),u&&React.createElement(React.Fragment,null,React.createElement("p",null,g("SEO Settings","wp-seopress")),React.createElement(e.PanelRow,null,React.createElement(e.ToggleControl,{label:g("Enable FAQ Schema","wp-seopress"),checked:!!o,onChange:function(e){n.setAttributes({showFAQScheme:!o})}}))),React.createElement("p",null,g("Display","wp-seopress")),React.createElement(e.PanelRow,null,React.createElement(e.ToggleControl,{label:g("Enable accordion","wp-seopress"),checked:!!l,onChange:function(e){n.setAttributes({showAccordion:!l})}}))));return React.createElement(d,null,E,React.createElement("div",{className:"wpseopress-faqs"},"ul"===a&&React.createElement("ul",null,m()),"ol"===a&&React.createElement("ol",null,m()),"none"===a&&m(),React.createElement("div",{className:"wpseopress-faqs-actions"},React.createElement("button",{type:"button",title:g("Add FAQ","wp-seopress"),className:"add-faq components-button is-secondary",onClick:function(e){var t;e.preventDefault(),n.setAttributes({faqs:[].concat((t=r.faqs,function(e){if(Array.isArray(e))return f(e)}(t)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(t)||function(e,t){if(e){if("string"==typeof e)return f(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?f(e,t):void 0}}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),[{question:"",answer:"",image:""}])})}},g("Add FAQ","wp-seopress")))))})),R=window.wp.blocks,v=window.wp.i18n;(0,R.registerBlockType)("wpseopress/faq-block",{title:(0,v.__)("FAQ","wp-seopress"),icon:"index-card",category:"wpseopress",example:{},edit:b,save:function(){return null}})}},n={};function r(e){var a=n[e];if(void 0!==a)return a.exports;var s=n[e]={exports:{}};return t[e](s,s.exports,r),s.exports}r.m=t,e=[],r.O=function(t,n,a,s){if(!n){var i=1/0;for(u=0;u<e.length;u++){n=e[u][0],a=e[u][1],s=e[u][2];for(var o=!0,l=0;l<n.length;l++)(!1&s||i>=s)&&Object.keys(r.O).every((function(e){return r.O[e](n[l])}))?n.splice(l--,1):(o=!1,s<i&&(i=s));if(o){e.splice(u--,1);var c=a();void 0!==c&&(t=c)}}return t}s=s||0;for(var u=e.length;u>0&&e[u-1][2]>s;u--)e[u]=e[u-1];e[u]=[n,a,s]},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},function(){var e={826:0,431:0};r.O.j=function(t){return 0===e[t]};var t=function(t,n){var a,s,i=n[0],o=n[1],l=n[2],c=0;if(i.some((function(t){return 0!==e[t]}))){for(a in o)r.o(o,a)&&(r.m[a]=o[a]);if(l)var u=l(r)}for(t&&t(n);c<i.length;c++)s=i[c],r.o(e,s)&&e[s]&&e[s][0](),e[s]=0;return r.O(u)},n=self.webpackChunkwp_seopress=self.webpackChunkwp_seopress||[];n.forEach(t.bind(null,0)),n.push=t.bind(null,n.push.bind(n))}();var a=r.O(void 0,[431],(function(){return r(616)}));a=r.O(a)}();
|
File without changes
|
@@ -1 +1 @@
|
|
1 |
-
<?php return array('dependencies' => array('wp-block-editor', 'wp-blocks', 'wp-components', 'wp-data', 'wp-i18n', 'wp-server-side-render'), 'version' => '
|
1 |
+
<?php return array('dependencies' => array('wp-block-editor', 'wp-blocks', 'wp-components', 'wp-data', 'wp-i18n', 'wp-server-side-render'), 'version' => 'e08e75c2fc066bdec613');
|
File without changes
|
@@ -1 +1 @@
|
|
1 |
-
!function(){"use strict";var e={n:function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,{a:r}),r},d:function(t,r){for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},o:function(e,t){return Object.prototype.hasOwnProperty.call(e,t)}},t=window.wp.i18n,r=window.wp.blocks,n=window.wp.components,o=window.wp.blockEditor,a=window.wp.data;function s(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}var i=function(e){var r=e.attributes,a=e.setAttributes,i=e.allowedPostTypes;return React.createElement(o.InspectorControls,null,React.createElement(n.PanelBody,{title:(0,t.__)("Post types to display","wp-seopress")},i&&React.createElement(React.Fragment,null,React.createElement("p",null,(0,t.__)("By default, if you have not selected any post types below, we’ll automatically take the ones set from the Sitemap setting page.","wp-seopress")),React.createElement("ul",null,i.map((function(e){return React.createElement("li",{key:e.slug},React.createElement(n.CheckboxControl,{label:e.name,checked:r.postTypes.includes(e.slug),onChange:function(t){return o=e.slug,(n=r.postTypes,i=function(e){if(Array.isArray(e))return s(e)}(n)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(n)||function(e,t){if(e){if("string"==typeof e)return s(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?s(e,t):void 0}}(n)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()).includes(o)?i=i.filter((function(e){return e!==o})):i.push(o),void a({postTypes:i});var n,o,i}}))}))))))},l=window.wp.serverSideRender,c=e.n(l);function
|
1 |
+
!function(){"use strict";var e={n:function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,{a:r}),r},d:function(t,r){for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},o:function(e,t){return Object.prototype.hasOwnProperty.call(e,t)}},t=window.wp.i18n,r=window.wp.blocks,n=window.wp.components,o=window.wp.blockEditor,a=window.wp.data;function s(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}var i=function(e){var r=e.attributes,a=e.setAttributes,i=e.allowedPostTypes;return React.createElement(o.InspectorControls,null,React.createElement(n.PanelBody,{title:(0,t.__)("Post types to display","wp-seopress")},i&&React.createElement(React.Fragment,null,React.createElement("p",null,(0,t.__)("By default, if you have not selected any post types below, we’ll automatically take the ones set from the Sitemap setting page.","wp-seopress")),React.createElement("ul",null,i.map((function(e){return React.createElement("li",{key:e.slug},React.createElement(n.CheckboxControl,{label:e.name,checked:r.postTypes.includes(e.slug),onChange:function(t){return o=e.slug,(n=r.postTypes,i=function(e){if(Array.isArray(e))return s(e)}(n)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(n)||function(e,t){if(e){if("string"==typeof e)return s(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?s(e,t):void 0}}(n)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()).includes(o)?i=i.filter((function(e){return e!==o})):i.push(o),void a({postTypes:i});var n,o,i}}))}))))))},l=window.wp.serverSideRender,c=e.n(l);function p(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function u(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}(0,r.registerBlockType)("wpseopress/sitemap",{title:(0,t.__)("Sitemap","wp-seopress"),description:(0,t.__)("Display an HTML sitemap.","wp-seopress"),keywords:[(0,t.__)("sitemap","wp-seopress"),(0,t.__)("navigation","wp-seopress")],edit:function(e){var r=e.attributes,s=e.setAttributes,l=r.isSiteMapEnabled,f=r.optionsPageUrl,m=(0,t.__)("It looks like the Sitemap feature is not enabled from your SEO settings. You must activate it to use this block. Make sure the HTML sitemap option is also enabled.","wp-seopress"),w=[{label:(0,t.__)("Review settings","wp-seopress"),url:f,variant:"primary",isPrimary:!0,noDefaultClasses:!0}],b=["attachment","wp_navigation","nav_menu_item","wp_block","wp_template","wp_template_part","wp_navigation"],y=(0,a.withSelect)((function(e,t){var r=e("core").getPostTypes({per_page:-1})||[],n=[];return r&&r.length&&(n=r.filter((function(e){return!b.includes(e.slug)}))),function(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?p(Object(r),!0).forEach((function(t){u(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):p(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}({allowedPostTypes:n},t)}))(i);return React.createElement("div",(0,o.useBlockProps)(),React.createElement(y,{attributes:r,setAttributes:s}),l?React.createElement(c(),{block:"wpseopress/sitemap",attributes:r}):React.createElement(n.Notice,{status:"warning",isDismissible:!1,actions:w},React.createElement("p",null,m)))},save:function(){return null}})}();
|
File without changes
|
File without changes
|
@@ -1 +0,0 @@
|
|
1 |
-
<?php return array('dependencies' => array('wp-block-editor', 'wp-blocks', 'wp-components', 'wp-i18n'), 'version' => 'b280cee8b2ad2e3e5e9e');
|
|
@@ -1 +0,0 @@
|
|
1 |
-
<?php return array('dependencies' => array('wp-components', 'wp-data', 'wp-element', 'wp-i18n'), 'version' => 'd4454d6cec16e500ca82');
|
|
@@ -1 +0,0 @@
|
|
1 |
-
!function(){"use strict";var e=window.wp.i18n,t=window.wp.element,r=window.wp.data,n=window.wp.components;function o(e){return 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},o(e)}function a(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function s(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function c(e,t){return c=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},c(e,t)}function l(e,t){if(t&&("object"===o(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return u(e)}function u(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function p(e){return p=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},p(e)}var m=function(t){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&c(e,t)}(y,t);var r,o,m,f,d=(m=y,f=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}(),function(){var e,t=p(m);if(f){var r=p(this).constructor;e=Reflect.construct(t,arguments,r)}else e=t.apply(this,arguments);return l(this,e)});function y(){var e;return i(this,y),(e=d.apply(this,arguments)).onChange=e.onChange.bind(u(e)),e.updateMetabox=e.updateMetabox.bind(u(e)),e.state={primaryTermId:"none",selectableTerms:[]},e}return r=y,(o=[{key:"componentDidMount",value:function(){var e=this,t=this.props.primaryTermId||"none";this.setState({primaryTermId:t}),this.metaboxField=document.querySelector("#seopress_robots_primary_cat"),this.metaboxField&&this.metaboxField.addEventListener("change",(function(t){e.setState({primaryTermId:t.target.value})}))}},{key:"componentDidUpdate",value:function(e,t){var r=this;if(e.allTerms!==this.props.allTerms||e.selectedTermIds!==this.props.selectedTermIds){var n=this.props.allTerms&&this.props.allTerms.length?this.props.allTerms.filter((function(e){return r.props.selectedTermIds.includes(e.id)})):[],o=this.props.selectedTermIds.length&&this.props.selectedTermIds.includes(parseInt(this.state.primaryTermId))?this.state.primaryTermId:"none";this.setState({selectableTerms:n,primaryTermId:o})}t.primaryTermId===this.state.primaryTermId&&t.selectableTerms===this.state.selectableTerms||this.updateMetabox(this.state.primaryTermId)}},{key:"updateMetabox",value:function(e){if(this.metaboxField){var t=this.getOptions().map((function(t){var r=t.value==e?'selected="selected"':"";return'<option value="'.concat(t.value,'" ').concat(r,">").concat(t.label,"</option>")}));this.metaboxField.value=e,this.metaboxField.innerHTML=t.join("")}}},{key:"getOptions",value:function(){return[{value:"none",label:(0,e.__)("None (will disable this feature)","wp-seopress")}].concat(function(e){if(Array.isArray(e))return a(e)}(t=this.state.selectableTerms.map((function(e){return{value:e.id,label:e.name}})))||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(t)||function(e,t){if(e){if("string"==typeof e)return a(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?a(e,t):void 0}}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}());var t}},{key:"onChange",value:function(e){this.setState({primaryTermId:e})}},{key:"render",value:function(){return!!this.state.selectableTerms.length&&React.createElement(n.SelectControl,{label:(0,e.__)("Select a primary category","wp-seopress"),value:this.state.primaryTermId,options:this.getOptions(),onChange:this.onChange})}}])&&s(r.prototype,o),Object.defineProperty(r,"prototype",{writable:!1}),y}(t.Component),f=(0,r.withSelect)((function(e,t){var r=t.slug,n=e("core").getTaxonomy(r),o=n?e("core/editor").getEditedPostAttribute(n.rest_base):[];return{taxonomy:n,allTerms:e("core").getEntityRecords("taxonomy",r,{per_page:-1})||[],primaryTermId:e("core/editor").getEditedPostAttribute("meta")._seopress_robots_primary_cat||"none",selectedTermIds:o}}))(m);wp.hooks.addFilter("editor.PostTaxonomyType","wpseopress",(function(e){return function(t){return React.createElement(React.Fragment,null,React.createElement(e,t),t.slug&&"category"===t.slug&&React.createElement(n.PanelRow,{className:"seopress-primary-term-picker"},React.createElement(f,t)))}}))}();
|
|
@@ -1 +0,0 @@
|
|
1 |
-
<?php return array('dependencies' => array('wp-components', 'wp-data', 'wp-element', 'wp-i18n'), 'version' => 'd4454d6cec16e500ca82');
|
|
@@ -1 +0,0 @@
|
|
1 |
-
!function(){"use strict";var e=window.wp.i18n,t=window.wp.element,r=window.wp.data,n=window.wp.components;function o(e){return 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},o(e)}function a(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function s(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function c(e,t){return c=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},c(e,t)}function l(e,t){if(t&&("object"===o(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return u(e)}function u(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function p(e){return p=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},p(e)}var m=function(t){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&c(e,t)}(y,t);var r,o,m,f,d=(m=y,f=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}(),function(){var e,t=p(m);if(f){var r=p(this).constructor;e=Reflect.construct(t,arguments,r)}else e=t.apply(this,arguments);return l(this,e)});function y(){var e;return i(this,y),(e=d.apply(this,arguments)).onChange=e.onChange.bind(u(e)),e.updateMetabox=e.updateMetabox.bind(u(e)),e.state={primaryTermId:"none",selectableTerms:[]},e}return r=y,(o=[{key:"componentDidMount",value:function(){var e=this,t=this.props.primaryTermId||"none";this.setState({primaryTermId:t}),this.metaboxField=document.querySelector("#seopress_robots_primary_cat"),this.metaboxField&&this.metaboxField.addEventListener("change",(function(t){e.setState({primaryTermId:t.target.value})}))}},{key:"componentDidUpdate",value:function(e,t){var r=this;if(e.allTerms!==this.props.allTerms||e.selectedTermIds!==this.props.selectedTermIds){var n=this.props.allTerms&&this.props.allTerms.length?this.props.allTerms.filter((function(e){return r.props.selectedTermIds.includes(e.id)})):[],o=this.props.selectedTermIds.length&&this.props.selectedTermIds.includes(parseInt(this.state.primaryTermId))?this.state.primaryTermId:"none";this.setState({selectableTerms:n,primaryTermId:o})}t.primaryTermId===this.state.primaryTermId&&t.selectableTerms===this.state.selectableTerms||this.updateMetabox(this.state.primaryTermId)}},{key:"updateMetabox",value:function(e){if(this.metaboxField){var t=this.getOptions().map((function(t){var r=t.value==e?'selected="selected"':"";return'<option value="'.concat(t.value,'" ').concat(r,">").concat(t.label,"</option>")}));this.metaboxField.value=e,this.metaboxField.innerHTML=t.join("")}}},{key:"getOptions",value:function(){return[{value:"none",label:(0,e.__)("None (will disable this feature)","wp-seopress")}].concat(function(e){if(Array.isArray(e))return a(e)}(t=this.state.selectableTerms.map((function(e){return{value:e.id,label:e.name}})))||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(t)||function(e,t){if(e){if("string"==typeof e)return a(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?a(e,t):void 0}}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}());var t}},{key:"onChange",value:function(e){this.setState({primaryTermId:e})}},{key:"render",value:function(){return!!this.state.selectableTerms.length&&React.createElement(n.SelectControl,{label:(0,e.__)("Select a primary category","wp-seopress"),value:this.state.primaryTermId,options:this.getOptions(),onChange:this.onChange})}}])&&s(r.prototype,o),Object.defineProperty(r,"prototype",{writable:!1}),y}(t.Component),f=(0,r.withSelect)((function(e,t){var r=t.slug,n=e("core").getTaxonomy(r),o=n?e("core/editor").getEditedPostAttribute(n.rest_base):[];return{taxonomy:n,allTerms:e("core").getEntityRecords("taxonomy",r,{per_page:-1})||[],primaryTermId:e("core/editor").getEditedPostAttribute("meta")._seopress_robots_primary_cat||"none",selectedTermIds:o}}))(m);wp.hooks.addFilter("editor.PostTaxonomyType","wpseopress",(function(e){return function(t){return React.createElement(React.Fragment,null,React.createElement(e,t),t.slug&&"category"===t.slug&&React.createElement(n.PanelRow,{className:"seopress-primary-term-picker"},React.createElement(f,t)))}}))}();
|
|
File without changes
|
@@ -1,2 +1,2 @@
|
|
1 |
/*! For license information please see metaboxe.js.LICENSE.txt */
|
2 |
-
(()=>{var e,t,n={1983:(e,t,n)=>{"use strict";n(6266),n(990),n(911),n(4160),n(6197),n(6728),n(4039),n(3568),n(8051),n(8250),n(5434),n(4952),n(6337),n(5666)},919:(e,t,n)=>{n(1983)},4184:(e,t)=>{var n;!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var n=arguments[t];if(n){var i=typeof n;if("string"===i||"number"===i)e.push(n);else if(Array.isArray(n)){if(n.length){var a=o.apply(null,n);a&&e.push(a)}}else if("object"===i)if(n.toString===Object.prototype.toString)for(var s in n)r.call(n,s)&&n[s]&&e.push(s);else e.push(n.toString())}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(n=function(){return o}.apply(t,[]))||(e.exports=n)}()},640:(e,t,n)=>{"use strict";var r=n(1742),o={"text/plain":"Text","text/html":"Url",default:"Text"};e.exports=function(e,t){var n,i,a,s,l,u,c=!1;t||(t={}),n=t.debug||!1;try{if(a=r(),s=document.createRange(),l=document.getSelection(),(u=document.createElement("span")).textContent=e,u.style.all="unset",u.style.position="fixed",u.style.top=0,u.style.clip="rect(0, 0, 0, 0)",u.style.whiteSpace="pre",u.style.webkitUserSelect="text",u.style.MozUserSelect="text",u.style.msUserSelect="text",u.style.userSelect="text",u.addEventListener("copy",(function(r){if(r.stopPropagation(),t.format)if(r.preventDefault(),void 0===r.clipboardData){n&&console.warn("unable to use e.clipboardData"),n&&console.warn("trying IE specific stuff"),window.clipboardData.clearData();var i=o[t.format]||o.default;window.clipboardData.setData(i,e)}else r.clipboardData.clearData(),r.clipboardData.setData(t.format,e);t.onCopy&&(r.preventDefault(),t.onCopy(r.clipboardData))})),document.body.appendChild(u),s.selectNodeContents(u),l.addRange(s),!document.execCommand("copy"))throw new Error("copy command was unsuccessful");c=!0}catch(r){n&&console.error("unable to copy using execCommand: ",r),n&&console.warn("trying IE specific stuff");try{window.clipboardData.setData(t.format||"text",e),t.onCopy&&t.onCopy(window.clipboardData),c=!0}catch(r){n&&console.error("unable to copy using clipboardData: ",r),n&&console.error("falling back to prompt"),i=function(e){var t=(/mac os x/i.test(navigator.userAgent)?"⌘":"Ctrl")+"+C";return e.replace(/#{\s*key\s*}/g,t)}("message"in t?t.message:"Copy to clipboard: #{key}, Enter"),window.prompt(i,e)}}finally{l&&("function"==typeof l.removeRange?l.removeRange(s):l.removeAllRanges()),u&&document.body.removeChild(u),a()}return c}},6266:(e,t,n)=>{n(5767),n(8132),n(8388),n(7470),n(4882),n(1520),n(7476),n(9622),n(9375),n(3533),n(4672),n(4157),n(5095),n(9892),n(5115),n(9176),n(8838),n(6253),n(9730),n(6059),n(8377),n(1084),n(4299),n(1246),n(726),n(1901),n(5972),n(3403),n(2516),n(9371),n(6479),n(1736),n(1889),n(5177),n(6943),n(6503),n(6786),n(932),n(7526),n(1591),n(9073),n(347),n(579),n(4669),n(7710),n(5789),n(3514),n(9978),n(8472),n(6946),n(5068),n(413),n(191),n(8306),n(4564),n(9115),n(9539),n(6620),n(2850),n(823),n(7732),n(856),n(703),n(1539),n(5292),n(6629),n(3694),n(7648),n(7795),n(4531),n(3605),n(6780),n(9937),n(511),n(1822),n(9977),n(1031),n(6331),n(1560),n(774),n(522),n(8295),n(7842),n(110),n(75),n(4336),n(1802),n(8837),n(6773),n(5745),n(3057),n(3750),n(3369),n(9564),n(2e3),n(8977),n(2310),n(4899),n(1842),n(6997),n(3946),n(8269),n(6108),n(6774),n(1466),n(9357),n(6142),n(1876),n(851),n(8416),n(8184),n(147),n(9192),n(142),n(1786),n(5368),n(6964),n(2152),n(4821),n(9103),n(1303),n(3318),n(162),n(3834),n(1572),n(2139),n(685),n(5535),n(7347),n(3049),n(6633),n(8989),n(8270),n(4510),n(3984),n(5769),n(55),n(6014),e.exports=n(5645)},911:(e,t,n)=>{n(1268),e.exports=n(5645).Array.flatMap},990:(e,t,n)=>{n(2773),e.exports=n(5645).Array.includes},5434:(e,t,n)=>{n(3276),e.exports=n(5645).Object.entries},8051:(e,t,n)=>{n(8351),e.exports=n(5645).Object.getOwnPropertyDescriptors},8250:(e,t,n)=>{n(6409),e.exports=n(5645).Object.values},4952:(e,t,n)=>{"use strict";n(851),n(9865),e.exports=n(5645).Promise.finally},6197:(e,t,n)=>{n(2770),e.exports=n(5645).String.padEnd},4160:(e,t,n)=>{n(1784),e.exports=n(5645).String.padStart},4039:(e,t,n)=>{n(4325),e.exports=n(5645).String.trimRight},6728:(e,t,n)=>{n(5869),e.exports=n(5645).String.trimLeft},3568:(e,t,n)=>{n(9665),e.exports=n(8787).f("asyncIterator")},4963:e=>{e.exports=function(e){if("function"!=typeof e)throw TypeError(e+" is not a function!");return e}},3365:(e,t,n)=>{var r=n(2032);e.exports=function(e,t){if("number"!=typeof e&&"Number"!=r(e))throw TypeError(t);return+e}},7722:(e,t,n)=>{var r=n(6314)("unscopables"),o=Array.prototype;null==o[r]&&n(7728)(o,r,{}),e.exports=function(e){o[r][e]=!0}},6793:(e,t,n)=>{"use strict";var r=n(4496)(!0);e.exports=function(e,t,n){return t+(n?r(e,t).length:1)}},3328:e=>{e.exports=function(e,t,n,r){if(!(e instanceof t)||void 0!==r&&r in e)throw TypeError(n+": incorrect invocation!");return e}},7007:(e,t,n)=>{var r=n(5286);e.exports=function(e){if(!r(e))throw TypeError(e+" is not an object!");return e}},5216:(e,t,n)=>{"use strict";var r=n(508),o=n(2337),i=n(875);e.exports=[].copyWithin||function(e,t){var n=r(this),a=i(n.length),s=o(e,a),l=o(t,a),u=arguments.length>2?arguments[2]:void 0,c=Math.min((void 0===u?a:o(u,a))-l,a-s),f=1;for(l<s&&s<l+c&&(f=-1,l+=c-1,s+=c-1);c-- >0;)l in n?n[s]=n[l]:delete n[s],s+=f,l+=f;return n}},6852:(e,t,n)=>{"use strict";var r=n(508),o=n(2337),i=n(875);e.exports=function(e){for(var t=r(this),n=i(t.length),a=arguments.length,s=o(a>1?arguments[1]:void 0,n),l=a>2?arguments[2]:void 0,u=void 0===l?n:o(l,n);u>s;)t[s++]=e;return t}},9315:(e,t,n)=>{var r=n(2110),o=n(875),i=n(2337);e.exports=function(e){return function(t,n,a){var s,l=r(t),u=o(l.length),c=i(a,u);if(e&&n!=n){for(;u>c;)if((s=l[c++])!=s)return!0}else for(;u>c;c++)if((e||c in l)&&l[c]===n)return e||c||0;return!e&&-1}}},50:(e,t,n)=>{var r=n(741),o=n(9797),i=n(508),a=n(875),s=n(6886);e.exports=function(e,t){var n=1==e,l=2==e,u=3==e,c=4==e,f=6==e,p=5==e||f,d=t||s;return function(t,s,h){for(var m,v,y=i(t),g=o(y),b=r(s,h,3),w=a(g.length),x=0,E=n?d(t,w):l?d(t,0):void 0;w>x;x++)if((p||x in g)&&(v=b(m=g[x],x,y),e))if(n)E[x]=v;else if(v)switch(e){case 3:return!0;case 5:return m;case 6:return x;case 2:E.push(m)}else if(c)return!1;return f?-1:u||c?c:E}}},7628:(e,t,n)=>{var r=n(4963),o=n(508),i=n(9797),a=n(875);e.exports=function(e,t,n,s,l){r(t);var u=o(e),c=i(u),f=a(u.length),p=l?f-1:0,d=l?-1:1;if(n<2)for(;;){if(p in c){s=c[p],p+=d;break}if(p+=d,l?p<0:f<=p)throw TypeError("Reduce of empty array with no initial value")}for(;l?p>=0:f>p;p+=d)p in c&&(s=t(s,c[p],p,u));return s}},2736:(e,t,n)=>{var r=n(5286),o=n(4302),i=n(6314)("species");e.exports=function(e){var t;return o(e)&&("function"!=typeof(t=e.constructor)||t!==Array&&!o(t.prototype)||(t=void 0),r(t)&&null===(t=t[i])&&(t=void 0)),void 0===t?Array:t}},6886:(e,t,n)=>{var r=n(2736);e.exports=function(e,t){return new(r(e))(t)}},4398:(e,t,n)=>{"use strict";var r=n(4963),o=n(5286),i=n(7242),a=[].slice,s={},l=function(e,t,n){if(!(t in s)){for(var r=[],o=0;o<t;o++)r[o]="a["+o+"]";s[t]=Function("F,a","return new F("+r.join(",")+")")}return s[t](e,n)};e.exports=Function.bind||function(e){var t=r(this),n=a.call(arguments,1),s=function(){var r=n.concat(a.call(arguments));return this instanceof s?l(t,r.length,r):i(t,r,e)};return o(t.prototype)&&(s.prototype=t.prototype),s}},1488:(e,t,n)=>{var r=n(2032),o=n(6314)("toStringTag"),i="Arguments"==r(function(){return arguments}());e.exports=function(e){var t,n,a;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(n=function(e,t){try{return e[t]}catch(e){}}(t=Object(e),o))?n:i?r(t):"Object"==(a=r(t))&&"function"==typeof t.callee?"Arguments":a}},2032:e=>{var t={}.toString;e.exports=function(e){return t.call(e).slice(8,-1)}},9824:(e,t,n)=>{"use strict";var r=n(9275).f,o=n(2503),i=n(4408),a=n(741),s=n(3328),l=n(3531),u=n(2923),c=n(5436),f=n(2974),p=n(7057),d=n(4728).fastKey,h=n(1616),m=p?"_s":"size",v=function(e,t){var n,r=d(t);if("F"!==r)return e._i[r];for(n=e._f;n;n=n.n)if(n.k==t)return n};e.exports={getConstructor:function(e,t,n,u){var c=e((function(e,r){s(e,c,t,"_i"),e._t=t,e._i=o(null),e._f=void 0,e._l=void 0,e[m]=0,null!=r&&l(r,n,e[u],e)}));return i(c.prototype,{clear:function(){for(var e=h(this,t),n=e._i,r=e._f;r;r=r.n)r.r=!0,r.p&&(r.p=r.p.n=void 0),delete n[r.i];e._f=e._l=void 0,e[m]=0},delete:function(e){var n=h(this,t),r=v(n,e);if(r){var o=r.n,i=r.p;delete n._i[r.i],r.r=!0,i&&(i.n=o),o&&(o.p=i),n._f==r&&(n._f=o),n._l==r&&(n._l=i),n[m]--}return!!r},forEach:function(e){h(this,t);for(var n,r=a(e,arguments.length>1?arguments[1]:void 0,3);n=n?n.n:this._f;)for(r(n.v,n.k,this);n&&n.r;)n=n.p},has:function(e){return!!v(h(this,t),e)}}),p&&r(c.prototype,"size",{get:function(){return h(this,t)[m]}}),c},def:function(e,t,n){var r,o,i=v(e,t);return i?i.v=n:(e._l=i={i:o=d(t,!0),k:t,v:n,p:r=e._l,n:void 0,r:!1},e._f||(e._f=i),r&&(r.n=i),e[m]++,"F"!==o&&(e._i[o]=i)),e},getEntry:v,setStrong:function(e,t,n){u(e,t,(function(e,n){this._t=h(e,t),this._k=n,this._l=void 0}),(function(){for(var e=this,t=e._k,n=e._l;n&&n.r;)n=n.p;return e._t&&(e._l=n=n?n.n:e._t._f)?c(0,"keys"==t?n.k:"values"==t?n.v:[n.k,n.v]):(e._t=void 0,c(1))}),n?"entries":"values",!n,!0),f(t)}}},3657:(e,t,n)=>{"use strict";var r=n(4408),o=n(4728).getWeak,i=n(7007),a=n(5286),s=n(3328),l=n(3531),u=n(50),c=n(9181),f=n(1616),p=u(5),d=u(6),h=0,m=function(e){return e._l||(e._l=new v)},v=function(){this.a=[]},y=function(e,t){return p(e.a,(function(e){return e[0]===t}))};v.prototype={get:function(e){var t=y(this,e);if(t)return t[1]},has:function(e){return!!y(this,e)},set:function(e,t){var n=y(this,e);n?n[1]=t:this.a.push([e,t])},delete:function(e){var t=d(this.a,(function(t){return t[0]===e}));return~t&&this.a.splice(t,1),!!~t}},e.exports={getConstructor:function(e,t,n,i){var u=e((function(e,r){s(e,u,t,"_i"),e._t=t,e._i=h++,e._l=void 0,null!=r&&l(r,n,e[i],e)}));return r(u.prototype,{delete:function(e){if(!a(e))return!1;var n=o(e);return!0===n?m(f(this,t)).delete(e):n&&c(n,this._i)&&delete n[this._i]},has:function(e){if(!a(e))return!1;var n=o(e);return!0===n?m(f(this,t)).has(e):n&&c(n,this._i)}}),u},def:function(e,t,n){var r=o(i(t),!0);return!0===r?m(e).set(t,n):r[e._i]=n,e},ufstore:m}},5795:(e,t,n)=>{"use strict";var r=n(3816),o=n(2985),i=n(7234),a=n(4408),s=n(4728),l=n(3531),u=n(3328),c=n(5286),f=n(4253),p=n(7462),d=n(2943),h=n(266);e.exports=function(e,t,n,m,v,y){var g=r[e],b=g,w=v?"set":"add",x=b&&b.prototype,E={},S=function(e){var t=x[e];i(x,e,"delete"==e||"has"==e?function(e){return!(y&&!c(e))&&t.call(this,0===e?0:e)}:"get"==e?function(e){return y&&!c(e)?void 0:t.call(this,0===e?0:e)}:"add"==e?function(e){return t.call(this,0===e?0:e),this}:function(e,n){return t.call(this,0===e?0:e,n),this})};if("function"==typeof b&&(y||x.forEach&&!f((function(){(new b).entries().next()})))){var _=new b,k=_[w](y?{}:-0,1)!=_,O=f((function(){_.has(1)})),j=p((function(e){new b(e)})),L=!y&&f((function(){for(var e=new b,t=5;t--;)e[w](t,t);return!e.has(-0)}));j||((b=t((function(t,n){u(t,b,e);var r=h(new g,t,b);return null!=n&&l(n,v,r[w],r),r}))).prototype=x,x.constructor=b),(O||L)&&(S("delete"),S("has"),v&&S("get")),(L||k)&&S(w),y&&x.clear&&delete x.clear}else b=m.getConstructor(t,e,v,w),a(b.prototype,n),s.NEED=!0;return d(b,e),E[e]=b,o(o.G+o.W+o.F*(b!=g),E),y||m.setStrong(b,e,v),b}},5645:e=>{var t=e.exports={version:"2.6.12"};"number"==typeof __e&&(__e=t)},2811:(e,t,n)=>{"use strict";var r=n(9275),o=n(681);e.exports=function(e,t,n){t in e?r.f(e,t,o(0,n)):e[t]=n}},741:(e,t,n)=>{var r=n(4963);e.exports=function(e,t,n){if(r(e),void 0===t)return e;switch(n){case 1:return function(n){return e.call(t,n)};case 2:return function(n,r){return e.call(t,n,r)};case 3:return function(n,r,o){return e.call(t,n,r,o)}}return function(){return e.apply(t,arguments)}}},3537:(e,t,n)=>{"use strict";var r=n(4253),o=Date.prototype.getTime,i=Date.prototype.toISOString,a=function(e){return e>9?e:"0"+e};e.exports=r((function(){return"0385-07-25T07:06:39.999Z"!=i.call(new Date(-50000000000001))}))||!r((function(){i.call(new Date(NaN))}))?function(){if(!isFinite(o.call(this)))throw RangeError("Invalid time value");var e=this,t=e.getUTCFullYear(),n=e.getUTCMilliseconds(),r=t<0?"-":t>9999?"+":"";return r+("00000"+Math.abs(t)).slice(r?-6:-4)+"-"+a(e.getUTCMonth()+1)+"-"+a(e.getUTCDate())+"T"+a(e.getUTCHours())+":"+a(e.getUTCMinutes())+":"+a(e.getUTCSeconds())+"."+(n>99?n:"0"+a(n))+"Z"}:i},870:(e,t,n)=>{"use strict";var r=n(7007),o=n(1689),i="number";e.exports=function(e){if("string"!==e&&e!==i&&"default"!==e)throw TypeError("Incorrect hint");return o(r(this),e!=i)}},1355:e=>{e.exports=function(e){if(null==e)throw TypeError("Can't call method on "+e);return e}},7057:(e,t,n)=>{e.exports=!n(4253)((function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}))},2457:(e,t,n)=>{var r=n(5286),o=n(3816).document,i=r(o)&&r(o.createElement);e.exports=function(e){return i?o.createElement(e):{}}},4430:e=>{e.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},5541:(e,t,n)=>{var r=n(7184),o=n(4548),i=n(4682);e.exports=function(e){var t=r(e),n=o.f;if(n)for(var a,s=n(e),l=i.f,u=0;s.length>u;)l.call(e,a=s[u++])&&t.push(a);return t}},2985:(e,t,n)=>{var r=n(3816),o=n(5645),i=n(7728),a=n(7234),s=n(741),l=function(e,t,n){var u,c,f,p,d=e&l.F,h=e&l.G,m=e&l.S,v=e&l.P,y=e&l.B,g=h?r:m?r[t]||(r[t]={}):(r[t]||{}).prototype,b=h?o:o[t]||(o[t]={}),w=b.prototype||(b.prototype={});for(u in h&&(n=t),n)f=((c=!d&&g&&void 0!==g[u])?g:n)[u],p=y&&c?s(f,r):v&&"function"==typeof f?s(Function.call,f):f,g&&a(g,u,f,e&l.U),b[u]!=f&&i(b,u,p),v&&w[u]!=f&&(w[u]=f)};r.core=o,l.F=1,l.G=2,l.S=4,l.P=8,l.B=16,l.W=32,l.U=64,l.R=128,e.exports=l},8852:(e,t,n)=>{var r=n(6314)("match");e.exports=function(e){var t=/./;try{"/./"[e](t)}catch(n){try{return t[r]=!1,!"/./"[e](t)}catch(e){}}return!0}},4253:e=>{e.exports=function(e){try{return!!e()}catch(e){return!0}}},8082:(e,t,n)=>{"use strict";n(8269);var r=n(7234),o=n(7728),i=n(4253),a=n(1355),s=n(6314),l=n(1165),u=s("species"),c=!i((function(){var e=/./;return e.exec=function(){var e=[];return e.groups={a:"7"},e},"7"!=="".replace(e,"$<a>")})),f=function(){var e=/(?:)/,t=e.exec;e.exec=function(){return t.apply(this,arguments)};var n="ab".split(e);return 2===n.length&&"a"===n[0]&&"b"===n[1]}();e.exports=function(e,t,n){var p=s(e),d=!i((function(){var t={};return t[p]=function(){return 7},7!=""[e](t)})),h=d?!i((function(){var t=!1,n=/a/;return n.exec=function(){return t=!0,null},"split"===e&&(n.constructor={},n.constructor[u]=function(){return n}),n[p](""),!t})):void 0;if(!d||!h||"replace"===e&&!c||"split"===e&&!f){var m=/./[p],v=n(a,p,""[e],(function(e,t,n,r,o){return t.exec===l?d&&!o?{done:!0,value:m.call(t,n,r)}:{done:!0,value:e.call(n,t,r)}:{done:!1}})),y=v[0],g=v[1];r(String.prototype,e,y),o(RegExp.prototype,p,2==t?function(e,t){return g.call(e,this,t)}:function(e){return g.call(e,this)})}}},3218:(e,t,n)=>{"use strict";var r=n(7007);e.exports=function(){var e=r(this),t="";return e.global&&(t+="g"),e.ignoreCase&&(t+="i"),e.multiline&&(t+="m"),e.unicode&&(t+="u"),e.sticky&&(t+="y"),t}},3325:(e,t,n)=>{"use strict";var r=n(4302),o=n(5286),i=n(875),a=n(741),s=n(6314)("isConcatSpreadable");e.exports=function e(t,n,l,u,c,f,p,d){for(var h,m,v=c,y=0,g=!!p&&a(p,d,3);y<u;){if(y in l){if(h=g?g(l[y],y,n):l[y],m=!1,o(h)&&(m=void 0!==(m=h[s])?!!m:r(h)),m&&f>0)v=e(t,n,h,i(h.length),v,f-1)-1;else{if(v>=9007199254740991)throw TypeError();t[v]=h}v++}y++}return v}},3531:(e,t,n)=>{var r=n(741),o=n(8851),i=n(6555),a=n(7007),s=n(875),l=n(9002),u={},c={},f=e.exports=function(e,t,n,f,p){var d,h,m,v,y=p?function(){return e}:l(e),g=r(n,f,t?2:1),b=0;if("function"!=typeof y)throw TypeError(e+" is not iterable!");if(i(y)){for(d=s(e.length);d>b;b++)if((v=t?g(a(h=e[b])[0],h[1]):g(e[b]))===u||v===c)return v}else for(m=y.call(e);!(h=m.next()).done;)if((v=o(m,g,h.value,t))===u||v===c)return v};f.BREAK=u,f.RETURN=c},18:(e,t,n)=>{e.exports=n(3825)("native-function-to-string",Function.toString)},3816:e=>{var t=e.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=t)},9181:e=>{var t={}.hasOwnProperty;e.exports=function(e,n){return t.call(e,n)}},7728:(e,t,n)=>{var r=n(9275),o=n(681);e.exports=n(7057)?function(e,t,n){return r.f(e,t,o(1,n))}:function(e,t,n){return e[t]=n,e}},639:(e,t,n)=>{var r=n(3816).document;e.exports=r&&r.documentElement},1734:(e,t,n)=>{e.exports=!n(7057)&&!n(4253)((function(){return 7!=Object.defineProperty(n(2457)("div"),"a",{get:function(){return 7}}).a}))},266:(e,t,n)=>{var r=n(5286),o=n(7375).set;e.exports=function(e,t,n){var i,a=t.constructor;return a!==n&&"function"==typeof a&&(i=a.prototype)!==n.prototype&&r(i)&&o&&o(e,i),e}},7242:e=>{e.exports=function(e,t,n){var r=void 0===n;switch(t.length){case 0:return r?e():e.call(n);case 1:return r?e(t[0]):e.call(n,t[0]);case 2:return r?e(t[0],t[1]):e.call(n,t[0],t[1]);case 3:return r?e(t[0],t[1],t[2]):e.call(n,t[0],t[1],t[2]);case 4:return r?e(t[0],t[1],t[2],t[3]):e.call(n,t[0],t[1],t[2],t[3])}return e.apply(n,t)}},9797:(e,t,n)=>{var r=n(2032);e.exports=Object("z").propertyIsEnumerable(0)?Object:function(e){return"String"==r(e)?e.split(""):Object(e)}},6555:(e,t,n)=>{var r=n(2803),o=n(6314)("iterator"),i=Array.prototype;e.exports=function(e){return void 0!==e&&(r.Array===e||i[o]===e)}},4302:(e,t,n)=>{var r=n(2032);e.exports=Array.isArray||function(e){return"Array"==r(e)}},8367:(e,t,n)=>{var r=n(5286),o=Math.floor;e.exports=function(e){return!r(e)&&isFinite(e)&&o(e)===e}},5286:e=>{e.exports=function(e){return"object"==typeof e?null!==e:"function"==typeof e}},5364:(e,t,n)=>{var r=n(5286),o=n(2032),i=n(6314)("match");e.exports=function(e){var t;return r(e)&&(void 0!==(t=e[i])?!!t:"RegExp"==o(e))}},8851:(e,t,n)=>{var r=n(7007);e.exports=function(e,t,n,o){try{return o?t(r(n)[0],n[1]):t(n)}catch(t){var i=e.return;throw void 0!==i&&r(i.call(e)),t}}},9988:(e,t,n)=>{"use strict";var r=n(2503),o=n(681),i=n(2943),a={};n(7728)(a,n(6314)("iterator"),(function(){return this})),e.exports=function(e,t,n){e.prototype=r(a,{next:o(1,n)}),i(e,t+" Iterator")}},2923:(e,t,n)=>{"use strict";var r=n(4461),o=n(2985),i=n(7234),a=n(7728),s=n(2803),l=n(9988),u=n(2943),c=n(468),f=n(6314)("iterator"),p=!([].keys&&"next"in[].keys()),d="keys",h="values",m=function(){return this};e.exports=function(e,t,n,v,y,g,b){l(n,t,v);var w,x,E,S=function(e){if(!p&&e in j)return j[e];switch(e){case d:case h:return function(){return new n(this,e)}}return function(){return new n(this,e)}},_=t+" Iterator",k=y==h,O=!1,j=e.prototype,L=j[f]||j["@@iterator"]||y&&j[y],C=L||S(y),P=y?k?S("entries"):C:void 0,A="Array"==t&&j.entries||L;if(A&&(E=c(A.call(new e)))!==Object.prototype&&E.next&&(u(E,_,!0),r||"function"==typeof E[f]||a(E,f,m)),k&&L&&L.name!==h&&(O=!0,C=function(){return L.call(this)}),r&&!b||!p&&!O&&j[f]||a(j,f,C),s[t]=C,s[_]=m,y)if(w={values:k?C:S(h),keys:g?C:S(d),entries:P},b)for(x in w)x in j||i(j,x,w[x]);else o(o.P+o.F*(p||O),t,w);return w}},7462:(e,t,n)=>{var r=n(6314)("iterator"),o=!1;try{var i=[7][r]();i.return=function(){o=!0},Array.from(i,(function(){throw 2}))}catch(e){}e.exports=function(e,t){if(!t&&!o)return!1;var n=!1;try{var i=[7],a=i[r]();a.next=function(){return{done:n=!0}},i[r]=function(){return a},e(i)}catch(e){}return n}},5436:e=>{e.exports=function(e,t){return{value:t,done:!!e}}},2803:e=>{e.exports={}},4461:e=>{e.exports=!1},3086:e=>{var t=Math.expm1;e.exports=!t||t(10)>22025.465794806718||t(10)<22025.465794806718||-2e-17!=t(-2e-17)?function(e){return 0==(e=+e)?e:e>-1e-6&&e<1e-6?e+e*e/2:Math.exp(e)-1}:t},4934:(e,t,n)=>{var r=n(1801),o=Math.pow,i=o(2,-52),a=o(2,-23),s=o(2,127)*(2-a),l=o(2,-126);e.exports=Math.fround||function(e){var t,n,o=Math.abs(e),u=r(e);return o<l?u*(o/l/a+1/i-1/i)*l*a:(n=(t=(1+a/i)*o)-(t-o))>s||n!=n?u*(1/0):u*n}},6206:e=>{e.exports=Math.log1p||function(e){return(e=+e)>-1e-8&&e<1e-8?e-e*e/2:Math.log(1+e)}},1801:e=>{e.exports=Math.sign||function(e){return 0==(e=+e)||e!=e?e:e<0?-1:1}},4728:(e,t,n)=>{var r=n(3953)("meta"),o=n(5286),i=n(9181),a=n(9275).f,s=0,l=Object.isExtensible||function(){return!0},u=!n(4253)((function(){return l(Object.preventExtensions({}))})),c=function(e){a(e,r,{value:{i:"O"+ ++s,w:{}}})},f=e.exports={KEY:r,NEED:!1,fastKey:function(e,t){if(!o(e))return"symbol"==typeof e?e:("string"==typeof e?"S":"P")+e;if(!i(e,r)){if(!l(e))return"F";if(!t)return"E";c(e)}return e[r].i},getWeak:function(e,t){if(!i(e,r)){if(!l(e))return!0;if(!t)return!1;c(e)}return e[r].w},onFreeze:function(e){return u&&f.NEED&&l(e)&&!i(e,r)&&c(e),e}}},4351:(e,t,n)=>{var r=n(3816),o=n(4193).set,i=r.MutationObserver||r.WebKitMutationObserver,a=r.process,s=r.Promise,l="process"==n(2032)(a);e.exports=function(){var e,t,n,u=function(){var r,o;for(l&&(r=a.domain)&&r.exit();e;){o=e.fn,e=e.next;try{o()}catch(r){throw e?n():t=void 0,r}}t=void 0,r&&r.enter()};if(l)n=function(){a.nextTick(u)};else if(!i||r.navigator&&r.navigator.standalone)if(s&&s.resolve){var c=s.resolve(void 0);n=function(){c.then(u)}}else n=function(){o.call(r,u)};else{var f=!0,p=document.createTextNode("");new i(u).observe(p,{characterData:!0}),n=function(){p.data=f=!f}}return function(r){var o={fn:r,next:void 0};t&&(t.next=o),e||(e=o,n()),t=o}}},3499:(e,t,n)=>{"use strict";var r=n(4963);function o(e){var t,n;this.promise=new e((function(e,r){if(void 0!==t||void 0!==n)throw TypeError("Bad Promise constructor");t=e,n=r})),this.resolve=r(t),this.reject=r(n)}e.exports.f=function(e){return new o(e)}},5345:(e,t,n)=>{"use strict";var r=n(7057),o=n(7184),i=n(4548),a=n(4682),s=n(508),l=n(9797),u=Object.assign;e.exports=!u||n(4253)((function(){var e={},t={},n=Symbol(),r="abcdefghijklmnopqrst";return e[n]=7,r.split("").forEach((function(e){t[e]=e})),7!=u({},e)[n]||Object.keys(u({},t)).join("")!=r}))?function(e,t){for(var n=s(e),u=arguments.length,c=1,f=i.f,p=a.f;u>c;)for(var d,h=l(arguments[c++]),m=f?o(h).concat(f(h)):o(h),v=m.length,y=0;v>y;)d=m[y++],r&&!p.call(h,d)||(n[d]=h[d]);return n}:u},2503:(e,t,n)=>{var r=n(7007),o=n(5588),i=n(4430),a=n(9335)("IE_PROTO"),s=function(){},l=function(){var e,t=n(2457)("iframe"),r=i.length;for(t.style.display="none",n(639).appendChild(t),t.src="javascript:",(e=t.contentWindow.document).open(),e.write("<script>document.F=Object<\/script>"),e.close(),l=e.F;r--;)delete l.prototype[i[r]];return l()};e.exports=Object.create||function(e,t){var n;return null!==e?(s.prototype=r(e),n=new s,s.prototype=null,n[a]=e):n=l(),void 0===t?n:o(n,t)}},9275:(e,t,n)=>{var r=n(7007),o=n(1734),i=n(1689),a=Object.defineProperty;t.f=n(7057)?Object.defineProperty:function(e,t,n){if(r(e),t=i(t,!0),r(n),o)try{return a(e,t,n)}catch(e){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(e[t]=n.value),e}},5588:(e,t,n)=>{var r=n(9275),o=n(7007),i=n(7184);e.exports=n(7057)?Object.defineProperties:function(e,t){o(e);for(var n,a=i(t),s=a.length,l=0;s>l;)r.f(e,n=a[l++],t[n]);return e}},8693:(e,t,n)=>{var r=n(4682),o=n(681),i=n(2110),a=n(1689),s=n(9181),l=n(1734),u=Object.getOwnPropertyDescriptor;t.f=n(7057)?u:function(e,t){if(e=i(e),t=a(t,!0),l)try{return u(e,t)}catch(e){}if(s(e,t))return o(!r.f.call(e,t),e[t])}},9327:(e,t,n)=>{var r=n(2110),o=n(616).f,i={}.toString,a="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];e.exports.f=function(e){return a&&"[object Window]"==i.call(e)?function(e){try{return o(e)}catch(e){return a.slice()}}(e):o(r(e))}},616:(e,t,n)=>{var r=n(189),o=n(4430).concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return r(e,o)}},4548:(e,t)=>{t.f=Object.getOwnPropertySymbols},468:(e,t,n)=>{var r=n(9181),o=n(508),i=n(9335)("IE_PROTO"),a=Object.prototype;e.exports=Object.getPrototypeOf||function(e){return e=o(e),r(e,i)?e[i]:"function"==typeof e.constructor&&e instanceof e.constructor?e.constructor.prototype:e instanceof Object?a:null}},189:(e,t,n)=>{var r=n(9181),o=n(2110),i=n(9315)(!1),a=n(9335)("IE_PROTO");e.exports=function(e,t){var n,s=o(e),l=0,u=[];for(n in s)n!=a&&r(s,n)&&u.push(n);for(;t.length>l;)r(s,n=t[l++])&&(~i(u,n)||u.push(n));return u}},7184:(e,t,n)=>{var r=n(189),o=n(4430);e.exports=Object.keys||function(e){return r(e,o)}},4682:(e,t)=>{t.f={}.propertyIsEnumerable},3160:(e,t,n)=>{var r=n(2985),o=n(5645),i=n(4253);e.exports=function(e,t){var n=(o.Object||{})[e]||Object[e],a={};a[e]=t(n),r(r.S+r.F*i((function(){n(1)})),"Object",a)}},1131:(e,t,n)=>{var r=n(7057),o=n(7184),i=n(2110),a=n(4682).f;e.exports=function(e){return function(t){for(var n,s=i(t),l=o(s),u=l.length,c=0,f=[];u>c;)n=l[c++],r&&!a.call(s,n)||f.push(e?[n,s[n]]:s[n]);return f}}},7643:(e,t,n)=>{var r=n(616),o=n(4548),i=n(7007),a=n(3816).Reflect;e.exports=a&&a.ownKeys||function(e){var t=r.f(i(e)),n=o.f;return n?t.concat(n(e)):t}},7743:(e,t,n)=>{var r=n(3816).parseFloat,o=n(9599).trim;e.exports=1/r(n(4644)+"-0")!=-1/0?function(e){var t=o(String(e),3),n=r(t);return 0===n&&"-"==t.charAt(0)?-0:n}:r},5960:(e,t,n)=>{var r=n(3816).parseInt,o=n(9599).trim,i=n(4644),a=/^[-+]?0[xX]/;e.exports=8!==r(i+"08")||22!==r(i+"0x16")?function(e,t){var n=o(String(e),3);return r(n,t>>>0||(a.test(n)?16:10))}:r},188:e=>{e.exports=function(e){try{return{e:!1,v:e()}}catch(e){return{e:!0,v:e}}}},94:(e,t,n)=>{var r=n(7007),o=n(5286),i=n(3499);e.exports=function(e,t){if(r(e),o(t)&&t.constructor===e)return t;var n=i.f(e);return(0,n.resolve)(t),n.promise}},681:e=>{e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},4408:(e,t,n)=>{var r=n(7234);e.exports=function(e,t,n){for(var o in t)r(e,o,t[o],n);return e}},7234:(e,t,n)=>{var r=n(3816),o=n(7728),i=n(9181),a=n(3953)("src"),s=n(18),l="toString",u=(""+s).split(l);n(5645).inspectSource=function(e){return s.call(e)},(e.exports=function(e,t,n,s){var l="function"==typeof n;l&&(i(n,"name")||o(n,"name",t)),e[t]!==n&&(l&&(i(n,a)||o(n,a,e[t]?""+e[t]:u.join(String(t)))),e===r?e[t]=n:s?e[t]?e[t]=n:o(e,t,n):(delete e[t],o(e,t,n)))})(Function.prototype,l,(function(){return"function"==typeof this&&this[a]||s.call(this)}))},7787:(e,t,n)=>{"use strict";var r=n(1488),o=RegExp.prototype.exec;e.exports=function(e,t){var n=e.exec;if("function"==typeof n){var i=n.call(e,t);if("object"!=typeof i)throw new TypeError("RegExp exec method returned something other than an Object or null");return i}if("RegExp"!==r(e))throw new TypeError("RegExp#exec called on incompatible receiver");return o.call(e,t)}},1165:(e,t,n)=>{"use strict";var r,o,i=n(3218),a=RegExp.prototype.exec,s=String.prototype.replace,l=a,u=(r=/a/,o=/b*/g,a.call(r,"a"),a.call(o,"a"),0!==r.lastIndex||0!==o.lastIndex),c=void 0!==/()??/.exec("")[1];(u||c)&&(l=function(e){var t,n,r,o,l=this;return c&&(n=new RegExp("^"+l.source+"$(?!\\s)",i.call(l))),u&&(t=l.lastIndex),r=a.call(l,e),u&&r&&(l.lastIndex=l.global?r.index+r[0].length:t),c&&r&&r.length>1&&s.call(r[0],n,(function(){for(o=1;o<arguments.length-2;o++)void 0===arguments[o]&&(r[o]=void 0)})),r}),e.exports=l},7195:e=>{e.exports=Object.is||function(e,t){return e===t?0!==e||1/e==1/t:e!=e&&t!=t}},7375:(e,t,n)=>{var r=n(5286),o=n(7007),i=function(e,t){if(o(e),!r(t)&&null!==t)throw TypeError(t+": can't set as prototype!")};e.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(e,t,r){try{(r=n(741)(Function.call,n(8693).f(Object.prototype,"__proto__").set,2))(e,[]),t=!(e instanceof Array)}catch(e){t=!0}return function(e,n){return i(e,n),t?e.__proto__=n:r(e,n),e}}({},!1):void 0),check:i}},2974:(e,t,n)=>{"use strict";var r=n(3816),o=n(9275),i=n(7057),a=n(6314)("species");e.exports=function(e){var t=r[e];i&&t&&!t[a]&&o.f(t,a,{configurable:!0,get:function(){return this}})}},2943:(e,t,n)=>{var r=n(9275).f,o=n(9181),i=n(6314)("toStringTag");e.exports=function(e,t,n){e&&!o(e=n?e:e.prototype,i)&&r(e,i,{configurable:!0,value:t})}},9335:(e,t,n)=>{var r=n(3825)("keys"),o=n(3953);e.exports=function(e){return r[e]||(r[e]=o(e))}},3825:(e,t,n)=>{var r=n(5645),o=n(3816),i="__core-js_shared__",a=o[i]||(o[i]={});(e.exports=function(e,t){return a[e]||(a[e]=void 0!==t?t:{})})("versions",[]).push({version:r.version,mode:n(4461)?"pure":"global",copyright:"© 2020 Denis Pushkarev (zloirock.ru)"})},8364:(e,t,n)=>{var r=n(7007),o=n(4963),i=n(6314)("species");e.exports=function(e,t){var n,a=r(e).constructor;return void 0===a||null==(n=r(a)[i])?t:o(n)}},7717:(e,t,n)=>{"use strict";var r=n(4253);e.exports=function(e,t){return!!e&&r((function(){t?e.call(null,(function(){}),1):e.call(null)}))}},4496:(e,t,n)=>{var r=n(1467),o=n(1355);e.exports=function(e){return function(t,n){var i,a,s=String(o(t)),l=r(n),u=s.length;return l<0||l>=u?e?"":void 0:(i=s.charCodeAt(l))<55296||i>56319||l+1===u||(a=s.charCodeAt(l+1))<56320||a>57343?e?s.charAt(l):i:e?s.slice(l,l+2):a-56320+(i-55296<<10)+65536}}},2094:(e,t,n)=>{var r=n(5364),o=n(1355);e.exports=function(e,t,n){if(r(t))throw TypeError("String#"+n+" doesn't accept regex!");return String(o(e))}},9395:(e,t,n)=>{var r=n(2985),o=n(4253),i=n(1355),a=/"/g,s=function(e,t,n,r){var o=String(i(e)),s="<"+t;return""!==n&&(s+=" "+n+'="'+String(r).replace(a,""")+'"'),s+">"+o+"</"+t+">"};e.exports=function(e,t){var n={};n[e]=t(s),r(r.P+r.F*o((function(){var t=""[e]('"');return t!==t.toLowerCase()||t.split('"').length>3})),"String",n)}},5442:(e,t,n)=>{var r=n(875),o=n(8595),i=n(1355);e.exports=function(e,t,n,a){var s=String(i(e)),l=s.length,u=void 0===n?" ":String(n),c=r(t);if(c<=l||""==u)return s;var f=c-l,p=o.call(u,Math.ceil(f/u.length));return p.length>f&&(p=p.slice(0,f)),a?p+s:s+p}},8595:(e,t,n)=>{"use strict";var r=n(1467),o=n(1355);e.exports=function(e){var t=String(o(this)),n="",i=r(e);if(i<0||i==1/0)throw RangeError("Count can't be negative");for(;i>0;(i>>>=1)&&(t+=t))1&i&&(n+=t);return n}},9599:(e,t,n)=>{var r=n(2985),o=n(1355),i=n(4253),a=n(4644),s="["+a+"]",l=RegExp("^"+s+s+"*"),u=RegExp(s+s+"*$"),c=function(e,t,n){var o={},s=i((function(){return!!a[e]()||"
"!="
"[e]()})),l=o[e]=s?t(f):a[e];n&&(o[n]=l),r(r.P+r.F*s,"String",o)},f=c.trim=function(e,t){return e=String(o(e)),1&t&&(e=e.replace(l,"")),2&t&&(e=e.replace(u,"")),e};e.exports=c},4644:e=>{e.exports="\t\n\v\f\r \u2028\u2029\ufeff"},4193:(e,t,n)=>{var r,o,i,a=n(741),s=n(7242),l=n(639),u=n(2457),c=n(3816),f=c.process,p=c.setImmediate,d=c.clearImmediate,h=c.MessageChannel,m=c.Dispatch,v=0,y={},g=function(){var e=+this;if(y.hasOwnProperty(e)){var t=y[e];delete y[e],t()}},b=function(e){g.call(e.data)};p&&d||(p=function(e){for(var t=[],n=1;arguments.length>n;)t.push(arguments[n++]);return y[++v]=function(){s("function"==typeof e?e:Function(e),t)},r(v),v},d=function(e){delete y[e]},"process"==n(2032)(f)?r=function(e){f.nextTick(a(g,e,1))}:m&&m.now?r=function(e){m.now(a(g,e,1))}:h?(i=(o=new h).port2,o.port1.onmessage=b,r=a(i.postMessage,i,1)):c.addEventListener&&"function"==typeof postMessage&&!c.importScripts?(r=function(e){c.postMessage(e+"","*")},c.addEventListener("message",b,!1)):r="onreadystatechange"in u("script")?function(e){l.appendChild(u("script")).onreadystatechange=function(){l.removeChild(this),g.call(e)}}:function(e){setTimeout(a(g,e,1),0)}),e.exports={set:p,clear:d}},2337:(e,t,n)=>{var r=n(1467),o=Math.max,i=Math.min;e.exports=function(e,t){return(e=r(e))<0?o(e+t,0):i(e,t)}},4843:(e,t,n)=>{var r=n(1467),o=n(875);e.exports=function(e){if(void 0===e)return 0;var t=r(e),n=o(t);if(t!==n)throw RangeError("Wrong length!");return n}},1467:e=>{var t=Math.ceil,n=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?n:t)(e)}},2110:(e,t,n)=>{var r=n(9797),o=n(1355);e.exports=function(e){return r(o(e))}},875:(e,t,n)=>{var r=n(1467),o=Math.min;e.exports=function(e){return e>0?o(r(e),9007199254740991):0}},508:(e,t,n)=>{var r=n(1355);e.exports=function(e){return Object(r(e))}},1689:(e,t,n)=>{var r=n(5286);e.exports=function(e,t){if(!r(e))return e;var n,o;if(t&&"function"==typeof(n=e.toString)&&!r(o=n.call(e)))return o;if("function"==typeof(n=e.valueOf)&&!r(o=n.call(e)))return o;if(!t&&"function"==typeof(n=e.toString)&&!r(o=n.call(e)))return o;throw TypeError("Can't convert object to primitive value")}},8440:(e,t,n)=>{"use strict";if(n(7057)){var r=n(4461),o=n(3816),i=n(4253),a=n(2985),s=n(9383),l=n(1125),u=n(741),c=n(3328),f=n(681),p=n(7728),d=n(4408),h=n(1467),m=n(875),v=n(4843),y=n(2337),g=n(1689),b=n(9181),w=n(1488),x=n(5286),E=n(508),S=n(6555),_=n(2503),k=n(468),O=n(616).f,j=n(9002),L=n(3953),C=n(6314),P=n(50),A=n(9315),T=n(8364),I=n(6997),N=n(2803),F=n(7462),R=n(2974),M=n(6852),D=n(5216),z=n(9275),U=n(8693),V=z.f,G=U.f,B=o.RangeError,W=o.TypeError,H=o.Uint8Array,$="ArrayBuffer",Y="SharedArrayBuffer",q="BYTES_PER_ELEMENT",Q=Array.prototype,X=l.ArrayBuffer,K=l.DataView,J=P(0),Z=P(2),ee=P(3),te=P(4),ne=P(5),re=P(6),oe=A(!0),ie=A(!1),ae=I.values,se=I.keys,le=I.entries,ue=Q.lastIndexOf,ce=Q.reduce,fe=Q.reduceRight,pe=Q.join,de=Q.sort,he=Q.slice,me=Q.toString,ve=Q.toLocaleString,ye=C("iterator"),ge=C("toStringTag"),be=L("typed_constructor"),we=L("def_constructor"),xe=s.CONSTR,Ee=s.TYPED,Se=s.VIEW,_e="Wrong length!",ke=P(1,(function(e,t){return Pe(T(e,e[we]),t)})),Oe=i((function(){return 1===new H(new Uint16Array([1]).buffer)[0]})),je=!!H&&!!H.prototype.set&&i((function(){new H(1).set({})})),Le=function(e,t){var n=h(e);if(n<0||n%t)throw B("Wrong offset!");return n},Ce=function(e){if(x(e)&&Ee in e)return e;throw W(e+" is not a typed array!")},Pe=function(e,t){if(!x(e)||!(be in e))throw W("It is not a typed array constructor!");return new e(t)},Ae=function(e,t){return Te(T(e,e[we]),t)},Te=function(e,t){for(var n=0,r=t.length,o=Pe(e,r);r>n;)o[n]=t[n++];return o},Ie=function(e,t,n){V(e,t,{get:function(){return this._d[n]}})},Ne=function(e){var t,n,r,o,i,a,s=E(e),l=arguments.length,c=l>1?arguments[1]:void 0,f=void 0!==c,p=j(s);if(null!=p&&!S(p)){for(a=p.call(s),r=[],t=0;!(i=a.next()).done;t++)r.push(i.value);s=r}for(f&&l>2&&(c=u(c,arguments[2],2)),t=0,n=m(s.length),o=Pe(this,n);n>t;t++)o[t]=f?c(s[t],t):s[t];return o},Fe=function(){for(var e=0,t=arguments.length,n=Pe(this,t);t>e;)n[e]=arguments[e++];return n},Re=!!H&&i((function(){ve.call(new H(1))})),Me=function(){return ve.apply(Re?he.call(Ce(this)):Ce(this),arguments)},De={copyWithin:function(e,t){return D.call(Ce(this),e,t,arguments.length>2?arguments[2]:void 0)},every:function(e){return te(Ce(this),e,arguments.length>1?arguments[1]:void 0)},fill:function(e){return M.apply(Ce(this),arguments)},filter:function(e){return Ae(this,Z(Ce(this),e,arguments.length>1?arguments[1]:void 0))},find:function(e){return ne(Ce(this),e,arguments.length>1?arguments[1]:void 0)},findIndex:function(e){return re(Ce(this),e,arguments.length>1?arguments[1]:void 0)},forEach:function(e){J(Ce(this),e,arguments.length>1?arguments[1]:void 0)},indexOf:function(e){return ie(Ce(this),e,arguments.length>1?arguments[1]:void 0)},includes:function(e){return oe(Ce(this),e,arguments.length>1?arguments[1]:void 0)},join:function(e){return pe.apply(Ce(this),arguments)},lastIndexOf:function(e){return ue.apply(Ce(this),arguments)},map:function(e){return ke(Ce(this),e,arguments.length>1?arguments[1]:void 0)},reduce:function(e){return ce.apply(Ce(this),arguments)},reduceRight:function(e){return fe.apply(Ce(this),arguments)},reverse:function(){for(var e,t=this,n=Ce(t).length,r=Math.floor(n/2),o=0;o<r;)e=t[o],t[o++]=t[--n],t[n]=e;return t},some:function(e){return ee(Ce(this),e,arguments.length>1?arguments[1]:void 0)},sort:function(e){return de.call(Ce(this),e)},subarray:function(e,t){var n=Ce(this),r=n.length,o=y(e,r);return new(T(n,n[we]))(n.buffer,n.byteOffset+o*n.BYTES_PER_ELEMENT,m((void 0===t?r:y(t,r))-o))}},ze=function(e,t){return Ae(this,he.call(Ce(this),e,t))},Ue=function(e){Ce(this);var t=Le(arguments[1],1),n=this.length,r=E(e),o=m(r.length),i=0;if(o+t>n)throw B(_e);for(;i<o;)this[t+i]=r[i++]},Ve={entries:function(){return le.call(Ce(this))},keys:function(){return se.call(Ce(this))},values:function(){return ae.call(Ce(this))}},Ge=function(e,t){return x(e)&&e[Ee]&&"symbol"!=typeof t&&t in e&&String(+t)==String(t)},Be=function(e,t){return Ge(e,t=g(t,!0))?f(2,e[t]):G(e,t)},We=function(e,t,n){return!(Ge(e,t=g(t,!0))&&x(n)&&b(n,"value"))||b(n,"get")||b(n,"set")||n.configurable||b(n,"writable")&&!n.writable||b(n,"enumerable")&&!n.enumerable?V(e,t,n):(e[t]=n.value,e)};xe||(U.f=Be,z.f=We),a(a.S+a.F*!xe,"Object",{getOwnPropertyDescriptor:Be,defineProperty:We}),i((function(){me.call({})}))&&(me=ve=function(){return pe.call(this)});var He=d({},De);d(He,Ve),p(He,ye,Ve.values),d(He,{slice:ze,set:Ue,constructor:function(){},toString:me,toLocaleString:Me}),Ie(He,"buffer","b"),Ie(He,"byteOffset","o"),Ie(He,"byteLength","l"),Ie(He,"length","e"),V(He,ge,{get:function(){return this[Ee]}}),e.exports=function(e,t,n,l){var u=e+((l=!!l)?"Clamped":"")+"Array",f="get"+e,d="set"+e,h=o[u],y=h||{},g=h&&k(h),b=!h||!s.ABV,E={},S=h&&h.prototype,j=function(e,n){V(e,n,{get:function(){return function(e,n){var r=e._d;return r.v[f](n*t+r.o,Oe)}(this,n)},set:function(e){return function(e,n,r){var o=e._d;l&&(r=(r=Math.round(r))<0?0:r>255?255:255&r),o.v[d](n*t+o.o,r,Oe)}(this,n,e)},enumerable:!0})};b?(h=n((function(e,n,r,o){c(e,h,u,"_d");var i,a,s,l,f=0,d=0;if(x(n)){if(!(n instanceof X||(l=w(n))==$||l==Y))return Ee in n?Te(h,n):Ne.call(h,n);i=n,d=Le(r,t);var y=n.byteLength;if(void 0===o){if(y%t)throw B(_e);if((a=y-d)<0)throw B(_e)}else if((a=m(o)*t)+d>y)throw B(_e);s=a/t}else s=v(n),i=new X(a=s*t);for(p(e,"_d",{b:i,o:d,l:a,e:s,v:new K(i)});f<s;)j(e,f++)})),S=h.prototype=_(He),p(S,"constructor",h)):i((function(){h(1)}))&&i((function(){new h(-1)}))&&F((function(e){new h,new h(null),new h(1.5),new h(e)}),!0)||(h=n((function(e,n,r,o){var i;return c(e,h,u),x(n)?n instanceof X||(i=w(n))==$||i==Y?void 0!==o?new y(n,Le(r,t),o):void 0!==r?new y(n,Le(r,t)):new y(n):Ee in n?Te(h,n):Ne.call(h,n):new y(v(n))})),J(g!==Function.prototype?O(y).concat(O(g)):O(y),(function(e){e in h||p(h,e,y[e])})),h.prototype=S,r||(S.constructor=h));var L=S[ye],C=!!L&&("values"==L.name||null==L.name),P=Ve.values;p(h,be,!0),p(S,Ee,u),p(S,Se,!0),p(S,we,h),(l?new h(1)[ge]==u:ge in S)||V(S,ge,{get:function(){return u}}),E[u]=h,a(a.G+a.W+a.F*(h!=y),E),a(a.S,u,{BYTES_PER_ELEMENT:t}),a(a.S+a.F*i((function(){y.of.call(h,1)})),u,{from:Ne,of:Fe}),q in S||p(S,q,t),a(a.P,u,De),R(u),a(a.P+a.F*je,u,{set:Ue}),a(a.P+a.F*!C,u,Ve),r||S.toString==me||(S.toString=me),a(a.P+a.F*i((function(){new h(1).slice()})),u,{slice:ze}),a(a.P+a.F*(i((function(){return[1,2].toLocaleString()!=new h([1,2]).toLocaleString()}))||!i((function(){S.toLocaleString.call([1,2])}))),u,{toLocaleString:Me}),N[u]=C?L:P,r||C||p(S,ye,P)}}else e.exports=function(){}},1125:(e,t,n)=>{"use strict";var r=n(3816),o=n(7057),i=n(4461),a=n(9383),s=n(7728),l=n(4408),u=n(4253),c=n(3328),f=n(1467),p=n(875),d=n(4843),h=n(616).f,m=n(9275).f,v=n(6852),y=n(2943),g="ArrayBuffer",b="DataView",w="Wrong index!",x=r.ArrayBuffer,E=r.DataView,S=r.Math,_=r.RangeError,k=r.Infinity,O=x,j=S.abs,L=S.pow,C=S.floor,P=S.log,A=S.LN2,T="buffer",I="byteLength",N="byteOffset",F=o?"_b":T,R=o?"_l":I,M=o?"_o":N;function D(e,t,n){var r,o,i,a=new Array(n),s=8*n-t-1,l=(1<<s)-1,u=l>>1,c=23===t?L(2,-24)-L(2,-77):0,f=0,p=e<0||0===e&&1/e<0?1:0;for((e=j(e))!=e||e===k?(o=e!=e?1:0,r=l):(r=C(P(e)/A),e*(i=L(2,-r))<1&&(r--,i*=2),(e+=r+u>=1?c/i:c*L(2,1-u))*i>=2&&(r++,i/=2),r+u>=l?(o=0,r=l):r+u>=1?(o=(e*i-1)*L(2,t),r+=u):(o=e*L(2,u-1)*L(2,t),r=0));t>=8;a[f++]=255&o,o/=256,t-=8);for(r=r<<t|o,s+=t;s>0;a[f++]=255&r,r/=256,s-=8);return a[--f]|=128*p,a}function z(e,t,n){var r,o=8*n-t-1,i=(1<<o)-1,a=i>>1,s=o-7,l=n-1,u=e[l--],c=127&u;for(u>>=7;s>0;c=256*c+e[l],l--,s-=8);for(r=c&(1<<-s)-1,c>>=-s,s+=t;s>0;r=256*r+e[l],l--,s-=8);if(0===c)c=1-a;else{if(c===i)return r?NaN:u?-k:k;r+=L(2,t),c-=a}return(u?-1:1)*r*L(2,c-t)}function U(e){return e[3]<<24|e[2]<<16|e[1]<<8|e[0]}function V(e){return[255&e]}function G(e){return[255&e,e>>8&255]}function B(e){return[255&e,e>>8&255,e>>16&255,e>>24&255]}function W(e){return D(e,52,8)}function H(e){return D(e,23,4)}function $(e,t,n){m(e.prototype,t,{get:function(){return this[n]}})}function Y(e,t,n,r){var o=d(+n);if(o+t>e[R])throw _(w);var i=e[F]._b,a=o+e[M],s=i.slice(a,a+t);return r?s:s.reverse()}function q(e,t,n,r,o,i){var a=d(+n);if(a+t>e[R])throw _(w);for(var s=e[F]._b,l=a+e[M],u=r(+o),c=0;c<t;c++)s[l+c]=u[i?c:t-c-1]}if(a.ABV){if(!u((function(){x(1)}))||!u((function(){new x(-1)}))||u((function(){return new x,new x(1.5),new x(NaN),x.name!=g}))){for(var Q,X=(x=function(e){return c(this,x),new O(d(e))}).prototype=O.prototype,K=h(O),J=0;K.length>J;)(Q=K[J++])in x||s(x,Q,O[Q]);i||(X.constructor=x)}var Z=new E(new x(2)),ee=E.prototype.setInt8;Z.setInt8(0,2147483648),Z.setInt8(1,2147483649),!Z.getInt8(0)&&Z.getInt8(1)||l(E.prototype,{setInt8:function(e,t){ee.call(this,e,t<<24>>24)},setUint8:function(e,t){ee.call(this,e,t<<24>>24)}},!0)}else x=function(e){c(this,x,g);var t=d(e);this._b=v.call(new Array(t),0),this[R]=t},E=function(e,t,n){c(this,E,b),c(e,x,b);var r=e[R],o=f(t);if(o<0||o>r)throw _("Wrong offset!");if(o+(n=void 0===n?r-o:p(n))>r)throw _("Wrong length!");this[F]=e,this[M]=o,this[R]=n},o&&($(x,I,"_l"),$(E,T,"_b"),$(E,I,"_l"),$(E,N,"_o")),l(E.prototype,{getInt8:function(e){return Y(this,1,e)[0]<<24>>24},getUint8:function(e){return Y(this,1,e)[0]},getInt16:function(e){var t=Y(this,2,e,arguments[1]);return(t[1]<<8|t[0])<<16>>16},getUint16:function(e){var t=Y(this,2,e,arguments[1]);return t[1]<<8|t[0]},getInt32:function(e){return U(Y(this,4,e,arguments[1]))},getUint32:function(e){return U(Y(this,4,e,arguments[1]))>>>0},getFloat32:function(e){return z(Y(this,4,e,arguments[1]),23,4)},getFloat64:function(e){return z(Y(this,8,e,arguments[1]),52,8)},setInt8:function(e,t){q(this,1,e,V,t)},setUint8:function(e,t){q(this,1,e,V,t)},setInt16:function(e,t){q(this,2,e,G,t,arguments[2])},setUint16:function(e,t){q(this,2,e,G,t,arguments[2])},setInt32:function(e,t){q(this,4,e,B,t,arguments[2])},setUint32:function(e,t){q(this,4,e,B,t,arguments[2])},setFloat32:function(e,t){q(this,4,e,H,t,arguments[2])},setFloat64:function(e,t){q(this,8,e,W,t,arguments[2])}});y(x,g),y(E,b),s(E.prototype,a.VIEW,!0),t.ArrayBuffer=x,t.DataView=E},9383:(e,t,n)=>{for(var r,o=n(3816),i=n(7728),a=n(3953),s=a("typed_array"),l=a("view"),u=!(!o.ArrayBuffer||!o.DataView),c=u,f=0,p="Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array".split(",");f<9;)(r=o[p[f++]])?(i(r.prototype,s,!0),i(r.prototype,l,!0)):c=!1;e.exports={ABV:u,CONSTR:c,TYPED:s,VIEW:l}},3953:e=>{var t=0,n=Math.random();e.exports=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++t+n).toString(36))}},575:(e,t,n)=>{var r=n(3816).navigator;e.exports=r&&r.userAgent||""},1616:(e,t,n)=>{var r=n(5286);e.exports=function(e,t){if(!r(e)||e._t!==t)throw TypeError("Incompatible receiver, "+t+" required!");return e}},6074:(e,t,n)=>{var r=n(3816),o=n(5645),i=n(4461),a=n(8787),s=n(9275).f;e.exports=function(e){var t=o.Symbol||(o.Symbol=i?{}:r.Symbol||{});"_"==e.charAt(0)||e in t||s(t,e,{value:a.f(e)})}},8787:(e,t,n)=>{t.f=n(6314)},6314:(e,t,n)=>{var r=n(3825)("wks"),o=n(3953),i=n(3816).Symbol,a="function"==typeof i;(e.exports=function(e){return r[e]||(r[e]=a&&i[e]||(a?i:o)("Symbol."+e))}).store=r},9002:(e,t,n)=>{var r=n(1488),o=n(6314)("iterator"),i=n(2803);e.exports=n(5645).getIteratorMethod=function(e){if(null!=e)return e[o]||e["@@iterator"]||i[r(e)]}},2e3:(e,t,n)=>{var r=n(2985);r(r.P,"Array",{copyWithin:n(5216)}),n(7722)("copyWithin")},5745:(e,t,n)=>{"use strict";var r=n(2985),o=n(50)(4);r(r.P+r.F*!n(7717)([].every,!0),"Array",{every:function(e){return o(this,e,arguments[1])}})},8977:(e,t,n)=>{var r=n(2985);r(r.P,"Array",{fill:n(6852)}),n(7722)("fill")},8837:(e,t,n)=>{"use strict";var r=n(2985),o=n(50)(2);r(r.P+r.F*!n(7717)([].filter,!0),"Array",{filter:function(e){return o(this,e,arguments[1])}})},4899:(e,t,n)=>{"use strict";var r=n(2985),o=n(50)(6),i="findIndex",a=!0;i in[]&&Array(1)[i]((function(){a=!1})),r(r.P+r.F*a,"Array",{findIndex:function(e){return o(this,e,arguments.length>1?arguments[1]:void 0)}}),n(7722)(i)},2310:(e,t,n)=>{"use strict";var r=n(2985),o=n(50)(5),i="find",a=!0;i in[]&&Array(1).find((function(){a=!1})),r(r.P+r.F*a,"Array",{find:function(e){return o(this,e,arguments.length>1?arguments[1]:void 0)}}),n(7722)(i)},4336:(e,t,n)=>{"use strict";var r=n(2985),o=n(50)(0),i=n(7717)([].forEach,!0);r(r.P+r.F*!i,"Array",{forEach:function(e){return o(this,e,arguments[1])}})},522:(e,t,n)=>{"use strict";var r=n(741),o=n(2985),i=n(508),a=n(8851),s=n(6555),l=n(875),u=n(2811),c=n(9002);o(o.S+o.F*!n(7462)((function(e){Array.from(e)})),"Array",{from:function(e){var t,n,o,f,p=i(e),d="function"==typeof this?this:Array,h=arguments.length,m=h>1?arguments[1]:void 0,v=void 0!==m,y=0,g=c(p);if(v&&(m=r(m,h>2?arguments[2]:void 0,2)),null==g||d==Array&&s(g))for(n=new d(t=l(p.length));t>y;y++)u(n,y,v?m(p[y],y):p[y]);else for(f=g.call(p),n=new d;!(o=f.next()).done;y++)u(n,y,v?a(f,m,[o.value,y],!0):o.value);return n.length=y,n}})},3369:(e,t,n)=>{"use strict";var r=n(2985),o=n(9315)(!1),i=[].indexOf,a=!!i&&1/[1].indexOf(1,-0)<0;r(r.P+r.F*(a||!n(7717)(i)),"Array",{indexOf:function(e){return a?i.apply(this,arguments)||0:o(this,e,arguments[1])}})},774:(e,t,n)=>{var r=n(2985);r(r.S,"Array",{isArray:n(4302)})},6997:(e,t,n)=>{"use strict";var r=n(7722),o=n(5436),i=n(2803),a=n(2110);e.exports=n(2923)(Array,"Array",(function(e,t){this._t=a(e),this._i=0,this._k=t}),(function(){var e=this._t,t=this._k,n=this._i++;return!e||n>=e.length?(this._t=void 0,o(1)):o(0,"keys"==t?n:"values"==t?e[n]:[n,e[n]])}),"values"),i.Arguments=i.Array,r("keys"),r("values"),r("entries")},7842:(e,t,n)=>{"use strict";var r=n(2985),o=n(2110),i=[].join;r(r.P+r.F*(n(9797)!=Object||!n(7717)(i)),"Array",{join:function(e){return i.call(o(this),void 0===e?",":e)}})},9564:(e,t,n)=>{"use strict";var r=n(2985),o=n(2110),i=n(1467),a=n(875),s=[].lastIndexOf,l=!!s&&1/[1].lastIndexOf(1,-0)<0;r(r.P+r.F*(l||!n(7717)(s)),"Array",{lastIndexOf:function(e){if(l)return s.apply(this,arguments)||0;var t=o(this),n=a(t.length),r=n-1;for(arguments.length>1&&(r=Math.min(r,i(arguments[1]))),r<0&&(r=n+r);r>=0;r--)if(r in t&&t[r]===e)return r||0;return-1}})},1802:(e,t,n)=>{"use strict";var r=n(2985),o=n(50)(1);r(r.P+r.F*!n(7717)([].map,!0),"Array",{map:function(e){return o(this,e,arguments[1])}})},8295:(e,t,n)=>{"use strict";var r=n(2985),o=n(2811);r(r.S+r.F*n(4253)((function(){function e(){}return!(Array.of.call(e)instanceof e)})),"Array",{of:function(){for(var e=0,t=arguments.length,n=new("function"==typeof this?this:Array)(t);t>e;)o(n,e,arguments[e++]);return n.length=t,n}})},3750:(e,t,n)=>{"use strict";var r=n(2985),o=n(7628);r(r.P+r.F*!n(7717)([].reduceRight,!0),"Array",{reduceRight:function(e){return o(this,e,arguments.length,arguments[1],!0)}})},3057:(e,t,n)=>{"use strict";var r=n(2985),o=n(7628);r(r.P+r.F*!n(7717)([].reduce,!0),"Array",{reduce:function(e){return o(this,e,arguments.length,arguments[1],!1)}})},110:(e,t,n)=>{"use strict";var r=n(2985),o=n(639),i=n(2032),a=n(2337),s=n(875),l=[].slice;r(r.P+r.F*n(4253)((function(){o&&l.call(o)})),"Array",{slice:function(e,t){var n=s(this.length),r=i(this);if(t=void 0===t?n:t,"Array"==r)return l.call(this,e,t);for(var o=a(e,n),u=a(t,n),c=s(u-o),f=new Array(c),p=0;p<c;p++)f[p]="String"==r?this.charAt(o+p):this[o+p];return f}})},6773:(e,t,n)=>{"use strict";var r=n(2985),o=n(50)(3);r(r.P+r.F*!n(7717)([].some,!0),"Array",{some:function(e){return o(this,e,arguments[1])}})},75:(e,t,n)=>{"use strict";var r=n(2985),o=n(4963),i=n(508),a=n(4253),s=[].sort,l=[1,2,3];r(r.P+r.F*(a((function(){l.sort(void 0)}))||!a((function(){l.sort(null)}))||!n(7717)(s)),"Array",{sort:function(e){return void 0===e?s.call(i(this)):s.call(i(this),o(e))}})},1842:(e,t,n)=>{n(2974)("Array")},1822:(e,t,n)=>{var r=n(2985);r(r.S,"Date",{now:function(){return(new Date).getTime()}})},1031:(e,t,n)=>{var r=n(2985),o=n(3537);r(r.P+r.F*(Date.prototype.toISOString!==o),"Date",{toISOString:o})},9977:(e,t,n)=>{"use strict";var r=n(2985),o=n(508),i=n(1689);r(r.P+r.F*n(4253)((function(){return null!==new Date(NaN).toJSON()||1!==Date.prototype.toJSON.call({toISOString:function(){return 1}})})),"Date",{toJSON:function(e){var t=o(this),n=i(t);return"number"!=typeof n||isFinite(n)?t.toISOString():null}})},1560:(e,t,n)=>{var r=n(6314)("toPrimitive"),o=Date.prototype;r in o||n(7728)(o,r,n(870))},6331:(e,t,n)=>{var r=Date.prototype,o="Invalid Date",i=r.toString,a=r.getTime;new Date(NaN)+""!=o&&n(7234)(r,"toString",(function(){var e=a.call(this);return e==e?i.call(this):o}))},9730:(e,t,n)=>{var r=n(2985);r(r.P,"Function",{bind:n(4398)})},8377:(e,t,n)=>{"use strict";var r=n(5286),o=n(468),i=n(6314)("hasInstance"),a=Function.prototype;i in a||n(9275).f(a,i,{value:function(e){if("function"!=typeof this||!r(e))return!1;if(!r(this.prototype))return e instanceof this;for(;e=o(e);)if(this.prototype===e)return!0;return!1}})},6059:(e,t,n)=>{var r=n(9275).f,o=Function.prototype,i=/^\s*function ([^ (]*)/,a="name";a in o||n(7057)&&r(o,a,{configurable:!0,get:function(){try{return(""+this).match(i)[1]}catch(e){return""}}})},8416:(e,t,n)=>{"use strict";var r=n(9824),o=n(1616),i="Map";e.exports=n(5795)(i,(function(e){return function(){return e(this,arguments.length>0?arguments[0]:void 0)}}),{get:function(e){var t=r.getEntry(o(this,i),e);return t&&t.v},set:function(e,t){return r.def(o(this,i),0===e?0:e,t)}},r,!0)},6503:(e,t,n)=>{var r=n(2985),o=n(6206),i=Math.sqrt,a=Math.acosh;r(r.S+r.F*!(a&&710==Math.floor(a(Number.MAX_VALUE))&&a(1/0)==1/0),"Math",{acosh:function(e){return(e=+e)<1?NaN:e>94906265.62425156?Math.log(e)+Math.LN2:o(e-1+i(e-1)*i(e+1))}})},6786:(e,t,n)=>{var r=n(2985),o=Math.asinh;r(r.S+r.F*!(o&&1/o(0)>0),"Math",{asinh:function e(t){return isFinite(t=+t)&&0!=t?t<0?-e(-t):Math.log(t+Math.sqrt(t*t+1)):t}})},932:(e,t,n)=>{var r=n(2985),o=Math.atanh;r(r.S+r.F*!(o&&1/o(-0)<0),"Math",{atanh:function(e){return 0==(e=+e)?e:Math.log((1+e)/(1-e))/2}})},7526:(e,t,n)=>{var r=n(2985),o=n(1801);r(r.S,"Math",{cbrt:function(e){return o(e=+e)*Math.pow(Math.abs(e),1/3)}})},1591:(e,t,n)=>{var r=n(2985);r(r.S,"Math",{clz32:function(e){return(e>>>=0)?31-Math.floor(Math.log(e+.5)*Math.LOG2E):32}})},9073:(e,t,n)=>{var r=n(2985),o=Math.exp;r(r.S,"Math",{cosh:function(e){return(o(e=+e)+o(-e))/2}})},347:(e,t,n)=>{var r=n(2985),o=n(3086);r(r.S+r.F*(o!=Math.expm1),"Math",{expm1:o})},579:(e,t,n)=>{var r=n(2985);r(r.S,"Math",{fround:n(4934)})},4669:(e,t,n)=>{var r=n(2985),o=Math.abs;r(r.S,"Math",{hypot:function(e,t){for(var n,r,i=0,a=0,s=arguments.length,l=0;a<s;)l<(n=o(arguments[a++]))?(i=i*(r=l/n)*r+1,l=n):i+=n>0?(r=n/l)*r:n;return l===1/0?1/0:l*Math.sqrt(i)}})},7710:(e,t,n)=>{var r=n(2985),o=Math.imul;r(r.S+r.F*n(4253)((function(){return-5!=o(4294967295,5)||2!=o.length})),"Math",{imul:function(e,t){var n=65535,r=+e,o=+t,i=n&r,a=n&o;return 0|i*a+((n&r>>>16)*a+i*(n&o>>>16)<<16>>>0)}})},5789:(e,t,n)=>{var r=n(2985);r(r.S,"Math",{log10:function(e){return Math.log(e)*Math.LOG10E}})},3514:(e,t,n)=>{var r=n(2985);r(r.S,"Math",{log1p:n(6206)})},9978:(e,t,n)=>{var r=n(2985);r(r.S,"Math",{log2:function(e){return Math.log(e)/Math.LN2}})},8472:(e,t,n)=>{var r=n(2985);r(r.S,"Math",{sign:n(1801)})},6946:(e,t,n)=>{var r=n(2985),o=n(3086),i=Math.exp;r(r.S+r.F*n(4253)((function(){return-2e-17!=!Math.sinh(-2e-17)})),"Math",{sinh:function(e){return Math.abs(e=+e)<1?(o(e)-o(-e))/2:(i(e-1)-i(-e-1))*(Math.E/2)}})},5068:(e,t,n)=>{var r=n(2985),o=n(3086),i=Math.exp;r(r.S,"Math",{tanh:function(e){var t=o(e=+e),n=o(-e);return t==1/0?1:n==1/0?-1:(t-n)/(i(e)+i(-e))}})},413:(e,t,n)=>{var r=n(2985);r(r.S,"Math",{trunc:function(e){return(e>0?Math.floor:Math.ceil)(e)}})},1246:(e,t,n)=>{"use strict";var r=n(3816),o=n(9181),i=n(2032),a=n(266),s=n(1689),l=n(4253),u=n(616).f,c=n(8693).f,f=n(9275).f,p=n(9599).trim,d="Number",h=r.Number,m=h,v=h.prototype,y=i(n(2503)(v))==d,g="trim"in String.prototype,b=function(e){var t=s(e,!1);if("string"==typeof t&&t.length>2){var n,r,o,i=(t=g?t.trim():p(t,3)).charCodeAt(0);if(43===i||45===i){if(88===(n=t.charCodeAt(2))||120===n)return NaN}else if(48===i){switch(t.charCodeAt(1)){case 66:case 98:r=2,o=49;break;case 79:case 111:r=8,o=55;break;default:return+t}for(var a,l=t.slice(2),u=0,c=l.length;u<c;u++)if((a=l.charCodeAt(u))<48||a>o)return NaN;return parseInt(l,r)}}return+t};if(!h(" 0o1")||!h("0b1")||h("+0x1")){h=function(e){var t=arguments.length<1?0:e,n=this;return n instanceof h&&(y?l((function(){v.valueOf.call(n)})):i(n)!=d)?a(new m(b(t)),n,h):b(t)};for(var w,x=n(7057)?u(m):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),E=0;x.length>E;E++)o(m,w=x[E])&&!o(h,w)&&f(h,w,c(m,w));h.prototype=v,v.constructor=h,n(7234)(r,d,h)}},5972:(e,t,n)=>{var r=n(2985);r(r.S,"Number",{EPSILON:Math.pow(2,-52)})},3403:(e,t,n)=>{var r=n(2985),o=n(3816).isFinite;r(r.S,"Number",{isFinite:function(e){return"number"==typeof e&&o(e)}})},2516:(e,t,n)=>{var r=n(2985);r(r.S,"Number",{isInteger:n(8367)})},9371:(e,t,n)=>{var r=n(2985);r(r.S,"Number",{isNaN:function(e){return e!=e}})},6479:(e,t,n)=>{var r=n(2985),o=n(8367),i=Math.abs;r(r.S,"Number",{isSafeInteger:function(e){return o(e)&&i(e)<=9007199254740991}})},1736:(e,t,n)=>{var r=n(2985);r(r.S,"Number",{MAX_SAFE_INTEGER:9007199254740991})},1889:(e,t,n)=>{var r=n(2985);r(r.S,"Number",{MIN_SAFE_INTEGER:-9007199254740991})},5177:(e,t,n)=>{var r=n(2985),o=n(7743);r(r.S+r.F*(Number.parseFloat!=o),"Number",{parseFloat:o})},6943:(e,t,n)=>{var r=n(2985),o=n(5960);r(r.S+r.F*(Number.parseInt!=o),"Number",{parseInt:o})},726:(e,t,n)=>{"use strict";var r=n(2985),o=n(1467),i=n(3365),a=n(8595),s=1..toFixed,l=Math.floor,u=[0,0,0,0,0,0],c="Number.toFixed: incorrect invocation!",f="0",p=function(e,t){for(var n=-1,r=t;++n<6;)r+=e*u[n],u[n]=r%1e7,r=l(r/1e7)},d=function(e){for(var t=6,n=0;--t>=0;)n+=u[t],u[t]=l(n/e),n=n%e*1e7},h=function(){for(var e=6,t="";--e>=0;)if(""!==t||0===e||0!==u[e]){var n=String(u[e]);t=""===t?n:t+a.call(f,7-n.length)+n}return t},m=function(e,t,n){return 0===t?n:t%2==1?m(e,t-1,n*e):m(e*e,t/2,n)};r(r.P+r.F*(!!s&&("0.000"!==8e-5.toFixed(3)||"1"!==.9.toFixed(0)||"1.25"!==1.255.toFixed(2)||"1000000000000000128"!==(0xde0b6b3a7640080).toFixed(0))||!n(4253)((function(){s.call({})}))),"Number",{toFixed:function(e){var t,n,r,s,l=i(this,c),u=o(e),v="",y=f;if(u<0||u>20)throw RangeError(c);if(l!=l)return"NaN";if(l<=-1e21||l>=1e21)return String(l);if(l<0&&(v="-",l=-l),l>1e-21)if(t=function(e){for(var t=0,n=e;n>=4096;)t+=12,n/=4096;for(;n>=2;)t+=1,n/=2;return t}(l*m(2,69,1))-69,n=t<0?l*m(2,-t,1):l/m(2,t,1),n*=4503599627370496,(t=52-t)>0){for(p(0,n),r=u;r>=7;)p(1e7,0),r-=7;for(p(m(10,r,1),0),r=t-1;r>=23;)d(1<<23),r-=23;d(1<<r),p(1,1),d(2),y=h()}else p(0,n),p(1<<-t,0),y=h()+a.call(f,u);return u>0?v+((s=y.length)<=u?"0."+a.call(f,u-s)+y:y.slice(0,s-u)+"."+y.slice(s-u)):v+y}})},1901:(e,t,n)=>{"use strict";var r=n(2985),o=n(4253),i=n(3365),a=1..toPrecision;r(r.P+r.F*(o((function(){return"1"!==a.call(1,void 0)}))||!o((function(){a.call({})}))),"Number",{toPrecision:function(e){var t=i(this,"Number#toPrecision: incorrect invocation!");return void 0===e?a.call(t):a.call(t,e)}})},5115:(e,t,n)=>{var r=n(2985);r(r.S+r.F,"Object",{assign:n(5345)})},8132:(e,t,n)=>{var r=n(2985);r(r.S,"Object",{create:n(2503)})},7470:(e,t,n)=>{var r=n(2985);r(r.S+r.F*!n(7057),"Object",{defineProperties:n(5588)})},8388:(e,t,n)=>{var r=n(2985);r(r.S+r.F*!n(7057),"Object",{defineProperty:n(9275).f})},9375:(e,t,n)=>{var r=n(5286),o=n(4728).onFreeze;n(3160)("freeze",(function(e){return function(t){return e&&r(t)?e(o(t)):t}}))},4882:(e,t,n)=>{var r=n(2110),o=n(8693).f;n(3160)("getOwnPropertyDescriptor",(function(){return function(e,t){return o(r(e),t)}}))},9622:(e,t,n)=>{n(3160)("getOwnPropertyNames",(function(){return n(9327).f}))},1520:(e,t,n)=>{var r=n(508),o=n(468);n(3160)("getPrototypeOf",(function(){return function(e){return o(r(e))}}))},9892:(e,t,n)=>{var r=n(5286);n(3160)("isExtensible",(function(e){return function(t){return!!r(t)&&(!e||e(t))}}))},4157:(e,t,n)=>{var r=n(5286);n(3160)("isFrozen",(function(e){return function(t){return!r(t)||!!e&&e(t)}}))},5095:(e,t,n)=>{var r=n(5286);n(3160)("isSealed",(function(e){return function(t){return!r(t)||!!e&&e(t)}}))},9176:(e,t,n)=>{var r=n(2985);r(r.S,"Object",{is:n(7195)})},7476:(e,t,n)=>{var r=n(508),o=n(7184);n(3160)("keys",(function(){return function(e){return o(r(e))}}))},4672:(e,t,n)=>{var r=n(5286),o=n(4728).onFreeze;n(3160)("preventExtensions",(function(e){return function(t){return e&&r(t)?e(o(t)):t}}))},3533:(e,t,n)=>{var r=n(5286),o=n(4728).onFreeze;n(3160)("seal",(function(e){return function(t){return e&&r(t)?e(o(t)):t}}))},8838:(e,t,n)=>{var r=n(2985);r(r.S,"Object",{setPrototypeOf:n(7375).set})},6253:(e,t,n)=>{"use strict";var r=n(1488),o={};o[n(6314)("toStringTag")]="z",o+""!="[object z]"&&n(7234)(Object.prototype,"toString",(function(){return"[object "+r(this)+"]"}),!0)},4299:(e,t,n)=>{var r=n(2985),o=n(7743);r(r.G+r.F*(parseFloat!=o),{parseFloat:o})},1084:(e,t,n)=>{var r=n(2985),o=n(5960);r(r.G+r.F*(parseInt!=o),{parseInt:o})},851:(e,t,n)=>{"use strict";var r,o,i,a,s=n(4461),l=n(3816),u=n(741),c=n(1488),f=n(2985),p=n(5286),d=n(4963),h=n(3328),m=n(3531),v=n(8364),y=n(4193).set,g=n(4351)(),b=n(3499),w=n(188),x=n(575),E=n(94),S="Promise",_=l.TypeError,k=l.process,O=k&&k.versions,j=O&&O.v8||"",L=l.Promise,C="process"==c(k),P=function(){},A=o=b.f,T=!!function(){try{var e=L.resolve(1),t=(e.constructor={})[n(6314)("species")]=function(e){e(P,P)};return(C||"function"==typeof PromiseRejectionEvent)&&e.then(P)instanceof t&&0!==j.indexOf("6.6")&&-1===x.indexOf("Chrome/66")}catch(e){}}(),I=function(e){var t;return!(!p(e)||"function"!=typeof(t=e.then))&&t},N=function(e,t){if(!e._n){e._n=!0;var n=e._c;g((function(){for(var r=e._v,o=1==e._s,i=0,a=function(t){var n,i,a,s=o?t.ok:t.fail,l=t.resolve,u=t.reject,c=t.domain;try{s?(o||(2==e._h&&M(e),e._h=1),!0===s?n=r:(c&&c.enter(),n=s(r),c&&(c.exit(),a=!0)),n===t.promise?u(_("Promise-chain cycle")):(i=I(n))?i.call(n,l,u):l(n)):u(r)}catch(e){c&&!a&&c.exit(),u(e)}};n.length>i;)a(n[i++]);e._c=[],e._n=!1,t&&!e._h&&F(e)}))}},F=function(e){y.call(l,(function(){var t,n,r,o=e._v,i=R(e);if(i&&(t=w((function(){C?k.emit("unhandledRejection",o,e):(n=l.onunhandledrejection)?n({promise:e,reason:o}):(r=l.console)&&r.error&&r.error("Unhandled promise rejection",o)})),e._h=C||R(e)?2:1),e._a=void 0,i&&t.e)throw t.v}))},R=function(e){return 1!==e._h&&0===(e._a||e._c).length},M=function(e){y.call(l,(function(){var t;C?k.emit("rejectionHandled",e):(t=l.onrejectionhandled)&&t({promise:e,reason:e._v})}))},D=function(e){var t=this;t._d||(t._d=!0,(t=t._w||t)._v=e,t._s=2,t._a||(t._a=t._c.slice()),N(t,!0))},z=function(e){var t,n=this;if(!n._d){n._d=!0,n=n._w||n;try{if(n===e)throw _("Promise can't be resolved itself");(t=I(e))?g((function(){var r={_w:n,_d:!1};try{t.call(e,u(z,r,1),u(D,r,1))}catch(e){D.call(r,e)}})):(n._v=e,n._s=1,N(n,!1))}catch(e){D.call({_w:n,_d:!1},e)}}};T||(L=function(e){h(this,L,S,"_h"),d(e),r.call(this);try{e(u(z,this,1),u(D,this,1))}catch(e){D.call(this,e)}},(r=function(e){this._c=[],this._a=void 0,this._s=0,this._d=!1,this._v=void 0,this._h=0,this._n=!1}).prototype=n(4408)(L.prototype,{then:function(e,t){var n=A(v(this,L));return n.ok="function"!=typeof e||e,n.fail="function"==typeof t&&t,n.domain=C?k.domain:void 0,this._c.push(n),this._a&&this._a.push(n),this._s&&N(this,!1),n.promise},catch:function(e){return this.then(void 0,e)}}),i=function(){var e=new r;this.promise=e,this.resolve=u(z,e,1),this.reject=u(D,e,1)},b.f=A=function(e){return e===L||e===a?new i(e):o(e)}),f(f.G+f.W+f.F*!T,{Promise:L}),n(2943)(L,S),n(2974)(S),a=n(5645).Promise,f(f.S+f.F*!T,S,{reject:function(e){var t=A(this);return(0,t.reject)(e),t.promise}}),f(f.S+f.F*(s||!T),S,{resolve:function(e){return E(s&&this===a?L:this,e)}}),f(f.S+f.F*!(T&&n(7462)((function(e){L.all(e).catch(P)}))),S,{all:function(e){var t=this,n=A(t),r=n.resolve,o=n.reject,i=w((function(){var n=[],i=0,a=1;m(e,!1,(function(e){var s=i++,l=!1;n.push(void 0),a++,t.resolve(e).then((function(e){l||(l=!0,n[s]=e,--a||r(n))}),o)})),--a||r(n)}));return i.e&&o(i.v),n.promise},race:function(e){var t=this,n=A(t),r=n.reject,o=w((function(){m(e,!1,(function(e){t.resolve(e).then(n.resolve,r)}))}));return o.e&&r(o.v),n.promise}})},1572:(e,t,n)=>{var r=n(2985),o=n(4963),i=n(7007),a=(n(3816).Reflect||{}).apply,s=Function.apply;r(r.S+r.F*!n(4253)((function(){a((function(){}))})),"Reflect",{apply:function(e,t,n){var r=o(e),l=i(n);return a?a(r,t,l):s.call(r,t,l)}})},2139:(e,t,n)=>{var r=n(2985),o=n(2503),i=n(4963),a=n(7007),s=n(5286),l=n(4253),u=n(4398),c=(n(3816).Reflect||{}).construct,f=l((function(){function e(){}return!(c((function(){}),[],e)instanceof e)})),p=!l((function(){c((function(){}))}));r(r.S+r.F*(f||p),"Reflect",{construct:function(e,t){i(e),a(t);var n=arguments.length<3?e:i(arguments[2]);if(p&&!f)return c(e,t,n);if(e==n){switch(t.length){case 0:return new e;case 1:return new e(t[0]);case 2:return new e(t[0],t[1]);case 3:return new e(t[0],t[1],t[2]);case 4:return new e(t[0],t[1],t[2],t[3])}var r=[null];return r.push.apply(r,t),new(u.apply(e,r))}var l=n.prototype,d=o(s(l)?l:Object.prototype),h=Function.apply.call(e,d,t);return s(h)?h:d}})},685:(e,t,n)=>{var r=n(9275),o=n(2985),i=n(7007),a=n(1689);o(o.S+o.F*n(4253)((function(){Reflect.defineProperty(r.f({},1,{value:1}),1,{value:2})})),"Reflect",{defineProperty:function(e,t,n){i(e),t=a(t,!0),i(n);try{return r.f(e,t,n),!0}catch(e){return!1}}})},5535:(e,t,n)=>{var r=n(2985),o=n(8693).f,i=n(7007);r(r.S,"Reflect",{deleteProperty:function(e,t){var n=o(i(e),t);return!(n&&!n.configurable)&&delete e[t]}})},7347:(e,t,n)=>{"use strict";var r=n(2985),o=n(7007),i=function(e){this._t=o(e),this._i=0;var t,n=this._k=[];for(t in e)n.push(t)};n(9988)(i,"Object",(function(){var e,t=this,n=t._k;do{if(t._i>=n.length)return{value:void 0,done:!0}}while(!((e=n[t._i++])in t._t));return{value:e,done:!1}})),r(r.S,"Reflect",{enumerate:function(e){return new i(e)}})},6633:(e,t,n)=>{var r=n(8693),o=n(2985),i=n(7007);o(o.S,"Reflect",{getOwnPropertyDescriptor:function(e,t){return r.f(i(e),t)}})},8989:(e,t,n)=>{var r=n(2985),o=n(468),i=n(7007);r(r.S,"Reflect",{getPrototypeOf:function(e){return o(i(e))}})},3049:(e,t,n)=>{var r=n(8693),o=n(468),i=n(9181),a=n(2985),s=n(5286),l=n(7007);a(a.S,"Reflect",{get:function e(t,n){var a,u,c=arguments.length<3?t:arguments[2];return l(t)===c?t[n]:(a=r.f(t,n))?i(a,"value")?a.value:void 0!==a.get?a.get.call(c):void 0:s(u=o(t))?e(u,n,c):void 0}})},8270:(e,t,n)=>{var r=n(2985);r(r.S,"Reflect",{has:function(e,t){return t in e}})},4510:(e,t,n)=>{var r=n(2985),o=n(7007),i=Object.isExtensible;r(r.S,"Reflect",{isExtensible:function(e){return o(e),!i||i(e)}})},3984:(e,t,n)=>{var r=n(2985);r(r.S,"Reflect",{ownKeys:n(7643)})},5769:(e,t,n)=>{var r=n(2985),o=n(7007),i=Object.preventExtensions;r(r.S,"Reflect",{preventExtensions:function(e){o(e);try{return i&&i(e),!0}catch(e){return!1}}})},6014:(e,t,n)=>{var r=n(2985),o=n(7375);o&&r(r.S,"Reflect",{setPrototypeOf:function(e,t){o.check(e,t);try{return o.set(e,t),!0}catch(e){return!1}}})},55:(e,t,n)=>{var r=n(9275),o=n(8693),i=n(468),a=n(9181),s=n(2985),l=n(681),u=n(7007),c=n(5286);s(s.S,"Reflect",{set:function e(t,n,s){var f,p,d=arguments.length<4?t:arguments[3],h=o.f(u(t),n);if(!h){if(c(p=i(t)))return e(p,n,s,d);h=l(0)}if(a(h,"value")){if(!1===h.writable||!c(d))return!1;if(f=o.f(d,n)){if(f.get||f.set||!1===f.writable)return!1;f.value=s,r.f(d,n,f)}else r.f(d,n,l(0,s));return!0}return void 0!==h.set&&(h.set.call(d,s),!0)}})},3946:(e,t,n)=>{var r=n(3816),o=n(266),i=n(9275).f,a=n(616).f,s=n(5364),l=n(3218),u=r.RegExp,c=u,f=u.prototype,p=/a/g,d=/a/g,h=new u(p)!==p;if(n(7057)&&(!h||n(4253)((function(){return d[n(6314)("match")]=!1,u(p)!=p||u(d)==d||"/a/i"!=u(p,"i")})))){u=function(e,t){var n=this instanceof u,r=s(e),i=void 0===t;return!n&&r&&e.constructor===u&&i?e:o(h?new c(r&&!i?e.source:e,t):c((r=e instanceof u)?e.source:e,r&&i?l.call(e):t),n?this:f,u)};for(var m=function(e){e in u||i(u,e,{configurable:!0,get:function(){return c[e]},set:function(t){c[e]=t}})},v=a(c),y=0;v.length>y;)m(v[y++]);f.constructor=u,u.prototype=f,n(7234)(r,"RegExp",u)}n(2974)("RegExp")},8269:(e,t,n)=>{"use strict";var r=n(1165);n(2985)({target:"RegExp",proto:!0,forced:r!==/./.exec},{exec:r})},6774:(e,t,n)=>{n(7057)&&"g"!=/./g.flags&&n(9275).f(RegExp.prototype,"flags",{configurable:!0,get:n(3218)})},1466:(e,t,n)=>{"use strict";var r=n(7007),o=n(875),i=n(6793),a=n(7787);n(8082)("match",1,(function(e,t,n,s){return[function(n){var r=e(this),o=null==n?void 0:n[t];return void 0!==o?o.call(n,r):new RegExp(n)[t](String(r))},function(e){var t=s(n,e,this);if(t.done)return t.value;var l=r(e),u=String(this);if(!l.global)return a(l,u);var c=l.unicode;l.lastIndex=0;for(var f,p=[],d=0;null!==(f=a(l,u));){var h=String(f[0]);p[d]=h,""===h&&(l.lastIndex=i(u,o(l.lastIndex),c)),d++}return 0===d?null:p}]}))},9357:(e,t,n)=>{"use strict";var r=n(7007),o=n(508),i=n(875),a=n(1467),s=n(6793),l=n(7787),u=Math.max,c=Math.min,f=Math.floor,p=/\$([$&`']|\d\d?|<[^>]*>)/g,d=/\$([$&`']|\d\d?)/g;n(8082)("replace",2,(function(e,t,n,h){return[function(r,o){var i=e(this),a=null==r?void 0:r[t];return void 0!==a?a.call(r,i,o):n.call(String(i),r,o)},function(e,t){var o=h(n,e,this,t);if(o.done)return o.value;var f=r(e),p=String(this),d="function"==typeof t;d||(t=String(t));var v=f.global;if(v){var y=f.unicode;f.lastIndex=0}for(var g=[];;){var b=l(f,p);if(null===b)break;if(g.push(b),!v)break;""===String(b[0])&&(f.lastIndex=s(p,i(f.lastIndex),y))}for(var w,x="",E=0,S=0;S<g.length;S++){b=g[S];for(var _=String(b[0]),k=u(c(a(b.index),p.length),0),O=[],j=1;j<b.length;j++)O.push(void 0===(w=b[j])?w:String(w));var L=b.groups;if(d){var C=[_].concat(O,k,p);void 0!==L&&C.push(L);var P=String(t.apply(void 0,C))}else P=m(_,p,k,O,L,t);k>=E&&(x+=p.slice(E,k)+P,E=k+_.length)}return x+p.slice(E)}];function m(e,t,r,i,a,s){var l=r+e.length,u=i.length,c=d;return void 0!==a&&(a=o(a),c=p),n.call(s,c,(function(n,o){var s;switch(o.charAt(0)){case"$":return"$";case"&":return e;case"`":return t.slice(0,r);case"'":return t.slice(l);case"<":s=a[o.slice(1,-1)];break;default:var c=+o;if(0===c)return n;if(c>u){var p=f(c/10);return 0===p?n:p<=u?void 0===i[p-1]?o.charAt(1):i[p-1]+o.charAt(1):n}s=i[c-1]}return void 0===s?"":s}))}}))},6142:(e,t,n)=>{"use strict";var r=n(7007),o=n(7195),i=n(7787);n(8082)("search",1,(function(e,t,n,a){return[function(n){var r=e(this),o=null==n?void 0:n[t];return void 0!==o?o.call(n,r):new RegExp(n)[t](String(r))},function(e){var t=a(n,e,this);if(t.done)return t.value;var s=r(e),l=String(this),u=s.lastIndex;o(u,0)||(s.lastIndex=0);var c=i(s,l);return o(s.lastIndex,u)||(s.lastIndex=u),null===c?-1:c.index}]}))},1876:(e,t,n)=>{"use strict";var r=n(5364),o=n(7007),i=n(8364),a=n(6793),s=n(875),l=n(7787),u=n(1165),c=n(4253),f=Math.min,p=[].push,d=4294967295,h=!c((function(){RegExp(d,"y")}));n(8082)("split",2,(function(e,t,n,c){var m;return m="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(e,t){var o=String(this);if(void 0===e&&0===t)return[];if(!r(e))return n.call(o,e,t);for(var i,a,s,l=[],c=(e.ignoreCase?"i":"")+(e.multiline?"m":"")+(e.unicode?"u":"")+(e.sticky?"y":""),f=0,h=void 0===t?d:t>>>0,m=new RegExp(e.source,c+"g");(i=u.call(m,o))&&!((a=m.lastIndex)>f&&(l.push(o.slice(f,i.index)),i.length>1&&i.index<o.length&&p.apply(l,i.slice(1)),s=i[0].length,f=a,l.length>=h));)m.lastIndex===i.index&&m.lastIndex++;return f===o.length?!s&&m.test("")||l.push(""):l.push(o.slice(f)),l.length>h?l.slice(0,h):l}:"0".split(void 0,0).length?function(e,t){return void 0===e&&0===t?[]:n.call(this,e,t)}:n,[function(n,r){var o=e(this),i=null==n?void 0:n[t];return void 0!==i?i.call(n,o,r):m.call(String(o),n,r)},function(e,t){var r=c(m,e,this,t,m!==n);if(r.done)return r.value;var u=o(e),p=String(this),v=i(u,RegExp),y=u.unicode,g=(u.ignoreCase?"i":"")+(u.multiline?"m":"")+(u.unicode?"u":"")+(h?"y":"g"),b=new v(h?u:"^(?:"+u.source+")",g),w=void 0===t?d:t>>>0;if(0===w)return[];if(0===p.length)return null===l(b,p)?[p]:[];for(var x=0,E=0,S=[];E<p.length;){b.lastIndex=h?E:0;var _,k=l(b,h?p:p.slice(E));if(null===k||(_=f(s(b.lastIndex+(h?0:E)),p.length))===x)E=a(p,E,y);else{if(S.push(p.slice(x,E)),S.length===w)return S;for(var O=1;O<=k.length-1;O++)if(S.push(k[O]),S.length===w)return S;E=x=_}}return S.push(p.slice(x)),S}]}))},6108:(e,t,n)=>{"use strict";n(6774);var r=n(7007),o=n(3218),i=n(7057),a="toString",s=/./.toString,l=function(e){n(7234)(RegExp.prototype,a,e,!0)};n(4253)((function(){return"/a/b"!=s.call({source:"a",flags:"b"})}))?l((function(){var e=r(this);return"/".concat(e.source,"/","flags"in e?e.flags:!i&&e instanceof RegExp?o.call(e):void 0)})):s.name!=a&&l((function(){return s.call(this)}))},8184:(e,t,n)=>{"use strict";var r=n(9824),o=n(1616);e.exports=n(5795)("Set",(function(e){return function(){return e(this,arguments.length>0?arguments[0]:void 0)}}),{add:function(e){return r.def(o(this,"Set"),e=0===e?0:e,e)}},r)},856:(e,t,n)=>{"use strict";n(9395)("anchor",(function(e){return function(t){return e(this,"a","name",t)}}))},703:(e,t,n)=>{"use strict";n(9395)("big",(function(e){return function(){return e(this,"big","","")}}))},1539:(e,t,n)=>{"use strict";n(9395)("blink",(function(e){return function(){return e(this,"blink","","")}}))},5292:(e,t,n)=>{"use strict";n(9395)("bold",(function(e){return function(){return e(this,"b","","")}}))},9539:(e,t,n)=>{"use strict";var r=n(2985),o=n(4496)(!1);r(r.P,"String",{codePointAt:function(e){return o(this,e)}})},6620:(e,t,n)=>{"use strict";var r=n(2985),o=n(875),i=n(2094),a="endsWith",s="".endsWith;r(r.P+r.F*n(8852)(a),"String",{endsWith:function(e){var t=i(this,e,a),n=arguments.length>1?arguments[1]:void 0,r=o(t.length),l=void 0===n?r:Math.min(o(n),r),u=String(e);return s?s.call(t,u,l):t.slice(l-u.length,l)===u}})},6629:(e,t,n)=>{"use strict";n(9395)("fixed",(function(e){return function(){return e(this,"tt","","")}}))},3694:(e,t,n)=>{"use strict";n(9395)("fontcolor",(function(e){return function(t){return e(this,"font","color",t)}}))},7648:(e,t,n)=>{"use strict";n(9395)("fontsize",(function(e){return function(t){return e(this,"font","size",t)}}))},191:(e,t,n)=>{var r=n(2985),o=n(2337),i=String.fromCharCode,a=String.fromCodePoint;r(r.S+r.F*(!!a&&1!=a.length),"String",{fromCodePoint:function(e){for(var t,n=[],r=arguments.length,a=0;r>a;){if(t=+arguments[a++],o(t,1114111)!==t)throw RangeError(t+" is not a valid code point");n.push(t<65536?i(t):i(55296+((t-=65536)>>10),t%1024+56320))}return n.join("")}})},2850:(e,t,n)=>{"use strict";var r=n(2985),o=n(2094),i="includes";r(r.P+r.F*n(8852)(i),"String",{includes:function(e){return!!~o(this,e,i).indexOf(e,arguments.length>1?arguments[1]:void 0)}})},7795:(e,t,n)=>{"use strict";n(9395)("italics",(function(e){return function(){return e(this,"i","","")}}))},9115:(e,t,n)=>{"use strict";var r=n(4496)(!0);n(2923)(String,"String",(function(e){this._t=String(e),this._i=0}),(function(){var e,t=this._t,n=this._i;return n>=t.length?{value:void 0,done:!0}:(e=r(t,n),this._i+=e.length,{value:e,done:!1})}))},4531:(e,t,n)=>{"use strict";n(9395)("link",(function(e){return function(t){return e(this,"a","href",t)}}))},8306:(e,t,n)=>{var r=n(2985),o=n(2110),i=n(875);r(r.S,"String",{raw:function(e){for(var t=o(e.raw),n=i(t.length),r=arguments.length,a=[],s=0;n>s;)a.push(String(t[s++])),s<r&&a.push(String(arguments[s]));return a.join("")}})},823:(e,t,n)=>{var r=n(2985);r(r.P,"String",{repeat:n(8595)})},3605:(e,t,n)=>{"use strict";n(9395)("small",(function(e){return function(){return e(this,"small","","")}}))},7732:(e,t,n)=>{"use strict";var r=n(2985),o=n(875),i=n(2094),a="startsWith",s="".startsWith;r(r.P+r.F*n(8852)(a),"String",{startsWith:function(e){var t=i(this,e,a),n=o(Math.min(arguments.length>1?arguments[1]:void 0,t.length)),r=String(e);return s?s.call(t,r,n):t.slice(n,n+r.length)===r}})},6780:(e,t,n)=>{"use strict";n(9395)("strike",(function(e){return function(){return e(this,"strike","","")}}))},9937:(e,t,n)=>{"use strict";n(9395)("sub",(function(e){return function(){return e(this,"sub","","")}}))},511:(e,t,n)=>{"use strict";n(9395)("sup",(function(e){return function(){return e(this,"sup","","")}}))},4564:(e,t,n)=>{"use strict";n(9599)("trim",(function(e){return function(){return e(this,3)}}))},5767:(e,t,n)=>{"use strict";var r=n(3816),o=n(9181),i=n(7057),a=n(2985),s=n(7234),l=n(4728).KEY,u=n(4253),c=n(3825),f=n(2943),p=n(3953),d=n(6314),h=n(8787),m=n(6074),v=n(5541),y=n(4302),g=n(7007),b=n(5286),w=n(508),x=n(2110),E=n(1689),S=n(681),_=n(2503),k=n(9327),O=n(8693),j=n(4548),L=n(9275),C=n(7184),P=O.f,A=L.f,T=k.f,I=r.Symbol,N=r.JSON,F=N&&N.stringify,R=d("_hidden"),M=d("toPrimitive"),D={}.propertyIsEnumerable,z=c("symbol-registry"),U=c("symbols"),V=c("op-symbols"),G=Object.prototype,B="function"==typeof I&&!!j.f,W=r.QObject,H=!W||!W.prototype||!W.prototype.findChild,$=i&&u((function(){return 7!=_(A({},"a",{get:function(){return A(this,"a",{value:7}).a}})).a}))?function(e,t,n){var r=P(G,t);r&&delete G[t],A(e,t,n),r&&e!==G&&A(G,t,r)}:A,Y=function(e){var t=U[e]=_(I.prototype);return t._k=e,t},q=B&&"symbol"==typeof I.iterator?function(e){return"symbol"==typeof e}:function(e){return e instanceof I},Q=function(e,t,n){return e===G&&Q(V,t,n),g(e),t=E(t,!0),g(n),o(U,t)?(n.enumerable?(o(e,R)&&e[R][t]&&(e[R][t]=!1),n=_(n,{enumerable:S(0,!1)})):(o(e,R)||A(e,R,S(1,{})),e[R][t]=!0),$(e,t,n)):A(e,t,n)},X=function(e,t){g(e);for(var n,r=v(t=x(t)),o=0,i=r.length;i>o;)Q(e,n=r[o++],t[n]);return e},K=function(e){var t=D.call(this,e=E(e,!0));return!(this===G&&o(U,e)&&!o(V,e))&&(!(t||!o(this,e)||!o(U,e)||o(this,R)&&this[R][e])||t)},J=function(e,t){if(e=x(e),t=E(t,!0),e!==G||!o(U,t)||o(V,t)){var n=P(e,t);return!n||!o(U,t)||o(e,R)&&e[R][t]||(n.enumerable=!0),n}},Z=function(e){for(var t,n=T(x(e)),r=[],i=0;n.length>i;)o(U,t=n[i++])||t==R||t==l||r.push(t);return r},ee=function(e){for(var t,n=e===G,r=T(n?V:x(e)),i=[],a=0;r.length>a;)!o(U,t=r[a++])||n&&!o(G,t)||i.push(U[t]);return i};B||(s((I=function(){if(this instanceof I)throw TypeError("Symbol is not a constructor!");var e=p(arguments.length>0?arguments[0]:void 0),t=function(n){this===G&&t.call(V,n),o(this,R)&&o(this[R],e)&&(this[R][e]=!1),$(this,e,S(1,n))};return i&&H&&$(G,e,{configurable:!0,set:t}),Y(e)}).prototype,"toString",(function(){return this._k})),O.f=J,L.f=Q,n(616).f=k.f=Z,n(4682).f=K,j.f=ee,i&&!n(4461)&&s(G,"propertyIsEnumerable",K,!0),h.f=function(e){return Y(d(e))}),a(a.G+a.W+a.F*!B,{Symbol:I});for(var te="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),ne=0;te.length>ne;)d(te[ne++]);for(var re=C(d.store),oe=0;re.length>oe;)m(re[oe++]);a(a.S+a.F*!B,"Symbol",{for:function(e){return o(z,e+="")?z[e]:z[e]=I(e)},keyFor:function(e){if(!q(e))throw TypeError(e+" is not a symbol!");for(var t in z)if(z[t]===e)return t},useSetter:function(){H=!0},useSimple:function(){H=!1}}),a(a.S+a.F*!B,"Object",{create:function(e,t){return void 0===t?_(e):X(_(e),t)},defineProperty:Q,defineProperties:X,getOwnPropertyDescriptor:J,getOwnPropertyNames:Z,getOwnPropertySymbols:ee});var ie=u((function(){j.f(1)}));a(a.S+a.F*ie,"Object",{getOwnPropertySymbols:function(e){return j.f(w(e))}}),N&&a(a.S+a.F*(!B||u((function(){var e=I();return"[null]"!=F([e])||"{}"!=F({a:e})||"{}"!=F(Object(e))}))),"JSON",{stringify:function(e){for(var t,n,r=[e],o=1;arguments.length>o;)r.push(arguments[o++]);if(n=t=r[1],(b(t)||void 0!==e)&&!q(e))return y(t)||(t=function(e,t){if("function"==typeof n&&(t=n.call(this,e,t)),!q(t))return t}),r[1]=t,F.apply(N,r)}}),I.prototype[M]||n(7728)(I.prototype,M,I.prototype.valueOf),f(I,"Symbol"),f(Math,"Math",!0),f(r.JSON,"JSON",!0)},142:(e,t,n)=>{"use strict";var r=n(2985),o=n(9383),i=n(1125),a=n(7007),s=n(2337),l=n(875),u=n(5286),c=n(3816).ArrayBuffer,f=n(8364),p=i.ArrayBuffer,d=i.DataView,h=o.ABV&&c.isView,m=p.prototype.slice,v=o.VIEW,y="ArrayBuffer";r(r.G+r.W+r.F*(c!==p),{ArrayBuffer:p}),r(r.S+r.F*!o.CONSTR,y,{isView:function(e){return h&&h(e)||u(e)&&v in e}}),r(r.P+r.U+r.F*n(4253)((function(){return!new p(2).slice(1,void 0).byteLength})),y,{slice:function(e,t){if(void 0!==m&&void 0===t)return m.call(a(this),e);for(var n=a(this).byteLength,r=s(e,n),o=s(void 0===t?n:t,n),i=new(f(this,p))(l(o-r)),u=new d(this),c=new d(i),h=0;r<o;)c.setUint8(h++,u.getUint8(r++));return i}}),n(2974)(y)},1786:(e,t,n)=>{var r=n(2985);r(r.G+r.W+r.F*!n(9383).ABV,{DataView:n(1125).DataView})},162:(e,t,n)=>{n(8440)("Float32",4,(function(e){return function(t,n,r){return e(this,t,n,r)}}))},3834:(e,t,n)=>{n(8440)("Float64",8,(function(e){return function(t,n,r){return e(this,t,n,r)}}))},4821:(e,t,n)=>{n(8440)("Int16",2,(function(e){return function(t,n,r){return e(this,t,n,r)}}))},1303:(e,t,n)=>{n(8440)("Int32",4,(function(e){return function(t,n,r){return e(this,t,n,r)}}))},5368:(e,t,n)=>{n(8440)("Int8",1,(function(e){return function(t,n,r){return e(this,t,n,r)}}))},9103:(e,t,n)=>{n(8440)("Uint16",2,(function(e){return function(t,n,r){return e(this,t,n,r)}}))},3318:(e,t,n)=>{n(8440)("Uint32",4,(function(e){return function(t,n,r){return e(this,t,n,r)}}))},6964:(e,t,n)=>{n(8440)("Uint8",1,(function(e){return function(t,n,r){return e(this,t,n,r)}}))},2152:(e,t,n)=>{n(8440)("Uint8",1,(function(e){return function(t,n,r){return e(this,t,n,r)}}),!0)},147:(e,t,n)=>{"use strict";var r,o=n(3816),i=n(50)(0),a=n(7234),s=n(4728),l=n(5345),u=n(3657),c=n(5286),f=n(1616),p=n(1616),d=!o.ActiveXObject&&"ActiveXObject"in o,h="WeakMap",m=s.getWeak,v=Object.isExtensible,y=u.ufstore,g=function(e){return function(){return e(this,arguments.length>0?arguments[0]:void 0)}},b={get:function(e){if(c(e)){var t=m(e);return!0===t?y(f(this,h)).get(e):t?t[this._i]:void 0}},set:function(e,t){return u.def(f(this,h),e,t)}},w=e.exports=n(5795)(h,g,b,u,!0,!0);p&&d&&(l((r=u.getConstructor(g,h)).prototype,b),s.NEED=!0,i(["delete","has","get","set"],(function(e){var t=w.prototype,n=t[e];a(t,e,(function(t,o){if(c(t)&&!v(t)){this._f||(this._f=new r);var i=this._f[e](t,o);return"set"==e?this:i}return n.call(this,t,o)}))})))},9192:(e,t,n)=>{"use strict";var r=n(3657),o=n(1616),i="WeakSet";n(5795)(i,(function(e){return function(){return e(this,arguments.length>0?arguments[0]:void 0)}}),{add:function(e){return r.def(o(this,i),e,!0)}},r,!1,!0)},1268:(e,t,n)=>{"use strict";var r=n(2985),o=n(3325),i=n(508),a=n(875),s=n(4963),l=n(6886);r(r.P,"Array",{flatMap:function(e){var t,n,r=i(this);return s(e),t=a(r.length),n=l(r,0),o(n,r,r,t,0,1,e,arguments[1]),n}}),n(7722)("flatMap")},2773:(e,t,n)=>{"use strict";var r=n(2985),o=n(9315)(!0);r(r.P,"Array",{includes:function(e){return o(this,e,arguments.length>1?arguments[1]:void 0)}}),n(7722)("includes")},3276:(e,t,n)=>{var r=n(2985),o=n(1131)(!0);r(r.S,"Object",{entries:function(e){return o(e)}})},8351:(e,t,n)=>{var r=n(2985),o=n(7643),i=n(2110),a=n(8693),s=n(2811);r(r.S,"Object",{getOwnPropertyDescriptors:function(e){for(var t,n,r=i(e),l=a.f,u=o(r),c={},f=0;u.length>f;)void 0!==(n=l(r,t=u[f++]))&&s(c,t,n);return c}})},6409:(e,t,n)=>{var r=n(2985),o=n(1131)(!1);r(r.S,"Object",{values:function(e){return o(e)}})},9865:(e,t,n)=>{"use strict";var r=n(2985),o=n(5645),i=n(3816),a=n(8364),s=n(94);r(r.P+r.R,"Promise",{finally:function(e){var t=a(this,o.Promise||i.Promise),n="function"==typeof e;return this.then(n?function(n){return s(t,e()).then((function(){return n}))}:e,n?function(n){return s(t,e()).then((function(){throw n}))}:e)}})},2770:(e,t,n)=>{"use strict";var r=n(2985),o=n(5442),i=n(575),a=/Version\/10\.\d+(\.\d+)?( Mobile\/\w+)? Safari\//.test(i);r(r.P+r.F*a,"String",{padEnd:function(e){return o(this,e,arguments.length>1?arguments[1]:void 0,!1)}})},1784:(e,t,n)=>{"use strict";var r=n(2985),o=n(5442),i=n(575),a=/Version\/10\.\d+(\.\d+)?( Mobile\/\w+)? Safari\//.test(i);r(r.P+r.F*a,"String",{padStart:function(e){return o(this,e,arguments.length>1?arguments[1]:void 0,!0)}})},5869:(e,t,n)=>{"use strict";n(9599)("trimLeft",(function(e){return function(){return e(this,1)}}),"trimStart")},4325:(e,t,n)=>{"use strict";n(9599)("trimRight",(function(e){return function(){return e(this,2)}}),"trimEnd")},9665:(e,t,n)=>{n(6074)("asyncIterator")},1181:(e,t,n)=>{for(var r=n(6997),o=n(7184),i=n(7234),a=n(3816),s=n(7728),l=n(2803),u=n(6314),c=u("iterator"),f=u("toStringTag"),p=l.Array,d={CSSRuleList:!0,CSSStyleDeclaration:!1,CSSValueList:!1,ClientRectList:!1,DOMRectList:!1,DOMStringList:!1,DOMTokenList:!0,DataTransferItemList:!1,FileList:!1,HTMLAllCollection:!1,HTMLCollection:!1,HTMLFormElement:!1,HTMLSelectElement:!1,MediaList:!0,MimeTypeArray:!1,NamedNodeMap:!1,NodeList:!0,PaintRequestList:!1,Plugin:!1,PluginArray:!1,SVGLengthList:!1,SVGNumberList:!1,SVGPathSegList:!1,SVGPointList:!1,SVGStringList:!1,SVGTransformList:!1,SourceBufferList:!1,StyleSheetList:!0,TextTrackCueList:!1,TextTrackList:!1,TouchList:!1},h=o(d),m=0;m<h.length;m++){var v,y=h[m],g=d[y],b=a[y],w=b&&b.prototype;if(w&&(w[c]||s(w,c,p),w[f]||s(w,f,y),l[y]=p,g))for(v in r)w[v]||i(w,v,r[v],!0)}},4633:(e,t,n)=>{var r=n(2985),o=n(4193);r(r.G+r.B,{setImmediate:o.set,clearImmediate:o.clear})},2564:(e,t,n)=>{var r=n(3816),o=n(2985),i=n(575),a=[].slice,s=/MSIE .\./.test(i),l=function(e){return function(t,n){var r=arguments.length>2,o=!!r&&a.call(arguments,2);return e(r?function(){("function"==typeof t?t:Function(t)).apply(this,o)}:t,n)}};o(o.G+o.B+o.F*s,{setTimeout:l(r.setTimeout),setInterval:l(r.setInterval)})},6337:(e,t,n)=>{n(2564),n(4633),n(1181),e.exports=n(5645)},8679:(e,t,n)=>{"use strict";var r=n(1296),o={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},i={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},a={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},s={};function l(e){return r.isMemo(e)?a:s[e.$$typeof]||o}s[r.ForwardRef]={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},s[r.Memo]=a;var u=Object.defineProperty,c=Object.getOwnPropertyNames,f=Object.getOwnPropertySymbols,p=Object.getOwnPropertyDescriptor,d=Object.getPrototypeOf,h=Object.prototype;e.exports=function e(t,n,r){if("string"!=typeof n){if(h){var o=d(n);o&&o!==h&&e(t,o,r)}var a=c(n);f&&(a=a.concat(f(n)));for(var s=l(t),m=l(n),v=0;v<a.length;++v){var y=a[v];if(!(i[y]||r&&r[y]||m&&m[y]||s&&s[y])){var g=p(n,y);try{u(t,y,g)}catch(e){}}}}return t}},6103:(e,t)=>{"use strict";var n="function"==typeof Symbol&&Symbol.for,r=n?Symbol.for("react.element"):60103,o=n?Symbol.for("react.portal"):60106,i=n?Symbol.for("react.fragment"):60107,a=n?Symbol.for("react.strict_mode"):60108,s=n?Symbol.for("react.profiler"):60114,l=n?Symbol.for("react.provider"):60109,u=n?Symbol.for("react.context"):60110,c=n?Symbol.for("react.async_mode"):60111,f=n?Symbol.for("react.concurrent_mode"):60111,p=n?Symbol.for("react.forward_ref"):60112,d=n?Symbol.for("react.suspense"):60113,h=n?Symbol.for("react.suspense_list"):60120,m=n?Symbol.for("react.memo"):60115,v=n?Symbol.for("react.lazy"):60116,y=n?Symbol.for("react.block"):60121,g=n?Symbol.for("react.fundamental"):60117,b=n?Symbol.for("react.responder"):60118,w=n?Symbol.for("react.scope"):60119;function x(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case r:switch(e=e.type){case c:case f:case i:case s:case a:case d:return e;default:switch(e=e&&e.$$typeof){case u:case p:case v:case m:case l:return e;default:return t}}case o:return t}}}function E(e){return x(e)===f}t.AsyncMode=c,t.ConcurrentMode=f,t.ContextConsumer=u,t.ContextProvider=l,t.Element=r,t.ForwardRef=p,t.Fragment=i,t.Lazy=v,t.Memo=m,t.Portal=o,t.Profiler=s,t.StrictMode=a,t.Suspense=d,t.isAsyncMode=function(e){return E(e)||x(e)===c},t.isConcurrentMode=E,t.isContextConsumer=function(e){return x(e)===u},t.isContextProvider=function(e){return x(e)===l},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===r},t.isForwardRef=function(e){return x(e)===p},t.isFragment=function(e){return x(e)===i},t.isLazy=function(e){return x(e)===v},t.isMemo=function(e){return x(e)===m},t.isPortal=function(e){return x(e)===o},t.isProfiler=function(e){return x(e)===s},t.isStrictMode=function(e){return x(e)===a},t.isSuspense=function(e){return x(e)===d},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===i||e===f||e===s||e===a||e===d||e===h||"object"==typeof e&&null!==e&&(e.$$typeof===v||e.$$typeof===m||e.$$typeof===l||e.$$typeof===u||e.$$typeof===p||e.$$typeof===g||e.$$typeof===b||e.$$typeof===w||e.$$typeof===y)},t.typeOf=x},1296:(e,t,n)=>{"use strict";e.exports=n(6103)},8552:(e,t,n)=>{var r=n(852)(n(5639),"DataView");e.exports=r},1989:(e,t,n)=>{var r=n(1789),o=n(401),i=n(7667),a=n(1327),s=n(1866);function l(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}l.prototype.clear=r,l.prototype.delete=o,l.prototype.get=i,l.prototype.has=a,l.prototype.set=s,e.exports=l},8407:(e,t,n)=>{var r=n(7040),o=n(4125),i=n(2117),a=n(7518),s=n(4705);function l(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}l.prototype.clear=r,l.prototype.delete=o,l.prototype.get=i,l.prototype.has=a,l.prototype.set=s,e.exports=l},7071:(e,t,n)=>{var r=n(852)(n(5639),"Map");e.exports=r},886:(e,t,n)=>{var r=n(4785),o=n(1285),i=n(6e3),a=n(9916),s=n(5265);function l(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}l.prototype.clear=r,l.prototype.delete=o,l.prototype.get=i,l.prototype.has=a,l.prototype.set=s,e.exports=l},3818:(e,t,n)=>{var r=n(852)(n(5639),"Promise");e.exports=r},8525:(e,t,n)=>{var r=n(852)(n(5639),"Set");e.exports=r},8668:(e,t,n)=>{var r=n(886),o=n(619),i=n(2385);function a(e){var t=-1,n=null==e?0:e.length;for(this.__data__=new r;++t<n;)this.add(e[t])}a.prototype.add=a.prototype.push=o,a.prototype.has=i,e.exports=a},6384:(e,t,n)=>{var r=n(8407),o=n(7465),i=n(3779),a=n(7599),s=n(4758),l=n(4309);function u(e){var t=this.__data__=new r(e);this.size=t.size}u.prototype.clear=o,u.prototype.delete=i,u.prototype.get=a,u.prototype.has=s,u.prototype.set=l,e.exports=u},2705:(e,t,n)=>{var r=n(5639).Symbol;e.exports=r},1149:(e,t,n)=>{var r=n(5639).Uint8Array;e.exports=r},577:(e,t,n)=>{var r=n(852)(n(5639),"WeakMap");e.exports=r},4174:e=>{e.exports=function(e,t,n,r){for(var o=-1,i=null==e?0:e.length;++o<i;){var a=e[o];t(r,a,n(a),e)}return r}},196:e=>{e.exports=function(e,t){for(var n=-1,r=null==e?0:e.length,o=0,i=[];++n<r;){var a=e[n];t(a,n,e)&&(i[o++]=a)}return i}},4636:(e,t,n)=>{var r=n(2545),o=n(5694),i=n(1469),a=n(4144),s=n(5776),l=n(6719),u=Object.prototype.hasOwnProperty;e.exports=function(e,t){var n=i(e),c=!n&&o(e),f=!n&&!c&&a(e),p=!n&&!c&&!f&&l(e),d=n||c||f||p,h=d?r(e.length,String):[],m=h.length;for(var v in e)!t&&!u.call(e,v)||d&&("length"==v||f&&("offset"==v||"parent"==v)||p&&("buffer"==v||"byteLength"==v||"byteOffset"==v)||s(v,m))||h.push(v);return h}},9932:e=>{e.exports=function(e,t){for(var n=-1,r=null==e?0:e.length,o=Array(r);++n<r;)o[n]=t(e[n],n,e);return o}},2488:e=>{e.exports=function(e,t){for(var n=-1,r=t.length,o=e.length;++n<r;)e[o+n]=t[n];return e}},2908:e=>{e.exports=function(e,t){for(var n=-1,r=null==e?0:e.length;++n<r;)if(t(e[n],n,e))return!0;return!1}},8983:(e,t,n)=>{var r=n(371)("length");e.exports=r},4286:e=>{e.exports=function(e){return e.split("")}},8470:(e,t,n)=>{var r=n(7813);e.exports=function(e,t){for(var n=e.length;n--;)if(r(e[n][0],t))return n;return-1}},1119:(e,t,n)=>{var r=n(9881);e.exports=function(e,t,n,o){return r(e,(function(e,r,i){t(o,e,n(e),i)})),o}},9465:(e,t,n)=>{var r=n(8777);e.exports=function(e,t,n){"__proto__"==t&&r?r(e,t,{configurable:!0,enumerable:!0,value:n,writable:!0}):e[t]=n}},9881:(e,t,n)=>{var r=n(7816),o=n(9291)(r);e.exports=o},760:(e,t,n)=>{var r=n(9881);e.exports=function(e,t){var n=[];return r(e,(function(e,r,o){t(e,r,o)&&n.push(e)})),n}},1848:e=>{e.exports=function(e,t,n,r){for(var o=e.length,i=n+(r?1:-1);r?i--:++i<o;)if(t(e[i],i,e))return i;return-1}},8483:(e,t,n)=>{var r=n(5063)();e.exports=r},7816:(e,t,n)=>{var r=n(8483),o=n(3674);e.exports=function(e,t){return e&&r(e,t,o)}},7786:(e,t,n)=>{var r=n(1811),o=n(327);e.exports=function(e,t){for(var n=0,i=(t=r(t,e)).length;null!=e&&n<i;)e=e[o(t[n++])];return n&&n==i?e:void 0}},8866:(e,t,n)=>{var r=n(2488),o=n(1469);e.exports=function(e,t,n){var i=t(e);return o(e)?i:r(i,n(e))}},4239:(e,t,n)=>{var r=n(2705),o=n(9607),i=n(2333),a=r?r.toStringTag:void 0;e.exports=function(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":a&&a in Object(e)?o(e):i(e)}},8565:e=>{var t=Object.prototype.hasOwnProperty;e.exports=function(e,n){return null!=e&&t.call(e,n)}},13:e=>{e.exports=function(e,t){return null!=e&&t in Object(e)}},9454:(e,t,n)=>{var r=n(4239),o=n(7005);e.exports=function(e){return o(e)&&"[object Arguments]"==r(e)}},939:(e,t,n)=>{var r=n(2492),o=n(7005);e.exports=function e(t,n,i,a,s){return t===n||(null==t||null==n||!o(t)&&!o(n)?t!=t&&n!=n:r(t,n,i,a,e,s))}},2492:(e,t,n)=>{var r=n(6384),o=n(7114),i=n(1974),a=n(6096),s=n(8882),l=n(1469),u=n(4144),c=n(6719),f="[object Arguments]",p="[object Array]",d="[object Object]",h=Object.prototype.hasOwnProperty;e.exports=function(e,t,n,m,v,y){var g=l(e),b=l(t),w=g?p:s(e),x=b?p:s(t),E=(w=w==f?d:w)==d,S=(x=x==f?d:x)==d,_=w==x;if(_&&u(e)){if(!u(t))return!1;g=!0,E=!1}if(_&&!E)return y||(y=new r),g||c(e)?o(e,t,n,m,v,y):i(e,t,w,n,m,v,y);if(!(1&n)){var k=E&&h.call(e,"__wrapped__"),O=S&&h.call(t,"__wrapped__");if(k||O){var j=k?e.value():e,L=O?t.value():t;return y||(y=new r),v(j,L,n,m,y)}}return!!_&&(y||(y=new r),a(e,t,n,m,v,y))}},2958:(e,t,n)=>{var r=n(6384),o=n(939);e.exports=function(e,t,n,i){var a=n.length,s=a,l=!i;if(null==e)return!s;for(e=Object(e);a--;){var u=n[a];if(l&&u[2]?u[1]!==e[u[0]]:!(u[0]in e))return!1}for(;++a<s;){var c=(u=n[a])[0],f=e[c],p=u[1];if(l&&u[2]){if(void 0===f&&!(c in e))return!1}else{var d=new r;if(i)var h=i(f,p,c,e,t,d);if(!(void 0===h?o(p,f,3,i,d):h))return!1}}return!0}},8458:(e,t,n)=>{var r=n(3560),o=n(5346),i=n(9152),a=n(346),s=/^\[object .+?Constructor\]$/,l=Function.prototype,u=Object.prototype,c=l.toString,f=u.hasOwnProperty,p=RegExp("^"+c.call(f).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");e.exports=function(e){return!(!i(e)||o(e))&&(r(e)?p:s).test(a(e))}},3933:(e,t,n)=>{var r=n(4239),o=n(7005);e.exports=function(e){return o(e)&&"[object RegExp]"==r(e)}},8749:(e,t,n)=>{var r=n(4239),o=n(1780),i=n(7005),a={};a["[object Float32Array]"]=a["[object Float64Array]"]=a["[object Int8Array]"]=a["[object Int16Array]"]=a["[object Int32Array]"]=a["[object Uint8Array]"]=a["[object Uint8ClampedArray]"]=a["[object Uint16Array]"]=a["[object Uint32Array]"]=!0,a["[object Arguments]"]=a["[object Array]"]=a["[object ArrayBuffer]"]=a["[object Boolean]"]=a["[object DataView]"]=a["[object Date]"]=a["[object Error]"]=a["[object Function]"]=a["[object Map]"]=a["[object Number]"]=a["[object Object]"]=a["[object RegExp]"]=a["[object Set]"]=a["[object String]"]=a["[object WeakMap]"]=!1,e.exports=function(e){return i(e)&&o(e.length)&&!!a[r(e)]}},7206:(e,t,n)=>{var r=n(1573),o=n(6432),i=n(6557),a=n(1469),s=n(9601);e.exports=function(e){return"function"==typeof e?e:null==e?i:"object"==typeof e?a(e)?o(e[0],e[1]):r(e):s(e)}},280:(e,t,n)=>{var r=n(5726),o=n(6916),i=Object.prototype.hasOwnProperty;e.exports=function(e){if(!r(e))return o(e);var t=[];for(var n in Object(e))i.call(e,n)&&"constructor"!=n&&t.push(n);return t}},1573:(e,t,n)=>{var r=n(2958),o=n(1499),i=n(2634);e.exports=function(e){var t=o(e);return 1==t.length&&t[0][2]?i(t[0][0],t[0][1]):function(n){return n===e||r(n,e,t)}}},6432:(e,t,n)=>{var r=n(939),o=n(7361),i=n(9095),a=n(5403),s=n(9162),l=n(2634),u=n(327);e.exports=function(e,t){return a(e)&&s(t)?l(u(e),t):function(n){var a=o(n,e);return void 0===a&&a===t?i(n,e):r(t,a,3)}}},371:e=>{e.exports=function(e){return function(t){return null==t?void 0:t[e]}}},6374:(e,t,n)=>{var r=n(7786);e.exports=function(e){return function(t){return r(t,e)}}},4259:e=>{e.exports=function(e,t,n){var r=-1,o=e.length;t<0&&(t=-t>o?0:o+t),(n=n>o?o:n)<0&&(n+=o),o=t>n?0:n-t>>>0,t>>>=0;for(var i=Array(o);++r<o;)i[r]=e[r+t];return i}},2545:e=>{e.exports=function(e,t){for(var n=-1,r=Array(e);++n<e;)r[n]=t(n);return r}},531:(e,t,n)=>{var r=n(2705),o=n(9932),i=n(1469),a=n(3448),s=r?r.prototype:void 0,l=s?s.toString:void 0;e.exports=function e(t){if("string"==typeof t)return t;if(i(t))return o(t,e)+"";if(a(t))return l?l.call(t):"";var n=t+"";return"0"==n&&1/t==-1/0?"-0":n}},7561:(e,t,n)=>{var r=n(7990),o=/^\s+/;e.exports=function(e){return e?e.slice(0,r(e)+1).replace(o,""):e}},1717:e=>{e.exports=function(e){return function(t){return e(t)}}},4757:e=>{e.exports=function(e,t){return e.has(t)}},1811:(e,t,n)=>{var r=n(1469),o=n(5403),i=n(5514),a=n(9833);e.exports=function(e,t){return r(e)?e:o(e,t)?[e]:i(a(e))}},180:(e,t,n)=>{var r=n(4259);e.exports=function(e,t,n){var o=e.length;return n=void 0===n?o:n,!t&&n>=o?e:r(e,t,n)}},4429:(e,t,n)=>{var r=n(5639)["__core-js_shared__"];e.exports=r},5189:(e,t,n)=>{var r=n(4174),o=n(1119),i=n(7206),a=n(1469);e.exports=function(e,t){return function(n,s){var l=a(n)?r:o,u=t?t():{};return l(n,e,i(s,2),u)}}},9291:(e,t,n)=>{var r=n(8612);e.exports=function(e,t){return function(n,o){if(null==n)return n;if(!r(n))return e(n,o);for(var i=n.length,a=t?i:-1,s=Object(n);(t?a--:++a<i)&&!1!==o(s[a],a,s););return n}}},5063:e=>{e.exports=function(e){return function(t,n,r){for(var o=-1,i=Object(t),a=r(t),s=a.length;s--;){var l=a[e?s:++o];if(!1===n(i[l],l,i))break}return t}}},7740:(e,t,n)=>{var r=n(7206),o=n(8612),i=n(3674);e.exports=function(e){return function(t,n,a){var s=Object(t);if(!o(t)){var l=r(n,3);t=i(t),n=function(e){return l(s[e],e,s)}}var u=e(t,n,a);return u>-1?s[l?t[u]:u]:void 0}}},8777:(e,t,n)=>{var r=n(852),o=function(){try{var e=r(Object,"defineProperty");return e({},"",{}),e}catch(e){}}();e.exports=o},7114:(e,t,n)=>{var r=n(8668),o=n(2908),i=n(4757);e.exports=function(e,t,n,a,s,l){var u=1&n,c=e.length,f=t.length;if(c!=f&&!(u&&f>c))return!1;var p=l.get(e),d=l.get(t);if(p&&d)return p==t&&d==e;var h=-1,m=!0,v=2&n?new r:void 0;for(l.set(e,t),l.set(t,e);++h<c;){var y=e[h],g=t[h];if(a)var b=u?a(g,y,h,t,e,l):a(y,g,h,e,t,l);if(void 0!==b){if(b)continue;m=!1;break}if(v){if(!o(t,(function(e,t){if(!i(v,t)&&(y===e||s(y,e,n,a,l)))return v.push(t)}))){m=!1;break}}else if(y!==g&&!s(y,g,n,a,l)){m=!1;break}}return l.delete(e),l.delete(t),m}},1974:(e,t,n)=>{var r=n(2705),o=n(1149),i=n(7813),a=n(7114),s=n(8776),l=n(1814),u=r?r.prototype:void 0,c=u?u.valueOf:void 0;e.exports=function(e,t,n,r,u,f,p){switch(n){case"[object DataView]":if(e.byteLength!=t.byteLength||e.byteOffset!=t.byteOffset)return!1;e=e.buffer,t=t.buffer;case"[object ArrayBuffer]":return!(e.byteLength!=t.byteLength||!f(new o(e),new o(t)));case"[object Boolean]":case"[object Date]":case"[object Number]":return i(+e,+t);case"[object Error]":return e.name==t.name&&e.message==t.message;case"[object RegExp]":case"[object String]":return e==t+"";case"[object Map]":var d=s;case"[object Set]":var h=1&r;if(d||(d=l),e.size!=t.size&&!h)return!1;var m=p.get(e);if(m)return m==t;r|=2,p.set(e,t);var v=a(d(e),d(t),r,u,f,p);return p.delete(e),v;case"[object Symbol]":if(c)return c.call(e)==c.call(t)}return!1}},6096:(e,t,n)=>{var r=n(8234),o=Object.prototype.hasOwnProperty;e.exports=function(e,t,n,i,a,s){var l=1&n,u=r(e),c=u.length;if(c!=r(t).length&&!l)return!1;for(var f=c;f--;){var p=u[f];if(!(l?p in t:o.call(t,p)))return!1}var d=s.get(e),h=s.get(t);if(d&&h)return d==t&&h==e;var m=!0;s.set(e,t),s.set(t,e);for(var v=l;++f<c;){var y=e[p=u[f]],g=t[p];if(i)var b=l?i(g,y,p,t,e,s):i(y,g,p,e,t,s);if(!(void 0===b?y===g||a(y,g,n,i,s):b)){m=!1;break}v||(v="constructor"==p)}if(m&&!v){var w=e.constructor,x=t.constructor;w==x||!("constructor"in e)||!("constructor"in t)||"function"==typeof w&&w instanceof w&&"function"==typeof x&&x instanceof x||(m=!1)}return s.delete(e),s.delete(t),m}},1957:(e,t,n)=>{var r="object"==typeof n.g&&n.g&&n.g.Object===Object&&n.g;e.exports=r},8234:(e,t,n)=>{var r=n(8866),o=n(9551),i=n(3674);e.exports=function(e){return r(e,i,o)}},5050:(e,t,n)=>{var r=n(7019);e.exports=function(e,t){var n=e.__data__;return r(t)?n["string"==typeof t?"string":"hash"]:n.map}},1499:(e,t,n)=>{var r=n(9162),o=n(3674);e.exports=function(e){for(var t=o(e),n=t.length;n--;){var i=t[n],a=e[i];t[n]=[i,a,r(a)]}return t}},852:(e,t,n)=>{var r=n(8458),o=n(7801);e.exports=function(e,t){var n=o(e,t);return r(n)?n:void 0}},9607:(e,t,n)=>{var r=n(2705),o=Object.prototype,i=o.hasOwnProperty,a=o.toString,s=r?r.toStringTag:void 0;e.exports=function(e){var t=i.call(e,s),n=e[s];try{e[s]=void 0;var r=!0}catch(e){}var o=a.call(e);return r&&(t?e[s]=n:delete e[s]),o}},9551:(e,t,n)=>{var r=n(196),o=n(479),i=Object.prototype.propertyIsEnumerable,a=Object.getOwnPropertySymbols,s=a?function(e){return null==e?[]:(e=Object(e),r(a(e),(function(t){return i.call(e,t)})))}:o;e.exports=s},8882:(e,t,n)=>{var r=n(8552),o=n(7071),i=n(3818),a=n(8525),s=n(577),l=n(4239),u=n(346),c="[object Map]",f="[object Promise]",p="[object Set]",d="[object WeakMap]",h="[object DataView]",m=u(r),v=u(o),y=u(i),g=u(a),b=u(s),w=l;(r&&w(new r(new ArrayBuffer(1)))!=h||o&&w(new o)!=c||i&&w(i.resolve())!=f||a&&w(new a)!=p||s&&w(new s)!=d)&&(w=function(e){var t=l(e),n="[object Object]"==t?e.constructor:void 0,r=n?u(n):"";if(r)switch(r){case m:return h;case v:return c;case y:return f;case g:return p;case b:return d}return t}),e.exports=w},7801:e=>{e.exports=function(e,t){return null==e?void 0:e[t]}},222:(e,t,n)=>{var r=n(1811),o=n(5694),i=n(1469),a=n(5776),s=n(1780),l=n(327);e.exports=function(e,t,n){for(var u=-1,c=(t=r(t,e)).length,f=!1;++u<c;){var p=l(t[u]);if(!(f=null!=e&&n(e,p)))break;e=e[p]}return f||++u!=c?f:!!(c=null==e?0:e.length)&&s(c)&&a(p,c)&&(i(e)||o(e))}},2689:e=>{var t=RegExp("[\\u200d\\ud800-\\udfff\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff\\ufe0e\\ufe0f]");e.exports=function(e){return t.test(e)}},1789:(e,t,n)=>{var r=n(4536);e.exports=function(){this.__data__=r?r(null):{},this.size=0}},401:e=>{e.exports=function(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t}},7667:(e,t,n)=>{var r=n(4536),o=Object.prototype.hasOwnProperty;e.exports=function(e){var t=this.__data__;if(r){var n=t[e];return"__lodash_hash_undefined__"===n?void 0:n}return o.call(t,e)?t[e]:void 0}},1327:(e,t,n)=>{var r=n(4536),o=Object.prototype.hasOwnProperty;e.exports=function(e){var t=this.__data__;return r?void 0!==t[e]:o.call(t,e)}},1866:(e,t,n)=>{var r=n(4536);e.exports=function(e,t){var n=this.__data__;return this.size+=this.has(e)?0:1,n[e]=r&&void 0===t?"__lodash_hash_undefined__":t,this}},5776:e=>{var t=/^(?:0|[1-9]\d*)$/;e.exports=function(e,n){var r=typeof e;return!!(n=null==n?9007199254740991:n)&&("number"==r||"symbol"!=r&&t.test(e))&&e>-1&&e%1==0&&e<n}},5403:(e,t,n)=>{var r=n(1469),o=n(3448),i=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,a=/^\w*$/;e.exports=function(e,t){if(r(e))return!1;var n=typeof e;return!("number"!=n&&"symbol"!=n&&"boolean"!=n&&null!=e&&!o(e))||a.test(e)||!i.test(e)||null!=t&&e in Object(t)}},7019:e=>{e.exports=function(e){var t=typeof e;return"string"==t||"number"==t||"symbol"==t||"boolean"==t?"__proto__"!==e:null===e}},5346:(e,t,n)=>{var r,o=n(4429),i=(r=/[^.]+$/.exec(o&&o.keys&&o.keys.IE_PROTO||""))?"Symbol(src)_1."+r:"";e.exports=function(e){return!!i&&i in e}},5726:e=>{var t=Object.prototype;e.exports=function(e){var n=e&&e.constructor;return e===("function"==typeof n&&n.prototype||t)}},9162:(e,t,n)=>{var r=n(9152);e.exports=function(e){return e==e&&!r(e)}},7040:e=>{e.exports=function(){this.__data__=[],this.size=0}},4125:(e,t,n)=>{var r=n(8470),o=Array.prototype.splice;e.exports=function(e){var t=this.__data__,n=r(t,e);return!(n<0||(n==t.length-1?t.pop():o.call(t,n,1),--this.size,0))}},2117:(e,t,n)=>{var r=n(8470);e.exports=function(e){var t=this.__data__,n=r(t,e);return n<0?void 0:t[n][1]}},7518:(e,t,n)=>{var r=n(8470);e.exports=function(e){return r(this.__data__,e)>-1}},4705:(e,t,n)=>{var r=n(8470);e.exports=function(e,t){var n=this.__data__,o=r(n,e);return o<0?(++this.size,n.push([e,t])):n[o][1]=t,this}},4785:(e,t,n)=>{var r=n(1989),o=n(8407),i=n(7071);e.exports=function(){this.size=0,this.__data__={hash:new r,map:new(i||o),string:new r}}},1285:(e,t,n)=>{var r=n(5050);e.exports=function(e){var t=r(this,e).delete(e);return this.size-=t?1:0,t}},6e3:(e,t,n)=>{var r=n(5050);e.exports=function(e){return r(this,e).get(e)}},9916:(e,t,n)=>{var r=n(5050);e.exports=function(e){return r(this,e).has(e)}},5265:(e,t,n)=>{var r=n(5050);e.exports=function(e,t){var n=r(this,e),o=n.size;return n.set(e,t),this.size+=n.size==o?0:1,this}},8776:e=>{e.exports=function(e){var t=-1,n=Array(e.size);return e.forEach((function(e,r){n[++t]=[r,e]})),n}},2634:e=>{e.exports=function(e,t){return function(n){return null!=n&&n[e]===t&&(void 0!==t||e in Object(n))}}},4523:(e,t,n)=>{var r=n(5644);e.exports=function(e){var t=r(e,(function(e){return 500===n.size&&n.clear(),e})),n=t.cache;return t}},4536:(e,t,n)=>{var r=n(852)(Object,"create");e.exports=r},6916:(e,t,n)=>{var r=n(5569)(Object.keys,Object);e.exports=r},1167:(e,t,n)=>{e=n.nmd(e);var r=n(1957),o=t&&!t.nodeType&&t,i=o&&e&&!e.nodeType&&e,a=i&&i.exports===o&&r.process,s=function(){try{return i&&i.require&&i.require("util").types||a&&a.binding&&a.binding("util")}catch(e){}}();e.exports=s},2333:e=>{var t=Object.prototype.toString;e.exports=function(e){return t.call(e)}},5569:e=>{e.exports=function(e,t){return function(n){return e(t(n))}}},5639:(e,t,n)=>{var r=n(1957),o="object"==typeof self&&self&&self.Object===Object&&self,i=r||o||Function("return this")();e.exports=i},619:e=>{e.exports=function(e){return this.__data__.set(e,"__lodash_hash_undefined__"),this}},2385:e=>{e.exports=function(e){return this.__data__.has(e)}},1814:e=>{e.exports=function(e){var t=-1,n=Array(e.size);return e.forEach((function(e){n[++t]=e})),n}},7465:(e,t,n)=>{var r=n(8407);e.exports=function(){this.__data__=new r,this.size=0}},3779:e=>{e.exports=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n}},7599:e=>{e.exports=function(e){return this.__data__.get(e)}},4758:e=>{e.exports=function(e){return this.__data__.has(e)}},4309:(e,t,n)=>{var r=n(8407),o=n(7071),i=n(886);e.exports=function(e,t){var n=this.__data__;if(n instanceof r){var a=n.__data__;if(!o||a.length<199)return a.push([e,t]),this.size=++n.size,this;n=this.__data__=new i(a)}return n.set(e,t),this.size=n.size,this}},8016:(e,t,n)=>{var r=n(8983),o=n(2689),i=n(1903);e.exports=function(e){return o(e)?i(e):r(e)}},3140:(e,t,n)=>{var r=n(4286),o=n(2689),i=n(676);e.exports=function(e){return o(e)?i(e):r(e)}},5514:(e,t,n)=>{var r=n(4523),o=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,i=/\\(\\)?/g,a=r((function(e){var t=[];return 46===e.charCodeAt(0)&&t.push(""),e.replace(o,(function(e,n,r,o){t.push(r?o.replace(i,"$1"):n||e)})),t}));e.exports=a},327:(e,t,n)=>{var r=n(3448);e.exports=function(e){if("string"==typeof e||r(e))return e;var t=e+"";return"0"==t&&1/e==-1/0?"-0":t}},346:e=>{var t=Function.prototype.toString;e.exports=function(e){if(null!=e){try{return t.call(e)}catch(e){}try{return e+""}catch(e){}}return""}},7990:e=>{var t=/\s/;e.exports=function(e){for(var n=e.length;n--&&t.test(e.charAt(n)););return n}},1903:e=>{var t="[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]",n="\\ud83c[\\udffb-\\udfff]",r="[^\\ud800-\\udfff]",o="(?:\\ud83c[\\udde6-\\uddff]){2}",i="[\\ud800-\\udbff][\\udc00-\\udfff]",a="(?:"+t+"|"+n+")?",s="[\\ufe0e\\ufe0f]?",l=s+a+"(?:\\u200d(?:"+[r,o,i].join("|")+")"+s+a+")*",u="(?:"+[r+t+"?",t,o,i,"[\\ud800-\\udfff]"].join("|")+")",c=RegExp(n+"(?="+n+")|"+u+l,"g");e.exports=function(e){for(var t=c.lastIndex=0;c.test(e);)++t;return t}},676:e=>{var t="[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]",n="\\ud83c[\\udffb-\\udfff]",r="[^\\ud800-\\udfff]",o="(?:\\ud83c[\\udde6-\\uddff]){2}",i="[\\ud800-\\udbff][\\udc00-\\udfff]",a="(?:"+t+"|"+n+")?",s="[\\ufe0e\\ufe0f]?",l=s+a+"(?:\\u200d(?:"+[r,o,i].join("|")+")"+s+a+")*",u="(?:"+[r+t+"?",t,o,i,"[\\ud800-\\udfff]"].join("|")+")",c=RegExp(n+"(?="+n+")|"+u+l,"g");e.exports=function(e){return e.match(c)||[]}},9995:(e,t,n)=>{var r=n(9465),o=n(5189),i=Object.prototype.hasOwnProperty,a=o((function(e,t,n){i.call(e,n)?++e[n]:r(e,n,1)}));e.exports=a},3279:(e,t,n)=>{var r=n(9152),o=n(7771),i=n(4841),a=Math.max,s=Math.min;e.exports=function(e,t,n){var l,u,c,f,p,d,h=0,m=!1,v=!1,y=!0;if("function"!=typeof e)throw new TypeError("Expected a function");function g(t){var n=l,r=u;return l=u=void 0,h=t,f=e.apply(r,n)}function b(e){return h=e,p=setTimeout(x,t),m?g(e):f}function w(e){var n=e-d;return void 0===d||n>=t||n<0||v&&e-h>=c}function x(){var e=o();if(w(e))return E(e);p=setTimeout(x,function(e){var n=t-(e-d);return v?s(n,c-(e-h)):n}(e))}function E(e){return p=void 0,y&&l?g(e):(l=u=void 0,f)}function S(){var e=o(),n=w(e);if(l=arguments,u=this,d=e,n){if(void 0===p)return b(d);if(v)return clearTimeout(p),p=setTimeout(x,t),g(d)}return void 0===p&&(p=setTimeout(x,t)),f}return t=i(t)||0,r(n)&&(m=!!n.leading,c=(v="maxWait"in n)?a(i(n.maxWait)||0,t):c,y="trailing"in n?!!n.trailing:y),S.cancel=function(){void 0!==p&&clearTimeout(p),h=0,l=d=u=p=void 0},S.flush=function(){return void 0===p?f:E(o())},S}},7813:e=>{e.exports=function(e,t){return e===t||e!=e&&t!=t}},3105:(e,t,n)=>{var r=n(196),o=n(760),i=n(7206),a=n(1469);e.exports=function(e,t){return(a(e)?r:o)(e,i(t,3))}},3311:(e,t,n)=>{var r=n(7740)(n(998));e.exports=r},998:(e,t,n)=>{var r=n(1848),o=n(7206),i=n(554),a=Math.max;e.exports=function(e,t,n){var s=null==e?0:e.length;if(!s)return-1;var l=null==n?0:i(n);return l<0&&(l=a(s+l,0)),r(e,o(t,3),l)}},8804:(e,t,n)=>{e.exports=n(1175)},7361:(e,t,n)=>{var r=n(7786);e.exports=function(e,t,n){var o=null==e?void 0:r(e,t);return void 0===o?n:o}},7739:(e,t,n)=>{var r=n(9465),o=n(5189),i=Object.prototype.hasOwnProperty,a=o((function(e,t,n){i.call(e,n)?e[n].push(t):r(e,n,[t])}));e.exports=a},8721:(e,t,n)=>{var r=n(8565),o=n(222);e.exports=function(e,t){return null!=e&&o(e,t,r)}},9095:(e,t,n)=>{var r=n(13),o=n(222);e.exports=function(e,t){return null!=e&&o(e,t,r)}},1175:e=>{e.exports=function(e){return e&&e.length?e[0]:void 0}},6557:e=>{e.exports=function(e){return e}},5694:(e,t,n)=>{var r=n(9454),o=n(7005),i=Object.prototype,a=i.hasOwnProperty,s=i.propertyIsEnumerable,l=r(function(){return arguments}())?r:function(e){return o(e)&&a.call(e,"callee")&&!s.call(e,"callee")};e.exports=l},1469:e=>{var t=Array.isArray;e.exports=t},8612:(e,t,n)=>{var r=n(3560),o=n(1780);e.exports=function(e){return null!=e&&o(e.length)&&!r(e)}},4144:(e,t,n)=>{e=n.nmd(e);var r=n(5639),o=n(5062),i=t&&!t.nodeType&&t,a=i&&e&&!e.nodeType&&e,s=a&&a.exports===i?r.Buffer:void 0,l=(s?s.isBuffer:void 0)||o;e.exports=l},1609:(e,t,n)=>{var r=n(280),o=n(8882),i=n(5694),a=n(1469),s=n(8612),l=n(4144),u=n(5726),c=n(6719),f=Object.prototype.hasOwnProperty;e.exports=function(e){if(null==e)return!0;if(s(e)&&(a(e)||"string"==typeof e||"function"==typeof e.splice||l(e)||c(e)||i(e)))return!e.length;var t=o(e);if("[object Map]"==t||"[object Set]"==t)return!e.size;if(u(e))return!r(e).length;for(var n in e)if(f.call(e,n))return!1;return!0}},3560:(e,t,n)=>{var r=n(4239),o=n(9152);e.exports=function(e){if(!o(e))return!1;var t=r(e);return"[object Function]"==t||"[object GeneratorFunction]"==t||"[object AsyncFunction]"==t||"[object Proxy]"==t}},1780:e=>{e.exports=function(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=9007199254740991}},4293:e=>{e.exports=function(e){return null==e}},9152:e=>{e.exports=function(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}},7005:e=>{e.exports=function(e){return null!=e&&"object"==typeof e}},6347:(e,t,n)=>{var r=n(3933),o=n(1717),i=n(1167),a=i&&i.isRegExp,s=a?o(a):r;e.exports=s},3448:(e,t,n)=>{var r=n(4239),o=n(7005);e.exports=function(e){return"symbol"==typeof e||o(e)&&"[object Symbol]"==r(e)}},6719:(e,t,n)=>{var r=n(8749),o=n(1717),i=n(1167),a=i&&i.isTypedArray,s=a?o(a):r;e.exports=s},4350:(e,t,n)=>{var r=n(9465),o=n(5189)((function(e,t,n){r(e,n,t)}));e.exports=o},3674:(e,t,n)=>{var r=n(4636),o=n(280),i=n(8612);e.exports=function(e){return i(e)?r(e):o(e)}},6604:(e,t,n)=>{var r=n(9465),o=n(7816),i=n(7206);e.exports=function(e,t){var n={};return t=i(t,3),o(e,(function(e,o,i){r(n,o,t(e,o,i))})),n}},5644:(e,t,n)=>{var r=n(886);function o(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)throw new TypeError("Expected a function");var n=function(){var r=arguments,o=t?t.apply(this,r):r[0],i=n.cache;if(i.has(o))return i.get(o);var a=e.apply(this,r);return n.cache=i.set(o,a)||i,a};return n.cache=new(o.Cache||r),n}o.Cache=r,e.exports=o},7771:(e,t,n)=>{var r=n(5639);e.exports=function(){return r.Date.now()}},9601:(e,t,n)=>{var r=n(371),o=n(6374),i=n(5403),a=n(327);e.exports=function(e){return i(e)?r(a(e)):o(e)}},479:e=>{e.exports=function(){return[]}},5062:e=>{e.exports=function(){return!1}},8601:(e,t,n)=>{var r=n(4841);e.exports=function(e){return e?Infinity===(e=r(e))||e===-1/0?17976931348623157e292*(e<0?-1:1):e==e?e:0:0===e?e:0}},554:(e,t,n)=>{var r=n(8601);e.exports=function(e){var t=r(e),n=t%1;return t==t?n?t-n:t:0}},4841:(e,t,n)=>{var r=n(7561),o=n(9152),i=n(3448),a=/^[-+]0x[0-9a-f]+$/i,s=/^0b[01]+$/i,l=/^0o[0-7]+$/i,u=parseInt;e.exports=function(e){if("number"==typeof e)return e;if(i(e))return NaN;if(o(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=o(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=r(e);var n=s.test(e);return n||l.test(e)?u(e.slice(2),n?2:8):a.test(e)?NaN:+e}},9833:(e,t,n)=>{var r=n(531);e.exports=function(e){return null==e?"":r(e)}},9138:(e,t,n)=>{var r=n(531),o=n(180),i=n(2689),a=n(9152),s=n(6347),l=n(8016),u=n(3140),c=n(554),f=n(9833),p=/\w*$/;e.exports=function(e,t){var n=30,d="...";if(a(t)){var h="separator"in t?t.separator:h;n="length"in t?c(t.length):n,d="omission"in t?r(t.omission):d}var m=(e=f(e)).length;if(i(e)){var v=u(e);m=v.length}if(n>=m)return e;var y=n-l(d);if(y<1)return d;var g=v?o(v,0,y).join(""):e.slice(0,y);if(void 0===h)return g+d;if(v&&(y+=g.length-y),s(h)){if(e.slice(y).search(h)){var b,w=g;for(h.global||(h=RegExp(h.source,f(p.exec(h))+"g")),h.lastIndex=0;b=h.exec(w);)var x=b.index;g=g.slice(0,void 0===x?y:x)}}else if(e.indexOf(r(h),y)!=y){var E=g.lastIndexOf(h);E>-1&&(g=g.slice(0,E))}return g+d}},4300:(e,t,n)=>{"use strict";function r(e){return 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},r(e)}Object.defineProperty(t,"__esModule",{value:!0}),t.CopyToClipboard=void 0;var o=s(n(7294)),i=s(n(640)),a=["text","onCopy","options","children"];function s(e){return e&&e.__esModule?e:{default:e}}function l(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function u(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?l(Object(n),!0).forEach((function(t){v(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):l(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function f(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function p(e,t){return p=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},p(e,t)}function d(e,t){if(t&&("object"===r(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return h(e)}function h(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function m(e){return m=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},m(e)}function v(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var y=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&p(e,t)}(y,e);var t,n,r,s,l=(r=y,s=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}(),function(){var e,t=m(r);if(s){var n=m(this).constructor;e=Reflect.construct(t,arguments,n)}else e=t.apply(this,arguments);return d(this,e)});function y(){var e;c(this,y);for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];return v(h(e=l.call.apply(l,[this].concat(n))),"onClick",(function(t){var n=e.props,r=n.text,a=n.onCopy,s=n.children,l=n.options,u=o.default.Children.only(s),c=(0,i.default)(r,l);a&&a(r,c),u&&u.props&&"function"==typeof u.props.onClick&&u.props.onClick(t)})),e}return t=y,(n=[{key:"render",value:function(){var e=this.props,t=(e.text,e.onCopy,e.options,e.children),n=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,a),r=o.default.Children.only(t);return o.default.cloneElement(r,u(u({},n),{},{onClick:this.onClick}))}}])&&f(t.prototype,n),Object.defineProperty(t,"prototype",{writable:!1}),y}(o.default.PureComponent);t.CopyToClipboard=y,v(y,"defaultProps",{onCopy:void 0,options:void 0})},4855:(e,t,n)=>{"use strict";var r=n(4300).CopyToClipboard;r.CopyToClipboard=r,e.exports=r},4448:(e,t,n)=>{"use strict";var r=n(7294),o=n(3840);function i(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var a=new Set,s={};function l(e,t){u(e,t),u(e+"Capture",t)}function u(e,t){for(s[e]=t,e=0;e<t.length;e++)a.add(t[e])}var c=!("undefined"==typeof window||void 0===window.document||void 0===window.document.createElement),f=Object.prototype.hasOwnProperty,p=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,d={},h={};function m(e,t,n,r,o,i,a){this.acceptsBooleans=2===t||3===t||4===t,this.attributeName=r,this.attributeNamespace=o,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=i,this.removeEmptyString=a}var v={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach((function(e){v[e]=new m(e,0,!1,e,null,!1,!1)})),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach((function(e){var t=e[0];v[t]=new m(t,1,!1,e[1],null,!1,!1)})),["contentEditable","draggable","spellCheck","value"].forEach((function(e){v[e]=new m(e,2,!1,e.toLowerCase(),null,!1,!1)})),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach((function(e){v[e]=new m(e,2,!1,e,null,!1,!1)})),"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach((function(e){v[e]=new m(e,3,!1,e.toLowerCase(),null,!1,!1)})),["checked","multiple","muted","selected"].forEach((function(e){v[e]=new m(e,3,!0,e,null,!1,!1)})),["capture","download"].forEach((function(e){v[e]=new m(e,4,!1,e,null,!1,!1)})),["cols","rows","size","span"].forEach((function(e){v[e]=new m(e,6,!1,e,null,!1,!1)})),["rowSpan","start"].forEach((function(e){v[e]=new m(e,5,!1,e.toLowerCase(),null,!1,!1)}));var y=/[\-:]([a-z])/g;function g(e){return e[1].toUpperCase()}function b(e,t,n,r){var o=v.hasOwnProperty(t)?v[t]:null;(null!==o?0!==o.type:r||!(2<t.length)||"o"!==t[0]&&"O"!==t[0]||"n"!==t[1]&&"N"!==t[1])&&(function(e,t,n,r){if(null==t||function(e,t,n,r){if(null!==n&&0===n.type)return!1;switch(typeof t){case"function":case"symbol":return!0;case"boolean":return!r&&(null!==n?!n.acceptsBooleans:"data-"!==(e=e.toLowerCase().slice(0,5))&&"aria-"!==e);default:return!1}}(e,t,n,r))return!0;if(r)return!1;if(null!==n)switch(n.type){case 3:return!t;case 4:return!1===t;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}(t,n,o,r)&&(n=null),r||null===o?function(e){return!!f.call(h,e)||!f.call(d,e)&&(p.test(e)?h[e]=!0:(d[e]=!0,!1))}(t)&&(null===n?e.removeAttribute(t):e.setAttribute(t,""+n)):o.mustUseProperty?e[o.propertyName]=null===n?3!==o.type&&"":n:(t=o.attributeName,r=o.attributeNamespace,null===n?e.removeAttribute(t):(n=3===(o=o.type)||4===o&&!0===n?"":""+n,r?e.setAttributeNS(r,t,n):e.setAttribute(t,n))))}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach((function(e){var t=e.replace(y,g);v[t]=new m(t,1,!1,e,null,!1,!1)})),"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach((function(e){var t=e.replace(y,g);v[t]=new m(t,1,!1,e,"http://www.w3.org/1999/xlink",!1,!1)})),["xml:base","xml:lang","xml:space"].forEach((function(e){var t=e.replace(y,g);v[t]=new m(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)})),["tabIndex","crossOrigin"].forEach((function(e){v[e]=new m(e,1,!1,e.toLowerCase(),null,!1,!1)})),v.xlinkHref=new m("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1),["src","href","action","formAction"].forEach((function(e){v[e]=new m(e,1,!1,e.toLowerCase(),null,!0,!0)}));var w=r.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,x=Symbol.for("react.element"),E=Symbol.for("react.portal"),S=Symbol.for("react.fragment"),_=Symbol.for("react.strict_mode"),k=Symbol.for("react.profiler"),O=Symbol.for("react.provider"),j=Symbol.for("react.context"),L=Symbol.for("react.forward_ref"),C=Symbol.for("react.suspense"),P=Symbol.for("react.suspense_list"),A=Symbol.for("react.memo"),T=Symbol.for("react.lazy");Symbol.for("react.scope"),Symbol.for("react.debug_trace_mode");var I=Symbol.for("react.offscreen");Symbol.for("react.legacy_hidden"),Symbol.for("react.cache"),Symbol.for("react.tracing_marker");var N=Symbol.iterator;function F(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=N&&e[N]||e["@@iterator"])?e:null}var R,M=Object.assign;function D(e){if(void 0===R)try{throw Error()}catch(e){var t=e.stack.trim().match(/\n( *(at )?)/);R=t&&t[1]||""}return"\n"+R+e}var z=!1;function U(e,t){if(!e||z)return"";z=!0;var n=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{if(t)if(t=function(){throw Error()},Object.defineProperty(t.prototype,"props",{set:function(){throw Error()}}),"object"==typeof Reflect&&Reflect.construct){try{Reflect.construct(t,[])}catch(e){var r=e}Reflect.construct(e,[],t)}else{try{t.call()}catch(e){r=e}e.call(t.prototype)}else{try{throw Error()}catch(e){r=e}e()}}catch(t){if(t&&r&&"string"==typeof t.stack){for(var o=t.stack.split("\n"),i=r.stack.split("\n"),a=o.length-1,s=i.length-1;1<=a&&0<=s&&o[a]!==i[s];)s--;for(;1<=a&&0<=s;a--,s--)if(o[a]!==i[s]){if(1!==a||1!==s)do{if(a--,0>--s||o[a]!==i[s]){var l="\n"+o[a].replace(" at new "," at ");return e.displayName&&l.includes("<anonymous>")&&(l=l.replace("<anonymous>",e.displayName)),l}}while(1<=a&&0<=s);break}}}finally{z=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:"")?D(e):""}function V(e){switch(e.tag){case 5:return D(e.type);case 16:return D("Lazy");case 13:return D("Suspense");case 19:return D("SuspenseList");case 0:case 2:case 15:return U(e.type,!1);case 11:return U(e.type.render,!1);case 1:return U(e.type,!0);default:return""}}function G(e){if(null==e)return null;if("function"==typeof e)return e.displayName||e.name||null;if("string"==typeof e)return e;switch(e){case S:return"Fragment";case E:return"Portal";case k:return"Profiler";case _:return"StrictMode";case C:return"Suspense";case P:return"SuspenseList"}if("object"==typeof e)switch(e.$$typeof){case j:return(e.displayName||"Context")+".Consumer";case O:return(e._context.displayName||"Context")+".Provider";case L:var t=e.render;return(e=e.displayName)||(e=""!==(e=t.displayName||t.name||"")?"ForwardRef("+e+")":"ForwardRef"),e;case A:return null!==(t=e.displayName||null)?t:G(e.type)||"Memo";case T:t=e._payload,e=e._init;try{return G(e(t))}catch(e){}}return null}function B(e){var t=e.type;switch(e.tag){case 24:return"Cache";case 9:return(t.displayName||"Context")+".Consumer";case 10:return(t._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return e=(e=t.render).displayName||e.name||"",t.displayName||(""!==e?"ForwardRef("+e+")":"ForwardRef");case 7:return"Fragment";case 5:return t;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return G(t);case 8:return t===_?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 17:case 2:case 14:case 15:if("function"==typeof t)return t.displayName||t.name||null;if("string"==typeof t)return t}return null}function W(e){switch(typeof e){case"boolean":case"number":case"string":case"undefined":case"object":return e;default:return""}}function H(e){var t=e.type;return(e=e.nodeName)&&"input"===e.toLowerCase()&&("checkbox"===t||"radio"===t)}function $(e){e._valueTracker||(e._valueTracker=function(e){var t=H(e)?"checked":"value",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),r=""+e[t];if(!e.hasOwnProperty(t)&&void 0!==n&&"function"==typeof n.get&&"function"==typeof n.set){var o=n.get,i=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return o.call(this)},set:function(e){r=""+e,i.call(this,e)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return r},setValue:function(e){r=""+e},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}(e))}function Y(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r="";return e&&(r=H(e)?e.checked?"true":"false":e.value),(e=r)!==n&&(t.setValue(e),!0)}function q(e){if(void 0===(e=e||("undefined"!=typeof document?document:void 0)))return null;try{return e.activeElement||e.body}catch(t){return e.body}}function Q(e,t){var n=t.checked;return M({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:null!=n?n:e._wrapperState.initialChecked})}function X(e,t){var n=null==t.defaultValue?"":t.defaultValue,r=null!=t.checked?t.checked:t.defaultChecked;n=W(null!=t.value?t.value:n),e._wrapperState={initialChecked:r,initialValue:n,controlled:"checkbox"===t.type||"radio"===t.type?null!=t.checked:null!=t.value}}function K(e,t){null!=(t=t.checked)&&b(e,"checked",t,!1)}function J(e,t){K(e,t);var n=W(t.value),r=t.type;if(null!=n)"number"===r?(0===n&&""===e.value||e.value!=n)&&(e.value=""+n):e.value!==""+n&&(e.value=""+n);else if("submit"===r||"reset"===r)return void e.removeAttribute("value");t.hasOwnProperty("value")?ee(e,t.type,n):t.hasOwnProperty("defaultValue")&&ee(e,t.type,W(t.defaultValue)),null==t.checked&&null!=t.defaultChecked&&(e.defaultChecked=!!t.defaultChecked)}function Z(e,t,n){if(t.hasOwnProperty("value")||t.hasOwnProperty("defaultValue")){var r=t.type;if(!("submit"!==r&&"reset"!==r||void 0!==t.value&&null!==t.value))return;t=""+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}""!==(n=e.name)&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,""!==n&&(e.name=n)}function ee(e,t,n){"number"===t&&q(e.ownerDocument)===e||(null==n?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}var te=Array.isArray;function ne(e,t,n,r){if(e=e.options,t){t={};for(var o=0;o<n.length;o++)t["$"+n[o]]=!0;for(n=0;n<e.length;n++)o=t.hasOwnProperty("$"+e[n].value),e[n].selected!==o&&(e[n].selected=o),o&&r&&(e[n].defaultSelected=!0)}else{for(n=""+W(n),t=null,o=0;o<e.length;o++){if(e[o].value===n)return e[o].selected=!0,void(r&&(e[o].defaultSelected=!0));null!==t||e[o].disabled||(t=e[o])}null!==t&&(t.selected=!0)}}function re(e,t){if(null!=t.dangerouslySetInnerHTML)throw Error(i(91));return M({},t,{value:void 0,defaultValue:void 0,children:""+e._wrapperState.initialValue})}function oe(e,t){var n=t.value;if(null==n){if(n=t.children,t=t.defaultValue,null!=n){if(null!=t)throw Error(i(92));if(te(n)){if(1<n.length)throw Error(i(93));n=n[0]}t=n}null==t&&(t=""),n=t}e._wrapperState={initialValue:W(n)}}function ie(e,t){var n=W(t.value),r=W(t.defaultValue);null!=n&&((n=""+n)!==e.value&&(e.value=n),null==t.defaultValue&&e.defaultValue!==n&&(e.defaultValue=n)),null!=r&&(e.defaultValue=""+r)}function ae(e){var t=e.textContent;t===e._wrapperState.initialValue&&""!==t&&null!==t&&(e.value=t)}function se(e){switch(e){case"svg":return"http://www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function le(e,t){return null==e||"http://www.w3.org/1999/xhtml"===e?se(t):"http://www.w3.org/2000/svg"===e&&"foreignObject"===t?"http://www.w3.org/1999/xhtml":e}var ue,ce,fe=(ce=function(e,t){if("http://www.w3.org/2000/svg"!==e.namespaceURI||"innerHTML"in e)e.innerHTML=t;else{for((ue=ue||document.createElement("div")).innerHTML="<svg>"+t.valueOf().toString()+"</svg>",t=ue.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}},"undefined"!=typeof MSApp&&MSApp.execUnsafeLocalFunction?function(e,t,n,r){MSApp.execUnsafeLocalFunction((function(){return ce(e,t)}))}:ce);function pe(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&3===n.nodeType)return void(n.nodeValue=t)}e.textContent=t}var de={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},he=["Webkit","ms","Moz","O"];function me(e,t,n){return null==t||"boolean"==typeof t||""===t?"":n||"number"!=typeof t||0===t||de.hasOwnProperty(e)&&de[e]?(""+t).trim():t+"px"}function ve(e,t){for(var n in e=e.style,t)if(t.hasOwnProperty(n)){var r=0===n.indexOf("--"),o=me(n,t[n],r);"float"===n&&(n="cssFloat"),r?e.setProperty(n,o):e[n]=o}}Object.keys(de).forEach((function(e){he.forEach((function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),de[t]=de[e]}))}));var ye=M({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function ge(e,t){if(t){if(ye[e]&&(null!=t.children||null!=t.dangerouslySetInnerHTML))throw Error(i(137,e));if(null!=t.dangerouslySetInnerHTML){if(null!=t.children)throw Error(i(60));if("object"!=typeof t.dangerouslySetInnerHTML||!("__html"in t.dangerouslySetInnerHTML))throw Error(i(61))}if(null!=t.style&&"object"!=typeof t.style)throw Error(i(62))}}function be(e,t){if(-1===e.indexOf("-"))return"string"==typeof t.is;switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var we=null;function xe(e){return(e=e.target||e.srcElement||window).correspondingUseElement&&(e=e.correspondingUseElement),3===e.nodeType?e.parentNode:e}var Ee=null,Se=null,_e=null;function ke(e){if(e=wo(e)){if("function"!=typeof Ee)throw Error(i(280));var t=e.stateNode;t&&(t=Eo(t),Ee(e.stateNode,e.type,t))}}function Oe(e){Se?_e?_e.push(e):_e=[e]:Se=e}function je(){if(Se){var e=Se,t=_e;if(_e=Se=null,ke(e),t)for(e=0;e<t.length;e++)ke(t[e])}}function Le(e,t){return e(t)}function Ce(){}var Pe=!1;function Ae(e,t,n){if(Pe)return e(t,n);Pe=!0;try{return Le(e,t,n)}finally{Pe=!1,(null!==Se||null!==_e)&&(Ce(),je())}}function Te(e,t){var n=e.stateNode;if(null===n)return null;var r=Eo(n);if(null===r)return null;n=r[t];e:switch(t){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(r=!r.disabled)||(r=!("button"===(e=e.type)||"input"===e||"select"===e||"textarea"===e)),e=!r;break e;default:e=!1}if(e)return null;if(n&&"function"!=typeof n)throw Error(i(231,t,typeof n));return n}var Ie=!1;if(c)try{var Ne={};Object.defineProperty(Ne,"passive",{get:function(){Ie=!0}}),window.addEventListener("test",Ne,Ne),window.removeEventListener("test",Ne,Ne)}catch(ce){Ie=!1}function Fe(e,t,n,r,o,i,a,s,l){var u=Array.prototype.slice.call(arguments,3);try{t.apply(n,u)}catch(e){this.onError(e)}}var Re=!1,Me=null,De=!1,ze=null,Ue={onError:function(e){Re=!0,Me=e}};function Ve(e,t,n,r,o,i,a,s,l){Re=!1,Me=null,Fe.apply(Ue,arguments)}function Ge(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do{0!=(4098&(t=e).flags)&&(n=t.return),e=t.return}while(e)}return 3===t.tag?n:null}function Be(e){if(13===e.tag){var t=e.memoizedState;if(null===t&&null!==(e=e.alternate)&&(t=e.memoizedState),null!==t)return t.dehydrated}return null}function We(e){if(Ge(e)!==e)throw Error(i(188))}function He(e){return null!==(e=function(e){var t=e.alternate;if(!t){if(null===(t=Ge(e)))throw Error(i(188));return t!==e?null:e}for(var n=e,r=t;;){var o=n.return;if(null===o)break;var a=o.alternate;if(null===a){if(null!==(r=o.return)){n=r;continue}break}if(o.child===a.child){for(a=o.child;a;){if(a===n)return We(o),e;if(a===r)return We(o),t;a=a.sibling}throw Error(i(188))}if(n.return!==r.return)n=o,r=a;else{for(var s=!1,l=o.child;l;){if(l===n){s=!0,n=o,r=a;break}if(l===r){s=!0,r=o,n=a;break}l=l.sibling}if(!s){for(l=a.child;l;){if(l===n){s=!0,n=a,r=o;break}if(l===r){s=!0,r=a,n=o;break}l=l.sibling}if(!s)throw Error(i(189))}}if(n.alternate!==r)throw Error(i(190))}if(3!==n.tag)throw Error(i(188));return n.stateNode.current===n?e:t}(e))?$e(e):null}function $e(e){if(5===e.tag||6===e.tag)return e;for(e=e.child;null!==e;){var t=$e(e);if(null!==t)return t;e=e.sibling}return null}var Ye=o.unstable_scheduleCallback,qe=o.unstable_cancelCallback,Qe=o.unstable_shouldYield,Xe=o.unstable_requestPaint,Ke=o.unstable_now,Je=o.unstable_getCurrentPriorityLevel,Ze=o.unstable_ImmediatePriority,et=o.unstable_UserBlockingPriority,tt=o.unstable_NormalPriority,nt=o.unstable_LowPriority,rt=o.unstable_IdlePriority,ot=null,it=null,at=Math.clz32?Math.clz32:function(e){return 0==(e>>>=0)?32:31-(st(e)/lt|0)|0},st=Math.log,lt=Math.LN2,ut=64,ct=4194304;function ft(e){switch(e&-e){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return 4194240&e;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return 130023424&e;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return e}}function pt(e,t){var n=e.pendingLanes;if(0===n)return 0;var r=0,o=e.suspendedLanes,i=e.pingedLanes,a=268435455&n;if(0!==a){var s=a&~o;0!==s?r=ft(s):0!=(i&=a)&&(r=ft(i))}else 0!=(a=n&~o)?r=ft(a):0!==i&&(r=ft(i));if(0===r)return 0;if(0!==t&&t!==r&&0==(t&o)&&((o=r&-r)>=(i=t&-t)||16===o&&0!=(4194240&i)))return t;if(0!=(4&r)&&(r|=16&n),0!==(t=e.entangledLanes))for(e=e.entanglements,t&=r;0<t;)o=1<<(n=31-at(t)),r|=e[n],t&=~o;return r}function dt(e,t){switch(e){case 1:case 2:case 4:return t+250;case 8:case 16:case 32:case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return t+5e3;default:return-1}}function ht(e){return 0!=(e=-1073741825&e.pendingLanes)?e:1073741824&e?1073741824:0}function mt(){var e=ut;return 0==(4194240&(ut<<=1))&&(ut=64),e}function vt(e){for(var t=[],n=0;31>n;n++)t.push(e);return t}function yt(e,t,n){e.pendingLanes|=t,536870912!==t&&(e.suspendedLanes=0,e.pingedLanes=0),(e=e.eventTimes)[t=31-at(t)]=n}function gt(e,t){var n=e.entangledLanes|=t;for(e=e.entanglements;n;){var r=31-at(n),o=1<<r;o&t|e[r]&t&&(e[r]|=t),n&=~o}}var bt=0;function wt(e){return 1<(e&=-e)?4<e?0!=(268435455&e)?16:536870912:4:1}var xt,Et,St,_t,kt,Ot=!1,jt=[],Lt=null,Ct=null,Pt=null,At=new Map,Tt=new Map,It=[],Nt="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit".split(" ");function Ft(e,t){switch(e){case"focusin":case"focusout":Lt=null;break;case"dragenter":case"dragleave":Ct=null;break;case"mouseover":case"mouseout":Pt=null;break;case"pointerover":case"pointerout":At.delete(t.pointerId);break;case"gotpointercapture":case"lostpointercapture":Tt.delete(t.pointerId)}}function Rt(e,t,n,r,o,i){return null===e||e.nativeEvent!==i?(e={blockedOn:t,domEventName:n,eventSystemFlags:r,nativeEvent:i,targetContainers:[o]},null!==t&&null!==(t=wo(t))&&Et(t),e):(e.eventSystemFlags|=r,t=e.targetContainers,null!==o&&-1===t.indexOf(o)&&t.push(o),e)}function Mt(e){var t=bo(e.target);if(null!==t){var n=Ge(t);if(null!==n)if(13===(t=n.tag)){if(null!==(t=Be(n)))return e.blockedOn=t,void kt(e.priority,(function(){St(n)}))}else if(3===t&&n.stateNode.current.memoizedState.isDehydrated)return void(e.blockedOn=3===n.tag?n.stateNode.containerInfo:null)}e.blockedOn=null}function Dt(e){if(null!==e.blockedOn)return!1;for(var t=e.targetContainers;0<t.length;){var n=Qt(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==n)return null!==(t=wo(n))&&Et(t),e.blockedOn=n,!1;var r=new(n=e.nativeEvent).constructor(n.type,n);we=r,n.target.dispatchEvent(r),we=null,t.shift()}return!0}function zt(e,t,n){Dt(e)&&n.delete(t)}function Ut(){Ot=!1,null!==Lt&&Dt(Lt)&&(Lt=null),null!==Ct&&Dt(Ct)&&(Ct=null),null!==Pt&&Dt(Pt)&&(Pt=null),At.forEach(zt),Tt.forEach(zt)}function Vt(e,t){e.blockedOn===t&&(e.blockedOn=null,Ot||(Ot=!0,o.unstable_scheduleCallback(o.unstable_NormalPriority,Ut)))}function Gt(e){function t(t){return Vt(t,e)}if(0<jt.length){Vt(jt[0],e);for(var n=1;n<jt.length;n++){var r=jt[n];r.blockedOn===e&&(r.blockedOn=null)}}for(null!==Lt&&Vt(Lt,e),null!==Ct&&Vt(Ct,e),null!==Pt&&Vt(Pt,e),At.forEach(t),Tt.forEach(t),n=0;n<It.length;n++)(r=It[n]).blockedOn===e&&(r.blockedOn=null);for(;0<It.length&&null===(n=It[0]).blockedOn;)Mt(n),null===n.blockedOn&&It.shift()}var Bt=w.ReactCurrentBatchConfig,Wt=!0;function Ht(e,t,n,r){var o=bt,i=Bt.transition;Bt.transition=null;try{bt=1,Yt(e,t,n,r)}finally{bt=o,Bt.transition=i}}function $t(e,t,n,r){var o=bt,i=Bt.transition;Bt.transition=null;try{bt=4,Yt(e,t,n,r)}finally{bt=o,Bt.transition=i}}function Yt(e,t,n,r){if(Wt){var o=Qt(e,t,n,r);if(null===o)Wr(e,t,r,qt,n),Ft(e,r);else if(function(e,t,n,r,o){switch(t){case"focusin":return Lt=Rt(Lt,e,t,n,r,o),!0;case"dragenter":return Ct=Rt(Ct,e,t,n,r,o),!0;case"mouseover":return Pt=Rt(Pt,e,t,n,r,o),!0;case"pointerover":var i=o.pointerId;return At.set(i,Rt(At.get(i)||null,e,t,n,r,o)),!0;case"gotpointercapture":return i=o.pointerId,Tt.set(i,Rt(Tt.get(i)||null,e,t,n,r,o)),!0}return!1}(o,e,t,n,r))r.stopPropagation();else if(Ft(e,r),4&t&&-1<Nt.indexOf(e)){for(;null!==o;){var i=wo(o);if(null!==i&&xt(i),null===(i=Qt(e,t,n,r))&&Wr(e,t,r,qt,n),i===o)break;o=i}null!==o&&r.stopPropagation()}else Wr(e,t,r,null,n)}}var qt=null;function Qt(e,t,n,r){if(qt=null,null!==(e=bo(e=xe(r))))if(null===(t=Ge(e)))e=null;else if(13===(n=t.tag)){if(null!==(e=Be(t)))return e;e=null}else if(3===n){if(t.stateNode.current.memoizedState.isDehydrated)return 3===t.tag?t.stateNode.containerInfo:null;e=null}else t!==e&&(e=null);return qt=e,null}function Xt(e){switch(e){case"cancel":case"click":case"close":case"contextmenu":case"copy":case"cut":case"auxclick":case"dblclick":case"dragend":case"dragstart":case"drop":case"focusin":case"focusout":case"input":case"invalid":case"keydown":case"keypress":case"keyup":case"mousedown":case"mouseup":case"paste":case"pause":case"play":case"pointercancel":case"pointerdown":case"pointerup":case"ratechange":case"reset":case"resize":case"seeked":case"submit":case"touchcancel":case"touchend":case"touchstart":case"volumechange":case"change":case"selectionchange":case"textInput":case"compositionstart":case"compositionend":case"compositionupdate":case"beforeblur":case"afterblur":case"beforeinput":case"blur":case"fullscreenchange":case"focus":case"hashchange":case"popstate":case"select":case"selectstart":return 1;case"drag":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"mousemove":case"mouseout":case"mouseover":case"pointermove":case"pointerout":case"pointerover":case"scroll":case"toggle":case"touchmove":case"wheel":case"mouseenter":case"mouseleave":case"pointerenter":case"pointerleave":return 4;case"message":switch(Je()){case Ze:return 1;case et:return 4;case tt:case nt:return 16;case rt:return 536870912;default:return 16}default:return 16}}var Kt=null,Jt=null,Zt=null;function en(){if(Zt)return Zt;var e,t,n=Jt,r=n.length,o="value"in Kt?Kt.value:Kt.textContent,i=o.length;for(e=0;e<r&&n[e]===o[e];e++);var a=r-e;for(t=1;t<=a&&n[r-t]===o[i-t];t++);return Zt=o.slice(e,1<t?1-t:void 0)}function tn(e){var t=e.keyCode;return"charCode"in e?0===(e=e.charCode)&&13===t&&(e=13):e=t,10===e&&(e=13),32<=e||13===e?e:0}function nn(){return!0}function rn(){return!1}function on(e){function t(t,n,r,o,i){for(var a in this._reactName=t,this._targetInst=r,this.type=n,this.nativeEvent=o,this.target=i,this.currentTarget=null,e)e.hasOwnProperty(a)&&(t=e[a],this[a]=t?t(o):o[a]);return this.isDefaultPrevented=(null!=o.defaultPrevented?o.defaultPrevented:!1===o.returnValue)?nn:rn,this.isPropagationStopped=rn,this}return M(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():"unknown"!=typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=nn)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():"unknown"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=nn)},persist:function(){},isPersistent:nn}),t}var an,sn,ln,un={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},cn=on(un),fn=M({},un,{view:0,detail:0}),pn=on(fn),dn=M({},fn,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:kn,button:0,buttons:0,relatedTarget:function(e){return void 0===e.relatedTarget?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return"movementX"in e?e.movementX:(e!==ln&&(ln&&"mousemove"===e.type?(an=e.screenX-ln.screenX,sn=e.screenY-ln.screenY):sn=an=0,ln=e),an)},movementY:function(e){return"movementY"in e?e.movementY:sn}}),hn=on(dn),mn=on(M({},dn,{dataTransfer:0})),vn=on(M({},fn,{relatedTarget:0})),yn=on(M({},un,{animationName:0,elapsedTime:0,pseudoElement:0})),gn=M({},un,{clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}}),bn=on(gn),wn=on(M({},un,{data:0})),xn={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},En={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},Sn={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function _n(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):!!(e=Sn[e])&&!!t[e]}function kn(){return _n}var On=M({},fn,{key:function(e){if(e.key){var t=xn[e.key]||e.key;if("Unidentified"!==t)return t}return"keypress"===e.type?13===(e=tn(e))?"Enter":String.fromCharCode(e):"keydown"===e.type||"keyup"===e.type?En[e.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:kn,charCode:function(e){return"keypress"===e.type?tn(e):0},keyCode:function(e){return"keydown"===e.type||"keyup"===e.type?e.keyCode:0},which:function(e){return"keypress"===e.type?tn(e):"keydown"===e.type||"keyup"===e.type?e.keyCode:0}}),jn=on(On),Ln=on(M({},dn,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0})),Cn=on(M({},fn,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:kn})),Pn=on(M({},un,{propertyName:0,elapsedTime:0,pseudoElement:0})),An=M({},dn,{deltaX:function(e){return"deltaX"in e?e.deltaX:"wheelDeltaX"in e?-e.wheelDeltaX:0},deltaY:function(e){return"deltaY"in e?e.deltaY:"wheelDeltaY"in e?-e.wheelDeltaY:"wheelDelta"in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0}),Tn=on(An),In=[9,13,27,32],Nn=c&&"CompositionEvent"in window,Fn=null;c&&"documentMode"in document&&(Fn=document.documentMode);var Rn=c&&"TextEvent"in window&&!Fn,Mn=c&&(!Nn||Fn&&8<Fn&&11>=Fn),Dn=String.fromCharCode(32),zn=!1;function Un(e,t){switch(e){case"keyup":return-1!==In.indexOf(t.keyCode);case"keydown":return 229!==t.keyCode;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function Vn(e){return"object"==typeof(e=e.detail)&&"data"in e?e.data:null}var Gn=!1,Bn={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function Wn(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return"input"===t?!!Bn[e.type]:"textarea"===t}function Hn(e,t,n,r){Oe(r),0<(t=$r(t,"onChange")).length&&(n=new cn("onChange","change",null,n,r),e.push({event:n,listeners:t}))}var $n=null,Yn=null;function qn(e){Dr(e,0)}function Qn(e){if(Y(xo(e)))return e}function Xn(e,t){if("change"===e)return t}var Kn=!1;if(c){var Jn;if(c){var Zn="oninput"in document;if(!Zn){var er=document.createElement("div");er.setAttribute("oninput","return;"),Zn="function"==typeof er.oninput}Jn=Zn}else Jn=!1;Kn=Jn&&(!document.documentMode||9<document.documentMode)}function tr(){$n&&($n.detachEvent("onpropertychange",nr),Yn=$n=null)}function nr(e){if("value"===e.propertyName&&Qn(Yn)){var t=[];Hn(t,Yn,e,xe(e)),Ae(qn,t)}}function rr(e,t,n){"focusin"===e?(tr(),Yn=n,($n=t).attachEvent("onpropertychange",nr)):"focusout"===e&&tr()}function or(e){if("selectionchange"===e||"keyup"===e||"keydown"===e)return Qn(Yn)}function ir(e,t){if("click"===e)return Qn(t)}function ar(e,t){if("input"===e||"change"===e)return Qn(t)}var sr="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t};function lr(e,t){if(sr(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;var n=Object.keys(e),r=Object.keys(t);if(n.length!==r.length)return!1;for(r=0;r<n.length;r++){var o=n[r];if(!f.call(t,o)||!sr(e[o],t[o]))return!1}return!0}function ur(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function cr(e,t){var n,r=ur(e);for(e=0;r;){if(3===r.nodeType){if(n=e+r.textContent.length,e<=t&&n>=t)return{node:r,offset:t-e};e=n}e:{for(;r;){if(r.nextSibling){r=r.nextSibling;break e}r=r.parentNode}r=void 0}r=ur(r)}}function fr(e,t){return!(!e||!t)&&(e===t||(!e||3!==e.nodeType)&&(t&&3===t.nodeType?fr(e,t.parentNode):"contains"in e?e.contains(t):!!e.compareDocumentPosition&&!!(16&e.compareDocumentPosition(t))))}function pr(){for(var e=window,t=q();t instanceof e.HTMLIFrameElement;){try{var n="string"==typeof t.contentWindow.location.href}catch(e){n=!1}if(!n)break;t=q((e=t.contentWindow).document)}return t}function dr(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&("input"===t&&("text"===e.type||"search"===e.type||"tel"===e.type||"url"===e.type||"password"===e.type)||"textarea"===t||"true"===e.contentEditable)}function hr(e){var t=pr(),n=e.focusedElem,r=e.selectionRange;if(t!==n&&n&&n.ownerDocument&&fr(n.ownerDocument.documentElement,n)){if(null!==r&&dr(n))if(t=r.start,void 0===(e=r.end)&&(e=t),"selectionStart"in n)n.selectionStart=t,n.selectionEnd=Math.min(e,n.value.length);else if((e=(t=n.ownerDocument||document)&&t.defaultView||window).getSelection){e=e.getSelection();var o=n.textContent.length,i=Math.min(r.start,o);r=void 0===r.end?i:Math.min(r.end,o),!e.extend&&i>r&&(o=r,r=i,i=o),o=cr(n,i);var a=cr(n,r);o&&a&&(1!==e.rangeCount||e.anchorNode!==o.node||e.anchorOffset!==o.offset||e.focusNode!==a.node||e.focusOffset!==a.offset)&&((t=t.createRange()).setStart(o.node,o.offset),e.removeAllRanges(),i>r?(e.addRange(t),e.extend(a.node,a.offset)):(t.setEnd(a.node,a.offset),e.addRange(t)))}for(t=[],e=n;e=e.parentNode;)1===e.nodeType&&t.push({element:e,left:e.scrollLeft,top:e.scrollTop});for("function"==typeof n.focus&&n.focus(),n=0;n<t.length;n++)(e=t[n]).element.scrollLeft=e.left,e.element.scrollTop=e.top}}var mr=c&&"documentMode"in document&&11>=document.documentMode,vr=null,yr=null,gr=null,br=!1;function wr(e,t,n){var r=n.window===n?n.document:9===n.nodeType?n:n.ownerDocument;br||null==vr||vr!==q(r)||(r="selectionStart"in(r=vr)&&dr(r)?{start:r.selectionStart,end:r.selectionEnd}:{anchorNode:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection()).anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset},gr&&lr(gr,r)||(gr=r,0<(r=$r(yr,"onSelect")).length&&(t=new cn("onSelect","select",null,t,n),e.push({event:t,listeners:r}),t.target=vr)))}function xr(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit"+e]="webkit"+t,n["Moz"+e]="moz"+t,n}var Er={animationend:xr("Animation","AnimationEnd"),animationiteration:xr("Animation","AnimationIteration"),animationstart:xr("Animation","AnimationStart"),transitionend:xr("Transition","TransitionEnd")},Sr={},_r={};function kr(e){if(Sr[e])return Sr[e];if(!Er[e])return e;var t,n=Er[e];for(t in n)if(n.hasOwnProperty(t)&&t in _r)return Sr[e]=n[t];return e}c&&(_r=document.createElement("div").style,"AnimationEvent"in window||(delete Er.animationend.animation,delete Er.animationiteration.animation,delete Er.animationstart.animation),"TransitionEvent"in window||delete Er.transitionend.transition);var Or=kr("animationend"),jr=kr("animationiteration"),Lr=kr("animationstart"),Cr=kr("transitionend"),Pr=new Map,Ar="abort auxClick cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel".split(" ");function Tr(e,t){Pr.set(e,t),l(t,[e])}for(var Ir=0;Ir<Ar.length;Ir++){var Nr=Ar[Ir];Tr(Nr.toLowerCase(),"on"+(Nr[0].toUpperCase()+Nr.slice(1)))}Tr(Or,"onAnimationEnd"),Tr(jr,"onAnimationIteration"),Tr(Lr,"onAnimationStart"),Tr("dblclick","onDoubleClick"),Tr("focusin","onFocus"),Tr("focusout","onBlur"),Tr(Cr,"onTransitionEnd"),u("onMouseEnter",["mouseout","mouseover"]),u("onMouseLeave",["mouseout","mouseover"]),u("onPointerEnter",["pointerout","pointerover"]),u("onPointerLeave",["pointerout","pointerover"]),l("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),l("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),l("onBeforeInput",["compositionend","keypress","textInput","paste"]),l("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),l("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),l("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var Fr="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange resize seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),Rr=new Set("cancel close invalid load scroll toggle".split(" ").concat(Fr));function Mr(e,t,n){var r=e.type||"unknown-event";e.currentTarget=n,function(e,t,n,r,o,a,s,l,u){if(Ve.apply(this,arguments),Re){if(!Re)throw Error(i(198));var c=Me;Re=!1,Me=null,De||(De=!0,ze=c)}}(r,t,void 0,e),e.currentTarget=null}function Dr(e,t){t=0!=(4&t);for(var n=0;n<e.length;n++){var r=e[n],o=r.event;r=r.listeners;e:{var i=void 0;if(t)for(var a=r.length-1;0<=a;a--){var s=r[a],l=s.instance,u=s.currentTarget;if(s=s.listener,l!==i&&o.isPropagationStopped())break e;Mr(o,s,u),i=l}else for(a=0;a<r.length;a++){if(l=(s=r[a]).instance,u=s.currentTarget,s=s.listener,l!==i&&o.isPropagationStopped())break e;Mr(o,s,u),i=l}}}if(De)throw e=ze,De=!1,ze=null,e}function zr(e,t){var n=t[vo];void 0===n&&(n=t[vo]=new Set);var r=e+"__bubble";n.has(r)||(Br(t,e,2,!1),n.add(r))}function Ur(e,t,n){var r=0;t&&(r|=4),Br(n,e,r,t)}var Vr="_reactListening"+Math.random().toString(36).slice(2);function Gr(e){if(!e[Vr]){e[Vr]=!0,a.forEach((function(t){"selectionchange"!==t&&(Rr.has(t)||Ur(t,!1,e),Ur(t,!0,e))}));var t=9===e.nodeType?e:e.ownerDocument;null===t||t[Vr]||(t[Vr]=!0,Ur("selectionchange",!1,t))}}function Br(e,t,n,r){switch(Xt(t)){case 1:var o=Ht;break;case 4:o=$t;break;default:o=Yt}n=o.bind(null,t,n,e),o=void 0,!Ie||"touchstart"!==t&&"touchmove"!==t&&"wheel"!==t||(o=!0),r?void 0!==o?e.addEventListener(t,n,{capture:!0,passive:o}):e.addEventListener(t,n,!0):void 0!==o?e.addEventListener(t,n,{passive:o}):e.addEventListener(t,n,!1)}function Wr(e,t,n,r,o){var i=r;if(0==(1&t)&&0==(2&t)&&null!==r)e:for(;;){if(null===r)return;var a=r.tag;if(3===a||4===a){var s=r.stateNode.containerInfo;if(s===o||8===s.nodeType&&s.parentNode===o)break;if(4===a)for(a=r.return;null!==a;){var l=a.tag;if((3===l||4===l)&&((l=a.stateNode.containerInfo)===o||8===l.nodeType&&l.parentNode===o))return;a=a.return}for(;null!==s;){if(null===(a=bo(s)))return;if(5===(l=a.tag)||6===l){r=i=a;continue e}s=s.parentNode}}r=r.return}Ae((function(){var r=i,o=xe(n),a=[];e:{var s=Pr.get(e);if(void 0!==s){var l=cn,u=e;switch(e){case"keypress":if(0===tn(n))break e;case"keydown":case"keyup":l=jn;break;case"focusin":u="focus",l=vn;break;case"focusout":u="blur",l=vn;break;case"beforeblur":case"afterblur":l=vn;break;case"click":if(2===n.button)break e;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":l=hn;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":l=mn;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":l=Cn;break;case Or:case jr:case Lr:l=yn;break;case Cr:l=Pn;break;case"scroll":l=pn;break;case"wheel":l=Tn;break;case"copy":case"cut":case"paste":l=bn;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":l=Ln}var c=0!=(4&t),f=!c&&"scroll"===e,p=c?null!==s?s+"Capture":null:s;c=[];for(var d,h=r;null!==h;){var m=(d=h).stateNode;if(5===d.tag&&null!==m&&(d=m,null!==p&&null!=(m=Te(h,p))&&c.push(Hr(h,m,d))),f)break;h=h.return}0<c.length&&(s=new l(s,u,null,n,o),a.push({event:s,listeners:c}))}}if(0==(7&t)){if(l="mouseout"===e||"pointerout"===e,(!(s="mouseover"===e||"pointerover"===e)||n===we||!(u=n.relatedTarget||n.fromElement)||!bo(u)&&!u[mo])&&(l||s)&&(s=o.window===o?o:(s=o.ownerDocument)?s.defaultView||s.parentWindow:window,l?(l=r,null!==(u=(u=n.relatedTarget||n.toElement)?bo(u):null)&&(u!==(f=Ge(u))||5!==u.tag&&6!==u.tag)&&(u=null)):(l=null,u=r),l!==u)){if(c=hn,m="onMouseLeave",p="onMouseEnter",h="mouse","pointerout"!==e&&"pointerover"!==e||(c=Ln,m="onPointerLeave",p="onPointerEnter",h="pointer"),f=null==l?s:xo(l),d=null==u?s:xo(u),(s=new c(m,h+"leave",l,n,o)).target=f,s.relatedTarget=d,m=null,bo(o)===r&&((c=new c(p,h+"enter",u,n,o)).target=d,c.relatedTarget=f,m=c),f=m,l&&u)e:{for(p=u,h=0,d=c=l;d;d=Yr(d))h++;for(d=0,m=p;m;m=Yr(m))d++;for(;0<h-d;)c=Yr(c),h--;for(;0<d-h;)p=Yr(p),d--;for(;h--;){if(c===p||null!==p&&c===p.alternate)break e;c=Yr(c),p=Yr(p)}c=null}else c=null;null!==l&&qr(a,s,l,c,!1),null!==u&&null!==f&&qr(a,f,u,c,!0)}if("select"===(l=(s=r?xo(r):window).nodeName&&s.nodeName.toLowerCase())||"input"===l&&"file"===s.type)var v=Xn;else if(Wn(s))if(Kn)v=ar;else{v=or;var y=rr}else(l=s.nodeName)&&"input"===l.toLowerCase()&&("checkbox"===s.type||"radio"===s.type)&&(v=ir);switch(v&&(v=v(e,r))?Hn(a,v,n,o):(y&&y(e,s,r),"focusout"===e&&(y=s._wrapperState)&&y.controlled&&"number"===s.type&&ee(s,"number",s.value)),y=r?xo(r):window,e){case"focusin":(Wn(y)||"true"===y.contentEditable)&&(vr=y,yr=r,gr=null);break;case"focusout":gr=yr=vr=null;break;case"mousedown":br=!0;break;case"contextmenu":case"mouseup":case"dragend":br=!1,wr(a,n,o);break;case"selectionchange":if(mr)break;case"keydown":case"keyup":wr(a,n,o)}var g;if(Nn)e:{switch(e){case"compositionstart":var b="onCompositionStart";break e;case"compositionend":b="onCompositionEnd";break e;case"compositionupdate":b="onCompositionUpdate";break e}b=void 0}else Gn?Un(e,n)&&(b="onCompositionEnd"):"keydown"===e&&229===n.keyCode&&(b="onCompositionStart");b&&(Mn&&"ko"!==n.locale&&(Gn||"onCompositionStart"!==b?"onCompositionEnd"===b&&Gn&&(g=en()):(Jt="value"in(Kt=o)?Kt.value:Kt.textContent,Gn=!0)),0<(y=$r(r,b)).length&&(b=new wn(b,e,null,n,o),a.push({event:b,listeners:y}),(g||null!==(g=Vn(n)))&&(b.data=g))),(g=Rn?function(e,t){switch(e){case"compositionend":return Vn(t);case"keypress":return 32!==t.which?null:(zn=!0,Dn);case"textInput":return(e=t.data)===Dn&&zn?null:e;default:return null}}(e,n):function(e,t){if(Gn)return"compositionend"===e||!Nn&&Un(e,t)?(e=en(),Zt=Jt=Kt=null,Gn=!1,e):null;switch(e){case"paste":default:return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1<t.char.length)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case"compositionend":return Mn&&"ko"!==t.locale?null:t.data}}(e,n))&&0<(r=$r(r,"onBeforeInput")).length&&(o=new wn("onBeforeInput","beforeinput",null,n,o),a.push({event:o,listeners:r}),o.data=g)}Dr(a,t)}))}function Hr(e,t,n){return{instance:e,listener:t,currentTarget:n}}function $r(e,t){for(var n=t+"Capture",r=[];null!==e;){var o=e,i=o.stateNode;5===o.tag&&null!==i&&(o=i,null!=(i=Te(e,n))&&r.unshift(Hr(e,i,o)),null!=(i=Te(e,t))&&r.push(Hr(e,i,o))),e=e.return}return r}function Yr(e){if(null===e)return null;do{e=e.return}while(e&&5!==e.tag);return e||null}function qr(e,t,n,r,o){for(var i=t._reactName,a=[];null!==n&&n!==r;){var s=n,l=s.alternate,u=s.stateNode;if(null!==l&&l===r)break;5===s.tag&&null!==u&&(s=u,o?null!=(l=Te(n,i))&&a.unshift(Hr(n,l,s)):o||null!=(l=Te(n,i))&&a.push(Hr(n,l,s))),n=n.return}0!==a.length&&e.push({event:t,listeners:a})}var Qr=/\r\n?/g,Xr=/\u0000|\uFFFD/g;function Kr(e){return("string"==typeof e?e:""+e).replace(Qr,"\n").replace(Xr,"")}function Jr(e,t,n){if(t=Kr(t),Kr(e)!==t&&n)throw Error(i(425))}function Zr(){}var eo=null,to=null;function no(e,t){return"textarea"===e||"noscript"===e||"string"==typeof t.children||"number"==typeof t.children||"object"==typeof t.dangerouslySetInnerHTML&&null!==t.dangerouslySetInnerHTML&&null!=t.dangerouslySetInnerHTML.__html}var ro="function"==typeof setTimeout?setTimeout:void 0,oo="function"==typeof clearTimeout?clearTimeout:void 0,io="function"==typeof Promise?Promise:void 0,ao="function"==typeof queueMicrotask?queueMicrotask:void 0!==io?function(e){return io.resolve(null).then(e).catch(so)}:ro;function so(e){setTimeout((function(){throw e}))}function lo(e,t){var n=t,r=0;do{var o=n.nextSibling;if(e.removeChild(n),o&&8===o.nodeType)if("/$"===(n=o.data)){if(0===r)return e.removeChild(o),void Gt(t);r--}else"$"!==n&&"$?"!==n&&"$!"!==n||r++;n=o}while(n);Gt(t)}function uo(e){for(;null!=e;e=e.nextSibling){var t=e.nodeType;if(1===t||3===t)break;if(8===t){if("$"===(t=e.data)||"$!"===t||"$?"===t)break;if("/$"===t)return null}}return e}function co(e){e=e.previousSibling;for(var t=0;e;){if(8===e.nodeType){var n=e.data;if("$"===n||"$!"===n||"$?"===n){if(0===t)return e;t--}else"/$"===n&&t++}e=e.previousSibling}return null}var fo=Math.random().toString(36).slice(2),po="__reactFiber$"+fo,ho="__reactProps$"+fo,mo="__reactContainer$"+fo,vo="__reactEvents$"+fo,yo="__reactListeners$"+fo,go="__reactHandles$"+fo;function bo(e){var t=e[po];if(t)return t;for(var n=e.parentNode;n;){if(t=n[mo]||n[po]){if(n=t.alternate,null!==t.child||null!==n&&null!==n.child)for(e=co(e);null!==e;){if(n=e[po])return n;e=co(e)}return t}n=(e=n).parentNode}return null}function wo(e){return!(e=e[po]||e[mo])||5!==e.tag&&6!==e.tag&&13!==e.tag&&3!==e.tag?null:e}function xo(e){if(5===e.tag||6===e.tag)return e.stateNode;throw Error(i(33))}function Eo(e){return e[ho]||null}var So=[],_o=-1;function ko(e){return{current:e}}function Oo(e){0>_o||(e.current=So[_o],So[_o]=null,_o--)}function jo(e,t){_o++,So[_o]=e.current,e.current=t}var Lo={},Co=ko(Lo),Po=ko(!1),Ao=Lo;function To(e,t){var n=e.type.contextTypes;if(!n)return Lo;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var o,i={};for(o in n)i[o]=t[o];return r&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=i),i}function Io(e){return null!=e.childContextTypes}function No(){Oo(Po),Oo(Co)}function Fo(e,t,n){if(Co.current!==Lo)throw Error(i(168));jo(Co,t),jo(Po,n)}function Ro(e,t,n){var r=e.stateNode;if(t=t.childContextTypes,"function"!=typeof r.getChildContext)return n;for(var o in r=r.getChildContext())if(!(o in t))throw Error(i(108,B(e)||"Unknown",o));return M({},n,r)}function Mo(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||Lo,Ao=Co.current,jo(Co,e),jo(Po,Po.current),!0}function Do(e,t,n){var r=e.stateNode;if(!r)throw Error(i(169));n?(e=Ro(e,t,Ao),r.__reactInternalMemoizedMergedChildContext=e,Oo(Po),Oo(Co),jo(Co,e)):Oo(Po),jo(Po,n)}var zo=null,Uo=!1,Vo=!1;function Go(e){null===zo?zo=[e]:zo.push(e)}function Bo(){if(!Vo&&null!==zo){Vo=!0;var e=0,t=bt;try{var n=zo;for(bt=1;e<n.length;e++){var r=n[e];do{r=r(!0)}while(null!==r)}zo=null,Uo=!1}catch(t){throw null!==zo&&(zo=zo.slice(e+1)),Ye(Ze,Bo),t}finally{bt=t,Vo=!1}}return null}var Wo=w.ReactCurrentBatchConfig;function Ho(e,t){if(e&&e.defaultProps){for(var n in t=M({},t),e=e.defaultProps)void 0===t[n]&&(t[n]=e[n]);return t}return t}var $o=ko(null),Yo=null,qo=null,Qo=null;function Xo(){Qo=qo=Yo=null}function Ko(e){var t=$o.current;Oo($o),e._currentValue=t}function Jo(e,t,n){for(;null!==e;){var r=e.alternate;if((e.childLanes&t)!==t?(e.childLanes|=t,null!==r&&(r.childLanes|=t)):null!==r&&(r.childLanes&t)!==t&&(r.childLanes|=t),e===n)break;e=e.return}}function Zo(e,t){Yo=e,Qo=qo=null,null!==(e=e.dependencies)&&null!==e.firstContext&&(0!=(e.lanes&t)&&(xs=!0),e.firstContext=null)}function ei(e){var t=e._currentValue;if(Qo!==e)if(e={context:e,memoizedValue:t,next:null},null===qo){if(null===Yo)throw Error(i(308));qo=e,Yo.dependencies={lanes:0,firstContext:e}}else qo=qo.next=e;return t}var ti=null,ni=!1;function ri(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,interleaved:null,lanes:0},effects:null}}function oi(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,effects:e.effects})}function ii(e,t){return{eventTime:e,lane:t,tag:0,payload:null,callback:null,next:null}}function ai(e,t){var n=e.updateQueue;null!==n&&(n=n.shared,tu(e)?(null===(e=n.interleaved)?(t.next=t,null===ti?ti=[n]:ti.push(n)):(t.next=e.next,e.next=t),n.interleaved=t):(null===(e=n.pending)?t.next=t:(t.next=e.next,e.next=t),n.pending=t))}function si(e,t,n){if(null!==(t=t.updateQueue)&&(t=t.shared,0!=(4194240&n))){var r=t.lanes;n|=r&=e.pendingLanes,t.lanes=n,gt(e,n)}}function li(e,t){var n=e.updateQueue,r=e.alternate;if(null!==r&&n===(r=r.updateQueue)){var o=null,i=null;if(null!==(n=n.firstBaseUpdate)){do{var a={eventTime:n.eventTime,lane:n.lane,tag:n.tag,payload:n.payload,callback:n.callback,next:null};null===i?o=i=a:i=i.next=a,n=n.next}while(null!==n);null===i?o=i=t:i=i.next=t}else o=i=t;return n={baseState:r.baseState,firstBaseUpdate:o,lastBaseUpdate:i,shared:r.shared,effects:r.effects},void(e.updateQueue=n)}null===(e=n.lastBaseUpdate)?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}function ui(e,t,n,r){var o=e.updateQueue;ni=!1;var i=o.firstBaseUpdate,a=o.lastBaseUpdate,s=o.shared.pending;if(null!==s){o.shared.pending=null;var l=s,u=l.next;l.next=null,null===a?i=u:a.next=u,a=l;var c=e.alternate;null!==c&&(s=(c=c.updateQueue).lastBaseUpdate)!==a&&(null===s?c.firstBaseUpdate=u:s.next=u,c.lastBaseUpdate=l)}if(null!==i){var f=o.baseState;for(a=0,c=u=l=null,s=i;;){var p=s.lane,d=s.eventTime;if((r&p)===p){null!==c&&(c=c.next={eventTime:d,lane:0,tag:s.tag,payload:s.payload,callback:s.callback,next:null});e:{var h=e,m=s;switch(p=t,d=n,m.tag){case 1:if("function"==typeof(h=m.payload)){f=h.call(d,f,p);break e}f=h;break e;case 3:h.flags=-65537&h.flags|128;case 0:if(null==(p="function"==typeof(h=m.payload)?h.call(d,f,p):h))break e;f=M({},f,p);break e;case 2:ni=!0}}null!==s.callback&&0!==s.lane&&(e.flags|=64,null===(p=o.effects)?o.effects=[s]:p.push(s))}else d={eventTime:d,lane:p,tag:s.tag,payload:s.payload,callback:s.callback,next:null},null===c?(u=c=d,l=f):c=c.next=d,a|=p;if(null===(s=s.next)){if(null===(s=o.shared.pending))break;s=(p=s).next,p.next=null,o.lastBaseUpdate=p,o.shared.pending=null}}if(null===c&&(l=f),o.baseState=l,o.firstBaseUpdate=u,o.lastBaseUpdate=c,null!==(t=o.shared.interleaved)){o=t;do{a|=o.lane,o=o.next}while(o!==t)}else null===i&&(o.shared.lanes=0);Il|=a,e.lanes=a,e.memoizedState=f}}function ci(e,t,n){if(e=t.effects,t.effects=null,null!==e)for(t=0;t<e.length;t++){var r=e[t],o=r.callback;if(null!==o){if(r.callback=null,r=n,"function"!=typeof o)throw Error(i(191,o));o.call(r)}}}var fi=(new r.Component).refs;function pi(e,t,n,r){n=null==(n=n(r,t=e.memoizedState))?t:M({},t,n),e.memoizedState=n,0===e.lanes&&(e.updateQueue.baseState=n)}var di={isMounted:function(e){return!!(e=e._reactInternals)&&Ge(e)===e},enqueueSetState:function(e,t,n){e=e._reactInternals;var r=Kl(),o=Jl(e),i=ii(r,o);i.payload=t,null!=n&&(i.callback=n),ai(e,i),null!==(t=Zl(e,o,r))&&si(t,e,o)},enqueueReplaceState:function(e,t,n){e=e._reactInternals;var r=Kl(),o=Jl(e),i=ii(r,o);i.tag=1,i.payload=t,null!=n&&(i.callback=n),ai(e,i),null!==(t=Zl(e,o,r))&&si(t,e,o)},enqueueForceUpdate:function(e,t){e=e._reactInternals;var n=Kl(),r=Jl(e),o=ii(n,r);o.tag=2,null!=t&&(o.callback=t),ai(e,o),null!==(t=Zl(e,r,n))&&si(t,e,r)}};function hi(e,t,n,r,o,i,a){return"function"==typeof(e=e.stateNode).shouldComponentUpdate?e.shouldComponentUpdate(r,i,a):!(t.prototype&&t.prototype.isPureReactComponent&&lr(n,r)&&lr(o,i))}function mi(e,t,n){var r=!1,o=Lo,i=t.contextType;return"object"==typeof i&&null!==i?i=ei(i):(o=Io(t)?Ao:Co.current,i=(r=null!=(r=t.contextTypes))?To(e,o):Lo),t=new t(n,i),e.memoizedState=null!==t.state&&void 0!==t.state?t.state:null,t.updater=di,e.stateNode=t,t._reactInternals=e,r&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=o,e.__reactInternalMemoizedMaskedChildContext=i),t}function vi(e,t,n,r){e=t.state,"function"==typeof t.componentWillReceiveProps&&t.componentWillReceiveProps(n,r),"function"==typeof t.UNSAFE_componentWillReceiveProps&&t.UNSAFE_componentWillReceiveProps(n,r),t.state!==e&&di.enqueueReplaceState(t,t.state,null)}function yi(e,t,n,r){var o=e.stateNode;o.props=n,o.state=e.memoizedState,o.refs=fi,ri(e);var i=t.contextType;"object"==typeof i&&null!==i?o.context=ei(i):(i=Io(t)?Ao:Co.current,o.context=To(e,i)),o.state=e.memoizedState,"function"==typeof(i=t.getDerivedStateFromProps)&&(pi(e,t,i,n),o.state=e.memoizedState),"function"==typeof t.getDerivedStateFromProps||"function"==typeof o.getSnapshotBeforeUpdate||"function"!=typeof o.UNSAFE_componentWillMount&&"function"!=typeof o.componentWillMount||(t=o.state,"function"==typeof o.componentWillMount&&o.componentWillMount(),"function"==typeof o.UNSAFE_componentWillMount&&o.UNSAFE_componentWillMount(),t!==o.state&&di.enqueueReplaceState(o,o.state,null),ui(e,n,o,r),o.state=e.memoizedState),"function"==typeof o.componentDidMount&&(e.flags|=4194308)}var gi=[],bi=0,wi=null,xi=0,Ei=[],Si=0,_i=null,ki=1,Oi="";function ji(e,t){gi[bi++]=xi,gi[bi++]=wi,wi=e,xi=t}function Li(e,t,n){Ei[Si++]=ki,Ei[Si++]=Oi,Ei[Si++]=_i,_i=e;var r=ki;e=Oi;var o=32-at(r)-1;r&=~(1<<o),n+=1;var i=32-at(t)+o;if(30<i){var a=o-o%5;i=(r&(1<<a)-1).toString(32),r>>=a,o-=a,ki=1<<32-at(t)+o|n<<o|r,Oi=i+e}else ki=1<<i|n<<o|r,Oi=e}function Ci(e){null!==e.return&&(ji(e,1),Li(e,1,0))}function Pi(e){for(;e===wi;)wi=gi[--bi],gi[bi]=null,xi=gi[--bi],gi[bi]=null;for(;e===_i;)_i=Ei[--Si],Ei[Si]=null,Oi=Ei[--Si],Ei[Si]=null,ki=Ei[--Si],Ei[Si]=null}var Ai=null,Ti=null,Ii=!1,Ni=null;function Fi(e,t){var n=Pu(5,null,null,0);n.elementType="DELETED",n.stateNode=t,n.return=e,null===(t=e.deletions)?(e.deletions=[n],e.flags|=16):t.push(n)}function Ri(e,t){switch(e.tag){case 5:var n=e.type;return null!==(t=1!==t.nodeType||n.toLowerCase()!==t.nodeName.toLowerCase()?null:t)&&(e.stateNode=t,Ai=e,Ti=uo(t.firstChild),!0);case 6:return null!==(t=""===e.pendingProps||3!==t.nodeType?null:t)&&(e.stateNode=t,Ai=e,Ti=null,!0);case 13:return null!==(t=8!==t.nodeType?null:t)&&(n=null!==_i?{id:ki,overflow:Oi}:null,e.memoizedState={dehydrated:t,treeContext:n,retryLane:1073741824},(n=Pu(18,null,null,0)).stateNode=t,n.return=e,e.child=n,Ai=e,Ti=null,!0);default:return!1}}function Mi(e){return 0!=(1&e.mode)&&0==(128&e.flags)}function Di(e){if(Ii){var t=Ti;if(t){var n=t;if(!Ri(e,t)){if(Mi(e))throw Error(i(418));t=uo(n.nextSibling);var r=Ai;t&&Ri(e,t)?Fi(r,n):(e.flags=-4097&e.flags|2,Ii=!1,Ai=e)}}else{if(Mi(e))throw Error(i(418));e.flags=-4097&e.flags|2,Ii=!1,Ai=e}}}function zi(e){for(e=e.return;null!==e&&5!==e.tag&&3!==e.tag&&13!==e.tag;)e=e.return;Ai=e}function Ui(e){if(e!==Ai)return!1;if(!Ii)return zi(e),Ii=!0,!1;var t;if((t=3!==e.tag)&&!(t=5!==e.tag)&&(t="head"!==(t=e.type)&&"body"!==t&&!no(e.type,e.memoizedProps)),t&&(t=Ti)){if(Mi(e)){for(e=Ti;e;)e=uo(e.nextSibling);throw Error(i(418))}for(;t;)Fi(e,t),t=uo(t.nextSibling)}if(zi(e),13===e.tag){if(!(e=null!==(e=e.memoizedState)?e.dehydrated:null))throw Error(i(317));e:{for(e=e.nextSibling,t=0;e;){if(8===e.nodeType){var n=e.data;if("/$"===n){if(0===t){Ti=uo(e.nextSibling);break e}t--}else"$"!==n&&"$!"!==n&&"$?"!==n||t++}e=e.nextSibling}Ti=null}}else Ti=Ai?uo(e.stateNode.nextSibling):null;return!0}function Vi(){Ti=Ai=null,Ii=!1}function Gi(e){null===Ni?Ni=[e]:Ni.push(e)}function Bi(e,t,n){if(null!==(e=n.ref)&&"function"!=typeof e&&"object"!=typeof e){if(n._owner){if(n=n._owner){if(1!==n.tag)throw Error(i(309));var r=n.stateNode}if(!r)throw Error(i(147,e));var o=r,a=""+e;return null!==t&&null!==t.ref&&"function"==typeof t.ref&&t.ref._stringRef===a?t.ref:(t=function(e){var t=o.refs;t===fi&&(t=o.refs={}),null===e?delete t[a]:t[a]=e},t._stringRef=a,t)}if("string"!=typeof e)throw Error(i(284));if(!n._owner)throw Error(i(290,e))}return e}function Wi(e,t){throw e=Object.prototype.toString.call(t),Error(i(31,"[object Object]"===e?"object with keys {"+Object.keys(t).join(", ")+"}":e))}function Hi(e){return(0,e._init)(e._payload)}function $i(e){function t(t,n){if(e){var r=t.deletions;null===r?(t.deletions=[n],t.flags|=16):r.push(n)}}function n(n,r){if(!e)return null;for(;null!==r;)t(n,r),r=r.sibling;return null}function r(e,t){for(e=new Map;null!==t;)null!==t.key?e.set(t.key,t):e.set(t.index,t),t=t.sibling;return e}function o(e,t){return(e=Tu(e,t)).index=0,e.sibling=null,e}function a(t,n,r){return t.index=r,e?null!==(r=t.alternate)?(r=r.index)<n?(t.flags|=2,n):r:(t.flags|=2,n):(t.flags|=1048576,n)}function s(t){return e&&null===t.alternate&&(t.flags|=2),t}function l(e,t,n,r){return null===t||6!==t.tag?((t=Ru(n,e.mode,r)).return=e,t):((t=o(t,n)).return=e,t)}function u(e,t,n,r){var i=n.type;return i===S?f(e,t,n.props.children,r,n.key):null!==t&&(t.elementType===i||"object"==typeof i&&null!==i&&i.$$typeof===T&&Hi(i)===t.type)?((r=o(t,n.props)).ref=Bi(e,t,n),r.return=e,r):((r=Iu(n.type,n.key,n.props,null,e.mode,r)).ref=Bi(e,t,n),r.return=e,r)}function c(e,t,n,r){return null===t||4!==t.tag||t.stateNode.containerInfo!==n.containerInfo||t.stateNode.implementation!==n.implementation?((t=Mu(n,e.mode,r)).return=e,t):((t=o(t,n.children||[])).return=e,t)}function f(e,t,n,r,i){return null===t||7!==t.tag?((t=Nu(n,e.mode,r,i)).return=e,t):((t=o(t,n)).return=e,t)}function p(e,t,n){if("string"==typeof t&&""!==t||"number"==typeof t)return(t=Ru(""+t,e.mode,n)).return=e,t;if("object"==typeof t&&null!==t){switch(t.$$typeof){case x:return(n=Iu(t.type,t.key,t.props,null,e.mode,n)).ref=Bi(e,null,t),n.return=e,n;case E:return(t=Mu(t,e.mode,n)).return=e,t;case T:return p(e,(0,t._init)(t._payload),n)}if(te(t)||F(t))return(t=Nu(t,e.mode,n,null)).return=e,t;Wi(e,t)}return null}function d(e,t,n,r){var o=null!==t?t.key:null;if("string"==typeof n&&""!==n||"number"==typeof n)return null!==o?null:l(e,t,""+n,r);if("object"==typeof n&&null!==n){switch(n.$$typeof){case x:return n.key===o?u(e,t,n,r):null;case E:return n.key===o?c(e,t,n,r):null;case T:return d(e,t,(o=n._init)(n._payload),r)}if(te(n)||F(n))return null!==o?null:f(e,t,n,r,null);Wi(e,n)}return null}function h(e,t,n,r,o){if("string"==typeof r&&""!==r||"number"==typeof r)return l(t,e=e.get(n)||null,""+r,o);if("object"==typeof r&&null!==r){switch(r.$$typeof){case x:return u(t,e=e.get(null===r.key?n:r.key)||null,r,o);case E:return c(t,e=e.get(null===r.key?n:r.key)||null,r,o);case T:return h(e,t,n,(0,r._init)(r._payload),o)}if(te(r)||F(r))return f(t,e=e.get(n)||null,r,o,null);Wi(t,r)}return null}function m(o,i,s,l){for(var u=null,c=null,f=i,m=i=0,v=null;null!==f&&m<s.length;m++){f.index>m?(v=f,f=null):v=f.sibling;var y=d(o,f,s[m],l);if(null===y){null===f&&(f=v);break}e&&f&&null===y.alternate&&t(o,f),i=a(y,i,m),null===c?u=y:c.sibling=y,c=y,f=v}if(m===s.length)return n(o,f),Ii&&ji(o,m),u;if(null===f){for(;m<s.length;m++)null!==(f=p(o,s[m],l))&&(i=a(f,i,m),null===c?u=f:c.sibling=f,c=f);return Ii&&ji(o,m),u}for(f=r(o,f);m<s.length;m++)null!==(v=h(f,o,m,s[m],l))&&(e&&null!==v.alternate&&f.delete(null===v.key?m:v.key),i=a(v,i,m),null===c?u=v:c.sibling=v,c=v);return e&&f.forEach((function(e){return t(o,e)})),Ii&&ji(o,m),u}function v(o,s,l,u){var c=F(l);if("function"!=typeof c)throw Error(i(150));if(null==(l=c.call(l)))throw Error(i(151));for(var f=c=null,m=s,v=s=0,y=null,g=l.next();null!==m&&!g.done;v++,g=l.next()){m.index>v?(y=m,m=null):y=m.sibling;var b=d(o,m,g.value,u);if(null===b){null===m&&(m=y);break}e&&m&&null===b.alternate&&t(o,m),s=a(b,s,v),null===f?c=b:f.sibling=b,f=b,m=y}if(g.done)return n(o,m),Ii&&ji(o,v),c;if(null===m){for(;!g.done;v++,g=l.next())null!==(g=p(o,g.value,u))&&(s=a(g,s,v),null===f?c=g:f.sibling=g,f=g);return Ii&&ji(o,v),c}for(m=r(o,m);!g.done;v++,g=l.next())null!==(g=h(m,o,v,g.value,u))&&(e&&null!==g.alternate&&m.delete(null===g.key?v:g.key),s=a(g,s,v),null===f?c=g:f.sibling=g,f=g);return e&&m.forEach((function(e){return t(o,e)})),Ii&&ji(o,v),c}return function e(r,i,a,l){if("object"==typeof a&&null!==a&&a.type===S&&null===a.key&&(a=a.props.children),"object"==typeof a&&null!==a){switch(a.$$typeof){case x:e:{for(var u=a.key,c=i;null!==c;){if(c.key===u){if((u=a.type)===S){if(7===c.tag){n(r,c.sibling),(i=o(c,a.props.children)).return=r,r=i;break e}}else if(c.elementType===u||"object"==typeof u&&null!==u&&u.$$typeof===T&&Hi(u)===c.type){n(r,c.sibling),(i=o(c,a.props)).ref=Bi(r,c,a),i.return=r,r=i;break e}n(r,c);break}t(r,c),c=c.sibling}a.type===S?((i=Nu(a.props.children,r.mode,l,a.key)).return=r,r=i):((l=Iu(a.type,a.key,a.props,null,r.mode,l)).ref=Bi(r,i,a),l.return=r,r=l)}return s(r);case E:e:{for(c=a.key;null!==i;){if(i.key===c){if(4===i.tag&&i.stateNode.containerInfo===a.containerInfo&&i.stateNode.implementation===a.implementation){n(r,i.sibling),(i=o(i,a.children||[])).return=r,r=i;break e}n(r,i);break}t(r,i),i=i.sibling}(i=Mu(a,r.mode,l)).return=r,r=i}return s(r);case T:return e(r,i,(c=a._init)(a._payload),l)}if(te(a))return m(r,i,a,l);if(F(a))return v(r,i,a,l);Wi(r,a)}return"string"==typeof a&&""!==a||"number"==typeof a?(a=""+a,null!==i&&6===i.tag?(n(r,i.sibling),(i=o(i,a)).return=r,r=i):(n(r,i),(i=Ru(a,r.mode,l)).return=r,r=i),s(r)):n(r,i)}}var Yi=$i(!0),qi=$i(!1),Qi={},Xi=ko(Qi),Ki=ko(Qi),Ji=ko(Qi);function Zi(e){if(e===Qi)throw Error(i(174));return e}function ea(e,t){switch(jo(Ji,t),jo(Ki,e),jo(Xi,Qi),e=t.nodeType){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:le(null,"");break;default:t=le(t=(e=8===e?t.parentNode:t).namespaceURI||null,e=e.tagName)}Oo(Xi),jo(Xi,t)}function ta(){Oo(Xi),Oo(Ki),Oo(Ji)}function na(e){Zi(Ji.current);var t=Zi(Xi.current),n=le(t,e.type);t!==n&&(jo(Ki,e),jo(Xi,n))}function ra(e){Ki.current===e&&(Oo(Xi),Oo(Ki))}var oa=ko(0);function ia(e){for(var t=e;null!==t;){if(13===t.tag){var n=t.memoizedState;if(null!==n&&(null===(n=n.dehydrated)||"$?"===n.data||"$!"===n.data))return t}else if(19===t.tag&&void 0!==t.memoizedProps.revealOrder){if(0!=(128&t.flags))return t}else if(null!==t.child){t.child.return=t,t=t.child;continue}if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var aa=[];function sa(){for(var e=0;e<aa.length;e++)aa[e]._workInProgressVersionPrimary=null;aa.length=0}var la=w.ReactCurrentDispatcher,ua=w.ReactCurrentBatchConfig,ca=0,fa=null,pa=null,da=null,ha=!1,ma=!1,va=0,ya=0;function ga(){throw Error(i(321))}function ba(e,t){if(null===t)return!1;for(var n=0;n<t.length&&n<e.length;n++)if(!sr(e[n],t[n]))return!1;return!0}function wa(e,t,n,r,o,a){if(ca=a,fa=t,t.memoizedState=null,t.updateQueue=null,t.lanes=0,la.current=null===e||null===e.memoizedState?rs:os,e=n(r,o),ma){a=0;do{if(ma=!1,va=0,25<=a)throw Error(i(301));a+=1,da=pa=null,t.updateQueue=null,la.current=is,e=n(r,o)}while(ma)}if(la.current=ns,t=null!==pa&&null!==pa.next,ca=0,da=pa=fa=null,ha=!1,t)throw Error(i(300));return e}function xa(){var e=0!==va;return va=0,e}function Ea(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return null===da?fa.memoizedState=da=e:da=da.next=e,da}function Sa(){if(null===pa){var e=fa.alternate;e=null!==e?e.memoizedState:null}else e=pa.next;var t=null===da?fa.memoizedState:da.next;if(null!==t)da=t,pa=e;else{if(null===e)throw Error(i(310));e={memoizedState:(pa=e).memoizedState,baseState:pa.baseState,baseQueue:pa.baseQueue,queue:pa.queue,next:null},null===da?fa.memoizedState=da=e:da=da.next=e}return da}function _a(e,t){return"function"==typeof t?t(e):t}function ka(e){var t=Sa(),n=t.queue;if(null===n)throw Error(i(311));n.lastRenderedReducer=e;var r=pa,o=r.baseQueue,a=n.pending;if(null!==a){if(null!==o){var s=o.next;o.next=a.next,a.next=s}r.baseQueue=o=a,n.pending=null}if(null!==o){a=o.next,r=r.baseState;var l=s=null,u=null,c=a;do{var f=c.lane;if((ca&f)===f)null!==u&&(u=u.next={lane:0,action:c.action,hasEagerState:c.hasEagerState,eagerState:c.eagerState,next:null}),r=c.hasEagerState?c.eagerState:e(r,c.action);else{var p={lane:f,action:c.action,hasEagerState:c.hasEagerState,eagerState:c.eagerState,next:null};null===u?(l=u=p,s=r):u=u.next=p,fa.lanes|=f,Il|=f}c=c.next}while(null!==c&&c!==a);null===u?s=r:u.next=l,sr(r,t.memoizedState)||(xs=!0),t.memoizedState=r,t.baseState=s,t.baseQueue=u,n.lastRenderedState=r}if(null!==(e=n.interleaved)){o=e;do{a=o.lane,fa.lanes|=a,Il|=a,o=o.next}while(o!==e)}else null===o&&(n.lanes=0);return[t.memoizedState,n.dispatch]}function Oa(e){var t=Sa(),n=t.queue;if(null===n)throw Error(i(311));n.lastRenderedReducer=e;var r=n.dispatch,o=n.pending,a=t.memoizedState;if(null!==o){n.pending=null;var s=o=o.next;do{a=e(a,s.action),s=s.next}while(s!==o);sr(a,t.memoizedState)||(xs=!0),t.memoizedState=a,null===t.baseQueue&&(t.baseState=a),n.lastRenderedState=a}return[a,r]}function ja(){}function La(e,t){var n=fa,r=Sa(),o=t(),a=!sr(r.memoizedState,o);if(a&&(r.memoizedState=o,xs=!0),r=r.queue,za(Aa.bind(null,n,r,e),[e]),r.getSnapshot!==t||a||null!==da&&1&da.memoizedState.tag){if(n.flags|=2048,Na(9,Pa.bind(null,n,r,o,t),void 0,null),null===Ol)throw Error(i(349));0!=(30&ca)||Ca(n,t,o)}return o}function Ca(e,t,n){e.flags|=16384,e={getSnapshot:t,value:n},null===(t=fa.updateQueue)?(t={lastEffect:null,stores:null},fa.updateQueue=t,t.stores=[e]):null===(n=t.stores)?t.stores=[e]:n.push(e)}function Pa(e,t,n,r){t.value=n,t.getSnapshot=r,Ta(t)&&Zl(e,1,-1)}function Aa(e,t,n){return n((function(){Ta(t)&&Zl(e,1,-1)}))}function Ta(e){var t=e.getSnapshot;e=e.value;try{var n=t();return!sr(e,n)}catch(e){return!0}}function Ia(e){var t=Ea();return"function"==typeof e&&(e=e()),t.memoizedState=t.baseState=e,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:_a,lastRenderedState:e},t.queue=e,e=e.dispatch=Ka.bind(null,fa,e),[t.memoizedState,e]}function Na(e,t,n,r){return e={tag:e,create:t,destroy:n,deps:r,next:null},null===(t=fa.updateQueue)?(t={lastEffect:null,stores:null},fa.updateQueue=t,t.lastEffect=e.next=e):null===(n=t.lastEffect)?t.lastEffect=e.next=e:(r=n.next,n.next=e,e.next=r,t.lastEffect=e),e}function Fa(){return Sa().memoizedState}function Ra(e,t,n,r){var o=Ea();fa.flags|=e,o.memoizedState=Na(1|t,n,void 0,void 0===r?null:r)}function Ma(e,t,n,r){var o=Sa();r=void 0===r?null:r;var i=void 0;if(null!==pa){var a=pa.memoizedState;if(i=a.destroy,null!==r&&ba(r,a.deps))return void(o.memoizedState=Na(t,n,i,r))}fa.flags|=e,o.memoizedState=Na(1|t,n,i,r)}function Da(e,t){return Ra(8390656,8,e,t)}function za(e,t){return Ma(2048,8,e,t)}function Ua(e,t){return Ma(4,2,e,t)}function Va(e,t){return Ma(4,4,e,t)}function Ga(e,t){return"function"==typeof t?(e=e(),t(e),function(){t(null)}):null!=t?(e=e(),t.current=e,function(){t.current=null}):void 0}function Ba(e,t,n){return n=null!=n?n.concat([e]):null,Ma(4,4,Ga.bind(null,t,e),n)}function Wa(){}function Ha(e,t){var n=Sa();t=void 0===t?null:t;var r=n.memoizedState;return null!==r&&null!==t&&ba(t,r[1])?r[0]:(n.memoizedState=[e,t],e)}function $a(e,t){var n=Sa();t=void 0===t?null:t;var r=n.memoizedState;return null!==r&&null!==t&&ba(t,r[1])?r[0]:(e=e(),n.memoizedState=[e,t],e)}function Ya(e,t,n){return 0==(21&ca)?(e.baseState&&(e.baseState=!1,xs=!0),e.memoizedState=n):(sr(n,t)||(n=mt(),fa.lanes|=n,Il|=n,e.baseState=!0),t)}function qa(e,t){var n=bt;bt=0!==n&&4>n?n:4,e(!0);var r=ua.transition;ua.transition={};try{e(!1),t()}finally{bt=n,ua.transition=r}}function Qa(){return Sa().memoizedState}function Xa(e,t,n){var r=Jl(e);n={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null},Ja(e)?Za(t,n):(es(e,t,n),null!==(e=Zl(e,r,n=Kl()))&&ts(e,t,r))}function Ka(e,t,n){var r=Jl(e),o={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null};if(Ja(e))Za(t,o);else{es(e,t,o);var i=e.alternate;if(0===e.lanes&&(null===i||0===i.lanes)&&null!==(i=t.lastRenderedReducer))try{var a=t.lastRenderedState,s=i(a,n);if(o.hasEagerState=!0,o.eagerState=s,sr(s,a))return}catch(e){}null!==(e=Zl(e,r,n=Kl()))&&ts(e,t,r)}}function Ja(e){var t=e.alternate;return e===fa||null!==t&&t===fa}function Za(e,t){ma=ha=!0;var n=e.pending;null===n?t.next=t:(t.next=n.next,n.next=t),e.pending=t}function es(e,t,n){tu(e)?(null===(e=t.interleaved)?(n.next=n,null===ti?ti=[t]:ti.push(t)):(n.next=e.next,e.next=n),t.interleaved=n):(null===(e=t.pending)?n.next=n:(n.next=e.next,e.next=n),t.pending=n)}function ts(e,t,n){if(0!=(4194240&n)){var r=t.lanes;n|=r&=e.pendingLanes,t.lanes=n,gt(e,n)}}var ns={readContext:ei,useCallback:ga,useContext:ga,useEffect:ga,useImperativeHandle:ga,useInsertionEffect:ga,useLayoutEffect:ga,useMemo:ga,useReducer:ga,useRef:ga,useState:ga,useDebugValue:ga,useDeferredValue:ga,useTransition:ga,useMutableSource:ga,useSyncExternalStore:ga,useId:ga,unstable_isNewReconciler:!1},rs={readContext:ei,useCallback:function(e,t){return Ea().memoizedState=[e,void 0===t?null:t],e},useContext:ei,useEffect:Da,useImperativeHandle:function(e,t,n){return n=null!=n?n.concat([e]):null,Ra(4194308,4,Ga.bind(null,t,e),n)},useLayoutEffect:function(e,t){return Ra(4194308,4,e,t)},useInsertionEffect:function(e,t){return Ra(4,2,e,t)},useMemo:function(e,t){var n=Ea();return t=void 0===t?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var r=Ea();return t=void 0!==n?n(t):t,r.memoizedState=r.baseState=t,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:t},r.queue=e,e=e.dispatch=Xa.bind(null,fa,e),[r.memoizedState,e]},useRef:function(e){return e={current:e},Ea().memoizedState=e},useState:Ia,useDebugValue:Wa,useDeferredValue:function(e){return Ea().memoizedState=e},useTransition:function(){var e=Ia(!1),t=e[0];return e=qa.bind(null,e[1]),Ea().memoizedState=e,[t,e]},useMutableSource:function(){},useSyncExternalStore:function(e,t,n){var r=fa,o=Ea();if(Ii){if(void 0===n)throw Error(i(407));n=n()}else{if(n=t(),null===Ol)throw Error(i(349));0!=(30&ca)||Ca(r,t,n)}o.memoizedState=n;var a={value:n,getSnapshot:t};return o.queue=a,Da(Aa.bind(null,r,a,e),[e]),r.flags|=2048,Na(9,Pa.bind(null,r,a,n,t),void 0,null),n},useId:function(){var e=Ea(),t=Ol.identifierPrefix;if(Ii){var n=Oi;t=":"+t+"R"+(n=(ki&~(1<<32-at(ki)-1)).toString(32)+n),0<(n=va++)&&(t+="H"+n.toString(32)),t+=":"}else t=":"+t+"r"+(n=ya++).toString(32)+":";return e.memoizedState=t},unstable_isNewReconciler:!1},os={readContext:ei,useCallback:Ha,useContext:ei,useEffect:za,useImperativeHandle:Ba,useInsertionEffect:Ua,useLayoutEffect:Va,useMemo:$a,useReducer:ka,useRef:Fa,useState:function(){return ka(_a)},useDebugValue:Wa,useDeferredValue:function(e){return Ya(Sa(),pa.memoizedState,e)},useTransition:function(){return[ka(_a)[0],Sa().memoizedState]},useMutableSource:ja,useSyncExternalStore:La,useId:Qa,unstable_isNewReconciler:!1},is={readContext:ei,useCallback:Ha,useContext:ei,useEffect:za,useImperativeHandle:Ba,useInsertionEffect:Ua,useLayoutEffect:Va,useMemo:$a,useReducer:Oa,useRef:Fa,useState:function(){return Oa(_a)},useDebugValue:Wa,useDeferredValue:function(e){var t=Sa();return null===pa?t.memoizedState=e:Ya(t,pa.memoizedState,e)},useTransition:function(){return[Oa(_a)[0],Sa().memoizedState]},useMutableSource:ja,useSyncExternalStore:La,useId:Qa,unstable_isNewReconciler:!1};function as(e,t){try{var n="",r=t;do{n+=V(r),r=r.return}while(r);var o=n}catch(e){o="\nError generating stack: "+e.message+"\n"+e.stack}return{value:e,source:t,stack:o}}function ss(e,t){try{console.error(t.value)}catch(e){setTimeout((function(){throw e}))}}var ls,us,cs,fs="function"==typeof WeakMap?WeakMap:Map;function ps(e,t,n){(n=ii(-1,n)).tag=3,n.payload={element:null};var r=t.value;return n.callback=function(){Vl||(Vl=!0,Gl=r),ss(0,t)},n}function ds(e,t,n){(n=ii(-1,n)).tag=3;var r=e.type.getDerivedStateFromError;if("function"==typeof r){var o=t.value;n.payload=function(){return r(o)},n.callback=function(){ss(0,t)}}var i=e.stateNode;return null!==i&&"function"==typeof i.componentDidCatch&&(n.callback=function(){ss(0,t),"function"!=typeof r&&(null===Bl?Bl=new Set([this]):Bl.add(this));var e=t.stack;this.componentDidCatch(t.value,{componentStack:null!==e?e:""})}),n}function hs(e,t,n){var r=e.pingCache;if(null===r){r=e.pingCache=new fs;var o=new Set;r.set(t,o)}else void 0===(o=r.get(t))&&(o=new Set,r.set(t,o));o.has(n)||(o.add(n),e=_u.bind(null,e,t,n),t.then(e,e))}function ms(e){do{var t;if((t=13===e.tag)&&(t=null===(t=e.memoizedState)||null!==t.dehydrated),t)return e;e=e.return}while(null!==e);return null}function vs(e,t,n,r,o){return 0==(1&e.mode)?(e===t?e.flags|=65536:(e.flags|=128,n.flags|=131072,n.flags&=-52805,1===n.tag&&(null===n.alternate?n.tag=17:((t=ii(-1,1)).tag=2,ai(n,t))),n.lanes|=1),e):(e.flags|=65536,e.lanes=o,e)}function ys(e,t){if(!Ii)switch(e.tailMode){case"hidden":t=e.tail;for(var n=null;null!==t;)null!==t.alternate&&(n=t),t=t.sibling;null===n?e.tail=null:n.sibling=null;break;case"collapsed":n=e.tail;for(var r=null;null!==n;)null!==n.alternate&&(r=n),n=n.sibling;null===r?t||null===e.tail?e.tail=null:e.tail.sibling=null:r.sibling=null}}function gs(e){var t=null!==e.alternate&&e.alternate.child===e.child,n=0,r=0;if(t)for(var o=e.child;null!==o;)n|=o.lanes|o.childLanes,r|=14680064&o.subtreeFlags,r|=14680064&o.flags,o.return=e,o=o.sibling;else for(o=e.child;null!==o;)n|=o.lanes|o.childLanes,r|=o.subtreeFlags,r|=o.flags,o.return=e,o=o.sibling;return e.subtreeFlags|=r,e.childLanes=n,t}function bs(e,t,n){var r=t.pendingProps;switch(Pi(t),t.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return gs(t),null;case 1:case 17:return Io(t.type)&&No(),gs(t),null;case 3:return r=t.stateNode,ta(),Oo(Po),Oo(Co),sa(),r.pendingContext&&(r.context=r.pendingContext,r.pendingContext=null),null!==e&&null!==e.child||(Ui(t)?t.flags|=4:null===e||e.memoizedState.isDehydrated&&0==(256&t.flags)||(t.flags|=1024,null!==Ni&&(iu(Ni),Ni=null))),gs(t),null;case 5:ra(t);var o=Zi(Ji.current);if(n=t.type,null!==e&&null!=t.stateNode)us(e,t,n,r),e.ref!==t.ref&&(t.flags|=512,t.flags|=2097152);else{if(!r){if(null===t.stateNode)throw Error(i(166));return gs(t),null}if(e=Zi(Xi.current),Ui(t)){r=t.stateNode,n=t.type;var a=t.memoizedProps;switch(r[po]=t,r[ho]=a,e=0!=(1&t.mode),n){case"dialog":zr("cancel",r),zr("close",r);break;case"iframe":case"object":case"embed":zr("load",r);break;case"video":case"audio":for(o=0;o<Fr.length;o++)zr(Fr[o],r);break;case"source":zr("error",r);break;case"img":case"image":case"link":zr("error",r),zr("load",r);break;case"details":zr("toggle",r);break;case"input":X(r,a),zr("invalid",r);break;case"select":r._wrapperState={wasMultiple:!!a.multiple},zr("invalid",r);break;case"textarea":oe(r,a),zr("invalid",r)}for(var l in ge(n,a),o=null,a)if(a.hasOwnProperty(l)){var u=a[l];"children"===l?"string"==typeof u?r.textContent!==u&&(!0!==a.suppressHydrationWarning&&Jr(r.textContent,u,e),o=["children",u]):"number"==typeof u&&r.textContent!==""+u&&(!0!==a.suppressHydrationWarning&&Jr(r.textContent,u,e),o=["children",""+u]):s.hasOwnProperty(l)&&null!=u&&"onScroll"===l&&zr("scroll",r)}switch(n){case"input":$(r),Z(r,a,!0);break;case"textarea":$(r),ae(r);break;case"select":case"option":break;default:"function"==typeof a.onClick&&(r.onclick=Zr)}r=o,t.updateQueue=r,null!==r&&(t.flags|=4)}else{l=9===o.nodeType?o:o.ownerDocument,"http://www.w3.org/1999/xhtml"===e&&(e=se(n)),"http://www.w3.org/1999/xhtml"===e?"script"===n?((e=l.createElement("div")).innerHTML="<script><\/script>",e=e.removeChild(e.firstChild)):"string"==typeof r.is?e=l.createElement(n,{is:r.is}):(e=l.createElement(n),"select"===n&&(l=e,r.multiple?l.multiple=!0:r.size&&(l.size=r.size))):e=l.createElementNS(e,n),e[po]=t,e[ho]=r,ls(e,t),t.stateNode=e;e:{switch(l=be(n,r),n){case"dialog":zr("cancel",e),zr("close",e),o=r;break;case"iframe":case"object":case"embed":zr("load",e),o=r;break;case"video":case"audio":for(o=0;o<Fr.length;o++)zr(Fr[o],e);o=r;break;case"source":zr("error",e),o=r;break;case"img":case"image":case"link":zr("error",e),zr("load",e),o=r;break;case"details":zr("toggle",e),o=r;break;case"input":X(e,r),o=Q(e,r),zr("invalid",e);break;case"option":default:o=r;break;case"select":e._wrapperState={wasMultiple:!!r.multiple},o=M({},r,{value:void 0}),zr("invalid",e);break;case"textarea":oe(e,r),o=re(e,r),zr("invalid",e)}for(a in ge(n,o),u=o)if(u.hasOwnProperty(a)){var c=u[a];"style"===a?ve(e,c):"dangerouslySetInnerHTML"===a?null!=(c=c?c.__html:void 0)&&fe(e,c):"children"===a?"string"==typeof c?("textarea"!==n||""!==c)&&pe(e,c):"number"==typeof c&&pe(e,""+c):"suppressContentEditableWarning"!==a&&"suppressHydrationWarning"!==a&&"autoFocus"!==a&&(s.hasOwnProperty(a)?null!=c&&"onScroll"===a&&zr("scroll",e):null!=c&&b(e,a,c,l))}switch(n){case"input":$(e),Z(e,r,!1);break;case"textarea":$(e),ae(e);break;case"option":null!=r.value&&e.setAttribute("value",""+W(r.value));break;case"select":e.multiple=!!r.multiple,null!=(a=r.value)?ne(e,!!r.multiple,a,!1):null!=r.defaultValue&&ne(e,!!r.multiple,r.defaultValue,!0);break;default:"function"==typeof o.onClick&&(e.onclick=Zr)}switch(n){case"button":case"input":case"select":case"textarea":r=!!r.autoFocus;break e;case"img":r=!0;break e;default:r=!1}}r&&(t.flags|=4)}null!==t.ref&&(t.flags|=512,t.flags|=2097152)}return gs(t),null;case 6:if(e&&null!=t.stateNode)cs(0,t,e.memoizedProps,r);else{if("string"!=typeof r&&null===t.stateNode)throw Error(i(166));if(n=Zi(Ji.current),Zi(Xi.current),Ui(t)){if(r=t.stateNode,n=t.memoizedProps,r[po]=t,(a=r.nodeValue!==n)&&null!==(e=Ai))switch(e.tag){case 3:Jr(r.nodeValue,n,0!=(1&e.mode));break;case 5:!0!==e.memoizedProps.suppressHydrationWarning&&Jr(r.nodeValue,n,0!=(1&e.mode))}a&&(t.flags|=4)}else(r=(9===n.nodeType?n:n.ownerDocument).createTextNode(r))[po]=t,t.stateNode=r}return gs(t),null;case 13:if(Oo(oa),r=t.memoizedState,Ii&&null!==Ti&&0!=(1&t.mode)&&0==(128&t.flags)){for(r=Ti;r;)r=uo(r.nextSibling);return Vi(),t.flags|=98560,t}if(null!==r&&null!==r.dehydrated){if(r=Ui(t),null===e){if(!r)throw Error(i(318));if(!(r=null!==(r=t.memoizedState)?r.dehydrated:null))throw Error(i(317));r[po]=t}else Vi(),0==(128&t.flags)&&(t.memoizedState=null),t.flags|=4;return gs(t),null}return null!==Ni&&(iu(Ni),Ni=null),0!=(128&t.flags)?(t.lanes=n,t):(r=null!==r,n=!1,null===e?Ui(t):n=null!==e.memoizedState,r!==n&&r&&(t.child.flags|=8192,0!=(1&t.mode)&&(null===e||0!=(1&oa.current)?0===Al&&(Al=3):hu())),null!==t.updateQueue&&(t.flags|=4),gs(t),null);case 4:return ta(),null===e&&Gr(t.stateNode.containerInfo),gs(t),null;case 10:return Ko(t.type._context),gs(t),null;case 19:if(Oo(oa),null===(a=t.memoizedState))return gs(t),null;if(r=0!=(128&t.flags),null===(l=a.rendering))if(r)ys(a,!1);else{if(0!==Al||null!==e&&0!=(128&e.flags))for(e=t.child;null!==e;){if(null!==(l=ia(e))){for(t.flags|=128,ys(a,!1),null!==(r=l.updateQueue)&&(t.updateQueue=r,t.flags|=4),t.subtreeFlags=0,r=n,n=t.child;null!==n;)e=r,(a=n).flags&=14680066,null===(l=a.alternate)?(a.childLanes=0,a.lanes=e,a.child=null,a.subtreeFlags=0,a.memoizedProps=null,a.memoizedState=null,a.updateQueue=null,a.dependencies=null,a.stateNode=null):(a.childLanes=l.childLanes,a.lanes=l.lanes,a.child=l.child,a.subtreeFlags=0,a.deletions=null,a.memoizedProps=l.memoizedProps,a.memoizedState=l.memoizedState,a.updateQueue=l.updateQueue,a.type=l.type,e=l.dependencies,a.dependencies=null===e?null:{lanes:e.lanes,firstContext:e.firstContext}),n=n.sibling;return jo(oa,1&oa.current|2),t.child}e=e.sibling}null!==a.tail&&Ke()>zl&&(t.flags|=128,r=!0,ys(a,!1),t.lanes=4194304)}else{if(!r)if(null!==(e=ia(l))){if(t.flags|=128,r=!0,null!==(n=e.updateQueue)&&(t.updateQueue=n,t.flags|=4),ys(a,!0),null===a.tail&&"hidden"===a.tailMode&&!l.alternate&&!Ii)return gs(t),null}else 2*Ke()-a.renderingStartTime>zl&&1073741824!==n&&(t.flags|=128,r=!0,ys(a,!1),t.lanes=4194304);a.isBackwards?(l.sibling=t.child,t.child=l):(null!==(n=a.last)?n.sibling=l:t.child=l,a.last=l)}return null!==a.tail?(t=a.tail,a.rendering=t,a.tail=t.sibling,a.renderingStartTime=Ke(),t.sibling=null,n=oa.current,jo(oa,r?1&n|2:1&n),t):(gs(t),null);case 22:case 23:return cu(),r=null!==t.memoizedState,null!==e&&null!==e.memoizedState!==r&&(t.flags|=8192),r&&0!=(1&t.mode)?0!=(1073741824&Cl)&&(gs(t),6&t.subtreeFlags&&(t.flags|=8192)):gs(t),null;case 24:case 25:return null}throw Error(i(156,t.tag))}ls=function(e,t){for(var n=t.child;null!==n;){if(5===n.tag||6===n.tag)e.appendChild(n.stateNode);else if(4!==n.tag&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===t)break;for(;null===n.sibling;){if(null===n.return||n.return===t)return;n=n.return}n.sibling.return=n.return,n=n.sibling}},us=function(e,t,n,r){var o=e.memoizedProps;if(o!==r){e=t.stateNode,Zi(Xi.current);var i,a=null;switch(n){case"input":o=Q(e,o),r=Q(e,r),a=[];break;case"select":o=M({},o,{value:void 0}),r=M({},r,{value:void 0}),a=[];break;case"textarea":o=re(e,o),r=re(e,r),a=[];break;default:"function"!=typeof o.onClick&&"function"==typeof r.onClick&&(e.onclick=Zr)}for(c in ge(n,r),n=null,o)if(!r.hasOwnProperty(c)&&o.hasOwnProperty(c)&&null!=o[c])if("style"===c){var l=o[c];for(i in l)l.hasOwnProperty(i)&&(n||(n={}),n[i]="")}else"dangerouslySetInnerHTML"!==c&&"children"!==c&&"suppressContentEditableWarning"!==c&&"suppressHydrationWarning"!==c&&"autoFocus"!==c&&(s.hasOwnProperty(c)?a||(a=[]):(a=a||[]).push(c,null));for(c in r){var u=r[c];if(l=null!=o?o[c]:void 0,r.hasOwnProperty(c)&&u!==l&&(null!=u||null!=l))if("style"===c)if(l){for(i in l)!l.hasOwnProperty(i)||u&&u.hasOwnProperty(i)||(n||(n={}),n[i]="");for(i in u)u.hasOwnProperty(i)&&l[i]!==u[i]&&(n||(n={}),n[i]=u[i])}else n||(a||(a=[]),a.push(c,n)),n=u;else"dangerouslySetInnerHTML"===c?(u=u?u.__html:void 0,l=l?l.__html:void 0,null!=u&&l!==u&&(a=a||[]).push(c,u)):"children"===c?"string"!=typeof u&&"number"!=typeof u||(a=a||[]).push(c,""+u):"suppressContentEditableWarning"!==c&&"suppressHydrationWarning"!==c&&(s.hasOwnProperty(c)?(null!=u&&"onScroll"===c&&zr("scroll",e),a||l===u||(a=[])):(a=a||[]).push(c,u))}n&&(a=a||[]).push("style",n);var c=a;(t.updateQueue=c)&&(t.flags|=4)}},cs=function(e,t,n,r){n!==r&&(t.flags|=4)};var ws=w.ReactCurrentOwner,xs=!1;function Es(e,t,n,r){t.child=null===e?qi(t,null,n,r):Yi(t,e.child,n,r)}function Ss(e,t,n,r,o){n=n.render;var i=t.ref;return Zo(t,o),r=wa(e,t,n,r,i,o),n=xa(),null===e||xs?(Ii&&n&&Ci(t),t.flags|=1,Es(e,t,r,o),t.child):(t.updateQueue=e.updateQueue,t.flags&=-2053,e.lanes&=~o,Ws(e,t,o))}function _s(e,t,n,r,o){if(null===e){var i=n.type;return"function"!=typeof i||Au(i)||void 0!==i.defaultProps||null!==n.compare||void 0!==n.defaultProps?((e=Iu(n.type,null,r,t,t.mode,o)).ref=t.ref,e.return=t,t.child=e):(t.tag=15,t.type=i,ks(e,t,i,r,o))}if(i=e.child,0==(e.lanes&o)){var a=i.memoizedProps;if((n=null!==(n=n.compare)?n:lr)(a,r)&&e.ref===t.ref)return Ws(e,t,o)}return t.flags|=1,(e=Tu(i,r)).ref=t.ref,e.return=t,t.child=e}function ks(e,t,n,r,o){if(null!==e){var i=e.memoizedProps;if(lr(i,r)&&e.ref===t.ref){if(xs=!1,t.pendingProps=r=i,0==(e.lanes&o))return t.lanes=e.lanes,Ws(e,t,o);0!=(131072&e.flags)&&(xs=!0)}}return Ls(e,t,n,r,o)}function Os(e,t,n){var r=t.pendingProps,o=r.children,i=null!==e?e.memoizedState:null;if("hidden"===r.mode)if(0==(1&t.mode))t.memoizedState={baseLanes:0,cachePool:null,transitions:null},jo(Pl,Cl),Cl|=n;else{if(0==(1073741824&n))return e=null!==i?i.baseLanes|n:n,t.lanes=t.childLanes=1073741824,t.memoizedState={baseLanes:e,cachePool:null,transitions:null},t.updateQueue=null,jo(Pl,Cl),Cl|=e,null;t.memoizedState={baseLanes:0,cachePool:null,transitions:null},r=null!==i?i.baseLanes:n,jo(Pl,Cl),Cl|=r}else null!==i?(r=i.baseLanes|n,t.memoizedState=null):r=n,jo(Pl,Cl),Cl|=r;return Es(e,t,o,n),t.child}function js(e,t){var n=t.ref;(null===e&&null!==n||null!==e&&e.ref!==n)&&(t.flags|=512,t.flags|=2097152)}function Ls(e,t,n,r,o){var i=Io(n)?Ao:Co.current;return i=To(t,i),Zo(t,o),n=wa(e,t,n,r,i,o),r=xa(),null===e||xs?(Ii&&r&&Ci(t),t.flags|=1,Es(e,t,n,o),t.child):(t.updateQueue=e.updateQueue,t.flags&=-2053,e.lanes&=~o,Ws(e,t,o))}function Cs(e,t,n,r,o){if(Io(n)){var i=!0;Mo(t)}else i=!1;if(Zo(t,o),null===t.stateNode)null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),mi(t,n,r),yi(t,n,r,o),r=!0;else if(null===e){var a=t.stateNode,s=t.memoizedProps;a.props=s;var l=a.context,u=n.contextType;u="object"==typeof u&&null!==u?ei(u):To(t,u=Io(n)?Ao:Co.current);var c=n.getDerivedStateFromProps,f="function"==typeof c||"function"==typeof a.getSnapshotBeforeUpdate;f||"function"!=typeof a.UNSAFE_componentWillReceiveProps&&"function"!=typeof a.componentWillReceiveProps||(s!==r||l!==u)&&vi(t,a,r,u),ni=!1;var p=t.memoizedState;a.state=p,ui(t,r,a,o),l=t.memoizedState,s!==r||p!==l||Po.current||ni?("function"==typeof c&&(pi(t,n,c,r),l=t.memoizedState),(s=ni||hi(t,n,s,r,p,l,u))?(f||"function"!=typeof a.UNSAFE_componentWillMount&&"function"!=typeof a.componentWillMount||("function"==typeof a.componentWillMount&&a.componentWillMount(),"function"==typeof a.UNSAFE_componentWillMount&&a.UNSAFE_componentWillMount()),"function"==typeof a.componentDidMount&&(t.flags|=4194308)):("function"==typeof a.componentDidMount&&(t.flags|=4194308),t.memoizedProps=r,t.memoizedState=l),a.props=r,a.state=l,a.context=u,r=s):("function"==typeof a.componentDidMount&&(t.flags|=4194308),r=!1)}else{a=t.stateNode,oi(e,t),s=t.memoizedProps,u=t.type===t.elementType?s:Ho(t.type,s),a.props=u,f=t.pendingProps,p=a.context,l="object"==typeof(l=n.contextType)&&null!==l?ei(l):To(t,l=Io(n)?Ao:Co.current);var d=n.getDerivedStateFromProps;(c="function"==typeof d||"function"==typeof a.getSnapshotBeforeUpdate)||"function"!=typeof a.UNSAFE_componentWillReceiveProps&&"function"!=typeof a.componentWillReceiveProps||(s!==f||p!==l)&&vi(t,a,r,l),ni=!1,p=t.memoizedState,a.state=p,ui(t,r,a,o);var h=t.memoizedState;s!==f||p!==h||Po.current||ni?("function"==typeof d&&(pi(t,n,d,r),h=t.memoizedState),(u=ni||hi(t,n,u,r,p,h,l)||!1)?(c||"function"!=typeof a.UNSAFE_componentWillUpdate&&"function"!=typeof a.componentWillUpdate||("function"==typeof a.componentWillUpdate&&a.componentWillUpdate(r,h,l),"function"==typeof a.UNSAFE_componentWillUpdate&&a.UNSAFE_componentWillUpdate(r,h,l)),"function"==typeof a.componentDidUpdate&&(t.flags|=4),"function"==typeof a.getSnapshotBeforeUpdate&&(t.flags|=1024)):("function"!=typeof a.componentDidUpdate||s===e.memoizedProps&&p===e.memoizedState||(t.flags|=4),"function"!=typeof a.getSnapshotBeforeUpdate||s===e.memoizedProps&&p===e.memoizedState||(t.flags|=1024),t.memoizedProps=r,t.memoizedState=h),a.props=r,a.state=h,a.context=l,r=u):("function"!=typeof a.componentDidUpdate||s===e.memoizedProps&&p===e.memoizedState||(t.flags|=4),"function"!=typeof a.getSnapshotBeforeUpdate||s===e.memoizedProps&&p===e.memoizedState||(t.flags|=1024),r=!1)}return Ps(e,t,n,r,i,o)}function Ps(e,t,n,r,o,i){js(e,t);var a=0!=(128&t.flags);if(!r&&!a)return o&&Do(t,n,!1),Ws(e,t,i);r=t.stateNode,ws.current=t;var s=a&&"function"!=typeof n.getDerivedStateFromError?null:r.render();return t.flags|=1,null!==e&&a?(t.child=Yi(t,e.child,null,i),t.child=Yi(t,null,s,i)):Es(e,t,s,i),t.memoizedState=r.state,o&&Do(t,n,!0),t.child}function As(e){var t=e.stateNode;t.pendingContext?Fo(0,t.pendingContext,t.pendingContext!==t.context):t.context&&Fo(0,t.context,!1),ea(e,t.containerInfo)}function Ts(e,t,n,r,o){return Vi(),Gi(o),t.flags|=256,Es(e,t,n,r),t.child}var Is={dehydrated:null,treeContext:null,retryLane:0};function Ns(e){return{baseLanes:e,cachePool:null,transitions:null}}function Fs(e,t){return{baseLanes:e.baseLanes|t,cachePool:null,transitions:e.transitions}}function Rs(e,t,n){var r,o=t.pendingProps,a=oa.current,s=!1,l=0!=(128&t.flags);if((r=l)||(r=(null===e||null!==e.memoizedState)&&0!=(2&a)),r?(s=!0,t.flags&=-129):null!==e&&null===e.memoizedState||(a|=1),jo(oa,1&a),null===e)return Di(t),null!==(e=t.memoizedState)&&null!==(e=e.dehydrated)?(0==(1&t.mode)?t.lanes=1:"$!"===e.data?t.lanes=8:t.lanes=1073741824,null):(a=o.children,e=o.fallback,s?(o=t.mode,s=t.child,a={mode:"hidden",children:a},0==(1&o)&&null!==s?(s.childLanes=0,s.pendingProps=a):s=Fu(a,o,0,null),e=Nu(e,o,n,null),s.return=t,e.return=t,s.sibling=e,t.child=s,t.child.memoizedState=Ns(n),t.memoizedState=Is,e):Ms(t,a));if(null!==(a=e.memoizedState)){if(null!==(r=a.dehydrated)){if(l)return 256&t.flags?(t.flags&=-257,Us(e,t,n,Error(i(422)))):null!==t.memoizedState?(t.child=e.child,t.flags|=128,null):(s=o.fallback,a=t.mode,o=Fu({mode:"visible",children:o.children},a,0,null),(s=Nu(s,a,n,null)).flags|=2,o.return=t,s.return=t,o.sibling=s,t.child=o,0!=(1&t.mode)&&Yi(t,e.child,null,n),t.child.memoizedState=Ns(n),t.memoizedState=Is,s);if(0==(1&t.mode))t=Us(e,t,n,null);else if("$!"===r.data)t=Us(e,t,n,Error(i(419)));else if(o=0!=(n&e.childLanes),xs||o){if(null!==(o=Ol)){switch(n&-n){case 4:s=2;break;case 16:s=8;break;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:s=32;break;case 536870912:s=268435456;break;default:s=0}0!==(o=0!=(s&(o.suspendedLanes|n))?0:s)&&o!==a.retryLane&&(a.retryLane=o,Zl(e,o,-1))}hu(),t=Us(e,t,n,Error(i(421)))}else"$?"===r.data?(t.flags|=128,t.child=e.child,t=Ou.bind(null,e),r._reactRetry=t,t=null):(n=a.treeContext,Ti=uo(r.nextSibling),Ai=t,Ii=!0,Ni=null,null!==n&&(Ei[Si++]=ki,Ei[Si++]=Oi,Ei[Si++]=_i,ki=n.id,Oi=n.overflow,_i=t),(t=Ms(t,t.pendingProps.children)).flags|=4096);return t}return s?(o=zs(e,t,o.children,o.fallback,n),s=t.child,a=e.child.memoizedState,s.memoizedState=null===a?Ns(n):Fs(a,n),s.childLanes=e.childLanes&~n,t.memoizedState=Is,o):(n=Ds(e,t,o.children,n),t.memoizedState=null,n)}return s?(o=zs(e,t,o.children,o.fallback,n),s=t.child,a=e.child.memoizedState,s.memoizedState=null===a?Ns(n):Fs(a,n),s.childLanes=e.childLanes&~n,t.memoizedState=Is,o):(n=Ds(e,t,o.children,n),t.memoizedState=null,n)}function Ms(e,t){return(t=Fu({mode:"visible",children:t},e.mode,0,null)).return=e,e.child=t}function Ds(e,t,n,r){var o=e.child;return e=o.sibling,n=Tu(o,{mode:"visible",children:n}),0==(1&t.mode)&&(n.lanes=r),n.return=t,n.sibling=null,null!==e&&(null===(r=t.deletions)?(t.deletions=[e],t.flags|=16):r.push(e)),t.child=n}function zs(e,t,n,r,o){var i=t.mode,a=(e=e.child).sibling,s={mode:"hidden",children:n};return 0==(1&i)&&t.child!==e?((n=t.child).childLanes=0,n.pendingProps=s,t.deletions=null):(n=Tu(e,s)).subtreeFlags=14680064&e.subtreeFlags,null!==a?r=Tu(a,r):(r=Nu(r,i,o,null)).flags|=2,r.return=t,n.return=t,n.sibling=r,t.child=n,r}function Us(e,t,n,r){return null!==r&&Gi(r),Yi(t,e.child,null,n),(e=Ms(t,t.pendingProps.children)).flags|=2,t.memoizedState=null,e}function Vs(e,t,n){e.lanes|=t;var r=e.alternate;null!==r&&(r.lanes|=t),Jo(e.return,t,n)}function Gs(e,t,n,r,o){var i=e.memoizedState;null===i?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:r,tail:n,tailMode:o}:(i.isBackwards=t,i.rendering=null,i.renderingStartTime=0,i.last=r,i.tail=n,i.tailMode=o)}function Bs(e,t,n){var r=t.pendingProps,o=r.revealOrder,i=r.tail;if(Es(e,t,r.children,n),0!=(2&(r=oa.current)))r=1&r|2,t.flags|=128;else{if(null!==e&&0!=(128&e.flags))e:for(e=t.child;null!==e;){if(13===e.tag)null!==e.memoizedState&&Vs(e,n,t);else if(19===e.tag)Vs(e,n,t);else if(null!==e.child){e.child.return=e,e=e.child;continue}if(e===t)break e;for(;null===e.sibling;){if(null===e.return||e.return===t)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}r&=1}if(jo(oa,r),0==(1&t.mode))t.memoizedState=null;else switch(o){case"forwards":for(n=t.child,o=null;null!==n;)null!==(e=n.alternate)&&null===ia(e)&&(o=n),n=n.sibling;null===(n=o)?(o=t.child,t.child=null):(o=n.sibling,n.sibling=null),Gs(t,!1,o,n,i);break;case"backwards":for(n=null,o=t.child,t.child=null;null!==o;){if(null!==(e=o.alternate)&&null===ia(e)){t.child=o;break}e=o.sibling,o.sibling=n,n=o,o=e}Gs(t,!0,n,null,i);break;case"together":Gs(t,!1,null,null,void 0);break;default:t.memoizedState=null}return t.child}function Ws(e,t,n){if(null!==e&&(t.dependencies=e.dependencies),Il|=t.lanes,0==(n&t.childLanes))return null;if(null!==e&&t.child!==e.child)throw Error(i(153));if(null!==t.child){for(n=Tu(e=t.child,e.pendingProps),t.child=n,n.return=t;null!==e.sibling;)e=e.sibling,(n=n.sibling=Tu(e,e.pendingProps)).return=t;n.sibling=null}return t.child}function Hs(e,t){switch(Pi(t),t.tag){case 1:return Io(t.type)&&No(),65536&(e=t.flags)?(t.flags=-65537&e|128,t):null;case 3:return ta(),Oo(Po),Oo(Co),sa(),0!=(65536&(e=t.flags))&&0==(128&e)?(t.flags=-65537&e|128,t):null;case 5:return ra(t),null;case 13:if(Oo(oa),null!==(e=t.memoizedState)&&null!==e.dehydrated){if(null===t.alternate)throw Error(i(340));Vi()}return 65536&(e=t.flags)?(t.flags=-65537&e|128,t):null;case 19:return Oo(oa),null;case 4:return ta(),null;case 10:return Ko(t.type._context),null;case 22:case 23:return cu(),null;default:return null}}var $s=!1,Ys=!1,qs="function"==typeof WeakSet?WeakSet:Set,Qs=null;function Xs(e,t){var n=e.ref;if(null!==n)if("function"==typeof n)try{n(null)}catch(n){Su(e,t,n)}else n.current=null}function Ks(e,t,n){try{n()}catch(n){Su(e,t,n)}}var Js=!1;function Zs(e,t,n){var r=t.updateQueue;if(null!==(r=null!==r?r.lastEffect:null)){var o=r=r.next;do{if((o.tag&e)===e){var i=o.destroy;o.destroy=void 0,void 0!==i&&Ks(t,n,i)}o=o.next}while(o!==r)}}function el(e,t){if(null!==(t=null!==(t=t.updateQueue)?t.lastEffect:null)){var n=t=t.next;do{if((n.tag&e)===e){var r=n.create;n.destroy=r()}n=n.next}while(n!==t)}}function tl(e){var t=e.ref;if(null!==t){var n=e.stateNode;e.tag,e=n,"function"==typeof t?t(e):t.current=e}}function nl(e){var t=e.alternate;null!==t&&(e.alternate=null,nl(t)),e.child=null,e.deletions=null,e.sibling=null,5===e.tag&&null!==(t=e.stateNode)&&(delete t[po],delete t[ho],delete t[vo],delete t[yo],delete t[go]),e.stateNode=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}function rl(e){return 5===e.tag||3===e.tag||4===e.tag}function ol(e){e:for(;;){for(;null===e.sibling;){if(null===e.return||rl(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;5!==e.tag&&6!==e.tag&&18!==e.tag;){if(2&e.flags)continue e;if(null===e.child||4===e.tag)continue e;e.child.return=e,e=e.child}if(!(2&e.flags))return e.stateNode}}function il(e,t,n){var r=e.tag;if(5===r||6===r)e=e.stateNode,t?8===n.nodeType?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(8===n.nodeType?(t=n.parentNode).insertBefore(e,n):(t=n).appendChild(e),null!=(n=n._reactRootContainer)||null!==t.onclick||(t.onclick=Zr));else if(4!==r&&null!==(e=e.child))for(il(e,t,n),e=e.sibling;null!==e;)il(e,t,n),e=e.sibling}function al(e,t,n){var r=e.tag;if(5===r||6===r)e=e.stateNode,t?n.insertBefore(e,t):n.appendChild(e);else if(4!==r&&null!==(e=e.child))for(al(e,t,n),e=e.sibling;null!==e;)al(e,t,n),e=e.sibling}var sl=null,ll=!1;function ul(e,t,n){for(n=n.child;null!==n;)cl(e,t,n),n=n.sibling}function cl(e,t,n){if(it&&"function"==typeof it.onCommitFiberUnmount)try{it.onCommitFiberUnmount(ot,n)}catch(e){}switch(n.tag){case 5:Ys||Xs(n,t);case 6:var r=sl,o=ll;sl=null,ul(e,t,n),ll=o,null!==(sl=r)&&(ll?(e=sl,n=n.stateNode,8===e.nodeType?e.parentNode.removeChild(n):e.removeChild(n)):sl.removeChild(n.stateNode));break;case 18:null!==sl&&(ll?(e=sl,n=n.stateNode,8===e.nodeType?lo(e.parentNode,n):1===e.nodeType&&lo(e,n),Gt(e)):lo(sl,n.stateNode));break;case 4:r=sl,o=ll,sl=n.stateNode.containerInfo,ll=!0,ul(e,t,n),sl=r,ll=o;break;case 0:case 11:case 14:case 15:if(!Ys&&null!==(r=n.updateQueue)&&null!==(r=r.lastEffect)){o=r=r.next;do{var i=o,a=i.destroy;i=i.tag,void 0!==a&&(0!=(2&i)||0!=(4&i))&&Ks(n,t,a),o=o.next}while(o!==r)}ul(e,t,n);break;case 1:if(!Ys&&(Xs(n,t),"function"==typeof(r=n.stateNode).componentWillUnmount))try{r.props=n.memoizedProps,r.state=n.memoizedState,r.componentWillUnmount()}catch(e){Su(n,t,e)}ul(e,t,n);break;case 21:ul(e,t,n);break;case 22:1&n.mode?(Ys=(r=Ys)||null!==n.memoizedState,ul(e,t,n),Ys=r):ul(e,t,n);break;default:ul(e,t,n)}}function fl(e){var t=e.updateQueue;if(null!==t){e.updateQueue=null;var n=e.stateNode;null===n&&(n=e.stateNode=new qs),t.forEach((function(t){var r=ju.bind(null,e,t);n.has(t)||(n.add(t),t.then(r,r))}))}}function pl(e,t){var n=t.deletions;if(null!==n)for(var r=0;r<n.length;r++){var o=n[r];try{var a=e,s=t,l=s;e:for(;null!==l;){switch(l.tag){case 5:sl=l.stateNode,ll=!1;break e;case 3:case 4:sl=l.stateNode.containerInfo,ll=!0;break e}l=l.return}if(null===sl)throw Error(i(160));cl(a,s,o),sl=null,ll=!1;var u=o.alternate;null!==u&&(u.return=null),o.return=null}catch(e){Su(o,t,e)}}if(12854&t.subtreeFlags)for(t=t.child;null!==t;)dl(t,e),t=t.sibling}function dl(e,t){var n=e.alternate,r=e.flags;switch(e.tag){case 0:case 11:case 14:case 15:if(pl(t,e),hl(e),4&r){try{Zs(3,e,e.return),el(3,e)}catch(t){Su(e,e.return,t)}try{Zs(5,e,e.return)}catch(t){Su(e,e.return,t)}}break;case 1:pl(t,e),hl(e),512&r&&null!==n&&Xs(n,n.return);break;case 5:if(pl(t,e),hl(e),512&r&&null!==n&&Xs(n,n.return),32&e.flags){var o=e.stateNode;try{pe(o,"")}catch(t){Su(e,e.return,t)}}if(4&r&&null!=(o=e.stateNode)){var a=e.memoizedProps,s=null!==n?n.memoizedProps:a,l=e.type,u=e.updateQueue;if(e.updateQueue=null,null!==u)try{"input"===l&&"radio"===a.type&&null!=a.name&&K(o,a),be(l,s);var c=be(l,a);for(s=0;s<u.length;s+=2){var f=u[s],p=u[s+1];"style"===f?ve(o,p):"dangerouslySetInnerHTML"===f?fe(o,p):"children"===f?pe(o,p):b(o,f,p,c)}switch(l){case"input":J(o,a);break;case"textarea":ie(o,a);break;case"select":var d=o._wrapperState.wasMultiple;o._wrapperState.wasMultiple=!!a.multiple;var h=a.value;null!=h?ne(o,!!a.multiple,h,!1):d!==!!a.multiple&&(null!=a.defaultValue?ne(o,!!a.multiple,a.defaultValue,!0):ne(o,!!a.multiple,a.multiple?[]:"",!1))}o[ho]=a}catch(t){Su(e,e.return,t)}}break;case 6:if(pl(t,e),hl(e),4&r){if(null===e.stateNode)throw Error(i(162));c=e.stateNode,f=e.memoizedProps;try{c.nodeValue=f}catch(t){Su(e,e.return,t)}}break;case 3:if(pl(t,e),hl(e),4&r&&null!==n&&n.memoizedState.isDehydrated)try{Gt(t.containerInfo)}catch(t){Su(e,e.return,t)}break;case 4:default:pl(t,e),hl(e);break;case 13:pl(t,e),hl(e),8192&(c=e.child).flags&&null!==c.memoizedState&&(null===c.alternate||null===c.alternate.memoizedState)&&(Dl=Ke()),4&r&&fl(e);break;case 22:if(c=null!==n&&null!==n.memoizedState,1&e.mode?(Ys=(f=Ys)||c,pl(t,e),Ys=f):pl(t,e),hl(e),8192&r){f=null!==e.memoizedState;e:for(p=null,d=e;;){if(5===d.tag){if(null===p){p=d;try{o=d.stateNode,f?"function"==typeof(a=o.style).setProperty?a.setProperty("display","none","important"):a.display="none":(l=d.stateNode,s=null!=(u=d.memoizedProps.style)&&u.hasOwnProperty("display")?u.display:null,l.style.display=me("display",s))}catch(t){Su(e,e.return,t)}}}else if(6===d.tag){if(null===p)try{d.stateNode.nodeValue=f?"":d.memoizedProps}catch(t){Su(e,e.return,t)}}else if((22!==d.tag&&23!==d.tag||null===d.memoizedState||d===e)&&null!==d.child){d.child.return=d,d=d.child;continue}if(d===e)break e;for(;null===d.sibling;){if(null===d.return||d.return===e)break e;p===d&&(p=null),d=d.return}p===d&&(p=null),d.sibling.return=d.return,d=d.sibling}if(f&&!c&&0!=(1&e.mode))for(Qs=e,e=e.child;null!==e;){for(c=Qs=e;null!==Qs;){switch(p=(f=Qs).child,f.tag){case 0:case 11:case 14:case 15:Zs(4,f,f.return);break;case 1:if(Xs(f,f.return),"function"==typeof(a=f.stateNode).componentWillUnmount){d=f,h=f.return;try{o=d,a.props=o.memoizedProps,a.state=o.memoizedState,a.componentWillUnmount()}catch(e){Su(d,h,e)}}break;case 5:Xs(f,f.return);break;case 22:if(null!==f.memoizedState){gl(c);continue}}null!==p?(p.return=f,Qs=p):gl(c)}e=e.sibling}}break;case 19:pl(t,e),hl(e),4&r&&fl(e);case 21:}}function hl(e){var t=e.flags;if(2&t){try{e:{for(var n=e.return;null!==n;){if(rl(n)){var r=n;break e}n=n.return}throw Error(i(160))}switch(r.tag){case 5:var o=r.stateNode;32&r.flags&&(pe(o,""),r.flags&=-33),al(e,ol(e),o);break;case 3:case 4:var a=r.stateNode.containerInfo;il(e,ol(e),a);break;default:throw Error(i(161))}}catch(t){Su(e,e.return,t)}e.flags&=-3}4096&t&&(e.flags&=-4097)}function ml(e,t,n){Qs=e,vl(e,t,n)}function vl(e,t,n){for(var r=0!=(1&e.mode);null!==Qs;){var o=Qs,i=o.child;if(22===o.tag&&r){var a=null!==o.memoizedState||$s;if(!a){var s=o.alternate,l=null!==s&&null!==s.memoizedState||Ys;s=$s;var u=Ys;if($s=a,(Ys=l)&&!u)for(Qs=o;null!==Qs;)l=(a=Qs).child,22===a.tag&&null!==a.memoizedState?bl(o):null!==l?(l.return=a,Qs=l):bl(o);for(;null!==i;)Qs=i,vl(i,t,n),i=i.sibling;Qs=o,$s=s,Ys=u}yl(e)}else 0!=(8772&o.subtreeFlags)&&null!==i?(i.return=o,Qs=i):yl(e)}}function yl(e){for(;null!==Qs;){var t=Qs;if(0!=(8772&t.flags)){var n=t.alternate;try{if(0!=(8772&t.flags))switch(t.tag){case 0:case 11:case 15:Ys||el(5,t);break;case 1:var r=t.stateNode;if(4&t.flags&&!Ys)if(null===n)r.componentDidMount();else{var o=t.elementType===t.type?n.memoizedProps:Ho(t.type,n.memoizedProps);r.componentDidUpdate(o,n.memoizedState,r.__reactInternalSnapshotBeforeUpdate)}var a=t.updateQueue;null!==a&&ci(t,a,r);break;case 3:var s=t.updateQueue;if(null!==s){if(n=null,null!==t.child)switch(t.child.tag){case 5:case 1:n=t.child.stateNode}ci(t,s,n)}break;case 5:var l=t.stateNode;if(null===n&&4&t.flags){n=l;var u=t.memoizedProps;switch(t.type){case"button":case"input":case"select":case"textarea":u.autoFocus&&n.focus();break;case"img":u.src&&(n.src=u.src)}}break;case 6:case 4:case 12:case 19:case 17:case 21:case 22:case 23:break;case 13:if(null===t.memoizedState){var c=t.alternate;if(null!==c){var f=c.memoizedState;if(null!==f){var p=f.dehydrated;null!==p&&Gt(p)}}}break;default:throw Error(i(163))}Ys||512&t.flags&&tl(t)}catch(e){Su(t,t.return,e)}}if(t===e){Qs=null;break}if(null!==(n=t.sibling)){n.return=t.return,Qs=n;break}Qs=t.return}}function gl(e){for(;null!==Qs;){var t=Qs;if(t===e){Qs=null;break}var n=t.sibling;if(null!==n){n.return=t.return,Qs=n;break}Qs=t.return}}function bl(e){for(;null!==Qs;){var t=Qs;try{switch(t.tag){case 0:case 11:case 15:var n=t.return;try{el(4,t)}catch(e){Su(t,n,e)}break;case 1:var r=t.stateNode;if("function"==typeof r.componentDidMount){var o=t.return;try{r.componentDidMount()}catch(e){Su(t,o,e)}}var i=t.return;try{tl(t)}catch(e){Su(t,i,e)}break;case 5:var a=t.return;try{tl(t)}catch(e){Su(t,a,e)}}}catch(e){Su(t,t.return,e)}if(t===e){Qs=null;break}var s=t.sibling;if(null!==s){s.return=t.return,Qs=s;break}Qs=t.return}}var wl,xl=Math.ceil,El=w.ReactCurrentDispatcher,Sl=w.ReactCurrentOwner,_l=w.ReactCurrentBatchConfig,kl=0,Ol=null,jl=null,Ll=0,Cl=0,Pl=ko(0),Al=0,Tl=null,Il=0,Nl=0,Fl=0,Rl=null,Ml=null,Dl=0,zl=1/0,Ul=null,Vl=!1,Gl=null,Bl=null,Wl=!1,Hl=null,$l=0,Yl=0,ql=null,Ql=-1,Xl=0;function Kl(){return 0!=(6&kl)?Ke():-1!==Ql?Ql:Ql=Ke()}function Jl(e){return 0==(1&e.mode)?1:0!=(2&kl)&&0!==Ll?Ll&-Ll:null!==Wo.transition?(0===Xl&&(Xl=mt()),Xl):0!==(e=bt)?e:e=void 0===(e=window.event)?16:Xt(e.type)}function Zl(e,t,n){if(50<Yl)throw Yl=0,ql=null,Error(i(185));var r=eu(e,t);return null===r?null:(yt(r,t,n),0!=(2&kl)&&r===Ol||(r===Ol&&(0==(2&kl)&&(Nl|=t),4===Al&&au(r,Ll)),nu(r,n),1===t&&0===kl&&0==(1&e.mode)&&(zl=Ke()+500,Uo&&Bo())),r)}function eu(e,t){e.lanes|=t;var n=e.alternate;for(null!==n&&(n.lanes|=t),n=e,e=e.return;null!==e;)e.childLanes|=t,null!==(n=e.alternate)&&(n.childLanes|=t),n=e,e=e.return;return 3===n.tag?n.stateNode:null}function tu(e){return(null!==Ol||null!==ti)&&0!=(1&e.mode)&&0==(2&kl)}function nu(e,t){var n=e.callbackNode;!function(e,t){for(var n=e.suspendedLanes,r=e.pingedLanes,o=e.expirationTimes,i=e.pendingLanes;0<i;){var a=31-at(i),s=1<<a,l=o[a];-1===l?0!=(s&n)&&0==(s&r)||(o[a]=dt(s,t)):l<=t&&(e.expiredLanes|=s),i&=~s}}(e,t);var r=pt(e,e===Ol?Ll:0);if(0===r)null!==n&&qe(n),e.callbackNode=null,e.callbackPriority=0;else if(t=r&-r,e.callbackPriority!==t){if(null!=n&&qe(n),1===t)0===e.tag?function(e){Uo=!0,Go(e)}(su.bind(null,e)):Go(su.bind(null,e)),ao((function(){0===kl&&Bo()})),n=null;else{switch(wt(r)){case 1:n=Ze;break;case 4:n=et;break;case 16:default:n=tt;break;case 536870912:n=rt}n=Lu(n,ru.bind(null,e))}e.callbackPriority=t,e.callbackNode=n}}function ru(e,t){if(Ql=-1,Xl=0,0!=(6&kl))throw Error(i(327));var n=e.callbackNode;if(xu()&&e.callbackNode!==n)return null;var r=pt(e,e===Ol?Ll:0);if(0===r)return null;if(0!=(30&r)||0!=(r&e.expiredLanes)||t)t=mu(e,r);else{t=r;var o=kl;kl|=2;var a=du();for(Ol===e&&Ll===t||(Ul=null,zl=Ke()+500,fu(e,t));;)try{yu();break}catch(t){pu(e,t)}Xo(),El.current=a,kl=o,null!==jl?t=0:(Ol=null,Ll=0,t=Al)}if(0!==t){if(2===t&&0!==(o=ht(e))&&(r=o,t=ou(e,o)),1===t)throw n=Tl,fu(e,0),au(e,r),nu(e,Ke()),n;if(6===t)au(e,r);else{if(o=e.current.alternate,0==(30&r)&&!function(e){for(var t=e;;){if(16384&t.flags){var n=t.updateQueue;if(null!==n&&null!==(n=n.stores))for(var r=0;r<n.length;r++){var o=n[r],i=o.getSnapshot;o=o.value;try{if(!sr(i(),o))return!1}catch(e){return!1}}}if(n=t.child,16384&t.subtreeFlags&&null!==n)n.return=t,t=n;else{if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return!0;t=t.return}t.sibling.return=t.return,t=t.sibling}}return!0}(o)&&(2===(t=mu(e,r))&&0!==(a=ht(e))&&(r=a,t=ou(e,a)),1===t))throw n=Tl,fu(e,0),au(e,r),nu(e,Ke()),n;switch(e.finishedWork=o,e.finishedLanes=r,t){case 0:case 1:throw Error(i(345));case 2:case 5:wu(e,Ml,Ul);break;case 3:if(au(e,r),(130023424&r)===r&&10<(t=Dl+500-Ke())){if(0!==pt(e,0))break;if(((o=e.suspendedLanes)&r)!==r){Kl(),e.pingedLanes|=e.suspendedLanes&o;break}e.timeoutHandle=ro(wu.bind(null,e,Ml,Ul),t);break}wu(e,Ml,Ul);break;case 4:if(au(e,r),(4194240&r)===r)break;for(t=e.eventTimes,o=-1;0<r;){var s=31-at(r);a=1<<s,(s=t[s])>o&&(o=s),r&=~a}if(r=o,10<(r=(120>(r=Ke()-r)?120:480>r?480:1080>r?1080:1920>r?1920:3e3>r?3e3:4320>r?4320:1960*xl(r/1960))-r)){e.timeoutHandle=ro(wu.bind(null,e,Ml,Ul),r);break}wu(e,Ml,Ul);break;default:throw Error(i(329))}}}return nu(e,Ke()),e.callbackNode===n?ru.bind(null,e):null}function ou(e,t){var n=Rl;return e.current.memoizedState.isDehydrated&&(fu(e,t).flags|=256),2!==(e=mu(e,t))&&(t=Ml,Ml=n,null!==t&&iu(t)),e}function iu(e){null===Ml?Ml=e:Ml.push.apply(Ml,e)}function au(e,t){for(t&=~Fl,t&=~Nl,e.suspendedLanes|=t,e.pingedLanes&=~t,e=e.expirationTimes;0<t;){var n=31-at(t),r=1<<n;e[n]=-1,t&=~r}}function su(e){if(0!=(6&kl))throw Error(i(327));xu();var t=pt(e,0);if(0==(1&t))return nu(e,Ke()),null;var n=mu(e,t);if(0!==e.tag&&2===n){var r=ht(e);0!==r&&(t=r,n=ou(e,r))}if(1===n)throw n=Tl,fu(e,0),au(e,t),nu(e,Ke()),n;if(6===n)throw Error(i(345));return e.finishedWork=e.current.alternate,e.finishedLanes=t,wu(e,Ml,Ul),nu(e,Ke()),null}function lu(e,t){var n=kl;kl|=1;try{return e(t)}finally{0===(kl=n)&&(zl=Ke()+500,Uo&&Bo())}}function uu(e){null!==Hl&&0===Hl.tag&&0==(6&kl)&&xu();var t=kl;kl|=1;var n=_l.transition,r=bt;try{if(_l.transition=null,bt=1,e)return e()}finally{bt=r,_l.transition=n,0==(6&(kl=t))&&Bo()}}function cu(){Cl=Pl.current,Oo(Pl)}function fu(e,t){e.finishedWork=null,e.finishedLanes=0;var n=e.timeoutHandle;if(-1!==n&&(e.timeoutHandle=-1,oo(n)),null!==jl)for(n=jl.return;null!==n;){var r=n;switch(Pi(r),r.tag){case 1:null!=(r=r.type.childContextTypes)&&No();break;case 3:ta(),Oo(Po),Oo(Co),sa();break;case 5:ra(r);break;case 4:ta();break;case 13:case 19:Oo(oa);break;case 10:Ko(r.type._context);break;case 22:case 23:cu()}n=n.return}if(Ol=e,jl=e=Tu(e.current,null),Ll=Cl=t,Al=0,Tl=null,Fl=Nl=Il=0,Ml=Rl=null,null!==ti){for(t=0;t<ti.length;t++)if(null!==(r=(n=ti[t]).interleaved)){n.interleaved=null;var o=r.next,i=n.pending;if(null!==i){var a=i.next;i.next=o,r.next=a}n.pending=r}ti=null}return e}function pu(e,t){for(;;){var n=jl;try{if(Xo(),la.current=ns,ha){for(var r=fa.memoizedState;null!==r;){var o=r.queue;null!==o&&(o.pending=null),r=r.next}ha=!1}if(ca=0,da=pa=fa=null,ma=!1,va=0,Sl.current=null,null===n||null===n.return){Al=1,Tl=t,jl=null;break}e:{var a=e,s=n.return,l=n,u=t;if(t=Ll,l.flags|=32768,null!==u&&"object"==typeof u&&"function"==typeof u.then){var c=u,f=l,p=f.tag;if(0==(1&f.mode)&&(0===p||11===p||15===p)){var d=f.alternate;d?(f.updateQueue=d.updateQueue,f.memoizedState=d.memoizedState,f.lanes=d.lanes):(f.updateQueue=null,f.memoizedState=null)}var h=ms(s);if(null!==h){h.flags&=-257,vs(h,s,l,0,t),1&h.mode&&hs(a,c,t),u=c;var m=(t=h).updateQueue;if(null===m){var v=new Set;v.add(u),t.updateQueue=v}else m.add(u);break e}if(0==(1&t)){hs(a,c,t),hu();break e}u=Error(i(426))}else if(Ii&&1&l.mode){var y=ms(s);if(null!==y){0==(65536&y.flags)&&(y.flags|=256),vs(y,s,l,0,t),Gi(u);break e}}a=u,4!==Al&&(Al=2),null===Rl?Rl=[a]:Rl.push(a),u=as(u,l),l=s;do{switch(l.tag){case 3:l.flags|=65536,t&=-t,l.lanes|=t,li(l,ps(0,u,t));break e;case 1:a=u;var g=l.type,b=l.stateNode;if(0==(128&l.flags)&&("function"==typeof g.getDerivedStateFromError||null!==b&&"function"==typeof b.componentDidCatch&&(null===Bl||!Bl.has(b)))){l.flags|=65536,t&=-t,l.lanes|=t,li(l,ds(l,a,t));break e}}l=l.return}while(null!==l)}bu(n)}catch(e){t=e,jl===n&&null!==n&&(jl=n=n.return);continue}break}}function du(){var e=El.current;return El.current=ns,null===e?ns:e}function hu(){0!==Al&&3!==Al&&2!==Al||(Al=4),null===Ol||0==(268435455&Il)&&0==(268435455&Nl)||au(Ol,Ll)}function mu(e,t){var n=kl;kl|=2;var r=du();for(Ol===e&&Ll===t||(Ul=null,fu(e,t));;)try{vu();break}catch(t){pu(e,t)}if(Xo(),kl=n,El.current=r,null!==jl)throw Error(i(261));return Ol=null,Ll=0,Al}function vu(){for(;null!==jl;)gu(jl)}function yu(){for(;null!==jl&&!Qe();)gu(jl)}function gu(e){var t=wl(e.alternate,e,Cl);e.memoizedProps=e.pendingProps,null===t?bu(e):jl=t,Sl.current=null}function bu(e){var t=e;do{var n=t.alternate;if(e=t.return,0==(32768&t.flags)){if(null!==(n=bs(n,t,Cl)))return void(jl=n)}else{if(null!==(n=Hs(n,t)))return n.flags&=32767,void(jl=n);if(null===e)return Al=6,void(jl=null);e.flags|=32768,e.subtreeFlags=0,e.deletions=null}if(null!==(t=t.sibling))return void(jl=t);jl=t=e}while(null!==t);0===Al&&(Al=5)}function wu(e,t,n){var r=bt,o=_l.transition;try{_l.transition=null,bt=1,function(e,t,n,r){do{xu()}while(null!==Hl);if(0!=(6&kl))throw Error(i(327));n=e.finishedWork;var o=e.finishedLanes;if(null===n)return null;if(e.finishedWork=null,e.finishedLanes=0,n===e.current)throw Error(i(177));e.callbackNode=null,e.callbackPriority=0;var a=n.lanes|n.childLanes;if(function(e,t){var n=e.pendingLanes&~t;e.pendingLanes=t,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=t,e.mutableReadLanes&=t,e.entangledLanes&=t,t=e.entanglements;var r=e.eventTimes;for(e=e.expirationTimes;0<n;){var o=31-at(n),i=1<<o;t[o]=0,r[o]=-1,e[o]=-1,n&=~i}}(e,a),e===Ol&&(jl=Ol=null,Ll=0),0==(2064&n.subtreeFlags)&&0==(2064&n.flags)||Wl||(Wl=!0,Lu(tt,(function(){return xu(),null}))),a=0!=(15990&n.flags),0!=(15990&n.subtreeFlags)||a){a=_l.transition,_l.transition=null;var s=bt;bt=1;var l=kl;kl|=4,Sl.current=null,function(e,t){if(eo=Wt,dr(e=pr())){if("selectionStart"in e)var n={start:e.selectionStart,end:e.selectionEnd};else e:{var r=(n=(n=e.ownerDocument)&&n.defaultView||window).getSelection&&n.getSelection();if(r&&0!==r.rangeCount){n=r.anchorNode;var o=r.anchorOffset,a=r.focusNode;r=r.focusOffset;try{n.nodeType,a.nodeType}catch(e){n=null;break e}var s=0,l=-1,u=-1,c=0,f=0,p=e,d=null;t:for(;;){for(var h;p!==n||0!==o&&3!==p.nodeType||(l=s+o),p!==a||0!==r&&3!==p.nodeType||(u=s+r),3===p.nodeType&&(s+=p.nodeValue.length),null!==(h=p.firstChild);)d=p,p=h;for(;;){if(p===e)break t;if(d===n&&++c===o&&(l=s),d===a&&++f===r&&(u=s),null!==(h=p.nextSibling))break;d=(p=d).parentNode}p=h}n=-1===l||-1===u?null:{start:l,end:u}}else n=null}n=n||{start:0,end:0}}else n=null;for(to={focusedElem:e,selectionRange:n},Wt=!1,Qs=t;null!==Qs;)if(e=(t=Qs).child,0!=(1028&t.subtreeFlags)&&null!==e)e.return=t,Qs=e;else for(;null!==Qs;){t=Qs;try{var m=t.alternate;if(0!=(1024&t.flags))switch(t.tag){case 0:case 11:case 15:case 5:case 6:case 4:case 17:break;case 1:if(null!==m){var v=m.memoizedProps,y=m.memoizedState,g=t.stateNode,b=g.getSnapshotBeforeUpdate(t.elementType===t.type?v:Ho(t.type,v),y);g.__reactInternalSnapshotBeforeUpdate=b}break;case 3:var w=t.stateNode.containerInfo;if(1===w.nodeType)w.textContent="";else if(9===w.nodeType){var x=w.body;null!=x&&(x.textContent="")}break;default:throw Error(i(163))}}catch(e){Su(t,t.return,e)}if(null!==(e=t.sibling)){e.return=t.return,Qs=e;break}Qs=t.return}m=Js,Js=!1}(e,n),dl(n,e),hr(to),Wt=!!eo,to=eo=null,e.current=n,ml(n,e,o),Xe(),kl=l,bt=s,_l.transition=a}else e.current=n;if(Wl&&(Wl=!1,Hl=e,$l=o),0===(a=e.pendingLanes)&&(Bl=null),function(e){if(it&&"function"==typeof it.onCommitFiberRoot)try{it.onCommitFiberRoot(ot,e,void 0,128==(128&e.current.flags))}catch(e){}}(n.stateNode),nu(e,Ke()),null!==t)for(r=e.onRecoverableError,n=0;n<t.length;n++)r(t[n]);if(Vl)throw Vl=!1,e=Gl,Gl=null,e;0!=(1&$l)&&0!==e.tag&&xu(),0!=(1&(a=e.pendingLanes))?e===ql?Yl++:(Yl=0,ql=e):Yl=0,Bo()}(e,t,n,r)}finally{_l.transition=o,bt=r}return null}function xu(){if(null!==Hl){var e=wt($l),t=_l.transition,n=bt;try{if(_l.transition=null,bt=16>e?16:e,null===Hl)var r=!1;else{if(e=Hl,Hl=null,$l=0,0!=(6&kl))throw Error(i(331));var o=kl;for(kl|=4,Qs=e.current;null!==Qs;){var a=Qs,s=a.child;if(0!=(16&Qs.flags)){var l=a.deletions;if(null!==l){for(var u=0;u<l.length;u++){var c=l[u];for(Qs=c;null!==Qs;){var f=Qs;switch(f.tag){case 0:case 11:case 15:Zs(8,f,a)}var p=f.child;if(null!==p)p.return=f,Qs=p;else for(;null!==Qs;){var d=(f=Qs).sibling,h=f.return;if(nl(f),f===c){Qs=null;break}if(null!==d){d.return=h,Qs=d;break}Qs=h}}}var m=a.alternate;if(null!==m){var v=m.child;if(null!==v){m.child=null;do{var y=v.sibling;v.sibling=null,v=y}while(null!==v)}}Qs=a}}if(0!=(2064&a.subtreeFlags)&&null!==s)s.return=a,Qs=s;else e:for(;null!==Qs;){if(0!=(2048&(a=Qs).flags))switch(a.tag){case 0:case 11:case 15:Zs(9,a,a.return)}var g=a.sibling;if(null!==g){g.return=a.return,Qs=g;break e}Qs=a.return}}var b=e.current;for(Qs=b;null!==Qs;){var w=(s=Qs).child;if(0!=(2064&s.subtreeFlags)&&null!==w)w.return=s,Qs=w;else e:for(s=b;null!==Qs;){if(0!=(2048&(l=Qs).flags))try{switch(l.tag){case 0:case 11:case 15:el(9,l)}}catch(e){Su(l,l.return,e)}if(l===s){Qs=null;break e}var x=l.sibling;if(null!==x){x.return=l.return,Qs=x;break e}Qs=l.return}}if(kl=o,Bo(),it&&"function"==typeof it.onPostCommitFiberRoot)try{it.onPostCommitFiberRoot(ot,e)}catch(e){}r=!0}return r}finally{bt=n,_l.transition=t}}return!1}function Eu(e,t,n){ai(e,t=ps(0,t=as(n,t),1)),t=Kl(),null!==(e=eu(e,1))&&(yt(e,1,t),nu(e,t))}function Su(e,t,n){if(3===e.tag)Eu(e,e,n);else for(;null!==t;){if(3===t.tag){Eu(t,e,n);break}if(1===t.tag){var r=t.stateNode;if("function"==typeof t.type.getDerivedStateFromError||"function"==typeof r.componentDidCatch&&(null===Bl||!Bl.has(r))){ai(t,e=ds(t,e=as(n,e),1)),e=Kl(),null!==(t=eu(t,1))&&(yt(t,1,e),nu(t,e));break}}t=t.return}}function _u(e,t,n){var r=e.pingCache;null!==r&&r.delete(t),t=Kl(),e.pingedLanes|=e.suspendedLanes&n,Ol===e&&(Ll&n)===n&&(4===Al||3===Al&&(130023424&Ll)===Ll&&500>Ke()-Dl?fu(e,0):Fl|=n),nu(e,t)}function ku(e,t){0===t&&(0==(1&e.mode)?t=1:(t=ct,0==(130023424&(ct<<=1))&&(ct=4194304)));var n=Kl();null!==(e=eu(e,t))&&(yt(e,t,n),nu(e,n))}function Ou(e){var t=e.memoizedState,n=0;null!==t&&(n=t.retryLane),ku(e,n)}function ju(e,t){var n=0;switch(e.tag){case 13:var r=e.stateNode,o=e.memoizedState;null!==o&&(n=o.retryLane);break;case 19:r=e.stateNode;break;default:throw Error(i(314))}null!==r&&r.delete(t),ku(e,n)}function Lu(e,t){return Ye(e,t)}function Cu(e,t,n,r){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function Pu(e,t,n,r){return new Cu(e,t,n,r)}function Au(e){return!(!(e=e.prototype)||!e.isReactComponent)}function Tu(e,t){var n=e.alternate;return null===n?((n=Pu(e.tag,t,e.key,e.mode)).elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.subtreeFlags=0,n.deletions=null),n.flags=14680064&e.flags,n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=null===t?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function Iu(e,t,n,r,o,a){var s=2;if(r=e,"function"==typeof e)Au(e)&&(s=1);else if("string"==typeof e)s=5;else e:switch(e){case S:return Nu(n.children,o,a,t);case _:s=8,o|=8;break;case k:return(e=Pu(12,n,t,2|o)).elementType=k,e.lanes=a,e;case C:return(e=Pu(13,n,t,o)).elementType=C,e.lanes=a,e;case P:return(e=Pu(19,n,t,o)).elementType=P,e.lanes=a,e;case I:return Fu(n,o,a,t);default:if("object"==typeof e&&null!==e)switch(e.$$typeof){case O:s=10;break e;case j:s=9;break e;case L:s=11;break e;case A:s=14;break e;case T:s=16,r=null;break e}throw Error(i(130,null==e?e:typeof e,""))}return(t=Pu(s,n,t,o)).elementType=e,t.type=r,t.lanes=a,t}function Nu(e,t,n,r){return(e=Pu(7,e,r,t)).lanes=n,e}function Fu(e,t,n,r){return(e=Pu(22,e,r,t)).elementType=I,e.lanes=n,e.stateNode={},e}function Ru(e,t,n){return(e=Pu(6,e,null,t)).lanes=n,e}function Mu(e,t,n){return(t=Pu(4,null!==e.children?e.children:[],e.key,t)).lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function Du(e,t,n,r,o){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=vt(0),this.expirationTimes=vt(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=vt(0),this.identifierPrefix=r,this.onRecoverableError=o,this.mutableSourceEagerHydrationData=null}function zu(e,t,n,r,o,i,a,s,l){return e=new Du(e,t,n,s,l),1===t?(t=1,!0===i&&(t|=8)):t=0,i=Pu(3,null,null,t),e.current=i,i.stateNode=e,i.memoizedState={element:r,isDehydrated:n,cache:null,transitions:null,pendingSuspenseBoundaries:null},ri(i),e}function Uu(e,t,n){var r=3<arguments.length&&void 0!==arguments[3]?arguments[3]:null;return{$$typeof:E,key:null==r?null:""+r,children:e,containerInfo:t,implementation:n}}function Vu(e){if(!e)return Lo;e:{if(Ge(e=e._reactInternals)!==e||1!==e.tag)throw Error(i(170));var t=e;do{switch(t.tag){case 3:t=t.stateNode.context;break e;case 1:if(Io(t.type)){t=t.stateNode.__reactInternalMemoizedMergedChildContext;break e}}t=t.return}while(null!==t);throw Error(i(171))}if(1===e.tag){var n=e.type;if(Io(n))return Ro(e,n,t)}return t}function Gu(e,t,n,r,o,i,a,s,l){return(e=zu(n,r,!0,e,0,i,0,s,l)).context=Vu(null),n=e.current,(i=ii(r=Kl(),o=Jl(n))).callback=null!=t?t:null,ai(n,i),e.current.lanes=o,yt(e,o,r),nu(e,r),e}function Bu(e,t,n,r){var o=t.current,i=Kl(),a=Jl(o);return n=Vu(n),null===t.context?t.context=n:t.pendingContext=n,(t=ii(i,a)).payload={element:e},null!==(r=void 0===r?null:r)&&(t.callback=r),ai(o,t),null!==(e=Zl(o,a,i))&&si(e,o,a),a}function Wu(e){return(e=e.current).child?(e.child.tag,e.child.stateNode):null}function Hu(e,t){if(null!==(e=e.memoizedState)&&null!==e.dehydrated){var n=e.retryLane;e.retryLane=0!==n&&n<t?n:t}}function $u(e,t){Hu(e,t),(e=e.alternate)&&Hu(e,t)}wl=function(e,t,n){if(null!==e)if(e.memoizedProps!==t.pendingProps||Po.current)xs=!0;else{if(0==(e.lanes&n)&&0==(128&t.flags))return xs=!1,function(e,t,n){switch(t.tag){case 3:As(t),Vi();break;case 5:na(t);break;case 1:Io(t.type)&&Mo(t);break;case 4:ea(t,t.stateNode.containerInfo);break;case 10:var r=t.type._context,o=t.memoizedProps.value;jo($o,r._currentValue),r._currentValue=o;break;case 13:if(null!==(r=t.memoizedState))return null!==r.dehydrated?(jo(oa,1&oa.current),t.flags|=128,null):0!=(n&t.child.childLanes)?Rs(e,t,n):(jo(oa,1&oa.current),null!==(e=Ws(e,t,n))?e.sibling:null);jo(oa,1&oa.current);break;case 19:if(r=0!=(n&t.childLanes),0!=(128&e.flags)){if(r)return Bs(e,t,n);t.flags|=128}if(null!==(o=t.memoizedState)&&(o.rendering=null,o.tail=null,o.lastEffect=null),jo(oa,oa.current),r)break;return null;case 22:case 23:return t.lanes=0,Os(e,t,n)}return Ws(e,t,n)}(e,t,n);xs=0!=(131072&e.flags)}else xs=!1,Ii&&0!=(1048576&t.flags)&&Li(t,xi,t.index);switch(t.lanes=0,t.tag){case 2:var r=t.type;null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),e=t.pendingProps;var o=To(t,Co.current);Zo(t,n),o=wa(null,t,r,e,o,n);var a=xa();return t.flags|=1,"object"==typeof o&&null!==o&&"function"==typeof o.render&&void 0===o.$$typeof?(t.tag=1,t.memoizedState=null,t.updateQueue=null,Io(r)?(a=!0,Mo(t)):a=!1,t.memoizedState=null!==o.state&&void 0!==o.state?o.state:null,ri(t),o.updater=di,t.stateNode=o,o._reactInternals=t,yi(t,r,e,n),t=Ps(null,t,r,!0,a,n)):(t.tag=0,Ii&&a&&Ci(t),Es(null,t,o,n),t=t.child),t;case 16:r=t.elementType;e:{switch(null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),e=t.pendingProps,r=(o=r._init)(r._payload),t.type=r,o=t.tag=function(e){if("function"==typeof e)return Au(e)?1:0;if(null!=e){if((e=e.$$typeof)===L)return 11;if(e===A)return 14}return 2}(r),e=Ho(r,e),o){case 0:t=Ls(null,t,r,e,n);break e;case 1:t=Cs(null,t,r,e,n);break e;case 11:t=Ss(null,t,r,e,n);break e;case 14:t=_s(null,t,r,Ho(r.type,e),n);break e}throw Error(i(306,r,""))}return t;case 0:return r=t.type,o=t.pendingProps,Ls(e,t,r,o=t.elementType===r?o:Ho(r,o),n);case 1:return r=t.type,o=t.pendingProps,Cs(e,t,r,o=t.elementType===r?o:Ho(r,o),n);case 3:e:{if(As(t),null===e)throw Error(i(387));r=t.pendingProps,o=(a=t.memoizedState).element,oi(e,t),ui(t,r,null,n);var s=t.memoizedState;if(r=s.element,a.isDehydrated){if(a={element:r,isDehydrated:!1,cache:s.cache,pendingSuspenseBoundaries:s.pendingSuspenseBoundaries,transitions:s.transitions},t.updateQueue.baseState=a,t.memoizedState=a,256&t.flags){t=Ts(e,t,r,n,o=Error(i(423)));break e}if(r!==o){t=Ts(e,t,r,n,o=Error(i(424)));break e}for(Ti=uo(t.stateNode.containerInfo.firstChild),Ai=t,Ii=!0,Ni=null,n=qi(t,null,r,n),t.child=n;n;)n.flags=-3&n.flags|4096,n=n.sibling}else{if(Vi(),r===o){t=Ws(e,t,n);break e}Es(e,t,r,n)}t=t.child}return t;case 5:return na(t),null===e&&Di(t),r=t.type,o=t.pendingProps,a=null!==e?e.memoizedProps:null,s=o.children,no(r,o)?s=null:null!==a&&no(r,a)&&(t.flags|=32),js(e,t),Es(e,t,s,n),t.child;case 6:return null===e&&Di(t),null;case 13:return Rs(e,t,n);case 4:return ea(t,t.stateNode.containerInfo),r=t.pendingProps,null===e?t.child=Yi(t,null,r,n):Es(e,t,r,n),t.child;case 11:return r=t.type,o=t.pendingProps,Ss(e,t,r,o=t.elementType===r?o:Ho(r,o),n);case 7:return Es(e,t,t.pendingProps,n),t.child;case 8:case 12:return Es(e,t,t.pendingProps.children,n),t.child;case 10:e:{if(r=t.type._context,o=t.pendingProps,a=t.memoizedProps,s=o.value,jo($o,r._currentValue),r._currentValue=s,null!==a)if(sr(a.value,s)){if(a.children===o.children&&!Po.current){t=Ws(e,t,n);break e}}else for(null!==(a=t.child)&&(a.return=t);null!==a;){var l=a.dependencies;if(null!==l){s=a.child;for(var u=l.firstContext;null!==u;){if(u.context===r){if(1===a.tag){(u=ii(-1,n&-n)).tag=2;var c=a.updateQueue;if(null!==c){var f=(c=c.shared).pending;null===f?u.next=u:(u.next=f.next,f.next=u),c.pending=u}}a.lanes|=n,null!==(u=a.alternate)&&(u.lanes|=n),Jo(a.return,n,t),l.lanes|=n;break}u=u.next}}else if(10===a.tag)s=a.type===t.type?null:a.child;else if(18===a.tag){if(null===(s=a.return))throw Error(i(341));s.lanes|=n,null!==(l=s.alternate)&&(l.lanes|=n),Jo(s,n,t),s=a.sibling}else s=a.child;if(null!==s)s.return=a;else for(s=a;null!==s;){if(s===t){s=null;break}if(null!==(a=s.sibling)){a.return=s.return,s=a;break}s=s.return}a=s}Es(e,t,o.children,n),t=t.child}return t;case 9:return o=t.type,r=t.pendingProps.children,Zo(t,n),r=r(o=ei(o)),t.flags|=1,Es(e,t,r,n),t.child;case 14:return o=Ho(r=t.type,t.pendingProps),_s(e,t,r,o=Ho(r.type,o),n);case 15:return ks(e,t,t.type,t.pendingProps,n);case 17:return r=t.type,o=t.pendingProps,o=t.elementType===r?o:Ho(r,o),null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),t.tag=1,Io(r)?(e=!0,Mo(t)):e=!1,Zo(t,n),mi(t,r,o),yi(t,r,o,n),Ps(null,t,r,!0,e,n);case 19:return Bs(e,t,n);case 22:return Os(e,t,n)}throw Error(i(156,t.tag))};var Yu="function"==typeof reportError?reportError:function(e){console.error(e)};function qu(e){this._internalRoot=e}function Qu(e){this._internalRoot=e}function Xu(e){return!(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType)}function Ku(e){return!(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType&&(8!==e.nodeType||" react-mount-point-unstable "!==e.nodeValue))}function Ju(){}function Zu(e,t,n,r,o){var i=n._reactRootContainer;if(i){var a=i;if("function"==typeof o){var s=o;o=function(){var e=Wu(a);s.call(e)}}Bu(t,a,e,o)}else a=function(e,t,n,r,o){if(o){if("function"==typeof r){var i=r;r=function(){var e=Wu(a);i.call(e)}}var a=Gu(t,r,e,0,null,!1,0,"",Ju);return e._reactRootContainer=a,e[mo]=a.current,Gr(8===e.nodeType?e.parentNode:e),uu(),a}for(;o=e.lastChild;)e.removeChild(o);if("function"==typeof r){var s=r;r=function(){var e=Wu(l);s.call(e)}}var l=zu(e,0,!1,null,0,!1,0,"",Ju);return e._reactRootContainer=l,e[mo]=l.current,Gr(8===e.nodeType?e.parentNode:e),uu((function(){Bu(t,l,n,r)})),l}(n,t,e,o,r);return Wu(a)}Qu.prototype.render=qu.prototype.render=function(e){var t=this._internalRoot;if(null===t)throw Error(i(409));Bu(e,t,null,null)},Qu.prototype.unmount=qu.prototype.unmount=function(){var e=this._internalRoot;if(null!==e){this._internalRoot=null;var t=e.containerInfo;uu((function(){Bu(null,e,null,null)})),t[mo]=null}},Qu.prototype.unstable_scheduleHydration=function(e){if(e){var t=_t();e={blockedOn:null,target:e,priority:t};for(var n=0;n<It.length&&0!==t&&t<It[n].priority;n++);It.splice(n,0,e),0===n&&Mt(e)}},xt=function(e){switch(e.tag){case 3:var t=e.stateNode;if(t.current.memoizedState.isDehydrated){var n=ft(t.pendingLanes);0!==n&&(gt(t,1|n),nu(t,Ke()),0==(6&kl)&&(zl=Ke()+500,Bo()))}break;case 13:var r=Kl();uu((function(){return Zl(e,1,r)})),$u(e,1)}},Et=function(e){13===e.tag&&(Zl(e,134217728,Kl()),$u(e,134217728))},St=function(e){if(13===e.tag){var t=Kl(),n=Jl(e);Zl(e,n,t),$u(e,n)}},_t=function(){return bt},kt=function(e,t){var n=bt;try{return bt=e,t()}finally{bt=n}},Ee=function(e,t,n){switch(t){case"input":if(J(e,n),t=n.name,"radio"===n.type&&null!=t){for(n=e;n.parentNode;)n=n.parentNode;for(n=n.querySelectorAll("input[name="+JSON.stringify(""+t)+'][type="radio"]'),t=0;t<n.length;t++){var r=n[t];if(r!==e&&r.form===e.form){var o=Eo(r);if(!o)throw Error(i(90));Y(r),J(r,o)}}}break;case"textarea":ie(e,n);break;case"select":null!=(t=n.value)&&ne(e,!!n.multiple,t,!1)}},Le=lu,Ce=uu;var ec={usingClientEntryPoint:!1,Events:[wo,xo,Eo,Oe,je,lu]},tc={findFiberByHostInstance:bo,bundleType:0,version:"18.1.0",rendererPackageName:"react-dom"},nc={bundleType:tc.bundleType,version:tc.version,rendererPackageName:tc.rendererPackageName,rendererConfig:tc.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setErrorHandler:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:w.ReactCurrentDispatcher,findHostInstanceByFiber:function(e){return null===(e=He(e))?null:e.stateNode},findFiberByHostInstance:tc.findFiberByHostInstance||function(){return null},findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null,reconcilerVersion:"18.1.0-next-22edb9f77-20220426"};if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__){var rc=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!rc.isDisabled&&rc.supportsFiber)try{ot=rc.inject(nc),it=rc}catch(ce){}}t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=ec,t.createPortal=function(e,t){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null;if(!Xu(t))throw Error(i(200));return Uu(e,t,null,n)},t.createRoot=function(e,t){if(!Xu(e))throw Error(i(299));var n=!1,r="",o=Yu;return null!=t&&(!0===t.unstable_strictMode&&(n=!0),void 0!==t.identifierPrefix&&(r=t.identifierPrefix),void 0!==t.onRecoverableError&&(o=t.onRecoverableError)),t=zu(e,1,!1,null,0,n,0,r,o),e[mo]=t.current,Gr(8===e.nodeType?e.parentNode:e),new qu(t)},t.findDOMNode=function(e){if(null==e)return null;if(1===e.nodeType)return e;var t=e._reactInternals;if(void 0===t){if("function"==typeof e.render)throw Error(i(188));throw e=Object.keys(e).join(","),Error(i(268,e))}return null===(e=He(t))?null:e.stateNode},t.flushSync=function(e){return uu(e)},t.hydrate=function(e,t,n){if(!Ku(t))throw Error(i(200));return Zu(null,e,t,!0,n)},t.hydrateRoot=function(e,t,n){if(!Xu(e))throw Error(i(405));var r=null!=n&&n.hydratedSources||null,o=!1,a="",s=Yu;if(null!=n&&(!0===n.unstable_strictMode&&(o=!0),void 0!==n.identifierPrefix&&(a=n.identifierPrefix),void 0!==n.onRecoverableError&&(s=n.onRecoverableError)),t=Gu(t,null,e,1,null!=n?n:null,o,0,a,s),e[mo]=t.current,Gr(e),r)for(e=0;e<r.length;e++)o=(o=(n=r[e])._getVersion)(n._source),null==t.mutableSourceEagerHydrationData?t.mutableSourceEagerHydrationData=[n,o]:t.mutableSourceEagerHydrationData.push(n,o);return new Qu(t)},t.render=function(e,t,n){if(!Ku(t))throw Error(i(200));return Zu(null,e,t,!1,n)},t.unmountComponentAtNode=function(e){if(!Ku(e))throw Error(i(40));return!!e._reactRootContainer&&(uu((function(){Zu(null,null,e,!1,(function(){e._reactRootContainer=null,e[mo]=null}))})),!0)},t.unstable_batchedUpdates=lu,t.unstable_renderSubtreeIntoContainer=function(e,t,n,r){if(!Ku(n))throw Error(i(200));if(null==e||void 0===e._reactInternals)throw Error(i(38));return Zu(e,t,n,!1,r)},t.version="18.1.0-next-22edb9f77-20220426"},745:(e,t,n)=>{"use strict";var r=n(3935);t.s=r.createRoot,r.hydrateRoot},3935:(e,t,n)=>{"use strict";!function e(){if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE)try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(e){console.error(e)}}(),e.exports=n(4448)},9590:e=>{"use strict";var t=Array.isArray,n=Object.keys,r=Object.prototype.hasOwnProperty,o="undefined"!=typeof Element;function i(e,a){if(e===a)return!0;if(e&&a&&"object"==typeof e&&"object"==typeof a){var s,l,u,c=t(e),f=t(a);if(c&&f){if((l=e.length)!=a.length)return!1;for(s=l;0!=s--;)if(!i(e[s],a[s]))return!1;return!0}if(c!=f)return!1;var p=e instanceof Date,d=a instanceof Date;if(p!=d)return!1;if(p&&d)return e.getTime()==a.getTime();var h=e instanceof RegExp,m=a instanceof RegExp;if(h!=m)return!1;if(h&&m)return e.toString()==a.toString();var v=n(e);if((l=v.length)!==n(a).length)return!1;for(s=l;0!=s--;)if(!r.call(a,v[s]))return!1;if(o&&e instanceof Element&&a instanceof Element)return e===a;for(s=l;0!=s--;)if(!("_owner"===(u=v[s])&&e.$$typeof||i(e[u],a[u])))return!1;return!0}return e!=e&&a!=a}e.exports=function(e,t){try{return i(e,t)}catch(e){if(e.message&&e.message.match(/stack|recursion/i)||-2146828260===e.number)return console.warn("Warning: react-fast-compare does not handle circular references.",e.name,e.message),!1;throw e}}},9921:(e,t)=>{"use strict";var n=60103,r=60106,o=60107,i=60108,a=60114,s=60109,l=60110,u=60112,c=60113,f=60120,p=60115,d=60116,h=60121,m=60122,v=60117,y=60129,g=60131;if("function"==typeof Symbol&&Symbol.for){var b=Symbol.for;n=b("react.element"),r=b("react.portal"),o=b("react.fragment"),i=b("react.strict_mode"),a=b("react.profiler"),s=b("react.provider"),l=b("react.context"),u=b("react.forward_ref"),c=b("react.suspense"),f=b("react.suspense_list"),p=b("react.memo"),d=b("react.lazy"),h=b("react.block"),m=b("react.server.block"),v=b("react.fundamental"),y=b("react.debug_trace_mode"),g=b("react.legacy_hidden")}t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===o||e===a||e===y||e===i||e===c||e===f||e===g||"object"==typeof e&&null!==e&&(e.$$typeof===d||e.$$typeof===p||e.$$typeof===s||e.$$typeof===l||e.$$typeof===u||e.$$typeof===v||e.$$typeof===h||e[0]===m)},t.typeOf=function(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case n:switch(e=e.type){case o:case a:case i:case c:case f:return e;default:switch(e=e&&e.$$typeof){case l:case u:case d:case p:case s:return e;default:return t}}case r:return t}}}},9864:(e,t,n)=>{"use strict";e.exports=n(9921)},2408:(e,t)=>{"use strict";var n=Symbol.for("react.element"),r=Symbol.for("react.portal"),o=Symbol.for("react.fragment"),i=Symbol.for("react.strict_mode"),a=Symbol.for("react.profiler"),s=Symbol.for("react.provider"),l=Symbol.for("react.context"),u=Symbol.for("react.forward_ref"),c=Symbol.for("react.suspense"),f=Symbol.for("react.memo"),p=Symbol.for("react.lazy"),d=Symbol.iterator,h={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},m=Object.assign,v={};function y(e,t,n){this.props=e,this.context=t,this.refs=v,this.updater=n||h}function g(){}function b(e,t,n){this.props=e,this.context=t,this.refs=v,this.updater=n||h}y.prototype.isReactComponent={},y.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,e,t,"setState")},y.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},g.prototype=y.prototype;var w=b.prototype=new g;w.constructor=b,m(w,y.prototype),w.isPureReactComponent=!0;var x=Array.isArray,E=Object.prototype.hasOwnProperty,S={current:null},_={key:!0,ref:!0,__self:!0,__source:!0};function k(e,t,r){var o,i={},a=null,s=null;if(null!=t)for(o in void 0!==t.ref&&(s=t.ref),void 0!==t.key&&(a=""+t.key),t)E.call(t,o)&&!_.hasOwnProperty(o)&&(i[o]=t[o]);var l=arguments.length-2;if(1===l)i.children=r;else if(1<l){for(var u=Array(l),c=0;c<l;c++)u[c]=arguments[c+2];i.children=u}if(e&&e.defaultProps)for(o in l=e.defaultProps)void 0===i[o]&&(i[o]=l[o]);return{$$typeof:n,type:e,key:a,ref:s,props:i,_owner:S.current}}function O(e){return"object"==typeof e&&null!==e&&e.$$typeof===n}var j=/\/+/g;function L(e,t){return"object"==typeof e&&null!==e&&null!=e.key?function(e){var t={"=":"=0",":":"=2"};return"$"+e.replace(/[=:]/g,(function(e){return t[e]}))}(""+e.key):t.toString(36)}function C(e,t,o,i,a){var s=typeof e;"undefined"!==s&&"boolean"!==s||(e=null);var l=!1;if(null===e)l=!0;else switch(s){case"string":case"number":l=!0;break;case"object":switch(e.$$typeof){case n:case r:l=!0}}if(l)return a=a(l=e),e=""===i?"."+L(l,0):i,x(a)?(o="",null!=e&&(o=e.replace(j,"$&/")+"/"),C(a,t,o,"",(function(e){return e}))):null!=a&&(O(a)&&(a=function(e,t){return{$$typeof:n,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(a,o+(!a.key||l&&l.key===a.key?"":(""+a.key).replace(j,"$&/")+"/")+e)),t.push(a)),1;if(l=0,i=""===i?".":i+":",x(e))for(var u=0;u<e.length;u++){var c=i+L(s=e[u],u);l+=C(s,t,o,c,a)}else if(c=function(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=d&&e[d]||e["@@iterator"])?e:null}(e),"function"==typeof c)for(e=c.call(e),u=0;!(s=e.next()).done;)l+=C(s=s.value,t,o,c=i+L(s,u++),a);else if("object"===s)throw t=String(e),Error("Objects are not valid as a React child (found: "+("[object Object]"===t?"object with keys {"+Object.keys(e).join(", ")+"}":t)+"). If you meant to render a collection of children, use an array instead.");return l}function P(e,t,n){if(null==e)return e;var r=[],o=0;return C(e,r,"","",(function(e){return t.call(n,e,o++)})),r}function A(e){if(-1===e._status){var t=e._result;(t=t()).then((function(t){0!==e._status&&-1!==e._status||(e._status=1,e._result=t)}),(function(t){0!==e._status&&-1!==e._status||(e._status=2,e._result=t)})),-1===e._status&&(e._status=0,e._result=t)}if(1===e._status)return e._result.default;throw e._result}var T={current:null},I={transition:null},N={ReactCurrentDispatcher:T,ReactCurrentBatchConfig:I,ReactCurrentOwner:S};t.Children={map:P,forEach:function(e,t,n){P(e,(function(){t.apply(this,arguments)}),n)},count:function(e){var t=0;return P(e,(function(){t++})),t},toArray:function(e){return P(e,(function(e){return e}))||[]},only:function(e){if(!O(e))throw Error("React.Children.only expected to receive a single React element child.");return e}},t.Component=y,t.Fragment=o,t.Profiler=a,t.PureComponent=b,t.StrictMode=i,t.Suspense=c,t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=N,t.cloneElement=function(e,t,r){if(null==e)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+e+".");var o=m({},e.props),i=e.key,a=e.ref,s=e._owner;if(null!=t){if(void 0!==t.ref&&(a=t.ref,s=S.current),void 0!==t.key&&(i=""+t.key),e.type&&e.type.defaultProps)var l=e.type.defaultProps;for(u in t)E.call(t,u)&&!_.hasOwnProperty(u)&&(o[u]=void 0===t[u]&&void 0!==l?l[u]:t[u])}var u=arguments.length-2;if(1===u)o.children=r;else if(1<u){l=Array(u);for(var c=0;c<u;c++)l[c]=arguments[c+2];o.children=l}return{$$typeof:n,type:e.type,key:i,ref:a,props:o,_owner:s}},t.createContext=function(e){return(e={$$typeof:l,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null}).Provider={$$typeof:s,_context:e},e.Consumer=e},t.createElement=k,t.createFactory=function(e){var t=k.bind(null,e);return t.type=e,t},t.createRef=function(){return{current:null}},t.forwardRef=function(e){return{$$typeof:u,render:e}},t.isValidElement=O,t.lazy=function(e){return{$$typeof:p,_payload:{_status:-1,_result:e},_init:A}},t.memo=function(e,t){return{$$typeof:f,type:e,compare:void 0===t?null:t}},t.startTransition=function(e){var t=I.transition;I.transition={};try{e()}finally{I.transition=t}},t.unstable_act=function(){throw Error("act(...) is not supported in production builds of React.")},t.useCallback=function(e,t){return T.current.useCallback(e,t)},t.useContext=function(e){return T.current.useContext(e)},t.useDebugValue=function(){},t.useDeferredValue=function(e){return T.current.useDeferredValue(e)},t.useEffect=function(e,t){return T.current.useEffect(e,t)},t.useId=function(){return T.current.useId()},t.useImperativeHandle=function(e,t,n){return T.current.useImperativeHandle(e,t,n)},t.useInsertionEffect=function(e,t){return T.current.useInsertionEffect(e,t)},t.useLayoutEffect=function(e,t){return T.current.useLayoutEffect(e,t)},t.useMemo=function(e,t){return T.current.useMemo(e,t)},t.useReducer=function(e,t,n){return T.current.useReducer(e,t,n)},t.useRef=function(e){return T.current.useRef(e)},t.useState=function(e){return T.current.useState(e)},t.useSyncExternalStore=function(e,t,n){return T.current.useSyncExternalStore(e,t,n)},t.useTransition=function(){return T.current.useTransition()},t.version="18.1.0"},7294:(e,t,n)=>{"use strict";e.exports=n(2408)},5666:e=>{var t=function(e){"use strict";var t,n=Object.prototype,r=n.hasOwnProperty,o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",a=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function l(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},"")}catch(e){l=function(e,t,n){return e[t]=n}}function u(e,t,n,r){var o=t&&t.prototype instanceof v?t:v,i=Object.create(o.prototype),a=new L(r||[]);return i._invoke=function(e,t,n){var r=f;return function(o,i){if(r===d)throw new Error("Generator is already running");if(r===h){if("throw"===o)throw i;return P()}for(n.method=o,n.arg=i;;){var a=n.delegate;if(a){var s=k(a,n);if(s){if(s===m)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(r===f)throw r=h,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);r=d;var l=c(e,t,n);if("normal"===l.type){if(r=n.done?h:p,l.arg===m)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(r=h,n.method="throw",n.arg=l.arg)}}}(e,n,a),i}function c(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=u;var f="suspendedStart",p="suspendedYield",d="executing",h="completed",m={};function v(){}function y(){}function g(){}var b={};l(b,i,(function(){return this}));var w=Object.getPrototypeOf,x=w&&w(w(C([])));x&&x!==n&&r.call(x,i)&&(b=x);var E=g.prototype=v.prototype=Object.create(b);function S(e){["next","throw","return"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function _(e,t){function n(o,i,a,s){var l=c(e[o],e,i);if("throw"!==l.type){var u=l.arg,f=u.value;return f&&"object"==typeof f&&r.call(f,"__await")?t.resolve(f.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(f).then((function(e){u.value=e,a(u)}),(function(e){return n("throw",e,a,s)}))}s(l.arg)}var o;this._invoke=function(e,r){function i(){return new t((function(t,o){n(e,r,t,o)}))}return o=o?o.then(i,i):i()}}function k(e,n){var r=e.iterator[n.method];if(r===t){if(n.delegate=null,"throw"===n.method){if(e.iterator.return&&(n.method="return",n.arg=t,k(e,n),"throw"===n.method))return m;n.method="throw",n.arg=new TypeError("The iterator does not provide a 'throw' method")}return m}var o=c(r,e.iterator,n.arg);if("throw"===o.type)return n.method="throw",n.arg=o.arg,n.delegate=null,m;var i=o.arg;return i?i.done?(n[e.resultName]=i.value,n.next=e.nextLoc,"return"!==n.method&&(n.method="next",n.arg=t),n.delegate=null,m):i:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,m)}function O(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function j(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function L(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(O,this),this.reset(!0)}function C(e){if(e){var n=e[i];if(n)return n.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var o=-1,a=function n(){for(;++o<e.length;)if(r.call(e,o))return n.value=e[o],n.done=!1,n;return n.value=t,n.done=!0,n};return a.next=a}}return{next:P}}function P(){return{value:t,done:!0}}return y.prototype=g,l(E,"constructor",g),l(g,"constructor",y),y.displayName=l(g,s,"GeneratorFunction"),e.isGeneratorFunction=function(e){var t="function"==typeof e&&e.constructor;return!!t&&(t===y||"GeneratorFunction"===(t.displayName||t.name))},e.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,g):(e.__proto__=g,l(e,s,"GeneratorFunction")),e.prototype=Object.create(E),e},e.awrap=function(e){return{__await:e}},S(_.prototype),l(_.prototype,a,(function(){return this})),e.AsyncIterator=_,e.async=function(t,n,r,o,i){void 0===i&&(i=Promise);var a=new _(u(t,n,r,o),i);return e.isGeneratorFunction(n)?a:a.next().then((function(e){return e.done?e.value:a.next()}))},S(E),l(E,s,"Generator"),l(E,i,(function(){return this})),l(E,"toString",(function(){return"[object Generator]"})),e.keys=function(e){var t=[];for(var n in e)t.push(n);return t.reverse(),function n(){for(;t.length;){var r=t.pop();if(r in e)return n.value=r,n.done=!1,n}return n.done=!0,n}},e.values=C,L.prototype={constructor:L,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=t,this.done=!1,this.delegate=null,this.method="next",this.arg=t,this.tryEntries.forEach(j),!e)for(var n in this)"t"===n.charAt(0)&&r.call(this,n)&&!isNaN(+n.slice(1))&&(this[n]=t)},stop:function(){this.done=!0;var e=this.tryEntries[0].completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var n=this;function o(r,o){return s.type="throw",s.arg=e,n.next=r,o&&(n.method="next",n.arg=t),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),u=r.call(a,"finallyLoc");if(l&&u){if(this.prev<a.catchLoc)return o(a.catchLoc,!0);if(this.prev<a.finallyLoc)return o(a.finallyLoc)}else if(l){if(this.prev<a.catchLoc)return o(a.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return o(a.finallyLoc)}}}},abrupt:function(e,t){for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===e||"continue"===e)&&i.tryLoc<=t&&t<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=e,a.arg=t,i?(this.method="next",this.next=i.finallyLoc,m):this.complete(a)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),m},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),j(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;j(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,n,r){return this.delegate={iterator:C(e),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=t),m}},e}(e.exports);try{regeneratorRuntime=t}catch(e){"object"==typeof globalThis?globalThis.regeneratorRuntime=t:Function("r","regeneratorRuntime = r")(t)}},53:(e,t)=>{"use strict";function n(e,t){var n=e.length;e.push(t);e:for(;0<n;){var r=n-1>>>1,o=e[r];if(!(0<i(o,t)))break e;e[r]=t,e[n]=o,n=r}}function r(e){return 0===e.length?null:e[0]}function o(e){if(0===e.length)return null;var t=e[0],n=e.pop();if(n!==t){e[0]=n;e:for(var r=0,o=e.length,a=o>>>1;r<a;){var s=2*(r+1)-1,l=e[s],u=s+1,c=e[u];if(0>i(l,n))u<o&&0>i(c,l)?(e[r]=c,e[u]=n,r=u):(e[r]=l,e[s]=n,r=s);else{if(!(u<o&&0>i(c,n)))break e;e[r]=c,e[u]=n,r=u}}}return t}function i(e,t){var n=e.sortIndex-t.sortIndex;return 0!==n?n:e.id-t.id}if("object"==typeof performance&&"function"==typeof performance.now){var a=performance;t.unstable_now=function(){return a.now()}}else{var s=Date,l=s.now();t.unstable_now=function(){return s.now()-l}}var u=[],c=[],f=1,p=null,d=3,h=!1,m=!1,v=!1,y="function"==typeof setTimeout?setTimeout:null,g="function"==typeof clearTimeout?clearTimeout:null,b="undefined"!=typeof setImmediate?setImmediate:null;function w(e){for(var t=r(c);null!==t;){if(null===t.callback)o(c);else{if(!(t.startTime<=e))break;o(c),t.sortIndex=t.expirationTime,n(u,t)}t=r(c)}}function x(e){if(v=!1,w(e),!m)if(null!==r(u))m=!0,I(E);else{var t=r(c);null!==t&&N(x,t.startTime-e)}}function E(e,n){m=!1,v&&(v=!1,g(O),O=-1),h=!0;var i=d;try{for(w(n),p=r(u);null!==p&&(!(p.expirationTime>n)||e&&!C());){var a=p.callback;if("function"==typeof a){p.callback=null,d=p.priorityLevel;var s=a(p.expirationTime<=n);n=t.unstable_now(),"function"==typeof s?p.callback=s:p===r(u)&&o(u),w(n)}else o(u);p=r(u)}if(null!==p)var l=!0;else{var f=r(c);null!==f&&N(x,f.startTime-n),l=!1}return l}finally{p=null,d=i,h=!1}}"undefined"!=typeof navigator&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending&&navigator.scheduling.isInputPending.bind(navigator.scheduling);var S,_=!1,k=null,O=-1,j=5,L=-1;function C(){return!(t.unstable_now()-L<j)}function P(){if(null!==k){var e=t.unstable_now();L=e;var n=!0;try{n=k(!0,e)}finally{n?S():(_=!1,k=null)}}else _=!1}if("function"==typeof b)S=function(){b(P)};else if("undefined"!=typeof MessageChannel){var A=new MessageChannel,T=A.port2;A.port1.onmessage=P,S=function(){T.postMessage(null)}}else S=function(){y(P,0)};function I(e){k=e,_||(_=!0,S())}function N(e,n){O=y((function(){e(t.unstable_now())}),n)}t.unstable_IdlePriority=5,t.unstable_ImmediatePriority=1,t.unstable_LowPriority=4,t.unstable_NormalPriority=3,t.unstable_Profiling=null,t.unstable_UserBlockingPriority=2,t.unstable_cancelCallback=function(e){e.callback=null},t.unstable_continueExecution=function(){m||h||(m=!0,I(E))},t.unstable_forceFrameRate=function(e){0>e||125<e?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):j=0<e?Math.floor(1e3/e):5},t.unstable_getCurrentPriorityLevel=function(){return d},t.unstable_getFirstCallbackNode=function(){return r(u)},t.unstable_next=function(e){switch(d){case 1:case 2:case 3:var t=3;break;default:t=d}var n=d;d=t;try{return e()}finally{d=n}},t.unstable_pauseExecution=function(){},t.unstable_requestPaint=function(){},t.unstable_runWithPriority=function(e,t){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var n=d;d=e;try{return t()}finally{d=n}},t.unstable_scheduleCallback=function(e,o,i){var a=t.unstable_now();switch(i="object"==typeof i&&null!==i&&"number"==typeof(i=i.delay)&&0<i?a+i:a,e){case 1:var s=-1;break;case 2:s=250;break;case 5:s=1073741823;break;case 4:s=1e4;break;default:s=5e3}return e={id:f++,callback:o,priorityLevel:e,startTime:i,expirationTime:s=i+s,sortIndex:-1},i>a?(e.sortIndex=i,n(c,e),null===r(u)&&e===r(c)&&(v?(g(O),O=-1):v=!0,N(x,i-a))):(e.sortIndex=s,n(u,e),m||h||(m=!0,I(E))),e},t.unstable_shouldYield=C,t.unstable_wrapCallback=function(e){var t=d;return function(){var n=d;d=t;try{return e.apply(this,arguments)}finally{d=n}}}},3840:(e,t,n)=>{"use strict";e.exports=n(53)},1032:e=>{e.exports=function(e,t,n,r){var o=n?n.call(r,e,t):void 0;if(void 0!==o)return!!o;if(e===t)return!0;if("object"!=typeof e||!e||"object"!=typeof t||!t)return!1;var i=Object.keys(e),a=Object.keys(t);if(i.length!==a.length)return!1;for(var s=Object.prototype.hasOwnProperty.bind(t),l=0;l<i.length;l++){var u=i[l];if(!s(u))return!1;var c=e[u],f=t[u];if(!1===(o=n?n.call(r,c,f,u):void 0)||void 0===o&&c!==f)return!1}return!0}},8975:(e,t,n)=>{var r;!function(){"use strict";var o={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\x25]+/,modulo:/^\x25{2}/,placeholder:/^\x25(?:([1-9]\d*)\$|\(([^)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\d]*)/i,key_access:/^\.([a-z_][a-z_\d]*)/i,index_access:/^\[(\d+)\]/,sign:/^[+-]/};function i(e){return s(u(e),arguments)}function a(e,t){return i.apply(null,[e].concat(t||[]))}function s(e,t){var n,r,a,s,l,u,c,f,p,d=1,h=e.length,m="";for(r=0;r<h;r++)if("string"==typeof e[r])m+=e[r];else if("object"==typeof e[r]){if((s=e[r]).keys)for(n=t[d],a=0;a<s.keys.length;a++){if(null==n)throw new Error(i('[sprintf] Cannot access property "%s" of undefined value "%s"',s.keys[a],s.keys[a-1]));n=n[s.keys[a]]}else n=s.param_no?t[s.param_no]:t[d++];if(o.not_type.test(s.type)&&o.not_primitive.test(s.type)&&n instanceof Function&&(n=n()),o.numeric_arg.test(s.type)&&"number"!=typeof n&&isNaN(n))throw new TypeError(i("[sprintf] expecting number but found %T",n));switch(o.number.test(s.type)&&(f=n>=0),s.type){case"b":n=parseInt(n,10).toString(2);break;case"c":n=String.fromCharCode(parseInt(n,10));break;case"d":case"i":n=parseInt(n,10);break;case"j":n=JSON.stringify(n,null,s.width?parseInt(s.width):0);break;case"e":n=s.precision?parseFloat(n).toExponential(s.precision):parseFloat(n).toExponential();break;case"f":n=s.precision?parseFloat(n).toFixed(s.precision):parseFloat(n);break;case"g":n=s.precision?String(Number(n.toPrecision(s.precision))):parseFloat(n);break;case"o":n=(parseInt(n,10)>>>0).toString(8);break;case"s":n=String(n),n=s.precision?n.substring(0,s.precision):n;break;case"t":n=String(!!n),n=s.precision?n.substring(0,s.precision):n;break;case"T":n=Object.prototype.toString.call(n).slice(8,-1).toLowerCase(),n=s.precision?n.substring(0,s.precision):n;break;case"u":n=parseInt(n,10)>>>0;break;case"v":n=n.valueOf(),n=s.precision?n.substring(0,s.precision):n;break;case"x":n=(parseInt(n,10)>>>0).toString(16);break;case"X":n=(parseInt(n,10)>>>0).toString(16).toUpperCase()}o.json.test(s.type)?m+=n:(!o.number.test(s.type)||f&&!s.sign?p="":(p=f?"+":"-",n=n.toString().replace(o.sign,"")),u=s.pad_char?"0"===s.pad_char?"0":s.pad_char.charAt(1):" ",c=s.width-(p+n).length,l=s.width&&c>0?u.repeat(c):"",m+=s.align?p+n+l:"0"===u?p+l+n:l+p+n)}return m}var l=Object.create(null);function u(e){if(l[e])return l[e];for(var t,n=e,r=[],i=0;n;){if(null!==(t=o.text.exec(n)))r.push(t[0]);else if(null!==(t=o.modulo.exec(n)))r.push("%");else{if(null===(t=o.placeholder.exec(n)))throw new SyntaxError("[sprintf] unexpected placeholder");if(t[2]){i|=1;var a=[],s=t[2],u=[];if(null===(u=o.key.exec(s)))throw new SyntaxError("[sprintf] failed to parse named argument key");for(a.push(u[1]);""!==(s=s.substring(u[0].length));)if(null!==(u=o.key_access.exec(s)))a.push(u[1]);else{if(null===(u=o.index_access.exec(s)))throw new SyntaxError("[sprintf] failed to parse named argument key");a.push(u[1])}t[2]=a}else i|=2;if(3===i)throw new Error("[sprintf] mixing positional and named placeholders is not (yet) supported");r.push({placeholder:t[0],param_no:t[1],keys:t[2],sign:t[3],pad_char:t[4],align:t[5],width:t[6],precision:t[7],type:t[8]})}n=n.substring(t[0].length)}return l[e]=r}t.sprintf=i,t.vsprintf=a,"undefined"!=typeof window&&(window.sprintf=i,window.vsprintf=a,void 0===(r=function(){return{sprintf:i,vsprintf:a}}.call(t,n,t,e))||(e.exports=r))}()},1742:e=>{e.exports=function(){var e=document.getSelection();if(!e.rangeCount)return function(){};for(var t=document.activeElement,n=[],r=0;r<e.rangeCount;r++)n.push(e.getRangeAt(r));switch(t.tagName.toUpperCase()){case"INPUT":case"TEXTAREA":t.blur();break;default:t=null}return e.removeAllRanges(),function(){"Caret"===e.type&&e.removeAllRanges(),e.rangeCount||n.forEach((function(t){e.addRange(t)})),t&&t.focus()}}}},r={};function o(e){var t=r[e];if(void 0!==t)return t.exports;var i=r[e]={id:e,loaded:!1,exports:{}};return n[e](i,i.exports,o),i.loaded=!0,i.exports}o.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return o.d(t,{a:t}),t},t=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,o.t=function(n,r){if(1&r&&(n=this(n)),8&r)return n;if("object"==typeof n&&n){if(4&r&&n.__esModule)return n;if(16&r&&"function"==typeof n.then)return n}var i=Object.create(null);o.r(i);var a={};e=e||[null,t({}),t([]),t(t)];for(var s=2&r&&n;"object"==typeof s&&!~e.indexOf(s);s=t(s))Object.getOwnPropertyNames(s).forEach((e=>a[e]=()=>n[e]));return a.default=()=>n,o.d(i,a),i},o.d=(e,t)=>{for(var n in t)o.o(t,n)&&!o.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},o.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),o.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),o.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),(()=>{"use strict";var e=o(7294),t=o.t(e,2),n=o(3935),r=o(745);function i(e,t,n,r){return new(n||(n=Promise))((function(o,i){function a(e){try{l(r.next(e))}catch(e){i(e)}}function s(e){try{l(r.throw(e))}catch(e){i(e)}}function l(e){var t;e.done?o(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(a,s)}l((r=r.apply(e,t||[])).next())}))}function a(e,t){var n,r,o,i,a={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function s(i){return function(s){return function(i){if(n)throw new TypeError("Generator is already executing.");for(;a;)try{if(n=1,r&&(o=2&i[0]?r.return:i[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,i[1])).done)return o;switch(r=0,o&&(i=[2&i[0],o.value]),i[0]){case 0:case 1:o=i;break;case 4:return a.label++,{value:i[1],done:!1};case 5:a.label++,r=i[1],i=[0];continue;case 7:i=a.ops.pop(),a.trys.pop();continue;default:if(!((o=(o=a.trys).length>0&&o[o.length-1])||6!==i[0]&&2!==i[0])){a=0;continue}if(3===i[0]&&(!o||i[1]>o[0]&&i[1]<o[3])){a.label=i[1];break}if(6===i[0]&&a.label<o[1]){a.label=o[1],o=i;break}if(o&&a.label<o[2]){a.label=o[2],a.ops.push(i);break}o[2]&&a.ops.pop(),a.trys.pop();continue}i=t.call(e,a)}catch(e){i=[6,e],r=0}finally{n=o=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,s])}}}o(919);var s,l=function(){},u=l(),c=Object,f=function(e){return e===u},p=function(e){return"function"==typeof e},d=function(e,t){return c.assign({},e,t)},h="undefined",m=function(){return typeof window!=h},v=new WeakMap,y=0,g=function(e){var t,n,r=typeof e,o=e&&e.constructor,i=o==Date;if(c(e)!==e||i||o==RegExp)t=i?e.toJSON():"symbol"==r?e.toString():"string"==r?JSON.stringify(e):""+e;else{if(t=v.get(e))return t;if(t=++y+"~",v.set(e,t),o==Array){for(t="@",n=0;n<e.length;n++)t+=g(e[n])+",";v.set(e,t)}if(o==c){t="#";for(var a=c.keys(e).sort();!f(n=a.pop());)f(e[n])||(t+=n+":"+g(e[n])+",");v.set(e,t)}}return t},b=!0,w=m(),x=typeof document!=h,E=w&&window.addEventListener?window.addEventListener.bind(window):l,S=x?document.addEventListener.bind(document):l,_=w&&window.removeEventListener?window.removeEventListener.bind(window):l,k=x?document.removeEventListener.bind(document):l,O={isOnline:function(){return b},isVisible:function(){var e=x&&document.visibilityState;return f(e)||"hidden"!==e}},j={initFocus:function(e){return S("visibilitychange",e),E("focus",e),function(){k("visibilitychange",e),_("focus",e)}},initReconnect:function(e){var t=function(){b=!0,e()},n=function(){b=!1};return E("online",t),E("offline",n),function(){_("online",t),_("offline",n)}}},L=!m()||"Deno"in window,C=L?e.useEffect:e.useLayoutEffect,P="undefined"!=typeof navigator&&navigator.connection,A=!L&&P&&(["slow-2g","2g"].includes(P.effectiveType)||P.saveData),T=function(e){if(p(e))try{e=e()}catch(t){e=""}var t=[].concat(e);return[e="string"==typeof e?e:(Array.isArray(e)?e.length:e)?g(e):"",t,e?"$swr$"+e:""]},I=new WeakMap,N=function(e,t,n,r,o,i,a){void 0===a&&(a=!0);var s=I.get(e),l=s[0],u=s[1],c=s[3],f=l[t],p=u[t];if(a&&p)for(var d=0;d<p.length;++d)p[d](n,r,o);return i&&(delete c[t],f&&f[0])?f[0](2).then((function(){return e.get(t)})):e.get(t)},F=0,R=function(){return++F},M=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return i(void 0,void 0,void 0,(function(){var t,n,r,o,i,s,l,c,h,m,v,y,g,b,w,x,E,S,_,k,O;return a(this,(function(a){switch(a.label){case 0:if(t=e[0],n=e[1],r=e[2],o=e[3],s=!!f((i="boolean"==typeof o?{revalidate:o}:o||{}).populateCache)||i.populateCache,l=!1!==i.revalidate,c=!1!==i.rollbackOnError,h=i.optimisticData,m=T(n),v=m[0],y=m[2],!v)return[2];if(g=I.get(t),b=g[2],e.length<3)return[2,N(t,v,t.get(v),u,u,l,!0)];if(w=r,E=R(),b[v]=[E,0],S=!f(h),_=t.get(v),S&&(k=p(h)?h(_):h,t.set(v,k),N(t,v,k)),p(w))try{w=w(t.get(v))}catch(e){x=e}return w&&p(w.then)?[4,w.catch((function(e){x=e}))]:[3,2];case 1:if(w=a.sent(),E!==b[v][0]){if(x)throw x;return[2,w]}x&&S&&c&&(s=!0,w=_,t.set(v,_)),a.label=2;case 2:return s&&(x||(p(s)&&(w=s(w,_)),t.set(v,w)),t.set(y,d(t.get(y),{error:x}))),b[v][1]=R(),[4,N(t,v,w,x,u,l,!!s)];case 3:if(O=a.sent(),x)throw x;return[2,s?O:w]}}))}))},D=function(e,t){for(var n in e)e[n][0]&&e[n][0](t)},z=function(e,t){if(!I.has(e)){var n=d(j,t),r={},o=M.bind(u,e),i=l;if(I.set(e,[r,{},{},{},o]),!L){var a=n.initFocus(setTimeout.bind(u,D.bind(u,r,0))),s=n.initReconnect(setTimeout.bind(u,D.bind(u,r,1)));i=function(){a&&a(),s&&s(),I.delete(e)}}return[e,o,i]}return[e,I.get(e)[4]]},U=z(new Map),V=U[0],G=U[1],B=d({onLoadingSlow:l,onSuccess:l,onError:l,onErrorRetry:function(e,t,n,r,o){var i=n.errorRetryCount,a=o.retryCount,s=~~((Math.random()+.5)*(1<<(a<8?a:8)))*n.errorRetryInterval;!f(i)&&a>i||setTimeout(r,s,o)},onDiscarded:l,revalidateOnFocus:!0,revalidateOnReconnect:!0,revalidateIfStale:!0,shouldRetryOnError:!0,errorRetryInterval:A?1e4:5e3,focusThrottleInterval:5e3,dedupingInterval:2e3,loadingTimeout:A?5e3:3e3,compare:function(e,t){return g(e)==g(t)},isPaused:function(){return!1},cache:V,mutate:G,fallback:{}},O),W=function(e,t){var n=d(e,t);if(t){var r=e.use,o=e.fallback,i=t.use,a=t.fallback;r&&i&&(n.use=r.concat(i)),o&&a&&(n.fallback=d(o,a))}return n},H=(0,e.createContext)({}),$=function(e){return p(e[1])?[e[0],e[1],e[2]||{}]:[e[0],null,(null===e[1]?e[2]:e[1])||{}]},Y=function(){return d(B,(0,e.useContext)(H))},q=function(e,t,n){var r=t[e]||(t[e]=[]);return r.push(n),function(){var e=r.indexOf(n);e>=0&&(r[e]=r[r.length-1],r.pop())}},Q={dedupe:!0},X=c.defineProperty((function(t){var n=t.value,r=W((0,e.useContext)(H),n),o=n&&n.provider,i=(0,e.useState)((function(){return o?z(o(r.cache||V),n):u}))[0];return i&&(r.cache=i[0],r.mutate=i[1]),C((function(){return i?i[2]:u}),[]),(0,e.createElement)(H.Provider,d(t,{value:r}))}),"default",{value:B}),K=(s=function(t,n,r){var o=r.cache,s=r.compare,l=r.fallbackData,c=r.suspense,v=r.revalidateOnMount,y=r.refreshInterval,g=r.refreshWhenHidden,b=r.refreshWhenOffline,w=I.get(o),x=w[0],E=w[1],S=w[2],_=w[3],k=T(t),O=k[0],j=k[1],P=k[2],A=(0,e.useRef)(!1),F=(0,e.useRef)(!1),D=(0,e.useRef)(O),z=(0,e.useRef)(n),U=(0,e.useRef)(r),V=function(){return U.current},G=function(){return V().isVisible()&&V().isOnline()},B=function(e){return o.set(P,d(o.get(P),e))},W=o.get(O),H=f(l)?r.fallback[O]:l,$=f(W)?H:W,Y=o.get(P)||{},X=Y.error,K=!A.current,J=function(){return K&&!f(v)?v:!V().isPaused()&&(c?!f($)&&r.revalidateIfStale:f($)||r.revalidateIfStale)},Z=!(!O||!n)&&(!!Y.isValidating||K&&J()),ee=function(t,n){var r=(0,e.useState)({})[1],o=(0,e.useRef)(t),i=(0,e.useRef)({data:!1,error:!1,isValidating:!1}),a=(0,e.useCallback)((function(e){var t=!1,a=o.current;for(var s in e){var l=s;a[l]!==e[l]&&(a[l]=e[l],i.current[l]&&(t=!0))}t&&!n.current&&r({})}),[]);return C((function(){o.current=t})),[o,i.current,a]}({data:$,error:X,isValidating:Z},F),te=ee[0],ne=ee[1],re=ee[2],oe=(0,e.useCallback)((function(e){return i(void 0,void 0,void 0,(function(){var t,n,i,l,c,d,h,m,v,y,g,b,w;return a(this,(function(a){switch(a.label){case 0:if(t=z.current,!O||!t||F.current||V().isPaused())return[2,!1];l=!0,c=e||{},d=!_[O]||!c.dedupe,h=function(){return!F.current&&O===D.current&&A.current},m=function(){var e=_[O];e&&e[1]===i&&delete _[O]},v={isValidating:!1},y=function(){B({isValidating:!1}),h()&&re(v)},B({isValidating:!0}),re({isValidating:!0}),a.label=1;case 1:return a.trys.push([1,3,,4]),d&&(N(o,O,te.current.data,te.current.error,!0),r.loadingTimeout&&!o.get(O)&&setTimeout((function(){l&&h()&&V().onLoadingSlow(O,r)}),r.loadingTimeout),_[O]=[t.apply(void 0,j),R()]),w=_[O],n=w[0],i=w[1],[4,n];case 2:return n=a.sent(),d&&setTimeout(m,r.dedupingInterval),_[O]&&_[O][1]===i?(B({error:u}),v.error=u,g=S[O],!f(g)&&(i<=g[0]||i<=g[1]||0===g[1])?(y(),d&&h()&&V().onDiscarded(O),[2,!1]):(s(te.current.data,n)?v.data=te.current.data:v.data=n,s(o.get(O),n)||o.set(O,n),d&&h()&&V().onSuccess(n,O,r),[3,4])):(d&&h()&&V().onDiscarded(O),[2,!1]);case 3:return b=a.sent(),m(),V().isPaused()||(B({error:b}),v.error=b,d&&h()&&(V().onError(b,O,r),("boolean"==typeof r.shouldRetryOnError&&r.shouldRetryOnError||p(r.shouldRetryOnError)&&r.shouldRetryOnError(b))&&G()&&V().onErrorRetry(b,O,r,oe,{retryCount:(c.retryCount||0)+1,dedupe:!0}))),[3,4];case 4:return l=!1,y(),h()&&d&&N(o,O,v.data,v.error,!1),[2,!0]}}))}))}),[O]),ie=(0,e.useCallback)(M.bind(u,o,(function(){return D.current})),[]);if(C((function(){z.current=n,U.current=r})),C((function(){if(O){var e=O!==D.current,t=oe.bind(u,Q),n=0,r=q(O,E,(function(e,t,n){re(d({error:t,isValidating:n},s(te.current.data,e)?u:{data:e}))})),o=q(O,x,(function(e){if(0==e){var r=Date.now();V().revalidateOnFocus&&r>n&&G()&&(n=r+V().focusThrottleInterval,t())}else if(1==e)V().revalidateOnReconnect&&G()&&t();else if(2==e)return oe()}));return F.current=!1,D.current=O,A.current=!0,e&&re({data:$,error:X,isValidating:Z}),J()&&(f($)||L?t():(i=t,m()&&typeof window.requestAnimationFrame!=h?window.requestAnimationFrame(i):setTimeout(i,1))),function(){F.current=!0,r(),o()}}var i}),[O,oe]),C((function(){var e;function t(){var t=p(y)?y($):y;t&&-1!==e&&(e=setTimeout(n,t))}function n(){te.current.error||!g&&!V().isVisible()||!b&&!V().isOnline()?t():oe(Q).then(t)}return t(),function(){e&&(clearTimeout(e),e=-1)}}),[y,g,b,oe]),(0,e.useDebugValue)($),c&&f($)&&O)throw z.current=n,U.current=r,F.current=!1,f(X)?oe(Q):X;return{mutate:ie,get data(){return ne.data=!0,$},get error(){return ne.error=!0,X},get isValidating(){return ne.isValidating=!0,Z}}},function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var n=Y(),r=$(e),o=r[0],i=r[1],a=r[2],l=W(n,a),u=s,c=l.use;if(c)for(var f=c.length;f-- >0;)u=c[f](u);return u(o,i||l.fetcher,l)}),J=o(7361),Z=o.n(J),ee=o(8804),te=o.n(ee);function ne(e){return ne="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},ne(e)}function re(){re=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,r="function"==typeof Symbol?Symbol:{},o=r.iterator||"@@iterator",i=r.asyncIterator||"@@asyncIterator",a=r.toStringTag||"@@toStringTag";function s(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{s({},"")}catch(e){s=function(e,t,n){return e[t]=n}}function l(e,t,n,r){var o=t&&t.prototype instanceof f?t:f,i=Object.create(o.prototype),a=new S(r||[]);return i._invoke=function(e,t,n){var r="suspendedStart";return function(o,i){if("executing"===r)throw new Error("Generator is already running");if("completed"===r){if("throw"===o)throw i;return{value:void 0,done:!0}}for(n.method=o,n.arg=i;;){var a=n.delegate;if(a){var s=w(a,n);if(s){if(s===c)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===r)throw r="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);r="executing";var l=u(e,t,n);if("normal"===l.type){if(r=n.done?"completed":"suspendedYield",l.arg===c)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(r="completed",n.method="throw",n.arg=l.arg)}}}(e,n,a),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var c={};function f(){}function p(){}function d(){}var h={};s(h,o,(function(){return this}));var m=Object.getPrototypeOf,v=m&&m(m(_([])));v&&v!==t&&n.call(v,o)&&(h=v);var y=d.prototype=f.prototype=Object.create(h);function g(e){["next","throw","return"].forEach((function(t){s(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function r(o,i,a,s){var l=u(e[o],e,i);if("throw"!==l.type){var c=l.arg,f=c.value;return f&&"object"==ne(f)&&n.call(f,"__await")?t.resolve(f.__await).then((function(e){r("next",e,a,s)}),(function(e){r("throw",e,a,s)})):t.resolve(f).then((function(e){c.value=e,a(c)}),(function(e){return r("throw",e,a,s)}))}s(l.arg)}var o;this._invoke=function(e,n){function i(){return new t((function(t,o){r(e,n,t,o)}))}return o=o?o.then(i,i):i()}}function w(e,t){var n=e.iterator[t.method];if(void 0===n){if(t.delegate=null,"throw"===t.method){if(e.iterator.return&&(t.method="return",t.arg=void 0,w(e,t),"throw"===t.method))return c;t.method="throw",t.arg=new TypeError("The iterator does not provide a 'throw' method")}return c}var r=u(n,e.iterator,t.arg);if("throw"===r.type)return t.method="throw",t.arg=r.arg,t.delegate=null,c;var o=r.arg;return o?o.done?(t[e.resultName]=o.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,c):o:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,c)}function x(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function E(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function S(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(x,this),this.reset(!0)}function _(e){if(e){var t=e[o];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var r=-1,i=function t(){for(;++r<e.length;)if(n.call(e,r))return t.value=e[r],t.done=!1,t;return t.value=void 0,t.done=!0,t};return i.next=i}}return{next:k}}function k(){return{value:void 0,done:!0}}return p.prototype=d,s(y,"constructor",d),s(d,"constructor",p),p.displayName=s(d,a,"GeneratorFunction"),e.isGeneratorFunction=function(e){var t="function"==typeof e&&e.constructor;return!!t&&(t===p||"GeneratorFunction"===(t.displayName||t.name))},e.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,d):(e.__proto__=d,s(e,a,"GeneratorFunction")),e.prototype=Object.create(y),e},e.awrap=function(e){return{__await:e}},g(b.prototype),s(b.prototype,i,(function(){return this})),e.AsyncIterator=b,e.async=function(t,n,r,o,i){void 0===i&&(i=Promise);var a=new b(l(t,n,r,o),i);return e.isGeneratorFunction(n)?a:a.next().then((function(e){return e.done?e.value:a.next()}))},g(y),s(y,a,"Generator"),s(y,o,(function(){return this})),s(y,"toString",(function(){return"[object Generator]"})),e.keys=function(e){var t=[];for(var n in e)t.push(n);return t.reverse(),function n(){for(;t.length;){var r=t.pop();if(r in e)return n.value=r,n.done=!1,n}return n.done=!0,n}},e.values=_,S.prototype={constructor:S,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(E),!e)for(var t in this)"t"===t.charAt(0)&&n.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=void 0)},stop:function(){this.done=!0;var e=this.tryEntries[0].completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var t=this;function r(n,r){return a.type="throw",a.arg=e,t.next=n,r&&(t.method="next",t.arg=void 0),!!r}for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i.completion;if("root"===i.tryLoc)return r("end");if(i.tryLoc<=this.prev){var s=n.call(i,"catchLoc"),l=n.call(i,"finallyLoc");if(s&&l){if(this.prev<i.catchLoc)return r(i.catchLoc,!0);if(this.prev<i.finallyLoc)return r(i.finallyLoc)}else if(s){if(this.prev<i.catchLoc)return r(i.catchLoc,!0)}else{if(!l)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return r(i.finallyLoc)}}}},abrupt:function(e,t){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===e||"continue"===e)&&i.tryLoc<=t&&t<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=e,a.arg=t,i?(this.method="next",this.next=i.finallyLoc,c):this.complete(a)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),c},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),E(n),c}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;E(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:_(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),c}},e}function oe(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function ie(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){oe(i,r,o,a,s,"next",e)}function s(e){oe(i,r,o,a,s,"throw",e)}a(void 0)}))}}var ae=function(){var e=ie(re().mark((function e(t,n){var r;return re().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,fetch(t,{signal:n});case 2:return r=e.sent,e.prev=3,e.next=6,r.json();case 6:return e.abrupt("return",e.sent);case 9:return e.prev=9,e.t0=e.catch(3),e.abrupt("return",null);case 12:case"end":return e.stop()}}),e,null,[[3,9]])})));return function(t,n){return e.apply(this,arguments)}}(),se=function(e){return"".concat(SEOPRESS_DATA.SEOPRESS_URL_ASSETS).concat(e)},le=o(9864),ue=o(1032),ce=o.n(ue);const fe=function(e){function t(e,r,l,u,p){for(var d,h,m,v,w,E=0,S=0,_=0,k=0,O=0,T=0,N=m=d=0,R=0,M=0,D=0,z=0,U=l.length,V=U-1,G="",B="",W="",H="";R<U;){if(h=l.charCodeAt(R),R===V&&0!==S+k+_+E&&(0!==S&&(h=47===S?10:47),k=_=E=0,U++,V++),0===S+k+_+E){if(R===V&&(0<M&&(G=G.replace(f,"")),0<G.trim().length)){switch(h){case 32:case 9:case 59:case 13:case 10:break;default:G+=l.charAt(R)}h=59}switch(h){case 123:for(d=(G=G.trim()).charCodeAt(0),m=1,z=++R;R<U;){switch(h=l.charCodeAt(R)){case 123:m++;break;case 125:m--;break;case 47:switch(h=l.charCodeAt(R+1)){case 42:case 47:e:{for(N=R+1;N<V;++N)switch(l.charCodeAt(N)){case 47:if(42===h&&42===l.charCodeAt(N-1)&&R+2!==N){R=N+1;break e}break;case 10:if(47===h){R=N+1;break e}}R=N}}break;case 91:h++;case 40:h++;case 34:case 39:for(;R++<V&&l.charCodeAt(R)!==h;);}if(0===m)break;R++}if(m=l.substring(z,R),0===d&&(d=(G=G.replace(c,"").trim()).charCodeAt(0)),64===d){switch(0<M&&(G=G.replace(f,"")),h=G.charCodeAt(1)){case 100:case 109:case 115:case 45:M=r;break;default:M=A}if(z=(m=t(r,M,m,h,p+1)).length,0<I&&(w=s(3,m,M=n(A,G,D),r,L,j,z,h,p,u),G=M.join(""),void 0!==w&&0===(z=(m=w.trim()).length)&&(h=0,m="")),0<z)switch(h){case 115:G=G.replace(x,a);case 100:case 109:case 45:m=G+"{"+m+"}";break;case 107:m=(G=G.replace(y,"$1 $2"))+"{"+m+"}",m=1===P||2===P&&i("@"+m,3)?"@-webkit-"+m+"@"+m:"@"+m;break;default:m=G+m,112===u&&(B+=m,m="")}else m=""}else m=t(r,n(r,G,D),m,u,p+1);W+=m,m=D=M=N=d=0,G="",h=l.charCodeAt(++R);break;case 125:case 59:if(1<(z=(G=(0<M?G.replace(f,""):G).trim()).length))switch(0===N&&(d=G.charCodeAt(0),45===d||96<d&&123>d)&&(z=(G=G.replace(" ",":")).length),0<I&&void 0!==(w=s(1,G,r,e,L,j,B.length,u,p,u))&&0===(z=(G=w.trim()).length)&&(G="\0\0"),d=G.charCodeAt(0),h=G.charCodeAt(1),d){case 0:break;case 64:if(105===h||99===h){H+=G+l.charAt(R);break}default:58!==G.charCodeAt(z-1)&&(B+=o(G,d,h,G.charCodeAt(2)))}D=M=N=d=0,G="",h=l.charCodeAt(++R)}}switch(h){case 13:case 10:47===S?S=0:0===1+d&&107!==u&&0<G.length&&(M=1,G+="\0"),0<I*F&&s(0,G,r,e,L,j,B.length,u,p,u),j=1,L++;break;case 59:case 125:if(0===S+k+_+E){j++;break}default:switch(j++,v=l.charAt(R),h){case 9:case 32:if(0===k+E+S)switch(O){case 44:case 58:case 9:case 32:v="";break;default:32!==h&&(v=" ")}break;case 0:v="\\0";break;case 12:v="\\f";break;case 11:v="\\v";break;case 38:0===k+S+E&&(M=D=1,v="\f"+v);break;case 108:if(0===k+S+E+C&&0<N)switch(R-N){case 2:112===O&&58===l.charCodeAt(R-3)&&(C=O);case 8:111===T&&(C=T)}break;case 58:0===k+S+E&&(N=R);break;case 44:0===S+_+k+E&&(M=1,v+="\r");break;case 34:case 39:0===S&&(k=k===h?0:0===k?h:k);break;case 91:0===k+S+_&&E++;break;case 93:0===k+S+_&&E--;break;case 41:0===k+S+E&&_--;break;case 40:0===k+S+E&&(0===d&&(2*O+3*T==533||(d=1)),_++);break;case 64:0===S+_+k+E+N+m&&(m=1);break;case 42:case 47:if(!(0<k+E+_))switch(S){case 0:switch(2*h+3*l.charCodeAt(R+1)){case 235:S=47;break;case 220:z=R,S=42}break;case 42:47===h&&42===O&&z+2!==R&&(33===l.charCodeAt(z+2)&&(B+=l.substring(z,R+1)),v="",S=0)}}0===S&&(G+=v)}T=O,O=h,R++}if(0<(z=B.length)){if(M=r,0<I&&void 0!==(w=s(2,B,M,e,L,j,z,u,p,u))&&0===(B=w).length)return H+B+W;if(B=M.join(",")+"{"+B+"}",0!=P*C){switch(2!==P||i(B,2)||(C=0),C){case 111:B=B.replace(b,":-moz-$1")+B;break;case 112:B=B.replace(g,"::-webkit-input-$1")+B.replace(g,"::-moz-$1")+B.replace(g,":-ms-input-$1")+B}C=0}}return H+B+W}function n(e,t,n){var o=t.trim().split(m);t=o;var i=o.length,a=e.length;switch(a){case 0:case 1:var s=0;for(e=0===a?"":e[0]+" ";s<i;++s)t[s]=r(e,t[s],n).trim();break;default:var l=s=0;for(t=[];s<i;++s)for(var u=0;u<a;++u)t[l++]=r(e[u]+" ",o[s],n).trim()}return t}function r(e,t,n){var r=t.charCodeAt(0);switch(33>r&&(r=(t=t.trim()).charCodeAt(0)),r){case 38:return t.replace(v,"$1"+e.trim());case 58:return e.trim()+t.replace(v,"$1"+e.trim());default:if(0<1*n&&0<t.indexOf("\f"))return t.replace(v,(58===e.charCodeAt(0)?"":"$1")+e.trim())}return e+t}function o(e,t,n,r){var a=e+";",s=2*t+3*n+4*r;if(944===s){e=a.indexOf(":",9)+1;var l=a.substring(e,a.length-1).trim();return l=a.substring(0,e).trim()+l+";",1===P||2===P&&i(l,1)?"-webkit-"+l+l:l}if(0===P||2===P&&!i(a,1))return a;switch(s){case 1015:return 97===a.charCodeAt(10)?"-webkit-"+a+a:a;case 951:return 116===a.charCodeAt(3)?"-webkit-"+a+a:a;case 963:return 110===a.charCodeAt(5)?"-webkit-"+a+a:a;case 1009:if(100!==a.charCodeAt(4))break;case 969:case 942:return"-webkit-"+a+a;case 978:return"-webkit-"+a+"-moz-"+a+a;case 1019:case 983:return"-webkit-"+a+"-moz-"+a+"-ms-"+a+a;case 883:if(45===a.charCodeAt(8))return"-webkit-"+a+a;if(0<a.indexOf("image-set(",11))return a.replace(O,"$1-webkit-$2")+a;break;case 932:if(45===a.charCodeAt(4))switch(a.charCodeAt(5)){case 103:return"-webkit-box-"+a.replace("-grow","")+"-webkit-"+a+"-ms-"+a.replace("grow","positive")+a;case 115:return"-webkit-"+a+"-ms-"+a.replace("shrink","negative")+a;case 98:return"-webkit-"+a+"-ms-"+a.replace("basis","preferred-size")+a}return"-webkit-"+a+"-ms-"+a+a;case 964:return"-webkit-"+a+"-ms-flex-"+a+a;case 1023:if(99!==a.charCodeAt(8))break;return"-webkit-box-pack"+(l=a.substring(a.indexOf(":",15)).replace("flex-","").replace("space-between","justify"))+"-webkit-"+a+"-ms-flex-pack"+l+a;case 1005:return d.test(a)?a.replace(p,":-webkit-")+a.replace(p,":-moz-")+a:a;case 1e3:switch(t=(l=a.substring(13).trim()).indexOf("-")+1,l.charCodeAt(0)+l.charCodeAt(t)){case 226:l=a.replace(w,"tb");break;case 232:l=a.replace(w,"tb-rl");break;case 220:l=a.replace(w,"lr");break;default:return a}return"-webkit-"+a+"-ms-"+l+a;case 1017:if(-1===a.indexOf("sticky",9))break;case 975:switch(t=(a=e).length-10,s=(l=(33===a.charCodeAt(t)?a.substring(0,t):a).substring(e.indexOf(":",7)+1).trim()).charCodeAt(0)+(0|l.charCodeAt(7))){case 203:if(111>l.charCodeAt(8))break;case 115:a=a.replace(l,"-webkit-"+l)+";"+a;break;case 207:case 102:a=a.replace(l,"-webkit-"+(102<s?"inline-":"")+"box")+";"+a.replace(l,"-webkit-"+l)+";"+a.replace(l,"-ms-"+l+"box")+";"+a}return a+";";case 938:if(45===a.charCodeAt(5))switch(a.charCodeAt(6)){case 105:return l=a.replace("-items",""),"-webkit-"+a+"-webkit-box-"+l+"-ms-flex-"+l+a;case 115:return"-webkit-"+a+"-ms-flex-item-"+a.replace(S,"")+a;default:return"-webkit-"+a+"-ms-flex-line-pack"+a.replace("align-content","").replace(S,"")+a}break;case 973:case 989:if(45!==a.charCodeAt(3)||122===a.charCodeAt(4))break;case 931:case 953:if(!0===k.test(e))return 115===(l=e.substring(e.indexOf(":")+1)).charCodeAt(0)?o(e.replace("stretch","fill-available"),t,n,r).replace(":fill-available",":stretch"):a.replace(l,"-webkit-"+l)+a.replace(l,"-moz-"+l.replace("fill-",""))+a;break;case 962:if(a="-webkit-"+a+(102===a.charCodeAt(5)?"-ms-"+a:"")+a,211===n+r&&105===a.charCodeAt(13)&&0<a.indexOf("transform",10))return a.substring(0,a.indexOf(";",27)+1).replace(h,"$1-webkit-$2")+a}return a}function i(e,t){var n=e.indexOf(1===t?":":"{"),r=e.substring(0,3!==t?n:10);return n=e.substring(n+1,e.length-1),N(2!==t?r:r.replace(_,"$1"),n,t)}function a(e,t){var n=o(t,t.charCodeAt(0),t.charCodeAt(1),t.charCodeAt(2));return n!==t+";"?n.replace(E," or ($1)").substring(4):"("+t+")"}function s(e,t,n,r,o,i,a,s,l,c){for(var f,p=0,d=t;p<I;++p)switch(f=T[p].call(u,e,d,n,r,o,i,a,s,l,c)){case void 0:case!1:case!0:case null:break;default:d=f}if(d!==t)return d}function l(e){return void 0!==(e=e.prefix)&&(N=null,e?"function"!=typeof e?P=1:(P=2,N=e):P=0),l}function u(e,n){var r=e;if(33>r.charCodeAt(0)&&(r=r.trim()),r=[r],0<I){var o=s(-1,n,r,r,L,j,0,0,0,0);void 0!==o&&"string"==typeof o&&(n=o)}var i=t(A,r,n,0,0);return 0<I&&void 0!==(o=s(-2,i,r,r,L,j,i.length,0,0,0))&&(i=o),C=0,j=L=1,i}var c=/^\0+/g,f=/[\0\r\f]/g,p=/: */g,d=/zoo|gra/,h=/([,: ])(transform)/g,m=/,\r+?/g,v=/([\t\r\n ])*\f?&/g,y=/@(k\w+)\s*(\S*)\s*/,g=/::(place)/g,b=/:(read-only)/g,w=/[svh]\w+-[tblr]{2}/,x=/\(\s*(.*)\s*\)/g,E=/([\s\S]*?);/g,S=/-self|flex-/g,_=/[^]*?(:[rp][el]a[\w-]+)[^]*/,k=/stretch|:\s*\w+\-(?:conte|avail)/,O=/([^-])(image-set\()/,j=1,L=1,C=0,P=1,A=[],T=[],I=0,N=null,F=0;return u.use=function e(t){switch(t){case void 0:case null:I=T.length=0;break;default:if("function"==typeof t)T[I++]=t;else if("object"==typeof t)for(var n=0,r=t.length;n<r;++n)e(t[n]);else F=0|!!t}return e},u.set=l,void 0!==e&&l(e),u},pe={animationIterationCount:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1},de=function(e){var t=Object.create(null);return function(n){return void 0===t[n]&&(t[n]=e(n)),t[n]}};var he=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|download|draggable|encType|enterKeyHint|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/;const me=de((function(e){return he.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91}));var ve=o(8679),ye=o.n(ve);function ge(){return(ge=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e}).apply(this,arguments)}var be=function(e,t){for(var n=[e[0]],r=0,o=t.length;r<o;r+=1)n.push(t[r],e[r+1]);return n},we=function(e){return null!==e&&"object"==typeof e&&"[object Object]"===(e.toString?e.toString():Object.prototype.toString.call(e))&&!(0,le.typeOf)(e)},xe=Object.freeze([]),Ee=Object.freeze({});function Se(e){return"function"==typeof e}function _e(e){return e.displayName||e.name||"Component"}function ke(e){return e&&"string"==typeof e.styledComponentId}var Oe="undefined"!=typeof process&&(process.env.REACT_APP_SC_ATTR||process.env.SC_ATTR)||"data-styled",je="undefined"!=typeof window&&"HTMLElement"in window,Le=Boolean("boolean"==typeof SC_DISABLE_SPEEDY?SC_DISABLE_SPEEDY:"undefined"!=typeof process&&void 0!==process.env.REACT_APP_SC_DISABLE_SPEEDY&&""!==process.env.REACT_APP_SC_DISABLE_SPEEDY?"false"!==process.env.REACT_APP_SC_DISABLE_SPEEDY&&process.env.REACT_APP_SC_DISABLE_SPEEDY:"undefined"!=typeof process&&void 0!==process.env.SC_DISABLE_SPEEDY&&""!==process.env.SC_DISABLE_SPEEDY&&"false"!==process.env.SC_DISABLE_SPEEDY&&process.env.SC_DISABLE_SPEEDY),Ce={};function Pe(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];throw new Error("An error occurred. See https://git.io/JUIaE#"+e+" for more information."+(n.length>0?" Args: "+n.join(", "):""))}var Ae=function(){function e(e){this.groupSizes=new Uint32Array(512),this.length=512,this.tag=e}var t=e.prototype;return t.indexOfGroup=function(e){for(var t=0,n=0;n<e;n++)t+=this.groupSizes[n];return t},t.insertRules=function(e,t){if(e>=this.groupSizes.length){for(var n=this.groupSizes,r=n.length,o=r;e>=o;)(o<<=1)<0&&Pe(16,""+e);this.groupSizes=new Uint32Array(o),this.groupSizes.set(n),this.length=o;for(var i=r;i<o;i++)this.groupSizes[i]=0}for(var a=this.indexOfGroup(e+1),s=0,l=t.length;s<l;s++)this.tag.insertRule(a,t[s])&&(this.groupSizes[e]++,a++)},t.clearGroup=function(e){if(e<this.length){var t=this.groupSizes[e],n=this.indexOfGroup(e),r=n+t;this.groupSizes[e]=0;for(var o=n;o<r;o++)this.tag.deleteRule(n)}},t.getGroup=function(e){var t="";if(e>=this.length||0===this.groupSizes[e])return t;for(var n=this.groupSizes[e],r=this.indexOfGroup(e),o=r+n,i=r;i<o;i++)t+=this.tag.getRule(i)+"/*!sc*/\n";return t},e}(),Te=new Map,Ie=new Map,Ne=1,Fe=function(e){if(Te.has(e))return Te.get(e);for(;Ie.has(Ne);)Ne++;var t=Ne++;return Te.set(e,t),Ie.set(t,e),t},Re=function(e){return Ie.get(e)},Me=function(e,t){t>=Ne&&(Ne=t+1),Te.set(e,t),Ie.set(t,e)},De="style["+Oe+'][data-styled-version="5.3.5"]',ze=new RegExp("^"+Oe+'\\.g(\\d+)\\[id="([\\w\\d-]+)"\\].*?"([^"]*)'),Ue=function(e,t,n){for(var r,o=n.split(","),i=0,a=o.length;i<a;i++)(r=o[i])&&e.registerName(t,r)},Ve=function(e,t){for(var n=(t.textContent||"").split("/*!sc*/\n"),r=[],o=0,i=n.length;o<i;o++){var a=n[o].trim();if(a){var s=a.match(ze);if(s){var l=0|parseInt(s[1],10),u=s[2];0!==l&&(Me(u,l),Ue(e,u,s[3]),e.getTag().insertRules(l,r)),r.length=0}else r.push(a)}}},Ge=function(){return"undefined"!=typeof window&&void 0!==window.__webpack_nonce__?window.__webpack_nonce__:null},Be=function(e){var t=document.head,n=e||t,r=document.createElement("style"),o=function(e){for(var t=e.childNodes,n=t.length;n>=0;n--){var r=t[n];if(r&&1===r.nodeType&&r.hasAttribute(Oe))return r}}(n),i=void 0!==o?o.nextSibling:null;r.setAttribute(Oe,"active"),r.setAttribute("data-styled-version","5.3.5");var a=Ge();return a&&r.setAttribute("nonce",a),n.insertBefore(r,i),r},We=function(){function e(e){var t=this.element=Be(e);t.appendChild(document.createTextNode("")),this.sheet=function(e){if(e.sheet)return e.sheet;for(var t=document.styleSheets,n=0,r=t.length;n<r;n++){var o=t[n];if(o.ownerNode===e)return o}Pe(17)}(t),this.length=0}var t=e.prototype;return t.insertRule=function(e,t){try{return this.sheet.insertRule(t,e),this.length++,!0}catch(e){return!1}},t.deleteRule=function(e){this.sheet.deleteRule(e),this.length--},t.getRule=function(e){var t=this.sheet.cssRules[e];return void 0!==t&&"string"==typeof t.cssText?t.cssText:""},e}(),He=function(){function e(e){var t=this.element=Be(e);this.nodes=t.childNodes,this.length=0}var t=e.prototype;return t.insertRule=function(e,t){if(e<=this.length&&e>=0){var n=document.createTextNode(t),r=this.nodes[e];return this.element.insertBefore(n,r||null),this.length++,!0}return!1},t.deleteRule=function(e){this.element.removeChild(this.nodes[e]),this.length--},t.getRule=function(e){return e<this.length?this.nodes[e].textContent:""},e}(),$e=function(){function e(e){this.rules=[],this.length=0}var t=e.prototype;return t.insertRule=function(e,t){return e<=this.length&&(this.rules.splice(e,0,t),this.length++,!0)},t.deleteRule=function(e){this.rules.splice(e,1),this.length--},t.getRule=function(e){return e<this.length?this.rules[e]:""},e}(),Ye=je,qe={isServer:!je,useCSSOMInjection:!Le},Qe=function(){function e(e,t,n){void 0===e&&(e=Ee),void 0===t&&(t={}),this.options=ge({},qe,{},e),this.gs=t,this.names=new Map(n),this.server=!!e.isServer,!this.server&&je&&Ye&&(Ye=!1,function(e){for(var t=document.querySelectorAll(De),n=0,r=t.length;n<r;n++){var o=t[n];o&&"active"!==o.getAttribute(Oe)&&(Ve(e,o),o.parentNode&&o.parentNode.removeChild(o))}}(this))}e.registerId=function(e){return Fe(e)};var t=e.prototype;return t.reconstructWithOptions=function(t,n){return void 0===n&&(n=!0),new e(ge({},this.options,{},t),this.gs,n&&this.names||void 0)},t.allocateGSInstance=function(e){return this.gs[e]=(this.gs[e]||0)+1},t.getTag=function(){return this.tag||(this.tag=(n=(t=this.options).isServer,r=t.useCSSOMInjection,o=t.target,e=n?new $e(o):r?new We(o):new He(o),new Ae(e)));var e,t,n,r,o},t.hasNameForId=function(e,t){return this.names.has(e)&&this.names.get(e).has(t)},t.registerName=function(e,t){if(Fe(e),this.names.has(e))this.names.get(e).add(t);else{var n=new Set;n.add(t),this.names.set(e,n)}},t.insertRules=function(e,t,n){this.registerName(e,t),this.getTag().insertRules(Fe(e),n)},t.clearNames=function(e){this.names.has(e)&&this.names.get(e).clear()},t.clearRules=function(e){this.getTag().clearGroup(Fe(e)),this.clearNames(e)},t.clearTag=function(){this.tag=void 0},t.toString=function(){return function(e){for(var t=e.getTag(),n=t.length,r="",o=0;o<n;o++){var i=Re(o);if(void 0!==i){var a=e.names.get(i),s=t.getGroup(o);if(a&&s&&a.size){var l=Oe+".g"+o+'[id="'+i+'"]',u="";void 0!==a&&a.forEach((function(e){e.length>0&&(u+=e+",")})),r+=""+s+l+'{content:"'+u+'"}/*!sc*/\n'}}}return r}(this)},e}(),Xe=/(a)(d)/gi,Ke=function(e){return String.fromCharCode(e+(e>25?39:97))};function Je(e){var t,n="";for(t=Math.abs(e);t>52;t=t/52|0)n=Ke(t%52)+n;return(Ke(t%52)+n).replace(Xe,"$1-$2")}var Ze=function(e,t){for(var n=t.length;n;)e=33*e^t.charCodeAt(--n);return e},et=function(e){return Ze(5381,e)};function tt(e){for(var t=0;t<e.length;t+=1){var n=e[t];if(Se(n)&&!ke(n))return!1}return!0}var nt=et("5.3.5"),rt=function(){function e(e,t,n){this.rules=e,this.staticRulesId="",this.isStatic=(void 0===n||n.isStatic)&&tt(e),this.componentId=t,this.baseHash=Ze(nt,t),this.baseStyle=n,Qe.registerId(t)}return e.prototype.generateAndInjectStyles=function(e,t,n){var r=this.componentId,o=[];if(this.baseStyle&&o.push(this.baseStyle.generateAndInjectStyles(e,t,n)),this.isStatic&&!n.hash)if(this.staticRulesId&&t.hasNameForId(r,this.staticRulesId))o.push(this.staticRulesId);else{var i=xt(this.rules,e,t,n).join(""),a=Je(Ze(this.baseHash,i)>>>0);if(!t.hasNameForId(r,a)){var s=n(i,"."+a,void 0,r);t.insertRules(r,a,s)}o.push(a),this.staticRulesId=a}else{for(var l=this.rules.length,u=Ze(this.baseHash,n.hash),c="",f=0;f<l;f++){var p=this.rules[f];if("string"==typeof p)c+=p;else if(p){var d=xt(p,e,t,n),h=Array.isArray(d)?d.join(""):d;u=Ze(u,h+f),c+=h}}if(c){var m=Je(u>>>0);if(!t.hasNameForId(r,m)){var v=n(c,"."+m,void 0,r);t.insertRules(r,m,v)}o.push(m)}}return o.join(" ")},e}(),ot=/^\s*\/\/.*$/gm,it=[":","[",".","#"];function at(e){var t,n,r,o,i=void 0===e?Ee:e,a=i.options,s=void 0===a?Ee:a,l=i.plugins,u=void 0===l?xe:l,c=new fe(s),f=[],p=function(e){function t(t){if(t)try{e(t+"}")}catch(e){}}return function(n,r,o,i,a,s,l,u,c,f){switch(n){case 1:if(0===c&&64===r.charCodeAt(0))return e(r+";"),"";break;case 2:if(0===u)return r+"/*|*/";break;case 3:switch(u){case 102:case 112:return e(o[0]+r),"";default:return r+(0===f?"/*|*/":"")}case-2:r.split("/*|*/}").forEach(t)}}}((function(e){f.push(e)})),d=function(e,r,i){return 0===r&&-1!==it.indexOf(i[n.length])||i.match(o)?e:"."+t};function h(e,i,a,s){void 0===s&&(s="&");var l=e.replace(ot,""),u=i&&a?a+" "+i+" { "+l+" }":l;return t=s,n=i,r=new RegExp("\\"+n+"\\b","g"),o=new RegExp("(\\"+n+"\\b){2,}"),c(a||!i?"":i,u)}return c.use([].concat(u,[function(e,t,o){2===e&&o.length&&o[0].lastIndexOf(n)>0&&(o[0]=o[0].replace(r,d))},p,function(e){if(-2===e){var t=f;return f=[],t}}])),h.hash=u.length?u.reduce((function(e,t){return t.name||Pe(15),Ze(e,t.name)}),5381).toString():"",h}var st=e.createContext(),lt=(st.Consumer,e.createContext()),ut=(lt.Consumer,new Qe),ct=at();function ft(){return(0,e.useContext)(st)||ut}function pt(){return(0,e.useContext)(lt)||ct}function dt(t){var n=(0,e.useState)(t.stylisPlugins),r=n[0],o=n[1],i=ft(),a=(0,e.useMemo)((function(){var e=i;return t.sheet?e=t.sheet:t.target&&(e=e.reconstructWithOptions({target:t.target},!1)),t.disableCSSOMInjection&&(e=e.reconstructWithOptions({useCSSOMInjection:!1})),e}),[t.disableCSSOMInjection,t.sheet,t.target]),s=(0,e.useMemo)((function(){return at({options:{prefix:!t.disableVendorPrefixes},plugins:r})}),[t.disableVendorPrefixes,r]);return(0,e.useEffect)((function(){ce()(r,t.stylisPlugins)||o(t.stylisPlugins)}),[t.stylisPlugins]),e.createElement(st.Provider,{value:a},e.createElement(lt.Provider,{value:s},t.children))}var ht=function(){function e(e,t){var n=this;this.inject=function(e,t){void 0===t&&(t=ct);var r=n.name+t.hash;e.hasNameForId(n.id,r)||e.insertRules(n.id,r,t(n.rules,r,"@keyframes"))},this.toString=function(){return Pe(12,String(n.name))},this.name=e,this.id="sc-keyframes-"+e,this.rules=t}return e.prototype.getName=function(e){return void 0===e&&(e=ct),this.name+e.hash},e}(),mt=/([A-Z])/,vt=/([A-Z])/g,yt=/^ms-/,gt=function(e){return"-"+e.toLowerCase()};function bt(e){return mt.test(e)?e.replace(vt,gt).replace(yt,"-ms-"):e}var wt=function(e){return null==e||!1===e||""===e};function xt(e,t,n,r){if(Array.isArray(e)){for(var o,i=[],a=0,s=e.length;a<s;a+=1)""!==(o=xt(e[a],t,n,r))&&(Array.isArray(o)?i.push.apply(i,o):i.push(o));return i}return wt(e)?"":ke(e)?"."+e.styledComponentId:Se(e)?"function"!=typeof(l=e)||l.prototype&&l.prototype.isReactComponent||!t?e:xt(e(t),t,n,r):e instanceof ht?n?(e.inject(n,r),e.getName(r)):e:we(e)?function e(t,n){var r,o,i=[];for(var a in t)t.hasOwnProperty(a)&&!wt(t[a])&&(Array.isArray(t[a])&&t[a].isCss||Se(t[a])?i.push(bt(a)+":",t[a],";"):we(t[a])?i.push.apply(i,e(t[a],a)):i.push(bt(a)+": "+(r=a,(null==(o=t[a])||"boolean"==typeof o||""===o?"":"number"!=typeof o||0===o||r in pe?String(o).trim():o+"px")+";")));return n?[n+" {"].concat(i,["}"]):i}(e):e.toString();var l}var Et=function(e){return Array.isArray(e)&&(e.isCss=!0),e};function St(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];return Se(e)||we(e)?Et(xt(be(xe,[e].concat(n)))):0===n.length&&1===e.length&&"string"==typeof e[0]?e:Et(xt(be(e,n)))}new Set;var _t=function(e,t,n){return void 0===n&&(n=Ee),e.theme!==n.theme&&e.theme||t||n.theme},kt=/[!"#$%&'()*+,./:;<=>?@[\\\]^`{|}~-]+/g,Ot=/(^-|-$)/g;function jt(e){return e.replace(kt,"-").replace(Ot,"")}var Lt=function(e){return Je(et(e)>>>0)};function Ct(e){return"string"==typeof e&&!0}var Pt=function(e){return"function"==typeof e||"object"==typeof e&&null!==e&&!Array.isArray(e)},At=function(e){return"__proto__"!==e&&"constructor"!==e&&"prototype"!==e};function Tt(e,t,n){var r=e[n];Pt(t)&&Pt(r)?It(r,t):e[n]=t}function It(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];for(var o=0,i=n;o<i.length;o++){var a=i[o];if(Pt(a))for(var s in a)At(s)&&Tt(e,a[s],s)}return e}var Nt=e.createContext();Nt.Consumer;var Ft={};function Rt(t,n,r){var o=ke(t),i=!Ct(t),a=n.attrs,s=void 0===a?xe:a,l=n.componentId,u=void 0===l?function(e,t){var n="string"!=typeof e?"sc":jt(e);Ft[n]=(Ft[n]||0)+1;var r=n+"-"+Lt("5.3.5"+n+Ft[n]);return t?t+"-"+r:r}(n.displayName,n.parentComponentId):l,c=n.displayName,f=void 0===c?function(e){return Ct(e)?"styled."+e:"Styled("+_e(e)+")"}(t):c,p=n.displayName&&n.componentId?jt(n.displayName)+"-"+n.componentId:n.componentId||u,d=o&&t.attrs?Array.prototype.concat(t.attrs,s).filter(Boolean):s,h=n.shouldForwardProp;o&&t.shouldForwardProp&&(h=n.shouldForwardProp?function(e,r,o){return t.shouldForwardProp(e,r,o)&&n.shouldForwardProp(e,r,o)}:t.shouldForwardProp);var m,v=new rt(r,p,o?t.componentStyle:void 0),y=v.isStatic&&0===s.length,g=function(t,n){return function(t,n,r,o){var i=t.attrs,a=t.componentStyle,s=t.defaultProps,l=t.foldedComponentIds,u=t.shouldForwardProp,c=t.styledComponentId,f=t.target,p=function(e,t,n){void 0===e&&(e=Ee);var r=ge({},t,{theme:e}),o={};return n.forEach((function(e){var t,n,i,a=e;for(t in Se(a)&&(a=a(r)),a)r[t]=o[t]="className"===t?(n=o[t],i=a[t],n&&i?n+" "+i:n||i):a[t]})),[r,o]}(_t(n,(0,e.useContext)(Nt),s)||Ee,n,i),d=p[0],h=p[1],m=function(e,t,n,r){var o=ft(),i=pt();return t?e.generateAndInjectStyles(Ee,o,i):e.generateAndInjectStyles(n,o,i)}(a,o,d),v=r,y=h.$as||n.$as||h.as||n.as||f,g=Ct(y),b=h!==n?ge({},n,{},h):n,w={};for(var x in b)"$"!==x[0]&&"as"!==x&&("forwardedAs"===x?w.as=b[x]:(u?u(x,me,y):!g||me(x))&&(w[x]=b[x]));return n.style&&h.style!==n.style&&(w.style=ge({},n.style,{},h.style)),w.className=Array.prototype.concat(l,c,m!==c?m:null,n.className,h.className).filter(Boolean).join(" "),w.ref=v,(0,e.createElement)(y,w)}(m,t,n,y)};return g.displayName=f,(m=e.forwardRef(g)).attrs=d,m.componentStyle=v,m.displayName=f,m.shouldForwardProp=h,m.foldedComponentIds=o?Array.prototype.concat(t.foldedComponentIds,t.styledComponentId):xe,m.styledComponentId=p,m.target=o?t.target:t,m.withComponent=function(e){var t=n.componentId,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(n,["componentId"]),i=t&&t+"-"+(Ct(e)?e:jt(_e(e)));return Rt(e,ge({},o,{attrs:d,componentId:i}),r)},Object.defineProperty(m,"defaultProps",{get:function(){return this._foldedDefaultProps},set:function(e){this._foldedDefaultProps=o?It({},t.defaultProps,e):e}}),m.toString=function(){return"."+m.styledComponentId},i&&ye()(m,t,{attrs:!0,componentStyle:!0,displayName:!0,foldedComponentIds:!0,shouldForwardProp:!0,styledComponentId:!0,target:!0,withComponent:!0}),m}var Mt=function(e){return function e(t,n,r){if(void 0===r&&(r=Ee),!(0,le.isValidElementType)(n))return Pe(1,String(n));var o=function(){return t(n,r,St.apply(void 0,arguments))};return o.withConfig=function(o){return e(t,n,ge({},r,{},o))},o.attrs=function(o){return e(t,n,ge({},r,{attrs:Array.prototype.concat(r.attrs,o).filter(Boolean)}))},o}(Rt,e)};["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","big","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","keygen","label","legend","li","link","main","map","mark","marquee","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rp","rt","ruby","s","samp","script","section","select","small","source","span","strong","style","sub","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr","circle","clipPath","defs","ellipse","foreignObject","g","image","line","linearGradient","marker","mask","path","pattern","polygon","polyline","radialGradient","rect","stop","svg","text","textPath","tspan"].forEach((function(e){Mt[e]=Mt(e)}));var Dt,zt=function(){function e(e,t){this.rules=e,this.componentId=t,this.isStatic=tt(e),Qe.registerId(this.componentId+1)}var t=e.prototype;return t.createStyles=function(e,t,n,r){var o=r(xt(this.rules,t,n,r).join(""),""),i=this.componentId+e;n.insertRules(i,i,o)},t.removeStyles=function(e,t){t.clearRules(this.componentId+e)},t.renderStyles=function(e,t,n,r){e>2&&Qe.registerId(this.componentId+e),this.removeStyles(e,n),this.createStyles(e,t,n,r)},e}();Dt=function(){var t=this;this._emitSheetCSS=function(){var e=t.instance.toString();if(!e)return"";var n=Ge();return"<style "+[n&&'nonce="'+n+'"',Oe+'="true"','data-styled-version="5.3.5"'].filter(Boolean).join(" ")+">"+e+"</style>"},this.getStyleTags=function(){return t.sealed?Pe(2):t._emitSheetCSS()},this.getStyleElement=function(){var n;if(t.sealed)return Pe(2);var r=((n={})[Oe]="",n["data-styled-version"]="5.3.5",n.dangerouslySetInnerHTML={__html:t.instance.toString()},n),o=Ge();return o&&(r.nonce=o),[e.createElement("style",ge({},r,{key:"sc-0-0"}))]},this.seal=function(){t.sealed=!0},this.instance=new Qe({isServer:!0}),this.sealed=!1}.prototype,Dt.collectStyles=function(t){return this.sealed?Pe(2):e.createElement(dt,{sheet:this.instance},t)},Dt.interleaveWithNodeStream=function(e){return Pe(3)};const Ut=Mt;var Vt=Ut.div.withConfig({componentId:"sc-oa9y3j-0"})(["&&&{position:absolute;top:-10px;left:-10px;display:none;align-items:center;justify-content:center;font-size:16px;width:28px;height:28px;border-radius:999px;padding:2px;background-color:var(--primaryColor);border:1px solid #fff;z-index:100010;}"]),Gt=Ut.div.withConfig({componentId:"sc-oa9y3j-1"})(["&&&{> .seopress-beacon-el{width:60px;height:60px;border-radius:200px;align-items:center;display:flex;justify-content:center;line-height:60px;background-color:#4e21e7;transition:background-color 200ms linear 0s,transform 200ms linear 0s;min-width:60px;&:hover{cursor:pointer;background-color:rgb(78 33 231 / 80%);}}appearance:none;margin:0px;outline:none;padding:0px;position:fixed;user-select:none;z-index:100009;border:none;color:white;cursor:pointer;-webkit-tap-highlight-color:transparent;"," &:hover{.dashicons{display:flex;}}img{width:38px;height:38px;}","}body:not(.wp-admin) &&&{left:",";top:",";}body.wp-admin &&&{bottom:40px;left:180px;}body.wp-admin.block-editor-page.folded:not(.is-fullscreen-mode) &&&{left:60px;}body.wp-admin.is-fullscreen-mode.block-editor-page &&&{left:20px;}@media screen and (max-width:782px){body.wp-admin.block-editor-page &&&{left:10px !important;bottom:10px;}}"],(function(e){return!e.isDragging&&"\n &:focus {\n box-shadow: 0 0 0 2px var(--primaryColor);\n outline: 2px solid var(--primaryColor);\n }"}),(function(e){return e.isDragging&&"\n opacity: 0.8;\n cursor: grabbing !important;\n .dashicons {\n display: flex;\n }\n "}),(function(e){var t=e.x;return t&&"".concat(t,"%")}),(function(e){var t=e.y;return t&&"".concat(t,"%")}));const Bt=Gt;var Wt=o(4293),Ht=o.n(Wt),$t=o(3311),Yt=o.n($t),qt="TITLE_DESCRIPTION_META",Qt="CONTENT_ANALYSIS",Xt="SCHEMAS",Kt="TITLE_SETTINGS",Jt="ADVANCED",Zt="SOCIAL",en="REDIRECTION",tn="OVERVIEW",nn="GOOGLE_NEWS",rn="VIDEO_SITEMAP",on="INTERNAL_LINKING",an="INSPECT_URL",sn="SCHEMA_MANUAL",ln="GLOBAL",un=wp.i18n.__,cn=function(){return[{key:qt,title:un("Titles & Metas","wp-seopress"),canView:function(){return!0},type_role:ln,default_sub_tab:Kt},{key:Qt,title:un("Content Analysis","wp-seopress"),canView:function(){return!0},type_role:"CONTENT_ANALYSIS",default_sub_tab:tn},{key:Xt,title:un("Schemas","wp-seopress"),canView:function(){return Z()(SEOPRESS_DATA,["TABS","SCHEMAS"],!1)},type_role:ln,default_sub_tab:sn}]},fn=function(){return[{parent:qt,key:Kt,canView:function(){return!0},title:un("Title settings","wp-seopress")},{parent:qt,key:Zt,canView:function(){return!0},title:un("Social","wp-seopress")},{parent:qt,key:Jt,canView:function(){return!0},title:un("Advanced","wp-seopress")},{parent:qt,key:en,canView:function(){return!0},title:un("Redirection","wp-seopress")},{parent:qt,key:nn,canView:function(){return Z()(SEOPRESS_DATA,["SUB_TABS",nn],!1)},title:un("Google News","wp-seopress")},{parent:qt,key:rn,canView:function(){return Z()(SEOPRESS_DATA,["SUB_TABS",rn],!1)},title:un("Video Sitemap","wp-seopress")},{parent:Qt,key:tn,canView:function(){return!0},title:un("Overview","wp-seopress")},{parent:Qt,key:an,canView:function(){return Z()(SEOPRESS_DATA,["SUB_TABS",an],!1)},title:un("Inspect with Google","wp-seopress")},{parent:Qt,key:on,canView:function(){return Z()(SEOPRESS_DATA,["SUB_TABS",on],!1)},title:un("Internal Linking","wp-seopress")},{parent:Xt,key:sn,canView:function(){return!0},title:un("Manual","wp-seopress")}]};function pn(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=hn(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,s=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){s=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(s)throw i}}}}function dn(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i=[],a=!0,s=!1;try{for(n=n.call(e);!(a=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);a=!0);}catch(e){s=!0,o=e}finally{try{a||null==n.return||n.return()}finally{if(s)throw o}}return i}}(e,t)||hn(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function hn(e,t){if(e){if("string"==typeof e)return mn(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?mn(e,t):void 0}}function mn(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var vn=(0,e.createContext)({values:{openBar:!1,tab:qt,dataPagePreview:null}}),yn=function(){return(0,e.useContext)(vn).values.dataPagePreview},gn=function(){return(0,e.useContext)(vn).values.isGutenberg},bn=function(t){var n=t.children,r=t.data,o=void 0===r?{}:r,i=dn((0,e.useState)(!1),2),a=i[0],s=i[1],l=dn((0,e.useState)(Z()(o,"isGutenberg",!1)),2),u=l[0],c=(l[1],dn((0,e.useState)(function(){var e,t=Z()(SEOPRESS_DATA,"USER_ROLES",null),n=Z()(SEOPRESS_DATA,"ROLES_BLOCKED",{}),r=pn(cn());try{for(r.s();!(e=r.n()).done;){var o,i=e.value,a=Z()(i,"type_role",null),s=Z()(n,[a],null),l=!1,u=pn(t);try{for(u.s();!(o=u.n()).done;){var c=o.value;Ht()(s)||Ht()(Z()(s,c,null))||(l=!0)}}catch(e){u.e(e)}finally{u.f()}if(!l)return i.key}}catch(e){r.e(e)}finally{r.f()}return Yt()(cn(),{key:qt}).key}()),2)),f=c[0],p=c[1],d=dn((0,e.useState)(null),2),h=d[0],m=d[1],v=Yt()(cn(),{key:f}),y=Ht()(v.default_sub_tab)?null:v.default_sub_tab,g=dn((0,e.useState)(y),2),b=g[0],w=g[1];return(0,e.useEffect)((function(){var e=Yt()(fn(),{key:b});e&&Z()(e,"parent",!1)&&p(e.parent)}),[b]),e.createElement(vn.Provider,{value:{values:{openBar:a,dataPagePreview:h,tab:f,subTab:b,isGutenberg:u},actions:{setOpenBar:s,setDataPagePreview:m,setTab:function(e){var t=Yt()(cn(),{key:e});t&&(Ht()(t.default_sub_tab)?w(null):w(t.default_sub_tab),p(e))},setSubTab:function(e){Yt()(fn(),{key:e})&&w(e)}}}},n)};function wn(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}const xn=function(t,n){var r,o,i=(r=(0,e.useState)((function(){try{var e=window.localStorage.getItem(t);return e?JSON.parse(e):n}catch(e){return console.log(e),n}})),o=2,function(e){if(Array.isArray(e))return e}(r)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i=[],a=!0,s=!1;try{for(n=n.call(e);!(a=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);a=!0);}catch(e){s=!0,o=e}finally{try{a||null==n.return||n.return()}finally{if(s)throw o}}return i}}(r,o)||function(e,t){if(e){if("string"==typeof e)return wn(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?wn(e,t):void 0}}(r,o)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),a=i[0],s=i[1];return[a,function(e){try{var n=e instanceof Function?e(a):e;s(n),window.localStorage.setItem(t,JSON.stringify(n))}catch(e){console.log(e)}}]};function En(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Sn(){var e=window;return{width:e.innerWidth,height:e.innerHeight}}function _n(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function kn(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?_n(Object(n),!0).forEach((function(t){On(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):_n(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function On(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function jn(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i=[],a=!0,s=!1;try{for(n=n.call(e);!(a=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);a=!0);}catch(e){s=!0,o=e}finally{try{a||null==n.return||n.return()}finally{if(s)throw o}}return i}}(e,t)||function(e,t){if(e){if("string"==typeof e)return Ln(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Ln(e,t):void 0}}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Ln(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Cn=function(e,t){return Number(100*t/e).toFixed(2)};const Pn=function(){var t=gn(),n=(0,e.useContext)(vn).actions,r=jn(xn("seopress_beacon_position",{x:2,y:90}),2),o=r[0],i=r[1],a=jn((0,e.useState)({isDragging:!1}),2),s=a[0],l=a[1],u=function(e){e.preventDefault(),s.isDragging||n.setOpenBar((function(e){return!e}))},c=function(){var t,n,r=(t=(0,e.useState)(Sn()),n=2,function(e){if(Array.isArray(e))return e}(t)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i=[],a=!0,s=!1;try{for(n=n.call(e);!(a=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);a=!0);}catch(e){s=!0,o=e}finally{try{a||null==n.return||n.return()}finally{if(s)throw o}}return i}}(t,n)||function(e,t){if(e){if("string"==typeof e)return En(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?En(e,t):void 0}}(t,n)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),o=r[0],i=r[1];return(0,e.useEffect)((function(){function e(){i(Sn())}return window.addEventListener("resize",e),function(){return window.removeEventListener("resize",e)}}),[]),o}(),f=c.height,p=c.width,d=p-80,h=f-80,m={x:o.x,y:o.y},v=(0,e.useCallback)((function(e){var t=e||window.event,n=t.clientX,r=t.clientY;if(s.isDragging){var o=document.querySelector("#seopress-beacon-universal-metabox");n<=d&&n>=20&&(o.style.left="".concat(Cn(p,n),"%"),m=kn(kn({},m),{},{x:n})),r<=h&&r>=70&&(o.style.top="".concat(Cn(f,r),"%"),m=kn(kn({},m),{},{y:r}))}}),[s.isDragging]),y=(0,e.useCallback)((function(){s.isDragging&&(l((function(e){return kn(kn({},e),{},{isDragging:!1})})),i({x:Cn(p,m.x),y:Cn(f,m.y)}))}),[s.isDragging]),g=(0,e.useCallback)((function(){l((function(e){return kn(kn({},e),{},{isDragging:!0})}))}),[]);return(0,e.useEffect)((function(){return window.addEventListener("mousemove",v),window.addEventListener("mouseup",y),function(){return window.removeEventListener("mousemove",v),window.removeEventListener("mouseup",y),!1}}),[v,y]),t?e.createElement(Bt,{id:"seopress-beacon-universal-metabox",onKeyUp:function(e){13===e.keyCode&&u(e)},role:"button",tabIndex:"0"},e.createElement("div",{className:"seopress-beacon-el",onClick:s.isDragging?null:u},e.createElement("img",{src:Z()(SEOPRESS_DATA,"BEACON_SVG",se("/img/beacon.svg")),alt:""}))):e.createElement(e.Fragment,null,e.createElement("div",{style:{display:s.isDragging?"block":"none",position:"fixed",width:"100%",height:"100%",top:0,left:0,backgroundColor:"rgba(255,255,255,0.001)",zIndex:1e5}}),e.createElement(Bt,{id:"seopress-beacon-universal-metabox",onKeyUp:function(e){13===e.keyCode&&u(e)},isDragging:s.isDragging,x:o.x,y:o.y,role:"button",tabIndex:"0"},e.createElement("div",{className:"seopress-beacon-el",onClick:s.isDragging?null:u},e.createElement("img",{src:Z()(SEOPRESS_DATA,"BEACON_SVG",se("/img/beacon.svg")),alt:""})),e.createElement(Vt,{className:"dashicons dashicons-move",onMouseDown:g})))};var An=o(1609),Tn=o.n(An);function In(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i=[],a=!0,s=!1;try{for(n=n.call(e);!(a=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);a=!0);}catch(e){s=!0,o=e}finally{try{a||null==n.return||n.return()}finally{if(s)throw o}}return i}}(e,t)||function(e,t){if(e){if("string"==typeof e)return Nn(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Nn(e,t):void 0}}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Nn(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Fn=(0,e.createContext)({values:{show:!1,message:""},actions:{}}),Rn=function(t){var n=t.values,r=t.children,o=In((0,e.useState)(Z()(n,"show",!1)),2),i=o[0],a=o[1],s=In((0,e.useState)(Z()(n,"messages","")),2),l=s[0],u=s[1];return(0,e.useEffect)((function(){Tn()(l)||(a(!0),setTimeout((function(){u(""),a(!1)}),4e3))}),[l]),e.createElement(Fn.Provider,{value:{values:{show:i,message:l},actions:{setMessage:u}}},r)},Mn=Ut.div.withConfig({componentId:"sc-4mm9ym-0"})(["&&&{position:fixed;right:0;bottom:40px;padding-left:16px;padding-right:16px;animation-name:sp-fade-in-out;animation-duration:5s;animation-iteration-count:1;animation-fill-mode:forwards;visibility:hidden;z-index:10;.sp-components-snackbar__content{display:flex;align-items:center;justify-content:space-between;line-height:1.4;}.sp-components-snackbar{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;background-color:#32373c;border-radius:4px;box-shadow:0 2px 4px rgba(0,0,0,0.3);color:#fff;padding:16px 24px;cursor:pointer;}.sp-components-snackbar .dashicons{color:#fff;}}"]);const Dn=function(t){var n=t.children;return e.createElement(Mn,null,e.createElement("div",{className:"sp-components-snackbar"},e.createElement("div",{className:"sp-components-snackbar__content"},e.createElement("span",{className:"dashicons dashicons-yes"}),n)))};wp.i18n.__;const zn=function(){var t=(0,e.useContext)(Fn).values;return t.show?e.createElement(Dn,null,t.message):null};var Un=Object.prototype.hasOwnProperty;const Vn=function(e,t){return null!=e&&Un.call(e,t)},Gn=Array.isArray,Bn="object"==typeof global&&global&&global.Object===Object&&global;var Wn="object"==typeof self&&self&&self.Object===Object&&self;const Hn=Bn||Wn||Function("return this")(),$n=Hn.Symbol;var Yn=Object.prototype,qn=Yn.hasOwnProperty,Qn=Yn.toString,Xn=$n?$n.toStringTag:void 0;var Kn=Object.prototype.toString;var Jn=$n?$n.toStringTag:void 0;const Zn=function(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":Jn&&Jn in Object(e)?function(e){var t=qn.call(e,Xn),n=e[Xn];try{e[Xn]=void 0;var r=!0}catch(e){}var o=Qn.call(e);return r&&(t?e[Xn]=n:delete e[Xn]),o}(e):function(e){return Kn.call(e)}(e)},er=function(e){return null!=e&&"object"==typeof e},tr=function(e){return"symbol"==typeof e||er(e)&&"[object Symbol]"==Zn(e)};var nr=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,rr=/^\w*$/;const or=function(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)},ir=function(e){if(!or(e))return!1;var t=Zn(e);return"[object Function]"==t||"[object GeneratorFunction]"==t||"[object AsyncFunction]"==t||"[object Proxy]"==t},ar=Hn["__core-js_shared__"];var sr,lr=(sr=/[^.]+$/.exec(ar&&ar.keys&&ar.keys.IE_PROTO||""))?"Symbol(src)_1."+sr:"";var ur=Function.prototype.toString;const cr=function(e){if(null!=e){try{return ur.call(e)}catch(e){}try{return e+""}catch(e){}}return""};var fr=/^\[object .+?Constructor\]$/,pr=Function.prototype,dr=Object.prototype,hr=pr.toString,mr=dr.hasOwnProperty,vr=RegExp("^"+hr.call(mr).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");const yr=function(e){return!(!or(e)||(t=e,lr&&lr in t))&&(ir(e)?vr:fr).test(cr(e));var t},gr=function(e,t){var n=function(e,t){return null==e?void 0:e[t]}(e,t);return yr(n)?n:void 0},br=gr(Object,"create");var wr=Object.prototype.hasOwnProperty;var xr=Object.prototype.hasOwnProperty;function Er(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}Er.prototype.clear=function(){this.__data__=br?br(null):{},this.size=0},Er.prototype.delete=function(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t},Er.prototype.get=function(e){var t=this.__data__;if(br){var n=t[e];return"__lodash_hash_undefined__"===n?void 0:n}return wr.call(t,e)?t[e]:void 0},Er.prototype.has=function(e){var t=this.__data__;return br?void 0!==t[e]:xr.call(t,e)},Er.prototype.set=function(e,t){var n=this.__data__;return this.size+=this.has(e)?0:1,n[e]=br&&void 0===t?"__lodash_hash_undefined__":t,this};const Sr=Er,_r=function(e,t){return e===t||e!=e&&t!=t},kr=function(e,t){for(var n=e.length;n--;)if(_r(e[n][0],t))return n;return-1};var Or=Array.prototype.splice;function jr(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}jr.prototype.clear=function(){this.__data__=[],this.size=0},jr.prototype.delete=function(e){var t=this.__data__,n=kr(t,e);return!(n<0||(n==t.length-1?t.pop():Or.call(t,n,1),--this.size,0))},jr.prototype.get=function(e){var t=this.__data__,n=kr(t,e);return n<0?void 0:t[n][1]},jr.prototype.has=function(e){return kr(this.__data__,e)>-1},jr.prototype.set=function(e,t){var n=this.__data__,r=kr(n,e);return r<0?(++this.size,n.push([e,t])):n[r][1]=t,this};const Lr=jr,Cr=gr(Hn,"Map"),Pr=function(e,t){var n,r,o=e.__data__;return("string"==(r=typeof(n=t))||"number"==r||"symbol"==r||"boolean"==r?"__proto__"!==n:null===n)?o["string"==typeof t?"string":"hash"]:o.map};function Ar(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}Ar.prototype.clear=function(){this.size=0,this.__data__={hash:new Sr,map:new(Cr||Lr),string:new Sr}},Ar.prototype.delete=function(e){var t=Pr(this,e).delete(e);return this.size-=t?1:0,t},Ar.prototype.get=function(e){return Pr(this,e).get(e)},Ar.prototype.has=function(e){return Pr(this,e).has(e)},Ar.prototype.set=function(e,t){var n=Pr(this,e),r=n.size;return n.set(e,t),this.size+=n.size==r?0:1,this};const Tr=Ar;function Ir(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)throw new TypeError("Expected a function");var n=function(){var r=arguments,o=t?t.apply(this,r):r[0],i=n.cache;if(i.has(o))return i.get(o);var a=e.apply(this,r);return n.cache=i.set(o,a)||i,a};return n.cache=new(Ir.Cache||Tr),n}Ir.Cache=Tr;const Nr=Ir;var Fr=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,Rr=/\\(\\)?/g,Mr=function(e){var t=Nr(e,(function(e){return 500===n.size&&n.clear(),e})),n=t.cache;return t}((function(e){var t=[];return 46===e.charCodeAt(0)&&t.push(""),e.replace(Fr,(function(e,n,r,o){t.push(r?o.replace(Rr,"$1"):n||e)})),t}));const Dr=Mr,zr=function(e,t){for(var n=-1,r=null==e?0:e.length,o=Array(r);++n<r;)o[n]=t(e[n],n,e);return o};var Ur=$n?$n.prototype:void 0,Vr=Ur?Ur.toString:void 0;const Gr=function e(t){if("string"==typeof t)return t;if(Gn(t))return zr(t,e)+"";if(tr(t))return Vr?Vr.call(t):"";var n=t+"";return"0"==n&&1/t==-1/0?"-0":n},Br=function(e){return null==e?"":Gr(e)},Wr=function(e,t){return Gn(e)?e:function(e,t){if(Gn(e))return!1;var n=typeof e;return!("number"!=n&&"symbol"!=n&&"boolean"!=n&&null!=e&&!tr(e))||rr.test(e)||!nr.test(e)||null!=t&&e in Object(t)}(e,t)?[e]:Dr(Br(e))},Hr=function(e){return er(e)&&"[object Arguments]"==Zn(e)};var $r=Object.prototype,Yr=$r.hasOwnProperty,qr=$r.propertyIsEnumerable;const Qr=Hr(function(){return arguments}())?Hr:function(e){return er(e)&&Yr.call(e,"callee")&&!qr.call(e,"callee")};var Xr=/^(?:0|[1-9]\d*)$/;const Kr=function(e,t){var n=typeof e;return!!(t=null==t?9007199254740991:t)&&("number"==n||"symbol"!=n&&Xr.test(e))&&e>-1&&e%1==0&&e<t},Jr=function(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=9007199254740991},Zr=function(e){if("string"==typeof e||tr(e))return e;var t=e+"";return"0"==t&&1/e==-1/0?"-0":t},eo=function(e,t){return null!=e&&function(e,t,n){for(var r=-1,o=(t=Wr(t,e)).length,i=!1;++r<o;){var a=Zr(t[r]);if(!(i=null!=e&&n(e,a)))break;e=e[a]}return i||++r!=o?i:!!(o=null==e?0:e.length)&&Jr(o)&&Kr(a,o)&&(Gn(e)||Qr(e))}(e,t,Vn)},to=function(e,t,n){var r=null==e?void 0:function(e,t){for(var n=0,r=(t=Wr(t,e)).length;null!=e&&n<r;)e=e[Zr(t[n++])];return n&&n==r?e:void 0}(e,t);return void 0===r?n:r};var no=function(){try{var e=new URLSearchParams(window.location.search);return e.has("post")?e.get("post"):eo(SEOPRESS_DATA,"POST_ID")?to(SEOPRESS_DATA,"POST_ID"):null}catch(e){return null}};function ro(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function oo(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ro(Object(n),!0).forEach((function(t){io(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ro(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function io(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ao(t,n){var r=(0,e.useRef)(),o=K(t,(function(){r.current=new AbortController;for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return ae.apply(void 0,t.concat([r.current.signal]))}),n);return oo(oo({},o),{},{abort:function(){var e;return null===(e=r.current)||void 0===e?void 0:e.abort()}})}var so,lo=(so=function(e,t){return so=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},so(e,t)},function(e,t){function n(){this.constructor=e}so(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}),uo=function(){return uo=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},uo.apply(this,arguments)},co={width:"100%",height:"10px",top:"0px",left:"0px",cursor:"row-resize"},fo={width:"10px",height:"100%",top:"0px",left:"0px",cursor:"col-resize"},po={width:"20px",height:"20px",position:"absolute"},ho={top:uo(uo({},co),{top:"-5px"}),right:uo(uo({},fo),{left:void 0,right:"-5px"}),bottom:uo(uo({},co),{top:void 0,bottom:"-5px"}),left:uo(uo({},fo),{left:"-5px"}),topRight:uo(uo({},po),{right:"-10px",top:"-10px",cursor:"ne-resize"}),bottomRight:uo(uo({},po),{right:"-10px",bottom:"-10px",cursor:"se-resize"}),bottomLeft:uo(uo({},po),{left:"-10px",bottom:"-10px",cursor:"sw-resize"}),topLeft:uo(uo({},po),{left:"-10px",top:"-10px",cursor:"nw-resize"})},mo=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.onMouseDown=function(t){e.props.onResizeStart(t,e.props.direction)},e.onTouchStart=function(t){e.props.onResizeStart(t,e.props.direction)},e}return lo(n,t),n.prototype.render=function(){return e.createElement("div",{className:this.props.className||"",style:uo(uo({position:"absolute",userSelect:"none"},ho[this.props.direction]),this.props.replaceStyles||{}),onMouseDown:this.onMouseDown,onTouchStart:this.onTouchStart},this.props.children)},n}(e.PureComponent),vo=function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},e(t,n)};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),yo=function(){return yo=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},yo.apply(this,arguments)},go={width:"auto",height:"auto"},bo=function(e,t,n){return Math.max(Math.min(e,n),t)},wo=function(e,t){return Math.round(e/t)*t},xo=function(e,t){return new RegExp(e,"i").test(t)},Eo=function(e){return Boolean(e.touches&&e.touches.length)},So=function(e,t,n){void 0===n&&(n=0);var r=t.reduce((function(n,r,o){return Math.abs(r-e)<Math.abs(t[n]-e)?o:n}),0),o=Math.abs(t[r]-e);return 0===n||o<n?t[r]:e},_o=function(e){return"auto"===(e=e.toString())||e.endsWith("px")||e.endsWith("%")||e.endsWith("vh")||e.endsWith("vw")||e.endsWith("vmax")||e.endsWith("vmin")?e:e+"px"},ko=function(e,t,n,r){if(e&&"string"==typeof e){if(e.endsWith("px"))return Number(e.replace("px",""));if(e.endsWith("%"))return t*(Number(e.replace("%",""))/100);if(e.endsWith("vw"))return n*(Number(e.replace("vw",""))/100);if(e.endsWith("vh"))return r*(Number(e.replace("vh",""))/100)}return e},Oo=["as","style","className","grid","snap","bounds","boundsByDirection","size","defaultSize","minWidth","minHeight","maxWidth","maxHeight","lockAspectRatio","lockAspectRatioExtraWidth","lockAspectRatioExtraHeight","enable","handleStyles","handleClasses","handleWrapperStyle","handleWrapperClass","children","onResizeStart","onResize","onResizeStop","handleComponent","scale","resizeRatio","snapGap"],jo="__resizable_base__",Lo=function(t){function r(e){var n=t.call(this,e)||this;return n.ratio=1,n.resizable=null,n.parentLeft=0,n.parentTop=0,n.resizableLeft=0,n.resizableRight=0,n.resizableTop=0,n.resizableBottom=0,n.targetLeft=0,n.targetTop=0,n.appendBase=function(){if(!n.resizable||!n.window)return null;var e=n.parentNode;if(!e)return null;var t=n.window.document.createElement("div");return t.style.width="100%",t.style.height="100%",t.style.position="absolute",t.style.transform="scale(0, 0)",t.style.left="0",t.style.flex="0 0 100%",t.classList?t.classList.add(jo):t.className+=jo,e.appendChild(t),t},n.removeBase=function(e){var t=n.parentNode;t&&t.removeChild(e)},n.ref=function(e){e&&(n.resizable=e)},n.state={isResizing:!1,width:void 0===(n.propsSize&&n.propsSize.width)?"auto":n.propsSize&&n.propsSize.width,height:void 0===(n.propsSize&&n.propsSize.height)?"auto":n.propsSize&&n.propsSize.height,direction:"right",original:{x:0,y:0,width:0,height:0},backgroundStyle:{height:"100%",width:"100%",backgroundColor:"rgba(0,0,0,0)",cursor:"auto",opacity:0,position:"fixed",zIndex:9999,top:"0",left:"0",bottom:"0",right:"0"},flexBasis:void 0},n.onResizeStart=n.onResizeStart.bind(n),n.onMouseMove=n.onMouseMove.bind(n),n.onMouseUp=n.onMouseUp.bind(n),n}return vo(r,t),Object.defineProperty(r.prototype,"parentNode",{get:function(){return this.resizable?this.resizable.parentNode:null},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"window",{get:function(){return this.resizable&&this.resizable.ownerDocument?this.resizable.ownerDocument.defaultView:null},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"propsSize",{get:function(){return this.props.size||this.props.defaultSize||go},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"size",{get:function(){var e=0,t=0;if(this.resizable&&this.window){var n=this.resizable.offsetWidth,r=this.resizable.offsetHeight,o=this.resizable.style.position;"relative"!==o&&(this.resizable.style.position="relative"),e="auto"!==this.resizable.style.width?this.resizable.offsetWidth:n,t="auto"!==this.resizable.style.height?this.resizable.offsetHeight:r,this.resizable.style.position=o}return{width:e,height:t}},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"sizeStyle",{get:function(){var e=this,t=this.props.size,n=function(t){if(void 0===e.state[t]||"auto"===e.state[t])return"auto";if(e.propsSize&&e.propsSize[t]&&e.propsSize[t].toString().endsWith("%")){if(e.state[t].toString().endsWith("%"))return e.state[t].toString();var n=e.getParentSize();return Number(e.state[t].toString().replace("px",""))/n[t]*100+"%"}return _o(e.state[t])};return{width:t&&void 0!==t.width&&!this.state.isResizing?_o(t.width):n("width"),height:t&&void 0!==t.height&&!this.state.isResizing?_o(t.height):n("height")}},enumerable:!1,configurable:!0}),r.prototype.getParentSize=function(){if(!this.parentNode)return this.window?{width:this.window.innerWidth,height:this.window.innerHeight}:{width:0,height:0};var e=this.appendBase();if(!e)return{width:0,height:0};var t=!1,n=this.parentNode.style.flexWrap;"wrap"!==n&&(t=!0,this.parentNode.style.flexWrap="wrap"),e.style.position="relative",e.style.minWidth="100%",e.style.minHeight="100%";var r={width:e.offsetWidth,height:e.offsetHeight};return t&&(this.parentNode.style.flexWrap=n),this.removeBase(e),r},r.prototype.bindEvents=function(){this.window&&(this.window.addEventListener("mouseup",this.onMouseUp),this.window.addEventListener("mousemove",this.onMouseMove),this.window.addEventListener("mouseleave",this.onMouseUp),this.window.addEventListener("touchmove",this.onMouseMove,{capture:!0,passive:!1}),this.window.addEventListener("touchend",this.onMouseUp))},r.prototype.unbindEvents=function(){this.window&&(this.window.removeEventListener("mouseup",this.onMouseUp),this.window.removeEventListener("mousemove",this.onMouseMove),this.window.removeEventListener("mouseleave",this.onMouseUp),this.window.removeEventListener("touchmove",this.onMouseMove,!0),this.window.removeEventListener("touchend",this.onMouseUp))},r.prototype.componentDidMount=function(){if(this.resizable&&this.window){var e=this.window.getComputedStyle(this.resizable);this.setState({width:this.state.width||this.size.width,height:this.state.height||this.size.height,flexBasis:"auto"!==e.flexBasis?e.flexBasis:void 0})}},r.prototype.componentWillUnmount=function(){this.window&&this.unbindEvents()},r.prototype.createSizeForCssProperty=function(e,t){var n=this.propsSize&&this.propsSize[t];return"auto"!==this.state[t]||this.state.original[t]!==e||void 0!==n&&"auto"!==n?e:"auto"},r.prototype.calculateNewMaxFromBoundary=function(e,t){var n,r,o=this.props.boundsByDirection,i=this.state.direction,a=o&&xo("left",i),s=o&&xo("top",i);if("parent"===this.props.bounds){var l=this.parentNode;l&&(n=a?this.resizableRight-this.parentLeft:l.offsetWidth+(this.parentLeft-this.resizableLeft),r=s?this.resizableBottom-this.parentTop:l.offsetHeight+(this.parentTop-this.resizableTop))}else"window"===this.props.bounds?this.window&&(n=a?this.resizableRight:this.window.innerWidth-this.resizableLeft,r=s?this.resizableBottom:this.window.innerHeight-this.resizableTop):this.props.bounds&&(n=a?this.resizableRight-this.targetLeft:this.props.bounds.offsetWidth+(this.targetLeft-this.resizableLeft),r=s?this.resizableBottom-this.targetTop:this.props.bounds.offsetHeight+(this.targetTop-this.resizableTop));return n&&Number.isFinite(n)&&(e=e&&e<n?e:n),r&&Number.isFinite(r)&&(t=t&&t<r?t:r),{maxWidth:e,maxHeight:t}},r.prototype.calculateNewSizeFromDirection=function(e,t){var n=this.props.scale||1,r=this.props.resizeRatio||1,o=this.state,i=o.direction,a=o.original,s=this.props,l=s.lockAspectRatio,u=s.lockAspectRatioExtraHeight,c=s.lockAspectRatioExtraWidth,f=a.width,p=a.height,d=u||0,h=c||0;return xo("right",i)&&(f=a.width+(e-a.x)*r/n,l&&(p=(f-h)/this.ratio+d)),xo("left",i)&&(f=a.width-(e-a.x)*r/n,l&&(p=(f-h)/this.ratio+d)),xo("bottom",i)&&(p=a.height+(t-a.y)*r/n,l&&(f=(p-d)*this.ratio+h)),xo("top",i)&&(p=a.height-(t-a.y)*r/n,l&&(f=(p-d)*this.ratio+h)),{newWidth:f,newHeight:p}},r.prototype.calculateNewSizeFromAspectRatio=function(e,t,n,r){var o=this.props,i=o.lockAspectRatio,a=o.lockAspectRatioExtraHeight,s=o.lockAspectRatioExtraWidth,l=void 0===r.width?10:r.width,u=void 0===n.width||n.width<0?e:n.width,c=void 0===r.height?10:r.height,f=void 0===n.height||n.height<0?t:n.height,p=a||0,d=s||0;if(i){var h=(c-p)*this.ratio+d,m=(f-p)*this.ratio+d,v=(l-d)/this.ratio+p,y=(u-d)/this.ratio+p,g=Math.max(l,h),b=Math.min(u,m),w=Math.max(c,v),x=Math.min(f,y);e=bo(e,g,b),t=bo(t,w,x)}else e=bo(e,l,u),t=bo(t,c,f);return{newWidth:e,newHeight:t}},r.prototype.setBoundingClientRect=function(){if("parent"===this.props.bounds){var e=this.parentNode;if(e){var t=e.getBoundingClientRect();this.parentLeft=t.left,this.parentTop=t.top}}if(this.props.bounds&&"string"!=typeof this.props.bounds){var n=this.props.bounds.getBoundingClientRect();this.targetLeft=n.left,this.targetTop=n.top}if(this.resizable){var r=this.resizable.getBoundingClientRect(),o=r.left,i=r.top,a=r.right,s=r.bottom;this.resizableLeft=o,this.resizableRight=a,this.resizableTop=i,this.resizableBottom=s}},r.prototype.onResizeStart=function(e,t){if(this.resizable&&this.window){var n,r=0,o=0;if(e.nativeEvent&&function(e){return Boolean((e.clientX||0===e.clientX)&&(e.clientY||0===e.clientY))}(e.nativeEvent)?(r=e.nativeEvent.clientX,o=e.nativeEvent.clientY):e.nativeEvent&&Eo(e.nativeEvent)&&(r=e.nativeEvent.touches[0].clientX,o=e.nativeEvent.touches[0].clientY),this.props.onResizeStart&&this.resizable&&!1===this.props.onResizeStart(e,t,this.resizable))return;this.props.size&&(void 0!==this.props.size.height&&this.props.size.height!==this.state.height&&this.setState({height:this.props.size.height}),void 0!==this.props.size.width&&this.props.size.width!==this.state.width&&this.setState({width:this.props.size.width})),this.ratio="number"==typeof this.props.lockAspectRatio?this.props.lockAspectRatio:this.size.width/this.size.height;var i=this.window.getComputedStyle(this.resizable);if("auto"!==i.flexBasis){var a=this.parentNode;if(a){var s=this.window.getComputedStyle(a).flexDirection;this.flexDir=s.startsWith("row")?"row":"column",n=i.flexBasis}}this.setBoundingClientRect(),this.bindEvents();var l={original:{x:r,y:o,width:this.size.width,height:this.size.height},isResizing:!0,backgroundStyle:yo(yo({},this.state.backgroundStyle),{cursor:this.window.getComputedStyle(e.target).cursor||"auto"}),direction:t,flexBasis:n};this.setState(l)}},r.prototype.onMouseMove=function(e){var t=this;if(this.state.isResizing&&this.resizable&&this.window){if(this.window.TouchEvent&&Eo(e))try{e.preventDefault(),e.stopPropagation()}catch(e){}var r=this.props,o=r.maxWidth,i=r.maxHeight,a=r.minWidth,s=r.minHeight,l=Eo(e)?e.touches[0].clientX:e.clientX,u=Eo(e)?e.touches[0].clientY:e.clientY,c=this.state,f=c.direction,p=c.original,d=c.width,h=c.height,m=this.getParentSize(),v=function(e,t,n,r,o,i,a){return r=ko(r,e.width,t,n),o=ko(o,e.height,t,n),i=ko(i,e.width,t,n),a=ko(a,e.height,t,n),{maxWidth:void 0===r?void 0:Number(r),maxHeight:void 0===o?void 0:Number(o),minWidth:void 0===i?void 0:Number(i),minHeight:void 0===a?void 0:Number(a)}}(m,this.window.innerWidth,this.window.innerHeight,o,i,a,s);o=v.maxWidth,i=v.maxHeight,a=v.minWidth,s=v.minHeight;var y=this.calculateNewSizeFromDirection(l,u),g=y.newHeight,b=y.newWidth,w=this.calculateNewMaxFromBoundary(o,i);this.props.snap&&this.props.snap.x&&(b=So(b,this.props.snap.x,this.props.snapGap)),this.props.snap&&this.props.snap.y&&(g=So(g,this.props.snap.y,this.props.snapGap));var x=this.calculateNewSizeFromAspectRatio(b,g,{width:w.maxWidth,height:w.maxHeight},{width:a,height:s});if(b=x.newWidth,g=x.newHeight,this.props.grid){var E=wo(b,this.props.grid[0]),S=wo(g,this.props.grid[1]),_=this.props.snapGap||0;b=0===_||Math.abs(E-b)<=_?E:b,g=0===_||Math.abs(S-g)<=_?S:g}var k={width:b-p.width,height:g-p.height};d&&"string"==typeof d&&(d.endsWith("%")?b=b/m.width*100+"%":d.endsWith("vw")?b=b/this.window.innerWidth*100+"vw":d.endsWith("vh")&&(b=b/this.window.innerHeight*100+"vh")),h&&"string"==typeof h&&(h.endsWith("%")?g=g/m.height*100+"%":h.endsWith("vw")?g=g/this.window.innerWidth*100+"vw":h.endsWith("vh")&&(g=g/this.window.innerHeight*100+"vh"));var O={width:this.createSizeForCssProperty(b,"width"),height:this.createSizeForCssProperty(g,"height")};"row"===this.flexDir?O.flexBasis=O.width:"column"===this.flexDir&&(O.flexBasis=O.height),(0,n.flushSync)((function(){t.setState(O)})),this.props.onResize&&this.props.onResize(e,f,this.resizable,k)}},r.prototype.onMouseUp=function(e){var t=this.state,n=t.isResizing,r=t.direction,o=t.original;if(n&&this.resizable){var i={width:this.size.width-o.width,height:this.size.height-o.height};this.props.onResizeStop&&this.props.onResizeStop(e,r,this.resizable,i),this.props.size&&this.setState(this.props.size),this.unbindEvents(),this.setState({isResizing:!1,backgroundStyle:yo(yo({},this.state.backgroundStyle),{cursor:"auto"})})}},r.prototype.updateSize=function(e){this.setState({width:e.width,height:e.height})},r.prototype.renderResizer=function(){var t=this,n=this.props,r=n.enable,o=n.handleStyles,i=n.handleClasses,a=n.handleWrapperStyle,s=n.handleWrapperClass,l=n.handleComponent;if(!r)return null;var u=Object.keys(r).map((function(n){return!1!==r[n]?e.createElement(mo,{key:n,direction:n,onResizeStart:t.onResizeStart,replaceStyles:o&&o[n],className:i&&i[n]},l&&l[n]?l[n]:null):null}));return e.createElement("div",{className:s,style:a},u)},r.prototype.render=function(){var t=this,n=Object.keys(this.props).reduce((function(e,n){return-1!==Oo.indexOf(n)||(e[n]=t.props[n]),e}),{}),r=yo(yo(yo({position:"relative",userSelect:this.state.isResizing?"none":"auto"},this.props.style),this.sizeStyle),{maxWidth:this.props.maxWidth,maxHeight:this.props.maxHeight,minWidth:this.props.minWidth,minHeight:this.props.minHeight,boxSizing:"border-box",flexShrink:0});this.state.flexBasis&&(r.flexBasis=this.state.flexBasis);var o=this.props.as||"div";return e.createElement(o,yo({ref:this.ref,style:r,className:this.props.className},n),this.state.isResizing&&e.createElement("div",{style:this.state.backgroundStyle}),this.props.children,this.renderResizer())},r.defaultProps={as:"div",onResizeStart:function(){},onResize:function(){},onResizeStop:function(){},enable:{top:!0,right:!0,bottom:!0,left:!0,topRight:!0,bottomRight:!0,bottomLeft:!0,topLeft:!0},style:{},grid:[1,1],lockAspectRatio:!1,lockAspectRatioExtraWidth:0,lockAspectRatioExtraHeight:0,scale:1,resizeRatio:1,snapGap:0},r}(e.PureComponent);function Co(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}const Po=function(t){var n,r,o=t.children,i=(n=xn("seopress_height_module_metabox",400),r=2,function(e){if(Array.isArray(e))return e}(n)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i=[],a=!0,s=!1;try{for(n=n.call(e);!(a=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);a=!0);}catch(e){s=!0,o=e}finally{try{a||null==n.return||n.return()}finally{if(s)throw o}}return i}}(n,r)||function(e,t){if(e){if("string"==typeof e)return Co(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Co(e,t):void 0}}(n,r)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),a=i[0],s=i[1];return e.createElement(Lo,{defaultSize:{width:"70%",height:a},onResizeStop:function(e,t,n,r){s(a+r.height)},enable:{top:!0},handleClasses:{top:"resizable"},style:{position:"fixed"},className:"sp-seo-metabox"},o)};var Ao=Ut.button.withConfig({componentId:"sc-14aqw4v-0"})(["&&&&{display:inline-flex;text-decoration:none;font-size:13px;margin:0;border:0;cursor:pointer;-webkit-appearance:none;background:none;background-color:none;:not(:hover):not(:active):not(.has-background):not(:focus){background:none;background-color:none;box-shadow:none;}transition:box-shadow 0.1s linear;height:36px;align-items:center;padding:6px 12px;border-radius:2px;vertical-align:middle;box-shadow:inset 0 0 0 1px var(--primaryColor);outline:1px solid transparent;white-space:nowrap;color:var(--primaryColor);background:transparent;font-weight:inherit;text-transform:none;"," ","}&&&&:focus{border:2px solid var(--colorDark);}&&&& svg *{","}"],(function(e){return e.blue&&"\n background-color: var(--primaryColor);\n color: #fff;\n text-decoration: none;\n :not(:hover):not(:active):not(.has-background):not(:focus) {\n background-color: var(--primaryColor);\n color: #fff;\n text-decoration: none;\n "}),(function(e){return e.secondary&&"\n color: var(--primaryColor);\n border: 1px solid var(--primaryColor);\n background: var(--primaryColorHover);\n text-decoration: none;\n box-shadow: none;\n :not(:hover):not(:active):not(.has-background):not(:focus) {\n color: var(--primaryColor);\n border: 1px solid var(--primaryColor);\n text-decoration: none;\n box-shadow: none;\n }\n "}),(function(e){return e.secondary&&"\n fill: var(--primaryColor);\n "}));const To=e.memo(Ao),Io=Ut.div.withConfig({componentId:"sc-113evl7-0"})(["&&&{border-bottom:1px solid var(--borderColorLight);padding:6px 15px;margin:0;display:flex;align-items:center;z-index:30;background:#fff;position:relative;}"]),No=Ut.h1.withConfig({componentId:"sc-z87h2w-0"})(["&&&{font-size:16px;margin:0;}"]);var Fo=["children"];const Ro=function(t){var n=t.children,r=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,Fo);return e.createElement(No,r,n)};var Mo=wp.i18n.__;const Do=function(){var t=(0,e.useContext)(vn),n=(t.values,t.actions);return e.createElement(Io,null,e.createElement(Ro,{style:{flex:1}},Mo("SEO","wp-seopress")),e.createElement(To,{style:{color:"var(--colorDark)"},onClick:function(){return n.setOpenBar(!1)}},e.createElement("svg",{width:"24",height:"24",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",role:"img","aria-hidden":"true",focusable:"false"},e.createElement("path",{d:"M12 13.06l3.712 3.713 1.061-1.06L13.061 12l3.712-3.712-1.06-1.06L12 10.938 8.288 7.227l-1.061 1.06L10.939 12l-3.712 3.712 1.06 1.061L12 13.061z"}))))};var zo=o(9590),Uo=o.n(zo),Vo=function(e){return function(e){return!!e&&"object"==typeof e}(e)&&!function(e){var t=Object.prototype.toString.call(e);return"[object RegExp]"===t||"[object Date]"===t||function(e){return e.$$typeof===Go}(e)}(e)},Go="function"==typeof Symbol&&Symbol.for?Symbol.for("react.element"):60103;function Bo(e,t){return!1!==t.clone&&t.isMergeableObject(e)?Ho((n=e,Array.isArray(n)?[]:{}),e,t):e;var n}function Wo(e,t,n){return e.concat(t).map((function(e){return Bo(e,n)}))}function Ho(e,t,n){(n=n||{}).arrayMerge=n.arrayMerge||Wo,n.isMergeableObject=n.isMergeableObject||Vo;var r=Array.isArray(t);return r===Array.isArray(e)?r?n.arrayMerge(e,t,n):function(e,t,n){var r={};return n.isMergeableObject(e)&&Object.keys(e).forEach((function(t){r[t]=Bo(e[t],n)})),Object.keys(t).forEach((function(o){n.isMergeableObject(t[o])&&e[o]?r[o]=Ho(e[o],t[o],n):r[o]=Bo(t[o],n)})),r}(e,t,n):Bo(t,n)}Ho.all=function(e,t){if(!Array.isArray(e))throw new Error("first argument should be an array");return e.reduce((function(e,n){return Ho(e,n,t)}),{})};const $o=Ho,Yo=function(e,t){return function(n){return e(t(n))}},qo=Yo(Object.getPrototypeOf,Object);var Qo=Function.prototype,Xo=Object.prototype,Ko=Qo.toString,Jo=Xo.hasOwnProperty,Zo=Ko.call(Object);const ei=function(e){if(!er(e)||"[object Object]"!=Zn(e))return!1;var t=qo(e);if(null===t)return!0;var n=Jo.call(t,"constructor")&&t.constructor;return"function"==typeof n&&n instanceof n&&Ko.call(n)==Zo};function ti(e){var t=this.__data__=new Lr(e);this.size=t.size}ti.prototype.clear=function(){this.__data__=new Lr,this.size=0},ti.prototype.delete=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n},ti.prototype.get=function(e){return this.__data__.get(e)},ti.prototype.has=function(e){return this.__data__.has(e)},ti.prototype.set=function(e,t){var n=this.__data__;if(n instanceof Lr){var r=n.__data__;if(!Cr||r.length<199)return r.push([e,t]),this.size=++n.size,this;n=this.__data__=new Tr(r)}return n.set(e,t),this.size=n.size,this};const ni=ti,ri=function(){try{var e=gr(Object,"defineProperty");return e({},"",{}),e}catch(e){}}(),oi=function(e,t,n){"__proto__"==t&&ri?ri(e,t,{configurable:!0,enumerable:!0,value:n,writable:!0}):e[t]=n};var ii=Object.prototype.hasOwnProperty;const ai=function(e,t,n){var r=e[t];ii.call(e,t)&&_r(r,n)&&(void 0!==n||t in e)||oi(e,t,n)},si=function(e,t,n,r){var o=!n;n||(n={});for(var i=-1,a=t.length;++i<a;){var s=t[i],l=r?r(n[s],e[s],s,n,e):void 0;void 0===l&&(l=e[s]),o?oi(n,s,l):ai(n,s,l)}return n};var li="object"==typeof exports&&exports&&!exports.nodeType&&exports,ui=li&&"object"==typeof module&&module&&!module.nodeType&&module,ci=ui&&ui.exports===li?Hn.Buffer:void 0;const fi=(ci?ci.isBuffer:void 0)||function(){return!1};var pi={};pi["[object Float32Array]"]=pi["[object Float64Array]"]=pi["[object Int8Array]"]=pi["[object Int16Array]"]=pi["[object Int32Array]"]=pi["[object Uint8Array]"]=pi["[object Uint8ClampedArray]"]=pi["[object Uint16Array]"]=pi["[object Uint32Array]"]=!0,pi["[object Arguments]"]=pi["[object Array]"]=pi["[object ArrayBuffer]"]=pi["[object Boolean]"]=pi["[object DataView]"]=pi["[object Date]"]=pi["[object Error]"]=pi["[object Function]"]=pi["[object Map]"]=pi["[object Number]"]=pi["[object Object]"]=pi["[object RegExp]"]=pi["[object Set]"]=pi["[object String]"]=pi["[object WeakMap]"]=!1;const di=function(e){return function(t){return e(t)}};var hi="object"==typeof exports&&exports&&!exports.nodeType&&exports,mi=hi&&"object"==typeof module&&module&&!module.nodeType&&module,vi=mi&&mi.exports===hi&&Bn.process;const yi=function(){try{return mi&&mi.require&&mi.require("util").types||vi&&vi.binding&&vi.binding("util")}catch(e){}}();var gi=yi&&yi.isTypedArray;const bi=gi?di(gi):function(e){return er(e)&&Jr(e.length)&&!!pi[Zn(e)]};var wi=Object.prototype.hasOwnProperty;const xi=function(e,t){var n=Gn(e),r=!n&&Qr(e),o=!n&&!r&&fi(e),i=!n&&!r&&!o&&bi(e),a=n||r||o||i,s=a?function(e,t){for(var n=-1,r=Array(e);++n<e;)r[n]=t(n);return r}(e.length,String):[],l=s.length;for(var u in e)!t&&!wi.call(e,u)||a&&("length"==u||o&&("offset"==u||"parent"==u)||i&&("buffer"==u||"byteLength"==u||"byteOffset"==u)||Kr(u,l))||s.push(u);return s};var Ei=Object.prototype;const Si=function(e){var t=e&&e.constructor;return e===("function"==typeof t&&t.prototype||Ei)},_i=Yo(Object.keys,Object);var ki=Object.prototype.hasOwnProperty;const Oi=function(e){if(!Si(e))return _i(e);var t=[];for(var n in Object(e))ki.call(e,n)&&"constructor"!=n&&t.push(n);return t},ji=function(e){return null!=e&&Jr(e.length)&&!ir(e)},Li=function(e){return ji(e)?xi(e):Oi(e)};var Ci=Object.prototype.hasOwnProperty;const Pi=function(e){if(!or(e))return function(e){var t=[];if(null!=e)for(var n in Object(e))t.push(n);return t}(e);var t=Si(e),n=[];for(var r in e)("constructor"!=r||!t&&Ci.call(e,r))&&n.push(r);return n},Ai=function(e){return ji(e)?xi(e,!0):Pi(e)};var Ti="object"==typeof exports&&exports&&!exports.nodeType&&exports,Ii=Ti&&"object"==typeof module&&module&&!module.nodeType&&module,Ni=Ii&&Ii.exports===Ti?Hn.Buffer:void 0,Fi=Ni?Ni.allocUnsafe:void 0;const Ri=function(e,t){var n=-1,r=e.length;for(t||(t=Array(r));++n<r;)t[n]=e[n];return t},Mi=function(){return[]};var Di=Object.prototype.propertyIsEnumerable,zi=Object.getOwnPropertySymbols;const Ui=zi?function(e){return null==e?[]:(e=Object(e),function(e,t){for(var n=-1,r=null==e?0:e.length,o=0,i=[];++n<r;){var a=e[n];t(a,n,e)&&(i[o++]=a)}return i}(zi(e),(function(t){return Di.call(e,t)})))}:Mi,Vi=function(e,t){for(var n=-1,r=t.length,o=e.length;++n<r;)e[o+n]=t[n];return e},Gi=Object.getOwnPropertySymbols?function(e){for(var t=[];e;)Vi(t,Ui(e)),e=qo(e);return t}:Mi,Bi=function(e,t,n){var r=t(e);return Gn(e)?r:Vi(r,n(e))},Wi=function(e){return Bi(e,Li,Ui)},Hi=function(e){return Bi(e,Ai,Gi)},$i=gr(Hn,"DataView"),Yi=gr(Hn,"Promise"),qi=gr(Hn,"Set"),Qi=gr(Hn,"WeakMap");var Xi="[object Map]",Ki="[object Promise]",Ji="[object Set]",Zi="[object WeakMap]",ea="[object DataView]",ta=cr($i),na=cr(Cr),ra=cr(Yi),oa=cr(qi),ia=cr(Qi),aa=Zn;($i&&aa(new $i(new ArrayBuffer(1)))!=ea||Cr&&aa(new Cr)!=Xi||Yi&&aa(Yi.resolve())!=Ki||qi&&aa(new qi)!=Ji||Qi&&aa(new Qi)!=Zi)&&(aa=function(e){var t=Zn(e),n="[object Object]"==t?e.constructor:void 0,r=n?cr(n):"";if(r)switch(r){case ta:return ea;case na:return Xi;case ra:return Ki;case oa:return Ji;case ia:return Zi}return t});const sa=aa;var la=Object.prototype.hasOwnProperty;const ua=Hn.Uint8Array,ca=function(e){var t=new e.constructor(e.byteLength);return new ua(t).set(new ua(e)),t};var fa=/\w*$/;var pa=$n?$n.prototype:void 0,da=pa?pa.valueOf:void 0;const ha=function(e,t,n){var r,o,i,a=e.constructor;switch(t){case"[object ArrayBuffer]":return ca(e);case"[object Boolean]":case"[object Date]":return new a(+e);case"[object DataView]":return function(e,t){var n=t?ca(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.byteLength)}(e,n);case"[object Float32Array]":case"[object Float64Array]":case"[object Int8Array]":case"[object Int16Array]":case"[object Int32Array]":case"[object Uint8Array]":case"[object Uint8ClampedArray]":case"[object Uint16Array]":case"[object Uint32Array]":return function(e,t){var n=t?ca(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.length)}(e,n);case"[object Map]":case"[object Set]":return new a;case"[object Number]":case"[object String]":return new a(e);case"[object RegExp]":return(i=new(o=e).constructor(o.source,fa.exec(o))).lastIndex=o.lastIndex,i;case"[object Symbol]":return r=e,da?Object(da.call(r)):{}}};var ma=Object.create;const va=function(){function e(){}return function(t){if(!or(t))return{};if(ma)return ma(t);e.prototype=t;var n=new e;return e.prototype=void 0,n}}();var ya=yi&&yi.isMap;const ga=ya?di(ya):function(e){return er(e)&&"[object Map]"==sa(e)};var ba=yi&&yi.isSet;const wa=ba?di(ba):function(e){return er(e)&&"[object Set]"==sa(e)};var xa="[object Arguments]",Ea="[object Function]",Sa={};Sa[xa]=Sa["[object Array]"]=Sa["[object ArrayBuffer]"]=Sa["[object DataView]"]=Sa["[object Boolean]"]=Sa["[object Date]"]=Sa["[object Float32Array]"]=Sa["[object Float64Array]"]=Sa["[object Int8Array]"]=Sa["[object Int16Array]"]=Sa["[object Int32Array]"]=Sa["[object Map]"]=Sa["[object Number]"]=Sa["[object Object]"]=Sa["[object RegExp]"]=Sa["[object Set]"]=Sa["[object String]"]=Sa["[object Symbol]"]=Sa["[object Uint8Array]"]=Sa["[object Uint8ClampedArray]"]=Sa["[object Uint16Array]"]=Sa["[object Uint32Array]"]=!0,Sa["[object Error]"]=Sa[Ea]=Sa["[object WeakMap]"]=!1;const _a=function e(t,n,r,o,i,a){var s,l=1&n,u=2&n,c=4&n;if(r&&(s=i?r(t,o,i,a):r(t)),void 0!==s)return s;if(!or(t))return t;var f=Gn(t);if(f){if(s=function(e){var t=e.length,n=new e.constructor(t);return t&&"string"==typeof e[0]&&la.call(e,"index")&&(n.index=e.index,n.input=e.input),n}(t),!l)return Ri(t,s)}else{var p=sa(t),d=p==Ea||"[object GeneratorFunction]"==p;if(fi(t))return function(e,t){if(t)return e.slice();var n=e.length,r=Fi?Fi(n):new e.constructor(n);return e.copy(r),r}(t,l);if("[object Object]"==p||p==xa||d&&!i){if(s=u||d?{}:function(e){return"function"!=typeof e.constructor||Si(e)?{}:va(qo(e))}(t),!l)return u?function(e,t){return si(e,Gi(e),t)}(t,function(e,t){return e&&si(t,Ai(t),e)}(s,t)):function(e,t){return si(e,Ui(e),t)}(t,function(e,t){return e&&si(t,Li(t),e)}(s,t))}else{if(!Sa[p])return i?t:{};s=ha(t,p,l)}}a||(a=new ni);var h=a.get(t);if(h)return h;a.set(t,s),wa(t)?t.forEach((function(o){s.add(e(o,n,r,o,t,a))})):ga(t)&&t.forEach((function(o,i){s.set(i,e(o,n,r,i,t,a))}));var m=f?void 0:(c?u?Hi:Wi:u?Ai:Li)(t);return function(e,t){for(var n=-1,r=null==e?0:e.length;++n<r&&!1!==t(e[n],n,e););}(m||t,(function(o,i){m&&(o=t[i=o]),ai(s,i,e(o,n,r,i,t,a))})),s},ka=function(e){return _a(e,4)},Oa=function(e){return Gn(e)?zr(e,Zr):tr(e)?[e]:Ri(Dr(Br(e)))},ja=function(e){return _a(e,5)};function La(){return La=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},La.apply(this,arguments)}function Ca(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}function Pa(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}var Aa=function(e){return Array.isArray(e)&&0===e.length},Ta=function(e){return"function"==typeof e},Ia=function(e){return null!==e&&"object"==typeof e},Na=function(e){return String(Math.floor(Number(e)))===e},Fa=function(e){return"[object String]"===Object.prototype.toString.call(e)},Ra=function(t){return 0===e.Children.count(t)},Ma=function(e){return Ia(e)&&Ta(e.then)};function Da(e,t,n,r){void 0===r&&(r=0);for(var o=Oa(t);e&&r<o.length;)e=e[o[r++]];return void 0===e?n:e}function za(e,t,n){for(var r=ka(e),o=r,i=0,a=Oa(t);i<a.length-1;i++){var s=a[i],l=Da(e,a.slice(0,i+1));if(l&&(Ia(l)||Array.isArray(l)))o=o[s]=ka(l);else{var u=a[i+1];o=o[s]=Na(u)&&Number(u)>=0?[]:{}}}return(0===i?e:o)[a[i]]===n?e:(void 0===n?delete o[a[i]]:o[a[i]]=n,0===i&&void 0===n&&delete r[a[i]],r)}function Ua(e,t,n,r){void 0===n&&(n=new WeakMap),void 0===r&&(r={});for(var o=0,i=Object.keys(e);o<i.length;o++){var a=i[o],s=e[a];Ia(s)?n.get(s)||(n.set(s,!0),r[a]=Array.isArray(s)?[]:{},Ua(s,t,n,r[a])):r[a]=t}return r}var Va=(0,e.createContext)(void 0);Va.displayName="FormikContext";var Ga=Va.Provider,Ba=Va.Consumer;function Wa(){var t=(0,e.useContext)(Va);return t}function Ha(e,t){switch(t.type){case"SET_VALUES":return La({},e,{values:t.payload});case"SET_TOUCHED":return La({},e,{touched:t.payload});case"SET_ERRORS":return Uo()(e.errors,t.payload)?e:La({},e,{errors:t.payload});case"SET_STATUS":return La({},e,{status:t.payload});case"SET_ISSUBMITTING":return La({},e,{isSubmitting:t.payload});case"SET_ISVALIDATING":return La({},e,{isValidating:t.payload});case"SET_FIELD_VALUE":return La({},e,{values:za(e.values,t.payload.field,t.payload.value)});case"SET_FIELD_TOUCHED":return La({},e,{touched:za(e.touched,t.payload.field,t.payload.value)});case"SET_FIELD_ERROR":return La({},e,{errors:za(e.errors,t.payload.field,t.payload.value)});case"RESET_FORM":return La({},e,t.payload);case"SET_FORMIK_STATE":return t.payload(e);case"SUBMIT_ATTEMPT":return La({},e,{touched:Ua(e.values,!0),isSubmitting:!0,submitCount:e.submitCount+1});case"SUBMIT_FAILURE":case"SUBMIT_SUCCESS":return La({},e,{isSubmitting:!1});default:return e}}var $a={},Ya={};function qa(t){var n=t.validateOnChange,r=void 0===n||n,o=t.validateOnBlur,i=void 0===o||o,a=t.validateOnMount,s=void 0!==a&&a,l=t.isInitialValid,u=t.enableReinitialize,c=void 0!==u&&u,f=t.onSubmit,p=Ca(t,["validateOnChange","validateOnBlur","validateOnMount","isInitialValid","enableReinitialize","onSubmit"]),d=La({validateOnChange:r,validateOnBlur:i,validateOnMount:s,onSubmit:f},p),h=(0,e.useRef)(d.initialValues),m=(0,e.useRef)(d.initialErrors||$a),v=(0,e.useRef)(d.initialTouched||Ya),y=(0,e.useRef)(d.initialStatus),g=(0,e.useRef)(!1),b=(0,e.useRef)({});(0,e.useEffect)((function(){return g.current=!0,function(){g.current=!1}}),[]);var w=(0,e.useReducer)(Ha,{values:d.initialValues,errors:d.initialErrors||$a,touched:d.initialTouched||Ya,status:d.initialStatus,isSubmitting:!1,isValidating:!1,submitCount:0}),x=w[0],E=w[1],S=(0,e.useCallback)((function(e,t){return new Promise((function(n,r){var o=d.validate(e,t);null==o?n($a):Ma(o)?o.then((function(e){n(e||$a)}),(function(e){r(e)})):n(o)}))}),[d.validate]),_=(0,e.useCallback)((function(e,t){var n=d.validationSchema,r=Ta(n)?n(t):n,o=t&&r.validateAt?r.validateAt(t,e):function(e,t,n,r){void 0===n&&(n=!1),void 0===r&&(r={});var o=Xa(e);return t[n?"validateSync":"validate"](o,{abortEarly:!1,context:r})}(e,r);return new Promise((function(e,t){o.then((function(){e($a)}),(function(n){"ValidationError"===n.name?e(function(e){var t={};if(e.inner){if(0===e.inner.length)return za(t,e.path,e.message);var n=e.inner,r=Array.isArray(n),o=0;for(n=r?n:n[Symbol.iterator]();;){var i;if(r){if(o>=n.length)break;i=n[o++]}else{if((o=n.next()).done)break;i=o.value}var a=i;Da(t,a.path)||(t=za(t,a.path,a.message))}}return t}(n)):t(n)}))}))}),[d.validationSchema]),k=(0,e.useCallback)((function(e,t){return new Promise((function(n){return n(b.current[e].validate(t))}))}),[]),O=(0,e.useCallback)((function(e){var t=Object.keys(b.current).filter((function(e){return Ta(b.current[e].validate)})),n=t.length>0?t.map((function(t){return k(t,Da(e,t))})):[Promise.resolve("DO_NOT_DELETE_YOU_WILL_BE_FIRED")];return Promise.all(n).then((function(e){return e.reduce((function(e,n,r){return"DO_NOT_DELETE_YOU_WILL_BE_FIRED"===n||n&&(e=za(e,t[r],n)),e}),{})}))}),[k]),j=(0,e.useCallback)((function(e){return Promise.all([O(e),d.validationSchema?_(e):{},d.validate?S(e):{}]).then((function(e){var t=e[0],n=e[1],r=e[2];return $o.all([t,n,r],{arrayMerge:Ka})}))}),[d.validate,d.validationSchema,O,S,_]),L=Za((function(e){return void 0===e&&(e=x.values),E({type:"SET_ISVALIDATING",payload:!0}),j(e).then((function(e){return g.current&&(E({type:"SET_ISVALIDATING",payload:!1}),E({type:"SET_ERRORS",payload:e})),e}))}));(0,e.useEffect)((function(){s&&!0===g.current&&Uo()(h.current,d.initialValues)&&L(h.current)}),[s,L]);var C=(0,e.useCallback)((function(e){var t=e&&e.values?e.values:h.current,n=e&&e.errors?e.errors:m.current?m.current:d.initialErrors||{},r=e&&e.touched?e.touched:v.current?v.current:d.initialTouched||{},o=e&&e.status?e.status:y.current?y.current:d.initialStatus;h.current=t,m.current=n,v.current=r,y.current=o;var i=function(){E({type:"RESET_FORM",payload:{isSubmitting:!!e&&!!e.isSubmitting,errors:n,touched:r,status:o,values:t,isValidating:!!e&&!!e.isValidating,submitCount:e&&e.submitCount&&"number"==typeof e.submitCount?e.submitCount:0}})};if(d.onReset){var a=d.onReset(x.values,q);Ma(a)?a.then(i):i()}else i()}),[d.initialErrors,d.initialStatus,d.initialTouched]);(0,e.useEffect)((function(){!0!==g.current||Uo()(h.current,d.initialValues)||(c&&(h.current=d.initialValues,C()),s&&L(h.current))}),[c,d.initialValues,C,s,L]),(0,e.useEffect)((function(){c&&!0===g.current&&!Uo()(m.current,d.initialErrors)&&(m.current=d.initialErrors||$a,E({type:"SET_ERRORS",payload:d.initialErrors||$a}))}),[c,d.initialErrors]),(0,e.useEffect)((function(){c&&!0===g.current&&!Uo()(v.current,d.initialTouched)&&(v.current=d.initialTouched||Ya,E({type:"SET_TOUCHED",payload:d.initialTouched||Ya}))}),[c,d.initialTouched]),(0,e.useEffect)((function(){c&&!0===g.current&&!Uo()(y.current,d.initialStatus)&&(y.current=d.initialStatus,E({type:"SET_STATUS",payload:d.initialStatus}))}),[c,d.initialStatus,d.initialTouched]);var P=Za((function(e){if(b.current[e]&&Ta(b.current[e].validate)){var t=Da(x.values,e),n=b.current[e].validate(t);return Ma(n)?(E({type:"SET_ISVALIDATING",payload:!0}),n.then((function(e){return e})).then((function(t){E({type:"SET_FIELD_ERROR",payload:{field:e,value:t}}),E({type:"SET_ISVALIDATING",payload:!1})}))):(E({type:"SET_FIELD_ERROR",payload:{field:e,value:n}}),Promise.resolve(n))}return d.validationSchema?(E({type:"SET_ISVALIDATING",payload:!0}),_(x.values,e).then((function(e){return e})).then((function(t){E({type:"SET_FIELD_ERROR",payload:{field:e,value:t[e]}}),E({type:"SET_ISVALIDATING",payload:!1})}))):Promise.resolve()})),A=(0,e.useCallback)((function(e,t){var n=t.validate;b.current[e]={validate:n}}),[]),T=(0,e.useCallback)((function(e){delete b.current[e]}),[]),I=Za((function(e,t){return E({type:"SET_TOUCHED",payload:e}),(void 0===t?i:t)?L(x.values):Promise.resolve()})),N=(0,e.useCallback)((function(e){E({type:"SET_ERRORS",payload:e})}),[]),F=Za((function(e,t){var n=Ta(e)?e(x.values):e;return E({type:"SET_VALUES",payload:n}),(void 0===t?r:t)?L(n):Promise.resolve()})),R=(0,e.useCallback)((function(e,t){E({type:"SET_FIELD_ERROR",payload:{field:e,value:t}})}),[]),M=Za((function(e,t,n){return E({type:"SET_FIELD_VALUE",payload:{field:e,value:t}}),(void 0===n?r:n)?L(za(x.values,e,t)):Promise.resolve()})),D=(0,e.useCallback)((function(e,t){var n,r=t,o=e;if(!Fa(e)){e.persist&&e.persist();var i=e.target?e.target:e.currentTarget,a=i.type,s=i.name,l=i.id,u=i.value,c=i.checked,f=(i.outerHTML,i.options),p=i.multiple;r=t||s||l,o=/number|range/.test(a)?(n=parseFloat(u),isNaN(n)?"":n):/checkbox/.test(a)?function(e,t,n){if("boolean"==typeof e)return Boolean(t);var r=[],o=!1,i=-1;if(Array.isArray(e))r=e,o=(i=e.indexOf(n))>=0;else if(!n||"true"==n||"false"==n)return Boolean(t);return t&&n&&!o?r.concat(n):o?r.slice(0,i).concat(r.slice(i+1)):r}(Da(x.values,r),c,u):f&&p?function(e){return Array.from(e).filter((function(e){return e.selected})).map((function(e){return e.value}))}(f):u}r&&M(r,o)}),[M,x.values]),z=Za((function(e){if(Fa(e))return function(t){return D(t,e)};D(e)})),U=Za((function(e,t,n){return void 0===t&&(t=!0),E({type:"SET_FIELD_TOUCHED",payload:{field:e,value:t}}),(void 0===n?i:n)?L(x.values):Promise.resolve()})),V=(0,e.useCallback)((function(e,t){e.persist&&e.persist();var n=e.target,r=n.name,o=n.id,i=(n.outerHTML,t||r||o);U(i,!0)}),[U]),G=Za((function(e){if(Fa(e))return function(t){return V(t,e)};V(e)})),B=(0,e.useCallback)((function(e){Ta(e)?E({type:"SET_FORMIK_STATE",payload:e}):E({type:"SET_FORMIK_STATE",payload:function(){return e}})}),[]),W=(0,e.useCallback)((function(e){E({type:"SET_STATUS",payload:e})}),[]),H=(0,e.useCallback)((function(e){E({type:"SET_ISSUBMITTING",payload:e})}),[]),$=Za((function(){return E({type:"SUBMIT_ATTEMPT"}),L().then((function(e){var t=e instanceof Error;if(!t&&0===Object.keys(e).length){var n;try{if(void 0===(n=Q()))return}catch(e){throw e}return Promise.resolve(n).then((function(e){return g.current&&E({type:"SUBMIT_SUCCESS"}),e})).catch((function(e){if(g.current)throw E({type:"SUBMIT_FAILURE"}),e}))}if(g.current&&(E({type:"SUBMIT_FAILURE"}),t))throw e}))})),Y=Za((function(e){e&&e.preventDefault&&Ta(e.preventDefault)&&e.preventDefault(),e&&e.stopPropagation&&Ta(e.stopPropagation)&&e.stopPropagation(),$().catch((function(e){console.warn("Warning: An unhandled error was caught from submitForm()",e)}))})),q={resetForm:C,validateForm:L,validateField:P,setErrors:N,setFieldError:R,setFieldTouched:U,setFieldValue:M,setStatus:W,setSubmitting:H,setTouched:I,setValues:F,setFormikState:B,submitForm:$},Q=Za((function(){return f(x.values,q)})),X=Za((function(e){e&&e.preventDefault&&Ta(e.preventDefault)&&e.preventDefault(),e&&e.stopPropagation&&Ta(e.stopPropagation)&&e.stopPropagation(),C()})),K=(0,e.useCallback)((function(e){return{value:Da(x.values,e),error:Da(x.errors,e),touched:!!Da(x.touched,e),initialValue:Da(h.current,e),initialTouched:!!Da(v.current,e),initialError:Da(m.current,e)}}),[x.errors,x.touched,x.values]),J=(0,e.useCallback)((function(e){return{setValue:function(t,n){return M(e,t,n)},setTouched:function(t,n){return U(e,t,n)},setError:function(t){return R(e,t)}}}),[M,U,R]),Z=(0,e.useCallback)((function(e){var t=Ia(e),n=t?e.name:e,r=Da(x.values,n),o={name:n,value:r,onChange:z,onBlur:G};if(t){var i=e.type,a=e.value,s=e.as,l=e.multiple;"checkbox"===i?void 0===a?o.checked=!!r:(o.checked=!(!Array.isArray(r)||!~r.indexOf(a)),o.value=a):"radio"===i?(o.checked=r===a,o.value=a):"select"===s&&l&&(o.value=o.value||[],o.multiple=!0)}return o}),[G,z,x.values]),ee=(0,e.useMemo)((function(){return!Uo()(h.current,x.values)}),[h.current,x.values]),te=(0,e.useMemo)((function(){return void 0!==l?ee?x.errors&&0===Object.keys(x.errors).length:!1!==l&&Ta(l)?l(d):l:x.errors&&0===Object.keys(x.errors).length}),[l,ee,x.errors,d]);return La({},x,{initialValues:h.current,initialErrors:m.current,initialTouched:v.current,initialStatus:y.current,handleBlur:G,handleChange:z,handleReset:X,handleSubmit:Y,resetForm:C,setErrors:N,setFormikState:B,setFieldTouched:U,setFieldValue:M,setFieldError:R,setStatus:W,setSubmitting:H,setTouched:I,setValues:F,submitForm:$,validateForm:L,validateField:P,isValid:te,dirty:ee,unregisterField:T,registerField:A,getFieldProps:Z,getFieldMeta:K,getFieldHelpers:J,validateOnBlur:i,validateOnChange:r,validateOnMount:s})}function Qa(t){var n=qa(t),r=t.component,o=t.children,i=t.render,a=t.innerRef;return(0,e.useImperativeHandle)(a,(function(){return n})),(0,e.createElement)(Ga,{value:n},r?(0,e.createElement)(r,n):i?i(n):o?Ta(o)?o(n):Ra(o)?null:e.Children.only(o):null)}function Xa(e){var t=Array.isArray(e)?[]:{};for(var n in e)if(Object.prototype.hasOwnProperty.call(e,n)){var r=String(n);!0===Array.isArray(e[r])?t[r]=e[r].map((function(e){return!0===Array.isArray(e)||ei(e)?Xa(e):""!==e?e:void 0})):ei(e[r])?t[r]=Xa(e[r]):t[r]=""!==e[r]?e[r]:void 0}return t}function Ka(e,t,n){var r=e.slice();return t.forEach((function(t,o){if(void 0===r[o]){var i=!1!==n.clone&&n.isMergeableObject(t);r[o]=i?$o(Array.isArray(t)?[]:{},t,n):t}else n.isMergeableObject(t)?r[o]=$o(e[o],t,n):-1===e.indexOf(t)&&r.push(t)})),r}var Ja="undefined"!=typeof window&&void 0!==window.document&&void 0!==window.document.createElement?e.useLayoutEffect:e.useEffect;function Za(t){var n=(0,e.useRef)(t);return Ja((function(){n.current=t})),(0,e.useCallback)((function(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return n.current.apply(void 0,t)}),[])}function es(t){var n=t.validate,r=t.name,o=t.render,i=t.children,a=t.as,s=t.component,l=Ca(t,["validate","name","render","children","as","component"]),u=Ca(Wa(),["validate","validationSchema"]),c=u.registerField,f=u.unregisterField;(0,e.useEffect)((function(){return c(r,{validate:n}),function(){f(r)}}),[c,f,r,n]);var p=u.getFieldProps(La({name:r},l)),d=u.getFieldMeta(r),h={field:p,form:u};if(o)return o(La({},h,{meta:d}));if(Ta(i))return i(La({},h,{meta:d}));if(s){if("string"==typeof s){var m=l.innerRef,v=Ca(l,["innerRef"]);return(0,e.createElement)(s,La({ref:m},p,v),i)}return(0,e.createElement)(s,La({field:p,form:u},l),i)}var y=a||"input";if("string"==typeof y){var g=l.innerRef,b=Ca(l,["innerRef"]);return(0,e.createElement)(y,La({ref:g},p,b),i)}return(0,e.createElement)(y,La({},p,l),i)}var ts=(0,e.forwardRef)((function(t,n){var r=t.action,o=Ca(t,["action"]),i=null!=r?r:"#",a=Wa(),s=a.handleReset,l=a.handleSubmit;return(0,e.createElement)("form",Object.assign({onSubmit:l,ref:n,onReset:s,action:i},o))}));function ns(t){var n=function(n){return(0,e.createElement)(Ba,null,(function(r){return(0,e.createElement)(t,Object.assign({},n,{formik:r}))}))},r=t.displayName||t.name||t.constructor&&t.constructor.name||"Component";return n.WrappedComponent=t,n.displayName="FormikConnect("+r+")",ye()(n,t)}ts.displayName="Form";var rs=function(e,t,n){var r=os(e);return r.splice(t,0,n),r},os=function(e){if(e){if(Array.isArray(e))return[].concat(e);var t=Object.keys(e).map((function(e){return parseInt(e)})).reduce((function(e,t){return t>e?t:e}),0);return Array.from(La({},e,{length:t+1}))}return[]},is=function(t){function n(e){var n;return(n=t.call(this,e)||this).updateArrayField=function(e,t,r){var o=n.props,i=o.name;(0,o.formik.setFormikState)((function(n){var o="function"==typeof r?r:e,a="function"==typeof t?t:e,s=za(n.values,i,e(Da(n.values,i))),l=r?o(Da(n.errors,i)):void 0,u=t?a(Da(n.touched,i)):void 0;return Aa(l)&&(l=void 0),Aa(u)&&(u=void 0),La({},n,{values:s,errors:r?za(n.errors,i,l):n.errors,touched:t?za(n.touched,i,u):n.touched})}))},n.push=function(e){return n.updateArrayField((function(t){return[].concat(os(t),[ja(e)])}),!1,!1)},n.handlePush=function(e){return function(){return n.push(e)}},n.swap=function(e,t){return n.updateArrayField((function(n){return function(e,t,n){var r=os(e),o=r[t];return r[t]=r[n],r[n]=o,r}(n,e,t)}),!0,!0)},n.handleSwap=function(e,t){return function(){return n.swap(e,t)}},n.move=function(e,t){return n.updateArrayField((function(n){return function(e,t,n){var r=os(e),o=r[t];return r.splice(t,1),r.splice(n,0,o),r}(n,e,t)}),!0,!0)},n.handleMove=function(e,t){return function(){return n.move(e,t)}},n.insert=function(e,t){return n.updateArrayField((function(n){return rs(n,e,t)}),(function(t){return rs(t,e,null)}),(function(t){return rs(t,e,null)}))},n.handleInsert=function(e,t){return function(){return n.insert(e,t)}},n.replace=function(e,t){return n.updateArrayField((function(n){return function(e,t,n){var r=os(e);return r[t]=n,r}(n,e,t)}),!1,!1)},n.handleReplace=function(e,t){return function(){return n.replace(e,t)}},n.unshift=function(e){var t=-1;return n.updateArrayField((function(n){var r=n?[e].concat(n):[e];return t<0&&(t=r.length),r}),(function(e){var n=e?[null].concat(e):[null];return t<0&&(t=n.length),n}),(function(e){var n=e?[null].concat(e):[null];return t<0&&(t=n.length),n})),t},n.handleUnshift=function(e){return function(){return n.unshift(e)}},n.handleRemove=function(e){return function(){return n.remove(e)}},n.handlePop=function(){return function(){return n.pop()}},n.remove=n.remove.bind(Pa(n)),n.pop=n.pop.bind(Pa(n)),n}var r,o;o=t,(r=n).prototype=Object.create(o.prototype),r.prototype.constructor=r,r.__proto__=o;var i=n.prototype;return i.componentDidUpdate=function(e){this.props.validateOnChange&&this.props.formik.validateOnChange&&!Uo()(Da(e.formik.values,e.name),Da(this.props.formik.values,this.props.name))&&this.props.formik.validateForm(this.props.formik.values)},i.remove=function(e){var t;return this.updateArrayField((function(n){var r=n?os(n):[];return t||(t=r[e]),Ta(r.splice)&&r.splice(e,1),r}),!0,!0),t},i.pop=function(){var e;return this.updateArrayField((function(t){var n=t;return e||(e=n&&n.pop&&n.pop()),n}),!0,!0),e},i.render=function(){var t={push:this.push,pop:this.pop,swap:this.swap,move:this.move,insert:this.insert,replace:this.replace,unshift:this.unshift,remove:this.remove,handlePush:this.handlePush,handlePop:this.handlePop,handleSwap:this.handleSwap,handleMove:this.handleMove,handleInsert:this.handleInsert,handleReplace:this.handleReplace,handleUnshift:this.handleUnshift,handleRemove:this.handleRemove},n=this.props,r=n.component,o=n.render,i=n.children,a=n.name,s=La({},t,{form:Ca(n.formik,["validate","validationSchema"]),name:a});return r?(0,e.createElement)(r,s):o?o(s):i?"function"==typeof i?i(s):Ra(i)?null:e.Children.only(i):null},n}(e.Component);is.defaultProps={validateOnChange:!0};var as=ns(is),ss=(e.Component,e.Component,o(3279)),ls=o.n(ss),us=["className"];function cs(){return cs=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},cs.apply(this,arguments)}const fs=function(t){var n=t.className,r=void 0===n?"":n,o=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,us);return e.createElement("span",cs({className:"dashicons dashicons-no-alt ".concat(r)},o))};var ps=["className","valid","error"];function ds(){return ds=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},ds.apply(this,arguments)}const hs=function(t){var n=t.className,r=(t.valid,t.error,function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,ps));return e.createElement(es,ds({className:n},r))};var ms=Ut.input.withConfig({componentId:"sc-1bv2xq-0"})(["&&&&{width:100%;font-family:var(--fontFamily);padding:6px 8px;margin:0;box-shadow:0 0 0 transparent;transition:box-shadow 0.1s linear;background:none;color:var(--colorP);border-radius:2px;border:1px solid var(--color);font-size:var(--fontSize);line-height:normal;appearance:none;&:focus,&:active{border-color:var(--backgroundPrimary);box-shadow:0 0 0 1px var(--backgroundPrimary);outline:2px solid transparent;}}"]);const vs=Ut(hs).withConfig({componentId:"sc-1bv2xq-1"})(["&&&&{width:100%;font-family:var(--fontFamily);padding:6px 8px;margin:0;box-shadow:0 0 0 transparent;transition:box-shadow 0.1s linear;background:none;color:var(--colorP);border-radius:2px;border:1px solid var(--color);font-size:var(--fontSize);line-height:normal;appearance:none;&:focus,&:active{border-color:var(--backgroundPrimary);box-shadow:0 0 0 1px var(--backgroundPrimary);outline:2px solid transparent;}}"]),ys=Ut.div.withConfig({componentId:"sc-8f3q3f-0"})(["&&&{overflow:hidden;font-size:0.75rem;background-color:#e9ecef;border-radius:0.25rem;}"]),gs=Ut.div.withConfig({componentId:"sc-1jd5cu1-0"})(["&&&{text-align:right;background:#e9ecef;padding:2px 5px;display:flex;font-size:12px;justify-content:flex-end;border-radius:0 0 0.25rem 0.25rem;}"]),bs=function(t){var n=t.children;return e.createElement(ys,null,e.createElement(gs,null,n))};var ws=["name","id","value","type","emptyIcon","setFieldValue","item"];function xs(){return xs=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},xs.apply(this,arguments)}function Es(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Ss=wp.i18n.__;const _s=function(t){var n,r,o=t.name,i=t.id,a=t.value,s=t.type,l=void 0===s?"text":s,u=t.emptyIcon,c=void 0!==u&&u,f=t.setFieldValue,p=t.item,d=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,ws),h=(n=(0,e.useState)(a),r=2,function(e){if(Array.isArray(e))return e}(n)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i=[],a=!0,s=!1;try{for(n=n.call(e);!(a=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);a=!0);}catch(e){s=!0,o=e}finally{try{a||null==n.return||n.return()}finally{if(s)throw o}}return i}}(n,r)||function(e,t){if(e){if("string"==typeof e)return Es(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Es(e,t):void 0}}(n,r)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),m=h[0],v=h[1];(0,e.useEffect)((function(){v(a)}),[a]),(0,e.useEffect)((function(){y(m)}),[m]);var y=(0,e.useCallback)(ls()((function(e){f(o,e)}),200),[]);return c?e.createElement(e.Fragment,null,e.createElement("div",{style:{position:"relative",width:"100%"}},e.createElement(vs,xs({name:o,id:i,type:l,value:m,onChange:function(e){v(e.target.value)},onPaste:function(){"_seopress_social_fb_img"===i&&(f("_seopress_social_fb_img_attachment_id",""),f("_seopress_social_fb_img_width",""),f("_seopress_social_fb_img_height","")),"_seopress_social_twitter_img"===i&&(f("_seopress_social_twitter_img_attachment_id",""),f("_seopress_social_twitter_img_width",""),f("_seopress_social_twitter_img_height",""))},style:{width:"100%"}},d)),!Tn()(a)&&e.createElement(fs,{style:{position:"absolute",right:4,zIndex:10,top:0,transform:"translateY(50%)",marginTop:-5,backgroundColor:"#fff"},className:"sp-cursor-pointer",onClick:function(){Ht()(f)||f(o,"")}})),!Ht()(Z()(p,"recommended_limit",null))&&e.createElement("div",{style:{marginTop:5}},e.createElement(bs,null,e.createElement("span",{style:{color:""}},m.length)," ","/ ",e.createElement("strong",null,p.recommended_limit)," ",e.createElement("span",null," (",Ss("maximum limit","wp-seopress"),")")))):e.createElement(e.Fragment,null,e.createElement(vs,xs({name:o,id:i,type:l,value:m,onChange:function(e){v(e.target.value)}},d)),!Ht()(Z()(p,"recommended_limit",null))&&e.createElement("div",{style:{marginTop:5}},e.createElement(bs,null,e.createElement("span",{style:{color:""}},m.length)," ","/ ",e.createElement("strong",null,p.recommended_limit)," ",e.createElement("span",null," (",Ss("maximum limit","wp-seopress"),")"))))};var ks=o(4184),Os=o.n(ks),js=["name","className","item"];function Ls(){return Ls=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Ls.apply(this,arguments)}var Cs=wp.i18n.__;const Ps=function(t){var n=t.name,r=t.className,o=void 0===r?"":r,i=t.item,a=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,js);return e.createElement(e.Fragment,null,e.createElement(es,Ls({name:n,type:"textarea",as:"textarea",className:Os()(o,"form-textarea")},a)),!Ht()(Z()(i,"recommended_limit",null))&&e.createElement("div",{style:{marginTop:5}},e.createElement(bs,null,e.createElement("span",{style:{color:""}},formValue.length)," ","/ ",e.createElement("strong",null,i.recommended_limit)," ",e.createElement("span",null," (",Cs("maximum limit","wp-seopress"),")"))))};var As=["htmlFor","className","children"];function Ts(){return Ts=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Ts.apply(this,arguments)}var Is=Ut.label.withConfig({componentId:"sc-1yhm0qw-0"})(["&&&{font-weight:bold;display:block;margin-bottom:4px;font-size:1em;}&:hover{cursor:pointer;}"]);const Ns=function(t){var n=t.htmlFor,r=t.className,o=t.children,i=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,As);return e.createElement(Is,Ts({htmlFor:n,className:Os()(r)},i),o)},Fs=function(t){var n=t.color,r=void 0===n?"#fff":n;return t.className,e.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",style:{marginRight:10,animation:"anim-loading 1.2s linear infinite"}},e.createElement("path",{fill:r,fillRule:"evenodd",d:"M11.735 20.996a9 9 0 0 1-5.103-16.22A1 1 0 0 1 7.826 6.38a7 7 0 1 0 8.258-.066 1 1 0 1 1 1.168-1.623A9 9 0 0 1 12 21v-.001z"}))};var Rs=["className","loading","children"];function Ms(){return Ms=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Ms.apply(this,arguments)}const Ds=function(t){var n=t.className,r=void 0===n?"":n,o=t.loading,i=t.children,a=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,Rs);return e.createElement(To,Ms({className:Os()({"inline-flex items-center":!0},r),disabled:o},a),o&&e.createElement(Fs,null),i)};function zs(e){return Array.isArray?Array.isArray(e):"[object Array]"===Hs(e)}function Us(e){return"string"==typeof e}function Vs(e){return"number"==typeof e}function Gs(e){return"object"==typeof e}function Bs(e){return null!=e}function Ws(e){return!e.trim().length}function Hs(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":Object.prototype.toString.call(e)}const $s=Object.prototype.hasOwnProperty;class Ys{constructor(e){this._keys=[],this._keyMap={};let t=0;e.forEach((e=>{let n=qs(e);t+=n.weight,this._keys.push(n),this._keyMap[n.id]=n,t+=n.weight})),this._keys.forEach((e=>{e.weight/=t}))}get(e){return this._keyMap[e]}keys(){return this._keys}toJSON(){return JSON.stringify(this._keys)}}function qs(e){let t=null,n=null,r=null,o=1,i=null;if(Us(e)||zs(e))r=e,t=Qs(e),n=Xs(e);else{if(!$s.call(e,"name"))throw new Error("Missing name property in key");const a=e.name;if(r=a,$s.call(e,"weight")&&(o=e.weight,o<=0))throw new Error((e=>`Property 'weight' in key '${e}' must be a positive integer`)(a));t=Qs(a),n=Xs(a),i=e.getFn}return{path:t,id:n,weight:o,src:r,getFn:i}}function Qs(e){return zs(e)?e:e.split(".")}function Xs(e){return zs(e)?e.join("."):e}var Ks={isCaseSensitive:!1,includeScore:!1,keys:[],shouldSort:!0,sortFn:(e,t)=>e.score===t.score?e.idx<t.idx?-1:1:e.score<t.score?-1:1,includeMatches:!1,findAllMatches:!1,minMatchCharLength:1,location:0,threshold:.6,distance:100,useExtendedSearch:!1,getFn:function(e,t){let n=[],r=!1;const o=(e,t,i)=>{if(Bs(e))if(t[i]){const a=e[t[i]];if(!Bs(a))return;if(i===t.length-1&&(Us(a)||Vs(a)||function(e){return!0===e||!1===e||function(e){return Gs(e)&&null!==e}(e)&&"[object Boolean]"==Hs(e)}(a)))n.push(function(e){return null==e?"":function(e){if("string"==typeof e)return e;let t=e+"";return"0"==t&&1/e==-1/0?"-0":t}(e)}(a));else if(zs(a)){r=!0;for(let e=0,n=a.length;e<n;e+=1)o(a[e],t,i+1)}else t.length&&o(a,t,i+1)}else n.push(e)};return o(e,Us(t)?t.split("."):t,0),r?n:n[0]},ignoreLocation:!1,ignoreFieldNorm:!1,fieldNormWeight:1};const Js=/[^ ]+/g;class Zs{constructor({getFn:e=Ks.getFn,fieldNormWeight:t=Ks.fieldNormWeight}={}){this.norm=function(e=1,t=3){const n=new Map,r=Math.pow(10,t);return{get(t){const o=t.match(Js).length;if(n.has(o))return n.get(o);const i=1/Math.pow(o,.5*e),a=parseFloat(Math.round(i*r)/r);return n.set(o,a),a},clear(){n.clear()}}}(t,3),this.getFn=e,this.isCreated=!1,this.setIndexRecords()}setSources(e=[]){this.docs=e}setIndexRecords(e=[]){this.records=e}setKeys(e=[]){this.keys=e,this._keysMap={},e.forEach(((e,t)=>{this._keysMap[e.id]=t}))}create(){!this.isCreated&&this.docs.length&&(this.isCreated=!0,Us(this.docs[0])?this.docs.forEach(((e,t)=>{this._addString(e,t)})):this.docs.forEach(((e,t)=>{this._addObject(e,t)})),this.norm.clear())}add(e){const t=this.size();Us(e)?this._addString(e,t):this._addObject(e,t)}removeAt(e){this.records.splice(e,1);for(let t=e,n=this.size();t<n;t+=1)this.records[t].i-=1}getValueForItemAtKeyId(e,t){return e[this._keysMap[t]]}size(){return this.records.length}_addString(e,t){if(!Bs(e)||Ws(e))return;let n={v:e,i:t,n:this.norm.get(e)};this.records.push(n)}_addObject(e,t){let n={i:t,$:{}};this.keys.forEach(((t,r)=>{let o=t.getFn?t.getFn(e):this.getFn(e,t.path);if(Bs(o))if(zs(o)){let e=[];const t=[{nestedArrIndex:-1,value:o}];for(;t.length;){const{nestedArrIndex:n,value:r}=t.pop();if(Bs(r))if(Us(r)&&!Ws(r)){let t={v:r,i:n,n:this.norm.get(r)};e.push(t)}else zs(r)&&r.forEach(((e,n)=>{t.push({nestedArrIndex:n,value:e})}))}n.$[r]=e}else if(Us(o)&&!Ws(o)){let e={v:o,n:this.norm.get(o)};n.$[r]=e}})),this.records.push(n)}toJSON(){return{keys:this.keys,records:this.records}}}function el(e,t,{getFn:n=Ks.getFn,fieldNormWeight:r=Ks.fieldNormWeight}={}){const o=new Zs({getFn:n,fieldNormWeight:r});return o.setKeys(e.map(qs)),o.setSources(t),o.create(),o}function tl(e,{errors:t=0,currentLocation:n=0,expectedLocation:r=0,distance:o=Ks.distance,ignoreLocation:i=Ks.ignoreLocation}={}){const a=t/e.length;if(i)return a;const s=Math.abs(r-n);return o?a+s/o:s?1:a}const nl=32;function rl(e){let t={};for(let n=0,r=e.length;n<r;n+=1){const o=e.charAt(n);t[o]=(t[o]||0)|1<<r-n-1}return t}class ol{constructor(e,{location:t=Ks.location,threshold:n=Ks.threshold,distance:r=Ks.distance,includeMatches:o=Ks.includeMatches,findAllMatches:i=Ks.findAllMatches,minMatchCharLength:a=Ks.minMatchCharLength,isCaseSensitive:s=Ks.isCaseSensitive,ignoreLocation:l=Ks.ignoreLocation}={}){if(this.options={location:t,threshold:n,distance:r,includeMatches:o,findAllMatches:i,minMatchCharLength:a,isCaseSensitive:s,ignoreLocation:l},this.pattern=s?e:e.toLowerCase(),this.chunks=[],!this.pattern.length)return;const u=(e,t)=>{this.chunks.push({pattern:e,alphabet:rl(e),startIndex:t})},c=this.pattern.length;if(c>nl){let e=0;const t=c%nl,n=c-t;for(;e<n;)u(this.pattern.substr(e,nl),e),e+=nl;if(t){const e=c-nl;u(this.pattern.substr(e),e)}}else u(this.pattern,0)}searchIn(e){const{isCaseSensitive:t,includeMatches:n}=this.options;if(t||(e=e.toLowerCase()),this.pattern===e){let t={isMatch:!0,score:0};return n&&(t.indices=[[0,e.length-1]]),t}const{location:r,distance:o,threshold:i,findAllMatches:a,minMatchCharLength:s,ignoreLocation:l}=this.options;let u=[],c=0,f=!1;this.chunks.forEach((({pattern:t,alphabet:p,startIndex:d})=>{const{isMatch:h,score:m,indices:v}=function(e,t,n,{location:r=Ks.location,distance:o=Ks.distance,threshold:i=Ks.threshold,findAllMatches:a=Ks.findAllMatches,minMatchCharLength:s=Ks.minMatchCharLength,includeMatches:l=Ks.includeMatches,ignoreLocation:u=Ks.ignoreLocation}={}){if(t.length>nl)throw new Error("Pattern length exceeds max of 32.");const c=t.length,f=e.length,p=Math.max(0,Math.min(r,f));let d=i,h=p;const m=s>1||l,v=m?Array(f):[];let y;for(;(y=e.indexOf(t,h))>-1;){let e=tl(t,{currentLocation:y,expectedLocation:p,distance:o,ignoreLocation:u});if(d=Math.min(e,d),h=y+c,m){let e=0;for(;e<c;)v[y+e]=1,e+=1}}h=-1;let g=[],b=1,w=c+f;const x=1<<c-1;for(let r=0;r<c;r+=1){let i=0,s=w;for(;i<s;)tl(t,{errors:r,currentLocation:p+s,expectedLocation:p,distance:o,ignoreLocation:u})<=d?i=s:w=s,s=Math.floor((w-i)/2+i);w=s;let l=Math.max(1,p-s+1),y=a?f:Math.min(p+s,f)+c,E=Array(y+2);E[y+1]=(1<<r)-1;for(let i=y;i>=l;i-=1){let a=i-1,s=n[e.charAt(a)];if(m&&(v[a]=+!!s),E[i]=(E[i+1]<<1|1)&s,r&&(E[i]|=(g[i+1]|g[i])<<1|1|g[i+1]),E[i]&x&&(b=tl(t,{errors:r,currentLocation:a,expectedLocation:p,distance:o,ignoreLocation:u}),b<=d)){if(d=b,h=a,h<=p)break;l=Math.max(1,2*p-h)}}if(tl(t,{errors:r+1,currentLocation:p,expectedLocation:p,distance:o,ignoreLocation:u})>d)break;g=E}const E={isMatch:h>=0,score:Math.max(.001,b)};if(m){const e=function(e=[],t=Ks.minMatchCharLength){let n=[],r=-1,o=-1,i=0;for(let a=e.length;i<a;i+=1){let a=e[i];a&&-1===r?r=i:a||-1===r||(o=i-1,o-r+1>=t&&n.push([r,o]),r=-1)}return e[i-1]&&i-r>=t&&n.push([r,i-1]),n}(v,s);e.length?l&&(E.indices=e):E.isMatch=!1}return E}(e,t,p,{location:r+d,distance:o,threshold:i,findAllMatches:a,minMatchCharLength:s,includeMatches:n,ignoreLocation:l});h&&(f=!0),c+=m,h&&v&&(u=[...u,...v])}));let p={isMatch:f,score:f?c/this.chunks.length:1};return f&&n&&(p.indices=u),p}}class il{constructor(e){this.pattern=e}static isMultiMatch(e){return al(e,this.multiRegex)}static isSingleMatch(e){return al(e,this.singleRegex)}search(){}}function al(e,t){const n=e.match(t);return n?n[1]:null}class sl extends il{constructor(e,{location:t=Ks.location,threshold:n=Ks.threshold,distance:r=Ks.distance,includeMatches:o=Ks.includeMatches,findAllMatches:i=Ks.findAllMatches,minMatchCharLength:a=Ks.minMatchCharLength,isCaseSensitive:s=Ks.isCaseSensitive,ignoreLocation:l=Ks.ignoreLocation}={}){super(e),this._bitapSearch=new ol(e,{location:t,threshold:n,distance:r,includeMatches:o,findAllMatches:i,minMatchCharLength:a,isCaseSensitive:s,ignoreLocation:l})}static get type(){return"fuzzy"}static get multiRegex(){return/^"(.*)"$/}static get singleRegex(){return/^(.*)$/}search(e){return this._bitapSearch.searchIn(e)}}class ll extends il{constructor(e){super(e)}static get type(){return"include"}static get multiRegex(){return/^'"(.*)"$/}static get singleRegex(){return/^'(.*)$/}search(e){let t,n=0;const r=[],o=this.pattern.length;for(;(t=e.indexOf(this.pattern,n))>-1;)n=t+o,r.push([t,n-1]);const i=!!r.length;return{isMatch:i,score:i?0:1,indices:r}}}const ul=[class extends il{constructor(e){super(e)}static get type(){return"exact"}static get multiRegex(){return/^="(.*)"$/}static get singleRegex(){return/^=(.*)$/}search(e){const t=e===this.pattern;return{isMatch:t,score:t?0:1,indices:[0,this.pattern.length-1]}}},ll,class extends il{constructor(e){super(e)}static get type(){return"prefix-exact"}static get multiRegex(){return/^\^"(.*)"$/}static get singleRegex(){return/^\^(.*)$/}search(e){const t=e.startsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,this.pattern.length-1]}}},class extends il{constructor(e){super(e)}static get type(){return"inverse-prefix-exact"}static get multiRegex(){return/^!\^"(.*)"$/}static get singleRegex(){return/^!\^(.*)$/}search(e){const t=!e.startsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,e.length-1]}}},class extends il{constructor(e){super(e)}static get type(){return"inverse-suffix-exact"}static get multiRegex(){return/^!"(.*)"\$$/}static get singleRegex(){return/^!(.*)\$$/}search(e){const t=!e.endsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,e.length-1]}}},class extends il{constructor(e){super(e)}static get type(){return"suffix-exact"}static get multiRegex(){return/^"(.*)"\$$/}static get singleRegex(){return/^(.*)\$$/}search(e){const t=e.endsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[e.length-this.pattern.length,e.length-1]}}},class extends il{constructor(e){super(e)}static get type(){return"inverse-exact"}static get multiRegex(){return/^!"(.*)"$/}static get singleRegex(){return/^!(.*)$/}search(e){const t=-1===e.indexOf(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,e.length-1]}}},sl],cl=ul.length,fl=/ +(?=(?:[^\"]*\"[^\"]*\")*[^\"]*$)/,pl=new Set([sl.type,ll.type]);const dl=[];function hl(e,t){for(let n=0,r=dl.length;n<r;n+=1){let r=dl[n];if(r.condition(e,t))return new r(e,t)}return new ol(e,t)}const ml="$and",vl=e=>!(!e.$and&&!e.$or),yl=e=>({[ml]:Object.keys(e).map((t=>({[t]:e[t]})))});function gl(e,t,{auto:n=!0}={}){const r=e=>{let o=Object.keys(e);const i=(e=>!!e.$path)(e);if(!i&&o.length>1&&!vl(e))return r(yl(e));if((e=>!zs(e)&&Gs(e)&&!vl(e))(e)){const r=i?e.$path:o[0],a=i?e.$val:e[r];if(!Us(a))throw new Error((e=>`Invalid value for key ${e}`)(r));const s={keyId:Xs(r),pattern:a};return n&&(s.searcher=hl(a,t)),s}let a={children:[],operator:o[0]};return o.forEach((t=>{const n=e[t];zs(n)&&n.forEach((e=>{a.children.push(r(e))}))})),a};return vl(e)||(e=yl(e)),r(e)}function bl(e,t){const n=e.matches;t.matches=[],Bs(n)&&n.forEach((e=>{if(!Bs(e.indices)||!e.indices.length)return;const{indices:n,value:r}=e;let o={indices:n,value:r};e.key&&(o.key=e.key.src),e.idx>-1&&(o.refIndex=e.idx),t.matches.push(o)}))}function wl(e,t){t.score=e.score}class xl{constructor(e,t={},n){this.options={...Ks,...t},this.options.useExtendedSearch,this._keyStore=new Ys(this.options.keys),this.setCollection(e,n)}setCollection(e,t){if(this._docs=e,t&&!(t instanceof Zs))throw new Error("Incorrect 'index' type");this._myIndex=t||el(this.options.keys,this._docs,{getFn:this.options.getFn,fieldNormWeight:this.options.fieldNormWeight})}add(e){Bs(e)&&(this._docs.push(e),this._myIndex.add(e))}remove(e=(()=>!1)){const t=[];for(let n=0,r=this._docs.length;n<r;n+=1){const o=this._docs[n];e(o,n)&&(this.removeAt(n),n-=1,r-=1,t.push(o))}return t}removeAt(e){this._docs.splice(e,1),this._myIndex.removeAt(e)}getIndex(){return this._myIndex}search(e,{limit:t=-1}={}){const{includeMatches:n,includeScore:r,shouldSort:o,sortFn:i,ignoreFieldNorm:a}=this.options;let s=Us(e)?Us(this._docs[0])?this._searchStringList(e):this._searchObjectList(e):this._searchLogical(e);return function(e,{ignoreFieldNorm:t=Ks.ignoreFieldNorm}){e.forEach((e=>{let n=1;e.matches.forEach((({key:e,norm:r,score:o})=>{const i=e?e.weight:null;n*=Math.pow(0===o&&i?Number.EPSILON:o,(i||1)*(t?1:r))})),e.score=n}))}(s,{ignoreFieldNorm:a}),o&&s.sort(i),Vs(t)&&t>-1&&(s=s.slice(0,t)),function(e,t,{includeMatches:n=Ks.includeMatches,includeScore:r=Ks.includeScore}={}){const o=[];return n&&o.push(bl),r&&o.push(wl),e.map((e=>{const{idx:n}=e,r={item:t[n],refIndex:n};return o.length&&o.forEach((t=>{t(e,r)})),r}))}(s,this._docs,{includeMatches:n,includeScore:r})}_searchStringList(e){const t=hl(e,this.options),{records:n}=this._myIndex,r=[];return n.forEach((({v:e,i:n,n:o})=>{if(!Bs(e))return;const{isMatch:i,score:a,indices:s}=t.searchIn(e);i&&r.push({item:e,idx:n,matches:[{score:a,value:e,norm:o,indices:s}]})})),r}_searchLogical(e){const t=gl(e,this.options),n=(e,t,r)=>{if(!e.children){const{keyId:n,searcher:o}=e,i=this._findMatches({key:this._keyStore.get(n),value:this._myIndex.getValueForItemAtKeyId(t,n),searcher:o});return i&&i.length?[{idx:r,item:t,matches:i}]:[]}const o=[];for(let i=0,a=e.children.length;i<a;i+=1){const a=e.children[i],s=n(a,t,r);if(s.length)o.push(...s);else if(e.operator===ml)return[]}return o},r=this._myIndex.records,o={},i=[];return r.forEach((({$:e,i:r})=>{if(Bs(e)){let a=n(t,e,r);a.length&&(o[r]||(o[r]={idx:r,item:e,matches:[]},i.push(o[r])),a.forEach((({matches:e})=>{o[r].matches.push(...e)})))}})),i}_searchObjectList(e){const t=hl(e,this.options),{keys:n,records:r}=this._myIndex,o=[];return r.forEach((({$:e,i:r})=>{if(!Bs(e))return;let i=[];n.forEach(((n,r)=>{i.push(...this._findMatches({key:n,value:e[r],searcher:t}))})),i.length&&o.push({idx:r,item:e,matches:i})})),o}_findMatches({key:e,value:t,searcher:n}){if(!Bs(t))return[];let r=[];if(zs(t))t.forEach((({v:t,i:o,n:i})=>{if(!Bs(t))return;const{isMatch:a,score:s,indices:l}=n.searchIn(t);a&&r.push({score:s,key:e,value:t,idx:o,norm:i,indices:l})}));else{const{v:o,n:i}=t,{isMatch:a,score:s,indices:l}=n.searchIn(o);a&&r.push({score:s,key:e,value:o,norm:i,indices:l})}return r}}xl.version="6.6.2",xl.createIndex=el,xl.parseIndex=function(e,{getFn:t=Ks.getFn,fieldNormWeight:n=Ks.fieldNormWeight}={}){const{keys:r,records:o}=e,i=new Zs({getFn:t,fieldNormWeight:n});return i.setKeys(r),i.setIndexRecords(o),i},xl.config=Ks,xl.parseQuery=gl,function(...e){dl.push(...e)}(class{constructor(e,{isCaseSensitive:t=Ks.isCaseSensitive,includeMatches:n=Ks.includeMatches,minMatchCharLength:r=Ks.minMatchCharLength,ignoreLocation:o=Ks.ignoreLocation,findAllMatches:i=Ks.findAllMatches,location:a=Ks.location,threshold:s=Ks.threshold,distance:l=Ks.distance}={}){this.query=null,this.options={isCaseSensitive:t,includeMatches:n,minMatchCharLength:r,findAllMatches:i,ignoreLocation:o,location:a,threshold:s,distance:l},this.pattern=t?e:e.toLowerCase(),this.query=function(e,t={}){return e.split("|").map((e=>{let n=e.trim().split(fl).filter((e=>e&&!!e.trim())),r=[];for(let e=0,o=n.length;e<o;e+=1){const o=n[e];let i=!1,a=-1;for(;!i&&++a<cl;){const e=ul[a];let n=e.isMultiMatch(o);n&&(r.push(new e(n,t)),i=!0)}if(!i)for(a=-1;++a<cl;){const e=ul[a];let n=e.isSingleMatch(o);if(n){r.push(new e(n,t));break}}}return r}))}(this.pattern,this.options)}static condition(e,t){return t.useExtendedSearch}searchIn(e){const t=this.query;if(!t)return{isMatch:!1,score:1};const{includeMatches:n,isCaseSensitive:r}=this.options;e=r?e:e.toLowerCase();let o=0,i=[],a=0;for(let r=0,s=t.length;r<s;r+=1){const s=t[r];i.length=0,o=0;for(let t=0,r=s.length;t<r;t+=1){const r=s[t],{isMatch:l,indices:u,score:c}=r.search(e);if(!l){a=0,o=0,i.length=0;break}if(o+=1,a+=c,n){const e=r.constructor.type;pl.has(e)?i=[...i,...u]:i.push(u)}}if(o){let e={isMatch:!0,score:a/o};return n&&(e.indices=i),e}}return{isMatch:!1,score:1}}});const El=Ut.ul.withConfig({componentId:"sc-10hnkzk-0"})(["&&&{max-height:200px;border:1px solid var(--borderColorCard);overflow-y:scroll;overflow-x:hidden;width:300px;word-wrap:break-word;position:absolute;background-color:#fff;z-index:999;left:0;top:100%;border-radius:2px;margin:0;margin-top:5px;padding:0;}"]);var Sl=Ut.div.withConfig({componentId:"sc-15df4jl-0"})(["&&&{font-weight:bold;margin-bottom:4px;}"]),_l=Ut.div.withConfig({componentId:"sc-15df4jl-1"})(["&&&{display:inline-block;background:#e9ecef;padding:1px 5px;color:#333;font-family:Menlo,Monaco,Andale Mono,Courier New,monospace;border-radius:3px;font-size:11px;}"]);const kl=Ut.li.withConfig({componentId:"sc-15df4jl-2"})(["&&&{margin:0;padding:6px 10px;border-bottom:1px solid var(--borderColorLight40);list-style:none;&:last-child{border-bottom:none;}&:hover{background-color:var(--backgroundPrimaryHover);cursor:pointer;> div:first-child{color:#fff;}}}"]),Ol=Ut.div.withConfig({componentId:"sc-1m3zn7i-0"})(["&&&&{padding:3px 12px;font-size:10px;user-select:none;margin:0px 5px 10px 0;display:inline-flex;text-transform:uppercase;border:1px solid var(--primaryColor);align-items:center;color:var(--primaryColor);cursor:pointer;font-weight:500;border-radius:4px;transition:all 0.3s linear;&:hover{cursor:pointer;background-color:var(--primaryColor);color:#fff;}}"]),jl=function(t,n){(0,e.useEffect)((function(){var e=function(e){t.current&&!t.current.contains(e.target)&&n(e)};return document.addEventListener("mousedown",e),document.addEventListener("touchstart",e),function(){document.removeEventListener("mousedown",e),document.removeEventListener("touchstart",e)}}),[t,n])};function Ll(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i=[],a=!0,s=!1;try{for(n=n.call(e);!(a=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);a=!0);}catch(e){s=!0,o=e}finally{try{a||null==n.return||n.return()}finally{if(s)throw o}}return i}}(e,t)||function(e,t){if(e){if("string"==typeof e)return Cl(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Cl(e,t):void 0}}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Cl(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Pl=wp.i18n.__,Al=Z()(SEOPRESS_DATA,"TAGS",[]),Tl=new xl(Al,{keys:["name","alias","description"]});const Il=function(t){var n=t.buttons,r=void 0===n?[]:n,o=t.handleChoiceTag,i=void 0===o?function(){}:o,a=Ll((0,e.useState)(""),2),s=a[0],l=a[1],u=Tn()(s)?Al:Tl.search(s),c=Ll((0,e.useState)(!1),2),f=c[0],p=c[1],d=(0,e.useRef)();return jl(d,(function(){return p(!1)})),e.createElement(e.Fragment,null,e.createElement("div",{className:"flex items-center flex-wrap"},r.map((function(t){var n=Yt()(Al,{name:t});if(!Ht()(n))return e.createElement(Ol,{key:"btn_".concat(n.name),onClick:function(){return i(n.input)},onKeyUp:function(e){13===e.keyCode&&(e.preventDefault(),i(n.input))},role:"button",tabIndex:"0"},e.createElement("span",{className:"dashicons dashicons-plus-alt2"}),Tn()(Z()(n,"description"))?n.name:n.description)})),e.createElement("div",{className:"relative",style:{alignSelf:"start"},ref:d},e.createElement("input",{type:"text",placeholder:Pl("Search a tag","wp-seopress"),value:s,onChange:function(e){return l(e.target.value)},onFocus:function(){return p(!0)},style:{fontSize:13,padding:4,minWidth:150,borderRadius:4,border:"1px solid var(--primaryColor)",backgroundColor:"#fff",height:32,marginBottom:0,fontFamily:"var(--fontFamily)"},tabIndex:"0"}),f&&!Tn()(u)&&e.createElement(El,null,u.map((function(t){var n=Z()(t,"item.name",Z()(t,"name","")),r=Z()(t,"item.description",Z()(t,"description","")),o=Z()(t,"item.input",Z()(t,"input",""));return e.createElement(kl,{key:n,onClick:function(){i(o)},onKeyUp:function(e){27===e.keyCode&&(e.preventDefault(),p(!1)),13===e.keyCode&&(e.preventDefault(),i(o))},tabIndex:"0"},e.createElement(Sl,null,r||n),e.createElement(_l,null,o))}))))))},Nl=Ut.div.withConfig({componentId:"sc-djzxn7-0"})(["&&&{display:flex;flex-direction:column;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#0085ba;transition:width 0.6s ease;font-size:12px;}"]),Fl=function(t){var n=t.percent,r=void 0===n?0:n,o=t.children;return e.createElement(ys,null,e.createElement(Nl,{style:{width:"".concat(r,"%")}},r.toFixed(1),"%"),e.createElement(gs,null,o))};function Rl(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i=[],a=!0,s=!1;try{for(n=n.call(e);!(a=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);a=!0);}catch(e){s=!0,o=e}finally{try{a||null==n.return||n.return()}finally{if(s)throw o}}return i}}(e,t)||function(e,t){if(e){if("string"==typeof e)return Ml(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Ml(e,t):void 0}}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Ml(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Dl=(0,e.createContext)({values:{title:"",description:"",post_thumbnail:"",post_date:""}}),zl=function(t){var n=t.children,r=Rl((0,e.useState)(""),2),o=r[0],i=r[1],a=Rl((0,e.useState)(""),2),s=a[0],l=a[1],u=Rl((0,e.useState)(""),2),c=u[0],f=u[1],p=Rl((0,e.useState)(""),2),d=p[0],h=p[1];return e.createElement(Dl.Provider,{value:{values:{title:o,description:s,post_thumbnail:c,post_date:d},actions:{setTitle:i,setDescription:l,setPostThumbnail:f,setPostDate:h}}},n)},Ul=function(e,t){return 100*e/t},Vl=function(e){var t=document.createElement("canvas").getContext("2d");t.font="18px Arial";var n=t.measureText(e).width;return Math.ceil(n)};const Gl=function(t){var n=t.title,r=t.description,o=t.code;return e.createElement("button",{type:"button",className:"sp-tooltip"},e.createElement("span",{className:"dashicons dashicons-editor-help"}),e.createElement("span",{className:"sp-tooltiptext",role:"tooltip",tabIndex:"0"},e.createElement("span",{className:"sp-tooltip-headings"},n),e.createElement("span",{className:"sp-tooltip-desc"},r),o&&e.createElement("span",{className:"sp-tooltip-code"},o)))};var Bl=["values","loading","handleOnSubmit"];var Wl=wp.i18n.__;const Hl=function(t){var n=t.values,r=t.loading,o=t.handleOnSubmit,i=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,Bl),a=yn(),s=function(){var t=(0,e.useContext)(Dl).values;return Z()(t,"title","")}(),l=function(){var t=(0,e.useContext)(Dl).values;return Z()(t,"description","")}(),u=Vl(Tn()(s)?Z()(a,"title.value",""):s),c=Ul(u,568),f=Vl(Tn()(l)?Z()(a,"description.value",""):l),p=Ul(f,940);return e.createElement(ts,null,e.createElement(Ns,{htmlFor:"title"},Wl("Title","wp-seopress"),e.createElement(Gl,{title:Wl("Meta title","wp-seopress"),description:e.createElement(e.Fragment,null,Wl("Titles are critical to give users a quick insight into the content of a result and why it’s relevant to their query. It's often the primary piece of information used to decide which result to click on, so it's important to use high-quality titles on your web pages.","wp-seopress")),code:"<title>My super title</title>"})),e.createElement(_s,{id:"title",name:"title",value:n.title,placeholder:Z()(a,"title.value",Wl("Enter your title","wp-seopress")),className:"w-full",setFieldValue:i.setFieldValue}),e.createElement("div",{style:{marginTop:5}},e.createElement(Fl,{percent:c>100?100:c},e.createElement("span",{style:{color:c>=100?"red":""}},u)," ","/ ",e.createElement("strong",null,568)," ",Wl("pixels","wp-seopress")," -",e.createElement("span",{style:{color:s.length>=60?"red":""}}," ",s.length)," ","/ ",e.createElement("strong",null,60)," ",e.createElement("span",null," ","(",Wl("maximum recommended limit","wp-seopress"),")"))),e.createElement("div",{style:{marginTop:5,marginBottom:20}},e.createElement(Il,{buttons:["post_title","sep","sitetitle"],handleChoiceTag:function(e){var t=Tn()(n.title)?e:"".concat(n.title," ").concat(e);i.setFieldValue("title",t)}})),e.createElement(Ns,{htmlFor:"description"},Wl("Meta description","wp-seopress"),e.createElement(Gl,{title:Wl("Meta description","wp-seopress"),description:e.createElement(e.Fragment,null,Wl("A meta description tag should generally inform and interest users with a short, relevant summary of what a particular page is about.","wp-seopress")," ",e.createElement("br",null)," ",Wl("They are like a pitch that convince the user that the page is exactly what they're looking for.","wp-seopress")," ",e.createElement("br",null)," ",Wl("There's no limit on how long a meta description can be, but the search result snippets are truncated as needed, typically to fit the device width.","wp-seopress")),code:'<meta name="description" content="my super meta description" />'})),e.createElement(Ps,{id:"description",name:"description",style:{resize:"vertical"},rows:"4",value:n.description,placeholder:Z()(a,"description.value",Wl("Enter your description","wp-seopress")),className:"w-full"}),e.createElement("div",{style:{marginTop:5}},e.createElement(Fl,{percent:p>100?100:p},e.createElement("span",{style:{color:p>=100?"red":""}},f)," ","/"," ",e.createElement("strong",null,940)," ",Wl("pixels","wp-seopress")," -",e.createElement("span",{style:{color:l.length>=160?"red":""}}," ",l.length)," ","/"," ",e.createElement("strong",null,160)," ","(",Wl("maximum recommended limit","wp-seopress"),")")),e.createElement("div",{style:{marginTop:5}},e.createElement(Il,{buttons:["post_title","sitetitle","sep"],handleChoiceTag:function(e){var t=Tn()(n.description)?e:"".concat(n.description," ").concat(e);i.setFieldValue("description",t)}})),e.createElement("div",{className:"sp-fixed"},e.createElement(Ds,{loading:r,onClick:function(){return o()},blue:!0},Wl("Save","wp-seopress"))))};var $l=o(9138),Yl=o.n($l),ql=function(e){var t=e.postId;return"".concat(SEOPRESS_DATA.REST_URL,"seopress/v1/posts/").concat(t,"/preview-title-description-metas")},Ql=Ut.div.withConfig({componentId:"sc-uts4tk-0"})(['&&&{display:inline-block;position:relative;box-shadow:inset 0 0 0 1px #d5d5d5;text-indent:-5000px;height:20px;width:40px;border-radius:15px;&:hover{cursor:pointer;}&:before{content:"";position:absolute;display:block;height:20px;width:40px;top:0;left:0;border-radius:15px;background:rgba(19,191,17,0);-moz-transition:0.25s ease-in-out;-webkit-transition:0.25s ease-in-out;transition:0.25s ease-in-out;}&:after{content:"";position:absolute;display:block;height:20px;width:20px;top:0;left:0;border-radius:15px;background:#fff;box-shadow:inset 0 0 0 1px rgb(0 0 0 / 20%),0 2px 4px rgb(0 0 0 / 20%);transition:0.25s ease-in-out;}',"}"],(function(e){return e.selected&&"\n &:before{\n background: rgb(49, 151, 211);\n }\n &:after{\n box-shadow: inset 0 0 0 1px rgb(49 151 211), 0 2px 4px rgb(0 0 0 / 20%);\n left:20px;\n }\n "}));const Xl=Ql;function Kl(e){return Kl="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},Kl(e)}function Jl(){Jl=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,r="function"==typeof Symbol?Symbol:{},o=r.iterator||"@@iterator",i=r.asyncIterator||"@@asyncIterator",a=r.toStringTag||"@@toStringTag";function s(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{s({},"")}catch(e){s=function(e,t,n){return e[t]=n}}function l(e,t,n,r){var o=t&&t.prototype instanceof f?t:f,i=Object.create(o.prototype),a=new S(r||[]);return i._invoke=function(e,t,n){var r="suspendedStart";return function(o,i){if("executing"===r)throw new Error("Generator is already running");if("completed"===r){if("throw"===o)throw i;return{value:void 0,done:!0}}for(n.method=o,n.arg=i;;){var a=n.delegate;if(a){var s=w(a,n);if(s){if(s===c)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===r)throw r="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);r="executing";var l=u(e,t,n);if("normal"===l.type){if(r=n.done?"completed":"suspendedYield",l.arg===c)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(r="completed",n.method="throw",n.arg=l.arg)}}}(e,n,a),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var c={};function f(){}function p(){}function d(){}var h={};s(h,o,(function(){return this}));var m=Object.getPrototypeOf,v=m&&m(m(_([])));v&&v!==t&&n.call(v,o)&&(h=v);var y=d.prototype=f.prototype=Object.create(h);function g(e){["next","throw","return"].forEach((function(t){s(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function r(o,i,a,s){var l=u(e[o],e,i);if("throw"!==l.type){var c=l.arg,f=c.value;return f&&"object"==Kl(f)&&n.call(f,"__await")?t.resolve(f.__await).then((function(e){r("next",e,a,s)}),(function(e){r("throw",e,a,s)})):t.resolve(f).then((function(e){c.value=e,a(c)}),(function(e){return r("throw",e,a,s)}))}s(l.arg)}var o;this._invoke=function(e,n){function i(){return new t((function(t,o){r(e,n,t,o)}))}return o=o?o.then(i,i):i()}}function w(e,t){var n=e.iterator[t.method];if(void 0===n){if(t.delegate=null,"throw"===t.method){if(e.iterator.return&&(t.method="return",t.arg=void 0,w(e,t),"throw"===t.method))return c;t.method="throw",t.arg=new TypeError("The iterator does not provide a 'throw' method")}return c}var r=u(n,e.iterator,t.arg);if("throw"===r.type)return t.method="throw",t.arg=r.arg,t.delegate=null,c;var o=r.arg;return o?o.done?(t[e.resultName]=o.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,c):o:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,c)}function x(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function E(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function S(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(x,this),this.reset(!0)}function _(e){if(e){var t=e[o];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var r=-1,i=function t(){for(;++r<e.length;)if(n.call(e,r))return t.value=e[r],t.done=!1,t;return t.value=void 0,t.done=!0,t};return i.next=i}}return{next:k}}function k(){return{value:void 0,done:!0}}return p.prototype=d,s(y,"constructor",d),s(d,"constructor",p),p.displayName=s(d,a,"GeneratorFunction"),e.isGeneratorFunction=function(e){var t="function"==typeof e&&e.constructor;return!!t&&(t===p||"GeneratorFunction"===(t.displayName||t.name))},e.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,d):(e.__proto__=d,s(e,a,"GeneratorFunction")),e.prototype=Object.create(y),e},e.awrap=function(e){return{__await:e}},g(b.prototype),s(b.prototype,i,(function(){return this})),e.AsyncIterator=b,e.async=function(t,n,r,o,i){void 0===i&&(i=Promise);var a=new b(l(t,n,r,o),i);return e.isGeneratorFunction(n)?a:a.next().then((function(e){return e.done?e.value:a.next()}))},g(y),s(y,a,"Generator"),s(y,o,(function(){return this})),s(y,"toString",(function(){return"[object Generator]"})),e.keys=function(e){var t=[];for(var n in e)t.push(n);return t.reverse(),function n(){for(;t.length;){var r=t.pop();if(r in e)return n.value=r,n.done=!1,n}return n.done=!0,n}},e.values=_,S.prototype={constructor:S,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(E),!e)for(var t in this)"t"===t.charAt(0)&&n.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=void 0)},stop:function(){this.done=!0;var e=this.tryEntries[0].completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var t=this;function r(n,r){return a.type="throw",a.arg=e,t.next=n,r&&(t.method="next",t.arg=void 0),!!r}for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i.completion;if("root"===i.tryLoc)return r("end");if(i.tryLoc<=this.prev){var s=n.call(i,"catchLoc"),l=n.call(i,"finallyLoc");if(s&&l){if(this.prev<i.catchLoc)return r(i.catchLoc,!0);if(this.prev<i.finallyLoc)return r(i.finallyLoc)}else if(s){if(this.prev<i.catchLoc)return r(i.catchLoc,!0)}else{if(!l)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return r(i.finallyLoc)}}}},abrupt:function(e,t){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===e||"continue"===e)&&i.tryLoc<=t&&t<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=e,a.arg=t,i?(this.method="next",this.next=i.finallyLoc,c):this.complete(a)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),c},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),E(n),c}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;E(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:_(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),c}},e}function Zl(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function eu(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i=[],a=!0,s=!1;try{for(n=n.call(e);!(a=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);a=!0);}catch(e){s=!0,o=e}finally{try{a||null==n.return||n.return()}finally{if(s)throw o}}return i}}(e,t)||function(e,t){if(e){if("string"==typeof e)return tu(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?tu(e,t):void 0}}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function tu(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var nu=wp.i18n.__;const ru=function(t){var n=t.title,r=t.description,o=t.postId,i=eu(xn("seopress_toggle_mobile_preview",Z()(SEOPRESS_DATA,"TOGGLE_MOBILE_PREVIEW",1)),2),a=i[0],s=i[1],l=(0,e.useContext)(vn).values.dataPagePreview,u=eu((0,e.useState)(""),2),c=u[0],f=u[1],p=eu((0,e.useState)(""),2),d=p[0],h=p[1],m=(0,e.useContext)(Dl),v=m.values,y=m.actions,g=function(){return Tn()(c)&&Tn()(v.title)?Z()(l,"title.value",""):Tn()(c)?v.title:c},b=function(){return Tn()(d)&&Tn()(v.description)?Z()(l,"description.value",""):Tn()(d)?v.description:d},w=function(){if(!Tn()(v.post_date))return e.createElement("div",{style:{color:"grey",display:"inline"}},v.post_date," - ")},x=(0,e.useCallback)(ls()(function(){var e,t=(e=Jl().mark((function e(t,n){var r,i,a,s,l,u,p,m,v,g,b;return Jl().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return r=t.title,i=t.description,a=t.post_thumbnail,s=t.post_date,(l=new URL(ql({postId:o}))).searchParams.append("title",r),l.searchParams.append("description",i),l.searchParams.append("post_thumbnail",a),l.searchParams.append("post_date",s),e.next=8,fetch(l.href,{signal:n.signal});case 8:return u=e.sent,e.next=11,u.json();case 11:p=e.sent,y.setTitle(p.title),y.setDescription(p.description),y.setPostThumbnail(p.post_thumbnail),y.setPostDate(p.post_date),m=Vl(p.title),v=Ul(m,568),g=Vl(p.description),b=Ul(g,940),v<100?f(""):Tn()(c)&&f(Yl()(p.title,{length:Math.ceil(100*p.title.length/v),separator:"..."})),b<100?h(""):Tn()(d)&&h(Yl()(p.description,{length:Math.ceil(100*p.description.length/b),separator:"..."}));case 22:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){Zl(i,r,o,a,s,"next",e)}function s(e){Zl(i,r,o,a,s,"throw",e)}a(void 0)}))});return function(e,n){return t.apply(this,arguments)}}(),400),[]);(0,e.useEffect)((function(){var e=new AbortController;return y.setTitle(n),y.setDescription(r),x({title:n,description:r},e),function(){e.abort()}}),[n,r]);var E=Number(a);return e.createElement(e.Fragment,null,e.createElement("div",{style:{color:"#1d2327",fontSize:"1.3em",marginTop:0,marginBottom:"1em",fontFamily:"var(--fontFamily)",textTransform:"none",fontWeight:"bold"}},nu("Google Snippet Preview","wp-seopress"),e.createElement(Gl,{title:nu("Snippet Preview","wp-seopress"),description:e.createElement(e.Fragment,null,nu("The Google preview is a simulation.","wp-seopress")," ",e.createElement("br",null)," ",nu("There is no reliable preview because it depends on the screen resolution, the device used, the expression sought, and Google.","wp-seopress")," ",e.createElement("br",null)," ",nu("There is not one snippet for one URL but several.","wp-seopress")," ",e.createElement("br",null)," ",nu("All the data in this overview comes directly from your source code.","wp-seopress")," ",e.createElement("br",null)," ",nu("This is what the crawlers will see.","wp-seopress"))})),e.createElement("p",null,nu("This is what your page will look like in Google search results. You have to publish your post to get the Google Snippet Preview. Note that Google may optionally display an image of your article.","wp-seopress")),e.createElement("label",{htmlFor:"toggle-preview",className:"flex items-center",style:{marginBottom:10},onClick:function(){s(0===E?1:0)}},e.createElement("span",{className:"dashicons dashicons-smartphone"}),e.createElement("strong",null,nu("Mobile Preview","wp-seopress")),e.createElement(Xl,{selected:1===E,style:{marginLeft:5},tabIndex:"0",onKeyUp:function(e){13===e.keyCode&&(e.preventDefault(),s(0===E?1:0))}})),0===E&&e.createElement(e.Fragment,null,e.createElement("div",{style:{color:"#1a0dab",fontSize:"18px",lineHeight:"21.6px"}},g()),e.createElement("div",{style:{color:"#006621",fontSize:14}},Z()(l,"permalink.value")),e.createElement("div",{style:{color:"#545454",fontSize:"14px",fontWeight:400,lineHeight:"18.2px"}},w(),b())),1===E&&e.createElement(e.Fragment,null,e.createElement("div",{style:{margin:"0 0 10px 0",boxShadow:"0 1px 6px rgb(32 33 36 / 28%)",borderRadius:"8px",padding:"12px 16px"}},e.createElement("div",{style:{display:"flex",alignItems:"center",marginBottom:16}},e.createElement("img",{src:Tn()(Z()(SEOPRESS_DATA,"FAVICON",""))?"https://s2.googleusercontent.com/s2/favicons?domain_url=".concat(Z()(l,"permalink.value"),"&sz=32"):Z()(SEOPRESS_DATA,"FAVICON",""),loading:"lazy",width:16,height:16,"aria-hidden":!0,alt:"Favicon",style:{marginRight:10}}),Z()(l,"permalink.value")),e.createElement("div",{style:{color:"#1a0dab",fontSize:"18px",lineHeight:"21.6px",marginBottom:12}},g()),e.createElement("div",{style:{display:"flex",justifyContent:"space-between"}},e.createElement("div",{style:{color:"#545454",fontSize:"14px",fontWeight:400,lineHeight:"18.2px",marginRight:"8px"}},w(),b()),function(){if(!Tn()(v.post_thumbnail))return e.createElement("div",{style:{marginLeft:"8px",display:"block"}},e.createElement("img",{src:v.post_thumbnail,width:104,height:104,"aria-hidden":!0,alt:"Post thumbnail",style:{maxWidth:"inherit",borderRadius:"8px"}}))}()))))};var ou=function(e){var t=e.postId;return"".concat(SEOPRESS_DATA.REST_URL,"seopress/v1/posts/").concat(t,"/title-description-metas")};const iu=function(e){var t=e.postId;return ao(ou({postId:t}),{suspense:!0})};function au(e){return au="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},au(e)}function su(){su=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,r="function"==typeof Symbol?Symbol:{},o=r.iterator||"@@iterator",i=r.asyncIterator||"@@asyncIterator",a=r.toStringTag||"@@toStringTag";function s(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{s({},"")}catch(e){s=function(e,t,n){return e[t]=n}}function l(e,t,n,r){var o=t&&t.prototype instanceof f?t:f,i=Object.create(o.prototype),a=new S(r||[]);return i._invoke=function(e,t,n){var r="suspendedStart";return function(o,i){if("executing"===r)throw new Error("Generator is already running");if("completed"===r){if("throw"===o)throw i;return{value:void 0,done:!0}}for(n.method=o,n.arg=i;;){var a=n.delegate;if(a){var s=w(a,n);if(s){if(s===c)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===r)throw r="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);r="executing";var l=u(e,t,n);if("normal"===l.type){if(r=n.done?"completed":"suspendedYield",l.arg===c)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(r="completed",n.method="throw",n.arg=l.arg)}}}(e,n,a),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var c={};function f(){}function p(){}function d(){}var h={};s(h,o,(function(){return this}));var m=Object.getPrototypeOf,v=m&&m(m(_([])));v&&v!==t&&n.call(v,o)&&(h=v);var y=d.prototype=f.prototype=Object.create(h);function g(e){["next","throw","return"].forEach((function(t){s(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function r(o,i,a,s){var l=u(e[o],e,i);if("throw"!==l.type){var c=l.arg,f=c.value;return f&&"object"==au(f)&&n.call(f,"__await")?t.resolve(f.__await).then((function(e){r("next",e,a,s)}),(function(e){r("throw",e,a,s)})):t.resolve(f).then((function(e){c.value=e,a(c)}),(function(e){return r("throw",e,a,s)}))}s(l.arg)}var o;this._invoke=function(e,n){function i(){return new t((function(t,o){r(e,n,t,o)}))}return o=o?o.then(i,i):i()}}function w(e,t){var n=e.iterator[t.method];if(void 0===n){if(t.delegate=null,"throw"===t.method){if(e.iterator.return&&(t.method="return",t.arg=void 0,w(e,t),"throw"===t.method))return c;t.method="throw",t.arg=new TypeError("The iterator does not provide a 'throw' method")}return c}var r=u(n,e.iterator,t.arg);if("throw"===r.type)return t.method="throw",t.arg=r.arg,t.delegate=null,c;var o=r.arg;return o?o.done?(t[e.resultName]=o.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,c):o:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,c)}function x(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function E(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function S(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(x,this),this.reset(!0)}function _(e){if(e){var t=e[o];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var r=-1,i=function t(){for(;++r<e.length;)if(n.call(e,r))return t.value=e[r],t.done=!1,t;return t.value=void 0,t.done=!0,t};return i.next=i}}return{next:k}}function k(){return{value:void 0,done:!0}}return p.prototype=d,s(y,"constructor",d),s(d,"constructor",p),p.displayName=s(d,a,"GeneratorFunction"),e.isGeneratorFunction=function(e){var t="function"==typeof e&&e.constructor;return!!t&&(t===p||"GeneratorFunction"===(t.displayName||t.name))},e.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,d):(e.__proto__=d,s(e,a,"GeneratorFunction")),e.prototype=Object.create(y),e},e.awrap=function(e){return{__await:e}},g(b.prototype),s(b.prototype,i,(function(){return this})),e.AsyncIterator=b,e.async=function(t,n,r,o,i){void 0===i&&(i=Promise);var a=new b(l(t,n,r,o),i);return e.isGeneratorFunction(n)?a:a.next().then((function(e){return e.done?e.value:a.next()}))},g(y),s(y,a,"Generator"),s(y,o,(function(){return this})),s(y,"toString",(function(){return"[object Generator]"})),e.keys=function(e){var t=[];for(var n in e)t.push(n);return t.reverse(),function n(){for(;t.length;){var r=t.pop();if(r in e)return n.value=r,n.done=!1,n}return n.done=!0,n}},e.values=_,S.prototype={constructor:S,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(E),!e)for(var t in this)"t"===t.charAt(0)&&n.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=void 0)},stop:function(){this.done=!0;var e=this.tryEntries[0].completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var t=this;function r(n,r){return a.type="throw",a.arg=e,t.next=n,r&&(t.method="next",t.arg=void 0),!!r}for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i.completion;if("root"===i.tryLoc)return r("end");if(i.tryLoc<=this.prev){var s=n.call(i,"catchLoc"),l=n.call(i,"finallyLoc");if(s&&l){if(this.prev<i.catchLoc)return r(i.catchLoc,!0);if(this.prev<i.finallyLoc)return r(i.finallyLoc)}else if(s){if(this.prev<i.catchLoc)return r(i.catchLoc,!0)}else{if(!l)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return r(i.finallyLoc)}}}},abrupt:function(e,t){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===e||"continue"===e)&&i.tryLoc<=t&&t<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=e,a.arg=t,i?(this.method="next",this.next=i.finallyLoc,c):this.complete(a)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),c},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),E(n),c}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;E(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:_(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),c}},e}function lu(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}var uu=function(){var e,t=(e=su().mark((function e(t,n){var r;return su().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,fetch(ou({postId:t}),{method:"PUT",headers:{"Content-Type":"application/json","X-WP-Nonce":Z()(SEOPRESS_DATA,"NONCE",null)},body:JSON.stringify(n)});case 2:return r=e.sent,e.next=5,r.json();case 5:return e.abrupt("return",e.sent);case 6:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){lu(i,r,o,a,s,"next",e)}function s(e){lu(i,r,o,a,s,"throw",e)}a(void 0)}))});return function(e,n){return t.apply(this,arguments)}}();function cu(e){return cu="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},cu(e)}var fu=["values"];function pu(){return pu=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},pu.apply(this,arguments)}function du(){du=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,r="function"==typeof Symbol?Symbol:{},o=r.iterator||"@@iterator",i=r.asyncIterator||"@@asyncIterator",a=r.toStringTag||"@@toStringTag";function s(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{s({},"")}catch(e){s=function(e,t,n){return e[t]=n}}function l(e,t,n,r){var o=t&&t.prototype instanceof f?t:f,i=Object.create(o.prototype),a=new S(r||[]);return i._invoke=function(e,t,n){var r="suspendedStart";return function(o,i){if("executing"===r)throw new Error("Generator is already running");if("completed"===r){if("throw"===o)throw i;return{value:void 0,done:!0}}for(n.method=o,n.arg=i;;){var a=n.delegate;if(a){var s=w(a,n);if(s){if(s===c)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===r)throw r="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);r="executing";var l=u(e,t,n);if("normal"===l.type){if(r=n.done?"completed":"suspendedYield",l.arg===c)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(r="completed",n.method="throw",n.arg=l.arg)}}}(e,n,a),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var c={};function f(){}function p(){}function d(){}var h={};s(h,o,(function(){return this}));var m=Object.getPrototypeOf,v=m&&m(m(_([])));v&&v!==t&&n.call(v,o)&&(h=v);var y=d.prototype=f.prototype=Object.create(h);function g(e){["next","throw","return"].forEach((function(t){s(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function r(o,i,a,s){var l=u(e[o],e,i);if("throw"!==l.type){var c=l.arg,f=c.value;return f&&"object"==cu(f)&&n.call(f,"__await")?t.resolve(f.__await).then((function(e){r("next",e,a,s)}),(function(e){r("throw",e,a,s)})):t.resolve(f).then((function(e){c.value=e,a(c)}),(function(e){return r("throw",e,a,s)}))}s(l.arg)}var o;this._invoke=function(e,n){function i(){return new t((function(t,o){r(e,n,t,o)}))}return o=o?o.then(i,i):i()}}function w(e,t){var n=e.iterator[t.method];if(void 0===n){if(t.delegate=null,"throw"===t.method){if(e.iterator.return&&(t.method="return",t.arg=void 0,w(e,t),"throw"===t.method))return c;t.method="throw",t.arg=new TypeError("The iterator does not provide a 'throw' method")}return c}var r=u(n,e.iterator,t.arg);if("throw"===r.type)return t.method="throw",t.arg=r.arg,t.delegate=null,c;var o=r.arg;return o?o.done?(t[e.resultName]=o.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,c):o:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,c)}function x(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function E(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function S(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(x,this),this.reset(!0)}function _(e){if(e){var t=e[o];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var r=-1,i=function t(){for(;++r<e.length;)if(n.call(e,r))return t.value=e[r],t.done=!1,t;return t.value=void 0,t.done=!0,t};return i.next=i}}return{next:k}}function k(){return{value:void 0,done:!0}}return p.prototype=d,s(y,"constructor",d),s(d,"constructor",p),p.displayName=s(d,a,"GeneratorFunction"),e.isGeneratorFunction=function(e){var t="function"==typeof e&&e.constructor;return!!t&&(t===p||"GeneratorFunction"===(t.displayName||t.name))},e.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,d):(e.__proto__=d,s(e,a,"GeneratorFunction")),e.prototype=Object.create(y),e},e.awrap=function(e){return{__await:e}},g(b.prototype),s(b.prototype,i,(function(){return this})),e.AsyncIterator=b,e.async=function(t,n,r,o,i){void 0===i&&(i=Promise);var a=new b(l(t,n,r,o),i);return e.isGeneratorFunction(n)?a:a.next().then((function(e){return e.done?e.value:a.next()}))},g(y),s(y,a,"Generator"),s(y,o,(function(){return this})),s(y,"toString",(function(){return"[object Generator]"})),e.keys=function(e){var t=[];for(var n in e)t.push(n);return t.reverse(),function n(){for(;t.length;){var r=t.pop();if(r in e)return n.value=r,n.done=!1,n}return n.done=!0,n}},e.values=_,S.prototype={constructor:S,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(E),!e)for(var t in this)"t"===t.charAt(0)&&n.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=void 0)},stop:function(){this.done=!0;var e=this.tryEntries[0].completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var t=this;function r(n,r){return a.type="throw",a.arg=e,t.next=n,r&&(t.method="next",t.arg=void 0),!!r}for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i.completion;if("root"===i.tryLoc)return r("end");if(i.tryLoc<=this.prev){var s=n.call(i,"catchLoc"),l=n.call(i,"finallyLoc");if(s&&l){if(this.prev<i.catchLoc)return r(i.catchLoc,!0);if(this.prev<i.finallyLoc)return r(i.finallyLoc)}else if(s){if(this.prev<i.catchLoc)return r(i.catchLoc,!0)}else{if(!l)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return r(i.finallyLoc)}}}},abrupt:function(e,t){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===e||"continue"===e)&&i.tryLoc<=t&&t<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=e,a.arg=t,i?(this.method="next",this.next=i.finallyLoc,c):this.complete(a)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),c},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),E(n),c}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;E(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:_(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),c}},e}function hu(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function mu(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var vu=wp.i18n.__;const yu=function(t){var n=t.mainBarRef,r=no(),o=iu({postId:r}),i=o.data,a=o.mutate,s=o.abort;(0,e.useEffect)((function(){return function(){s()}}));var l,u,c=(l=(0,e.useState)(!1),u=2,function(e){if(Array.isArray(e))return e}(l)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i=[],a=!0,s=!1;try{for(n=n.call(e);!(a=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);a=!0);}catch(e){s=!0,o=e}finally{try{a||null==n.return||n.return()}finally{if(s)throw o}}return i}}(l,u)||function(e,t){if(e){if("string"==typeof e)return mu(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?mu(e,t):void 0}}(l,u)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),f=c[0],p=c[1],d=(0,e.useContext)(Fn).actions,h=function(){var e,t=(e=du().mark((function e(t){return du().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return p(!0),e.next=3,uu(r,t);case 3:e.sent,a(),p(!1),d.setMessage(vu("Your settings have been saved.","wp-seopress"));case 7:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){hu(i,r,o,a,s,"next",e)}function s(e){hu(i,r,o,a,s,"throw",e)}a(void 0)}))});return function(e){return t.apply(this,arguments)}}();return e.createElement(e.Fragment,null,e.createElement(Qa,{enableReinitialize:!0,onSubmit:h,initialValues:{title:Z()(i,"title",""),description:Z()(i,"description","")}},(function(t){var o=t.values,i=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,fu);return e.createElement(e.Fragment,null,e.createElement("div",{tabIndex:"0",className:"flex",style:{gap:32},ref:n},e.createElement("div",{className:"w-6/12"},e.createElement(Hl,pu({values:o,loading:f,handleOnSubmit:function(){return h(o)}},i))),e.createElement("div",{className:"w-6/12"},e.createElement(ru,{postId:r,title:Z()(o,"title",""),description:Z()(o,"description","")}))))})))};var gu=o(6604),bu=o.n(gu),wu=o(4350),xu=o.n(wu),Eu=function(e){var t=e.postId;return"".concat(SEOPRESS_DATA.REST_URL,"seopress/v1/posts/").concat(t,"/social-settings")};function Su(e){return Su="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},Su(e)}function _u(){_u=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,r="function"==typeof Symbol?Symbol:{},o=r.iterator||"@@iterator",i=r.asyncIterator||"@@asyncIterator",a=r.toStringTag||"@@toStringTag";function s(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{s({},"")}catch(e){s=function(e,t,n){return e[t]=n}}function l(e,t,n,r){var o=t&&t.prototype instanceof f?t:f,i=Object.create(o.prototype),a=new S(r||[]);return i._invoke=function(e,t,n){var r="suspendedStart";return function(o,i){if("executing"===r)throw new Error("Generator is already running");if("completed"===r){if("throw"===o)throw i;return{value:void 0,done:!0}}for(n.method=o,n.arg=i;;){var a=n.delegate;if(a){var s=w(a,n);if(s){if(s===c)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===r)throw r="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);r="executing";var l=u(e,t,n);if("normal"===l.type){if(r=n.done?"completed":"suspendedYield",l.arg===c)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(r="completed",n.method="throw",n.arg=l.arg)}}}(e,n,a),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var c={};function f(){}function p(){}function d(){}var h={};s(h,o,(function(){return this}));var m=Object.getPrototypeOf,v=m&&m(m(_([])));v&&v!==t&&n.call(v,o)&&(h=v);var y=d.prototype=f.prototype=Object.create(h);function g(e){["next","throw","return"].forEach((function(t){s(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function r(o,i,a,s){var l=u(e[o],e,i);if("throw"!==l.type){var c=l.arg,f=c.value;return f&&"object"==Su(f)&&n.call(f,"__await")?t.resolve(f.__await).then((function(e){r("next",e,a,s)}),(function(e){r("throw",e,a,s)})):t.resolve(f).then((function(e){c.value=e,a(c)}),(function(e){return r("throw",e,a,s)}))}s(l.arg)}var o;this._invoke=function(e,n){function i(){return new t((function(t,o){r(e,n,t,o)}))}return o=o?o.then(i,i):i()}}function w(e,t){var n=e.iterator[t.method];if(void 0===n){if(t.delegate=null,"throw"===t.method){if(e.iterator.return&&(t.method="return",t.arg=void 0,w(e,t),"throw"===t.method))return c;t.method="throw",t.arg=new TypeError("The iterator does not provide a 'throw' method")}return c}var r=u(n,e.iterator,t.arg);if("throw"===r.type)return t.method="throw",t.arg=r.arg,t.delegate=null,c;var o=r.arg;return o?o.done?(t[e.resultName]=o.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,c):o:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,c)}function x(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function E(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function S(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(x,this),this.reset(!0)}function _(e){if(e){var t=e[o];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var r=-1,i=function t(){for(;++r<e.length;)if(n.call(e,r))return t.value=e[r],t.done=!1,t;return t.value=void 0,t.done=!0,t};return i.next=i}}return{next:k}}function k(){return{value:void 0,done:!0}}return p.prototype=d,s(y,"constructor",d),s(d,"constructor",p),p.displayName=s(d,a,"GeneratorFunction"),e.isGeneratorFunction=function(e){var t="function"==typeof e&&e.constructor;return!!t&&(t===p||"GeneratorFunction"===(t.displayName||t.name))},e.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,d):(e.__proto__=d,s(e,a,"GeneratorFunction")),e.prototype=Object.create(y),e},e.awrap=function(e){return{__await:e}},g(b.prototype),s(b.prototype,i,(function(){return this})),e.AsyncIterator=b,e.async=function(t,n,r,o,i){void 0===i&&(i=Promise);var a=new b(l(t,n,r,o),i);return e.isGeneratorFunction(n)?a:a.next().then((function(e){return e.done?e.value:a.next()}))},g(y),s(y,a,"Generator"),s(y,o,(function(){return this})),s(y,"toString",(function(){return"[object Generator]"})),e.keys=function(e){var t=[];for(var n in e)t.push(n);return t.reverse(),function n(){for(;t.length;){var r=t.pop();if(r in e)return n.value=r,n.done=!1,n}return n.done=!0,n}},e.values=_,S.prototype={constructor:S,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(E),!e)for(var t in this)"t"===t.charAt(0)&&n.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=void 0)},stop:function(){this.done=!0;var e=this.tryEntries[0].completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var t=this;function r(n,r){return a.type="throw",a.arg=e,t.next=n,r&&(t.method="next",t.arg=void 0),!!r}for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i.completion;if("root"===i.tryLoc)return r("end");if(i.tryLoc<=this.prev){var s=n.call(i,"catchLoc"),l=n.call(i,"finallyLoc");if(s&&l){if(this.prev<i.catchLoc)return r(i.catchLoc,!0);if(this.prev<i.finallyLoc)return r(i.finallyLoc)}else if(s){if(this.prev<i.catchLoc)return r(i.catchLoc,!0)}else{if(!l)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return r(i.finallyLoc)}}}},abrupt:function(e,t){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===e||"continue"===e)&&i.tryLoc<=t&&t<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=e,a.arg=t,i?(this.method="next",this.next=i.finallyLoc,c):this.complete(a)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),c},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),E(n),c}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;E(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:_(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),c}},e}function ku(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}var Ou=function(){var e,t=(e=_u().mark((function e(t,n){var r;return _u().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,fetch(Eu({postId:t}),{method:"PUT",headers:{"Content-Type":"application/json","X-WP-Nonce":Z()(SEOPRESS_DATA,"NONCE",null)},body:JSON.stringify(n)});case 2:return r=e.sent,e.next=5,r.json();case 5:return e.abrupt("return",e.sent);case 6:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){ku(i,r,o,a,s,"next",e)}function s(e){ku(i,r,o,a,s,"throw",e)}a(void 0)}))});return function(e,n){return t.apply(this,arguments)}}(),ju=Ut.input.withConfig({componentId:"sc-dkrxdi-0"})(["&&&{border:1px solid #8c8f94;border-radius:4px;background:#fff;color:#50575e;clear:none;cursor:pointer;display:inline-block;line-height:0;height:1rem;margin:-0.25rem 0.25rem 0 0;outline:0;padding:0 !important;text-align:center;vertical-align:middle;width:1rem;min-width:1rem;-webkit-appearance:none;box-shadow:inset 0 1px 2px rgb(0 0 0 / 10%);transition:0.05s border-color ease-in-out;font-family:var(--fontFamily);&:checked{&:before{content:url(data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%233582c4%27%2F%3E%3C%2Fsvg%3E);margin:-0.1875rem 0 0 -0.25rem;height:1.3125rem;width:1.3125rem;float:left;display:inline-block;vertical-align:middle;speak:never;-webkit-font-smoothing:antialiased;}&:after{content:none;}}&:after{content:none;}&:disabled{&:after{content:none;}&:before{opacity:0.7;}}}"]);const Lu=Ut(hs).withConfig({componentId:"sc-dkrxdi-1"})(["&&&{border:1px solid #8c8f94;border-radius:4px;background:#fff;color:#50575e;clear:none;cursor:pointer;display:inline-block;line-height:0;height:1rem;margin:-0.25rem 0.25rem 0 0;outline:0;padding:0 !important;text-align:center;vertical-align:middle;width:1rem;min-width:1rem;-webkit-appearance:none;box-shadow:inset 0 1px 2px rgb(0 0 0 / 10%);transition:0.05s border-color ease-in-out;font-family:var(--fontFamily);&:checked{&:before{content:url(data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%233582c4%27%2F%3E%3C%2Fsvg%3E);margin:-0.1875rem 0 0 -0.25rem;height:1.3125rem;width:1.3125rem;float:left;display:inline-block;vertical-align:middle;speak:never;-webkit-font-smoothing:antialiased;}&:after{content:none;}}&:after{content:none;}&:disabled{&:after{content:none;}&:before{opacity:0.7;}}}"]);var Cu=["name","id","value"];function Pu(){return Pu=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Pu.apply(this,arguments)}const Au=function(t){var n=t.name,r=t.id,o=t.value,i=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,Cu);return e.createElement(Lu,Pu({name:n,id:r,type:"checkbox",value:o},i))};var Tu=wp.i18n.__;const Iu=function(t){var n=t.name,r=t.id,o=t.value,i=t.setFieldValue,a=t.placeholder,s=void 0===a?"":a,l=t.emptyIcon,u=void 0!==l&&l,c=t.combinedValuesForm;return e.createElement("div",{className:"flex items-center justify-content"},e.createElement(_s,{name:n,id:r,type:"text",emptyIcon:u,setFieldValue:i,value:o,placeholder:s}),e.createElement("input",{type:"hidden",name:"".concat(n,"_attachment_id"),value:Z()(c,"".concat(n,"_attachment_id"),"")}),e.createElement("input",{type:"hidden",name:"".concat(n,"_width"),value:Z()(c,"".concat(n,"_width"),"")}),e.createElement("input",{type:"hidden",name:"".concat(n,"_height"),value:Z()(c,"".concat(n,"_height"),"")}),e.createElement(To,{onClick:function(e){e.preventDefault();var t=wp.media.frames.file_frame=wp.media({multiple:!1});t.on("select",(function(){var e=t.state().get("selection").first().toJSON();i(n,e.url),i("".concat(n,"_attachment_id"),e.id),i("".concat(n,"_width"),e.width),i("".concat(n,"_height"),e.height)})),t.open()},className:"ms-2"},Tu("Choose an image","wp-seopress")))};var Nu=Ut.select.withConfig({componentId:"sc-gds3ax-0"})(["&&&{line-height:2;color:#2c3338;border-color:#8c8f94;box-shadow:none;border-radius:3px;border:1px solid #8c8f94;font-size:var(--fontSize);font-family:var(--fontFamily);padding:0 24px 0 8px;min-height:30px;max-width:25rem;-webkit-appearance:none;background:#fff url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E) no-repeat right 5px top 55%;background-size:16px 16px;cursor:pointer;vertical-align:middle;@media only screen and (max-width:600px){max-width:100%;width:100%;}&:focus{border-color:#2271b1;color:#0a4b78;box-shadow:0 0 0 1px #2271b1;outline:none;}}"]);const Fu=Ut(hs).withConfig({componentId:"sc-gds3ax-1"})(["&&&{line-height:2;color:#2c3338;border-color:#8c8f94;box-shadow:none;border-radius:3px;border:1px solid #8c8f94;font-size:var(--fontSize);font-family:var(--fontFamily);padding:0 24px 0 8px;min-height:30px;max-width:25rem;-webkit-appearance:none;background:#fff url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E) no-repeat right 5px top 55%;background-size:16px 16px;cursor:pointer;vertical-align:middle;@media only screen and (max-width:600px){max-width:100%;width:100%;}&:focus{border-color:#2271b1;color:#0a4b78;box-shadow:0 0 0 1px #2271b1;outline:none;}}"]);var Ru=["name","id","value","options"];function Mu(){return Mu=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Mu.apply(this,arguments)}const Du=function(t){var n=t.name,r=t.id,o=t.value,i=t.options,a=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,Ru);return e.createElement(Fu,Mu({},a,{name:n,id:r,value:o,as:"select",onChange:a.handleChange}),i.map((function(t,r){return e.createElement("option",{value:t.value,key:"".concat(n,"_").concat(r)},t.label)})))},zu=Ut.div.withConfig({componentId:"sc-1lzall7-0"})(["&&&{background:#fff;border:1px solid #c3c4c7;border-width:1px 1px 1px 4px;border-style:solid;box-shadow:0 1px 1px rgb(0 0 0 / 4%);margin:0 0 15px 0;padding:5px 12px;border-left-color:#d63638;}"]),Uu=Ut.div.withConfig({componentId:"sc-1pehaa1-0"})(["&&&{background:#fff;border:1px solid #c3c4c7;border-width:1px 1px 1px 4px;border-style:solid;box-shadow:0 1px 1px rgb(0 0 0 / 4%);margin:0 0 15px 0;padding:5px 12px;border-left-color:#72aee6;}"]);function Vu(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i=[],a=!0,s=!1;try{for(n=n.call(e);!(a=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);a=!0);}catch(e){s=!0,o=e}finally{try{a||null==n.return||n.return()}finally{if(s)throw o}}return i}}(e,t)||function(e,t){if(e){if("string"==typeof e)return Gu(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Gu(e,t):void 0}}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Gu(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Bu=wp.i18n.__,Wu=Ut.div.withConfig({componentId:"sc-qj6j9q-0"})(["&&&{img{display:block;height:274px;width:524px;object-fit:cover;background-color:#f0f0f0;text-align:center;border-bottom:none;}@media only screen and (max-width:600px){width:100%;}}"]),Hu=Ut.div.withConfig({componentId:"sc-qj6j9q-1"})(["&&&{border:1px solid #dadde1;background-color:#f2f3f5;padding:10px 12px;color:#4b4f56;font-size:14px;width:524px;box-sizing:border-box;@media only screen and (max-width:600px){width:100%;}.sp-meta{display:flex;overflow:hidden;max-height:12px;}.sp-title{font-size:16px;line-height:20px;margin:3px 0 0;padding-top:2px;color:#1d2129;font-weight:700;overflow:hidden;text-overflow:ellipsis;white-space:normal;word-break:break-word;max-height:22px;}.sp-description{line-height:20px;word-break:break-word;font-family:Helvetica,Arial,sans-serif;max-height:80px;overflow:hidden;text-overflow:ellipsis;white-space:normal;width:100%;}}"]),$u=Ut.div.withConfig({componentId:"sc-qj6j9q-2"})(["&&&{border-radius:10px 10px 0 0;img{border-radius:10px 10px 0 0;display:block;height:200px;width:436px;object-fit:cover;background-color:#f0f0f0;text-align:center;border-bottom:none;}@media only screen and (max-width:600px){width:100%;}}"]),Yu=Ut.div.withConfig({componentId:"sc-qj6j9q-3"})(["&&&{border:1px solid #dadde1;background-color:#fff;padding:10px 12px;border-radius:0 0 10px 10px;color:#4b4f56;font-size:14px;width:436px;box-sizing:border-box;@media only screen and (max-width:600px){width:100%;}.sp-title{font-size:1em;line-height:20px;margin-bottom:5px;max-height:1.3em;color:#000;font-weight:700;overflow:hidden;text-overflow:ellipsis;white-space:normal;word-break:break-word;}.sp-description{color:#000;font-size:14px;line-height:20px;word-break:break-word;font-family:Helvetica,Arial,sans-serif;max-height:80px;overflow:hidden;text-overflow:ellipsis;white-space:normal;width:100%;}}"]),qu=Ut.div.withConfig({componentId:"sc-qj6j9q-4"})(["&&&{color:#1d2327;font-size:1.3em;margin:20px 0;font-weight:bold;}"]),Qu=function(e,t){return(e/t).toFixed(2)},Xu=function(e){var t=e.split(/\#|\?/)[0].split(".").pop().trim();return["jpg","jpeg","gif","png","webp"].indexOf(t)>=0},Ku=function(e,t){var n=t.width,r=t.height;return"facebook"===e?n>=200&&r>=200:n>=144&&r>=144};const Ju=function(t){var n=t.values,r=t.placeholders,o=Vu((0,e.useState)(null),2),i=o[0],a=o[1],s=Vu((0,e.useState)(null),2),l=s[0],u=s[1],c=Vu((0,e.useState)(null),2),f=c[0],p=c[1],d=Vu((0,e.useState)(null),2),h=d[0],m=d[1],v=Vu((0,e.useState)(null),2),y=v[0],g=v[1],b=Vu((0,e.useState)(null),2),w=b[0],x=b[1],E=Vu((0,e.useState)(!1),2),S=E[0],_=E[1],k=Vu((0,e.useState)(!1),2),O=k[0],j=k[1],L=Z()(n,"_seopress_social_fb_img","");Tn()(L)&&(L=Yt()(r,{key:"_seopress_social_fb_img"}).placeholder);var C=Z()(n,"_seopress_social_fb_title","");Tn()(C)&&(C=Yt()(r,{key:"_seopress_social_fb_title"}).placeholder);var P=Z()(n,"_seopress_social_fb_desc","");Tn()(P)&&(P=Yt()(r,{key:"_seopress_social_fb_desc"}).placeholder);var A=Z()(n,"_seopress_social_twitter_img","");Tn()(A)&&(A=Yt()(r,{key:"_seopress_social_twitter_img"}).placeholder);var T=Z()(n,"_seopress_social_twitter_title","");Tn()(T)&&(T=Yt()(r,{key:"_seopress_social_twitter_title"}).placeholder);var I=Z()(n,"_seopress_social_twitter_desc","");Tn()(I)&&(I=Yt()(r,{key:"_seopress_social_twitter_desc"}).placeholder),(0,e.useEffect)((function(){u(null),m(null),x(null)}),[A]),(0,e.useEffect)((function(){a(null),p(null),g(null)}),[L]);var N="";try{N=new URL(Z()(SEOPRESS_DATA,"SITEURL"))}catch(e){}return e.createElement(e.Fragment,null,e.createElement(qu,null,Bu("Facebook Preview","wp-seopress")),e.createElement("p",null,Bu("This is what your post will look like in Facebook. You have to publish your post to get the Facebook Preview.","wp-seopress")),!Ht()(i)&&e.createElement(Uu,null,Bu("Your image ratio is:","wp-seopress")," ",e.createElement("strong",null,i),". ",Bu("The closer to 1.91 the better.","wp-seopress")),!Ht()(y)&&!y&&e.createElement(zu,{dangerouslySetInnerHTML:{__html:Bu("Minimun size for Facebook is <strong>200x200px</strong>. Please choose another image.","wp-seopress")}}),!Ht()(f)&&!f&&e.createElement(zu,null,Bu("File type not supported by Facebook. Please choose another image.","wp-seopress")," "),L&&S&&e.createElement(zu,null,Bu("File error. Please choose another image.","wp-seopress")," "),e.createElement(Wu,null,!L&&e.createElement(zu,null,Bu("Please choose an image","wp-seopress")),L&&e.createElement("img",{src:L,width:"524",height:"274",onLoad:function(e){var t=e.target,n=t.naturalWidth,r=t.naturalHeight;_(!1),a(Qu(n,r)),p(Xu(t.src)),g(Ku("facebook",{width:n,height:r}))},onError:function(){return _(!0)}})),e.createElement(Hu,null,e.createElement("div",{style:{color:"#606770",fontSize:"12px",lineHeight:"11px",textTransform:"uppercase",textOverflow:"ellipsis"}},Z()(N,"hostname","")," | By ",SEOPRESS_DATA.SITENAME),e.createElement("div",{className:"sp-title"},C),e.createElement("div",{className:"sp-description"},P)),e.createElement(qu,null,Bu("Twitter Preview","wp-seopress")),e.createElement("p",null,Bu("This is what your post will look like in Twitter. You have to publish your post to get the Twitter Preview.","wp-seopress")),!Ht()(l)&&e.createElement(Uu,null,Bu("Your image ratio is:","wp-seopress")," ",e.createElement("strong",null,l),". ",Bu("The closer to 1 the better (with large card, 2 is better).","wp-seopress")),!Ht()(w)&&!w&&e.createElement(zu,{dangerouslySetInnerHTML:{__html:Bu("Minimun size for Twitter is <strong>144x144px</strong>. Please choose another image.","wp-seopress")}}),!Ht()(h)&&!h&&e.createElement(zu,null,Bu("File type not supported by Twitter. Please choose another image.","wp-seopress")," "),A&&O&&e.createElement(zu,null,Bu("File error. Please choose another image.","wp-seopress")," "),e.createElement($u,null,!A&&e.createElement(zu,null,Bu("Please choose an image","wp-seopress")),A&&e.createElement("img",{src:A,width:"524",height:"274",onLoad:function(e){var t=e.target,n=t.naturalWidth,r=t.naturalHeight;j(!1),u(Qu(n,r)),m(Xu(t.src)),x(Ku("twitter",{width:n,height:r}))}})),e.createElement(Yu,null,e.createElement("div",{className:"sp-title"},T),e.createElement("div",{className:"sp-description"},I),e.createElement("div",{style:{color:"#8899a6",fontSize:"14px",lineHeight:"11px",textTransform:"uppercase",textOverflow:"ellipsis",marginTop:5}},Z()(N,"hostname",""))))};var Zu=["htmlFor","className","children"];function ec(){return ec=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},ec.apply(this,arguments)}var tc=Ut.label.withConfig({componentId:"sc-243cxa-0"})(["&&&{display:table;margin:1em 0em;font-size:1em;font-weight:var(--fontWeight);div{display:flex;align-items:center;}&:hover{cursor:pointer;}}"]);const nc=function(t){var n=t.htmlFor,r=t.className,o=t.children,i=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,Zu);return e.createElement(tc,ec({htmlFor:n,className:Os()(r)},i),e.createElement("div",null,o))};var rc=["name","id","value"];const oc=function(t){var n=t.name,r=t.id,o=t.value,i=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,rc),a=(0,e.useRef)();return(0,e.useEffect)((function(){return jQuery(a.current).datepicker({onSelect:function(e){return i.setFieldValue(n,e)},defaultDate:o,dateFormat:"yy-mm-dd",beforeShow:function(e,t){jQuery("#ui-datepicker-div").addClass("seopress-ui-datepicker")}}),function(){jQuery(a.current).datepicker("destroy")}}),[]),e.createElement("input",{type:"text",ref:a,name:n,id:r,value:o,className:"form-input-date",onChange:function(e){i.setFieldValue(n,e.target.value)}})};var ic=["name","id","value"];function ac(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function sc(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ac(Object(n),!0).forEach((function(t){lc(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ac(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function lc(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var uc=wp.i18n.__,cc=["monday","tuesday","wednesday","thursday","friday","saturday","sunday"],fc=["00","01","02","03","04","05","06","07","08","09","10","11","12","13","14","15","16","17","18","19","20","21","22","23"],pc=["00","15","30","45","59"],dc=function(t){var n=t.name,r=t.currentValue,o=t.legacyValue,i=t.setFieldValue,a=t.index,s=t.day,l=function(e,t){i(n,sc(sc({},r),{},{seopress_local_business_opening_hours:r.seopress_local_business_opening_hours.map((function(n,r){return r!==a?n:sc(sc({},n),{},{am:sc(sc({},n.am),{},lc({},t,sc(sc({},n.am[t]),{},{hours:e})))})}))}))},u=function(e,t){i(n,sc(sc({},r),{},{seopress_local_business_opening_hours:r.seopress_local_business_opening_hours.map((function(n,r){return r!==a?n:sc(sc({},n),{},{am:sc(sc({},n.am),{},lc({},t,sc(sc({},n.am[t]),{},{mins:e})))})}))}))};return e.createElement("div",{className:"flex items-center",style:{marginBottom:8}},e.createElement(ju,{type:"checkbox",value:"1",checked:Z()(o,[a,"am","open"]),onChange:function(e){return t=e.target.checked,void i(n,sc(sc({},r),{},{seopress_local_business_opening_hours:r.seopress_local_business_opening_hours.map((function(e,n){return n!==a?e:sc(sc({},e),{},{am:sc(sc({},e.am),{},{open:t?"1":""})})}))}));var t}}),e.createElement("span",{style:{minWidth:"14%"}},uc("Open in the morning?","wp-seopress")),e.createElement(Nu,{name:"".concat(n,"[seopress_local_business_opening_hours][").concat(a,"][am][start][hours]"),value:Z()(o,[a,"am","start","hours"]),style:{marginLeft:10},onChange:function(e){l(e.target.value,"start")}},fc.map((function(t){return e.createElement("option",{key:"day_".concat(s,"_hour_am_start_").concat(t),value:t},t)}))),e.createElement("span",{style:{marginLeft:5,marginRight:5}},":"),e.createElement(Nu,{style:{marginRight:10},onChange:function(e){u(e.target.value,"start")},name:"".concat(n,"[seopress_local_business_opening_hours][").concat(a,"][am][start][mins]"),value:Z()(o,[a,"am","start","mins"])},pc.map((function(t){return e.createElement("option",{key:"day_".concat(s,"_min_am_start_").concat(t),value:t},t)}))),"-",e.createElement(Nu,{name:"".concat(n,"[seopress_local_business_opening_hours][").concat(a,"][am][end][hours]"),style:{marginLeft:10},value:Z()(o,[a,"am","end","hours"]),onChange:function(e){l(e.target.value,"end")}},fc.map((function(t){return e.createElement("option",{key:"day_".concat(s,"_hour_am_end_").concat(t),value:t},t)}))),e.createElement("span",{style:{marginLeft:5,marginRight:5}},":"),e.createElement(Nu,{name:"".concat(n,"[seopress_local_business_opening_hours][").concat(a,"][am][end][mins]"),value:Z()(o,[a,"am","end","mins"]),onChange:function(e){u(e.target.value,"end")}},pc.map((function(t){return e.createElement("option",{key:"day_".concat(s,"_min_am_end_").concat(t),value:t},t)}))))},hc=function(t){var n=t.name,r=t.currentValue,o=t.legacyValue,i=t.setFieldValue,a=t.index,s=t.day,l=function(e,t){i(n,sc(sc({},r),{},{seopress_local_business_opening_hours:r.seopress_local_business_opening_hours.map((function(n,r){return r!==a?n:sc(sc({},n),{},{pm:sc(sc({},n.pm),{},lc({},t,sc(sc({},n.pm[t]),{},{hours:e})))})}))}))},u=function(e,t){i(n,sc(sc({},r),{},{seopress_local_business_opening_hours:r.seopress_local_business_opening_hours.map((function(n,r){return r!==a?n:sc(sc({},n),{},{pm:sc(sc({},n.pm),{},lc({},t,sc(sc({},n.pm[t]),{},{mins:e})))})}))}))};return e.createElement("div",{className:"flex items-center",style:{marginBottom:8}},e.createElement(ju,{type:"checkbox",value:"1",checked:Z()(o,[a,"pm","open"]),onChange:function(e){return t=e.target.checked,void i(n,sc(sc({},r),{},{seopress_local_business_opening_hours:r.seopress_local_business_opening_hours.map((function(e,n){return n!==a?e:sc(sc({},e),{},{pm:sc(sc({},e.pm),{},{open:t?"1":""})})}))}));var t}}),e.createElement("span",{style:{minWidth:"14%"}},uc("Open in the afternoon?","wp-seopress")),e.createElement(Nu,{name:"".concat(n,"[seopress_local_business_opening_hours][").concat(a,"][pm][start][hours]"),value:Z()(o,[a,"pm","start","hours"]),style:{marginLeft:10},onChange:function(e){l(e.target.value,"start")}},fc.map((function(t){return e.createElement("option",{key:"day_".concat(s,"_hour_am_start_").concat(t),value:t},t)}))),e.createElement("span",{style:{marginLeft:5,marginRight:5}},":"),e.createElement(Nu,{style:{marginRight:10},onChange:function(e){u(e.target.value,"start")},name:"".concat(n,"[seopress_local_business_opening_hours][").concat(a,"][pm][start][hours]"),value:Z()(o,[a,"pm","start","mins"])},pc.map((function(t){return e.createElement("option",{key:"day_".concat(s,"_min_am_start_").concat(t),value:t},t)}))),"-",e.createElement(Nu,{name:"".concat(n,"[seopress_local_business_opening_hours][").concat(a,"][pm][end][hours]"),style:{marginLeft:10},value:Z()(o,[a,"pm","end","hours"]),onChange:function(e){l(e.target.value,"end")}},fc.map((function(t){return e.createElement("option",{key:"day_".concat(s,"_hour_am_end_").concat(t),value:t},t)}))),e.createElement("span",{style:{marginLeft:5,marginRight:5}},":"),e.createElement(Nu,{name:"".concat(n,"[seopress_local_business_opening_hours][").concat(a,"][pm][end][mins]"),value:Z()(o,[a,"pm","end","mins"]),onChange:function(e){u(e.target.value,"end")}},pc.map((function(t){return e.createElement("option",{key:"day_".concat(s,"_min_am_end_").concat(t),value:t},t)}))))};const mc=function(t){var n=t.name,r=(t.id,t.value),o=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,ic),i=function(e){return Tn()(e)||Ht()(e)?{seopress_local_business_opening_hours:[{am:{start:{hours:"00",mins:"00"},end:{hours:"00",mins:"00"}},pm:{start:{hours:"00",mins:"00"},end:{hours:"00",mins:"00"}}},{am:{start:{hours:"00",mins:"00"},end:{hours:"00",mins:"00"}},pm:{start:{hours:"00",mins:"00"},end:{hours:"00",mins:"00"}}},{am:{start:{hours:"00",mins:"00"},end:{hours:"00",mins:"00"}},pm:{start:{hours:"00",mins:"00"},end:{hours:"00",mins:"00"}}},{am:{start:{hours:"00",mins:"00"},end:{hours:"00",mins:"00"}},pm:{start:{hours:"00",mins:"00"},end:{hours:"00",mins:"00"}}},{am:{start:{hours:"00",mins:"00"},end:{hours:"00",mins:"00"}},pm:{start:{hours:"00",mins:"00"},end:{hours:"00",mins:"00"}}},{am:{start:{hours:"00",mins:"00"},end:{hours:"00",mins:"00"}},pm:{start:{hours:"00",mins:"00"},end:{hours:"00",mins:"00"}}},{am:{start:{hours:"00",mins:"00"},end:{hours:"00",mins:"00"}},pm:{start:{hours:"00",mins:"00"},end:{hours:"00",mins:"00"}}}]}:e}(r),a=Z()(i,"seopress_local_business_opening_hours");return e.createElement(e.Fragment,null,cc.map((function(t,r){return e.createElement("div",{key:"day_".concat(t)},e.createElement("p",null,t.toUpperCase()),e.createElement("div",{style:{marginBottom:4}},e.createElement(ju,{type:"checkbox",value:"1",checked:Z()(a,[r,"open"]),onChange:function(e){o.setFieldValue(n,sc(sc({},i),{},{seopress_local_business_opening_hours:i.seopress_local_business_opening_hours.map((function(t,n){return n!==r?t:sc(sc({},t),{},{open:e.target.checked?"1":""})}))}))}}),"Closed all the day?"),e.createElement(dc,{name:n,day:t,currentValue:i,legacyValue:a,setFieldValue:o.setFieldValue,index:r}),e.createElement(hc,{name:n,day:t,currentValue:i,legacyValue:a,setFieldValue:o.setFieldValue,index:r}))})))};function vc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function yc(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function gc(e,t,n){return t&&yc(e.prototype,t),n&&yc(e,n),e}function bc(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function wc(){return wc=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},wc.apply(this,arguments)}function xc(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Ec(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?xc(Object(n),!0).forEach((function(t){bc(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):xc(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Sc(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&kc(e,t)}function _c(e){return _c=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},_c(e)}function kc(e,t){return kc=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},kc(e,t)}function Oc(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function jc(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Lc(e,t){return!t||"object"!=typeof t&&"function"!=typeof t?jc(e):t}function Cc(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=_c(e);if(t){var o=_c(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return Lc(this,n)}}function Pc(e,t){if(e){if("string"==typeof e)return Ac(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Ac(e,t):void 0}}function Ac(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Tc=function e(t){var n=this,r=t.expanded,o=void 0===r?[]:r,i=t.allowMultipleExpanded,a=void 0!==i&&i,s=t.allowZeroExpanded,l=void 0!==s&&s;vc(this,e),bc(this,"expanded",void 0),bc(this,"allowMultipleExpanded",void 0),bc(this,"allowZeroExpanded",void 0),bc(this,"toggleExpanded",(function(e){return n.isItemDisabled(e)?n:n.isItemExpanded(e)?n.augment({expanded:n.expanded.filter((function(t){return t!==e}))}):n.augment({expanded:n.allowMultipleExpanded?[].concat((t=n.expanded,function(e){if(Array.isArray(e))return Ac(e)}(t)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(t)||Pc(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),[e]):[e]});var t})),bc(this,"isItemDisabled",(function(e){var t=n.isItemExpanded(e),r=1===n.expanded.length;return Boolean(t&&!n.allowZeroExpanded&&r)})),bc(this,"isItemExpanded",(function(e){return-1!==n.expanded.indexOf(e)})),bc(this,"getPanelAttributes",(function(e,t){var r=null!=t?t:n.isItemExpanded(e);return{role:n.allowMultipleExpanded?void 0:"region","aria-hidden":n.allowMultipleExpanded?!r:void 0,"aria-labelledby":n.getButtonId(e),id:n.getPanelId(e),hidden:!r||void 0}})),bc(this,"getHeadingAttributes",(function(){return{role:"heading"}})),bc(this,"getButtonAttributes",(function(e,t){var r=null!=t?t:n.isItemExpanded(e),o=n.isItemDisabled(e);return{id:n.getButtonId(e),"aria-disabled":o,"aria-expanded":r,"aria-controls":n.getPanelId(e),role:"button",tabIndex:0}})),bc(this,"getPanelId",(function(e){return"accordion__panel-".concat(e)})),bc(this,"getButtonId",(function(e){return"accordion__heading-".concat(e)})),bc(this,"augment",(function(t){return new e(Ec({expanded:n.expanded,allowMultipleExpanded:n.allowMultipleExpanded,allowZeroExpanded:n.allowZeroExpanded},t))})),this.expanded=o,this.allowMultipleExpanded=a,this.allowZeroExpanded=l},Ic=(0,e.createContext)(null),Nc=function(t){Sc(r,t);var n=Cc(r);function r(){var e;vc(this,r);for(var t=arguments.length,o=new Array(t),i=0;i<t;i++)o[i]=arguments[i];return bc(jc(e=n.call.apply(n,[this].concat(o))),"state",new Tc({expanded:e.props.preExpanded,allowMultipleExpanded:e.props.allowMultipleExpanded,allowZeroExpanded:e.props.allowZeroExpanded})),bc(jc(e),"toggleExpanded",(function(t){e.setState((function(e){return e.toggleExpanded(t)}),(function(){e.props.onChange&&e.props.onChange(e.state.expanded)}))})),bc(jc(e),"isItemDisabled",(function(t){return e.state.isItemDisabled(t)})),bc(jc(e),"isItemExpanded",(function(t){return e.state.isItemExpanded(t)})),bc(jc(e),"getPanelAttributes",(function(t,n){return e.state.getPanelAttributes(t,n)})),bc(jc(e),"getHeadingAttributes",(function(){return e.state.getHeadingAttributes()})),bc(jc(e),"getButtonAttributes",(function(t,n){return e.state.getButtonAttributes(t,n)})),e}return gc(r,[{key:"render",value:function(){var t=this.state,n=t.allowZeroExpanded,r=t.allowMultipleExpanded;return(0,e.createElement)(Ic.Provider,{value:{allowMultipleExpanded:r,allowZeroExpanded:n,toggleExpanded:this.toggleExpanded,isItemDisabled:this.isItemDisabled,isItemExpanded:this.isItemExpanded,getPanelAttributes:this.getPanelAttributes,getHeadingAttributes:this.getHeadingAttributes,getButtonAttributes:this.getButtonAttributes}},this.props.children||null)}}]),r}(e.PureComponent);bc(Nc,"defaultProps",{allowMultipleExpanded:!1,allowZeroExpanded:!1});var Fc,Rc=function(t){Sc(r,t);var n=Cc(r);function r(){var e;vc(this,r);for(var t=arguments.length,o=new Array(t),i=0;i<t;i++)o[i]=arguments[i];return bc(jc(e=n.call.apply(n,[this].concat(o))),"renderChildren",(function(t){return t?e.props.children(t):null})),e}return gc(r,[{key:"render",value:function(){return(0,e.createElement)(Ic.Consumer,null,this.renderChildren)}}]),r}(e.PureComponent),Mc=function(t){var n=t.className,r=void 0===n?"accordion":n,o=t.allowMultipleExpanded,i=t.allowZeroExpanded,a=t.onChange,s=t.preExpanded,l=Oc(t,["className","allowMultipleExpanded","allowZeroExpanded","onChange","preExpanded"]);return(0,e.createElement)(Nc,{preExpanded:s,allowMultipleExpanded:o,allowZeroExpanded:i,onChange:a},(0,e.createElement)("div",wc({"data-accordion-component":"Accordion",className:r},l)))};!function(e){e.Accordion="Accordion",e.AccordionItem="AccordionItem",e.AccordionItemButton="AccordionItemButton",e.AccordionItemHeading="AccordionItemHeading",e.AccordionItemPanel="AccordionItemPanel"}(Fc||(Fc={}));var Dc=Fc,zc=0,Uc=/[\u0009\u000a\u000c\u000d\u0020]/g;function Vc(e){return""!==e&&!Uc.test(e)||(console.error('uuid must be a valid HTML5 id but was given "'.concat(e,'", ASCII whitespaces are forbidden')),!1)}var Gc=(0,e.createContext)(null),Bc=function(t){var n=t.children,r=t.uuid,o=t.accordionContext,i=t.dangerouslySetExpanded,a=function(){o.toggleExpanded(r)},s=function(t){var o=null!=i?i:t.isItemExpanded(r),s=t.isItemDisabled(r),l=t.getPanelAttributes(r,i),u=t.getHeadingAttributes(r),c=t.getButtonAttributes(r,i);return(0,e.createElement)(Gc.Provider,{value:{uuid:r,expanded:o,disabled:s,toggleExpanded:a,panelAttributes:l,headingAttributes:u,buttonAttributes:c}},n)};return(0,e.createElement)(Rc,null,s)},Wc=function(t){return(0,e.createElement)(Rc,null,(function(n){return(0,e.createElement)(Bc,wc({},t,{accordionContext:n}))}))},Hc=function(t){var n=t.children,r=function(e){return e?n(e):null};return(0,e.createElement)(Gc.Consumer,null,r)},$c=function(t){var n,r,o,i=t.uuid,a=t.dangerouslySetExpanded,s=t.className,l=void 0===s?"accordion__item":s,u=t.activeClassName,c=Oc(t,["uuid","dangerouslySetExpanded","className","activeClassName"]),f=(r=(0,e.useState)((n=zc,zc+=1,"raa-".concat(n))),o=1,function(e){if(Array.isArray(e))return e}(r)||function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,i=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){o=!0,i=e}finally{try{r||null==s.return||s.return()}finally{if(o)throw i}}return n}}(r,o)||Pc(r,o)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}())[0],p=null!=i?i:f,d=function(t){var n=t.expanded&&u?u:l;return(0,e.createElement)("div",wc({"data-accordion-component":"AccordionItem",className:n},c))};return Vc(p.toString()),c.id&&Vc(c.id),(0,e.createElement)(Wc,{uuid:p,dangerouslySetExpanded:a},(0,e.createElement)(Hc,null,d))};function Yc(e){return e&&(e.matches('[data-accordion-component="Accordion"]')?e:Yc(e.parentElement))}function qc(e){var t=Yc(e);return t&&Array.from(t.querySelectorAll('[data-accordion-component="AccordionItemButton"]'))}$c.displayName=Dc.AccordionItem;var Qc=function(t){var n=t.toggleExpanded,r=t.className,o=void 0===r?"accordion__button":r,i=Oc(t,["toggleExpanded","className"]);return i.id&&Vc(i.id),(0,e.createElement)("div",wc({className:o},i,{role:"button",tabIndex:0,onClick:n,onKeyDown:function(e){var t,r,o,i=e.key;if("Enter"!==i&&" "!==i&&"Spacebar"!==i||(e.preventDefault(),n()),e.target instanceof HTMLElement)switch(i){case"Home":e.preventDefault(),function(e){var t=(qc(e)||[])[0];t&&t.focus()}(e.target);break;case"End":e.preventDefault(),t=e.target,r=qc(t)||[],(o=r[r.length-1])&&o.focus();break;case"ArrowLeft":case"ArrowUp":e.preventDefault(),function(e){var t=qc(e)||[],n=t.indexOf(e);if(-1!==n){var r=t[n-1];r&&r.focus()}}(e.target);break;case"ArrowRight":case"ArrowDown":e.preventDefault(),function(e){var t=qc(e)||[],n=t.indexOf(e);if(-1!==n){var r=t[n+1];r&&r.focus()}}(e.target)}},"data-accordion-component":"AccordionItemButton"}))},Xc=function(t){return(0,e.createElement)(Hc,null,(function(n){var r=n.toggleExpanded,o=n.buttonAttributes;return(0,e.createElement)(Qc,wc({toggleExpanded:r},t,o))}))},Kc=function(t){Sc(r,t);var n=Cc(r);function r(){var e;vc(this,r);for(var t=arguments.length,o=new Array(t),i=0;i<t;i++)o[i]=arguments[i];return bc(jc(e=n.call.apply(n,[this].concat(o))),"ref",void 0),bc(jc(e),"setRef",(function(t){e.ref=t})),e}return gc(r,[{key:"componentDidUpdate",value:function(){r.VALIDATE(this.ref)}},{key:"componentDidMount",value:function(){r.VALIDATE(this.ref)}},{key:"render",value:function(){return(0,e.createElement)("div",wc({"data-accordion-component":"AccordionItemHeading"},this.props,{ref:this.setRef}))}}],[{key:"VALIDATE",value:function(e){if(void 0===e)throw new Error("ref is undefined");if(1!==e.childElementCount||!e.firstElementChild||"AccordionItemButton"!==e.firstElementChild.getAttribute("data-accordion-component"))throw new Error("AccordionItemButton may contain only one child element, which must be an instance of AccordionItemButton.\n\nFrom the WAI-ARIA spec (https://www.w3.org/TR/wai-aria-practices-1.1/#accordion):\n\n“The button element is the only element inside the heading element. That is, if there are other visually persistent elements, they are not included inside the heading element.”\n\n")}}]),r}(e.PureComponent);bc(Kc,"defaultProps",{className:"accordion__heading","aria-level":3});var Jc=function(t){return(0,e.createElement)(Hc,null,(function(n){var r=n.headingAttributes;return t.id&&Vc(t.id),(0,e.createElement)(Kc,wc({},t,r))}))};Jc.displayName=Dc.AccordionItemHeading;var Zc=function(t){var n=t.className,r=void 0===n?"accordion__panel":n,o=t.region,i=t.id,a=Oc(t,["className","region","id"]),s=function(t){var n=t.panelAttributes;i&&Vc(i);var s=Ec(Ec({},n),{},{"aria-labelledby":o?n["aria-labelledby"]:void 0});return(0,e.createElement)("div",wc({"data-accordion-component":"AccordionItemPanel",className:r},a,s,{role:o?"region":void 0}))};return(0,e.createElement)(Hc,null,s)},ef=function(t){var n=t.children,r=function(t){var r=t.expanded,o=t.disabled;return(0,e.createElement)(e.Fragment,null,n({expanded:r,disabled:o}))};return(0,e.createElement)(Hc,null,r)};const tf=Ut.div.withConfig({componentId:"sc-417qdg-0"})(["&&&&{border:0;cursor:pointer;display:block;margin:0;position:relative;text-align:left;width:100%;align-items:center;border-top:1px solid var(--borderColorCard);}"]),nf=Ut.div.withConfig({componentId:"sc-uqs8yk-0"})(["&&&&{display:flex;align-items:center;padding:10px 0px;font-weight:bold;position:relative;text-transform:none;}"]);var rf=["name","id","value"];function of(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function af(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?of(Object(n),!0).forEach((function(t){sf(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):of(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function sf(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function lf(e,t){if(e){if("string"==typeof e)return uf(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?uf(e,t):void 0}}function uf(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var cf=wp.i18n.__;const ff=function(t){var n,r,o=t.name,i=(t.id,t.value),a=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,rf),s=(n=(0,e.useState)(Object.values(i)),r=2,function(e){if(Array.isArray(e))return e}(n)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i=[],a=!0,s=!1;try{for(n=n.call(e);!(a=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);a=!0);}catch(e){s=!0,o=e}finally{try{a||null==n.return||n.return()}finally{if(s)throw o}}return i}}(n,r)||lf(n,r)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),l=s[0],u=s[1];(0,e.useEffect)((function(){c(l)}),[l]);var c=(0,e.useCallback)(ls()((function(e){a.setFieldValue(o,e)}),200),[]);return e.createElement(e.Fragment,null,e.createElement(Mc,{style:{marginTop:10},allowMultipleExpanded:!0,allowZeroExpanded:!0},l.map((function(t,n){return e.createElement($c,{key:"".concat(o,"_").concat(n)},e.createElement(tf,null,e.createElement(Jc,null,e.createElement(Xc,null,e.createElement(nf,null,e.createElement("div",null,"#",n+1," - ",t.name),e.createElement("span",{className:"seopress-arrow","aria-hidden":"true"})))),e.createElement(Zc,null,e.createElement("p",{style:{fontWeight:"bold"}},cf("The title of the step (required)","wp-seopress")),e.createElement(ms,{type:"text",value:t.name,onChange:function(e){u(l.map((function(t,r){return r!==n?t:af(af({},t),{},{name:e.target.value})})))}}),e.createElement("p",{style:{fontWeight:"bold"}},cf("The text of your step (required)","wp-seopress")),e.createElement("textarea",{className:"form-textarea",value:t.text,style:{width:"100%"},onChange:function(e){u(l.map((function(t,r){return r!==n?t:af(af({},t),{},{text:e.target.value})})))}}),e.createElement("p",{style:{fontWeight:"bold"}},cf("Thumbnail","wp-seopress")),e.createElement("div",{className:"flex items-center justify-content"},e.createElement(ms,{type:"text",value:Z()(t,"image",""),onChange:function(e){u(l.map((function(t,r){return r!==n?t:af(af({},t),{},{image:e.target.value})})))}}),e.createElement("input",{type:"hidden",name:"image_attachment_id",value:Z()(t,"image_attachment_id","")}),e.createElement("input",{type:"hidden",name:"image_width",value:Z()(t,"image_width","")}),e.createElement("input",{type:"hidden",name:"image_height",value:Z()(t,"image_height","")}),e.createElement(To,{onClick:function(e){!function(e,t){e.preventDefault();var n=wp.media.frames.file_frame=wp.media({multiple:!1});n.on("select",(function(){var e=n.state().get("selection").first().toJSON();u(l.map((function(n,r){return r!==t?n:af(af({},n),{},{image:e.url,image_attachment_id:e.id,image_width:e.width,image_height:e.height})})))})),n.open()}(e,n)},className:"ms-2"},cf("Choose an image","wp-seopress"))),e.createElement(To,{as:"div",style:{borderColor:"#cc1818",color:"#cc1818",boxShadow:"inset 0 0 0 1px #cc1818",marginBottom:4},onClick:function(e){e.stopPropagation(),u(l.filter((function(e,t){return t!==n})))}},cf("Remove step","wp-seopress")))))}))),e.createElement(To,{as:"div",secondary:!0,style:{marginTom:12},onClick:function(e){e.stopPropagation(),u([].concat(function(e){return function(e){if(Array.isArray(e))return uf(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||lf(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}(l),[{name:"",text:""}]))}},cf("Add step","wp-seopress")))};var pf=["name","id","value"];function df(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function hf(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?df(Object(n),!0).forEach((function(t){mf(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):df(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function mf(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function vf(e,t){if(e){if("string"==typeof e)return yf(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?yf(e,t):void 0}}function yf(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var gf=wp.i18n.__;const bf=function(t){var n,r,o=t.name,i=(t.id,t.value),a=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,pf),s=(n=(0,e.useState)(Object.values(i)),r=2,function(e){if(Array.isArray(e))return e}(n)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i=[],a=!0,s=!1;try{for(n=n.call(e);!(a=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);a=!0);}catch(e){s=!0,o=e}finally{try{a||null==n.return||n.return()}finally{if(s)throw o}}return i}}(n,r)||vf(n,r)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),l=s[0],u=s[1];(0,e.useEffect)((function(){c(l)}),[l]);var c=(0,e.useCallback)(ls()((function(e){a.setFieldValue(o,e)}),200),[]);return e.createElement(e.Fragment,null,e.createElement(Mc,{style:{marginTop:10},allowMultipleExpanded:!0,allowZeroExpanded:!0},l.map((function(t,n){return e.createElement($c,{key:"".concat(o,"_").concat(n)},e.createElement(tf,null,e.createElement(Jc,null,e.createElement(Xc,null,e.createElement(nf,null,e.createElement("div",null,"#",n+1," - ",t.question.length>0?t.question:e.createElement("span",{style:{color:"red"}}," ",gf("Empty Question","wp-seopress")),0==t.answer.length&&e.createElement("span",{style:{color:"red"}}," - ",gf("Empty Answer","wp-seopress"))),e.createElement("span",{className:"seopress-arrow","aria-hidden":"true"})))),e.createElement(Zc,null,e.createElement("p",{style:{fontWeight:"bold"}},gf("Question (required)","wp-seopress")),e.createElement(ms,{type:"text",value:t.question,onChange:function(e){u(l.map((function(t,r){return r!==n?t:hf(hf({},t),{},{question:e.target.value})})))}}),e.createElement("p",{style:{fontWeight:"bold"}},gf("Answer (required)","wp-seopress")),e.createElement("textarea",{className:"form-textarea",style:{width:"100%"},value:t.answer,onChange:function(e){u(l.map((function(t,r){return r!==n?t:hf(hf({},t),{},{answer:e.target.value})})))}}),e.createElement(To,{style:{borderColor:"#cc1818",color:"#cc1818",boxShadow:"inset 0 0 0 1px #cc1818",marginBottom:4},onClick:function(e){e.stopPropagation(),u(l.filter((function(e,t){return t!==n})))}},gf("Remove question","wp-seopress")))))}))),e.createElement(To,{secondary:!0,style:{marginTom:12},onClick:function(e){e.stopPropagation(),u([].concat(function(e){return function(e){if(Array.isArray(e))return yf(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||vf(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}(l),[{question:"",answer:""}]))}},gf("Add question","wp-seopress")))};var wf=["name","id","value"];const xf=function(t){var n=t.name,r=t.id,o=t.value,i=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,wf);return e.createElement("input",{type:"time",name:n,id:r,value:o,className:"form-input-date",onChange:function(e){i.setFieldValue(n,e.target.value)}})};var Ef=["item","nameInput","values","itemValue","checkboxLegacyValue","emptyIcon","placeholder"];function Sf(){return Sf=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Sf.apply(this,arguments)}function _f(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}const kf=function(t){var n=t.item,r=t.nameInput,o=void 0===r?null:r,i=t.values,a=t.itemValue,s=void 0===a?null:a,l=t.checkboxLegacyValue,u=t.emptyIcon,c=void 0!==u&&u,f=t.placeholder,p=void 0===f?null:f,d=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,Ef),h=Ht()(o)?n.key:o,m=Ht()(s)?i[n.key]:s;(0,e.useEffect)((function(){!Ht()(m)&&!Tn()(m)||Ht()(n.value)||"checkbox"===n.type||d.setFieldValue(h,Z()(n,"value",""))}),[m]);var v,y={};return"upload"===n.type&&(_f(v={},"".concat(h,"_attachment_id"),Z()(i,"".concat(h,"_attachment_id"),"")),_f(v,"".concat(h,"_width"),Z()(i,"".concat(h,"_width"),"")),_f(v,"".concat(h,"_height"),Z()(i,"".concat(h,"_height"),"")),y=v),e.createElement(e.Fragment,null,"checkbox"!==n.type&&e.createElement(Ns,{htmlFor:h},n.label),n.description&&e.createElement("p",{className:"description",dangerouslySetInnerHTML:{__html:n.description}}),"checkbox"===n.type&&e.createElement(e.Fragment,null," ",e.createElement(nc,{htmlFor:h},e.createElement(Au,{id:h,name:h,checked:m||!1,className:Os()({"w-full":"input"===n.type||"select"===n.type||"textarea"===n.type}),value:l?"yes":"1",onChange:function(e){d.setFieldValue(h,e.target.checked)}}),n.label)),"input"===n.type&&e.createElement(e.Fragment,null,e.createElement(_s,{id:h,name:h,placeholder:p||n.placeholder,value:m||"",className:Os()("w-full",Z()(n,"class","")),emptyIcon:c,setFieldValue:d.setFieldValue,item:n})),"number"===n.type&&e.createElement(e.Fragment,null,e.createElement(_s,{id:h,name:h,placeholder:p||n.placeholder,type:"number",value:m||"",className:Os()("w-full",Z()(n,"class","")),emptyIcon:c,setFieldValue:d.setFieldValue,step:Z()(n,"step",null),min:Z()(n,"min",null),max:Z()(n,"max",null)})),"textarea"===n.type&&e.createElement(e.Fragment,null,e.createElement(Ps,{id:h,name:h,placeholder:p||n.placeholder,value:m||"",className:Os()("w-full",Z()(n,"class","")),style:{resize:"vertical"},item:n})),"select"===n.type&&e.createElement(e.Fragment,null,e.createElement(Du,Sf({id:h,name:h,placeholder:n.placeholder,value:m||"",className:Os()("w-full",Z()(n,"class","")),options:n.options,onChange:d.handleChange},d))),"upload"===n.type&&e.createElement(e.Fragment,null,e.createElement(Iu,Sf({id:h,name:h,placeholder:p||n.placeholder,value:m||"",className:Os()("w-full",Z()(n,"class","")),emptyIcon:c,setFieldValue:d.setFieldValue,combinedValuesForm:y},d))),"date"===n.type&&e.createElement(e.Fragment,null,e.createElement(oc,Sf({id:h,name:h,value:m||"",className:Os()("w-full",Z()(n,"class",""))},d))),"time"===n.type&&e.createElement(e.Fragment,null,e.createElement(xf,Sf({id:h,name:h,value:m||"",className:Os()("w-full",Z()(n,"class",""))},d))),"opening_hours"===n.type&&e.createElement(e.Fragment,null,e.createElement(mc,Sf({id:h,name:h,value:m||"",className:Os()("w-full",Z()(n,"class",""))},d))),"repeater_how_to"===n.type&&e.createElement(e.Fragment,null,e.createElement(ff,Sf({id:h,name:h,value:m||"",className:Os()("w-full",Z()(n,"class",""))},d))),"repeater_faq"===n.type&&e.createElement(e.Fragment,null,e.createElement(bf,Sf({id:h,name:h,value:m||"",className:Os()("w-full",Z()(n,"class",""))},d))))};function Of(e){return Of="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},Of(e)}var jf=["values"];function Lf(){return Lf=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Lf.apply(this,arguments)}function Cf(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Pf(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Cf(Object(n),!0).forEach((function(t){Af(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Cf(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Af(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Tf(){Tf=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,r="function"==typeof Symbol?Symbol:{},o=r.iterator||"@@iterator",i=r.asyncIterator||"@@asyncIterator",a=r.toStringTag||"@@toStringTag";function s(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{s({},"")}catch(e){s=function(e,t,n){return e[t]=n}}function l(e,t,n,r){var o=t&&t.prototype instanceof f?t:f,i=Object.create(o.prototype),a=new S(r||[]);return i._invoke=function(e,t,n){var r="suspendedStart";return function(o,i){if("executing"===r)throw new Error("Generator is already running");if("completed"===r){if("throw"===o)throw i;return{value:void 0,done:!0}}for(n.method=o,n.arg=i;;){var a=n.delegate;if(a){var s=w(a,n);if(s){if(s===c)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===r)throw r="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);r="executing";var l=u(e,t,n);if("normal"===l.type){if(r=n.done?"completed":"suspendedYield",l.arg===c)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(r="completed",n.method="throw",n.arg=l.arg)}}}(e,n,a),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var c={};function f(){}function p(){}function d(){}var h={};s(h,o,(function(){return this}));var m=Object.getPrototypeOf,v=m&&m(m(_([])));v&&v!==t&&n.call(v,o)&&(h=v);var y=d.prototype=f.prototype=Object.create(h);function g(e){["next","throw","return"].forEach((function(t){s(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function r(o,i,a,s){var l=u(e[o],e,i);if("throw"!==l.type){var c=l.arg,f=c.value;return f&&"object"==Of(f)&&n.call(f,"__await")?t.resolve(f.__await).then((function(e){r("next",e,a,s)}),(function(e){r("throw",e,a,s)})):t.resolve(f).then((function(e){c.value=e,a(c)}),(function(e){return r("throw",e,a,s)}))}s(l.arg)}var o;this._invoke=function(e,n){function i(){return new t((function(t,o){r(e,n,t,o)}))}return o=o?o.then(i,i):i()}}function w(e,t){var n=e.iterator[t.method];if(void 0===n){if(t.delegate=null,"throw"===t.method){if(e.iterator.return&&(t.method="return",t.arg=void 0,w(e,t),"throw"===t.method))return c;t.method="throw",t.arg=new TypeError("The iterator does not provide a 'throw' method")}return c}var r=u(n,e.iterator,t.arg);if("throw"===r.type)return t.method="throw",t.arg=r.arg,t.delegate=null,c;var o=r.arg;return o?o.done?(t[e.resultName]=o.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,c):o:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,c)}function x(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function E(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function S(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(x,this),this.reset(!0)}function _(e){if(e){var t=e[o];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var r=-1,i=function t(){for(;++r<e.length;)if(n.call(e,r))return t.value=e[r],t.done=!1,t;return t.value=void 0,t.done=!0,t};return i.next=i}}return{next:k}}function k(){return{value:void 0,done:!0}}return p.prototype=d,s(y,"constructor",d),s(d,"constructor",p),p.displayName=s(d,a,"GeneratorFunction"),e.isGeneratorFunction=function(e){var t="function"==typeof e&&e.constructor;return!!t&&(t===p||"GeneratorFunction"===(t.displayName||t.name))},e.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,d):(e.__proto__=d,s(e,a,"GeneratorFunction")),e.prototype=Object.create(y),e},e.awrap=function(e){return{__await:e}},g(b.prototype),s(b.prototype,i,(function(){return this})),e.AsyncIterator=b,e.async=function(t,n,r,o,i){void 0===i&&(i=Promise);var a=new b(l(t,n,r,o),i);return e.isGeneratorFunction(n)?a:a.next().then((function(e){return e.done?e.value:a.next()}))},g(y),s(y,a,"Generator"),s(y,o,(function(){return this})),s(y,"toString",(function(){return"[object Generator]"})),e.keys=function(e){var t=[];for(var n in e)t.push(n);return t.reverse(),function n(){for(;t.length;){var r=t.pop();if(r in e)return n.value=r,n.done=!1,n}return n.done=!0,n}},e.values=_,S.prototype={constructor:S,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(E),!e)for(var t in this)"t"===t.charAt(0)&&n.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=void 0)},stop:function(){this.done=!0;var e=this.tryEntries[0].completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var t=this;function r(n,r){return a.type="throw",a.arg=e,t.next=n,r&&(t.method="next",t.arg=void 0),!!r}for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i.completion;if("root"===i.tryLoc)return r("end");if(i.tryLoc<=this.prev){var s=n.call(i,"catchLoc"),l=n.call(i,"finallyLoc");if(s&&l){if(this.prev<i.catchLoc)return r(i.catchLoc,!0);if(this.prev<i.finallyLoc)return r(i.finallyLoc)}else if(s){if(this.prev<i.catchLoc)return r(i.catchLoc,!0)}else{if(!l)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return r(i.finallyLoc)}}}},abrupt:function(e,t){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===e||"continue"===e)&&i.tryLoc<=t&&t<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=e,a.arg=t,i?(this.method="next",this.next=i.finallyLoc,c):this.complete(a)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),c},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),E(n),c}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;E(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:_(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),c}},e}function If(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function Nf(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Ff=wp.i18n.__;const Rf=function(t){var n,r,o=t.mainBarRef,i=no(),a=function(e){var t=e.postId;return ao(Eu({postId:t}),{suspense:!0})}({postId:i}),s=a.data,l=a.mutate,u=a.abort,c=yn(),f=(n=(0,e.useState)(!1),r=2,function(e){if(Array.isArray(e))return e}(n)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i=[],a=!0,s=!1;try{for(n=n.call(e);!(a=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);a=!0);}catch(e){s=!0,o=e}finally{try{a||null==n.return||n.return()}finally{if(s)throw o}}return i}}(n,r)||function(e,t){if(e){if("string"==typeof e)return Nf(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Nf(e,t):void 0}}(n,r)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),p=f[0],d=f[1],h=(0,e.useContext)(Fn).actions;(0,e.useEffect)((function(){return function(){u()}}));var m=function(){var e,t=(e=Tf().mark((function e(t){return Tf().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return d(!0),e.next=3,Ou(i,t);case 3:e.sent,l(),d(!1),h.setMessage(Ff("Your settings have been saved.","wp-seopress"));case 7:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){If(i,r,o,a,s,"next",e)}function s(e){If(i,r,o,a,s,"throw",e)}a(void 0)}))});return function(e){return t.apply(this,arguments)}}(),v=function(e){switch(e.key){case"_seopress_social_fb_title":return te()(Z()(c,"og:title.value",[e.placeholder]));case"_seopress_social_fb_desc":return te()(Z()(c,"og:description.value",[e.placeholder]));case"_seopress_social_fb_img":return te()(Z()(c,"og:image.value",[e.placeholder]));case"_seopress_social_twitter_title":return te()(Z()(c,"twitter:title.value",[e.placeholder]));case"_seopress_social_twitter_desc":return te()(Z()(c,"twitter:description.value",[e.placeholder]));case"_seopress_social_twitter_img":return te()(Z()(c,"twitter:image.value",[e.placeholder]));default:return e.placeholder}},y=bu()(xu()(s,"key"),(function(e){return Z()(e,"value","")})),g=bu()(xu()(s,"key"),(function(e){var t=Z()(e,"value","");return Tn()(t)&&(t=v(e)),{key:e.key,placeholder:t}}));return e.createElement(e.Fragment,null,e.createElement(Qa,{enableReinitialize:!0,onSubmit:m,initialValues:y},(function(t){var n=t.values,r=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,jf);return e.createElement("div",{ref:o,className:"flex",style:{gap:32},tabIndex:"0"},e.createElement("div",{className:"w-1/2"},e.createElement(ts,null,e.createElement("p",{className:"description-alt desc-fb"},e.createElement("svg",{width:"24",height:"24",viewBox:"0 0 24 24",role:"img","aria-hidden":"true",focusable:"false"},e.createElement("path",{d:"M12 15.8c-3.7 0-6.8-3-6.8-6.8s3-6.8 6.8-6.8c3.7 0 6.8 3 6.8 6.8s-3.1 6.8-6.8 6.8zm0-12C9.1 3.8 6.8 6.1 6.8 9s2.4 5.2 5.2 5.2c2.9 0 5.2-2.4 5.2-5.2S14.9 3.8 12 3.8zM8 17.5h8V19H8zM10 20.5h4V22h-4z"})),Ff("LinkedIn, Instagram, WhatsApp and Pinterest use the same social metadata as Facebook. Twitter does the same if no Twitter cards tags are defined below.","wp-seopress")),s.map((function(t,o){if(t.visible){var i=function(e){switch(e){case"input":return _s;case"select":return Du;case"textarea":return Ps;case"upload":return Iu;case"checkbox":return Au}return null}(t.type);if(!Ht()(i))return e.createElement(e.Fragment,{key:"social_form_".concat(o)},"_seopress_social_fb_title"===t.key&&e.createElement(e.Fragment,null,e.createElement("div",null,e.createElement("span",{className:"dashicons dashicons-facebook-alt"})),e.createElement("div",null,e.createElement("span",{className:"dashicons dashicons-external"}),e.createElement("a",{href:"https://developers.facebook.com/tools/debug/sharing/?q={get_permalink(get_the_id())}",target:"_blank"},Ff("Ask Facebook to update its cache","wp-seopress")))),"_seopress_social_twitter_title"===t.key&&e.createElement(e.Fragment,null,e.createElement("div",{style:{marginTop:20,borderTop:"1px solid var(--borderColorLight)",paddingTop:20}},e.createElement("span",{className:"dashicons dashicons-twitter"})),e.createElement("div",null,e.createElement("span",{className:"dashicons dashicons-external"}),e.createElement("a",{href:"https://cards-dev.twitter.com/validator",target:"_blank"},Ff("Preview your Twitter card using the official validator","wp-seopress")))),e.createElement("div",{className:"mt-3"},e.createElement(kf,Lf({item:Pf(Pf({},t),{},{value:Z()(n,t.key,"")}),emptyIcon:"_seopress_social_fb_img"===t.key||"_seopress_social_twitter_img"===t.key,values:n,placeholder:v(t)},r))))}})),e.createElement("div",{className:"sp-fixed"},e.createElement(Ds,{loading:p,blue:!0,tabIndex:"0",onClick:function(){return m(n)}},Ff("Save","wp-seopress"))))),e.createElement("div",{className:"w-1/2"},e.createElement(Ju,{values:n,placeholders:g})))})))};var Mf=Object.prototype.hasOwnProperty;var Df=o(8975),zf=["data","values"];var Uf=wp.i18n.__;const Vf=function(t){var n=t.data,r=t.values,o=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,zf);return e.createElement(e.Fragment,null,e.createElement("p",{className:"description",dangerouslySetInnerHTML:{__html:(0,Df.sprintf)(Uf('You cannot uncheck a parameter? This is normal, and it‘s most likely defined in the <a href="%s">global settings of the plugin.</a>',"wp-seopress"),SEOPRESS_DATA.ADMIN_URL_TITLES)}}),!function(e){if(null==e)return!0;if(ji(e)&&(Gn(e)||"string"==typeof e||"function"==typeof e.splice||fi(e)||bi(e)||Qr(e)))return!e.length;var t=sa(e);if("[object Map]"==t||"[object Set]"==t)return!e.size;if(Si(e))return!Oi(e).length;for(var n in e)if(Mf.call(e,n))return!1;return!0}(n)&&n.map((function(t,n){return e.createElement(nc,{key:"robot_".concat(n)},e.createElement(Au,{name:t.key,disabled:!t.can_modify,checked:!(!r[t.key]&&"yes"!==r[t.key]),onChange:function(e){o.setFieldValue(t.key,e.target.checked?"yes":"")},value:"yes"}),function(t){switch(t){case"_seopress_robots_index":return e.createElement(e.Fragment,null,Uf("Do not display this page in search engine results / XML - HTML sitemaps","wp-seopress")," ",e.createElement("strong",null,"(noindex)"),e.createElement(Gl,{title:Uf('"noindex" robots meta tag',"wp-seopress"),description:e.createElement(e.Fragment,null,Uf('By checking this option, you will add a meta robots tag with the value "noindex".',"wp-seopress")," ",e.createElement("br",null)," ",Uf("Search engines will not index this URL in the search results.","wp-seopress")," "),code:'<meta name="robots" content="noindex" />'}));case"_seopress_robots_follow":return e.createElement(e.Fragment,null,Uf("Do not follow links for this page","wp-seopress")," ",e.createElement("strong",null,"(nofollow)"),e.createElement(Gl,{title:Uf('"nofollow" robots meta tag',"wp-seopress"),description:e.createElement(e.Fragment,null,Uf('By checking this option, you will add a meta robots tag with the value "nofollow".',"wp-seopress")," ",e.createElement("br",null)," ",Uf("Search engines will not follow links from this URL.","wp-seopress")),code:'<meta name="robots" content="nofollow" />'}));case"_seopress_robots_odp":return e.createElement(e.Fragment,null,Uf("Do not use Open Directory project metadata for titles or excerpts for this page","wp-seopress")," ",e.createElement("strong",null,"(noodp)"),e.createElement(Gl,{title:Uf('"noodp" robots meta tag',"wp-seopress"),description:e.createElement(e.Fragment,null,Uf('By checking this option, you will add a meta robots tag with the value "noodp".',"wp-seopress")," ",e.createElement("br",null)," ",Uf("Note that Google and Yahoo have stopped considering this tag since the closing of DMOZ directory.","wp-seopress")),code:'<meta name="robots" content="noodp" />'}));case"_seopress_robots_archive":return e.createElement(e.Fragment,null,Uf("Do not display a 'Cached' link in the Google search results","wp-seopress")," ",e.createElement("strong",null,"(noarchive)"),e.createElement(Gl,{title:Uf('"noarchive" robots meta tag',"wp-seopress"),description:e.createElement(e.Fragment,null,Uf('By checking this option, you will add a meta robots tag with the value "noarchive".',"wp-seopress")),code:'<meta name="robots" content="noarchive" />'}));case"_seopress_robots_snippet":return e.createElement(e.Fragment,null,Uf("Do not display a description in search results for this page","wp-seopress")," ",e.createElement("strong",null,"(nosnippet)"),e.createElement(Gl,{title:Uf('"nosnippet" robots meta tag',"wp-seopress"),description:e.createElement(e.Fragment,null,Uf('By checking this option, you will add a meta robots tag with the value "nosnippet".',"wp-seopress")),code:'<meta name="robots" content="nosnippet" />'}));case"_seopress_robots_imageindex":return e.createElement(e.Fragment,null,Uf("Do not index images for this page","wp-seopress")," ",e.createElement("strong",null," (noimageindex)"),e.createElement(Gl,{title:Uf('"noimageindex" robots meta tag',"wp-seopress"),description:e.createElement(e.Fragment,null,Uf('By checking this option, you will add a meta robots tag with the value "noimageindex".',"wp-seopress")," ",e.createElement("br",null)," ",Uf("Note that your images can always be indexed if they are linked from other pages.","wp-seopress")),code:'<meta name="google" content="noimageindex" />'}))}}(t.key))})))};var Gf=function(e){var t=e.postId;return"".concat(SEOPRESS_DATA.REST_URL,"seopress/v1/posts/").concat(t,"/meta-robot-settings")};const Bf=function(e){var t=e.postId;return ao(Gf({postId:t}),{suspense:!0})};function Wf(e){return Wf="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},Wf(e)}function Hf(){Hf=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,r="function"==typeof Symbol?Symbol:{},o=r.iterator||"@@iterator",i=r.asyncIterator||"@@asyncIterator",a=r.toStringTag||"@@toStringTag";function s(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{s({},"")}catch(e){s=function(e,t,n){return e[t]=n}}function l(e,t,n,r){var o=t&&t.prototype instanceof f?t:f,i=Object.create(o.prototype),a=new S(r||[]);return i._invoke=function(e,t,n){var r="suspendedStart";return function(o,i){if("executing"===r)throw new Error("Generator is already running");if("completed"===r){if("throw"===o)throw i;return{value:void 0,done:!0}}for(n.method=o,n.arg=i;;){var a=n.delegate;if(a){var s=w(a,n);if(s){if(s===c)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===r)throw r="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);r="executing";var l=u(e,t,n);if("normal"===l.type){if(r=n.done?"completed":"suspendedYield",l.arg===c)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(r="completed",n.method="throw",n.arg=l.arg)}}}(e,n,a),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var c={};function f(){}function p(){}function d(){}var h={};s(h,o,(function(){return this}));var m=Object.getPrototypeOf,v=m&&m(m(_([])));v&&v!==t&&n.call(v,o)&&(h=v);var y=d.prototype=f.prototype=Object.create(h);function g(e){["next","throw","return"].forEach((function(t){s(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function r(o,i,a,s){var l=u(e[o],e,i);if("throw"!==l.type){var c=l.arg,f=c.value;return f&&"object"==Wf(f)&&n.call(f,"__await")?t.resolve(f.__await).then((function(e){r("next",e,a,s)}),(function(e){r("throw",e,a,s)})):t.resolve(f).then((function(e){c.value=e,a(c)}),(function(e){return r("throw",e,a,s)}))}s(l.arg)}var o;this._invoke=function(e,n){function i(){return new t((function(t,o){r(e,n,t,o)}))}return o=o?o.then(i,i):i()}}function w(e,t){var n=e.iterator[t.method];if(void 0===n){if(t.delegate=null,"throw"===t.method){if(e.iterator.return&&(t.method="return",t.arg=void 0,w(e,t),"throw"===t.method))return c;t.method="throw",t.arg=new TypeError("The iterator does not provide a 'throw' method")}return c}var r=u(n,e.iterator,t.arg);if("throw"===r.type)return t.method="throw",t.arg=r.arg,t.delegate=null,c;var o=r.arg;return o?o.done?(t[e.resultName]=o.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,c):o:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,c)}function x(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function E(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function S(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(x,this),this.reset(!0)}function _(e){if(e){var t=e[o];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var r=-1,i=function t(){for(;++r<e.length;)if(n.call(e,r))return t.value=e[r],t.done=!1,t;return t.value=void 0,t.done=!0,t};return i.next=i}}return{next:k}}function k(){return{value:void 0,done:!0}}return p.prototype=d,s(y,"constructor",d),s(d,"constructor",p),p.displayName=s(d,a,"GeneratorFunction"),e.isGeneratorFunction=function(e){var t="function"==typeof e&&e.constructor;return!!t&&(t===p||"GeneratorFunction"===(t.displayName||t.name))},e.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,d):(e.__proto__=d,s(e,a,"GeneratorFunction")),e.prototype=Object.create(y),e},e.awrap=function(e){return{__await:e}},g(b.prototype),s(b.prototype,i,(function(){return this})),e.AsyncIterator=b,e.async=function(t,n,r,o,i){void 0===i&&(i=Promise);var a=new b(l(t,n,r,o),i);return e.isGeneratorFunction(n)?a:a.next().then((function(e){return e.done?e.value:a.next()}))},g(y),s(y,a,"Generator"),s(y,o,(function(){return this})),s(y,"toString",(function(){return"[object Generator]"})),e.keys=function(e){var t=[];for(var n in e)t.push(n);return t.reverse(),function n(){for(;t.length;){var r=t.pop();if(r in e)return n.value=r,n.done=!1,n}return n.done=!0,n}},e.values=_,S.prototype={constructor:S,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(E),!e)for(var t in this)"t"===t.charAt(0)&&n.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=void 0)},stop:function(){this.done=!0;var e=this.tryEntries[0].completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var t=this;function r(n,r){return a.type="throw",a.arg=e,t.next=n,r&&(t.method="next",t.arg=void 0),!!r}for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i.completion;if("root"===i.tryLoc)return r("end");if(i.tryLoc<=this.prev){var s=n.call(i,"catchLoc"),l=n.call(i,"finallyLoc");if(s&&l){if(this.prev<i.catchLoc)return r(i.catchLoc,!0);if(this.prev<i.finallyLoc)return r(i.finallyLoc)}else if(s){if(this.prev<i.catchLoc)return r(i.catchLoc,!0)}else{if(!l)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return r(i.finallyLoc)}}}},abrupt:function(e,t){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===e||"continue"===e)&&i.tryLoc<=t&&t<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=e,a.arg=t,i?(this.method="next",this.next=i.finallyLoc,c):this.complete(a)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),c},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),E(n),c}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;E(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:_(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),c}},e}function $f(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}var Yf=function(){var e,t=(e=Hf().mark((function e(t,n){var r;return Hf().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,fetch(Gf({postId:t}),{method:"PUT",headers:{"Content-Type":"application/json","X-WP-Nonce":Z()(SEOPRESS_DATA,"NONCE",null)},body:JSON.stringify(n)});case 2:return r=e.sent,e.next=5,r.json();case 5:return e.abrupt("return",e.sent);case 6:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){$f(i,r,o,a,s,"next",e)}function s(e){$f(i,r,o,a,s,"throw",e)}a(void 0)}))});return function(e,n){return t.apply(this,arguments)}}();function qf(e){return qf="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},qf(e)}var Qf=["values"];function Xf(){return Xf=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Xf.apply(this,arguments)}function Kf(){Kf=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,r="function"==typeof Symbol?Symbol:{},o=r.iterator||"@@iterator",i=r.asyncIterator||"@@asyncIterator",a=r.toStringTag||"@@toStringTag";function s(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{s({},"")}catch(e){s=function(e,t,n){return e[t]=n}}function l(e,t,n,r){var o=t&&t.prototype instanceof f?t:f,i=Object.create(o.prototype),a=new S(r||[]);return i._invoke=function(e,t,n){var r="suspendedStart";return function(o,i){if("executing"===r)throw new Error("Generator is already running");if("completed"===r){if("throw"===o)throw i;return{value:void 0,done:!0}}for(n.method=o,n.arg=i;;){var a=n.delegate;if(a){var s=w(a,n);if(s){if(s===c)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===r)throw r="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);r="executing";var l=u(e,t,n);if("normal"===l.type){if(r=n.done?"completed":"suspendedYield",l.arg===c)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(r="completed",n.method="throw",n.arg=l.arg)}}}(e,n,a),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var c={};function f(){}function p(){}function d(){}var h={};s(h,o,(function(){return this}));var m=Object.getPrototypeOf,v=m&&m(m(_([])));v&&v!==t&&n.call(v,o)&&(h=v);var y=d.prototype=f.prototype=Object.create(h);function g(e){["next","throw","return"].forEach((function(t){s(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function r(o,i,a,s){var l=u(e[o],e,i);if("throw"!==l.type){var c=l.arg,f=c.value;return f&&"object"==qf(f)&&n.call(f,"__await")?t.resolve(f.__await).then((function(e){r("next",e,a,s)}),(function(e){r("throw",e,a,s)})):t.resolve(f).then((function(e){c.value=e,a(c)}),(function(e){return r("throw",e,a,s)}))}s(l.arg)}var o;this._invoke=function(e,n){function i(){return new t((function(t,o){r(e,n,t,o)}))}return o=o?o.then(i,i):i()}}function w(e,t){var n=e.iterator[t.method];if(void 0===n){if(t.delegate=null,"throw"===t.method){if(e.iterator.return&&(t.method="return",t.arg=void 0,w(e,t),"throw"===t.method))return c;t.method="throw",t.arg=new TypeError("The iterator does not provide a 'throw' method")}return c}var r=u(n,e.iterator,t.arg);if("throw"===r.type)return t.method="throw",t.arg=r.arg,t.delegate=null,c;var o=r.arg;return o?o.done?(t[e.resultName]=o.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,c):o:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,c)}function x(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function E(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function S(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(x,this),this.reset(!0)}function _(e){if(e){var t=e[o];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var r=-1,i=function t(){for(;++r<e.length;)if(n.call(e,r))return t.value=e[r],t.done=!1,t;return t.value=void 0,t.done=!0,t};return i.next=i}}return{next:k}}function k(){return{value:void 0,done:!0}}return p.prototype=d,s(y,"constructor",d),s(d,"constructor",p),p.displayName=s(d,a,"GeneratorFunction"),e.isGeneratorFunction=function(e){var t="function"==typeof e&&e.constructor;return!!t&&(t===p||"GeneratorFunction"===(t.displayName||t.name))},e.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,d):(e.__proto__=d,s(e,a,"GeneratorFunction")),e.prototype=Object.create(y),e},e.awrap=function(e){return{__await:e}},g(b.prototype),s(b.prototype,i,(function(){return this})),e.AsyncIterator=b,e.async=function(t,n,r,o,i){void 0===i&&(i=Promise);var a=new b(l(t,n,r,o),i);return e.isGeneratorFunction(n)?a:a.next().then((function(e){return e.done?e.value:a.next()}))},g(y),s(y,a,"Generator"),s(y,o,(function(){return this})),s(y,"toString",(function(){return"[object Generator]"})),e.keys=function(e){var t=[];for(var n in e)t.push(n);return t.reverse(),function n(){for(;t.length;){var r=t.pop();if(r in e)return n.value=r,n.done=!1,n}return n.done=!0,n}},e.values=_,S.prototype={constructor:S,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(E),!e)for(var t in this)"t"===t.charAt(0)&&n.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=void 0)},stop:function(){this.done=!0;var e=this.tryEntries[0].completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var t=this;function r(n,r){return a.type="throw",a.arg=e,t.next=n,r&&(t.method="next",t.arg=void 0),!!r}for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i.completion;if("root"===i.tryLoc)return r("end");if(i.tryLoc<=this.prev){var s=n.call(i,"catchLoc"),l=n.call(i,"finallyLoc");if(s&&l){if(this.prev<i.catchLoc)return r(i.catchLoc,!0);if(this.prev<i.finallyLoc)return r(i.finallyLoc)}else if(s){if(this.prev<i.catchLoc)return r(i.catchLoc,!0)}else{if(!l)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return r(i.finallyLoc)}}}},abrupt:function(e,t){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===e||"continue"===e)&&i.tryLoc<=t&&t<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=e,a.arg=t,i?(this.method="next",this.next=i.finallyLoc,c):this.complete(a)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),c},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),E(n),c}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;E(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:_(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),c}},e}function Jf(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function Zf(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var ep=wp.i18n.__;const tp=function(t){var n=t.mainBarRef,r=no(),o=Bf({postId:r}),i=o.data,a=o.mutate,s=o.abort;(0,e.useEffect)((function(){return function(){s()}}));var l,u,c=(l=(0,e.useState)(!1),u=2,function(e){if(Array.isArray(e))return e}(l)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i=[],a=!0,s=!1;try{for(n=n.call(e);!(a=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);a=!0);}catch(e){s=!0,o=e}finally{try{a||null==n.return||n.return()}finally{if(s)throw o}}return i}}(l,u)||function(e,t){if(e){if("string"==typeof e)return Zf(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Zf(e,t):void 0}}(l,u)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),f=c[0],p=c[1],d=(0,e.useContext)(Fn).actions,h=function(){var e,t=(e=Kf().mark((function e(t){return Kf().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return p(!0),e.next=3,Yf(r,t);case 3:e.sent,a(),p(!1),d.setMessage(ep("Your settings have been saved.","wp-seopress"));case 7:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){Jf(i,r,o,a,s,"next",e)}function s(e){Jf(i,r,o,a,s,"throw",e)}a(void 0)}))});return function(e){return t.apply(this,arguments)}}();return e.createElement("div",{ref:n,tabIndex:"0"},e.createElement("p",{style:{fontWeight:"bold"}},ep("Meta robots settings","wp-seopress")),e.createElement(Qa,{enableReinitialize:!0,onSubmit:h,initialValues:{_seopress_robots_index:Z()(Yt()(i,{key:"_seopress_robots_index"}),"value",""),_seopress_robots_follow:Z()(Yt()(i,{key:"_seopress_robots_follow"}),"value",""),_seopress_robots_odp:Z()(Yt()(i,{key:"_seopress_robots_odp"}),"value",""),_seopress_robots_archive:Z()(Yt()(i,{key:"_seopress_robots_archive"}),"value",""),_seopress_robots_snippet:Z()(Yt()(i,{key:"_seopress_robots_snippet"}),"value",""),_seopress_robots_imageindex:Z()(Yt()(i,{key:"_seopress_robots_imageindex"}),"value",""),_seopress_robots_canonical:Z()(Yt()(i,{key:"_seopress_robots_canonical"}),"value",!1),_seopress_robots_primary_cat:Z()(Yt()(i,{key:"_seopress_robots_primary_cat"}),"value",!1),_seopress_robots_breadcrumbs:Z()(Yt()(i,{key:"_seopress_robots_breadcrumbs"}),"value",!1)}},(function(t){var n=t.values,r=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,Qf),o=["_seopress_robots_index","_seopress_robots_follow","_seopress_robots_odp","_seopress_robots_archive","_seopress_robots_snippet","_seopress_robots_imageindex"],a=Yt()(i,{key:"_seopress_robots_canonical"}),s=Yt()(i,{key:"_seopress_robots_primary_cat"}),l=Yt()(i,{key:"_seopress_robots_breadcrumbs"});return e.createElement(ts,null,e.createElement(Vf,Xf({data:i.filter((function(e){return o.indexOf(e.key)>=0})),values:n},r)),a&&a.visible&&e.createElement("div",{className:"mt-3"},e.createElement(Ns,{htmlFor:a.key},a.label,e.createElement(Gl,{title:ep("Canonical URL","wp-seopress"),description:e.createElement(e.Fragment,null,ep("A canonical URL is the URL of the page that Google thinks is most representative from a set of duplicate pages on your site.","wp-seopress")," ",e.createElement("br",null)," ",ep("For example, if you have URLs for the same page (for example: example.com?dress=1234 and example.com/dresses/1234), Google chooses one as canonical.","wp-seopress")," ",e.createElement("br",null)," ",ep("Note that the pages do not need to be absolutely identical; minor changes in sorting or filtering of list pages do not make the page unique (for example, sorting by price or filtering by item color). The canonical can be in a different domain than a duplicate.","wp-seopress")),code:'<link rel="canonical" href="https://www.example.com/my-post-url/" />'})),e.createElement(_s,{id:a.key,name:a.key,placeholder:a.placeholder,value:n[a.key]||"",className:"w-full",setFieldValue:r.setFieldValue})),s&&!Tn()(Z()(s,"options",[]))&&s.visible&&e.createElement("div",{className:"mt-3"},e.createElement(Ns,{htmlFor:s.key},s.label),e.createElement(Du,Xf({id:s.key,name:s.key,value:n[s.key]||"none",options:Z()(s,"options",[]).map((function(e){if(!Ht()(e.name)&&!Ht()(e.term_id))return{label:e.name,value:e.term_id}}))},r))),l&&l.visible&&e.createElement("div",{className:"mt-3"},e.createElement(Ns,{htmlFor:l.key},l.label),l.description&&e.createElement("p",{className:"description"},l.description),e.createElement(_s,{id:l.key,name:l.key,placeholder:l.placeholder,value:n[l.key]||"",className:"w-full",setFieldValue:r.setFieldValue})),e.createElement("div",{className:"sp-fixed"},e.createElement(Ds,{blue:!0,loading:f,onClick:function(){return h(n)}},ep("Save","wp-seopress"))))})))};var np=function(e){var t=e.postId;return"".concat(SEOPRESS_DATA.REST_URL,"seopress/v1/posts/").concat(t,"/redirection-settings")};function rp(e){return rp="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},rp(e)}function op(){op=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,r="function"==typeof Symbol?Symbol:{},o=r.iterator||"@@iterator",i=r.asyncIterator||"@@asyncIterator",a=r.toStringTag||"@@toStringTag";function s(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{s({},"")}catch(e){s=function(e,t,n){return e[t]=n}}function l(e,t,n,r){var o=t&&t.prototype instanceof f?t:f,i=Object.create(o.prototype),a=new S(r||[]);return i._invoke=function(e,t,n){var r="suspendedStart";return function(o,i){if("executing"===r)throw new Error("Generator is already running");if("completed"===r){if("throw"===o)throw i;return{value:void 0,done:!0}}for(n.method=o,n.arg=i;;){var a=n.delegate;if(a){var s=w(a,n);if(s){if(s===c)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===r)throw r="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);r="executing";var l=u(e,t,n);if("normal"===l.type){if(r=n.done?"completed":"suspendedYield",l.arg===c)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(r="completed",n.method="throw",n.arg=l.arg)}}}(e,n,a),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var c={};function f(){}function p(){}function d(){}var h={};s(h,o,(function(){return this}));var m=Object.getPrototypeOf,v=m&&m(m(_([])));v&&v!==t&&n.call(v,o)&&(h=v);var y=d.prototype=f.prototype=Object.create(h);function g(e){["next","throw","return"].forEach((function(t){s(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function r(o,i,a,s){var l=u(e[o],e,i);if("throw"!==l.type){var c=l.arg,f=c.value;return f&&"object"==rp(f)&&n.call(f,"__await")?t.resolve(f.__await).then((function(e){r("next",e,a,s)}),(function(e){r("throw",e,a,s)})):t.resolve(f).then((function(e){c.value=e,a(c)}),(function(e){return r("throw",e,a,s)}))}s(l.arg)}var o;this._invoke=function(e,n){function i(){return new t((function(t,o){r(e,n,t,o)}))}return o=o?o.then(i,i):i()}}function w(e,t){var n=e.iterator[t.method];if(void 0===n){if(t.delegate=null,"throw"===t.method){if(e.iterator.return&&(t.method="return",t.arg=void 0,w(e,t),"throw"===t.method))return c;t.method="throw",t.arg=new TypeError("The iterator does not provide a 'throw' method")}return c}var r=u(n,e.iterator,t.arg);if("throw"===r.type)return t.method="throw",t.arg=r.arg,t.delegate=null,c;var o=r.arg;return o?o.done?(t[e.resultName]=o.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,c):o:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,c)}function x(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function E(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function S(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(x,this),this.reset(!0)}function _(e){if(e){var t=e[o];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var r=-1,i=function t(){for(;++r<e.length;)if(n.call(e,r))return t.value=e[r],t.done=!1,t;return t.value=void 0,t.done=!0,t};return i.next=i}}return{next:k}}function k(){return{value:void 0,done:!0}}return p.prototype=d,s(y,"constructor",d),s(d,"constructor",p),p.displayName=s(d,a,"GeneratorFunction"),e.isGeneratorFunction=function(e){var t="function"==typeof e&&e.constructor;return!!t&&(t===p||"GeneratorFunction"===(t.displayName||t.name))},e.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,d):(e.__proto__=d,s(e,a,"GeneratorFunction")),e.prototype=Object.create(y),e},e.awrap=function(e){return{__await:e}},g(b.prototype),s(b.prototype,i,(function(){return this})),e.AsyncIterator=b,e.async=function(t,n,r,o,i){void 0===i&&(i=Promise);var a=new b(l(t,n,r,o),i);return e.isGeneratorFunction(n)?a:a.next().then((function(e){return e.done?e.value:a.next()}))},g(y),s(y,a,"Generator"),s(y,o,(function(){return this})),s(y,"toString",(function(){return"[object Generator]"})),e.keys=function(e){var t=[];for(var n in e)t.push(n);return t.reverse(),function n(){for(;t.length;){var r=t.pop();if(r in e)return n.value=r,n.done=!1,n}return n.done=!0,n}},e.values=_,S.prototype={constructor:S,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(E),!e)for(var t in this)"t"===t.charAt(0)&&n.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=void 0)},stop:function(){this.done=!0;var e=this.tryEntries[0].completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var t=this;function r(n,r){return a.type="throw",a.arg=e,t.next=n,r&&(t.method="next",t.arg=void 0),!!r}for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i.completion;if("root"===i.tryLoc)return r("end");if(i.tryLoc<=this.prev){var s=n.call(i,"catchLoc"),l=n.call(i,"finallyLoc");if(s&&l){if(this.prev<i.catchLoc)return r(i.catchLoc,!0);if(this.prev<i.finallyLoc)return r(i.finallyLoc)}else if(s){if(this.prev<i.catchLoc)return r(i.catchLoc,!0)}else{if(!l)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return r(i.finallyLoc)}}}},abrupt:function(e,t){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===e||"continue"===e)&&i.tryLoc<=t&&t<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=e,a.arg=t,i?(this.method="next",this.next=i.finallyLoc,c):this.complete(a)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),c},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),E(n),c}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;E(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:_(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),c}},e}function ip(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}var ap=function(){var e,t=(e=op().mark((function e(t,n){var r;return op().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,fetch(np({postId:t}),{method:"PUT",headers:{"Content-Type":"application/json","X-WP-Nonce":Z()(SEOPRESS_DATA,"NONCE",null)},body:JSON.stringify(n)});case 2:return r=e.sent,e.next=5,r.json();case 5:return e.abrupt("return",e.sent);case 6:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){ip(i,r,o,a,s,"next",e)}function s(e){ip(i,r,o,a,s,"throw",e)}a(void 0)}))});return function(e,n){return t.apply(this,arguments)}}();wp.i18n.__;const sp=function(t){var n=t.items,r=t.handleChoiceItem,o=void 0===r?function(){}:r;return e.createElement(e.Fragment,null,e.createElement("div",{className:"flex items-center flex-wrap"},e.createElement("div",{className:"relative",style:{alignSelf:"start"}},e.createElement(El,null,n.map((function(t){var n=Z()(t,"item.name",Z()(t,"name","")),r=Z()(t,"item.input",Z()(t,"input",""));return e.createElement(kl,{key:n,onClick:function(){o(r)},onKeyUp:function(e){27===e.keyCode&&e.preventDefault(),13===e.keyCode&&(e.preventDefault(),o(r))},tabIndex:"0"},!Tn()(n)&&e.createElement(Sl,null,n),!Tn()(r)&&e.createElement(_l,null,r))}))))))};function lp(e){return lp="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},lp(e)}var up=["data","values","handleOnSubmit","loading"],cp=["values"];function fp(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function pp(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?fp(Object(n),!0).forEach((function(t){dp(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):fp(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function dp(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function hp(){return hp=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},hp.apply(this,arguments)}function mp(){mp=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,r="function"==typeof Symbol?Symbol:{},o=r.iterator||"@@iterator",i=r.asyncIterator||"@@asyncIterator",a=r.toStringTag||"@@toStringTag";function s(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{s({},"")}catch(e){s=function(e,t,n){return e[t]=n}}function l(e,t,n,r){var o=t&&t.prototype instanceof f?t:f,i=Object.create(o.prototype),a=new S(r||[]);return i._invoke=function(e,t,n){var r="suspendedStart";return function(o,i){if("executing"===r)throw new Error("Generator is already running");if("completed"===r){if("throw"===o)throw i;return{value:void 0,done:!0}}for(n.method=o,n.arg=i;;){var a=n.delegate;if(a){var s=w(a,n);if(s){if(s===c)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===r)throw r="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);r="executing";var l=u(e,t,n);if("normal"===l.type){if(r=n.done?"completed":"suspendedYield",l.arg===c)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(r="completed",n.method="throw",n.arg=l.arg)}}}(e,n,a),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var c={};function f(){}function p(){}function d(){}var h={};s(h,o,(function(){return this}));var m=Object.getPrototypeOf,v=m&&m(m(_([])));v&&v!==t&&n.call(v,o)&&(h=v);var y=d.prototype=f.prototype=Object.create(h);function g(e){["next","throw","return"].forEach((function(t){s(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function r(o,i,a,s){var l=u(e[o],e,i);if("throw"!==l.type){var c=l.arg,f=c.value;return f&&"object"==lp(f)&&n.call(f,"__await")?t.resolve(f.__await).then((function(e){r("next",e,a,s)}),(function(e){r("throw",e,a,s)})):t.resolve(f).then((function(e){c.value=e,a(c)}),(function(e){return r("throw",e,a,s)}))}s(l.arg)}var o;this._invoke=function(e,n){function i(){return new t((function(t,o){r(e,n,t,o)}))}return o=o?o.then(i,i):i()}}function w(e,t){var n=e.iterator[t.method];if(void 0===n){if(t.delegate=null,"throw"===t.method){if(e.iterator.return&&(t.method="return",t.arg=void 0,w(e,t),"throw"===t.method))return c;t.method="throw",t.arg=new TypeError("The iterator does not provide a 'throw' method")}return c}var r=u(n,e.iterator,t.arg);if("throw"===r.type)return t.method="throw",t.arg=r.arg,t.delegate=null,c;var o=r.arg;return o?o.done?(t[e.resultName]=o.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,c):o:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,c)}function x(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function E(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function S(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(x,this),this.reset(!0)}function _(e){if(e){var t=e[o];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var r=-1,i=function t(){for(;++r<e.length;)if(n.call(e,r))return t.value=e[r],t.done=!1,t;return t.value=void 0,t.done=!0,t};return i.next=i}}return{next:k}}function k(){return{value:void 0,done:!0}}return p.prototype=d,s(y,"constructor",d),s(d,"constructor",p),p.displayName=s(d,a,"GeneratorFunction"),e.isGeneratorFunction=function(e){var t="function"==typeof e&&e.constructor;return!!t&&(t===p||"GeneratorFunction"===(t.displayName||t.name))},e.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,d):(e.__proto__=d,s(e,a,"GeneratorFunction")),e.prototype=Object.create(y),e},e.awrap=function(e){return{__await:e}},g(b.prototype),s(b.prototype,i,(function(){return this})),e.AsyncIterator=b,e.async=function(t,n,r,o,i){void 0===i&&(i=Promise);var a=new b(l(t,n,r,o),i);return e.isGeneratorFunction(n)?a:a.next().then((function(e){return e.done?e.value:a.next()}))},g(y),s(y,a,"Generator"),s(y,o,(function(){return this})),s(y,"toString",(function(){return"[object Generator]"})),e.keys=function(e){var t=[];for(var n in e)t.push(n);return t.reverse(),function n(){for(;t.length;){var r=t.pop();if(r in e)return n.value=r,n.done=!1,n}return n.done=!0,n}},e.values=_,S.prototype={constructor:S,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(E),!e)for(var t in this)"t"===t.charAt(0)&&n.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=void 0)},stop:function(){this.done=!0;var e=this.tryEntries[0].completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var t=this;function r(n,r){return a.type="throw",a.arg=e,t.next=n,r&&(t.method="next",t.arg=void 0),!!r}for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i.completion;if("root"===i.tryLoc)return r("end");if(i.tryLoc<=this.prev){var s=n.call(i,"catchLoc"),l=n.call(i,"finallyLoc");if(s&&l){if(this.prev<i.catchLoc)return r(i.catchLoc,!0);if(this.prev<i.finallyLoc)return r(i.finallyLoc)}else if(s){if(this.prev<i.catchLoc)return r(i.catchLoc,!0)}else{if(!l)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return r(i.finallyLoc)}}}},abrupt:function(e,t){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===e||"continue"===e)&&i.tryLoc<=t&&t<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=e,a.arg=t,i?(this.method="next",this.next=i.finallyLoc,c):this.complete(a)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),c},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),E(n),c}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;E(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:_(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),c}},e}function vp(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function yp(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){vp(i,r,o,a,s,"next",e)}function s(e){vp(i,r,o,a,s,"throw",e)}a(void 0)}))}}function gp(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i=[],a=!0,s=!1;try{for(n=n.call(e);!(a=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);a=!0);}catch(e){s=!0,o=e}finally{try{a||null==n.return||n.return()}finally{if(s)throw o}}return i}}(e,t)||function(e,t){if(e){if("string"==typeof e)return bp(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?bp(e,t):void 0}}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function bp(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function xp(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}var Ep=wp.i18n.__,Sp=function(t){var n=t.data,r=t.values,o=t.handleOnSubmit,i=t.loading,a=xp(t,up),s=Da(Wa().values,"_seopress_redirections_value"),l=gp((0,e.useState)([]),2),u=l[0],c=l[1],f=gp((0,e.useState)(!1),2),p=f[0],d=f[1],h=gp((0,e.useState)(s),2),m=h[0],v=h[1],y=(0,e.useRef)(!0),g=(0,e.useRef)();jl(g,(function(){return d(!1)}));var b=(0,e.useCallback)(ls()(function(){var e=yp(mp().mark((function e(t){var n,r;return mp().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,fetch("".concat(SEOPRESS_DATA.REST_URL,"seopress/v1/search-url?url=").concat(t));case 2:return n=e.sent,e.next=5,n.json();case 5:r=e.sent,c(r.map((function(e){return{name:e.post_title,input:e.guid}}))),d(!0);case 8:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),200),[]);return(0,e.useEffect)((function(){y.current?y.current=!1:(a.setFieldValue("_seopress_redirections_value",m),Tn()(m)||m.length<3||b(m))}),[m]),e.createElement(ts,null,n.map((function(t,n){if(t.visible)return e.createElement(e.Fragment,{key:"social_form_".concat(n)},e.createElement("div",{className:"mt-3"},"_seopress_redirections_value"!==t.key&&e.createElement(kf,hp({item:t,values:r},a)),"_seopress_redirections_value"===t.key&&e.createElement(e.Fragment,null,e.createElement(Ns,{htmlFor:t.key},t.label),e.createElement(vs,{name:t.key,id:t.key,type:"text",value:m,placeholder:Z()(t,"placeholder",""),onChange:function(e){v(e.target.value)},style:{width:"100%"}}),p&&!Tn()(u)&&e.createElement("div",{ref:g},e.createElement(sp,{handleChoiceItem:function(e){v(e),d(!1)},items:u})))))})),e.createElement("div",{className:"sp-fixed"},e.createElement(Ds,{blue:!0,loading:i,onClick:function(){return o(r)}},Ep("Save","wp-seopress"))))};const _p=function(t){var n=t.mainBarRef,r=no(),o=function(e){var t=e.postId;return ao(np({postId:t}),{suspense:!0})}({postId:r}),i=o.data,a=o.mutate,s=o.abort;(0,e.useEffect)((function(){return function(){s()}}));var l=gp((0,e.useState)(!1),2),u=l[0],c=l[1],f=(0,e.useContext)(Fn).actions,p=function(){var e=yp(mp().mark((function e(t){return mp().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return c(!0),e.next=3,ap(r,pp(pp({},t),{},{_seopress_redirections_enabled:t._seopress_redirections_enabled?"yes":""}));case 3:e.sent,a(),c(!1),f.setMessage(Ep("Your settings have been saved.","wp-seopress"));case 7:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),d=bu()(xu()(i,"key"),(function(e){return Z()(e,"value",!1)}));return e.createElement("div",{ref:n,tabIndex:"0"},e.createElement(Qa,{enableReinitialize:!0,onSubmit:p,initialValues:d},(function(t){var n=t.values,r=xp(t,cp);return e.createElement(Sp,hp({data:i,values:n,handleOnSubmit:p,loading:u},r))})))};var kp=o(8721),Op=o.n(kp);function jp(){return jp=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},jp.apply(this,arguments)}var Lp=function(){function e(e){var t=this;this._insertTag=function(e){var n;n=0===t.tags.length?t.insertionPoint?t.insertionPoint.nextSibling:t.prepend?t.container.firstChild:t.before:t.tags[t.tags.length-1].nextSibling,t.container.insertBefore(e,n),t.tags.push(e)},this.isSpeedy=void 0===e.speedy||e.speedy,this.tags=[],this.ctr=0,this.nonce=e.nonce,this.key=e.key,this.container=e.container,this.prepend=e.prepend,this.insertionPoint=e.insertionPoint,this.before=null}var t=e.prototype;return t.hydrate=function(e){e.forEach(this._insertTag)},t.insert=function(e){this.ctr%(this.isSpeedy?65e3:1)==0&&this._insertTag(function(e){var t=document.createElement("style");return t.setAttribute("data-emotion",e.key),void 0!==e.nonce&&t.setAttribute("nonce",e.nonce),t.appendChild(document.createTextNode("")),t.setAttribute("data-s",""),t}(this));var t=this.tags[this.tags.length-1];if(this.isSpeedy){var n=function(e){if(e.sheet)return e.sheet;for(var t=0;t<document.styleSheets.length;t++)if(document.styleSheets[t].ownerNode===e)return document.styleSheets[t]}(t);try{n.insertRule(e,n.cssRules.length)}catch(e){}}else t.appendChild(document.createTextNode(e));this.ctr++},t.flush=function(){this.tags.forEach((function(e){return e.parentNode&&e.parentNode.removeChild(e)})),this.tags=[],this.ctr=0},e}(),Cp=Math.abs,Pp=String.fromCharCode,Ap=Object.assign;function Tp(e){return e.trim()}function Ip(e,t,n){return e.replace(t,n)}function Np(e,t){return e.indexOf(t)}function Fp(e,t){return 0|e.charCodeAt(t)}function Rp(e,t,n){return e.slice(t,n)}function Mp(e){return e.length}function Dp(e){return e.length}function zp(e,t){return t.push(e),e}var Up=1,Vp=1,Gp=0,Bp=0,Wp=0,Hp="";function $p(e,t,n,r,o,i,a){return{value:e,root:t,parent:n,type:r,props:o,children:i,line:Up,column:Vp,length:a,return:""}}function Yp(e,t){return Ap($p("",null,null,"",null,null,0),e,{length:-e.length},t)}function qp(){return Wp=Bp>0?Fp(Hp,--Bp):0,Vp--,10===Wp&&(Vp=1,Up--),Wp}function Qp(){return Wp=Bp<Gp?Fp(Hp,Bp++):0,Vp++,10===Wp&&(Vp=1,Up++),Wp}function Xp(){return Fp(Hp,Bp)}function Kp(){return Bp}function Jp(e,t){return Rp(Hp,e,t)}function Zp(e){switch(e){case 0:case 9:case 10:case 13:case 32:return 5;case 33:case 43:case 44:case 47:case 62:case 64:case 126:case 59:case 123:case 125:return 4;case 58:return 3;case 34:case 39:case 40:case 91:return 2;case 41:case 93:return 1}return 0}function ed(e){return Up=Vp=1,Gp=Mp(Hp=e),Bp=0,[]}function td(e){return Hp="",e}function nd(e){return Tp(Jp(Bp-1,id(91===e?e+2:40===e?e+1:e)))}function rd(e){for(;(Wp=Xp())&&Wp<33;)Qp();return Zp(e)>2||Zp(Wp)>3?"":" "}function od(e,t){for(;--t&&Qp()&&!(Wp<48||Wp>102||Wp>57&&Wp<65||Wp>70&&Wp<97););return Jp(e,Kp()+(t<6&&32==Xp()&&32==Qp()))}function id(e){for(;Qp();)switch(Wp){case e:return Bp;case 34:case 39:34!==e&&39!==e&&id(Wp);break;case 40:41===e&&id(e);break;case 92:Qp()}return Bp}function ad(e,t){for(;Qp()&&e+Wp!==57&&(e+Wp!==84||47!==Xp()););return"/*"+Jp(t,Bp-1)+"*"+Pp(47===e?e:Qp())}function sd(e){for(;!Zp(Xp());)Qp();return Jp(e,Bp)}var ld="-ms-",ud="-moz-",cd="-webkit-",fd="comm",pd="rule",dd="decl",hd="@keyframes";function md(e,t){for(var n="",r=Dp(e),o=0;o<r;o++)n+=t(e[o],o,e,t)||"";return n}function vd(e,t,n,r){switch(e.type){case"@import":case dd:return e.return=e.return||e.value;case fd:return"";case hd:return e.return=e.value+"{"+md(e.children,r)+"}";case pd:e.value=e.props.join(",")}return Mp(n=md(e.children,r))?e.return=e.value+"{"+n+"}":""}function yd(e,t){switch(function(e,t){return(((t<<2^Fp(e,0))<<2^Fp(e,1))<<2^Fp(e,2))<<2^Fp(e,3)}(e,t)){case 5103:return cd+"print-"+e+e;case 5737:case 4201:case 3177:case 3433:case 1641:case 4457:case 2921:case 5572:case 6356:case 5844:case 3191:case 6645:case 3005:case 6391:case 5879:case 5623:case 6135:case 4599:case 4855:case 4215:case 6389:case 5109:case 5365:case 5621:case 3829:return cd+e+e;case 5349:case 4246:case 4810:case 6968:case 2756:return cd+e+ud+e+ld+e+e;case 6828:case 4268:return cd+e+ld+e+e;case 6165:return cd+e+ld+"flex-"+e+e;case 5187:return cd+e+Ip(e,/(\w+).+(:[^]+)/,"-webkit-box-$1$2-ms-flex-$1$2")+e;case 5443:return cd+e+ld+"flex-item-"+Ip(e,/flex-|-self/,"")+e;case 4675:return cd+e+ld+"flex-line-pack"+Ip(e,/align-content|flex-|-self/,"")+e;case 5548:return cd+e+ld+Ip(e,"shrink","negative")+e;case 5292:return cd+e+ld+Ip(e,"basis","preferred-size")+e;case 6060:return cd+"box-"+Ip(e,"-grow","")+cd+e+ld+Ip(e,"grow","positive")+e;case 4554:return cd+Ip(e,/([^-])(transform)/g,"$1-webkit-$2")+e;case 6187:return Ip(Ip(Ip(e,/(zoom-|grab)/,cd+"$1"),/(image-set)/,cd+"$1"),e,"")+e;case 5495:case 3959:return Ip(e,/(image-set\([^]*)/,cd+"$1$`$1");case 4968:return Ip(Ip(e,/(.+:)(flex-)?(.*)/,"-webkit-box-pack:$3-ms-flex-pack:$3"),/s.+-b[^;]+/,"justify")+cd+e+e;case 4095:case 3583:case 4068:case 2532:return Ip(e,/(.+)-inline(.+)/,cd+"$1$2")+e;case 8116:case 7059:case 5753:case 5535:case 5445:case 5701:case 4933:case 4677:case 5533:case 5789:case 5021:case 4765:if(Mp(e)-1-t>6)switch(Fp(e,t+1)){case 109:if(45!==Fp(e,t+4))break;case 102:return Ip(e,/(.+:)(.+)-([^]+)/,"$1-webkit-$2-$3$1"+ud+(108==Fp(e,t+3)?"$3":"$2-$3"))+e;case 115:return~Np(e,"stretch")?yd(Ip(e,"stretch","fill-available"),t)+e:e}break;case 4949:if(115!==Fp(e,t+1))break;case 6444:switch(Fp(e,Mp(e)-3-(~Np(e,"!important")&&10))){case 107:return Ip(e,":",":"+cd)+e;case 101:return Ip(e,/(.+:)([^;!]+)(;|!.+)?/,"$1"+cd+(45===Fp(e,14)?"inline-":"")+"box$3$1"+cd+"$2$3$1"+ld+"$2box$3")+e}break;case 5936:switch(Fp(e,t+11)){case 114:return cd+e+ld+Ip(e,/[svh]\w+-[tblr]{2}/,"tb")+e;case 108:return cd+e+ld+Ip(e,/[svh]\w+-[tblr]{2}/,"tb-rl")+e;case 45:return cd+e+ld+Ip(e,/[svh]\w+-[tblr]{2}/,"lr")+e}return cd+e+ld+e+e}return e}function gd(e){return td(bd("",null,null,null,[""],e=ed(e),0,[0],e))}function bd(e,t,n,r,o,i,a,s,l){for(var u=0,c=0,f=a,p=0,d=0,h=0,m=1,v=1,y=1,g=0,b="",w=o,x=i,E=r,S=b;v;)switch(h=g,g=Qp()){case 40:if(108!=h&&58==S.charCodeAt(f-1)){-1!=Np(S+=Ip(nd(g),"&","&\f"),"&\f")&&(y=-1);break}case 34:case 39:case 91:S+=nd(g);break;case 9:case 10:case 13:case 32:S+=rd(h);break;case 92:S+=od(Kp()-1,7);continue;case 47:switch(Xp()){case 42:case 47:zp(xd(ad(Qp(),Kp()),t,n),l);break;default:S+="/"}break;case 123*m:s[u++]=Mp(S)*y;case 125*m:case 59:case 0:switch(g){case 0:case 125:v=0;case 59+c:d>0&&Mp(S)-f&&zp(d>32?Ed(S+";",r,n,f-1):Ed(Ip(S," ","")+";",r,n,f-2),l);break;case 59:S+=";";default:if(zp(E=wd(S,t,n,u,c,o,s,b,w=[],x=[],f),i),123===g)if(0===c)bd(S,t,E,E,w,i,f,s,x);else switch(p){case 100:case 109:case 115:bd(e,E,E,r&&zp(wd(e,E,E,0,0,o,s,b,o,w=[],f),x),o,x,f,s,r?w:x);break;default:bd(S,E,E,E,[""],x,0,s,x)}}u=c=d=0,m=y=1,b=S="",f=a;break;case 58:f=1+Mp(S),d=h;default:if(m<1)if(123==g)--m;else if(125==g&&0==m++&&125==qp())continue;switch(S+=Pp(g),g*m){case 38:y=c>0?1:(S+="\f",-1);break;case 44:s[u++]=(Mp(S)-1)*y,y=1;break;case 64:45===Xp()&&(S+=nd(Qp())),p=Xp(),c=f=Mp(b=S+=sd(Kp())),g++;break;case 45:45===h&&2==Mp(S)&&(m=0)}}return i}function wd(e,t,n,r,o,i,a,s,l,u,c){for(var f=o-1,p=0===o?i:[""],d=Dp(p),h=0,m=0,v=0;h<r;++h)for(var y=0,g=Rp(e,f+1,f=Cp(m=a[h])),b=e;y<d;++y)(b=Tp(m>0?p[y]+" "+g:Ip(g,/&\f/g,p[y])))&&(l[v++]=b);return $p(e,t,n,0===o?pd:s,l,u,c)}function xd(e,t,n){return $p(e,t,n,fd,Pp(Wp),Rp(e,2,-2),0)}function Ed(e,t,n,r){return $p(e,t,n,dd,Rp(e,0,r),Rp(e,r+1,-1),r)}var Sd=function(e,t,n){for(var r=0,o=0;r=o,o=Xp(),38===r&&12===o&&(t[n]=1),!Zp(o);)Qp();return Jp(e,Bp)},_d=new WeakMap,kd=function(e){if("rule"===e.type&&e.parent&&!(e.length<1)){for(var t=e.value,n=e.parent,r=e.column===n.column&&e.line===n.line;"rule"!==n.type;)if(!(n=n.parent))return;if((1!==e.props.length||58===t.charCodeAt(0)||_d.get(n))&&!r){_d.set(e,!0);for(var o=[],i=function(e,t){return td(function(e,t){var n=-1,r=44;do{switch(Zp(r)){case 0:38===r&&12===Xp()&&(t[n]=1),e[n]+=Sd(Bp-1,t,n);break;case 2:e[n]+=nd(r);break;case 4:if(44===r){e[++n]=58===Xp()?"&\f":"",t[n]=e[n].length;break}default:e[n]+=Pp(r)}}while(r=Qp());return e}(ed(e),t))}(t,o),a=n.props,s=0,l=0;s<i.length;s++)for(var u=0;u<a.length;u++,l++)e.props[l]=o[s]?i[s].replace(/&\f/g,a[u]):a[u]+" "+i[s]}}},Od=function(e){if("decl"===e.type){var t=e.value;108===t.charCodeAt(0)&&98===t.charCodeAt(2)&&(e.return="",e.value="")}},jd=[function(e,t,n,r){if(e.length>-1&&!e.return)switch(e.type){case dd:e.return=yd(e.value,e.length);break;case hd:return md([Yp(e,{value:Ip(e.value,"@","@"+cd)})],r);case pd:if(e.length)return function(e,t){return e.map(t).join("")}(e.props,(function(t){switch(function(e,t){return(e=/(::plac\w+|:read-\w+)/.exec(e))?e[0]:e}(t)){case":read-only":case":read-write":return md([Yp(e,{props:[Ip(t,/:(read-\w+)/,":-moz-$1")]})],r);case"::placeholder":return md([Yp(e,{props:[Ip(t,/:(plac\w+)/,":-webkit-input-$1")]}),Yp(e,{props:[Ip(t,/:(plac\w+)/,":-moz-$1")]}),Yp(e,{props:[Ip(t,/:(plac\w+)/,ld+"input-$1")]})],r)}return""}))}}];const Ld=function(e){var t=e.key;if("css"===t){var n=document.querySelectorAll("style[data-emotion]:not([data-s])");Array.prototype.forEach.call(n,(function(e){-1!==e.getAttribute("data-emotion").indexOf(" ")&&(document.head.appendChild(e),e.setAttribute("data-s",""))}))}var r,o,i=e.stylisPlugins||jd,a={},s=[];r=e.container||document.head,Array.prototype.forEach.call(document.querySelectorAll('style[data-emotion^="'+t+' "]'),(function(e){for(var t=e.getAttribute("data-emotion").split(" "),n=1;n<t.length;n++)a[t[n]]=!0;s.push(e)}));var l,u,c,f,p=[vd,(f=function(e){l.insert(e)},function(e){e.root||(e=e.return)&&f(e)})],d=(u=[kd,Od].concat(i,p),c=Dp(u),function(e,t,n,r){for(var o="",i=0;i<c;i++)o+=u[i](e,t,n,r)||"";return o});o=function(e,t,n,r){l=n,function(e){md(gd(e),d)}(e?e+"{"+t.styles+"}":t.styles),r&&(h.inserted[t.name]=!0)};var h={key:t,sheet:new Lp({key:t,container:r,nonce:e.nonce,speedy:e.speedy,prepend:e.prepend,insertionPoint:e.insertionPoint}),nonce:e.nonce,inserted:a,registered:{},insert:o};return h.sheet.hydrate(s),h};function Cd(e,t,n){var r="";return n.split(" ").forEach((function(n){void 0!==e[n]?t.push(e[n]+";"):r+=n+" "})),r}var Pd=function(e,t,n){var r=e.key+"-"+t.name;!1===n&&void 0===e.registered[r]&&(e.registered[r]=t.styles)},Ad=function(e,t,n){Pd(e,t,n);var r=e.key+"-"+t.name;if(void 0===e.inserted[t.name]){var o=t;do{e.insert(t===o?"."+r:"",o,e.sheet,!0),o=o.next}while(void 0!==o)}};const Td=function(e){for(var t,n=0,r=0,o=e.length;o>=4;++r,o-=4)t=1540483477*(65535&(t=255&e.charCodeAt(r)|(255&e.charCodeAt(++r))<<8|(255&e.charCodeAt(++r))<<16|(255&e.charCodeAt(++r))<<24))+(59797*(t>>>16)<<16),n=1540483477*(65535&(t^=t>>>24))+(59797*(t>>>16)<<16)^1540483477*(65535&n)+(59797*(n>>>16)<<16);switch(o){case 3:n^=(255&e.charCodeAt(r+2))<<16;case 2:n^=(255&e.charCodeAt(r+1))<<8;case 1:n=1540483477*(65535&(n^=255&e.charCodeAt(r)))+(59797*(n>>>16)<<16)}return(((n=1540483477*(65535&(n^=n>>>13))+(59797*(n>>>16)<<16))^n>>>15)>>>0).toString(36)};var Id=/[A-Z]|^ms/g,Nd=/_EMO_([^_]+?)_([^]*?)_EMO_/g,Fd=function(e){return 45===e.charCodeAt(1)},Rd=function(e){return null!=e&&"boolean"!=typeof e},Md=de((function(e){return Fd(e)?e:e.replace(Id,"-$&").toLowerCase()})),Dd=function(e,t){switch(e){case"animation":case"animationName":if("string"==typeof t)return t.replace(Nd,(function(e,t,n){return Ud={name:t,styles:n,next:Ud},t}))}return 1===pe[e]||Fd(e)||"number"!=typeof t||0===t?t:t+"px"};function zd(e,t,n){if(null==n)return"";if(void 0!==n.__emotion_styles)return n;switch(typeof n){case"boolean":return"";case"object":if(1===n.anim)return Ud={name:n.name,styles:n.styles,next:Ud},n.name;if(void 0!==n.styles){var r=n.next;if(void 0!==r)for(;void 0!==r;)Ud={name:r.name,styles:r.styles,next:Ud},r=r.next;return n.styles+";"}return function(e,t,n){var r="";if(Array.isArray(n))for(var o=0;o<n.length;o++)r+=zd(e,t,n[o])+";";else for(var i in n){var a=n[i];if("object"!=typeof a)null!=t&&void 0!==t[a]?r+=i+"{"+t[a]+"}":Rd(a)&&(r+=Md(i)+":"+Dd(i,a)+";");else if(!Array.isArray(a)||"string"!=typeof a[0]||null!=t&&void 0!==t[a[0]]){var s=zd(e,t,a);switch(i){case"animation":case"animationName":r+=Md(i)+":"+s+";";break;default:r+=i+"{"+s+"}"}}else for(var l=0;l<a.length;l++)Rd(a[l])&&(r+=Md(i)+":"+Dd(i,a[l])+";")}return r}(e,t,n);case"function":if(void 0!==e){var o=Ud,i=n(e);return Ud=o,zd(e,t,i)}}if(null==t)return n;var a=t[n];return void 0!==a?a:n}var Ud,Vd=/label:\s*([^\s;\n{]+)\s*(;|$)/g,Gd=function(e,t,n){if(1===e.length&&"object"==typeof e[0]&&null!==e[0]&&void 0!==e[0].styles)return e[0];var r=!0,o="";Ud=void 0;var i=e[0];null==i||void 0===i.raw?(r=!1,o+=zd(n,t,i)):o+=i[0];for(var a=1;a<e.length;a++)o+=zd(n,t,e[a]),r&&(o+=i[a]);Vd.lastIndex=0;for(var s,l="";null!==(s=Vd.exec(o));)l+="-"+s[1];return{name:Td(o)+l,styles:o,next:Ud}},Bd={}.hasOwnProperty,Wd=(0,e.createContext)("undefined"!=typeof HTMLElement?Ld({key:"css"}):null);Wd.Provider;var Hd=function(t){return(0,e.forwardRef)((function(n,r){var o=(0,e.useContext)(Wd);return t(n,o,r)}))},$d=(0,e.createContext)({}),Yd=t.useInsertionEffect?t.useInsertionEffect:function(e){e()};function qd(e){Yd(e)}var Qd="__EMOTION_TYPE_PLEASE_DO_NOT_USE__",Xd=function(e,t){var n={};for(var r in t)Bd.call(t,r)&&(n[r]=t[r]);return n[Qd]=e,n},Kd=function(e){var t=e.cache,n=e.serialized,r=e.isStringTag;return Pd(t,n,r),qd((function(){return Ad(t,n,r)})),null},Jd=Hd((function(t,n,r){var o=t.css;"string"==typeof o&&void 0!==n.registered[o]&&(o=n.registered[o]);var i=t[Qd],a=[o],s="";"string"==typeof t.className?s=Cd(n.registered,a,t.className):null!=t.className&&(s=t.className+" ");var l=Gd(a,void 0,(0,e.useContext)($d));s+=n.key+"-"+l.name;var u={};for(var c in t)Bd.call(t,c)&&"css"!==c&&c!==Qd&&(u[c]=t[c]);return u.ref=r,u.className=s,(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Kd,{cache:n,serialized:l,isStringTag:"string"==typeof i}),(0,e.createElement)(i,u))})),Zd=function(t,n){var r=arguments;if(null==n||!Bd.call(n,"css"))return e.createElement.apply(void 0,r);var o=r.length,i=new Array(o);i[0]=Jd,i[1]=Xd(t,n);for(var a=2;a<o;a++)i[a]=r[a];return e.createElement.apply(null,i)};function eh(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return Gd(t)}t.useInsertionEffect?t.useInsertionEffect:e.useLayoutEffect;var th=function e(t){for(var n=t.length,r=0,o="";r<n;r++){var i=t[r];if(null!=i){var a=void 0;switch(typeof i){case"boolean":break;case"object":if(Array.isArray(i))a=e(i);else for(var s in a="",i)i[s]&&s&&(a&&(a+=" "),a+=s);break;default:a=i}a&&(o&&(o+=" "),o+=a)}}return o};function nh(e,t,n){var r=[],o=Cd(e,r,n);return r.length<2?n:o+t(r)}var rh=function(e){var t=e.cache,n=e.serializedArr;return qd((function(){for(var e=0;e<n.length;e++)Ad(t,n[e],!1)})),null},oh=Hd((function(t,n){var r=[],o=function(){for(var e=arguments.length,t=new Array(e),o=0;o<e;o++)t[o]=arguments[o];var i=Gd(t,n.registered);return r.push(i),Pd(n,i,!1),n.key+"-"+i.name},i={css:o,cx:function(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return nh(n.registered,o,th(t))},theme:(0,e.useContext)($d)},a=t.children(i);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(rh,{cache:n,serializedArr:r}),a)}));function ih(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function ah(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function sh(e,t){if(e){if("string"==typeof e)return ah(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?ah(e,t):void 0}}function lh(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i=[],a=!0,s=!1;try{for(n=n.call(e);!(a=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);a=!0);}catch(e){s=!0,o=e}finally{try{a||null==n.return||n.return()}finally{if(s)throw o}}return i}}(e,t)||sh(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function uh(e){return uh="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},uh(e)}function ch(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function fh(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function ph(e,t,n){return t&&fh(e.prototype,t),n&&fh(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e}function dh(e,t){return dh=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},dh(e,t)}function hh(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&dh(e,t)}function mh(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function vh(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function yh(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function gh(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?yh(Object(n),!0).forEach((function(t){vh(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):yh(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function bh(e){return bh=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},bh(e)}function wh(e,t){return!t||"object"!=typeof t&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function xh(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=bh(e);if(t){var o=bh(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return wh(this,n)}}var Eh=["className","clearValue","cx","getStyles","getValue","hasValue","isMulti","isRtl","options","selectOption","selectProps","setValue","theme"],Sh=function(){};function _h(e,t){return t?"-"===t[0]?e+t:e+"__"+t:e}function kh(e,t,n){var r=[n];if(t&&e)for(var o in t)t.hasOwnProperty(o)&&t[o]&&r.push("".concat(_h(e,o)));return r.filter((function(e){return e})).map((function(e){return String(e).trim()})).join(" ")}var Oh=function(e){return t=e,Array.isArray(t)?e.filter(Boolean):"object"===uh(e)&&null!==e?[e]:[];var t},jh=function(e){return e.className,e.clearValue,e.cx,e.getStyles,e.getValue,e.hasValue,e.isMulti,e.isRtl,e.options,e.selectOption,e.selectProps,e.setValue,e.theme,gh({},ih(e,Eh))};function Lh(e){return[document.documentElement,document.body,window].indexOf(e)>-1}function Ch(e){return Lh(e)?window.pageYOffset:e.scrollTop}function Ph(e,t){Lh(e)?window.scrollTo(0,t):e.scrollTop=t}function Ah(e,t,n,r){return n*((e=e/r-1)*e*e+1)+t}function Th(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:200,r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:Sh,o=Ch(e),i=t-o,a=10,s=0;function l(){var t=Ah(s+=a,o,i,n);Ph(e,t),s<n?window.requestAnimationFrame(l):r(e)}l()}function Ih(){try{return document.createEvent("TouchEvent"),!0}catch(e){return!1}}var Nh=!1,Fh={get passive(){return Nh=!0}},Rh="undefined"!=typeof window?window:{};Rh.addEventListener&&Rh.removeEventListener&&(Rh.addEventListener("p",Sh,Fh),Rh.removeEventListener("p",Sh,!1));var Mh=Nh;function Dh(e){return null!=e}function zh(e,t,n){return e?t:n}function Uh(e){var t=e.maxHeight,n=e.menuEl,r=e.minHeight,o=e.placement,i=e.shouldScroll,a=e.isFixedPosition,s=e.theme.spacing,l=function(e){var t=getComputedStyle(e),n="absolute"===t.position,r=/(auto|scroll)/;if("fixed"===t.position)return document.documentElement;for(var o=e;o=o.parentElement;)if(t=getComputedStyle(o),(!n||"static"!==t.position)&&r.test(t.overflow+t.overflowY+t.overflowX))return o;return document.documentElement}(n),u={placement:"bottom",maxHeight:t};if(!n||!n.offsetParent)return u;var c,f=l.getBoundingClientRect().height,p=n.getBoundingClientRect(),d=p.bottom,h=p.height,m=p.top,v=n.offsetParent.getBoundingClientRect().top,y=a||Lh(c=l)?window.innerHeight:c.clientHeight,g=Ch(l),b=parseInt(getComputedStyle(n).marginBottom,10),w=parseInt(getComputedStyle(n).marginTop,10),x=v-w,E=y-m,S=x+g,_=f-g-m,k=d-y+g+b,O=g+m-w,j=160;switch(o){case"auto":case"bottom":if(E>=h)return{placement:"bottom",maxHeight:t};if(_>=h&&!a)return i&&Th(l,k,j),{placement:"bottom",maxHeight:t};if(!a&&_>=r||a&&E>=r)return i&&Th(l,k,j),{placement:"bottom",maxHeight:a?E-b:_-b};if("auto"===o||a){var L=t,C=a?x:S;return C>=r&&(L=Math.min(C-b-s.controlHeight,t)),{placement:"top",maxHeight:L}}if("bottom"===o)return i&&Ph(l,k),{placement:"bottom",maxHeight:t};break;case"top":if(x>=h)return{placement:"top",maxHeight:t};if(S>=h&&!a)return i&&Th(l,O,j),{placement:"top",maxHeight:t};if(!a&&S>=r||a&&x>=r){var P=t;return(!a&&S>=r||a&&x>=r)&&(P=a?x-w:S-w),i&&Th(l,O,j),{placement:"top",maxHeight:P}}return{placement:"bottom",maxHeight:t};default:throw new Error('Invalid placement provided "'.concat(o,'".'))}return u}var Vh=function(e){return"auto"===e?"bottom":e},Gh=(0,e.createContext)({getPortalPlacement:null}),Bh=function(e){hh(n,e);var t=xh(n);function n(){var e;ch(this,n);for(var r=arguments.length,o=new Array(r),i=0;i<r;i++)o[i]=arguments[i];return(e=t.call.apply(t,[this].concat(o))).state={maxHeight:e.props.maxMenuHeight,placement:null},e.context=void 0,e.getPlacement=function(t){var n=e.props,r=n.minMenuHeight,o=n.maxMenuHeight,i=n.menuPlacement,a=n.menuPosition,s=n.menuShouldScrollIntoView,l=n.theme;if(t){var u="fixed"===a,c=Uh({maxHeight:o,menuEl:t,minHeight:r,placement:i,shouldScroll:s&&!u,isFixedPosition:u,theme:l}),f=e.context.getPortalPlacement;f&&f(c),e.setState(c)}},e.getUpdatedProps=function(){var t=e.props.menuPlacement,n=e.state.placement||Vh(t);return gh(gh({},e.props),{},{placement:n,maxHeight:e.state.maxHeight})},e}return ph(n,[{key:"render",value:function(){return(0,this.props.children)({ref:this.getPlacement,placerProps:this.getUpdatedProps()})}}]),n}(e.Component);Bh.contextType=Gh;var Wh=function(e){var t=e.theme,n=t.spacing.baseUnit;return{color:t.colors.neutral40,padding:"".concat(2*n,"px ").concat(3*n,"px"),textAlign:"center"}},Hh=Wh,$h=Wh,Yh=function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,i=e.innerProps;return Zd("div",jp({css:o("noOptionsMessage",e),className:r({"menu-notice":!0,"menu-notice--no-options":!0},n)},i),t)};Yh.defaultProps={children:"No options"};var qh=function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,i=e.innerProps;return Zd("div",jp({css:o("loadingMessage",e),className:r({"menu-notice":!0,"menu-notice--loading":!0},n)},i),t)};qh.defaultProps={children:"Loading..."};var Qh,Xh,Kh,Jh=function(e){hh(r,e);var t=xh(r);function r(){var e;ch(this,r);for(var n=arguments.length,o=new Array(n),i=0;i<n;i++)o[i]=arguments[i];return(e=t.call.apply(t,[this].concat(o))).state={placement:null},e.getPortalPlacement=function(t){var n=t.placement;n!==Vh(e.props.menuPlacement)&&e.setState({placement:n})},e}return ph(r,[{key:"render",value:function(){var e=this.props,t=e.appendTo,r=e.children,o=e.className,i=e.controlElement,a=e.cx,s=e.innerProps,l=e.menuPlacement,u=e.menuPosition,c=e.getStyles,f="fixed"===u;if(!t&&!f||!i)return null;var p=this.state.placement||Vh(l),d=function(e){var t=e.getBoundingClientRect();return{bottom:t.bottom,height:t.height,left:t.left,right:t.right,top:t.top,width:t.width}}(i),h=f?0:window.pageYOffset,m=d[p]+h,v=Zd("div",jp({css:c("menuPortal",{offset:m,position:u,rect:d}),className:a({"menu-portal":!0},o)},s),r);return Zd(Gh.Provider,{value:{getPortalPlacement:this.getPortalPlacement}},t?(0,n.createPortal)(v,t):v)}}]),r}(e.Component),Zh=["size"],em={name:"8mmkcg",styles:"display:inline-block;fill:currentColor;line-height:1;stroke:currentColor;stroke-width:0"},tm=function(e){var t=e.size,n=ih(e,Zh);return Zd("svg",jp({height:t,width:t,viewBox:"0 0 20 20","aria-hidden":"true",focusable:"false",css:em},n))},nm=function(e){return Zd(tm,jp({size:20},e),Zd("path",{d:"M14.348 14.849c-0.469 0.469-1.229 0.469-1.697 0l-2.651-3.030-2.651 3.029c-0.469 0.469-1.229 0.469-1.697 0-0.469-0.469-0.469-1.229 0-1.697l2.758-3.15-2.759-3.152c-0.469-0.469-0.469-1.228 0-1.697s1.228-0.469 1.697 0l2.652 3.031 2.651-3.031c0.469-0.469 1.228-0.469 1.697 0s0.469 1.229 0 1.697l-2.758 3.152 2.758 3.15c0.469 0.469 0.469 1.229 0 1.698z"}))},rm=function(e){return Zd(tm,jp({size:20},e),Zd("path",{d:"M4.516 7.548c0.436-0.446 1.043-0.481 1.576 0l3.908 3.747 3.908-3.747c0.533-0.481 1.141-0.446 1.574 0 0.436 0.445 0.408 1.197 0 1.615-0.406 0.418-4.695 4.502-4.695 4.502-0.217 0.223-0.502 0.335-0.787 0.335s-0.57-0.112-0.789-0.335c0 0-4.287-4.084-4.695-4.502s-0.436-1.17 0-1.615z"}))},om=function(e){var t=e.isFocused,n=e.theme,r=n.spacing.baseUnit,o=n.colors;return{label:"indicatorContainer",color:t?o.neutral60:o.neutral20,display:"flex",padding:2*r,transition:"color 150ms",":hover":{color:t?o.neutral80:o.neutral40}}},im=om,am=om,sm=function(){var e=eh.apply(void 0,arguments),t="animation-"+e.name;return{name:t,styles:"@keyframes "+t+"{"+e.styles+"}",anim:1,toString:function(){return"_EMO_"+this.name+"_"+this.styles+"_EMO_"}}}(Qh||(Xh=["\n 0%, 80%, 100% { opacity: 0; }\n 40% { opacity: 1; }\n"],Kh||(Kh=Xh.slice(0)),Qh=Object.freeze(Object.defineProperties(Xh,{raw:{value:Object.freeze(Kh)}})))),lm=function(e){var t=e.delay,n=e.offset;return Zd("span",{css:eh({animation:"".concat(sm," 1s ease-in-out ").concat(t,"ms infinite;"),backgroundColor:"currentColor",borderRadius:"1em",display:"inline-block",marginLeft:n?"1em":void 0,height:"1em",verticalAlign:"top",width:"1em"},"","")})},um=function(e){var t=e.className,n=e.cx,r=e.getStyles,o=e.innerProps,i=e.isRtl;return Zd("div",jp({css:r("loadingIndicator",e),className:n({indicator:!0,"loading-indicator":!0},t)},o),Zd(lm,{delay:0,offset:i}),Zd(lm,{delay:160,offset:!0}),Zd(lm,{delay:320,offset:!i}))};um.defaultProps={size:4};var cm=["data"],fm=["innerRef","isDisabled","isHidden","inputClassName"],pm={gridArea:"1 / 2",font:"inherit",minWidth:"2px",border:0,margin:0,outline:0,padding:0},dm={flex:"1 1 auto",display:"inline-grid",gridArea:"1 / 1 / 2 / 3",gridTemplateColumns:"0 min-content","&:after":gh({content:'attr(data-value) " "',visibility:"hidden",whiteSpace:"pre"},pm)},hm=function(e){return gh({label:"input",color:"inherit",background:0,opacity:e?0:1,width:"100%"},pm)},mm=function(e){var t=e.children,n=e.innerProps;return Zd("div",n,t)},vm={ClearIndicator:function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,i=e.innerProps;return Zd("div",jp({css:o("clearIndicator",e),className:r({indicator:!0,"clear-indicator":!0},n)},i),t||Zd(nm,null))},Control:function(e){var t=e.children,n=e.cx,r=e.getStyles,o=e.className,i=e.isDisabled,a=e.isFocused,s=e.innerRef,l=e.innerProps,u=e.menuIsOpen;return Zd("div",jp({ref:s,css:r("control",e),className:n({control:!0,"control--is-disabled":i,"control--is-focused":a,"control--menu-is-open":u},o)},l),t)},DropdownIndicator:function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,i=e.innerProps;return Zd("div",jp({css:o("dropdownIndicator",e),className:r({indicator:!0,"dropdown-indicator":!0},n)},i),t||Zd(rm,null))},DownChevron:rm,CrossIcon:nm,Group:function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,i=e.Heading,a=e.headingProps,s=e.innerProps,l=e.label,u=e.theme,c=e.selectProps;return Zd("div",jp({css:o("group",e),className:r({group:!0},n)},s),Zd(i,jp({},a,{selectProps:c,theme:u,getStyles:o,cx:r}),l),Zd("div",null,t))},GroupHeading:function(e){var t=e.getStyles,n=e.cx,r=e.className,o=jh(e);o.data;var i=ih(o,cm);return Zd("div",jp({css:t("groupHeading",e),className:n({"group-heading":!0},r)},i))},IndicatorsContainer:function(e){var t=e.children,n=e.className,r=e.cx,o=e.innerProps,i=e.getStyles;return Zd("div",jp({css:i("indicatorsContainer",e),className:r({indicators:!0},n)},o),t)},IndicatorSeparator:function(e){var t=e.className,n=e.cx,r=e.getStyles,o=e.innerProps;return Zd("span",jp({},o,{css:r("indicatorSeparator",e),className:n({"indicator-separator":!0},t)}))},Input:function(e){var t=e.className,n=e.cx,r=e.getStyles,o=e.value,i=jh(e),a=i.innerRef,s=i.isDisabled,l=i.isHidden,u=i.inputClassName,c=ih(i,fm);return Zd("div",{className:n({"input-container":!0},t),css:r("input",e),"data-value":o||""},Zd("input",jp({className:n({input:!0},u),ref:a,style:hm(l),disabled:s},c)))},LoadingIndicator:um,Menu:function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,i=e.innerRef,a=e.innerProps;return Zd("div",jp({css:o("menu",e),className:r({menu:!0},n),ref:i},a),t)},MenuList:function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,i=e.innerProps,a=e.innerRef,s=e.isMulti;return Zd("div",jp({css:o("menuList",e),className:r({"menu-list":!0,"menu-list--is-multi":s},n),ref:a},i),t)},MenuPortal:Jh,LoadingMessage:qh,NoOptionsMessage:Yh,MultiValue:function(e){var t=e.children,n=e.className,r=e.components,o=e.cx,i=e.data,a=e.getStyles,s=e.innerProps,l=e.isDisabled,u=e.removeProps,c=e.selectProps,f=r.Container,p=r.Label,d=r.Remove;return Zd(oh,null,(function(r){var h=r.css,m=r.cx;return Zd(f,{data:i,innerProps:gh({className:m(h(a("multiValue",e)),o({"multi-value":!0,"multi-value--is-disabled":l},n))},s),selectProps:c},Zd(p,{data:i,innerProps:{className:m(h(a("multiValueLabel",e)),o({"multi-value__label":!0},n))},selectProps:c},t),Zd(d,{data:i,innerProps:gh({className:m(h(a("multiValueRemove",e)),o({"multi-value__remove":!0},n)),"aria-label":"Remove ".concat(t||"option")},u),selectProps:c}))}))},MultiValueContainer:mm,MultiValueLabel:mm,MultiValueRemove:function(e){var t=e.children,n=e.innerProps;return Zd("div",jp({role:"button"},n),t||Zd(nm,{size:14}))},Option:function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,i=e.isDisabled,a=e.isFocused,s=e.isSelected,l=e.innerRef,u=e.innerProps;return Zd("div",jp({css:o("option",e),className:r({option:!0,"option--is-disabled":i,"option--is-focused":a,"option--is-selected":s},n),ref:l,"aria-disabled":i},u),t)},Placeholder:function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,i=e.innerProps;return Zd("div",jp({css:o("placeholder",e),className:r({placeholder:!0},n)},i),t)},SelectContainer:function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,i=e.innerProps,a=e.isDisabled,s=e.isRtl;return Zd("div",jp({css:o("container",e),className:r({"--is-disabled":a,"--is-rtl":s},n)},i),t)},SingleValue:function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,i=e.isDisabled,a=e.innerProps;return Zd("div",jp({css:o("singleValue",e),className:r({"single-value":!0,"single-value--is-disabled":i},n)},a),t)},ValueContainer:function(e){var t=e.children,n=e.className,r=e.cx,o=e.innerProps,i=e.isMulti,a=e.getStyles,s=e.hasValue;return Zd("div",jp({css:a("valueContainer",e),className:r({"value-container":!0,"value-container--is-multi":i,"value-container--has-value":s},n)},o),t)}};function ym(e){return function(e){if(Array.isArray(e))return ah(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||sh(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}var gm=Number.isNaN||function(e){return"number"==typeof e&&e!=e};function bm(e,t){return e===t||!(!gm(e)||!gm(t))}function wm(e,t){if(e.length!==t.length)return!1;for(var n=0;n<e.length;n++)if(!bm(e[n],t[n]))return!1;return!0}for(var xm={name:"7pg0cj-a11yText",styles:"label:a11yText;z-index:9999;border:0;clip:rect(1px, 1px, 1px, 1px);height:1px;width:1px;position:absolute;overflow:hidden;padding:0;white-space:nowrap"},Em=function(e){return Zd("span",jp({css:xm},e))},Sm={guidance:function(e){var t=e.isSearchable,n=e.isMulti,r=e.isDisabled,o=e.tabSelectsValue;switch(e.context){case"menu":return"Use Up and Down to choose options".concat(r?"":", press Enter to select the currently focused option",", press Escape to exit the menu").concat(o?", press Tab to select the option and exit the menu":"",".");case"input":return"".concat(e["aria-label"]||"Select"," is focused ").concat(t?",type to refine list":"",", press Down to open the menu, ").concat(n?" press left to focus selected values":"");case"value":return"Use left and right to toggle between focused values, press Backspace to remove the currently focused value";default:return""}},onChange:function(e){var t=e.action,n=e.label,r=void 0===n?"":n,o=e.labels,i=e.isDisabled;switch(t){case"deselect-option":case"pop-value":case"remove-value":return"option ".concat(r,", deselected.");case"clear":return"All selected options have been cleared.";case"initial-input-focus":return"option".concat(o.length>1?"s":""," ").concat(o.join(","),", selected.");case"select-option":return"option ".concat(r,i?" is disabled. Select another option.":", selected.");default:return""}},onFocus:function(e){var t=e.context,n=e.focused,r=e.options,o=e.label,i=void 0===o?"":o,a=e.selectValue,s=e.isDisabled,l=e.isSelected,u=function(e,t){return e&&e.length?"".concat(e.indexOf(t)+1," of ").concat(e.length):""};if("value"===t&&a)return"value ".concat(i," focused, ").concat(u(a,n),".");if("menu"===t){var c=s?" disabled":"",f="".concat(l?"selected":"focused").concat(c);return"option ".concat(i," ").concat(f,", ").concat(u(r,n),".")}return""},onFilter:function(e){var t=e.inputValue,n=e.resultsMessage;return"".concat(n).concat(t?" for search term "+t:"",".")}},_m=function(t){var n=t.ariaSelection,r=t.focusedOption,o=t.focusedValue,i=t.focusableOptions,a=t.isFocused,s=t.selectValue,l=t.selectProps,u=t.id,c=l.ariaLiveMessages,f=l.getOptionLabel,p=l.inputValue,d=l.isMulti,h=l.isOptionDisabled,m=l.isSearchable,v=l.menuIsOpen,y=l.options,g=l.screenReaderStatus,b=l.tabSelectsValue,w=l["aria-label"],x=l["aria-live"],E=(0,e.useMemo)((function(){return gh(gh({},Sm),c||{})}),[c]),S=(0,e.useMemo)((function(){var e,t="";if(n&&E.onChange){var r=n.option,o=n.options,i=n.removedValue,a=n.removedValues,l=n.value,u=i||r||(e=l,Array.isArray(e)?null:e),c=u?f(u):"",p=o||a||void 0,d=p?p.map(f):[],m=gh({isDisabled:u&&h(u,s),label:c,labels:d},n);t=E.onChange(m)}return t}),[n,E,h,s,f]),_=(0,e.useMemo)((function(){var e="",t=r||o,n=!!(r&&s&&s.includes(r));if(t&&E.onFocus){var i={focused:t,label:f(t),isDisabled:h(t,s),isSelected:n,options:y,context:t===r?"menu":"value",selectValue:s};e=E.onFocus(i)}return e}),[r,o,f,h,E,y,s]),k=(0,e.useMemo)((function(){var e="";if(v&&y.length&&E.onFilter){var t=g({count:i.length});e=E.onFilter({inputValue:p,resultsMessage:t})}return e}),[i,p,v,E,y,g]),O=(0,e.useMemo)((function(){var e="";if(E.guidance){var t=o?"value":v?"menu":"input";e=E.guidance({"aria-label":w,context:t,isDisabled:r&&h(r,s),isMulti:d,isSearchable:m,tabSelectsValue:b})}return e}),[w,r,o,d,h,m,v,E,s,b]),j="".concat(_," ").concat(k," ").concat(O),L=Zd(e.Fragment,null,Zd("span",{id:"aria-selection"},S),Zd("span",{id:"aria-context"},j)),C="initial-input-focus"===(null==n?void 0:n.action);return Zd(e.Fragment,null,Zd(Em,{id:u},C&&L),Zd(Em,{"aria-live":x,"aria-atomic":"false","aria-relevant":"additions text"},a&&!C&&L))},km=[{base:"A",letters:"AⒶAÀÁÂẦẤẪẨÃĀĂẰẮẴẲȦǠÄǞẢÅǺǍȀȂẠẬẶḀĄȺⱯ"},{base:"AA",letters:"Ꜳ"},{base:"AE",letters:"ÆǼǢ"},{base:"AO",letters:"Ꜵ"},{base:"AU",letters:"Ꜷ"},{base:"AV",letters:"ꜸꜺ"},{base:"AY",letters:"Ꜽ"},{base:"B",letters:"BⒷBḂḄḆɃƂƁ"},{base:"C",letters:"CⒸCĆĈĊČÇḈƇȻꜾ"},{base:"D",letters:"DⒹDḊĎḌḐḒḎĐƋƊƉꝹ"},{base:"DZ",letters:"DZDŽ"},{base:"Dz",letters:"DzDž"},{base:"E",letters:"EⒺEÈÉÊỀẾỄỂẼĒḔḖĔĖËẺĚȄȆẸỆȨḜĘḘḚƐƎ"},{base:"F",letters:"FⒻFḞƑꝻ"},{base:"G",letters:"GⒼGǴĜḠĞĠǦĢǤƓꞠꝽꝾ"},{base:"H",letters:"HⒽHĤḢḦȞḤḨḪĦⱧⱵꞍ"},{base:"I",letters:"IⒾIÌÍÎĨĪĬİÏḮỈǏȈȊỊĮḬƗ"},{base:"J",letters:"JⒿJĴɈ"},{base:"K",letters:"KⓀKḰǨḲĶḴƘⱩꝀꝂꝄꞢ"},{base:"L",letters:"LⓁLĿĹĽḶḸĻḼḺŁȽⱢⱠꝈꝆꞀ"},{base:"LJ",letters:"LJ"},{base:"Lj",letters:"Lj"},{base:"M",letters:"MⓂMḾṀṂⱮƜ"},{base:"N",letters:"NⓃNǸŃÑṄŇṆŅṊṈȠƝꞐꞤ"},{base:"NJ",letters:"NJ"},{base:"Nj",letters:"Nj"},{base:"O",letters:"OⓄOÒÓÔỒỐỖỔÕṌȬṎŌṐṒŎȮȰÖȪỎŐǑȌȎƠỜỚỠỞỢỌỘǪǬØǾƆƟꝊꝌ"},{base:"OI",letters:"Ƣ"},{base:"OO",letters:"Ꝏ"},{base:"OU",letters:"Ȣ"},{base:"P",letters:"PⓅPṔṖƤⱣꝐꝒꝔ"},{base:"Q",letters:"QⓆQꝖꝘɊ"},{base:"R",letters:"RⓇRŔṘŘȐȒṚṜŖṞɌⱤꝚꞦꞂ"},{base:"S",letters:"SⓈSẞŚṤŜṠŠṦṢṨȘŞⱾꞨꞄ"},{base:"T",letters:"TⓉTṪŤṬȚŢṰṮŦƬƮȾꞆ"},{base:"TZ",letters:"Ꜩ"},{base:"U",letters:"UⓊUÙÚÛŨṸŪṺŬÜǛǗǕǙỦŮŰǓȔȖƯỪỨỮỬỰỤṲŲṶṴɄ"},{base:"V",letters:"VⓋVṼṾƲꝞɅ"},{base:"VY",letters:"Ꝡ"},{base:"W",letters:"WⓌWẀẂŴẆẄẈⱲ"},{base:"X",letters:"XⓍXẊẌ"},{base:"Y",letters:"YⓎYỲÝŶỸȲẎŸỶỴƳɎỾ"},{base:"Z",letters:"ZⓏZŹẐŻŽẒẔƵȤⱿⱫꝢ"},{base:"a",letters:"aⓐaẚàáâầấẫẩãāăằắẵẳȧǡäǟảåǻǎȁȃạậặḁąⱥɐ"},{base:"aa",letters:"ꜳ"},{base:"ae",letters:"æǽǣ"},{base:"ao",letters:"ꜵ"},{base:"au",letters:"ꜷ"},{base:"av",letters:"ꜹꜻ"},{base:"ay",letters:"ꜽ"},{base:"b",letters:"bⓑbḃḅḇƀƃɓ"},{base:"c",letters:"cⓒcćĉċčçḉƈȼꜿↄ"},{base:"d",letters:"dⓓdḋďḍḑḓḏđƌɖɗꝺ"},{base:"dz",letters:"dzdž"},{base:"e",letters:"eⓔeèéêềếễểẽēḕḗĕėëẻěȅȇẹệȩḝęḙḛɇɛǝ"},{base:"f",letters:"fⓕfḟƒꝼ"},{base:"g",letters:"gⓖgǵĝḡğġǧģǥɠꞡᵹꝿ"},{base:"h",letters:"hⓗhĥḣḧȟḥḩḫẖħⱨⱶɥ"},{base:"hv",letters:"ƕ"},{base:"i",letters:"iⓘiìíîĩīĭïḯỉǐȉȋịįḭɨı"},{base:"j",letters:"jⓙjĵǰɉ"},{base:"k",letters:"kⓚkḱǩḳķḵƙⱪꝁꝃꝅꞣ"},{base:"l",letters:"lⓛlŀĺľḷḹļḽḻſłƚɫⱡꝉꞁꝇ"},{base:"lj",letters:"lj"},{base:"m",letters:"mⓜmḿṁṃɱɯ"},{base:"n",letters:"nⓝnǹńñṅňṇņṋṉƞɲʼnꞑꞥ"},{base:"nj",letters:"nj"},{base:"o",letters:"oⓞoòóôồốỗổõṍȭṏōṑṓŏȯȱöȫỏőǒȍȏơờớỡởợọộǫǭøǿɔꝋꝍɵ"},{base:"oi",letters:"ƣ"},{base:"ou",letters:"ȣ"},{base:"oo",letters:"ꝏ"},{base:"p",letters:"pⓟpṕṗƥᵽꝑꝓꝕ"},{base:"q",letters:"qⓠqɋꝗꝙ"},{base:"r",letters:"rⓡrŕṙřȑȓṛṝŗṟɍɽꝛꞧꞃ"},{base:"s",letters:"sⓢsßśṥŝṡšṧṣṩșşȿꞩꞅẛ"},{base:"t",letters:"tⓣtṫẗťṭțţṱṯŧƭʈⱦꞇ"},{base:"tz",letters:"ꜩ"},{base:"u",letters:"uⓤuùúûũṹūṻŭüǜǘǖǚủůűǔȕȗưừứữửựụṳųṷṵʉ"},{base:"v",letters:"vⓥvṽṿʋꝟʌ"},{base:"vy",letters:"ꝡ"},{base:"w",letters:"wⓦwẁẃŵẇẅẘẉⱳ"},{base:"x",letters:"xⓧxẋẍ"},{base:"y",letters:"yⓨyỳýŷỹȳẏÿỷẙỵƴɏỿ"},{base:"z",letters:"zⓩzźẑżžẓẕƶȥɀⱬꝣ"}],Om=new RegExp("["+km.map((function(e){return e.letters})).join("")+"]","g"),jm={},Lm=0;Lm<km.length;Lm++)for(var Cm=km[Lm],Pm=0;Pm<Cm.letters.length;Pm++)jm[Cm.letters[Pm]]=Cm.base;var Am=function(e){return e.replace(Om,(function(e){return jm[e]}))},Tm=function(e,t){var n;void 0===t&&(t=wm);var r,o=[],i=!1;return function(){for(var a=[],s=0;s<arguments.length;s++)a[s]=arguments[s];return i&&n===this&&t(a,o)||(r=e.apply(this,a),i=!0,n=this,o=a),r}}(Am),Im=function(e){return e.replace(/^\s+|\s+$/g,"")},Nm=function(e){return"".concat(e.label," ").concat(e.value)},Fm=["innerRef"];function Rm(e){var t=e.innerRef,n=function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];var o=Object.entries(e).filter((function(e){var t=lh(e,1)[0];return!n.includes(t)}));return o.reduce((function(e,t){var n=lh(t,2),r=n[0],o=n[1];return e[r]=o,e}),{})}(ih(e,Fm),"onExited","in","enter","exit","appear");return Zd("input",jp({ref:t},n,{css:eh({label:"dummyInput",background:0,border:0,caretColor:"transparent",fontSize:"inherit",gridArea:"1 / 1 / 2 / 3",outline:0,padding:0,width:1,color:"transparent",left:-100,opacity:0,position:"relative",transform:"scale(.01)"},"","")}))}var Mm=["boxSizing","height","overflow","paddingRight","position"],Dm={boxSizing:"border-box",overflow:"hidden",position:"relative",height:"100%"};function zm(e){e.preventDefault()}function Um(e){e.stopPropagation()}function Vm(){var e=this.scrollTop,t=this.scrollHeight,n=e+this.offsetHeight;0===e?this.scrollTop=1:n===t&&(this.scrollTop=e-1)}function Gm(){return"ontouchstart"in window||navigator.maxTouchPoints}var Bm=!("undefined"==typeof window||!window.document||!window.document.createElement),Wm=0,Hm={capture:!1,passive:!1},$m=function(){return document.activeElement&&document.activeElement.blur()},Ym={name:"1kfdb0e",styles:"position:fixed;left:0;bottom:0;right:0;top:0"};function qm(t){var n=t.children,r=t.lockEnabled,o=t.captureEnabled,i=function(t){var n=t.isEnabled,r=t.onBottomArrive,o=t.onBottomLeave,i=t.onTopArrive,a=t.onTopLeave,s=(0,e.useRef)(!1),l=(0,e.useRef)(!1),u=(0,e.useRef)(0),c=(0,e.useRef)(null),f=(0,e.useCallback)((function(e,t){if(null!==c.current){var n=c.current,u=n.scrollTop,f=n.scrollHeight,p=n.clientHeight,d=c.current,h=t>0,m=f-p-u,v=!1;m>t&&s.current&&(o&&o(e),s.current=!1),h&&l.current&&(a&&a(e),l.current=!1),h&&t>m?(r&&!s.current&&r(e),d.scrollTop=f,v=!0,s.current=!0):!h&&-t>u&&(i&&!l.current&&i(e),d.scrollTop=0,v=!0,l.current=!0),v&&function(e){e.preventDefault(),e.stopPropagation()}(e)}}),[r,o,i,a]),p=(0,e.useCallback)((function(e){f(e,e.deltaY)}),[f]),d=(0,e.useCallback)((function(e){u.current=e.changedTouches[0].clientY}),[]),h=(0,e.useCallback)((function(e){var t=u.current-e.changedTouches[0].clientY;f(e,t)}),[f]),m=(0,e.useCallback)((function(e){if(e){var t=!!Mh&&{passive:!1};e.addEventListener("wheel",p,t),e.addEventListener("touchstart",d,t),e.addEventListener("touchmove",h,t)}}),[h,d,p]),v=(0,e.useCallback)((function(e){e&&(e.removeEventListener("wheel",p,!1),e.removeEventListener("touchstart",d,!1),e.removeEventListener("touchmove",h,!1))}),[h,d,p]);return(0,e.useEffect)((function(){if(n){var e=c.current;return m(e),function(){v(e)}}}),[n,m,v]),function(e){c.current=e}}({isEnabled:void 0===o||o,onBottomArrive:t.onBottomArrive,onBottomLeave:t.onBottomLeave,onTopArrive:t.onTopArrive,onTopLeave:t.onTopLeave}),a=function(t){var n=t.isEnabled,r=t.accountForScrollbars,o=void 0===r||r,i=(0,e.useRef)({}),a=(0,e.useRef)(null),s=(0,e.useCallback)((function(e){if(Bm){var t=document.body,n=t&&t.style;if(o&&Mm.forEach((function(e){var t=n&&n[e];i.current[e]=t})),o&&Wm<1){var r=parseInt(i.current.paddingRight,10)||0,a=document.body?document.body.clientWidth:0,s=window.innerWidth-a+r||0;Object.keys(Dm).forEach((function(e){var t=Dm[e];n&&(n[e]=t)})),n&&(n.paddingRight="".concat(s,"px"))}t&&Gm()&&(t.addEventListener("touchmove",zm,Hm),e&&(e.addEventListener("touchstart",Vm,Hm),e.addEventListener("touchmove",Um,Hm))),Wm+=1}}),[o]),l=(0,e.useCallback)((function(e){if(Bm){var t=document.body,n=t&&t.style;Wm=Math.max(Wm-1,0),o&&Wm<1&&Mm.forEach((function(e){var t=i.current[e];n&&(n[e]=t)})),t&&Gm()&&(t.removeEventListener("touchmove",zm,Hm),e&&(e.removeEventListener("touchstart",Vm,Hm),e.removeEventListener("touchmove",Um,Hm)))}}),[o]);return(0,e.useEffect)((function(){if(n){var e=a.current;return s(e),function(){l(e)}}}),[n,s,l]),function(e){a.current=e}}({isEnabled:r});return Zd(e.Fragment,null,r&&Zd("div",{onClick:$m,css:Ym}),n((function(e){i(e),a(e)})))}var Qm=function(e){return e.label},Xm=function(e){return e.value},Km={clearIndicator:am,container:function(e){var t=e.isDisabled;return{label:"container",direction:e.isRtl?"rtl":void 0,pointerEvents:t?"none":void 0,position:"relative"}},control:function(e){var t=e.isDisabled,n=e.isFocused,r=e.theme,o=r.colors,i=r.borderRadius,a=r.spacing;return{label:"control",alignItems:"center",backgroundColor:t?o.neutral5:o.neutral0,borderColor:t?o.neutral10:n?o.primary:o.neutral20,borderRadius:i,borderStyle:"solid",borderWidth:1,boxShadow:n?"0 0 0 1px ".concat(o.primary):void 0,cursor:"default",display:"flex",flexWrap:"wrap",justifyContent:"space-between",minHeight:a.controlHeight,outline:"0 !important",position:"relative",transition:"all 100ms","&:hover":{borderColor:n?o.primary:o.neutral30}}},dropdownIndicator:im,group:function(e){var t=e.theme.spacing;return{paddingBottom:2*t.baseUnit,paddingTop:2*t.baseUnit}},groupHeading:function(e){var t=e.theme.spacing;return{label:"group",color:"#999",cursor:"default",display:"block",fontSize:"75%",fontWeight:500,marginBottom:"0.25em",paddingLeft:3*t.baseUnit,paddingRight:3*t.baseUnit,textTransform:"uppercase"}},indicatorsContainer:function(){return{alignItems:"center",alignSelf:"stretch",display:"flex",flexShrink:0}},indicatorSeparator:function(e){var t=e.isDisabled,n=e.theme,r=n.spacing.baseUnit,o=n.colors;return{label:"indicatorSeparator",alignSelf:"stretch",backgroundColor:t?o.neutral10:o.neutral20,marginBottom:2*r,marginTop:2*r,width:1}},input:function(e){var t=e.isDisabled,n=e.value,r=e.theme,o=r.spacing,i=r.colors;return gh({margin:o.baseUnit/2,paddingBottom:o.baseUnit/2,paddingTop:o.baseUnit/2,visibility:t?"hidden":"visible",color:i.neutral80,transform:n?"translateZ(0)":""},dm)},loadingIndicator:function(e){var t=e.isFocused,n=e.size,r=e.theme,o=r.colors,i=r.spacing.baseUnit;return{label:"loadingIndicator",color:t?o.neutral60:o.neutral20,display:"flex",padding:2*i,transition:"color 150ms",alignSelf:"center",fontSize:n,lineHeight:1,marginRight:n,textAlign:"center",verticalAlign:"middle"}},loadingMessage:$h,menu:function(e){var t,n=e.placement,r=e.theme,o=r.borderRadius,i=r.spacing,a=r.colors;return mh(t={label:"menu"},function(e){return e?{bottom:"top",top:"bottom"}[e]:"bottom"}(n),"100%"),mh(t,"backgroundColor",a.neutral0),mh(t,"borderRadius",o),mh(t,"boxShadow","0 0 0 1px hsla(0, 0%, 0%, 0.1), 0 4px 11px hsla(0, 0%, 0%, 0.1)"),mh(t,"marginBottom",i.menuGutter),mh(t,"marginTop",i.menuGutter),mh(t,"position","absolute"),mh(t,"width","100%"),mh(t,"zIndex",1),t},menuList:function(e){var t=e.maxHeight,n=e.theme.spacing.baseUnit;return{maxHeight:t,overflowY:"auto",paddingBottom:n,paddingTop:n,position:"relative",WebkitOverflowScrolling:"touch"}},menuPortal:function(e){var t=e.rect,n=e.offset,r=e.position;return{left:t.left,position:r,top:n,width:t.width,zIndex:1}},multiValue:function(e){var t=e.theme,n=t.spacing,r=t.borderRadius;return{label:"multiValue",backgroundColor:t.colors.neutral10,borderRadius:r/2,display:"flex",margin:n.baseUnit/2,minWidth:0}},multiValueLabel:function(e){var t=e.theme,n=t.borderRadius,r=t.colors,o=e.cropWithEllipsis;return{borderRadius:n/2,color:r.neutral80,fontSize:"85%",overflow:"hidden",padding:3,paddingLeft:6,textOverflow:o||void 0===o?"ellipsis":void 0,whiteSpace:"nowrap"}},multiValueRemove:function(e){var t=e.theme,n=t.spacing,r=t.borderRadius,o=t.colors;return{alignItems:"center",borderRadius:r/2,backgroundColor:e.isFocused?o.dangerLight:void 0,display:"flex",paddingLeft:n.baseUnit,paddingRight:n.baseUnit,":hover":{backgroundColor:o.dangerLight,color:o.danger}}},noOptionsMessage:Hh,option:function(e){var t=e.isDisabled,n=e.isFocused,r=e.isSelected,o=e.theme,i=o.spacing,a=o.colors;return{label:"option",backgroundColor:r?a.primary:n?a.primary25:"transparent",color:t?a.neutral20:r?a.neutral0:"inherit",cursor:"default",display:"block",fontSize:"inherit",padding:"".concat(2*i.baseUnit,"px ").concat(3*i.baseUnit,"px"),width:"100%",userSelect:"none",WebkitTapHighlightColor:"rgba(0, 0, 0, 0)",":active":{backgroundColor:t?void 0:r?a.primary:a.primary50}}},placeholder:function(e){var t=e.theme,n=t.spacing;return{label:"placeholder",color:t.colors.neutral50,gridArea:"1 / 1 / 2 / 3",marginLeft:n.baseUnit/2,marginRight:n.baseUnit/2}},singleValue:function(e){var t=e.isDisabled,n=e.theme,r=n.spacing,o=n.colors;return{label:"singleValue",color:t?o.neutral40:o.neutral80,gridArea:"1 / 1 / 2 / 3",marginLeft:r.baseUnit/2,marginRight:r.baseUnit/2,maxWidth:"100%",overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap"}},valueContainer:function(e){var t=e.theme.spacing,n=e.isMulti,r=e.hasValue,o=e.selectProps.controlShouldRenderValue;return{alignItems:"center",display:n&&r&&o?"flex":"grid",flex:1,flexWrap:"wrap",padding:"".concat(t.baseUnit/2,"px ").concat(2*t.baseUnit,"px"),WebkitOverflowScrolling:"touch",position:"relative",overflow:"hidden"}}},Jm={borderRadius:4,colors:{primary:"#2684FF",primary75:"#4C9AFF",primary50:"#B2D4FF",primary25:"#DEEBFF",danger:"#DE350B",dangerLight:"#FFBDAD",neutral0:"hsl(0, 0%, 100%)",neutral5:"hsl(0, 0%, 95%)",neutral10:"hsl(0, 0%, 90%)",neutral20:"hsl(0, 0%, 80%)",neutral30:"hsl(0, 0%, 70%)",neutral40:"hsl(0, 0%, 60%)",neutral50:"hsl(0, 0%, 50%)",neutral60:"hsl(0, 0%, 40%)",neutral70:"hsl(0, 0%, 30%)",neutral80:"hsl(0, 0%, 20%)",neutral90:"hsl(0, 0%, 10%)"},spacing:{baseUnit:4,controlHeight:38,menuGutter:8}},Zm={"aria-live":"polite",backspaceRemovesValue:!0,blurInputOnSelect:Ih(),captureMenuScroll:!Ih(),closeMenuOnSelect:!0,closeMenuOnScroll:!1,components:{},controlShouldRenderValue:!0,escapeClearsValue:!1,filterOption:function(e,t){if(e.data.__isNew__)return!0;var n=gh({ignoreCase:!0,ignoreAccents:!0,stringify:Nm,trim:!0,matchFrom:"any"},undefined),r=n.ignoreCase,o=n.ignoreAccents,i=n.stringify,a=n.trim,s=n.matchFrom,l=a?Im(t):t,u=a?Im(i(e)):i(e);return r&&(l=l.toLowerCase(),u=u.toLowerCase()),o&&(l=Tm(l),u=Am(u)),"start"===s?u.substr(0,l.length)===l:u.indexOf(l)>-1},formatGroupLabel:function(e){return e.label},getOptionLabel:Qm,getOptionValue:Xm,isDisabled:!1,isLoading:!1,isMulti:!1,isRtl:!1,isSearchable:!0,isOptionDisabled:function(e){return!!e.isDisabled},loadingMessage:function(){return"Loading..."},maxMenuHeight:300,minMenuHeight:140,menuIsOpen:!1,menuPlacement:"bottom",menuPosition:"absolute",menuShouldBlockScroll:!1,menuShouldScrollIntoView:!function(){try{return/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)}catch(e){return!1}}(),noOptionsMessage:function(){return"No options"},openMenuOnFocus:!1,openMenuOnClick:!0,options:[],pageSize:5,placeholder:"Select...",screenReaderStatus:function(e){var t=e.count;return"".concat(t," result").concat(1!==t?"s":""," available")},styles:{},tabIndex:0,tabSelectsValue:!0};function ev(e,t,n,r){return{type:"option",data:t,isDisabled:av(e,t,n),isSelected:sv(e,t,n),label:ov(e,t),value:iv(e,t),index:r}}function tv(e,t){return e.options.map((function(n,r){if("options"in n){var o=n.options.map((function(n,r){return ev(e,n,t,r)})).filter((function(t){return rv(e,t)}));return o.length>0?{type:"group",data:n,options:o,index:r}:void 0}var i=ev(e,n,t,r);return rv(e,i)?i:void 0})).filter(Dh)}function nv(e){return e.reduce((function(e,t){return"group"===t.type?e.push.apply(e,ym(t.options.map((function(e){return e.data})))):e.push(t.data),e}),[])}function rv(e,t){var n=e.inputValue,r=void 0===n?"":n,o=t.data,i=t.isSelected,a=t.label,s=t.value;return(!uv(e)||!i)&&lv(e,{label:a,value:s,data:o},r)}var ov=function(e,t){return e.getOptionLabel(t)},iv=function(e,t){return e.getOptionValue(t)};function av(e,t,n){return"function"==typeof e.isOptionDisabled&&e.isOptionDisabled(t,n)}function sv(e,t,n){if(n.indexOf(t)>-1)return!0;if("function"==typeof e.isOptionSelected)return e.isOptionSelected(t,n);var r=iv(e,t);return n.some((function(t){return iv(e,t)===r}))}function lv(e,t,n){return!e.filterOption||e.filterOption(t,n)}var uv=function(e){var t=e.hideSelectedOptions,n=e.isMulti;return void 0===t?n:t},cv=1,fv=function(t){hh(r,t);var n=xh(r);function r(e){var t;return ch(this,r),(t=n.call(this,e)).state={ariaSelection:null,focusedOption:null,focusedValue:null,inputIsHidden:!1,isFocused:!1,selectValue:[],clearFocusValueOnUpdate:!1,prevWasFocused:!1,inputIsHiddenAfterUpdate:void 0,prevProps:void 0},t.blockOptionHover=!1,t.isComposing=!1,t.commonProps=void 0,t.initialTouchX=0,t.initialTouchY=0,t.instancePrefix="",t.openAfterFocus=!1,t.scrollToFocusedOptionOnUpdate=!1,t.userIsDragging=void 0,t.controlRef=null,t.getControlRef=function(e){t.controlRef=e},t.focusedOptionRef=null,t.getFocusedOptionRef=function(e){t.focusedOptionRef=e},t.menuListRef=null,t.getMenuListRef=function(e){t.menuListRef=e},t.inputRef=null,t.getInputRef=function(e){t.inputRef=e},t.focus=t.focusInput,t.blur=t.blurInput,t.onChange=function(e,n){var r=t.props,o=r.onChange,i=r.name;n.name=i,t.ariaOnChange(e,n),o(e,n)},t.setValue=function(e,n,r){var o=t.props,i=o.closeMenuOnSelect,a=o.isMulti,s=o.inputValue;t.onInputChange("",{action:"set-value",prevInputValue:s}),i&&(t.setState({inputIsHiddenAfterUpdate:!a}),t.onMenuClose()),t.setState({clearFocusValueOnUpdate:!0}),t.onChange(e,{action:n,option:r})},t.selectOption=function(e){var n=t.props,r=n.blurInputOnSelect,o=n.isMulti,i=n.name,a=t.state.selectValue,s=o&&t.isOptionSelected(e,a),l=t.isOptionDisabled(e,a);if(s){var u=t.getOptionValue(e);t.setValue(a.filter((function(e){return t.getOptionValue(e)!==u})),"deselect-option",e)}else{if(l)return void t.ariaOnChange(e,{action:"select-option",option:e,name:i});o?t.setValue([].concat(ym(a),[e]),"select-option",e):t.setValue(e,"select-option")}r&&t.blurInput()},t.removeValue=function(e){var n=t.props.isMulti,r=t.state.selectValue,o=t.getOptionValue(e),i=r.filter((function(e){return t.getOptionValue(e)!==o})),a=zh(n,i,i[0]||null);t.onChange(a,{action:"remove-value",removedValue:e}),t.focusInput()},t.clearValue=function(){var e=t.state.selectValue;t.onChange(zh(t.props.isMulti,[],null),{action:"clear",removedValues:e})},t.popValue=function(){var e=t.props.isMulti,n=t.state.selectValue,r=n[n.length-1],o=n.slice(0,n.length-1),i=zh(e,o,o[0]||null);t.onChange(i,{action:"pop-value",removedValue:r})},t.getValue=function(){return t.state.selectValue},t.cx=function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];return kh.apply(void 0,[t.props.classNamePrefix].concat(n))},t.getOptionLabel=function(e){return ov(t.props,e)},t.getOptionValue=function(e){return iv(t.props,e)},t.getStyles=function(e,n){var r=Km[e](n);r.boxSizing="border-box";var o=t.props.styles[e];return o?o(r,n):r},t.getElementId=function(e){return"".concat(t.instancePrefix,"-").concat(e)},t.getComponents=function(){return e=t.props,gh(gh({},vm),e.components);var e},t.buildCategorizedOptions=function(){return tv(t.props,t.state.selectValue)},t.getCategorizedOptions=function(){return t.props.menuIsOpen?t.buildCategorizedOptions():[]},t.buildFocusableOptions=function(){return nv(t.buildCategorizedOptions())},t.getFocusableOptions=function(){return t.props.menuIsOpen?t.buildFocusableOptions():[]},t.ariaOnChange=function(e,n){t.setState({ariaSelection:gh({value:e},n)})},t.onMenuMouseDown=function(e){0===e.button&&(e.stopPropagation(),e.preventDefault(),t.focusInput())},t.onMenuMouseMove=function(e){t.blockOptionHover=!1},t.onControlMouseDown=function(e){if(!e.defaultPrevented){var n=t.props.openMenuOnClick;t.state.isFocused?t.props.menuIsOpen?"INPUT"!==e.target.tagName&&"TEXTAREA"!==e.target.tagName&&t.onMenuClose():n&&t.openMenu("first"):(n&&(t.openAfterFocus=!0),t.focusInput()),"INPUT"!==e.target.tagName&&"TEXTAREA"!==e.target.tagName&&e.preventDefault()}},t.onDropdownIndicatorMouseDown=function(e){if(!(e&&"mousedown"===e.type&&0!==e.button||t.props.isDisabled)){var n=t.props,r=n.isMulti,o=n.menuIsOpen;t.focusInput(),o?(t.setState({inputIsHiddenAfterUpdate:!r}),t.onMenuClose()):t.openMenu("first"),e.preventDefault()}},t.onClearIndicatorMouseDown=function(e){e&&"mousedown"===e.type&&0!==e.button||(t.clearValue(),e.preventDefault(),t.openAfterFocus=!1,"touchend"===e.type?t.focusInput():setTimeout((function(){return t.focusInput()})))},t.onScroll=function(e){"boolean"==typeof t.props.closeMenuOnScroll?e.target instanceof HTMLElement&&Lh(e.target)&&t.props.onMenuClose():"function"==typeof t.props.closeMenuOnScroll&&t.props.closeMenuOnScroll(e)&&t.props.onMenuClose()},t.onCompositionStart=function(){t.isComposing=!0},t.onCompositionEnd=function(){t.isComposing=!1},t.onTouchStart=function(e){var n=e.touches,r=n&&n.item(0);r&&(t.initialTouchX=r.clientX,t.initialTouchY=r.clientY,t.userIsDragging=!1)},t.onTouchMove=function(e){var n=e.touches,r=n&&n.item(0);if(r){var o=Math.abs(r.clientX-t.initialTouchX),i=Math.abs(r.clientY-t.initialTouchY);t.userIsDragging=o>5||i>5}},t.onTouchEnd=function(e){t.userIsDragging||(t.controlRef&&!t.controlRef.contains(e.target)&&t.menuListRef&&!t.menuListRef.contains(e.target)&&t.blurInput(),t.initialTouchX=0,t.initialTouchY=0)},t.onControlTouchEnd=function(e){t.userIsDragging||t.onControlMouseDown(e)},t.onClearIndicatorTouchEnd=function(e){t.userIsDragging||t.onClearIndicatorMouseDown(e)},t.onDropdownIndicatorTouchEnd=function(e){t.userIsDragging||t.onDropdownIndicatorMouseDown(e)},t.handleInputChange=function(e){var n=t.props.inputValue,r=e.currentTarget.value;t.setState({inputIsHiddenAfterUpdate:!1}),t.onInputChange(r,{action:"input-change",prevInputValue:n}),t.props.menuIsOpen||t.onMenuOpen()},t.onInputFocus=function(e){t.props.onFocus&&t.props.onFocus(e),t.setState({inputIsHiddenAfterUpdate:!1,isFocused:!0}),(t.openAfterFocus||t.props.openMenuOnFocus)&&t.openMenu("first"),t.openAfterFocus=!1},t.onInputBlur=function(e){var n=t.props.inputValue;t.menuListRef&&t.menuListRef.contains(document.activeElement)?t.inputRef.focus():(t.props.onBlur&&t.props.onBlur(e),t.onInputChange("",{action:"input-blur",prevInputValue:n}),t.onMenuClose(),t.setState({focusedValue:null,isFocused:!1}))},t.onOptionHover=function(e){t.blockOptionHover||t.state.focusedOption===e||t.setState({focusedOption:e})},t.shouldHideSelectedOptions=function(){return uv(t.props)},t.onKeyDown=function(e){var n=t.props,r=n.isMulti,o=n.backspaceRemovesValue,i=n.escapeClearsValue,a=n.inputValue,s=n.isClearable,l=n.isDisabled,u=n.menuIsOpen,c=n.onKeyDown,f=n.tabSelectsValue,p=n.openMenuOnFocus,d=t.state,h=d.focusedOption,m=d.focusedValue,v=d.selectValue;if(!(l||"function"==typeof c&&(c(e),e.defaultPrevented))){switch(t.blockOptionHover=!0,e.key){case"ArrowLeft":if(!r||a)return;t.focusValue("previous");break;case"ArrowRight":if(!r||a)return;t.focusValue("next");break;case"Delete":case"Backspace":if(a)return;if(m)t.removeValue(m);else{if(!o)return;r?t.popValue():s&&t.clearValue()}break;case"Tab":if(t.isComposing)return;if(e.shiftKey||!u||!f||!h||p&&t.isOptionSelected(h,v))return;t.selectOption(h);break;case"Enter":if(229===e.keyCode)break;if(u){if(!h)return;if(t.isComposing)return;t.selectOption(h);break}return;case"Escape":u?(t.setState({inputIsHiddenAfterUpdate:!1}),t.onInputChange("",{action:"menu-close",prevInputValue:a}),t.onMenuClose()):s&&i&&t.clearValue();break;case" ":if(a)return;if(!u){t.openMenu("first");break}if(!h)return;t.selectOption(h);break;case"ArrowUp":u?t.focusOption("up"):t.openMenu("last");break;case"ArrowDown":u?t.focusOption("down"):t.openMenu("first");break;case"PageUp":if(!u)return;t.focusOption("pageup");break;case"PageDown":if(!u)return;t.focusOption("pagedown");break;case"Home":if(!u)return;t.focusOption("first");break;case"End":if(!u)return;t.focusOption("last");break;default:return}e.preventDefault()}},t.instancePrefix="react-select-"+(t.props.instanceId||++cv),t.state.selectValue=Oh(e.value),t}return ph(r,[{key:"componentDidMount",value:function(){this.startListeningComposition(),this.startListeningToTouch(),this.props.closeMenuOnScroll&&document&&document.addEventListener&&document.addEventListener("scroll",this.onScroll,!0),this.props.autoFocus&&this.focusInput()}},{key:"componentDidUpdate",value:function(e){var t,n,r,o,i,a=this.props,s=a.isDisabled,l=a.menuIsOpen,u=this.state.isFocused;(u&&!s&&e.isDisabled||u&&l&&!e.menuIsOpen)&&this.focusInput(),u&&s&&!e.isDisabled&&this.setState({isFocused:!1},this.onMenuClose),this.menuListRef&&this.focusedOptionRef&&this.scrollToFocusedOptionOnUpdate&&(t=this.menuListRef,n=this.focusedOptionRef,r=t.getBoundingClientRect(),o=n.getBoundingClientRect(),i=n.offsetHeight/3,o.bottom+i>r.bottom?Ph(t,Math.min(n.offsetTop+n.clientHeight-t.offsetHeight+i,t.scrollHeight)):o.top-i<r.top&&Ph(t,Math.max(n.offsetTop-i,0)),this.scrollToFocusedOptionOnUpdate=!1)}},{key:"componentWillUnmount",value:function(){this.stopListeningComposition(),this.stopListeningToTouch(),document.removeEventListener("scroll",this.onScroll,!0)}},{key:"onMenuOpen",value:function(){this.props.onMenuOpen()}},{key:"onMenuClose",value:function(){this.onInputChange("",{action:"menu-close",prevInputValue:this.props.inputValue}),this.props.onMenuClose()}},{key:"onInputChange",value:function(e,t){this.props.onInputChange(e,t)}},{key:"focusInput",value:function(){this.inputRef&&this.inputRef.focus()}},{key:"blurInput",value:function(){this.inputRef&&this.inputRef.blur()}},{key:"openMenu",value:function(e){var t=this,n=this.state,r=n.selectValue,o=n.isFocused,i=this.buildFocusableOptions(),a="first"===e?0:i.length-1;if(!this.props.isMulti){var s=i.indexOf(r[0]);s>-1&&(a=s)}this.scrollToFocusedOptionOnUpdate=!(o&&this.menuListRef),this.setState({inputIsHiddenAfterUpdate:!1,focusedValue:null,focusedOption:i[a]},(function(){return t.onMenuOpen()}))}},{key:"focusValue",value:function(e){var t=this.state,n=t.selectValue,r=t.focusedValue;if(this.props.isMulti){this.setState({focusedOption:null});var o=n.indexOf(r);r||(o=-1);var i=n.length-1,a=-1;if(n.length){switch(e){case"previous":a=0===o?0:-1===o?i:o-1;break;case"next":o>-1&&o<i&&(a=o+1)}this.setState({inputIsHidden:-1!==a,focusedValue:n[a]})}}}},{key:"focusOption",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"first",t=this.props.pageSize,n=this.state.focusedOption,r=this.getFocusableOptions();if(r.length){var o=0,i=r.indexOf(n);n||(i=-1),"up"===e?o=i>0?i-1:r.length-1:"down"===e?o=(i+1)%r.length:"pageup"===e?(o=i-t)<0&&(o=0):"pagedown"===e?(o=i+t)>r.length-1&&(o=r.length-1):"last"===e&&(o=r.length-1),this.scrollToFocusedOptionOnUpdate=!0,this.setState({focusedOption:r[o],focusedValue:null})}}},{key:"getTheme",value:function(){return this.props.theme?"function"==typeof this.props.theme?this.props.theme(Jm):gh(gh({},Jm),this.props.theme):Jm}},{key:"getCommonProps",value:function(){var e=this.clearValue,t=this.cx,n=this.getStyles,r=this.getValue,o=this.selectOption,i=this.setValue,a=this.props,s=a.isMulti,l=a.isRtl,u=a.options;return{clearValue:e,cx:t,getStyles:n,getValue:r,hasValue:this.hasValue(),isMulti:s,isRtl:l,options:u,selectOption:o,selectProps:a,setValue:i,theme:this.getTheme()}}},{key:"hasValue",value:function(){return this.state.selectValue.length>0}},{key:"hasOptions",value:function(){return!!this.getFocusableOptions().length}},{key:"isClearable",value:function(){var e=this.props,t=e.isClearable,n=e.isMulti;return void 0===t?n:t}},{key:"isOptionDisabled",value:function(e,t){return av(this.props,e,t)}},{key:"isOptionSelected",value:function(e,t){return sv(this.props,e,t)}},{key:"filterOption",value:function(e,t){return lv(this.props,e,t)}},{key:"formatOptionLabel",value:function(e,t){if("function"==typeof this.props.formatOptionLabel){var n=this.props.inputValue,r=this.state.selectValue;return this.props.formatOptionLabel(e,{context:t,inputValue:n,selectValue:r})}return this.getOptionLabel(e)}},{key:"formatGroupLabel",value:function(e){return this.props.formatGroupLabel(e)}},{key:"startListeningComposition",value:function(){document&&document.addEventListener&&(document.addEventListener("compositionstart",this.onCompositionStart,!1),document.addEventListener("compositionend",this.onCompositionEnd,!1))}},{key:"stopListeningComposition",value:function(){document&&document.removeEventListener&&(document.removeEventListener("compositionstart",this.onCompositionStart),document.removeEventListener("compositionend",this.onCompositionEnd))}},{key:"startListeningToTouch",value:function(){document&&document.addEventListener&&(document.addEventListener("touchstart",this.onTouchStart,!1),document.addEventListener("touchmove",this.onTouchMove,!1),document.addEventListener("touchend",this.onTouchEnd,!1))}},{key:"stopListeningToTouch",value:function(){document&&document.removeEventListener&&(document.removeEventListener("touchstart",this.onTouchStart),document.removeEventListener("touchmove",this.onTouchMove),document.removeEventListener("touchend",this.onTouchEnd))}},{key:"renderInput",value:function(){var t=this.props,n=t.isDisabled,r=t.isSearchable,o=t.inputId,i=t.inputValue,a=t.tabIndex,s=t.form,l=t.menuIsOpen,u=this.getComponents().Input,c=this.state,f=c.inputIsHidden,p=c.ariaSelection,d=this.commonProps,h=o||this.getElementId("input"),m=gh(gh(gh({"aria-autocomplete":"list","aria-expanded":l,"aria-haspopup":!0,"aria-errormessage":this.props["aria-errormessage"],"aria-invalid":this.props["aria-invalid"],"aria-label":this.props["aria-label"],"aria-labelledby":this.props["aria-labelledby"],role:"combobox"},l&&{"aria-controls":this.getElementId("listbox"),"aria-owns":this.getElementId("listbox")}),!r&&{"aria-readonly":!0}),this.hasValue()?"initial-input-focus"===(null==p?void 0:p.action)&&{"aria-describedby":this.getElementId("live-region")}:{"aria-describedby":this.getElementId("placeholder")});return r?e.createElement(u,jp({},d,{autoCapitalize:"none",autoComplete:"off",autoCorrect:"off",id:h,innerRef:this.getInputRef,isDisabled:n,isHidden:f,onBlur:this.onInputBlur,onChange:this.handleInputChange,onFocus:this.onInputFocus,spellCheck:"false",tabIndex:a,form:s,type:"text",value:i},m)):e.createElement(Rm,jp({id:h,innerRef:this.getInputRef,onBlur:this.onInputBlur,onChange:Sh,onFocus:this.onInputFocus,disabled:n,tabIndex:a,inputMode:"none",form:s,value:""},m))}},{key:"renderPlaceholderOrValue",value:function(){var t=this,n=this.getComponents(),r=n.MultiValue,o=n.MultiValueContainer,i=n.MultiValueLabel,a=n.MultiValueRemove,s=n.SingleValue,l=n.Placeholder,u=this.commonProps,c=this.props,f=c.controlShouldRenderValue,p=c.isDisabled,d=c.isMulti,h=c.inputValue,m=c.placeholder,v=this.state,y=v.selectValue,g=v.focusedValue,b=v.isFocused;if(!this.hasValue()||!f)return h?null:e.createElement(l,jp({},u,{key:"placeholder",isDisabled:p,isFocused:b,innerProps:{id:this.getElementId("placeholder")}}),m);if(d)return y.map((function(n,s){var l=n===g,c="".concat(t.getOptionLabel(n),"-").concat(t.getOptionValue(n));return e.createElement(r,jp({},u,{components:{Container:o,Label:i,Remove:a},isFocused:l,isDisabled:p,key:c,index:s,removeProps:{onClick:function(){return t.removeValue(n)},onTouchEnd:function(){return t.removeValue(n)},onMouseDown:function(e){e.preventDefault()}},data:n}),t.formatOptionLabel(n,"value"))}));if(h)return null;var w=y[0];return e.createElement(s,jp({},u,{data:w,isDisabled:p}),this.formatOptionLabel(w,"value"))}},{key:"renderClearIndicator",value:function(){var t=this.getComponents().ClearIndicator,n=this.commonProps,r=this.props,o=r.isDisabled,i=r.isLoading,a=this.state.isFocused;if(!this.isClearable()||!t||o||!this.hasValue()||i)return null;var s={onMouseDown:this.onClearIndicatorMouseDown,onTouchEnd:this.onClearIndicatorTouchEnd,"aria-hidden":"true"};return e.createElement(t,jp({},n,{innerProps:s,isFocused:a}))}},{key:"renderLoadingIndicator",value:function(){var t=this.getComponents().LoadingIndicator,n=this.commonProps,r=this.props,o=r.isDisabled,i=r.isLoading,a=this.state.isFocused;return t&&i?e.createElement(t,jp({},n,{innerProps:{"aria-hidden":"true"},isDisabled:o,isFocused:a})):null}},{key:"renderIndicatorSeparator",value:function(){var t=this.getComponents(),n=t.DropdownIndicator,r=t.IndicatorSeparator;if(!n||!r)return null;var o=this.commonProps,i=this.props.isDisabled,a=this.state.isFocused;return e.createElement(r,jp({},o,{isDisabled:i,isFocused:a}))}},{key:"renderDropdownIndicator",value:function(){var t=this.getComponents().DropdownIndicator;if(!t)return null;var n=this.commonProps,r=this.props.isDisabled,o=this.state.isFocused,i={onMouseDown:this.onDropdownIndicatorMouseDown,onTouchEnd:this.onDropdownIndicatorTouchEnd,"aria-hidden":"true"};return e.createElement(t,jp({},n,{innerProps:i,isDisabled:r,isFocused:o}))}},{key:"renderMenu",value:function(){var t=this,n=this.getComponents(),r=n.Group,o=n.GroupHeading,i=n.Menu,a=n.MenuList,s=n.MenuPortal,l=n.LoadingMessage,u=n.NoOptionsMessage,c=n.Option,f=this.commonProps,p=this.state.focusedOption,d=this.props,h=d.captureMenuScroll,m=d.inputValue,v=d.isLoading,y=d.loadingMessage,g=d.minMenuHeight,b=d.maxMenuHeight,w=d.menuIsOpen,x=d.menuPlacement,E=d.menuPosition,S=d.menuPortalTarget,_=d.menuShouldBlockScroll,k=d.menuShouldScrollIntoView,O=d.noOptionsMessage,j=d.onMenuScrollToTop,L=d.onMenuScrollToBottom;if(!w)return null;var C,P=function(n,r){var o=n.type,i=n.data,a=n.isDisabled,s=n.isSelected,l=n.label,u=n.value,d=p===i,h=a?void 0:function(){return t.onOptionHover(i)},m=a?void 0:function(){return t.selectOption(i)},v="".concat(t.getElementId("option"),"-").concat(r),y={id:v,onClick:m,onMouseMove:h,onMouseOver:h,tabIndex:-1};return e.createElement(c,jp({},f,{innerProps:y,data:i,isDisabled:a,isSelected:s,key:v,label:l,type:o,value:u,isFocused:d,innerRef:d?t.getFocusedOptionRef:void 0}),t.formatOptionLabel(n.data,"menu"))};if(this.hasOptions())C=this.getCategorizedOptions().map((function(n){if("group"===n.type){var i=n.data,a=n.options,s=n.index,l="".concat(t.getElementId("group"),"-").concat(s),u="".concat(l,"-heading");return e.createElement(r,jp({},f,{key:l,data:i,options:a,Heading:o,headingProps:{id:u,data:n.data},label:t.formatGroupLabel(n.data)}),n.options.map((function(e){return P(e,"".concat(s,"-").concat(e.index))})))}if("option"===n.type)return P(n,"".concat(n.index))}));else if(v){var A=y({inputValue:m});if(null===A)return null;C=e.createElement(l,f,A)}else{var T=O({inputValue:m});if(null===T)return null;C=e.createElement(u,f,T)}var I={minMenuHeight:g,maxMenuHeight:b,menuPlacement:x,menuPosition:E,menuShouldScrollIntoView:k},N=e.createElement(Bh,jp({},f,I),(function(n){var r=n.ref,o=n.placerProps,s=o.placement,l=o.maxHeight;return e.createElement(i,jp({},f,I,{innerRef:r,innerProps:{onMouseDown:t.onMenuMouseDown,onMouseMove:t.onMenuMouseMove,id:t.getElementId("listbox")},isLoading:v,placement:s}),e.createElement(qm,{captureEnabled:h,onTopArrive:j,onBottomArrive:L,lockEnabled:_},(function(n){return e.createElement(a,jp({},f,{innerRef:function(e){t.getMenuListRef(e),n(e)},isLoading:v,maxHeight:l,focusedOption:p}),C)})))}));return S||"fixed"===E?e.createElement(s,jp({},f,{appendTo:S,controlElement:this.controlRef,menuPlacement:x,menuPosition:E}),N):N}},{key:"renderFormField",value:function(){var t=this,n=this.props,r=n.delimiter,o=n.isDisabled,i=n.isMulti,a=n.name,s=this.state.selectValue;if(a&&!o){if(i){if(r){var l=s.map((function(e){return t.getOptionValue(e)})).join(r);return e.createElement("input",{name:a,type:"hidden",value:l})}var u=s.length>0?s.map((function(n,r){return e.createElement("input",{key:"i-".concat(r),name:a,type:"hidden",value:t.getOptionValue(n)})})):e.createElement("input",{name:a,type:"hidden"});return e.createElement("div",null,u)}var c=s[0]?this.getOptionValue(s[0]):"";return e.createElement("input",{name:a,type:"hidden",value:c})}}},{key:"renderLiveRegion",value:function(){var t=this.commonProps,n=this.state,r=n.ariaSelection,o=n.focusedOption,i=n.focusedValue,a=n.isFocused,s=n.selectValue,l=this.getFocusableOptions();return e.createElement(_m,jp({},t,{id:this.getElementId("live-region"),ariaSelection:r,focusedOption:o,focusedValue:i,isFocused:a,selectValue:s,focusableOptions:l}))}},{key:"render",value:function(){var t=this.getComponents(),n=t.Control,r=t.IndicatorsContainer,o=t.SelectContainer,i=t.ValueContainer,a=this.props,s=a.className,l=a.id,u=a.isDisabled,c=a.menuIsOpen,f=this.state.isFocused,p=this.commonProps=this.getCommonProps();return e.createElement(o,jp({},p,{className:s,innerProps:{id:l,onKeyDown:this.onKeyDown},isDisabled:u,isFocused:f}),this.renderLiveRegion(),e.createElement(n,jp({},p,{innerRef:this.getControlRef,innerProps:{onMouseDown:this.onControlMouseDown,onTouchEnd:this.onControlTouchEnd},isDisabled:u,isFocused:f,menuIsOpen:c}),e.createElement(i,jp({},p,{isDisabled:u}),this.renderPlaceholderOrValue(),this.renderInput()),e.createElement(r,jp({},p,{isDisabled:u}),this.renderClearIndicator(),this.renderLoadingIndicator(),this.renderIndicatorSeparator(),this.renderDropdownIndicator())),this.renderMenu(),this.renderFormField())}}],[{key:"getDerivedStateFromProps",value:function(e,t){var n=t.prevProps,r=t.clearFocusValueOnUpdate,o=t.inputIsHiddenAfterUpdate,i=t.ariaSelection,a=t.isFocused,s=t.prevWasFocused,l=e.options,u=e.value,c=e.menuIsOpen,f=e.inputValue,p=e.isMulti,d=Oh(u),h={};if(n&&(u!==n.value||l!==n.options||c!==n.menuIsOpen||f!==n.inputValue)){var m=c?function(e,t){return nv(tv(e,t))}(e,d):[],v=r?function(e,t){var n=e.focusedValue,r=e.selectValue.indexOf(n);if(r>-1){if(t.indexOf(n)>-1)return n;if(r<t.length)return t[r]}return null}(t,d):null,y=function(e,t){var n=e.focusedOption;return n&&t.indexOf(n)>-1?n:t[0]}(t,m);h={selectValue:d,focusedOption:y,focusedValue:v,clearFocusValueOnUpdate:!1}}var g=null!=o&&e!==n?{inputIsHidden:o,inputIsHiddenAfterUpdate:void 0}:{},b=i,w=a&&s;return a&&!w&&(b={value:zh(p,d,d[0]||null),options:d,action:"initial-input-focus"},w=!s),"initial-input-focus"===(null==i?void 0:i.action)&&(b=null),gh(gh(gh({},h),g),{},{prevProps:e,ariaSelection:b,prevWasFocused:w})}}]),r}(e.Component);fv.defaultProps=Zm;var pv=["defaultInputValue","defaultMenuIsOpen","defaultValue","inputValue","menuIsOpen","onChange","onInputChange","onMenuClose","onMenuOpen","value"],dv=["allowCreateWhileLoading","createOptionPosition","formatCreateLabel","isValidNewOption","getNewOptionData","onCreateOption","options","onChange"],hv=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1?arguments[1]:void 0,n=arguments.length>2?arguments[2]:void 0,r=String(e).toLowerCase(),o=String(n.getOptionValue(t)).toLowerCase(),i=String(n.getOptionLabel(t)).toLowerCase();return o===r||i===r},mv={formatCreateLabel:function(e){return'Create "'.concat(e,'"')},isValidNewOption:function(e,t,n,r){return!(!e||t.some((function(t){return hv(e,t,r)}))||n.some((function(t){return hv(e,t,r)})))},getNewOptionData:function(e,t){return{label:t,value:e,__isNew__:!0}}},vv=(0,e.forwardRef)((function(t,n){var r=function(t){var n=t.defaultInputValue,r=void 0===n?"":n,o=t.defaultMenuIsOpen,i=void 0!==o&&o,a=t.defaultValue,s=void 0===a?null:a,l=t.inputValue,u=t.menuIsOpen,c=t.onChange,f=t.onInputChange,p=t.onMenuClose,d=t.onMenuOpen,h=t.value,m=ih(t,pv),v=lh((0,e.useState)(void 0!==l?l:r),2),y=v[0],g=v[1],b=lh((0,e.useState)(void 0!==u?u:i),2),w=b[0],x=b[1],E=lh((0,e.useState)(void 0!==h?h:s),2),S=E[0],_=E[1],k=(0,e.useCallback)((function(e,t){"function"==typeof c&&c(e,t),_(e)}),[c]),O=(0,e.useCallback)((function(e,t){var n;"function"==typeof f&&(n=f(e,t)),g(void 0!==n?n:e)}),[f]),j=(0,e.useCallback)((function(){"function"==typeof d&&d(),x(!0)}),[d]),L=(0,e.useCallback)((function(){"function"==typeof p&&p(),x(!1)}),[p]),C=void 0!==l?l:y,P=void 0!==u?u:w,A=void 0!==h?h:S;return gh(gh({},m),{},{inputValue:C,menuIsOpen:P,onChange:k,onInputChange:O,onMenuClose:L,onMenuOpen:j,value:A})}(t),o=function(t){var n=t.allowCreateWhileLoading,r=void 0!==n&&n,o=t.createOptionPosition,i=void 0===o?"last":o,a=t.formatCreateLabel,s=void 0===a?mv.formatCreateLabel:a,l=t.isValidNewOption,u=void 0===l?mv.isValidNewOption:l,c=t.getNewOptionData,f=void 0===c?mv.getNewOptionData:c,p=t.onCreateOption,d=t.options,h=void 0===d?[]:d,m=t.onChange,v=ih(t,dv),y=v.getOptionValue,g=void 0===y?Xm:y,b=v.getOptionLabel,w=void 0===b?Qm:b,x=v.inputValue,E=v.isLoading,S=v.isMulti,_=v.value,k=v.name,O=(0,e.useMemo)((function(){return u(x,Oh(_),h,{getOptionValue:g,getOptionLabel:w})?f(x,s(x)):void 0}),[s,f,w,g,x,u,h,_]),j=(0,e.useMemo)((function(){return!r&&E||!O?h:"first"===i?[O].concat(ym(h)):[].concat(ym(h),[O])}),[r,i,E,O,h]),L=(0,e.useCallback)((function(e,t){if("select-option"!==t.action)return m(e,t);var n=Array.isArray(e)?e:[e];if(n[n.length-1]!==O)m(e,t);else if(p)p(x);else{var r=f(x,x),o={action:"create-option",name:k,option:r};m(zh(S,[].concat(ym(Oh(_)),[r]),r),o)}}),[f,x,S,k,O,p,m,_]);return gh(gh({},v),{},{options:j,onChange:L})}(r);return e.createElement(fv,jp({ref:n},o))}));const yv=vv;function gv(e){return gv="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},gv(e)}function bv(){bv=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,r="function"==typeof Symbol?Symbol:{},o=r.iterator||"@@iterator",i=r.asyncIterator||"@@asyncIterator",a=r.toStringTag||"@@toStringTag";function s(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{s({},"")}catch(e){s=function(e,t,n){return e[t]=n}}function l(e,t,n,r){var o=t&&t.prototype instanceof f?t:f,i=Object.create(o.prototype),a=new S(r||[]);return i._invoke=function(e,t,n){var r="suspendedStart";return function(o,i){if("executing"===r)throw new Error("Generator is already running");if("completed"===r){if("throw"===o)throw i;return{value:void 0,done:!0}}for(n.method=o,n.arg=i;;){var a=n.delegate;if(a){var s=w(a,n);if(s){if(s===c)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===r)throw r="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);r="executing";var l=u(e,t,n);if("normal"===l.type){if(r=n.done?"completed":"suspendedYield",l.arg===c)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(r="completed",n.method="throw",n.arg=l.arg)}}}(e,n,a),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var c={};function f(){}function p(){}function d(){}var h={};s(h,o,(function(){return this}));var m=Object.getPrototypeOf,v=m&&m(m(_([])));v&&v!==t&&n.call(v,o)&&(h=v);var y=d.prototype=f.prototype=Object.create(h);function g(e){["next","throw","return"].forEach((function(t){s(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function r(o,i,a,s){var l=u(e[o],e,i);if("throw"!==l.type){var c=l.arg,f=c.value;return f&&"object"==gv(f)&&n.call(f,"__await")?t.resolve(f.__await).then((function(e){r("next",e,a,s)}),(function(e){r("throw",e,a,s)})):t.resolve(f).then((function(e){c.value=e,a(c)}),(function(e){return r("throw",e,a,s)}))}s(l.arg)}var o;this._invoke=function(e,n){function i(){return new t((function(t,o){r(e,n,t,o)}))}return o=o?o.then(i,i):i()}}function w(e,t){var n=e.iterator[t.method];if(void 0===n){if(t.delegate=null,"throw"===t.method){if(e.iterator.return&&(t.method="return",t.arg=void 0,w(e,t),"throw"===t.method))return c;t.method="throw",t.arg=new TypeError("The iterator does not provide a 'throw' method")}return c}var r=u(n,e.iterator,t.arg);if("throw"===r.type)return t.method="throw",t.arg=r.arg,t.delegate=null,c;var o=r.arg;return o?o.done?(t[e.resultName]=o.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,c):o:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,c)}function x(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function E(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function S(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(x,this),this.reset(!0)}function _(e){if(e){var t=e[o];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var r=-1,i=function t(){for(;++r<e.length;)if(n.call(e,r))return t.value=e[r],t.done=!1,t;return t.value=void 0,t.done=!0,t};return i.next=i}}return{next:k}}function k(){return{value:void 0,done:!0}}return p.prototype=d,s(y,"constructor",d),s(d,"constructor",p),p.displayName=s(d,a,"GeneratorFunction"),e.isGeneratorFunction=function(e){var t="function"==typeof e&&e.constructor;return!!t&&(t===p||"GeneratorFunction"===(t.displayName||t.name))},e.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,d):(e.__proto__=d,s(e,a,"GeneratorFunction")),e.prototype=Object.create(y),e},e.awrap=function(e){return{__await:e}},g(b.prototype),s(b.prototype,i,(function(){return this})),e.AsyncIterator=b,e.async=function(t,n,r,o,i){void 0===i&&(i=Promise);var a=new b(l(t,n,r,o),i);return e.isGeneratorFunction(n)?a:a.next().then((function(e){return e.done?e.value:a.next()}))},g(y),s(y,a,"Generator"),s(y,o,(function(){return this})),s(y,"toString",(function(){return"[object Generator]"})),e.keys=function(e){var t=[];for(var n in e)t.push(n);return t.reverse(),function n(){for(;t.length;){var r=t.pop();if(r in e)return n.value=r,n.done=!1,n}return n.done=!0,n}},e.values=_,S.prototype={constructor:S,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(E),!e)for(var t in this)"t"===t.charAt(0)&&n.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=void 0)},stop:function(){this.done=!0;var e=this.tryEntries[0].completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var t=this;function r(n,r){return a.type="throw",a.arg=e,t.next=n,r&&(t.method="next",t.arg=void 0),!!r}for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i.completion;if("root"===i.tryLoc)return r("end");if(i.tryLoc<=this.prev){var s=n.call(i,"catchLoc"),l=n.call(i,"finallyLoc");if(s&&l){if(this.prev<i.catchLoc)return r(i.catchLoc,!0);if(this.prev<i.finallyLoc)return r(i.finallyLoc)}else if(s){if(this.prev<i.catchLoc)return r(i.catchLoc,!0)}else{if(!l)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return r(i.finallyLoc)}}}},abrupt:function(e,t){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===e||"continue"===e)&&i.tryLoc<=t&&t<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=e,a.arg=t,i?(this.method="next",this.next=i.finallyLoc,c):this.complete(a)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),c},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),E(n),c}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;E(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:_(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),c}},e}function wv(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}var xv=function(e){var t=e.postId,n=e.targetKeywords,r=void 0===n?"":n;return"".concat(SEOPRESS_DATA.REST_URL,"seopress/v1/posts/").concat(t,"/content-analysis?target_keywords=").concat(r)},Ev=function(){var e,t=(e=bv().mark((function e(t,n){var r,o,i,a;return bv().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return r=t.postId,o=t.targetKeywords,i=void 0===o?"":o,e.next=3,fetch(xv({postId:r,targetKeywords:i.replace(/\s/g,"")}),{headers:{"Content-Type":"application/json","X-WP-Nonce":to(SEOPRESS_DATA,"NONCE",null)},signal:n.signal});case 3:return a=e.sent,e.next=6,a.json();case 6:return e.abrupt("return",e.sent);case 7:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){wv(i,r,o,a,s,"next",e)}function s(e){wv(i,r,o,a,s,"throw",e)}a(void 0)}))});return function(e,n){return t.apply(this,arguments)}}(),Sv=o(7739),_v=o.n(Sv);const kv=function(t){var n=t.className,r=void 0===n?"":n;return e.createElement("span",{className:"dashicons dashicons-yes ".concat(r)})};var Ov=wp.i18n,jv=Ov.__,Lv=Ov._n,Cv=Ov.sprintf,Pv="canonical",Av=function(){return e.createElement("p",null,jv("A canonical URL is required by search engines to handle duplicate content."))},Tv=function(e){return Z()(Yt()(e,{key:"_seopress_robots_index"}),"value",null)};const Iv={key:Pv,title:jv("Canonical URL","wp-seopress"),severity:function(e,t){return Tn()(Z()(e,[Pv,"value"],[]))?Tv(t)?"good":"high":Z()(e,[Pv,"value"],[]).length>1?"high":"good"},component:function(t){var n=t.data,r=t.options,o=void 0===r?{}:r;if(Tn()(Z()(n,[Pv,"value"],[]))){var i=Tv(o);return e.createElement(e.Fragment,null,e.createElement(Av,null),i&&e.createElement("p",null,e.createElement(kv,{className:"sp-dashicons-ok"}),jv("This page doesn't have any canonical URL because your post is set to <strong>noindex</strong>. This is normal.","wp-seopress")),!i&&e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),jv("This page doesn't have any canonical URL.","wp-seopress")))}var a=Z()(n,[Pv,"value"],[]);return e.createElement(e.Fragment,null,e.createElement(Av,null),e.createElement("p",null,Cv(Lv("We found %d canonical URL in your source code. Below, the list:","We found %d canonicals URLs in your source code. Below, the list:",a.length,"wp-seopress"),a.length)),e.createElement("ul",null,a.map((function(t,n){return e.createElement("li",{key:"canonical_".concat(n)},e.createElement("span",{className:"dashicons dashicons-minus"}),e.createElement("a",{href:t,target:"_blank"},t),e.createElement("span",{className:"dashicons dashicons-external"}))}))),a.length>1&&e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),jv("You must fix this. Canonical URL duplication is bad for SEO.","wp-seopress")))}},Nv=[{key:0,name:"good"},{key:1,name:"low"},{key:2,name:"medium"},{key:3,name:"high"}];function Fv(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Rv(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Fv(Object(n),!0).forEach((function(t){Mv(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Fv(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Mv(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Dv=wp.i18n.__,zv=function(e){return e.charAt(e.length-1)},Uv=function(t){var n=t.type,r=zv(n);return e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement("span",{className:"sp-dashicons-ok dashicons dashicons-yes"}),Dv("Target keywords were found in Heading ".concat(r," (H").concat(r,")."),"wp-seopress")))},Vv=function(t){var n=t.data,r=t.options,o=(void 0===r?{}:r).type,i=Z()(n,[o],[]),a=i.value.length,s=zv(o);return 0===a&&"h1"===o?e.createElement(e.Fragment,null,e.createElement("p",{style:{color:"rgb(29, 35, 39)",margin:"10px 0px",fontWeight:"bold",borderBottom:"1px solid var(--borderColorCard)",paddingBottom:"10px"}},"H",s," (",Dv("Heading","wp-seopress"),s,")"),e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),e.createElement("strong",null,Dv("No Heading ".concat(s," (H").concat(s,") found in your content. This is required for both SEO and Accessibility!"),"wp-seopress")))):e.createElement(e.Fragment,null,e.createElement("p",{style:{color:"rgb(29, 35, 39)",margin:"10px 0px",fontWeight:"bold",borderBottom:"1px solid var(--borderColorCard)",paddingBottom:"10px"}},"H",s," (",Dv("Heading","wp-seopress"),s,")"),i.matches.length>0&&e.createElement(Uv,{type:o}),0===i.matches.length&&e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),Dv("None of your target keywords were found in Heading ".concat(zv(o)," (H").concat(zv(o),")."),"wp-seopress")),e.createElement("ul",null,i.matches.map((function(t,n){if(!Ht()(t))return 0===t.count?null:e.createElement("li",{key:"matches_heading_".concat(o,"_").concat(n)},e.createElement("span",{className:"dashicons dashicons-minus"}),Dv("".concat(t.key," was found ").concat(t.count," times."),"wp-seopress"))}))),a>1&&"h1"===o&&e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),Dv("We found ".concat(a," Heading 1 (H1) in your content."),"wp-seopress")),e.createElement("p",null,Dv("You should not use more than one H1 heading in your post content. The rule is simple: only one H1 for each web page. It is better for both SEO and accessibility. Below, the list:","wp-seopress"))),"h1"===o&&i.value.length>1&&e.createElement(e.Fragment,null,e.createElement("p",null,Dv("Below the list:","wp-seopress")),e.createElement("ul",null,i.value.map((function(t,n){return e.createElement("li",{key:"heading_".concat(o,"_").concat(n)},e.createElement("span",{className:"dashicons dashicons-minus"})," ",t)})))))},Gv=function(t){return{key:t,title:Dv("Heading H".concat(zv(t)),"wp-seopress"),severity:function(e,n){return function(e,t){var n=t.type,r=Z()(e,[n,"matches"],[]),o=Z()(e,[n,"value"],[]);return(Tn()(r)||Tn()(o))&&"h1"===n||o.length>1&&"h1"===n?"high":Tn()(r)&&"h3"===n?"low":Tn()(r)?"medium":"good"}(e,Rv(Rv({},n),{},{type:t}))},component:function(n){var r=n.data,o=n.options,i=void 0===o?{}:o;return e.createElement(Vv,{data:r,options:Rv(Rv({},i),{},{type:t})})}}},Bv=[Gv("h1"),Gv("h2"),Gv("h3")];const Wv={key:"heading",title:Dv("Headings","wp-seopress"),severity:function(e,t){var n=0;return Bv.map((function(r){var o=r.severity(e,t),i=Yt()(Nv,{name:o});i.key>n&&(n=i.key)})),Yt()(Nv,{key:n}).name},items:Bv};var Hv=o(9995),$v=o.n(Hv),Yv=wp.i18n.__,qv="images";const Qv={key:qv,title:Yv("Alternative texts of images","wp-seopress"),severity:function(e,t){var n=Z()(e,[qv,"value"],[]);return Tn()(n)?"medium":$v()(n,(function(e){return!Tn()(e.alt)})).true!=n.length?"high":"good"},component:function(t){var n=t.data,r=(t.options,Z()(n,[qv,"value"],[]));return Tn()(r)?e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),Yv("We could not find any image in your content. Content with media is a plus for your SEO.","wp-seopress"))):$v()(r,(function(e){return!Tn()(e.alt)})).true===r.length?e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(kv,{className:"sp-dashicons-ok"}),Yv("All alternative tags are filled in. Good work!","wp-seopress"))):e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),Yv("No alternative text found for these images. Alt tags are important for both SEO and accessibility. Edit your images using the media library or your favorite page builder and fill in alternative text fields.","wp-seopress")),e.createElement("ul",{style:{display:"flex",flexWrap:"wrap"}},r.map((function(t,n){return Tn()(t.alt)?e.createElement("li",{style:{position:"relative",float:"left",padding:"8px",margin:0,color:"#3c434a",cursor:"pointer",listStyle:"none",textAlign:"center",userSelect:"none",width:"25%",boxSizing:"border-box"},key:"attachment_".concat(n)},e.createElement("figure",null,e.createElement("img",{style:{maxWidth:"150px",maxHeight:"150px",objectFit:"cover",border:"1px solid var(--borderColorLight)",cursor:"default",padding:"1px"},src:t.src,width:64}),e.createElement("figcaption",{style:{wordWrap:"break-all"}},t.src))):null}))),e.createElement("p",null,Yv("Note that we scan all your source code, it means, some missing alternative texts of images might be located in your header, sidebar or footer.","wp-seopress")))}};var Xv=wp.i18n.__,Kv="internal_links";const Jv={key:Kv,title:Xv("Internal Links","wp-seopress"),severity:function(e,t){var n=Z()(e,[Kv,"value"],[]);return Tn()(n)?"medium":"good"},component:function(t){var n=t.data,r=(t.options,Z()(n,[Kv,"value"],[]));return e.createElement(e.Fragment,null,e.createElement("p",null,Xv("Internal links are important for SEO and user experience. Always try to link your content together, with quality link anchors.")),Tn()(r)&&e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),Xv("This page doesn't have any internal links from other content. Links from archive pages are not considered internal links due to lack of context.","wp-seopress")),!Tn()(r)&&e.createElement(e.Fragment,null,e.createElement("p",null,Xv("We found ".concat(r.length," internal links in your page. Below, the list:"),"wp-seopress")),e.createElement("ul",null,r.map((function(t,n){return e.createElement("li",{key:"internal_".concat(n)},e.createElement("span",{className:"dashicons dashicons-minus"}),e.createElement("a",{href:t.url,target:"_blank"},t.value),e.createElement("a",{href:t.edit_post_link,title:t.title},t.value),e.createElement("span",{className:"dashicons dashicons-edit-large"}))})))))}};var Zv=wp.i18n.__,ey="description",ty=function(e){return Yt()(e,{key:ey})},ny=function(e){return Z()(ty(e),"value","")};const ry={key:ey,title:Zv("Meta description","wp-seopress"),severity:function(e,t){if(!Ht()(ty(t))&&Tn()(ny(t)))return"medium";if(ny(t).length>160)return"medium";var n=Z()(e,[ey,"matches"],[]);return Tn()(n)?"low":"good"},component:function(t){var n=t.data,r=t.options,o=void 0===r?{}:r;if(!Ht()(ty(o))&&Tn()(ny(o)))return e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),Zv("No custom meta description is set for this post. If the global meta description suits you, you can ignore this recommendation.","wp-seopress"));var i=ny(o),a=Z()(n,"title"),s=Z()(a,"matches",[]);return e.createElement(e.Fragment,null," ",!Tn()(s)&&e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(kv,{className:"sp-dashicons-ok"}),Zv("Target keywords were found in the Meta description.","wp-seopress")),e.createElement("ul",null,s.map((function(t,n){return e.createElement("li",{key:"metaDescription_".concat(n)},e.createElement("span",{className:"dashicons dashicons-minus"}),Zv("".concat(t.key," was found ").concat(t.count," times."),"wp-seopress"))})))),Tn()(s)&&e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),Zv("None of your target keywords were found in the Meta description.","wp-seopress")),i.length>160&&e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),Zv("You custom meta description is too long.","wp-seopress")),i.length<=160&&e.createElement("p",null,e.createElement(kv,{className:"sp-dashicons-ok"}),Zv("The length of your meta description is correct","wp-seopress")))}};var oy=wp.i18n.__,iy="meta_robots",ay=function(){return e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(kv,{className:"sp-dashicons-ok"}),e.createElement("strong",null,"noimageindex")," ",oy("is off. Google will index the images on this page.","wp-seopress")),e.createElement("p",null,e.createElement(kv,{className:"sp-dashicons-ok"}),e.createElement("strong",null,"nositelinkssearchbox")," ",oy("is off. Google will probably display a sitelinks searchbox in search results.","wp-seopress")))};const sy={key:iy,title:oy("Meta robots","wp-seopress"),severity:function(e,t){var n=Z()(e,[iy,"value"],[]);if(!Tn()(n)&&n.length>1)return"high";if(Tn()(n))return"good";var r=te()(n);if(!Ht()(r.match("noindex")))return"high";if(!Ht()(r.match("nofollow")))return"high";if(!Ht()(r.match("noarchive")))return"medium";if(!Ht()(r.match("nosnippet")))return"medium";var o=Z()(e,["meta_google","value"],[]);if(Tn()(o))return"good";var i=te()(o);return Ht()(i.match("noimageindex"))?Ht()(i.match("nositelinkssearchbox"))?"good":"medium":"high"},component:function(t){var n=t.data,r=(t.options,Z()(n,[iy,"value"],[])),o=Z()(n,["meta_google","value"],[]);if(Tn()(r)&&r.length>1)return e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(kv,{className:"sp-dashicons-ok"}),oy("We found no meta robots on this page. It means, your page is index,follow. Search engines will index it, and follow links. ","wp-seopress")),Tn()(o)&&e.createElement(ay,null));var i=te()(r),a=i.match("noindex"),s=i.match("nofollow"),l=i.match("noarchive"),u=i.match("nosnippet"),c=null,f=null;if(!Tn()(o)){var p=o.reduce((function(e,t){return"".concat(e," ").concat(t)}),"");c=p.match("noimageindex"),f=p.match("nositelinkssearchbox")}return e.createElement(e.Fragment,null,r.length>1&&e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),oy("We found ".concat(r.length," meta robots in your page. There is probably something wrong with your theme!"),"wp-seopress")),!Ht()(a)&&e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),e.createElement("strong",null,"noindex")," ",oy("is on! Search engines can't index this page.","wp-seopress")),Ht()(a)&&e.createElement("p",null,e.createElement(kv,{className:"sp-dashicons-ok"}),e.createElement("strong",null,"noindex")," ",oy("is off. Search engines will index this page.","wp-seopress")),!Ht()(s)&&e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),e.createElement("strong",null,"nofollow")," ",oy("is on! Search engines can't follow your links on this page.","wp-seopress")),Ht()(s)&&e.createElement("p",null,e.createElement(kv,{className:"sp-dashicons-ok"}),e.createElement("strong",null,"nofollow")," ",oy("is off. Search engines will follow links on this page.","wp-seopress")),!Ht()(l)&&e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),e.createElement("strong",null,"noarchive")," ",oy("is on! Search engines will not cache your page.","wp-seopress")),Ht()(l)&&e.createElement("p",null,e.createElement(kv,{className:"sp-dashicons-ok"}),e.createElement("strong",null,"noarchive")," ",oy("is off. Search engines will probably cache your page.","wp-seopress")),!Ht()(u)&&e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),e.createElement("strong",null,"nosnippet")," ",oy("is on! Search engines will not display a snippet of this page in search results.","wp-seopress")),Ht()(u)&&e.createElement("p",null,e.createElement(kv,{className:"sp-dashicons-ok"}),e.createElement("strong",null,"nosnippet")," ",oy("is off. Search engines will display a snippet of this page in search results.","wp-seopress")),Tn()(o)&&e.createElement(ay,null),!Tn()(o)&&e.createElement(e.Fragment,null,!Ht()(c)&&e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),e.createElement("strong",null,"noimageindex")," ",oy("is on! Google will not index your images on this page (but if someone makes a direct link to one of your image in this page, it will be indexed).","wp-seopress")),Ht()(c)&&e.createElement("p",null,e.createElement(kv,{className:"sp-dashicons-ok"}),e.createElement("strong",null,"noimageindex")," ",oy("is off. Google will index the images on this page.","wp-seopress")),!Ht()(f)&&e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),e.createElement("strong",null,"nositelinkssearchbox")," ",oy("is on! Google will not display a sitelinks searchbox in search results.","wp-seopress")),Ht()(f)&&e.createElement("p",null,e.createElement(kv,{className:"sp-dashicons-ok"}),e.createElement("strong",null,"nositelinkssearchbox")," ",oy("is off. Google will probably display a sitelinks searchbox in search results.","wp-seopress"))))}};var ly=wp.i18n.__,uy="title",cy=function(e){return Yt()(e,{key:uy})},fy=function(e){return Z()(cy(e),"value","")};const py={key:uy,title:ly("Meta title","wp-seopress"),severity:function(e,t){if(!Ht()(cy(t))&&Tn()(fy(t)))return"medium";if(fy(t).length>65)return"medium";var n=Z()(e,[uy,"matches"],[]);return Tn()(n)?"medium":"good"},component:function(t){var n=t.data,r=t.options,o=void 0===r?{}:r;if(!Ht()(cy(o))&&Tn()(fy(o)))return e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),ly("No custom title is set for this post. If the global meta title suits you, you can ignore this recommendation.","wp-seopress"));var i=fy(o),a=Z()(n,"title"),s=Z()(a,"matches",[]);return e.createElement(e.Fragment,null,!Tn()(s)&&e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(kv,{className:"sp-dashicons-ok"}),ly("Target keywords were found in the Meta Title.","wp-seopress")),e.createElement("ul",null,s.map((function(t,n){return e.createElement("li",{key:"metatitle_".concat(n)},e.createElement("span",{className:"dashicons dashicons-minus"}),ly("".concat(t.key," was found ").concat(t.count," times."),"wp-seopress"))})))),Tn()(s)&&e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),ly("None of your target keywords were found in the Meta Title.","wp-seopress")),i.length>65&&e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),ly("Your custom title is too long.","wp-seopress")),i.length<=65&&e.createElement("p",null,e.createElement(kv,{className:"sp-dashicons-ok"}),ly("The length of your title is correct.","wp-seopress")))}};var dy=wp.i18n.__,hy="links_no_follow";const my={key:hy,title:dy("NoFollow Links","wp-seopress"),severity:function(e,t){var n=Z()(e,[hy,"value"],[]);return!Tn()(n)&&n.length>3?"low":"good"},component:function(t){var n=t.data,r=(t.options,Z()(n,[hy,"value"],[]));return Tn()(r)?e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(kv,{className:"sp-dashicons-ok"}),dy("This page doesn't have any nofollow links.","wp-seopress"))):e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),dy("We found ".concat(r.length," links with nofollow attribute in your page. Do not overuse nofollow attribute in links. Below, the list:"),"wp-seopress")),e.createElement("ul",null,r.map((function(t,n){return e.createElement("li",{key:"link_".concat(n)},e.createElement("span",{className:"dashicons dashicons-minus"}),e.createElement("a",{href:t.url,target:"_blank"},t.value),e.createElement("span",{className:"dashicons dashicons-external"}))}))))}};var vy=wp.i18n.__,yy="outbound_links";const gy={key:yy,title:vy("Outbound Links","wp-seopress"),severity:function(e,t){var n=Z()(e,[yy,"value"],[]);return Tn()(n)?"medium":"good"},component:function(t){var n=t.data,r=(t.options,Z()(n,[yy,"value"],[]));return e.createElement(e.Fragment,null,e.createElement("p",null,vy('Internet is built on the principle of hyperlink. It is therefore perfectly normal to make links between different websites. However, avoid making links to low quality sites, SPAM... If you are not sure about the quality of a site, add the attribute "nofollow" to your link.')),Tn()(r)&&e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),vy("This page doesn't have any outbound links.","wp-seopress")),!Tn()(r)&&e.createElement(e.Fragment,null,e.createElement("p",null,vy("We found ".concat(r.length," outbound links in your page. Below, the list:"),"wp-seopress")),e.createElement("ul",null,r.map((function(t,n){return e.createElement("li",{key:"outbound_".concat(n)},e.createElement("span",{className:"dashicons dashicons-minus"}),e.createElement("a",{href:t.url,target:"_blank"},t.value),e.createElement("span",{className:"dashicons dashicons-external"}))})))))}};var by=wp.i18n.__,wy="schemas";const xy={key:wy,title:by("Structured Data Types (schemas)","wp-seopress"),severity:function(e,t){if(Tn()(Z()(e,[wy,"value"],[])))return"medium";var n=Z()(e,[wy,"value"],[]).reduce((function(e,t){return e[t]=t in e?e[t]+1:1,e}),{}),r=Object.values(n),o=Object.keys(n),i="good";return r.map((function(e,t){e>1&&"Review"===o[t]&&(i="high")})),i},component:function(t){var n=t.data;if(t.options,Tn()(Z()(n,[wy,"value"],[])))return e.createElement(e.Fragment,null,e.createElement("p",null,by("No schemas found in the source code of this page.","wp-seopress")));var r=Z()(n,[wy,"value"],[]).reduce((function(e,t){return e[t]=t in e?e[t]+1:1,e}),{}),o=Object.values(r),i=Object.keys(r);return e.createElement(e.Fragment,null,e.createElement("p",null,by("We found these schemas in the source code of this page:","wp-seopress")),e.createElement("ul",null,o.map((function(t,n){return e.createElement("li",{key:"schema_".concat(n)},e.createElement("span",{className:"dashicons dashicons-minus"}),i[n],t>1&&"Review"===i[n]&&e.createElement(e.Fragment,null,e.createElement("span",{className:"impact high"},by("duplicated schema - x","wp-seopress"),t)),t>1&&"Review"!==i[n]&&e.createElement(e.Fragment,null,e.createElement("span",{className:"impact"},by("x","wp-seopress")," ",t)))}))))}};function Ey(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Sy(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Ey(Object(n),!0).forEach((function(t){_y(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Ey(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function _y(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var ky=wp.i18n.__,Oy=function(e){switch(e){case"twitter:title":return ky("Twitter Title","wp-seopress");case"og:title":return ky("Title","wp-seopress");case"twitter:description":return ky("Twitter Description","wp-seopress");case"og:description":return ky("Description","wp-seopress");case"twitter:image":return ky("Twitter Image","wp-seopress");case"og:image":return ky("Image","wp-seopress");case"og:url":return ky("URL","wp-seopress");case"og:site_name":return ky("Site Name","wp-seopress")}},jy=function(e,t){var n=t.type;if(Tn()(Z()(e,[n,"value"],[])))return"high";var r=Z()(e,[n,"value"],[]);return r.length>1||Tn()(r[0])?"high":"good"},Ly=function(t){var n=t.type;return e.createElement("div",{style:{color:"rgb(29, 35, 39)",margin:"10px 0px",fontWeight:"bold",borderBottom:"1px solid var(--borderColorCard)",paddingBottom:"10px"}},ky("Open Graph")," ",Oy(n))},Cy=function(t){var n=t.type;return e.createElement("div",{style:{color:"rgb(29, 35, 39)",margin:"10px 0px",fontWeight:"bold",borderBottom:"1px solid var(--borderColorCard)",paddingBottom:"10px"}},ky("Twitter")," ",Oy(n))},Py=function(t){var n=t.data,r=t.options,o=(void 0===r?{}:r).type;if(Tn()(Z()(n,[o,"value"],[])))return e.createElement(e.Fragment,null,e.createElement(Ly,{type:o}),e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),e.createElement("strong",null,ky("Your Open Graph ".concat(Oy(o)," is missing!"),"wp-seopress"))));var i=Z()(n,[o,"value"],[]);return e.createElement(e.Fragment,null,e.createElement(Ly,{type:o}),i.length>1&&e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),ky("We found","wp-seopress")," ",i.length," ",o," ",ky("in your content.","wp-seopress")),e.createElement("p",null,"og:title"===o&&ky("You should not use more than one og:title in your post content to avoid conflicts when sharing on social networks. Facebook will take the last og:title tag from your source code. Below, the list:","wp-seopress"),"og:description"===o&&ky("You should not use more than one og:description in your post content to avoid conflicts when sharing on social networks. Facebook will take the last og:description tag from your source code. Below, the list:","wp-seopress"),"og:url"===o&&ky("You should not use more than one og:url in your post content to avoid conflicts when sharing on social networks. Facebook will take the last og:url tag from your source code. Below, the list:","wp-seopress"),"og:site_name"===o&&ky("You should not use more than one og:site_name in your post content to avoid conflicts when sharing on social networks. Facebook will take the last og:site_name tag from your source code. Below, the list:","wp-seopress"))),1===i.length&&e.createElement("p",null,e.createElement(kv,{className:"sp-dashicons-ok"}),ky("We found an Open Graph","wp-seopress")," ",Oy(o)," ",ky("tag in your source code.","wp-seopress")),Tn()(i[0])&&e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),ky("Your Open Graph ".concat(Oy(o)," tag is empty!"),"wp-seopress")),e.createElement("ul",null,i.map((function(t,n){return e.createElement("li",{key:"og_".concat(o,"_").concat(n)},e.createElement("span",{className:"dashicons dashicons-minus"}),t)}))))},Ay=function(t){var n=t.data,r=t.options,o=(void 0===r?{}:r).type;if(Tn()(Z()(n,[o,"value"],[])))return e.createElement(e.Fragment,null,e.createElement(Cy,{type:o}),e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),e.createElement("strong",null,ky("Your ".concat(Oy(o)," is missing!"),"wp-seopress"))));var i=Z()(n,[o,"value"],[]);return e.createElement(e.Fragment,null,e.createElement(Cy,{type:o}),i.length>1&&e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),ky("We found","wp-seopress")," ",i.length," ",o," ",ky("in your content.","wp-seopress")),e.createElement("p",null,"twitter:title"===o&&ky("You should not use more than one twitter:title in your post content to avoid conflicts when sharing on social networks. Twitter will take the last twitter:title tag from your source code. Below, the list:","wp-seopress"),"twitter:description"===o&&ky("You should not use more than one twitter:description in your post content to avoid conflicts when sharing on social networks. Twitter will take the last twitter:description tag from your source code. Below, the list:","wp-seopress"))),1===i.length&&e.createElement("p",null,e.createElement(kv,{className:"sp-dashicons-ok"}),ky("We found a","wp-seopress")," ",Oy(o)," ",ky("tag in your source code.","wp-seopress")),Tn()(i[0])&&e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),ky("Your ".concat(Oy(o)," tag is empty!"),"wp-seopress")),e.createElement("ul",null,i.map((function(t,n){return e.createElement("li",{key:"twitter_".concat(o,"_").concat(n)},e.createElement("span",{className:"dashicons dashicons-minus"}),t)}))))},Ty=function(t){return{key:t,severity:function(e,n){return jy(e,Sy(Sy({},n),{},{type:t}))},component:function(n){var r=n.data,o=n.options,i=void 0===o?{}:o;return e.createElement(Py,{data:r,options:Sy(Sy({},i),{},{type:t})})}}},Iy=function(t){return{key:t,severity:function(e,n){return jy(e,Sy(Sy({},n),{},{type:t}))},component:function(n){var r=n.data,o=n.options,i=void 0===o?{}:o;return e.createElement(Ay,{data:r,options:Sy(Sy({},i),{},{type:t})})}}},Ny=[Ty("og:title"),Ty("og:description"),Ty("og:image"),Ty("og:url"),Ty("og:site_name"),Iy("twitter:title"),Iy("twitter:description"),Iy("twitter:image")];const Fy={key:"social_meta_tags",title:ky("Social meta tags","wp-seopress"),severity:function(e,t){var n=null;return Ny.map((function(r){n=r.severity(e,t)})),n},items:Ny};var Ry=wp.i18n.__,My="words_counter",Dy=function(e,t){return Ht()(e.words_counter)?"high":Z()(e,My,0)<299?"medium":"good"};const zy={key:My,title:Ry("Words counter","wp-seopress"),severity:Dy,component:function(t){var n=t.data;return t.options,"high"===Dy(n)?e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),Ry("No content? Add a few more paragraphs!","wp-seopress")):e.createElement(e.Fragment,null,e.createElement("p",null,Ry("Words counter is not a direct ranking factor. But, your content must be as qualitative as possible, with relevant and unique information. To fulfill these conditions, your article requires a minimum of paragraphs, so words.","wp-seopress")),e.createElement("p",null,Z()(n,My,0)," ",Ry("words found.","wp-seopress")),e.createElement("p",null,Z()(n,"words_counter_unique",0)," ",Ry("unique words found.","wp-seopress")),Z()(n,My,0)>=299&&e.createElement("p",null,e.createElement(kv,{className:"sp-dashicons-ok"}),Ry("Your content is composed of more than 300 words, which is the minimum for a post.","wp-seopress")),Z()(n,My,0)<299&&e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),Ry("Your content is too short. Add a few more paragraphs!","wp-seopress")))}};var Uy=wp.i18n.__,Vy="kws_permalink",Gy=function(e){return Yt()(e,{key:"id"}).value},By=function(e){return Yt()(e,{key:"id_homepage"}).value};const Wy={key:Vy,title:Uy("Keywords in permalink","wp-seopress"),severity:function(e,t){var n=Z()(e,[Vy,"matches"],[]);return Tn()(n)&&Gy(t)===By(t)?"good":Tn()(n)&&Gy(t)!==By(t)?"medium":"good"},component:function(t){var n=t.data,r=t.options,o=void 0===r?{}:r,i=Z()(n,[Vy,"matches"],[]);return e.createElement(e.Fragment,null,Tn()(i)&&Gy(o)===By(o)&&e.createElement("p",null,e.createElement(kv,{className:"sp-dashicons-ok"}),Uy("This is your homepage. This check doesn't apply here because there is no slug.","wp-seopress")),Tn()(i)&&Gy(o)!==By(o)&&e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),Uy("You should add one of your target keyword in your permalink.","wp-seopress")),!Tn()(i)&&e.createElement(e.Fragment,null,Uy("Cool, one of your target keyword is used in your permalink.","wp-seopress"),e.createElement("ul",null,i.map((function(t,n){return e.createElement("li",{key:"density_".concat(n)},e.createElement("span",{className:"dashicons dashicons-minus"}),t.key)}))),e.createElement("p",{dangerouslySetInnerHTML:{__html:Uy('Learn more about <a href="https://www.youtube.com/watch?v=Rk4qgQdp2UA" target="_blank">keywords stuffing</a>.',"wp-seopress")}})))}};var Hy=wp.i18n.__,$y="kws_density";const Yy={key:$y,title:Hy("Keywords density","wp-seopress"),severity:function(e,t){var n=Z()(e,[$y,"matches"],[]);return Tn()(n)?"high":"good"},component:function(t){var n=t.data,r=(t.options,Z()(n,[$y,"matches"],[]));return e.createElement(e.Fragment,null,Tn()(r)&&e.createElement(e.Fragment,null,Hy("We were unable to calculate the density of your keywords. You probably haven‘t added any content or your target keywords were not find in your post content.","wp-seopress")),!Tn()(r)&&e.createElement(e.Fragment,null,e.createElement("ul",null,r.map((function(t,r){var o=Math.round(t.count/Z()(n,"words_counter",0)*100).toFixed(2);return e.createElement("li",{key:"density_".concat(r)},e.createElement("span",{className:"dashicons dashicons-minus"}),Hy("".concat(t.key," was found ").concat(t.count," times in your content, a keyword density of ").concat(o,"%"),"wp-seopress"))}))),e.createElement("p",{dangerouslySetInnerHTML:{__html:Hy('Learn more about <a href="https://www.youtube.com/watch?v=Rk4qgQdp2UA" target="_blank">keywords stuffing</a>.',"wp-seopress")}})))}};var qy=wp.i18n.__,Qy="old_post";const Xy={key:Qy,title:qy("Last modified date","wp-seopress"),severity:function(e,t){return Z()(e,[Qy,"value"],!1)?"medium":"good"},component:function(t){var n=t.data,r=(t.options,Z()(n,[Qy,"value"],!1));return e.createElement(e.Fragment,null,r&&e.createElement("p",null,e.createElement(fs,{className:"sp-dashicons-not"}),qy("This post is a little old!","wp-seopress")),!r&&e.createElement("p",null,e.createElement(kv,{className:"sp-dashicons-ok"}),qy("The last modified date of this article is less than 1 year. Cool!","wp-seopress")),e.createElement("p",null,qy("Search engines love fresh content. Update regularly your articles without entirely rewriting your content and give them a boost in search rankings. SEOPress takes care of the technical part.","wp-seopress")))}};function Ky(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Jy=function(e,t){var n,r="good",o=function(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return Ky(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Ky(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,s=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){s=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(s)throw i}}}}(e);try{for(o.s();!(n=o.n()).done;){var i=n.value.severity(t.data,t.options);"good"===r&&"good"!==i&&"low"!==i&&(r=i)}}catch(e){o.e(e)}finally{o.f()}return r};const Zy=function(){return[zy,Iv,Wv,py,ry,Fy,sy,xy,Qv,my,gy,Jv,Wy,Yy,Xy]},eg=Ut.div.withConfig({componentId:"sc-1malvzg-0"})(["&&&&{display:flex;align-items:center;padding:10px 0px;font-weight:bold;position:relative;text-transform:none;}"]);var tg=Ut.span.withConfig({componentId:"sc-1l6x77i-0"})(["&&&&{display:block;width:10px;height:10px;border-radius:50px;padding:0;margin:0;border:1px solid #fff;"," "," "," ","}"],(function(e){return"good"===e.severity&&"\n background: var(--colorSuccess);\n box-shadow: 0 0 5px var(--colorSuccess);\n "}),(function(e){return"low"===e.severity&&"\n background: var(--colorWarning);\n box-shadow: 0 0 5px var(--colorWarning);\n "}),(function(e){return"medium"===e.severity&&"\n background: var(--colorLowAlert);\n box-shadow: 0 0 5px var(--colorLowAlert);\n "}),(function(e){return"high"===e.severity&&"\n background: var(--colorAlert);\n box-shadow: 0 0 5px var(--colorAlert);\n "}));const ng=tg;function rg(e){return rg="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},rg(e)}function og(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function ig(e,t){return ig=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},ig(e,t)}function ag(e,t){if(t&&("object"===rg(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}function sg(e){return sg=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},sg(e)}const lg=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&ig(e,t)}(s,e);var t,n,r,o,i,a=(o=s,i=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}(),function(){var e,t=sg(o);if(i){var n=sg(this).constructor;e=Reflect.construct(t,arguments,n)}else e=t.apply(this,arguments);return ag(this,e)});function s(e){var t;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,s),(t=a.call(this,e)).state={hasError:!1},t}return t=s,r=[{key:"getDerivedStateFromError",value:function(e){return{hasError:!0}}}],(n=[{key:"componentDidCatch",value:function(e,t){console.error("[error]",e),console.error("[errorInfo]",t)}},{key:"render",value:function(){return this.state.hasError?null:this.props.children}}])&&og(t.prototype,n),r&&og(t,r),Object.defineProperty(t,"prototype",{writable:!1}),s}(e.Component);function ug(e){return ug="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},ug(e)}function cg(){cg=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,r="function"==typeof Symbol?Symbol:{},o=r.iterator||"@@iterator",i=r.asyncIterator||"@@asyncIterator",a=r.toStringTag||"@@toStringTag";function s(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{s({},"")}catch(e){s=function(e,t,n){return e[t]=n}}function l(e,t,n,r){var o=t&&t.prototype instanceo
|
1 |
/*! For license information please see metaboxe.js.LICENSE.txt */
|
|