Version Description
Read the blog post update = * NEW Support for Site names in Google Search * NEW PHP 8.1 compatibility * NEW Add "nofollow", "UGC", "sponsored" link attributes with Classic Editor * NEW Import SEO metadata from Slim SEO plugin * NEW Add a notice to content analysis metabox if a target keyword is already used from another content * NEW 'seopress_pro_breadcrumbs_terms' hook to filter terms taxonomy from the Breadcrumbs (https://www.seopress.org/support/hooks/filter-taxonomy-terms-in-the-breadcrumbs/) * NEW 'seopress_schemas_website' hook to filter Website schema (https://www.seopress.org/support/hooks/filter-website-schema/) * NEW 'seopress_matomo_dashboard_widget_cap' hook to filter Matomo Analytics capability (https://www.seopress.org/support/hooks/filter-matomo-analytics-dashboard-widget-capability/) * INFO Update Website schema to follow new Google guidelines * INFO Update GA4 stats in dashboard CSS widget * INFO REST API: add custom breadcrumbs, attachment ID, image width and image height to post and term metadata endpoints * INFO Add post/page/post type/term ID as third item for each crumbs of the Breadcrumbs for better flexibility * INFO Remove request reverse domains from SEO dashboard * INFO Improve UI for Redirections manager * FIX 404 errors sorting (SEO, Redirections) * FIX A user capability issue with Matomo Analytics & Google Analytics widgets * FIX Word counters with Elementor in specific cases * FIX Undefined SEOPRESS_PRO_VERSION constant * FIX Stop showing Matomo widget if no site ID or tracking ID set * FIX Improve compatibility with Oxygen for Content Analysis * FIX Saving attachment ID / width / height for term SEO metadata * FIX Saving Service type value for automatic Service schema * FIX GA4 stats in dashboard if no GA3 property associated with the Google account * FIX i18n * FIX WPML configuration file * FIX CSS
View our complete changelog
Release Info
Developer | rainbowgeek |
Plugin | SEOPress |
Version | 6.1 |
Comparing to | |
See all releases |
Code changes from version 6.0.2 to 6.1
- assets/css/seopress-classic-editor.css +25 -0
- assets/css/seopress-classic-editor.min.css +1 -0
- assets/css/seopress.css +27 -3
- assets/css/seopress.min.css +1 -1
- assets/js/seopress-analytics.min.js +1 -1
- assets/js/seopress-block-editor.js +1 -0
- assets/js/seopress-block-editor.min.js +1 -1
- assets/js/seopress-classic-editor.js +83 -0
- assets/js/seopress-classic-editor.min.js +83 -0
- assets/js/seopress-cookies-ajax.min.js +1 -1
- assets/js/seopress-cookies.min.js +1 -1
- assets/js/seopress-counters.js +1 -0
- assets/js/seopress-counters.min.js +1 -1
- assets/js/seopress-dashboard.js +5 -24
- assets/js/seopress-dashboard.min.js +1 -1
- assets/js/seopress-media-uploader.min.js +1 -1
- assets/js/seopress-metabox.min.js +1 -1
- assets/js/seopress-migrate.js +10 -0
- assets/js/seopress-migrate.min.js +1 -1
- assets/js/seopress-network-tabs.min.js +1 -1
- assets/js/seopress-quick-edit.js +1 -1
- assets/js/seopress-quick-edit.min.js +1 -1
- assets/js/seopress-sitemap-ajax.min.js +1 -1
- assets/js/seopress-sitemap-video.min.js +1 -1
- assets/js/seopress-tabs.min.js +1 -1
- inc/admin/admin-pages/Tools.php +14 -110
- inc/admin/ajax-migrate/slim-seo.php +111 -0
- inc/admin/ajax.php +3 -8
- inc/admin/blocks/insights.php +28 -152
- inc/admin/blocks/notifications-center.php +1 -0
- inc/admin/callbacks/Advanced.php +21 -14
- inc/admin/callbacks/Analytics.php +5 -2
- inc/admin/callbacks/ImageSEO.php +5 -5
- inc/admin/callbacks/Sitemaps.php +6 -17
- inc/admin/callbacks/Titles.php +18 -0
- inc/admin/docs/DocsLinks.php +4 -0
- inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php +45 -21
- inc/admin/metaboxes/admin-term-metaboxes.php +24 -6
- inc/admin/migrate/MigrationTools.php +3 -3
- inc/admin/page-builders/classic/classic-editor.php +21 -0
- inc/admin/page-builders/gutenberg/blocks/faq/block.php +2 -2
- inc/admin/sanitize/Sanitize.php +1 -0
- inc/admin/sections/Advanced.php +28 -7
- inc/admin/sections/Analytics.php +7 -2
- inc/admin/settings/Advanced.php +10 -0
- inc/admin/settings/Titles.php +8 -0
- inc/admin/wizard/admin-wizard.php +17 -0
- inc/functions/options-advanced.php +38 -0
- inc/functions/options-instant-indexing.php +2 -2
- inc/functions/options-redirections.php +0 -39
- inc/functions/options-social.php +41 -13
- inc/functions/options.php +2 -2
- languages/wp-seopress.pot +755 -822
- public/metaboxe.js +0 -1
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#wp-link-wrap {
|
2 |
+
height: 560px;
|
3 |
+
}
|
4 |
+
|
5 |
+
#wp-link .link-sponsored,
|
6 |
+
#wp-link .link-no-follow,
|
7 |
+
#wp-link .link-ugc {
|
8 |
+
padding: 3px 0 0;
|
9 |
+
}
|
10 |
+
|
11 |
+
.has-text-field #wp-link .query-results {
|
12 |
+
top: 270px;
|
13 |
+
}
|
14 |
+
|
15 |
+
@media screen and (max-width: 782px) {
|
16 |
+
.has-text-field #wp-link .query-results {
|
17 |
+
top: inherit;
|
18 |
+
}
|
19 |
+
|
20 |
+
#wp-link .link-sponsored,
|
21 |
+
#wp-link .link-no-follow,
|
22 |
+
#wp-link .link-ugc {
|
23 |
+
padding-top: 10px;
|
24 |
+
}
|
25 |
+
}
|
@@ -0,0 +1 @@
|
|
|
1 |
+
#wp-link-wrap{height:560px}#wp-link .link-no-follow,#wp-link .link-sponsored,#wp-link .link-ugc{padding:3px 0 0}.has-text-field #wp-link .query-results{top:270px}@media screen and (max-width:782px){.has-text-field #wp-link .query-results{top:inherit}#wp-link .link-no-follow,#wp-link .link-sponsored,#wp-link .link-ugc{padding-top:10px}}
|
@@ -27,7 +27,7 @@
|
|
27 |
|
28 |
#adminmenu div.wp-menu-image.dashicons-admin-seopress::before {
|
29 |
content: "\e800";
|
30 |
-
font-family: seopress;
|
31 |
font-weight: 700;
|
32 |
font-size: 12px;
|
33 |
line-height: 20px;
|
@@ -235,7 +235,7 @@ body .seopress-option h3 {
|
|
235 |
#seopress_content_analysis textarea,
|
236 |
#seopress_cpt input[type="text"],
|
237 |
#seopress_cpt textarea,
|
238 |
-
#seopress_pro_cpt input[type="text"],
|
239 |
#seopress_pro_cpt textarea {
|
240 |
width: 100%;
|
241 |
display: inline-block;
|
@@ -554,20 +554,38 @@ table.fixed thead .column-seopress_noindex {
|
|
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 |
}
|
@@ -2087,7 +2105,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
2087 |
.seopress_social_twitter_img_upload:hover::after {
|
2088 |
content: "\f464";
|
2089 |
position: absolute;
|
2090 |
-
font-family: "
|
2091 |
width: 100%;
|
2092 |
height: 100%;
|
2093 |
top: 0;
|
@@ -2369,6 +2387,8 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
2369 |
border-radius: 3px;
|
2370 |
color: var(--colorDark);
|
2371 |
font-size: var(--fontSize);
|
|
|
|
|
2372 |
/* display: none; */
|
2373 |
}
|
2374 |
|
@@ -2390,6 +2410,10 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
2390 |
margin: 0 auto;
|
2391 |
}
|
2392 |
|
|
|
|
|
|
|
|
|
2393 |
#seopress-tabs .seopress-tab {
|
2394 |
padding: 10px 1.5rem;
|
2395 |
width: 100%;
|
27 |
|
28 |
#adminmenu div.wp-menu-image.dashicons-admin-seopress::before {
|
29 |
content: "\e800";
|
30 |
+
font-family: seopress !important;
|
31 |
font-weight: 700;
|
32 |
font-size: 12px;
|
33 |
line-height: 20px;
|
235 |
#seopress_content_analysis textarea,
|
236 |
#seopress_cpt input[type="text"],
|
237 |
#seopress_cpt textarea,
|
238 |
+
#seopress_pro_cpt input[type="text"]:not(.hidden),
|
239 |
#seopress_pro_cpt textarea {
|
240 |
width: 100%;
|
241 |
display: inline-block;
|
554 |
box-sizing: border-box;
|
555 |
}
|
556 |
|
557 |
+
#seopress_ga_dashboard_widget .seopress-summary-item:nth-child(even),
|
558 |
#seopress_matomo_dashboard_widget .seopress-summary-item:nth-child(even) {
|
559 |
border-right: none;
|
560 |
}
|
561 |
|
562 |
+
#seopress_ga_dashboard_widget .seopress-summary-item:nth-last-child(2),
|
563 |
+
#seopress_ga_dashboard_widget .seopress-summary-item:last-child,
|
564 |
#seopress_matomo_dashboard_widget .seopress-summary-item:nth-last-child(2),
|
565 |
#seopress_matomo_dashboard_widget .seopress-summary-item:last-child {
|
566 |
border-bottom: none;
|
567 |
}
|
568 |
|
569 |
+
#tab_seopress_analytics .spinner,
|
570 |
+
#tab_seopress_matomo .spinner {
|
571 |
+
top: 10px;
|
572 |
+
position: relative;
|
573 |
+
left: 10px;
|
574 |
+
}
|
575 |
+
|
576 |
+
#tab_seopress_analytics .wrap-chart-stat,
|
577 |
+
#tab_seopress_matomo .wrap-chart-stat {
|
578 |
+
padding: 0 1rem;
|
579 |
+
}
|
580 |
+
|
581 |
@media only screen and (max-width: 782px) {
|
582 |
+
|
583 |
+
#seopress_ga_dashboard_widget .seopress-summary-item,
|
584 |
#seopress_matomo_dashboard_widget .seopress-summary-item {
|
585 |
border-right: none;
|
586 |
}
|
587 |
|
588 |
+
#seopress_ga_dashboard_widget .seopress-summary-item:nth-last-child(2),
|
589 |
#seopress_matomo_dashboard_widget .seopress-summary-item:nth-last-child(2) {
|
590 |
border-bottom: 1px solid var(--borderColorLight40);
|
591 |
}
|
2105 |
.seopress_social_twitter_img_upload:hover::after {
|
2106 |
content: "\f464";
|
2107 |
position: absolute;
|
2108 |
+
font-family: "Dashicons";
|
2109 |
width: 100%;
|
2110 |
height: 100%;
|
2111 |
top: 0;
|
2387 |
border-radius: 3px;
|
2388 |
color: var(--colorDark);
|
2389 |
font-size: var(--fontSize);
|
2390 |
+
word-break: break-all;
|
2391 |
+
white-space: pre-line;
|
2392 |
/* display: none; */
|
2393 |
}
|
2394 |
|
2410 |
margin: 0 auto;
|
2411 |
}
|
2412 |
|
2413 |
+
.wrap-seopress-tab-content .seopress-tools-card {
|
2414 |
+
padding: 16px 25px;
|
2415 |
+
}
|
2416 |
+
|
2417 |
#seopress-tabs .seopress-tab {
|
2418 |
padding: 10px 1.5rem;
|
2419 |
width: 100%;
|
@@ -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_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 |
+
#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!important;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]:not(.hidden),#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_ga_dashboard_widget .seopress-summary-item:nth-child(even),#seopress_matomo_dashboard_widget .seopress-summary-item:nth-child(even){border-right:none}#seopress_ga_dashboard_widget .seopress-summary-item:last-child,#seopress_ga_dashboard_widget .seopress-summary-item:nth-last-child(2),#seopress_matomo_dashboard_widget .seopress-summary-item:last-child,#seopress_matomo_dashboard_widget .seopress-summary-item:nth-last-child(2){border-bottom:none}#tab_seopress_analytics .spinner,#tab_seopress_matomo .spinner{top:10px;position:relative;left:10px}#tab_seopress_analytics .wrap-chart-stat,#tab_seopress_matomo .wrap-chart-stat{padding:0 1rem}@media only screen and (max-width:782px){#seopress_ga_dashboard_widget .seopress-summary-item,#seopress_matomo_dashboard_widget .seopress-summary-item{border-right:none}#seopress_ga_dashboard_widget .seopress-summary-item:nth-last-child(2),#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);word-break:break-all;white-space:pre-line}.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}.wrap-seopress-tab-content .seopress-tools-card{padding:16px 25px}#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 +1 @@
|
|
1 |
-
jQuery(document).ready(function(
|
1 |
+
jQuery(document).ready((function($){jQuery(document.body).on("updated_cart_totals wc_cart_emptied removed_from_cart added_to_cart",(function(){$.ajax({method:"GET",url:seopressAjaxAnalytics.seopress_analytics,data:{action:"seopress_after_update_cart",_ajax_nonce:seopressAjaxAnalytics.seopress_nonce},success:function(data){jQuery("body").append(data.data)}})}))}));
|
@@ -145,6 +145,7 @@ jQuery(document).ready(function ($) {
|
|
145 |
$('#seopress_cpt #seopress_robots_canonical_meta').attr('placeholder', s.data.canonical),
|
146 |
|
147 |
$('#seopress-analysis-tabs').load(" #seopress-analysis-tabs-1", '', sp_ca_toggle),
|
|
|
148 |
$(".analysis-score p").removeClass('loading')
|
149 |
},
|
150 |
});
|
145 |
$('#seopress_cpt #seopress_robots_canonical_meta').attr('placeholder', s.data.canonical),
|
146 |
|
147 |
$('#seopress-analysis-tabs').load(" #seopress-analysis-tabs-1", '', sp_ca_toggle),
|
148 |
+
$('#seopress-wrap-notice-target-kw').load(" #seopress-notice-target-kw", ''),
|
149 |
$(".analysis-score p").removeClass('loading')
|
150 |
},
|
151 |
});
|
@@ -1 +1 @@
|
|
1 |
-
jQuery(document).ready(function(
|
1 |
+
jQuery(document).ready((function($){const{subscribe:subscribe,select:select}=wp.data;let hasSaved=!1;subscribe(()=>{var isAutosavingPost=wp.data.select("core/editor").isAutosavingPost(),isSavingMetaBoxes=wp.data.select("core/edit-post").isSavingMetaBoxes();if(isSavingMetaBoxes&&!isAutosavingPost&&!hasSaved){if(void 0!==$("#seopress-tabs").attr("data_id"))var post_id=$("#seopress-tabs").attr("data_id");else if(void 0!==$("#seopress_content_analysis .wrap-seopress-analysis").attr("data_id"))var post_id=$("#seopress_content_analysis .wrap-seopress-analysis").attr("data_id");if(void 0!==$("#seopress-tabs").attr("data_tax"))var tax_name=$("#seopress-tabs").attr("data_tax");else if(void 0!==$("#seopress_content_analysis .wrap-seopress-analysis").attr("data_tax"))var tax_name=$("#seopress_content_analysis .wrap-seopress-analysis").attr("data_tax");if(void 0!==$("#seopress-tabs").attr("data_origin"))var origin=$("#seopress-tabs").attr("data_origin");else if(void 0!==$("#seopress_content_analysis .wrap-seopress-analysis").attr("data_origin"))var origin=$("#seopress_content_analysis .wrap-seopress-analysis").attr("data_origin");$.ajax({method:"GET",url:seopressAjaxRealPreview.seopress_real_preview,data:{action:"seopress_do_real_preview",post_id:post_id,tax_name:tax_name,origin:origin,post_type:$("#seopress_launch_analysis").attr("data_post_type"),seopress_analysis_target_kw:$("#seopress_analysis_target_kw_meta").val(),_ajax_nonce:seopressAjaxRealPreview.seopress_nonce},beforeSend:function(){$(".analysis-score p span").fadeIn().text(seopressAjaxRealPreview.i18n.progress),$(".analysis-score p").addClass("loading")},success:function(s){void 0===s.data.og_title?og_title="":og_title=s.data.og_title.values,void 0===s.data.og_desc?og_desc="":og_desc=s.data.og_desc.values,void 0===s.data.og_img?og_img="":og_img=s.data.og_img.values,void 0===s.data.og_url?og_url="":og_url=s.data.og_url.host,void 0===s.data.og_site_name?og_site_name="":og_site_name=s.data.og_site_name.values,void 0===s.data.tw_title?tw_title="":tw_title=s.data.tw_title.values,void 0===s.data.tw_desc?tw_desc="":tw_desc=s.data.tw_desc.values,void 0===s.data.tw_img?tw_img="":tw_img=s.data.tw_img.values,void 0===s.data.meta_robots?meta_robots="":meta_robots=s.data.meta_robots[0];var data_arr={og_title:og_title,og_desc:og_desc,og_img:og_img,og_url:og_url,og_site_name:og_site_name,tw_title:tw_title,tw_desc:tw_desc,tw_img:tw_img},if_noindex;for(var key in data_arr)data_arr.length&&(key=data_arr[key].length>1?data_arr[key].slice(-1)[0]:data_arr[key][0]);meta_robots=meta_robots.toString(),$("#sp-advanced-alert").empty(),new RegExp("noindex").test(meta_robots)&&$("#sp-advanced-alert").append('<span class="impact high" aria-hidden="true"></span>'),$("#seopress_cpt .google-snippet-preview .snippet-title").html(s.data.title),$("#seopress_cpt .google-snippet-preview .snippet-title-default").html(s.data.title),$("#seopress_titles_title_meta").attr("placeholder",s.data.title),$("#seopress_cpt .google-snippet-preview .snippet-description").html(s.data.meta_desc),$("#seopress_cpt .google-snippet-preview .snippet-description-default").html(s.data.meta_desc),$("#seopress_titles_desc_meta").attr("placeholder",s.data.meta_desc),data_arr.og_title&&($("#seopress_cpt #seopress_social_fb_title_meta").attr("placeholder",data_arr.og_title[0]),$("#seopress_cpt .facebook-snippet-preview .snippet-fb-title").html(data_arr.og_title[0]),$("#seopress_cpt .facebook-snippet-preview .snippet-fb-title-default").html(data_arr.og_title[0])),data_arr.og_desc&&($("#seopress_cpt #seopress_social_fb_desc_meta").attr("placeholder",data_arr.og_desc[0]),$("#seopress_cpt .facebook-snippet-preview .snippet-fb-description").html(data_arr.og_desc[0]),$("#seopress_cpt .facebook-snippet-preview .snippet-fb-description-default").html(data_arr.og_desc[0])),data_arr.og_img&&($("#seopress_cpt #seopress_social_fb_img_meta").attr("placeholder",data_arr.og_img[0]),$("#seopress_cpt .facebook-snippet-preview .snippet-fb-img img").attr("src",data_arr.og_img[0]),$("#seopress_cpt .facebook-snippet-preview .snippet-fb-img-default img").attr("src",data_arr.og_img[0])),$("#seopress_cpt .facebook-snippet-preview .snippet-fb-url").html(data_arr.og_url),$("#seopress_cpt .facebook-snippet-preview .snippet-fb-site-name").html(data_arr.og_site_name),data_arr.tw_title&&($("#seopress_cpt #seopress_social_twitter_title_meta").attr("placeholder",data_arr.tw_title[0]),$("#seopress_cpt .twitter-snippet-preview .snippet-twitter-title").html(data_arr.tw_title[0]),$("#seopress_cpt .twitter-snippet-preview .snippet-twitter-title-default").html(data_arr.tw_title[0])),data_arr.tw_desc&&($("#seopress_cpt #seopress_social_twitter_desc_meta").attr("placeholder",data_arr.tw_desc[0]),$("#seopress_cpt .twitter-snippet-preview .snippet-twitter-description").html(data_arr.tw_desc[0]),$("#seopress_cpt .twitter-snippet-preview .snippet-twitter-description-default").html(data_arr.tw_desc[0])),data_arr.tw_img&&($("#seopress_cpt #seopress_social_twitter_img_meta").attr("placeholder",data_arr.tw_img[0]),$("#seopress_cpt .twitter-snippet-preview .snippet-twitter-img img").attr("src",data_arr.tw_img[0]),$("#seopress_cpt .twitter-snippet-preview .snippet-twitter-img-default img").attr("src",data_arr.tw_img[0])),$("#seopress_cpt .twitter-snippet-preview .snippet-twitter-url").html(data_arr.og_url),$("#seopress_cpt #seopress_robots_canonical_meta").attr("placeholder",s.data.canonical),$("#seopress-analysis-tabs").load(" #seopress-analysis-tabs-1","",sp_ca_toggle),$("#seopress-wrap-notice-target-kw").load(" #seopress-notice-target-kw",""),$(".analysis-score p").removeClass("loading")}})}hasSaved=!!isSavingMetaBoxes})}));
|
@@ -0,0 +1,83 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
(function ($, wpLinkL10n, wp) {
|
2 |
+
let editor = null;
|
3 |
+
const inputs = {};
|
4 |
+
const getLink = () => editor ? editor.$('a[data-wplink-edit="true"]') : null;
|
5 |
+
|
6 |
+
$(document).on('wplink-open', function (event, wrap) {
|
7 |
+
|
8 |
+
if (!inputs.sponsored) {
|
9 |
+
$('#link-options').append(
|
10 |
+
`<div class="link-sponsored">
|
11 |
+
<label><span></span>
|
12 |
+
<input type="checkbox" id="wp-link-sponsored" />${seopressI18n.sponsored}</label>
|
13 |
+
</div>`
|
14 |
+
);
|
15 |
+
}
|
16 |
+
if (wpLink.isMCE()) {
|
17 |
+
if (!inputs.nofollow) {
|
18 |
+
$('#link-options').append(
|
19 |
+
`<div class="link-no-follow">
|
20 |
+
<label><span></span>
|
21 |
+
<input type="checkbox" id="wp-link-no-follow" />${seopressI18n.nofollow}</label>
|
22 |
+
</div>`
|
23 |
+
);
|
24 |
+
}
|
25 |
+
if (!inputs.ugc) {
|
26 |
+
$('#link-options').append(
|
27 |
+
`<div class="link-ugc">
|
28 |
+
<label><span></span>
|
29 |
+
<input type="checkbox" id="wp-link-ugc" />${seopressI18n.ugc}</label>
|
30 |
+
</div>`
|
31 |
+
);
|
32 |
+
}
|
33 |
+
}
|
34 |
+
|
35 |
+
inputs.sponsored = $('#wp-link-sponsored');
|
36 |
+
inputs.nofollow = $('#wp-link-no-follow');
|
37 |
+
inputs.ugc = $('#wp-link-ugc');
|
38 |
+
inputs.openInNewTab = $('#wp-link-target');
|
39 |
+
inputs.url = $('#wp-link-url');
|
40 |
+
|
41 |
+
if (typeof window.tinymce !== 'undefined') {
|
42 |
+
const ed = window.tinymce.get(window.wpActiveEditor);
|
43 |
+
editor = ed && !ed.isHidden() ? ed : null;
|
44 |
+
const linkNode = getLink();
|
45 |
+
inputs.sponsored.prop('checked', linkNode.attr('rel')?.includes('sponsored'));
|
46 |
+
inputs.nofollow.prop('checked', linkNode.attr('rel')?.includes('nofollow'));
|
47 |
+
inputs.ugc.prop('checked', linkNode.attr('rel')?.includes('ugc'));
|
48 |
+
}
|
49 |
+
});
|
50 |
+
|
51 |
+
window.wpLink.getAttrs = function () {
|
52 |
+
wpLink.correctURL();
|
53 |
+
|
54 |
+
const attrs = {
|
55 |
+
href: inputs.url.val().trim(),
|
56 |
+
target: inputs.openInNewTab.prop('checked') ? '_blank' : null,
|
57 |
+
}
|
58 |
+
|
59 |
+
let rel = '';
|
60 |
+
rel += inputs.sponsored.prop('checked') ? 'sponsored ' : ''
|
61 |
+
rel += inputs.nofollow.prop('checked') ? 'nofollow ' : ''
|
62 |
+
rel += inputs.ugc.prop('checked') ? 'ugc ' : ''
|
63 |
+
attrs.rel = rel ? rel : null;
|
64 |
+
|
65 |
+
return attrs;
|
66 |
+
};
|
67 |
+
|
68 |
+
window.wpLink.buildHtml = function (attrs) {
|
69 |
+
var html = '<a href="' + attrs.href + '"';
|
70 |
+
|
71 |
+
let rel = '';
|
72 |
+
if (attrs.target) {
|
73 |
+
html += ' target="' + attrs.target + '"';
|
74 |
+
rel += 'noopener ';
|
75 |
+
}
|
76 |
+
|
77 |
+
if (attrs.rel) rel += attrs.rel;
|
78 |
+
if (rel) html += ' rel="' + rel.trim() + '"';
|
79 |
+
|
80 |
+
return html + '>';
|
81 |
+
};
|
82 |
+
|
83 |
+
})(jQuery, window.wpLinkL10n, window.wp);
|
@@ -0,0 +1,83 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
(function ($, wpLinkL10n, wp) {
|
2 |
+
let editor = null;
|
3 |
+
const inputs = {};
|
4 |
+
const getLink = () => editor ? editor.$('a[data-wplink-edit="true"]') : null;
|
5 |
+
|
6 |
+
$(document).on('wplink-open', function (event, wrap) {
|
7 |
+
|
8 |
+
if (!inputs.sponsored) {
|
9 |
+
$('#link-options').append(
|
10 |
+
`<div class="link-sponsored">
|
11 |
+
<label><span></span>
|
12 |
+
<input type="checkbox" id="wp-link-sponsored" />${seopressI18n.sponsored}</label>
|
13 |
+
</div>`
|
14 |
+
);
|
15 |
+
}
|
16 |
+
if (wpLink.isMCE()) {
|
17 |
+
if (!inputs.nofollow) {
|
18 |
+
$('#link-options').append(
|
19 |
+
`<div class="link-no-follow">
|
20 |
+
<label><span></span>
|
21 |
+
<input type="checkbox" id="wp-link-no-follow" />${seopressI18n.nofollow}</label>
|
22 |
+
</div>`
|
23 |
+
);
|
24 |
+
}
|
25 |
+
if (!inputs.ugc) {
|
26 |
+
$('#link-options').append(
|
27 |
+
`<div class="link-ugc">
|
28 |
+
<label><span></span>
|
29 |
+
<input type="checkbox" id="wp-link-ugc" />${seopressI18n.ugc}</label>
|
30 |
+
</div>`
|
31 |
+
);
|
32 |
+
}
|
33 |
+
}
|
34 |
+
inputs.sponsored = $('#wp-link-sponsored');
|
35 |
+
inputs.nofollow = $('#wp-link-no-follow');
|
36 |
+
inputs.ugc = $('#wp-link-ugc');
|
37 |
+
inputs.openInNewTab = $('#wp-link-target');
|
38 |
+
inputs.url = $('#wp-link-url');
|
39 |
+
|
40 |
+
if (typeof window.tinymce !== 'undefined') {
|
41 |
+
const ed = window.tinymce.get(window.wpActiveEditor);
|
42 |
+
editor = ed && !ed.isHidden() ? ed : null;
|
43 |
+
const linkNode = getLink();
|
44 |
+
inputs.sponsored.prop('checked', linkNode.attr('rel')?.includes('sponsored'));
|
45 |
+
inputs.nofollow.prop('checked', linkNode.attr('rel')?.includes('nofollow'));
|
46 |
+
inputs.ugc.prop('checked', linkNode.attr('rel')?.includes('ugc'));
|
47 |
+
}
|
48 |
+
});
|
49 |
+
|
50 |
+
window.wpLink.getAttrs = function () {
|
51 |
+
wpLink.correctURL();
|
52 |
+
|
53 |
+
const attrs = {
|
54 |
+
href: inputs.url.val().trim(),
|
55 |
+
target: inputs.openInNewTab.prop('checked') ? '_blank' : null,
|
56 |
+
}
|
57 |
+
|
58 |
+
let rel = '';
|
59 |
+
rel += inputs.sponsored.prop('checked') ? 'sponsored ' : ''
|
60 |
+
rel += inputs.nofollow.prop('checked') ? 'nofollow ' : ''
|
61 |
+
rel += inputs.ugc.prop('checked') ? 'ugc ' : ''
|
62 |
+
attrs.rel = rel ? rel : null;
|
63 |
+
|
64 |
+
console.log(attrs);
|
65 |
+
return attrs;
|
66 |
+
};
|
67 |
+
|
68 |
+
window.wpLink.buildHtml = function (attrs) {
|
69 |
+
var html = '<a href="' + attrs.href + '"';
|
70 |
+
|
71 |
+
let rel = '';
|
72 |
+
if (attrs.target) {
|
73 |
+
html += ' target="' + attrs.target + '"';
|
74 |
+
rel += 'noopener ';
|
75 |
+
}
|
76 |
+
|
77 |
+
if (attrs.rel) rel += attrs.rel;
|
78 |
+
if (rel) html += ' rel="' + rel.trim() + '"';
|
79 |
+
|
80 |
+
return html + '>';
|
81 |
+
};
|
82 |
+
|
83 |
+
})(jQuery, window.wpLinkL10n, window.wp);
|
@@ -1 +1 @@
|
|
1 |
-
jQuery(document).ready(function(
|
1 |
+
jQuery(document).ready((function($){null==Cookies.get("seopress-user-consent-close")&&null==Cookies.get("seopress-user-consent-accept")&&($(".seopress-user-consent.seopress-user-message").removeClass("seopress-user-consent-hide"),$(".seopress-user-consent-backdrop").removeClass("seopress-user-consent-hide")),$("#seopress-user-consent-accept").on("click",(function(){$(".seopress-user-consent.seopress-user-message").addClass("seopress-user-consent-hide"),$(".seopress-user-consent-backdrop").addClass("seopress-user-consent-hide"),$.ajax({method:"GET",url:seopressAjaxGAUserConsent.seopress_cookies_user_consent,data:{action:"seopress_cookies_user_consent",_ajax_nonce:seopressAjaxGAUserConsent.seopress_nonce},success:function(data){data.data&&($("head").append(data.data.gtag_js),$("head").append(data.data.matomo_js),$("head").append(data.data.clarity_js),$("head").append(data.data.custom),$("head").append(data.data.head_js),$("body").prepend(data.data.body_js),$("body").append(data.data.footer_js)),Cookies.set("seopress-user-consent-accept","1",{expires:Number(seopressAjaxGAUserConsent.seopress_cookies_expiration_days)})}})})),$("#seopress-user-consent-close").on("click",(function(){$(".seopress-user-consent.seopress-user-message").addClass("seopress-user-consent-hide"),$(".seopress-user-consent-backdrop").addClass("seopress-user-consent-hide"),Cookies.set("seopress-user-consent-close","1",{expires:Number(seopressAjaxGAUserConsent.seopress_cookies_expiration_days)}),Cookies.remove("seopress-user-consent-accept")})),$("#seopress-user-consent-edit").on("click",(function(){$(".seopress-user-consent.seopress-user-message").removeClass("seopress-user-consent-hide"),$(".seopress-user-consent-backdrop").removeClass("seopress-user-consent-hide")}))}));
|
@@ -1 +1 @@
|
|
1 |
-
!function(e){var n=!1;if("function"==typeof define&&define.amd&&(define(e),n=!0),"object"==typeof exports&&(module.exports=e(),n=!0),!n){var o=window.Cookies,t=window.Cookies=e();t.noConflict=function(){return window.Cookies=o,t}}}(function(){function e(){for(var e=0,n={};e<arguments.length;e++){var o=arguments[e];for(var t in o)n[t]=o[t]}return n}return function n(o){function t(n,r,i){var c;if("undefined"!=typeof document){if(arguments.length>1){if("number"==typeof(i=e({path:"/"},t.defaults,i)).expires){var a=new Date;a.setMilliseconds(a.getMilliseconds()+864e5*i.expires),i.expires=a}i.expires=i.expires?i.expires.toUTCString():"";try{c=JSON.stringify(r),/^[\{\[]/.test(c)&&(r=c)}catch(e){}r=o.write?o.write(r,n):encodeURIComponent(String(r)).replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g,decodeURIComponent),n=(n=(n=encodeURIComponent(String(n))).replace(/%(23|24|26|2B|5E|60|7C)/g,decodeURIComponent)).replace(/[\(\)]/g,escape);var s="";for(var f in i)i[f]&&(s+="; "+f,!0!==i[f]&&(s+="="+i[f]));return document.cookie=n+"="+r+s}n||(c={});for(var p=document.cookie?document.cookie.split("; "):[],d=/(%[0-9A-Z]{2})+/g,u=0;u<p.length;u++){var l=p[u].split("="),C=l.slice(1).join("=");this.json||'"'!==C.charAt(0)||(C=C.slice(1,-1));try{var g=l[0].replace(d,decodeURIComponent);if(C=o.read?o.read(C,g):o(C,g)||C.replace(d,decodeURIComponent),this.json)try{C=JSON.parse(C)}catch(e){}if(n===g){c=C;break}n||(c[g]=C)}catch(e){}}return c}}return t.set=t,t.get=function(e){return t.call(t,e)},t.getJSON=function(){return t.apply({json:!0},[].slice.call(arguments))},t.defaults={},t.remove=function(n,o){t(n,"",e(o,{expires:-1}))},t.withConverter=n,t}(function(){})});
|
1 |
+
!function(e){var n=!1;if("function"==typeof define&&define.amd&&(define(e),n=!0),"object"==typeof exports&&(module.exports=e(),n=!0),!n){var o=window.Cookies,t=window.Cookies=e();t.noConflict=function(){return window.Cookies=o,t}}}((function(){function e(){for(var e=0,n={};e<arguments.length;e++){var o=arguments[e];for(var t in o)n[t]=o[t]}return n}return function n(o){function t(n,r,i){var c;if("undefined"!=typeof document){if(arguments.length>1){if("number"==typeof(i=e({path:"/"},t.defaults,i)).expires){var a=new Date;a.setMilliseconds(a.getMilliseconds()+864e5*i.expires),i.expires=a}i.expires=i.expires?i.expires.toUTCString():"";try{c=JSON.stringify(r),/^[\{\[]/.test(c)&&(r=c)}catch(e){}r=o.write?o.write(r,n):encodeURIComponent(String(r)).replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g,decodeURIComponent),n=(n=(n=encodeURIComponent(String(n))).replace(/%(23|24|26|2B|5E|60|7C)/g,decodeURIComponent)).replace(/[\(\)]/g,escape);var s="";for(var f in i)i[f]&&(s+="; "+f,!0!==i[f]&&(s+="="+i[f]));return document.cookie=n+"="+r+s}n||(c={});for(var p=document.cookie?document.cookie.split("; "):[],d=/(%[0-9A-Z]{2})+/g,u=0;u<p.length;u++){var l=p[u].split("="),C=l.slice(1).join("=");this.json||'"'!==C.charAt(0)||(C=C.slice(1,-1));try{var g=l[0].replace(d,decodeURIComponent);if(C=o.read?o.read(C,g):o(C,g)||C.replace(d,decodeURIComponent),this.json)try{C=JSON.parse(C)}catch(e){}if(n===g){c=C;break}n||(c[g]=C)}catch(e){}}return c}}return t.set=t,t.get=function(e){return t.call(t,e)},t.getJSON=function(){return t.apply({json:!0},[].slice.call(arguments))},t.defaults={},t.remove=function(n,o){t(n,"",e(o,{expires:-1}))},t.withConverter=n,t}((function(){}))}));
|
@@ -961,6 +961,7 @@ jQuery(document).ready(function (e) {
|
|
961 |
"",
|
962 |
sp_ca_toggle
|
963 |
),
|
|
|
964 |
e(".analysis-score p").removeClass("loading"),
|
965 |
e(" #seopress_titles_title_counters_val").remove(),
|
966 |
e(" #seopress_titles_desc_counters_val").remove(),
|
961 |
"",
|
962 |
sp_ca_toggle
|
963 |
),
|
964 |
+
e('#seopress-wrap-notice-target-kw').load(" #seopress-notice-target-kw", ''),
|
965 |
e(".analysis-score p").removeClass("loading"),
|
966 |
e(" #seopress_titles_title_counters_val").remove(),
|
967 |
e(" #seopress_titles_desc_counters_val").remove(),
|
@@ -1 +1 @@
|
|
1 |
-
function sp_titles_counters(){const e=jQuery;let t=e("#seopress_titles_title_meta");if(e("#seopress_titles_title_meta").length){e(".snippet-title-custom:visible").length>0?t=e(".snippet-title-custom"):e(".snippet-title:visible").length>0?t=e(".snippet-title"):e(".snippet-title-default:visible").length>0&&(t=e(".snippet-title-default"));var s=t.val(),i=jQuery("#seopress_titles_title_meta").attr("placeholder");if(jQuery("#seopress_titles_title_counters").after('<div id="seopress_titles_title_counters_val">/ 60</div>'),s.length>0?(jQuery("#seopress_titles_title_counters").text(s.length),jQuery("#seopress_titles_title_pixel").text(pixelTitle(s))):i.length&&(jQuery("#seopress_titles_title_counters").text(i.length),jQuery("#seopress_titles_title_pixel").text(pixelTitle(i))),s.length>60?jQuery("#seopress_titles_title_counters").css("color","red"):i.length>60&&jQuery("#seopress_titles_title_counters").css("color","red"),pixelTitle(s)>568?jQuery("#seopress_titles_title_pixel").css("color","red"):pixelTitle(i)>568&&jQuery("#seopress_titles_title_pixel").css("color","red"),s.length)var r=Math.round(pixelTitle(s)/568*100);else r=Math.round(pixelTitle(i)/568*100);r>=100&&(r=100),jQuery("#seopress_titles_title_counters_progress").attr("aria-valuenow",r),jQuery("#seopress_titles_title_counters_progress").text(r+"%"),jQuery("#seopress_titles_title_counters_progress").css("width",r+"%"),jQuery("#seopress_titles_title_meta, #seopress-tag-single-title, #seopress-tag-single-site-title, #seopress-tag-single-sep").on("keyup paste change click",function(t){var s=e("#seopress_titles_title_meta").val();e(".snippet-title-custom:visible").length>0?s=e(".snippet-title-custom").text():e(".snippet-title:visible").length>0?s=e(".snippet-title").text():e(".snippet-title-default:visible").length>0&&(s=e(".snippet-title-default").text());var i=jQuery("#seopress_titles_title_meta").attr("placeholder");if(jQuery("#seopress_titles_title_counters").css("color","inherit"),jQuery("#seopress_titles_title_pixel").css("color","inherit"),s.length>60&&jQuery("#seopress_titles_title_counters").css("color","red"),pixelTitle(s)>568&&jQuery("#seopress_titles_title_pixel").css("color","red"),0==s.length&&(i.length>60&&jQuery("#seopress_titles_title_counters").css("color","red"),pixelTitle(i)>568&&jQuery("#seopress_titles_title_pixel").css("color","red")),s.length>0?(jQuery("#seopress_titles_title_counters").text(s.length),jQuery("#seopress_titles_title_pixel").text(pixelTitle(s))):i.length&&(jQuery("#seopress_titles_title_counters").text(i.length),jQuery("#seopress_titles_title_pixel").text(pixelTitle(i))),s.length)var r=Math.round(pixelTitle(s)/568*100);else r=Math.round(pixelTitle(i)/568*100);r>=100&&(r=100),jQuery("#seopress_titles_title_counters_progress").attr("aria-valuenow",r),jQuery("#seopress_titles_title_counters_progress").text(r+"%"),jQuery("#seopress_titles_title_counters_progress").css("width",r+"%")})}}function sp_meta_desc_counters(){if(jQuery("#seopress_titles_desc_meta").length){var e=jQuery("#seopress_titles_desc_meta").val(),t=jQuery("#seopress_titles_desc_meta").attr("placeholder");if(jQuery("#seopress_titles_desc_counters").after('<div id="seopress_titles_desc_counters_val">/ 160</div>'),e.length>0?(jQuery("#seopress_titles_desc_counters").text(e.length),jQuery("#seopress_titles_desc_pixel").text(pixelDesc(e))):t.length&&(jQuery("#seopress_titles_desc_counters").text(t.length),jQuery("#seopress_titles_desc_pixel").text(pixelDesc(t))),e.length>160?jQuery("#seopress_titles_desc_counters").css("color","red"):t.length>160&&jQuery("#seopress_titles_desc_counters").css("color","red"),pixelDesc(e)>940?jQuery("#seopress_titles_desc_pixel").css("color","red"):pixelDesc(t)>940&&jQuery("#seopress_titles_desc_pixel").css("color","red"),e.length)var s=Math.round(pixelDesc(e)/940*100);else s=Math.round(pixelDesc(t)/940*100);s>=100&&(s=100),jQuery("#seopress_titles_desc_counters_progress").attr("aria-valuenow",s),jQuery("#seopress_titles_desc_counters_progress").text(s+"%"),jQuery("#seopress_titles_desc_counters_progress").css("width",s+"%"),jQuery("#seopress_titles_desc_meta, #seopress-tag-single-excerpt").on("keyup paste change click",function(e){var t=jQuery("#seopress_titles_desc_meta").val(),s=jQuery("#seopress_titles_desc_meta").attr("placeholder");if(jQuery("#seopress_titles_desc_counters").css("color","inherit"),jQuery("#seopress_titles_desc_pixel").css("color","inherit"),t.length>160&&jQuery("#seopress_titles_desc_counters").css("color","red"),pixelDesc(t)>940&&jQuery("#seopress_titles_desc_pixel").css("color","red"),0==t.length&&(s.length>160&&jQuery("#seopress_titles_desc_counters").css("color","red"),pixelDesc(s)>940&&jQuery("#seopress_titles_desc_pixel").css("color","red")),t.length>0?(jQuery("#seopress_titles_desc_counters").text(t.length),jQuery("#seopress_titles_desc_pixel").text(pixelDesc(t))):s.length&&(jQuery("#seopress_titles_desc_counters").text(s.length),jQuery("#seopress_titles_desc_pixel").text(pixelDesc(s))),t.length>0?(jQuery(".snippet-description-custom").text(e.target.value),jQuery(".snippet-description").css("display","none"),jQuery(".snippet-description-custom").css("display","inline"),jQuery(".snippet-description-default").css("display","none")):0==t.length&&(jQuery(".snippet-description-default").css("display","inline"),jQuery(".snippet-description-custom").css("display","none"),jQuery(".snippet-description").css("display","none")),t.length)var i=Math.round(pixelDesc(t)/940*100);else i=Math.round(pixelDesc(s)/940*100);i>=100&&(i=100),jQuery("#seopress_titles_desc_counters_progress").attr("aria-valuenow",i),jQuery("#seopress_titles_desc_counters_progress").text(i+"%"),jQuery("#seopress_titles_desc_counters_progress").css("width",i+"%")}),jQuery("#excerpt, .editor-post-excerpt textarea").keyup(function(e){var t=jQuery("#seopress_titles_desc_meta").val(),s=jQuery("#seopress_titles_desc_meta").attr("placeholder");if(0==t.length&&0==jQuery(".snippet-description-custom").val().length&&(jQuery(".snippet-description-custom").text(e.target.value),jQuery(".snippet-description").css("display","none"),jQuery(".snippet-description-custom").css("display","inline"),jQuery(".snippet-description-default").css("display","none")),t.length)var i=t.length;else i=s.length;i>=100&&(i=100),jQuery("#seopress_titles_desc_counters_progress").attr("aria-valuenow",i),jQuery("#seopress_titles_desc_counters_progress").text(i+"%"),jQuery("#seopress_titles_desc_counters_progress").css("width",i+"%")})}}function pixelTitle(e){return inputText=e,font="18px Arial",canvas=document.createElement("canvas"),context=canvas.getContext("2d"),context.font=font,width=context.measureText(inputText).width,formattedWidth=Math.ceil(width),formattedWidth}function pixelDesc(e){return inputText=e,font="14px Arial",canvas=document.createElement("canvas"),context=canvas.getContext("2d"),context.font=font,width=context.measureText(inputText).width,formattedWidth=Math.ceil(width),formattedWidth}function sp_is_valid_url(e){var t=e.match(/(http(s)?:\/\/.)?(www\.)?[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)/g);return null!==t}function sp_social_img(e){if(jQuery("#seopress_social_fb_title_meta").length){jQuery(".snippet-"+e+"-img-alert").css("display","none");var t=jQuery("#seopress_social_"+e+"_img_meta").val();if(""==t)t=jQuery("#seopress_social_"+e+"_img_meta").attr("placeholder");!0===sp_is_valid_url(t)?(t.length>0?(jQuery(".snippet-"+e+"-img-custom img").attr("src",t),jQuery(".snippet-"+e+"-img").css("display","none"),jQuery(".snippet-"+e+"-img-custom").css("display","block"),jQuery(".snippet-"+e+"-img-default").css("display","none")):0==t.length&&(jQuery(".snippet-"+e+"-img-default").css("display","block"),jQuery(".snippet-"+e+"-img-custom").css("display","none"),jQuery(".snippet-"+e+"-img").css("display","none")),t.length>0&&jQuery.get(t).done(function(){var s=t.split(/\#|\?/)[0].split(".").pop().trim(),i=["jpg","jpeg","gif","png","webp"];if(-1==i.indexOf(s))jQuery(".snippet-"+e+"-img-alert.alert1").css("display","block");else{var r=new Image;r.src=t,jQuery(r).one("load",function(){pic_real_width=parseInt(r.width),pic_real_height=parseInt(r.height),"fb"==e?(min_width=200,min_height=200):(min_width=144,min_height=144),(pic_real_width<min_width||pic_real_height<min_height)&&jQuery(".snippet-"+e+"-img-alert.alert2").css("display","block"),ratio_img=(pic_real_width/pic_real_height).toFixed(2),jQuery(".snippet-"+e+"-img-alert.alert4").css("display","block"),jQuery(".snippet-"+e+"-img-alert.alert4 span").text(ratio_img)})}}).fail(function(){jQuery(".snippet-"+e+"-img-alert.alert3").css("display","block")})):jQuery(".snippet-"+e+"-img-alert.alert5").css("display","block")}}function sp_social(){jQuery("#seopress_social_fb_title_meta").length&&(jQuery("#seopress_social_fb_title_meta, #seopress-tag-single-title, #seopress-tag-single-site-title, #seopress-tag-single-sep").on("keyup paste change click",function(e){var t=jQuery("#seopress_social_fb_title_meta").val();t.length>0?(jQuery(".snippet-fb-title-custom").text(e.target.value),jQuery(".snippet-fb-title").css("display","none"),jQuery(".snippet-fb-title-custom").css("display","block"),jQuery(".snippet-fb-title-default").css("display","none")):0==t.length&&(jQuery(".snippet-fb-title-default").css("display","block"),jQuery(".snippet-fb-title-custom").css("display","none"),jQuery(".snippet-fb-title").css("display","none"))}),jQuery("#seopress_social_fb_desc_meta").on("keyup paste change click",function(e){var t=jQuery("#seopress_social_fb_desc_meta").val();t.length>0?(jQuery(".snippet-fb-description-custom").text(e.target.value),jQuery(".snippet-fb-description").css("display","none"),jQuery(".snippet-fb-description-custom").css("display","block"),jQuery(".snippet-fb-description-default").css("display","none")):0==t.length&&(jQuery(".snippet-fb-description-default").css("display","block"),jQuery(".snippet-fb-description-custom").css("display","none"),jQuery(".snippet-fb-description").css("display","none"))}),sp_social_img("fb"),jQuery("#seopress_social_fb_img_meta").on("keyup paste change click",function(){sp_social_img("fb")}),jQuery("#seopress_social_twitter_title_meta").on("keyup paste change click",function(e){var t=jQuery("#seopress_social_twitter_title_meta").val();t.length>0?(jQuery(".snippet-twitter-title-custom").text(e.target.value),jQuery(".snippet-twitter-title").css("display","none"),jQuery(".snippet-twitter-title-custom").css("display","block"),jQuery(".snippet-twitter-title-default").css("display","none")):0==t.length&&(jQuery(".snippet-twitter-title-default").css("display","block"),jQuery(".snippet-twitter-title-custom").css("display","none"),jQuery(".snippet-twitter-title").css("display","none"))}),jQuery("#seopress_social_twitter_desc_meta").on("keyup paste change click",function(e){var t=jQuery("#seopress_social_twitter_desc_meta").val();t.length>0?(jQuery(".snippet-twitter-description-custom").text(e.target.value),jQuery(".snippet-twitter-description").css("display","none"),jQuery(".snippet-twitter-description-custom").css("display","block"),jQuery(".snippet-twitter-description-default").css("display","none")):0==t.length&&(jQuery(".snippet-twitter-description-default").css("display","block"),jQuery(".snippet-twitter-description-custom").css("display","none"),jQuery(".snippet-twitter-description").css("display","none"))}),sp_social_img("twitter"),jQuery("#seopress_social_twitter_img_meta").on("keyup paste change click",function(){sp_social_img("twitter")}))}function sp_ca_toggle(){var e=!1;jQuery(".gr-analysis-title .btn-toggle").on("click",function(t){e&&(event.stopImmediatePropagation(),event.preventDefault(),e=!1),jQuery(this).toggleClass("open"),jQuery(this).attr("aria-expanded","false"==jQuery(this).attr("aria-expanded")),jQuery(this).parent().parent().next(".gr-analysis-content").toggle(),jQuery(this).parent().parent().next(".gr-analysis-content").attr("aria-hidden","true"!=jQuery(this).parent().parent().next(".gr-analysis-content").attr("aria-hidden"))}),jQuery("#expand-all").on("click",function(e){e.preventDefault(),jQuery(".gr-analysis-content").show(),jQuery(".gr-analysis-title button").attr("aria-expanded",!0),jQuery(".gr-analysis-content").attr("aria-hidden",!1)}),jQuery("#close-all").on("click",function(e){e.preventDefault(),jQuery(".gr-analysis-content").hide(),jQuery(".gr-analysis-title button").attr("aria-expanded",!1),jQuery(".gr-analysis-content").attr("aria-hidden",!0)})}function seopress_google_suggest(e){var t,s=String(e),i=s.split(",");for(t=0;t<i.length;t++)null!=i[t]&&null!=i[t]&&""!=i[t]&&"[object Object]"!=i[t]&&(document.getElementById("seopress_suggestions").innerHTML+='<li><a href="#" class="sp-suggest-btn components-button is-secondary">'+i[t]+"</a></li>");jQuery(".sp-suggest-btn").click(function(e){e.preventDefault(),target_kw.addTags(jQuery(this).text())})}document.addEventListener("DOMContentLoaded",function(){const e=jQuery;e("#seopress-ca-tabs").length&&e("#seopress-ca-tabs .wrap-ca-list").length&&(e("#seopress-ca-tabs .hidden").removeClass("hidden"),e("#seopress-ca-tabs").tabs())});var input=document.querySelector("input[id=seopress_analysis_target_kw_meta]"),target_kw=new Tagify(input,{originalInputValueFormat:e=>e.map(e=>e.value).join(",")});jQuery(document).ready(function(e){function t(){if(void 0!==e("#seopress-tabs").attr("data_id"))var t=e("#seopress-tabs").attr("data_id");else if(void 0!==e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_id"))t=e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_id");if(void 0!==e("#seopress-tabs").attr("data_tax"))var s=e("#seopress-tabs").attr("data_tax");else if(void 0!==e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_tax"))s=e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_tax");if(void 0!==e("#seopress-tabs").attr("data_origin"))var i=e("#seopress-tabs").attr("data_origin");else if(void 0!==e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_origin"))i=e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_origin");e.ajax({method:"GET",url:seopressAjaxRealPreview.seopress_real_preview,data:{action:"seopress_do_real_preview",post_id:t,tax_name:s,origin:i,post_type:e("#seopress_launch_analysis").attr("data_post_type"),seopress_analysis_target_kw:e("#seopress_analysis_target_kw_meta").val(),_ajax_nonce:seopressAjaxRealPreview.seopress_nonce},beforeSend:function(){e(".analysis-score p span").fadeIn().text(seopressAjaxRealPreview.i18n.progress),e(".analysis-score p").addClass("loading")},success:function(t){void 0===t.data.og_title?og_title="":og_title=t.data.og_title.values,void 0===t.data.og_desc?og_desc="":og_desc=t.data.og_desc.values,void 0===t.data.og_img?og_img="":og_img=t.data.og_img.values,void 0===t.data.og_url?og_url="":og_url=t.data.og_url.host,void 0===t.data.og_site_name?og_site_name="":og_site_name=t.data.og_site_name.values,void 0===t.data.tw_title?tw_title="":tw_title=t.data.tw_title.values,void 0===t.data.tw_desc?tw_desc="":tw_desc=t.data.tw_desc.values,void 0===t.data.tw_img?tw_img="":tw_img=t.data.tw_img.values,void 0===t.data.meta_robots?meta_robots="":meta_robots=t.data.meta_robots[0];var s={og_title:og_title,og_desc:og_desc,og_img:og_img,og_url:og_url,og_site_name:og_site_name,tw_title:tw_title,tw_desc:tw_desc,tw_img:tw_img};for(var i in s)s.length&&(i=s[i].length>1?s[i].slice(-1)[0]:s[i][0]);meta_robots=meta_robots.toString(),e("#sp-advanced-alert").empty();var r=new RegExp("noindex");r.test(meta_robots)&&e("#sp-advanced-alert").append('<span class="impact high" aria-hidden="true"></span>'),e("#seopress_cpt .google-snippet-preview .snippet-title").html(t.data.title),e("#seopress_cpt .google-snippet-preview .snippet-title-default").html(t.data.title),e("#seopress_titles_title_meta").attr("placeholder",t.data.title),e("#seopress_cpt .google-snippet-preview .snippet-description").html(t.data.meta_desc),e("#seopress_cpt .google-snippet-preview .snippet-description-default").html(t.data.meta_desc),e("#seopress_titles_desc_meta").attr("placeholder",t.data.meta_desc),s.og_title&&(e("#seopress_cpt #seopress_social_fb_title_meta").attr("placeholder",s.og_title[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-title").html(s.og_title[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-title-default").html(s.og_title[0])),s.og_desc&&(e("#seopress_cpt #seopress_social_fb_desc_meta").attr("placeholder",s.og_desc[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-description").html(s.og_desc[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-description-default").html(s.og_desc[0])),s.og_img&&(e("#seopress_cpt #seopress_social_fb_img_meta").attr("placeholder",s.og_img[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-img img").attr("src",s.og_img[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-img-default img").attr("src",s.og_img[0])),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-url").html(s.og_url),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-site-name").html(s.og_site_name),s.tw_title&&(e("#seopress_cpt #seopress_social_twitter_title_meta").attr("placeholder",s.tw_title[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-title").html(s.tw_title[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-title-default").html(s.tw_title[0])),s.tw_desc&&(e("#seopress_cpt #seopress_social_twitter_desc_meta").attr("placeholder",s.tw_desc[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-description").html(s.tw_desc[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-description-default").html(s.tw_desc[0])),s.tw_img&&(e("#seopress_cpt #seopress_social_twitter_img_meta").attr("placeholder",s.tw_img[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-img img").attr("src",s.tw_img[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-img-default img").attr("src",s.tw_img[0])),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-url").html(s.og_url),e("#seopress_cpt #seopress_robots_canonical_meta").attr("placeholder",t.data.canonical),e("#seopress-analysis-tabs").load(" #seopress-analysis-tabs-1","",sp_ca_toggle),e(".analysis-score p").removeClass("loading"),e(" #seopress_titles_title_counters_val").remove(),e(" #seopress_titles_desc_counters_val").remove(),sp_titles_counters(),sp_meta_desc_counters(),sp_social()}})}"1"==jQuery("#toggle-preview").attr("data-toggle")?jQuery("#seopress_cpt .google-snippet-preview").addClass("mobile-preview"):jQuery("#seopress_cpt .google-snippet-preview").removeClass("mobile-preview"),jQuery("#toggle-preview").on("click",function(){jQuery("#toggle-preview").attr("data-toggle","1"==jQuery("#toggle-preview").attr("data-toggle")?"0":"1"),jQuery("#seopress_cpt .google-snippet-preview").toggleClass("mobile-preview")}),t(),e("#seopress_launch_analysis").on("click",function(){t()}),sp_ca_toggle(),jQuery("#seopress_inspect_url").on("click",function(){if(jQuery(this).attr("disabled","disabled"),jQuery(".spinner").css("visibility","visible"),jQuery(".spinner").css("float","none"),void 0!==e("#seopress-tabs").attr("data_id"))var t=e("#seopress-tabs").attr("data_id");else if(void 0!==e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_id"))t=e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_id");e.ajax({method:"POST",url:seopressAjaxInspectUrl.seopress_inspect_url,data:{action:"seopress_inspect_url",post_id:t,_ajax_nonce:seopressAjaxInspectUrl.seopress_nonce},success:function(){jQuery(".spinner").css("visibility","hidden"),jQuery("#seopress_inspect_url").removeAttr("disabled"),jQuery("#seopress-ca-tabs-1").load(" #seopress-ca-tabs-1")}})})});
|
1 |
+
function sp_titles_counters(){const $=jQuery;let elementTitleMeta=$("#seopress_titles_title_meta");if($("#seopress_titles_title_meta").length){$(".snippet-title-custom:visible").length>0?elementTitleMeta=$(".snippet-title-custom"):$(".snippet-title:visible").length>0?elementTitleMeta=$(".snippet-title"):$(".snippet-title-default:visible").length>0&&(elementTitleMeta=$(".snippet-title-default"));var meta_title_val=elementTitleMeta.val(),meta_title_placeholder=jQuery("#seopress_titles_title_meta").attr("placeholder");if(jQuery("#seopress_titles_title_counters").after('<div id="seopress_titles_title_counters_val">/ 60</div>'),meta_title_val.length>0?(jQuery("#seopress_titles_title_counters").text(meta_title_val.length),jQuery("#seopress_titles_title_pixel").text(pixelTitle(meta_title_val))):meta_title_placeholder.length&&(jQuery("#seopress_titles_title_counters").text(meta_title_placeholder.length),jQuery("#seopress_titles_title_pixel").text(pixelTitle(meta_title_placeholder))),meta_title_val.length>60?jQuery("#seopress_titles_title_counters").css("color","red"):meta_title_placeholder.length>60&&jQuery("#seopress_titles_title_counters").css("color","red"),pixelTitle(meta_title_val)>568?jQuery("#seopress_titles_title_pixel").css("color","red"):pixelTitle(meta_title_placeholder)>568&&jQuery("#seopress_titles_title_pixel").css("color","red"),meta_title_val.length)var progress=Math.round(pixelTitle(meta_title_val)/568*100);else var progress=Math.round(pixelTitle(meta_title_placeholder)/568*100);progress>=100&&(progress=100),jQuery("#seopress_titles_title_counters_progress").attr("aria-valuenow",progress),jQuery("#seopress_titles_title_counters_progress").text(progress+"%"),jQuery("#seopress_titles_title_counters_progress").css("width",progress+"%"),jQuery("#seopress_titles_title_meta, #seopress-tag-single-title, #seopress-tag-single-site-title, #seopress-tag-single-sep").on("keyup paste change click",(function(e){var meta_title_val=$("#seopress_titles_title_meta").val();$(".snippet-title-custom:visible").length>0?meta_title_val=$(".snippet-title-custom").text():$(".snippet-title:visible").length>0?meta_title_val=$(".snippet-title").text():$(".snippet-title-default:visible").length>0&&(meta_title_val=$(".snippet-title-default").text());var meta_title_placeholder=jQuery("#seopress_titles_title_meta").attr("placeholder");if(jQuery("#seopress_titles_title_counters").css("color","inherit"),jQuery("#seopress_titles_title_pixel").css("color","inherit"),meta_title_val.length>60&&jQuery("#seopress_titles_title_counters").css("color","red"),pixelTitle(meta_title_val)>568&&jQuery("#seopress_titles_title_pixel").css("color","red"),0==meta_title_val.length&&(meta_title_placeholder.length>60&&jQuery("#seopress_titles_title_counters").css("color","red"),pixelTitle(meta_title_placeholder)>568&&jQuery("#seopress_titles_title_pixel").css("color","red")),meta_title_val.length>0?(jQuery("#seopress_titles_title_counters").text(meta_title_val.length),jQuery("#seopress_titles_title_pixel").text(pixelTitle(meta_title_val))):meta_title_placeholder.length&&(jQuery("#seopress_titles_title_counters").text(meta_title_placeholder.length),jQuery("#seopress_titles_title_pixel").text(pixelTitle(meta_title_placeholder))),meta_title_val.length)var progress=Math.round(pixelTitle(meta_title_val)/568*100);else var progress=Math.round(pixelTitle(meta_title_placeholder)/568*100);progress>=100&&(progress=100),jQuery("#seopress_titles_title_counters_progress").attr("aria-valuenow",progress),jQuery("#seopress_titles_title_counters_progress").text(progress+"%"),jQuery("#seopress_titles_title_counters_progress").css("width",progress+"%")}))}}function sp_meta_desc_counters(){if(jQuery("#seopress_titles_desc_meta").length){var meta_desc_val=jQuery("#seopress_titles_desc_meta").val(),meta_desc_placeholder=jQuery("#seopress_titles_desc_meta").attr("placeholder");if(jQuery("#seopress_titles_desc_counters").after('<div id="seopress_titles_desc_counters_val">/ 160</div>'),meta_desc_val.length>0?(jQuery("#seopress_titles_desc_counters").text(meta_desc_val.length),jQuery("#seopress_titles_desc_pixel").text(pixelDesc(meta_desc_val))):meta_desc_placeholder.length&&(jQuery("#seopress_titles_desc_counters").text(meta_desc_placeholder.length),jQuery("#seopress_titles_desc_pixel").text(pixelDesc(meta_desc_placeholder))),meta_desc_val.length>160?jQuery("#seopress_titles_desc_counters").css("color","red"):meta_desc_placeholder.length>160&&jQuery("#seopress_titles_desc_counters").css("color","red"),pixelDesc(meta_desc_val)>940?jQuery("#seopress_titles_desc_pixel").css("color","red"):pixelDesc(meta_desc_placeholder)>940&&jQuery("#seopress_titles_desc_pixel").css("color","red"),meta_desc_val.length)var progress=Math.round(pixelDesc(meta_desc_val)/940*100);else var progress=Math.round(pixelDesc(meta_desc_placeholder)/940*100);progress>=100&&(progress=100),jQuery("#seopress_titles_desc_counters_progress").attr("aria-valuenow",progress),jQuery("#seopress_titles_desc_counters_progress").text(progress+"%"),jQuery("#seopress_titles_desc_counters_progress").css("width",progress+"%"),jQuery("#seopress_titles_desc_meta, #seopress-tag-single-excerpt").on("keyup paste change click",(function(e){var meta_desc_val=jQuery("#seopress_titles_desc_meta").val(),meta_desc_placeholder=jQuery("#seopress_titles_desc_meta").attr("placeholder");if(jQuery("#seopress_titles_desc_counters").css("color","inherit"),jQuery("#seopress_titles_desc_pixel").css("color","inherit"),meta_desc_val.length>160&&jQuery("#seopress_titles_desc_counters").css("color","red"),pixelDesc(meta_desc_val)>940&&jQuery("#seopress_titles_desc_pixel").css("color","red"),0==meta_desc_val.length&&(meta_desc_placeholder.length>160&&jQuery("#seopress_titles_desc_counters").css("color","red"),pixelDesc(meta_desc_placeholder)>940&&jQuery("#seopress_titles_desc_pixel").css("color","red")),meta_desc_val.length>0?(jQuery("#seopress_titles_desc_counters").text(meta_desc_val.length),jQuery("#seopress_titles_desc_pixel").text(pixelDesc(meta_desc_val))):meta_desc_placeholder.length&&(jQuery("#seopress_titles_desc_counters").text(meta_desc_placeholder.length),jQuery("#seopress_titles_desc_pixel").text(pixelDesc(meta_desc_placeholder))),meta_desc_val.length>0?(jQuery(".snippet-description-custom").text(e.target.value),jQuery(".snippet-description").css("display","none"),jQuery(".snippet-description-custom").css("display","inline"),jQuery(".snippet-description-default").css("display","none")):0==meta_desc_val.length&&(jQuery(".snippet-description-default").css("display","inline"),jQuery(".snippet-description-custom").css("display","none"),jQuery(".snippet-description").css("display","none")),meta_desc_val.length)var progress=Math.round(pixelDesc(meta_desc_val)/940*100);else var progress=Math.round(pixelDesc(meta_desc_placeholder)/940*100);progress>=100&&(progress=100),jQuery("#seopress_titles_desc_counters_progress").attr("aria-valuenow",progress),jQuery("#seopress_titles_desc_counters_progress").text(progress+"%"),jQuery("#seopress_titles_desc_counters_progress").css("width",progress+"%")})),jQuery("#excerpt, .editor-post-excerpt textarea").keyup((function(e){var meta_desc_val=jQuery("#seopress_titles_desc_meta").val(),meta_desc_placeholder=jQuery("#seopress_titles_desc_meta").attr("placeholder");if(0==meta_desc_val.length&&0==jQuery(".snippet-description-custom").val().length&&(jQuery(".snippet-description-custom").text(e.target.value),jQuery(".snippet-description").css("display","none"),jQuery(".snippet-description-custom").css("display","inline"),jQuery(".snippet-description-default").css("display","none")),meta_desc_val.length)var progress=meta_desc_val.length;else var progress=meta_desc_placeholder.length;progress>=100&&(progress=100),jQuery("#seopress_titles_desc_counters_progress").attr("aria-valuenow",progress),jQuery("#seopress_titles_desc_counters_progress").text(progress+"%"),jQuery("#seopress_titles_desc_counters_progress").css("width",progress+"%")}))}}function pixelTitle(e){return inputText=e,font="18px Arial",canvas=document.createElement("canvas"),context=canvas.getContext("2d"),context.font=font,width=context.measureText(inputText).width,formattedWidth=Math.ceil(width),formattedWidth}function pixelDesc(e){return inputText=e,font="14px Arial",canvas=document.createElement("canvas"),context=canvas.getContext("2d"),context.font=font,width=context.measureText(inputText).width,formattedWidth=Math.ceil(width),formattedWidth}function sp_is_valid_url(string){var res;return null!==string.match(/(http(s)?:\/\/.)?(www\.)?[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)/g)}function sp_social_img(social_slug){if(jQuery("#seopress_social_fb_title_meta").length){var meta_img_val;if(jQuery(".snippet-"+social_slug+"-img-alert").css("display","none"),""==(meta_img_val=jQuery("#seopress_social_"+social_slug+"_img_meta").val()))var meta_img_val=jQuery("#seopress_social_"+social_slug+"_img_meta").attr("placeholder");!0===sp_is_valid_url(meta_img_val)?(meta_img_val.length>0?(jQuery(".snippet-"+social_slug+"-img-custom img").attr("src",meta_img_val),jQuery(".snippet-"+social_slug+"-img").css("display","none"),jQuery(".snippet-"+social_slug+"-img-custom").css("display","block"),jQuery(".snippet-"+social_slug+"-img-default").css("display","none")):0==meta_img_val.length&&(jQuery(".snippet-"+social_slug+"-img-default").css("display","block"),jQuery(".snippet-"+social_slug+"-img-custom").css("display","none"),jQuery(".snippet-"+social_slug+"-img").css("display","none")),meta_img_val.length>0&&jQuery.get(meta_img_val).done((function(){var meta_img_filetype=meta_img_val.split(/\#|\?/)[0].split(".").pop().trim(),types;if(-1==["jpg","jpeg","gif","png","webp"].indexOf(meta_img_filetype))jQuery(".snippet-"+social_slug+"-img-alert.alert1").css("display","block");else{var tmp_img=new Image;tmp_img.src=meta_img_val,jQuery(tmp_img).one("load",(function(){pic_real_width=parseInt(tmp_img.width),pic_real_height=parseInt(tmp_img.height),"fb"==social_slug?(min_width=200,min_height=200):(min_width=144,min_height=144),(pic_real_width<min_width||pic_real_height<min_height)&&jQuery(".snippet-"+social_slug+"-img-alert.alert2").css("display","block"),ratio_img=(pic_real_width/pic_real_height).toFixed(2),jQuery(".snippet-"+social_slug+"-img-alert.alert4").css("display","block"),jQuery(".snippet-"+social_slug+"-img-alert.alert4 span").text(ratio_img)}))}})).fail((function(){jQuery(".snippet-"+social_slug+"-img-alert.alert3").css("display","block")}))):jQuery(".snippet-"+social_slug+"-img-alert.alert5").css("display","block")}}function sp_social(){jQuery("#seopress_social_fb_title_meta").length&&(jQuery("#seopress_social_fb_title_meta, #seopress-tag-single-title, #seopress-tag-single-site-title, #seopress-tag-single-sep").on("keyup paste change click",(function(e){var meta_fb_title_val=jQuery("#seopress_social_fb_title_meta").val();meta_fb_title_val.length>0?(jQuery(".snippet-fb-title-custom").text(e.target.value),jQuery(".snippet-fb-title").css("display","none"),jQuery(".snippet-fb-title-custom").css("display","block"),jQuery(".snippet-fb-title-default").css("display","none")):0==meta_fb_title_val.length&&(jQuery(".snippet-fb-title-default").css("display","block"),jQuery(".snippet-fb-title-custom").css("display","none"),jQuery(".snippet-fb-title").css("display","none"))})),jQuery("#seopress_social_fb_desc_meta").on("keyup paste change click",(function(e){var meta_fb_desc_val=jQuery("#seopress_social_fb_desc_meta").val();meta_fb_desc_val.length>0?(jQuery(".snippet-fb-description-custom").text(e.target.value),jQuery(".snippet-fb-description").css("display","none"),jQuery(".snippet-fb-description-custom").css("display","block"),jQuery(".snippet-fb-description-default").css("display","none")):0==meta_fb_desc_val.length&&(jQuery(".snippet-fb-description-default").css("display","block"),jQuery(".snippet-fb-description-custom").css("display","none"),jQuery(".snippet-fb-description").css("display","none"))})),sp_social_img("fb"),jQuery("#seopress_social_fb_img_meta").on("keyup paste change click",(function(){sp_social_img("fb")})),jQuery("#seopress_social_twitter_title_meta").on("keyup paste change click",(function(e){var meta_fb_title_val=jQuery("#seopress_social_twitter_title_meta").val();meta_fb_title_val.length>0?(jQuery(".snippet-twitter-title-custom").text(e.target.value),jQuery(".snippet-twitter-title").css("display","none"),jQuery(".snippet-twitter-title-custom").css("display","block"),jQuery(".snippet-twitter-title-default").css("display","none")):0==meta_fb_title_val.length&&(jQuery(".snippet-twitter-title-default").css("display","block"),jQuery(".snippet-twitter-title-custom").css("display","none"),jQuery(".snippet-twitter-title").css("display","none"))})),jQuery("#seopress_social_twitter_desc_meta").on("keyup paste change click",(function(e){var meta_fb_desc_val=jQuery("#seopress_social_twitter_desc_meta").val();meta_fb_desc_val.length>0?(jQuery(".snippet-twitter-description-custom").text(e.target.value),jQuery(".snippet-twitter-description").css("display","none"),jQuery(".snippet-twitter-description-custom").css("display","block"),jQuery(".snippet-twitter-description-default").css("display","none")):0==meta_fb_desc_val.length&&(jQuery(".snippet-twitter-description-default").css("display","block"),jQuery(".snippet-twitter-description-custom").css("display","none"),jQuery(".snippet-twitter-description").css("display","none"))})),sp_social_img("twitter"),jQuery("#seopress_social_twitter_img_meta").on("keyup paste change click",(function(){sp_social_img("twitter")})))}function sp_ca_toggle(){var stop=!1;jQuery(".gr-analysis-title .btn-toggle").on("click",(function(e){stop&&(event.stopImmediatePropagation(),event.preventDefault(),stop=!1),jQuery(this).toggleClass("open"),jQuery(this).attr("aria-expanded","false"==jQuery(this).attr("aria-expanded")),jQuery(this).parent().parent().next(".gr-analysis-content").toggle(),jQuery(this).parent().parent().next(".gr-analysis-content").attr("aria-hidden","true"!=jQuery(this).parent().parent().next(".gr-analysis-content").attr("aria-hidden"))})),jQuery("#expand-all").on("click",(function(e){e.preventDefault(),jQuery(".gr-analysis-content").show(),jQuery(".gr-analysis-title button").attr("aria-expanded",!0),jQuery(".gr-analysis-content").attr("aria-hidden",!1)})),jQuery("#close-all").on("click",(function(e){e.preventDefault(),jQuery(".gr-analysis-content").hide(),jQuery(".gr-analysis-title button").attr("aria-expanded",!1),jQuery(".gr-analysis-content").attr("aria-hidden",!0)}))}document.addEventListener("DOMContentLoaded",(function(){const $=jQuery;$("#seopress-ca-tabs").length&&$("#seopress-ca-tabs .wrap-ca-list").length&&($("#seopress-ca-tabs .hidden").removeClass("hidden"),$("#seopress-ca-tabs").tabs())}));var input=document.querySelector("input[id=seopress_analysis_target_kw_meta]"),target_kw=new Tagify(input,{originalInputValueFormat:valuesArr=>valuesArr.map(item=>item.value).join(",")});function seopress_google_suggest(data){var raw_suggestions,suggestions_array=String(data).split(","),i;for(i=0;i<suggestions_array.length;i++)null!=suggestions_array[i]&&null!=suggestions_array[i]&&""!=suggestions_array[i]&&"[object Object]"!=suggestions_array[i]&&(document.getElementById("seopress_suggestions").innerHTML+='<li><a href="#" class="sp-suggest-btn components-button is-secondary">'+suggestions_array[i]+"</a></li>");jQuery(".sp-suggest-btn").click((function(e){e.preventDefault(),target_kw.addTags(jQuery(this).text())}))}jQuery(document).ready((function(e){function s(){if(void 0!==e("#seopress-tabs").attr("data_id"))var post_id=e("#seopress-tabs").attr("data_id");else if(void 0!==e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_id"))var post_id=e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_id");if(void 0!==e("#seopress-tabs").attr("data_tax"))var tax_name=e("#seopress-tabs").attr("data_tax");else if(void 0!==e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_tax"))var tax_name=e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_tax");if(void 0!==e("#seopress-tabs").attr("data_origin"))var origin=e("#seopress-tabs").attr("data_origin");else if(void 0!==e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_origin"))var origin=e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_origin");e.ajax({method:"GET",url:seopressAjaxRealPreview.seopress_real_preview,data:{action:"seopress_do_real_preview",post_id:post_id,tax_name:tax_name,origin:origin,post_type:e("#seopress_launch_analysis").attr("data_post_type"),seopress_analysis_target_kw:e("#seopress_analysis_target_kw_meta").val(),_ajax_nonce:seopressAjaxRealPreview.seopress_nonce},beforeSend:function(){e(".analysis-score p span").fadeIn().text(seopressAjaxRealPreview.i18n.progress),e(".analysis-score p").addClass("loading")},success:function(s){void 0===s.data.og_title?og_title="":og_title=s.data.og_title.values,void 0===s.data.og_desc?og_desc="":og_desc=s.data.og_desc.values,void 0===s.data.og_img?og_img="":og_img=s.data.og_img.values,void 0===s.data.og_url?og_url="":og_url=s.data.og_url.host,void 0===s.data.og_site_name?og_site_name="":og_site_name=s.data.og_site_name.values,void 0===s.data.tw_title?tw_title="":tw_title=s.data.tw_title.values,void 0===s.data.tw_desc?tw_desc="":tw_desc=s.data.tw_desc.values,void 0===s.data.tw_img?tw_img="":tw_img=s.data.tw_img.values,void 0===s.data.meta_robots?meta_robots="":meta_robots=s.data.meta_robots[0];var data_arr={og_title:og_title,og_desc:og_desc,og_img:og_img,og_url:og_url,og_site_name:og_site_name,tw_title:tw_title,tw_desc:tw_desc,tw_img:tw_img},if_noindex;for(var key in data_arr)data_arr.length&&(key=data_arr[key].length>1?data_arr[key].slice(-1)[0]:data_arr[key][0]);meta_robots=meta_robots.toString(),e("#sp-advanced-alert").empty(),new RegExp("noindex").test(meta_robots)&&e("#sp-advanced-alert").append('<span class="impact high" aria-hidden="true"></span>'),e("#seopress_cpt .google-snippet-preview .snippet-title").html(s.data.title),e("#seopress_cpt .google-snippet-preview .snippet-title-default").html(s.data.title),e("#seopress_titles_title_meta").attr("placeholder",s.data.title),e("#seopress_cpt .google-snippet-preview .snippet-description").html(s.data.meta_desc),e("#seopress_cpt .google-snippet-preview .snippet-description-default").html(s.data.meta_desc),e("#seopress_titles_desc_meta").attr("placeholder",s.data.meta_desc),data_arr.og_title&&(e("#seopress_cpt #seopress_social_fb_title_meta").attr("placeholder",data_arr.og_title[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-title").html(data_arr.og_title[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-title-default").html(data_arr.og_title[0])),data_arr.og_desc&&(e("#seopress_cpt #seopress_social_fb_desc_meta").attr("placeholder",data_arr.og_desc[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-description").html(data_arr.og_desc[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-description-default").html(data_arr.og_desc[0])),data_arr.og_img&&(e("#seopress_cpt #seopress_social_fb_img_meta").attr("placeholder",data_arr.og_img[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-img img").attr("src",data_arr.og_img[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-img-default img").attr("src",data_arr.og_img[0])),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-url").html(data_arr.og_url),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-site-name").html(data_arr.og_site_name),data_arr.tw_title&&(e("#seopress_cpt #seopress_social_twitter_title_meta").attr("placeholder",data_arr.tw_title[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-title").html(data_arr.tw_title[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-title-default").html(data_arr.tw_title[0])),data_arr.tw_desc&&(e("#seopress_cpt #seopress_social_twitter_desc_meta").attr("placeholder",data_arr.tw_desc[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-description").html(data_arr.tw_desc[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-description-default").html(data_arr.tw_desc[0])),data_arr.tw_img&&(e("#seopress_cpt #seopress_social_twitter_img_meta").attr("placeholder",data_arr.tw_img[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-img img").attr("src",data_arr.tw_img[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-img-default img").attr("src",data_arr.tw_img[0])),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-url").html(data_arr.og_url),e("#seopress_cpt #seopress_robots_canonical_meta").attr("placeholder",s.data.canonical),e("#seopress-analysis-tabs").load(" #seopress-analysis-tabs-1","",sp_ca_toggle),e("#seopress-wrap-notice-target-kw").load(" #seopress-notice-target-kw",""),e(".analysis-score p").removeClass("loading"),e(" #seopress_titles_title_counters_val").remove(),e(" #seopress_titles_desc_counters_val").remove(),sp_titles_counters(),sp_meta_desc_counters(),sp_social()}})}"1"==jQuery("#toggle-preview").attr("data-toggle")?jQuery("#seopress_cpt .google-snippet-preview").addClass("mobile-preview"):jQuery("#seopress_cpt .google-snippet-preview").removeClass("mobile-preview"),jQuery("#toggle-preview").on("click",(function(){jQuery("#toggle-preview").attr("data-toggle","1"==jQuery("#toggle-preview").attr("data-toggle")?"0":"1"),jQuery("#seopress_cpt .google-snippet-preview").toggleClass("mobile-preview")})),s(),e("#seopress_launch_analysis").on("click",(function(){s()})),sp_ca_toggle(),jQuery("#seopress_inspect_url").on("click",(function(){if(jQuery(this).attr("disabled","disabled"),jQuery(".spinner").css("visibility","visible"),jQuery(".spinner").css("float","none"),void 0!==e("#seopress-tabs").attr("data_id"))var post_id=e("#seopress-tabs").attr("data_id");else if(void 0!==e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_id"))var post_id=e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_id");e.ajax({method:"POST",url:seopressAjaxInspectUrl.seopress_inspect_url,data:{action:"seopress_inspect_url",post_id:post_id,_ajax_nonce:seopressAjaxInspectUrl.seopress_nonce},success:function(){jQuery(".spinner").css("visibility","hidden"),jQuery("#seopress_inspect_url").removeAttr("disabled"),jQuery("#seopress-ca-tabs-1").load(" #seopress-ca-tabs-1")}})}))}));
|
@@ -175,12 +175,12 @@ jQuery(document).ready(function ($) {
|
|
175 |
if (typeof sessionStorage != 'undefined') {
|
176 |
var seopress_admin_tab_session_storage = sessionStorage.getItem("seopress_admin_tab");
|
177 |
|
178 |
-
if (clean_hash[1] == '1') { //
|
179 |
$('#tab_seopress_analytics-tab').addClass("nav-tab-active");
|
180 |
$('#tab_seopress_analytics').addClass("active");
|
181 |
-
} else if (clean_hash[1] == '2') { //
|
182 |
-
$('#
|
183 |
-
$('#
|
184 |
} else if (clean_hash[1] == '3') { //Page Speed Tab
|
185 |
$('#tab_seopress_ps-tab').addClass("nav-tab-active");
|
186 |
$('#tab_seopress_ps_tools').addClass("active");
|
@@ -205,7 +205,7 @@ jQuery(document).ready(function ($) {
|
|
205 |
if (clean_hash[1] == 1) {
|
206 |
sessionStorage.setItem("seopress_admin_tab", 'tab_seopress_analytics');
|
207 |
} else if (clean_hash[1] == 2) {
|
208 |
-
sessionStorage.setItem("seopress_admin_tab", '
|
209 |
} else if (clean_hash[1] == 3) {
|
210 |
sessionStorage.setItem("seopress_admin_tab", 'tab_seopress_ps_tools');
|
211 |
} else {
|
@@ -215,25 +215,6 @@ jQuery(document).ready(function ($) {
|
|
215 |
$('#seopress-admin-tabs').find('.seopress-tab.active').removeClass("active");
|
216 |
$('#' + hash).addClass("active");
|
217 |
});
|
218 |
-
//Request Reverse Domains
|
219 |
-
$('#seopress-reverse-submit').on('click', function () {
|
220 |
-
$.ajax({
|
221 |
-
method: 'GET',
|
222 |
-
url: seopressAjaxReverse.seopress_request_reverse,
|
223 |
-
data: {
|
224 |
-
action: 'seopress_request_reverse',
|
225 |
-
_ajax_nonce: seopressAjaxReverse.seopress_nonce,
|
226 |
-
},
|
227 |
-
success: function (data) {
|
228 |
-
window.location.reload(true);
|
229 |
-
},
|
230 |
-
});
|
231 |
-
});
|
232 |
-
$('#seopress-reverse-submit').on('click', function () {
|
233 |
-
$(this).attr("disabled", "disabled");
|
234 |
-
$('#spinner-reverse.spinner').css("visibility", "visible");
|
235 |
-
$('#spinner-reverse.spinner').css("float", "none");
|
236 |
-
});
|
237 |
|
238 |
//Drag and drop for cards
|
239 |
$(".seopress-dashboard-columns .seopress-dashboard-column:last-child").sortable({
|
175 |
if (typeof sessionStorage != 'undefined') {
|
176 |
var seopress_admin_tab_session_storage = sessionStorage.getItem("seopress_admin_tab");
|
177 |
|
178 |
+
if (clean_hash[1] == '1') { //Analytics Tab
|
179 |
$('#tab_seopress_analytics-tab').addClass("nav-tab-active");
|
180 |
$('#tab_seopress_analytics').addClass("active");
|
181 |
+
} else if (clean_hash[1] == '2') { //Matomo Tab
|
182 |
+
$('#tab_seopress_matomo-tab').addClass("nav-tab-active");
|
183 |
+
$('#tab_seopress_matomo').addClass("active");
|
184 |
} else if (clean_hash[1] == '3') { //Page Speed Tab
|
185 |
$('#tab_seopress_ps-tab').addClass("nav-tab-active");
|
186 |
$('#tab_seopress_ps_tools').addClass("active");
|
205 |
if (clean_hash[1] == 1) {
|
206 |
sessionStorage.setItem("seopress_admin_tab", 'tab_seopress_analytics');
|
207 |
} else if (clean_hash[1] == 2) {
|
208 |
+
sessionStorage.setItem("seopress_admin_tab", 'tab_seopress_matomo');
|
209 |
} else if (clean_hash[1] == 3) {
|
210 |
sessionStorage.setItem("seopress_admin_tab", 'tab_seopress_ps_tools');
|
211 |
} else {
|
215 |
$('#seopress-admin-tabs').find('.seopress-tab.active').removeClass("active");
|
216 |
$('#' + hash).addClass("active");
|
217 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
218 |
|
219 |
//Drag and drop for cards
|
220 |
$(".seopress-dashboard-columns .seopress-dashboard-column:last-child").sortable({
|
@@ -1 +1 @@
|
|
1 |
-
jQuery(document).ready(function(
|
1 |
+
jQuery(document).ready((function($){$.trim($("#seopress-notifications-center").html())||$("#seopress-notifications-center").remove();const notices=["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"];notices.forEach((function(item){$("#"+item).on("click",(function(){$("#"+item).attr("data-notice","1"==$("#"+item).attr("data-notice")?"0":"1"),$.ajax({method:"POST",url:seopressAjaxHideNotices.seopress_hide_notices,data:{action:"seopress_hide_notices",notice:item,notice_value:$("#"+item).attr("data-notice"),_ajax_nonce:seopressAjaxHideNotices.seopress_nonce},success:function(data){$("#seopress-notice-save").css("display","block"),$("#seopress-notice-save .html").html("Notice successfully removed"),$("#"+item+"-alert").fadeOut(),$("#seopress-notice-save").delay(3500).fadeOut()}})}))}));const features=["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"];features.forEach((function(item){$("#toggle-"+item).on("click",(function(){$("#toggle-"+item).attr("data-toggle","1"==$("#toggle-"+item).attr("data-toggle")?"0":"1"),$(this).siblings("#titles-state-default").toggleClass("feature-state-off"),$(this).siblings("#titles-state").toggleClass("feature-state-off"),$.ajax({method:"POST",url:seopressAjaxToggleFeatures.seopress_toggle_features,data:{action:"seopress_toggle_features",feature:"toggle-"+item,feature_value:$("#toggle-"+item).attr("data-toggle"),_ajax_nonce:seopressAjaxToggleFeatures.seopress_nonce},success:function(){window.history.pushState("","",window.location.href+"&settings-updated=true"),$("#seopress-notice-save").show(),$("#seopress-notice-save").delay(3500).fadeOut(),window.history.pushState("","",window.location.href)}})}))})),$("#seopress-activity-panel button").on("click",(function(){$(this).toggleClass("is-active"),$("#seopress-activity-panel-"+$(this).data("panel")).toggleClass("is-open")})),$("#seopress-content").on("click",(function(){$("#seopress-activity-panel").find(".is-open").toggleClass("is-open"),$("#seopress-activity-panel").find(".is-active").toggleClass("is-active")})),$(".seopress-item-toggle-options").on("click",(function(){$(this).next(".seopress-card-popover").toggleClass("is-open")})),$("#seopress-news-items").on("click",(function(){$.ajax({method:"POST",url:seopressAjaxNews.seopress_news,data:{action:"seopress_news",news_max_items:$("#news_max_items").val(),_ajax_nonce:seopressAjaxNews.seopress_nonce},success:function(data){$("#seopress-news-panel .seopress-card-content").load(" #seopress-news-panel .seopress-card-content"),$("#seopress-news-panel .seopress-card-popover").toggleClass("is-open")}})})),$("#seopress_news").on("click",(function(){$("#seopress-news-panel").toggleClass("is-active"),$("#seopress_news").attr("data-toggle","1"==$("#seopress_news").attr("data-toggle")?"0":"1"),$.ajax({method:"POST",url:seopressAjaxDisplay.seopress_display,data:{action:"seopress_display",news_center:$("#seopress_news").attr("data-toggle"),_ajax_nonce:seopressAjaxDisplay.seopress_nonce}})})),$("#seopress_tools").on("click",(function(){$("#notice-insights-alert").toggleClass("is-active"),$("#seopress_tools").attr("data-toggle","1"==$("#seopress_tools").attr("data-toggle")?"0":"1"),$.ajax({method:"POST",url:seopressAjaxDisplay.seopress_display,data:{action:"seopress_display",tools_center:$("#seopress_tools").attr("data-toggle"),_ajax_nonce:seopressAjaxDisplay.seopress_nonce}})})),$("#notifications_center").on("click",(function(){$("#seopress-notifications-center").toggleClass("is-active"),$("#notifications_center").attr("data-toggle","1"==$("#notifications_center").attr("data-toggle")?"0":"1"),$.ajax({method:"POST",url:seopressAjaxDisplay.seopress_display,data:{action:"seopress_display",notifications_center:$("#notifications_center").attr("data-toggle"),_ajax_nonce:seopressAjaxDisplay.seopress_nonce}})}))})),jQuery(document).ready((function($){var get_hash,clean_hash=window.location.hash.split("$");if("undefined"!=typeof sessionStorage){var seopress_admin_tab_session_storage=sessionStorage.getItem("seopress_admin_tab");"1"==clean_hash[1]?($("#tab_seopress_analytics-tab").addClass("nav-tab-active"),$("#tab_seopress_analytics").addClass("active")):"2"==clean_hash[1]?($("#tab_seopress_matomo-tab").addClass("nav-tab-active"),$("#tab_seopress_matomo").addClass("active")):"3"==clean_hash[1]?($("#tab_seopress_ps-tab").addClass("nav-tab-active"),$("#tab_seopress_ps_tools").addClass("active")):seopress_admin_tab_session_storage?($("#seopress-admin-tabs").find(".nav-tab.nav-tab-active").removeClass("nav-tab-active"),$("#seopress-admin-tabs").find(".seopress-tab.active").removeClass("active"),$("#"+seopress_admin_tab_session_storage.split("#tab=")+"-tab").addClass("nav-tab-active"),$("#"+seopress_admin_tab_session_storage.split("#tab=")).addClass("active")):($("#seopress-admin-tabs a.nav-tab").first().addClass("nav-tab-active"),$("#seopress-admin-tabs .wrap-seopress-tab-content > div").first().addClass("active"))}$("#seopress-admin-tabs").find("a.nav-tab").click((function(e){e.preventDefault();var hash=$(this).attr("href").split("#tab=")[1];$("#seopress-admin-tabs").find(".nav-tab.nav-tab-active").removeClass("nav-tab-active"),$("#"+hash+"-tab").addClass("nav-tab-active"),1==clean_hash[1]?sessionStorage.setItem("seopress_admin_tab","tab_seopress_analytics"):2==clean_hash[1]?sessionStorage.setItem("seopress_admin_tab","tab_seopress_matomo"):3==clean_hash[1]?sessionStorage.setItem("seopress_admin_tab","tab_seopress_ps_tools"):sessionStorage.setItem("seopress_admin_tab",hash),$("#seopress-admin-tabs").find(".seopress-tab.active").removeClass("active"),$("#"+hash).addClass("active")})),$(".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 item=jQuery(e.target);var postData=item.sortable("toArray",{attribute:"id"});$.ajax({method:"POST",url:seopressAjaxDndFeatures.seopress_dnd_features,data:{action:"seopress_dnd_features",order:postData,_ajax_nonce:seopressAjaxDndFeatures.seopress_nonce}})}})}));
|
@@ -1 +1 @@
|
|
1 |
-
jQuery(document).ready(function(
|
1 |
+
jQuery(document).ready((function($){var mediaUploader;$("#seopress_social_fb_img_meta").on("paste",(function(){$("#seopress_social_fb_img_attachment_id").val(""),$("#seopress_social_fb_img_width").val(""),$("#seopress_social_fb_img_height").val("")})),$("#seopress_social_twitter_img_meta").on("paste",(function(){$("#seopress_social_twitter_img_attachment_id").val(""),$("#seopress_social_twitter_img_width").val(""),$("#seopress_social_twitter_img_height").val("")})),$(".button.seopress_social_facebook_img_cpt").click((function(e){e.preventDefault();var url_field=$(this).parent().find("input[type=text]");(mediaUploader=wp.media.frames.file_frame=wp.media({multiple:!1})).on("select",(function(){attachment=mediaUploader.state().get("selection").first().toJSON(),$(url_field).val(attachment.url)})),mediaUploader.open()}));const array=["#seopress_social_knowledge_img","#seopress_social_twitter_img","#seopress_social_fb_img",".seopress_social_fb_img",".seopress_social_twitter_img","#knowledge_img"];array.forEach((function(item){var mediaUploader;$(item+"_upload").click((function(e){e.preventDefault(),mediaUploader?mediaUploader.open():((mediaUploader=wp.media.frames.file_frame=wp.media({multiple:!1})).on("select",(function(){attachment=mediaUploader.state().get("selection").first().toJSON(),$(item+"_meta").val(attachment.url),"#seopress_social_fb_img"!=item&&".seopress_social_fb_img"!=item||"undefined"==typeof sp_social_img||sp_social_img("fb"),"#seopress_social_twitter_img"!=item&&".seopress_social_twitter_img"!=item||"undefined"==typeof sp_social_img||sp_social_img("twitter"),0!=$(item+"_attachment_id").length&&($(item+"_attachment_id").val(attachment.id),$(item+"_width").val(attachment.width),$(item+"_height").val(attachment.height))})),mediaUploader.open())}))})),$(".seopress-btn-upload-media").click((function(e){var mediaUploader;if(e.preventDefault(),mediaUploader)mediaUploader.open();else{mediaUploader=wp.media.frames.file_frame=wp.media({multiple:!1});var _self=$(this);mediaUploader.on("select",(function(){attachment=mediaUploader.state().get("selection").first().toJSON(),$(_self.data("input-value")).val(attachment.url)})),mediaUploader.open()}}))}));
|
@@ -1 +1 @@
|
|
1 |
-
document.addEventListener("DOMContentLoaded",function(){function
|
1 |
+
document.addEventListener("DOMContentLoaded",(function(){const $=jQuery;function sp_get_field_length(e){return e.val().length>0?meta=e.val()+" ":meta=e.val(),meta}$("#seopress-tabs .hidden").removeClass("hidden"),$("#seopress-tabs").tabs();var debounce=function(func,wait,immediate){var timeout;return function(){var context=this,args=arguments,later=function(){timeout=null,immediate||func.apply(context,args)},callNow=immediate&&!timeout;clearTimeout(timeout),timeout=setTimeout(later,wait),callNow&&func.apply(context,args)}};$("#seopress_titles_title_meta").on("change paste keyup",debounce((function(e){const template=$(this).val(),termId=$("#seopress-tabs").data("term-id"),homeId=$("#seopress-tabs").data("home-id");$.ajax({method:"GET",url:seopressAjaxRealPreview.ajax_url,data:{action:"get_preview_meta_title",template:template,post_id:$("#seopress-tabs").attr("data_id"),term_id:0===termId.length?void 0:termId,home_id:0===homeId.length?void 0:homeId,nonce:seopressAjaxRealPreview.get_preview_meta_title},success:function(response){const{data:data}=response;data.length>0?($(".snippet-title").hide(),$(".snippet-title-default").hide(),$(".snippet-title-custom").text(data),$(".snippet-title-custom").show(),$("#seopress_titles_title_counters").length>0&&$("#seopress_titles_title_counters").text(data.length),$("#seopress_titles_title_pixel").length>0&&$("#seopress_titles_title_pixel").text(pixelTitle(data))):($(".snippet-title").hide(),$(".snippet-title-custom").hide(),$(".snippet-title-default").show())}})}),300)),$("#seopress-tag-single-title").click((function(){$("#seopress_titles_title_meta").val(sp_get_field_length($("#seopress_titles_title_meta"))+$("#seopress-tag-single-title").attr("data-tag")),$("#seopress_titles_title_meta").trigger("paste")})),$("#seopress-tag-single-site-title").click((function(){$("#seopress_titles_title_meta").val(sp_get_field_length($("#seopress_titles_title_meta"))+$("#seopress-tag-single-site-title").attr("data-tag")),$("#seopress_titles_title_meta").trigger("paste")})),$("#seopress-tag-single-excerpt").click((function(){$("#seopress_titles_desc_meta").val(sp_get_field_length($("#seopress_titles_desc_meta"))+$("#seopress-tag-single-excerpt").attr("data-tag")),$("#seopress_titles_title_meta").trigger("paste")})),$("#seopress-tag-single-sep").click((function(){$("#seopress_titles_title_meta").val(sp_get_field_length($("#seopress_titles_title_meta"))+$("#seopress-tag-single-sep").attr("data-tag")),$("#seopress_titles_title_meta").trigger("paste")}));let alreadyBind=!1;$(".seopress-tag-dropdown").each((function(item){const _self=$(this);function handleClickLi(current){_self.hasClass("tag-title")&&($("#seopress_titles_title_meta").val(sp_get_field_length($("#seopress_titles_title_meta"))+$(current).attr("data-value")),$("#seopress_titles_title_meta").trigger("paste")),_self.hasClass("tag-description")&&($("#seopress_titles_desc_meta").val(sp_get_field_length($("#seopress_titles_desc_meta"))+$(current).attr("data-value")),$("#seopress_titles_desc_meta").trigger("paste"))}$(this).on("click",(function(){function closeItem(e){$(e.target).hasClass("dashicons")||$(e.target).hasClass("seopress-tag-single-all")||(alreadyBind=!1,$(document).off("click",closeItem),$(".sp-wrap-tag-variables-list").removeClass("open"))}$(this).next(".sp-wrap-tag-variables-list").toggleClass("open"),$(this).next(".sp-wrap-tag-variables-list").find("li").on("click",(function(e){handleClickLi(this),e.stopImmediatePropagation()})).on("keyup",(function(e){13===e.keyCode&&(handleClickLi(this),e.stopImmediatePropagation())})),alreadyBind||(alreadyBind=!0,$(document).on("click",closeItem))}))}))}));
|
@@ -107,6 +107,7 @@ jQuery(document).ready(function ($) {
|
|
107 |
"platinum-seo",
|
108 |
"smart-crawl",
|
109 |
"seopressor",
|
|
|
110 |
"metadata",
|
111 |
];
|
112 |
seo_plugins.forEach(function (item) {
|
@@ -220,6 +221,15 @@ jQuery(document).ready(function ($) {
|
|
220 |
seopressAjaxMigrate.seopress_seopressor_migrate
|
221 |
.seopress_nonce;
|
222 |
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
223 |
case "seopress-metadata-migrate":
|
224 |
url =
|
225 |
seopressAjaxMigrate.seopress_metadata_csv
|
107 |
"platinum-seo",
|
108 |
"smart-crawl",
|
109 |
"seopressor",
|
110 |
+
"slim-seo",
|
111 |
"metadata",
|
112 |
];
|
113 |
seo_plugins.forEach(function (item) {
|
221 |
seopressAjaxMigrate.seopress_seopressor_migrate
|
222 |
.seopress_nonce;
|
223 |
break;
|
224 |
+
case "seopress-slim-seo-migrate":
|
225 |
+
url =
|
226 |
+
seopressAjaxMigrate.seopress_slim_seo_migrate
|
227 |
+
.seopress_slim_seo_migration;
|
228 |
+
action = "seopress_slim_seo_migration";
|
229 |
+
_ajax_nonce =
|
230 |
+
seopressAjaxMigrate.seopress_slim_seo_migrate
|
231 |
+
.seopress_nonce;
|
232 |
+
break;
|
233 |
case "seopress-metadata-migrate":
|
234 |
url =
|
235 |
seopressAjaxMigrate.seopress_metadata_csv
|
@@ -1 +1 @@
|
|
1 |
-
jQuery(document).ready(function(
|
1 |
+
jQuery(document).ready((function($){$("#seopress-video-regenerate").click((function(){url=seopressAjaxVdeoRegenerate.seopress_video_regenerate,action="seopress_video_xml_sitemap_regenerate",_ajax_nonce=seopressAjaxVdeoRegenerate.seopress_nonce,self.process_offset2(0,self,url,action,_ajax_nonce)})),process_offset2=function(offset,self,url,action,_ajax_nonce){i18n=seopressAjaxMigrate.i18n.video,$.ajax({method:"POST",url:url,data:{action:action,offset:offset,_ajax_nonce:_ajax_nonce},success:function(data){"done"==data.data.offset?($("#seopress-video-regenerate").removeAttr("disabled"),$(".spinner").css("visibility","hidden"),$("#tab_seopress_tool_video .log").css("display","block"),$("#tab_seopress_tool_video .log").html("<div class='seopress-notice is-success'><p>"+i18n+"</p></div>"),""!=data.data.url&&$(location).attr("href",data.data.url)):(self.process_offset2(parseInt(data.data.offset),self,url,action,_ajax_nonce),data.data.total&&(progress=(data.data.count/data.data.total*100).toFixed(2),$("#tab_seopress_tool_video .log").css("display","block"),$("#tab_seopress_tool_video .log").html("<div class='seopress-notice'><p>"+progress+"%</p></div>")))}})},$("#seopress-video-regenerate").on("click",(function(){$(this).attr("disabled","disabled"),$("#tab_seopress_tool_video .spinner").css("visibility","visible"),$("#tab_seopress_tool_video .spinner").css("float","none"),$("#tab_seopress_tool_video .log").html("")})),$("#select-wizard-redirects, #select-wizard-import").change((function(e){var select;e.preventDefault(),"none"==$(this).val()?$("#select-wizard-redirects option, #select-wizard-import option").each((function(){var ids_to_hide=$(this).val();$("#"+ids_to_hide).hide()})):($("#select-wizard-redirects option:selected, #select-wizard-import option:selected").each((function(){var ids_to_show=$(this).val();$("#"+ids_to_show).show()})),$("#select-wizard-redirects option:not(:selected), #select-wizard-import option:not(:selected)").each((function(){var ids_to_hide=$(this).val();$("#"+ids_to_hide).hide()})))})).trigger("change");const seo_plugins=["yoast","aio","seo-framework","rk","squirrly","seo-ultimate","wp-meta-seo","premium-seo-pack","wpseo","platinum-seo","smart-crawl","seopressor","slim-seo","metadata"];seo_plugins.forEach((function(item){$("#seopress-"+item+"-migrate").on("click",(function(e){switch(e.preventDefault(),id=item,e.target.id){case"seopress-yoast-migrate":url=seopressAjaxMigrate.seopress_yoast_migrate.seopress_yoast_migration,action="seopress_yoast_migration",_ajax_nonce=seopressAjaxMigrate.seopress_yoast_migrate.seopress_nonce;break;case"seopress-aio-migrate":url=seopressAjaxMigrate.seopress_aio_migrate.seopress_aio_migration,action="seopress_aio_migration",_ajax_nonce=seopressAjaxMigrate.seopress_aio_migrate.seopress_nonce;break;case"seopress-seo-framework-migrate":url=seopressAjaxMigrate.seopress_seo_framework_migrate.seopress_seo_framework_migration,action="seopress_seo_framework_migration",_ajax_nonce=seopressAjaxMigrate.seopress_seo_framework_migrate.seopress_nonce;break;case"seopress-rk-migrate":url=seopressAjaxMigrate.seopress_rk_migrate.seopress_rk_migration,action="seopress_rk_migration",_ajax_nonce=seopressAjaxMigrate.seopress_rk_migrate.seopress_nonce;break;case"seopress-squirrly-migrate":url=seopressAjaxMigrate.seopress_squirrly_migrate.seopress_squirrly_migration,action="seopress_squirrly_migration",_ajax_nonce=seopressAjaxMigrate.seopress_squirrly_migrate.seopress_nonce;break;case"seopress-seo-ultimate-migrate":url=seopressAjaxMigrate.seopress_seo_ultimate_migrate.seopress_seo_ultimate_migration,action="seopress_seo_ultimate_migration",_ajax_nonce=seopressAjaxMigrate.seopress_seo_ultimate_migrate.seopress_nonce;break;case"seopress-wp-meta-seo-migrate":url=seopressAjaxMigrate.seopress_wp_meta_seo_migrate.seopress_wp_meta_seo_migration,action="seopress_wp_meta_seo_migration",_ajax_nonce=seopressAjaxMigrate.seopress_wp_meta_seo_migrate.seopress_nonce;break;case"seopress-premium-seo-pack-migrate":url=seopressAjaxMigrate.seopress_premium_seo_pack_migrate.seopress_premium_seo_pack_migration,action="seopress_premium_seo_pack_migration",_ajax_nonce=seopressAjaxMigrate.seopress_premium_seo_pack_migrate.seopress_nonce;break;case"seopress-wpseo-migrate":url=seopressAjaxMigrate.seopress_wpseo_migrate.seopress_wpseo_migration,action="seopress_wpseo_migration",_ajax_nonce=seopressAjaxMigrate.seopress_wpseo_migrate.seopress_nonce;break;case"seopress-platinum-seo-migrate":url=seopressAjaxMigrate.seopress_platinum_seo_migrate.seopress_platinum_seo_migration,action="seopress_platinum_seo_migration",_ajax_nonce=seopressAjaxMigrate.seopress_platinum_seo_migrate.seopress_nonce;break;case"seopress-smart-crawl-migrate":url=seopressAjaxMigrate.seopress_smart_crawl_migrate.seopress_smart_crawl_migration,action="seopress_smart_crawl_migration",_ajax_nonce=seopressAjaxMigrate.seopress_smart_crawl_migrate.seopress_nonce;break;case"seopress-seopressor-migrate":url=seopressAjaxMigrate.seopress_seopressor_migrate.seopress_seopressor_migration,action="seopress_seopressor_migration",_ajax_nonce=seopressAjaxMigrate.seopress_seopressor_migrate.seopress_nonce;break;case"seopress-slim-seo-migrate":url=seopressAjaxMigrate.seopress_slim_seo_migrate.seopress_slim_seo_migration,action="seopress_slim_seo_migration",_ajax_nonce=seopressAjaxMigrate.seopress_slim_seo_migrate.seopress_nonce;break;case"seopress-metadata-migrate":url=seopressAjaxMigrate.seopress_metadata_csv.seopress_metadata_export,action="seopress_metadata_export",_ajax_nonce=seopressAjaxMigrate.seopress_metadata_csv.seopress_nonce}self.process_offset(0,self,url,action,_ajax_nonce,id)})),process_offset=function(offset,self,url,action,_ajax_nonce,id,post_export,term_export){i18n=seopressAjaxMigrate.i18n.migration,"metadata"==id&&(i18n=seopressAjaxMigrate.i18n.export),$.ajax({method:"POST",url:url,data:{action:action,offset:offset,post_export:post_export,term_export:term_export,_ajax_nonce:_ajax_nonce},success:function(data){"done"==data.data.offset?($("#seopress-"+id+"-migrate").removeAttr("disabled"),$(".spinner").css("visibility","hidden"),$("#"+id+"-migration-tool .log").css("display","block"),$("#"+id+"-migration-tool .log").html("<div class='seopress-notice is-success'><p>"+i18n+"</p></div>"),""!=data.data.url&&$(location).attr("href",data.data.url)):(self.process_offset(parseInt(data.data.offset),self,url,action,_ajax_nonce,id,data.data.post_export,data.data.term_export),data.data.total&&(progress=(data.data.count/data.data.total*100).toFixed(2),$("#"+id+"-migration-tool .log").css("display","block"),$("#"+id+"-migration-tool .log").html("<div class='seopress-notice'><p>"+progress+"%</p></div>")))}})},$("#seopress-"+item+"-migrate").on("click",(function(){$(this).attr("disabled","disabled"),$("#"+item+"-migration-tool .spinner").css("visibility","visible"),$("#"+item+"-migration-tool .spinner").css("float","none"),$("#"+item+"-migration-tool .log").html("")}))}))}));
|
@@ -1 +1 @@
|
|
1 |
-
jQuery(document).ready(function(
|
1 |
+
jQuery(document).ready((function($){var get_hash,clean_hash=window.location.hash.split("$");if("undefined"!=typeof sessionStorage){var seopress_tab_session_storage=sessionStorage.getItem("seopress_robots_tab");"1"==clean_hash[1]?($("#tab_seopress_robots-tab").addClass("nav-tab-active"),$("#tab_seopress_robots").addClass("active")):"2"==clean_hash[1]?($("#tab_seopress_htaccess-tab").addClass("nav-tab-active"),$("#tab_seopress_htaccess").addClass("active")):"3"==clean_hash[1]?($("#tab_seopress_white_label-tab").addClass("nav-tab-active"),$("#tab_seopress_white_label").addClass("active")):seopress_tab_session_storage?($("#seopress-tabs").find(".nav-tab.nav-tab-active").removeClass("nav-tab-active"),$("#seopress-tabs").find(".seopress-tab.active").removeClass("active"),$("#"+seopress_tab_session_storage.split("#tab=")+"-tab").addClass("nav-tab-active"),$("#"+seopress_tab_session_storage.split("#tab=")).addClass("active")):($("#tab_seopress_robots-tab").addClass("nav-tab-active"),$("#tab_seopress_robots").addClass("active"))}$("#seopress-tabs").find("a.nav-tab").click((function(e){e.preventDefault();var hash=$(this).attr("href").split("#tab=")[1];$("#seopress-tabs").find(".nav-tab.nav-tab-active").removeClass("nav-tab-active"),$("#"+hash+"-tab").addClass("nav-tab-active"),1==clean_hash[1]?sessionStorage.setItem("seopress_robots_tab","tab_seopress_robots"):2==clean_hash[1]?sessionStorage.setItem("seopress_robots_tab","tab_seopress_htaccess"):3==clean_hash[1]?sessionStorage.setItem("seopress_white_label","tab_seopress_white_label"):sessionStorage.setItem("seopress_robots_tab",hash),$("#seopress-tabs").find(".seopress-tab.active").removeClass("active"),$("#"+hash).addClass("active")})),$("#seopress-tag-robots-1, #seopress-tag-robots-2, #seopress-tag-robots-3, #seopress-tag-robots-4, #seopress-tag-robots-5, #seopress-tag-robots-6, #seopress-tag-robots-7").click((function(){$(".seopress_robots_file").val($(".seopress_robots_file").val()+"\n"+$(this).attr("data-tag"))})),$("#seopress-flush-permalinks2").on("click",(function(){$.ajax({method:"GET",url:seopressAjaxResetPermalinks.seopress_ajax_permalinks,data:{action:"seopress_flush_permalinks",_ajax_nonce:seopressAjaxResetPermalinks.seopress_nonce},success:function(data){window.location.reload(!0)}})})),$("#seopress-flush-permalinks2").on("click",(function(){$(this).attr("disabled","disabled"),$(".spinner").css("visibility","visible"),$(".spinner").css("float","none")}))}));
|
@@ -47,7 +47,7 @@
|
|
47 |
$(':input[name="seopress_nofollow"]', $edit_row).attr('checked', 'checked');
|
48 |
}
|
49 |
|
50 |
-
if ($seopress_redirections_enable && $seopress_redirections_enable == '<span class="dashicons dashicons-yes"></span>') {
|
51 |
$(':input[name="seopress_redirections_enabled"]', $edit_row).attr('checked', 'checked');
|
52 |
}
|
53 |
if ($seopress_redirections_regex_enable && $seopress_redirections_regex_enable == '<span class="dashicons dashicons-yes"></span>') {
|
47 |
$(':input[name="seopress_nofollow"]', $edit_row).attr('checked', 'checked');
|
48 |
}
|
49 |
|
50 |
+
if ($seopress_redirections_enable && $seopress_redirections_enable == '<span class="dashicons dashicons-yes-alt"></span>') {
|
51 |
$(':input[name="seopress_redirections_enabled"]', $edit_row).attr('checked', 'checked');
|
52 |
}
|
53 |
if ($seopress_redirections_regex_enable && $seopress_redirections_regex_enable == '<span class="dashicons dashicons-yes"></span>') {
|
@@ -1 +1 @@
|
|
1 |
-
|
1 |
+
!function($){var $wp_inline_edit=inlineEditPost.edit;inlineEditPost.edit=function(id){$wp_inline_edit.apply(this,arguments);var $post_id=0;if("object"==typeof id&&($post_id=parseInt(this.getId(id))),$post_id>0){var $edit_row=$("#edit-"+$post_id),$post_row=$("#post-"+$post_id),$seopress_title=$(".column-seopress_title .hidden",$post_row).text(),$seopress_desc=$(".column-seopress_desc .hidden",$post_row).text(),$seopress_tkw=$(".column-seopress_tkw",$post_row).text(),$seopress_canonical=$(".column-seopress_canonical",$post_row).text(),$seopress_noindex=$(".column-seopress_noindex",$post_row).html(),$seopress_nofollow=$(".column-seopress_nofollow",$post_row).html(),$seopress_redirections_enable=$(".column-seopress_404_redirect_enable",$post_row).html(),$seopress_redirections_regex_enable=$(".column-seopress_404_redirect_regex_enable",$post_row).html(),$seopress_redirections_type=$(".column-seopress_404_redirect_type",$post_row).text(),$seopress_redirections_value=$(".column-seopress_404_redirect_value",$post_row).text();$(':input[name="seopress_title"]',$edit_row).val($seopress_title),$(':input[name="seopress_desc"]',$edit_row).val($seopress_desc),$(':input[name="seopress_tkw"]',$edit_row).val($seopress_tkw),$(':input[name="seopress_canonical"]',$edit_row).val($seopress_canonical),$seopress_noindex&&$seopress_noindex.includes('<span class="dashicons dashicons-hidden"></span>')&&$(':input[name="seopress_noindex"]',$edit_row).attr("checked","checked"),$seopress_nofollow&&$seopress_nofollow.includes('<span class="dashicons dashicons-yes"></span>')&&$(':input[name="seopress_nofollow"]',$edit_row).attr("checked","checked"),$seopress_redirections_enable&&'<span class="dashicons dashicons-yes-alt"></span>'==$seopress_redirections_enable&&$(':input[name="seopress_redirections_enabled"]',$edit_row).attr("checked","checked"),$seopress_redirections_regex_enable&&'<span class="dashicons dashicons-yes"></span>'==$seopress_redirections_regex_enable&&$(':input[name="seopress_redirections_enabled_regex"]',$edit_row).attr("checked","checked"),$seopress_redirections_type&&"404"!=$seopress_redirections_type&&$('select[name="seopress_redirections_type"] option[value="'+$seopress_redirections_type+'"]',$edit_row).attr("selected","selected"),$(':input[name="seopress_redirections_value"]',$edit_row).val($seopress_redirections_value)}}}(jQuery);
|
@@ -1 +1 @@
|
|
1 |
-
jQuery(document).ready(function(
|
1 |
+
jQuery(document).ready((function($){$("#seopress-flush-permalinks,#seopress-flush-permalinks2").on("click",(function(){$.ajax({method:"GET",url:seopressAjaxResetPermalinks.seopress_ajax_permalinks,data:{action:"seopress_flush_permalinks",_ajax_nonce:seopressAjaxResetPermalinks.seopress_nonce},success:function(data){window.location.reload(!0)}})})),$("#seopress-flush-permalinks,#seopress-flush-permalinks2").on("click",(function(){$(this).attr("disabled","disabled"),$(".spinner").css("visibility","visible"),$(".spinner").css("float","none")}))}));
|
@@ -1 +1 @@
|
|
1 |
-
jQuery(document).ready(function(
|
1 |
+
jQuery(document).ready((function($){function seopress_call_media_uploader(){var mediaUploader,thumb;$(".seopress_video_thumbnail_upload").click((function(e){e.preventDefault(),$btn=$(this),mediaUploader?mediaUploader.open():(thumb=$(this).prev(),(mediaUploader=wp.media.frames.file_frame=wp.media({multiple:!1})).on("select",(function(){var attachment=mediaUploader.state().get("selection").first().toJSON();$btn.prev().val(attachment.url)})),mediaUploader.open())}))}seopress_call_media_uploader();var template=$("#wrap-videos .video:last").clone(),stop=!1;function seopress_call_video_accordion(){$("#wrap-videos .video").accordion({animate:!1,collapsible:!0,active:!1,heightStyle:"panel"})}$("#wrap-videos .video h3").click((function(event){stop&&(event.stopImmediatePropagation(),event.preventDefault(),stop=!1)})),seopress_call_video_accordion();var sectionsCount=$("#wrap-videos").attr("data-count");$("#add-video").click((function(){sectionsCount++;var section=template.clone().find(":input").each((function(){var input_id=this.id,input_name=this.name,newId=this.id.replace(/^(\w+)\[.*?\]/,"$1["+sectionsCount+"]");$(this).attr("name",input_name.replace(/^(\w+)\[.*?\]/,"$1["+sectionsCount+"]")),$(this).hasClass("seopress_video_thumbnail_upload")||$(this).attr("value",""),$(this).is(":checkbox")?($(this).parent().attr("for",input_id.replace(/^(\w+)\[.*?\]/,"$1["+sectionsCount+"]")),$(this).parent().attr("id",input_name.replace(/^(\w+)\[.*?\]/,"$1["+sectionsCount+"]"))):$(this).hasClass("seopress_video_thumbnail_upload")||($(this).prev().attr("for",input_id.replace(/^(\w+)\[.*?\]/,"$1["+sectionsCount+"]")),$(this).prev().attr("id",input_name.replace(/^(\w+)\[.*?\]/,"$1["+sectionsCount+"]"))),this.id=newId})).end().appendTo("#wrap-videos");return seopress_call_video_accordion(),$("#wrap-videos .video").accordion("destroy"),seopress_call_video_accordion(),$("[id^=__wp-uploader-id-]").each((function(){$(this).remove()})),seopress_call_media_uploader(),!1})),$("#wrap-videos").on("click",".remove-video",(function(){return $(this).fadeOut(300,(function(){return $(this).parent().parent().parent().remove(),!1})),!1}))}));
|
@@ -1 +1 @@
|
|
1 |
-
jQuery(document).ready(
|
1 |
+
jQuery(document).ready((function($){const features=[["seopress_titles","seopress_titles_home"],["seopress_xml_sitemap_tab","seopress_xml_sitemap_general"],["seopress_social_tab","seopress_social_knowledge"],["seopress_advanced_tab","seopress_advanced_image"],["seopress_google_analytics_enable","seopress_google_analytics_enable"],["seopress_tool_settings","seopress_tool_settings"],["seopress_instant_indexing_general","seopress_instant_indexing_general"],["seopress_insights_general","seopress_insights_general"]];function sp_get_field_length(e){return e.val().length>0?meta=e.val()+" ":meta=e.val(),meta}features.forEach((function(item){var hash=$(location).attr("hash").split("#tab=")[1];if(void 0!==hash)$("#"+hash+"-tab").addClass("nav-tab-active"),$("#"+hash).addClass("active");else{if("undefined"!=typeof sessionStorage&&"null"!=typeof sessionStorage){var seopress_tab_session_storage=sessionStorage.getItem("seopress_save_tab");seopress_tab_session_storage&&$("#"+seopress_tab_session_storage+"-tab").length?($("#seopress-tabs").find(".nav-tab.nav-tab-active").removeClass("nav-tab-active"),$("#seopress-tabs").find(".seopress-tab.active").removeClass("active"),$("#"+seopress_tab_session_storage+"-tab").addClass("nav-tab-active"),$("#"+seopress_tab_session_storage).addClass("active")):($("#tab_"+item[1]+"-tab").addClass("nav-tab-active"),$("#tab_"+item[1]).addClass("active"))}$("#seopress-tabs").find("a.nav-tab").click((function(e){e.preventDefault();var hash=$(this).attr("href").split("#tab=")[1];$("#seopress-tabs").find(".nav-tab.nav-tab-active").removeClass("nav-tab-active"),$("#"+hash+"-tab").addClass("nav-tab-active"),sessionStorage.setItem("seopress_save_tab",hash),$("#seopress-tabs").find(".seopress-tab.active").removeClass("active"),$("#"+hash).addClass("active")}))}}));let alreadyBind=!1;if($("#seopress-tag-site-title").click((function(){$("#seopress_titles_home_site_title").val(sp_get_field_length($("#seopress_titles_home_site_title"))+$("#seopress-tag-site-title").attr("data-tag"))})),$("#seopress-tag-site-desc").click((function(){$("#seopress_titles_home_site_title").val(sp_get_field_length($("#seopress_titles_home_site_title"))+$("#seopress-tag-site-desc").attr("data-tag"))})),$("#seopress-tag-site-sep").click((function(){$("#seopress_titles_home_site_title").val(sp_get_field_length($("#seopress_titles_home_site_title"))+$("#seopress-tag-site-sep").attr("data-tag"))})),$("#seopress-tag-meta-desc").click((function(){$("#seopress_titles_home_site_desc").val(sp_get_field_length($("#seopress_titles_home_site_desc"))+$("#seopress-tag-meta-desc").attr("data-tag"))})),$("#seopress-tag-post-author").click((function(){$("#seopress_titles_archive_post_author").val(sp_get_field_length($("#seopress_titles_archive_post_author"))+$("#seopress-tag-post-author").attr("data-tag"))})),$("#seopress-tag-sep-author").click((function(){$("#seopress_titles_archive_post_author").val(sp_get_field_length($("#seopress_titles_archive_post_author"))+$("#seopress-tag-sep-author").attr("data-tag"))})),$("#seopress-tag-site-title-author").click((function(){$("#seopress_titles_archive_post_author").val(sp_get_field_length($("#seopress_titles_archive_post_author"))+$("#seopress-tag-site-title-author").attr("data-tag"))})),$("#seopress-tag-archive-date").click((function(){$("#seopress_titles_archives_date_title").val(sp_get_field_length($("#seopress_titles_archives_date_title"))+$("#seopress-tag-archive-date").attr("data-tag"))})),$("#seopress-tag-sep-date").click((function(){$("#seopress_titles_archives_date_title").val(sp_get_field_length($("#seopress_titles_archives_date_title"))+$("#seopress-tag-sep-date").attr("data-tag"))})),$("#seopress-tag-site-title-date").click((function(){$("#seopress_titles_archives_date_title").val(sp_get_field_length($("#seopress_titles_archives_date_title"))+$("#seopress-tag-site-title-date").attr("data-tag"))})),$("#seopress-tag-search-keywords").click((function(){$("#seopress_titles_archives_search_title").val(sp_get_field_length($("#seopress_titles_archives_search_title"))+$("#seopress-tag-search-keywords").attr("data-tag"))})),$("#seopress-tag-sep-search").click((function(){$("#seopress_titles_archives_search_title").val(sp_get_field_length($("#seopress_titles_archives_search_title"))+$("#seopress-tag-sep-search").attr("data-tag"))})),$("#seopress-tag-site-title-search").click((function(){$("#seopress_titles_archives_search_title").val(sp_get_field_length($("#seopress_titles_archives_search_title"))+$("#seopress-tag-site-title-search").attr("data-tag"))})),$("#seopress-tag-site-title-404").click((function(){$("#seopress_titles_archives_404_title").val(sp_get_field_length($("#seopress_titles_archives_404_title"))+$("#seopress-tag-site-title-404").attr("data-tag"))})),$("#seopress-tag-sep-404").click((function(){$("#seopress_titles_archives_404_title").val(sp_get_field_length($("#seopress_titles_archives_404_title"))+$("#seopress-tag-sep-404").attr("data-tag"))})),$("#seopress-tag-post-title-bd-groups").click((function(){$("#seopress_titles_bp_groups_title").val(sp_get_field_length($("#seopress_titles_bp_groups_title"))+$("#seopress-tag-post-title-bd-groups").attr("data-tag"))})),$("#seopress-tag-sep-bd-groups").click((function(){$("#seopress_titles_bp_groups_title").val(sp_get_field_length($("#seopress_titles_bp_groups_title"))+$("#seopress-tag-sep-bd-groups").attr("data-tag"))})),$("#seopress-tag-site-title-bd-groups").click((function(){$("#seopress_titles_bp_groups_title").val(sp_get_field_length($("#seopress_titles_bp_groups_title"))+$("#seopress-tag-site-title-bd-groups").attr("data-tag"))})),$(".seopress-tag-dropdown").each((function(item){const input_title=$(this).parent(".wrap-tags").prev("input"),input_desc=$(this).parent(".wrap-tags").prev("textarea"),_self=$(this);function handleClickLi(current){_self.hasClass("tag-title")&&(input_title.val(sp_get_field_length(input_title)+$(current).attr("data-value")),input_title.trigger("paste")),_self.hasClass("tag-description")&&(input_desc.val(sp_get_field_length(input_desc)+$(current).attr("data-value")),input_desc.trigger("paste"))}$(this).on("click",(function(){function closeItem(e){$(e.target).hasClass("dashicons")||$(e.target).hasClass("seopress-tag-single-all")||(alreadyBind=!1,$(document).off("click",closeItem),$(".sp-wrap-tag-variables-list").removeClass("open"))}$(this).next(".sp-wrap-tag-variables-list").toggleClass("open"),$(this).next(".sp-wrap-tag-variables-list").find("li").on("click",(function(e){handleClickLi(this),e.stopImmediatePropagation()})).on("keyup",(function(e){13===e.keyCode&&(handleClickLi(this),e.stopImmediatePropagation())})),alreadyBind||(alreadyBind=!0,$(document).on("click",closeItem))}))})),$("#seopress_instant_indexing_manual_batch").length){newLines=$("#seopress_instant_indexing_manual_batch").val().split("\n").length,$("#seopress_instant_indexing_url_count").text(newLines);var lines=50,linesUsed=$("#seopress_instant_indexing_url_count");if(newLines){var progress=Math.round(newLines/50*100);progress>=100&&(progress=100),$("#seopress_instant_indexing_url_progress").attr("aria-valuenow",progress),$("#seopress_instant_indexing_url_progress").text(progress+"%"),$("#seopress_instant_indexing_url_progress").css("width",progress+"%")}$("#seopress_instant_indexing_manual_batch").on("keyup paste change click focus mouseout",(function(e){if(newLines=$(this).val().split("\n").length,linesUsed.text(newLines),newLines>50?linesUsed.css("color","red"):linesUsed.css("color",""),newLines)var progress=Math.round(newLines/50*100);progress>=100&&(progress=100),$("#seopress_instant_indexing_url_progress").attr("aria-valuenow",progress),$("#seopress_instant_indexing_url_progress").text(progress+"%"),$("#seopress_instant_indexing_url_progress").css("width",progress+"%")}))}$("#seopress_instant_indexing_google_action_include[URL_UPDATED]").is(":checked"),$(".seopress-instant-indexing-batch").on("click",(function(){$("#seopress-tabs .spinner").css("visibility","visible"),$("#seopress-tabs .spinner").css("float","none"),$.ajax({method:"POST",url:seopressAjaxInstantIndexingPost.seopress_instant_indexing_post,data:{action:"seopress_instant_indexing_post",urls_to_submit:$("#seopress_instant_indexing_manual_batch").val(),indexnow_api:$("#seopress_instant_indexing_bing_api_key").val(),google_api:$("#seopress_instant_indexing_google_api_key").val(),update_action:!!$("#seopress_instant_indexing_google_action_include_URL_UPDATED").is(":checked")&&"URL_UPDATED",delete_action:!!$("#seopress_instant_indexing_google_action_include_URL_DELETED").is(":checked")&&"URL_DELETED",google:!!$("#seopress_instant_indexing_engines_google").is(":checked"),bing:!!$("#seopress_instant_indexing_engines_bing").is(":checked"),automatic_submission:!!$("#seopress_instant_indexing_automate_submission").is(":checked"),_ajax_nonce:seopressAjaxInstantIndexingPost.seopress_nonce},success:function(data){window.location.reload(!0)}})})),$(".seopress-instant-indexing-refresh-api-key").on("click",(function(){$.ajax({method:"POST",url:seopressAjaxInstantIndexingApiKey.seopress_instant_indexing_generate_api_key,data:{action:"seopress_instant_indexing_generate_api_key",_ajax_nonce:seopressAjaxInstantIndexingApiKey.seopress_nonce},success:function(data){window.location.reload(!0)}})}))}));
|
@@ -11,9 +11,8 @@ $docs = seopress_get_docs_links();
|
|
11 |
} ?>
|
12 |
<div class="seopress-option">
|
13 |
<?php
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
?>
|
18 |
<div id="seopress-tabs" class="wrap">
|
19 |
<?php
|
@@ -37,115 +36,19 @@ $docs = seopress_get_docs_links();
|
|
37 |
echo '<a id="' . $tab_key . '-tab" class="nav-tab" href="?page=seopress-import-export#tab=' . $tab_key . '">' . $tab_caption . '</a>';
|
38 |
}
|
39 |
echo '</div>'; ?>
|
40 |
-
<?php if (is_plugin_active('wp-seopress-pro/seopress-pro.php')) { ?>
|
41 |
-
<div class="seopress-tab <?php if ('tab_seopress_tool_data' == $current_tab) {
|
42 |
-
echo 'active';
|
43 |
-
} ?>" id="tab_seopress_tool_data">
|
44 |
-
<div class="postbox section-tool">
|
45 |
-
<div class="sp-section-header">
|
46 |
-
<h2>
|
47 |
-
<?php _e('Data', 'wp-seopress'); ?>
|
48 |
-
</h2>
|
49 |
-
</div>
|
50 |
-
<div class="inside">
|
51 |
-
<h3>
|
52 |
-
<?php _e('Import data from a CSV', 'wp-seopress'); ?>
|
53 |
-
</h3>
|
54 |
-
<p>
|
55 |
-
<?php _e('Upload a CSV file to quickly import post (post, page, single post type) and term metadata.', 'wp-seopress'); ?>
|
56 |
-
<?php echo seopress_tooltip_link($docs['tools']['csv_import'], __('Learn how to import SEO metadata from a CSV file', 'wp-seopress')); ?>
|
57 |
-
</p>
|
58 |
-
<ul>
|
59 |
-
<li>
|
60 |
-
<?php _e('Meta title', 'wp-seopress'); ?>
|
61 |
-
</li>
|
62 |
-
<li>
|
63 |
-
<?php _e('Meta description', 'wp-seopress'); ?>
|
64 |
-
</li>
|
65 |
-
<li>
|
66 |
-
<?php _e('Meta robots (noindex, nofollow...)', 'wp-seopress'); ?>
|
67 |
-
</li>
|
68 |
-
<li>
|
69 |
-
<?php _e('Facebook Open Graph tags (title, description, image)', 'wp-seopress'); ?>
|
70 |
-
</li>
|
71 |
-
<li>
|
72 |
-
<?php _e('Twitter cards tags (title, description, image)', 'wp-seopress'); ?>
|
73 |
-
</li>
|
74 |
-
<li>
|
75 |
-
<?php _e('Redirection (enable, login status, type, URL)', 'wp-seopress'); ?>
|
76 |
-
</li>
|
77 |
-
<li>
|
78 |
-
<?php _e('Primary category', 'wp-seopress'); ?>
|
79 |
-
</li>
|
80 |
-
<li>
|
81 |
-
<?php _e('Canonical URL', 'wp-seopress'); ?>
|
82 |
-
</li>
|
83 |
-
<li>
|
84 |
-
<?php _e('Target keywords', 'wp-seopress'); ?>
|
85 |
-
</li>
|
86 |
-
</ul>
|
87 |
-
<p>
|
88 |
-
<a class="btn btnSecondary"
|
89 |
-
href="<?php echo admin_url('admin.php?page=seopress_csv_importer'); ?>">
|
90 |
-
<?php _e('Run the importer', 'wp-seopress'); ?>
|
91 |
-
</a>
|
92 |
-
</p>
|
93 |
-
</div><!-- .inside -->
|
94 |
-
</div><!-- .postbox -->
|
95 |
-
<div id="metadata-migration-tool" class="postbox section-tool">
|
96 |
-
<div class="inside">
|
97 |
-
<h3>
|
98 |
-
<?php _e('Export metadata to a CSV', 'wp-seopress'); ?>
|
99 |
-
</h3>
|
100 |
-
<p>
|
101 |
-
<?php _e('Export your post (post, page, single post type) and term metadata for this site as a .csv file.', 'wp-seopress'); ?>
|
102 |
-
<?php echo seopress_tooltip_link($docs['tools']['csv_export'], __('Learn how to export SEO metadata to a CSV file', 'wp-seopress')); ?>
|
103 |
-
</p>
|
104 |
-
<ul>
|
105 |
-
<li>
|
106 |
-
<?php _e('Meta title', 'wp-seopress'); ?>
|
107 |
-
</li>
|
108 |
-
<li>
|
109 |
-
<?php _e('Meta description', 'wp-seopress'); ?>
|
110 |
-
</li>
|
111 |
-
<li>
|
112 |
-
<?php _e('Meta robots (noindex, nofollow...)', 'wp-seopress'); ?>
|
113 |
-
</li>
|
114 |
-
<li>
|
115 |
-
<?php _e('Facebook Open Graph tags (title, description, image)', 'wp-seopress'); ?>
|
116 |
-
</li>
|
117 |
-
<li>
|
118 |
-
<?php _e('Twitter cards tags (title, description, image)', 'wp-seopress'); ?>
|
119 |
-
</li>
|
120 |
-
<li>
|
121 |
-
<?php _e('Redirection (enable, login status, type, URL)', 'wp-seopress'); ?>
|
122 |
-
</li>
|
123 |
-
<li>
|
124 |
-
<?php _e('Primary category', 'wp-seopress'); ?>
|
125 |
-
</li>
|
126 |
-
<li>
|
127 |
-
<?php _e('Canonical URL', 'wp-seopress'); ?>
|
128 |
-
</li>
|
129 |
-
<li>
|
130 |
-
<?php _e('Target keywords', 'wp-seopress'); ?>
|
131 |
-
</li>
|
132 |
-
</ul>
|
133 |
-
<form method="post">
|
134 |
-
<input type="hidden" name="seopress_action" value="export_csv_metadata" />
|
135 |
-
<?php wp_nonce_field('seopress_export_csv_metadata_nonce', 'seopress_export_csv_metadata_nonce'); ?>
|
136 |
-
|
137 |
-
<button id="seopress-metadata-migrate" type="button" class="btn btnSecondary">
|
138 |
-
<?php _e('Export', 'wp-seopress'); ?>
|
139 |
-
</button>
|
140 |
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
|
|
|
|
|
|
148 |
<?php } ?>
|
|
|
149 |
<div class="seopress-tab <?php if ('tab_seopress_tool_settings' == $current_tab) {
|
150 |
echo 'active';
|
151 |
} ?>" id="tab_seopress_tool_settings">
|
@@ -225,6 +128,7 @@ $docs = seopress_get_docs_links();
|
|
225 |
'platinum-seo' => 'Platinum SEO Pack',
|
226 |
'smart-crawl' => 'SmartCrawl',
|
227 |
'seopressor' => 'SEOPressor',
|
|
|
228 |
];
|
229 |
|
230 |
echo '<p>
|
11 |
} ?>
|
12 |
<div class="seopress-option">
|
13 |
<?php
|
14 |
+
echo $this->seopress_feature_title(null);
|
15 |
+
$current_tab = '';
|
|
|
16 |
?>
|
17 |
<div id="seopress-tabs" class="wrap">
|
18 |
<?php
|
36 |
echo '<a id="' . $tab_key . '-tab" class="nav-tab" href="?page=seopress-import-export#tab=' . $tab_key . '">' . $tab_caption . '</a>';
|
37 |
}
|
38 |
echo '</div>'; ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
|
40 |
+
<?php if ( is_plugin_active('wp-seopress-pro/seopress-pro.php') && version_compare(SEOPRESS_PRO_VERSION, '6.1', '>=')) { ?>
|
41 |
+
<div class="seopress-tab <?php if ('tab_seopress_tool_data' == $current_tab) { echo 'active'; } ?>" id="tab_seopress_tool_data">
|
42 |
+
<?php include_once SEOPRESS_PRO_PLUGIN_DIR_PATH . '/inc/admin/import/tools.php'; ?>
|
43 |
+
</div>
|
44 |
+
<?php } elseif (is_plugin_active('wp-seopress-pro/seopress-pro.php')) { ?>
|
45 |
+
<div class="seopress-tab <?php if ('tab_seopress_tool_data' == $current_tab) { echo 'active'; } ?>" id="tab_seopress_tool_data">
|
46 |
+
<div class="seopress-notice">
|
47 |
+
<p><?php _e('Looking for the CSV import / export tool? Please <strong>update SEOPress PRO</strong> to version 6.1.','wp-seopress'); ?></p>
|
48 |
+
</div>
|
49 |
+
</div>
|
50 |
<?php } ?>
|
51 |
+
|
52 |
<div class="seopress-tab <?php if ('tab_seopress_tool_settings' == $current_tab) {
|
53 |
echo 'active';
|
54 |
} ?>" id="tab_seopress_tool_settings">
|
128 |
'platinum-seo' => 'Platinum SEO Pack',
|
129 |
'smart-crawl' => 'SmartCrawl',
|
130 |
'seopressor' => 'SEOPressor',
|
131 |
+
'slim-seo' => 'Slim SEO'
|
132 |
];
|
133 |
|
134 |
echo '<p>
|
@@ -0,0 +1,111 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
defined('ABSPATH') or exit('Please don’t call the plugin directly. Thanks :)');
|
4 |
+
|
5 |
+
///////////////////////////////////////////////////////////////////////////////////////////////////
|
6 |
+
//Slim SEO migration
|
7 |
+
///////////////////////////////////////////////////////////////////////////////////////////////////
|
8 |
+
function seopress_slim_seo_migration() {
|
9 |
+
check_ajax_referer('seopress_slim_seo_migrate_nonce', $_POST['_ajax_nonce'], true);
|
10 |
+
|
11 |
+
if (current_user_can(seopress_capability('manage_options', 'migration')) && is_admin()) {
|
12 |
+
if (isset($_POST['offset']) && isset($_POST['offset'])) {
|
13 |
+
$offset = absint($_POST['offset']);
|
14 |
+
}
|
15 |
+
|
16 |
+
global $wpdb;
|
17 |
+
$total_count_posts = (int) $wpdb->get_var("SELECT count(*) FROM {$wpdb->posts}");
|
18 |
+
$total_count_terms = (int) $wpdb->get_var("SELECT count(*) FROM {$wpdb->terms}");
|
19 |
+
|
20 |
+
$increment = 200;
|
21 |
+
global $post;
|
22 |
+
|
23 |
+
if ($offset > $total_count_posts) {
|
24 |
+
wp_reset_query();
|
25 |
+
$count_items = $total_count_posts;
|
26 |
+
|
27 |
+
$args = [
|
28 |
+
//'number' => $increment,
|
29 |
+
'hide_empty' => false,
|
30 |
+
//'offset' => $offset,
|
31 |
+
'fields' => 'ids',
|
32 |
+
];
|
33 |
+
$slim_seo_query_terms = get_terms($args);
|
34 |
+
|
35 |
+
if ($slim_seo_query_terms) {
|
36 |
+
foreach ($slim_seo_query_terms as $term_id) {
|
37 |
+
if ('' != get_term_meta($term_id, 'slim_seo', true)) {
|
38 |
+
$term_settings = get_term_meta($term_id, 'slim_seo', true);
|
39 |
+
|
40 |
+
if ( ! empty($term_settings['title'])) { //Import title tag
|
41 |
+
update_term_meta($term_id, '_seopress_titles_title', $term_settings['title']);
|
42 |
+
}
|
43 |
+
if ( ! empty($term_settings['description'])) { //Import meta desc
|
44 |
+
update_term_meta($term_id, '_seopress_titles_desc', $term_settings['description']);
|
45 |
+
}
|
46 |
+
if ( ! empty($term_settings['noindex'])) { //Import Robots NoIndex
|
47 |
+
update_term_meta($term_id, '_seopress_robots_index', 'yes');
|
48 |
+
}
|
49 |
+
if ( ! empty($term_settings['facebook_image'])) { //Import FB image
|
50 |
+
update_term_meta($term_id, '_seopress_social_fb_img', $term_settings['facebook_image']);
|
51 |
+
}
|
52 |
+
if ( ! empty($term_settings['twitter_image'])) { //Import Tw image
|
53 |
+
update_term_meta($term_id, '_seopress_social_twitter_img', $term_settings['twitter_image']);
|
54 |
+
}
|
55 |
+
}
|
56 |
+
}
|
57 |
+
}
|
58 |
+
$offset = 'done';
|
59 |
+
wp_reset_query();
|
60 |
+
} else {
|
61 |
+
$args = [
|
62 |
+
'posts_per_page' => $increment,
|
63 |
+
'post_type' => 'any',
|
64 |
+
'post_status' => 'any',
|
65 |
+
'offset' => $offset,
|
66 |
+
];
|
67 |
+
|
68 |
+
$slim_seo_query = get_posts($args);
|
69 |
+
|
70 |
+
if ($slim_seo_query) {
|
71 |
+
foreach ($slim_seo_query as $post) {
|
72 |
+
if ('' != get_post_meta($post->ID, 'slim_seo', true)) {
|
73 |
+
$post_settings = get_post_meta($post->ID, 'slim_seo', true);
|
74 |
+
|
75 |
+
if ( ! empty($post_settings['title'])) { //Import title tag
|
76 |
+
update_post_meta($post->ID, '_seopress_titles_title', $post_settings['title']);
|
77 |
+
}
|
78 |
+
if ( ! empty($post_settings['description'])) { //Import meta desc
|
79 |
+
update_post_meta($post->ID, '_seopress_titles_desc', $post_settings['description']);
|
80 |
+
}
|
81 |
+
if ( ! empty($post_settings['noindex'])) { //Import Robots NoIndex
|
82 |
+
update_post_meta($post->ID, '_seopress_robots_index', 'yes');
|
83 |
+
}
|
84 |
+
if ( ! empty($post_settings['facebook_image'])) { //Import FB image
|
85 |
+
update_post_meta($post->ID, '_seopress_social_fb_img', $post_settings['facebook_image']);
|
86 |
+
}
|
87 |
+
if ( ! empty($post_settings['twitter_image'])) { //Import Tw image
|
88 |
+
update_post_meta($post->ID, '_seopress_social_twitter_img', $post_settings['twitter_image']);
|
89 |
+
}
|
90 |
+
}
|
91 |
+
}
|
92 |
+
}
|
93 |
+
$offset += $increment;
|
94 |
+
|
95 |
+
if ($offset >= $total_count_posts) {
|
96 |
+
$count_items = $total_count_posts;
|
97 |
+
} else {
|
98 |
+
$count_items = $offset;
|
99 |
+
}
|
100 |
+
}
|
101 |
+
$data = [];
|
102 |
+
|
103 |
+
$data['count'] = $count_items;
|
104 |
+
$data['total'] = $total_count_posts + $total_count_terms;
|
105 |
+
|
106 |
+
$data['offset'] = $offset;
|
107 |
+
wp_send_json_success($data);
|
108 |
+
exit();
|
109 |
+
}
|
110 |
+
}
|
111 |
+
add_action('wp_ajax_seopress_slim_seo_migration', 'seopress_slim_seo_migration');
|
@@ -148,7 +148,7 @@ function seopress_do_real_preview()
|
|
148 |
add_filter('run_wptexturize', '__return_false');
|
149 |
|
150 |
//Get post content (used for Words counter)
|
151 |
-
$seopress_get_the_content =
|
152 |
$seopress_get_the_content = apply_filters('seopress_dom_analysis_get_post_content', $seopress_get_the_content);
|
153 |
|
154 |
//Cornerstone compatibility
|
@@ -207,14 +207,8 @@ function seopress_do_real_preview()
|
|
207 |
|
208 |
$seopress_analysis_target_kw = apply_filters( 'seopress_content_analysis_target_keywords', $seopress_analysis_target_kw, $seopress_get_the_id );
|
209 |
|
210 |
-
//Manage keywords with special characters
|
211 |
-
foreach ($seopress_analysis_target_kw as $key => $kw) {
|
212 |
-
$kw = str_replace('-', ' ', $kw); //remove dashes
|
213 |
-
$seopress_analysis_target_kw[] = htmlspecialchars_decode($kw, ENT_QUOTES);
|
214 |
-
}
|
215 |
|
216 |
-
|
217 |
-
$seopress_analysis_target_kw = array_unique($seopress_analysis_target_kw);
|
218 |
}
|
219 |
|
220 |
$xpath = new DOMXPath($dom);
|
@@ -814,6 +808,7 @@ add_action('wp_ajax_seopress_video_xml_sitemap_regenerate', 'seopress_video_xml_
|
|
814 |
|
815 |
require_once __DIR__ . '/ajax-migrate/smart-crawl.php';
|
816 |
require_once __DIR__ . '/ajax-migrate/seopressor.php';
|
|
|
817 |
require_once __DIR__ . '/ajax-migrate/platinum.php';
|
818 |
require_once __DIR__ . '/ajax-migrate/wpseo.php';
|
819 |
require_once __DIR__ . '/ajax-migrate/premium-seo-pack.php';
|
148 |
add_filter('run_wptexturize', '__return_false');
|
149 |
|
150 |
//Get post content (used for Words counter)
|
151 |
+
$seopress_get_the_content = get_post_field('post_content', $seopress_get_the_id);
|
152 |
$seopress_get_the_content = apply_filters('seopress_dom_analysis_get_post_content', $seopress_get_the_content);
|
153 |
|
154 |
//Cornerstone compatibility
|
207 |
|
208 |
$seopress_analysis_target_kw = apply_filters( 'seopress_content_analysis_target_keywords', $seopress_analysis_target_kw, $seopress_get_the_id );
|
209 |
|
|
|
|
|
|
|
|
|
|
|
210 |
|
211 |
+
$data['target_kws_count'] = seopress_get_service('CountTargetKeywordsUse')->getCountByKeywords($seopress_analysis_target_kw, $seopress_get_the_id);
|
|
|
212 |
}
|
213 |
|
214 |
$xpath = new DOMXPath($dom);
|
808 |
|
809 |
require_once __DIR__ . '/ajax-migrate/smart-crawl.php';
|
810 |
require_once __DIR__ . '/ajax-migrate/seopressor.php';
|
811 |
+
require_once __DIR__ . '/ajax-migrate/slim-seo.php';
|
812 |
require_once __DIR__ . '/ajax-migrate/platinum.php';
|
813 |
require_once __DIR__ . '/ajax-migrate/wpseo.php';
|
814 |
require_once __DIR__ . '/ajax-migrate/premium-seo-pack.php';
|
@@ -8,21 +8,6 @@
|
|
8 |
if (defined('SEOPRESS_WL_ADMIN_HEADER') && SEOPRESS_WL_ADMIN_HEADER === false) {
|
9 |
//do nothing
|
10 |
} else {
|
11 |
-
$sp_versions = get_option('seopress_versions');
|
12 |
-
if (isset($sp_versions['pro']) && version_compare($sp_versions['pro'], '5.7', '<')) {
|
13 |
-
function seopress_google_analytics_dashboard_widget_option() {
|
14 |
-
$seopress_google_analytics_dashboard_widget_option = get_option('seopress_google_analytics_option_name');
|
15 |
-
if ( ! empty($seopress_google_analytics_dashboard_widget_option)) {
|
16 |
-
foreach ($seopress_google_analytics_dashboard_widget_option as $key => $seopress_google_analytics_dashboard_widget_value) {
|
17 |
-
$options[$key] = $seopress_google_analytics_dashboard_widget_value;
|
18 |
-
}
|
19 |
-
if (isset($seopress_google_analytics_dashboard_widget_option['seopress_google_analytics_dashboard_widget'])) {
|
20 |
-
return $seopress_google_analytics_dashboard_widget_option['seopress_google_analytics_dashboard_widget'];
|
21 |
-
}
|
22 |
-
}
|
23 |
-
}
|
24 |
-
}
|
25 |
-
|
26 |
function seopress_get_hidden_notices_insights_option()
|
27 |
{
|
28 |
$seopress_get_hidden_notices_insights_option = get_option('seopress_notices');
|
@@ -66,13 +51,24 @@
|
|
66 |
<?php
|
67 |
$dashboard_settings_tabs = [
|
68 |
'tab_seopress_analytics' => __('Google Analytics', 'wp-seopress'),
|
|
|
69 |
'tab_seopress_ps' => __('PageSpeed', 'wp-seopress'),
|
70 |
-
'tab_seopress_seo_tools' => __('SEO Tools', 'wp-seopress'),
|
71 |
];
|
72 |
|
73 |
-
|
|
|
74 |
unset($dashboard_settings_tabs['tab_seopress_analytics']);
|
75 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
?>
|
77 |
|
78 |
<div class="nav-tab-wrapper">
|
@@ -102,63 +98,23 @@
|
|
102 |
|
103 |
<div class="wrap-seopress-tab-content">
|
104 |
<?php if (is_plugin_active('wp-seopress-pro/seopress-pro.php') && seopress_get_toggle_option('google-analytics')) { ?>
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
if (! empty($stats['sessions'])) {
|
112 |
-
$html[__('Sessions', 'wp-seopress')] = $stats['sessions'];
|
113 |
-
}
|
114 |
-
if (! empty($stats['users'])) {
|
115 |
-
$html[__('Users', 'wp-seopress')] = $stats['users'];
|
116 |
-
}
|
117 |
-
if (! empty($stats['pageviews'])) {
|
118 |
-
$html[__('Page Views', 'wp-seopress')] = $stats['pageviews'];
|
119 |
-
}
|
120 |
-
if (! empty($stats['pageviewsPerSession'])) {
|
121 |
-
$html[__('Page view / session', 'wp-seopress')] = $stats['pageviewsPerSession'];
|
122 |
-
}
|
123 |
-
if (! empty($stats['avgSessionDuration'])) {
|
124 |
-
$html[__('Average session duration', 'wp-seopress')] = $stats['avgSessionDuration'];
|
125 |
-
}
|
126 |
-
if (! empty($stats['bounceRate'])) {
|
127 |
-
$html[__('Bounce rate', 'wp-seopress')] = $stats['bounceRate'];
|
128 |
-
}
|
129 |
-
if (! empty($stats['percentNewSessions'])) {
|
130 |
-
$html[__('New sessions', 'wp-seopress')] = $stats['percentNewSessions'];
|
131 |
-
} ?>
|
132 |
-
|
133 |
-
<div class="seopress-summary-items">
|
134 |
-
<?php if (! empty($html)) { ?>
|
135 |
-
<?php foreach ($html as $key => $value) { ?>
|
136 |
-
<div class="seopress-summary-item">
|
137 |
-
<div class="seopress-summary-item-label">
|
138 |
-
<?php echo $key; ?>
|
139 |
-
</div>
|
140 |
-
<div class="seopress-summary-item-data">
|
141 |
-
<?php echo $value; ?>
|
142 |
-
</div>
|
143 |
-
</div>
|
144 |
-
<?php } ?>
|
145 |
-
<?php } else { ?>
|
146 |
-
<p class="inside"><?php _e('No stats found', 'wp-seopress'); ?></p>
|
147 |
-
<?php } ?>
|
148 |
</div>
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
</div>
|
159 |
</div>
|
160 |
-
<?php } ?>
|
161 |
-
</div>
|
162 |
<?php } ?>
|
163 |
|
164 |
<div id="tab_seopress_ps" class="seopress-tab seopress-page-speed inside<?php if ('tab_seopress_ps' == $current_tab) {
|
@@ -208,86 +164,6 @@
|
|
208 |
</a>
|
209 |
</p>
|
210 |
</div>
|
211 |
-
|
212 |
-
<?php if (is_plugin_active('wp-seopress-pro/seopress-pro.php') ) { ?>
|
213 |
-
<div id="tab_seopress_seo_tools" class="seopress-tab seopress-useful-tools inside <?php if ('tab_seopress_seo_tools' == $current_tab) {
|
214 |
-
echo 'active';
|
215 |
-
} ?>">
|
216 |
-
|
217 |
-
<!-- Reverse -->
|
218 |
-
<div class="widget widget-reverse">
|
219 |
-
<h3 class="widget-title"><?php _e('Check websites setup on your server', 'wp-seopress'); ?>
|
220 |
-
</h3>
|
221 |
-
|
222 |
-
<p>
|
223 |
-
<?php
|
224 |
-
if ('' != get_transient('seopress_results_reverse')) {
|
225 |
-
$seopress_results_reverse = (array) json_decode(get_transient('seopress_results_reverse'));
|
226 |
-
|
227 |
-
//Init
|
228 |
-
$seopress_results_reverse_remote_ip_address = __('Not found', 'wp-seopress');
|
229 |
-
if (isset($seopress_results_reverse['remoteIpAddress'])) {
|
230 |
-
$seopress_results_reverse_remote_ip_address = $seopress_results_reverse['remoteIpAddress'];
|
231 |
-
}
|
232 |
-
|
233 |
-
$seopress_results_reverse_last_scrape = __('No scrape.', 'wp-seopress');
|
234 |
-
if (isset($seopress_results_reverse['lastScrape'])) {
|
235 |
-
$seopress_results_reverse_last_scrape = $seopress_results_reverse['lastScrape'];
|
236 |
-
}
|
237 |
-
|
238 |
-
$seopress_results_reverse_domain_count = __('No domain found.', 'wp-seopress');
|
239 |
-
if (isset($seopress_results_reverse['domainCount'])) {
|
240 |
-
$seopress_results_reverse_domain_count = $seopress_results_reverse['domainCount'];
|
241 |
-
}
|
242 |
-
|
243 |
-
$seopress_results_reverse_domain_array = '';
|
244 |
-
if (isset($seopress_results_reverse['domainArray'])) {
|
245 |
-
$seopress_results_reverse_domain_array = $seopress_results_reverse['domainArray'];
|
246 |
-
} ?>
|
247 |
-
<p class="remote-ip">
|
248 |
-
<strong>
|
249 |
-
<?php _e('Server IP Address: ', 'wp-seopress'); ?>
|
250 |
-
</strong>
|
251 |
-
<?php echo $seopress_results_reverse_remote_ip_address; ?>
|
252 |
-
</p>
|
253 |
-
|
254 |
-
<p class="last-scrape">
|
255 |
-
<strong>
|
256 |
-
<?php _e('Last scrape: ', 'wp-seopress'); ?>
|
257 |
-
</strong>
|
258 |
-
<?php echo $seopress_results_reverse_last_scrape; ?>
|
259 |
-
</p>
|
260 |
-
|
261 |
-
<p class="domain-count">
|
262 |
-
<strong>
|
263 |
-
<?php _e('Number of websites on your server: ', 'wp-seopress'); ?>
|
264 |
-
</strong>
|
265 |
-
<?php echo $seopress_results_reverse_domain_count; ?>
|
266 |
-
</p>
|
267 |
-
<?php if ('' != $seopress_results_reverse_domain_array) { ?>
|
268 |
-
<ul>
|
269 |
-
<?php foreach ($seopress_results_reverse_domain_array as $key => $value) { ?>
|
270 |
-
<li>
|
271 |
-
<span class="dashicons dashicons-minus"></span>
|
272 |
-
<a href="//' . preg_replace('#^https?://#', '', $value[0]) . '" target="_blank">
|
273 |
-
<?php echo $value[0]; ?>
|
274 |
-
</a>
|
275 |
-
<span class="dashicons dashicons-external"></span>
|
276 |
-
</li>
|
277 |
-
<?php } ?>
|
278 |
-
</ul>
|
279 |
-
<?php }
|
280 |
-
}
|
281 |
-
?>
|
282 |
-
|
283 |
-
<button id="seopress-reverse-submit" type="button" class="btn btnSecondary" name="submit">
|
284 |
-
<?php _e('Get list', 'wp-seopress'); ?>
|
285 |
-
</button>
|
286 |
-
|
287 |
-
<span id="spinner-reverse" class="spinner"></span>
|
288 |
-
</div>
|
289 |
-
</div>
|
290 |
-
<?php } ?>
|
291 |
</div>
|
292 |
</div>
|
293 |
</div>
|
8 |
if (defined('SEOPRESS_WL_ADMIN_HEADER') && SEOPRESS_WL_ADMIN_HEADER === false) {
|
9 |
//do nothing
|
10 |
} else {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
function seopress_get_hidden_notices_insights_option()
|
12 |
{
|
13 |
$seopress_get_hidden_notices_insights_option = get_option('seopress_notices');
|
51 |
<?php
|
52 |
$dashboard_settings_tabs = [
|
53 |
'tab_seopress_analytics' => __('Google Analytics', 'wp-seopress'),
|
54 |
+
'tab_seopress_matomo' => __('Matomo Analytics', 'wp-seopress'),
|
55 |
'tab_seopress_ps' => __('PageSpeed', 'wp-seopress'),
|
|
|
56 |
];
|
57 |
|
58 |
+
//GA
|
59 |
+
if (seopress_get_toggle_option('google-analytics') !=='1' || (function_exists('seopress_google_analytics_dashboard_widget_option') && seopress_google_analytics_dashboard_widget_option() === '1')) {
|
60 |
unset($dashboard_settings_tabs['tab_seopress_analytics']);
|
61 |
}
|
62 |
+
|
63 |
+
//Matomo
|
64 |
+
if (seopress_get_toggle_option('google-analytics') !=='1' || (function_exists('seopress_google_analytics_matomo_dashboard_widget_option') && '1' === seopress_google_analytics_matomo_dashboard_widget_option())) {
|
65 |
+
unset($dashboard_settings_tabs['tab_seopress_matomo']);
|
66 |
+
}
|
67 |
+
|
68 |
+
$matomoID = seopress_get_service('GoogleAnalyticsOption')->getMatomoId() ? seopress_get_service('GoogleAnalyticsOption')->getMatomoId() : null;
|
69 |
+
if (empty($matomoID)) {
|
70 |
+
unset($dashboard_settings_tabs['tab_seopress_matomo']);
|
71 |
+
}
|
72 |
?>
|
73 |
|
74 |
<div class="nav-tab-wrapper">
|
98 |
|
99 |
<div class="wrap-seopress-tab-content">
|
100 |
<?php if (is_plugin_active('wp-seopress-pro/seopress-pro.php') && seopress_get_toggle_option('google-analytics')) { ?>
|
101 |
+
<div id="tab_seopress_analytics" class="seopress-tab seopress-analytics <?php if ('tab_seopress_analytics' == $current_tab) { echo 'active'; } ?>">
|
102 |
+
<?php if (function_exists('seopress_google_analytics_dashboard_widget_option') && '1' !== seopress_google_analytics_dashboard_widget_option()) {
|
103 |
+
if (function_exists('seopress_ga_dashboard_widget_display')) {
|
104 |
+
seopress_ga_dashboard_widget_display();
|
105 |
+
}
|
106 |
+
} ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
</div>
|
108 |
+
<?php } ?>
|
109 |
+
|
110 |
+
<?php if (is_plugin_active('wp-seopress-pro/seopress-pro.php') && seopress_get_toggle_option('google-analytics')) { ?>
|
111 |
+
<div id="tab_seopress_matomo" class="seopress-tab seopress-analytics <?php if ('tab_seopress_matomo' == $current_tab) { echo 'active'; } ?>">
|
112 |
+
<?php if (function_exists('seopress_google_analytics_matomo_dashboard_widget_option') && '1' !== seopress_google_analytics_matomo_dashboard_widget_option() && !empty($matomoID)) {
|
113 |
+
if (function_exists('seopress_matomo_dashboard_widget_display')) {
|
114 |
+
seopress_matomo_dashboard_widget_display();
|
115 |
+
}
|
116 |
+
} ?>
|
|
|
117 |
</div>
|
|
|
|
|
118 |
<?php } ?>
|
119 |
|
120 |
<div id="tab_seopress_ps" class="seopress-tab seopress-page-speed inside<?php if ('tab_seopress_ps' == $current_tab) {
|
164 |
</a>
|
165 |
</p>
|
166 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
</div>
|
168 |
</div>
|
169 |
</div>
|
@@ -297,6 +297,7 @@
|
|
297 |
'platinum-seo-pack/platinum-seo-pack.php' => 'Platinum SEO Pack',
|
298 |
'smartcrawl-seo/wpmu-dev-seo.php' => 'SmartCrawl',
|
299 |
'seo-pressor/seo-pressor.php' => 'SEOPressor',
|
|
|
300 |
];
|
301 |
|
302 |
foreach ($seo_plugins as $key => $value) {
|
297 |
'platinum-seo-pack/platinum-seo-pack.php' => 'Platinum SEO Pack',
|
298 |
'smartcrawl-seo/wpmu-dev-seo.php' => 'SmartCrawl',
|
299 |
'seo-pressor/seo-pressor.php' => 'SEOPressor',
|
300 |
+
'slim-seo/slim-seo.php' => 'Slim SEO'
|
301 |
];
|
302 |
|
303 |
foreach ($seo_plugins as $key => $value) {
|
@@ -13,9 +13,14 @@ function seopress_advanced_advanced_replytocom_callback() {
|
|
13 |
checked="yes"
|
14 |
<?php } ?>
|
15 |
value="1"/>
|
16 |
-
|
|
|
17 |
</label>
|
18 |
|
|
|
|
|
|
|
|
|
19 |
<?php if (isset($options['seopress_advanced_advanced_replytocom'])) {
|
20 |
esc_attr($options['seopress_advanced_advanced_replytocom']);
|
21 |
}
|
@@ -169,6 +174,8 @@ function seopress_advanced_advanced_wp_generator_callback() {
|
|
169 |
<?php _e('Remove WordPress meta generator in source code', 'wp-seopress'); ?>
|
170 |
</label>
|
171 |
|
|
|
|
|
172 |
<?php if (isset($options['seopress_advanced_advanced_wp_generator'])) {
|
173 |
esc_attr($options['seopress_advanced_advanced_wp_generator']);
|
174 |
}
|
@@ -246,9 +253,12 @@ function seopress_advanced_advanced_comments_form_link_callback() {
|
|
246 |
<?php } ?>
|
247 |
value="1"/>
|
248 |
|
249 |
-
|
|
|
250 |
</label>
|
251 |
|
|
|
|
|
252 |
<?php if (isset($options['seopress_advanced_advanced_comments_form_link'])) {
|
253 |
esc_attr($options['seopress_advanced_advanced_comments_form_link']);
|
254 |
}
|
@@ -266,12 +276,11 @@ function seopress_advanced_advanced_wp_shortlink_callback() {
|
|
266 |
<?php } ?>
|
267 |
value="1"/>
|
268 |
|
269 |
-
<?php _e('Remove WordPress shortlink meta tag in source code
|
270 |
-
<em>
|
271 |
-
<?php echo esc_attr('<link rel="shortlink" href="https://www.example.com/"/>'); ?>
|
272 |
-
</em>)
|
273 |
</label>
|
274 |
|
|
|
|
|
275 |
<?php if (isset($options['seopress_advanced_advanced_wp_shortlink'])) {
|
276 |
esc_attr($options['seopress_advanced_advanced_wp_shortlink']);
|
277 |
}
|
@@ -289,12 +298,11 @@ function seopress_advanced_advanced_wp_wlw_callback() {
|
|
289 |
<?php } ?>
|
290 |
value="1"/>
|
291 |
|
292 |
-
<?php _e('Remove Windows Live Writer meta tag in source code
|
293 |
-
<em>
|
294 |
-
<?php echo esc_attr('<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.example.com/wp-includes/wlwmanifest.xml" />'); ?>
|
295 |
-
</em>)
|
296 |
</label>
|
297 |
|
|
|
|
|
298 |
<?php if (isset($options['seopress_advanced_advanced_wp_wlw'])) {
|
299 |
esc_attr($options['seopress_advanced_advanced_wp_wlw']);
|
300 |
}
|
@@ -312,16 +320,15 @@ function seopress_advanced_advanced_wp_rsd_callback() {
|
|
312 |
<?php } ?>
|
313 |
value="1"/>
|
314 |
|
315 |
-
<?php _e('Remove Really Simple Discovery meta tag in source code
|
316 |
-
<em>
|
317 |
-
<?php echo esc_attr('<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.example.com/xmlrpc.php?rsd" />'); ?>
|
318 |
-
</em>)
|
319 |
</label>
|
320 |
|
321 |
<p class="description">
|
322 |
<?php _e('WordPress Site Health feature will return a HTTPS warning if you enable this option. This is a false positive of course.', 'wp-seopress'); ?>
|
323 |
</p>
|
324 |
|
|
|
|
|
325 |
<?php if (isset($options['seopress_advanced_advanced_wp_rsd'])) {
|
326 |
esc_attr($options['seopress_advanced_advanced_wp_rsd']);
|
327 |
}
|
13 |
checked="yes"
|
14 |
<?php } ?>
|
15 |
value="1"/>
|
16 |
+
|
17 |
+
<?php _e('Remove ?replytocom link in source code and replace it with a simple anchor', 'wp-seopress'); ?>
|
18 |
</label>
|
19 |
|
20 |
+
<p class="description">
|
21 |
+
<?php _e( 'e.g. "https://www.example.com/my-blog-post/?replytocom=10#respond" => "#comment-10"', 'wp-seopress' ); ?>
|
22 |
+
</p>
|
23 |
+
|
24 |
<?php if (isset($options['seopress_advanced_advanced_replytocom'])) {
|
25 |
esc_attr($options['seopress_advanced_advanced_replytocom']);
|
26 |
}
|
174 |
<?php _e('Remove WordPress meta generator in source code', 'wp-seopress'); ?>
|
175 |
</label>
|
176 |
|
177 |
+
<pre><?php esc_attr_e('<meta name="generator" content="WordPress 6.0.3" />', 'wp-seopress'); ?></pre>
|
178 |
+
|
179 |
<?php if (isset($options['seopress_advanced_advanced_wp_generator'])) {
|
180 |
esc_attr($options['seopress_advanced_advanced_wp_generator']);
|
181 |
}
|
253 |
<?php } ?>
|
254 |
value="1"/>
|
255 |
|
256 |
+
<?php _e('Prevent search engines to follow / index the link to the comments form', 'wp-seopress'); ?>
|
257 |
+
|
258 |
</label>
|
259 |
|
260 |
+
<pre>https://www.example.com/my-blog-post/#respond</pre>
|
261 |
+
|
262 |
<?php if (isset($options['seopress_advanced_advanced_comments_form_link'])) {
|
263 |
esc_attr($options['seopress_advanced_advanced_comments_form_link']);
|
264 |
}
|
276 |
<?php } ?>
|
277 |
value="1"/>
|
278 |
|
279 |
+
<?php _e('Remove WordPress shortlink meta tag in source code', 'wp-seopress'); ?>
|
|
|
|
|
|
|
280 |
</label>
|
281 |
|
282 |
+
<pre><?php esc_attr_e('<link rel="shortlink" href="https://www.example.com/"/>'); ?></pre>
|
283 |
+
|
284 |
<?php if (isset($options['seopress_advanced_advanced_wp_shortlink'])) {
|
285 |
esc_attr($options['seopress_advanced_advanced_wp_shortlink']);
|
286 |
}
|
298 |
<?php } ?>
|
299 |
value="1"/>
|
300 |
|
301 |
+
<?php _e('Remove Windows Live Writer meta tag in source code', 'wp-seopress'); ?>
|
|
|
|
|
|
|
302 |
</label>
|
303 |
|
304 |
+
<pre><?php esc_attr_e('<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.example.com/wp-includes/wlwmanifest.xml" />'); ?></pre>
|
305 |
+
|
306 |
<?php if (isset($options['seopress_advanced_advanced_wp_wlw'])) {
|
307 |
esc_attr($options['seopress_advanced_advanced_wp_wlw']);
|
308 |
}
|
320 |
<?php } ?>
|
321 |
value="1"/>
|
322 |
|
323 |
+
<?php _e('Remove Really Simple Discovery meta tag in source code', 'wp-seopress'); ?>
|
|
|
|
|
|
|
324 |
</label>
|
325 |
|
326 |
<p class="description">
|
327 |
<?php _e('WordPress Site Health feature will return a HTTPS warning if you enable this option. This is a false positive of course.', 'wp-seopress'); ?>
|
328 |
</p>
|
329 |
|
330 |
+
<pre><?php esc_attr_e('<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.example.com/xmlrpc.php?rsd" />'); ?></pre>
|
331 |
+
|
332 |
<?php if (isset($options['seopress_advanced_advanced_wp_rsd'])) {
|
333 |
esc_attr($options['seopress_advanced_advanced_wp_rsd']);
|
334 |
}
|
@@ -1086,7 +1086,7 @@ function seopress_google_analytics_matomo_id_callback() {
|
|
1086 |
. '" value="%s" aria-label="' . __('Matomo URL (Cloud or Self-hosted)', 'wp-seopress') . '"/>', esc_html($check)); ?>
|
1087 |
|
1088 |
<p class="description">
|
1089 |
-
<?php _e('Enter only the <strong>host</strong> like this example.matomo.cloud (Cloud) or matomo.example.com (self-hosted).'); ?>
|
1090 |
</p>
|
1091 |
|
1092 |
<?php
|
@@ -1269,8 +1269,11 @@ function seopress_google_analytics_matomo_link_tracking_callback() {
|
|
1269 |
</label>
|
1270 |
|
1271 |
<p class="description">
|
1272 |
-
<?php _e('By default, any file ending with one of these extensions will be considered a "download" in the Matomo interface:
|
1273 |
</p>
|
|
|
|
|
|
|
1274 |
<?php
|
1275 |
if (isset($options['seopress_google_analytics_matomo_link_tracking'])) {
|
1276 |
esc_attr($options['seopress_google_analytics_matomo_link_tracking']);
|
1086 |
. '" value="%s" aria-label="' . __('Matomo URL (Cloud or Self-hosted)', 'wp-seopress') . '"/>', esc_html($check)); ?>
|
1087 |
|
1088 |
<p class="description">
|
1089 |
+
<?php _e('Enter only the <strong>host without the quotes</strong> like this <strong>"example.matomo.cloud"</strong> (Cloud) or <strong>"matomo.example.com"</strong> (self-hosted).'); ?>
|
1090 |
</p>
|
1091 |
|
1092 |
<?php
|
1269 |
</label>
|
1270 |
|
1271 |
<p class="description">
|
1272 |
+
<?php _e('By default, any file ending with one of these extensions will be considered a "download" in the Matomo interface:','wp-seopress'); ?><br>
|
1273 |
</p>
|
1274 |
+
|
1275 |
+
<pre>7z|aac|arc|arj|apk|asf|asx|avi|bin|bz|bz2|csv|deb|dmg|doc|exe|flv|gif|gz|gzip|hqx|jar|jpg|jpeg|js|mp2|mp3|mp4|mpg|mpeg|mov|movie|msi|msp|odb|odf|odg|odp|ods|odt|ogg|ogv| pdf|phps|png|ppt|qt|qtm|ra|ram|rar|rpm|sea|sit|tar|tbz|tbz2|tgz|torrent|txt|wav|wma|wmv|wpd|xls|xml|z|zip</pre>
|
1276 |
+
|
1277 |
<?php
|
1278 |
if (isset($options['seopress_google_analytics_matomo_link_tracking'])) {
|
1279 |
esc_attr($options['seopress_google_analytics_matomo_link_tracking']);
|
@@ -57,7 +57,7 @@ function seopress_advanced_advanced_clean_filename_callback() {
|
|
57 |
<?php } ?>
|
58 |
value="1"/>
|
59 |
|
60 |
-
<?php _e('When
|
61 |
</label>
|
62 |
|
63 |
<p class="description">
|
@@ -81,7 +81,7 @@ function seopress_advanced_advanced_image_auto_title_editor_callback() {
|
|
81 |
<?php } ?>
|
82 |
value="1"/>
|
83 |
|
84 |
-
<?php _e('When
|
85 |
</label>
|
86 |
|
87 |
<p class="description">
|
@@ -105,7 +105,7 @@ function seopress_advanced_advanced_image_auto_alt_editor_callback() {
|
|
105 |
<?php } ?>
|
106 |
value="1"/>
|
107 |
|
108 |
-
<?php _e('When
|
109 |
</label>
|
110 |
|
111 |
<?php if ( ! is_plugin_active('imageseo/imageseo.php')) {
|
@@ -157,7 +157,7 @@ function seopress_advanced_advanced_image_auto_caption_editor_callback() {
|
|
157 |
<?php } ?>
|
158 |
value="1"/>
|
159 |
|
160 |
-
<?php _e('When
|
161 |
</label>
|
162 |
|
163 |
<?php if (isset($options['seopress_advanced_advanced_image_auto_caption_editor'])) {
|
@@ -176,7 +176,7 @@ function seopress_advanced_advanced_image_auto_desc_editor_callback() {
|
|
176 |
<?php } ?>
|
177 |
value="1"/>
|
178 |
|
179 |
-
<?php _e('When
|
180 |
</label>
|
181 |
|
182 |
<?php if (isset($options['seopress_advanced_advanced_image_auto_desc_editor'])) {
|
57 |
<?php } ?>
|
58 |
value="1"/>
|
59 |
|
60 |
+
<?php _e('When upload a media, remove accents, spaces, capital letters... and force UTF-8 encoding', 'wp-seopress'); ?>
|
61 |
</label>
|
62 |
|
63 |
<p class="description">
|
81 |
<?php } ?>
|
82 |
value="1"/>
|
83 |
|
84 |
+
<?php _e('When uploading an image file, automatically set the title based on the filename', 'wp-seopress'); ?>
|
85 |
</label>
|
86 |
|
87 |
<p class="description">
|
105 |
<?php } ?>
|
106 |
value="1"/>
|
107 |
|
108 |
+
<?php _e('When uploading an image file, automatically set the alternative text based on the filename', 'wp-seopress'); ?>
|
109 |
</label>
|
110 |
|
111 |
<?php if ( ! is_plugin_active('imageseo/imageseo.php')) {
|
157 |
<?php } ?>
|
158 |
value="1"/>
|
159 |
|
160 |
+
<?php _e('When uploading an image file, automatically set the caption based on the filename', 'wp-seopress'); ?>
|
161 |
</label>
|
162 |
|
163 |
<?php if (isset($options['seopress_advanced_advanced_image_auto_caption_editor'])) {
|
176 |
<?php } ?>
|
177 |
value="1"/>
|
178 |
|
179 |
+
<?php _e('When uploading an image file, automatically set the description based on the filename', 'wp-seopress'); ?>
|
180 |
</label>
|
181 |
|
182 |
<?php if (isset($options['seopress_advanced_advanced_image_auto_desc_editor'])) {
|
@@ -145,19 +145,13 @@ function seopress_xml_sitemap_post_types_list_callback()
|
|
145 |
|
146 |
$check = isset($options['seopress_xml_sitemap_post_types_list']);
|
147 |
|
148 |
-
|
149 |
|
150 |
-
$
|
151 |
-
'show_ui' => true,
|
152 |
-
'public' => true,
|
153 |
-
];
|
154 |
|
155 |
-
$
|
156 |
-
$operator = 'and'; // 'and' or 'or'
|
157 |
|
158 |
-
|
159 |
-
|
160 |
-
foreach ($post_types as $seopress_cpt_key => $seopress_cpt_value) { ?>
|
161 |
<h3>
|
162 |
<?php echo $seopress_cpt_value->labels->name; ?>
|
163 |
<em><small>[<?php echo $seopress_cpt_value->name; ?>]</small></em>
|
@@ -207,14 +201,9 @@ function seopress_xml_sitemap_taxonomies_list_callback()
|
|
207 |
|
208 |
$check = isset($options['seopress_xml_sitemap_taxonomies_list']);
|
209 |
|
210 |
-
$
|
211 |
-
'show_ui' => true,
|
212 |
-
'public' => true,
|
213 |
-
];
|
214 |
|
215 |
-
$
|
216 |
-
$operator = 'and'; // 'and' or 'or'
|
217 |
-
$taxonomies = apply_filters( 'seopress_sitemaps_tax', get_taxonomies($args, $output, $operator) );
|
218 |
|
219 |
foreach ($taxonomies as $seopress_tax_key => $seopress_tax_value) { ?>
|
220 |
<h3>
|
145 |
|
146 |
$check = isset($options['seopress_xml_sitemap_post_types_list']);
|
147 |
|
148 |
+
$postTypes = seopress_get_service('WordPressData')->getPostTypes();
|
149 |
|
150 |
+
$postTypes[] = get_post_type_object('attachment');
|
|
|
|
|
|
|
151 |
|
152 |
+
$postTypes = apply_filters( 'seopress_sitemaps_cpt', $postTypes );
|
|
|
153 |
|
154 |
+
foreach ($postTypes as $seopress_cpt_key => $seopress_cpt_value) { ?>
|
|
|
|
|
155 |
<h3>
|
156 |
<?php echo $seopress_cpt_value->labels->name; ?>
|
157 |
<em><small>[<?php echo $seopress_cpt_value->name; ?>]</small></em>
|
201 |
|
202 |
$check = isset($options['seopress_xml_sitemap_taxonomies_list']);
|
203 |
|
204 |
+
$taxonomies = seopress_get_service('WordPressData')->getTaxonomies();
|
|
|
|
|
|
|
205 |
|
206 |
+
$taxonomies = apply_filters( 'seopress_sitemaps_tax', $taxonomies );
|
|
|
|
|
207 |
|
208 |
foreach ($taxonomies as $seopress_tax_key => $seopress_tax_value) { ?>
|
209 |
<h3>
|
@@ -50,6 +50,24 @@ function seopress_titles_home_site_title_callback()
|
|
50 |
<?php echo seopress_render_dyn_variables('tag-title');
|
51 |
}
|
52 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
function seopress_titles_home_site_desc_callback()
|
54 |
{
|
55 |
$options = get_option('seopress_titles_option_name');
|
50 |
<?php echo seopress_render_dyn_variables('tag-title');
|
51 |
}
|
52 |
|
53 |
+
function seopress_titles_home_site_title_alt_callback()
|
54 |
+
{
|
55 |
+
$options = get_option('seopress_titles_option_name');
|
56 |
+
$check = isset($options['seopress_titles_home_site_title_alt']) ? $options['seopress_titles_home_site_title_alt'] : null;
|
57 |
+
$docs = seopress_get_docs_links();
|
58 |
+
?>
|
59 |
+
|
60 |
+
<input type="text" id="seopress_titles_home_site_title_alt"
|
61 |
+
name="seopress_titles_option_name[seopress_titles_home_site_title_alt]"
|
62 |
+
placeholder="<?php esc_html_e('My alternative site title', 'wp-seopress'); ?>"
|
63 |
+
aria-label="<?php _e('Alternative site title', 'wp-seopress'); ?>"
|
64 |
+
value="<?php esc_html_e($check); ?>" />
|
65 |
+
|
66 |
+
<p class="description"><?php printf(__('The alternate name of the website (for example, if there\'s a commonly recognized acronym or shorter name for your site), if applicable. Make sure the name meets the <a href="%s" target="_blank">content guidelines</a>.<span class="dashicons dashicons-external"></span>','wp-seopress'), $docs['titles']['alt_title']); ?></p>
|
67 |
+
|
68 |
+
<?php
|
69 |
+
}
|
70 |
+
|
71 |
function seopress_titles_home_site_desc_callback()
|
72 |
{
|
73 |
$options = get_option('seopress_titles_option_name');
|
@@ -47,6 +47,7 @@ function seopress_get_docs_links()
|
|
47 |
'titles' => [
|
48 |
'thumbnail' => 'https://support.google.com/programmable-search/answer/1626955?hl=fr',
|
49 |
'wrong_meta' => 'https://www.seopress.org/fr/support/guides/google-utilise-une-balise-titre-meta-description-incorrecte-dans-les-resultats-de-recherche/' . $utm,
|
|
|
50 |
],
|
51 |
'sitemaps' => [
|
52 |
'error' => [
|
@@ -93,6 +94,7 @@ function seopress_get_docs_links()
|
|
93 |
'metaboxe_ca' => 'https://www.seopress.org/fr/support/hooks/filtrer-lappel-de-la-metaboxe-danalyse-de-contenu-par-types-de-contenu/' . $utm,
|
94 |
'metaboxe_data_types' => 'https://www.seopress.org/fr/support/hooks/filtrer-lappel-de-la-metaboxe-types-de-donnees-structurees-par-types-de-contenu/' . $utm,
|
95 |
'ga_widget' => 'https://www.seopress.org/fr/support/hooks/filtrer-la-capacite-du-widget-google-analytics-du-tableau-de-bord/' . $utm,
|
|
|
96 |
],
|
97 |
'google_preview' => [
|
98 |
'authentification' => 'https://www.seopress.org/fr/support/hooks/filtrer-la-requete-distante-google-snippet-preview/' . $utm,
|
@@ -182,6 +184,7 @@ function seopress_get_docs_links()
|
|
182 |
'titles' => [
|
183 |
'thumbnail' => 'https://support.google.com/programmable-search/answer/1626955?hl=en',
|
184 |
'wrong_meta' => 'https://www.seopress.org/support/guides/google-uses-the-wrong-meta-title-meta-description-in-search-results/' . $utm,
|
|
|
185 |
],
|
186 |
'sitemaps' => [
|
187 |
'error' => [
|
@@ -228,6 +231,7 @@ function seopress_get_docs_links()
|
|
228 |
'metaboxe_ca' => 'https://www.seopress.org/support/hooks/filter-content-analysis-metabox-call-by-post-type/' . $utm,
|
229 |
'metaboxe_data_types' => 'https://www.seopress.org/support/hooks/filter-structured-data-types-metabox-call-by-post-type/' . $utm,
|
230 |
'ga_widget' => 'https://www.seopress.org/support/hooks/filter-google-analytics-dashboard-widget-capability/' . $utm,
|
|
|
231 |
],
|
232 |
'google_preview' => [
|
233 |
'authentification' => 'https://www.seopress.org/support/hooks/filter-google-snippet-preview-remote-request/' . $utm,
|
47 |
'titles' => [
|
48 |
'thumbnail' => 'https://support.google.com/programmable-search/answer/1626955?hl=fr',
|
49 |
'wrong_meta' => 'https://www.seopress.org/fr/support/guides/google-utilise-une-balise-titre-meta-description-incorrecte-dans-les-resultats-de-recherche/' . $utm,
|
50 |
+
'alt_title' => 'https://developers.google.com/search/docs/appearance/site-names#content-guidelines' . $utm,
|
51 |
],
|
52 |
'sitemaps' => [
|
53 |
'error' => [
|
94 |
'metaboxe_ca' => 'https://www.seopress.org/fr/support/hooks/filtrer-lappel-de-la-metaboxe-danalyse-de-contenu-par-types-de-contenu/' . $utm,
|
95 |
'metaboxe_data_types' => 'https://www.seopress.org/fr/support/hooks/filtrer-lappel-de-la-metaboxe-types-de-donnees-structurees-par-types-de-contenu/' . $utm,
|
96 |
'ga_widget' => 'https://www.seopress.org/fr/support/hooks/filtrer-la-capacite-du-widget-google-analytics-du-tableau-de-bord/' . $utm,
|
97 |
+
'matomo_widget' => 'https://www.seopress.org/fr/support/hooks/filtrer-capacite-widget-matomo-analytics-dashboard/' . $utm,
|
98 |
],
|
99 |
'google_preview' => [
|
100 |
'authentification' => 'https://www.seopress.org/fr/support/hooks/filtrer-la-requete-distante-google-snippet-preview/' . $utm,
|
184 |
'titles' => [
|
185 |
'thumbnail' => 'https://support.google.com/programmable-search/answer/1626955?hl=en',
|
186 |
'wrong_meta' => 'https://www.seopress.org/support/guides/google-uses-the-wrong-meta-title-meta-description-in-search-results/' . $utm,
|
187 |
+
'alt_title' => 'https://developers.google.com/search/docs/appearance/site-names#content-guidelines' . $utm,
|
188 |
],
|
189 |
'sitemaps' => [
|
190 |
'error' => [
|
231 |
'metaboxe_ca' => 'https://www.seopress.org/support/hooks/filter-content-analysis-metabox-call-by-post-type/' . $utm,
|
232 |
'metaboxe_data_types' => 'https://www.seopress.org/support/hooks/filter-structured-data-types-metabox-call-by-post-type/' . $utm,
|
233 |
'ga_widget' => 'https://www.seopress.org/support/hooks/filter-google-analytics-dashboard-widget-capability/' . $utm,
|
234 |
+
'matomo_widget' => 'https://www.seopress.org/support/hooks/filter-matomo-analytics-dashboard-widget-capability/' . $utm
|
235 |
],
|
236 |
'google_preview' => [
|
237 |
'authentification' => 'https://www.seopress.org/support/hooks/filter-google-snippet-preview-remote-request/' . $utm,
|
@@ -42,30 +42,20 @@ $data_attr = seopress_metaboxes_init();
|
|
42 |
value="<?php esc_attr_e($seopress_analysis_target_kw); ?>" />
|
43 |
</p>
|
44 |
|
45 |
-
<?php
|
46 |
-
<button id="seopress_launch_analysis" type="button" class="<?php echo seopress_btn_secondary_classes(); ?>"
|
47 |
-
data_id="<?php echo get_the_ID(); ?>"
|
48 |
-
data_post_type="<?php echo get_current_screen()->post_type; ?>"><?php _e('Analyze my content', 'wp-seopress'); ?></button>
|
49 |
-
<?php } else { ?>
|
50 |
-
<button id="seopress_launch_analysis" type="button"
|
51 |
-
class="<?php echo seopress_btn_secondary_classes(); ?>"
|
52 |
-
data_id="<?php echo get_the_ID(); ?>"
|
53 |
-
data_post_type="<?php echo get_current_screen()->post_type; ?>"><?php _e('Refresh analysis', 'wp-seopress'); ?></button>
|
54 |
-
<?php }
|
55 |
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
<?php } ?>
|
66 |
|
67 |
-
<p><span class="description"><?php _e('To get the most accurate analysis, save your post first. We analyze all of your source code as a search engine would.', 'wp-seopress'); ?></span>
|
68 |
-
</p>
|
69 |
</div>
|
70 |
<?php if (is_plugin_active('wp-seopress-pro/seopress-pro.php')) { ?>
|
71 |
<div class="col-right">
|
@@ -112,7 +102,41 @@ $data_attr = seopress_metaboxes_init();
|
|
112 |
</script>
|
113 |
</div>
|
114 |
<?php }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
116 |
if (function_exists('seopress_get_service')) {
|
117 |
$analyzes = seopress_get_service('GetContentAnalysis')->getAnalyzes($post);
|
118 |
seopress_get_service('RenderContentAnalysis')->render($analyzes, $seopress_analysis_data);
|
42 |
value="<?php esc_attr_e($seopress_analysis_target_kw); ?>" />
|
43 |
</p>
|
44 |
|
45 |
+
<button id="seopress_launch_analysis" type="button" class="<?php echo seopress_btn_secondary_classes(); ?>" data_id="<?php echo get_the_ID(); ?>" data_post_type="<?php echo get_current_screen()->post_type; ?>"><?php _e('Refresh analysis', 'wp-seopress'); ?></button>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
|
47 |
+
<?php if (is_plugin_active('wp-seopress-insights/seopress-insights.php')) { ?>
|
48 |
+
<button id="seopress_add_to_insights" type="button"
|
49 |
+
class="<?php echo seopress_btn_secondary_classes(); ?>"
|
50 |
+
data_id="<?php echo get_the_ID(); ?>"
|
51 |
+
data_post_type="<?php echo get_current_screen()->post_type; ?>">
|
52 |
+
<?php _e('Track with Insights', 'wp-seopress'); ?>
|
53 |
+
</button>
|
54 |
+
<div id="seopress_add_to_insights_status"></div>
|
55 |
+
<span class="spinner"></span>
|
56 |
<?php } ?>
|
57 |
|
58 |
+
<p><span class="description"><?php _e('To get the most accurate analysis, save your post first. We analyze all of your source code as a search engine would.', 'wp-seopress'); ?></span></p>
|
|
|
59 |
</div>
|
60 |
<?php if (is_plugin_active('wp-seopress-pro/seopress-pro.php')) { ?>
|
61 |
<div class="col-right">
|
102 |
</script>
|
103 |
</div>
|
104 |
<?php }
|
105 |
+
?>
|
106 |
+
<div id="seopress-wrap-notice-target-kw" style="clear:both">
|
107 |
+
<?php
|
108 |
+
$html = '';
|
109 |
+
$i = 0;
|
110 |
+
if (!empty($seopress_analysis_data['target_kws_count'])) {
|
111 |
+
foreach($seopress_analysis_data['target_kws_count'] as $kw => $item) {
|
112 |
+
if(!is_array($item)){
|
113 |
+
continue;
|
114 |
+
}
|
115 |
|
116 |
+
if(count($item['rows']) === 0){
|
117 |
+
continue;
|
118 |
+
}
|
119 |
+
$html .= '<li>
|
120 |
+
<span class="dashicons dashicons-minus"></span>
|
121 |
+
<strong>' . $item['key'] . '</strong>
|
122 |
+
' . sprintf(_n('is already used %d time', 'is already used %d times', count($item['rows']), 'wp-seopress'), count($item['rows'])). '
|
123 |
+
</li>';
|
124 |
+
$i++;
|
125 |
+
}
|
126 |
+
}
|
127 |
+
?>
|
128 |
+
|
129 |
+
<?php if (!empty($html)) { ?>
|
130 |
+
<div id="seopress-notice-target-kw" class="seopress-notice is-warning">
|
131 |
+
<p><?php printf(_n('The keyword:','These keywords:', $i, 'wp-seopress'), number_format_i18n($i)); ?></p>
|
132 |
+
<ul>
|
133 |
+
<?php echo $html; ?>
|
134 |
+
</ul>
|
135 |
+
<p><?php _e('You should avoid using multiple times the same keyword for different pages. Try to consolidate your content into one single page.','wp-seopress'); ?></p>
|
136 |
+
</div>
|
137 |
+
<?php } ?>
|
138 |
+
</div>
|
139 |
+
<?php
|
140 |
if (function_exists('seopress_get_service')) {
|
141 |
$analyzes = seopress_get_service('GetContentAnalysis')->getAnalyzes($post);
|
142 |
seopress_get_service('RenderContentAnalysis')->render($analyzes, $seopress_analysis_data);
|
@@ -280,15 +280,15 @@ function seopress_display_seo_term_metaboxe() {
|
|
280 |
$seopress_social_fb_title = get_term_meta($term->term_id, '_seopress_social_fb_title', true);
|
281 |
$seopress_social_fb_desc = get_term_meta($term->term_id, '_seopress_social_fb_desc', true);
|
282 |
$seopress_social_fb_img = get_term_meta($term->term_id, '_seopress_social_fb_img', true);
|
283 |
-
$seopress_social_fb_img_attachment_id =
|
284 |
-
$seopress_social_fb_img_width =
|
285 |
-
$seopress_social_fb_img_height =
|
286 |
$seopress_social_twitter_title = get_term_meta($term->term_id, '_seopress_social_twitter_title', true);
|
287 |
$seopress_social_twitter_desc = get_term_meta($term->term_id, '_seopress_social_twitter_desc', true);
|
288 |
$seopress_social_twitter_img = get_term_meta($term->term_id, '_seopress_social_twitter_img', true);
|
289 |
-
$seopress_social_twitter_img_attachment_id =
|
290 |
-
$seopress_social_twitter_img_width =
|
291 |
-
$seopress_social_twitter_img_height =
|
292 |
$seopress_redirections_enabled = get_term_meta($term->term_id, '_seopress_redirections_enabled', true);
|
293 |
$seopress_redirections_logged_status = get_term_meta($term->term_id, '_seopress_redirections_logged_status', true);
|
294 |
$seopress_redirections_type = get_term_meta($term->term_id, '_seopress_redirections_type', true);
|
@@ -374,6 +374,15 @@ function seopress_display_seo_term_metaboxe() {
|
|
374 |
if (isset($_POST['seopress_social_fb_img'])) {
|
375 |
update_term_meta($term_id, '_seopress_social_fb_img', esc_html($_POST['seopress_social_fb_img']));
|
376 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
377 |
if (isset($_POST['seopress_social_twitter_title'])) {
|
378 |
update_term_meta($term_id, '_seopress_social_twitter_title', esc_html($_POST['seopress_social_twitter_title']));
|
379 |
}
|
@@ -383,6 +392,15 @@ function seopress_display_seo_term_metaboxe() {
|
|
383 |
if (isset($_POST['seopress_social_twitter_img'])) {
|
384 |
update_term_meta($term_id, '_seopress_social_twitter_img', esc_html($_POST['seopress_social_twitter_img']));
|
385 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
386 |
}
|
387 |
if (in_array('redirect-tab', $seo_tabs)) {
|
388 |
if (isset($_POST['seopress_redirections_type'])) {
|
280 |
$seopress_social_fb_title = get_term_meta($term->term_id, '_seopress_social_fb_title', true);
|
281 |
$seopress_social_fb_desc = get_term_meta($term->term_id, '_seopress_social_fb_desc', true);
|
282 |
$seopress_social_fb_img = get_term_meta($term->term_id, '_seopress_social_fb_img', true);
|
283 |
+
$seopress_social_fb_img_attachment_id = get_term_meta($term->term_id, '_seopress_social_fb_img_attachment_id', true);
|
284 |
+
$seopress_social_fb_img_width = get_term_meta($term->term_id, '_seopress_social_fb_img_width', true);
|
285 |
+
$seopress_social_fb_img_height = get_term_meta($term->term_id, '_seopress_social_fb_img_height', true);
|
286 |
$seopress_social_twitter_title = get_term_meta($term->term_id, '_seopress_social_twitter_title', true);
|
287 |
$seopress_social_twitter_desc = get_term_meta($term->term_id, '_seopress_social_twitter_desc', true);
|
288 |
$seopress_social_twitter_img = get_term_meta($term->term_id, '_seopress_social_twitter_img', true);
|
289 |
+
$seopress_social_twitter_img_attachment_id = get_term_meta($term->term_id, '_seopress_social_twitter_img_attachment_id', true);
|
290 |
+
$seopress_social_twitter_img_width = get_term_meta($term->term_id, '_seopress_social_twitter_img_width', true);
|
291 |
+
$seopress_social_twitter_img_height = get_term_meta($term->term_id, '_seopress_social_twitter_img_height', true);
|
292 |
$seopress_redirections_enabled = get_term_meta($term->term_id, '_seopress_redirections_enabled', true);
|
293 |
$seopress_redirections_logged_status = get_term_meta($term->term_id, '_seopress_redirections_logged_status', true);
|
294 |
$seopress_redirections_type = get_term_meta($term->term_id, '_seopress_redirections_type', true);
|
374 |
if (isset($_POST['seopress_social_fb_img'])) {
|
375 |
update_term_meta($term_id, '_seopress_social_fb_img', esc_html($_POST['seopress_social_fb_img']));
|
376 |
}
|
377 |
+
if (isset($_POST['seopress_social_fb_img_attachment_id'])) {
|
378 |
+
update_term_meta($term_id, '_seopress_social_fb_img_attachment_id', esc_html($_POST['seopress_social_fb_img_attachment_id']));
|
379 |
+
}
|
380 |
+
if (isset($_POST['seopress_social_fb_img_width'])) {
|
381 |
+
update_term_meta($term_id, '_seopress_social_fb_img_width', esc_html($_POST['seopress_social_fb_img_width']));
|
382 |
+
}
|
383 |
+
if (isset($_POST['seopress_social_fb_img_height'])) {
|
384 |
+
update_term_meta($term_id, '_seopress_social_fb_img_height', esc_html($_POST['seopress_social_fb_img_height']));
|
385 |
+
}
|
386 |
if (isset($_POST['seopress_social_twitter_title'])) {
|
387 |
update_term_meta($term_id, '_seopress_social_twitter_title', esc_html($_POST['seopress_social_twitter_title']));
|
388 |
}
|
392 |
if (isset($_POST['seopress_social_twitter_img'])) {
|
393 |
update_term_meta($term_id, '_seopress_social_twitter_img', esc_html($_POST['seopress_social_twitter_img']));
|
394 |
}
|
395 |
+
if (isset($_POST['seopress_social_twitter_img_attachment_id'])) {
|
396 |
+
update_term_meta($term_id, '_seopress_social_twitter_img_attachment_id', esc_html($_POST['seopress_social_twitter_img_attachment_id']));
|
397 |
+
}
|
398 |
+
if (isset($_POST['seopress_social_twitter_img_width'])) {
|
399 |
+
update_term_meta($term_id, '_seopress_social_twitter_img_width', esc_html($_POST['seopress_social_twitter_img_width']));
|
400 |
+
}
|
401 |
+
if (isset($_POST['seopress_social_twitter_img_height'])) {
|
402 |
+
update_term_meta($term_id, '_seopress_social_twitter_img_height', esc_html($_POST['seopress_social_twitter_img_height']));
|
403 |
+
}
|
404 |
}
|
405 |
if (in_array('redirect-tab', $seo_tabs)) {
|
406 |
if (isset($_POST['seopress_redirections_type'])) {
|
@@ -24,13 +24,13 @@ function seopress_migration_tool($plugin, $name) {
|
|
24 |
if ('wp-meta-seo' != $plugin && 'seo-ultimate' != $plugin) {
|
25 |
$html .= '<li>' . __('Meta Robots (noindex, nofollow...)', 'wp-seopress') . '</li>';
|
26 |
}
|
27 |
-
if ('wp-meta-seo' != $plugin && 'seo-ultimate' != $plugin) {
|
28 |
$html .= '<li>' . __('Canonical URL', 'wp-seopress') . '</li>';
|
29 |
}
|
30 |
-
if ('wp-meta-seo' != $plugin && 'seo-ultimate' != $plugin && 'squirrly' != $plugin) {
|
31 |
$html .= '<li>' . __('Focus / target keywords', 'wp-seopress') . '</li>';
|
32 |
}
|
33 |
-
if ('wp-meta-seo' != $plugin && 'premium-seo-pack' != $plugin && 'seo-ultimate' != $plugin && 'squirrly' != $plugin && 'seo-framework' != $plugin && 'aio' != $plugin) {
|
34 |
$html .= '<li>' . __('Primary category', 'wp-seopress') . '</li>';
|
35 |
}
|
36 |
if ('wpseo' == $plugin || 'platinum-seo' == $plugin || 'smart-crawl' == $plugin || 'seopressor' == $plugin || 'rk' == $plugin || 'seo-framework' == $plugin || 'aio' == $plugin) {
|
24 |
if ('wp-meta-seo' != $plugin && 'seo-ultimate' != $plugin) {
|
25 |
$html .= '<li>' . __('Meta Robots (noindex, nofollow...)', 'wp-seopress') . '</li>';
|
26 |
}
|
27 |
+
if ('wp-meta-seo' != $plugin && 'seo-ultimate' != $plugin && 'slim-seo' != $plugin) {
|
28 |
$html .= '<li>' . __('Canonical URL', 'wp-seopress') . '</li>';
|
29 |
}
|
30 |
+
if ('wp-meta-seo' != $plugin && 'seo-ultimate' != $plugin && 'squirrly' != $plugin && 'slim-seo' != $plugin) {
|
31 |
$html .= '<li>' . __('Focus / target keywords', 'wp-seopress') . '</li>';
|
32 |
}
|
33 |
+
if ('wp-meta-seo' != $plugin && 'premium-seo-pack' != $plugin && 'seo-ultimate' != $plugin && 'squirrly' != $plugin && 'seo-framework' != $plugin && 'aio' != $plugin && 'slim-seo' != $plugin) {
|
34 |
$html .= '<li>' . __('Primary category', 'wp-seopress') . '</li>';
|
35 |
}
|
36 |
if ('wpseo' == $plugin || 'platinum-seo' == $plugin || 'smart-crawl' == $plugin || 'seopressor' == $plugin || 'rk' == $plugin || 'seo-framework' == $plugin || 'aio' == $plugin) {
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Classic editor related functions
|
4 |
+
*/
|
5 |
+
|
6 |
+
add_action( 'wp_enqueue_editor', 'seopress_wp_tiny_mce' );
|
7 |
+
/**
|
8 |
+
* Load extension for wpLink
|
9 |
+
*
|
10 |
+
* @param string $hook Page hook name
|
11 |
+
*/
|
12 |
+
function seopress_wp_tiny_mce( $hook ){
|
13 |
+
$suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min';
|
14 |
+
wp_enqueue_style( 'seopress-classic', SEOPRESS_ASSETS_DIR . '/css/seopress-classic-editor' . $suffix . '.css' , [], SEOPRESS_VERSION );
|
15 |
+
wp_enqueue_script( 'seopress-classic', SEOPRESS_ASSETS_DIR . '/js/seopress-classic-editor' . $suffix . '.js' , ['wplink'], SEOPRESS_VERSION, true );
|
16 |
+
wp_localize_script( 'seopress-classic', 'seopressI18n', array(
|
17 |
+
'sponsored' => __( 'Add <code>rel="sponsored"</code> attribute', 'wp-seopress' ),
|
18 |
+
'nofollow' => __( 'Add <code>rel="nofollow"</code> attribute', 'wp-seopress' ),
|
19 |
+
'ugc' => __( 'Add <code>rel="UGC"</code> attribute', 'wp-seopress' ),
|
20 |
+
) );
|
21 |
+
}
|
@@ -147,13 +147,13 @@ function seopress_block_faq_render_frontend($attributes)
|
|
147 |
$accordion = $attributes['showAccordion'];
|
148 |
|
149 |
if ($accordion) {
|
150 |
-
//Load our inline CSS only once
|
151 |
if (!isset($css)) {
|
152 |
$css = '<style>.wpseopress-hide {display: none;}.wpseopress-accordion-button{width:100%}</style>';
|
153 |
$css = apply_filters( 'seopress_faq_block_inline_css', $css );
|
154 |
echo $css;
|
155 |
}
|
156 |
-
//Our simple accordion JS
|
157 |
wp_enqueue_script('seopress-accordion', SEOPRESS_URL_PUBLIC . '/editor/blocks/faq/accordion.js', '', SEOPRESS_VERSION, true);
|
158 |
}
|
159 |
|
147 |
$accordion = $attributes['showAccordion'];
|
148 |
|
149 |
if ($accordion) {
|
150 |
+
// Load our inline CSS only once
|
151 |
if (!isset($css)) {
|
152 |
$css = '<style>.wpseopress-hide {display: none;}.wpseopress-accordion-button{width:100%}</style>';
|
153 |
$css = apply_filters( 'seopress_faq_block_inline_css', $css );
|
154 |
echo $css;
|
155 |
}
|
156 |
+
// Our simple accordion JS
|
157 |
wp_enqueue_script('seopress-accordion', SEOPRESS_URL_PUBLIC . '/editor/blocks/faq/accordion.js', '', SEOPRESS_VERSION, true);
|
158 |
}
|
159 |
|
@@ -9,6 +9,7 @@ function seopress_sanitize_options_fields($input){
|
|
9 |
'seopress_social_facebook_img_attachment_width',
|
10 |
'seopress_social_facebook_img_attachment_height',
|
11 |
'seopress_titles_home_site_title',
|
|
|
12 |
'seopress_titles_home_site_desc',
|
13 |
'seopress_titles_archives_author_title',
|
14 |
'seopress_titles_archives_author_desc',
|
9 |
'seopress_social_facebook_img_attachment_width',
|
10 |
'seopress_social_facebook_img_attachment_height',
|
11 |
'seopress_titles_home_site_title',
|
12 |
+
'seopress_titles_home_site_title_alt',
|
13 |
'seopress_titles_home_site_desc',
|
14 |
'seopress_titles_archives_author_title',
|
15 |
'seopress_titles_archives_author_desc',
|
@@ -25,6 +25,15 @@ function print_section_info_advanced_appearance()
|
|
25 |
<?php _e('Appearance', 'wp-seopress'); ?>
|
26 |
</h2>
|
27 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
<p>
|
29 |
<?php _e('Customize the plugin to fit your needs.', 'wp-seopress'); ?>
|
30 |
</p>
|
@@ -40,7 +49,19 @@ function print_section_info_advanced_security()
|
|
40 |
<?php _e('Security', 'wp-seopress'); ?>
|
41 |
</h2>
|
42 |
</div>
|
43 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
<?php _e('SEOPress metaboxes', 'wp-seopress'); ?>
|
45 |
</h3>
|
46 |
|
@@ -57,7 +78,7 @@ function print_section_info_advanced_security_roles()
|
|
57 |
|
58 |
<hr>
|
59 |
|
60 |
-
<h3>
|
61 |
<?php _e('SEOPress settings pages', 'wp-seopress'); ?>
|
62 |
</h3>
|
63 |
|
@@ -72,7 +93,7 @@ function print_section_info_advanced_appearance_col()
|
|
72 |
{ ?>
|
73 |
<hr>
|
74 |
|
75 |
-
<h3>
|
76 |
<?php _e('Columns', 'wp-seopress'); ?>
|
77 |
</h3>
|
78 |
|
@@ -85,7 +106,7 @@ function print_section_info_advanced_appearance_metabox()
|
|
85 |
{ ?>
|
86 |
<hr>
|
87 |
|
88 |
-
<h3>
|
89 |
<?php _e('Metaboxes', 'wp-seopress'); ?>
|
90 |
</h3>
|
91 |
|
@@ -98,7 +119,7 @@ function print_section_info_advanced_appearance_dashboard()
|
|
98 |
{ ?>
|
99 |
<hr>
|
100 |
|
101 |
-
<h3>
|
102 |
<?php _e('SEO Dashboard', 'wp-seopress'); ?>
|
103 |
</h3>
|
104 |
|
@@ -111,7 +132,7 @@ function print_section_info_advanced_appearance_admin_bar()
|
|
111 |
{ ?>
|
112 |
<hr>
|
113 |
|
114 |
-
<h3>
|
115 |
<?php _e('Admin bar', 'wp-seopress'); ?>
|
116 |
</h3>
|
117 |
|
@@ -124,7 +145,7 @@ function print_section_info_advanced_appearance_misc()
|
|
124 |
{ ?>
|
125 |
<hr>
|
126 |
|
127 |
-
<h3>
|
128 |
<?php _e('Misc', 'wp-seopress'); ?>
|
129 |
</h3>
|
130 |
|
25 |
<?php _e('Appearance', 'wp-seopress'); ?>
|
26 |
</h2>
|
27 |
</div>
|
28 |
+
|
29 |
+
<div class="seopress-sub-tabs">
|
30 |
+
<a href="#seopress-advanced-metaboxes"><?php _e('Metaboxes', 'wp-seopress'); ?></a> |
|
31 |
+
<a href="#seopress-advanced-adminbar"><?php _e('Admin bar', 'wp-seopress'); ?></a> |
|
32 |
+
<a href="#seopress-advanced-seo-dashboard"><?php _e('SEO Dashboard', 'wp-seopress'); ?></a> |
|
33 |
+
<a href="#seopress-advanced-columns"><?php _e('Columns', 'wp-seopress'); ?></a> |
|
34 |
+
<a href="#seopress-advanced-misc"><?php _e('Misc', 'wp-seopress'); ?></a>
|
35 |
+
</div>
|
36 |
+
|
37 |
<p>
|
38 |
<?php _e('Customize the plugin to fit your needs.', 'wp-seopress'); ?>
|
39 |
</p>
|
49 |
<?php _e('Security', 'wp-seopress'); ?>
|
50 |
</h2>
|
51 |
</div>
|
52 |
+
|
53 |
+
<div class="seopress-sub-tabs">
|
54 |
+
<a href="#seopress-security-metaboxes"><?php _e('SEOPress metaboxes', 'wp-seopress'); ?></a> |
|
55 |
+
<a href="#seopress-security-settings"><?php _e('SEOPress settings pages', 'wp-seopress'); ?></a>
|
56 |
+
</div>
|
57 |
+
|
58 |
+
<p>
|
59 |
+
<?php _e('Control access to SEO settings and metaboxes by user roles.', 'wp-seopress'); ?>
|
60 |
+
</p>
|
61 |
+
|
62 |
+
<hr>
|
63 |
+
|
64 |
+
<h3 id="seopress-security-metaboxes">
|
65 |
<?php _e('SEOPress metaboxes', 'wp-seopress'); ?>
|
66 |
</h3>
|
67 |
|
78 |
|
79 |
<hr>
|
80 |
|
81 |
+
<h3 id="seopress-security-settings">
|
82 |
<?php _e('SEOPress settings pages', 'wp-seopress'); ?>
|
83 |
</h3>
|
84 |
|
93 |
{ ?>
|
94 |
<hr>
|
95 |
|
96 |
+
<h3 id="seopress-advanced-columns">
|
97 |
<?php _e('Columns', 'wp-seopress'); ?>
|
98 |
</h3>
|
99 |
|
106 |
{ ?>
|
107 |
<hr>
|
108 |
|
109 |
+
<h3 id="seopress-advanced-metaboxes">
|
110 |
<?php _e('Metaboxes', 'wp-seopress'); ?>
|
111 |
</h3>
|
112 |
|
119 |
{ ?>
|
120 |
<hr>
|
121 |
|
122 |
+
<h3 id="seopress-advanced-seo-dashboard">
|
123 |
<?php _e('SEO Dashboard', 'wp-seopress'); ?>
|
124 |
</h3>
|
125 |
|
132 |
{ ?>
|
133 |
<hr>
|
134 |
|
135 |
+
<h3 id="seopress-advanced-adminbar">
|
136 |
<?php _e('Admin bar', 'wp-seopress'); ?>
|
137 |
</h3>
|
138 |
|
145 |
{ ?>
|
146 |
<hr>
|
147 |
|
148 |
+
<h3 id="seopress-advanced-misc">
|
149 |
<?php _e('Misc', 'wp-seopress'); ?>
|
150 |
</h3>
|
151 |
|
@@ -111,6 +111,11 @@ function print_section_info_google_analytics_custom_dimensions()
|
|
111 |
</h2>
|
112 |
</div>
|
113 |
|
|
|
|
|
|
|
|
|
|
|
114 |
<div class="seopress-notice">
|
115 |
<p>
|
116 |
<?php _e('All advanced settings work with <strong>Google Analytics</strong> and <strong>Matomo</strong> tracking code.', 'wp-seopress'); ?>
|
@@ -118,7 +123,7 @@ function print_section_info_google_analytics_custom_dimensions()
|
|
118 |
</div>
|
119 |
|
120 |
<hr>
|
121 |
-
<h3><?php _e('Custom Dimensions','wp-seopress'); ?></h3>
|
122 |
|
123 |
<p>
|
124 |
<?php _e('Configure your Google Analytics custom dimensions.', 'wp-seopress'); ?>
|
@@ -143,7 +148,7 @@ function print_section_info_google_analytics_advanced()
|
|
143 |
?>
|
144 |
<br>
|
145 |
<hr>
|
146 |
-
<h3><?php _e('Misc','wp-seopress'); ?></h3>
|
147 |
|
148 |
<?php
|
149 |
}
|
111 |
</h2>
|
112 |
</div>
|
113 |
|
114 |
+
<div class="seopress-sub-tabs">
|
115 |
+
<a href="#seopress-analytics-cd"><?php _e('Custom Dimensions', 'wp-seopress'); ?></a> |
|
116 |
+
<a href="#seopress-analytics-misc"><?php _e('Misc', 'wp-seopress'); ?></a>
|
117 |
+
</div>
|
118 |
+
|
119 |
<div class="seopress-notice">
|
120 |
<p>
|
121 |
<?php _e('All advanced settings work with <strong>Google Analytics</strong> and <strong>Matomo</strong> tracking code.', 'wp-seopress'); ?>
|
123 |
</div>
|
124 |
|
125 |
<hr>
|
126 |
+
<h3 id="seopress-analytics-cd"><?php _e('Custom Dimensions','wp-seopress'); ?></h3>
|
127 |
|
128 |
<p>
|
129 |
<?php _e('Configure your Google Analytics custom dimensions.', 'wp-seopress'); ?>
|
148 |
?>
|
149 |
<br>
|
150 |
<hr>
|
151 |
+
<h3 id="seopress-analytics-misc"><?php _e('Misc','wp-seopress'); ?></h3>
|
152 |
|
153 |
<?php
|
154 |
}
|
@@ -454,4 +454,14 @@ if (is_plugin_active('wp-seopress-pro/seopress-pro.php')) {
|
|
454 |
'seopress-settings-admin-advanced-security' // Page
|
455 |
);
|
456 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
457 |
}
|
454 |
'seopress-settings-admin-advanced-security' // Page
|
455 |
);
|
456 |
}
|
457 |
+
|
458 |
+
if (version_compare($actual_version, '6.1', '>=')) {
|
459 |
+
add_settings_section(
|
460 |
+
'seopress_setting_section_advanced_security_matomo', // ID
|
461 |
+
'',
|
462 |
+
//__("Security","wp-seopress"), // Title
|
463 |
+
'print_section_info_advanced_security_matomo', // Callback
|
464 |
+
'seopress-settings-admin-advanced-security' // Page
|
465 |
+
);
|
466 |
+
}
|
467 |
}
|
@@ -27,6 +27,14 @@ add_settings_field(
|
|
27 |
'seopress_setting_section_titles_home' // Section
|
28 |
);
|
29 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
add_settings_field(
|
31 |
'seopress_titles_home_site_desc', // ID
|
32 |
__('Meta description', 'wp-seopress'), // Title
|
27 |
'seopress_setting_section_titles_home' // Section
|
28 |
);
|
29 |
|
30 |
+
add_settings_field(
|
31 |
+
'seopress_titles_home_site_title_alt', // ID
|
32 |
+
__('Alternative site title', 'wp-seopress'), // Title
|
33 |
+
'seopress_titles_home_site_title_alt_callback', // Callback
|
34 |
+
'seopress-settings-admin-titles-home', // Page
|
35 |
+
'seopress_setting_section_titles_home' // Section
|
36 |
+
);
|
37 |
+
|
38 |
add_settings_field(
|
39 |
'seopress_titles_home_site_desc', // ID
|
40 |
__('Meta description', 'wp-seopress'), // Title
|
@@ -123,6 +123,10 @@ class SEOPRESS_Admin_Setup_Wizard {
|
|
123 |
'seopress_nonce' => wp_create_nonce('seopress_seopressor_migrate_nonce'),
|
124 |
'seopress_seopressor_migration' => admin_url('admin-ajax.php'),
|
125 |
],
|
|
|
|
|
|
|
|
|
126 |
'seopress_metadata_csv' => [
|
127 |
'seopress_nonce' => wp_create_nonce('seopress_export_csv_metadata_nonce'),
|
128 |
'seopress_metadata_export' => admin_url('admin-ajax.php'),
|
@@ -611,6 +615,7 @@ class SEOPRESS_Admin_Setup_Wizard {
|
|
611 |
'platinum-seo' => 'Platinum SEO Pack',
|
612 |
'smart-crawl' => 'SmartCrawl',
|
613 |
'seopressor' => 'SEOPressor',
|
|
|
614 |
];
|
615 |
|
616 |
echo '<p>
|
@@ -660,6 +665,7 @@ class SEOPRESS_Admin_Setup_Wizard {
|
|
660 |
* Init "Step 2.0: Your site - General".
|
661 |
*/
|
662 |
public function seopress_setup_site() {
|
|
|
663 |
$seopress_titles_option = get_option('seopress_titles_option_name');
|
664 |
$seopress_social_option = get_option('seopress_social_option_name');
|
665 |
|
@@ -668,6 +674,7 @@ class SEOPRESS_Admin_Setup_Wizard {
|
|
668 |
|
669 |
$site_sep = isset($seopress_titles_option['seopress_titles_sep']) ? $seopress_titles_option['seopress_titles_sep'] : null;
|
670 |
$site_title = isset($seopress_titles_option['seopress_titles_home_site_title']) ? $seopress_titles_option['seopress_titles_home_site_title'] : null;
|
|
|
671 |
$knowledge_type = isset($seopress_social_option['seopress_social_knowledge_type']) ? $seopress_social_option['seopress_social_knowledge_type'] : null;
|
672 |
$knowledge_name = isset($seopress_social_option['seopress_social_knowledge_name']) ? $seopress_social_option['seopress_social_knowledge_name'] : null;
|
673 |
$knowledge_img = isset($seopress_social_option['seopress_social_knowledge_img']) ? $seopress_social_option['seopress_social_knowledge_img'] : null;
|
@@ -708,6 +715,15 @@ class SEOPRESS_Admin_Setup_Wizard {
|
|
708 |
<?php _e('The site title will be used by the dynamic variable <strong>%%sitetitle%%</strong> in your title and meta description templates.', 'wp-seopress'); ?>
|
709 |
</p>
|
710 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
711 |
<p>
|
712 |
<label for="knowledge_type"><?php esc_html_e('Person or organization', 'wp-seopress'); ?></label>
|
713 |
<?php
|
@@ -795,6 +811,7 @@ class SEOPRESS_Admin_Setup_Wizard {
|
|
795 |
//Titles
|
796 |
$seopress_titles_option['seopress_titles_sep'] = isset($_POST['site_sep']) ? esc_attr(wp_unslash($_POST['site_sep'])) : '';
|
797 |
$seopress_titles_option['seopress_titles_home_site_title'] = isset($_POST['site_title']) ? sanitize_text_field(wp_unslash($_POST['site_title'])) : '';
|
|
|
798 |
|
799 |
//Social
|
800 |
$seopress_social_option['seopress_social_knowledge_type'] = isset($_POST['knowledge_type']) ? esc_attr(wp_unslash($_POST['knowledge_type'])) : '';
|
123 |
'seopress_nonce' => wp_create_nonce('seopress_seopressor_migrate_nonce'),
|
124 |
'seopress_seopressor_migration' => admin_url('admin-ajax.php'),
|
125 |
],
|
126 |
+
'seopress_slim_seo_migrate' => [
|
127 |
+
'seopress_nonce' => wp_create_nonce('seopress_slim_seo_migrate_nonce'),
|
128 |
+
'seopress_slim_seo_migration' => admin_url('admin-ajax.php'),
|
129 |
+
],
|
130 |
'seopress_metadata_csv' => [
|
131 |
'seopress_nonce' => wp_create_nonce('seopress_export_csv_metadata_nonce'),
|
132 |
'seopress_metadata_export' => admin_url('admin-ajax.php'),
|
615 |
'platinum-seo' => 'Platinum SEO Pack',
|
616 |
'smart-crawl' => 'SmartCrawl',
|
617 |
'seopressor' => 'SEOPressor',
|
618 |
+
'slim-seo' => 'Slim SEO',
|
619 |
];
|
620 |
|
621 |
echo '<p>
|
665 |
* Init "Step 2.0: Your site - General".
|
666 |
*/
|
667 |
public function seopress_setup_site() {
|
668 |
+
$docs = seopress_get_docs_links();
|
669 |
$seopress_titles_option = get_option('seopress_titles_option_name');
|
670 |
$seopress_social_option = get_option('seopress_social_option_name');
|
671 |
|
674 |
|
675 |
$site_sep = isset($seopress_titles_option['seopress_titles_sep']) ? $seopress_titles_option['seopress_titles_sep'] : null;
|
676 |
$site_title = isset($seopress_titles_option['seopress_titles_home_site_title']) ? $seopress_titles_option['seopress_titles_home_site_title'] : null;
|
677 |
+
$alt_site_title = isset($seopress_titles_option['seopress_titles_home_site_title_alt']) ? $seopress_titles_option['seopress_titles_home_site_title_alt'] : null;
|
678 |
$knowledge_type = isset($seopress_social_option['seopress_social_knowledge_type']) ? $seopress_social_option['seopress_social_knowledge_type'] : null;
|
679 |
$knowledge_name = isset($seopress_social_option['seopress_social_knowledge_name']) ? $seopress_social_option['seopress_social_knowledge_name'] : null;
|
680 |
$knowledge_img = isset($seopress_social_option['seopress_social_knowledge_img']) ? $seopress_social_option['seopress_social_knowledge_img'] : null;
|
715 |
<?php _e('The site title will be used by the dynamic variable <strong>%%sitetitle%%</strong> in your title and meta description templates.', 'wp-seopress'); ?>
|
716 |
</p>
|
717 |
|
718 |
+
<p>
|
719 |
+
<label for="alt_site_title"><?php esc_html_e('Alternative site title', 'wp-seopress'); ?></label>
|
720 |
+
<input type="text" id="alt_site_title" class="location-input" name="alt_site_title"
|
721 |
+
placeholder="<?php esc_html_e('eg: My alternative site title', 'wp-seopress'); ?>"
|
722 |
+
required value="<?php echo $alt_site_title; ?>" />
|
723 |
+
</p>
|
724 |
+
|
725 |
+
<p class="description"><?php printf(__('The alternate name of the website (for example, if there\'s a commonly recognized acronym or shorter name for your site), if applicable. Make sure the name meets the <a href="%s" target="_blank">content guidelines</a>.<span class="dashicons dashicons-external"></span>','wp-seopress'), $docs['titles']['alt_title']); ?></p>
|
726 |
+
|
727 |
<p>
|
728 |
<label for="knowledge_type"><?php esc_html_e('Person or organization', 'wp-seopress'); ?></label>
|
729 |
<?php
|
811 |
//Titles
|
812 |
$seopress_titles_option['seopress_titles_sep'] = isset($_POST['site_sep']) ? esc_attr(wp_unslash($_POST['site_sep'])) : '';
|
813 |
$seopress_titles_option['seopress_titles_home_site_title'] = isset($_POST['site_title']) ? sanitize_text_field(wp_unslash($_POST['site_title'])) : '';
|
814 |
+
$seopress_titles_option['seopress_titles_home_site_title_alt'] = isset($_POST['alt_site_title']) ? sanitize_text_field(wp_unslash($_POST['alt_site_title'])) : '';
|
815 |
|
816 |
//Social
|
817 |
$seopress_social_option['seopress_social_knowledge_type'] = isset($_POST['knowledge_type']) ? esc_attr(wp_unslash($_POST['knowledge_type'])) : '';
|
@@ -2,6 +2,44 @@
|
|
2 |
|
3 |
defined('ABSPATH') or exit('Please don’t call the plugin directly. Thanks :)');
|
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
//Remove reply to com link
|
6 |
if ('1' == seopress_get_service('AdvancedOption')->getAdvancedReplytocom()) {
|
7 |
add_filter('comment_reply_link', 'seopress_remove_reply_to_com');
|
2 |
|
3 |
defined('ABSPATH') or exit('Please don’t call the plugin directly. Thanks :)');
|
4 |
|
5 |
+
//Attachments redirects
|
6 |
+
function seopress_advanced_advanced_attachments_option() {
|
7 |
+
return seopress_get_service('AdvancedOption')->getAdvancedAttachments();
|
8 |
+
}
|
9 |
+
|
10 |
+
function seopress_redirections_attachments(){
|
11 |
+
if (seopress_advanced_advanced_attachments_option() =='1') {
|
12 |
+
global $post;
|
13 |
+
if ( is_attachment() && isset($post->post_parent) && is_numeric($post->post_parent) && ($post->post_parent != 0) ) {
|
14 |
+
wp_redirect( get_permalink( $post->post_parent ), 301 );
|
15 |
+
exit();
|
16 |
+
wp_reset_postdata();
|
17 |
+
} elseif (is_attachment() && isset($post->post_parent) && is_numeric($post->post_parent) && ($post->post_parent == 0)) {
|
18 |
+
wp_redirect(get_home_url(), 302);
|
19 |
+
exit();
|
20 |
+
}
|
21 |
+
}
|
22 |
+
}
|
23 |
+
add_action( 'template_redirect', 'seopress_redirections_attachments', 2 );
|
24 |
+
|
25 |
+
//Attachments redirects to file URL
|
26 |
+
/**
|
27 |
+
* @deprecated 5.4.0
|
28 |
+
*/
|
29 |
+
function seopress_advanced_advanced_attachments_file_option() {
|
30 |
+
return seopress_get_service('AdvancedOption')->getAdvancedAttachmentsFile();
|
31 |
+
}
|
32 |
+
|
33 |
+
function seopress_redirections_attachments_file(){
|
34 |
+
if (seopress_advanced_advanced_attachments_file_option() =='1') {
|
35 |
+
if ( is_attachment() ) {
|
36 |
+
wp_redirect( wp_get_attachment_url(), 301 );
|
37 |
+
exit();
|
38 |
+
}
|
39 |
+
}
|
40 |
+
}
|
41 |
+
add_action( 'template_redirect', 'seopress_redirections_attachments_file', 1 );
|
42 |
+
|
43 |
//Remove reply to com link
|
44 |
if ('1' == seopress_get_service('AdvancedOption')->getAdvancedReplytocom()) {
|
45 |
add_filter('comment_reply_link', 'seopress_remove_reply_to_com');
|
@@ -138,13 +138,13 @@ function seopress_instant_indexing_fn($is_manual_submission = true, $permalink =
|
|
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.
|
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.
|
148 |
}
|
149 |
|
150 |
//Bing API
|
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.1/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.1/false';
|
148 |
}
|
149 |
|
150 |
//Bing API
|
@@ -155,42 +155,3 @@ function seopress_redirections_hook() {
|
|
155 |
}
|
156 |
}
|
157 |
add_action('template_redirect', 'seopress_redirections_hook', 1);
|
158 |
-
|
159 |
-
|
160 |
-
//Attachments redirects
|
161 |
-
function seopress_advanced_advanced_attachments_option() {
|
162 |
-
return seopress_get_service('AdvancedOption')->getAdvancedAttachments();
|
163 |
-
}
|
164 |
-
|
165 |
-
function seopress_redirections_attachments(){
|
166 |
-
if (seopress_advanced_advanced_attachments_option() =='1') {
|
167 |
-
global $post;
|
168 |
-
if ( is_attachment() && isset($post->post_parent) && is_numeric($post->post_parent) && ($post->post_parent != 0) ) {
|
169 |
-
wp_redirect( get_permalink( $post->post_parent ), 301 );
|
170 |
-
exit();
|
171 |
-
wp_reset_postdata();
|
172 |
-
} elseif (is_attachment() && isset($post->post_parent) && is_numeric($post->post_parent) && ($post->post_parent == 0)) {
|
173 |
-
wp_redirect(get_home_url(), 302);
|
174 |
-
exit();
|
175 |
-
}
|
176 |
-
}
|
177 |
-
}
|
178 |
-
add_action( 'template_redirect', 'seopress_redirections_attachments', 2 );
|
179 |
-
|
180 |
-
//Attachments redirects to file URL
|
181 |
-
/**
|
182 |
-
* @deprecated 5.4.0
|
183 |
-
*/
|
184 |
-
function seopress_advanced_advanced_attachments_file_option() {
|
185 |
-
return seopress_get_service('AdvancedOption')->getAdvancedAttachmentsFile();
|
186 |
-
}
|
187 |
-
|
188 |
-
function seopress_redirections_attachments_file(){
|
189 |
-
if (seopress_advanced_advanced_attachments_file_option() =='1') {
|
190 |
-
if ( is_attachment() ) {
|
191 |
-
wp_redirect( wp_get_attachment_url(), 301 );
|
192 |
-
exit();
|
193 |
-
}
|
194 |
-
}
|
195 |
-
}
|
196 |
-
add_action( 'template_redirect', 'seopress_redirections_attachments_file', 1 );
|
155 |
}
|
156 |
}
|
157 |
add_action('template_redirect', 'seopress_redirections_hook', 1);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -207,19 +207,47 @@ if (function_exists('seopress_titles_nositelinkssearchbox_option') && '1' == seo
|
|
207 |
} else {
|
208 |
function seopress_social_website_option() {
|
209 |
$target = get_home_url() . '/?s={search_term_string}';
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
223 |
}
|
224 |
if (is_home() || is_front_page()) {
|
225 |
add_action('wp_head', 'seopress_social_website_option', 1);
|
207 |
} else {
|
208 |
function seopress_social_website_option() {
|
209 |
$target = get_home_url() . '/?s={search_term_string}';
|
210 |
+
$site_tile = !empty(seopress_get_service('TitleOption')->getHomeSiteTitle()) ? seopress_get_service('TitleOption')->getHomeSiteTitle() : get_bloginfo('name');
|
211 |
+
$alt_site_title = !empty(seopress_get_service('TitleOption')->getHomeSiteTitleAlt()) ? seopress_get_service('TitleOption')->getHomeSiteTitleAlt() : get_bloginfo('name');
|
212 |
+
$site_desc = !empty(seopress_get_service('TitleOption')->getHomeDescriptionTitle()) ? seopress_get_service('TitleOption')->getHomeDescriptionTitle() : get_bloginfo('description');
|
213 |
+
|
214 |
+
|
215 |
+
$variables = null;
|
216 |
+
$variables = apply_filters('seopress_dyn_variables_fn', $variables);
|
217 |
+
|
218 |
+
$seopress_titles_template_variables_array = $variables['seopress_titles_template_variables_array'];
|
219 |
+
$seopress_titles_template_replace_array = $variables['seopress_titles_template_replace_array'];
|
220 |
+
|
221 |
+
$site_tile = str_replace($seopress_titles_template_variables_array, $seopress_titles_template_replace_array, $site_tile);
|
222 |
+
$alt_site_title = str_replace($seopress_titles_template_variables_array, $seopress_titles_template_replace_array, $alt_site_title);
|
223 |
+
$site_desc = str_replace($seopress_titles_template_variables_array, $seopress_titles_template_replace_array, $site_desc);
|
224 |
+
|
225 |
+
$website_schema = [
|
226 |
+
'@context' => seopress_check_ssl() . 'schema.org',
|
227 |
+
'@type' => 'WebSite',
|
228 |
+
'name' => esc_html($site_tile),
|
229 |
+
'alternateName' => esc_html($alt_site_title),
|
230 |
+
'description' => esc_html($site_desc),
|
231 |
+
'url' => get_home_url(),
|
232 |
+
'potentialAction' => [
|
233 |
+
'@type' => 'SearchAction',
|
234 |
+
'target' => [
|
235 |
+
'@type' => 'EntryPoint',
|
236 |
+
'urlTemplate' => $target
|
237 |
+
],
|
238 |
+
'query-input' => 'required name=search_term_string'
|
239 |
+
],
|
240 |
+
];
|
241 |
+
|
242 |
+
$website_schema = apply_filters( 'seopress_schemas_website', $website_schema );
|
243 |
+
|
244 |
+
$jsonld = '<script type="application/ld+json">';
|
245 |
+
$jsonld .= json_encode($website_schema);
|
246 |
+
$jsonld .= '</script>';
|
247 |
+
$jsonld .= "\n";
|
248 |
+
|
249 |
+
|
250 |
+
echo $jsonld;
|
251 |
}
|
252 |
if (is_home() || is_front_page()) {
|
253 |
add_action('wp_head', 'seopress_social_website_option', 1);
|
@@ -405,7 +405,7 @@ if ('1' == seopress_get_toggle_option('xml-sitemap')) {
|
|
405 |
require_once dirname(__FILE__) . '/options-sitemap.php'; //XML / HTML Sitemap
|
406 |
}
|
407 |
}
|
408 |
-
if ('1'
|
409 |
//Remove comment author url
|
410 |
function seopress_advanced_advanced_comments_author_url_option()
|
411 |
{
|
@@ -751,7 +751,7 @@ if ('1' == seopress_get_toggle_option('advanced')) {
|
|
751 |
$category_base = 'product-category';
|
752 |
}
|
753 |
|
754 |
-
$category_base = apply_filters('
|
755 |
|
756 |
if ('/' == substr($category_base, 0, 1)) {
|
757 |
$category_base = substr($category_base, 1);
|
405 |
require_once dirname(__FILE__) . '/options-sitemap.php'; //XML / HTML Sitemap
|
406 |
}
|
407 |
}
|
408 |
+
if ('1' === seopress_get_toggle_option('advanced')) {
|
409 |
//Remove comment author url
|
410 |
function seopress_advanced_advanced_comments_author_url_option()
|
411 |
{
|
751 |
$category_base = 'product-category';
|
752 |
}
|
753 |
|
754 |
+
$category_base = apply_filters('seopress_remove_product_category_base', $category_base);
|
755 |
|
756 |
if ('/' == substr($category_base, 0, 1)) {
|
757 |
$category_base = substr($category_base, 1);
|
@@ -2,14 +2,14 @@
|
|
2 |
# This file is distributed under the GPLv2.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: SEOPress 6.
|
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"
|
@@ -106,15 +106,15 @@ msgstr ""
|
|
106 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:55
|
107 |
#: inc/admin/sections/Advanced.php:10
|
108 |
#: inc/admin/sections/Titles.php:63
|
109 |
-
#: inc/admin/wizard/admin-wizard.php:
|
110 |
-
#: inc/admin/wizard/admin-wizard.php:
|
111 |
#: app/react/constants/tabs.js:66
|
112 |
msgid "Advanced"
|
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:
|
118 |
#: src/Actions/Admin/ManageColumn.php:94
|
119 |
msgid "Insights"
|
120 |
msgstr ""
|
@@ -131,13 +131,13 @@ 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:
|
135 |
msgid "License"
|
136 |
msgstr ""
|
137 |
|
138 |
#: inc/admin/admin-bar/admin-bar.php:172
|
139 |
-
#: inc/admin/blocks/notifications-center.php:
|
140 |
-
#: inc/admin/wizard/admin-wizard.php:
|
141 |
msgid "PRO"
|
142 |
msgstr ""
|
143 |
|
@@ -147,7 +147,7 @@ msgid "Schemas"
|
|
147 |
msgstr ""
|
148 |
|
149 |
#: inc/admin/admin-bar/admin-bar.php:187
|
150 |
-
#: inc/admin/admin-pages/Tools.php:
|
151 |
#: inc/admin/blocks/features-list.php:65
|
152 |
msgid "Redirections"
|
153 |
msgstr ""
|
@@ -205,14 +205,14 @@ msgstr ""
|
|
205 |
|
206 |
#: inc/admin/admin-dyn-variables-helper.php:7
|
207 |
#: inc/admin/callbacks/Titles.php:37
|
208 |
-
#: inc/admin/callbacks/Titles.php:
|
209 |
-
#: inc/admin/callbacks/Titles.php:
|
210 |
-
#: inc/admin/callbacks/Titles.php:
|
211 |
-
#: inc/admin/callbacks/Titles.php:
|
212 |
-
#: inc/admin/callbacks/Titles.php:
|
213 |
-
#: inc/admin/callbacks/Titles.php:
|
214 |
-
#: inc/admin/callbacks/Titles.php:
|
215 |
-
#: inc/admin/callbacks/Titles.php:
|
216 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:134
|
217 |
#: inc/admin/page-builders/elementor/inc/controls/class-text-letter-counter-control.php:68
|
218 |
#: src/Tags/SiteTitle.php:22
|
@@ -221,14 +221,14 @@ msgstr ""
|
|
221 |
|
222 |
#: inc/admin/admin-dyn-variables-helper.php:8
|
223 |
#: inc/admin/callbacks/Titles.php:47
|
224 |
-
#: inc/admin/callbacks/Titles.php:
|
225 |
msgid "Tagline"
|
226 |
msgstr ""
|
227 |
|
228 |
#: inc/admin/admin-dyn-variables-helper.php:9
|
229 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
230 |
-
#: inc/admin/callbacks/Titles.php:
|
231 |
-
#: inc/admin/callbacks/Titles.php:
|
232 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:131
|
233 |
#: inc/admin/page-builders/elementor/inc/controls/class-text-letter-counter-control.php:66
|
234 |
#: src/Tags/PostTitle.php:17
|
@@ -236,7 +236,7 @@ msgid "Post Title"
|
|
236 |
msgstr ""
|
237 |
|
238 |
#: inc/admin/admin-dyn-variables-helper.php:10
|
239 |
-
#: inc/admin/callbacks/Titles.php:
|
240 |
msgid "Post excerpt"
|
241 |
msgstr ""
|
242 |
|
@@ -262,7 +262,7 @@ msgid "Post modified date"
|
|
262 |
msgstr ""
|
263 |
|
264 |
#: inc/admin/admin-dyn-variables-helper.php:16
|
265 |
-
#: inc/admin/callbacks/Titles.php:
|
266 |
msgid "Post author"
|
267 |
msgstr ""
|
268 |
|
@@ -440,7 +440,7 @@ msgid "Appearance"
|
|
440 |
msgstr ""
|
441 |
|
442 |
#: inc/admin/admin-pages/Advanced.php:23
|
443 |
-
#: inc/admin/sections/Advanced.php:
|
444 |
msgid "Security"
|
445 |
msgstr ""
|
446 |
|
@@ -450,18 +450,18 @@ msgstr ""
|
|
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:
|
454 |
msgid "Save changes"
|
455 |
msgstr ""
|
456 |
|
457 |
#: inc/admin/admin-pages/Analytics.php:21
|
458 |
-
#: inc/admin/blocks/insights.php:
|
459 |
#: inc/admin/sections/Analytics.php:10
|
460 |
msgid "Google Analytics"
|
461 |
msgstr ""
|
462 |
|
463 |
#: inc/admin/admin-pages/Analytics.php:22
|
464 |
-
#: inc/admin/sections/Analytics.php:
|
465 |
msgid "Matomo"
|
466 |
msgstr ""
|
467 |
|
@@ -484,16 +484,16 @@ msgstr ""
|
|
484 |
#: inc/admin/sections/Analytics.php:15
|
485 |
#: inc/admin/sections/Analytics.php:25
|
486 |
#: inc/admin/sections/Sitemaps.php:10
|
487 |
-
#: inc/admin/wizard/admin-wizard.php:
|
488 |
-
#: inc/admin/wizard/admin-wizard.php:
|
489 |
msgid "General"
|
490 |
msgstr ""
|
491 |
|
492 |
#: inc/admin/admin-pages/InstantIndexing.php:25
|
493 |
-
#: inc/admin/admin-pages/Tools.php:
|
494 |
-
#: inc/admin/admin-pages/Tools.php:
|
495 |
#: inc/admin/sections/InstantIndexing.php:54
|
496 |
-
#: seopress.php:
|
497 |
msgid "Settings"
|
498 |
msgstr ""
|
499 |
|
@@ -501,9 +501,9 @@ msgstr ""
|
|
501 |
#: inc/admin/admin-pages/Titles.php:21
|
502 |
#: inc/admin/sections/Sitemaps.php:169
|
503 |
#: inc/admin/sections/Titles.php:48
|
504 |
-
#: inc/admin/wizard/admin-wizard.php:
|
505 |
-
#: inc/admin/wizard/admin-wizard.php:
|
506 |
-
#: inc/admin/wizard/admin-wizard.php:
|
507 |
msgid "Post Types"
|
508 |
msgstr ""
|
509 |
|
@@ -511,9 +511,9 @@ msgstr ""
|
|
511 |
#: inc/admin/admin-pages/Titles.php:23
|
512 |
#: inc/admin/sections/Sitemaps.php:184
|
513 |
#: inc/admin/sections/Titles.php:78
|
514 |
-
#: inc/admin/wizard/admin-wizard.php:
|
515 |
-
#: inc/admin/wizard/admin-wizard.php:
|
516 |
-
#: inc/admin/wizard/admin-wizard.php:
|
517 |
msgid "Taxonomies"
|
518 |
msgstr ""
|
519 |
|
@@ -529,8 +529,8 @@ msgstr ""
|
|
529 |
|
530 |
#: inc/admin/admin-pages/Social.php:19
|
531 |
#: inc/admin/sections/Social.php:34
|
532 |
-
#: inc/admin/wizard/admin-wizard.php:
|
533 |
-
#: inc/admin/wizard/admin-wizard.php:
|
534 |
msgid "Your social accounts"
|
535 |
msgstr ""
|
536 |
|
@@ -546,232 +546,129 @@ msgstr ""
|
|
546 |
|
547 |
#: inc/admin/admin-pages/Titles.php:22
|
548 |
#: inc/admin/sections/Titles.php:93
|
549 |
-
#: inc/admin/wizard/admin-wizard.php:
|
550 |
-
#: inc/admin/wizard/admin-wizard.php:
|
551 |
-
#: inc/admin/wizard/admin-wizard.php:
|
552 |
msgid "Archives"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: inc/admin/admin-pages/Tools.php:
|
556 |
-
#: inc/admin/admin-pages/Tools.php:47
|
557 |
msgid "Data"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: inc/admin/admin-pages/Tools.php:
|
561 |
-
#: inc/admin/admin-pages/Tools.php:
|
562 |
msgid "Plugins"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: inc/admin/admin-pages/Tools.php:
|
566 |
msgid "Video sitemap"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: inc/admin/admin-pages/Tools.php:
|
570 |
-
#: inc/admin/admin-pages/Tools.php:
|
571 |
msgid "Reset"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: inc/admin/admin-pages/Tools.php:
|
575 |
-
msgid "
|
576 |
-
msgstr ""
|
577 |
-
|
578 |
-
#: inc/admin/admin-pages/Tools.php:55
|
579 |
-
msgid "Upload a CSV file to quickly import post (post, page, single post type) and term metadata."
|
580 |
-
msgstr ""
|
581 |
-
|
582 |
-
#: inc/admin/admin-pages/Tools.php:56
|
583 |
-
msgid "Learn how to import SEO metadata from a CSV file"
|
584 |
-
msgstr ""
|
585 |
-
|
586 |
-
#: inc/admin/admin-pages/Tools.php:60
|
587 |
-
#: inc/admin/admin-pages/Tools.php:106
|
588 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:104
|
589 |
-
#: src/Helpers/ContentAnalysis.php:48
|
590 |
-
#: app/react/components/Forms/MetaTitleDescription/index.js:83
|
591 |
-
#: app/react/services/content-analysis/metaTitle.js:111
|
592 |
-
msgid "Meta title"
|
593 |
-
msgstr ""
|
594 |
-
|
595 |
-
#: inc/admin/admin-pages/Tools.php:63
|
596 |
-
#: inc/admin/admin-pages/Tools.php:109
|
597 |
-
#: inc/admin/callbacks/Titles.php:60
|
598 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:143
|
599 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:144
|
600 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:150
|
601 |
-
#: inc/admin/migrate/MigrationTools.php:19
|
602 |
-
#: inc/admin/settings/Titles.php:32
|
603 |
-
#: inc/functions/options-advanced-admin.php:794
|
604 |
-
#: src/Helpers/ContentAnalysis.php:53
|
605 |
-
#: app/react/components/Forms/MetaTitleDescription/index.js:149
|
606 |
-
#: app/react/components/Forms/MetaTitleDescription/index.js:151
|
607 |
-
#: app/react/services/content-analysis/metaDescription.js:118
|
608 |
-
msgid "Meta description"
|
609 |
-
msgstr ""
|
610 |
-
|
611 |
-
#: inc/admin/admin-pages/Tools.php:66
|
612 |
-
#: inc/admin/admin-pages/Tools.php:112
|
613 |
-
msgid "Meta robots (noindex, nofollow...)"
|
614 |
-
msgstr ""
|
615 |
-
|
616 |
-
#: inc/admin/admin-pages/Tools.php:69
|
617 |
-
#: inc/admin/admin-pages/Tools.php:115
|
618 |
-
msgid "Facebook Open Graph tags (title, description, image)"
|
619 |
-
msgstr ""
|
620 |
-
|
621 |
-
#: inc/admin/admin-pages/Tools.php:72
|
622 |
-
#: inc/admin/admin-pages/Tools.php:118
|
623 |
-
msgid "Twitter cards tags (title, description, image)"
|
624 |
-
msgstr ""
|
625 |
-
|
626 |
-
#: inc/admin/admin-pages/Tools.php:75
|
627 |
-
#: inc/admin/admin-pages/Tools.php:121
|
628 |
-
msgid "Redirection (enable, login status, type, URL)"
|
629 |
-
msgstr ""
|
630 |
-
|
631 |
-
#: inc/admin/admin-pages/Tools.php:78
|
632 |
-
#: inc/admin/admin-pages/Tools.php:124
|
633 |
-
#: inc/admin/migrate/MigrationTools.php:34
|
634 |
-
msgid "Primary category"
|
635 |
-
msgstr ""
|
636 |
-
|
637 |
-
#: inc/admin/admin-pages/Tools.php:81
|
638 |
-
#: inc/admin/admin-pages/Tools.php:127
|
639 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:321
|
640 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:322
|
641 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:328
|
642 |
-
#: inc/admin/migrate/MigrationTools.php:28
|
643 |
-
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:263
|
644 |
-
#: src/Helpers/ContentAnalysis.php:13
|
645 |
-
#: src/Helpers/Metas/RobotSettings.php:100
|
646 |
-
#: app/react/layout/Main/components/Advanced/index.js:145
|
647 |
-
#: app/react/services/content-analysis/canonicalUrl.js:112
|
648 |
-
msgid "Canonical URL"
|
649 |
-
msgstr ""
|
650 |
-
|
651 |
-
#: inc/admin/admin-pages/Tools.php:84
|
652 |
-
#: inc/admin/admin-pages/Tools.php:130
|
653 |
-
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:36
|
654 |
-
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:37
|
655 |
-
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:41
|
656 |
-
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:564
|
657 |
-
#: inc/functions/options-advanced-admin.php:803
|
658 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:365
|
659 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:367
|
660 |
-
msgid "Target keywords"
|
661 |
-
msgstr ""
|
662 |
-
|
663 |
-
#: inc/admin/admin-pages/Tools.php:90
|
664 |
-
msgid "Run the importer"
|
665 |
-
msgstr ""
|
666 |
-
|
667 |
-
#: inc/admin/admin-pages/Tools.php:98
|
668 |
-
msgid "Export metadata to a CSV"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: inc/admin/admin-pages/Tools.php:
|
672 |
-
msgid "Export
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: inc/admin/admin-pages/Tools.php:
|
676 |
-
msgid "
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: inc/admin/admin-pages/Tools.php:
|
680 |
-
#: inc/admin/admin-pages/Tools.php:170
|
681 |
msgid "Export"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: inc/admin/admin-pages/Tools.php:
|
685 |
-
msgid "Export plugin settings"
|
686 |
-
msgstr ""
|
687 |
-
|
688 |
-
#: inc/admin/admin-pages/Tools.php:162
|
689 |
-
msgid "Export the plugin settings for this site as a .json file. This allows you to easily import the configuration into another site."
|
690 |
-
msgstr ""
|
691 |
-
|
692 |
-
#: inc/admin/admin-pages/Tools.php:178
|
693 |
msgid "Import plugin settings"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: inc/admin/admin-pages/Tools.php:
|
697 |
msgid "Import the plugin settings from a .json file. This file can be obtained by exporting the settings on another site using the form above."
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: inc/admin/admin-pages/Tools.php:
|
701 |
msgid "Import"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: inc/admin/admin-pages/Tools.php:
|
705 |
msgid "Import completed!"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: inc/admin/admin-pages/Tools.php:
|
709 |
msgid "Import posts and terms metadata from"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: inc/admin/admin-pages/Tools.php:
|
713 |
-
#: inc/admin/wizard/admin-wizard.php:
|
714 |
msgid "Select an option"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: inc/admin/admin-pages/Tools.php:
|
718 |
-
#: inc/admin/wizard/admin-wizard.php:
|
719 |
msgid "You don't have to enable the selected SEO plugin to run the import."
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: inc/admin/admin-pages/Tools.php:
|
723 |
msgid "Redirections feature is disabled. Please activate it from the <strong>PRO page</strong>."
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: inc/admin/admin-pages/Tools.php:
|
727 |
msgid "Activate Redirections"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: inc/admin/admin-pages/Tools.php:
|
731 |
msgid "Video XML sitemap"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: inc/admin/admin-pages/Tools.php:
|
735 |
msgid "Add YouTube videos to the XML Video sitemap"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: inc/admin/admin-pages/Tools.php:
|
739 |
msgid "Click the button below to automatically scan all your content for YouTube URL and add them to the video XML sitemap. We automatically add YouTube videos each time you save a post."
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: inc/admin/admin-pages/Tools.php:
|
743 |
msgid "Regenerate"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: inc/admin/admin-pages/Tools.php:
|
747 |
msgid "XML Video sitemap feature is disabled. Please activate it from the <strong>XML sitemaps settings page</strong>."
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: inc/admin/admin-pages/Tools.php:
|
751 |
msgid "Activate XML Video sitemap"
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: inc/admin/admin-pages/Tools.php:
|
755 |
msgid "Reset All Notices From Notifications Center"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: inc/admin/admin-pages/Tools.php:
|
759 |
msgid "By clicking Reset Notices, all notices in the notifications center will be set to their initial status."
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: inc/admin/admin-pages/Tools.php:
|
763 |
msgid "Reset notices"
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: inc/admin/admin-pages/Tools.php:
|
767 |
msgid "Reset All Settings"
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: inc/admin/admin-pages/Tools.php:
|
771 |
msgid "<strong>WARNING:</strong> Delete all options related to this plugin in your database."
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: inc/admin/admin-pages/Tools.php:
|
775 |
msgid "Reset settings"
|
776 |
msgstr ""
|
777 |
|
@@ -1010,126 +907,58 @@ msgstr ""
|
|
1010 |
msgid "Dismiss"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: inc/admin/blocks/insights.php:
|
1014 |
msgid "Site overview"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#: inc/admin/blocks/insights.php:
|
1018 |
-
msgid "
|
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:
|
1058 |
-
msgid "
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: inc/admin/blocks/insights.php:
|
1062 |
msgid "Google Page Speed Score"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: inc/admin/blocks/insights.php:
|
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:
|
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:
|
1074 |
msgid "Core Web Vitals Assessment: "
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: inc/admin/blocks/insights.php:
|
1078 |
msgid "Passed"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: inc/admin/blocks/insights.php:
|
1082 |
msgid "No data found"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: inc/admin/blocks/insights.php:
|
1086 |
msgid "Failed"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: inc/admin/blocks/insights.php:
|
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:
|
1094 |
msgid "No data available."
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: inc/admin/blocks/insights.php:
|
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 ""
|
@@ -1247,10 +1076,10 @@ msgid "Your site is using the AMP official plugin. To track users with Google An
|
|
1247 |
msgstr ""
|
1248 |
|
1249 |
#: inc/admin/blocks/notifications-center.php:158
|
1250 |
-
#: inc/admin/blocks/notifications-center.php:
|
1251 |
-
#: inc/admin/blocks/notifications-center.php:
|
1252 |
-
#: inc/admin/blocks/notifications-center.php:
|
1253 |
-
#: inc/admin/blocks/notifications-center.php:
|
1254 |
msgid "Medium impact"
|
1255 |
msgstr ""
|
1256 |
|
@@ -1258,22 +1087,22 @@ msgstr ""
|
|
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:
|
1262 |
-
#: inc/admin/blocks/notifications-center.php:
|
1263 |
-
#: inc/admin/blocks/notifications-center.php:
|
1264 |
-
#: inc/admin/blocks/notifications-center.php:
|
1265 |
-
#: inc/admin/blocks/notifications-center.php:
|
1266 |
-
#: inc/admin/blocks/notifications-center.php:
|
1267 |
-
#: inc/admin/blocks/notifications-center.php:
|
1268 |
-
#: inc/admin/blocks/notifications-center.php:
|
1269 |
-
#: inc/admin/blocks/notifications-center.php:
|
1270 |
-
#: inc/admin/blocks/notifications-center.php:
|
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/sections/InstantIndexing.php:43
|
1278 |
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:30
|
1279 |
msgid "Fix this!"
|
@@ -1291,24 +1120,24 @@ msgstr ""
|
|
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:
|
1295 |
-
#: inc/admin/blocks/notifications-center.php:
|
1296 |
-
#: inc/admin/blocks/notifications-center.php:
|
1297 |
-
#: inc/admin/blocks/notifications-center.php:
|
1298 |
-
#: inc/admin/blocks/notifications-center.php:
|
1299 |
-
#: inc/admin/blocks/notifications-center.php:
|
1300 |
-
#: inc/admin/blocks/notifications-center.php:
|
1301 |
-
#: inc/admin/blocks/notifications-center.php:
|
1302 |
-
#: inc/admin/blocks/notifications-center.php:
|
1303 |
-
#: inc/admin/blocks/notifications-center.php:
|
1304 |
-
#: inc/admin/blocks/notifications-center.php:
|
1305 |
-
#: inc/admin/blocks/notifications-center.php:
|
1306 |
-
#: inc/admin/blocks/notifications-center.php:
|
1307 |
-
#: inc/admin/blocks/notifications-center.php:
|
1308 |
-
#: inc/admin/blocks/notifications-center.php:
|
1309 |
-
#: inc/admin/blocks/notifications-center.php:
|
1310 |
-
#: inc/admin/blocks/notifications-center.php:
|
1311 |
-
#: inc/admin/blocks/notifications-center.php:
|
1312 |
msgid "High impact"
|
1313 |
msgstr ""
|
1314 |
|
@@ -1329,9 +1158,9 @@ msgid "This error indicates that your theme uses a deprecated function to genera
|
|
1329 |
msgstr ""
|
1330 |
|
1331 |
#: inc/admin/blocks/notifications-center.php:249
|
1332 |
-
#: inc/admin/blocks/notifications-center.php:
|
1333 |
-
#: inc/admin/blocks/notifications-center.php:
|
1334 |
-
#: inc/admin/blocks/notifications-center.php:
|
1335 |
#: inc/admin/callbacks/Analytics.php:605
|
1336 |
#: inc/admin/callbacks/Analytics.php:702
|
1337 |
#: inc/admin/callbacks/Analytics.php:730
|
@@ -1350,212 +1179,212 @@ 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:
|
1354 |
-
#: inc/admin/blocks/notifications-center.php:
|
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:
|
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:
|
1364 |
msgid "Migrate!"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: inc/admin/blocks/notifications-center.php:
|
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:
|
1373 |
msgid "You have enabled 404 cleaning BUT the scheduled task is not running."
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: inc/admin/blocks/notifications-center.php:
|
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:
|
1381 |
msgid "Enfold theme is not correctly setup for SEO!"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
-
#: inc/admin/blocks/notifications-center.php:
|
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:
|
1389 |
msgid "Global meta title missing for several custom post types!"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
-
#: inc/admin/blocks/notifications-center.php:
|
1393 |
msgid "Global meta description missing for several custom post types!"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
-
#: inc/admin/blocks/notifications-center.php:
|
1397 |
msgid "Global meta title missing for several taxonomies!"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: inc/admin/blocks/notifications-center.php:
|
1401 |
msgid "Global meta description missing for several taxonomies!"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#: inc/admin/blocks/notifications-center.php:
|
1405 |
msgid "Your site doesn't use an SSL certificate!"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#: inc/admin/blocks/notifications-center.php:
|
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:
|
1413 |
msgid "Low impact"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
-
#: inc/admin/blocks/notifications-center.php:
|
1417 |
msgid "PHP module \"DOM\" is missing on your server."
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#: inc/admin/blocks/notifications-center.php:
|
1421 |
-
#: inc/admin/blocks/notifications-center.php:
|
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:
|
1426 |
msgid "PHP module \"mbstring\" is missing on your server."
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: inc/admin/blocks/notifications-center.php:
|
1430 |
msgid "Your site is not visible to Search Engines!"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
-
#: inc/admin/blocks/notifications-center.php:
|
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:
|
1438 |
msgid "Your site title is empty!"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: inc/admin/blocks/notifications-center.php:
|
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:
|
1446 |
msgid "Your permalinks are not SEO Friendly! Enable pretty permalinks to fix this."
|
1447 |
msgstr ""
|
1448 |
|
1449 |
-
#: inc/admin/blocks/notifications-center.php:
|
1450 |
-
#: inc/admin/blocks/notifications-center.php:
|
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:
|
1455 |
msgid "Your RSS feed shows full text!"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: inc/admin/blocks/notifications-center.php:
|
1459 |
msgid "You have activated Google Analytics tracking without adding identifiers!"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: inc/admin/blocks/notifications-center.php:
|
1463 |
msgid "Google Analytics will not track your visitors until you finish the configuration."
|
1464 |
msgstr ""
|
1465 |
|
1466 |
-
#: inc/admin/blocks/notifications-center.php:
|
1467 |
msgid "Break comments into pages is ON!"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
-
#: inc/admin/blocks/notifications-center.php:
|
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:
|
1475 |
msgid "Disable this!"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
-
#: inc/admin/blocks/notifications-center.php:
|
1479 |
msgid "Display more posts per page on homepage and archives"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
-
#: inc/admin/blocks/notifications-center.php:
|
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:
|
1487 |
msgid "You don't have an XML Sitemap!"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
-
#: inc/admin/blocks/notifications-center.php:
|
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:
|
1495 |
msgid "Do you have a Google My Business page? It's free!"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#: inc/admin/blocks/notifications-center.php:
|
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:
|
1503 |
msgid "Create your page now!"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
-
#: inc/admin/blocks/notifications-center.php:
|
1507 |
msgid "Add your site to Google. It's free!"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
-
#: inc/admin/blocks/notifications-center.php:
|
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:
|
1515 |
msgid "Add your site to Search Console!"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
-
#: inc/admin/blocks/notifications-center.php:
|
1519 |
msgid "Structured data types is not correctly enabled"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: inc/admin/blocks/notifications-center.php:
|
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:
|
1527 |
msgid "You have to enter your licence key to get updates and support"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#: inc/admin/blocks/notifications-center.php:
|
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:
|
1535 |
msgid "Take your SEO to the next level with SEOPress PRO!"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
-
#: inc/admin/blocks/notifications-center.php:
|
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:
|
1543 |
msgid "Upgrade now!"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
-
#: inc/admin/blocks/notifications-center.php:
|
1547 |
msgid "A physical robots.txt file has been found"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
-
#: inc/admin/blocks/notifications-center.php:
|
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:
|
1555 |
msgid "Your site is not indexable!"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
-
#: inc/admin/blocks/notifications-center.php:
|
1559 |
msgid "Your robots.txt file contains a rule that prevents search engines to index your all site: <code>Disallow: /</code>"
|
1560 |
msgstr ""
|
1561 |
|
@@ -1587,249 +1416,257 @@ msgstr ""
|
|
1587 |
msgid "Add Structured Data Types to increase visibility in SERPs"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: inc/admin/callbacks/Advanced.php:
|
1591 |
-
msgid "Remove ?replytocom link in source code"
|
|
|
|
|
|
|
|
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: inc/admin/callbacks/Advanced.php:
|
1595 |
msgid "Remove noreferrer link attribute in source code"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: inc/admin/callbacks/Advanced.php:
|
1599 |
msgid "Useful for affiliate links (eg: Amazon)."
|
1600 |
msgstr ""
|
1601 |
|
1602 |
-
#: inc/admin/callbacks/Advanced.php:
|
1603 |
msgid "Add TINYMCE editor to term description"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
-
#: inc/admin/callbacks/Advanced.php:
|
1607 |
-
#: inc/admin/callbacks/Advanced.php:
|
1608 |
-
#: inc/admin/wizard/admin-wizard.php:
|
1609 |
-
#: inc/admin/wizard/admin-wizard.php:
|
1610 |
msgid "Remove <strong>%s</strong> in your permalinks"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: inc/admin/callbacks/Advanced.php:
|
1614 |
msgid "e.g. \"https://example.com/category/my-post-category/\" => \"https://example.com/my-post-category/\""
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#: inc/admin/callbacks/Advanced.php:
|
1618 |
-
#: inc/admin/callbacks/Advanced.php:
|
1619 |
msgid "You have to flush your permalinks each time you change this setting."
|
1620 |
msgstr ""
|
1621 |
|
1622 |
-
#: inc/admin/callbacks/Advanced.php:
|
1623 |
msgid "e.g. \"https://example.com/product-category/my-product-category/\" => \"https://example.com/my-product-category/\""
|
1624 |
msgstr ""
|
1625 |
|
1626 |
-
#: inc/admin/callbacks/Advanced.php:
|
1627 |
msgid "Make sure you don't have identical URLs after activating this option to prevent conflicts."
|
1628 |
msgstr ""
|
1629 |
|
1630 |
-
#: inc/admin/callbacks/Advanced.php:
|
1631 |
msgid "You need to enable <strong>WooCommerce</strong> to apply these settings."
|
1632 |
msgstr ""
|
1633 |
|
1634 |
-
#: inc/admin/callbacks/Advanced.php:
|
1635 |
msgid "Remove WordPress meta generator in source code"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#: inc/admin/callbacks/Advanced.php:
|
|
|
|
|
|
|
|
|
1639 |
msgid "Remove hentry post class to prevent Google from seeing this as structured data (schema)"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
-
#: inc/admin/callbacks/Advanced.php:
|
1643 |
msgid "Remove comment author URL in comments if the website is filled from profile page"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
-
#: inc/admin/callbacks/Advanced.php:
|
1647 |
msgid "Remove website field from comment form to reduce spam"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#: inc/admin/callbacks/Advanced.php:
|
1651 |
-
msgid "Prevent search engines to follow / index the link to the comments form
|
1652 |
msgstr ""
|
1653 |
|
1654 |
-
#: inc/admin/callbacks/Advanced.php:
|
1655 |
-
msgid "Remove WordPress shortlink meta tag in source code
|
1656 |
msgstr ""
|
1657 |
|
1658 |
-
#: inc/admin/callbacks/Advanced.php:
|
1659 |
-
msgid "Remove Windows Live Writer meta tag in source code
|
1660 |
msgstr ""
|
1661 |
|
1662 |
-
#: inc/admin/callbacks/Advanced.php:
|
1663 |
-
msgid "Remove Really Simple Discovery meta tag in source code
|
1664 |
msgstr ""
|
1665 |
|
1666 |
-
#: inc/admin/callbacks/Advanced.php:
|
1667 |
msgid "WordPress Site Health feature will return a HTTPS warning if you enable this option. This is a false positive of course."
|
1668 |
msgstr ""
|
1669 |
|
1670 |
-
#: inc/admin/callbacks/Advanced.php:
|
1671 |
msgid "Enter Google meta value site verification"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
-
#: inc/admin/callbacks/Advanced.php:
|
1675 |
#: inc/admin/settings/Advanced.php:120
|
1676 |
msgid "Google site verification"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: inc/admin/callbacks/Advanced.php:
|
1680 |
msgid "If your site is already verified in <strong>Google Search Console</strong>, you can leave this field empty."
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: inc/admin/callbacks/Advanced.php:
|
1684 |
msgid "Enter Bing meta value site verification"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: inc/admin/callbacks/Advanced.php:
|
1688 |
#: inc/admin/settings/Advanced.php:128
|
1689 |
msgid "Bing site verification"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
-
#: inc/admin/callbacks/Advanced.php:
|
1693 |
msgid "If your site is already verified in <strong>Bing Webmaster tools</strong>, you can leave this field empty."
|
1694 |
msgstr ""
|
1695 |
|
1696 |
-
#: inc/admin/callbacks/Advanced.php:
|
1697 |
msgid "Enter Pinterest meta value site verification"
|
1698 |
msgstr ""
|
1699 |
|
1700 |
-
#: inc/admin/callbacks/Advanced.php:
|
1701 |
#: inc/admin/settings/Advanced.php:136
|
1702 |
msgid "Pinterest site verification"
|
1703 |
msgstr ""
|
1704 |
|
1705 |
-
#: inc/admin/callbacks/Advanced.php:
|
1706 |
#: inc/admin/settings/Advanced.php:144
|
1707 |
msgid "Yandex site verification"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
-
#: inc/admin/callbacks/Advanced.php:
|
1711 |
msgid "Enter Yandex meta value site verification"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
-
#: inc/admin/callbacks/Advanced.php:
|
1715 |
msgid "Remove SEO from Admin Bar in backend and frontend"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
-
#: inc/admin/callbacks/Advanced.php:
|
1719 |
msgid "Enable the universal SEO metabox for the Block Editor (Gutenberg)"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
-
#: inc/admin/callbacks/Advanced.php:
|
1723 |
msgid "Disable the universal SEO metabox"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
-
#: inc/admin/callbacks/Advanced.php:
|
1727 |
msgid "Learn more about how we interface with all page builders to optimize your productivity"
|
1728 |
msgstr ""
|
1729 |
|
1730 |
-
#: inc/admin/callbacks/Advanced.php:
|
1731 |
msgid "Remove noindex item from Admin Bar in backend and frontend"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
-
#: inc/admin/callbacks/Advanced.php:
|
1735 |
msgid "High priority (top)"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
-
#: inc/admin/callbacks/Advanced.php:
|
1739 |
msgid "Normal priority (default)"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
-
#: inc/admin/callbacks/Advanced.php:
|
1743 |
msgid "Low priority"
|
1744 |
msgstr ""
|
1745 |
|
1746 |
-
#: inc/admin/callbacks/Advanced.php:
|
1747 |
msgid "Automatic tab (default)"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
-
#: inc/admin/callbacks/Advanced.php:
|
1751 |
msgid "Manual tab"
|
1752 |
msgstr ""
|
1753 |
|
1754 |
-
#: inc/admin/callbacks/Advanced.php:
|
1755 |
msgid "Hide Notifications Center in SEO Dashboard page"
|
1756 |
msgstr ""
|
1757 |
|
1758 |
-
#: inc/admin/callbacks/Advanced.php:
|
1759 |
msgid "Hide SEO News in SEO Dashboard page"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
-
#: inc/admin/callbacks/Advanced.php:
|
1763 |
msgid "Hide Site Overview in SEO Dashboard page"
|
1764 |
msgstr ""
|
1765 |
|
1766 |
-
#: inc/admin/callbacks/Advanced.php:
|
1767 |
msgid "Add title column"
|
1768 |
msgstr ""
|
1769 |
|
1770 |
-
#: inc/admin/callbacks/Advanced.php:
|
1771 |
msgid "Add meta description column"
|
1772 |
msgstr ""
|
1773 |
|
1774 |
-
#: inc/admin/callbacks/Advanced.php:
|
1775 |
msgid "Add redirection enable column"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
-
#: inc/admin/callbacks/Advanced.php:
|
1779 |
msgid "Add redirection URL column"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
-
#: inc/admin/callbacks/Advanced.php:
|
1783 |
msgid "Add canonical URL column"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
-
#: inc/admin/callbacks/Advanced.php:
|
1787 |
msgid "Add target keyword column"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
-
#: inc/admin/callbacks/Advanced.php:
|
1791 |
msgid "Display noindex status"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
-
#: inc/admin/callbacks/Advanced.php:
|
1795 |
msgid "Display nofollow status"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
-
#: inc/admin/callbacks/Advanced.php:
|
1799 |
msgid "Display total number of words in content"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
-
#: inc/admin/callbacks/Advanced.php:
|
1803 |
msgid "Display Page Speed column to check performances"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
-
#: inc/admin/callbacks/Advanced.php:
|
1807 |
msgid "Display SEO Insights column to check rankings"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
-
#: inc/admin/callbacks/Advanced.php:
|
1811 |
msgid "Display Content Analysis results column (\"Good\" or \"Should be improved\")"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
-
#: inc/admin/callbacks/Advanced.php:
|
1815 |
#: inc/admin/settings/Advanced.php:203
|
1816 |
msgid "Remove Content Analysis Metabox"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
-
#: inc/admin/callbacks/Advanced.php:
|
1820 |
msgid "Remove Genesis SEO Metabox"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
-
#: inc/admin/callbacks/Advanced.php:
|
1824 |
msgid "Remove Genesis SEO link in WP Admin Menu"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
-
#: inc/admin/callbacks/Advanced.php:
|
1828 |
msgid "Remove the advice if None schema selected"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
-
#: inc/admin/callbacks/Advanced.php:
|
1832 |
-
#: inc/admin/callbacks/Advanced.php:
|
1833 |
msgid "Hook to filter structured data types metabox call by post type - new window"
|
1834 |
msgstr ""
|
1835 |
|
@@ -2375,22 +2212,22 @@ msgid "Enabling Download & Outlink tracking"
|
|
2375 |
msgstr ""
|
2376 |
|
2377 |
#: inc/admin/callbacks/Analytics.php:1272
|
2378 |
-
msgid "By default, any file ending with one of these extensions will be considered a \"download\" in the Matomo interface:
|
2379 |
msgstr ""
|
2380 |
|
2381 |
-
#: inc/admin/callbacks/Analytics.php:
|
2382 |
msgid "Disabling all heatmaps and session recordings"
|
2383 |
msgstr ""
|
2384 |
|
2385 |
-
#: inc/admin/callbacks/Analytics.php:
|
2386 |
msgid "Add Microsoft Clarity code to your site"
|
2387 |
msgstr ""
|
2388 |
|
2389 |
-
#: inc/admin/callbacks/Analytics.php:
|
2390 |
msgid "Enter your Project ID"
|
2391 |
msgstr ""
|
2392 |
|
2393 |
-
#: inc/admin/callbacks/Analytics.php:
|
2394 |
msgid "Find your project ID"
|
2395 |
msgstr ""
|
2396 |
|
@@ -2399,7 +2236,7 @@ msgid "Redirect attachment pages to post parent (or homepage if none)"
|
|
2399 |
msgstr ""
|
2400 |
|
2401 |
#: inc/admin/callbacks/ImageSEO.php:36
|
2402 |
-
#: inc/admin/wizard/admin-wizard.php:
|
2403 |
msgid "Redirect attachment pages to their file URL (https://www.example.com/my-image-file.jpg)"
|
2404 |
msgstr ""
|
2405 |
|
@@ -2408,7 +2245,7 @@ msgid "If this option is checked, it will take precedence over the redirection o
|
|
2408 |
msgstr ""
|
2409 |
|
2410 |
#: inc/admin/callbacks/ImageSEO.php:60
|
2411 |
-
msgid "When
|
2412 |
msgstr ""
|
2413 |
|
2414 |
#: inc/admin/callbacks/ImageSEO.php:64
|
@@ -2416,7 +2253,7 @@ msgid "e.g. \"ExãMple 1 cópy!.jpg\" => \"example-1-copy.jpg\""
|
|
2416 |
msgstr ""
|
2417 |
|
2418 |
#: inc/admin/callbacks/ImageSEO.php:84
|
2419 |
-
msgid "When
|
2420 |
msgstr ""
|
2421 |
|
2422 |
#: inc/admin/callbacks/ImageSEO.php:88
|
@@ -2424,7 +2261,7 @@ msgid "We use the product title for WooCommerce products."
|
|
2424 |
msgstr ""
|
2425 |
|
2426 |
#: inc/admin/callbacks/ImageSEO.php:108
|
2427 |
-
msgid "When
|
2428 |
msgstr ""
|
2429 |
|
2430 |
#: inc/admin/callbacks/ImageSEO.php:113
|
@@ -2440,11 +2277,11 @@ msgid "This setting will be applied to images without any alt text only on front
|
|
2440 |
msgstr ""
|
2441 |
|
2442 |
#: inc/admin/callbacks/ImageSEO.php:160
|
2443 |
-
msgid "When
|
2444 |
msgstr ""
|
2445 |
|
2446 |
#: inc/admin/callbacks/ImageSEO.php:179
|
2447 |
-
msgid "When
|
2448 |
msgstr ""
|
2449 |
|
2450 |
#: inc/admin/callbacks/InstantIndexing.php:43
|
@@ -2594,69 +2431,69 @@ msgstr ""
|
|
2594 |
msgid "Guide to enable a HTML Sitemap - new window"
|
2595 |
msgstr ""
|
2596 |
|
2597 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2598 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2599 |
msgid "Include"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2603 |
msgid "You should never include <strong>attachment</strong> post type in your sitemap. Be careful if you checked this."
|
2604 |
msgstr ""
|
2605 |
|
2606 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2607 |
msgid "eg: 2, 28, 68"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2611 |
#: inc/admin/settings/Sitemaps.php:98
|
2612 |
msgid "Enter a post, page or custom post type ID(s) to display the sitemap"
|
2613 |
msgstr ""
|
2614 |
|
2615 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2616 |
msgid "eg: 13, 8, 38"
|
2617 |
msgstr ""
|
2618 |
|
2619 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2620 |
#: inc/admin/settings/Sitemaps.php:106
|
2621 |
msgid "Exclude some Posts, Pages, Custom Post Types or Terms IDs"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2625 |
msgid "DESC (descending order from highest to lowest values (3, 2, 1; c, b, a))"
|
2626 |
msgstr ""
|
2627 |
|
2628 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2629 |
msgid "ASC (ascending order from lowest to highest values (1, 2, 3; a, b, c))"
|
2630 |
msgstr ""
|
2631 |
|
2632 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2633 |
msgid "Default (date)"
|
2634 |
msgstr ""
|
2635 |
|
2636 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2637 |
msgid "Modified date"
|
2638 |
msgstr ""
|
2639 |
|
2640 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2641 |
msgid "Post ID"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2645 |
msgid "Menu order"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2649 |
msgid "Disable date after each post, page, post type?"
|
2650 |
msgstr ""
|
2651 |
|
2652 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2653 |
msgid "Remove links from archive pages (eg: Products)"
|
2654 |
msgstr ""
|
2655 |
|
2656 |
#: inc/admin/callbacks/Social.php:15
|
2657 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:346
|
2658 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:286
|
2659 |
-
#: inc/admin/wizard/admin-wizard.php:
|
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
|
@@ -2664,12 +2501,12 @@ msgid "None (will disable this feature)"
|
|
2664 |
msgstr ""
|
2665 |
|
2666 |
#: inc/admin/callbacks/Social.php:20
|
2667 |
-
#: inc/admin/wizard/admin-wizard.php:
|
2668 |
msgid "Person"
|
2669 |
msgstr ""
|
2670 |
|
2671 |
#: inc/admin/callbacks/Social.php:25
|
2672 |
-
#: inc/admin/wizard/admin-wizard.php:
|
2673 |
msgid "Organization"
|
2674 |
msgstr ""
|
2675 |
|
@@ -2679,13 +2516,13 @@ msgstr ""
|
|
2679 |
|
2680 |
#: inc/admin/callbacks/Social.php:40
|
2681 |
#: inc/admin/settings/Social.php:24
|
2682 |
-
#: inc/admin/wizard/admin-wizard.php:
|
2683 |
msgid "Your name/organization"
|
2684 |
msgstr ""
|
2685 |
|
2686 |
#: inc/admin/callbacks/Social.php:56
|
2687 |
#: inc/admin/settings/Social.php:32
|
2688 |
-
#: inc/admin/wizard/admin-wizard.php:
|
2689 |
msgid "Your photo/organization logo"
|
2690 |
msgstr ""
|
2691 |
|
@@ -2700,7 +2537,7 @@ msgstr ""
|
|
2700 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:430
|
2701 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:550
|
2702 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:915
|
2703 |
-
#: inc/admin/wizard/admin-wizard.php:
|
2704 |
msgid "Upload an Image"
|
2705 |
msgstr ""
|
2706 |
|
@@ -2766,7 +2603,7 @@ msgid "Hearing impaired supported"
|
|
2766 |
msgstr ""
|
2767 |
|
2768 |
#: inc/admin/callbacks/Social.php:200
|
2769 |
-
#: inc/admin/wizard/admin-wizard.php:
|
2770 |
msgid "eg: https://facebook.com/my-page-url"
|
2771 |
msgstr ""
|
2772 |
|
@@ -2776,7 +2613,7 @@ msgid "Facebook Page URL"
|
|
2776 |
msgstr ""
|
2777 |
|
2778 |
#: inc/admin/callbacks/Social.php:211
|
2779 |
-
#: inc/admin/wizard/admin-wizard.php:
|
2780 |
msgid "eg: @my_twitter_account"
|
2781 |
msgstr ""
|
2782 |
|
@@ -2785,49 +2622,49 @@ msgid "Twitter Page URL"
|
|
2785 |
msgstr ""
|
2786 |
|
2787 |
#: inc/admin/callbacks/Social.php:222
|
2788 |
-
#: inc/admin/wizard/admin-wizard.php:
|
2789 |
msgid "eg: https://pinterest.com/my-page-url/"
|
2790 |
msgstr ""
|
2791 |
|
2792 |
#: inc/admin/callbacks/Social.php:222
|
2793 |
#: inc/admin/settings/Social.php:89
|
2794 |
-
#: inc/admin/wizard/admin-wizard.php:
|
2795 |
#: src/Tags/Schema/SocialAccount/Pinterest.php:15
|
2796 |
msgid "Pinterest URL"
|
2797 |
msgstr ""
|
2798 |
|
2799 |
#: inc/admin/callbacks/Social.php:233
|
2800 |
-
#: inc/admin/wizard/admin-wizard.php:
|
2801 |
msgid "eg: https://www.instagram.com/my-page-url/"
|
2802 |
msgstr ""
|
2803 |
|
2804 |
#: inc/admin/callbacks/Social.php:233
|
2805 |
#: inc/admin/settings/Social.php:97
|
2806 |
-
#: inc/admin/wizard/admin-wizard.php:
|
2807 |
#: src/Tags/Schema/SocialAccount/Instagram.php:15
|
2808 |
msgid "Instagram URL"
|
2809 |
msgstr ""
|
2810 |
|
2811 |
#: inc/admin/callbacks/Social.php:244
|
2812 |
-
#: inc/admin/wizard/admin-wizard.php:
|
2813 |
msgid "eg: https://www.youtube.com/my-channel-url"
|
2814 |
msgstr ""
|
2815 |
|
2816 |
#: inc/admin/callbacks/Social.php:244
|
2817 |
#: inc/admin/settings/Social.php:105
|
2818 |
-
#: inc/admin/wizard/admin-wizard.php:
|
2819 |
#: src/Tags/Schema/SocialAccount/Youtube.php:15
|
2820 |
msgid "YouTube URL"
|
2821 |
msgstr ""
|
2822 |
|
2823 |
#: inc/admin/callbacks/Social.php:255
|
2824 |
-
#: inc/admin/wizard/admin-wizard.php:
|
2825 |
msgid "eg: http://linkedin.com/company/my-company-url/"
|
2826 |
msgstr ""
|
2827 |
|
2828 |
#: inc/admin/callbacks/Social.php:255
|
2829 |
#: inc/admin/settings/Social.php:113
|
2830 |
-
#: inc/admin/wizard/admin-wizard.php:
|
2831 |
#: src/Tags/Schema/SocialAccount/Linkedin.php:15
|
2832 |
msgid "LinkedIn URL"
|
2833 |
msgstr ""
|
@@ -2924,7 +2761,7 @@ msgid "Minimum size: 144x144px (300x157px with large card enabled), ideal ratio
|
|
2924 |
msgstr ""
|
2925 |
|
2926 |
#: inc/admin/callbacks/Social.php:549
|
2927 |
-
#: seopress.php:
|
2928 |
msgid "Default"
|
2929 |
msgstr ""
|
2930 |
|
@@ -2942,18 +2779,18 @@ msgstr ""
|
|
2942 |
|
2943 |
#: inc/admin/callbacks/Titles.php:13
|
2944 |
#: inc/admin/callbacks/Titles.php:42
|
2945 |
-
#: inc/admin/callbacks/Titles.php:
|
2946 |
-
#: inc/admin/callbacks/Titles.php:
|
2947 |
-
#: inc/admin/callbacks/Titles.php:
|
2948 |
-
#: inc/admin/callbacks/Titles.php:
|
2949 |
-
#: inc/admin/callbacks/Titles.php:
|
2950 |
-
#: inc/admin/callbacks/Titles.php:
|
2951 |
-
#: inc/admin/callbacks/Titles.php:
|
2952 |
-
#: inc/admin/callbacks/Titles.php:
|
2953 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:136
|
2954 |
#: inc/admin/page-builders/elementor/inc/controls/class-text-letter-counter-control.php:67
|
2955 |
#: inc/admin/settings/Titles.php:16
|
2956 |
-
#: inc/admin/wizard/admin-wizard.php:
|
2957 |
#: src/Tags/Separator.php:17
|
2958 |
msgid "Separator"
|
2959 |
msgstr ""
|
@@ -2971,357 +2808,386 @@ msgstr ""
|
|
2971 |
msgid "Site title"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
-
#: inc/admin/callbacks/Titles.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2975 |
msgid "This is a cool website about Wookiees"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
-
#: inc/admin/callbacks/Titles.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2979 |
msgid "Looking to edit your blog page?"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
-
#: inc/admin/callbacks/Titles.php:
|
2983 |
-
#: inc/admin/callbacks/Titles.php:
|
2984 |
-
#: inc/admin/callbacks/Titles.php:
|
2985 |
-
#: inc/admin/callbacks/Titles.php:
|
2986 |
msgid "Click to hide any SEO metaboxes / columns for this post type"
|
2987 |
msgstr ""
|
2988 |
|
2989 |
-
#: inc/admin/callbacks/Titles.php:
|
2990 |
-
#: inc/admin/callbacks/Titles.php:
|
2991 |
-
#: inc/admin/callbacks/Titles.php:
|
2992 |
msgid "Click to display any SEO metaboxes / columns for this post type"
|
2993 |
msgstr ""
|
2994 |
|
2995 |
-
#: inc/admin/callbacks/Titles.php:
|
2996 |
-
#: inc/admin/callbacks/Titles.php:
|
2997 |
-
#: inc/admin/callbacks/Titles.php:
|
2998 |
-
#: inc/admin/callbacks/Titles.php:
|
2999 |
-
#: inc/admin/callbacks/Titles.php:
|
3000 |
-
#: inc/admin/callbacks/Titles.php:
|
3001 |
-
#: inc/admin/callbacks/Titles.php:
|
3002 |
-
#: inc/admin/callbacks/Titles.php:
|
3003 |
msgid "Title template"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
-
#: inc/admin/callbacks/Titles.php:
|
3007 |
-
#: inc/admin/callbacks/Titles.php:
|
3008 |
-
#: inc/admin/callbacks/Titles.php:
|
3009 |
-
#: inc/admin/callbacks/Titles.php:
|
3010 |
-
#: inc/admin/callbacks/Titles.php:
|
3011 |
-
#: inc/admin/callbacks/Titles.php:
|
3012 |
-
#: inc/admin/callbacks/Titles.php:
|
3013 |
-
#: inc/admin/callbacks/Titles.php:
|
3014 |
msgid "Meta description template"
|
3015 |
msgstr ""
|
3016 |
|
3017 |
-
#: inc/admin/callbacks/Titles.php:
|
3018 |
msgid "Do not display this single post type in search engine results <strong>(noindex)</strong>"
|
3019 |
msgstr ""
|
3020 |
|
3021 |
-
#: inc/admin/callbacks/Titles.php:
|
3022 |
msgid "This custom post type is <strong>NOT</strong> excluded from your XML sitemaps despite the fact that it is set to <strong>NOINDEX</strong>. We recommend that you <a href=\"%s\">check this out here</a>."
|
3023 |
msgstr ""
|
3024 |
|
3025 |
-
#: inc/admin/callbacks/Titles.php:
|
3026 |
msgid "Do not follow links for this single post type <strong>(nofollow)</strong>"
|
3027 |
msgstr ""
|
3028 |
|
3029 |
-
#: inc/admin/callbacks/Titles.php:
|
3030 |
msgid "Display date in Google search results by adding <code>article:published_time</code> and <code>article:modified_time</code> meta?"
|
3031 |
msgstr ""
|
3032 |
|
3033 |
-
#: inc/admin/callbacks/Titles.php:
|
3034 |
msgid "Unchecking this doesn't prevent Google to display post date in search results."
|
3035 |
msgstr ""
|
3036 |
|
3037 |
-
#: inc/admin/callbacks/Titles.php:
|
3038 |
msgid "Display post thumbnail in Google Custom Search results?"
|
3039 |
msgstr ""
|
3040 |
|
3041 |
-
#: inc/admin/callbacks/Titles.php:
|
3042 |
msgid "This option does not apply to traditional search results. <a href=\"%s\" target=\"_blank\">Learn more</a>"
|
3043 |
msgstr ""
|
3044 |
|
3045 |
-
#: inc/admin/callbacks/Titles.php:
|
3046 |
msgid "BuddyPress groups"
|
3047 |
msgstr ""
|
3048 |
|
3049 |
-
#: inc/admin/callbacks/Titles.php:
|
3050 |
msgid "Do not display BuddyPress groups in search engine results <strong>(noindex)</strong>"
|
3051 |
msgstr ""
|
3052 |
|
3053 |
-
#: inc/admin/callbacks/Titles.php:
|
3054 |
-
#: inc/admin/callbacks/Titles.php:
|
3055 |
-
#: inc/admin/callbacks/Titles.php:
|
3056 |
-
#: inc/admin/callbacks/Titles.php:
|
3057 |
msgid "Click to hide any SEO metaboxes for this taxonomy"
|
3058 |
msgstr ""
|
3059 |
|
3060 |
-
#: inc/admin/callbacks/Titles.php:
|
3061 |
-
#: inc/admin/callbacks/Titles.php:
|
3062 |
-
#: inc/admin/callbacks/Titles.php:
|
3063 |
msgid "Click to display any SEO metaboxes for this taxonomy"
|
3064 |
msgstr ""
|
3065 |
|
3066 |
-
#: inc/admin/callbacks/Titles.php:
|
3067 |
#: src/Tags/CategoryTitle.php:15
|
3068 |
msgid "Category Title"
|
3069 |
msgstr ""
|
3070 |
|
3071 |
-
#: inc/admin/callbacks/Titles.php:
|
3072 |
#: src/Tags/TagTitle.php:15
|
3073 |
msgid "Tag Title"
|
3074 |
msgstr ""
|
3075 |
|
3076 |
-
#: inc/admin/callbacks/Titles.php:
|
3077 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:128
|
3078 |
#: src/Tags/TermTitle.php:15
|
3079 |
msgid "Term Title"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
-
#: inc/admin/callbacks/Titles.php:
|
3083 |
#: src/Tags/CategoryDescription.php:15
|
3084 |
msgid "Category Description"
|
3085 |
msgstr ""
|
3086 |
|
3087 |
-
#: inc/admin/callbacks/Titles.php:
|
3088 |
#: src/Tags/TagDescription.php:15
|
3089 |
msgid "Tag Description"
|
3090 |
msgstr ""
|
3091 |
|
3092 |
-
#: inc/admin/callbacks/Titles.php:
|
3093 |
#: src/Tags/TermDescription.php:15
|
3094 |
msgid "Term Description"
|
3095 |
msgstr ""
|
3096 |
|
3097 |
-
#: inc/admin/callbacks/Titles.php:
|
3098 |
msgid "Do not display this taxonomy archive in search engine results <strong>(noindex)</strong>"
|
3099 |
msgstr ""
|
3100 |
|
3101 |
-
#: inc/admin/callbacks/Titles.php:
|
3102 |
-
#: inc/admin/wizard/admin-wizard.php:
|
3103 |
msgid "We do not recommend indexing <strong>tags</strong> which are, in the vast majority of cases, a source of duplicate content."
|
3104 |
msgstr ""
|
3105 |
|
3106 |
-
#: inc/admin/callbacks/Titles.php:
|
3107 |
msgid "This custom taxonomy is <strong>NOT</strong> excluded from your XML sitemaps despite the fact that it is set to <strong>NOINDEX</strong>. We recommend that you check this out."
|
3108 |
msgstr ""
|
3109 |
|
3110 |
-
#: inc/admin/callbacks/Titles.php:
|
3111 |
msgid "Do not follow links for this taxonomy archive <strong>(nofollow)</strong>"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
-
#: inc/admin/callbacks/Titles.php:
|
3115 |
msgid "See archive"
|
3116 |
msgstr ""
|
3117 |
|
3118 |
-
#: inc/admin/callbacks/Titles.php:
|
3119 |
msgid "Post Type Archive Name"
|
3120 |
msgstr ""
|
3121 |
|
3122 |
-
#: inc/admin/callbacks/Titles.php:
|
3123 |
msgid "Do not display this post type archive in search engine results <strong>(noindex)</strong>"
|
3124 |
msgstr ""
|
3125 |
|
3126 |
-
#: inc/admin/callbacks/Titles.php:
|
3127 |
msgid "Do not follow links for this post type archive <strong>(nofollow)</strong>"
|
3128 |
msgstr ""
|
3129 |
|
3130 |
-
#: inc/admin/callbacks/Titles.php:
|
3131 |
msgid "Author archives"
|
3132 |
msgstr ""
|
3133 |
|
3134 |
-
#: inc/admin/callbacks/Titles.php:
|
3135 |
-
#: inc/admin/wizard/admin-wizard.php:
|
3136 |
msgid "Do not display author archives in search engine results <strong>(noindex)</strong>"
|
3137 |
msgstr ""
|
3138 |
|
3139 |
-
#: inc/admin/callbacks/Titles.php:
|
3140 |
msgid "Disable author archives"
|
3141 |
msgstr ""
|
3142 |
|
3143 |
-
#: inc/admin/callbacks/Titles.php:
|
3144 |
-
#: inc/admin/callbacks/Titles.php:
|
3145 |
msgid "Date archives"
|
3146 |
msgstr ""
|
3147 |
|
3148 |
-
#: inc/admin/callbacks/Titles.php:
|
3149 |
msgid "Do not display date archives in search engine results <strong>(noindex)</strong>"
|
3150 |
msgstr ""
|
3151 |
|
3152 |
-
#: inc/admin/callbacks/Titles.php:
|
3153 |
msgid "Disable date archives"
|
3154 |
msgstr ""
|
3155 |
|
3156 |
-
#: inc/admin/callbacks/Titles.php:
|
3157 |
msgid "Search archives"
|
3158 |
msgstr ""
|
3159 |
|
3160 |
-
#: inc/admin/callbacks/Titles.php:
|
3161 |
#: src/Tags/SearchKeywords.php:15
|
3162 |
msgid "Search Keywords"
|
3163 |
msgstr ""
|
3164 |
|
3165 |
-
#: inc/admin/callbacks/Titles.php:
|
3166 |
msgid "Do not display search archives in search engine results <strong>(noindex)</strong>"
|
3167 |
msgstr ""
|
3168 |
|
3169 |
-
#: inc/admin/callbacks/Titles.php:
|
3170 |
msgid "404 archives"
|
3171 |
msgstr ""
|
3172 |
|
3173 |
-
#: inc/admin/callbacks/Titles.php:
|
3174 |
-
#: inc/admin/settings/Titles.php:
|
3175 |
msgid "noindex"
|
3176 |
msgstr ""
|
3177 |
|
3178 |
-
#: inc/admin/callbacks/Titles.php:
|
3179 |
msgid "Do not display all pages of the site in Google search results and do not display \"Cached\" links in search results."
|
3180 |
msgstr ""
|
3181 |
|
3182 |
-
#: inc/admin/callbacks/Titles.php:
|
3183 |
msgid "Check also the <strong>\"Search engine visibility\"</strong> setting from the <a href=\"%s\">WordPress Reading page</a>."
|
3184 |
msgstr ""
|
3185 |
|
3186 |
-
#: inc/admin/callbacks/Titles.php:
|
3187 |
-
#: inc/admin/settings/Titles.php:
|
3188 |
msgid "nofollow"
|
3189 |
msgstr ""
|
3190 |
|
3191 |
-
#: inc/admin/callbacks/Titles.php:
|
3192 |
msgid "Do not follow links for all pages."
|
3193 |
msgstr ""
|
3194 |
|
3195 |
-
#: inc/admin/callbacks/Titles.php:
|
3196 |
-
#: inc/admin/settings/Titles.php:
|
3197 |
msgid "noodp"
|
3198 |
msgstr ""
|
3199 |
|
3200 |
-
#: inc/admin/callbacks/Titles.php:
|
3201 |
msgid "Do not use Open Directory project metadata for titles or excerpts for all pages."
|
3202 |
msgstr ""
|
3203 |
|
3204 |
-
#: inc/admin/callbacks/Titles.php:
|
3205 |
-
#: inc/admin/settings/Titles.php:
|
3206 |
msgid "noimageindex"
|
3207 |
msgstr ""
|
3208 |
|
3209 |
-
#: inc/admin/callbacks/Titles.php:
|
3210 |
msgid "Do not index images from the entire site."
|
3211 |
msgstr ""
|
3212 |
|
3213 |
-
#: inc/admin/callbacks/Titles.php:
|
3214 |
-
#: inc/admin/settings/Titles.php:
|
3215 |
msgid "noarchive"
|
3216 |
msgstr ""
|
3217 |
|
3218 |
-
#: inc/admin/callbacks/Titles.php:
|
3219 |
msgid "Do not display a \"Cached\" link in the Google search results."
|
3220 |
msgstr ""
|
3221 |
|
3222 |
-
#: inc/admin/callbacks/Titles.php:
|
3223 |
-
#: inc/admin/settings/Titles.php:
|
3224 |
msgid "nosnippet"
|
3225 |
msgstr ""
|
3226 |
|
3227 |
-
#: inc/admin/callbacks/Titles.php:
|
3228 |
msgid "Do not display a description in the Google search results for all pages."
|
3229 |
msgstr ""
|
3230 |
|
3231 |
-
#: inc/admin/callbacks/Titles.php:
|
3232 |
-
#: inc/admin/settings/Titles.php:
|
3233 |
msgid "nositelinkssearchbox"
|
3234 |
msgstr ""
|
3235 |
|
3236 |
-
#: inc/admin/callbacks/Titles.php:
|
3237 |
msgid "Prevents Google to display a sitelinks searchbox in search results. Enable this option will remove the \"Website\" schema from your source code."
|
3238 |
msgstr ""
|
3239 |
|
3240 |
-
#: inc/admin/callbacks/Titles.php:
|
3241 |
msgid "Add rel next/prev link in head of paginated archive pages"
|
3242 |
msgstr ""
|
3243 |
|
3244 |
-
#: inc/admin/callbacks/Titles.php:
|
3245 |
msgid "Add a \"noindex\" meta robots for all paginated archive pages"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
-
#: inc/admin/callbacks/Titles.php:
|
3249 |
msgid "eg: https://example.com/category/my-category/page/2/"
|
3250 |
msgstr ""
|
3251 |
|
3252 |
-
#: inc/admin/callbacks/Titles.php:
|
3253 |
msgid "Add a \"noindex\" meta robots for all attachment pages"
|
3254 |
msgstr ""
|
3255 |
|
3256 |
-
#: inc/admin/callbacks/Titles.php:
|
3257 |
msgid "eg: https://example.com/my-media-attachment-page"
|
3258 |
msgstr ""
|
3259 |
|
3260 |
-
#: inc/admin/docs/DocsLinks.php:
|
3261 |
msgid "Installation of SEOPress"
|
3262 |
msgstr ""
|
3263 |
|
3264 |
-
#: inc/admin/docs/DocsLinks.php:
|
3265 |
msgid "Activate your license key to receive automatic updates"
|
3266 |
msgstr ""
|
3267 |
|
3268 |
-
#: inc/admin/docs/DocsLinks.php:
|
3269 |
msgid "Configure SEOPress in 5 minutes"
|
3270 |
msgstr ""
|
3271 |
|
3272 |
-
#: inc/admin/docs/DocsLinks.php:
|
3273 |
msgid "Migrate your SEO metadata from other plugins"
|
3274 |
msgstr ""
|
3275 |
|
3276 |
-
#: inc/admin/docs/DocsLinks.php:
|
3277 |
msgid "Promote the exploration of your WordPress site by search engine robots"
|
3278 |
msgstr ""
|
3279 |
|
3280 |
-
#: inc/admin/docs/DocsLinks.php:
|
3281 |
msgid "Optimize content from A to Z with SEOPress"
|
3282 |
msgstr ""
|
3283 |
|
3284 |
-
#: inc/admin/docs/DocsLinks.php:
|
3285 |
msgid "Measure your traffic with Google Analytics"
|
3286 |
msgstr ""
|
3287 |
|
3288 |
-
#: inc/admin/docs/DocsLinks.php:
|
3289 |
msgid "Add your WordPress site to Google’s index"
|
3290 |
msgstr ""
|
3291 |
|
3292 |
-
#: inc/admin/docs/DocsLinks.php:
|
3293 |
msgid "Optimize your click-through rate on social networks"
|
3294 |
msgstr ""
|
3295 |
|
3296 |
-
#: inc/admin/docs/DocsLinks.php:
|
3297 |
msgid "Free ebooks to learn SEO"
|
3298 |
msgstr ""
|
3299 |
|
3300 |
-
#: inc/admin/docs/DocsLinks.php:
|
3301 |
msgid "Activate your SEOPress Insights license"
|
3302 |
msgstr ""
|
3303 |
|
3304 |
-
#: inc/admin/docs/DocsLinks.php:
|
3305 |
msgid "Track your keyword rankings in Google with SEOPress Insights"
|
3306 |
msgstr ""
|
3307 |
|
3308 |
-
#: inc/admin/docs/DocsLinks.php:
|
3309 |
msgid "Monitor and analyse your Backlinks with SEOPress Insights"
|
3310 |
msgstr ""
|
3311 |
|
3312 |
-
#: inc/admin/docs/DocsLinks.php:
|
3313 |
msgid "Finding SEO keywords for your WordPress site"
|
3314 |
msgstr ""
|
3315 |
|
3316 |
-
#: inc/admin/docs/DocsLinks.php:
|
3317 |
msgid "Optimize WordPress posts for a keyword"
|
3318 |
msgstr ""
|
3319 |
|
3320 |
-
#: inc/admin/docs/DocsLinks.php:
|
3321 |
msgid "Audit the backlinks of your WordPress site (in WordPress)"
|
3322 |
msgstr ""
|
3323 |
|
3324 |
-
#: inc/admin/docs/DocsLinks.php:
|
3325 |
msgid "The importance of backlinks"
|
3326 |
msgstr ""
|
3327 |
|
@@ -3389,6 +3255,16 @@ msgstr ""
|
|
3389 |
msgid "Writing content for your users is the most important thing! If it doesn‘t feel natural, your visitors will leave your site, Google will know it and your ranking will be affected."
|
3390 |
msgstr ""
|
3391 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3392 |
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:37
|
3393 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:566
|
3394 |
#: app/react/layout/Main/components/ContentAnalysis/index.js:370
|
@@ -3396,62 +3272,77 @@ msgid "Separate target keywords with commas. Do not use spaces after the commas,
|
|
3396 |
msgstr ""
|
3397 |
|
3398 |
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:40
|
3399 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:
|
3400 |
msgid "Enter your target keywords"
|
3401 |
msgstr ""
|
3402 |
|
3403 |
-
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:
|
3404 |
-
msgid "Analyze my content"
|
3405 |
-
msgstr ""
|
3406 |
-
|
3407 |
-
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:53
|
3408 |
#: inc/admin/page-builders/elementor/inc/controls/class-content-analysis-control.php:46
|
3409 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:
|
3410 |
msgid "Refresh analysis"
|
3411 |
msgstr ""
|
3412 |
|
3413 |
-
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:
|
3414 |
msgid "Track with Insights"
|
3415 |
msgstr ""
|
3416 |
|
3417 |
-
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:
|
3418 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:590
|
3419 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:
|
3420 |
msgid "To get the most accurate analysis, save your post first. We analyze all of your source code as a search engine would."
|
3421 |
msgstr ""
|
3422 |
|
3423 |
-
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:
|
3424 |
-
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:
|
3425 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:577
|
3426 |
#: inc/admin/page-builders/elementor/inc/controls/class-google-suggestions-control.php:50
|
3427 |
#: inc/admin/page-builders/elementor/inc/controls/class-google-suggestions-control.php:51
|
3428 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:
|
3429 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:
|
3430 |
msgid "Google suggestions"
|
3431 |
msgstr ""
|
3432 |
|
3433 |
-
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:
|
3434 |
#: inc/admin/page-builders/elementor/inc/controls/class-google-suggestions-control.php:51
|
3435 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:
|
3436 |
msgid "Enter a keyword, or a phrase, to find the top 10 Google suggestions instantly. This is useful if you want to work with the long tail technique."
|
3437 |
msgstr ""
|
3438 |
|
3439 |
-
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:
|
3440 |
#: inc/admin/page-builders/elementor/inc/controls/class-google-suggestions-control.php:52
|
3441 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:
|
3442 |
msgid "Get suggestions from Google"
|
3443 |
msgstr ""
|
3444 |
|
3445 |
-
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:
|
3446 |
msgid "Click on a suggestion below to add it as a target keyword."
|
3447 |
msgstr ""
|
3448 |
|
3449 |
-
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:
|
3450 |
#: inc/admin/page-builders/elementor/inc/controls/class-google-suggestions-control.php:53
|
3451 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:
|
3452 |
msgid "Get suggestions!"
|
3453 |
msgstr ""
|
3454 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3455 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:53
|
3456 |
msgid "Titles settings"
|
3457 |
msgstr ""
|
@@ -3488,6 +3379,13 @@ msgstr ""
|
|
3488 |
msgid "Title"
|
3489 |
msgstr ""
|
3490 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3491 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:104
|
3492 |
#: app/react/components/Forms/MetaTitleDescription/index.js:86
|
3493 |
msgid "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."
|
@@ -3651,6 +3549,18 @@ msgstr ""
|
|
3651 |
msgid "By checking this option, you will add a meta robots tag with the value \"nosnippet\"."
|
3652 |
msgstr ""
|
3653 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3654 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:322
|
3655 |
msgid "A canonical URL is the URL of the page that Google thinks is most representative from a set of duplicate pages on your site. <br>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. <br>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."
|
3656 |
msgstr ""
|
@@ -4141,6 +4051,10 @@ msgstr ""
|
|
4141 |
msgid "Focus / target keywords"
|
4142 |
msgstr ""
|
4143 |
|
|
|
|
|
|
|
|
|
4144 |
#: inc/admin/migrate/MigrationTools.php:37
|
4145 |
#: src/Actions/Admin/ManageColumn.php:70
|
4146 |
msgid "Redirect URL"
|
@@ -4154,6 +4068,18 @@ msgstr ""
|
|
4154 |
msgid "Migrate now"
|
4155 |
msgstr ""
|
4156 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4157 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:110
|
4158 |
msgid "SEO Title / Description"
|
4159 |
msgstr ""
|
@@ -4230,67 +4156,79 @@ msgstr ""
|
|
4230 |
msgid "Advanced SEO options for advanced users."
|
4231 |
msgstr ""
|
4232 |
|
4233 |
-
#: inc/admin/sections/Advanced.php:
|
4234 |
-
|
|
|
4235 |
msgstr ""
|
4236 |
|
4237 |
-
#: inc/admin/sections/Advanced.php:
|
4238 |
-
|
|
|
4239 |
msgstr ""
|
4240 |
|
4241 |
-
#: inc/admin/sections/Advanced.php:
|
4242 |
-
|
|
|
4243 |
msgstr ""
|
4244 |
|
4245 |
-
#: inc/admin/sections/Advanced.php:
|
4246 |
-
|
|
|
4247 |
msgstr ""
|
4248 |
|
4249 |
-
#: inc/admin/sections/Advanced.php:
|
4250 |
-
|
|
|
|
|
|
|
4251 |
msgstr ""
|
4252 |
|
4253 |
-
#: inc/admin/sections/Advanced.php:
|
4254 |
-
msgid "
|
4255 |
msgstr ""
|
4256 |
|
4257 |
-
#: inc/admin/sections/Advanced.php:
|
4258 |
-
|
|
|
4259 |
msgstr ""
|
4260 |
|
4261 |
-
#: inc/admin/sections/Advanced.php:
|
4262 |
-
|
|
|
4263 |
msgstr ""
|
4264 |
|
4265 |
-
#: inc/admin/sections/Advanced.php:
|
4266 |
-
msgid "
|
4267 |
msgstr ""
|
4268 |
|
4269 |
-
#: inc/admin/sections/Advanced.php:
|
4270 |
-
msgid "
|
4271 |
msgstr ""
|
4272 |
|
4273 |
-
#: inc/admin/sections/Advanced.php:
|
4274 |
-
msgid "
|
4275 |
msgstr ""
|
4276 |
|
4277 |
-
#: inc/admin/sections/Advanced.php:
|
4278 |
-
msgid "
|
4279 |
msgstr ""
|
4280 |
|
4281 |
-
#: inc/admin/sections/Advanced.php:
|
4282 |
-
msgid "
|
4283 |
msgstr ""
|
4284 |
|
4285 |
-
#: inc/admin/sections/Advanced.php:
|
4286 |
-
|
4287 |
-
|
|
|
|
|
|
|
4288 |
msgstr ""
|
4289 |
|
4290 |
#: inc/admin/sections/Analytics.php:16
|
4291 |
#: inc/admin/sections/Analytics.php:54
|
4292 |
-
#: inc/admin/sections/Analytics.php:
|
4293 |
-
#: inc/admin/sections/Analytics.php:
|
4294 |
msgid "Tracking"
|
4295 |
msgstr ""
|
4296 |
|
@@ -4304,7 +4242,7 @@ msgid "Ecommerce"
|
|
4304 |
msgstr ""
|
4305 |
|
4306 |
#: inc/admin/sections/Analytics.php:18
|
4307 |
-
#: inc/admin/sections/Analytics.php:
|
4308 |
msgid "Stats in Dashboard"
|
4309 |
msgstr ""
|
4310 |
|
@@ -4344,51 +4282,52 @@ msgstr ""
|
|
4344 |
msgid "Advanced settings"
|
4345 |
msgstr ""
|
4346 |
|
4347 |
-
#: inc/admin/sections/Analytics.php:
|
4348 |
-
|
|
|
4349 |
msgstr ""
|
4350 |
|
4351 |
#: inc/admin/sections/Analytics.php:121
|
4352 |
-
msgid "
|
4353 |
msgstr ""
|
4354 |
|
4355 |
-
#: inc/admin/sections/Analytics.php:
|
4356 |
msgid "Configure your Google Analytics custom dimensions."
|
4357 |
msgstr ""
|
4358 |
|
4359 |
-
#: inc/admin/sections/Analytics.php:
|
4360 |
msgid "Custom dimensions and custom metrics are like the default dimensions and metrics in your Analytics account, except you create them yourself."
|
4361 |
msgstr ""
|
4362 |
|
4363 |
-
#: inc/admin/sections/Analytics.php:
|
4364 |
msgid "Use them to collect and analyze data that Analytics doesn't automatically track."
|
4365 |
msgstr ""
|
4366 |
|
4367 |
-
#: inc/admin/sections/Analytics.php:
|
4368 |
msgid "Please note that you also have to setup your custom dimensions in your Google Analytics account. More info by clicking on the help icon."
|
4369 |
msgstr ""
|
4370 |
|
4371 |
-
#: inc/admin/sections/Analytics.php:
|
4372 |
msgid "Guide to create custom dimensions in Google Analytics - new window"
|
4373 |
msgstr ""
|
4374 |
|
4375 |
-
#: inc/admin/sections/Analytics.php:
|
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:
|
4380 |
msgid "Your <strong>Custom Dimensions</strong> will also work with Matomo tracking code."
|
4381 |
msgstr ""
|
4382 |
|
4383 |
-
#: inc/admin/sections/Analytics.php:
|
4384 |
msgid "Microsoft Clarity"
|
4385 |
msgstr ""
|
4386 |
|
4387 |
-
#: inc/admin/sections/Analytics.php:
|
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:
|
4392 |
msgid "Create your first Microsoft Clarity project <a href=\"%s\" target=\"_blank\">here</a>."
|
4393 |
msgstr ""
|
4394 |
|
@@ -5032,7 +4971,7 @@ msgid "Remove links from archive pages"
|
|
5032 |
msgstr ""
|
5033 |
|
5034 |
#: inc/admin/settings/Social.php:16
|
5035 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5036 |
msgid "Person or organization"
|
5037 |
msgstr ""
|
5038 |
|
@@ -5045,7 +4984,7 @@ msgid "Contact option (only for Organizations)"
|
|
5045 |
msgstr ""
|
5046 |
|
5047 |
#: inc/admin/settings/Social.php:81
|
5048 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5049 |
msgid "Twitter Username"
|
5050 |
msgstr ""
|
5051 |
|
@@ -5085,434 +5024,438 @@ msgstr ""
|
|
5085 |
msgid "Image size for Twitter Summary card"
|
5086 |
msgstr ""
|
5087 |
|
5088 |
-
#: inc/admin/settings/Titles.php:
|
5089 |
msgid "Indicate paginated content to Google"
|
5090 |
msgstr ""
|
5091 |
|
5092 |
-
#: inc/admin/settings/Titles.php:
|
5093 |
msgid "noindex on paged archives"
|
5094 |
msgstr ""
|
5095 |
|
5096 |
-
#: inc/admin/settings/Titles.php:
|
5097 |
msgid "noindex on attachment pages"
|
5098 |
msgstr ""
|
5099 |
|
5100 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5101 |
-
#: seopress.php:
|
5102 |
msgid "Migration completed!"
|
5103 |
msgstr ""
|
5104 |
|
5105 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5106 |
-
#: seopress.php:
|
5107 |
msgid "Export completed!"
|
5108 |
msgstr ""
|
5109 |
|
5110 |
-
#: inc/admin/wizard/admin-wizard.php:154
|
5111 |
#: inc/admin/wizard/admin-wizard.php:158
|
5112 |
-
#: inc/admin/wizard/admin-wizard.php:
|
|
|
5113 |
msgid "Welcome"
|
5114 |
msgstr ""
|
5115 |
|
5116 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5117 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5118 |
msgid "Import metadata"
|
5119 |
msgstr ""
|
5120 |
|
5121 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5122 |
msgid "Import SEO metadata"
|
5123 |
msgstr ""
|
5124 |
|
5125 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5126 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5127 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5128 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5129 |
msgid "Your site"
|
5130 |
msgstr ""
|
5131 |
|
5132 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5133 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5134 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5135 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5136 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5137 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5138 |
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:271
|
5139 |
#: app/react/layout/Main/components/InspectUrl/index.js:429
|
5140 |
msgid "Indexing"
|
5141 |
msgstr ""
|
5142 |
|
5143 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5144 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5145 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5146 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5147 |
msgid "Advanced options"
|
5148 |
msgstr ""
|
5149 |
|
5150 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5151 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5152 |
msgid "Universal SEO metabox"
|
5153 |
msgstr ""
|
5154 |
|
5155 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5156 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5157 |
msgid "Extend %s"
|
5158 |
msgstr ""
|
5159 |
|
5160 |
-
#: inc/admin/wizard/admin-wizard.php:308
|
5161 |
#: inc/admin/wizard/admin-wizard.php:312
|
|
|
5162 |
msgid "Ready!"
|
5163 |
msgstr ""
|
5164 |
|
5165 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5166 |
msgid "%s › Setup Wizard"
|
5167 |
msgstr ""
|
5168 |
|
5169 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5170 |
msgid "Not right now"
|
5171 |
msgstr ""
|
5172 |
|
5173 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5174 |
msgid "Skip this step"
|
5175 |
msgstr ""
|
5176 |
|
5177 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5178 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5179 |
msgid "Welcome to %s!"
|
5180 |
msgstr ""
|
5181 |
|
5182 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5183 |
msgid "Configure %s with the best settings for your site"
|
5184 |
msgstr ""
|
5185 |
|
5186 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5187 |
msgid "The following wizard will help you configure %s and get you started quickly."
|
5188 |
msgstr ""
|
5189 |
|
5190 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5191 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5192 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5193 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5194 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5195 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5196 |
msgid "Next step"
|
5197 |
msgstr ""
|
5198 |
|
5199 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5200 |
msgid "Migrate your SEO metadata to %s!"
|
5201 |
msgstr ""
|
5202 |
|
5203 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5204 |
msgid "The first step is to import your previous post and term metadata from other plugins to keep your SEO."
|
5205 |
msgstr ""
|
5206 |
|
5207 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5208 |
msgid "No data to migrate? Click \"Next step\" button!"
|
5209 |
msgstr ""
|
5210 |
|
5211 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5212 |
msgid "Tell us more about your site"
|
5213 |
msgstr ""
|
5214 |
|
5215 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5216 |
msgid "To build title tags and knowledge graph for Google, you need to fill out the fields below to configure the general settings."
|
5217 |
msgstr ""
|
5218 |
|
5219 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5220 |
msgid "eg: |"
|
5221 |
msgstr ""
|
5222 |
|
5223 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5224 |
msgid "This separator will be used by the dynamic variable <strong>%%sep%%</strong> in your title and meta description templates."
|
5225 |
msgstr ""
|
5226 |
|
5227 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5228 |
msgid "Home site title"
|
5229 |
msgstr ""
|
5230 |
|
5231 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5232 |
msgid "eg: My super website"
|
5233 |
msgstr ""
|
5234 |
|
5235 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5236 |
msgid "The site title will be used by the dynamic variable <strong>%%sitetitle%%</strong> in your title and meta description templates."
|
5237 |
msgstr ""
|
5238 |
|
5239 |
-
#: inc/admin/wizard/admin-wizard.php:
|
|
|
|
|
|
|
|
|
5240 |
msgid "Choose a knowledge type"
|
5241 |
msgstr ""
|
5242 |
|
5243 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5244 |
msgid "Choose between <strong>\"Organization\"</strong> (for companies, associations, organizations), or <strong>\"Personal\"</strong> for a personal site, to help Google better understand your type of website and generate a Knowledge Graph panel."
|
5245 |
msgstr ""
|
5246 |
|
5247 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5248 |
msgid "eg: My Company Name"
|
5249 |
msgstr ""
|
5250 |
|
5251 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5252 |
msgid "eg: https://www.example.com/logo.png"
|
5253 |
msgstr ""
|
5254 |
|
5255 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5256 |
msgid "Your email"
|
5257 |
msgstr ""
|
5258 |
|
5259 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5260 |
msgid "eg: enter"
|
5261 |
msgstr ""
|
5262 |
|
5263 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5264 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5265 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5266 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5267 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5268 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5269 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5270 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5271 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5272 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5273 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5274 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5275 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5276 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5277 |
msgid "Save & Continue"
|
5278 |
msgstr ""
|
5279 |
|
5280 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5281 |
msgid "Link your site to your social networks"
|
5282 |
msgstr ""
|
5283 |
|
5284 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5285 |
msgid "Fill in your social accounts for search engines."
|
5286 |
msgstr ""
|
5287 |
|
5288 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5289 |
msgid "Facebook page URL"
|
5290 |
msgstr ""
|
5291 |
|
5292 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5293 |
msgid "For which single post types, should indexing be disabled?"
|
5294 |
msgstr ""
|
5295 |
|
5296 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5297 |
msgid "Custom post types are a content type in WordPress. By default, <strong>Post</strong> and <strong>Page</strong> are the <strong>default post types</strong>."
|
5298 |
msgstr ""
|
5299 |
|
5300 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5301 |
msgid "You can create your own type of content like \"product\" or \"business\": these are <strong>custom post types</strong>."
|
5302 |
msgstr ""
|
5303 |
|
5304 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5305 |
msgid "Do not display this single post type in search engine results <strong>(noindex)</strong>"
|
5306 |
msgstr ""
|
5307 |
|
5308 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5309 |
msgid "For which post type archives, should indexing be disabled?"
|
5310 |
msgstr ""
|
5311 |
|
5312 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5313 |
msgid "<strong>Archive pages</strong> are automatically generated by WordPress. They group specific content such as your latest articles, a product category or your content by author or date."
|
5314 |
msgstr ""
|
5315 |
|
5316 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5317 |
msgid "Below the list of your <strong>post type archives</strong>:"
|
5318 |
msgstr ""
|
5319 |
|
5320 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5321 |
msgid "Do not display this post type archive in search engine results <strong>(noindex)</strong>"
|
5322 |
msgstr ""
|
5323 |
|
5324 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5325 |
msgid "You don‘t have any post type archives, you can continue to the next step."
|
5326 |
msgstr ""
|
5327 |
|
5328 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5329 |
msgid "For which taxonomy archives, should indexing be disabled?"
|
5330 |
msgstr ""
|
5331 |
|
5332 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5333 |
msgid "<strong>Taxonomies</strong> are the method of classifying content and data in WordPress. When you use a taxonomy you’re grouping similar things together. The taxonomy refers to the sum of those groups."
|
5334 |
msgstr ""
|
5335 |
|
5336 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5337 |
msgid "<strong>Categories</strong> and <strong>Tags</strong> are the default taxonomies. You can add your own taxonomies like \"product categories\": these are called <strong>custom taxonomies</strong>."
|
5338 |
msgstr ""
|
5339 |
|
5340 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5341 |
msgid "Do not display this taxonomy archive in search engine results <strong>(noindex)</strong>"
|
5342 |
msgstr ""
|
5343 |
|
5344 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5345 |
msgid "Almost done!"
|
5346 |
msgstr ""
|
5347 |
|
5348 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5349 |
msgid "Final step before being ready to rank on search engines."
|
5350 |
msgstr ""
|
5351 |
|
5352 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5353 |
msgid "You only have one author on your site? Check this option to avoid duplicate content."
|
5354 |
msgstr ""
|
5355 |
|
5356 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5357 |
msgid "By default, SEOPress redirects your Attachment pages to the parent post. Optimize this by redirecting the user directly to the URL of the media file."
|
5358 |
msgstr ""
|
5359 |
|
5360 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5361 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5362 |
msgid "Shorten your URLs by removing %s and improve your SEO."
|
5363 |
msgstr ""
|
5364 |
|
5365 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5366 |
msgid "Improve your workflow with the Universal SEO metabox"
|
5367 |
msgstr ""
|
5368 |
|
5369 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5370 |
msgid "Edit your SEO metadata directly from your page or theme builder."
|
5371 |
msgstr ""
|
5372 |
|
5373 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5374 |
msgid "Yes, please enable the universal SEO metabox!"
|
5375 |
msgstr ""
|
5376 |
|
5377 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5378 |
msgid "You can change this setting at anytime from SEO, Advanced settings page, Appearance tab."
|
5379 |
msgstr ""
|
5380 |
|
5381 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5382 |
msgid "SEOPress PRO"
|
5383 |
msgstr ""
|
5384 |
|
5385 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5386 |
msgid "Premium SEO features to increase your rankings"
|
5387 |
msgstr ""
|
5388 |
|
5389 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5390 |
msgid "Improve your business's presence in <strong>local search results</strong>."
|
5391 |
msgstr ""
|
5392 |
|
5393 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5394 |
msgid "Optimize your SEO from your favorite e-commerce plugin: <strong>WooCommerce or Easy Digital Downloads</strong>."
|
5395 |
msgstr ""
|
5396 |
|
5397 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5398 |
msgid "Add an infinity of <strong>Google structured data (schema)</strong> to your content to improve its visibility in search results."
|
5399 |
msgstr ""
|
5400 |
|
5401 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5402 |
msgid "Add your custom <strong>breadcrumbs</strong>."
|
5403 |
msgstr ""
|
5404 |
|
5405 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5406 |
msgid "Configure your <strong>robots.txt and .htaccess files</strong>."
|
5407 |
msgstr ""
|
5408 |
|
5409 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5410 |
msgid "Observe the evolution of your site via <strong>Google Analytics stats</strong> directly from your WordPress Dashboard."
|
5411 |
msgstr ""
|
5412 |
|
5413 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5414 |
msgid "And so many other features to increase your rankings, sales and productivity."
|
5415 |
msgstr ""
|
5416 |
|
5417 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5418 |
msgid "Get SEOPress PRO"
|
5419 |
msgstr ""
|
5420 |
|
5421 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5422 |
msgid "SEOPress Insights"
|
5423 |
msgstr ""
|
5424 |
|
5425 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5426 |
msgid "Start monitoring your rankings and backlinks directly from your WordPress admin"
|
5427 |
msgstr ""
|
5428 |
|
5429 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5430 |
msgid "Track your keyword positions from Google Search results daily."
|
5431 |
msgstr ""
|
5432 |
|
5433 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5434 |
msgid "Monitor and analyse your top 1,000 Backlinks weekly."
|
5435 |
msgstr ""
|
5436 |
|
5437 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5438 |
msgid "Export your data to CSV, PDF, Excel."
|
5439 |
msgstr ""
|
5440 |
|
5441 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5442 |
msgid "Receive your rankings in your inbox."
|
5443 |
msgstr ""
|
5444 |
|
5445 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5446 |
msgid "Get SEOPress Insights"
|
5447 |
msgstr ""
|
5448 |
|
5449 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5450 |
msgid "Your site is now ready for search engines!"
|
5451 |
msgstr ""
|
5452 |
|
5453 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5454 |
#: inc/functions/options-advanced-admin.php:25
|
5455 |
msgid "Please activate your license to receive automatic updates and get premium support."
|
5456 |
msgstr ""
|
5457 |
|
5458 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5459 |
#: inc/functions/options-advanced-admin.php:27
|
5460 |
msgid "Activate License"
|
5461 |
msgstr ""
|
5462 |
|
5463 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5464 |
msgid "Create your XML sitemaps"
|
5465 |
msgstr ""
|
5466 |
|
5467 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5468 |
msgid "Build custom XML sitemaps to improve Google's crawling of your site."
|
5469 |
msgstr ""
|
5470 |
|
5471 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5472 |
msgid "Configure your XML sitemaps"
|
5473 |
msgstr ""
|
5474 |
|
5475 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5476 |
msgid "Follow us:"
|
5477 |
msgstr ""
|
5478 |
|
5479 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5480 |
msgid "Like our Facebook page"
|
5481 |
msgstr ""
|
5482 |
|
5483 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5484 |
msgid "Join our Facebook Community group"
|
5485 |
msgstr ""
|
5486 |
|
5487 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5488 |
msgid "Watch our guided tour videos to learn more about SEOPress"
|
5489 |
msgstr ""
|
5490 |
|
5491 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5492 |
msgid "Read our blog posts about SEO concepts, tutorials and more"
|
5493 |
msgstr ""
|
5494 |
|
5495 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5496 |
msgid "Follow us on Twitter"
|
5497 |
msgstr ""
|
5498 |
|
5499 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5500 |
msgid "The off side of SEOPress"
|
5501 |
msgstr ""
|
5502 |
|
5503 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5504 |
msgid "You can also:"
|
5505 |
msgstr ""
|
5506 |
|
5507 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5508 |
msgid "Visit Dashboard"
|
5509 |
msgstr ""
|
5510 |
|
5511 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5512 |
msgid "Review Settings"
|
5513 |
msgstr ""
|
5514 |
|
5515 |
-
#: inc/admin/wizard/admin-wizard.php:
|
5516 |
msgid "Knowledge base"
|
5517 |
msgstr ""
|
5518 |
|
@@ -5716,55 +5659,55 @@ msgstr ""
|
|
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:
|
5720 |
msgid "has been successfully updated!"
|
5721 |
msgstr ""
|
5722 |
|
5723 |
-
#: seopress.php:
|
5724 |
msgid "Regeneration completed!"
|
5725 |
msgstr ""
|
5726 |
|
5727 |
-
#: seopress.php:
|
5728 |
msgid "Clear"
|
5729 |
msgstr ""
|
5730 |
|
5731 |
-
#: seopress.php:
|
5732 |
msgid "Clear color"
|
5733 |
msgstr ""
|
5734 |
|
5735 |
-
#: seopress.php:
|
5736 |
msgid "Select default color"
|
5737 |
msgstr ""
|
5738 |
|
5739 |
-
#: seopress.php:
|
5740 |
msgid "Select Color"
|
5741 |
msgstr ""
|
5742 |
|
5743 |
-
#: seopress.php:
|
5744 |
msgid "Color value"
|
5745 |
msgstr ""
|
5746 |
|
5747 |
-
#: seopress.php:
|
5748 |
msgid "Docs"
|
5749 |
msgstr ""
|
5750 |
|
5751 |
-
#: seopress.php:
|
5752 |
msgid "Configuration Wizard"
|
5753 |
msgstr ""
|
5754 |
|
5755 |
-
#: seopress.php:
|
5756 |
msgid "GO PRO!"
|
5757 |
msgstr ""
|
5758 |
|
5759 |
-
#: seopress.php:
|
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:
|
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:
|
5768 |
msgid "Update SEOPress PRO"
|
5769 |
msgstr ""
|
5770 |
|
@@ -5807,14 +5750,14 @@ msgstr ""
|
|
5807 |
#: src/Actions/Admin/ManageColumn.php:189
|
5808 |
#: src/Actions/Admin/ManageColumn.php:205
|
5809 |
#: src/Services/ContentAnalysis/RenderContentAnalysis.php:26
|
5810 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:
|
5811 |
msgid "Good"
|
5812 |
msgstr ""
|
5813 |
|
5814 |
#: src/Actions/Admin/ManageColumn.php:194
|
5815 |
#: src/Actions/Admin/ManageColumn.php:210
|
5816 |
#: src/Services/ContentAnalysis/RenderContentAnalysis.php:23
|
5817 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:
|
5818 |
msgid "Should be improved"
|
5819 |
msgstr ""
|
5820 |
|
@@ -6471,13 +6414,13 @@ msgid "<strong>Should be improved:</strong> red or orange dots <br> <strong>Good
|
|
6471 |
msgstr ""
|
6472 |
|
6473 |
#: src/Services/ContentAnalysis/RenderContentAnalysis.php:37
|
6474 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:
|
6475 |
#: app/react/layout/Main/components/SchemasManual/index.js:252
|
6476 |
msgid "Expand"
|
6477 |
msgstr ""
|
6478 |
|
6479 |
#: src/Services/ContentAnalysis/RenderContentAnalysis.php:37
|
6480 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:
|
6481 |
#: app/react/layout/Main/components/SchemasManual/index.js:267
|
6482 |
msgid "Close"
|
6483 |
msgstr ""
|
@@ -7379,16 +7322,6 @@ msgstr ""
|
|
7379 |
msgid "Note that your images can always be indexed if they are linked from other pages."
|
7380 |
msgstr ""
|
7381 |
|
7382 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:381
|
7383 |
-
msgid "The keyword:"
|
7384 |
-
msgid_plural "These keywords:"
|
7385 |
-
msgstr[0] ""
|
7386 |
-
msgstr[1] ""
|
7387 |
-
|
7388 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:413
|
7389 |
-
msgid "You should avoid using multiple times the same keyword for different pages. Try to consolidate your content into one single page."
|
7390 |
-
msgstr ""
|
7391 |
-
|
7392 |
#: app/react/layout/Main/components/InspectUrl/index.js:268
|
7393 |
msgid "For some reason we couldn't retrieve the page or test its mobile-friendliness. Please wait a bit and try again."
|
7394 |
msgstr ""
|
2 |
# This file is distributed under the GPLv2.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: SEOPress 6.1\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-11-10T11:15:29+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"
|
106 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:55
|
107 |
#: inc/admin/sections/Advanced.php:10
|
108 |
#: inc/admin/sections/Titles.php:63
|
109 |
+
#: inc/admin/wizard/admin-wizard.php:238
|
110 |
+
#: inc/admin/wizard/admin-wizard.php:248
|
111 |
#: app/react/constants/tabs.js:66
|
112 |
msgid "Advanced"
|
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:266
|
118 |
#: src/Actions/Admin/ManageColumn.php:94
|
119 |
msgid "Insights"
|
120 |
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:793
|
135 |
msgid "License"
|
136 |
msgstr ""
|
137 |
|
138 |
#: inc/admin/admin-bar/admin-bar.php:172
|
139 |
+
#: inc/admin/blocks/notifications-center.php:816
|
140 |
+
#: inc/admin/wizard/admin-wizard.php:265
|
141 |
msgid "PRO"
|
142 |
msgstr ""
|
143 |
|
147 |
msgstr ""
|
148 |
|
149 |
#: inc/admin/admin-bar/admin-bar.php:187
|
150 |
+
#: inc/admin/admin-pages/Tools.php:23
|
151 |
#: inc/admin/blocks/features-list.php:65
|
152 |
msgid "Redirections"
|
153 |
msgstr ""
|
205 |
|
206 |
#: inc/admin/admin-dyn-variables-helper.php:7
|
207 |
#: inc/admin/callbacks/Titles.php:37
|
208 |
+
#: inc/admin/callbacks/Titles.php:249
|
209 |
+
#: inc/admin/callbacks/Titles.php:457
|
210 |
+
#: inc/admin/callbacks/Titles.php:678
|
211 |
+
#: inc/admin/callbacks/Titles.php:898
|
212 |
+
#: inc/admin/callbacks/Titles.php:1041
|
213 |
+
#: inc/admin/callbacks/Titles.php:1134
|
214 |
+
#: inc/admin/callbacks/Titles.php:1229
|
215 |
+
#: inc/admin/callbacks/Titles.php:1293
|
216 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:134
|
217 |
#: inc/admin/page-builders/elementor/inc/controls/class-text-letter-counter-control.php:68
|
218 |
#: src/Tags/SiteTitle.php:22
|
221 |
|
222 |
#: inc/admin/admin-dyn-variables-helper.php:8
|
223 |
#: inc/admin/callbacks/Titles.php:47
|
224 |
+
#: inc/admin/callbacks/Titles.php:83
|
225 |
msgid "Tagline"
|
226 |
msgstr ""
|
227 |
|
228 |
#: inc/admin/admin-dyn-variables-helper.php:9
|
229 |
+
#: inc/admin/callbacks/Sitemaps.php:304
|
230 |
+
#: inc/admin/callbacks/Titles.php:235
|
231 |
+
#: inc/admin/callbacks/Titles.php:448
|
232 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:131
|
233 |
#: inc/admin/page-builders/elementor/inc/controls/class-text-letter-counter-control.php:66
|
234 |
#: src/Tags/PostTitle.php:17
|
236 |
msgstr ""
|
237 |
|
238 |
#: inc/admin/admin-dyn-variables-helper.php:10
|
239 |
+
#: inc/admin/callbacks/Titles.php:288
|
240 |
msgid "Post excerpt"
|
241 |
msgstr ""
|
242 |
|
262 |
msgstr ""
|
263 |
|
264 |
#: inc/admin/admin-dyn-variables-helper.php:16
|
265 |
+
#: inc/admin/callbacks/Titles.php:1032
|
266 |
msgid "Post author"
|
267 |
msgstr ""
|
268 |
|
440 |
msgstr ""
|
441 |
|
442 |
#: inc/admin/admin-pages/Advanced.php:23
|
443 |
+
#: inc/admin/sections/Advanced.php:49
|
444 |
msgid "Security"
|
445 |
msgstr ""
|
446 |
|
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:755
|
454 |
msgid "Save changes"
|
455 |
msgstr ""
|
456 |
|
457 |
#: inc/admin/admin-pages/Analytics.php:21
|
458 |
+
#: inc/admin/blocks/insights.php:53
|
459 |
#: inc/admin/sections/Analytics.php:10
|
460 |
msgid "Google Analytics"
|
461 |
msgstr ""
|
462 |
|
463 |
#: inc/admin/admin-pages/Analytics.php:22
|
464 |
+
#: inc/admin/sections/Analytics.php:161
|
465 |
msgid "Matomo"
|
466 |
msgstr ""
|
467 |
|
484 |
#: inc/admin/sections/Analytics.php:15
|
485 |
#: inc/admin/sections/Analytics.php:25
|
486 |
#: inc/admin/sections/Sitemaps.php:10
|
487 |
+
#: inc/admin/wizard/admin-wizard.php:183
|
488 |
+
#: inc/admin/wizard/admin-wizard.php:193
|
489 |
msgid "General"
|
490 |
msgstr ""
|
491 |
|
492 |
#: inc/admin/admin-pages/InstantIndexing.php:25
|
493 |
+
#: inc/admin/admin-pages/Tools.php:21
|
494 |
+
#: inc/admin/admin-pages/Tools.php:58
|
495 |
#: inc/admin/sections/InstantIndexing.php:54
|
496 |
+
#: seopress.php:611
|
497 |
msgid "Settings"
|
498 |
msgstr ""
|
499 |
|
501 |
#: inc/admin/admin-pages/Titles.php:21
|
502 |
#: inc/admin/sections/Sitemaps.php:169
|
503 |
#: inc/admin/sections/Titles.php:48
|
504 |
+
#: inc/admin/wizard/admin-wizard.php:204
|
505 |
+
#: inc/admin/wizard/admin-wizard.php:215
|
506 |
+
#: inc/admin/wizard/admin-wizard.php:226
|
507 |
msgid "Post Types"
|
508 |
msgstr ""
|
509 |
|
511 |
#: inc/admin/admin-pages/Titles.php:23
|
512 |
#: inc/admin/sections/Sitemaps.php:184
|
513 |
#: inc/admin/sections/Titles.php:78
|
514 |
+
#: inc/admin/wizard/admin-wizard.php:206
|
515 |
+
#: inc/admin/wizard/admin-wizard.php:217
|
516 |
+
#: inc/admin/wizard/admin-wizard.php:228
|
517 |
msgid "Taxonomies"
|
518 |
msgstr ""
|
519 |
|
529 |
|
530 |
#: inc/admin/admin-pages/Social.php:19
|
531 |
#: inc/admin/sections/Social.php:34
|
532 |
+
#: inc/admin/wizard/admin-wizard.php:184
|
533 |
+
#: inc/admin/wizard/admin-wizard.php:194
|
534 |
msgid "Your social accounts"
|
535 |
msgstr ""
|
536 |
|
546 |
|
547 |
#: inc/admin/admin-pages/Titles.php:22
|
548 |
#: inc/admin/sections/Titles.php:93
|
549 |
+
#: inc/admin/wizard/admin-wizard.php:205
|
550 |
+
#: inc/admin/wizard/admin-wizard.php:216
|
551 |
+
#: inc/admin/wizard/admin-wizard.php:227
|
552 |
msgid "Archives"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: inc/admin/admin-pages/Tools.php:20
|
|
|
556 |
msgid "Data"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: inc/admin/admin-pages/Tools.php:22
|
560 |
+
#: inc/admin/admin-pages/Tools.php:111
|
561 |
msgid "Plugins"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: inc/admin/admin-pages/Tools.php:24
|
565 |
msgid "Video sitemap"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: inc/admin/admin-pages/Tools.php:25
|
569 |
+
#: inc/admin/admin-pages/Tools.php:212
|
570 |
msgid "Reset"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: inc/admin/admin-pages/Tools.php:47
|
574 |
+
msgid "Looking for the CSV import / export tool? Please <strong>update SEOPress PRO</strong> to version 6.1."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: inc/admin/admin-pages/Tools.php:62
|
578 |
+
msgid "Export plugin settings"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: inc/admin/admin-pages/Tools.php:65
|
582 |
+
msgid "Export the plugin settings for this site as a .json file. This allows you to easily import the configuration into another site."
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: inc/admin/admin-pages/Tools.php:73
|
|
|
586 |
msgid "Export"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: inc/admin/admin-pages/Tools.php:81
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
590 |
msgid "Import plugin settings"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: inc/admin/admin-pages/Tools.php:84
|
594 |
msgid "Import the plugin settings from a .json file. This file can be obtained by exporting the settings on another site using the form above."
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: inc/admin/admin-pages/Tools.php:96
|
598 |
msgid "Import"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: inc/admin/admin-pages/Tools.php:100
|
602 |
msgid "Import completed!"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: inc/admin/admin-pages/Tools.php:114
|
606 |
msgid "Import posts and terms metadata from"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: inc/admin/admin-pages/Tools.php:136
|
610 |
+
#: inc/admin/wizard/admin-wizard.php:623
|
611 |
msgid "Select an option"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: inc/admin/admin-pages/Tools.php:144
|
615 |
+
#: inc/admin/wizard/admin-wizard.php:631
|
616 |
msgid "You don't have to enable the selected SEO plugin to run the import."
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: inc/admin/admin-pages/Tools.php:158
|
620 |
msgid "Redirections feature is disabled. Please activate it from the <strong>PRO page</strong>."
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: inc/admin/admin-pages/Tools.php:163
|
624 |
msgid "Activate Redirections"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: inc/admin/admin-pages/Tools.php:178
|
628 |
msgid "Video XML sitemap"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: inc/admin/admin-pages/Tools.php:183
|
632 |
msgid "Add YouTube videos to the XML Video sitemap"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: inc/admin/admin-pages/Tools.php:185
|
636 |
msgid "Click the button below to automatically scan all your content for YouTube URL and add them to the video XML sitemap. We automatically add YouTube videos each time you save a post."
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: inc/admin/admin-pages/Tools.php:187
|
640 |
msgid "Regenerate"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: inc/admin/admin-pages/Tools.php:194
|
644 |
msgid "XML Video sitemap feature is disabled. Please activate it from the <strong>XML sitemaps settings page</strong>."
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: inc/admin/admin-pages/Tools.php:199
|
648 |
msgid "Activate XML Video sitemap"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: inc/admin/admin-pages/Tools.php:216
|
652 |
msgid "Reset All Notices From Notifications Center"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: inc/admin/admin-pages/Tools.php:219
|
656 |
msgid "By clicking Reset Notices, all notices in the notifications center will be set to their initial status."
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: inc/admin/admin-pages/Tools.php:225
|
660 |
msgid "Reset notices"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: inc/admin/admin-pages/Tools.php:232
|
664 |
msgid "Reset All Settings"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: inc/admin/admin-pages/Tools.php:236
|
668 |
msgid "<strong>WARNING:</strong> Delete all options related to this plugin in your database."
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: inc/admin/admin-pages/Tools.php:243
|
672 |
msgid "Reset settings"
|
673 |
msgstr ""
|
674 |
|
907 |
msgid "Dismiss"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: inc/admin/blocks/insights.php:42
|
911 |
msgid "Site overview"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: inc/admin/blocks/insights.php:54
|
915 |
+
msgid "Matomo Analytics"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: inc/admin/blocks/insights.php:55
|
919 |
+
msgid "PageSpeed"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: inc/admin/blocks/insights.php:123
|
923 |
msgid "Google Page Speed Score"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: inc/admin/blocks/insights.php:124
|
927 |
msgid "Learn how your site has performed, based on data from your actual users around the world."
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: inc/admin/blocks/insights.php:131
|
931 |
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>"
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: inc/admin/blocks/insights.php:144
|
935 |
msgid "Core Web Vitals Assessment: "
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: inc/admin/blocks/insights.php:147
|
939 |
msgid "Passed"
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: inc/admin/blocks/insights.php:149
|
943 |
msgid "No data found"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: inc/admin/blocks/insights.php:151
|
947 |
msgid "Failed"
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: inc/admin/blocks/insights.php:154
|
951 |
msgid "Computed from the %s Core Web Vitals metrics over the latest 28-day collection period."
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: inc/admin/blocks/insights.php:158
|
955 |
msgid "No data available."
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: inc/admin/blocks/insights.php:163
|
959 |
msgid "See full report"
|
960 |
msgstr ""
|
961 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
962 |
#: inc/admin/blocks/intro.php:11
|
963 |
msgid "Your SEO today"
|
964 |
msgstr ""
|
1076 |
msgstr ""
|
1077 |
|
1078 |
#: inc/admin/blocks/notifications-center.php:158
|
1079 |
+
#: inc/admin/blocks/notifications-center.php:606
|
1080 |
+
#: inc/admin/blocks/notifications-center.php:643
|
1081 |
+
#: inc/admin/blocks/notifications-center.php:691
|
1082 |
+
#: inc/admin/blocks/notifications-center.php:709
|
1083 |
msgid "Medium impact"
|
1084 |
msgstr ""
|
1085 |
|
1087 |
#: inc/admin/blocks/notifications-center.php:198
|
1088 |
#: inc/admin/blocks/notifications-center.php:224
|
1089 |
#: inc/admin/blocks/notifications-center.php:277
|
1090 |
+
#: inc/admin/blocks/notifications-center.php:342
|
1091 |
+
#: inc/admin/blocks/notifications-center.php:383
|
1092 |
+
#: inc/admin/blocks/notifications-center.php:403
|
1093 |
+
#: inc/admin/blocks/notifications-center.php:422
|
1094 |
+
#: inc/admin/blocks/notifications-center.php:441
|
1095 |
+
#: inc/admin/blocks/notifications-center.php:460
|
1096 |
+
#: inc/admin/blocks/notifications-center.php:551
|
1097 |
+
#: inc/admin/blocks/notifications-center.php:570
|
1098 |
+
#: inc/admin/blocks/notifications-center.php:587
|
1099 |
+
#: inc/admin/blocks/notifications-center.php:610
|
1100 |
+
#: inc/admin/blocks/notifications-center.php:647
|
1101 |
+
#: inc/admin/blocks/notifications-center.php:695
|
1102 |
+
#: inc/admin/blocks/notifications-center.php:713
|
1103 |
+
#: inc/admin/blocks/notifications-center.php:778
|
1104 |
+
#: inc/admin/blocks/notifications-center.php:797
|
1105 |
+
#: inc/admin/blocks/notifications-center.php:898
|
1106 |
#: inc/admin/sections/InstantIndexing.php:43
|
1107 |
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:30
|
1108 |
msgid "Fix this!"
|
1120 |
#: inc/admin/blocks/notifications-center.php:219
|
1121 |
#: inc/admin/blocks/notifications-center.php:244
|
1122 |
#: inc/admin/blocks/notifications-center.php:273
|
1123 |
+
#: inc/admin/blocks/notifications-center.php:311
|
1124 |
+
#: inc/admin/blocks/notifications-center.php:338
|
1125 |
+
#: inc/admin/blocks/notifications-center.php:379
|
1126 |
+
#: inc/admin/blocks/notifications-center.php:399
|
1127 |
+
#: inc/admin/blocks/notifications-center.php:418
|
1128 |
+
#: inc/admin/blocks/notifications-center.php:437
|
1129 |
+
#: inc/admin/blocks/notifications-center.php:456
|
1130 |
+
#: inc/admin/blocks/notifications-center.php:500
|
1131 |
+
#: inc/admin/blocks/notifications-center.php:518
|
1132 |
+
#: inc/admin/blocks/notifications-center.php:547
|
1133 |
+
#: inc/admin/blocks/notifications-center.php:566
|
1134 |
+
#: inc/admin/blocks/notifications-center.php:583
|
1135 |
+
#: inc/admin/blocks/notifications-center.php:667
|
1136 |
+
#: inc/admin/blocks/notifications-center.php:731
|
1137 |
+
#: inc/admin/blocks/notifications-center.php:756
|
1138 |
+
#: inc/admin/blocks/notifications-center.php:774
|
1139 |
+
#: inc/admin/blocks/notifications-center.php:863
|
1140 |
+
#: inc/admin/blocks/notifications-center.php:894
|
1141 |
msgid "High impact"
|
1142 |
msgstr ""
|
1143 |
|
1158 |
msgstr ""
|
1159 |
|
1160 |
#: inc/admin/blocks/notifications-center.php:249
|
1161 |
+
#: inc/admin/blocks/notifications-center.php:485
|
1162 |
+
#: inc/admin/blocks/notifications-center.php:505
|
1163 |
+
#: inc/admin/blocks/notifications-center.php:523
|
1164 |
#: inc/admin/callbacks/Analytics.php:605
|
1165 |
#: inc/admin/callbacks/Analytics.php:702
|
1166 |
#: inc/admin/callbacks/Analytics.php:730
|
1179 |
|
1180 |
#. translators: %s name of a SEO plugin (eg: Yoast SEO)
|
1181 |
#. translators: %s name of a WP plugin (eg: IndexNow)
|
1182 |
+
#: inc/admin/blocks/notifications-center.php:308
|
1183 |
+
#: inc/admin/blocks/notifications-center.php:335
|
1184 |
#: inc/admin/sections/InstantIndexing.php:41
|
1185 |
msgid "We noticed that you use <strong>%s</strong> plugin."
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: inc/admin/blocks/notifications-center.php:309
|
1189 |
msgid "Do you want to migrate all your metadata to SEOPress? Do not use multiple SEO plugins at once to avoid conflicts!"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: inc/admin/blocks/notifications-center.php:315
|
1193 |
msgid "Migrate!"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: inc/admin/blocks/notifications-center.php:336
|
1197 |
#: inc/admin/sections/InstantIndexing.php:42
|
1198 |
msgid "To prevent any conflicts with our Indexing feature, please disable it."
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: inc/admin/blocks/notifications-center.php:355
|
1202 |
msgid "You have enabled 404 cleaning BUT the scheduled task is not running."
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: inc/admin/blocks/notifications-center.php:356
|
1206 |
msgid "To solve this, please disable and re-enable SEOPress PRO. No data will be lost."
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: inc/admin/blocks/notifications-center.php:376
|
1210 |
msgid "Enfold theme is not correctly setup for SEO!"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: inc/admin/blocks/notifications-center.php:377
|
1214 |
msgid "You must disable \"Meta tag robots\" option from Enfold settings (SEO Support tab) to avoid any SEO issues."
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: inc/admin/blocks/notifications-center.php:396
|
1218 |
msgid "Global meta title missing for several custom post types!"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: inc/admin/blocks/notifications-center.php:415
|
1222 |
msgid "Global meta description missing for several custom post types!"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
+
#: inc/admin/blocks/notifications-center.php:434
|
1226 |
msgid "Global meta title missing for several taxonomies!"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: inc/admin/blocks/notifications-center.php:453
|
1230 |
msgid "Global meta description missing for several taxonomies!"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: inc/admin/blocks/notifications-center.php:478
|
1234 |
msgid "Your site doesn't use an SSL certificate!"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: inc/admin/blocks/notifications-center.php:479
|
1238 |
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."
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: inc/admin/blocks/notifications-center.php:481
|
1242 |
msgid "Low impact"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: inc/admin/blocks/notifications-center.php:497
|
1246 |
msgid "PHP module \"DOM\" is missing on your server."
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: inc/admin/blocks/notifications-center.php:498
|
1250 |
+
#: inc/admin/blocks/notifications-center.php:516
|
1251 |
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."
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: inc/admin/blocks/notifications-center.php:515
|
1255 |
msgid "PHP module \"mbstring\" is missing on your server."
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: inc/admin/blocks/notifications-center.php:544
|
1259 |
msgid "Your site is not visible to Search Engines!"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: inc/admin/blocks/notifications-center.php:545
|
1263 |
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."
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#: inc/admin/blocks/notifications-center.php:563
|
1267 |
msgid "Your site title is empty!"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
+
#: inc/admin/blocks/notifications-center.php:564
|
1271 |
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!"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
+
#: inc/admin/blocks/notifications-center.php:580
|
1275 |
msgid "Your permalinks are not SEO Friendly! Enable pretty permalinks to fix this."
|
1276 |
msgstr ""
|
1277 |
|
1278 |
+
#: inc/admin/blocks/notifications-center.php:581
|
1279 |
+
#: inc/admin/blocks/notifications-center.php:604
|
1280 |
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..."
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: inc/admin/blocks/notifications-center.php:603
|
1284 |
msgid "Your RSS feed shows full text!"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: inc/admin/blocks/notifications-center.php:640
|
1288 |
msgid "You have activated Google Analytics tracking without adding identifiers!"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: inc/admin/blocks/notifications-center.php:641
|
1292 |
msgid "Google Analytics will not track your visitors until you finish the configuration."
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: inc/admin/blocks/notifications-center.php:664
|
1296 |
msgid "Break comments into pages is ON!"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: inc/admin/blocks/notifications-center.php:665
|
1300 |
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."
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: inc/admin/blocks/notifications-center.php:671
|
1304 |
msgid "Disable this!"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: inc/admin/blocks/notifications-center.php:688
|
1308 |
msgid "Display more posts per page on homepage and archives"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: inc/admin/blocks/notifications-center.php:689
|
1312 |
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."
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: inc/admin/blocks/notifications-center.php:706
|
1316 |
msgid "You don't have an XML Sitemap!"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: inc/admin/blocks/notifications-center.php:707
|
1320 |
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."
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: inc/admin/blocks/notifications-center.php:728
|
1324 |
msgid "Do you have a Google My Business page? It's free!"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: inc/admin/blocks/notifications-center.php:729
|
1328 |
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."
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: inc/admin/blocks/notifications-center.php:735
|
1332 |
msgid "Create your page now!"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: inc/admin/blocks/notifications-center.php:753
|
1336 |
msgid "Add your site to Google. It's free!"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: inc/admin/blocks/notifications-center.php:754
|
1340 |
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."
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: inc/admin/blocks/notifications-center.php:760
|
1344 |
msgid "Add your site to Search Console!"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: inc/admin/blocks/notifications-center.php:771
|
1348 |
msgid "Structured data types is not correctly enabled"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: inc/admin/blocks/notifications-center.php:772
|
1352 |
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)"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: inc/admin/blocks/notifications-center.php:790
|
1356 |
msgid "You have to enter your licence key to get updates and support"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: inc/admin/blocks/notifications-center.php:791
|
1360 |
msgid "Please activate the SEOPress PRO license key to automatically receive updates to guarantee you the best user experience possible."
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: inc/admin/blocks/notifications-center.php:813
|
1364 |
msgid "Take your SEO to the next level with SEOPress PRO!"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: inc/admin/blocks/notifications-center.php:814
|
1368 |
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."
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: inc/admin/blocks/notifications-center.php:821
|
1372 |
msgid "Upgrade now!"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: inc/admin/blocks/notifications-center.php:860
|
1376 |
msgid "A physical robots.txt file has been found"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: inc/admin/blocks/notifications-center.php:861
|
1380 |
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."
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: inc/admin/blocks/notifications-center.php:891
|
1384 |
msgid "Your site is not indexable!"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: inc/admin/blocks/notifications-center.php:892
|
1388 |
msgid "Your robots.txt file contains a rule that prevents search engines to index your all site: <code>Disallow: /</code>"
|
1389 |
msgstr ""
|
1390 |
|
1416 |
msgid "Add Structured Data Types to increase visibility in SERPs"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: inc/admin/callbacks/Advanced.php:17
|
1420 |
+
msgid "Remove ?replytocom link in source code and replace it with a simple anchor"
|
1421 |
+
msgstr ""
|
1422 |
+
|
1423 |
+
#: inc/admin/callbacks/Advanced.php:21
|
1424 |
+
msgid "e.g. \"https://www.example.com/my-blog-post/?replytocom=10#respond\" => \"#comment-10\""
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: inc/admin/callbacks/Advanced.php:40
|
1428 |
msgid "Remove noreferrer link attribute in source code"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: inc/admin/callbacks/Advanced.php:44
|
1432 |
msgid "Useful for affiliate links (eg: Amazon)."
|
1433 |
msgstr ""
|
1434 |
|
1435 |
+
#: inc/admin/callbacks/Advanced.php:63
|
1436 |
msgid "Add TINYMCE editor to term description"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
+
#: inc/admin/callbacks/Advanced.php:88
|
1440 |
+
#: inc/admin/callbacks/Advanced.php:132
|
1441 |
+
#: inc/admin/wizard/admin-wizard.php:1318
|
1442 |
+
#: inc/admin/wizard/admin-wizard.php:1343
|
1443 |
msgid "Remove <strong>%s</strong> in your permalinks"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: inc/admin/callbacks/Advanced.php:92
|
1447 |
msgid "e.g. \"https://example.com/category/my-post-category/\" => \"https://example.com/my-post-category/\""
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: inc/admin/callbacks/Advanced.php:97
|
1451 |
+
#: inc/admin/callbacks/Advanced.php:142
|
1452 |
msgid "You have to flush your permalinks each time you change this setting."
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: inc/admin/callbacks/Advanced.php:137
|
1456 |
msgid "e.g. \"https://example.com/product-category/my-product-category/\" => \"https://example.com/my-product-category/\""
|
1457 |
msgstr ""
|
1458 |
|
1459 |
+
#: inc/admin/callbacks/Advanced.php:145
|
1460 |
msgid "Make sure you don't have identical URLs after activating this option to prevent conflicts."
|
1461 |
msgstr ""
|
1462 |
|
1463 |
+
#: inc/admin/callbacks/Advanced.php:156
|
1464 |
msgid "You need to enable <strong>WooCommerce</strong> to apply these settings."
|
1465 |
msgstr ""
|
1466 |
|
1467 |
+
#: inc/admin/callbacks/Advanced.php:174
|
1468 |
msgid "Remove WordPress meta generator in source code"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
+
#: inc/admin/callbacks/Advanced.php:177
|
1472 |
+
msgid "<meta name=\"generator\" content=\"WordPress 6.0.3\" />"
|
1473 |
+
msgstr ""
|
1474 |
+
|
1475 |
+
#: inc/admin/callbacks/Advanced.php:196
|
1476 |
msgid "Remove hentry post class to prevent Google from seeing this as structured data (schema)"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: inc/admin/callbacks/Advanced.php:216
|
1480 |
msgid "Remove comment author URL in comments if the website is filled from profile page"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: inc/admin/callbacks/Advanced.php:236
|
1484 |
msgid "Remove website field from comment form to reduce spam"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: inc/admin/callbacks/Advanced.php:256
|
1488 |
+
msgid "Prevent search engines to follow / index the link to the comments form"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: inc/admin/callbacks/Advanced.php:279
|
1492 |
+
msgid "Remove WordPress shortlink meta tag in source code"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: inc/admin/callbacks/Advanced.php:301
|
1496 |
+
msgid "Remove Windows Live Writer meta tag in source code"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: inc/admin/callbacks/Advanced.php:323
|
1500 |
+
msgid "Remove Really Simple Discovery meta tag in source code"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
+
#: inc/admin/callbacks/Advanced.php:327
|
1504 |
msgid "WordPress Site Health feature will return a HTTPS warning if you enable this option. This is a false positive of course."
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: inc/admin/callbacks/Advanced.php:342
|
1508 |
msgid "Enter Google meta value site verification"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
+
#: inc/admin/callbacks/Advanced.php:342
|
1512 |
#: inc/admin/settings/Advanced.php:120
|
1513 |
msgid "Google site verification"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
+
#: inc/admin/callbacks/Advanced.php:346
|
1517 |
msgid "If your site is already verified in <strong>Google Search Console</strong>, you can leave this field empty."
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: inc/admin/callbacks/Advanced.php:357
|
1521 |
msgid "Enter Bing meta value site verification"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: inc/admin/callbacks/Advanced.php:357
|
1525 |
#: inc/admin/settings/Advanced.php:128
|
1526 |
msgid "Bing site verification"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
+
#: inc/admin/callbacks/Advanced.php:361
|
1530 |
msgid "If your site is already verified in <strong>Bing Webmaster tools</strong>, you can leave this field empty."
|
1531 |
msgstr ""
|
1532 |
|
1533 |
+
#: inc/admin/callbacks/Advanced.php:372
|
1534 |
msgid "Enter Pinterest meta value site verification"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
+
#: inc/admin/callbacks/Advanced.php:372
|
1538 |
#: inc/admin/settings/Advanced.php:136
|
1539 |
msgid "Pinterest site verification"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: inc/admin/callbacks/Advanced.php:382
|
1543 |
#: inc/admin/settings/Advanced.php:144
|
1544 |
msgid "Yandex site verification"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
+
#: inc/admin/callbacks/Advanced.php:382
|
1548 |
msgid "Enter Yandex meta value site verification"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
+
#: inc/admin/callbacks/Advanced.php:399
|
1552 |
msgid "Remove SEO from Admin Bar in backend and frontend"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: inc/admin/callbacks/Advanced.php:424
|
1556 |
msgid "Enable the universal SEO metabox for the Block Editor (Gutenberg)"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: inc/admin/callbacks/Advanced.php:450
|
1560 |
msgid "Disable the universal SEO metabox"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: inc/admin/callbacks/Advanced.php:455
|
1564 |
msgid "Learn more about how we interface with all page builders to optimize your productivity"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
+
#: inc/admin/callbacks/Advanced.php:477
|
1568 |
msgid "Remove noindex item from Admin Bar in backend and frontend"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
+
#: inc/admin/callbacks/Advanced.php:495
|
1572 |
msgid "High priority (top)"
|
1573 |
msgstr ""
|
1574 |
|
1575 |
+
#: inc/admin/callbacks/Advanced.php:500
|
1576 |
msgid "Normal priority (default)"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
+
#: inc/admin/callbacks/Advanced.php:505
|
1580 |
msgid "Low priority"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: inc/admin/callbacks/Advanced.php:525
|
1584 |
msgid "Automatic tab (default)"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
+
#: inc/admin/callbacks/Advanced.php:530
|
1588 |
msgid "Manual tab"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
+
#: inc/admin/callbacks/Advanced.php:552
|
1592 |
msgid "Hide Notifications Center in SEO Dashboard page"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: inc/admin/callbacks/Advanced.php:572
|
1596 |
msgid "Hide SEO News in SEO Dashboard page"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
+
#: inc/admin/callbacks/Advanced.php:592
|
1600 |
msgid "Hide Site Overview in SEO Dashboard page"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
+
#: inc/admin/callbacks/Advanced.php:611
|
1604 |
msgid "Add title column"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
+
#: inc/admin/callbacks/Advanced.php:631
|
1608 |
msgid "Add meta description column"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
+
#: inc/admin/callbacks/Advanced.php:651
|
1612 |
msgid "Add redirection enable column"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
+
#: inc/admin/callbacks/Advanced.php:671
|
1616 |
msgid "Add redirection URL column"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
+
#: inc/admin/callbacks/Advanced.php:691
|
1620 |
msgid "Add canonical URL column"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
+
#: inc/admin/callbacks/Advanced.php:711
|
1624 |
msgid "Add target keyword column"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
+
#: inc/admin/callbacks/Advanced.php:731
|
1628 |
msgid "Display noindex status"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
+
#: inc/admin/callbacks/Advanced.php:751
|
1632 |
msgid "Display nofollow status"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
+
#: inc/admin/callbacks/Advanced.php:771
|
1636 |
msgid "Display total number of words in content"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
+
#: inc/admin/callbacks/Advanced.php:792
|
1640 |
msgid "Display Page Speed column to check performances"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: inc/admin/callbacks/Advanced.php:813
|
1644 |
msgid "Display SEO Insights column to check rankings"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
+
#: inc/admin/callbacks/Advanced.php:834
|
1648 |
msgid "Display Content Analysis results column (\"Good\" or \"Should be improved\")"
|
1649 |
msgstr ""
|
1650 |
|
1651 |
+
#: inc/admin/callbacks/Advanced.php:854
|
1652 |
#: inc/admin/settings/Advanced.php:203
|
1653 |
msgid "Remove Content Analysis Metabox"
|
1654 |
msgstr ""
|
1655 |
|
1656 |
+
#: inc/admin/callbacks/Advanced.php:874
|
1657 |
msgid "Remove Genesis SEO Metabox"
|
1658 |
msgstr ""
|
1659 |
|
1660 |
+
#: inc/admin/callbacks/Advanced.php:894
|
1661 |
msgid "Remove Genesis SEO link in WP Admin Menu"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
+
#: inc/admin/callbacks/Advanced.php:914
|
1665 |
msgid "Remove the advice if None schema selected"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
+
#: inc/admin/callbacks/Advanced.php:958
|
1669 |
+
#: inc/admin/callbacks/Advanced.php:996
|
1670 |
msgid "Hook to filter structured data types metabox call by post type - new window"
|
1671 |
msgstr ""
|
1672 |
|
2212 |
msgstr ""
|
2213 |
|
2214 |
#: inc/admin/callbacks/Analytics.php:1272
|
2215 |
+
msgid "By default, any file ending with one of these extensions will be considered a \"download\" in the Matomo interface:"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
+
#: inc/admin/callbacks/Analytics.php:1294
|
2219 |
msgid "Disabling all heatmaps and session recordings"
|
2220 |
msgstr ""
|
2221 |
|
2222 |
+
#: inc/admin/callbacks/Analytics.php:1313
|
2223 |
msgid "Add Microsoft Clarity code to your site"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
+
#: inc/admin/callbacks/Analytics.php:1327
|
2227 |
msgid "Enter your Project ID"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
+
#: inc/admin/callbacks/Analytics.php:1334
|
2231 |
msgid "Find your project ID"
|
2232 |
msgstr ""
|
2233 |
|
2236 |
msgstr ""
|
2237 |
|
2238 |
#: inc/admin/callbacks/ImageSEO.php:36
|
2239 |
+
#: inc/admin/wizard/admin-wizard.php:1299
|
2240 |
msgid "Redirect attachment pages to their file URL (https://www.example.com/my-image-file.jpg)"
|
2241 |
msgstr ""
|
2242 |
|
2245 |
msgstr ""
|
2246 |
|
2247 |
#: inc/admin/callbacks/ImageSEO.php:60
|
2248 |
+
msgid "When upload a media, remove accents, spaces, capital letters... and force UTF-8 encoding"
|
2249 |
msgstr ""
|
2250 |
|
2251 |
#: inc/admin/callbacks/ImageSEO.php:64
|
2253 |
msgstr ""
|
2254 |
|
2255 |
#: inc/admin/callbacks/ImageSEO.php:84
|
2256 |
+
msgid "When uploading an image file, automatically set the title based on the filename"
|
2257 |
msgstr ""
|
2258 |
|
2259 |
#: inc/admin/callbacks/ImageSEO.php:88
|
2261 |
msgstr ""
|
2262 |
|
2263 |
#: inc/admin/callbacks/ImageSEO.php:108
|
2264 |
+
msgid "When uploading an image file, automatically set the alternative text based on the filename"
|
2265 |
msgstr ""
|
2266 |
|
2267 |
#: inc/admin/callbacks/ImageSEO.php:113
|
2277 |
msgstr ""
|
2278 |
|
2279 |
#: inc/admin/callbacks/ImageSEO.php:160
|
2280 |
+
msgid "When uploading an image file, automatically set the caption based on the filename"
|
2281 |
msgstr ""
|
2282 |
|
2283 |
#: inc/admin/callbacks/ImageSEO.php:179
|
2284 |
+
msgid "When uploading an image file, automatically set the description based on the filename"
|
2285 |
msgstr ""
|
2286 |
|
2287 |
#: inc/admin/callbacks/InstantIndexing.php:43
|
2431 |
msgid "Guide to enable a HTML Sitemap - new window"
|
2432 |
msgstr ""
|
2433 |
|
2434 |
+
#: inc/admin/callbacks/Sitemaps.php:177
|
2435 |
+
#: inc/admin/callbacks/Sitemaps.php:230
|
2436 |
msgid "Include"
|
2437 |
msgstr ""
|
2438 |
|
2439 |
+
#: inc/admin/callbacks/Sitemaps.php:183
|
2440 |
msgid "You should never include <strong>attachment</strong> post type in your sitemap. Be careful if you checked this."
|
2441 |
msgstr ""
|
2442 |
|
2443 |
+
#: inc/admin/callbacks/Sitemaps.php:248
|
2444 |
msgid "eg: 2, 28, 68"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
+
#: inc/admin/callbacks/Sitemaps.php:248
|
2448 |
#: inc/admin/settings/Sitemaps.php:98
|
2449 |
msgid "Enter a post, page or custom post type ID(s) to display the sitemap"
|
2450 |
msgstr ""
|
2451 |
|
2452 |
+
#: inc/admin/callbacks/Sitemaps.php:259
|
2453 |
msgid "eg: 13, 8, 38"
|
2454 |
msgstr ""
|
2455 |
|
2456 |
+
#: inc/admin/callbacks/Sitemaps.php:259
|
2457 |
#: inc/admin/settings/Sitemaps.php:106
|
2458 |
msgid "Exclude some Posts, Pages, Custom Post Types or Terms IDs"
|
2459 |
msgstr ""
|
2460 |
|
2461 |
+
#: inc/admin/callbacks/Sitemaps.php:274
|
2462 |
msgid "DESC (descending order from highest to lowest values (3, 2, 1; c, b, a))"
|
2463 |
msgstr ""
|
2464 |
|
2465 |
+
#: inc/admin/callbacks/Sitemaps.php:279
|
2466 |
msgid "ASC (ascending order from lowest to highest values (1, 2, 3; a, b, c))"
|
2467 |
msgstr ""
|
2468 |
|
2469 |
+
#: inc/admin/callbacks/Sitemaps.php:299
|
2470 |
msgid "Default (date)"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
+
#: inc/admin/callbacks/Sitemaps.php:309
|
2474 |
msgid "Modified date"
|
2475 |
msgstr ""
|
2476 |
|
2477 |
+
#: inc/admin/callbacks/Sitemaps.php:314
|
2478 |
msgid "Post ID"
|
2479 |
msgstr ""
|
2480 |
|
2481 |
+
#: inc/admin/callbacks/Sitemaps.php:319
|
2482 |
msgid "Menu order"
|
2483 |
msgstr ""
|
2484 |
|
2485 |
+
#: inc/admin/callbacks/Sitemaps.php:341
|
2486 |
msgid "Disable date after each post, page, post type?"
|
2487 |
msgstr ""
|
2488 |
|
2489 |
+
#: inc/admin/callbacks/Sitemaps.php:362
|
2490 |
msgid "Remove links from archive pages (eg: Products)"
|
2491 |
msgstr ""
|
2492 |
|
2493 |
#: inc/admin/callbacks/Social.php:15
|
2494 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:346
|
2495 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:286
|
2496 |
+
#: inc/admin/wizard/admin-wizard.php:735
|
2497 |
#: src/Helpers/Metas/RobotSettings.php:19
|
2498 |
#: app/editor/primary-category-select/index.js:58
|
2499 |
#: public/editor/primary-category-select/index.js:1
|
2501 |
msgstr ""
|
2502 |
|
2503 |
#: inc/admin/callbacks/Social.php:20
|
2504 |
+
#: inc/admin/wizard/admin-wizard.php:740
|
2505 |
msgid "Person"
|
2506 |
msgstr ""
|
2507 |
|
2508 |
#: inc/admin/callbacks/Social.php:25
|
2509 |
+
#: inc/admin/wizard/admin-wizard.php:745
|
2510 |
msgid "Organization"
|
2511 |
msgstr ""
|
2512 |
|
2516 |
|
2517 |
#: inc/admin/callbacks/Social.php:40
|
2518 |
#: inc/admin/settings/Social.php:24
|
2519 |
+
#: inc/admin/wizard/admin-wizard.php:754
|
2520 |
msgid "Your name/organization"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
#: inc/admin/callbacks/Social.php:56
|
2524 |
#: inc/admin/settings/Social.php:32
|
2525 |
+
#: inc/admin/wizard/admin-wizard.php:761
|
2526 |
msgid "Your photo/organization logo"
|
2527 |
msgstr ""
|
2528 |
|
2537 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:430
|
2538 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:550
|
2539 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:915
|
2540 |
+
#: inc/admin/wizard/admin-wizard.php:766
|
2541 |
msgid "Upload an Image"
|
2542 |
msgstr ""
|
2543 |
|
2603 |
msgstr ""
|
2604 |
|
2605 |
#: inc/admin/callbacks/Social.php:200
|
2606 |
+
#: inc/admin/wizard/admin-wizard.php:876
|
2607 |
msgid "eg: https://facebook.com/my-page-url"
|
2608 |
msgstr ""
|
2609 |
|
2613 |
msgstr ""
|
2614 |
|
2615 |
#: inc/admin/callbacks/Social.php:211
|
2616 |
+
#: inc/admin/wizard/admin-wizard.php:883
|
2617 |
msgid "eg: @my_twitter_account"
|
2618 |
msgstr ""
|
2619 |
|
2622 |
msgstr ""
|
2623 |
|
2624 |
#: inc/admin/callbacks/Social.php:222
|
2625 |
+
#: inc/admin/wizard/admin-wizard.php:890
|
2626 |
msgid "eg: https://pinterest.com/my-page-url/"
|
2627 |
msgstr ""
|
2628 |
|
2629 |
#: inc/admin/callbacks/Social.php:222
|
2630 |
#: inc/admin/settings/Social.php:89
|
2631 |
+
#: inc/admin/wizard/admin-wizard.php:888
|
2632 |
#: src/Tags/Schema/SocialAccount/Pinterest.php:15
|
2633 |
msgid "Pinterest URL"
|
2634 |
msgstr ""
|
2635 |
|
2636 |
#: inc/admin/callbacks/Social.php:233
|
2637 |
+
#: inc/admin/wizard/admin-wizard.php:897
|
2638 |
msgid "eg: https://www.instagram.com/my-page-url/"
|
2639 |
msgstr ""
|
2640 |
|
2641 |
#: inc/admin/callbacks/Social.php:233
|
2642 |
#: inc/admin/settings/Social.php:97
|
2643 |
+
#: inc/admin/wizard/admin-wizard.php:895
|
2644 |
#: src/Tags/Schema/SocialAccount/Instagram.php:15
|
2645 |
msgid "Instagram URL"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
#: inc/admin/callbacks/Social.php:244
|
2649 |
+
#: inc/admin/wizard/admin-wizard.php:904
|
2650 |
msgid "eg: https://www.youtube.com/my-channel-url"
|
2651 |
msgstr ""
|
2652 |
|
2653 |
#: inc/admin/callbacks/Social.php:244
|
2654 |
#: inc/admin/settings/Social.php:105
|
2655 |
+
#: inc/admin/wizard/admin-wizard.php:902
|
2656 |
#: src/Tags/Schema/SocialAccount/Youtube.php:15
|
2657 |
msgid "YouTube URL"
|
2658 |
msgstr ""
|
2659 |
|
2660 |
#: inc/admin/callbacks/Social.php:255
|
2661 |
+
#: inc/admin/wizard/admin-wizard.php:911
|
2662 |
msgid "eg: http://linkedin.com/company/my-company-url/"
|
2663 |
msgstr ""
|
2664 |
|
2665 |
#: inc/admin/callbacks/Social.php:255
|
2666 |
#: inc/admin/settings/Social.php:113
|
2667 |
+
#: inc/admin/wizard/admin-wizard.php:909
|
2668 |
#: src/Tags/Schema/SocialAccount/Linkedin.php:15
|
2669 |
msgid "LinkedIn URL"
|
2670 |
msgstr ""
|
2761 |
msgstr ""
|
2762 |
|
2763 |
#: inc/admin/callbacks/Social.php:549
|
2764 |
+
#: seopress.php:405
|
2765 |
msgid "Default"
|
2766 |
msgstr ""
|
2767 |
|
2779 |
|
2780 |
#: inc/admin/callbacks/Titles.php:13
|
2781 |
#: inc/admin/callbacks/Titles.php:42
|
2782 |
+
#: inc/admin/callbacks/Titles.php:242
|
2783 |
+
#: inc/admin/callbacks/Titles.php:452
|
2784 |
+
#: inc/admin/callbacks/Titles.php:671
|
2785 |
+
#: inc/admin/callbacks/Titles.php:893
|
2786 |
+
#: inc/admin/callbacks/Titles.php:1036
|
2787 |
+
#: inc/admin/callbacks/Titles.php:1130
|
2788 |
+
#: inc/admin/callbacks/Titles.php:1224
|
2789 |
+
#: inc/admin/callbacks/Titles.php:1297
|
2790 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:136
|
2791 |
#: inc/admin/page-builders/elementor/inc/controls/class-text-letter-counter-control.php:67
|
2792 |
#: inc/admin/settings/Titles.php:16
|
2793 |
+
#: inc/admin/wizard/admin-wizard.php:697
|
2794 |
#: src/Tags/Separator.php:17
|
2795 |
msgid "Separator"
|
2796 |
msgstr ""
|
2808 |
msgid "Site title"
|
2809 |
msgstr ""
|
2810 |
|
2811 |
+
#: inc/admin/callbacks/Titles.php:62
|
2812 |
+
msgid "My alternative site title"
|
2813 |
+
msgstr ""
|
2814 |
+
|
2815 |
+
#: inc/admin/callbacks/Titles.php:63
|
2816 |
+
#: inc/admin/settings/Titles.php:32
|
2817 |
+
#: inc/admin/wizard/admin-wizard.php:719
|
2818 |
+
msgid "Alternative site title"
|
2819 |
+
msgstr ""
|
2820 |
+
|
2821 |
+
#: inc/admin/callbacks/Titles.php:66
|
2822 |
+
#: inc/admin/wizard/admin-wizard.php:725
|
2823 |
+
msgid "The alternate name of the website (for example, if there's a commonly recognized acronym or shorter name for your site), if applicable. Make sure the name meets the <a href=\"%s\" target=\"_blank\">content guidelines</a>.<span class=\"dashicons dashicons-external\"></span>"
|
2824 |
+
msgstr ""
|
2825 |
+
|
2826 |
+
#: inc/admin/callbacks/Titles.php:77
|
2827 |
msgid "This is a cool website about Wookiees"
|
2828 |
msgstr ""
|
2829 |
|
2830 |
+
#: inc/admin/callbacks/Titles.php:78
|
2831 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:143
|
2832 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:144
|
2833 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:150
|
2834 |
+
#: inc/admin/migrate/MigrationTools.php:19
|
2835 |
+
#: inc/admin/settings/Titles.php:40
|
2836 |
+
#: inc/functions/options-advanced-admin.php:794
|
2837 |
+
#: src/Helpers/ContentAnalysis.php:53
|
2838 |
+
#: app/react/components/Forms/MetaTitleDescription/index.js:149
|
2839 |
+
#: app/react/components/Forms/MetaTitleDescription/index.js:151
|
2840 |
+
#: app/react/services/content-analysis/metaDescription.js:118
|
2841 |
+
msgid "Meta description"
|
2842 |
+
msgstr ""
|
2843 |
+
|
2844 |
+
#: inc/admin/callbacks/Titles.php:92
|
2845 |
msgid "Looking to edit your blog page?"
|
2846 |
msgstr ""
|
2847 |
|
2848 |
+
#: inc/admin/callbacks/Titles.php:134
|
2849 |
+
#: inc/admin/callbacks/Titles.php:144
|
2850 |
+
#: inc/admin/callbacks/Titles.php:149
|
2851 |
+
#: inc/admin/callbacks/Titles.php:158
|
2852 |
msgid "Click to hide any SEO metaboxes / columns for this post type"
|
2853 |
msgstr ""
|
2854 |
|
2855 |
+
#: inc/admin/callbacks/Titles.php:140
|
2856 |
+
#: inc/admin/callbacks/Titles.php:153
|
2857 |
+
#: inc/admin/callbacks/Titles.php:157
|
2858 |
msgid "Click to display any SEO metaboxes / columns for this post type"
|
2859 |
msgstr ""
|
2860 |
|
2861 |
+
#: inc/admin/callbacks/Titles.php:188
|
2862 |
+
#: inc/admin/callbacks/Titles.php:436
|
2863 |
+
#: inc/admin/callbacks/Titles.php:601
|
2864 |
+
#: inc/admin/callbacks/Titles.php:841
|
2865 |
+
#: inc/admin/callbacks/Titles.php:1020
|
2866 |
+
#: inc/admin/callbacks/Titles.php:1114
|
2867 |
+
#: inc/admin/callbacks/Titles.php:1207
|
2868 |
+
#: inc/admin/callbacks/Titles.php:1281
|
2869 |
msgid "Title template"
|
2870 |
msgstr ""
|
2871 |
|
2872 |
+
#: inc/admin/callbacks/Titles.php:259
|
2873 |
+
#: inc/admin/callbacks/Titles.php:470
|
2874 |
+
#: inc/admin/callbacks/Titles.php:689
|
2875 |
+
#: inc/admin/callbacks/Titles.php:908
|
2876 |
+
#: inc/admin/callbacks/Titles.php:1052
|
2877 |
+
#: inc/admin/callbacks/Titles.php:1145
|
2878 |
+
#: inc/admin/callbacks/Titles.php:1239
|
2879 |
+
#: inc/admin/callbacks/Titles.php:1309
|
2880 |
msgid "Meta description template"
|
2881 |
msgstr ""
|
2882 |
|
2883 |
+
#: inc/admin/callbacks/Titles.php:313
|
2884 |
msgid "Do not display this single post type in search engine results <strong>(noindex)</strong>"
|
2885 |
msgstr ""
|
2886 |
|
2887 |
+
#: inc/admin/callbacks/Titles.php:321
|
2888 |
msgid "This custom post type is <strong>NOT</strong> excluded from your XML sitemaps despite the fact that it is set to <strong>NOINDEX</strong>. We recommend that you <a href=\"%s\">check this out here</a>."
|
2889 |
msgstr ""
|
2890 |
|
2891 |
+
#: inc/admin/callbacks/Titles.php:350
|
2892 |
msgid "Do not follow links for this single post type <strong>(nofollow)</strong>"
|
2893 |
msgstr ""
|
2894 |
|
2895 |
+
#: inc/admin/callbacks/Titles.php:376
|
2896 |
msgid "Display date in Google search results by adding <code>article:published_time</code> and <code>article:modified_time</code> meta?"
|
2897 |
msgstr ""
|
2898 |
|
2899 |
+
#: inc/admin/callbacks/Titles.php:380
|
2900 |
msgid "Unchecking this doesn't prevent Google to display post date in search results."
|
2901 |
msgstr ""
|
2902 |
|
2903 |
+
#: inc/admin/callbacks/Titles.php:406
|
2904 |
msgid "Display post thumbnail in Google Custom Search results?"
|
2905 |
msgstr ""
|
2906 |
|
2907 |
+
#: inc/admin/callbacks/Titles.php:410
|
2908 |
msgid "This option does not apply to traditional search results. <a href=\"%s\" target=\"_blank\">Learn more</a>"
|
2909 |
msgstr ""
|
2910 |
|
2911 |
+
#: inc/admin/callbacks/Titles.php:432
|
2912 |
msgid "BuddyPress groups"
|
2913 |
msgstr ""
|
2914 |
|
2915 |
+
#: inc/admin/callbacks/Titles.php:496
|
2916 |
msgid "Do not display BuddyPress groups in search engine results <strong>(noindex)</strong>"
|
2917 |
msgstr ""
|
2918 |
|
2919 |
+
#: inc/admin/callbacks/Titles.php:541
|
2920 |
+
#: inc/admin/callbacks/Titles.php:552
|
2921 |
+
#: inc/admin/callbacks/Titles.php:557
|
2922 |
+
#: inc/admin/callbacks/Titles.php:566
|
2923 |
msgid "Click to hide any SEO metaboxes for this taxonomy"
|
2924 |
msgstr ""
|
2925 |
|
2926 |
+
#: inc/admin/callbacks/Titles.php:548
|
2927 |
+
#: inc/admin/callbacks/Titles.php:561
|
2928 |
+
#: inc/admin/callbacks/Titles.php:565
|
2929 |
msgid "Click to display any SEO metaboxes for this taxonomy"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
+
#: inc/admin/callbacks/Titles.php:647
|
2933 |
#: src/Tags/CategoryTitle.php:15
|
2934 |
msgid "Category Title"
|
2935 |
msgstr ""
|
2936 |
|
2937 |
+
#: inc/admin/callbacks/Titles.php:655
|
2938 |
#: src/Tags/TagTitle.php:15
|
2939 |
msgid "Tag Title"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
+
#: inc/admin/callbacks/Titles.php:663
|
2943 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:128
|
2944 |
#: src/Tags/TermTitle.php:15
|
2945 |
msgid "Term Title"
|
2946 |
msgstr ""
|
2947 |
|
2948 |
+
#: inc/admin/callbacks/Titles.php:720
|
2949 |
#: src/Tags/CategoryDescription.php:15
|
2950 |
msgid "Category Description"
|
2951 |
msgstr ""
|
2952 |
|
2953 |
+
#: inc/admin/callbacks/Titles.php:728
|
2954 |
#: src/Tags/TagDescription.php:15
|
2955 |
msgid "Tag Description"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
+
#: inc/admin/callbacks/Titles.php:736
|
2959 |
#: src/Tags/TermDescription.php:15
|
2960 |
msgid "Term Description"
|
2961 |
msgstr ""
|
2962 |
|
2963 |
+
#: inc/admin/callbacks/Titles.php:758
|
2964 |
msgid "Do not display this taxonomy archive in search engine results <strong>(noindex)</strong>"
|
2965 |
msgstr ""
|
2966 |
|
2967 |
+
#: inc/admin/callbacks/Titles.php:762
|
2968 |
+
#: inc/admin/wizard/admin-wizard.php:1202
|
2969 |
msgid "We do not recommend indexing <strong>tags</strong> which are, in the vast majority of cases, a source of duplicate content."
|
2970 |
msgstr ""
|
2971 |
|
2972 |
+
#: inc/admin/callbacks/Titles.php:773
|
2973 |
msgid "This custom taxonomy is <strong>NOT</strong> excluded from your XML sitemaps despite the fact that it is set to <strong>NOINDEX</strong>. We recommend that you check this out."
|
2974 |
msgstr ""
|
2975 |
|
2976 |
+
#: inc/admin/callbacks/Titles.php:803
|
2977 |
msgid "Do not follow links for this taxonomy archive <strong>(nofollow)</strong>"
|
2978 |
msgstr ""
|
2979 |
|
2980 |
+
#: inc/admin/callbacks/Titles.php:832
|
2981 |
msgid "See archive"
|
2982 |
msgstr ""
|
2983 |
|
2984 |
+
#: inc/admin/callbacks/Titles.php:888
|
2985 |
msgid "Post Type Archive Name"
|
2986 |
msgstr ""
|
2987 |
|
2988 |
+
#: inc/admin/callbacks/Titles.php:972
|
2989 |
msgid "Do not display this post type archive in search engine results <strong>(noindex)</strong>"
|
2990 |
msgstr ""
|
2991 |
|
2992 |
+
#: inc/admin/callbacks/Titles.php:999
|
2993 |
msgid "Do not follow links for this post type archive <strong>(nofollow)</strong>"
|
2994 |
msgstr ""
|
2995 |
|
2996 |
+
#: inc/admin/callbacks/Titles.php:1016
|
2997 |
msgid "Author archives"
|
2998 |
msgstr ""
|
2999 |
|
3000 |
+
#: inc/admin/callbacks/Titles.php:1077
|
3001 |
+
#: inc/admin/wizard/admin-wizard.php:1286
|
3002 |
msgid "Do not display author archives in search engine results <strong>(noindex)</strong>"
|
3003 |
msgstr ""
|
3004 |
|
3005 |
+
#: inc/admin/callbacks/Titles.php:1098
|
3006 |
msgid "Disable author archives"
|
3007 |
msgstr ""
|
3008 |
|
3009 |
+
#: inc/admin/callbacks/Titles.php:1110
|
3010 |
+
#: inc/admin/callbacks/Titles.php:1126
|
3011 |
msgid "Date archives"
|
3012 |
msgstr ""
|
3013 |
|
3014 |
+
#: inc/admin/callbacks/Titles.php:1169
|
3015 |
msgid "Do not display date archives in search engine results <strong>(noindex)</strong>"
|
3016 |
msgstr ""
|
3017 |
|
3018 |
+
#: inc/admin/callbacks/Titles.php:1191
|
3019 |
msgid "Disable date archives"
|
3020 |
msgstr ""
|
3021 |
|
3022 |
+
#: inc/admin/callbacks/Titles.php:1203
|
3023 |
msgid "Search archives"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
+
#: inc/admin/callbacks/Titles.php:1219
|
3027 |
#: src/Tags/SearchKeywords.php:15
|
3028 |
msgid "Search Keywords"
|
3029 |
msgstr ""
|
3030 |
|
3031 |
+
#: inc/admin/callbacks/Titles.php:1265
|
3032 |
msgid "Do not display search archives in search engine results <strong>(noindex)</strong>"
|
3033 |
msgstr ""
|
3034 |
|
3035 |
+
#: inc/admin/callbacks/Titles.php:1277
|
3036 |
msgid "404 archives"
|
3037 |
msgstr ""
|
3038 |
|
3039 |
+
#: inc/admin/callbacks/Titles.php:1336
|
3040 |
+
#: inc/admin/settings/Titles.php:251
|
3041 |
msgid "noindex"
|
3042 |
msgstr ""
|
3043 |
|
3044 |
+
#: inc/admin/callbacks/Titles.php:1340
|
3045 |
msgid "Do not display all pages of the site in Google search results and do not display \"Cached\" links in search results."
|
3046 |
msgstr ""
|
3047 |
|
3048 |
+
#: inc/admin/callbacks/Titles.php:1344
|
3049 |
msgid "Check also the <strong>\"Search engine visibility\"</strong> setting from the <a href=\"%s\">WordPress Reading page</a>."
|
3050 |
msgstr ""
|
3051 |
|
3052 |
+
#: inc/admin/callbacks/Titles.php:1366
|
3053 |
+
#: inc/admin/settings/Titles.php:259
|
3054 |
msgid "nofollow"
|
3055 |
msgstr ""
|
3056 |
|
3057 |
+
#: inc/admin/callbacks/Titles.php:1370
|
3058 |
msgid "Do not follow links for all pages."
|
3059 |
msgstr ""
|
3060 |
|
3061 |
+
#: inc/admin/callbacks/Titles.php:1392
|
3062 |
+
#: inc/admin/settings/Titles.php:267
|
3063 |
msgid "noodp"
|
3064 |
msgstr ""
|
3065 |
|
3066 |
+
#: inc/admin/callbacks/Titles.php:1396
|
3067 |
msgid "Do not use Open Directory project metadata for titles or excerpts for all pages."
|
3068 |
msgstr ""
|
3069 |
|
3070 |
+
#: inc/admin/callbacks/Titles.php:1418
|
3071 |
+
#: inc/admin/settings/Titles.php:275
|
3072 |
msgid "noimageindex"
|
3073 |
msgstr ""
|
3074 |
|
3075 |
+
#: inc/admin/callbacks/Titles.php:1422
|
3076 |
msgid "Do not index images from the entire site."
|
3077 |
msgstr ""
|
3078 |
|
3079 |
+
#: inc/admin/callbacks/Titles.php:1443
|
3080 |
+
#: inc/admin/settings/Titles.php:283
|
3081 |
msgid "noarchive"
|
3082 |
msgstr ""
|
3083 |
|
3084 |
+
#: inc/admin/callbacks/Titles.php:1447
|
3085 |
msgid "Do not display a \"Cached\" link in the Google search results."
|
3086 |
msgstr ""
|
3087 |
|
3088 |
+
#: inc/admin/callbacks/Titles.php:1469
|
3089 |
+
#: inc/admin/settings/Titles.php:291
|
3090 |
msgid "nosnippet"
|
3091 |
msgstr ""
|
3092 |
|
3093 |
+
#: inc/admin/callbacks/Titles.php:1473
|
3094 |
msgid "Do not display a description in the Google search results for all pages."
|
3095 |
msgstr ""
|
3096 |
|
3097 |
+
#: inc/admin/callbacks/Titles.php:1495
|
3098 |
+
#: inc/admin/settings/Titles.php:299
|
3099 |
msgid "nositelinkssearchbox"
|
3100 |
msgstr ""
|
3101 |
|
3102 |
+
#: inc/admin/callbacks/Titles.php:1499
|
3103 |
msgid "Prevents Google to display a sitelinks searchbox in search results. Enable this option will remove the \"Website\" schema from your source code."
|
3104 |
msgstr ""
|
3105 |
|
3106 |
+
#: inc/admin/callbacks/Titles.php:1521
|
3107 |
msgid "Add rel next/prev link in head of paginated archive pages"
|
3108 |
msgstr ""
|
3109 |
|
3110 |
+
#: inc/admin/callbacks/Titles.php:1543
|
3111 |
msgid "Add a \"noindex\" meta robots for all paginated archive pages"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
+
#: inc/admin/callbacks/Titles.php:1547
|
3115 |
msgid "eg: https://example.com/category/my-category/page/2/"
|
3116 |
msgstr ""
|
3117 |
|
3118 |
+
#: inc/admin/callbacks/Titles.php:1569
|
3119 |
msgid "Add a \"noindex\" meta robots for all attachment pages"
|
3120 |
msgstr ""
|
3121 |
|
3122 |
+
#: inc/admin/callbacks/Titles.php:1573
|
3123 |
msgid "eg: https://example.com/my-media-attachment-page"
|
3124 |
msgstr ""
|
3125 |
|
3126 |
+
#: inc/admin/docs/DocsLinks.php:161
|
3127 |
msgid "Installation of SEOPress"
|
3128 |
msgstr ""
|
3129 |
|
3130 |
+
#: inc/admin/docs/DocsLinks.php:162
|
3131 |
msgid "Activate your license key to receive automatic updates"
|
3132 |
msgstr ""
|
3133 |
|
3134 |
+
#: inc/admin/docs/DocsLinks.php:163
|
3135 |
msgid "Configure SEOPress in 5 minutes"
|
3136 |
msgstr ""
|
3137 |
|
3138 |
+
#: inc/admin/docs/DocsLinks.php:164
|
3139 |
msgid "Migrate your SEO metadata from other plugins"
|
3140 |
msgstr ""
|
3141 |
|
3142 |
+
#: inc/admin/docs/DocsLinks.php:165
|
3143 |
msgid "Promote the exploration of your WordPress site by search engine robots"
|
3144 |
msgstr ""
|
3145 |
|
3146 |
+
#: inc/admin/docs/DocsLinks.php:166
|
3147 |
msgid "Optimize content from A to Z with SEOPress"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
+
#: inc/admin/docs/DocsLinks.php:167
|
3151 |
msgid "Measure your traffic with Google Analytics"
|
3152 |
msgstr ""
|
3153 |
|
3154 |
+
#: inc/admin/docs/DocsLinks.php:168
|
3155 |
msgid "Add your WordPress site to Google’s index"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
+
#: inc/admin/docs/DocsLinks.php:169
|
3159 |
msgid "Optimize your click-through rate on social networks"
|
3160 |
msgstr ""
|
3161 |
|
3162 |
+
#: inc/admin/docs/DocsLinks.php:170
|
3163 |
msgid "Free ebooks to learn SEO"
|
3164 |
msgstr ""
|
3165 |
|
3166 |
+
#: inc/admin/docs/DocsLinks.php:173
|
3167 |
msgid "Activate your SEOPress Insights license"
|
3168 |
msgstr ""
|
3169 |
|
3170 |
+
#: inc/admin/docs/DocsLinks.php:174
|
3171 |
msgid "Track your keyword rankings in Google with SEOPress Insights"
|
3172 |
msgstr ""
|
3173 |
|
3174 |
+
#: inc/admin/docs/DocsLinks.php:175
|
3175 |
msgid "Monitor and analyse your Backlinks with SEOPress Insights"
|
3176 |
msgstr ""
|
3177 |
|
3178 |
+
#: inc/admin/docs/DocsLinks.php:176
|
3179 |
msgid "Finding SEO keywords for your WordPress site"
|
3180 |
msgstr ""
|
3181 |
|
3182 |
+
#: inc/admin/docs/DocsLinks.php:177
|
3183 |
msgid "Optimize WordPress posts for a keyword"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
+
#: inc/admin/docs/DocsLinks.php:178
|
3187 |
msgid "Audit the backlinks of your WordPress site (in WordPress)"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
+
#: inc/admin/docs/DocsLinks.php:179
|
3191 |
msgid "The importance of backlinks"
|
3192 |
msgstr ""
|
3193 |
|
3255 |
msgid "Writing content for your users is the most important thing! If it doesn‘t feel natural, your visitors will leave your site, Google will know it and your ranking will be affected."
|
3256 |
msgstr ""
|
3257 |
|
3258 |
+
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:36
|
3259 |
+
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:37
|
3260 |
+
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:41
|
3261 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:564
|
3262 |
+
#: inc/functions/options-advanced-admin.php:803
|
3263 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:365
|
3264 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:367
|
3265 |
+
msgid "Target keywords"
|
3266 |
+
msgstr ""
|
3267 |
+
|
3268 |
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:37
|
3269 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:566
|
3270 |
#: app/react/layout/Main/components/ContentAnalysis/index.js:370
|
3272 |
msgstr ""
|
3273 |
|
3274 |
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:40
|
3275 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:428
|
3276 |
msgid "Enter your target keywords"
|
3277 |
msgstr ""
|
3278 |
|
3279 |
+
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:45
|
|
|
|
|
|
|
|
|
3280 |
#: inc/admin/page-builders/elementor/inc/controls/class-content-analysis-control.php:46
|
3281 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:443
|
3282 |
msgid "Refresh analysis"
|
3283 |
msgstr ""
|
3284 |
|
3285 |
+
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:52
|
3286 |
msgid "Track with Insights"
|
3287 |
msgstr ""
|
3288 |
|
3289 |
+
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:58
|
3290 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:590
|
3291 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:446
|
3292 |
msgid "To get the most accurate analysis, save your post first. We analyze all of your source code as a search engine would."
|
3293 |
msgstr ""
|
3294 |
|
3295 |
+
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:64
|
3296 |
+
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:65
|
3297 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:577
|
3298 |
#: inc/admin/page-builders/elementor/inc/controls/class-google-suggestions-control.php:50
|
3299 |
#: inc/admin/page-builders/elementor/inc/controls/class-google-suggestions-control.php:51
|
3300 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:456
|
3301 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:458
|
3302 |
msgid "Google suggestions"
|
3303 |
msgstr ""
|
3304 |
|
3305 |
+
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:65
|
3306 |
#: inc/admin/page-builders/elementor/inc/controls/class-google-suggestions-control.php:51
|
3307 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:461
|
3308 |
msgid "Enter a keyword, or a phrase, to find the top 10 Google suggestions instantly. This is useful if you want to work with the long tail technique."
|
3309 |
msgstr ""
|
3310 |
|
3311 |
+
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:68
|
3312 |
#: inc/admin/page-builders/elementor/inc/controls/class-google-suggestions-control.php:52
|
3313 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:474
|
3314 |
msgid "Get suggestions from Google"
|
3315 |
msgstr ""
|
3316 |
|
3317 |
+
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:70
|
3318 |
msgid "Click on a suggestion below to add it as a target keyword."
|
3319 |
msgstr ""
|
3320 |
|
3321 |
+
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:74
|
3322 |
#: inc/admin/page-builders/elementor/inc/controls/class-google-suggestions-control.php:53
|
3323 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:497
|
3324 |
msgid "Get suggestions!"
|
3325 |
msgstr ""
|
3326 |
|
3327 |
+
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:122
|
3328 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:404
|
3329 |
+
msgid "is already used %d time"
|
3330 |
+
msgid_plural "is already used %d times"
|
3331 |
+
msgstr[0] ""
|
3332 |
+
msgstr[1] ""
|
3333 |
+
|
3334 |
+
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:131
|
3335 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:381
|
3336 |
+
msgid "The keyword:"
|
3337 |
+
msgid_plural "These keywords:"
|
3338 |
+
msgstr[0] ""
|
3339 |
+
msgstr[1] ""
|
3340 |
+
|
3341 |
+
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:135
|
3342 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:418
|
3343 |
+
msgid "You should avoid using multiple times the same keyword for different pages. Try to consolidate your content into one single page."
|
3344 |
+
msgstr ""
|
3345 |
+
|
3346 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:53
|
3347 |
msgid "Titles settings"
|
3348 |
msgstr ""
|
3379 |
msgid "Title"
|
3380 |
msgstr ""
|
3381 |
|
3382 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:104
|
3383 |
+
#: src/Helpers/ContentAnalysis.php:48
|
3384 |
+
#: app/react/components/Forms/MetaTitleDescription/index.js:83
|
3385 |
+
#: app/react/services/content-analysis/metaTitle.js:111
|
3386 |
+
msgid "Meta title"
|
3387 |
+
msgstr ""
|
3388 |
+
|
3389 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:104
|
3390 |
#: app/react/components/Forms/MetaTitleDescription/index.js:86
|
3391 |
msgid "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."
|
3549 |
msgid "By checking this option, you will add a meta robots tag with the value \"nosnippet\"."
|
3550 |
msgstr ""
|
3551 |
|
3552 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:321
|
3553 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:322
|
3554 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:328
|
3555 |
+
#: inc/admin/migrate/MigrationTools.php:28
|
3556 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:263
|
3557 |
+
#: src/Helpers/ContentAnalysis.php:13
|
3558 |
+
#: src/Helpers/Metas/RobotSettings.php:100
|
3559 |
+
#: app/react/layout/Main/components/Advanced/index.js:145
|
3560 |
+
#: app/react/services/content-analysis/canonicalUrl.js:112
|
3561 |
+
msgid "Canonical URL"
|
3562 |
+
msgstr ""
|
3563 |
+
|
3564 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:322
|
3565 |
msgid "A canonical URL is the URL of the page that Google thinks is most representative from a set of duplicate pages on your site. <br>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. <br>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."
|
3566 |
msgstr ""
|
4051 |
msgid "Focus / target keywords"
|
4052 |
msgstr ""
|
4053 |
|
4054 |
+
#: inc/admin/migrate/MigrationTools.php:34
|
4055 |
+
msgid "Primary category"
|
4056 |
+
msgstr ""
|
4057 |
+
|
4058 |
#: inc/admin/migrate/MigrationTools.php:37
|
4059 |
#: src/Actions/Admin/ManageColumn.php:70
|
4060 |
msgid "Redirect URL"
|
4068 |
msgid "Migrate now"
|
4069 |
msgstr ""
|
4070 |
|
4071 |
+
#: inc/admin/page-builders/classic/classic-editor.php:17
|
4072 |
+
msgid "Add <code>rel=\"sponsored\"</code> attribute"
|
4073 |
+
msgstr ""
|
4074 |
+
|
4075 |
+
#: inc/admin/page-builders/classic/classic-editor.php:18
|
4076 |
+
msgid "Add <code>rel=\"nofollow\"</code> attribute"
|
4077 |
+
msgstr ""
|
4078 |
+
|
4079 |
+
#: inc/admin/page-builders/classic/classic-editor.php:19
|
4080 |
+
msgid "Add <code>rel=\"UGC\"</code> attribute"
|
4081 |
+
msgstr ""
|
4082 |
+
|
4083 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:110
|
4084 |
msgid "SEO Title / Description"
|
4085 |
msgstr ""
|
4156 |
msgid "Advanced SEO options for advanced users."
|
4157 |
msgstr ""
|
4158 |
|
4159 |
+
#: inc/admin/sections/Advanced.php:30
|
4160 |
+
#: inc/admin/sections/Advanced.php:110
|
4161 |
+
msgid "Metaboxes"
|
4162 |
msgstr ""
|
4163 |
|
4164 |
+
#: inc/admin/sections/Advanced.php:31
|
4165 |
+
#: inc/admin/sections/Advanced.php:136
|
4166 |
+
msgid "Admin bar"
|
4167 |
msgstr ""
|
4168 |
|
4169 |
+
#: inc/admin/sections/Advanced.php:32
|
4170 |
+
#: inc/admin/sections/Advanced.php:123
|
4171 |
+
msgid "SEO Dashboard"
|
4172 |
msgstr ""
|
4173 |
|
4174 |
+
#: inc/admin/sections/Advanced.php:33
|
4175 |
+
#: inc/admin/sections/Advanced.php:97
|
4176 |
+
msgid "Columns"
|
4177 |
msgstr ""
|
4178 |
|
4179 |
+
#: inc/admin/sections/Advanced.php:34
|
4180 |
+
#: inc/admin/sections/Advanced.php:149
|
4181 |
+
#: inc/admin/sections/Analytics.php:116
|
4182 |
+
#: inc/admin/sections/Analytics.php:151
|
4183 |
+
msgid "Misc"
|
4184 |
msgstr ""
|
4185 |
|
4186 |
+
#: inc/admin/sections/Advanced.php:38
|
4187 |
+
msgid "Customize the plugin to fit your needs."
|
4188 |
msgstr ""
|
4189 |
|
4190 |
+
#: inc/admin/sections/Advanced.php:54
|
4191 |
+
#: inc/admin/sections/Advanced.php:65
|
4192 |
+
msgid "SEOPress metaboxes"
|
4193 |
msgstr ""
|
4194 |
|
4195 |
+
#: inc/admin/sections/Advanced.php:55
|
4196 |
+
#: inc/admin/sections/Advanced.php:82
|
4197 |
+
msgid "SEOPress settings pages"
|
4198 |
msgstr ""
|
4199 |
|
4200 |
+
#: inc/admin/sections/Advanced.php:59
|
4201 |
+
msgid "Control access to SEO settings and metaboxes by user roles."
|
4202 |
msgstr ""
|
4203 |
|
4204 |
+
#: inc/admin/sections/Advanced.php:69
|
4205 |
+
msgid "Check a user role to prevent it to edit a specific metabox."
|
4206 |
msgstr ""
|
4207 |
|
4208 |
+
#: inc/admin/sections/Advanced.php:86
|
4209 |
+
msgid "Check a user role to allow it to edit a specific settings page."
|
4210 |
msgstr ""
|
4211 |
|
4212 |
+
#: inc/admin/sections/Advanced.php:100
|
4213 |
+
msgid "Customize the SEO columns."
|
4214 |
msgstr ""
|
4215 |
|
4216 |
+
#: inc/admin/sections/Advanced.php:113
|
4217 |
+
msgid "Edit your SEO metadata directly from your favorite page builder."
|
4218 |
msgstr ""
|
4219 |
|
4220 |
+
#: inc/admin/sections/Advanced.php:126
|
4221 |
+
msgid "Customize the SEO dashboard UI."
|
4222 |
+
msgstr ""
|
4223 |
+
|
4224 |
+
#: inc/admin/sections/Advanced.php:139
|
4225 |
+
msgid "The admin bar appears on the top of your pages when logged in to your WP admin."
|
4226 |
msgstr ""
|
4227 |
|
4228 |
#: inc/admin/sections/Analytics.php:16
|
4229 |
#: inc/admin/sections/Analytics.php:54
|
4230 |
+
#: inc/admin/sections/Analytics.php:166
|
4231 |
+
#: inc/admin/sections/Analytics.php:176
|
4232 |
msgid "Tracking"
|
4233 |
msgstr ""
|
4234 |
|
4242 |
msgstr ""
|
4243 |
|
4244 |
#: inc/admin/sections/Analytics.php:18
|
4245 |
+
#: inc/admin/sections/Analytics.php:167
|
4246 |
msgid "Stats in Dashboard"
|
4247 |
msgstr ""
|
4248 |
|
4282 |
msgid "Advanced settings"
|
4283 |
msgstr ""
|
4284 |
|
4285 |
+
#: inc/admin/sections/Analytics.php:115
|
4286 |
+
#: inc/admin/sections/Analytics.php:126
|
4287 |
+
msgid "Custom Dimensions"
|
4288 |
msgstr ""
|
4289 |
|
4290 |
#: inc/admin/sections/Analytics.php:121
|
4291 |
+
msgid "All advanced settings work with <strong>Google Analytics</strong> and <strong>Matomo</strong> tracking code."
|
4292 |
msgstr ""
|
4293 |
|
4294 |
+
#: inc/admin/sections/Analytics.php:129
|
4295 |
msgid "Configure your Google Analytics custom dimensions."
|
4296 |
msgstr ""
|
4297 |
|
4298 |
+
#: inc/admin/sections/Analytics.php:132
|
4299 |
msgid "Custom dimensions and custom metrics are like the default dimensions and metrics in your Analytics account, except you create them yourself."
|
4300 |
msgstr ""
|
4301 |
|
4302 |
+
#: inc/admin/sections/Analytics.php:135
|
4303 |
msgid "Use them to collect and analyze data that Analytics doesn't automatically track."
|
4304 |
msgstr ""
|
4305 |
|
4306 |
+
#: inc/admin/sections/Analytics.php:138
|
4307 |
msgid "Please note that you also have to setup your custom dimensions in your Google Analytics account. More info by clicking on the help icon."
|
4308 |
msgstr ""
|
4309 |
|
4310 |
+
#: inc/admin/sections/Analytics.php:141
|
4311 |
msgid "Guide to create custom dimensions in Google Analytics - new window"
|
4312 |
msgstr ""
|
4313 |
|
4314 |
+
#: inc/admin/sections/Analytics.php:171
|
4315 |
msgid "Use Matomo to track your users with privacy in mind. We support both On Premise and Cloud installations."
|
4316 |
msgstr ""
|
4317 |
|
4318 |
+
#: inc/admin/sections/Analytics.php:181
|
4319 |
msgid "Your <strong>Custom Dimensions</strong> will also work with Matomo tracking code."
|
4320 |
msgstr ""
|
4321 |
|
4322 |
+
#: inc/admin/sections/Analytics.php:193
|
4323 |
msgid "Microsoft Clarity"
|
4324 |
msgstr ""
|
4325 |
|
4326 |
+
#: inc/admin/sections/Analytics.php:197
|
4327 |
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."
|
4328 |
msgstr ""
|
4329 |
|
4330 |
+
#: inc/admin/sections/Analytics.php:202
|
4331 |
msgid "Create your first Microsoft Clarity project <a href=\"%s\" target=\"_blank\">here</a>."
|
4332 |
msgstr ""
|
4333 |
|
4971 |
msgstr ""
|
4972 |
|
4973 |
#: inc/admin/settings/Social.php:16
|
4974 |
+
#: inc/admin/wizard/admin-wizard.php:728
|
4975 |
msgid "Person or organization"
|
4976 |
msgstr ""
|
4977 |
|
4984 |
msgstr ""
|
4985 |
|
4986 |
#: inc/admin/settings/Social.php:81
|
4987 |
+
#: inc/admin/wizard/admin-wizard.php:881
|
4988 |
msgid "Twitter Username"
|
4989 |
msgstr ""
|
4990 |
|
5024 |
msgid "Image size for Twitter Summary card"
|
5025 |
msgstr ""
|
5026 |
|
5027 |
+
#: inc/admin/settings/Titles.php:307
|
5028 |
msgid "Indicate paginated content to Google"
|
5029 |
msgstr ""
|
5030 |
|
5031 |
+
#: inc/admin/settings/Titles.php:315
|
5032 |
msgid "noindex on paged archives"
|
5033 |
msgstr ""
|
5034 |
|
5035 |
+
#: inc/admin/settings/Titles.php:322
|
5036 |
msgid "noindex on attachment pages"
|
5037 |
msgstr ""
|
5038 |
|
5039 |
+
#: inc/admin/wizard/admin-wizard.php:135
|
5040 |
+
#: seopress.php:368
|
5041 |
msgid "Migration completed!"
|
5042 |
msgstr ""
|
5043 |
|
5044 |
+
#: inc/admin/wizard/admin-wizard.php:136
|
5045 |
+
#: seopress.php:370
|
5046 |
msgid "Export completed!"
|
5047 |
msgstr ""
|
5048 |
|
|
|
5049 |
#: inc/admin/wizard/admin-wizard.php:158
|
5050 |
+
#: inc/admin/wizard/admin-wizard.php:162
|
5051 |
+
#: inc/admin/wizard/admin-wizard.php:172
|
5052 |
msgid "Welcome"
|
5053 |
msgstr ""
|
5054 |
|
5055 |
+
#: inc/admin/wizard/admin-wizard.php:163
|
5056 |
+
#: inc/admin/wizard/admin-wizard.php:173
|
5057 |
msgid "Import metadata"
|
5058 |
msgstr ""
|
5059 |
|
5060 |
+
#: inc/admin/wizard/admin-wizard.php:168
|
5061 |
msgid "Import SEO metadata"
|
5062 |
msgstr ""
|
5063 |
|
5064 |
+
#: inc/admin/wizard/admin-wizard.php:179
|
5065 |
+
#: inc/admin/wizard/admin-wizard.php:189
|
5066 |
+
#: inc/admin/wizard/admin-wizard.php:685
|
5067 |
+
#: inc/admin/wizard/admin-wizard.php:861
|
5068 |
msgid "Your site"
|
5069 |
msgstr ""
|
5070 |
|
5071 |
+
#: inc/admin/wizard/admin-wizard.php:200
|
5072 |
+
#: inc/admin/wizard/admin-wizard.php:211
|
5073 |
+
#: inc/admin/wizard/admin-wizard.php:222
|
5074 |
+
#: inc/admin/wizard/admin-wizard.php:960
|
5075 |
+
#: inc/admin/wizard/admin-wizard.php:1054
|
5076 |
+
#: inc/admin/wizard/admin-wizard.php:1160
|
5077 |
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:271
|
5078 |
#: app/react/layout/Main/components/InspectUrl/index.js:429
|
5079 |
msgid "Indexing"
|
5080 |
msgstr ""
|
5081 |
|
5082 |
+
#: inc/admin/wizard/admin-wizard.php:234
|
5083 |
+
#: inc/admin/wizard/admin-wizard.php:244
|
5084 |
+
#: inc/admin/wizard/admin-wizard.php:1269
|
5085 |
+
#: inc/admin/wizard/admin-wizard.php:1407
|
5086 |
msgid "Advanced options"
|
5087 |
msgstr ""
|
5088 |
|
5089 |
+
#: inc/admin/wizard/admin-wizard.php:239
|
5090 |
+
#: inc/admin/wizard/admin-wizard.php:249
|
5091 |
msgid "Universal SEO metabox"
|
5092 |
msgstr ""
|
5093 |
|
5094 |
+
#: inc/admin/wizard/admin-wizard.php:279
|
5095 |
+
#: inc/admin/wizard/admin-wizard.php:289
|
5096 |
msgid "Extend %s"
|
5097 |
msgstr ""
|
5098 |
|
|
|
5099 |
#: inc/admin/wizard/admin-wizard.php:312
|
5100 |
+
#: inc/admin/wizard/admin-wizard.php:316
|
5101 |
msgid "Ready!"
|
5102 |
msgstr ""
|
5103 |
|
5104 |
+
#: inc/admin/wizard/admin-wizard.php:397
|
5105 |
msgid "%s › Setup Wizard"
|
5106 |
msgstr ""
|
5107 |
|
5108 |
+
#: inc/admin/wizard/admin-wizard.php:420
|
5109 |
msgid "Not right now"
|
5110 |
msgstr ""
|
5111 |
|
5112 |
+
#: inc/admin/wizard/admin-wizard.php:440
|
5113 |
msgid "Skip this step"
|
5114 |
msgstr ""
|
5115 |
|
5116 |
+
#: inc/admin/wizard/admin-wizard.php:558
|
5117 |
+
#: inc/admin/wizard/admin-wizard.php:1614
|
5118 |
msgid "Welcome to %s!"
|
5119 |
msgstr ""
|
5120 |
|
5121 |
+
#: inc/admin/wizard/admin-wizard.php:565
|
5122 |
msgid "Configure %s with the best settings for your site"
|
5123 |
msgstr ""
|
5124 |
|
5125 |
+
#: inc/admin/wizard/admin-wizard.php:566
|
5126 |
msgid "The following wizard will help you configure %s and get you started quickly."
|
5127 |
msgstr ""
|
5128 |
|
5129 |
+
#: inc/admin/wizard/admin-wizard.php:571
|
5130 |
+
#: inc/admin/wizard/admin-wizard.php:573
|
5131 |
+
#: inc/admin/wizard/admin-wizard.php:642
|
5132 |
+
#: inc/admin/wizard/admin-wizard.php:644
|
5133 |
+
#: inc/admin/wizard/admin-wizard.php:1611
|
5134 |
+
#: inc/admin/wizard/admin-wizard.php:1633
|
5135 |
msgid "Next step"
|
5136 |
msgstr ""
|
5137 |
|
5138 |
+
#: inc/admin/wizard/admin-wizard.php:593
|
5139 |
msgid "Migrate your SEO metadata to %s!"
|
5140 |
msgstr ""
|
5141 |
|
5142 |
+
#: inc/admin/wizard/admin-wizard.php:601
|
5143 |
msgid "The first step is to import your previous post and term metadata from other plugins to keep your SEO."
|
5144 |
msgstr ""
|
5145 |
|
5146 |
+
#: inc/admin/wizard/admin-wizard.php:638
|
5147 |
msgid "No data to migrate? Click \"Next step\" button!"
|
5148 |
msgstr ""
|
5149 |
|
5150 |
+
#: inc/admin/wizard/admin-wizard.php:692
|
5151 |
msgid "Tell us more about your site"
|
5152 |
msgstr ""
|
5153 |
|
5154 |
+
#: inc/admin/wizard/admin-wizard.php:693
|
5155 |
msgid "To build title tags and knowledge graph for Google, you need to fill out the fields below to configure the general settings."
|
5156 |
msgstr ""
|
5157 |
|
5158 |
+
#: inc/admin/wizard/admin-wizard.php:699
|
5159 |
msgid "eg: |"
|
5160 |
msgstr ""
|
5161 |
|
5162 |
+
#: inc/admin/wizard/admin-wizard.php:704
|
5163 |
msgid "This separator will be used by the dynamic variable <strong>%%sep%%</strong> in your title and meta description templates."
|
5164 |
msgstr ""
|
5165 |
|
5166 |
+
#: inc/admin/wizard/admin-wizard.php:708
|
5167 |
msgid "Home site title"
|
5168 |
msgstr ""
|
5169 |
|
5170 |
+
#: inc/admin/wizard/admin-wizard.php:710
|
5171 |
msgid "eg: My super website"
|
5172 |
msgstr ""
|
5173 |
|
5174 |
+
#: inc/admin/wizard/admin-wizard.php:715
|
5175 |
msgid "The site title will be used by the dynamic variable <strong>%%sitetitle%%</strong> in your title and meta description templates."
|
5176 |
msgstr ""
|
5177 |
|
5178 |
+
#: inc/admin/wizard/admin-wizard.php:721
|
5179 |
+
msgid "eg: My alternative site title"
|
5180 |
+
msgstr ""
|
5181 |
+
|
5182 |
+
#: inc/admin/wizard/admin-wizard.php:730
|
5183 |
msgid "Choose a knowledge type"
|
5184 |
msgstr ""
|
5185 |
|
5186 |
+
#: inc/admin/wizard/admin-wizard.php:750
|
5187 |
msgid "Choose between <strong>\"Organization\"</strong> (for companies, associations, organizations), or <strong>\"Personal\"</strong> for a personal site, to help Google better understand your type of website and generate a Knowledge Graph panel."
|
5188 |
msgstr ""
|
5189 |
|
5190 |
+
#: inc/admin/wizard/admin-wizard.php:756
|
5191 |
msgid "eg: My Company Name"
|
5192 |
msgstr ""
|
5193 |
|
5194 |
+
#: inc/admin/wizard/admin-wizard.php:763
|
5195 |
msgid "eg: https://www.example.com/logo.png"
|
5196 |
msgstr ""
|
5197 |
|
5198 |
+
#: inc/admin/wizard/admin-wizard.php:771
|
5199 |
msgid "Your email"
|
5200 |
msgstr ""
|
5201 |
|
5202 |
+
#: inc/admin/wizard/admin-wizard.php:773
|
5203 |
msgid "eg: enter"
|
5204 |
msgstr ""
|
5205 |
|
5206 |
+
#: inc/admin/wizard/admin-wizard.php:789
|
5207 |
+
#: inc/admin/wizard/admin-wizard.php:791
|
5208 |
+
#: inc/admin/wizard/admin-wizard.php:917
|
5209 |
+
#: inc/admin/wizard/admin-wizard.php:919
|
5210 |
+
#: inc/admin/wizard/admin-wizard.php:1008
|
5211 |
+
#: inc/admin/wizard/admin-wizard.php:1010
|
5212 |
+
#: inc/admin/wizard/admin-wizard.php:1113
|
5213 |
+
#: inc/admin/wizard/admin-wizard.php:1115
|
5214 |
+
#: inc/admin/wizard/admin-wizard.php:1217
|
5215 |
+
#: inc/admin/wizard/admin-wizard.php:1219
|
5216 |
+
#: inc/admin/wizard/admin-wizard.php:1354
|
5217 |
+
#: inc/admin/wizard/admin-wizard.php:1356
|
5218 |
+
#: inc/admin/wizard/admin-wizard.php:1443
|
5219 |
+
#: inc/admin/wizard/admin-wizard.php:1445
|
5220 |
msgid "Save & Continue"
|
5221 |
msgstr ""
|
5222 |
|
5223 |
+
#: inc/admin/wizard/admin-wizard.php:868
|
5224 |
msgid "Link your site to your social networks"
|
5225 |
msgstr ""
|
5226 |
|
5227 |
+
#: inc/admin/wizard/admin-wizard.php:870
|
5228 |
msgid "Fill in your social accounts for search engines."
|
5229 |
msgstr ""
|
5230 |
|
5231 |
+
#: inc/admin/wizard/admin-wizard.php:874
|
5232 |
msgid "Facebook page URL"
|
5233 |
msgstr ""
|
5234 |
|
5235 |
+
#: inc/admin/wizard/admin-wizard.php:971
|
5236 |
msgid "For which single post types, should indexing be disabled?"
|
5237 |
msgstr ""
|
5238 |
|
5239 |
+
#: inc/admin/wizard/admin-wizard.php:974
|
5240 |
msgid "Custom post types are a content type in WordPress. By default, <strong>Post</strong> and <strong>Page</strong> are the <strong>default post types</strong>."
|
5241 |
msgstr ""
|
5242 |
|
5243 |
+
#: inc/admin/wizard/admin-wizard.php:975
|
5244 |
msgid "You can create your own type of content like \"product\" or \"business\": these are <strong>custom post types</strong>."
|
5245 |
msgstr ""
|
5246 |
|
5247 |
+
#: inc/admin/wizard/admin-wizard.php:997
|
5248 |
msgid "Do not display this single post type in search engine results <strong>(noindex)</strong>"
|
5249 |
msgstr ""
|
5250 |
|
5251 |
+
#: inc/admin/wizard/admin-wizard.php:1072
|
5252 |
msgid "For which post type archives, should indexing be disabled?"
|
5253 |
msgstr ""
|
5254 |
|
5255 |
+
#: inc/admin/wizard/admin-wizard.php:1075
|
5256 |
msgid "<strong>Archive pages</strong> are automatically generated by WordPress. They group specific content such as your latest articles, a product category or your content by author or date."
|
5257 |
msgstr ""
|
5258 |
|
5259 |
+
#: inc/admin/wizard/admin-wizard.php:1076
|
5260 |
msgid "Below the list of your <strong>post type archives</strong>:"
|
5261 |
msgstr ""
|
5262 |
|
5263 |
+
#: inc/admin/wizard/admin-wizard.php:1096
|
5264 |
msgid "Do not display this post type archive in search engine results <strong>(noindex)</strong>"
|
5265 |
msgstr ""
|
5266 |
|
5267 |
+
#: inc/admin/wizard/admin-wizard.php:1107
|
5268 |
msgid "You don‘t have any post type archives, you can continue to the next step."
|
5269 |
msgstr ""
|
5270 |
|
5271 |
+
#: inc/admin/wizard/admin-wizard.php:1173
|
5272 |
msgid "For which taxonomy archives, should indexing be disabled?"
|
5273 |
msgstr ""
|
5274 |
|
5275 |
+
#: inc/admin/wizard/admin-wizard.php:1176
|
5276 |
msgid "<strong>Taxonomies</strong> are the method of classifying content and data in WordPress. When you use a taxonomy you’re grouping similar things together. The taxonomy refers to the sum of those groups."
|
5277 |
msgstr ""
|
5278 |
|
5279 |
+
#: inc/admin/wizard/admin-wizard.php:1177
|
5280 |
msgid "<strong>Categories</strong> and <strong>Tags</strong> are the default taxonomies. You can add your own taxonomies like \"product categories\": these are called <strong>custom taxonomies</strong>."
|
5281 |
msgstr ""
|
5282 |
|
5283 |
+
#: inc/admin/wizard/admin-wizard.php:1198
|
5284 |
msgid "Do not display this taxonomy archive in search engine results <strong>(noindex)</strong>"
|
5285 |
msgstr ""
|
5286 |
|
5287 |
+
#: inc/admin/wizard/admin-wizard.php:1274
|
5288 |
msgid "Almost done!"
|
5289 |
msgstr ""
|
5290 |
|
5291 |
+
#: inc/admin/wizard/admin-wizard.php:1276
|
5292 |
msgid "Final step before being ready to rank on search engines."
|
5293 |
msgstr ""
|
5294 |
|
5295 |
+
#: inc/admin/wizard/admin-wizard.php:1290
|
5296 |
msgid "You only have one author on your site? Check this option to avoid duplicate content."
|
5297 |
msgstr ""
|
5298 |
|
5299 |
+
#: inc/admin/wizard/admin-wizard.php:1303
|
5300 |
msgid "By default, SEOPress redirects your Attachment pages to the parent post. Optimize this by redirecting the user directly to the URL of the media file."
|
5301 |
msgstr ""
|
5302 |
|
5303 |
+
#: inc/admin/wizard/admin-wizard.php:1322
|
5304 |
+
#: inc/admin/wizard/admin-wizard.php:1347
|
5305 |
msgid "Shorten your URLs by removing %s and improve your SEO."
|
5306 |
msgstr ""
|
5307 |
|
5308 |
+
#: inc/admin/wizard/admin-wizard.php:1415
|
5309 |
msgid "Improve your workflow with the Universal SEO metabox"
|
5310 |
msgstr ""
|
5311 |
|
5312 |
+
#: inc/admin/wizard/admin-wizard.php:1418
|
5313 |
msgid "Edit your SEO metadata directly from your page or theme builder."
|
5314 |
msgstr ""
|
5315 |
|
5316 |
+
#: inc/admin/wizard/admin-wizard.php:1433
|
5317 |
msgid "Yes, please enable the universal SEO metabox!"
|
5318 |
msgstr ""
|
5319 |
|
5320 |
+
#: inc/admin/wizard/admin-wizard.php:1437
|
5321 |
msgid "You can change this setting at anytime from SEO, Advanced settings page, Appearance tab."
|
5322 |
msgstr ""
|
5323 |
|
5324 |
+
#: inc/admin/wizard/admin-wizard.php:1490
|
5325 |
msgid "SEOPress PRO"
|
5326 |
msgstr ""
|
5327 |
|
5328 |
+
#: inc/admin/wizard/admin-wizard.php:1496
|
5329 |
msgid "Premium SEO features to increase your rankings"
|
5330 |
msgstr ""
|
5331 |
|
5332 |
+
#: inc/admin/wizard/admin-wizard.php:1499
|
5333 |
msgid "Improve your business's presence in <strong>local search results</strong>."
|
5334 |
msgstr ""
|
5335 |
|
5336 |
+
#: inc/admin/wizard/admin-wizard.php:1502
|
5337 |
msgid "Optimize your SEO from your favorite e-commerce plugin: <strong>WooCommerce or Easy Digital Downloads</strong>."
|
5338 |
msgstr ""
|
5339 |
|
5340 |
+
#: inc/admin/wizard/admin-wizard.php:1505
|
5341 |
msgid "Add an infinity of <strong>Google structured data (schema)</strong> to your content to improve its visibility in search results."
|
5342 |
msgstr ""
|
5343 |
|
5344 |
+
#: inc/admin/wizard/admin-wizard.php:1508
|
5345 |
msgid "Add your custom <strong>breadcrumbs</strong>."
|
5346 |
msgstr ""
|
5347 |
|
5348 |
+
#: inc/admin/wizard/admin-wizard.php:1511
|
5349 |
msgid "Configure your <strong>robots.txt and .htaccess files</strong>."
|
5350 |
msgstr ""
|
5351 |
|
5352 |
+
#: inc/admin/wizard/admin-wizard.php:1514
|
5353 |
msgid "Observe the evolution of your site via <strong>Google Analytics stats</strong> directly from your WordPress Dashboard."
|
5354 |
msgstr ""
|
5355 |
|
5356 |
+
#: inc/admin/wizard/admin-wizard.php:1518
|
5357 |
msgid "And so many other features to increase your rankings, sales and productivity."
|
5358 |
msgstr ""
|
5359 |
|
5360 |
+
#: inc/admin/wizard/admin-wizard.php:1527
|
5361 |
msgid "Get SEOPress PRO"
|
5362 |
msgstr ""
|
5363 |
|
5364 |
+
#: inc/admin/wizard/admin-wizard.php:1544
|
5365 |
msgid "SEOPress Insights"
|
5366 |
msgstr ""
|
5367 |
|
5368 |
+
#: inc/admin/wizard/admin-wizard.php:1550
|
5369 |
msgid "Start monitoring your rankings and backlinks directly from your WordPress admin"
|
5370 |
msgstr ""
|
5371 |
|
5372 |
+
#: inc/admin/wizard/admin-wizard.php:1553
|
5373 |
msgid "Track your keyword positions from Google Search results daily."
|
5374 |
msgstr ""
|
5375 |
|
5376 |
+
#: inc/admin/wizard/admin-wizard.php:1556
|
5377 |
msgid "Monitor and analyse your top 1,000 Backlinks weekly."
|
5378 |
msgstr ""
|
5379 |
|
5380 |
+
#: inc/admin/wizard/admin-wizard.php:1559
|
5381 |
msgid "Export your data to CSV, PDF, Excel."
|
5382 |
msgstr ""
|
5383 |
|
5384 |
+
#: inc/admin/wizard/admin-wizard.php:1562
|
5385 |
msgid "Receive your rankings in your inbox."
|
5386 |
msgstr ""
|
5387 |
|
5388 |
+
#: inc/admin/wizard/admin-wizard.php:1571
|
5389 |
msgid "Get SEOPress Insights"
|
5390 |
msgstr ""
|
5391 |
|
5392 |
+
#: inc/admin/wizard/admin-wizard.php:1600
|
5393 |
msgid "Your site is now ready for search engines!"
|
5394 |
msgstr ""
|
5395 |
|
5396 |
+
#: inc/admin/wizard/admin-wizard.php:1617
|
5397 |
#: inc/functions/options-advanced-admin.php:25
|
5398 |
msgid "Please activate your license to receive automatic updates and get premium support."
|
5399 |
msgstr ""
|
5400 |
|
5401 |
+
#: inc/admin/wizard/admin-wizard.php:1624
|
5402 |
#: inc/functions/options-advanced-admin.php:27
|
5403 |
msgid "Activate License"
|
5404 |
msgstr ""
|
5405 |
|
5406 |
+
#: inc/admin/wizard/admin-wizard.php:1635
|
5407 |
msgid "Create your XML sitemaps"
|
5408 |
msgstr ""
|
5409 |
|
5410 |
+
#: inc/admin/wizard/admin-wizard.php:1637
|
5411 |
msgid "Build custom XML sitemaps to improve Google's crawling of your site."
|
5412 |
msgstr ""
|
5413 |
|
5414 |
+
#: inc/admin/wizard/admin-wizard.php:1644
|
5415 |
msgid "Configure your XML sitemaps"
|
5416 |
msgstr ""
|
5417 |
|
5418 |
+
#: inc/admin/wizard/admin-wizard.php:1653
|
5419 |
msgid "Follow us:"
|
5420 |
msgstr ""
|
5421 |
|
5422 |
+
#: inc/admin/wizard/admin-wizard.php:1662
|
5423 |
msgid "Like our Facebook page"
|
5424 |
msgstr ""
|
5425 |
|
5426 |
+
#: inc/admin/wizard/admin-wizard.php:1669
|
5427 |
msgid "Join our Facebook Community group"
|
5428 |
msgstr ""
|
5429 |
|
5430 |
+
#: inc/admin/wizard/admin-wizard.php:1676
|
5431 |
msgid "Watch our guided tour videos to learn more about SEOPress"
|
5432 |
msgstr ""
|
5433 |
|
5434 |
+
#: inc/admin/wizard/admin-wizard.php:1683
|
5435 |
msgid "Read our blog posts about SEO concepts, tutorials and more"
|
5436 |
msgstr ""
|
5437 |
|
5438 |
+
#: inc/admin/wizard/admin-wizard.php:1690
|
5439 |
msgid "Follow us on Twitter"
|
5440 |
msgstr ""
|
5441 |
|
5442 |
+
#: inc/admin/wizard/admin-wizard.php:1697
|
5443 |
msgid "The off side of SEOPress"
|
5444 |
msgstr ""
|
5445 |
|
5446 |
+
#: inc/admin/wizard/admin-wizard.php:1707
|
5447 |
msgid "You can also:"
|
5448 |
msgstr ""
|
5449 |
|
5450 |
+
#: inc/admin/wizard/admin-wizard.php:1714
|
5451 |
msgid "Visit Dashboard"
|
5452 |
msgstr ""
|
5453 |
|
5454 |
+
#: inc/admin/wizard/admin-wizard.php:1718
|
5455 |
msgid "Review Settings"
|
5456 |
msgstr ""
|
5457 |
|
5458 |
+
#: inc/admin/wizard/admin-wizard.php:1724
|
5459 |
msgid "Knowledge base"
|
5460 |
msgstr ""
|
5461 |
|
5659 |
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."
|
5660 |
msgstr ""
|
5661 |
|
5662 |
+
#: seopress.php:267
|
5663 |
msgid "has been successfully updated!"
|
5664 |
msgstr ""
|
5665 |
|
5666 |
+
#: seopress.php:369
|
5667 |
msgid "Regeneration completed!"
|
5668 |
msgstr ""
|
5669 |
|
5670 |
+
#: seopress.php:403
|
5671 |
msgid "Clear"
|
5672 |
msgstr ""
|
5673 |
|
5674 |
+
#: seopress.php:404
|
5675 |
msgid "Clear color"
|
5676 |
msgstr ""
|
5677 |
|
5678 |
+
#: seopress.php:406
|
5679 |
msgid "Select default color"
|
5680 |
msgstr ""
|
5681 |
|
5682 |
+
#: seopress.php:407
|
5683 |
msgid "Select Color"
|
5684 |
msgstr ""
|
5685 |
|
5686 |
+
#: seopress.php:408
|
5687 |
msgid "Color value"
|
5688 |
msgstr ""
|
5689 |
|
5690 |
+
#: seopress.php:612
|
5691 |
msgid "Docs"
|
5692 |
msgstr ""
|
5693 |
|
5694 |
+
#: seopress.php:613
|
5695 |
msgid "Configuration Wizard"
|
5696 |
msgstr ""
|
5697 |
|
5698 |
+
#: seopress.php:615
|
5699 |
msgid "GO PRO!"
|
5700 |
msgstr ""
|
5701 |
|
5702 |
+
#: seopress.php:651
|
5703 |
msgid "Important changes related to XML sitemaps in version 5.8: <a href=\"%s\" target=\"_blank\">Learn more</a>."
|
5704 |
msgstr ""
|
5705 |
|
5706 |
+
#: seopress.php:682
|
5707 |
msgid "A new <strong>SEOPress PRO</strong> update (v<code>6.0</code>) is available (current installed version <code>"
|
5708 |
msgstr ""
|
5709 |
|
5710 |
+
#: seopress.php:686
|
5711 |
msgid "Update SEOPress PRO"
|
5712 |
msgstr ""
|
5713 |
|
5750 |
#: src/Actions/Admin/ManageColumn.php:189
|
5751 |
#: src/Actions/Admin/ManageColumn.php:205
|
5752 |
#: src/Services/ContentAnalysis/RenderContentAnalysis.php:26
|
5753 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:544
|
5754 |
msgid "Good"
|
5755 |
msgstr ""
|
5756 |
|
5757 |
#: src/Actions/Admin/ManageColumn.php:194
|
5758 |
#: src/Actions/Admin/ManageColumn.php:210
|
5759 |
#: src/Services/ContentAnalysis/RenderContentAnalysis.php:23
|
5760 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:543
|
5761 |
msgid "Should be improved"
|
5762 |
msgstr ""
|
5763 |
|
6414 |
msgstr ""
|
6415 |
|
6416 |
#: src/Services/ContentAnalysis/RenderContentAnalysis.php:37
|
6417 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:559
|
6418 |
#: app/react/layout/Main/components/SchemasManual/index.js:252
|
6419 |
msgid "Expand"
|
6420 |
msgstr ""
|
6421 |
|
6422 |
#: src/Services/ContentAnalysis/RenderContentAnalysis.php:37
|
6423 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:574
|
6424 |
#: app/react/layout/Main/components/SchemasManual/index.js:267
|
6425 |
msgid "Close"
|
6426 |
msgstr ""
|
7322 |
msgid "Note that your images can always be indexed if they are linked from other pages."
|
7323 |
msgstr ""
|
7324 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7325 |
#: app/react/layout/Main/components/InspectUrl/index.js:268
|
7326 |
msgid "For some reason we couldn't retrieve the page or test its mobile-friendliness. Please wait a bit and try again."
|
7327 |
msgstr ""
|
@@ -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],P=L||S(y),C=y?k?S("entries"):P: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,P=function(){return L.call(this)}),r&&!b||!p&&!O&&j[f]||a(j,f,P),s[t]=P,s[_]=m,y)if(w={values:k?P:S(h),keys:g?P:S(d),entries:C},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),P=n(6314),C=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,B=U.f,G=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=C(0),Z=C(2),ee=C(3),te=C(4),ne=C(5),re=C(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=P("iterator"),ge=P("toStringTag"),be=L("typed_constructor"),we=L("def_constructor"),xe=s.CONSTR,Ee=s.TYPED,Se=s.VIEW,_e="Wrong length!",ke=C(1,(function(e,t){return Ce(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 G("Wrong offset!");return n},Pe=function(e){if(x(e)&&Ee in e)return e;throw W(e+" is not a typed array!")},Ce=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=Ce(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=Ce(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=Ce(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(Pe(this)):Pe(this),arguments)},De={copyWithin:function(e,t){return D.call(Pe(this),e,t,arguments.length>2?arguments[2]:void 0)},every:function(e){return te(Pe(this),e,arguments.length>1?arguments[1]:void 0)},fill:function(e){return M.apply(Pe(this),arguments)},filter:function(e){return Ae(this,Z(Pe(this),e,arguments.length>1?arguments[1]:void 0))},find:function(e){return ne(Pe(this),e,arguments.length>1?arguments[1]:void 0)},findIndex:function(e){return re(Pe(this),e,arguments.length>1?arguments[1]:void 0)},forEach:function(e){J(Pe(this),e,arguments.length>1?arguments[1]:void 0)},indexOf:function(e){return ie(Pe(this),e,arguments.length>1?arguments[1]:void 0)},includes:function(e){return oe(Pe(this),e,arguments.length>1?arguments[1]:void 0)},join:function(e){return pe.apply(Pe(this),arguments)},lastIndexOf:function(e){return ue.apply(Pe(this),arguments)},map:function(e){return ke(Pe(this),e,arguments.length>1?arguments[1]:void 0)},reduce:function(e){return ce.apply(Pe(this),arguments)},reduceRight:function(e){return fe.apply(Pe(this),arguments)},reverse:function(){for(var e,t=this,n=Pe(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(Pe(this),e,arguments.length>1?arguments[1]:void 0)},sort:function(e){return de.call(Pe(this),e)},subarray:function(e,t){var n=Pe(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(Pe(this),e,t))},Ue=function(e){Pe(this);var t=Le(arguments[1],1),n=this.length,r=E(e),o=m(r.length),i=0;if(o+t>n)throw G(_e);for(;i<o;)this[t+i]=r[i++]},Ve={entries:function(){return le.call(Pe(this))},keys:function(){return se.call(Pe(this))},values:function(){return ae.call(Pe(this))}},Be=function(e,t){return x(e)&&e[Ee]&&"symbol"!=typeof t&&t in e&&String(+t)==String(t)},Ge=function(e,t){return Be(e,t=g(t,!0))?f(2,e[t]):B(e,t)},We=function(e,t,n){return!(Be(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=Ge,z.f=We),a(a.S+a.F*!xe,"Object",{getOwnPropertyDescriptor:Ge,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 G(_e);if((a=y-d)<0)throw G(_e)}else if((a=m(o)*t)+d>y)throw G(_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],P=!!L&&("values"==L.name||null==L.name),C=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*!P,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]=P?L:C,r||P||p(S,ye,C)}}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,P=S.floor,C=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=P(C(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 B(e){return[255&e,e>>8&255]}function G(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,B,t,arguments[2])},setUint16:function(e,t){q(this,2,e,B,t,arguments[2])},setInt32:function(e,t){q(this,4,e,G,t,arguments[2])},setUint32:function(e,t){q(this,4,e,G,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,P="process"==c(k),C=function(){},A=o=b.f,T=!!function(){try{var e=L.resolve(1),t=(e.constructor={})[n(6314)("species")]=function(e){e(C,C)};return(P||"function"==typeof PromiseRejectionEvent)&&e.then(C)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(){P?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=P||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;P?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=P?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(C)}))),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 P=[_].concat(O,k,p);void 0!==L&&P.push(L);var C=String(t.apply(void 0,P))}else C=m(_,p,k,O,L,t);k>=E&&(x+=p.slice(E,k)+C,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),P=n(7184),C=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"),B=Object.prototype,G="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=C(B,t);r&&delete B[t],A(e,t,n),r&&e!==B&&A(B,t,r)}:A,Y=function(e){var t=U[e]=_(I.prototype);return t._k=e,t},q=G&&"symbol"==typeof I.iterator?function(e){return"symbol"==typeof e}:function(e){return e instanceof I},Q=function(e,t,n){return e===B&&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===B&&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!==B||!o(U,t)||o(V,t)){var n=C(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===B,r=T(n?V:x(e)),i=[],a=0;r.length>a;)!o(U,t=r[a++])||n&&!o(B,t)||i.push(U[t]);return i};G||(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===B&&t.call(V,n),o(this,R)&&o(this[R],e)&&(this[R][e]=!1),$(this,e,S(1,n))};return i&&H&&$(B,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(B,"propertyIsEnumerable",K,!0),h.f=function(e){return Y(d(e))}),a(a.G+a.W+a.F*!G,{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=P(d.store),oe=0;re.length>oe;)m(re[oe++]);a(a.S+a.F*!G,"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*!G,"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*(!G||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"),P=Symbol.for("react.suspense"),C=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 B(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 P:return"Suspense";case C: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:B(e.type)||"Memo";case T:t=e._payload,e=e._init;try{return B(e(t))}catch(e){}}return null}function G(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 B(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 Pe(){}var Ce=!1;function Ae(e,t,n){if(Ce)return e(t,n);Ce=!0;try{return Le(e,t,n)}finally{Ce=!1,(null!==Se||null!==_e)&&(Pe(),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 Be(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 Ge(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(Be(e)!==e)throw Error(i(188))}function He(e){return null!==(e=function(e){var t=e.alternate;if(!t){if(null===(t=Be(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,Pt=null,Ct=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":Pt=null;break;case"mouseover":case"mouseout":Ct=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=Be(t);if(null!==n)if(13===(t=n.tag)){if(null!==(t=Ge(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!==Pt&&Dt(Pt)&&(Pt=null),null!==Ct&&Dt(Ct)&&(Ct=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 Bt(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!==Pt&&Vt(Pt,e),null!==Ct&&Vt(Ct,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 Gt=w.ReactCurrentBatchConfig,Wt=!0;function Ht(e,t,n,r){var o=bt,i=Gt.transition;Gt.transition=null;try{bt=1,Yt(e,t,n,r)}finally{bt=o,Gt.transition=i}}function $t(e,t,n,r){var o=bt,i=Gt.transition;Gt.transition=null;try{bt=4,Yt(e,t,n,r)}finally{bt=o,Gt.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 Pt=Rt(Pt,e,t,n,r,o),!0;case"mouseover":return Ct=Rt(Ct,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=Be(e)))e=null;else if(13===(n=t.tag)){if(null!==(e=Ge(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})),Pn=on(M({},fn,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:kn})),Cn=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 Bn=!1,Gn={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?!!Gn[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"),Pr=kr("transitionend"),Cr=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){Cr.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(Pr,"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)||(Gr(t,e,2,!1),n.add(r))}function Ur(e,t,n){var r=0;t&&(r|=4),Gr(n,e,r,t)}var Vr="_reactListening"+Math.random().toString(36).slice(2);function Br(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 Gr(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=Cr.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=Pn;break;case Or:case jr:case Lr:l=yn;break;case Pr:l=Cn;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=Be(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 Bn?Un(e,n)&&(b="onCompositionEnd"):"keydown"===e&&229===n.keyCode&&(b="onCompositionStart");b&&(Mn&&"ko"!==n.locale&&(Bn||"onCompositionStart"!==b?"onCompositionEnd"===b&&Bn&&(g=en()):(Jt="value"in(Kt=o)?Kt.value:Kt.textContent,Bn=!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(Bn)return"compositionend"===e||!Nn&&Un(e,t)?(e=en(),Zt=Jt=Kt=null,Bn=!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 Bt(t);r--}else"$"!==n&&"$?"!==n&&"$!"!==n||r++;n=o}while(n);Bt(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={},Po=ko(Lo),Co=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(Co),Oo(Po)}function Fo(e,t,n){if(Po.current!==Lo)throw Error(i(168));jo(Po,t),jo(Co,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,G(e)||"Unknown",o));return M({},n,r)}function Mo(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||Lo,Ao=Po.current,jo(Po,e),jo(Co,Co.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(Co),Oo(Po),jo(Po,e)):Oo(Co),jo(Co,n)}var zo=null,Uo=!1,Vo=!1;function Bo(e){null===zo?zo=[e]:zo.push(e)}function Go(){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,Go),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)&&Be(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:Po.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:Po.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 Pi(e){null!==e.return&&(ji(e,1),Li(e,1,0))}function Ci(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=Cu(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=Cu(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 Bi(e){null===Ni?Ni=[e]:Ni.push(e)}function Gi(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=Gi(e,t,n),r.return=e,r):((r=Iu(n.type,n.key,n.props,null,e.mode,r)).ref=Gi(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=Gi(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=Gi(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=Gi(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,Ca.bind(null,n,r,o,t),void 0,null),null===Ol)throw Error(i(349));0!=(30&ca)||Pa(n,t,o)}return o}function Pa(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 Ca(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 Ba(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 Ga(e,t,n){return n=null!=n?n.concat([e]):null,Ma(4,4,Ba.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,Ba.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)||Pa(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,Ca.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:Ga,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:Ga,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,Bl=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===Gl?Gl=new Set([this]):Gl.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(Ci(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(Co),Oo(Po),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&&Br(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&Pl)&&(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&&Pi(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(Cl,Pl),Pl|=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(Cl,Pl),Pl|=e,null;t.memoizedState={baseLanes:0,cachePool:null,transitions:null},r=null!==i?i.baseLanes:n,jo(Cl,Pl),Pl|=r}else null!==i?(r=i.baseLanes|n,t.memoizedState=null):r=n,jo(Cl,Pl),Pl|=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:Po.current;return i=To(t,i),Zo(t,o),n=wa(e,t,n,r,i,o),r=xa(),null===e||xs?(Ii&&r&&Pi(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 Ps(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:Po.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||Co.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:Po.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||Co.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 Cs(e,t,n,r,i,o)}function Cs(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(),Bi(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&&Bi(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 Bs(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 Gs(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),Bs(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}Bs(t,!0,n,null,i);break;case"together":Bs(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(Ci(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(Co),Oo(Po),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),Bt(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{Bt(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&&Bt(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,Pl=0,Cl=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,Bl=null,Gl=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&&Go())),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,Bo(e)}(su.bind(null,e)):Bo(su.bind(null,e)),ao((function(){0===kl&&Go()})),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&&Go())}}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))&&Go()}}function cu(){Pl=Cl.current,Oo(Cl)}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(Ci(r),r.tag){case 1:null!=(r=r.type.childContextTypes)&&No();break;case 3:ta(),Oo(Co),Oo(Po),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=Pl=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),Bi(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===Gl||!Gl.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,Pl);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,Pl)))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)&&(Gl=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=Bl,Bl=null,e;0!=(1&$l)&&0!==e.tag&&xu(),0!=(1&(a=e.pendingLanes))?e===ql?Yl++:(Yl=0,ql=e):Yl=0,Go()}(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,Go(),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===Gl||!Gl.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 Pu(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 Cu(e,t,n,r){return new Pu(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=Cu(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=Cu(12,n,t,2|o)).elementType=k,e.lanes=a,e;case P:return(e=Cu(13,n,t,o)).elementType=P,e.lanes=a,e;case C:return(e=Cu(19,n,t,o)).elementType=C,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=Cu(s,n,t,o)).elementType=e,t.type=r,t.lanes=a,t}function Nu(e,t,n,r){return(e=Cu(7,e,r,t)).lanes=n,e}function Fu(e,t,n,r){return(e=Cu(22,e,r,t)).elementType=I,e.lanes=n,e.stateNode={},e}function Ru(e,t,n){return(e=Cu(6,e,null,t)).lanes=n,e}function Mu(e,t,n){return(t=Cu(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=Cu(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(Be(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 Bu(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 Gu(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||Co.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 Gs(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,Po.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=Cs(null,t,r,!0,a,n)):(t.tag=0,Ii&&a&&Pi(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=Ps(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,Ps(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&&!Co.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),Cs(null,t,r,!0,e,n);case 19:return Gs(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)}}Gu(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=Bu(t,r,e,0,null,!1,0,"",Ju);return e._reactRootContainer=a,e[mo]=a.current,Br(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,Br(8===e.nodeType?e.parentNode:e),uu((function(){Gu(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));Gu(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(){Gu(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,Go()))}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,Pe=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,Br(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=Bu(t,null,e,1,null!=n?n:null,o,0,a,s),e[mo]=t.current,Br(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 P(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,"$&/")+"/"),P(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+=P(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+=P(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 C(e,t,n){if(null==e)return e;var r=[],o=0;return P(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:C,forEach:function(e,t,n){C(e,(function(){t.apply(this,arguments)}),n)},count:function(e){var t=0;return C(e,(function(){t++})),t},toArray:function(e){return C(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 C()}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(P([])));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 P(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:C}}function C(){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=P,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:P(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&&!P());){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 P(){return!(t.unstable_now()-L<j)}function C(){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(C)};else if("undefined"!=typeof MessageChannel){var A=new MessageChannel,T=A.port2;A.port1.onmessage=C,S=function(){T.postMessage(null)}}else S=function(){y(C,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=P,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,P=L?e.useEffect:e.useLayoutEffect,C="undefined"!=typeof navigator&&navigator.connection,A=!L&&C&&(["slow-2g","2g"].includes(C.effectiveType)||C.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],B=U[1],G=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:B,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(G,(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]),P((function(){return i?i[2]:u}),[]),(0,e.createElement)(H.Provider,d(t,{value:r}))}),"default",{value:G}),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],C=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},B=function(){return V().isVisible()&&V().isOnline()},G=function(e){return o.set(C,d(o.get(C),e))},W=o.get(O),H=f(l)?r.fallback[O]:l,$=f(W)?H:W,Y=o.get(C)||{},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 P((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(){G({isValidating:!1}),h()&&re(v)},G({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?(G({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()||(G({error:b}),v.error=b,d&&h()&&(V().onError(b,O,r),("boolean"==typeof r.shouldRetryOnError&&r.shouldRetryOnError||p(r.shouldRetryOnError)&&r.shouldRetryOnError(b))&&B()&&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(P((function(){z.current=n,U.current=r})),P((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&&B()&&(n=r+V().focusThrottleInterval,t())}else if(1==e)V().revalidateOnReconnect&&B()&&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]),P((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,B="",G="",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&&(B=B.replace(f,"")),0<B.trim().length)){switch(h){case 32:case 9:case 59:case 13:case 10:break;default:B+=l.charAt(R)}h=59}switch(h){case 123:for(d=(B=B.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=(B=B.replace(c,"").trim()).charCodeAt(0)),64===d){switch(0<M&&(B=B.replace(f,"")),h=B.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,B,D),r,L,j,z,h,p,u),B=M.join(""),void 0!==w&&0===(z=(m=w.trim()).length)&&(h=0,m="")),0<z)switch(h){case 115:B=B.replace(x,a);case 100:case 109:case 45:m=B+"{"+m+"}";break;case 107:m=(B=B.replace(y,"$1 $2"))+"{"+m+"}",m=1===C||2===C&&i("@"+m,3)?"@-webkit-"+m+"@"+m:"@"+m;break;default:m=B+m,112===u&&(G+=m,m="")}else m=""}else m=t(r,n(r,B,D),m,u,p+1);W+=m,m=D=M=N=d=0,B="",h=l.charCodeAt(++R);break;case 125:case 59:if(1<(z=(B=(0<M?B.replace(f,""):B).trim()).length))switch(0===N&&(d=B.charCodeAt(0),45===d||96<d&&123>d)&&(z=(B=B.replace(" ",":")).length),0<I&&void 0!==(w=s(1,B,r,e,L,j,G.length,u,p,u))&&0===(z=(B=w.trim()).length)&&(B="\0\0"),d=B.charCodeAt(0),h=B.charCodeAt(1),d){case 0:break;case 64:if(105===h||99===h){H+=B+l.charAt(R);break}default:58!==B.charCodeAt(z-1)&&(G+=o(B,d,h,B.charCodeAt(2)))}D=M=N=d=0,B="",h=l.charCodeAt(++R)}}switch(h){case 13:case 10:47===S?S=0:0===1+d&&107!==u&&0<B.length&&(M=1,B+="\0"),0<I*F&&s(0,B,r,e,L,j,G.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+P&&0<N)switch(R-N){case 2:112===O&&58===l.charCodeAt(R-3)&&(P=O);case 8:111===T&&(P=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)&&(G+=l.substring(z,R+1)),v="",S=0)}}0===S&&(B+=v)}T=O,O=h,R++}if(0<(z=G.length)){if(M=r,0<I&&void 0!==(w=s(2,G,M,e,L,j,z,u,p,u))&&0===(G=w).length)return H+G+W;if(G=M.join(",")+"{"+G+"}",0!=C*P){switch(2!==C||i(G,2)||(P=0),P){case 111:G=G.replace(b,":-moz-$1")+G;break;case 112:G=G.replace(g,"::-webkit-input-$1")+G.replace(g,"::-moz-$1")+G.replace(g,":-ms-input-$1")+G}P=0}}return H+G+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===C||2===C&&i(l,1)?"-webkit-"+l+l:l}if(0===C||2===C&&!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?C=1:(C=2,N=e):C=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),P=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,P=0,C=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),Pe={};function Ce(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&&Ce(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)}}},Be=function(){return"undefined"!=typeof window&&void 0!==window.__webpack_nonce__?window.__webpack_nonce__:null},Ge=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=Be();return a&&r.setAttribute("nonce",a),n.insertBefore(r,i),r},We=function(){function e(e){var t=this.element=Ge(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}Ce(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=Ge(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||Ce(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 Ce(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 Pt(e){return"string"==typeof e&&!0}var Ct=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];Ct(t)&&Ct(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(Ct(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=!Pt(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 Pt(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=Pt(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+"-"+(Pt(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 Ce(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=Be();return"<style "+[n&&'nonce="'+n+'"',Oe+'="true"','data-styled-version="5.3.5"'].filter(Boolean).join(" ")+">"+e+"</style>"},this.getStyleTags=function(){return t.sealed?Ce(2):t._emitSheetCSS()},this.getStyleElement=function(){var n;if(t.sealed)return Ce(2);var r=((n={})[Oe]="",n["data-styled-version"]="5.3.5",n.dangerouslySetInnerHTML={__html:t.instance.toString()},n),o=Be();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?Ce(2):e.createElement(dt,{sheet:this.instance},t)},Dt.interleaveWithNodeStream=function(e){return Ce(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;}"]),Bt=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 Gt=Bt;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 Pn=function(e,t){return Number(100*t/e).toFixed(2)};const Cn=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(Pn(p,n),"%"),m=kn(kn({},m),{},{x:n})),r<=h&&r>=70&&(o.style.top="".concat(Pn(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:Pn(p,m.x),y:Pn(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(Gt,{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(Gt,{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)},Bn=Array.isArray,Gn="object"==typeof global&&global&&global.Object===Object&&global;var Wn="object"==typeof self&&self&&self.Object===Object&&self;const Hn=Gn||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,Pr=gr(Hn,"Map"),Cr=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(Pr||Lr),string:new Sr}},Ar.prototype.delete=function(e){var t=Cr(this,e).delete(e);return this.size-=t?1:0,t},Ar.prototype.get=function(e){return Cr(this,e).get(e)},Ar.prototype.has=function(e){return Cr(this,e).has(e)},Ar.prototype.set=function(e,t){var n=Cr(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 Br=function e(t){if("string"==typeof t)return t;if(Bn(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},Gr=function(e){return null==e?"":Br(e)},Wr=function(e,t){return Bn(e)?e:function(e,t){if(Bn(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(Gr(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)&&(Bn(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 Po(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 Co=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 Po(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)?Po(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;box-sizing:border-box;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===Bo}(e)}(e)},Bo="function"==typeof Symbol&&Symbol.for?Symbol.for("react.element"):60103;function Go(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 Go(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]=Go(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]=Go(t[o],n)})),r}(e,t,n):Go(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(!Pr||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&&Gn.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=Bn(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 Pi=Object.prototype.hasOwnProperty;const Ci=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&&Pi.call(e,r))&&n.push(r);return n},Ai=function(e){return ji(e)?xi(e,!0):Ci(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},Bi=Object.getOwnPropertySymbols?function(e){for(var t=[];e;)Vi(t,Ui(e)),e=qo(e);return t}:Mi,Gi=function(e,t,n){var r=t(e);return Bn(e)?r:Vi(r,n(e))},Wi=function(e){return Gi(e,Li,Ui)},Hi=function(e){return Gi(e,Ai,Bi)},$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(Pr),ra=cr(Yi),oa=cr(qi),ia=cr(Qi),aa=Zn;($i&&aa(new $i(new ArrayBuffer(1)))!=ea||Pr&&aa(new Pr)!=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=Bn(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,Bi(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 Bn(e)?zr(e,Zr):tr(e)?[e]:Ri(Dr(Gr(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 Pa(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 Ca(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 Ba=Va.Provider,Ga=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=Pa(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 P=(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,P()),s&&L(h.current))}),[c,d.initialValues,P,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 C=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]),B=Za((function(e){if(Fa(e))return function(t){return V(t,e)};V(e)})),G=(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:P,validateForm:L,validateField:C,setErrors:N,setFieldError:R,setFieldTouched:U,setFieldValue:M,setStatus:W,setSubmitting:H,setTouched:I,setValues:F,setFormikState:G,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(),P()})),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:B};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}),[B,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:B,handleChange:z,handleReset:X,handleSubmit:Y,resetForm:P,setErrors:N,setFormikState:G,setFieldTouched:U,setFieldValue:M,setFieldError:R,setStatus:W,setSubmitting:H,setTouched:I,setValues:F,submitForm:$,validateForm:L,validateField:C,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)(Ba,{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=Pa(t,["validate","name","render","children","as","component"]),u=Pa(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=Pa(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=Pa(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=Pa(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)(Ga,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(Ca(n)),n.pop=n.pop.bind(Ca(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:Pa(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);box-sizing:border-box;font-size:var(--fontSize);line-height:normal;appearance:none;text-transform: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;text-transform:none;box-sizing:border-box;&: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 Ps=wp.i18n.__;const Cs=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," (",Ps("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 Bs(e){return"object"==typeof e}function Gs(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(Gs(e))if(t[i]){const a=e[t[i]];if(!Gs(a))return;if(i===t.length-1&&(Us(a)||Vs(a)||function(e){return!0===e||!1===e||function(e){return Bs(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(!Gs(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(Gs(o))if(zs(o)){let e=[];const t=[{nestedArrIndex:-1,value:o}];for(;t.length;){const{nestedArrIndex:n,value:r}=t.pop();if(Gs(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)&&Bs(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=[],Gs(n)&&n.forEach((e=>{if(!Gs(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){Gs(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(!Gs(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(Gs(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(!Gs(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(!Gs(t))return[];let r=[];if(zs(t))t.forEach((({v:t,i:o,n:i})=>{if(!Gs(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: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 Pl(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)?Pl(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 Pl(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 Cl=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",style:{gap:10}},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:Cl("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)",textTransform:"none"},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 Bl=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 Gl=["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,Gl),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(Bl,{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(Bl,{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(Cs,{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(Bl,{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 Pu=["name","id","value"];function Cu(){return Cu=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},Cu.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,Pu);return e.createElement(Lu,Cu({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;text-transform:none;-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;text-transform: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 Bu(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)?Bu(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 Bu(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 Gu=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 P=Z()(n,"_seopress_social_fb_title","");Tn()(P)&&(P=Yt()(r,{key:"_seopress_social_fb_title"}).placeholder);var C=Z()(n,"_seopress_social_fb_desc","");Tn()(C)&&(C=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,Gu("Facebook Preview","wp-seopress")),e.createElement("p",null,Gu("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,Gu("Your image ratio is:","wp-seopress")," ",e.createElement("strong",null,i),". ",Gu("The closer to 1.91 the better.","wp-seopress")),!Ht()(y)&&!y&&e.createElement(zu,{dangerouslySetInnerHTML:{__html:Gu("Minimun size for Facebook is <strong>200x200px</strong>. Please choose another image.","wp-seopress")}}),!Ht()(f)&&!f&&e.createElement(zu,null,Gu("File type not supported by Facebook. Please choose another image.","wp-seopress")," "),L&&S&&e.createElement(zu,null,Gu("File error. Please choose another image.","wp-seopress")," "),e.createElement(Wu,null,!L&&e.createElement(zu,null,Gu("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"},P),e.createElement("div",{className:"sp-description"},C)),e.createElement(qu,null,Gu("Twitter Preview","wp-seopress")),e.createElement("p",null,Gu("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,Gu("Your image ratio is:","wp-seopress")," ",e.createElement("strong",null,l),". ",Gu("The closer to 1 the better (with large card, 2 is better).","wp-seopress")),!Ht()(w)&&!w&&e.createElement(zu,{dangerouslySetInnerHTML:{__html:Gu("Minimun size for Twitter is <strong>144x144px</strong>. Please choose another image.","wp-seopress")}}),!Ht()(h)&&!h&&e.createElement(zu,null,Gu("File type not supported by Twitter. Please choose another image.","wp-seopress")," "),A&&O&&e.createElement(zu,null,Gu("File error. Please choose another image.","wp-seopress")," "),e.createElement($u,null,!A&&e.createElement(zu,null,Gu("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 Pc(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 Cc(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)||Cc(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=Pc(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=Pc(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 Bc=(0,e.createContext)(null),Gc=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)(Bc.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)(Gc,wc({},t,{accordionContext:n}))}))},Hc=function(t){var n=t.children,r=function(e){return e?n(e):null};return(0,e.createElement)(Bc.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)||Cc(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=Pc(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=o(1469),Sf=o.n(Ef),_f=["name","id","value"];function kf(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 Of(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?kf(Object(n),!0).forEach((function(t){jf(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):kf(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function jf(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 Pf(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)?Pf(e,t):void 0}}function Pf(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 Af=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,_f),s=(0,e.useState)(function(e){return Sf()(e)?e:[]}(i)),l=(r=2,function(e){if(Array.isArray(e))return e}(n=s)||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.")}()),u=l[0],c=l[1];(0,e.useEffect)((function(){f(u)}),[u]);var f=(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},u.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("Your positive statement (required)","wp-seopress")),e.createElement(ms,{type:"text",value:t.name,onChange:function(e){c(u.map((function(t,r){return r!==n?t:Of(Of({},t),{},{name:e.target.value})})))}}),e.createElement(To,{as:"div",style:{borderColor:"#cc1818",color:"#cc1818",boxShadow:"inset 0 0 0 1px #cc1818",marginTop:8,marginBottom:4},onClick:function(e){e.stopPropagation(),c(u.filter((function(e,t){return t!==n})))}},Cf("Remove note","wp-seopress")))))}))),e.createElement(To,{secondary:!0,style:{marginTom:12},onClick:function(e){e.stopPropagation(),c([].concat(function(e){return function(e){if(Array.isArray(e))return Pf(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.")}()}(u),[{name:""}]))}},Cf("Add a statement","wp-seopress")))};var Tf=["name","id","value"];function If(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 Nf(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?If(Object(n),!0).forEach((function(t){Ff(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):If(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Ff(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Rf(e,t){if(e){if("string"==typeof e)return Mf(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)?Mf(e,t):void 0}}function Mf(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 Df=wp.i18n.__;const zf=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,Tf),s=(0,e.useState)(function(e){return Sf()(e)?e:[]}(i)),l=(r=2,function(e){if(Array.isArray(e))return e}(n=s)||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)||Rf(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.")}()),u=l[0],c=l[1];(0,e.useEffect)((function(){f(u)}),[u]);var f=(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},Sf()(u)&&u.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"}},Df("Your negative statement (required)","wp-seopress")),e.createElement(ms,{type:"text",value:t.name,onChange:function(e){c(u.map((function(t,r){return r!==n?t:Nf(Nf({},t),{},{name:e.target.value})})))}}),e.createElement(To,{as:"div",style:{borderColor:"#cc1818",color:"#cc1818",boxShadow:"inset 0 0 0 1px #cc1818",marginTop:8,marginBottom:4},onClick:function(e){e.stopPropagation(),c(u.filter((function(e,t){return t!==n})))}},Df("Remove note","wp-seopress")))))}))),e.createElement(To,{secondary:!0,style:{marginTom:12},onClick:function(e){e.stopPropagation(),c([].concat(function(e){return function(e){if(Array.isArray(e))return Mf(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||Rf(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.")}()}(u),[{name:""}]))}},Df("Add a statement","wp-seopress")))};var Uf=["item","nameInput","values","itemValue","checkboxLegacyValue","emptyIcon","placeholder"];function Vf(){return Vf=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},Vf.apply(this,arguments)}function Bf(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}const Gf=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,Uf),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&&(Bf(v={},"".concat(h,"_attachment_id"),Z()(i,"".concat(h,"_attachment_id"),"")),Bf(v,"".concat(h,"_width"),Z()(i,"".concat(h,"_width"),"")),Bf(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(Cs,{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,Vf({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,Vf({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,Vf({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,Vf({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,Vf({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,Vf({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,Vf({id:h,name:h,value:m||"",className:Os()("w-full",Z()(n,"class",""))},d))),"repeater_positive_notes"===n.type&&e.createElement(e.Fragment,null,e.createElement(Af,Vf({id:h,name:h,value:m||"",className:Os()("w-full",Z()(n,"class",""))},d))),"repeater_negative_notes"===n.type&&e.createElement(e.Fragment,null,e.createElement(zf,Vf({id:h,name:h,value:m||"",className:Os()("w-full",Z()(n,"class",""))},d))))};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)}var Hf=["values"];function $f(){return $f=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},$f.apply(this,arguments)}function Yf(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 qf(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Yf(Object(n),!0).forEach((function(t){Qf(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Yf(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Qf(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Xf(){Xf=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 Kf(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 Jf(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 Zf=wp.i18n.__;const ep=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 Jf(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)?Jf(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=Xf().mark((function e(t){return Xf().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(Zf("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){Kf(i,r,o,a,s,"next",e)}function s(e){Kf(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,Hf);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"})),Zf("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 Cs;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"},Zf("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"},Zf("Preview your Twitter card using the official validator","wp-seopress")))),e.createElement("div",{className:"mt-3"},e.createElement(Gf,$f({item:qf(qf({},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)}},Zf("Save","wp-seopress"))))),e.createElement("div",{className:"w-1/2"},e.createElement(Ju,{values:n,placeholders:g})))})))};var tp=Object.prototype.hasOwnProperty;var np=o(8975),rp=["data","values"];var op=wp.i18n.__;const ip=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,rp);return e.createElement(e.Fragment,null,e.createElement("p",{className:"description",dangerouslySetInnerHTML:{__html:(0,np.sprintf)(op('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)&&(Bn(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(tp.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,op("Do not display this page in search engine results / XML - HTML sitemaps","wp-seopress")," ",e.createElement("strong",null,"(noindex)"),e.createElement(Bl,{title:op('"noindex" robots meta tag',"wp-seopress"),description:e.createElement(e.Fragment,null,op('By checking this option, you will add a meta robots tag with the value "noindex".',"wp-seopress")," ",e.createElement("br",null)," ",op("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,op("Do not follow links for this page","wp-seopress")," ",e.createElement("strong",null,"(nofollow)"),e.createElement(Bl,{title:op('"nofollow" robots meta tag',"wp-seopress"),description:e.createElement(e.Fragment,null,op('By checking this option, you will add a meta robots tag with the value "nofollow".',"wp-seopress")," ",e.createElement("br",null)," ",op("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,op("Do not use Open Directory project metadata for titles or excerpts for this page","wp-seopress")," ",e.createElement("strong",null,"(noodp)"),e.createElement(Bl,{title:op('"noodp" robots meta tag',"wp-seopress"),description:e.createElement(e.Fragment,null,op('By checking this option, you will add a meta robots tag with the value "noodp".',"wp-seopress")," ",e.createElement("br",null)," ",op("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,op("Do not display a 'Cached' link in the Google search results","wp-seopress")," ",e.createElement("strong",null,"(noarchive)"),e.createElement(Bl,{title:op('"noarchive" robots meta tag',"wp-seopress"),description:e.createElement(e.Fragment,null,op('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,op("Do not display a description in search results for this page","wp-seopress")," ",e.createElement("strong",null,"(nosnippet)"),e.createElement(Bl,{title:op('"nosnippet" robots meta tag',"wp-seopress"),description:e.createElement(e.Fragment,null,op('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,op("Do not index images for this page","wp-seopress")," ",e.createElement("strong",null," (noimageindex)"),e.createElement(Bl,{title:op('"noimageindex" robots meta tag',"wp-seopress"),description:e.createElement(e.Fragment,null,op('By checking this option, you will add a meta robots tag with the value "noimageindex".',"wp-seopress")," ",e.createElement("br",null)," ",op("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 ap=function(e){var t=e.postId;return"".concat(SEOPRESS_DATA.REST_URL,"seopress/v1/posts/").concat(t,"/meta-robot-settings")};const sp=function(e){var t=e.postId;return ao(ap({postId:t}),{suspense:!0})};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)}function up(){up=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 cp(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 fp=function(){var e,t=(e=up().mark((function e(t,n){var r;return up().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,fetch(ap({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){cp(i,r,o,a,s,"next",e)}function s(e){cp(i,r,o,a,s,"throw",e)}a(void 0)}))});return function(e,n){return t.apply(this,arguments)}}();function pp(e){return pp="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},pp(e)}var dp=["values"];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"==pp(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,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 gp=wp.i18n.__;const bp=function(t){var n=t.mainBarRef,r=no(),o=sp({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 yp(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)?yp(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=mp().mark((function e(t){return mp().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return p(!0),e.next=3,fp(r,t);case 3:e.sent,a(),p(!1),d.setMessage(gp("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){vp(i,r,o,a,s,"next",e)}function s(e){vp(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"}},gp("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,dp),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(ip,hp({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(Bl,{title:gp("Canonical URL","wp-seopress"),description:e.createElement(e.Fragment,null,gp("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)," ",gp("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)," ",gp("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,hp({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)}},gp("Save","wp-seopress"))))})))};var xp=function(e){var t=e.postId;return"".concat(SEOPRESS_DATA.REST_URL,"seopress/v1/posts/").concat(t,"/redirection-settings")};function Ep(e){return Ep="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},Ep(e)}function Sp(){Sp=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"==Ep(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 _p(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 kp=function(){var e,t=(e=Sp().mark((function e(t,n){var r;return Sp().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,fetch(xp({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){_p(i,r,o,a,s,"next",e)}function s(e){_p(i,r,o,a,s,"throw",e)}a(void 0)}))});return function(e,n){return t.apply(this,arguments)}}();wp.i18n.__;const Op=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 jp(e){return jp="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},jp(e)}var Lp=["data","values","handleOnSubmit","loading"],Pp=["values"];function Cp(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 Ap(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Cp(Object(n),!0).forEach((function(t){Tp(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Cp(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Tp(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ip(){return Ip=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},Ip.apply(this,arguments)}function Np(){Np=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"==jp(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 Fp(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 Rp(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){Fp(i,r,o,a,s,"next",e)}function s(e){Fp(i,r,o,a,s,"throw",e)}a(void 0)}))}}function Mp(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 Dp(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)?Dp(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 Dp(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 zp(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 Up=wp.i18n.__,Vp=function(t){var n=t.data,r=t.values,o=t.handleOnSubmit,i=t.loading,a=zp(t,Lp),s=Da(Wa().values,"_seopress_redirections_value"),l=Mp((0,e.useState)([]),2),u=l[0],c=l[1],f=Mp((0,e.useState)(!1),2),p=f[0],d=f[1],h=Mp((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=Rp(Np().mark((function e(t){var n,r;return Np().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(Gf,Ip({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(Op,{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)}},Up("Save","wp-seopress"))))};const Bp=function(t){var n=t.mainBarRef,r=no(),o=function(e){var t=e.postId;return ao(xp({postId:t}),{suspense:!0})}({postId:r}),i=o.data,a=o.mutate,s=o.abort;(0,e.useEffect)((function(){return function(){s()}}));var l=Mp((0,e.useState)(!1),2),u=l[0],c=l[1],f=(0,e.useContext)(Fn).actions,p=function(){var e=Rp(Np().mark((function e(t){return Np().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return c(!0),e.next=3,kp(r,Ap(Ap({},t),{},{_seopress_redirections_enabled:t._seopress_redirections_enabled?"yes":""}));case 3:e.sent,a(),c(!1),f.setMessage(Up("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=zp(t,Pp);return e.createElement(Vp,Ip({data:i,values:n,handleOnSubmit:p,loading:u},r))})))};var Gp=o(8721),Wp=o.n(Gp);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)}var $p=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}(),Yp=Math.abs,qp=String.fromCharCode,Qp=Object.assign;function Xp(e){return e.trim()}function Kp(e,t,n){return e.replace(t,n)}function Jp(e,t){return e.indexOf(t)}function Zp(e,t){return 0|e.charCodeAt(t)}function ed(e,t,n){return e.slice(t,n)}function td(e){return e.length}function nd(e){return e.length}function rd(e,t){return t.push(e),e}var od=1,id=1,ad=0,sd=0,ld=0,ud="";function cd(e,t,n,r,o,i,a){return{value:e,root:t,parent:n,type:r,props:o,children:i,line:od,column:id,length:a,return:""}}function fd(e,t){return Qp(cd("",null,null,"",null,null,0),e,{length:-e.length},t)}function pd(){return ld=sd>0?Zp(ud,--sd):0,id--,10===ld&&(id=1,od--),ld}function dd(){return ld=sd<ad?Zp(ud,sd++):0,id++,10===ld&&(id=1,od++),ld}function hd(){return Zp(ud,sd)}function md(){return sd}function vd(e,t){return ed(ud,e,t)}function yd(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 gd(e){return od=id=1,ad=td(ud=e),sd=0,[]}function bd(e){return ud="",e}function wd(e){return Xp(vd(sd-1,Sd(91===e?e+2:40===e?e+1:e)))}function xd(e){for(;(ld=hd())&&ld<33;)dd();return yd(e)>2||yd(ld)>3?"":" "}function Ed(e,t){for(;--t&&dd()&&!(ld<48||ld>102||ld>57&&ld<65||ld>70&&ld<97););return vd(e,md()+(t<6&&32==hd()&&32==dd()))}function Sd(e){for(;dd();)switch(ld){case e:return sd;case 34:case 39:34!==e&&39!==e&&Sd(ld);break;case 40:41===e&&Sd(e);break;case 92:dd()}return sd}function _d(e,t){for(;dd()&&e+ld!==57&&(e+ld!==84||47!==hd()););return"/*"+vd(t,sd-1)+"*"+qp(47===e?e:dd())}function kd(e){for(;!yd(hd());)dd();return vd(e,sd)}var Od="-ms-",jd="-moz-",Ld="-webkit-",Pd="comm",Cd="rule",Ad="decl",Td="@keyframes";function Id(e,t){for(var n="",r=nd(e),o=0;o<r;o++)n+=t(e[o],o,e,t)||"";return n}function Nd(e,t,n,r){switch(e.type){case"@import":case Ad:return e.return=e.return||e.value;case Pd:return"";case Td:return e.return=e.value+"{"+Id(e.children,r)+"}";case Cd:e.value=e.props.join(",")}return td(n=Id(e.children,r))?e.return=e.value+"{"+n+"}":""}function Fd(e,t){switch(function(e,t){return(((t<<2^Zp(e,0))<<2^Zp(e,1))<<2^Zp(e,2))<<2^Zp(e,3)}(e,t)){case 5103:return Ld+"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 Ld+e+e;case 5349:case 4246:case 4810:case 6968:case 2756:return Ld+e+jd+e+Od+e+e;case 6828:case 4268:return Ld+e+Od+e+e;case 6165:return Ld+e+Od+"flex-"+e+e;case 5187:return Ld+e+Kp(e,/(\w+).+(:[^]+)/,"-webkit-box-$1$2-ms-flex-$1$2")+e;case 5443:return Ld+e+Od+"flex-item-"+Kp(e,/flex-|-self/,"")+e;case 4675:return Ld+e+Od+"flex-line-pack"+Kp(e,/align-content|flex-|-self/,"")+e;case 5548:return Ld+e+Od+Kp(e,"shrink","negative")+e;case 5292:return Ld+e+Od+Kp(e,"basis","preferred-size")+e;case 6060:return Ld+"box-"+Kp(e,"-grow","")+Ld+e+Od+Kp(e,"grow","positive")+e;case 4554:return Ld+Kp(e,/([^-])(transform)/g,"$1-webkit-$2")+e;case 6187:return Kp(Kp(Kp(e,/(zoom-|grab)/,Ld+"$1"),/(image-set)/,Ld+"$1"),e,"")+e;case 5495:case 3959:return Kp(e,/(image-set\([^]*)/,Ld+"$1$`$1");case 4968:return Kp(Kp(e,/(.+:)(flex-)?(.*)/,"-webkit-box-pack:$3-ms-flex-pack:$3"),/s.+-b[^;]+/,"justify")+Ld+e+e;case 4095:case 3583:case 4068:case 2532:return Kp(e,/(.+)-inline(.+)/,Ld+"$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(td(e)-1-t>6)switch(Zp(e,t+1)){case 109:if(45!==Zp(e,t+4))break;case 102:return Kp(e,/(.+:)(.+)-([^]+)/,"$1-webkit-$2-$3$1"+jd+(108==Zp(e,t+3)?"$3":"$2-$3"))+e;case 115:return~Jp(e,"stretch")?Fd(Kp(e,"stretch","fill-available"),t)+e:e}break;case 4949:if(115!==Zp(e,t+1))break;case 6444:switch(Zp(e,td(e)-3-(~Jp(e,"!important")&&10))){case 107:return Kp(e,":",":"+Ld)+e;case 101:return Kp(e,/(.+:)([^;!]+)(;|!.+)?/,"$1"+Ld+(45===Zp(e,14)?"inline-":"")+"box$3$1"+Ld+"$2$3$1"+Od+"$2box$3")+e}break;case 5936:switch(Zp(e,t+11)){case 114:return Ld+e+Od+Kp(e,/[svh]\w+-[tblr]{2}/,"tb")+e;case 108:return Ld+e+Od+Kp(e,/[svh]\w+-[tblr]{2}/,"tb-rl")+e;case 45:return Ld+e+Od+Kp(e,/[svh]\w+-[tblr]{2}/,"lr")+e}return Ld+e+Od+e+e}return e}function Rd(e){return bd(Md("",null,null,null,[""],e=gd(e),0,[0],e))}function Md(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=dd()){case 40:if(108!=h&&58==S.charCodeAt(f-1)){-1!=Jp(S+=Kp(wd(g),"&","&\f"),"&\f")&&(y=-1);break}case 34:case 39:case 91:S+=wd(g);break;case 9:case 10:case 13:case 32:S+=xd(h);break;case 92:S+=Ed(md()-1,7);continue;case 47:switch(hd()){case 42:case 47:rd(zd(_d(dd(),md()),t,n),l);break;default:S+="/"}break;case 123*m:s[u++]=td(S)*y;case 125*m:case 59:case 0:switch(g){case 0:case 125:v=0;case 59+c:d>0&&td(S)-f&&rd(d>32?Ud(S+";",r,n,f-1):Ud(Kp(S," ","")+";",r,n,f-2),l);break;case 59:S+=";";default:if(rd(E=Dd(S,t,n,u,c,o,s,b,w=[],x=[],f),i),123===g)if(0===c)Md(S,t,E,E,w,i,f,s,x);else switch(p){case 100:case 109:case 115:Md(e,E,E,r&&rd(Dd(e,E,E,0,0,o,s,b,o,w=[],f),x),o,x,f,s,r?w:x);break;default:Md(S,E,E,E,[""],x,0,s,x)}}u=
|
1 |
/*! For license information please see metaboxe.js.LICENSE.txt */
|
|