Yoast SEO - Version 14.1

Version Description

Release Date: May 13th, 2020

Despite weeks and weeks of testing Yoast SEO 14.0, there were still some people running into issues. In Yoast SEO 14.1, were improving things to help stabilize the plugin. Read more about those changes in our release post!

Bugfixes:

  • Fixes a bug where the help text about Yoast Columns would be shown in the Help Tab on post overviews when there were no Yoast Columns. Additionally, the help text has been refined to only show information about columns that are actually shown. Props to glebkema.
  • Fixes a bug where an empty breadcrumb would be output when a taxonomy was set to have a post type archive in its breadcrumb when that post type didn't have an archive.
  • Fixes a bug where a part of the breadcrumb path was missing on search result pages.
  • Fixes a bug where an error would be thrown and indexing could not be completed due to posts or terms having themselves as a parent or grandparent.
  • Fixes a bug where the SEO data was unnecessarily being indexed when a non-public term or taxonomy was being saved.
  • Fixes a bug where the SEO data of an object would be indexed twice during the indexing process when it was an ancestor of another object in the same REST request.
  • Fixes a bug where huge log files would be generated if PHP was configured to also log the arguments in debug backtraces.
  • Fixes a bug where indexing would continue even though it had already indexed all objects.
  • Fixes a bug where term indexing would keep going on forever due to plugin conflicts.
  • Fixes a bug where primary terms of a custom taxonomy where not being reflected in the breadcrumb.
  • Fixes a bug where the URL in the schema breadcrumbs of search pages would be missing.
  • Fixes a bug where the wpseo_remove_reply_to_com filter was not working.
  • Fixes a bug where no metadata would be output on the frontend when the tables necessary for the indexables could not be created
  • Fixes a bug where the indexing notification would be shown on the WordPress updates page when updating themes or plugins.
  • Fixes a bug where the yoast index --network WP CLI command would throw an error when the database migrations for one or more subsites on a multisite environment had not been run yet.
  • Fixes a bug where no or incorrect breadcrumbs where shown for 404 pages, author archives and date archives. Props to amitsidhpura.

Enhancements:

  • Moves the text link counter notification from the SEO Dashboard to the WordPress' Site Health.
  • Makes the "You're blocking access to robots" notification site-wide.
  • Improves the copy for the "cannot fetch" response of the Ryte health check.
  • Removes the notification containing the message that you should check your post type archive settings when these are possibly reset to their defaults in Yoast SEO 7.7 or 7.8.
  • Reimplements the Advanced Settings tab in React.
  • Improves the ordering of items in XML sitemaps to match SQL standards. Props to rafaelbernard.
  • Improves the transition word assessment for Hungarian. Props to @Zsoru.
  • Adds the --reindex flag to the indexables WP CLI command to remove all existing indexables and then reindex all content.
  • Adds the wpseo_robots_array filter to enable the filtering of the robots array used for the robots meta tag output.
  • Adds the wpseo_shutdown_indexation_limit filter to enable the filtering of the number of objects that can remain unindexed. These remaining objects will automatically be indexed without needing any user interaction as a shutdown function.
  • Adds debug information to the error that is shown when Yoast SEO was unable to create the necessary database tables.
  • Optimizes finding attachments by URL. This addresses a primary cause of higher server load issues occurring since 14.0.
  • Adds a warning to the metabox that is shown when a user enters a focus keyphrase that contains more than 191 characters.
  • Makes the copy of the indexing setting in the advanced tab consistent between all contexts (post, page, category, etc.).
  • Adds the term_id for terms in the object that can be filtered with the wpseo_breadcrumb_links and wpseo_breadcrumb_single_link_info filters. Props to amitsidhpura.
  • Adds a time estimation to the indexing notification based on the amount of objects that need to be indexed.
  • Adds a button to the indexing notification to hide it for a week when more than 2500 objects need to be indexed.
  • Improves the notification that is shown when there were problems creating the necessary database tables.

Other

  • Deletes the unnecessarily created indexables of private taxonomies.
Download this release

Release Info

Developer Yoast
Plugin Icon 128x128 Yoast SEO
Version 14.1
Comparing to
See all releases

Code changes from version 14.0.4 to 14.1

Files changed (154) hide show
  1. admin/ajax.php +17 -1
  2. admin/class-admin-asset-dev-server-location.php +1 -1
  3. admin/class-admin-asset-manager.php +15 -15
  4. admin/class-admin-init.php +79 -119
  5. admin/class-admin.php +1 -8
  6. admin/class-gutenberg-compatibility.php +2 -2
  7. admin/class-yoast-columns.php +74 -10
  8. admin/class-yoast-form.php +6 -6
  9. admin/class-yoast-input-validation.php +1 -1
  10. admin/class-yoast-notification-center.php +1 -1
  11. admin/class-yoast-notification.php +2 -2
  12. admin/{class-yoast-alerts.php → class-yoast-notifications.php} +114 -44
  13. admin/formatter/class-metabox-formatter.php +3 -3
  14. admin/import/plugins/class-import-greg-high-performance-seo.php +0 -1
  15. admin/import/plugins/class-import-jetpack.php +0 -1
  16. admin/import/plugins/class-import-ultimate-seo.php +0 -1
  17. admin/links/class-link-table-accessible-notifier.php +0 -68
  18. admin/metabox/class-metabox.php +10 -22
  19. admin/notifiers/class-post-type-archive-notification-handler.php +0 -190
  20. admin/pages/tools.php +1 -2
  21. admin/roles/class-abstract-role-manager.php +4 -5
  22. admin/ryte/class-ryte.php +1 -1
  23. admin/services/class-indexable.php +0 -1
  24. admin/taxonomy/class-taxonomy-metabox.php +1 -12
  25. admin/taxonomy/class-taxonomy-settings-fields.php +9 -74
  26. admin/taxonomy/class-taxonomy.php +24 -12
  27. admin/views/{partial-alerts-errors.php → partial-notifications-errors.php} +5 -5
  28. admin/views/{partial-alerts-template.php → partial-notifications-template.php} +16 -16
  29. admin/views/{partial-alerts-warnings.php → partial-notifications-warnings.php} +7 -7
  30. admin/views/tabs/dashboard/dashboard.php +5 -5
  31. admin/views/tabs/metas/archives.php +2 -2
  32. admin/views/tabs/metas/breadcrumbs.php +1 -1
  33. admin/views/tabs/metas/general.php +1 -1
  34. admin/views/tabs/metas/media.php +1 -1
  35. admin/views/tabs/metas/paper-content/general-content.php +4 -4
  36. admin/views/tabs/metas/paper-content/media-content.php +12 -9
  37. admin/views/tabs/metas/paper-content/post-type-content.php +2 -2
  38. admin/views/tabs/metas/post-types.php +1 -1
  39. admin/views/tabs/metas/rss.php +1 -1
  40. admin/views/tabs/metas/taxonomies.php +2 -2
  41. config/dependency-injection/custom-loader.php +1 -1
  42. config/dependency-injection/loader-pass.php +1 -1
  43. css/dist/admin-global-1404-rtl.css +0 -1
  44. css/dist/admin-global-1404.css +0 -1
  45. css/dist/admin-global-1410-rtl.css +1 -0
  46. css/dist/admin-global-1410.css +1 -0
  47. css/dist/{adminbar-1404-rtl.css → adminbar-1410-rtl.css} +0 -0
  48. css/dist/{adminbar-1404.css → adminbar-1410.css} +0 -0
  49. css/dist/alerts-1404-rtl.css +0 -1
  50. css/dist/alerts-1404.css +0 -1
  51. css/dist/alerts-1410-rtl.css +1 -0
  52. css/dist/alerts-1410.css +1 -0
  53. css/dist/{dashboard-1404-rtl.css → dashboard-1410-rtl.css} +0 -0
  54. css/dist/{dashboard-1404.css → dashboard-1410.css} +0 -0
  55. css/dist/{edit-page-1404-rtl.css → edit-page-1410-rtl.css} +0 -0
  56. css/dist/{edit-page-1404.css → edit-page-1410.css} +0 -0
  57. css/dist/{featured-image-1404-rtl.css → featured-image-1410-rtl.css} +0 -0
  58. css/dist/{featured-image-1404.css → featured-image-1410.css} +0 -0
  59. css/dist/{filter-explanation-1404-rtl.css → filter-explanation-1410-rtl.css} +0 -0
  60. css/dist/{filter-explanation-1404.css → filter-explanation-1410.css} +0 -0
  61. css/dist/icons-1410-rtl.css +1 -0
  62. css/dist/icons-1410.css +1 -0
  63. css/dist/{inside-editor-1404-rtl.css → inside-editor-1410-rtl.css} +0 -0
  64. css/dist/{inside-editor-1404.css → inside-editor-1410.css} +0 -0
  65. css/dist/metabox-1404-rtl.css +0 -1
  66. css/dist/metabox-1404.css +0 -5
  67. css/dist/metabox-1410-rtl.css +1 -0
  68. css/dist/metabox-1410.css +3 -0
  69. css/dist/{metabox-primary-category-1404-rtl.css → metabox-primary-category-1410-rtl.css} +0 -0
  70. css/dist/{metabox-primary-category-1404.css → metabox-primary-category-1410.css} +0 -0
  71. css/dist/monorepo-1404-rtl.css +0 -1
  72. css/dist/monorepo-1404.css +0 -1
  73. css/dist/monorepo-1410-rtl.css +1 -0
  74. css/dist/monorepo-1410.css +1 -0
  75. css/dist/notifications-1410-rtl.css +1 -0
  76. css/dist/notifications-1410.css +1 -0
  77. css/dist/score_icon-1410-rtl.css +1 -0
  78. css/dist/score_icon-1410.css +1 -0
  79. css/dist/search-appearance-1404-rtl.css +0 -1
  80. css/dist/search-appearance-1404.css +0 -1
  81. css/dist/search-appearance-1410-rtl.css +1 -0
  82. css/dist/search-appearance-1410.css +1 -0
  83. css/dist/{structured-data-blocks-1404-rtl.css → structured-data-blocks-1410-rtl.css} +0 -0
  84. css/dist/{structured-data-blocks-1404.css → structured-data-blocks-1410.css} +0 -0
  85. css/dist/{toggle-switch-1404-rtl.css → toggle-switch-1410-rtl.css} +0 -0
  86. css/dist/{toggle-switch-1404.css → toggle-switch-1410.css} +0 -0
  87. css/dist/{wpseo-dismissible-1404-rtl.css → wpseo-dismissible-1410-rtl.css} +0 -0
  88. css/dist/{wpseo-dismissible-1404.css → wpseo-dismissible-1410.css} +0 -0
  89. css/dist/{yoast-components-1404-rtl.css → yoast-components-1410-rtl.css} +0 -0
  90. css/dist/{yoast-components-1404.css → yoast-components-1410.css} +0 -0
  91. css/dist/yoast-extensions-1404-rtl.css +0 -1
  92. css/dist/yoast-extensions-1404.css +0 -1
  93. css/dist/yoast-extensions-1410-rtl.css +1 -0
  94. css/dist/yoast-extensions-1410.css +1 -0
  95. css/dist/yst_plugin_tools-1404-rtl.css +0 -1
  96. css/dist/yst_plugin_tools-1404.css +0 -1
  97. css/dist/yst_plugin_tools-1410-rtl.css +1 -0
  98. css/dist/yst_plugin_tools-1410.css +1 -0
  99. css/dist/{yst_seo_score-1404-rtl.css → yst_seo_score-1410-rtl.css} +0 -0
  100. css/dist/{yst_seo_score-1404.css → yst_seo_score-1410.css} +0 -0
  101. css/src/admin-global.css +576 -0
  102. css/src/adminbar.css +83 -0
  103. css/src/alerts.css +43 -0
  104. css/src/dashboard.css +90 -0
  105. css/src/edit-page.css +11 -0
  106. css/src/featured-image.css +9 -0
  107. css/src/filter-explanation.css +6 -0
  108. css/src/icons.css +18 -0
  109. css/src/inside-editor.css +10 -0
  110. css/src/metabox-primary-category.css +49 -0
  111. css/src/metabox.css +679 -0
  112. css/src/notifications.css +270 -0
  113. css/src/score_icon.css +29 -0
  114. css/src/search-appearance.css +310 -0
  115. css/src/structured-data-blocks.css +142 -0
  116. css/src/toggle-switch.css +380 -0
  117. css/src/wpseo-dismissible.css +53 -0
  118. css/src/yoast-components.css +618 -0
  119. css/src/yoast-extensions.css +726 -0
  120. css/src/yst_plugin_tools.css +900 -0
  121. css/src/yst_seo_score.css +12 -0
  122. deprecated/admin/ajax/class-yoast-onpage-ajax.php +0 -1
  123. deprecated/admin/config-ui/fields/class-field-google-search-console-intro.php +7 -8
  124. deprecated/admin/links/class-link-compatibility-notifier.php +1 -1
  125. deprecated/admin/links/class-link-table-accessible-notifier.php +49 -0
  126. deprecated/admin/notifiers/class-post-type-archive-notification-handler.php +47 -0
  127. deprecated/admin/onpage/class-onpage-option.php +1 -2
  128. deprecated/admin/onpage/class-onpage.php +0 -1
  129. deprecated/frontend/class-opengraph.php +2 -2
  130. deprecated/frontend/class-primary-category.php +1 -1
  131. deprecated/frontend/class-twitter.php +1 -1
  132. deprecated/frontend/frontend.php +5 -4
  133. deprecated/frontend/schema/class-schema-author.php +2 -2
  134. deprecated/frontend/schema/class-schema-howto.php +2 -2
  135. deprecated/frontend/schema/class-schema-main-image.php +1 -1
  136. images/alert-error-icon.svg +1 -0
  137. images/alert-info-icon.svg +1 -0
  138. images/alert-success-icon.svg +1 -0
  139. images/alert-warning-icon.svg +1 -0
  140. inc/class-addon-manager.php +3 -4
  141. inc/class-upgrade.php +75 -0
  142. inc/class-wpseo-admin-bar-menu.php +10 -10
  143. inc/class-wpseo-meta.php +14 -7
  144. inc/class-wpseo-replace-vars.php +35 -9
  145. inc/class-wpseo-utils.php +61 -5
  146. inc/health-check-curl-version.php +3 -3
  147. inc/health-check-links-table-not-accessible.php +77 -0
  148. inc/health-check-postname-permalink.php +2 -2
  149. inc/health-check-ryte.php +21 -8
  150. inc/options/class-wpseo-option-wpseo.php +42 -20
  151. inc/sitemaps/class-author-sitemap-provider.php +1 -1
  152. inc/sitemaps/class-sitemaps-cache.php +2 -2
  153. inc/sitemaps/class-sitemaps.php +1 -1
  154. js/dist/analysis-1404.js +0 -14
admin/ajax.php CHANGED
@@ -43,6 +43,23 @@ function wpseo_set_option() {
43
 
44
  add_action( 'wp_ajax_wpseo_set_option', 'wpseo_set_option' );
45
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  /**
47
  * Since 3.2 Notifications are dismissed in the Notification Center.
48
  */
@@ -170,7 +187,6 @@ function wpseo_upsert_meta( $post_id, $new_meta_value, $orig_meta_value, $meta_k
170
  );
171
 
172
  return $upsert_results;
173
-
174
  }
175
 
176
  if ( $sanitized_new_meta_value === $orig_meta_value && $sanitized_new_meta_value !== $new_meta_value ) {
43
 
44
  add_action( 'wp_ajax_wpseo_set_option', 'wpseo_set_option' );
45
 
46
+ /**
47
+ * Sets an option in the database to hide the index warning for a week.
48
+ *
49
+ * This function is used in AJAX calls and dies on exit.
50
+ */
51
+ function wpseo_set_indexation_remind() {
52
+ if ( ! current_user_can( 'manage_options' ) ) {
53
+ die( '-1' );
54
+ }
55
+
56
+ check_ajax_referer( 'wpseo-indexation-remind' );
57
+
58
+ WPSEO_Options::set( 'indexation_warning_hide_until', ( time() + WEEK_IN_SECONDS ) );
59
+ die( '1' );
60
+ }
61
+ add_action( 'wp_ajax_wpseo_set_indexation_remind', 'wpseo_set_indexation_remind' );
62
+
63
  /**
64
  * Since 3.2 Notifications are dismissed in the Notification Center.
65
  */
187
  );
188
 
189
  return $upsert_results;
 
190
  }
191
 
192
  if ( $sanitized_new_meta_value === $orig_meta_value && $sanitized_new_meta_value !== $new_meta_value ) {
admin/class-admin-asset-dev-server-location.php CHANGED
@@ -58,7 +58,7 @@ final class WPSEO_Admin_Asset_Dev_Server_Location implements WPSEO_Admin_Asset_L
58
  return $this->get_default_url( $asset, $type );
59
  }
60
 
61
- $path = sprintf( '%s%s.js', $asset->get_src(), $asset->get_suffix() );
62
 
63
  return trailingslashit( $this->url ) . $path;
64
  }
58
  return $this->get_default_url( $asset, $type );
59
  }
60
 
61
+ $path = sprintf( 'js/dist/%s%s.js', $asset->get_src(), $asset->get_suffix() );
62
 
63
  return trailingslashit( $this->url ) . $path;
64
  }
admin/class-admin-asset-manager.php CHANGED
@@ -14,18 +14,18 @@
14
  class WPSEO_Admin_Asset_Manager {
15
 
16
  /**
17
- * Class that manages the assets' location.
18
  *
19
- * @var WPSEO_Admin_Asset_Location
20
  */
21
- protected $asset_location;
22
 
23
  /**
24
- * Prefix for naming the assets.
25
  *
26
- * @var string
27
  */
28
- const PREFIX = 'yoast-seo-';
29
 
30
  /**
31
  * Prefix for naming the assets.
@@ -578,7 +578,11 @@ class WPSEO_Admin_Asset_Manager {
578
  'src' => 'wpseo-dismissible-' . $flat_version,
579
  ],
580
  [
581
- 'name' => 'alerts',
 
 
 
 
582
  'src' => 'alerts-' . $flat_version,
583
  ],
584
  [
@@ -643,14 +647,10 @@ class WPSEO_Admin_Asset_Manager {
643
  'name' => 'search-appearance',
644
  'src' => 'search-appearance-' . $flat_version,
645
  ],
646
-
647
- /*
648
- * Temporarily commented out to prevent unwanted monorepo styles seeping through.
649
- * [
650
- * 'name' => 'monorepo',
651
- * 'src' => 'monorepo-' . $flat_version,
652
- * ],
653
- */
654
  [
655
  'name' => 'structured-data-blocks',
656
  'src' => 'structured-data-blocks-' . $flat_version,
14
  class WPSEO_Admin_Asset_Manager {
15
 
16
  /**
17
+ * Prefix for naming the assets.
18
  *
19
+ * @var string
20
  */
21
+ const PREFIX = 'yoast-seo-';
22
 
23
  /**
24
+ * Class that manages the assets' location.
25
  *
26
+ * @var WPSEO_Admin_Asset_Location
27
  */
28
+ protected $asset_location;
29
 
30
  /**
31
  * Prefix for naming the assets.
578
  'src' => 'wpseo-dismissible-' . $flat_version,
579
  ],
580
  [
581
+ 'name' => 'notifications',
582
+ 'src' => 'notifications-' . $flat_version,
583
+ ],
584
+ [
585
+ 'name' => 'alert',
586
  'src' => 'alerts-' . $flat_version,
587
  ],
588
  [
647
  'name' => 'search-appearance',
648
  'src' => 'search-appearance-' . $flat_version,
649
  ],
650
+ [
651
+ 'name' => 'monorepo',
652
+ 'src' => 'monorepo-' . $flat_version,
653
+ ],
 
 
 
 
654
  [
655
  'name' => 'structured-data-blocks',
656
  'src' => 'structured-data-blocks-' . $flat_version,
admin/class-admin-init.php CHANGED
@@ -35,40 +35,33 @@ class WPSEO_Admin_Init {
35
  $this->asset_manager = new WPSEO_Admin_Asset_Manager();
36
 
37
  add_action( 'admin_enqueue_scripts', [ $this, 'enqueue_dismissible' ] );
38
- add_action( 'admin_init', [ $this, 'blog_public_notice' ], 15 );
39
  add_action( 'admin_init', [ $this, 'yoast_plugin_suggestions_notification' ], 15 );
40
- add_action( 'admin_init', [ $this, 'recalculate_notice' ], 15 );
41
  add_action( 'admin_init', [ $this, 'unsupported_php_notice' ], 15 );
42
  add_action( 'admin_init', [ $this->asset_manager, 'register_assets' ] );
43
  add_action( 'admin_init', [ $this, 'show_hook_deprecation_warnings' ] );
44
  add_action( 'admin_init', [ 'WPSEO_Plugin_Conflict', 'hook_check_for_plugin_conflicts' ] );
45
- add_action( 'admin_init', [ $this, 'handle_notifications' ], 15 );
46
  add_action( 'admin_notices', [ $this, 'permalink_settings_notice' ] );
47
 
 
 
 
 
 
 
 
48
  $health_checks = [
49
  new WPSEO_Health_Check_Page_Comments(),
50
  new WPSEO_Health_Check_Ryte(),
51
  new WPSEO_Health_Check_Default_Tagline(),
52
  new WPSEO_Health_Check_Postname_Permalink(),
53
  new WPSEO_Health_Check_Curl_Version(),
 
54
  ];
55
 
56
  foreach ( $health_checks as $health_check ) {
57
  $health_check->register_test();
58
  }
59
 
60
- $listeners = [];
61
- $listeners[] = new WPSEO_Post_Type_Archive_Notification_Handler();
62
-
63
- /**
64
- * Listener interface classes.
65
- *
66
- * @var WPSEO_Listener $listener
67
- */
68
- foreach ( $listeners as $listener ) {
69
- $listener->listen();
70
- }
71
-
72
  $this->load_meta_boxes();
73
  $this->load_taxonomy_class();
74
  $this->load_admin_page_class();
@@ -77,26 +70,6 @@ class WPSEO_Admin_Init {
77
  $this->load_plugin_suggestions();
78
  }
79
 
80
- /**
81
- * Handles the notifiers for the dashboard page.
82
- *
83
- * @return void
84
- */
85
- public function handle_notifications() {
86
- /**
87
- * Notification handlers.
88
- *
89
- * @var WPSEO_Notification_Handler[] $handlers
90
- */
91
- $handlers = [];
92
- $handlers[] = new WPSEO_Post_Type_Archive_Notification_Handler();
93
-
94
- $notification_center = Yoast_Notification_Center::get();
95
- foreach ( $handlers as $handler ) {
96
- $handler->handle( $notification_center );
97
- }
98
- }
99
-
100
  /**
101
  * Enqueue our styling for dismissible yoast notifications.
102
  */
@@ -104,37 +77,6 @@ class WPSEO_Admin_Init {
104
  $this->asset_manager->enqueue_style( 'dismissible' );
105
  }
106
 
107
- /**
108
- * Add an alert if the blog is not publicly visible.
109
- */
110
- public function blog_public_notice() {
111
-
112
- $info_message = '<strong>' . __( 'Huge SEO Issue: You\'re blocking access to robots.', 'wordpress-seo' ) . '</strong> ';
113
- $info_message .= sprintf(
114
- /* translators: %1$s resolves to the opening tag of the link to the reading settings, %1$s resolves to the closing tag for the link */
115
- __( 'You must %1$sgo to your Reading Settings%2$s and uncheck the box for Search Engine Visibility.', 'wordpress-seo' ),
116
- '<a href="' . esc_url( admin_url( 'options-reading.php' ) ) . '">',
117
- '</a>'
118
- );
119
-
120
- $notification_options = [
121
- 'type' => Yoast_Notification::ERROR,
122
- 'id' => 'wpseo-dismiss-blog-public-notice',
123
- 'priority' => 1.0,
124
- 'capabilities' => 'wpseo_manage_options',
125
- ];
126
-
127
- $notification = new Yoast_Notification( $info_message, $notification_options );
128
-
129
- $notification_center = Yoast_Notification_Center::get();
130
- if ( ! $this->is_blog_public() ) {
131
- $notification_center->add_notification( $notification );
132
- }
133
- else {
134
- $notification_center->remove_notification( $notification );
135
- }
136
- }
137
-
138
  /**
139
  * Determines whether a suggested plugins notification needs to be displayed.
140
  *
@@ -188,44 +130,6 @@ class WPSEO_Admin_Init {
188
  );
189
  }
190
 
191
- /**
192
- * Shows the notice for recalculating the post. the Notice will only be shown if the user hasn't dismissed it before.
193
- */
194
- public function recalculate_notice() {
195
- // Just a return, because we want to temporary disable this notice (#3998 and #4532).
196
- return;
197
-
198
- if ( filter_input( INPUT_GET, 'recalculate' ) === '1' ) {
199
- update_option( 'wpseo_dismiss_recalculate', '1' );
200
-
201
- return;
202
- }
203
-
204
- if ( ! WPSEO_Capability_Utils::current_user_can( 'wpseo_manage_options' ) ) {
205
- return;
206
- }
207
-
208
- if ( $this->is_site_notice_dismissed( 'wpseo_dismiss_recalculate' ) ) {
209
- return;
210
- }
211
-
212
- Yoast_Notification_Center::get()->add_notification(
213
- new Yoast_Notification(
214
- sprintf(
215
- /* translators: 1: is a link to 'admin_url / admin.php?page=wpseo_tools&recalculate=1' 2: closing link tag */
216
- __( 'We\'ve updated our SEO score algorithm. %1$sRecalculate the SEO scores%2$s for all posts and pages.', 'wordpress-seo' ),
217
- '<a href="' . admin_url( 'admin.php?page=wpseo_tools&recalculate=1' ) . '">',
218
- '</a>'
219
- ),
220
- [
221
- 'type' => 'updated yoast-dismissible',
222
- 'id' => 'wpseo-dismiss-recalculate',
223
- 'nonce' => wp_create_nonce( 'wpseo-dismiss-recalculate' ),
224
- ]
225
- )
226
- );
227
- }
228
-
229
  /**
230
  * Creates an unsupported PHP version notification in the notification center.
231
  *
@@ -259,17 +163,6 @@ class WPSEO_Admin_Init {
259
  return (float) $wp_version_latest;
260
  }
261
 
262
- /**
263
- * Check if the user has dismissed the given notice (by $notice_name).
264
- *
265
- * @param string $notice_name The name of the notice that might be dismissed.
266
- *
267
- * @return bool
268
- */
269
- private function is_site_notice_dismissed( $notice_name ) {
270
- return get_option( $notice_name, true ) === '1';
271
- }
272
-
273
  /**
274
  * Helper to verify if the user is currently visiting one of our admin pages.
275
  *
@@ -416,12 +309,12 @@ class WPSEO_Admin_Init {
416
  }
417
 
418
  /**
419
- * Check if the site is set to be publicly visible.
420
  *
421
- * @return bool
422
  */
423
- private function is_blog_public() {
424
- return (string) get_option( 'blog_public' ) === '1';
425
  }
426
 
427
  /**
@@ -513,6 +406,51 @@ class WPSEO_Admin_Init {
513
  }
514
  }
515
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
516
  /* ********************* DEPRECATED METHODS ********************* */
517
 
518
  /**
@@ -613,4 +551,26 @@ class WPSEO_Admin_Init {
613
  public function permalink_notice() {
614
  _deprecated_function( __METHOD__, 'WPSEO 13.2' );
615
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
616
  }
35
  $this->asset_manager = new WPSEO_Admin_Asset_Manager();
36
 
37
  add_action( 'admin_enqueue_scripts', [ $this, 'enqueue_dismissible' ] );
 
38
  add_action( 'admin_init', [ $this, 'yoast_plugin_suggestions_notification' ], 15 );
 
39
  add_action( 'admin_init', [ $this, 'unsupported_php_notice' ], 15 );
40
  add_action( 'admin_init', [ $this->asset_manager, 'register_assets' ] );
41
  add_action( 'admin_init', [ $this, 'show_hook_deprecation_warnings' ] );
42
  add_action( 'admin_init', [ 'WPSEO_Plugin_Conflict', 'hook_check_for_plugin_conflicts' ] );
 
43
  add_action( 'admin_notices', [ $this, 'permalink_settings_notice' ] );
44
 
45
+ /*
46
+ * The `admin_notices` hook fires on single site admin pages vs.
47
+ * `network_admin_notices` which fires on multisite admin pages and
48
+ * `user_admin_notices` which fires on multisite user admin pagss.
49
+ */
50
+ add_action( 'admin_notices', [ $this, 'search_engines_discouraged_notice' ] );
51
+
52
  $health_checks = [
53
  new WPSEO_Health_Check_Page_Comments(),
54
  new WPSEO_Health_Check_Ryte(),
55
  new WPSEO_Health_Check_Default_Tagline(),
56
  new WPSEO_Health_Check_Postname_Permalink(),
57
  new WPSEO_Health_Check_Curl_Version(),
58
+ new WPSEO_Health_Check_Link_Table_Not_Accessible,
59
  ];
60
 
61
  foreach ( $health_checks as $health_check ) {
62
  $health_check->register_test();
63
  }
64
 
 
 
 
 
 
 
 
 
 
 
 
 
65
  $this->load_meta_boxes();
66
  $this->load_taxonomy_class();
67
  $this->load_admin_page_class();
70
  $this->load_plugin_suggestions();
71
  }
72
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
73
  /**
74
  * Enqueue our styling for dismissible yoast notifications.
75
  */
77
  $this->asset_manager->enqueue_style( 'dismissible' );
78
  }
79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80
  /**
81
  * Determines whether a suggested plugins notification needs to be displayed.
82
  *
130
  );
131
  }
132
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
133
  /**
134
  * Creates an unsupported PHP version notification in the notification center.
135
  *
163
  return (float) $wp_version_latest;
164
  }
165
 
 
 
 
 
 
 
 
 
 
 
 
166
  /**
167
  * Helper to verify if the user is currently visiting one of our admin pages.
168
  *
309
  }
310
 
311
  /**
312
+ * Checks whether search engines are discouraged from indexing the site.
313
  *
314
+ * @return bool Whether search engines are discouraged from indexing the site.
315
  */
316
+ private function are_search_engines_discouraged() {
317
+ return (string) get_option( 'blog_public' ) === '0';
318
  }
319
 
320
  /**
406
  }
407
  }
408
 
409
+ /**
410
+ * Determines whether and where the "search engines discouraged" admin notice should be displayed.
411
+ *
412
+ * @return bool Whether the "search engines discouraged" admin notice should be displayed.
413
+ */
414
+ private function should_display_search_engines_discouraged_notice() {
415
+ return (
416
+ $this->are_search_engines_discouraged()
417
+ && WPSEO_Capability_Utils::current_user_can( 'manage_options' )
418
+ && WPSEO_Options::get( 'ignore_search_engines_discouraged_notice', false ) === false
419
+ && (
420
+ $this->on_wpseo_admin_page()
421
+ || in_array( $this->pagenow, [
422
+ 'index.php',
423
+ 'plugins.php',
424
+ 'update-core.php',
425
+ ], true )
426
+ )
427
+ );
428
+ }
429
+
430
+ /**
431
+ * Displays an admin notice when WordPress is set to discourage search engines from indexing the site.
432
+ *
433
+ * @return void
434
+ */
435
+ public function search_engines_discouraged_notice() {
436
+ if ( ! $this->should_display_search_engines_discouraged_notice() ) {
437
+ return;
438
+ }
439
+
440
+ printf(
441
+ '<div id="robotsmessage" class="notice notice-error"><p><strong>%1$s</strong> %2$s <button type="button" id="robotsmessage-dismiss-button" class="button-link hide-if-no-js" data-nonce="%3$s">%4$s</button></p></div>',
442
+ esc_html__( 'Huge SEO Issue: You\'re blocking access to robots.', 'wordpress-seo' ),
443
+ sprintf(
444
+ /* translators: 1: Link start tag to the WordPress Reading Settings page, 2: Link closing tag. */
445
+ esc_html__( 'If you want search engines to show this site in their results, you must %1$sgo to your Reading Settings%2$s and uncheck the box for Search Engine Visibility.', 'wordpress-seo' ),
446
+ '<a href="' . esc_url( admin_url( 'options-reading.php' ) ) . '">',
447
+ '</a>'
448
+ ),
449
+ esc_js( wp_create_nonce( 'wpseo-ignore' ) ),
450
+ esc_html__( 'I don\'t want this site to show in the search results.', 'wordpress-seo' )
451
+ );
452
+ }
453
+
454
  /* ********************* DEPRECATED METHODS ********************* */
455
 
456
  /**
551
  public function permalink_notice() {
552
  _deprecated_function( __METHOD__, 'WPSEO 13.2' );
553
  }
554
+
555
+ /**
556
+ * Add an alert if the blog is not publicly visible.
557
+ *
558
+ * @deprecated 14.1
559
+ * @codeCoverageIgnore
560
+ */
561
+ public function blog_public_notice() {
562
+ _deprecated_function( __METHOD__, 'WPSEO 14.1' );
563
+ }
564
+
565
+ /**
566
+ * Handles the notifiers for the dashboard page.
567
+ *
568
+ * @deprecated 14.1
569
+ * @codeCoverageIgnore
570
+ *
571
+ * @return void
572
+ */
573
+ public function handle_notifications() {
574
+ _deprecated_function( __METHOD__, 'WPSEO 14.1' );
575
+ }
576
  }
admin/class-admin.php CHANGED
@@ -308,7 +308,7 @@ class WPSEO_Admin {
308
  */
309
  private function localize_admin_global_script() {
310
  return [
311
- 'isRtl' => is_rtl(),
312
  'variable_warning' => sprintf(
313
  /* translators: %1$s: '%%term_title%%' variable used in titles and meta's template that's not compatible with the given template, %2$s: expands to 'HelpScout beacon' */
314
  __( 'Warning: the variable %1$s cannot be used in this template. See the %2$s for more info.', 'wordpress-seo' ),
@@ -379,15 +379,12 @@ class WPSEO_Admin {
379
  protected function initialize_seo_links() {
380
  $integrations = [];
381
 
382
- $link_table_accessible_notifier = new WPSEO_Link_Table_Accessible_Notifier();
383
-
384
  if ( ! WPSEO_Options::get( 'enable_text_link_counter' ) ) {
385
  return $integrations;
386
  }
387
 
388
  $integrations[] = new WPSEO_Link_Cleanup_Transient();
389
 
390
- // When the table doesn't exists, just add the notification and return early.
391
  if ( ! WPSEO_Link_Table_Accessible::is_accessible() ) {
392
  WPSEO_Link_Table_Accessible::cleanup();
393
  }
@@ -397,13 +394,9 @@ class WPSEO_Admin {
397
  }
398
 
399
  if ( ! WPSEO_Link_Table_Accessible::is_accessible() || ! WPSEO_Meta_Table_Accessible::is_accessible() ) {
400
- $link_table_accessible_notifier->add_notification();
401
-
402
  return $integrations;
403
  }
404
 
405
- $link_table_accessible_notifier->remove_notification();
406
-
407
  $integrations[] = new WPSEO_Link_Columns( new WPSEO_Meta_Storage() );
408
  $integrations[] = new WPSEO_Link_Reindex_Dashboard();
409
  $integrations[] = new WPSEO_Link_Notifier();
308
  */
309
  private function localize_admin_global_script() {
310
  return [
311
+ 'isRtl' => is_rtl(),
312
  'variable_warning' => sprintf(
313
  /* translators: %1$s: '%%term_title%%' variable used in titles and meta's template that's not compatible with the given template, %2$s: expands to 'HelpScout beacon' */
314
  __( 'Warning: the variable %1$s cannot be used in this template. See the %2$s for more info.', 'wordpress-seo' ),
379
  protected function initialize_seo_links() {
380
  $integrations = [];
381
 
 
 
382
  if ( ! WPSEO_Options::get( 'enable_text_link_counter' ) ) {
383
  return $integrations;
384
  }
385
 
386
  $integrations[] = new WPSEO_Link_Cleanup_Transient();
387
 
 
388
  if ( ! WPSEO_Link_Table_Accessible::is_accessible() ) {
389
  WPSEO_Link_Table_Accessible::cleanup();
390
  }
394
  }
395
 
396
  if ( ! WPSEO_Link_Table_Accessible::is_accessible() || ! WPSEO_Meta_Table_Accessible::is_accessible() ) {
 
 
397
  return $integrations;
398
  }
399
 
 
 
400
  $integrations[] = new WPSEO_Link_Columns( new WPSEO_Meta_Storage() );
401
  $integrations[] = new WPSEO_Link_Reindex_Dashboard();
402
  $integrations[] = new WPSEO_Link_Notifier();
admin/class-gutenberg-compatibility.php CHANGED
@@ -15,14 +15,14 @@ class WPSEO_Gutenberg_Compatibility {
15
  *
16
  * @var string
17
  */
18
- const CURRENT_RELEASE = '7.9.1';
19
 
20
  /**
21
  * The minimally supported version of Gutenberg by the plugin.
22
  *
23
  * @var string
24
  */
25
- const MINIMUM_SUPPORTED = '7.9.1';
26
 
27
  /**
28
  * Holds the current version.
15
  *
16
  * @var string
17
  */
18
+ const CURRENT_RELEASE = '8.0.0';
19
 
20
  /**
21
  * The minimally supported version of Gutenberg by the plugin.
22
  *
23
  * @var string
24
  */
25
+ const MINIMUM_SUPPORTED = '8.0.0';
26
 
27
  /**
28
  * Holds the current version.
admin/class-yoast-columns.php CHANGED
@@ -21,24 +21,88 @@ class WPSEO_Yoast_Columns implements WPSEO_WordPress_Integration {
21
  * Adds the help tab to the help center for current screen.
22
  */
23
  public function add_help_tab() {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  $screen = get_current_screen();
25
  $screen->add_help_tab(
26
  [
27
  /* translators: %s expands to Yoast */
28
  'title' => sprintf( __( '%s Columns', 'wordpress-seo' ), 'Yoast' ),
29
  'id' => 'yst-columns',
30
- 'content' => sprintf(
31
- /* translators: %1$s: Yoast SEO, %2$s: Link to article about content analysis, %3$s: Anchor closing, %4$s: Link to article about text links, %5$s: Emphasis open tag, %6$s: Emphasis close tag */
32
- '<p>' . __( '%1$s adds several columns to this page. We\'ve written an article about %2$show to use the SEO score and Readability score%3$s. The links columns show the number of articles on this site linking %5$sto%6$s this article and the number of URLs linked %5$sfrom%6$s this article. Learn more about %4$show to use these features to improve your internal linking%3$s, which greatly enhances your SEO.', 'wordpress-seo' ) . '</p>',
33
- 'Yoast SEO',
34
- '<a href="' . WPSEO_Shortlinker::get( 'https://yoa.st/16p' ) . '">',
35
- '</a>',
36
- '<a href="' . WPSEO_Shortlinker::get( 'https://yoa.st/16q' ) . '">',
37
- '<em>',
38
- '</em>'
39
- ),
40
  'priority' => 15,
41
  ]
42
  );
43
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44
  }
21
  * Adds the help tab to the help center for current screen.
22
  */
23
  public function add_help_tab() {
24
+ $link_columns_present = $this->display_links();
25
+ $meta_columns_present = $this->display_meta_columns();
26
+ if ( ! ( $link_columns_present || $meta_columns_present ) ) {
27
+ return;
28
+ }
29
+
30
+ $help_tab_content = sprintf(
31
+ /* translators: %1$s: Yoast SEO */
32
+ __( '%1$s adds several columns to this page.', 'wordpress-seo' ),
33
+ 'Yoast SEO'
34
+ );
35
+
36
+ if ( $meta_columns_present ) {
37
+ $help_tab_content .= ' ' . sprintf(
38
+ /* translators: %1$s: Link to article about content analysis, %2$s: Anchor closing */
39
+ __( 'We\'ve written an article about %1$show to use the SEO score and Readability score%2$s.', 'wordpress-seo' ),
40
+ '<a href="' . WPSEO_Shortlinker::get( 'https://yoa.st/16p' ) . '">',
41
+ '</a>'
42
+ );
43
+ }
44
+
45
+ if ( $link_columns_present ) {
46
+ $help_tab_content .= ' ' . sprintf(
47
+ /* translators: %1$s: Link to article about text links, %2$s: Anchor closing tag, %3$s: Emphasis open tag, %4$s: Emphasis close tag */
48
+ __( 'The links columns show the number of articles on this site linking %3$sto%4$s this article and the number of URLs linked %3$sfrom%4$s this article. Learn more about %1$show to use these features to improve your internal linking%2$s, which greatly enhances your SEO.', 'wordpress-seo' ),
49
+ '<a href="' . WPSEO_Shortlinker::get( 'https://yoa.st/16p' ) . '">',
50
+ '</a>',
51
+ '<em>',
52
+ '</em>'
53
+ );
54
+ };
55
+
56
  $screen = get_current_screen();
57
  $screen->add_help_tab(
58
  [
59
  /* translators: %s expands to Yoast */
60
  'title' => sprintf( __( '%s Columns', 'wordpress-seo' ), 'Yoast' ),
61
  'id' => 'yst-columns',
62
+ 'content' => '<p>' . $help_tab_content . '</p>',
 
 
 
 
 
 
 
 
 
63
  'priority' => 15,
64
  ]
65
  );
66
  }
67
+
68
+ /**
69
+ * Retrieves the post type from the $_GET variable.
70
+ *
71
+ * @return string The current post type.
72
+ */
73
+ private function get_current_post_type() {
74
+ return filter_input( INPUT_GET, 'post_type' );
75
+ }
76
+
77
+ /**
78
+ * Whether or not we are showing link columns on this overview page.
79
+ * This depends on the post being accessible or not.
80
+ *
81
+ * @return bool Whether or not the linking columns are shown
82
+ */
83
+ private function display_links() {
84
+ $current_post_type = sanitize_text_field( $this->get_current_post_type() );
85
+
86
+ if ( empty( $current_post_type ) ) {
87
+ return false;
88
+ }
89
+
90
+ return WPSEO_Post_Type::is_post_type_accessible( $current_post_type );
91
+ }
92
+
93
+ /**
94
+ * Wraps the WPSEO_Metabox check to determine whether the metabox should be displayed either by
95
+ * choice of the admin or because the post type is not a public post type.
96
+ *
97
+ * @return bool Whether or not the meta box (and associated columns etc) should be hidden.
98
+ */
99
+ private function display_meta_columns() {
100
+ $current_post_type = sanitize_text_field( $this->get_current_post_type() );
101
+
102
+ if ( empty( $current_post_type ) ) {
103
+ return false;
104
+ }
105
+
106
+ return WPSEO_Utils::is_metabox_active( $current_post_type, 'post_type' );
107
+ }
108
  }
admin/class-yoast-form.php CHANGED
@@ -338,8 +338,8 @@ class Yoast_Form {
338
  '<label class="', $class, '"><b class="switch-yoast-seo-jaws-a11y">&nbsp;</b>',
339
  '<input type="checkbox" aria-labelledby="', esc_attr( $var . '-label' ), '" id="', esc_attr( $var ), '" name="', esc_attr( $this->option_name ), '[', esc_attr( $var ), ']" value="on"', checked( $val, 'on', false ), disabled( $this->is_control_disabled( $var ), true, false ), '/>',
340
  '<span aria-hidden="true">
341
- <span>', esc_html( $off_button ) ,'</span>
342
- <span>', esc_html( $on_button ) ,'</span>
343
  <a></a>
344
  </span>
345
  </label><div class="clear"></div></div>';
@@ -364,12 +364,12 @@ class Yoast_Form {
364
  ];
365
  }
366
 
367
- $defaults = [
368
  'placeholder' => '',
369
  'class' => '',
370
  ];
371
- $attr = wp_parse_args( $attr, $defaults );
372
- $val = $this->get_field_value( $var, '' );
373
  if ( isset( $attr['type'] ) && $attr['type'] === 'url' ) {
374
  $val = urldecode( $val );
375
  $type = 'url';
@@ -696,7 +696,7 @@ class Yoast_Form {
696
  $key_esc = esc_attr( $key );
697
  $for = $var_esc . '-' . $key_esc;
698
  echo '<input type="radio" id="' . $for . '" name="' . esc_attr( $this->option_name ) . '[' . $var_esc . ']" value="' . $key_esc . '" ' . checked( $val, $key_esc, false ) . disabled( $this->is_control_disabled( $var ), true, false ) . ' />',
699
- '<label for="', $for, '">', esc_html( $value ), $screen_reader_text_html,'</label>';
700
  }
701
 
702
  echo '<a></a></div></fieldset><div class="clear"></div></div>' . PHP_EOL . PHP_EOL;
338
  '<label class="', $class, '"><b class="switch-yoast-seo-jaws-a11y">&nbsp;</b>',
339
  '<input type="checkbox" aria-labelledby="', esc_attr( $var . '-label' ), '" id="', esc_attr( $var ), '" name="', esc_attr( $this->option_name ), '[', esc_attr( $var ), ']" value="on"', checked( $val, 'on', false ), disabled( $this->is_control_disabled( $var ), true, false ), '/>',
340
  '<span aria-hidden="true">
341
+ <span>', esc_html( $off_button ), '</span>
342
+ <span>', esc_html( $on_button ), '</span>
343
  <a></a>
344
  </span>
345
  </label><div class="clear"></div></div>';
364
  ];
365
  }
366
 
367
+ $defaults = [
368
  'placeholder' => '',
369
  'class' => '',
370
  ];
371
+ $attr = wp_parse_args( $attr, $defaults );
372
+ $val = $this->get_field_value( $var, '' );
373
  if ( isset( $attr['type'] ) && $attr['type'] === 'url' ) {
374
  $val = urldecode( $val );
375
  $type = 'url';
696
  $key_esc = esc_attr( $key );
697
  $for = $var_esc . '-' . $key_esc;
698
  echo '<input type="radio" id="' . $for . '" name="' . esc_attr( $this->option_name ) . '[' . $var_esc . ']" value="' . $key_esc . '" ' . checked( $val, $key_esc, false ) . disabled( $this->is_control_disabled( $var ), true, false ) . ' />',
699
+ '<label for="', $for, '">', esc_html( $value ), $screen_reader_text_html, '</label>';
700
  }
701
 
702
  echo '<a></a></div></fieldset><div class="clear"></div></div>' . PHP_EOL . PHP_EOL;
admin/class-yoast-input-validation.php CHANGED
@@ -55,7 +55,7 @@ class Yoast_Input_Validation {
55
  foreach ( $errors as $error ) {
56
  // For now, filter the admin title only in the Yoast SEO settings pages.
57
  if ( self::is_yoast_option_group_name( $error['setting'] ) && $error['code'] !== 'settings_updated' ) {
58
- $error_count++;
59
  }
60
  }
61
 
55
  foreach ( $errors as $error ) {
56
  // For now, filter the admin title only in the Yoast SEO settings pages.
57
  if ( self::is_yoast_option_group_name( $error['setting'] ) && $error['code'] !== 'settings_updated' ) {
58
+ ++$error_count;
59
  }
60
  }
61
 
admin/class-yoast-notification-center.php CHANGED
@@ -424,7 +424,7 @@ class Yoast_Notification_Center {
424
  }
425
 
426
  if ( $notification->is_persistent() && $resolve ) {
427
- $this->resolved++;
428
  $this->clear_dismissal( $notification );
429
  }
430
 
424
  }
425
 
426
  if ( $notification->is_persistent() && $resolve ) {
427
+ ++$this->resolved;
428
  $this->clear_dismissal( $notification );
429
  }
430
 
admin/class-yoast-notification.php CHANGED
@@ -320,10 +320,10 @@ class Yoast_Notification {
320
 
321
  // Default notification classes.
322
  $classes = [
323
- 'yoast-alert',
324
  ];
325
 
326
- // Maintain WordPress visualisation of alerts when they are not persistent.
327
  if ( ! $this->is_persistent() ) {
328
  $classes[] = 'notice';
329
  $classes[] = $this->get_type();
320
 
321
  // Default notification classes.
322
  $classes = [
323
+ 'yoast-notification',
324
  ];
325
 
326
+ // Maintain WordPress visualisation of notifications when they are not persistent.
327
  if ( ! $this->is_persistent() ) {
328
  $classes[] = 'notice';
329
  $classes[] = $this->get_type();
admin/{class-yoast-alerts.php → class-yoast-notifications.php} RENAMED
@@ -6,9 +6,9 @@
6
  */
7
 
8
  /**
9
- * Class Yoast_Alerts.
10
  */
11
- class Yoast_Alerts {
12
 
13
  /**
14
  * Holds the admin page's ID.
@@ -67,7 +67,7 @@ class Yoast_Alerts {
67
  private static $dismissed_warnings = [];
68
 
69
  /**
70
- * Yoast_Alerts constructor.
71
  */
72
  public function __construct() {
73
 
@@ -84,12 +84,12 @@ class Yoast_Alerts {
84
  add_action( 'admin_enqueue_scripts', [ $this, 'enqueue_assets' ] );
85
  }
86
 
87
- // Needed for adminbar and Alerts page.
88
- add_action( 'admin_init', [ __CLASS__, 'collect_alerts' ], 99 );
89
 
90
  // Add AJAX hooks.
91
- add_action( 'wp_ajax_yoast_dismiss_alert', [ $this, 'ajax_dismiss_alert' ] );
92
- add_action( 'wp_ajax_yoast_restore_alert', [ $this, 'ajax_restore_alert' ] );
93
  }
94
 
95
  /**
@@ -98,13 +98,25 @@ class Yoast_Alerts {
98
  public function enqueue_assets() {
99
 
100
  $asset_manager = new WPSEO_Admin_Asset_Manager();
101
- $asset_manager->enqueue_style( 'alerts' );
102
  }
103
 
104
  /**
105
- * Handle ajax request to dismiss an alert.
 
 
 
 
 
106
  */
107
  public function ajax_dismiss_alert() {
 
 
 
 
 
 
 
108
 
109
  $notification = $this->get_notification_from_ajax_request();
110
  if ( $notification ) {
@@ -118,9 +130,22 @@ class Yoast_Alerts {
118
  }
119
 
120
  /**
121
- * Handle ajax request to restore an alert.
 
 
 
 
 
 
122
  */
123
  public function ajax_restore_alert() {
 
 
 
 
 
 
 
124
 
125
  $notification = $this->get_notification_from_ajax_request();
126
  if ( $notification ) {
@@ -136,7 +161,7 @@ class Yoast_Alerts {
136
  /**
137
  * Create AJAX response data.
138
  *
139
- * @param string $type Alert type.
140
  */
141
  private function output_ajax_response( $type ) {
142
 
@@ -145,7 +170,7 @@ class Yoast_Alerts {
145
  echo WPSEO_Utils::format_json_encode(
146
  [
147
  'html' => $html,
148
- 'total' => self::get_active_alert_count(),
149
  ]
150
  );
151
  // phpcs:enable -- Reason: WPSEO_Utils::format_json_encode is safe.
@@ -154,7 +179,7 @@ class Yoast_Alerts {
154
  /**
155
  * Get the HTML to return in the AJAX request.
156
  *
157
- * @param string $type Alert type.
158
  *
159
  * @return bool|string
160
  */
@@ -171,18 +196,18 @@ class Yoast_Alerts {
171
  break;
172
  }
173
 
174
- // Re-collect alerts.
175
- self::collect_alerts();
176
 
177
  /**
178
  * Stops PHPStorm from nagging about this variable being unused. The variable is used in the view.
179
  *
180
  * @noinspection PhpUnusedLocalVariableInspection
181
  */
182
- $alerts_data = self::get_template_variables();
183
 
184
  ob_start();
185
- include WPSEO_PATH . 'admin/views/partial-alerts-' . $view . '.php';
186
  $html = ob_get_clean();
187
 
188
  return $html;
@@ -202,36 +227,21 @@ class Yoast_Alerts {
202
  }
203
 
204
  /**
205
- * Show the alerts overview page.
206
- */
207
- public static function show_overview_page() {
208
-
209
- /**
210
- * Stops PHPStorm from nagging about this variable being unused. The variable is used in the view.
211
- *
212
- * @noinspection PhpUnusedLocalVariableInspection
213
- */
214
- $alerts_data = self::get_template_variables();
215
-
216
- include WPSEO_PATH . 'admin/views/alerts-dashboard.php';
217
- }
218
-
219
- /**
220
- * Collect the alerts and group them together.
221
  */
222
- public static function collect_alerts() {
223
 
224
  $notification_center = Yoast_Notification_Center::get();
225
 
226
  $notifications = $notification_center->get_sorted_notifications();
227
  self::$notification_count = count( $notifications );
228
 
229
- self::$errors = array_filter( $notifications, [ __CLASS__, 'filter_error_alerts' ] );
230
- self::$dismissed_errors = array_filter( self::$errors, [ __CLASS__, 'filter_dismissed_alerts' ] );
231
  self::$active_errors = array_diff( self::$errors, self::$dismissed_errors );
232
 
233
- self::$warnings = array_filter( $notifications, [ __CLASS__, 'filter_warning_alerts' ] );
234
- self::$dismissed_warnings = array_filter( self::$warnings, [ __CLASS__, 'filter_dismissed_alerts' ] );
235
  self::$active_warnings = array_diff( self::$warnings, self::$dismissed_warnings );
236
  }
237
 
@@ -245,7 +255,7 @@ class Yoast_Alerts {
245
  return [
246
  'metrics' => [
247
  'total' => self::$notification_count,
248
- 'active' => self::get_active_alert_count(),
249
  'errors' => count( self::$errors ),
250
  'warnings' => count( self::$warnings ),
251
  ],
@@ -261,15 +271,43 @@ class Yoast_Alerts {
261
  }
262
 
263
  /**
264
- * Get the number of active alerts.
 
265
  *
266
  * @return int
 
 
 
267
  */
268
- public static function get_active_alert_count() {
 
 
 
 
 
 
 
 
 
 
269
 
270
  return ( count( self::$active_errors ) + count( self::$active_warnings ) );
271
  }
272
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
273
  /**
274
  * Filter out any non-errors.
275
  *
@@ -277,11 +315,27 @@ class Yoast_Alerts {
277
  *
278
  * @return bool
279
  */
280
- private static function filter_error_alerts( Yoast_Notification $notification ) {
281
 
282
  return $notification->get_type() === 'error';
283
  }
284
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
285
  /**
286
  * Filter out any non-warnings.
287
  *
@@ -289,11 +343,25 @@ class Yoast_Alerts {
289
  *
290
  * @return bool
291
  */
292
- private static function filter_warning_alerts( Yoast_Notification $notification ) {
293
 
294
  return $notification->get_type() !== 'error';
295
  }
296
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
297
  /**
298
  * Filter out any dismissed notifications.
299
  *
@@ -301,8 +369,10 @@ class Yoast_Alerts {
301
  *
302
  * @return bool
303
  */
304
- private static function filter_dismissed_alerts( Yoast_Notification $notification ) {
305
 
306
  return Yoast_Notification_Center::is_notification_dismissed( $notification );
307
  }
308
  }
 
 
6
  */
7
 
8
  /**
9
+ * Class Yoast_Notifications.
10
  */
11
+ class Yoast_Notifications {
12
 
13
  /**
14
  * Holds the admin page's ID.
67
  private static $dismissed_warnings = [];
68
 
69
  /**
70
+ * Yoast_Notifications constructor.
71
  */
72
  public function __construct() {
73
 
84
  add_action( 'admin_enqueue_scripts', [ $this, 'enqueue_assets' ] );
85
  }
86
 
87
+ // Needed for adminbar and Notifications page.
88
+ add_action( 'admin_init', [ __CLASS__, 'collect_notifications' ], 99 );
89
 
90
  // Add AJAX hooks.
91
+ add_action( 'wp_ajax_yoast_dismiss_notification', [ $this, 'ajax_dismiss_notification' ] );
92
+ add_action( 'wp_ajax_yoast_restore_notification', [ $this, 'ajax_restore_notification' ] );
93
  }
94
 
95
  /**
98
  public function enqueue_assets() {
99
 
100
  $asset_manager = new WPSEO_Admin_Asset_Manager();
101
+ $asset_manager->enqueue_style( 'notifications' );
102
  }
103
 
104
  /**
105
+ * Deprecated: Handle ajax request to dismiss a alert.
106
+ * Renamed to ajax_dismiss_notification
107
+ *
108
+ * @deprecated 14.0
109
+ *
110
+ * @codeCoverageIgnore
111
  */
112
  public function ajax_dismiss_alert() {
113
+ _deprecated_function( __METHOD__, 'WPSEO 14.0' );
114
+ }
115
+
116
+ /**
117
+ * Handle ajax request to dismiss a notification.
118
+ */
119
+ public function ajax_dismiss_notification() {
120
 
121
  $notification = $this->get_notification_from_ajax_request();
122
  if ( $notification ) {
130
  }
131
 
132
  /**
133
+ * Deprecated: Handle ajax request to restore a notification.
134
+ * Renamed to ajax_restore_notification
135
+ *
136
+ * @return void
137
+ * @deprecated 14.0
138
+ *
139
+ * @codeCoverageIgnore
140
  */
141
  public function ajax_restore_alert() {
142
+ _deprecated_function( __METHOD__, 'WPSEO 14.0' );
143
+ }
144
+
145
+ /**
146
+ * Handle ajax request to restore a notification.
147
+ */
148
+ public function ajax_restore_notification() {
149
 
150
  $notification = $this->get_notification_from_ajax_request();
151
  if ( $notification ) {
161
  /**
162
  * Create AJAX response data.
163
  *
164
+ * @param string $type Notification type.
165
  */
166
  private function output_ajax_response( $type ) {
167
 
170
  echo WPSEO_Utils::format_json_encode(
171
  [
172
  'html' => $html,
173
+ 'total' => self::get_active_notification_count(),
174
  ]
175
  );
176
  // phpcs:enable -- Reason: WPSEO_Utils::format_json_encode is safe.
179
  /**
180
  * Get the HTML to return in the AJAX request.
181
  *
182
+ * @param string $type Notification type.
183
  *
184
  * @return bool|string
185
  */
196
  break;
197
  }
198
 
199
+ // Re-collect notifications.
200
+ self::collect_notifications();
201
 
202
  /**
203
  * Stops PHPStorm from nagging about this variable being unused. The variable is used in the view.
204
  *
205
  * @noinspection PhpUnusedLocalVariableInspection
206
  */
207
+ $notifications_data = self::get_template_variables();
208
 
209
  ob_start();
210
+ include WPSEO_PATH . 'admin/views/partial-notifications-' . $view . '.php';
211
  $html = ob_get_clean();
212
 
213
  return $html;
227
  }
228
 
229
  /**
230
+ * Collect the notifications and group them together.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
231
  */
232
+ public static function collect_notifications() {
233
 
234
  $notification_center = Yoast_Notification_Center::get();
235
 
236
  $notifications = $notification_center->get_sorted_notifications();
237
  self::$notification_count = count( $notifications );
238
 
239
+ self::$errors = array_filter( $notifications, [ __CLASS__, 'filter_error_notifications' ] );
240
+ self::$dismissed_errors = array_filter( self::$errors, [ __CLASS__, 'filter_dismissed_notifications' ] );
241
  self::$active_errors = array_diff( self::$errors, self::$dismissed_errors );
242
 
243
+ self::$warnings = array_filter( $notifications, [ __CLASS__, 'filter_warning_notifications' ] );
244
+ self::$dismissed_warnings = array_filter( self::$warnings, [ __CLASS__, 'filter_dismissed_notifications' ] );
245
  self::$active_warnings = array_diff( self::$warnings, self::$dismissed_warnings );
246
  }
247
 
255
  return [
256
  'metrics' => [
257
  'total' => self::$notification_count,
258
+ 'active' => self::get_active_notification_count(),
259
  'errors' => count( self::$errors ),
260
  'warnings' => count( self::$warnings ),
261
  ],
271
  }
272
 
273
  /**
274
+ * Deprecated: Get the number of active notifications.
275
+ * Renamed to get_active_notification_count
276
  *
277
  * @return int
278
+ * @deprecated 14.0
279
+ *
280
+ * @codeCoverageIgnore
281
  */
282
+ public function get_active_alert_count() {
283
+ _deprecated_function( __METHOD__, 'WPSEO 14.0' );
284
+ return 0;
285
+ }
286
+
287
+ /**
288
+ * Get the number of active notifications.
289
+ *
290
+ * @return int
291
+ */
292
+ public static function get_active_notification_count() {
293
 
294
  return ( count( self::$active_errors ) + count( self::$active_warnings ) );
295
  }
296
 
297
+ /**
298
+ * Deprecated: Filter out any non-errors. Renamed to filter_error_notifications
299
+ *
300
+ * @param Yoast_Notification $notification $notification Notification to test.
301
+ * @return bool
302
+ * @deprecated 14.0
303
+ *
304
+ * @codeCoverageIgnore
305
+ */
306
+ public function filter_error_alerts( Yoast_Notification $notification ) {
307
+ _deprecated_function( __METHOD__, 'WPSEO 14.0' );
308
+ return false;
309
+ }
310
+
311
  /**
312
  * Filter out any non-errors.
313
  *
315
  *
316
  * @return bool
317
  */
318
+ private static function filter_error_notifications( Yoast_Notification $notification ) {
319
 
320
  return $notification->get_type() === 'error';
321
  }
322
 
323
+
324
+ /**
325
+ * Deprecated: Filter out any non-warnings. Renamed to filter_warning_notifications
326
+ *
327
+ * @param Yoast_Notification $notification $notification Notification to test.
328
+ * @return bool
329
+ * @deprecated 14.0
330
+ *
331
+ * @codeCoverageIgnore
332
+ */
333
+ public function filter_warning_alerts( Yoast_Notification $notification ) {
334
+ _deprecated_function( __METHOD__, 'WPSEO 14.0' );
335
+ return false;
336
+ }
337
+
338
+
339
  /**
340
  * Filter out any non-warnings.
341
  *
343
  *
344
  * @return bool
345
  */
346
+ private static function filter_warning_notifications( Yoast_Notification $notification ) {
347
 
348
  return $notification->get_type() !== 'error';
349
  }
350
 
351
+ /**
352
+ * Deprecated: Filter out any dismissed notifications. Renamed to filter_dismissed_alerts.
353
+ *
354
+ * @param Yoast_Notification $notification Notification to test.
355
+ * @return bool
356
+ * @deprecated 14.0
357
+ *
358
+ * @codeCoverageIgnore
359
+ */
360
+ public function filter_dismissed_alerts( Yoast_Notification $notification ) {
361
+ _deprecated_function( __METHOD__, 'WPSEO 14.0' );
362
+ return false;
363
+ }
364
+
365
  /**
366
  * Filter out any dismissed notifications.
367
  *
369
  *
370
  * @return bool
371
  */
372
+ private static function filter_dismissed_notifications( Yoast_Notification $notification ) {
373
 
374
  return Yoast_Notification_Center::is_notification_dismissed( $notification );
375
  }
376
  }
377
+
378
+ class_alias( Yoast_Notifications::class, 'Yoast_Alerts' );
admin/formatter/class-metabox-formatter.php CHANGED
@@ -148,14 +148,14 @@ class WPSEO_Metabox_Formatter {
148
  }
149
 
150
  /**
151
- * Returns a link to the settings page, if the user has the right capabilities.
152
  * Returns an empty string otherwise.
153
  *
154
- * @return string The settings link.
155
  */
156
  private function get_settings_link() {
157
  if ( current_user_can( 'manage_options' ) ) {
158
- return admin_url( 'options-general.php' );
159
  }
160
 
161
  return '';
148
  }
149
 
150
  /**
151
+ * Returns a link to the General Settings page, if the user has the right capabilities.
152
  * Returns an empty string otherwise.
153
  *
154
+ * @return string The General Settings link.
155
  */
156
  private function get_settings_link() {
157
  if ( current_user_can( 'manage_options' ) ) {
158
+ return esc_url( admin_url( 'options-general.php' ) );
159
  }
160
 
161
  return '';
admin/import/plugins/class-import-greg-high-performance-seo.php CHANGED
@@ -39,5 +39,4 @@ class WPSEO_Import_Greg_SEO extends WPSEO_Plugin_Importer {
39
  'new_key' => 'title',
40
  ],
41
  ];
42
-
43
  }
39
  'new_key' => 'title',
40
  ],
41
  ];
 
42
  }
admin/import/plugins/class-import-jetpack.php CHANGED
@@ -37,5 +37,4 @@ class WPSEO_Import_Jetpack_SEO extends WPSEO_Plugin_Importer {
37
  'new_key' => 'metadesc',
38
  ],
39
  ];
40
-
41
  }
37
  'new_key' => 'metadesc',
38
  ],
39
  ];
 
40
  }
admin/import/plugins/class-import-ultimate-seo.php CHANGED
@@ -61,5 +61,4 @@ class WPSEO_Import_Ultimate_SEO extends WPSEO_Plugin_Importer {
61
  'convert' => [ 'on' => 1 ],
62
  ],
63
  ];
64
-
65
  }
61
  'convert' => [ 'on' => 1 ],
62
  ],
63
  ];
 
64
  }
admin/links/class-link-table-accessible-notifier.php DELETED
@@ -1,68 +0,0 @@
1
- <?php
2
- /**
3
- * WPSEO plugin file.
4
- *
5
- * @package WPSEO\Admin\Links
6
- */
7
-
8
- /**
9
- * Represents the notice when the table is not accessible.
10
- */
11
- class WPSEO_Link_Table_Accessible_Notifier {
12
-
13
- /**
14
- * Notification id.
15
- *
16
- * @var string
17
- */
18
- const NOTIFICATION_ID = 'wpseo-links-table-not-accessible';
19
-
20
- /**
21
- * Adds the notification to the notification center.
22
- */
23
- public function add_notification() {
24
- Yoast_Notification_Center::get()->add_notification( $this->get_notification() );
25
- }
26
-
27
- /**
28
- * Removes the notification from the notification center.
29
- */
30
- public function remove_notification() {
31
- Yoast_Notification_Center::get()->remove_notification( $this->get_notification() );
32
- }
33
-
34
- /**
35
- * Returns the notification when the table is not accessible.
36
- *
37
- * @return Yoast_Notification The notification.
38
- */
39
- protected function get_notification() {
40
- return new Yoast_Notification(
41
- sprintf(
42
- /* translators: %1$s: Yoast SEO. %2$s: Version number of Yoast SEO. %3$s: strong opening tag, %4$s: strong closing tag */
43
- esc_html__( 'The %3$sText link counter%4$s feature (introduced in %1$s %2$s) is currently disabled.', 'wordpress-seo' ),
44
- 'Yoast SEO',
45
- '5.0',
46
- '<strong>',
47
- '</strong>'
48
- ) . ' ' .
49
- sprintf(
50
- /* translators: %1$s: Yoast SEO. */
51
- esc_html__( 'For this feature to work, %1$s needs to create a table in your database. We were unable to create this table automatically.', 'wordpress-seo' ),
52
- 'Yoast SEO'
53
- ) . '<br><br>' .
54
- sprintf(
55
- /* translators: %1$s: link to knowledge base article about solving table issue. %2$s: is anchor closing. */
56
- esc_html__( 'Please read the following %1$sknowledge base article%2$s to find out how to resolve this problem.', 'wordpress-seo' ),
57
- '<a href="' . WPSEO_Shortlinker::get( 'https://yoa.st/15o' ) . '">',
58
- '</a>'
59
- ),
60
- [
61
- 'type' => Yoast_Notification::WARNING,
62
- 'id' => self::NOTIFICATION_ID,
63
- 'capabilities' => 'wpseo_manage_options',
64
- 'priority' => 0.8,
65
- ]
66
- );
67
- }
68
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/metabox/class-metabox.php CHANGED
@@ -5,6 +5,8 @@
5
  * @package WPSEO\Admin
6
  */
7
 
 
 
8
  /**
9
  * This class generates the metabox on the edit post / page as well as contains all page analysis functionality.
10
  */
@@ -115,22 +117,20 @@ class WPSEO_Metabox extends WPSEO_Meta {
115
 
116
  /**
117
  * Renders the content for the internet explorer metabox.
 
 
118
  */
119
  public function render_internet_explorer_notice() {
120
- echo '<div class="yoast-alert-box yoast-alert-box__warning">';
121
- echo '<span class="icon">';
122
- echo '<svg xmlns="http://www.w3.org/2000/svg" fill="#674E00" height="14px" width="14px" viewBox="0 0 576 512" role="img" aria-hidden="true" focusable="false"><path d="M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"/></svg>';
123
- echo '</span>';
124
- echo '<div style="float: left">';
125
- printf(
126
- /* translators: 1: link to Firefox website; 2: link to Chrome website; 3: link to Edge website; 4: link close tag. */
127
  esc_html__( 'The browser you are currently using is unfortunately rather dated. Since we strive to give you the best experience possible, we no longer support this browser. Instead, please use %1$sFirefox%4$s, %2$sChrome%4$s or %3$sMicrosoft Edge%4$s.', 'wordpress-seo' ),
128
  '<a href="https://www.mozilla.org/firefox/new/">',
129
- '<a href="https://www.google.com/intl/nl/chrome/">',
130
  '<a href="https://www.microsoft.com/windows/microsoft-edge">',
131
  '</a>'
132
  );
133
- echo '</div></div>';
 
134
  }
135
 
136
  /**
@@ -141,7 +141,6 @@ class WPSEO_Metabox extends WPSEO_Meta {
141
  */
142
  public static function translate_meta_boxes() {
143
  WPSEO_Meta::$meta_fields['general']['title']['title'] = __( 'SEO title', 'wordpress-seo' );
144
-
145
  WPSEO_Meta::$meta_fields['general']['metadesc']['title'] = __( 'Meta description', 'wordpress-seo' );
146
 
147
  /* translators: %s expands to the post type name. */
@@ -391,18 +390,7 @@ class WPSEO_Metabox extends WPSEO_Meta {
391
  $html_after = '';
392
 
393
  if ( WPSEO_Capability_Utils::current_user_can( 'wpseo_edit_advanced_metadata' ) || WPSEO_Options::get( 'disableadvanced_meta' ) === false ) {
394
- $advanced_collapsible = new WPSEO_Paper_Presenter(
395
- __( 'Advanced', 'wordpress-seo' ),
396
- null,
397
- [
398
- 'collapsible' => true,
399
- 'class' => 'metabox wpseo-form wpseo-collapsible-container',
400
- 'content' => $this->get_tab_content( 'advanced' ),
401
- 'paper_id' => 'collapsible-advanced-settings',
402
- ]
403
- );
404
-
405
- $html_after = '<div class="wpseo_content_wrapper">' . $advanced_collapsible->get_output() . '</div>';
406
  }
407
 
408
  /**
5
  * @package WPSEO\Admin
6
  */
7
 
8
+ use Yoast\WP\SEO\Presenters\Admin\Alert_Presenter;
9
+
10
  /**
11
  * This class generates the metabox on the edit post / page as well as contains all page analysis functionality.
12
  */
117
 
118
  /**
119
  * Renders the content for the internet explorer metabox.
120
+ *
121
+ * @return void
122
  */
123
  public function render_internet_explorer_notice() {
124
+ $content = sprintf(
125
+ /* translators: 1: Link start tag to the Firefox website, 2: Link start tag to the Chrome website, 3: Link start tag to the Edge website, 4: Link closing tag. */
 
 
 
 
 
126
  esc_html__( 'The browser you are currently using is unfortunately rather dated. Since we strive to give you the best experience possible, we no longer support this browser. Instead, please use %1$sFirefox%4$s, %2$sChrome%4$s or %3$sMicrosoft Edge%4$s.', 'wordpress-seo' ),
127
  '<a href="https://www.mozilla.org/firefox/new/">',
128
+ '<a href="https://www.google.com/chrome/">',
129
  '<a href="https://www.microsoft.com/windows/microsoft-edge">',
130
  '</a>'
131
  );
132
+
133
+ echo new Alert_Presenter( $content );
134
  }
135
 
136
  /**
141
  */
142
  public static function translate_meta_boxes() {
143
  WPSEO_Meta::$meta_fields['general']['title']['title'] = __( 'SEO title', 'wordpress-seo' );
 
144
  WPSEO_Meta::$meta_fields['general']['metadesc']['title'] = __( 'Meta description', 'wordpress-seo' );
145
 
146
  /* translators: %s expands to the post type name. */
390
  $html_after = '';
391
 
392
  if ( WPSEO_Capability_Utils::current_user_can( 'wpseo_edit_advanced_metadata' ) || WPSEO_Options::get( 'disableadvanced_meta' ) === false ) {
393
+ $html_after = $this->get_tab_content( 'advanced' );
 
 
 
 
 
 
 
 
 
 
 
394
  }
395
 
396
  /**
admin/notifiers/class-post-type-archive-notification-handler.php DELETED
@@ -1,190 +0,0 @@
1
- <?php
2
- /**
3
- * WPSEO plugin file.
4
- *
5
- * @package WPSEO\Admin\Notifiers
6
- */
7
-
8
- /**
9
- * Represents the logic for showing the post type archive notification.
10
- */
11
- class WPSEO_Post_Type_Archive_Notification_Handler extends WPSEO_Dismissible_Notification {
12
-
13
- /**
14
- * Defaults for the title option.
15
- *
16
- * @var array
17
- */
18
- protected $option_defaults = [];
19
-
20
- /**
21
- * Sets the notification identifier.
22
- *
23
- * @codeCoverageIgnore
24
- *
25
- * @return void
26
- */
27
- public function __construct() {
28
- $this->notification_identifier = 'post-type-archive-notification';
29
- }
30
-
31
- /**
32
- * Checks if the notice should be shown.
33
- *
34
- * @return bool True when applicable.
35
- */
36
- protected function is_applicable() {
37
- if ( $this->is_notice_dismissed() ) {
38
- return false;
39
- }
40
-
41
- if ( $this->is_new_install() ) {
42
- return false;
43
- }
44
-
45
- return $this->get_post_types() !== [];
46
- }
47
-
48
- /**
49
- * Returns the notification.
50
- *
51
- * @return Yoast_Notification The notification for the notification center.
52
- *
53
- * @codeCoverageIgnore
54
- */
55
- protected function get_notification() {
56
- $post_types = $this->get_post_types();
57
-
58
- $message = esc_html__(
59
- 'We\'ve recently improved the functionality of the Search Appearance settings. Unfortunately, we\'ve discovered that for some edge-cases, saving the settings for specific post type archives might have gone wrong.',
60
- 'wordpress-seo'
61
- );
62
- $message .= PHP_EOL . PHP_EOL;
63
- $message .= sprintf(
64
- /* translators: %1$s is the archive template link start tag, %2$s is the link closing tag, %3$s is a comma separated string with content types. */
65
- _n(
66
- 'Please check the %1$sarchive template%2$s for the following content type: %3$s.',
67
- 'Please check the %1$sarchive templates%2$s for the following content types: %3$s.',
68
- count( $post_types ),
69
- 'wordpress-seo'
70
- ),
71
- '<a href="' . esc_url( admin_url( 'admin.php?page=wpseo_titles#top#post-types' ) ) . '">',
72
- '</a>',
73
- implode( ', ', $post_types )
74
- );
75
- $message .= PHP_EOL . PHP_EOL;
76
- $message .= '<a class="button" href="' . admin_url( '?page=' . WPSEO_Admin::PAGE_IDENTIFIER . '&yoast_dismiss=' . $this->notification_identifier ) . '">' . __( 'Remove this message', 'wordpress-seo' ) . '</a>';
77
-
78
- $notification_options = [
79
- 'type' => Yoast_Notification::WARNING,
80
- 'id' => 'wpseo-' . $this->notification_identifier,
81
- 'priority' => 1.0,
82
- 'capabilities' => 'wpseo_manage_options',
83
- ];
84
-
85
- return new Yoast_Notification( $message, $notification_options );
86
- }
87
-
88
- /**
89
- * Checks if the first activation is done before the release of 7.9.
90
- *
91
- * @return bool True when the install is 'new'.
92
- *
93
- * @codeCoverageIgnore
94
- */
95
- protected function is_new_install() {
96
- return WPSEO_Options::get( 'first_activated_on' ) >= strtotime( '2018-07-24' );
97
- }
98
-
99
- /**
100
- * Returns all the post types which might have wrong archive settings.
101
- *
102
- * @return array The post types.
103
- *
104
- * @codeCoverageIgnore
105
- */
106
- protected function get_post_types() {
107
- static $post_types;
108
-
109
- if ( $post_types === null ) {
110
- $this->option_defaults = WPSEO_Option_Titles::get_instance()->get_defaults();
111
-
112
- $post_types = get_post_types( [ 'public' => true ] );
113
- $post_types = WPSEO_Post_Type::filter_attachment_post_type( $post_types );
114
- $post_types = $this->filter_woocommerce_product_type( $post_types );
115
- $post_types = array_filter( $post_types, [ $this, 'has_custom_archive_slug' ] );
116
- $post_types = array_filter( $post_types, [ $this, 'has_default_templates_set' ] );
117
- }
118
-
119
- return $post_types;
120
- }
121
-
122
- /**
123
- * Filters the WooCommerce product, when Woocommerce is active.
124
- *
125
- * @param array $post_types The post types to filter.
126
- *
127
- * @return array The filtere post types.
128
- *
129
- * @codeCoverageIgnore
130
- */
131
- protected function filter_woocommerce_product_type( $post_types ) {
132
- if ( WPSEO_Utils::is_woocommerce_active() ) {
133
- unset( $post_types['product'] );
134
- }
135
-
136
- return $post_types;
137
- }
138
-
139
- /**
140
- * Checks if the archive slug for the post type is overridden.
141
- *
142
- * @param string $post_type_name The post type's name.
143
- *
144
- * @return bool True when the archive slug is overridden.
145
- *
146
- * @codeCoverageIgnore
147
- */
148
- protected function has_custom_archive_slug( $post_type_name ) {
149
- $post_type = get_post_type_object( $post_type_name );
150
- if ( $post_type === null || ! WPSEO_Post_Type::has_archive( $post_type ) ) {
151
- return false;
152
- }
153
-
154
- // When the archive value is not TRUE it will be a custom archive slug.
155
- return ( $post_type->has_archive !== true );
156
- }
157
-
158
- /**
159
- * Checks if the default templates are set for given post type.
160
- *
161
- * @param string $post_type_name The post type name.
162
- *
163
- * @return bool True when the default templates are set.
164
- *
165
- * @codeCoverageIgnore
166
- */
167
- protected function has_default_templates_set( $post_type_name ) {
168
- $title_option_name = 'title-ptarchive-' . $post_type_name;
169
- $metadesc_option_name = 'metadesc-ptarchive-' . $post_type_name;
170
-
171
- return ( $this->is_equal_to_default( $title_option_name ) && $this->is_equal_to_default( $metadesc_option_name ) );
172
- }
173
-
174
- /**
175
- * Checks if value for given option name is equal to the default value.
176
- *
177
- * @param string $option_name The option name to check.
178
- *
179
- * @return bool True when the option value is equal to the default value.
180
- *
181
- * @codeCoverageIgnore
182
- */
183
- protected function is_equal_to_default( $option_name ) {
184
- if ( ! isset( $this->option_defaults[ $option_name ] ) ) {
185
- return false;
186
- }
187
-
188
- return ( WPSEO_Options::get( $option_name ) === $this->option_defaults[ $option_name ] );
189
- }
190
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/pages/tools.php CHANGED
@@ -54,7 +54,7 @@ if ( $tool_page === '' ) {
54
  $attr = ( ! empty( $tool['attr'] ) ) ? $tool['attr'] : '';
55
 
56
  echo '<li>';
57
- echo '<strong><a href="', esc_url( $href ), '" ', esc_attr( $attr ) , '>', esc_html( $tool['title'] ), '</a></strong><br/>';
58
  echo esc_html( $tool['desc'] );
59
  echo '</li>';
60
  }
@@ -67,7 +67,6 @@ if ( $tool_page === '' ) {
67
  echo '</ul>';
68
 
69
  echo '<input type="hidden" id="wpseo_recalculate_nonce" name="wpseo_recalculate_nonce" value="' . esc_attr( wp_create_nonce( 'wpseo_recalculate' ) ) . '" />';
70
-
71
  }
72
  else {
73
  echo '<a href="', esc_url( admin_url( 'admin.php?page=wpseo_tools' ) ), '">', esc_html__( '&laquo; Back to Tools page', 'wordpress-seo' ), '</a>';
54
  $attr = ( ! empty( $tool['attr'] ) ) ? $tool['attr'] : '';
55
 
56
  echo '<li>';
57
+ echo '<strong><a href="', esc_url( $href ), '" ', esc_attr( $attr ), '>', esc_html( $tool['title'] ), '</a></strong><br/>';
58
  echo esc_html( $tool['desc'] );
59
  echo '</li>';
60
  }
67
  echo '</ul>';
68
 
69
  echo '<input type="hidden" id="wpseo_recalculate_nonce" name="wpseo_recalculate_nonce" value="' . esc_attr( wp_create_nonce( 'wpseo_recalculate' ) ) . '" />';
 
70
  }
71
  else {
72
  echo '<a href="', esc_url( admin_url( 'admin.php?page=wpseo_tools' ) ), '">', esc_html__( '&laquo; Back to Tools page', 'wordpress-seo' ), '</a>';
admin/roles/class-abstract-role-manager.php CHANGED
@@ -27,11 +27,10 @@ abstract class WPSEO_Abstract_Role_Manager implements WPSEO_Role_Manager {
27
  * @return void
28
  */
29
  public function register( $role, $display_name, $template = null ) {
30
- $this->roles[ $role ] =
31
- (object) [
32
- 'display_name' => $display_name,
33
- 'template' => $template,
34
- ];
35
  }
36
 
37
  /**
27
  * @return void
28
  */
29
  public function register( $role, $display_name, $template = null ) {
30
+ $this->roles[ $role ] = (object) [
31
+ 'display_name' => $display_name,
32
+ 'template' => $template,
33
+ ];
 
34
  }
35
 
36
  /**
admin/ryte/class-ryte.php CHANGED
@@ -13,7 +13,7 @@ class WPSEO_Ryte implements WPSEO_WordPress_Integration {
13
  /**
14
  * Is the request started by pressing the fetch button.
15
  *
16
- * @var boolean
17
  */
18
  private $is_manual_request = false;
19
 
13
  /**
14
  * Is the request started by pressing the fetch button.
15
  *
16
+ * @var bool
17
  */
18
  private $is_manual_request = false;
19
 
admin/services/class-indexable.php CHANGED
@@ -72,7 +72,6 @@ class WPSEO_Indexable_Service {
72
 
73
  if ( $object_type === 'term' ) {
74
  return new WPSEO_Indexable_Service_Term_Provider();
75
-
76
  }
77
 
78
  throw WPSEO_Invalid_Argument_Exception::invalid_callable_parameter( $object_type, 'provider' );
72
 
73
  if ( $object_type === 'term' ) {
74
  return new WPSEO_Indexable_Service_Term_Provider();
 
75
  }
76
 
77
  throw WPSEO_Invalid_Argument_Exception::invalid_callable_parameter( $object_type, 'provider' );
admin/taxonomy/class-taxonomy-metabox.php CHANGED
@@ -135,18 +135,7 @@ class WPSEO_Taxonomy_Metabox {
135
  if ( WPSEO_Capability_Utils::current_user_can( 'wpseo_edit_advanced_metadata' ) || WPSEO_Options::get( 'disableadvanced_meta' ) === false ) {
136
  $taxonomy_settings_fields = new WPSEO_Taxonomy_Settings_Fields( $this->term );
137
 
138
- $advanced_collapsible = new WPSEO_Paper_Presenter(
139
- __( 'Advanced', 'wordpress-seo' ),
140
- null,
141
- [
142
- 'collapsible' => true,
143
- 'class' => 'metabox wpseo-form wpseo-collapsible-container',
144
- 'content' => $this->taxonomy_tab_content->html( $taxonomy_settings_fields->get() ),
145
- 'paper_id' => 'collapsible-advanced-settings',
146
- ]
147
- );
148
-
149
- $html_after = '<div class="wpseo_content_wrapper">' . $advanced_collapsible->get_output() . '</div>';
150
  }
151
 
152
  return new WPSEO_Metabox_Section_React(
135
  if ( WPSEO_Capability_Utils::current_user_can( 'wpseo_edit_advanced_metadata' ) || WPSEO_Options::get( 'disableadvanced_meta' ) === false ) {
136
  $taxonomy_settings_fields = new WPSEO_Taxonomy_Settings_Fields( $this->term );
137
 
138
+ $html_after = $this->taxonomy_tab_content->html( $taxonomy_settings_fields->get() );
 
 
 
 
 
 
 
 
 
 
 
139
  }
140
 
141
  return new WPSEO_Metabox_Section_React(
admin/taxonomy/class-taxonomy-settings-fields.php CHANGED
@@ -9,14 +9,6 @@
9
  * This class parses all the values for the general tab in the Yoast SEO settings metabox.
10
  */
11
  class WPSEO_Taxonomy_Settings_Fields extends WPSEO_Taxonomy_Fields {
12
-
13
- /**
14
- * Options array for the no-index options, including translated labels.
15
- *
16
- * @var array
17
- */
18
- private $no_index_options = [];
19
-
20
  /**
21
  * The WPSEO_Taxonomy_Settings_Fields class constructor.
22
  *
@@ -24,7 +16,6 @@ class WPSEO_Taxonomy_Settings_Fields extends WPSEO_Taxonomy_Fields {
24
  */
25
  public function __construct( $term ) {
26
  parent::__construct( $term );
27
- $this->translate_meta_options();
28
  }
29
 
30
  /**
@@ -33,83 +24,27 @@ class WPSEO_Taxonomy_Settings_Fields extends WPSEO_Taxonomy_Fields {
33
  * @return array Fields to be used on the General tab.
34
  */
35
  public function get() {
36
- $labels = $this->get_taxonomy_labels();
37
  $fields = [
38
  'noindex' => $this->get_field_config(
39
- /* translators: %s = taxonomy name. */
40
- esc_html( sprintf( __( 'Allow search engines to show this %s in search results?', 'wordpress-seo' ), $labels->singular_name ) ),
41
  '',
42
- 'select',
43
- $this->get_noindex_options()
 
44
  ),
45
  'bctitle' => $this->get_field_config(
46
- __( 'Breadcrumbs Title', 'wordpress-seo' ),
47
- esc_html__( 'The Breadcrumbs Title is used in the breadcrumbs where this taxonomy appears.', 'wordpress-seo' ),
48
- 'text',
49
  '',
50
  ( WPSEO_Options::get( 'breadcrumbs-enable' ) !== true )
51
  ),
52
  'canonical' => $this->get_field_config(
53
- __( 'Canonical URL', 'wordpress-seo' ),
54
- esc_html__( 'The canonical link is shown on the archive page for this term.', 'wordpress-seo' ),
55
- 'url'
56
  ),
57
  ];
58
 
59
  return $this->filter_hidden_fields( $fields );
60
  }
61
-
62
- /**
63
- * Translate options text strings for use in the select fields.
64
- *
65
- * {@internal IMPORTANT: if you want to add a new string (option) somewhere, make sure you add
66
- * that array key to the main options definition array in the class WPSEO_Taxonomy_Meta() as well!!!!}}
67
- */
68
- private function translate_meta_options() {
69
- $this->no_index_options = WPSEO_Taxonomy_Meta::$no_index_options;
70
-
71
- /* translators: %1$s expands to the taxonomy name %2$s expands to the current taxonomy index value */
72
- $this->no_index_options['default'] = __( '%2$s (current default for %1$s)', 'wordpress-seo' );
73
- $this->no_index_options['index'] = __( 'Yes', 'wordpress-seo' );
74
- $this->no_index_options['noindex'] = __( 'No', 'wordpress-seo' );
75
- }
76
-
77
- /**
78
- * Getting the data for the noindex fields.
79
- *
80
- * @return array Array containing the no_index options.
81
- */
82
- private function get_noindex_options() {
83
- $labels = $this->get_taxonomy_labels();
84
- $noindex_options['options'] = $this->no_index_options;
85
- $noindex_options['options']['default'] = sprintf( $noindex_options['options']['default'], $labels->name, $this->get_robot_index() );
86
-
87
- return $noindex_options;
88
- }
89
-
90
- /**
91
- * Retrieve the taxonomies plural for use in sentences.
92
- *
93
- * @return object Object containing the taxonomy's labels.
94
- */
95
- private function get_taxonomy_labels() {
96
- $taxonomy = get_taxonomy( $this->term->taxonomy );
97
-
98
- return $taxonomy->labels;
99
- }
100
-
101
- /**
102
- * Returns the current robot index value for the taxonomy
103
- *
104
- * @return string
105
- */
106
- private function get_robot_index() {
107
- $robot_index = $this->no_index_options['index'];
108
- $index_option = 'noindex-tax-' . $this->term->taxonomy;
109
- if ( WPSEO_Options::get( $index_option, false ) ) {
110
- $robot_index = $this->no_index_options['noindex'];
111
- }
112
-
113
- return $robot_index;
114
- }
115
  }
9
  * This class parses all the values for the general tab in the Yoast SEO settings metabox.
10
  */
11
  class WPSEO_Taxonomy_Settings_Fields extends WPSEO_Taxonomy_Fields {
 
 
 
 
 
 
 
 
12
  /**
13
  * The WPSEO_Taxonomy_Settings_Fields class constructor.
14
  *
16
  */
17
  public function __construct( $term ) {
18
  parent::__construct( $term );
 
19
  }
20
 
21
  /**
24
  * @return array Fields to be used on the General tab.
25
  */
26
  public function get() {
 
27
  $fields = [
28
  'noindex' => $this->get_field_config(
 
 
29
  '',
30
+ '',
31
+ 'hidden',
32
+ ''
33
  ),
34
  'bctitle' => $this->get_field_config(
35
+ '',
36
+ '',
37
+ 'hidden',
38
  '',
39
  ( WPSEO_Options::get( 'breadcrumbs-enable' ) !== true )
40
  ),
41
  'canonical' => $this->get_field_config(
42
+ '',
43
+ '',
44
+ 'hidden'
45
  ),
46
  ];
47
 
48
  return $this->filter_hidden_fields( $fields );
49
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
  }
admin/taxonomy/class-taxonomy.php CHANGED
@@ -5,6 +5,8 @@
5
  * @package WPSEO\Admin
6
  */
7
 
 
 
8
  /**
9
  * Class that handles the edit boxes on taxonomy edit pages.
10
  */
@@ -82,6 +84,8 @@ class WPSEO_Taxonomy {
82
 
83
  /**
84
  * Renders the content for the internet explorer metabox.
 
 
85
  */
86
  private function show_internet_explorer_notice() {
87
  $product_title = 'Yoast SEO';
@@ -91,22 +95,18 @@ class WPSEO_Taxonomy {
91
 
92
  // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Reason: $product_title is hardcoded.
93
  printf( '<div id="wpseo_meta" class="postbox yoast wpseo-taxonomy-metabox-postbox"><h2><span>%1$s</span></h2>', $product_title );
94
-
95
  echo '<div class="inside">';
96
- echo '<div class="yoast-alert-box yoast-alert-box__warning">';
97
- echo '<span class="icon">';
98
- echo '<svg xmlns="http://www.w3.org/2000/svg" fill="#674E00" height="14px" width="14px" viewBox="0 0 576 512" role="img" aria-hidden="true" focusable="false"><path d="M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"/></svg>';
99
- echo '</span>';
100
- echo '<div style="float: left">';
101
- printf(
102
- /* translators: 1: link to Firefox website; 2: link to Chrome website; 3: link to Edge website; 4: link close tag. */
103
  esc_html__( 'The browser you are currently using is unfortunately rather dated. Since we strive to give you the best experience possible, we no longer support this browser. Instead, please use %1$sFirefox%4$s, %2$sChrome%4$s or %3$sMicrosoft Edge%4$s.', 'wordpress-seo' ),
104
  '<a href="https://www.mozilla.org/firefox/new/">',
105
- '<a href="https://www.google.com/intl/nl/chrome/">',
106
  '<a href="https://www.microsoft.com/windows/microsoft-edge">',
107
  '</a>'
108
  );
109
- echo '</div></div>';
 
110
  echo '</div></div>';
111
  }
112
 
@@ -129,8 +129,8 @@ class WPSEO_Taxonomy {
129
 
130
  $tag_id = filter_input( INPUT_GET, 'tag_ID' );
131
  if (
132
- self::is_term_edit( $pagenow ) &&
133
- ! empty( $tag_id ) // After we drop support for <4.5 this can be removed.
134
  ) {
135
  wp_enqueue_media(); // Enqueue files needed for upload functionality.
136
 
@@ -337,6 +337,18 @@ class WPSEO_Taxonomy {
337
  return $page === 'term.php';
338
  }
339
 
 
 
 
 
 
 
 
 
 
 
 
 
340
  /**
341
  * Retrieves a template.
342
  * Check if metabox for current taxonomy should be displayed.
5
  * @package WPSEO\Admin
6
  */
7
 
8
+ use Yoast\WP\SEO\Presenters\Admin\Alert_Presenter;
9
+
10
  /**
11
  * Class that handles the edit boxes on taxonomy edit pages.
12
  */
84
 
85
  /**
86
  * Renders the content for the internet explorer metabox.
87
+ *
88
+ * @return void
89
  */
90
  private function show_internet_explorer_notice() {
91
  $product_title = 'Yoast SEO';
95
 
96
  // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Reason: $product_title is hardcoded.
97
  printf( '<div id="wpseo_meta" class="postbox yoast wpseo-taxonomy-metabox-postbox"><h2><span>%1$s</span></h2>', $product_title );
 
98
  echo '<div class="inside">';
99
+
100
+ $content = sprintf(
101
+ /* translators: 1: Link start tag to the Firefox website, 2: Link start tag to the Chrome website, 3: Link start tag to the Edge website, 4: Link closing tag. */
 
 
 
 
102
  esc_html__( 'The browser you are currently using is unfortunately rather dated. Since we strive to give you the best experience possible, we no longer support this browser. Instead, please use %1$sFirefox%4$s, %2$sChrome%4$s or %3$sMicrosoft Edge%4$s.', 'wordpress-seo' ),
103
  '<a href="https://www.mozilla.org/firefox/new/">',
104
+ '<a href="https://www.google.com/chrome/">',
105
  '<a href="https://www.microsoft.com/windows/microsoft-edge">',
106
  '</a>'
107
  );
108
+ echo new Alert_Presenter( $content );
109
+
110
  echo '</div></div>';
111
  }
112
 
129
 
130
  $tag_id = filter_input( INPUT_GET, 'tag_ID' );
131
  if (
132
+ self::is_term_edit( $pagenow )
133
+ && ! empty( $tag_id ) // After we drop support for <4.5 this can be removed.
134
  ) {
135
  wp_enqueue_media(); // Enqueue files needed for upload functionality.
136
 
337
  return $page === 'term.php';
338
  }
339
 
340
+ /**
341
+ * Function to get the labels for the current taxonomy.
342
+ *
343
+ * @return object Labels for the current taxonomy.
344
+ */
345
+ public static function get_labels() {
346
+ $term = filter_input( INPUT_GET, 'taxonomy', FILTER_DEFAULT, [ 'options' => [ 'default' => '' ] ] );
347
+ $taxonomy = get_taxonomy( $term );
348
+
349
+ return $taxonomy->labels;
350
+ }
351
+
352
  /**
353
  * Retrieves a template.
354
  * Check if metabox for current taxonomy should be displayed.
admin/views/{partial-alerts-errors.php → partial-notifications-errors.php} RENAMED
@@ -4,18 +4,18 @@
4
  *
5
  * @package WPSEO\Admin
6
  *
7
- * @uses array $alerts_data
8
  */
9
 
10
  $type = 'errors';
11
  $dashicon = 'warning';
12
 
13
- $active = $alerts_data['errors']['active'];
14
- $dismissed = $alerts_data['errors']['dismissed'];
15
 
16
  $active_total = count( $active );
17
  $dismissed_total = count( $dismissed );
18
- $total = $alerts_data['metrics']['errors'];
19
 
20
  $i18n_title = __( 'Problems', 'wordpress-seo' );
21
  $i18n_issues = __( 'We have detected the following issues that affect the SEO of your site.', 'wordpress-seo' );
@@ -26,4 +26,4 @@ $i18n_muted_issues_title = sprintf(
26
  $dismissed_total
27
  );
28
 
29
- require WPSEO_PATH . 'admin/views/partial-alerts-template.php';
4
  *
5
  * @package WPSEO\Admin
6
  *
7
+ * @uses array $notifications_data
8
  */
9
 
10
  $type = 'errors';
11
  $dashicon = 'warning';
12
 
13
+ $active = $notifications_data['errors']['active'];
14
+ $dismissed = $notifications_data['errors']['dismissed'];
15
 
16
  $active_total = count( $active );
17
  $dismissed_total = count( $dismissed );
18
+ $total = $notifications_data['metrics']['errors'];
19
 
20
  $i18n_title = __( 'Problems', 'wordpress-seo' );
21
  $i18n_issues = __( 'We have detected the following issues that affect the SEO of your site.', 'wordpress-seo' );
26
  $dismissed_total
27
  );
28
 
29
+ require WPSEO_PATH . 'admin/views/partial-notifications-template.php';
admin/views/{partial-alerts-template.php → partial-notifications-template.php} RENAMED
@@ -17,17 +17,17 @@
17
  * @uses array $dismissed
18
  */
19
 
20
- if ( ! function_exists( '_yoast_display_alerts' ) ) {
21
  /**
22
- * Create the alert HTML with restore/dismiss button.
23
  *
24
- * @param array $list List of alerts.
25
- * @param string $status Status of the alerts (active/dismissed).
26
  *
27
  * @return string The output to render.
28
  */
29
- function _yoast_display_alerts( $list, $status ) {
30
- $alerts = '';
31
 
32
  foreach ( $list as $notification ) {
33
 
@@ -47,8 +47,8 @@ if ( ! function_exists( '_yoast_display_alerts' ) ) {
47
  break;
48
  }
49
 
50
- $alerts .= sprintf(
51
- '<div class="yoast-alert-holder" id="%1$s" data-nonce="%2$s" data-json="%3$s">%4$s%5$s</div>',
52
  esc_attr( $notification->get_id() ),
53
  esc_attr( $notification->get_nonce() ),
54
  esc_attr( $notification->get_json() ),
@@ -59,7 +59,7 @@ if ( ! function_exists( '_yoast_display_alerts' ) ) {
59
  );
60
  }
61
 
62
- return $alerts;
63
  }
64
  }
65
 
@@ -70,7 +70,7 @@ if ( ! $active ) {
70
  }
71
 
72
  ?>
73
- <h3 class="yoast-alerts-header" id="<?php echo esc_attr( 'yoast-' . $type . '-header' ); ?>">
74
  <span class="dashicons <?php echo esc_attr( 'dashicons-' . $dashicon ); ?>"></span>
75
  <?php echo esc_html( $i18n_title ); ?> (<?php echo (int) $active_total; ?>)
76
  </h3>
@@ -80,10 +80,10 @@ if ( ! $active ) {
80
  <?php if ( $total ) : ?>
81
  <p><?php echo esc_html( $wpseo_i18n_summary ); ?></p>
82
 
83
- <div class="container yoast-alerts-active" id="<?php echo esc_attr( 'yoast-' . $type . '-active' ); ?>">
84
  <?php
85
- // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Reason: _yoast_display_alerts is considered a safe function.
86
- echo _yoast_display_alerts( $active, 'active' );
87
  ?>
88
  </div>
89
 
@@ -95,10 +95,10 @@ if ( ! $active ) {
95
  [
96
  'paper_id' => esc_attr( $type . '-dismissed' ),
97
  'paper_id_prefix' => 'yoast-',
98
- 'class' => 'yoast-alerts-dismissed',
99
- 'content' => _yoast_display_alerts( $dismissed, 'dismissed' ),
100
  'collapsible' => true,
101
- 'collapsible_header_class' => 'yoast-alert',
102
  ]
103
  );
104
  // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Reason: current usage is considered safe.
17
  * @uses array $dismissed
18
  */
19
 
20
+ if ( ! function_exists( '_yoast_display_notifications' ) ) {
21
  /**
22
+ * Create the notifications HTML with restore/dismiss button.
23
  *
24
+ * @param array $list List of notifications.
25
+ * @param string $status Status of the notifications (active/dismissed).
26
  *
27
  * @return string The output to render.
28
  */
29
+ function _yoast_display_notifications( $list, $status ) {
30
+ $notifications = '';
31
 
32
  foreach ( $list as $notification ) {
33
 
47
  break;
48
  }
49
 
50
+ $notifications .= sprintf(
51
+ '<div class="yoast-notification-holder" id="%1$s" data-nonce="%2$s" data-json="%3$s">%4$s%5$s</div>',
52
  esc_attr( $notification->get_id() ),
53
  esc_attr( $notification->get_nonce() ),
54
  esc_attr( $notification->get_json() ),
59
  );
60
  }
61
 
62
+ return $notifications;
63
  }
64
  }
65
 
70
  }
71
 
72
  ?>
73
+ <h3 class="yoast-notifications-header" id="<?php echo esc_attr( 'yoast-' . $type . '-header' ); ?>">
74
  <span class="dashicons <?php echo esc_attr( 'dashicons-' . $dashicon ); ?>"></span>
75
  <?php echo esc_html( $i18n_title ); ?> (<?php echo (int) $active_total; ?>)
76
  </h3>
80
  <?php if ( $total ) : ?>
81
  <p><?php echo esc_html( $wpseo_i18n_summary ); ?></p>
82
 
83
+ <div class="container yoast-notifications-active" id="<?php echo esc_attr( 'yoast-' . $type . '-active' ); ?>">
84
  <?php
85
+ // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Reason: _yoast_display_notifications is considered a safe function.
86
+ echo _yoast_display_notifications( $active, 'active' );
87
  ?>
88
  </div>
89
 
95
  [
96
  'paper_id' => esc_attr( $type . '-dismissed' ),
97
  'paper_id_prefix' => 'yoast-',
98
+ 'class' => 'yoast-notifications-dismissed',
99
+ 'content' => _yoast_display_notifications( $dismissed, 'dismissed' ),
100
  'collapsible' => true,
101
+ 'collapsible_header_class' => 'yoast-notification',
102
  ]
103
  );
104
  // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Reason: current usage is considered safe.
admin/views/{partial-alerts-warnings.php → partial-notifications-warnings.php} RENAMED
@@ -4,18 +4,18 @@
4
  *
5
  * @package WPSEO\Admin
6
  *
7
- * @uses array $alerts_data
8
  */
9
 
10
  $type = 'warnings';
11
  $dashicon = 'flag';
12
 
13
- $active = $alerts_data['warnings']['active'];
14
- $dismissed = $alerts_data['warnings']['dismissed'];
15
 
16
- $active_total = count( $alerts_data['warnings']['active'] );
17
- $dismissed_total = count( $alerts_data['warnings']['dismissed'] );
18
- $total = $alerts_data['metrics']['warnings'];
19
 
20
  $i18n_title = __( 'Notifications', 'wordpress-seo' );
21
  $i18n_issues = '';
@@ -26,4 +26,4 @@ $i18n_muted_issues_title = sprintf(
26
  $dismissed_total
27
  );
28
 
29
- require WPSEO_PATH . 'admin/views/partial-alerts-template.php';
4
  *
5
  * @package WPSEO\Admin
6
  *
7
+ * @uses array $notifications_data
8
  */
9
 
10
  $type = 'warnings';
11
  $dashicon = 'flag';
12
 
13
+ $active = $notifications_data['warnings']['active'];
14
+ $dismissed = $notifications_data['warnings']['dismissed'];
15
 
16
+ $active_total = count( $notifications_data['warnings']['active'] );
17
+ $dismissed_total = count( $notifications_data['warnings']['dismissed'] );
18
+ $total = $notifications_data['metrics']['warnings'];
19
 
20
  $i18n_title = __( 'Notifications', 'wordpress-seo' );
21
  $i18n_issues = '';
26
  $dismissed_total
27
  );
28
 
29
+ require WPSEO_PATH . 'admin/views/partial-notifications-template.php';
admin/views/tabs/dashboard/dashboard.php CHANGED
@@ -6,13 +6,13 @@
6
  */
7
 
8
  /**
9
- * Alerts template variables.
10
  *
11
  * @noinspection PhpUnusedLocalVariableInspection
12
  *
13
  * @var array
14
  */
15
- $alerts_data = Yoast_Alerts::get_template_variables();
16
 
17
  $notifier = new WPSEO_Configuration_Notifier();
18
  $notifier->listen();
@@ -26,16 +26,16 @@ $wpseo_contributors_phrase = sprintf(
26
  ?>
27
 
28
  <div class="tab-block">
29
- <div class="yoast-alerts">
30
 
31
  <?php echo $notifier->notify(); ?>
32
 
33
  <div class="yoast-container yoast-container__error">
34
- <?php require WPSEO_PATH . 'admin/views/partial-alerts-errors.php'; ?>
35
  </div>
36
 
37
  <div class="yoast-container yoast-container__warning">
38
- <?php require WPSEO_PATH . 'admin/views/partial-alerts-warnings.php'; ?>
39
  </div>
40
 
41
  </div>
6
  */
7
 
8
  /**
9
+ * Notifications template variables.
10
  *
11
  * @noinspection PhpUnusedLocalVariableInspection
12
  *
13
  * @var array
14
  */
15
+ $notifications_data = Yoast_Notifications::get_template_variables();
16
 
17
  $notifier = new WPSEO_Configuration_Notifier();
18
  $notifier->listen();
26
  ?>
27
 
28
  <div class="tab-block">
29
+ <div class="yoast-notifications">
30
 
31
  <?php echo $notifier->notify(); ?>
32
 
33
  <div class="yoast-container yoast-container__error">
34
+ <?php require WPSEO_PATH . 'admin/views/partial-notifications-errors.php'; ?>
35
  </div>
36
 
37
  <div class="yoast-container yoast-container__warning">
38
+ <?php require WPSEO_PATH . 'admin/views/partial-notifications-warnings.php'; ?>
39
  </div>
40
 
41
  </div>
admin/views/tabs/metas/archives.php CHANGED
@@ -12,7 +12,7 @@ if ( ! defined( 'WPSEO_VERSION' ) ) {
12
  }
13
 
14
  // To improve readability, this tab has been divided into separate blocks, included below.
15
- require dirname( __FILE__ ) . '/archives/help.php';
16
 
17
  $wpseo_archives = [
18
  [
@@ -38,7 +38,7 @@ $editor_specific_replace_vars = new WPSEO_Admin_Editor_Specific_Replace_Vars();
38
  foreach ( $wpseo_archives as $wpseo_archive_index => $wpseo_archive ) {
39
  $wpseo_archive_presenter = new WPSEO_Paper_Presenter(
40
  $wpseo_archive['title'],
41
- dirname( __FILE__ ) . '/' . $wpseo_archive['view_file'],
42
  [
43
  'collapsible' => true,
44
  'expanded' => ( $wpseo_archive_index === 0 ),
12
  }
13
 
14
  // To improve readability, this tab has been divided into separate blocks, included below.
15
+ require __DIR__ . '/archives/help.php';
16
 
17
  $wpseo_archives = [
18
  [
38
  foreach ( $wpseo_archives as $wpseo_archive_index => $wpseo_archive ) {
39
  $wpseo_archive_presenter = new WPSEO_Paper_Presenter(
40
  $wpseo_archive['title'],
41
+ __DIR__ . '/' . $wpseo_archive['view_file'],
42
  [
43
  'collapsible' => true,
44
  'expanded' => ( $wpseo_archive_index === 0 ),
admin/views/tabs/metas/breadcrumbs.php CHANGED
@@ -13,7 +13,7 @@ if ( ! defined( 'WPSEO_VERSION' ) ) {
13
 
14
  $wpseo_breadcrumbs_presenter = new WPSEO_Paper_Presenter(
15
  esc_html__( 'Breadcrumbs settings', 'wordpress-seo' ),
16
- dirname( __FILE__ ) . '/paper-content/breadcrumbs-content.php',
17
  [
18
  'paper_id' => 'settings-breadcrumbs',
19
  'class' => 'search-appearance',
13
 
14
  $wpseo_breadcrumbs_presenter = new WPSEO_Paper_Presenter(
15
  esc_html__( 'Breadcrumbs settings', 'wordpress-seo' ),
16
+ __DIR__ . '/paper-content/breadcrumbs-content.php',
17
  [
18
  'paper_id' => 'settings-breadcrumbs',
19
  'class' => 'search-appearance',
admin/views/tabs/metas/general.php CHANGED
@@ -13,7 +13,7 @@ if ( ! defined( 'WPSEO_VERSION' ) ) {
13
 
14
  $wpseo_general_presenter = new WPSEO_Paper_Presenter(
15
  '',
16
- dirname( __FILE__ ) . '/paper-content/general-content.php',
17
  [
18
  'paper_id' => 'settings-general',
19
  'class' => 'search-appearance',
13
 
14
  $wpseo_general_presenter = new WPSEO_Paper_Presenter(
15
  '',
16
+ __DIR__ . '/paper-content/general-content.php',
17
  [
18
  'paper_id' => 'settings-general',
19
  'class' => 'search-appearance',
admin/views/tabs/metas/media.php CHANGED
@@ -13,7 +13,7 @@ if ( ! defined( 'WPSEO_VERSION' ) ) {
13
 
14
  $wpseo_media_presenter = new WPSEO_Paper_Presenter(
15
  esc_html__( 'Media & attachment URLs', 'wordpress-seo' ),
16
- dirname( __FILE__ ) . '/paper-content/media-content.php',
17
  [
18
  'help_text' => new WPSEO_Admin_Help_Panel(
19
  'search-appearance-media',
13
 
14
  $wpseo_media_presenter = new WPSEO_Paper_Presenter(
15
  esc_html__( 'Media & attachment URLs', 'wordpress-seo' ),
16
+ __DIR__ . '/paper-content/media-content.php',
17
  [
18
  'help_text' => new WPSEO_Admin_Help_Panel(
19
  'search-appearance-media',
admin/views/tabs/metas/paper-content/general-content.php CHANGED
@@ -6,7 +6,7 @@
6
  */
7
 
8
  // To improve readability, this tab has been divided into separate blocks, included below.
9
- require dirname( __FILE__ ) . '/general/force-rewrite-title.php';
10
- require dirname( __FILE__ ) . '/general/title-separator.php';
11
- require dirname( __FILE__ ) . '/general/homepage.php';
12
- require dirname( __FILE__ ) . '/general/knowledge-graph.php';
6
  */
7
 
8
  // To improve readability, this tab has been divided into separate blocks, included below.
9
+ require __DIR__ . '/general/force-rewrite-title.php';
10
+ require __DIR__ . '/general/title-separator.php';
11
+ require __DIR__ . '/general/homepage.php';
12
+ require __DIR__ . '/general/knowledge-graph.php';
admin/views/tabs/metas/paper-content/media-content.php CHANGED
@@ -34,18 +34,21 @@ $yform->toggle_switch(
34
  $noindex_option_name = 'noindex-' . $wpseo_post_type->name;
35
 
36
  if ( WPSEO_Options::get( 'is-media-purge-relevant' ) && WPSEO_Options::get( $noindex_option_name ) === false ) {
37
- $description =
38
- esc_html__( 'By enabling this option, attachment URLs become visible to both your visitors and Google. To add value to your website, they should contain useful information, or they might have a negative impact on your ranking.', 'wordpress-seo' ) . ' ' .
39
- sprintf(
40
- /* translators: %1$s expands to the link to the article, %2$s closes the link to the article */
41
- esc_html__( 'Please carefully consider the implications and %1$sread this post%2$s if you want more information about the impact of showing media in search results.', 'wordpress-seo' ),
42
- '<a href="' . esc_url( WPSEO_Shortlinker::get( 'https://yoa.st/2r8' ) ) . '" rel="noopener noreferrer" target="_blank">',
43
- '</a>'
44
- );
 
 
 
45
 
46
  echo '<div style="clear:both; background-color: #ffeb3b; color: #000000; padding: 16px; max-width: 450px; margin-bottom: 32px;">' . $description . '</div>';
47
  }
48
 
49
- require dirname( __FILE__ ) . '/post_type/post-type.php';
50
  ?>
51
  </div>
34
  $noindex_option_name = 'noindex-' . $wpseo_post_type->name;
35
 
36
  if ( WPSEO_Options::get( 'is-media-purge-relevant' ) && WPSEO_Options::get( $noindex_option_name ) === false ) {
37
+ $description = esc_html__(
38
+ 'By enabling this option, attachment URLs become visible to both your visitors and Google. To add value to your website, they should contain useful information, or they might have a negative impact on your ranking.',
39
+ 'wordpress-seo'
40
+ );
41
+ $description .= ' ';
42
+ $description .= sprintf(
43
+ /* translators: %1$s expands to the link to the article, %2$s closes the link to the article */
44
+ esc_html__( 'Please carefully consider the implications and %1$sread this post%2$s if you want more information about the impact of showing media in search results.', 'wordpress-seo' ),
45
+ '<a href="' . esc_url( WPSEO_Shortlinker::get( 'https://yoa.st/2r8' ) ) . '" rel="noopener noreferrer" target="_blank">',
46
+ '</a>'
47
+ );
48
 
49
  echo '<div style="clear:both; background-color: #ffeb3b; color: #000000; padding: 16px; max-width: 450px; margin-bottom: 32px;">' . $description . '</div>';
50
  }
51
 
52
+ require __DIR__ . '/post_type/post-type.php';
53
  ?>
54
  </div>
admin/views/tabs/metas/paper-content/post-type-content.php CHANGED
@@ -17,10 +17,10 @@ $paper_style = false;
17
  /* translators: %s is the singular version of the post type's name. */
18
  echo '<h3>' . esc_html( sprintf( __( 'Settings for single %s URLs', 'wordpress-seo' ), $wpseo_post_type->labels->singular_name ) ) . '</h3>';
19
 
20
- require dirname( __FILE__ ) . '/post_type/post-type.php';
21
 
22
  if ( $wpseo_post_type->name === 'product' && WPSEO_Utils::is_woocommerce_active() ) {
23
- require dirname( __FILE__ ) . '/post_type/woocommerce-shop-page.php';
24
 
25
  return;
26
  }
17
  /* translators: %s is the singular version of the post type's name. */
18
  echo '<h3>' . esc_html( sprintf( __( 'Settings for single %s URLs', 'wordpress-seo' ), $wpseo_post_type->labels->singular_name ) ) . '</h3>';
19
 
20
+ require __DIR__ . '/post_type/post-type.php';
21
 
22
  if ( $wpseo_post_type->name === 'product' && WPSEO_Utils::is_woocommerce_active() ) {
23
+ require __DIR__ . '/post_type/woocommerce-shop-page.php';
24
 
25
  return;
26
  }
admin/views/tabs/metas/post-types.php CHANGED
@@ -33,7 +33,7 @@ if ( is_array( $wpseo_post_types ) && $wpseo_post_types !== [] ) {
33
  foreach ( array_values( $wpseo_post_types ) as $wpseo_post_type_index => $post_type ) {
34
  $wpseo_post_type_presenter = new WPSEO_Paper_Presenter(
35
  $post_type->labels->name,
36
- dirname( __FILE__ ) . '/paper-content/post-type-content.php',
37
  [
38
  'collapsible' => true,
39
  'expanded' => ( $wpseo_post_type_index === 0 ),
33
  foreach ( array_values( $wpseo_post_types ) as $wpseo_post_type_index => $post_type ) {
34
  $wpseo_post_type_presenter = new WPSEO_Paper_Presenter(
35
  $post_type->labels->name,
36
+ __DIR__ . '/paper-content/post-type-content.php',
37
  [
38
  'collapsible' => true,
39
  'expanded' => ( $wpseo_post_type_index === 0 ),
admin/views/tabs/metas/rss.php CHANGED
@@ -13,7 +13,7 @@ if ( ! defined( 'WPSEO_VERSION' ) ) {
13
 
14
  $wpseo_rss_presenter = new WPSEO_Paper_Presenter(
15
  esc_html__( 'RSS feed settings', 'wordpress-seo' ),
16
- dirname( __FILE__ ) . '/paper-content/rss-content.php',
17
  [
18
  'help_text' => new WPSEO_Admin_Help_Panel(
19
  'search-appearance-rss',
13
 
14
  $wpseo_rss_presenter = new WPSEO_Paper_Presenter(
15
  esc_html__( 'RSS feed settings', 'wordpress-seo' ),
16
+ __DIR__ . '/paper-content/rss-content.php',
17
  [
18
  'help_text' => new WPSEO_Admin_Help_Panel(
19
  'search-appearance-rss',
admin/views/tabs/metas/taxonomies.php CHANGED
@@ -23,7 +23,7 @@ if ( is_array( $wpseo_taxonomies ) && $wpseo_taxonomies !== [] ) {
23
  foreach ( array_values( $wpseo_taxonomies ) as $wpseo_taxonomy_index => $wpseo_taxonomy ) {
24
  $wpseo_taxonomy_presenter = new WPSEO_Paper_Presenter(
25
  $wpseo_taxonomy->labels->name,
26
- dirname( __FILE__ ) . '/paper-content/taxonomy-content.php',
27
  [
28
  'collapsible' => true,
29
  'expanded' => ( $wpseo_taxonomy_index === 0 ),
@@ -47,4 +47,4 @@ if ( is_array( $wpseo_taxonomies ) && $wpseo_taxonomies !== [] ) {
47
  unset( $wpseo_taxonomies );
48
 
49
  printf( '<h2>%s</h2>', esc_html__( 'Category URLs', 'wordpress-seo' ) );
50
- require dirname( __FILE__ ) . '/taxonomies/category-url.php';
23
  foreach ( array_values( $wpseo_taxonomies ) as $wpseo_taxonomy_index => $wpseo_taxonomy ) {
24
  $wpseo_taxonomy_presenter = new WPSEO_Paper_Presenter(
25
  $wpseo_taxonomy->labels->name,
26
+ __DIR__ . '/paper-content/taxonomy-content.php',
27
  [
28
  'collapsible' => true,
29
  'expanded' => ( $wpseo_taxonomy_index === 0 ),
47
  unset( $wpseo_taxonomies );
48
 
49
  printf( '<h2>%s</h2>', esc_html__( 'Category URLs', 'wordpress-seo' ) );
50
+ require __DIR__ . '/taxonomies/category-url.php';
config/dependency-injection/custom-loader.php CHANGED
@@ -100,7 +100,7 @@ class Custom_Loader extends PhpFileLoader {
100
  foreach ( $interfaces as $interface ) {
101
  if ( ! empty( $singly_implemented[ $interface ] ) ) {
102
  $this->container->setAlias( $interface, $singly_implemented[ $interface ] )
103
- ->setPublic( false );
104
  }
105
  }
106
  }
100
  foreach ( $interfaces as $interface ) {
101
  if ( ! empty( $singly_implemented[ $interface ] ) ) {
102
  $this->container->setAlias( $interface, $singly_implemented[ $interface ] )
103
+ ->setPublic( false );
104
  }
105
  }
106
  }
config/dependency-injection/loader-pass.php CHANGED
@@ -36,7 +36,7 @@ class Loader_Pass implements CompilerPassInterface {
36
  }
37
 
38
  $loader_definition = $container->getDefinition( Loader::class );
39
- $definitions = $container->getDefinitions();
40
 
41
  foreach ( $definitions as $definition ) {
42
  $this->process_definition( $definition, $loader_definition );
36
  }
37
 
38
  $loader_definition = $container->getDefinition( Loader::class );
39
+ $definitions = $container->getDefinitions();
40
 
41
  foreach ( $definitions as $definition ) {
42
  $this->process_definition( $definition, $loader_definition );
css/dist/admin-global-1404-rtl.css DELETED
@@ -1 +0,0 @@
1
- .wpseo-premium-indicator{width:1px;height:1px;display:inline-block}#adminmenu .wpseo-premium-indicator{margin:-2px 2px -3px 0;color:inherit}.wpseo-premium-indicator svg{height:100%;width:auto;display:none}.yoast-tooltip{position:relative}button.yoast-tooltip{overflow:visible}.yoast-tooltip:after{display:none;position:absolute;z-index:1000000;padding:6px 8px 5px;border-radius:3px;opacity:0;color:#fff;background:rgba(0,0,0,.8);text-shadow:none;font:normal normal 11px/1.45454545 Helvetica,arial,nimbussansl,liberationsans,freesans,clean,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;text-align:center;white-space:pre;text-decoration:none;letter-spacing:normal;text-transform:none;word-wrap:break-word;content:attr(aria-label);pointer-events:none;-webkit-font-smoothing:subpixel-antialiased}.yoast-tooltip-alt:after{content:attr(data-label)}.yoast-tooltip:before{display:none;position:absolute;z-index:1000001;width:0;height:0;border:5px solid transparent;opacity:0;color:rgba(0,0,0,.8);content:"\00a0";pointer-events:none}@keyframes yoast-tooltip-appear{0%{opacity:0}to{opacity:1}}.yoast-tooltip:active:after,.yoast-tooltip:active:before,.yoast-tooltip:focus:after,.yoast-tooltip:focus:before,.yoast-tooltip:hover:after,.yoast-tooltip:hover:before{display:inline-block;text-decoration:none;animation-name:yoast-tooltip-appear;animation-duration:.1s;animation-timing-function:ease-in;animation-delay:.4s;animation-fill-mode:forwards}.yoast-tooltip-no-delay:active:after,.yoast-tooltip-no-delay:active:before,.yoast-tooltip-no-delay:focus:after,.yoast-tooltip-no-delay:focus:before,.yoast-tooltip-no-delay:hover:after,.yoast-tooltip-no-delay:hover:before{opacity:1;animation:none}.yoast-tooltip-multiline:active:after,.yoast-tooltip-multiline:focus:after,.yoast-tooltip-multiline:hover:after{display:table-cell}.yoast-tooltip-s:after,.yoast-tooltip-se:after,.yoast-tooltip-sw:after{top:100%;left:50%;margin-top:5px}.yoast-tooltip-s:before,.yoast-tooltip-se:before,.yoast-tooltip-sw:before{top:auto;left:50%;bottom:-5px;margin-left:-5px;border-bottom-color:rgba(0,0,0,.8)}.yoast-tooltip-se:after{left:auto;right:50%;margin-right:-15px}.yoast-tooltip-sw:after{margin-left:-15px}.yoast-tooltip-n:after,.yoast-tooltip-ne:after,.yoast-tooltip-nw:after{left:50%;bottom:100%;margin-bottom:5px}.yoast-tooltip-n:before,.yoast-tooltip-ne:before,.yoast-tooltip-nw:before{top:-5px;left:50%;bottom:auto;margin-left:-5px;border-top-color:rgba(0,0,0,.8)}.yoast-tooltip-ne:after{left:auto;right:50%;margin-right:-15px}.yoast-tooltip-nw:after{margin-left:-15px}.yoast-tooltip-n:after,.yoast-tooltip-s:after{transform:translateX(-50%)}.yoast-tooltip-w:after{left:100%;bottom:50%;margin-left:5px;transform:translateY(50%)}.yoast-tooltip-w:before{top:50%;bottom:50%;right:-5px;margin-top:-5px;border-right-color:rgba(0,0,0,.8)}.yoast-tooltip-e:after{bottom:50%;right:100%;margin-right:5px;transform:translateY(50%)}.yoast-tooltip-e:before{top:50%;left:-5px;bottom:50%;margin-top:-5px;border-left-color:rgba(0,0,0,.8)}.yoast-tooltip-multiline:after{width:250px;width:-webkit-max-content;width:max-content;max-width:250px;border-collapse:initial;white-space:pre-line;word-wrap:normal;word-break:break-word}.yoast-tooltip-multiline.yoast-tooltip-n:after,.yoast-tooltip-multiline.yoast-tooltip-s:after{left:auto;right:50%;transform:translateX(50%)}.yoast-tooltip-multiline.yoast-tooltip-e:after,.yoast-tooltip-multiline.yoast-tooltip-w:after{left:100%}@media screen and (min-width:0\0){.yoast-tooltip-multiline:after{width:250px}}.yoast-tooltip-sticky:after,.yoast-tooltip-sticky:before{display:inline-block}.yoast-tooltip-sticky.yoast-tooltip-multiline:after{display:table-cell}@media only screen and (-moz-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:2dppx),only screen and (min-resolution:192dpi){.yoast-tooltip-w:after{margin-left:4.5px}}.yoast-tooltip.yoast-tooltip-hidden:after,.yoast-tooltip.yoast-tooltip-hidden:before{display:none}.yoast-measure{max-width:600px}#TB_window .wpseo_content_wrapper p{font-size:14px;font-style:normal}#TB_window .wpseo_content_wrapper label{margin:0 0 0 10px;font-size:14px;font-weight:600}.wpseo-premium-popup-title{margin:1em 0!important;padding:0!important;font-size:1.3em!important;font-weight:600!important}.wpseo-premium-popup-icon{margin:10px}.edit-tags-php .column-description img{max-width:100%;height:auto}.select2-container .select2-search--dropdown .select2-search__field{margin:0;padding:0 8px;min-height:30px}.select2-results__option,.select2-search--inline,.select2-selection__choice{margin-bottom:0}.select2-container .select2-search--inline .select2-search__field{margin-top:6px!important;line-height:inherit;min-height:0}.wpseo-admin-page .select2-container .select2-selection--single,.wpseo-metabox .select2-container .select2-selection--single{height:auto}.wpseo-admin-page .select2-container .select2-selection--single .select2-selection__arrow,.wpseo-metabox .select2-container .select2-selection--single .select2-selection__arrow{height:100%}.yoast-label-strong{font-weight:600}.yoast-video-container-max-width{max-width:560px}.yoast-video-container{position:relative;padding-bottom:56.25%;height:0;overflow:hidden}.yoast-video-container iframe{position:absolute;top:0;right:0;width:100%;height:100%}.yoast-settings{margin-bottom:2em;padding-right:220px}.yoast-settings h2{margin-bottom:0;margin-right:-220px}.yoast-settings label{display:inline-block;width:200px;padding-top:4px;padding-left:10px;margin-left:6px;margin-right:-220px;font-size:14px;line-height:1.3;font-weight:600;color:#23282d;vertical-align:top}.yoast-settings fieldset,.yoast-settings input[type=text],.yoast-settings label,.yoast-settings select,.yoast-settings textarea,.yoast .yoast-settings__checkbox,.yoast .yoast-settings__radio{margin-top:2em;margin-bottom:.5em}.yoast-settings__textarea--medium{width:100%;max-width:600px}.yoast .yoast-settings__checkbox,.yoast .yoast-settings__radio{vertical-align:top;position:relative;top:1px}.yoast-settings__group--checkbox,.yoast-settings__group--radio{padding-top:1em}.yoast-settings__group--checkbox .yoast-settings__checkbox,.yoast-settings__group--radio .yoast-settings__radio{margin:0 0 10px 4px}.yoast-settings__checkbox+label,.yoast-settings__radio+label{width:auto;margin-right:0;margin-left:0;padding:0;max-width:calc(100% - 25px)}.yoast-settings__group--checkbox .yoast-settings__checkbox+label,.yoast-settings__group--radio .yoast-settings__radio+label{margin-top:0;margin-bottom:10px;font-weight:400}.yoast-settings legend{font-size:14px;font-weight:600;color:#23282d}.yoast-settings .description{margin-top:0;font-size:14px}td .wpseo-score-icon{display:inline-block;width:12px;height:12px;margin-right:5px;border-radius:50%;background:#888;line-height:16px;margin-top:3px}.fixed th.column-wpseo-linked,.fixed th.column-wpseo-links,.fixed th.column-wpseo-score,.fixed th.column-wpseo-score-readability{width:3em;padding:0}th.column-wpseo-linked a,th.column-wpseo-links a,th.column-wpseo-score-readability .yoast-tooltip,th.column-wpseo-score .yoast-tooltip{overflow:visible;display:inline-block;vertical-align:middle;padding:8px 0}th.column-wpseo-score-readability .yoast-tooltip,th.column-wpseo-score .yoast-tooltip{padding:8px 11px}.column-wpseo-links .yoast-tooltip-multiline:after{max-width:160px}.column-wpseo-linked .yoast-tooltip-multiline:after{max-width:170px}.yoast-column-header-has-tooltip{position:relative}.manage-column .yoast-column-header-has-tooltip:before{content:"";display:inline-block;width:20px;height:20px;padding:0;vertical-align:top;text-decoration:none!important;color:#444}.manage-column .yoast-linked-to:before{background:transparent url(../../images/link-out-icon.svg) no-repeat 100% 0;background-size:20px}.manage-column .yoast-linked-from:before{background:transparent url(../../images/link-in-icon.svg) no-repeat 100% 0;background-size:20px}.manage-column .yoast-column-seo-score:before{background:transparent url(../../images/Yoast_SEO_negative_icon.svg) no-repeat 100% 0;background-size:20px}.manage-column .yoast-column-readability:before{background:transparent url(../../images/readability-icon.svg) no-repeat 100% 0;background-size:20px}td.column-wpseo-linked,td.column-wpseo-links{word-wrap:normal}@media screen and (max-width:782px){.yoast-settings{padding-right:0}.yoast-settings h2{margin-right:0}.yoast-settings label{width:auto;padding:0;margin-left:0;margin-right:0}.yoast-settings__radio+label,.yoast .yoast-settings__radio{margin-bottom:1em}.yoast-settings__checkbox+label,.yoast-settings__radio+label{max-width:calc(100% - 35px);padding-top:8px}.yoast-settings__group--checkbox .yoast-settings__checkbox+label,.yoast-settings__group--radio .yoast-settings__radio+label{padding-top:4px}.yoast-settings input[type=text],.yoast-settings select,.yoast-settings textarea{display:block;width:100%;margin-top:0;margin-bottom:0;padding:7px 10px;max-width:none;line-height:1.5;box-sizing:border-box}.screen-reader-text.wpseo-score-text{position:static!important;-webkit-clip-path:none;clip-path:none;width:auto;height:auto;margin:0}}.react-tabs__tab-panel{max-width:900px;margin:0 auto}.react-tabs__tab-panel li{max-width:none!important}.contact-premium-support{text-align:center}.contact-premium-support__content{margin:0 auto 1.5em;font-size:.9375rem;line-height:1.4}.contact-premium-support__content:nth-child(2){max-width:610px}.contact-premium-support__content:nth-child(3){max-width:560px}.contact-premium-support .contact-premium-support__button{margin-bottom:48px}.wpseo-premium-description{margin-top:.5em}.wpseo-premium-advantages-list{list-style:disc;padding-right:1.5em}.yoast_help.yoast-help-button{position:relative;width:20px;height:20px;margin:0;padding:0;border:0;outline:none;color:#72777c;background:transparent;box-shadow:none;vertical-align:top;cursor:pointer}.yoast-section .yoast_help.yoast-help-button{float:left}.help-button-inline .yoast_help.yoast-help-button{margin-top:-4px}.yoast-section .yoast_help.yoast-help-button{margin-top:-44px}.wpseo-admin-page .yoast_help.yoast-help-button{margin-left:6px}.yoast_help .yoast-help-icon:before{position:absolute;top:0;right:0;padding:4px;content:"\f223"}.yoast_help.yoast-help-button:focus,.yoast_help.yoast-help-button:hover{color:#0073aa}.assessment-results__mark:focus,.yoast_help.yoast-help-button:focus .yoast-help-icon:before{border-radius:100%;box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}.yoast-help-panel{display:none;clear:both;max-width:30em!important;padding:0 0 1em;font-weight:400;white-space:normal}.wpseo-admin-page .yoast-help-panel{max-width:600px!important}.copy-home-meta-description .yoast-help-panel{max-width:400px!important}.yoast-modal_is-open{overflow:hidden}.yoast-alert .yoast-seo-icon{float:right;margin:20px 10px}.yoast-alert .yoast-seo-icon-wrap{margin:0 85px 0 0}.yoast-button-upsell{display:inline-flex;align-items:center;justify-content:center;box-sizing:border-box;min-height:48px;padding:8px 1em;font-size:16px;line-height:1.5;font-family:Arial,sans-serif;color:#000;border-radius:4px;box-shadow:inset 0 -4px 0 rgba(0,0,0,.2);filter:drop-shadow(0 2px 4px rgba(0,0,0,.2));text-decoration:none;background-color:#fec228}.yoast-button-upsell:active,.yoast-button-upsell:focus,.yoast-button-upsell:hover{color:#000;background-color:#f2ae01}.yoast-button-upsell:focus{box-shadow:inset 0 -4px 0 rgba(0,0,0,.2),0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}.yoast-button-upsell:active{transform:translateY(1px);box-shadow:none;filter:none}.yoast-button-upsell#wpseo-premium-button{color:#000}.yoast-button-upsell__caret{flex-shrink:0;width:8px;height:16px;margin:0 6px 0 -2px;background:transparent url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%20192%20512%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20role%3D%22img%22%20aria%2Dhidden%3D%22true%22%20focusable%3D%22false%22%3E%3Cpath%20fill%3D%22%23000%22%20d%3D%22M%200%20384%2E662%20V%20127%2E338%20c%200%20%2D17%2E818%2021%2E543%20%2D26%2E741%2034%2E142%20%2D14%2E142%20l%20128%2E662%20128%2E662%20c%207%2E81%207%2E81%207%2E81%2020%2E474%200%2028%2E284%20L%2034%2E142%20398%2E804%20C%2021%2E543%20411%2E404%200%20402%2E48%200%20384%2E662%20Z%22%2F%3E%3C%2Fsvg%3E") 50% no-repeat}.rtl .yoast-button-upsell__caret{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%20192%20512%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20role%3D%22img%22%20aria%2Dhidden%3D%22true%22%20focusable%3D%22false%22%3E%3Cpath%20fill%3D%22%23000%22%20d%3D%22M192%20127%2E338v257%2E324c0%2017%2E818%2D21%2E543%2026%2E741%2D34%2E142%2014%2E142L29%2E196%20270%2E142c%2D7%2E81%2D7%2E81%2D7%2E81%2D20%2E474%200%2D28%2E284l128%2E662%2D128%2E662c12%2E599%2D12%2E6%2034%2E142%2D3%2E676%2034%2E142%2014%2E142z%22%2F%3E%3C%2Fsvg%3E")}body.folded .wpseo-admin-submit-fixed{right:36px}@media screen and (max-width:782px){body.folded .wpseo-admin-submit-fixed{right:0}}.wpseo-admin-submit{z-index:5;display:flex;padding:16px 0;justify-content:flex-start;align-items:baseline;margin:0}.wpseo-admin-submit.wpseo-admin-submit-fixed{padding:16px;position:fixed;bottom:0;right:160px;left:281px;background-color:#fff;max-width:800px;box-shadow:0 1px 8px 1px rgba(0,0,0,.5);margin:0 16px}@media screen and (max-width:1024px){.wpseo-admin-submit.wpseo-admin-submit-fixed{left:0}}@media only screen and (max-width:960px){.wpseo-admin-submit.wpseo-admin-submit-fixed{right:36px}}@media screen and (max-width:782px){.wpseo-admin-submit.wpseo-admin-submit-fixed{right:0;margin:0}}.wpseo-admin-submit p.submit{padding:0;margin:0}.wpseo-admin-submit p.wpseo-message{margin:0 0 0 16px;padding:0;color:#008a00}.yoast-alert-box{display:flex;align-items:baseline;position:relative;padding:16px;border:1px solid rgba(0,0,0,.2);font-size:14px;font-weight:400;line-height:1.5;margin:16px 0}.yoast-alert-box span.icon{display:block;margin-left:8px}.yoast-alert-box a{color:#004973;text-decoration:underline}.yoast-alert-box__warning{color:#674e00;background:#fff3cd}.yoast-site-health__signature{display:flex;font-size:12px;line-height:20px;margin-top:2em;color:#707070}.yoast-site-health__inline-button.fetch-status,.yoast-site-health__signature-icon{margin-left:8px}
 
css/dist/admin-global-1404.css DELETED
@@ -1 +0,0 @@
1
- .wpseo-premium-indicator{width:1px;height:1px;display:inline-block}#adminmenu .wpseo-premium-indicator{margin:-2px 0 -3px 2px;color:inherit}.wpseo-premium-indicator svg{height:100%;width:auto;display:none}.yoast-tooltip{position:relative}button.yoast-tooltip{overflow:visible}.yoast-tooltip:after{display:none;position:absolute;z-index:1000000;padding:6px 8px 5px;border-radius:3px;opacity:0;color:#fff;background:rgba(0,0,0,.8);text-shadow:none;font:normal normal 11px/1.45454545 Helvetica,arial,nimbussansl,liberationsans,freesans,clean,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;text-align:center;white-space:pre;text-decoration:none;letter-spacing:normal;text-transform:none;word-wrap:break-word;content:attr(aria-label);pointer-events:none;-webkit-font-smoothing:subpixel-antialiased}.yoast-tooltip-alt:after{content:attr(data-label)}.yoast-tooltip:before{display:none;position:absolute;z-index:1000001;width:0;height:0;border:5px solid transparent;opacity:0;color:rgba(0,0,0,.8);content:"\00a0";pointer-events:none}@keyframes yoast-tooltip-appear{0%{opacity:0}to{opacity:1}}.yoast-tooltip:active:after,.yoast-tooltip:active:before,.yoast-tooltip:focus:after,.yoast-tooltip:focus:before,.yoast-tooltip:hover:after,.yoast-tooltip:hover:before{display:inline-block;text-decoration:none;animation-name:yoast-tooltip-appear;animation-duration:.1s;animation-timing-function:ease-in;animation-delay:.4s;animation-fill-mode:forwards}.yoast-tooltip-no-delay:active:after,.yoast-tooltip-no-delay:active:before,.yoast-tooltip-no-delay:focus:after,.yoast-tooltip-no-delay:focus:before,.yoast-tooltip-no-delay:hover:after,.yoast-tooltip-no-delay:hover:before{opacity:1;animation:none}.yoast-tooltip-multiline:active:after,.yoast-tooltip-multiline:focus:after,.yoast-tooltip-multiline:hover:after{display:table-cell}.yoast-tooltip-s:after,.yoast-tooltip-se:after,.yoast-tooltip-sw:after{top:100%;right:50%;margin-top:5px}.yoast-tooltip-s:before,.yoast-tooltip-se:before,.yoast-tooltip-sw:before{top:auto;right:50%;bottom:-5px;margin-right:-5px;border-bottom-color:rgba(0,0,0,.8)}.yoast-tooltip-se:after{right:auto;left:50%;margin-left:-15px}.yoast-tooltip-sw:after{margin-right:-15px}.yoast-tooltip-n:after,.yoast-tooltip-ne:after,.yoast-tooltip-nw:after{right:50%;bottom:100%;margin-bottom:5px}.yoast-tooltip-n:before,.yoast-tooltip-ne:before,.yoast-tooltip-nw:before{top:-5px;right:50%;bottom:auto;margin-right:-5px;border-top-color:rgba(0,0,0,.8)}.yoast-tooltip-ne:after{right:auto;left:50%;margin-left:-15px}.yoast-tooltip-nw:after{margin-right:-15px}.yoast-tooltip-n:after,.yoast-tooltip-s:after{transform:translateX(50%)}.yoast-tooltip-w:after{right:100%;bottom:50%;margin-right:5px;transform:translateY(50%)}.yoast-tooltip-w:before{top:50%;bottom:50%;left:-5px;margin-top:-5px;border-left-color:rgba(0,0,0,.8)}.yoast-tooltip-e:after{bottom:50%;left:100%;margin-left:5px;transform:translateY(50%)}.yoast-tooltip-e:before{top:50%;right:-5px;bottom:50%;margin-top:-5px;border-right-color:rgba(0,0,0,.8)}.yoast-tooltip-multiline:after{width:250px;width:-webkit-max-content;width:max-content;max-width:250px;border-collapse:initial;white-space:pre-line;word-wrap:normal;word-break:break-word}.yoast-tooltip-multiline.yoast-tooltip-n:after,.yoast-tooltip-multiline.yoast-tooltip-s:after{right:auto;left:50%;transform:translateX(-50%)}.yoast-tooltip-multiline.yoast-tooltip-e:after,.yoast-tooltip-multiline.yoast-tooltip-w:after{right:100%}@media screen and (min-width:0\0){.yoast-tooltip-multiline:after{width:250px}}.yoast-tooltip-sticky:after,.yoast-tooltip-sticky:before{display:inline-block}.yoast-tooltip-sticky.yoast-tooltip-multiline:after{display:table-cell}@media only screen and (-moz-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:2dppx),only screen and (min-resolution:192dpi){.yoast-tooltip-w:after{margin-right:4.5px}}.yoast-tooltip.yoast-tooltip-hidden:after,.yoast-tooltip.yoast-tooltip-hidden:before{display:none}.yoast-measure{max-width:600px}#TB_window .wpseo_content_wrapper p{font-size:14px;font-style:normal}#TB_window .wpseo_content_wrapper label{margin:0 10px 0 0;font-size:14px;font-weight:600}.wpseo-premium-popup-title{margin:1em 0!important;padding:0!important;font-size:1.3em!important;font-weight:600!important}.wpseo-premium-popup-icon{margin:10px}.edit-tags-php .column-description img{max-width:100%;height:auto}.select2-container .select2-search--dropdown .select2-search__field{margin:0;padding:0 8px;min-height:30px}.select2-results__option,.select2-search--inline,.select2-selection__choice{margin-bottom:0}.select2-container .select2-search--inline .select2-search__field{margin-top:6px!important;line-height:inherit;min-height:0}.wpseo-admin-page .select2-container .select2-selection--single,.wpseo-metabox .select2-container .select2-selection--single{height:auto}.wpseo-admin-page .select2-container .select2-selection--single .select2-selection__arrow,.wpseo-metabox .select2-container .select2-selection--single .select2-selection__arrow{height:100%}.yoast-label-strong{font-weight:600}.yoast-video-container-max-width{max-width:560px}.yoast-video-container{position:relative;padding-bottom:56.25%;height:0;overflow:hidden}.yoast-video-container iframe{position:absolute;top:0;left:0;width:100%;height:100%}.yoast-settings{margin-bottom:2em;padding-left:220px}.yoast-settings h2{margin-bottom:0;margin-left:-220px}.yoast-settings label{display:inline-block;width:200px;padding-top:4px;padding-right:10px;margin-right:6px;margin-left:-220px;font-size:14px;line-height:1.3;font-weight:600;color:#23282d;vertical-align:top}.yoast-settings fieldset,.yoast-settings input[type=text],.yoast-settings label,.yoast-settings select,.yoast-settings textarea,.yoast .yoast-settings__checkbox,.yoast .yoast-settings__radio{margin-top:2em;margin-bottom:.5em}.yoast-settings__textarea--medium{width:100%;max-width:600px}.yoast .yoast-settings__checkbox,.yoast .yoast-settings__radio{vertical-align:top;position:relative;top:1px}.yoast-settings__group--checkbox,.yoast-settings__group--radio{padding-top:1em}.yoast-settings__group--checkbox .yoast-settings__checkbox,.yoast-settings__group--radio .yoast-settings__radio{margin:0 4px 10px 0}.yoast-settings__checkbox+label,.yoast-settings__radio+label{width:auto;margin-left:0;margin-right:0;padding:0;max-width:calc(100% - 25px)}.yoast-settings__group--checkbox .yoast-settings__checkbox+label,.yoast-settings__group--radio .yoast-settings__radio+label{margin-top:0;margin-bottom:10px;font-weight:400}.yoast-settings legend{font-size:14px;font-weight:600;color:#23282d}.yoast-settings .description{margin-top:0;font-size:14px}td .wpseo-score-icon{display:inline-block;width:12px;height:12px;margin-left:5px;border-radius:50%;background:#888;line-height:16px;margin-top:3px}.fixed th.column-wpseo-linked,.fixed th.column-wpseo-links,.fixed th.column-wpseo-score,.fixed th.column-wpseo-score-readability{width:3em;padding:0}th.column-wpseo-linked a,th.column-wpseo-links a,th.column-wpseo-score-readability .yoast-tooltip,th.column-wpseo-score .yoast-tooltip{overflow:visible;display:inline-block;vertical-align:middle;padding:8px 0}th.column-wpseo-score-readability .yoast-tooltip,th.column-wpseo-score .yoast-tooltip{padding:8px 11px}.column-wpseo-links .yoast-tooltip-multiline:after{max-width:160px}.column-wpseo-linked .yoast-tooltip-multiline:after{max-width:170px}.yoast-column-header-has-tooltip{position:relative}.manage-column .yoast-column-header-has-tooltip:before{content:"";display:inline-block;width:20px;height:20px;padding:0;vertical-align:top;text-decoration:none!important;color:#444}.manage-column .yoast-linked-to:before{background:transparent url(../../images/link-out-icon.svg) no-repeat 0 0;background-size:20px}.manage-column .yoast-linked-from:before{background:transparent url(../../images/link-in-icon.svg) no-repeat 0 0;background-size:20px}.manage-column .yoast-column-seo-score:before{background:transparent url(../../images/Yoast_SEO_negative_icon.svg) no-repeat 0 0;background-size:20px}.manage-column .yoast-column-readability:before{background:transparent url(../../images/readability-icon.svg) no-repeat 0 0;background-size:20px}td.column-wpseo-linked,td.column-wpseo-links{word-wrap:normal}@media screen and (max-width:782px){.yoast-settings{padding-left:0}.yoast-settings h2{margin-left:0}.yoast-settings label{width:auto;padding:0;margin-right:0;margin-left:0}.yoast-settings__radio+label,.yoast .yoast-settings__radio{margin-bottom:1em}.yoast-settings__checkbox+label,.yoast-settings__radio+label{max-width:calc(100% - 35px);padding-top:8px}.yoast-settings__group--checkbox .yoast-settings__checkbox+label,.yoast-settings__group--radio .yoast-settings__radio+label{padding-top:4px}.yoast-settings input[type=text],.yoast-settings select,.yoast-settings textarea{display:block;width:100%;margin-top:0;margin-bottom:0;padding:7px 10px;max-width:none;line-height:1.5;box-sizing:border-box}.screen-reader-text.wpseo-score-text{position:static!important;-webkit-clip-path:none;clip-path:none;width:auto;height:auto;margin:0}}.react-tabs__tab-panel{max-width:900px;margin:0 auto}.react-tabs__tab-panel li{max-width:none!important}.contact-premium-support{text-align:center}.contact-premium-support__content{margin:0 auto 1.5em;font-size:.9375rem;line-height:1.4}.contact-premium-support__content:nth-child(2){max-width:610px}.contact-premium-support__content:nth-child(3){max-width:560px}.contact-premium-support .contact-premium-support__button{margin-bottom:48px}.wpseo-premium-description{margin-top:.5em}.wpseo-premium-advantages-list{list-style:disc;padding-left:1.5em}.yoast_help.yoast-help-button{position:relative;width:20px;height:20px;margin:0;padding:0;border:0;outline:none;color:#72777c;background:transparent;box-shadow:none;vertical-align:top;cursor:pointer}.yoast-section .yoast_help.yoast-help-button{float:right}.help-button-inline .yoast_help.yoast-help-button{margin-top:-4px}.yoast-section .yoast_help.yoast-help-button{margin-top:-44px}.wpseo-admin-page .yoast_help.yoast-help-button{margin-right:6px}.yoast_help .yoast-help-icon:before{position:absolute;top:0;left:0;padding:4px;content:"\f223"}.yoast_help.yoast-help-button:focus,.yoast_help.yoast-help-button:hover{color:#0073aa}.assessment-results__mark:focus,.yoast_help.yoast-help-button:focus .yoast-help-icon:before{border-radius:100%;box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}.yoast-help-panel{display:none;clear:both;max-width:30em!important;padding:0 0 1em;font-weight:400;white-space:normal}.wpseo-admin-page .yoast-help-panel{max-width:600px!important}.copy-home-meta-description .yoast-help-panel{max-width:400px!important}.yoast-modal_is-open{overflow:hidden}.yoast-alert .yoast-seo-icon{float:left;margin:20px 10px}.yoast-alert .yoast-seo-icon-wrap{margin:0 0 0 85px}.yoast-button-upsell{display:inline-flex;align-items:center;justify-content:center;box-sizing:border-box;min-height:48px;padding:8px 1em;font-size:16px;line-height:1.5;font-family:Arial,sans-serif;color:#000;border-radius:4px;box-shadow:inset 0 -4px 0 rgba(0,0,0,.2);filter:drop-shadow(0 2px 4px rgba(0,0,0,.2));text-decoration:none;background-color:#fec228}.yoast-button-upsell:active,.yoast-button-upsell:focus,.yoast-button-upsell:hover{color:#000;background-color:#f2ae01}.yoast-button-upsell:focus{box-shadow:inset 0 -4px 0 rgba(0,0,0,.2),0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}.yoast-button-upsell:active{transform:translateY(1px);box-shadow:none;filter:none}.yoast-button-upsell#wpseo-premium-button{color:#000}.yoast-button-upsell__caret{flex-shrink:0;width:8px;height:16px;margin:0 -2px 0 6px;background:transparent url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%20192%20512%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20role%3D%22img%22%20aria%2Dhidden%3D%22true%22%20focusable%3D%22false%22%3E%3Cpath%20fill%3D%22%23000%22%20d%3D%22M%200%20384%2E662%20V%20127%2E338%20c%200%20%2D17%2E818%2021%2E543%20%2D26%2E741%2034%2E142%20%2D14%2E142%20l%20128%2E662%20128%2E662%20c%207%2E81%207%2E81%207%2E81%2020%2E474%200%2028%2E284%20L%2034%2E142%20398%2E804%20C%2021%2E543%20411%2E404%200%20402%2E48%200%20384%2E662%20Z%22%2F%3E%3C%2Fsvg%3E") 50% no-repeat}.rtl .yoast-button-upsell__caret{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%20192%20512%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20role%3D%22img%22%20aria%2Dhidden%3D%22true%22%20focusable%3D%22false%22%3E%3Cpath%20fill%3D%22%23000%22%20d%3D%22M192%20127%2E338v257%2E324c0%2017%2E818%2D21%2E543%2026%2E741%2D34%2E142%2014%2E142L29%2E196%20270%2E142c%2D7%2E81%2D7%2E81%2D7%2E81%2D20%2E474%200%2D28%2E284l128%2E662%2D128%2E662c12%2E599%2D12%2E6%2034%2E142%2D3%2E676%2034%2E142%2014%2E142z%22%2F%3E%3C%2Fsvg%3E")}body.folded .wpseo-admin-submit-fixed{left:36px}@media screen and (max-width:782px){body.folded .wpseo-admin-submit-fixed{left:0}}.wpseo-admin-submit{z-index:5;display:flex;padding:16px 0;justify-content:flex-start;align-items:baseline;margin:0}.wpseo-admin-submit.wpseo-admin-submit-fixed{padding:16px;position:fixed;bottom:0;left:160px;right:281px;background-color:#fff;max-width:800px;box-shadow:0 1px 8px 1px rgba(0,0,0,.5);margin:0 16px}@media screen and (max-width:1024px){.wpseo-admin-submit.wpseo-admin-submit-fixed{right:0}}@media only screen and (max-width:960px){.wpseo-admin-submit.wpseo-admin-submit-fixed{left:36px}}@media screen and (max-width:782px){.wpseo-admin-submit.wpseo-admin-submit-fixed{left:0;margin:0}}.wpseo-admin-submit p.submit{padding:0;margin:0}.wpseo-admin-submit p.wpseo-message{margin:0 16px 0 0;padding:0;color:#008a00}.yoast-alert-box{display:flex;align-items:baseline;position:relative;padding:16px;border:1px solid rgba(0,0,0,.2);font-size:14px;font-weight:400;line-height:1.5;margin:16px 0}.yoast-alert-box span.icon{display:block;margin-right:8px}.yoast-alert-box a{color:#004973;text-decoration:underline}.yoast-alert-box__warning{color:#674e00;background:#fff3cd}.yoast-site-health__signature{display:flex;font-size:12px;line-height:20px;margin-top:2em;color:#707070}.yoast-site-health__inline-button.fetch-status,.yoast-site-health__signature-icon{margin-right:8px}
 
css/dist/admin-global-1410-rtl.css ADDED
@@ -0,0 +1 @@
 
1
+ :root{--svg-icon-info:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23A4286A' d='M1152 1376v-160q0-14-9-23t-23-9h-96V672q0-14-9-23t-23-9H672q-14 0-23 9t-9 23v160q0 14 9 23t23 9h96v320h-96q-14 0-23 9t-9 23v160q0 14 9 23t23 9h448q14 0 23-9t9-23zm-128-896V320q0-14-9-23t-23-9H800q-14 0-23 9t-9 23v160q0 14 9 23t23 9h192q14 0 23-9t9-23zm640 416q0 209-103 385.5T1281.5 1561 896 1664t-385.5-103T231 1281.5 128 896t103-385.5T510.5 231 896 128t385.5 103T1561 510.5 1664 896z'/%3E%3C/svg%3E");--svg-icon-check:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%2377B227' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/%3E%3C/svg%3E");--svg-icon-check-ok:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%2377B227' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/%3E%3C/svg%3E");--svg-icon-caret-right:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 192 512' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z'/%3E%3C/svg%3E");--svg-icon-caret-left:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 192 512' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z'/%3E%3C/svg%3E");--svg-icon-eye:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M1664 960q-152-236-381-353 61 104 61 225 0 185-131.5 316.5T896 1280t-316.5-131.5T448 832q0-121 61-225-229 117-381 353 133 205 333.5 326.5T896 1408t434.5-121.5T1664 960zM944 576q0-20-14-34t-34-14q-125 0-214.5 89.5T592 832q0 20 14 34t34 14 34-14 14-34q0-86 61-147t147-61q20 0 34-14t14-34zm848 384q0 34-20 69-140 230-376.5 368.5T896 1536t-499.5-139T20 1029Q0 994 0 960t20-69q140-229 376.5-368T896 384t499.5 139T1772 891q20 35 20 69z'/%3E%3C/svg%3E");--svg-icon-list:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M384 1408q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm0-512q0 80-56 136t-136 56-136-56T0 896t56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5H544q-13 0-22.5-9.5T512 1504v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zM384 384q0 80-56 136t-136 56-136-56T0 384t56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5H544q-13 0-22.5-9.5T512 992V800q0-13 9.5-22.5T544 768h1216q13 0 22.5 9.5t9.5 22.5zm0-512v192q0 13-9.5 22.5T1760 512H544q-13 0-22.5-9.5T512 480V288q0-13 9.5-22.5T544 256h1216q13 0 22.5 9.5t9.5 22.5z'/%3E%3C/svg%3E");--svg-icon-key:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M832 512q0-80-56-136t-136-56-136 56-56 136q0 42 19 83-41-19-83-19-80 0-136 56t-56 136 56 136 136 56 136-56 56-136q0-42-19-83 41 19 83 19 80 0 136-56t56-136zm851 704q0 17-49 66t-66 49q-9 0-28.5-16t-36.5-33-38.5-40-24.5-26l-96 96 220 220q28 28 28 68 0 42-39 81t-81 39q-40 0-68-28l-671-671q-176 131-365 131-163 0-265.5-102.5T0 784q0-160 95-313t248-248 313-95q163 0 265.5 102.5T1024 496q0 189-131 365l355 355 96-96q-3-3-26-24.5t-40-38.5-33-36.5-16-28.5q0-17 49-66t66-49q13 0 23 10 6 6 46 44.5t82 79.5 86.5 86 73 78 28.5 41z'/%3E%3C/svg%3E");--svg-icon-edit:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M491 1536l91-91-235-235-91 91v107h128v128h107zm523-928q0-22-22-22-10 0-17 7l-542 542q-7 7-7 17 0 22 22 22 10 0 17-7l542-542q7-7 7-17zm-54-192l416 416-832 832H128v-416zm683 96q0 53-37 90l-166 166-416-416 166-165q36-38 90-38 53 0 91 38l235 234q37 39 37 91z'/%3E%3C/svg%3E");--svg-icon-yoast:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23999' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-good:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%237ad03a' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-ok:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23ee7c1b' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-bad:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23dc3232' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-noindex:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%231e8cbe' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E")}.yoast-tooltip{position:relative}button.yoast-tooltip{overflow:visible}.yoast-tooltip:after{display:none;position:absolute;z-index:1000000;padding:6px 8px 5px;border-radius:3px;opacity:0;color:#fff;background:rgba(0,0,0,.8);text-shadow:none;font:normal normal 11px/1.45454545 Helvetica,arial,nimbussansl,liberationsans,freesans,clean,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;text-align:center;white-space:pre;text-decoration:none;letter-spacing:normal;text-transform:none;word-wrap:break-word;content:attr(aria-label);pointer-events:none;-webkit-font-smoothing:subpixel-antialiased}.yoast-tooltip-alt:after{content:attr(data-label)}.yoast-tooltip:before{display:none;position:absolute;z-index:1000001;width:0;height:0;border:5px solid transparent;opacity:0;color:rgba(0,0,0,.8);content:"\00a0";pointer-events:none}@keyframes yoast-tooltip-appear{0%{opacity:0}to{opacity:1}}.yoast-tooltip:active:after,.yoast-tooltip:active:before,.yoast-tooltip:focus:after,.yoast-tooltip:focus:before,.yoast-tooltip:hover:after,.yoast-tooltip:hover:before{display:inline-block;text-decoration:none;animation-name:yoast-tooltip-appear;animation-duration:.1s;animation-timing-function:ease-in;animation-delay:.4s;animation-fill-mode:forwards}.yoast-tooltip-no-delay:active:after,.yoast-tooltip-no-delay:active:before,.yoast-tooltip-no-delay:focus:after,.yoast-tooltip-no-delay:focus:before,.yoast-tooltip-no-delay:hover:after,.yoast-tooltip-no-delay:hover:before{opacity:1;animation:none}.yoast-tooltip-multiline:active:after,.yoast-tooltip-multiline:focus:after,.yoast-tooltip-multiline:hover:after{display:table-cell}.yoast-tooltip-s:after,.yoast-tooltip-se:after,.yoast-tooltip-sw:after{top:100%;left:50%;margin-top:5px}.yoast-tooltip-s:before,.yoast-tooltip-se:before,.yoast-tooltip-sw:before{top:auto;left:50%;bottom:-5px;margin-left:-5px;border-bottom-color:rgba(0,0,0,.8)}.yoast-tooltip-se:after{left:auto;right:50%;margin-right:-15px}.yoast-tooltip-sw:after{margin-left:-15px}.yoast-tooltip-n:after,.yoast-tooltip-ne:after,.yoast-tooltip-nw:after{left:50%;bottom:100%;margin-bottom:5px}.yoast-tooltip-n:before,.yoast-tooltip-ne:before,.yoast-tooltip-nw:before{top:-5px;left:50%;bottom:auto;margin-left:-5px;border-top-color:rgba(0,0,0,.8)}.yoast-tooltip-ne:after{left:auto;right:50%;margin-right:-15px}.yoast-tooltip-nw:after{margin-left:-15px}.yoast-tooltip-n:after,.yoast-tooltip-s:after{transform:translateX(-50%)}.yoast-tooltip-w:after{left:100%;bottom:50%;margin-left:5px;transform:translateY(50%)}.yoast-tooltip-w:before{top:50%;bottom:50%;right:-5px;margin-top:-5px;border-right-color:rgba(0,0,0,.8)}.yoast-tooltip-e:after{bottom:50%;right:100%;margin-right:5px;transform:translateY(50%)}.yoast-tooltip-e:before{top:50%;left:-5px;bottom:50%;margin-top:-5px;border-left-color:rgba(0,0,0,.8)}.yoast-tooltip-multiline:after{width:250px;width:max-content;max-width:250px;border-collapse:initial;white-space:pre-line;word-wrap:normal;word-break:break-word}.yoast-tooltip-multiline.yoast-tooltip-n:after,.yoast-tooltip-multiline.yoast-tooltip-s:after{left:auto;right:50%;transform:translateX(50%)}.yoast-tooltip-multiline.yoast-tooltip-e:after,.yoast-tooltip-multiline.yoast-tooltip-w:after{left:100%}@media screen and (min-width:0\0){.yoast-tooltip-multiline:after{width:250px}}.yoast-tooltip-sticky:after,.yoast-tooltip-sticky:before{display:inline-block}.yoast-tooltip-sticky.yoast-tooltip-multiline:after{display:table-cell}@media only screen and (-moz-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:2dppx),only screen and (min-resolution:192dpi){.yoast-tooltip-w:after{margin-left:4.5px}}.yoast-tooltip.yoast-tooltip-hidden:after,.yoast-tooltip.yoast-tooltip-hidden:before{display:none}.wpseo-premium-indicator{width:1px;height:1px;display:inline-block}#adminmenu .wpseo-premium-indicator{margin:-2px 2px -3px 0;color:inherit}.wpseo-premium-indicator svg{height:100%;width:auto;display:none}.yoast-measure{max-width:600px}#TB_window .wpseo_content_wrapper p{font-size:14px;font-style:normal}#TB_window .wpseo_content_wrapper label{margin:0 0 0 10px;font-size:14px;font-weight:600}.wpseo-premium-popup-title{margin:1em 0!important;padding:0!important;font-size:1.3em!important;font-weight:600!important}.wpseo-premium-popup-icon{margin:10px}.edit-tags-php .column-description img{max-width:100%;height:auto}.select2-container .select2-search--dropdown .select2-search__field{margin:0;padding:0 8px;min-height:30px}.select2-results__option,.select2-search--inline,.select2-selection__choice{margin-bottom:0}.select2-container .select2-search--inline .select2-search__field{margin-top:6px!important;line-height:inherit;min-height:0}.wpseo-admin-page .select2-container .select2-selection--single,.wpseo-metabox .select2-container .select2-selection--single{height:auto}.wpseo-admin-page .select2-container .select2-selection--single .select2-selection__arrow,.wpseo-metabox .select2-container .select2-selection--single .select2-selection__arrow{height:100%}.yoast-label-strong{font-weight:600}.yoast-video-container-max-width{max-width:560px}.yoast-video-container{position:relative;padding-bottom:56.25%;height:0;overflow:hidden}.yoast-video-container iframe{position:absolute;top:0;right:0;width:100%;height:100%}.yoast-settings{margin-bottom:2em;padding-right:220px}.yoast-settings h2{margin-bottom:0;margin-right:-220px}.yoast-settings label{display:inline-block;width:200px;padding-top:4px;padding-left:10px;margin-left:6px;margin-right:-220px;font-size:14px;line-height:1.3;font-weight:600;color:#23282d;vertical-align:top}.yoast-settings fieldset,.yoast-settings input[type=text],.yoast-settings label,.yoast-settings select,.yoast-settings textarea,.yoast .yoast-settings__checkbox,.yoast .yoast-settings__radio{margin-top:2em;margin-bottom:.5em}.yoast-settings__textarea--medium{width:100%;max-width:600px}.yoast .yoast-settings__checkbox,.yoast .yoast-settings__radio{vertical-align:top;position:relative;top:1px}.yoast-settings__group--checkbox,.yoast-settings__group--radio{padding-top:1em}.yoast-settings__group--checkbox .yoast-settings__checkbox,.yoast-settings__group--radio .yoast-settings__radio{margin:0 0 10px 4px}.yoast-settings__checkbox+label,.yoast-settings__radio+label{width:auto;margin-right:0;margin-left:0;padding:0;max-width:calc(100% - 25px)}.yoast-settings__group--checkbox .yoast-settings__checkbox+label,.yoast-settings__group--radio .yoast-settings__radio+label{margin-top:0;margin-bottom:10px;font-weight:400}.yoast-settings legend{font-size:14px;font-weight:600;color:#23282d}.yoast-settings .description{margin-top:0;font-size:14px}td .wpseo-score-icon{display:inline-block;width:12px;height:12px;margin-right:5px;border-radius:50%;background:#888;line-height:16px;margin-top:3px}.fixed th.column-wpseo-linked,.fixed th.column-wpseo-links,.fixed th.column-wpseo-score,.fixed th.column-wpseo-score-readability{width:3em;padding:0}th.column-wpseo-linked a,th.column-wpseo-links a,th.column-wpseo-score-readability .yoast-tooltip,th.column-wpseo-score .yoast-tooltip{overflow:visible;display:inline-block;vertical-align:middle;padding:8px 0}th.column-wpseo-score-readability .yoast-tooltip,th.column-wpseo-score .yoast-tooltip{padding:8px 11px}.column-wpseo-links .yoast-tooltip-multiline:after{max-width:160px}.column-wpseo-linked .yoast-tooltip-multiline:after{max-width:170px}.yoast-column-header-has-tooltip{position:relative}.manage-column .yoast-column-header-has-tooltip:before{content:"";display:inline-block;width:20px;height:20px;padding:0;vertical-align:top;text-decoration:none!important;color:#444}.manage-column .yoast-linked-to:before{background:transparent url(../../images/link-out-icon.svg) no-repeat 100% 0;background-size:20px}.manage-column .yoast-linked-from:before{background:transparent url(../../images/link-in-icon.svg) no-repeat 100% 0;background-size:20px}.manage-column .yoast-column-seo-score:before{background:transparent url(../../images/Yoast_SEO_negative_icon.svg) no-repeat 100% 0;background-size:20px}.manage-column .yoast-column-readability:before{background:transparent url(../../images/readability-icon.svg) no-repeat 100% 0;background-size:20px}td.column-wpseo-linked,td.column-wpseo-links{word-wrap:normal}@media screen and (max-width:782px){.yoast-settings{padding-right:0}.yoast-settings h2{margin-right:0}.yoast-settings label{width:auto;padding:0;margin-left:0;margin-right:0}.yoast-settings__radio+label,.yoast .yoast-settings__radio{margin-bottom:1em}.yoast-settings__checkbox+label,.yoast-settings__radio+label{max-width:calc(100% - 35px);padding-top:8px}.yoast-settings__group--checkbox .yoast-settings__checkbox+label,.yoast-settings__group--radio .yoast-settings__radio+label{padding-top:4px}.yoast-settings input[type=text],.yoast-settings select,.yoast-settings textarea{display:block;width:100%;margin-top:0;margin-bottom:0;padding:7px 10px;max-width:none;line-height:1.5;box-sizing:border-box}.screen-reader-text.wpseo-score-text{position:static!important;-webkit-clip-path:none;clip-path:none;width:auto;height:auto;margin:0}}.react-tabs__tab-panel{max-width:900px;margin:0 auto}.react-tabs__tab-panel li{max-width:none!important}.contact-premium-support{text-align:center}.contact-premium-support__content{margin:0 auto 1.5em;font-size:.9375rem;line-height:1.4}.contact-premium-support__content:nth-child(2){max-width:610px}.contact-premium-support__content:nth-child(3){max-width:560px}.contact-premium-support .contact-premium-support__button{margin-bottom:48px}.wpseo-premium-description{margin-top:.5em}.wpseo-premium-advantages-list{list-style:disc;padding-right:1.5em}.yoast_help.yoast-help-button{position:relative;width:20px;height:20px;margin:0;padding:0;border:0;outline:none;color:#72777c;background:transparent;box-shadow:none;vertical-align:top;cursor:pointer}.yoast-section .yoast_help.yoast-help-button{float:left}.help-button-inline .yoast_help.yoast-help-button{margin-top:-4px}.yoast-section .yoast_help.yoast-help-button{margin-top:-44px}.wpseo-admin-page .yoast_help.yoast-help-button{margin-left:6px}.yoast_help .yoast-help-icon:before{position:absolute;top:0;right:0;padding:4px;content:"\f223"}.yoast_help.yoast-help-button:focus,.yoast_help.yoast-help-button:hover{color:#0073aa}.assessment-results__mark:focus,.yoast_help.yoast-help-button:focus .yoast-help-icon:before{border-radius:100%;box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}.yoast-help-panel{display:none;clear:both;max-width:30em!important;padding:0 0 1em;font-weight:400;white-space:normal}.wpseo-admin-page .yoast-help-panel{max-width:600px!important}.copy-home-meta-description .yoast-help-panel{max-width:400px!important}.yoast-modal_is-open{overflow:hidden}.yoast-notification .yoast-seo-icon{float:right;margin:20px 10px}.yoast-notification .yoast-seo-icon-wrap{margin:0 85px 0 0}.yoast-button-upsell{display:inline-flex;align-items:center;justify-content:center;box-sizing:border-box;min-height:48px;padding:8px 1em;font-size:16px;line-height:1.5;font-family:Arial,sans-serif;color:#000;border-radius:4px;box-shadow:inset 0 -4px 0 rgba(0,0,0,.2);filter:drop-shadow(0 2px 4px rgba(0,0,0,.2));text-decoration:none;background-color:#fec228}.yoast-button-upsell:active,.yoast-button-upsell:focus,.yoast-button-upsell:hover{color:#000;background-color:#f2ae01}.yoast-button-upsell:focus{box-shadow:inset 0 -4px 0 rgba(0,0,0,.2),0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}.yoast-button-upsell:active{transform:translateY(1px);box-shadow:none;filter:none}.yoast-button-upsell#wpseo-premium-button{color:#000}.yoast-button-upsell__caret{flex-shrink:0;width:8px;height:16px;margin:0 6px 0 -2px;background:transparent var(--svg-icon-caret-right) 50% no-repeat}.rtl .yoast-button-upsell__caret{background-image:var(--svg-icon-caret-left)}body.folded .wpseo-admin-submit-fixed{right:36px}@media screen and (max-width:782px){body.folded .wpseo-admin-submit-fixed{right:0}}.wpseo-admin-submit{z-index:5;display:flex;padding:16px 0;justify-content:flex-start;align-items:baseline;margin:0}.wpseo-admin-submit.wpseo-admin-submit-fixed{padding:16px;position:fixed;bottom:0;right:160px;left:281px;background-color:#fff;max-width:800px;box-shadow:0 1px 8px 1px rgba(0,0,0,.5);margin:0 16px}@media screen and (max-width:1024px){.wpseo-admin-submit.wpseo-admin-submit-fixed{left:0}}@media only screen and (max-width:960px){.wpseo-admin-submit.wpseo-admin-submit-fixed{right:36px}}@media screen and (max-width:782px){.wpseo-admin-submit.wpseo-admin-submit-fixed{right:0;margin:0}}.wpseo-admin-submit p.submit{padding:0;margin:0}.wpseo-admin-submit p.wpseo-message{margin:0 0 0 16px;padding:0;color:#008a00}.yoast-site-health__signature{display:flex;font-size:12px;line-height:20px;margin-top:2em;color:#707070}.yoast-site-health__inline-button.fetch-status,.yoast-site-health__signature-icon{margin-left:8px}
css/dist/admin-global-1410.css ADDED
@@ -0,0 +1 @@
 
1
+ :root{--svg-icon-info:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23A4286A' d='M1152 1376v-160q0-14-9-23t-23-9h-96V672q0-14-9-23t-23-9H672q-14 0-23 9t-9 23v160q0 14 9 23t23 9h96v320h-96q-14 0-23 9t-9 23v160q0 14 9 23t23 9h448q14 0 23-9t9-23zm-128-896V320q0-14-9-23t-23-9H800q-14 0-23 9t-9 23v160q0 14 9 23t23 9h192q14 0 23-9t9-23zm640 416q0 209-103 385.5T1281.5 1561 896 1664t-385.5-103T231 1281.5 128 896t103-385.5T510.5 231 896 128t385.5 103T1561 510.5 1664 896z'/%3E%3C/svg%3E");--svg-icon-check:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%2377B227' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/%3E%3C/svg%3E");--svg-icon-check-ok:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%2377B227' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/%3E%3C/svg%3E");--svg-icon-caret-right:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 192 512' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z'/%3E%3C/svg%3E");--svg-icon-caret-left:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 192 512' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z'/%3E%3C/svg%3E");--svg-icon-eye:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M1664 960q-152-236-381-353 61 104 61 225 0 185-131.5 316.5T896 1280t-316.5-131.5T448 832q0-121 61-225-229 117-381 353 133 205 333.5 326.5T896 1408t434.5-121.5T1664 960zM944 576q0-20-14-34t-34-14q-125 0-214.5 89.5T592 832q0 20 14 34t34 14 34-14 14-34q0-86 61-147t147-61q20 0 34-14t14-34zm848 384q0 34-20 69-140 230-376.5 368.5T896 1536t-499.5-139T20 1029Q0 994 0 960t20-69q140-229 376.5-368T896 384t499.5 139T1772 891q20 35 20 69z'/%3E%3C/svg%3E");--svg-icon-list:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M384 1408q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm0-512q0 80-56 136t-136 56-136-56T0 896t56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5H544q-13 0-22.5-9.5T512 1504v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zM384 384q0 80-56 136t-136 56-136-56T0 384t56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5H544q-13 0-22.5-9.5T512 992V800q0-13 9.5-22.5T544 768h1216q13 0 22.5 9.5t9.5 22.5zm0-512v192q0 13-9.5 22.5T1760 512H544q-13 0-22.5-9.5T512 480V288q0-13 9.5-22.5T544 256h1216q13 0 22.5 9.5t9.5 22.5z'/%3E%3C/svg%3E");--svg-icon-key:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M832 512q0-80-56-136t-136-56-136 56-56 136q0 42 19 83-41-19-83-19-80 0-136 56t-56 136 56 136 136 56 136-56 56-136q0-42-19-83 41 19 83 19 80 0 136-56t56-136zm851 704q0 17-49 66t-66 49q-9 0-28.5-16t-36.5-33-38.5-40-24.5-26l-96 96 220 220q28 28 28 68 0 42-39 81t-81 39q-40 0-68-28l-671-671q-176 131-365 131-163 0-265.5-102.5T0 784q0-160 95-313t248-248 313-95q163 0 265.5 102.5T1024 496q0 189-131 365l355 355 96-96q-3-3-26-24.5t-40-38.5-33-36.5-16-28.5q0-17 49-66t66-49q13 0 23 10 6 6 46 44.5t82 79.5 86.5 86 73 78 28.5 41z'/%3E%3C/svg%3E");--svg-icon-edit:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M491 1536l91-91-235-235-91 91v107h128v128h107zm523-928q0-22-22-22-10 0-17 7l-542 542q-7 7-7 17 0 22 22 22 10 0 17-7l542-542q7-7 7-17zm-54-192l416 416-832 832H128v-416zm683 96q0 53-37 90l-166 166-416-416 166-165q36-38 90-38 53 0 91 38l235 234q37 39 37 91z'/%3E%3C/svg%3E");--svg-icon-yoast:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23999' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-good:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%237ad03a' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-ok:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23ee7c1b' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-bad:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23dc3232' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-noindex:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%231e8cbe' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E")}.yoast-tooltip{position:relative}button.yoast-tooltip{overflow:visible}.yoast-tooltip:after{display:none;position:absolute;z-index:1000000;padding:6px 8px 5px;border-radius:3px;opacity:0;color:#fff;background:rgba(0,0,0,.8);text-shadow:none;font:normal normal 11px/1.45454545 Helvetica,arial,nimbussansl,liberationsans,freesans,clean,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;text-align:center;white-space:pre;text-decoration:none;letter-spacing:normal;text-transform:none;word-wrap:break-word;content:attr(aria-label);pointer-events:none;-webkit-font-smoothing:subpixel-antialiased}.yoast-tooltip-alt:after{content:attr(data-label)}.yoast-tooltip:before{display:none;position:absolute;z-index:1000001;width:0;height:0;border:5px solid transparent;opacity:0;color:rgba(0,0,0,.8);content:"\00a0";pointer-events:none}@keyframes yoast-tooltip-appear{0%{opacity:0}to{opacity:1}}.yoast-tooltip:active:after,.yoast-tooltip:active:before,.yoast-tooltip:focus:after,.yoast-tooltip:focus:before,.yoast-tooltip:hover:after,.yoast-tooltip:hover:before{display:inline-block;text-decoration:none;animation-name:yoast-tooltip-appear;animation-duration:.1s;animation-timing-function:ease-in;animation-delay:.4s;animation-fill-mode:forwards}.yoast-tooltip-no-delay:active:after,.yoast-tooltip-no-delay:active:before,.yoast-tooltip-no-delay:focus:after,.yoast-tooltip-no-delay:focus:before,.yoast-tooltip-no-delay:hover:after,.yoast-tooltip-no-delay:hover:before{opacity:1;animation:none}.yoast-tooltip-multiline:active:after,.yoast-tooltip-multiline:focus:after,.yoast-tooltip-multiline:hover:after{display:table-cell}.yoast-tooltip-s:after,.yoast-tooltip-se:after,.yoast-tooltip-sw:after{top:100%;right:50%;margin-top:5px}.yoast-tooltip-s:before,.yoast-tooltip-se:before,.yoast-tooltip-sw:before{top:auto;right:50%;bottom:-5px;margin-right:-5px;border-bottom-color:rgba(0,0,0,.8)}.yoast-tooltip-se:after{right:auto;left:50%;margin-left:-15px}.yoast-tooltip-sw:after{margin-right:-15px}.yoast-tooltip-n:after,.yoast-tooltip-ne:after,.yoast-tooltip-nw:after{right:50%;bottom:100%;margin-bottom:5px}.yoast-tooltip-n:before,.yoast-tooltip-ne:before,.yoast-tooltip-nw:before{top:-5px;right:50%;bottom:auto;margin-right:-5px;border-top-color:rgba(0,0,0,.8)}.yoast-tooltip-ne:after{right:auto;left:50%;margin-left:-15px}.yoast-tooltip-nw:after{margin-right:-15px}.yoast-tooltip-n:after,.yoast-tooltip-s:after{transform:translateX(50%)}.yoast-tooltip-w:after{right:100%;bottom:50%;margin-right:5px;transform:translateY(50%)}.yoast-tooltip-w:before{top:50%;bottom:50%;left:-5px;margin-top:-5px;border-left-color:rgba(0,0,0,.8)}.yoast-tooltip-e:after{bottom:50%;left:100%;margin-left:5px;transform:translateY(50%)}.yoast-tooltip-e:before{top:50%;right:-5px;bottom:50%;margin-top:-5px;border-right-color:rgba(0,0,0,.8)}.yoast-tooltip-multiline:after{width:250px;width:max-content;max-width:250px;border-collapse:initial;white-space:pre-line;word-wrap:normal;word-break:break-word}.yoast-tooltip-multiline.yoast-tooltip-n:after,.yoast-tooltip-multiline.yoast-tooltip-s:after{right:auto;left:50%;transform:translateX(-50%)}.yoast-tooltip-multiline.yoast-tooltip-e:after,.yoast-tooltip-multiline.yoast-tooltip-w:after{right:100%}@media screen and (min-width:0\0){.yoast-tooltip-multiline:after{width:250px}}.yoast-tooltip-sticky:after,.yoast-tooltip-sticky:before{display:inline-block}.yoast-tooltip-sticky.yoast-tooltip-multiline:after{display:table-cell}@media only screen and (-moz-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:2dppx),only screen and (min-resolution:192dpi){.yoast-tooltip-w:after{margin-right:4.5px}}.yoast-tooltip.yoast-tooltip-hidden:after,.yoast-tooltip.yoast-tooltip-hidden:before{display:none}.wpseo-premium-indicator{width:1px;height:1px;display:inline-block}#adminmenu .wpseo-premium-indicator{margin:-2px 0 -3px 2px;color:inherit}.wpseo-premium-indicator svg{height:100%;width:auto;display:none}.yoast-measure{max-width:600px}#TB_window .wpseo_content_wrapper p{font-size:14px;font-style:normal}#TB_window .wpseo_content_wrapper label{margin:0 10px 0 0;font-size:14px;font-weight:600}.wpseo-premium-popup-title{margin:1em 0!important;padding:0!important;font-size:1.3em!important;font-weight:600!important}.wpseo-premium-popup-icon{margin:10px}.edit-tags-php .column-description img{max-width:100%;height:auto}.select2-container .select2-search--dropdown .select2-search__field{margin:0;padding:0 8px;min-height:30px}.select2-results__option,.select2-search--inline,.select2-selection__choice{margin-bottom:0}.select2-container .select2-search--inline .select2-search__field{margin-top:6px!important;line-height:inherit;min-height:0}.wpseo-admin-page .select2-container .select2-selection--single,.wpseo-metabox .select2-container .select2-selection--single{height:auto}.wpseo-admin-page .select2-container .select2-selection--single .select2-selection__arrow,.wpseo-metabox .select2-container .select2-selection--single .select2-selection__arrow{height:100%}.yoast-label-strong{font-weight:600}.yoast-video-container-max-width{max-width:560px}.yoast-video-container{position:relative;padding-bottom:56.25%;height:0;overflow:hidden}.yoast-video-container iframe{position:absolute;top:0;left:0;width:100%;height:100%}.yoast-settings{margin-bottom:2em;padding-left:220px}.yoast-settings h2{margin-bottom:0;margin-left:-220px}.yoast-settings label{display:inline-block;width:200px;padding-top:4px;padding-right:10px;margin-right:6px;margin-left:-220px;font-size:14px;line-height:1.3;font-weight:600;color:#23282d;vertical-align:top}.yoast-settings fieldset,.yoast-settings input[type=text],.yoast-settings label,.yoast-settings select,.yoast-settings textarea,.yoast .yoast-settings__checkbox,.yoast .yoast-settings__radio{margin-top:2em;margin-bottom:.5em}.yoast-settings__textarea--medium{width:100%;max-width:600px}.yoast .yoast-settings__checkbox,.yoast .yoast-settings__radio{vertical-align:top;position:relative;top:1px}.yoast-settings__group--checkbox,.yoast-settings__group--radio{padding-top:1em}.yoast-settings__group--checkbox .yoast-settings__checkbox,.yoast-settings__group--radio .yoast-settings__radio{margin:0 4px 10px 0}.yoast-settings__checkbox+label,.yoast-settings__radio+label{width:auto;margin-left:0;margin-right:0;padding:0;max-width:calc(100% - 25px)}.yoast-settings__group--checkbox .yoast-settings__checkbox+label,.yoast-settings__group--radio .yoast-settings__radio+label{margin-top:0;margin-bottom:10px;font-weight:400}.yoast-settings legend{font-size:14px;font-weight:600;color:#23282d}.yoast-settings .description{margin-top:0;font-size:14px}td .wpseo-score-icon{display:inline-block;width:12px;height:12px;margin-left:5px;border-radius:50%;background:#888;line-height:16px;margin-top:3px}.fixed th.column-wpseo-linked,.fixed th.column-wpseo-links,.fixed th.column-wpseo-score,.fixed th.column-wpseo-score-readability{width:3em;padding:0}th.column-wpseo-linked a,th.column-wpseo-links a,th.column-wpseo-score-readability .yoast-tooltip,th.column-wpseo-score .yoast-tooltip{overflow:visible;display:inline-block;vertical-align:middle;padding:8px 0}th.column-wpseo-score-readability .yoast-tooltip,th.column-wpseo-score .yoast-tooltip{padding:8px 11px}.column-wpseo-links .yoast-tooltip-multiline:after{max-width:160px}.column-wpseo-linked .yoast-tooltip-multiline:after{max-width:170px}.yoast-column-header-has-tooltip{position:relative}.manage-column .yoast-column-header-has-tooltip:before{content:"";display:inline-block;width:20px;height:20px;padding:0;vertical-align:top;text-decoration:none!important;color:#444}.manage-column .yoast-linked-to:before{background:transparent url(../../images/link-out-icon.svg) no-repeat 0 0;background-size:20px}.manage-column .yoast-linked-from:before{background:transparent url(../../images/link-in-icon.svg) no-repeat 0 0;background-size:20px}.manage-column .yoast-column-seo-score:before{background:transparent url(../../images/Yoast_SEO_negative_icon.svg) no-repeat 0 0;background-size:20px}.manage-column .yoast-column-readability:before{background:transparent url(../../images/readability-icon.svg) no-repeat 0 0;background-size:20px}td.column-wpseo-linked,td.column-wpseo-links{word-wrap:normal}@media screen and (max-width:782px){.yoast-settings{padding-left:0}.yoast-settings h2{margin-left:0}.yoast-settings label{width:auto;padding:0;margin-right:0;margin-left:0}.yoast-settings__radio+label,.yoast .yoast-settings__radio{margin-bottom:1em}.yoast-settings__checkbox+label,.yoast-settings__radio+label{max-width:calc(100% - 35px);padding-top:8px}.yoast-settings__group--checkbox .yoast-settings__checkbox+label,.yoast-settings__group--radio .yoast-settings__radio+label{padding-top:4px}.yoast-settings input[type=text],.yoast-settings select,.yoast-settings textarea{display:block;width:100%;margin-top:0;margin-bottom:0;padding:7px 10px;max-width:none;line-height:1.5;box-sizing:border-box}.screen-reader-text.wpseo-score-text{position:static!important;-webkit-clip-path:none;clip-path:none;width:auto;height:auto;margin:0}}.react-tabs__tab-panel{max-width:900px;margin:0 auto}.react-tabs__tab-panel li{max-width:none!important}.contact-premium-support{text-align:center}.contact-premium-support__content{margin:0 auto 1.5em;font-size:.9375rem;line-height:1.4}.contact-premium-support__content:nth-child(2){max-width:610px}.contact-premium-support__content:nth-child(3){max-width:560px}.contact-premium-support .contact-premium-support__button{margin-bottom:48px}.wpseo-premium-description{margin-top:.5em}.wpseo-premium-advantages-list{list-style:disc;padding-left:1.5em}.yoast_help.yoast-help-button{position:relative;width:20px;height:20px;margin:0;padding:0;border:0;outline:none;color:#72777c;background:transparent;box-shadow:none;vertical-align:top;cursor:pointer}.yoast-section .yoast_help.yoast-help-button{float:right}.help-button-inline .yoast_help.yoast-help-button{margin-top:-4px}.yoast-section .yoast_help.yoast-help-button{margin-top:-44px}.wpseo-admin-page .yoast_help.yoast-help-button{margin-right:6px}.yoast_help .yoast-help-icon:before{position:absolute;top:0;left:0;padding:4px;content:"\f223"}.yoast_help.yoast-help-button:focus,.yoast_help.yoast-help-button:hover{color:#0073aa}.assessment-results__mark:focus,.yoast_help.yoast-help-button:focus .yoast-help-icon:before{border-radius:100%;box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}.yoast-help-panel{display:none;clear:both;max-width:30em!important;padding:0 0 1em;font-weight:400;white-space:normal}.wpseo-admin-page .yoast-help-panel{max-width:600px!important}.copy-home-meta-description .yoast-help-panel{max-width:400px!important}.yoast-modal_is-open{overflow:hidden}.yoast-notification .yoast-seo-icon{float:left;margin:20px 10px}.yoast-notification .yoast-seo-icon-wrap{margin:0 0 0 85px}.yoast-button-upsell{display:inline-flex;align-items:center;justify-content:center;box-sizing:border-box;min-height:48px;padding:8px 1em;font-size:16px;line-height:1.5;font-family:Arial,sans-serif;color:#000;border-radius:4px;box-shadow:inset 0 -4px 0 rgba(0,0,0,.2);filter:drop-shadow(0 2px 4px rgba(0,0,0,.2));text-decoration:none;background-color:#fec228}.yoast-button-upsell:active,.yoast-button-upsell:focus,.yoast-button-upsell:hover{color:#000;background-color:#f2ae01}.yoast-button-upsell:focus{box-shadow:inset 0 -4px 0 rgba(0,0,0,.2),0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}.yoast-button-upsell:active{transform:translateY(1px);box-shadow:none;filter:none}.yoast-button-upsell#wpseo-premium-button{color:#000}.yoast-button-upsell__caret{flex-shrink:0;width:8px;height:16px;margin:0 -2px 0 6px;background:transparent var(--svg-icon-caret-right) 50% no-repeat}.rtl .yoast-button-upsell__caret{background-image:var(--svg-icon-caret-left)}body.folded .wpseo-admin-submit-fixed{left:36px}@media screen and (max-width:782px){body.folded .wpseo-admin-submit-fixed{left:0}}.wpseo-admin-submit{z-index:5;display:flex;padding:16px 0;justify-content:flex-start;align-items:baseline;margin:0}.wpseo-admin-submit.wpseo-admin-submit-fixed{padding:16px;position:fixed;bottom:0;left:160px;right:281px;background-color:#fff;max-width:800px;box-shadow:0 1px 8px 1px rgba(0,0,0,.5);margin:0 16px}@media screen and (max-width:1024px){.wpseo-admin-submit.wpseo-admin-submit-fixed{right:0}}@media only screen and (max-width:960px){.wpseo-admin-submit.wpseo-admin-submit-fixed{left:36px}}@media screen and (max-width:782px){.wpseo-admin-submit.wpseo-admin-submit-fixed{left:0;margin:0}}.wpseo-admin-submit p.submit{padding:0;margin:0}.wpseo-admin-submit p.wpseo-message{margin:0 16px 0 0;padding:0;color:#008a00}.yoast-site-health__signature{display:flex;font-size:12px;line-height:20px;margin-top:2em;color:#707070}.yoast-site-health__inline-button.fetch-status,.yoast-site-health__signature-icon{margin-right:8px}
css/dist/{adminbar-1404-rtl.css → adminbar-1410-rtl.css} RENAMED
File without changes
css/dist/{adminbar-1404.css → adminbar-1410.css} RENAMED
File without changes
css/dist/alerts-1404-rtl.css DELETED
@@ -1 +0,0 @@
1
- .screen-reader-text{position:absolute!important;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);width:1px;height:1px;border:0;padding:0;overflow:hidden;word-wrap:normal!important}.yoast-alert{padding:0 12px;border-right:4px solid #fff;background:#fff;box-shadow:0 1px 2px rgba(0,0,0,.2)}.yoast-container{position:relative;max-width:1280px;margin:20px 0 1px;padding:20px 20px 0;border:1px solid #e5e5e5;background-color:#fdfdfd;box-shadow:0 1px 1px rgba(0,0,0,.04)}.yoast-alerts>h2:first-child{margin:0;padding:9px 0 4px;font-size:23px;font-weight:400;line-height:29px}.yoast-alerts .yoast-container h3{margin:-20px -20px 0;padding:1em;border-bottom:1px solid #ccc;background-color:#fdfdfd;font-size:1.4em}.yoast-container .container{max-width:980px}.yoast-container .yoast-alert-holder{display:flex;position:relative}.dismiss .dashicons,.restore .dashicons{font-size:20px;width:20px;height:20px}.yoast-bottom-spacing{margin-bottom:20px}.yoast-alerts .button.dismiss,.yoast-alerts .button.restore{position:absolute;left:0;width:52px;height:100%;line-height:inherit;padding:0;outline:none;cursor:pointer;background:transparent;border:none;box-shadow:none;border-radius:0}.yoast-alerts .button.dismiss:focus,.yoast-alerts .button.dismiss:hover,.yoast-alerts .button.restore:focus,.yoast-alerts .button.restore:hover{background:transparent}.yoast-alerts .button.dismiss:focus:before,.yoast-alerts .button.restore:focus:before{content:"";display:block;width:32px;height:32px;border-radius:50%;position:absolute;top:50%;right:50%;transform:translate(50%,-50%);box-shadow:0 0 0 1px #007cba;outline:2px solid transparent}.yoast-alerts .button.dismiss.yoast-container__configuration-wizard--dismiss:before{top:0;transform:translate(50%,6px)}.yoast-container .separator{margin-top:1em;margin-bottom:1em;border-top:1px solid #ddd}.yoast-container .dashicons-yes{color:#77b227}.yoast-container-disabled{display:table-cell;position:absolute;top:0;left:0;bottom:0;right:0;border-radius:4px;background-color:hsla(0,0%,91%,.7)}.yoast-no-issues{padding:1em 16px 1em 1em;color:#666}.yoast-muted-title{overflow:hidden;font-weight:600;font-style:italic}.yoast-muted-title:after{content:"";display:inline-block;height:.5em;vertical-align:bottom;width:100%;margin-left:-100%;margin-right:10px;border-top:1px solid #ddd}.yoast-alerts-active .yoast-alert,.yoast-alerts-dismissed .yoast-alert{padding-left:52px;flex:1}.yoast-alerts-active .yoast-alert-holder{margin-bottom:20px}.yoast-alerts-dismissed.paper.tab-block{margin:20px 0}.yoast-alerts-dismissed.paper.tab-block .paper-container.toggleable-container{padding:0}.yoast-alerts-dismissed.paper.tab-block .paper-container.toggleable-container .yoast-alert-holder:nth-child(odd){background-color:#f7f7f7}.yoast-alerts-dismissed.paper.tab-block .paper-container.toggleable-container .yoast-alert-holder:nth-child(odd) .yoast-alert{background-color:initial}.yoast-alerts-dismissed .yoast-svg-icon-eye{background:transparent url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20role%3D%22img%22%20aria%2Dhidden%3D%22true%22%20focusable%3D%22false%22%3E%3Cpath%20fill%3D%22%23555%22%20d%3D%22M1664%20960q%2D152%2D236%2D381%2D353%2061%20104%2061%20225%200%20185%2D131%2E5%20316%2E5t%2D316%2E5%20131%2E5%2D316%2E5%2D131%2E5%2D131%2E5%2D316%2E5q0%2D121%2061%2D225%2D229%20117%2D381%20353%20133%20205%20333%2E5%20326%2E5t434%2E5%20121%2E5%20434%2E5%2D121%2E5%20333%2E5%2D326%2E5zm%2D720%2D384q0%2D20%2D14%2D34t%2D34%2D14q%2D125%200%2D214%2E5%2089%2E5t%2D89%2E5%20214%2E5q0%2020%2014%2034t34%2014%2034%2D14%2014%2D34q0%2D86%2061%2D147t147%2D61q20%200%2034%2D14t14%2D34zm848%20384q0%2034%2D20%2069%2D140%20230%2D376%2E5%20368%2E5t%2D499%2E5%20138%2E5%2D499%2E5%2D139%2D376%2E5%2D368q%2D20%2D35%2D20%2D69t20%2D69q140%2D229%20376%2E5%2D368t499%2E5%2D139%20499%2E5%20139%20376%2E5%20368q20%2035%2020%2069z%22%20%2F%3E%3C%2Fsvg%3E") no-repeat 100% 0;background-size:20px}#yoast-errors-header .dashicons{color:#dc3232}#yoast-errors-active .yoast-alert{border-right-color:#dc3232}#yoast-errors-dismissed .yoast-alert{border-right-color:#d93f69}#yoast-warnings-header .dashicons{color:#5d237a}#yoast-warnings-active .yoast-alert{border-right-color:#5d237a}#yoast-warnings-dismissed .yoast-alert{border-right-color:#0075b3}.yoast-alerts .yoast-container__configuration-wizard{display:flex;align-items:center;box-shadow:0 1px 2px rgba(0,0,0,.2);background-color:#fff;min-height:0;padding-bottom:20px;margin-bottom:15px}@media screen and (max-width:768px){.yoast-alerts .yoast-container__configuration-wizard img{display:none}}.yoast-alerts .yoast-container__configuration-wizard--content{flex:1 1 auto;margin:12px;padding:0}.yoast-alerts .yoast-container__configuration-wizard--content h3{border-bottom:0;font-size:1.4em;line-height:1;margin:0 0 4px;padding:0;background:transparent}.yoast-alerts .yoast-container__configuration-wizard--content p{margin:1em 0 0}.yoast-alerts .yoast-container__configuration-wizard--content p:last-child{margin:0}@media screen and (max-width:768px){.yoast-alerts .yoast-container__configuration-wizard--content{display:block;position:relative;padding:16px}}.yoast-alerts .yoast-container__configuration-wizard--dismiss{text-align:center}@media screen and (max-width:768px){.yoast-alerts .yoast-container__configuration-wizard--dismiss{width:40px;position:absolute;top:5px;left:5px;margin:0}}.yoast-alerts .yoast-container__configuration-wizard--dismiss .dashicons{text-decoration:none;margin-top:12px}
 
css/dist/alerts-1404.css DELETED
@@ -1 +0,0 @@
1
- .screen-reader-text{position:absolute!important;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);width:1px;height:1px;border:0;padding:0;overflow:hidden;word-wrap:normal!important}.yoast-alert{padding:0 12px;border-left:4px solid #fff;background:#fff;box-shadow:0 1px 2px rgba(0,0,0,.2)}.yoast-container{position:relative;max-width:1280px;margin:20px 0 1px;padding:20px 20px 0;border:1px solid #e5e5e5;background-color:#fdfdfd;box-shadow:0 1px 1px rgba(0,0,0,.04)}.yoast-alerts>h2:first-child{margin:0;padding:9px 0 4px;font-size:23px;font-weight:400;line-height:29px}.yoast-alerts .yoast-container h3{margin:-20px -20px 0;padding:1em;border-bottom:1px solid #ccc;background-color:#fdfdfd;font-size:1.4em}.yoast-container .container{max-width:980px}.yoast-container .yoast-alert-holder{display:flex;position:relative}.dismiss .dashicons,.restore .dashicons{font-size:20px;width:20px;height:20px}.yoast-bottom-spacing{margin-bottom:20px}.yoast-alerts .button.dismiss,.yoast-alerts .button.restore{position:absolute;right:0;width:52px;height:100%;line-height:inherit;padding:0;outline:none;cursor:pointer;background:transparent;border:none;box-shadow:none;border-radius:0}.yoast-alerts .button.dismiss:focus,.yoast-alerts .button.dismiss:hover,.yoast-alerts .button.restore:focus,.yoast-alerts .button.restore:hover{background:transparent}.yoast-alerts .button.dismiss:focus:before,.yoast-alerts .button.restore:focus:before{content:"";display:block;width:32px;height:32px;border-radius:50%;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);box-shadow:0 0 0 1px #007cba;outline:2px solid transparent}.yoast-alerts .button.dismiss.yoast-container__configuration-wizard--dismiss:before{top:0;transform:translate(-50%,6px)}.yoast-container .separator{margin-top:1em;margin-bottom:1em;border-top:1px solid #ddd}.yoast-container .dashicons-yes{color:#77b227}.yoast-container-disabled{display:table-cell;position:absolute;top:0;right:0;bottom:0;left:0;border-radius:4px;background-color:hsla(0,0%,91%,.7)}.yoast-no-issues{padding:1em 1em 1em 16px;color:#666}.yoast-muted-title{overflow:hidden;font-weight:600;font-style:italic}.yoast-muted-title:after{content:"";display:inline-block;height:.5em;vertical-align:bottom;width:100%;margin-right:-100%;margin-left:10px;border-top:1px solid #ddd}.yoast-alerts-active .yoast-alert,.yoast-alerts-dismissed .yoast-alert{padding-right:52px;flex:1}.yoast-alerts-active .yoast-alert-holder{margin-bottom:20px}.yoast-alerts-dismissed.paper.tab-block{margin:20px 0}.yoast-alerts-dismissed.paper.tab-block .paper-container.toggleable-container{padding:0}.yoast-alerts-dismissed.paper.tab-block .paper-container.toggleable-container .yoast-alert-holder:nth-child(odd){background-color:#f7f7f7}.yoast-alerts-dismissed.paper.tab-block .paper-container.toggleable-container .yoast-alert-holder:nth-child(odd) .yoast-alert{background-color:initial}.yoast-alerts-dismissed .yoast-svg-icon-eye{background:transparent url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20role%3D%22img%22%20aria%2Dhidden%3D%22true%22%20focusable%3D%22false%22%3E%3Cpath%20fill%3D%22%23555%22%20d%3D%22M1664%20960q%2D152%2D236%2D381%2D353%2061%20104%2061%20225%200%20185%2D131%2E5%20316%2E5t%2D316%2E5%20131%2E5%2D316%2E5%2D131%2E5%2D131%2E5%2D316%2E5q0%2D121%2061%2D225%2D229%20117%2D381%20353%20133%20205%20333%2E5%20326%2E5t434%2E5%20121%2E5%20434%2E5%2D121%2E5%20333%2E5%2D326%2E5zm%2D720%2D384q0%2D20%2D14%2D34t%2D34%2D14q%2D125%200%2D214%2E5%2089%2E5t%2D89%2E5%20214%2E5q0%2020%2014%2034t34%2014%2034%2D14%2014%2D34q0%2D86%2061%2D147t147%2D61q20%200%2034%2D14t14%2D34zm848%20384q0%2034%2D20%2069%2D140%20230%2D376%2E5%20368%2E5t%2D499%2E5%20138%2E5%2D499%2E5%2D139%2D376%2E5%2D368q%2D20%2D35%2D20%2D69t20%2D69q140%2D229%20376%2E5%2D368t499%2E5%2D139%20499%2E5%20139%20376%2E5%20368q20%2035%2020%2069z%22%20%2F%3E%3C%2Fsvg%3E") no-repeat 0 0;background-size:20px}#yoast-errors-header .dashicons{color:#dc3232}#yoast-errors-active .yoast-alert{border-left-color:#dc3232}#yoast-errors-dismissed .yoast-alert{border-left-color:#d93f69}#yoast-warnings-header .dashicons{color:#5d237a}#yoast-warnings-active .yoast-alert{border-left-color:#5d237a}#yoast-warnings-dismissed .yoast-alert{border-left-color:#0075b3}.yoast-alerts .yoast-container__configuration-wizard{display:flex;align-items:center;box-shadow:0 1px 2px rgba(0,0,0,.2);background-color:#fff;min-height:0;padding-bottom:20px;margin-bottom:15px}@media screen and (max-width:768px){.yoast-alerts .yoast-container__configuration-wizard img{display:none}}.yoast-alerts .yoast-container__configuration-wizard--content{flex:1 1 auto;margin:12px;padding:0}.yoast-alerts .yoast-container__configuration-wizard--content h3{border-bottom:0;font-size:1.4em;line-height:1;margin:0 0 4px;padding:0;background:transparent}.yoast-alerts .yoast-container__configuration-wizard--content p{margin:1em 0 0}.yoast-alerts .yoast-container__configuration-wizard--content p:last-child{margin:0}@media screen and (max-width:768px){.yoast-alerts .yoast-container__configuration-wizard--content{display:block;position:relative;padding:16px}}.yoast-alerts .yoast-container__configuration-wizard--dismiss{text-align:center}@media screen and (max-width:768px){.yoast-alerts .yoast-container__configuration-wizard--dismiss{width:40px;position:absolute;top:5px;right:5px;margin:0}}.yoast-alerts .yoast-container__configuration-wizard--dismiss .dashicons{text-decoration:none;margin-top:12px}
 
css/dist/alerts-1410-rtl.css ADDED
@@ -0,0 +1 @@
 
1
+ .yoast-alert{display:flex;align-items:flex-start;padding:16px;border:1px solid rgba(0,0,0,.2);font-size:14px;line-height:1.5;margin:16px 0}.yoast-alert--error{color:#8f1919;background:#f9dcdc}.yoast-alert--info{color:#00468f;background:#cce5ff}.yoast-alert--success{color:#395315;background:#e2f2cc}.yoast-alert--warning{color:#674e00;background:#fff3cd}.yoast-alert__icon.yoast-alert__icon{display:block;margin-top:.125rem;margin-left:8px;height:16px;width:16px;max-width:none}.yoast-alert a{color:#004973}
css/dist/alerts-1410.css ADDED
@@ -0,0 +1 @@
 
1
+ .yoast-alert{display:flex;align-items:flex-start;padding:16px;border:1px solid rgba(0,0,0,.2);font-size:14px;line-height:1.5;margin:16px 0}.yoast-alert--error{color:#8f1919;background:#f9dcdc}.yoast-alert--info{color:#00468f;background:#cce5ff}.yoast-alert--success{color:#395315;background:#e2f2cc}.yoast-alert--warning{color:#674e00;background:#fff3cd}.yoast-alert__icon.yoast-alert__icon{display:block;margin-top:.125rem;margin-right:8px;height:16px;width:16px;max-width:none}.yoast-alert a{color:#004973}
css/dist/{dashboard-1404-rtl.css → dashboard-1410-rtl.css} RENAMED
File without changes
css/dist/{dashboard-1404.css → dashboard-1410.css} RENAMED
File without changes
css/dist/{edit-page-1404-rtl.css → edit-page-1410-rtl.css} RENAMED
File without changes
css/dist/{edit-page-1404.css → edit-page-1410.css} RENAMED
File without changes
css/dist/{featured-image-1404-rtl.css → featured-image-1410-rtl.css} RENAMED
File without changes
css/dist/{featured-image-1404.css → featured-image-1410.css} RENAMED
File without changes
css/dist/{filter-explanation-1404-rtl.css → filter-explanation-1410-rtl.css} RENAMED
File without changes
css/dist/{filter-explanation-1404.css → filter-explanation-1410.css} RENAMED
File without changes
css/dist/icons-1410-rtl.css ADDED
@@ -0,0 +1 @@
 
1
+ :root{--svg-icon-info:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23A4286A' d='M1152 1376v-160q0-14-9-23t-23-9h-96V672q0-14-9-23t-23-9H672q-14 0-23 9t-9 23v160q0 14 9 23t23 9h96v320h-96q-14 0-23 9t-9 23v160q0 14 9 23t23 9h448q14 0 23-9t9-23zm-128-896V320q0-14-9-23t-23-9H800q-14 0-23 9t-9 23v160q0 14 9 23t23 9h192q14 0 23-9t9-23zm640 416q0 209-103 385.5T1281.5 1561 896 1664t-385.5-103T231 1281.5 128 896t103-385.5T510.5 231 896 128t385.5 103T1561 510.5 1664 896z'/%3E%3C/svg%3E");--svg-icon-check:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%2377B227' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/%3E%3C/svg%3E");--svg-icon-check-ok:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%2377B227' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/%3E%3C/svg%3E");--svg-icon-caret-right:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 192 512' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z'/%3E%3C/svg%3E");--svg-icon-caret-left:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 192 512' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z'/%3E%3C/svg%3E");--svg-icon-eye:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M1664 960q-152-236-381-353 61 104 61 225 0 185-131.5 316.5T896 1280t-316.5-131.5T448 832q0-121 61-225-229 117-381 353 133 205 333.5 326.5T896 1408t434.5-121.5T1664 960zM944 576q0-20-14-34t-34-14q-125 0-214.5 89.5T592 832q0 20 14 34t34 14 34-14 14-34q0-86 61-147t147-61q20 0 34-14t14-34zm848 384q0 34-20 69-140 230-376.5 368.5T896 1536t-499.5-139T20 1029Q0 994 0 960t20-69q140-229 376.5-368T896 384t499.5 139T1772 891q20 35 20 69z'/%3E%3C/svg%3E");--svg-icon-list:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M384 1408q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm0-512q0 80-56 136t-136 56-136-56T0 896t56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5H544q-13 0-22.5-9.5T512 1504v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zM384 384q0 80-56 136t-136 56-136-56T0 384t56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5H544q-13 0-22.5-9.5T512 992V800q0-13 9.5-22.5T544 768h1216q13 0 22.5 9.5t9.5 22.5zm0-512v192q0 13-9.5 22.5T1760 512H544q-13 0-22.5-9.5T512 480V288q0-13 9.5-22.5T544 256h1216q13 0 22.5 9.5t9.5 22.5z'/%3E%3C/svg%3E");--svg-icon-key:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M832 512q0-80-56-136t-136-56-136 56-56 136q0 42 19 83-41-19-83-19-80 0-136 56t-56 136 56 136 136 56 136-56 56-136q0-42-19-83 41 19 83 19 80 0 136-56t56-136zm851 704q0 17-49 66t-66 49q-9 0-28.5-16t-36.5-33-38.5-40-24.5-26l-96 96 220 220q28 28 28 68 0 42-39 81t-81 39q-40 0-68-28l-671-671q-176 131-365 131-163 0-265.5-102.5T0 784q0-160 95-313t248-248 313-95q163 0 265.5 102.5T1024 496q0 189-131 365l355 355 96-96q-3-3-26-24.5t-40-38.5-33-36.5-16-28.5q0-17 49-66t66-49q13 0 23 10 6 6 46 44.5t82 79.5 86.5 86 73 78 28.5 41z'/%3E%3C/svg%3E");--svg-icon-edit:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M491 1536l91-91-235-235-91 91v107h128v128h107zm523-928q0-22-22-22-10 0-17 7l-542 542q-7 7-7 17 0 22 22 22 10 0 17-7l542-542q7-7 7-17zm-54-192l416 416-832 832H128v-416zm683 96q0 53-37 90l-166 166-416-416 166-165q36-38 90-38 53 0 91 38l235 234q37 39 37 91z'/%3E%3C/svg%3E");--svg-icon-yoast:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23999' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-good:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%237ad03a' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-ok:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23ee7c1b' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-bad:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23dc3232' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-noindex:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%231e8cbe' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E")}
css/dist/icons-1410.css ADDED
@@ -0,0 +1 @@
 
1
+ :root{--svg-icon-info:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23A4286A' d='M1152 1376v-160q0-14-9-23t-23-9h-96V672q0-14-9-23t-23-9H672q-14 0-23 9t-9 23v160q0 14 9 23t23 9h96v320h-96q-14 0-23 9t-9 23v160q0 14 9 23t23 9h448q14 0 23-9t9-23zm-128-896V320q0-14-9-23t-23-9H800q-14 0-23 9t-9 23v160q0 14 9 23t23 9h192q14 0 23-9t9-23zm640 416q0 209-103 385.5T1281.5 1561 896 1664t-385.5-103T231 1281.5 128 896t103-385.5T510.5 231 896 128t385.5 103T1561 510.5 1664 896z'/%3E%3C/svg%3E");--svg-icon-check:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%2377B227' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/%3E%3C/svg%3E");--svg-icon-check-ok:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%2377B227' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/%3E%3C/svg%3E");--svg-icon-caret-right:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 192 512' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z'/%3E%3C/svg%3E");--svg-icon-caret-left:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 192 512' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z'/%3E%3C/svg%3E");--svg-icon-eye:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M1664 960q-152-236-381-353 61 104 61 225 0 185-131.5 316.5T896 1280t-316.5-131.5T448 832q0-121 61-225-229 117-381 353 133 205 333.5 326.5T896 1408t434.5-121.5T1664 960zM944 576q0-20-14-34t-34-14q-125 0-214.5 89.5T592 832q0 20 14 34t34 14 34-14 14-34q0-86 61-147t147-61q20 0 34-14t14-34zm848 384q0 34-20 69-140 230-376.5 368.5T896 1536t-499.5-139T20 1029Q0 994 0 960t20-69q140-229 376.5-368T896 384t499.5 139T1772 891q20 35 20 69z'/%3E%3C/svg%3E");--svg-icon-list:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M384 1408q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm0-512q0 80-56 136t-136 56-136-56T0 896t56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5H544q-13 0-22.5-9.5T512 1504v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zM384 384q0 80-56 136t-136 56-136-56T0 384t56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5H544q-13 0-22.5-9.5T512 992V800q0-13 9.5-22.5T544 768h1216q13 0 22.5 9.5t9.5 22.5zm0-512v192q0 13-9.5 22.5T1760 512H544q-13 0-22.5-9.5T512 480V288q0-13 9.5-22.5T544 256h1216q13 0 22.5 9.5t9.5 22.5z'/%3E%3C/svg%3E");--svg-icon-key:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M832 512q0-80-56-136t-136-56-136 56-56 136q0 42 19 83-41-19-83-19-80 0-136 56t-56 136 56 136 136 56 136-56 56-136q0-42-19-83 41 19 83 19 80 0 136-56t56-136zm851 704q0 17-49 66t-66 49q-9 0-28.5-16t-36.5-33-38.5-40-24.5-26l-96 96 220 220q28 28 28 68 0 42-39 81t-81 39q-40 0-68-28l-671-671q-176 131-365 131-163 0-265.5-102.5T0 784q0-160 95-313t248-248 313-95q163 0 265.5 102.5T1024 496q0 189-131 365l355 355 96-96q-3-3-26-24.5t-40-38.5-33-36.5-16-28.5q0-17 49-66t66-49q13 0 23 10 6 6 46 44.5t82 79.5 86.5 86 73 78 28.5 41z'/%3E%3C/svg%3E");--svg-icon-edit:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M491 1536l91-91-235-235-91 91v107h128v128h107zm523-928q0-22-22-22-10 0-17 7l-542 542q-7 7-7 17 0 22 22 22 10 0 17-7l542-542q7-7 7-17zm-54-192l416 416-832 832H128v-416zm683 96q0 53-37 90l-166 166-416-416 166-165q36-38 90-38 53 0 91 38l235 234q37 39 37 91z'/%3E%3C/svg%3E");--svg-icon-yoast:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23999' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-good:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%237ad03a' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-ok:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23ee7c1b' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-bad:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23dc3232' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-noindex:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%231e8cbe' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E")}
css/dist/{inside-editor-1404-rtl.css → inside-editor-1410-rtl.css} RENAMED
File without changes
css/dist/{inside-editor-1404.css → inside-editor-1410.css} RENAMED
File without changes
css/dist/metabox-1404-rtl.css DELETED
@@ -1 +0,0 @@
1
- .yoast-tooltip{position:relative}button.yoast-tooltip{overflow:visible}.yoast-tooltip:after{display:none;position:absolute;z-index:1000000;padding:6px 8px 5px;border-radius:3px;opacity:0;color:#fff;background:rgba(0,0,0,.8);text-shadow:none;font:normal normal 11px/1.45454545 Helvetica,arial,nimbussansl,liberationsans,freesans,clean,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;text-align:center;white-space:pre;text-decoration:none;letter-spacing:normal;text-transform:none;word-wrap:break-word;content:attr(aria-label);pointer-events:none;-webkit-font-smoothing:subpixel-antialiased}.yoast-tooltip-alt:after{content:attr(data-label)}.yoast-tooltip:before{display:none;position:absolute;z-index:1000001;width:0;height:0;border:5px solid transparent;opacity:0;color:rgba(0,0,0,.8);content:"\00a0";pointer-events:none}@keyframes yoast-tooltip-appear{0%{opacity:0}to{opacity:1}}.yoast-tooltip:active:after,.yoast-tooltip:active:before,.yoast-tooltip:focus:after,.yoast-tooltip:focus:before,.yoast-tooltip:hover:after,.yoast-tooltip:hover:before{display:inline-block;text-decoration:none;animation-name:yoast-tooltip-appear;animation-duration:.1s;animation-timing-function:ease-in;animation-delay:.4s;animation-fill-mode:forwards}.yoast-tooltip-no-delay:active:after,.yoast-tooltip-no-delay:active:before,.yoast-tooltip-no-delay:focus:after,.yoast-tooltip-no-delay:focus:before,.yoast-tooltip-no-delay:hover:after,.yoast-tooltip-no-delay:hover:before{opacity:1;animation:none}.yoast-tooltip-multiline:active:after,.yoast-tooltip-multiline:focus:after,.yoast-tooltip-multiline:hover:after{display:table-cell}.yoast-tooltip-s:after,.yoast-tooltip-se:after,.yoast-tooltip-sw:after{top:100%;left:50%;margin-top:5px}.yoast-tooltip-s:before,.yoast-tooltip-se:before,.yoast-tooltip-sw:before{top:auto;left:50%;bottom:-5px;margin-left:-5px;border-bottom-color:rgba(0,0,0,.8)}.yoast-tooltip-se:after{left:auto;right:50%;margin-right:-15px}.yoast-tooltip-sw:after{margin-left:-15px}.yoast-tooltip-n:after,.yoast-tooltip-ne:after,.yoast-tooltip-nw:after{left:50%;bottom:100%;margin-bottom:5px}.yoast-tooltip-n:before,.yoast-tooltip-ne:before,.yoast-tooltip-nw:before{top:-5px;left:50%;bottom:auto;margin-left:-5px;border-top-color:rgba(0,0,0,.8)}.yoast-tooltip-ne:after{left:auto;right:50%;margin-right:-15px}.yoast-tooltip-nw:after{margin-left:-15px}.yoast-tooltip-n:after,.yoast-tooltip-s:after{transform:translateX(-50%)}.yoast-tooltip-w:after{left:100%;bottom:50%;margin-left:5px;transform:translateY(50%)}.yoast-tooltip-w:before{top:50%;bottom:50%;right:-5px;margin-top:-5px;border-right-color:rgba(0,0,0,.8)}.yoast-tooltip-e:after{bottom:50%;right:100%;margin-right:5px;transform:translateY(50%)}.yoast-tooltip-e:before{top:50%;left:-5px;bottom:50%;margin-top:-5px;border-left-color:rgba(0,0,0,.8)}.yoast-tooltip-multiline:after{width:250px;width:-webkit-max-content;width:max-content;max-width:250px;border-collapse:initial;white-space:pre-line;word-wrap:normal;word-break:break-word}.yoast-tooltip-multiline.yoast-tooltip-n:after,.yoast-tooltip-multiline.yoast-tooltip-s:after{left:auto;right:50%;transform:translateX(50%)}.yoast-tooltip-multiline.yoast-tooltip-e:after,.yoast-tooltip-multiline.yoast-tooltip-w:after{left:100%}@media screen and (min-width:0\0){.yoast-tooltip-multiline:after{width:250px}}.yoast-tooltip-sticky:after,.yoast-tooltip-sticky:before{display:inline-block}.yoast-tooltip-sticky.yoast-tooltip-multiline:after{display:table-cell}@media only screen and (-moz-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:2dppx),only screen and (min-resolution:192dpi){.yoast-tooltip-w:after{margin-left:4.5px}}.draftJsMentionPlugin__mention__29BEd,.draftJsMentionPlugin__mention__29BEd:visited{color:#575f67;cursor:pointer;display:inline-block;background:#e6f3ff;padding-right:2px;padding-left:2px;border-radius:2px;text-decoration:none}.draftJsMentionPlugin__mention__29BEd:focus,.draftJsMentionPlugin__mention__29BEd:hover{color:#677584;background:#edf5fd;outline:0}.draftJsMentionPlugin__mention__29BEd:active{color:#222;background:#455261}.draftJsMentionPlugin__mentionSuggestionsEntry__3mSwm{padding:7px 10px 3px;transition:background-color .4s cubic-bezier(.27,1.27,.48,.56)}.draftJsMentionPlugin__mentionSuggestionsEntry__3mSwm:active{background-color:#cce7ff}.draftJsMentionPlugin__mentionSuggestionsEntryFocused__3LcTd{background-color:#e6f3ff}.draftJsMentionPlugin__mentionSuggestionsEntryText__3Jobq{display:inline-block;margin-right:8px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:368px;font-size:.9em;margin-bottom:.2em}.draftJsMentionPlugin__mentionSuggestionsEntryAvatar__1xgA9{display:inline-block;width:24px;height:24px;border-radius:12px}.draftJsMentionPlugin__mentionSuggestions__2DWjA{border:1px solid #eee;margin-top:.4em;position:absolute;min-width:220px;max-width:440px;background:#fff;border-radius:2px;box-shadow:0 4px 30px 0 #dcdcdc;cursor:pointer;padding-top:8px;padding-bottom:8px;z-index:2;display:flex;flex-direction:column;box-sizing:border-box;transform:scale(0)}.DraftEditor-editorContainer,.DraftEditor-root,.public-DraftEditor-content{height:inherit;text-align:initial}.public-DraftEditor-content[contenteditable=true]{-webkit-user-modify:read-write-plaintext-only}.DraftEditor-root{position:relative}.DraftEditor-editorContainer{background-color:hsla(0,0%,100%,0);border-left:.1px solid transparent;position:relative;z-index:1}.public-DraftEditor-block{position:relative}.DraftEditor-alignLeft .public-DraftStyleDefault-block{text-align:left}.DraftEditor-alignLeft .public-DraftEditorPlaceholder-root{left:0;text-align:left}.DraftEditor-alignCenter .public-DraftStyleDefault-block{text-align:center}.DraftEditor-alignCenter .public-DraftEditorPlaceholder-root{margin:0 auto;text-align:center;width:100%}.DraftEditor-alignRight .public-DraftStyleDefault-block{text-align:right}.DraftEditor-alignRight .public-DraftEditorPlaceholder-root{right:0;text-align:right}.public-DraftEditorPlaceholder-root{color:#9197a3;position:absolute;z-index:1}.public-DraftEditorPlaceholder-hasFocus{color:#bdc1c9}.DraftEditorPlaceholder-hidden{display:none}.public-DraftStyleDefault-block{position:relative;white-space:pre-wrap}.public-DraftStyleDefault-ltr{direction:ltr;text-align:left}.public-DraftStyleDefault-rtl{direction:rtl;text-align:right}.public-DraftStyleDefault-listLTR{direction:ltr}.public-DraftStyleDefault-listRTL{direction:rtl}.public-DraftStyleDefault-ol,.public-DraftStyleDefault-ul{margin:16px 0;padding:0}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listLTR{margin-left:1.5em}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listRTL{margin-right:1.5em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listLTR{margin-left:3em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listRTL{margin-right:3em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listLTR{margin-left:4.5em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listRTL{margin-right:4.5em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listLTR{margin-left:6em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listRTL{margin-right:6em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listLTR{margin-left:7.5em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listRTL{margin-right:7.5em}.public-DraftStyleDefault-unorderedListItem{list-style-type:square;position:relative}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth0{list-style-type:disc}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth1{list-style-type:circle}.public-DraftStyleDefault-orderedListItem{list-style-type:none;position:relative}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listLTR:before{left:-36px;position:absolute;text-align:right;width:30px}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listRTL:before{position:absolute;right:-36px;text-align:left;width:30px}.public-DraftStyleDefault-orderedListItem:before{content:counter(ol0) ". ";counter-increment:ol0}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth1:before{content:counter(ol1) ". ";counter-increment:ol1}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth2:before{content:counter(ol2) ". ";counter-increment:ol2}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth3:before{content:counter(ol3) ". ";counter-increment:ol3}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth4:before{content:counter(ol4) ". ";counter-increment:ol4}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-reset{counter-reset:ol0}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-reset{counter-reset:ol1}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-reset{counter-reset:ol2}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-reset{counter-reset:ol3}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-reset{counter-reset:ol4}#wpseo_meta{box-sizing:border-box}#wpseo_meta *,#wpseo_meta :after,#wpseo_meta :before{box-sizing:inherit}.DraftEditor-root [data-block]{margin:0}#edittag>#wp-description-wrap{display:none}#wp-description-wrap .wp-editor-area{border:0}.term-description-wrap td>textarea#description{min-height:530px}ul.wpseo-metabox-tabs{display:none;margin-top:6px;margin-bottom:0}ul.wpseo-metabox-tabs:after{content:"";display:table;clear:both}.wpseo-metabox-tabs-div{margin:0 5px 5px}.wpseo-metabox-tabs-div ul{list-style:none}#wpseo-meta-section-addons{padding:0 5px 5px}#wpseo-meta-section-addons .wpseo-metabox-tabs-div{margin:0}ul.wpseo-metabox-tabs li.active{background-color:#fdfdfd}.wpseo-meta-section,.wpseo-meta-section-react{display:none;width:100%;min-height:100%;height:auto;vertical-align:top;box-shadow:0 1px 2px rgba(0,0,0,.2);border-top:1px solid #e8e8e8}.wpseo-meta-section-react.active,.wpseo-meta-section.active{background:#fff;position:relative;z-index:12}.wpseo-meta-section.active{display:inline-block}.wpseo-meta-section-react.active{display:block;margin-bottom:10px}.wpseo-metabox-content{max-width:800px;padding-top:16px}.wpseo-metabox-menu{padding:0;background-color:#fff}.wpseo-metabox-menu ul{margin:0 0 0 1px;padding:0 16px 0 0;display:flex;align-items:flex-end;flex-wrap:wrap;flex-flow:wrap-reverse}.wpseo-metabox-menu ul li:first-child{z-index:10}.wpseo-metabox-menu ul li:nth-child(2){z-index:9}.wpseo-metabox-menu ul li:nth-child(3){z-index:8}.wpseo-metabox-menu ul li:nth-child(4){z-index:7}.wpseo-metabox-menu ul li:nth-child(5){z-index:6}.wpseo-metabox-menu ul li:nth-child(6){z-index:5}.wpseo-metabox-menu ul li{box-shadow:0 0 4px 0 rgba(0,0,0,.1);height:32px;margin-right:-1px;margin-bottom:-1px;text-align:center;position:relative;background-color:#f8f8f8}.wpseo-metabox-menu ul li a{color:#0073aa;display:flex;align-items:center;border:1px solid #ddd}.wpseo-metabox-menu ul li .yst-traffic-light{height:20px;width:auto;margin-left:10px;margin-right:4px}.wpseo-metabox-menu ul li span.dashicons{margin-left:8px}.wpseo-metabox-menu ul li span.wpseo-buy-premium{color:#a4286a}.wpseo-metabox-menu ul li span.wpseo-buy-premium:hover{color:#832055}.wpseo-metabox-menu ul li.active{height:36px;margin-top:-4px;z-index:11;background-color:#fff}.wpseo-metabox-menu ul li.active a{height:36px;color:#444}.wpseo-metabox-menu ul li.active span.wpseo-buy-premium{color:#a4286a;border-color:#a4286a}.wpseo-metabox-menu ul li.active span.wpseo-buy-premium:hover{color:#832055;border-color:#832055}.wpseo-metabox-menu a{height:32px;padding:0 8px;text-decoration:none}ul.wpseo-metabox-tabs li{float:right;margin-left:5px;margin-bottom:-1px;padding:0;border:1px solid #dfdfdf;border-bottom:0}ul.wpseo-metabox-tabs li .wpseo-keyword{display:inline-block;vertical-align:top;max-width:8em;max-width:8rem;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.wpseotab{display:none;padding:16px;border:1px solid #ddd;background-color:#fdfdfd}.wpseotab .wpseo-cornerstone-checkbox{margin-left:.5em}.wpseotab.content{padding:20px 15px}.wpseotab.active{display:block}.wpseo-metabox-tabs .wpseo_tablink{display:inline-block;vertical-align:top;padding:5px 12px 6px;text-decoration:none}.wpseo-metabox-tabs .wpseo_content_tab a{padding-left:12px}.wpseo-metabox-tabs .wpseo-score-icon{margin-right:0}#wpseo-meta-section-social .wpseo-metabox-tabs .wpseo_tablink{padding:5px 7px}.wpseo-metabox-tabs .wpseo_tablink .dashicons{width:16px;height:16px;font-size:16px}.wpseo-metabox-sidebar .dashicons{width:30px;height:30px;font-size:30px}.wpseo-metabox-tabs-div div.wpseo-tabs-panel{overflow:auto;padding:.5em .9em;border:1px solid}#wpseo_meta .inside{margin:0}#wpseo_meta .inside:after{content:"";display:table;clear:both}#wpseo_meta .postbox .inside .wpseotab{font-size:13px!important}.wpseo-form .select2-container,.wpseo-form input,.wpseo-form label,.wpseo-form p.error-message,.wpseo-form textarea{max-width:600px}.wpseo-form fieldset{padding-top:5px}.wpseo-form legend{font-weight:600}.wpseo-form label{display:block;font-weight:600}.wpseo-form input[type=checkbox]+label,.wpseo-form input[type=radio]+label{display:inline-block;font-weight:400}.wpseo-form fieldset,.wpseo-form label{margin-top:2em;margin-bottom:.5em}.wpseo-form input[type=checkbox],.wpseo-form input[type=checkbox]+label{margin-top:2em;margin-bottom:0;font-size:1em}.wpseo-form fieldset:first-child,.wpseo-form input[type=checkbox]:first-child,.wpseo-form input[type=checkbox]:first-child+label,.wpseo-form label:first-child{margin-top:10px}.wpseo-form input[type=radio]{margin-top:0}.wpseo-form input[type=radio]+label{margin:0 0 0 1em}.wpseo-form p.error-message{margin:.5em 0}.wpseo-form select[multiple]{margin-top:0}.yoast-metabox__description{max-width:600px;margin:.5em 0}.wpseo_image_upload_button{margin-right:3px}.good,.warn,.wrong{font-weight:600}.good{color:green}.warn{color:maroon}.wrong{color:#dc3232}#current_seo_title span{padding:2px 5px;background-color:#ffffe0}#focuskwresults ul{margin:0}#focuskwresults li,#focuskwresults p{font-size:13px}#focuskwresults li{margin:0 20px 0 0;list-style-type:disc}.wpseo_hidden{display:none}.wpseo_msg{margin:5px 0 10px;padding:0 5px;border:1px solid #e6db55;background-color:#ffffe0}ul.wpseo-metabox-tabs li.wpseo-tab-add-keyword{border:1px dashed #dfdfdf;border-bottom:none}.wpseo-tab-add-keyword .wpseo-add-keyword.button{height:auto;padding:5px 10px 5px 12px;vertical-align:top;font-size:inherit;line-height:inherit;font-weight:700;box-shadow:none;background:none;text-decoration:none}.wpseo-tab-add-keyword .wpseo-add-keyword.button:focus{box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}.wpseo-tab-add-keyword .wpseo-add-keyword.button:active{transform:none}.wpseo-add-keyword-plus{display:inline-block;vertical-align:top;margin:-1px 0 0 3px;font-size:20px}#wpseo-add-keyword-popup-title{margin:1em 0;font-size:1.3em}.snippet-editor__button.snippet-editor__edit-button:focus{border-color:#5b9dd9;outline:none;color:#23282d;background-color:#fafafa;box-shadow:0 0 3px rgba(0,115,170,.8)}.wpseo-admin-page .subsubsub li{display:inline;max-width:none}.yoast-seo-help-container{float:right;width:100%;max-width:none}.yoast-seo-help-container .yoast-help-panel{margin:.5em 0!important}.wpseo_content_wrapper p.search-box{margin:10px 0 5px}.wpseo-metabox-tabs .active a{color:#333}#wpseotab .ui-widget-content .ui-state-hover{border:1px solid #dfdfdf;color:#333;background:#f1f1f1}.yst-traffic-light{width:19px;height:30px;margin:0 5px 0 0}.yst-traffic-light .traffic-light-color{display:none}.yst-traffic-light.bad .traffic-light-red,.yst-traffic-light.good .traffic-light-green,.yst-traffic-light.init .traffic-light-init,.yst-traffic-light.na .traffic-light-empty,.yst-traffic-light.ok .traffic-light-orange{display:inline}#wpseo-score{float:right;margin:0 -5px 0 5px}.yoast-seo-score .yoast-logo.svg{float:right;width:18px;margin-left:7px;height:18px;background:url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20role%3D%22img%22%20aria%2Dhidden%3D%22true%22%20focusable%3D%22false%22%3E%3Cpath%20fill%3D%22%23999%22%20d%3D%22M403%20218h691l%2D26%2072h%2D665q%2D110%200%2D188%2E5%2079t%2D78%2E5%20189v771q0%2095%2060%2E5%20169%2E5t153%2E5%2093%2E5q23%205%2098%205v72h%2D45q%2D140%200%2D239%2E5%2D100t%2D99%2E5%2D240v%2D771q0%2D140%2099%2E5%2D240t239%2E5%2D100zm851%2D218h247l%2D482%201294q%2D23%2061%2D40%2E5%20103%2E5t%2D45%2098%2D54%2093%2E5%2D64%2E5%2078%2E5%2D79%2E5%2065%2D95%2E5%2041%2D116%2018%2E5v%2D195q163%2D26%20220%2D182%2020%2D52%2020%2D105%200%2D54%2D20%2D106l%2D285%2D733h228l187%20585zm474%20558v1111h%2D795q37%2D55%2045%2D73h678v%2D1038q0%2D85%2D49%2E5%2D155t%2D129%2E5%2D99l25%2D67q101%2034%20163%2E5%20123%2E5t62%2E5%20197%2E5z%22%2F%3E%3C%2Fsvg%3E") no-repeat;background-size:18px}.yoast-seo-score .yoast-logo.svg.good{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20role%3D%22img%22%20aria%2Dhidden%3D%22true%22%20focusable%3D%22false%22%3E%3Cpath%20fill%3D%22%237ad03a%22%20d%3D%22M403%20218h691l%2D26%2072h%2D665q%2D110%200%2D188%2E5%2079t%2D78%2E5%20189v771q0%2095%2060%2E5%20169%2E5t153%2E5%2093%2E5q23%205%2098%205v72h%2D45q%2D140%200%2D239%2E5%2D100t%2D99%2E5%2D240v%2D771q0%2D140%2099%2E5%2D240t239%2E5%2D100zm851%2D218h247l%2D482%201294q%2D23%2061%2D40%2E5%20103%2E5t%2D45%2098%2D54%2093%2E5%2D64%2E5%2078%2E5%2D79%2E5%2065%2D95%2E5%2041%2D116%2018%2E5v%2D195q163%2D26%20220%2D182%2020%2D52%2020%2D105%200%2D54%2D20%2D106l%2D285%2D733h228l187%20585zm474%20558v1111h%2D795q37%2D55%2045%2D73h678v%2D1038q0%2D85%2D49%2E5%2D155t%2D129%2E5%2D99l25%2D67q101%2034%20163%2E5%20123%2E5t62%2E5%20197%2E5z%22%2F%3E%3C%2Fsvg%3E")}.yoast-seo-score .yoast-logo.svg.ok{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20role%3D%22img%22%20aria%2Dhidden%3D%22true%22%20focusable%3D%22false%22%3E%3Cpath%20fill%3D%22%23ee7c1b%22%20d%3D%22M403%20218h691l%2D26%2072h%2D665q%2D110%200%2D188%2E5%2079t%2D78%2E5%20189v771q0%2095%2060%2E5%20169%2E5t153%2E5%2093%2E5q23%205%2098%205v72h%2D45q%2D140%200%2D239%2E5%2D100t%2D99%2E5%2D240v%2D771q0%2D140%2099%2E5%2D240t239%2E5%2D100zm851%2D218h247l%2D482%201294q%2D23%2061%2D40%2E5%20103%2E5t%2D45%2098%2D54%2093%2E5%2D64%2E5%2078%2E5%2D79%2E5%2065%2D95%2E5%2041%2D116%2018%2E5v%2D195q163%2D26%20220%2D182%2020%2D52%2020%2D105%200%2D54%2D20%2D106l%2D285%2D733h228l187%20585zm474%20558v1111h%2D795q37%2D55%2045%2D73h678v%2D1038q0%2D85%2D49%2E5%2D155t%2D129%2E5%2D99l25%2D67q101%2034%20163%2E5%20123%2E5t62%2E5%20197%2E5z%22%2F%3E%3C%2Fsvg%3E")}.yoast-seo-score .yoast-logo.svg.bad{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20role%3D%22img%22%20aria%2Dhidden%3D%22true%22%20focusable%3D%22false%22%3E%3Cpath%20fill%3D%22%23dc3232%22%20d%3D%22M403%20218h691l%2D26%2072h%2D665q%2D110%200%2D188%2E5%2079t%2D78%2E5%20189v771q0%2095%2060%2E5%20169%2E5t153%2E5%2093%2E5q23%205%2098%205v72h%2D45q%2D140%200%2D239%2E5%2D100t%2D99%2E5%2D240v%2D771q0%2D140%2099%2E5%2D240t239%2E5%2D100zm851%2D218h247l%2D482%201294q%2D23%2061%2D40%2E5%20103%2E5t%2D45%2098%2D54%2093%2E5%2D64%2E5%2078%2E5%2D79%2E5%2065%2D95%2E5%2041%2D116%2018%2E5v%2D195q163%2D26%20220%2D182%2020%2D52%2020%2D105%200%2D54%2D20%2D106l%2D285%2D733h228l187%20585zm474%20558v1111h%2D795q37%2D55%2045%2D73h678v%2D1038q0%2D85%2D49%2E5%2D155t%2D129%2E5%2D99l25%2D67q101%2034%20163%2E5%20123%2E5t62%2E5%20197%2E5z%22%2F%3E%3C%2Fsvg%3E")}.yoast-seo-score .yoast-logo.svg.na{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20role%3D%22img%22%20aria%2Dhidden%3D%22true%22%20focusable%3D%22false%22%3E%3Cpath%20fill%3D%22%23999%22%20d%3D%22M403%20218h691l%2D26%2072h%2D665q%2D110%200%2D188%2E5%2079t%2D78%2E5%20189v771q0%2095%2060%2E5%20169%2E5t153%2E5%2093%2E5q23%205%2098%205v72h%2D45q%2D140%200%2D239%2E5%2D100t%2D99%2E5%2D240v%2D771q0%2D140%2099%2E5%2D240t239%2E5%2D100zm851%2D218h247l%2D482%201294q%2D23%2061%2D40%2E5%20103%2E5t%2D45%2098%2D54%2093%2E5%2D64%2E5%2078%2E5%2D79%2E5%2065%2D95%2E5%2041%2D116%2018%2E5v%2D195q163%2D26%20220%2D182%2020%2D52%2020%2D105%200%2D54%2D20%2D106l%2D285%2D733h228l187%20585zm474%20558v1111h%2D795q37%2D55%2045%2D73h678v%2D1038q0%2D85%2D49%2E5%2D155t%2D129%2E5%2D99l25%2D67q101%2034%20163%2E5%20123%2E5t62%2E5%20197%2E5z%22%2F%3E%3C%2Fsvg%3E")}.yoast-seo-score .yoast-logo.svg.noindex{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20role%3D%22img%22%20aria%2Dhidden%3D%22true%22%20focusable%3D%22false%22%3E%3Cpath%20fill%3D%22%231e8cbe%22%20d%3D%22M403%20218h691l%2D26%2072h%2D665q%2D110%200%2D188%2E5%2079t%2D78%2E5%20189v771q0%2095%2060%2E5%20169%2E5t153%2E5%2093%2E5q23%205%2098%205v72h%2D45q%2D140%200%2D239%2E5%2D100t%2D99%2E5%2D240v%2D771q0%2D140%2099%2E5%2D240t239%2E5%2D100zm851%2D218h247l%2D482%201294q%2D23%2061%2D40%2E5%20103%2E5t%2D45%2098%2D54%2093%2E5%2D64%2E5%2078%2E5%2D79%2E5%2065%2D95%2E5%2041%2D116%2018%2E5v%2D195q163%2D26%20220%2D182%2020%2D52%2020%2D105%200%2D54%2D20%2D106l%2D285%2D733h228l187%20585zm474%20558v1111h%2D795q37%2D55%2045%2D73h678v%2D1038q0%2D85%2D49%2E5%2D155t%2D129%2E5%2D99l25%2D67q101%2034%20163%2E5%20123%2E5t62%2E5%20197%2E5z%22%2F%3E%3C%2Fsvg%3E")}.term-php .wpseo-taxonomy-metabox-postbox>h2{margin:0;padding:8px 12px;border-bottom:1px solid #eee;font-size:14px;line-height:1.4}#TB_window #TB_ajaxContent p{padding:5px 0 0;margin:5px 0 0}#TB_window #TB_ajaxContent ul{margin:5px 0 10px}#TB_window #TB_ajaxContent li{list-style:none;margin:5px 0 0}#TB_window #TB_ajaxContent li:before{content:"+";margin:0 0 0 10px;font-weight:700}.yoast-section__heading-icon-list{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20role%3D%22img%22%20aria%2Dhidden%3D%22true%22%20focusable%3D%22false%22%3E%3Cpath%20fill%3D%22%23555555%22%20d%3D%22M384%201408q0%2080%2D56%20136t%2D136%2056%2D136%2D56%2D56%2D136%2056%2D136%20136%2D56%20136%2056%2056%20136zm0%2D512q0%2080%2D56%20136t%2D136%2056%2D136%2D56%2D56%2D136%2056%2D136%20136%2D56%20136%2056%2056%20136zm1408%20416v192q0%2013%2D9%2E5%2022%2E5t%2D22%2E5%209%2E5h%2D1216q%2D13%200%2D22%2E5%2D9%2E5t%2D9%2E5%2D22%2E5v%2D192q0%2D13%209%2E5%2D22%2E5t22%2E5%2D9%2E5h1216q13%200%2022%2E5%209%2E5t9%2E5%2022%2E5zm%2D1408%2D928q0%2080%2D56%20136t%2D136%2056%2D136%2D56%2D56%2D136%2056%2D136%20136%2D56%20136%2056%2056%20136zm1408%20416v192q0%2013%2D9%2E5%2022%2E5t%2D22%2E5%209%2E5h%2D1216q%2D13%200%2D22%2E5%2D9%2E5t%2D9%2E5%2D22%2E5v%2D192q0%2D13%209%2E5%2D22%2E5t22%2E5%2D9%2E5h1216q13%200%2022%2E5%209%2E5t9%2E5%2022%2E5zm0%2D512v192q0%2013%2D9%2E5%2022%2E5t%2D22%2E5%209%2E5h%2D1216q%2D13%200%2D22%2E5%2D9%2E5t%2D9%2E5%2D22%2E5v%2D192q0%2D13%209%2E5%2D22%2E5t22%2E5%2D9%2E5h1216q13%200%2022%2E5%209%2E5t9%2E5%2022%2E5z%22%2F%3E%3C%2Fsvg%3E")}.yoast-section__heading-icon-key{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20role%3D%22img%22%20aria%2Dhidden%3D%22true%22%20focusable%3D%22false%22%3E%3Cpath%20fill%3D%22%23555555%22%20d%3D%22M832%20512q0%2D80%2D56%2D136t%2D136%2D56%2D136%2056%2D56%20136q0%2042%2019%2083%2D41%2D19%2D83%2D19%2D80%200%2D136%2056t%2D56%20136%2056%20136%20136%2056%20136%2D56%2056%2D136q0%2D42%2D19%2D83%2041%2019%2083%2019%2080%200%20136%2D56t56%2D136zm851%20704q0%2017%2D49%2066t%2D66%2049q%2D9%200%2D28%2E5%2D16t%2D36%2E5%2D33%2D38%2E5%2D40%2D24%2E5%2D26l%2D96%2096%20220%20220q28%2028%2028%2068%200%2042%2D39%2081t%2D81%2039q%2D40%200%2D68%2D28l%2D671%2D671q%2D176%20131%2D365%20131%2D163%200%2D265%2E5%2D102%2E5t%2D102%2E5%2D265%2E5q0%2D160%2095%2D313t248%2D248%20313%2D95q163%200%20265%2E5%20102%2E5t102%2E5%20265%2E5q0%20189%2D131%20365l355%20355%2096%2D96q%2D3%2D3%2D26%2D24%2E5t%2D40%2D38%2E5%2D33%2D36%2E5%2D16%2D28%2E5q0%2D17%2049%2D66t66%2D49q13%200%2023%2010%206%206%2046%2044%2E5t82%2079%2E5%2086%2E5%2086%2073%2078%2028%2E5%2041z%22%2F%3E%3C%2Fsvg%3E")}.yoast-section__heading-icon-edit{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20role%3D%22img%22%20aria%2Dhidden%3D%22true%22%20focusable%3D%22false%22%3E%3Cpath%20fill%3D%22%23555555%22%20d%3D%22M491%201536l91%2D91%2D235%2D235%2D91%2091v107h128v128h107zm523%2D928q0%2D22%2D22%2D22%2D10%200%2D17%207l%2D542%20542q%2D7%207%2D7%2017%200%2022%2022%2022%2010%200%2017%2D7l542%2D542q7%2D7%207%2D17zm%2D54%2D192l416%20416%2D832%20832h%2D416v%2D416zm683%2096q0%2053%2D37%2090l%2D166%20166%2D416%2D416%20166%2D165q36%2D38%2090%2D38%2053%200%2091%2038l235%20234q37%2039%2037%2091z%22%20%2F%3E%3C%2Fsvg%3E")}.yoast-tooltip.yoast-tooltip-hidden:after,.yoast-tooltip.yoast-tooltip-hidden:before{display:none}.screen-reader-text.wpseo-generic-tab-textual-score,.screen-reader-text.wpseo-keyword-tab-textual-score{display:block}.yoast-notice-go-premium{border-right-color:#a4286a;background:#f1f1f1;margin:0}.editor-styles-wrapper mark.annotation-text-yoast{background-color:#e1bee7}@media screen and (max-width:782px){.wpseo-metabox-buy-premium .wpseo-buy-premium{display:inline-block;width:20px;height:20px;margin-left:5px;padding:0}.yoast-help-panel{max-width:none!important}#wpseo-crawl-issues-table-form .subsubsub{float:none;max-width:calc(100vw - 20px)}#wpseo-crawl-issues-table-form .yoast-help-button{margin-top:3px}.wpseotab select[multiple]{height:auto!important}}@media screen and (max-width:600px){.wpseotab.content{padding:16px 0}}.wpseo-score-icon-container{height:20px;width:20px;margin-left:8px;display:flex;justify-content:center;align-items:center}
 
css/dist/metabox-1404.css DELETED
@@ -1,5 +0,0 @@
1
- .yoast-tooltip{position:relative}button.yoast-tooltip{overflow:visible}.yoast-tooltip:after{display:none;position:absolute;z-index:1000000;padding:6px 8px 5px;border-radius:3px;opacity:0;color:#fff;background:rgba(0,0,0,.8);text-shadow:none;font:normal normal 11px/1.45454545 Helvetica,arial,nimbussansl,liberationsans,freesans,clean,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;text-align:center;white-space:pre;text-decoration:none;letter-spacing:normal;text-transform:none;word-wrap:break-word;content:attr(aria-label);pointer-events:none;-webkit-font-smoothing:subpixel-antialiased}.yoast-tooltip-alt:after{content:attr(data-label)}.yoast-tooltip:before{display:none;position:absolute;z-index:1000001;width:0;height:0;border:5px solid transparent;opacity:0;color:rgba(0,0,0,.8);content:"\00a0";pointer-events:none}@keyframes yoast-tooltip-appear{0%{opacity:0}to{opacity:1}}.yoast-tooltip:active:after,.yoast-tooltip:active:before,.yoast-tooltip:focus:after,.yoast-tooltip:focus:before,.yoast-tooltip:hover:after,.yoast-tooltip:hover:before{display:inline-block;text-decoration:none;animation-name:yoast-tooltip-appear;animation-duration:.1s;animation-timing-function:ease-in;animation-delay:.4s;animation-fill-mode:forwards}.yoast-tooltip-no-delay:active:after,.yoast-tooltip-no-delay:active:before,.yoast-tooltip-no-delay:focus:after,.yoast-tooltip-no-delay:focus:before,.yoast-tooltip-no-delay:hover:after,.yoast-tooltip-no-delay:hover:before{opacity:1;animation:none}.yoast-tooltip-multiline:active:after,.yoast-tooltip-multiline:focus:after,.yoast-tooltip-multiline:hover:after{display:table-cell}.yoast-tooltip-s:after,.yoast-tooltip-se:after,.yoast-tooltip-sw:after{top:100%;right:50%;margin-top:5px}.yoast-tooltip-s:before,.yoast-tooltip-se:before,.yoast-tooltip-sw:before{top:auto;right:50%;bottom:-5px;margin-right:-5px;border-bottom-color:rgba(0,0,0,.8)}.yoast-tooltip-se:after{right:auto;left:50%;margin-left:-15px}.yoast-tooltip-sw:after{margin-right:-15px}.yoast-tooltip-n:after,.yoast-tooltip-ne:after,.yoast-tooltip-nw:after{right:50%;bottom:100%;margin-bottom:5px}.yoast-tooltip-n:before,.yoast-tooltip-ne:before,.yoast-tooltip-nw:before{top:-5px;right:50%;bottom:auto;margin-right:-5px;border-top-color:rgba(0,0,0,.8)}.yoast-tooltip-ne:after{right:auto;left:50%;margin-left:-15px}.yoast-tooltip-nw:after{margin-right:-15px}.yoast-tooltip-n:after,.yoast-tooltip-s:after{transform:translateX(50%)}.yoast-tooltip-w:after{right:100%;bottom:50%;margin-right:5px;transform:translateY(50%)}.yoast-tooltip-w:before{top:50%;bottom:50%;left:-5px;margin-top:-5px;border-left-color:rgba(0,0,0,.8)}.yoast-tooltip-e:after{bottom:50%;left:100%;margin-left:5px;transform:translateY(50%)}.yoast-tooltip-e:before{top:50%;right:-5px;bottom:50%;margin-top:-5px;border-right-color:rgba(0,0,0,.8)}.yoast-tooltip-multiline:after{width:250px;width:-webkit-max-content;width:max-content;max-width:250px;border-collapse:initial;white-space:pre-line;word-wrap:normal;word-break:break-word}.yoast-tooltip-multiline.yoast-tooltip-n:after,.yoast-tooltip-multiline.yoast-tooltip-s:after{right:auto;left:50%;transform:translateX(-50%)}.yoast-tooltip-multiline.yoast-tooltip-e:after,.yoast-tooltip-multiline.yoast-tooltip-w:after{right:100%}@media screen and (min-width:0\0){.yoast-tooltip-multiline:after{width:250px}}.yoast-tooltip-sticky:after,.yoast-tooltip-sticky:before{display:inline-block}.yoast-tooltip-sticky.yoast-tooltip-multiline:after{display:table-cell}@media only screen and (-moz-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:2dppx),only screen and (min-resolution:192dpi){.yoast-tooltip-w:after{margin-right:4.5px}}.draftJsMentionPlugin__mention__29BEd,.draftJsMentionPlugin__mention__29BEd:visited{color:#575f67;cursor:pointer;display:inline-block;background:#e6f3ff;padding-left:2px;padding-right:2px;border-radius:2px;text-decoration:none}.draftJsMentionPlugin__mention__29BEd:focus,.draftJsMentionPlugin__mention__29BEd:hover{color:#677584;background:#edf5fd;outline:0}.draftJsMentionPlugin__mention__29BEd:active{color:#222;background:#455261}.draftJsMentionPlugin__mentionSuggestionsEntry__3mSwm{padding:7px 10px 3px;transition:background-color .4s cubic-bezier(.27,1.27,.48,.56)}.draftJsMentionPlugin__mentionSuggestionsEntry__3mSwm:active{background-color:#cce7ff}.draftJsMentionPlugin__mentionSuggestionsEntryFocused__3LcTd{background-color:#e6f3ff}.draftJsMentionPlugin__mentionSuggestionsEntryText__3Jobq{display:inline-block;margin-left:8px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:368px;font-size:.9em;margin-bottom:.2em}.draftJsMentionPlugin__mentionSuggestionsEntryAvatar__1xgA9{display:inline-block;width:24px;height:24px;border-radius:12px}.draftJsMentionPlugin__mentionSuggestions__2DWjA{border:1px solid #eee;margin-top:.4em;position:absolute;min-width:220px;max-width:440px;background:#fff;border-radius:2px;box-shadow:0 4px 30px 0 #dcdcdc;cursor:pointer;padding-top:8px;padding-bottom:8px;z-index:2;display:flex;flex-direction:column;box-sizing:border-box;transform:scale(0)}
2
-
3
- /*!rtl:begin:ignore*/.DraftEditor-editorContainer,.DraftEditor-root,.public-DraftEditor-content{height:inherit;text-align:initial}.public-DraftEditor-content[contenteditable=true]{-webkit-user-modify:read-write-plaintext-only}.DraftEditor-root{position:relative}.DraftEditor-editorContainer{background-color:hsla(0,0%,100%,0);border-left:.1px solid transparent;position:relative;z-index:1}.public-DraftEditor-block{position:relative}.DraftEditor-alignLeft .public-DraftStyleDefault-block{text-align:left}.DraftEditor-alignLeft .public-DraftEditorPlaceholder-root{left:0;text-align:left}.DraftEditor-alignCenter .public-DraftStyleDefault-block{text-align:center}.DraftEditor-alignCenter .public-DraftEditorPlaceholder-root{margin:0 auto;text-align:center;width:100%}.DraftEditor-alignRight .public-DraftStyleDefault-block{text-align:right}.DraftEditor-alignRight .public-DraftEditorPlaceholder-root{right:0;text-align:right}.public-DraftEditorPlaceholder-root{color:#9197a3;position:absolute;z-index:1}.public-DraftEditorPlaceholder-hasFocus{color:#bdc1c9}.DraftEditorPlaceholder-hidden{display:none}.public-DraftStyleDefault-block{position:relative;white-space:pre-wrap}.public-DraftStyleDefault-ltr{direction:ltr;text-align:left}.public-DraftStyleDefault-rtl{direction:rtl;text-align:right}.public-DraftStyleDefault-listLTR{direction:ltr}.public-DraftStyleDefault-listRTL{direction:rtl}.public-DraftStyleDefault-ol,.public-DraftStyleDefault-ul{margin:16px 0;padding:0}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listLTR{margin-left:1.5em}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listRTL{margin-right:1.5em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listLTR{margin-left:3em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listRTL{margin-right:3em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listLTR{margin-left:4.5em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listRTL{margin-right:4.5em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listLTR{margin-left:6em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listRTL{margin-right:6em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listLTR{margin-left:7.5em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listRTL{margin-right:7.5em}.public-DraftStyleDefault-unorderedListItem{list-style-type:square;position:relative}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth0{list-style-type:disc}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth1{list-style-type:circle}.public-DraftStyleDefault-orderedListItem{list-style-type:none;position:relative}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listLTR:before{left:-36px;position:absolute;text-align:right;width:30px}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listRTL:before{position:absolute;right:-36px;text-align:left;width:30px}.public-DraftStyleDefault-orderedListItem:before{content:counter(ol0) ". ";counter-increment:ol0}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth1:before{content:counter(ol1) ". ";counter-increment:ol1}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth2:before{content:counter(ol2) ". ";counter-increment:ol2}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth3:before{content:counter(ol3) ". ";counter-increment:ol3}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth4:before{content:counter(ol4) ". ";counter-increment:ol4}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-reset{counter-reset:ol0}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-reset{counter-reset:ol1}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-reset{counter-reset:ol2}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-reset{counter-reset:ol3}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-reset{counter-reset:ol4}
4
-
5
- /*!rtl:end:ignore*/#wpseo_meta{box-sizing:border-box}#wpseo_meta *,#wpseo_meta :after,#wpseo_meta :before{box-sizing:inherit}.DraftEditor-root [data-block]{margin:0}#edittag>#wp-description-wrap{display:none}#wp-description-wrap .wp-editor-area{border:0}.term-description-wrap td>textarea#description{min-height:530px}ul.wpseo-metabox-tabs{display:none;margin-top:6px;margin-bottom:0}ul.wpseo-metabox-tabs:after{content:"";display:table;clear:both}.wpseo-metabox-tabs-div{margin:0 5px 5px}.wpseo-metabox-tabs-div ul{list-style:none}#wpseo-meta-section-addons{padding:0 5px 5px}#wpseo-meta-section-addons .wpseo-metabox-tabs-div{margin:0}ul.wpseo-metabox-tabs li.active{background-color:#fdfdfd}.wpseo-meta-section,.wpseo-meta-section-react{display:none;width:100%;min-height:100%;height:auto;vertical-align:top;box-shadow:0 1px 2px rgba(0,0,0,.2);border-top:1px solid #e8e8e8}.wpseo-meta-section-react.active,.wpseo-meta-section.active{background:#fff;position:relative;z-index:12}.wpseo-meta-section.active{display:inline-block}.wpseo-meta-section-react.active{display:block;margin-bottom:10px}.wpseo-metabox-content{max-width:800px;padding-top:16px}.wpseo-metabox-menu{padding:0;background-color:#fff}.wpseo-metabox-menu ul{margin:0 1px 0 0;padding:0 0 0 16px;display:flex;align-items:flex-end;flex-wrap:wrap;flex-flow:wrap-reverse}.wpseo-metabox-menu ul li:first-child{z-index:10}.wpseo-metabox-menu ul li:nth-child(2){z-index:9}.wpseo-metabox-menu ul li:nth-child(3){z-index:8}.wpseo-metabox-menu ul li:nth-child(4){z-index:7}.wpseo-metabox-menu ul li:nth-child(5){z-index:6}.wpseo-metabox-menu ul li:nth-child(6){z-index:5}.wpseo-metabox-menu ul li{box-shadow:0 0 4px 0 rgba(0,0,0,.1);height:32px;margin-left:-1px;margin-bottom:-1px;text-align:center;position:relative;background-color:#f8f8f8}.wpseo-metabox-menu ul li a{color:#0073aa;display:flex;align-items:center;border:1px solid #ddd}.wpseo-metabox-menu ul li .yst-traffic-light{height:20px;width:auto;margin-right:10px;margin-left:4px}.wpseo-metabox-menu ul li span.dashicons{margin-right:8px}.wpseo-metabox-menu ul li span.wpseo-buy-premium{color:#a4286a}.wpseo-metabox-menu ul li span.wpseo-buy-premium:hover{color:#832055}.wpseo-metabox-menu ul li.active{height:36px;margin-top:-4px;z-index:11;background-color:#fff}.wpseo-metabox-menu ul li.active a{height:36px;color:#444}.wpseo-metabox-menu ul li.active span.wpseo-buy-premium{color:#a4286a;border-color:#a4286a}.wpseo-metabox-menu ul li.active span.wpseo-buy-premium:hover{color:#832055;border-color:#832055}.wpseo-metabox-menu a{height:32px;padding:0 8px;text-decoration:none}ul.wpseo-metabox-tabs li{float:left;margin-right:5px;margin-bottom:-1px;padding:0;border:1px solid #dfdfdf;border-bottom:0}ul.wpseo-metabox-tabs li .wpseo-keyword{display:inline-block;vertical-align:top;max-width:8em;max-width:8rem;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.wpseotab{display:none;padding:16px;border:1px solid #ddd;background-color:#fdfdfd}.wpseotab .wpseo-cornerstone-checkbox{margin-right:.5em}.wpseotab.content{padding:20px 15px}.wpseotab.active{display:block}.wpseo-metabox-tabs .wpseo_tablink{display:inline-block;vertical-align:top;padding:5px 12px 6px;text-decoration:none}.wpseo-metabox-tabs .wpseo_content_tab a{padding-right:12px}.wpseo-metabox-tabs .wpseo-score-icon{margin-left:0}#wpseo-meta-section-social .wpseo-metabox-tabs .wpseo_tablink{padding:5px 7px}.wpseo-metabox-tabs .wpseo_tablink .dashicons{width:16px;height:16px;font-size:16px}.wpseo-metabox-sidebar .dashicons{width:30px;height:30px;font-size:30px}.wpseo-metabox-tabs-div div.wpseo-tabs-panel{overflow:auto;padding:.5em .9em;border:1px solid}#wpseo_meta .inside{margin:0}#wpseo_meta .inside:after{content:"";display:table;clear:both}#wpseo_meta .postbox .inside .wpseotab{font-size:13px!important}.wpseo-form .select2-container,.wpseo-form input,.wpseo-form label,.wpseo-form p.error-message,.wpseo-form textarea{max-width:600px}.wpseo-form fieldset{padding-top:5px}.wpseo-form legend{font-weight:600}.wpseo-form label{display:block;font-weight:600}.wpseo-form input[type=checkbox]+label,.wpseo-form input[type=radio]+label{display:inline-block;font-weight:400}.wpseo-form fieldset,.wpseo-form label{margin-top:2em;margin-bottom:.5em}.wpseo-form input[type=checkbox],.wpseo-form input[type=checkbox]+label{margin-top:2em;margin-bottom:0;font-size:1em}.wpseo-form fieldset:first-child,.wpseo-form input[type=checkbox]:first-child,.wpseo-form input[type=checkbox]:first-child+label,.wpseo-form label:first-child{margin-top:10px}.wpseo-form input[type=radio]{margin-top:0}.wpseo-form input[type=radio]+label{margin:0 1em 0 0}.wpseo-form p.error-message{margin:.5em 0}.wpseo-form select[multiple]{margin-top:0}.yoast-metabox__description{max-width:600px;margin:.5em 0}.wpseo_image_upload_button{margin-left:3px}.good,.warn,.wrong{font-weight:600}.good{color:green}.warn{color:maroon}.wrong{color:#dc3232}#current_seo_title span{padding:2px 5px;background-color:#ffffe0}#focuskwresults ul{margin:0}#focuskwresults li,#focuskwresults p{font-size:13px}#focuskwresults li{margin:0 0 0 20px;list-style-type:disc}.wpseo_hidden{display:none}.wpseo_msg{margin:5px 0 10px;padding:0 5px;border:1px solid #e6db55;background-color:#ffffe0}ul.wpseo-metabox-tabs li.wpseo-tab-add-keyword{border:1px dashed #dfdfdf;border-bottom:none}.wpseo-tab-add-keyword .wpseo-add-keyword.button{height:auto;padding:5px 12px 5px 10px;vertical-align:top;font-size:inherit;line-height:inherit;font-weight:700;box-shadow:none;background:none;text-decoration:none}.wpseo-tab-add-keyword .wpseo-add-keyword.button:focus{box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}.wpseo-tab-add-keyword .wpseo-add-keyword.button:active{transform:none}.wpseo-add-keyword-plus{display:inline-block;vertical-align:top;margin:-1px 3px 0 0;font-size:20px}#wpseo-add-keyword-popup-title{margin:1em 0;font-size:1.3em}.snippet-editor__button.snippet-editor__edit-button:focus{border-color:#5b9dd9;outline:none;color:#23282d;background-color:#fafafa;box-shadow:0 0 3px rgba(0,115,170,.8)}.wpseo-admin-page .subsubsub li{display:inline;max-width:none}.yoast-seo-help-container{float:left;width:100%;max-width:none}.yoast-seo-help-container .yoast-help-panel{margin:.5em 0!important}.wpseo_content_wrapper p.search-box{margin:10px 0 5px}.wpseo-metabox-tabs .active a{color:#333}#wpseotab .ui-widget-content .ui-state-hover{border:1px solid #dfdfdf;color:#333;background:#f1f1f1}.yst-traffic-light{width:19px;height:30px;margin:0 0 0 5px}.yst-traffic-light .traffic-light-color{display:none}.yst-traffic-light.bad .traffic-light-red,.yst-traffic-light.good .traffic-light-green,.yst-traffic-light.init .traffic-light-init,.yst-traffic-light.na .traffic-light-empty,.yst-traffic-light.ok .traffic-light-orange{display:inline}#wpseo-score{float:left;margin:0 5px 0 -5px}.yoast-seo-score .yoast-logo.svg{float:left;width:18px;margin-right:7px;height:18px;background:url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20role%3D%22img%22%20aria%2Dhidden%3D%22true%22%20focusable%3D%22false%22%3E%3Cpath%20fill%3D%22%23999%22%20d%3D%22M403%20218h691l%2D26%2072h%2D665q%2D110%200%2D188%2E5%2079t%2D78%2E5%20189v771q0%2095%2060%2E5%20169%2E5t153%2E5%2093%2E5q23%205%2098%205v72h%2D45q%2D140%200%2D239%2E5%2D100t%2D99%2E5%2D240v%2D771q0%2D140%2099%2E5%2D240t239%2E5%2D100zm851%2D218h247l%2D482%201294q%2D23%2061%2D40%2E5%20103%2E5t%2D45%2098%2D54%2093%2E5%2D64%2E5%2078%2E5%2D79%2E5%2065%2D95%2E5%2041%2D116%2018%2E5v%2D195q163%2D26%20220%2D182%2020%2D52%2020%2D105%200%2D54%2D20%2D106l%2D285%2D733h228l187%20585zm474%20558v1111h%2D795q37%2D55%2045%2D73h678v%2D1038q0%2D85%2D49%2E5%2D155t%2D129%2E5%2D99l25%2D67q101%2034%20163%2E5%20123%2E5t62%2E5%20197%2E5z%22%2F%3E%3C%2Fsvg%3E") no-repeat;background-size:18px}.yoast-seo-score .yoast-logo.svg.good{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20role%3D%22img%22%20aria%2Dhidden%3D%22true%22%20focusable%3D%22false%22%3E%3Cpath%20fill%3D%22%237ad03a%22%20d%3D%22M403%20218h691l%2D26%2072h%2D665q%2D110%200%2D188%2E5%2079t%2D78%2E5%20189v771q0%2095%2060%2E5%20169%2E5t153%2E5%2093%2E5q23%205%2098%205v72h%2D45q%2D140%200%2D239%2E5%2D100t%2D99%2E5%2D240v%2D771q0%2D140%2099%2E5%2D240t239%2E5%2D100zm851%2D218h247l%2D482%201294q%2D23%2061%2D40%2E5%20103%2E5t%2D45%2098%2D54%2093%2E5%2D64%2E5%2078%2E5%2D79%2E5%2065%2D95%2E5%2041%2D116%2018%2E5v%2D195q163%2D26%20220%2D182%2020%2D52%2020%2D105%200%2D54%2D20%2D106l%2D285%2D733h228l187%20585zm474%20558v1111h%2D795q37%2D55%2045%2D73h678v%2D1038q0%2D85%2D49%2E5%2D155t%2D129%2E5%2D99l25%2D67q101%2034%20163%2E5%20123%2E5t62%2E5%20197%2E5z%22%2F%3E%3C%2Fsvg%3E")}.yoast-seo-score .yoast-logo.svg.ok{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20role%3D%22img%22%20aria%2Dhidden%3D%22true%22%20focusable%3D%22false%22%3E%3Cpath%20fill%3D%22%23ee7c1b%22%20d%3D%22M403%20218h691l%2D26%2072h%2D665q%2D110%200%2D188%2E5%2079t%2D78%2E5%20189v771q0%2095%2060%2E5%20169%2E5t153%2E5%2093%2E5q23%205%2098%205v72h%2D45q%2D140%200%2D239%2E5%2D100t%2D99%2E5%2D240v%2D771q0%2D140%2099%2E5%2D240t239%2E5%2D100zm851%2D218h247l%2D482%201294q%2D23%2061%2D40%2E5%20103%2E5t%2D45%2098%2D54%2093%2E5%2D64%2E5%2078%2E5%2D79%2E5%2065%2D95%2E5%2041%2D116%2018%2E5v%2D195q163%2D26%20220%2D182%2020%2D52%2020%2D105%200%2D54%2D20%2D106l%2D285%2D733h228l187%20585zm474%20558v1111h%2D795q37%2D55%2045%2D73h678v%2D1038q0%2D85%2D49%2E5%2D155t%2D129%2E5%2D99l25%2D67q101%2034%20163%2E5%20123%2E5t62%2E5%20197%2E5z%22%2F%3E%3C%2Fsvg%3E")}.yoast-seo-score .yoast-logo.svg.bad{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20role%3D%22img%22%20aria%2Dhidden%3D%22true%22%20focusable%3D%22false%22%3E%3Cpath%20fill%3D%22%23dc3232%22%20d%3D%22M403%20218h691l%2D26%2072h%2D665q%2D110%200%2D188%2E5%2079t%2D78%2E5%20189v771q0%2095%2060%2E5%20169%2E5t153%2E5%2093%2E5q23%205%2098%205v72h%2D45q%2D140%200%2D239%2E5%2D100t%2D99%2E5%2D240v%2D771q0%2D140%2099%2E5%2D240t239%2E5%2D100zm851%2D218h247l%2D482%201294q%2D23%2061%2D40%2E5%20103%2E5t%2D45%2098%2D54%2093%2E5%2D64%2E5%2078%2E5%2D79%2E5%2065%2D95%2E5%2041%2D116%2018%2E5v%2D195q163%2D26%20220%2D182%2020%2D52%2020%2D105%200%2D54%2D20%2D106l%2D285%2D733h228l187%20585zm474%20558v1111h%2D795q37%2D55%2045%2D73h678v%2D1038q0%2D85%2D49%2E5%2D155t%2D129%2E5%2D99l25%2D67q101%2034%20163%2E5%20123%2E5t62%2E5%20197%2E5z%22%2F%3E%3C%2Fsvg%3E")}.yoast-seo-score .yoast-logo.svg.na{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20role%3D%22img%22%20aria%2Dhidden%3D%22true%22%20focusable%3D%22false%22%3E%3Cpath%20fill%3D%22%23999%22%20d%3D%22M403%20218h691l%2D26%2072h%2D665q%2D110%200%2D188%2E5%2079t%2D78%2E5%20189v771q0%2095%2060%2E5%20169%2E5t153%2E5%2093%2E5q23%205%2098%205v72h%2D45q%2D140%200%2D239%2E5%2D100t%2D99%2E5%2D240v%2D771q0%2D140%2099%2E5%2D240t239%2E5%2D100zm851%2D218h247l%2D482%201294q%2D23%2061%2D40%2E5%20103%2E5t%2D45%2098%2D54%2093%2E5%2D64%2E5%2078%2E5%2D79%2E5%2065%2D95%2E5%2041%2D116%2018%2E5v%2D195q163%2D26%20220%2D182%2020%2D52%2020%2D105%200%2D54%2D20%2D106l%2D285%2D733h228l187%20585zm474%20558v1111h%2D795q37%2D55%2045%2D73h678v%2D1038q0%2D85%2D49%2E5%2D155t%2D129%2E5%2D99l25%2D67q101%2034%20163%2E5%20123%2E5t62%2E5%20197%2E5z%22%2F%3E%3C%2Fsvg%3E")}.yoast-seo-score .yoast-logo.svg.noindex{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20role%3D%22img%22%20aria%2Dhidden%3D%22true%22%20focusable%3D%22false%22%3E%3Cpath%20fill%3D%22%231e8cbe%22%20d%3D%22M403%20218h691l%2D26%2072h%2D665q%2D110%200%2D188%2E5%2079t%2D78%2E5%20189v771q0%2095%2060%2E5%20169%2E5t153%2E5%2093%2E5q23%205%2098%205v72h%2D45q%2D140%200%2D239%2E5%2D100t%2D99%2E5%2D240v%2D771q0%2D140%2099%2E5%2D240t239%2E5%2D100zm851%2D218h247l%2D482%201294q%2D23%2061%2D40%2E5%20103%2E5t%2D45%2098%2D54%2093%2E5%2D64%2E5%2078%2E5%2D79%2E5%2065%2D95%2E5%2041%2D116%2018%2E5v%2D195q163%2D26%20220%2D182%2020%2D52%2020%2D105%200%2D54%2D20%2D106l%2D285%2D733h228l187%20585zm474%20558v1111h%2D795q37%2D55%2045%2D73h678v%2D1038q0%2D85%2D49%2E5%2D155t%2D129%2E5%2D99l25%2D67q101%2034%20163%2E5%20123%2E5t62%2E5%20197%2E5z%22%2F%3E%3C%2Fsvg%3E")}.term-php .wpseo-taxonomy-metabox-postbox>h2{margin:0;padding:8px 12px;border-bottom:1px solid #eee;font-size:14px;line-height:1.4}#TB_window #TB_ajaxContent p{padding:5px 0 0;margin:5px 0 0}#TB_window #TB_ajaxContent ul{margin:5px 0 10px}#TB_window #TB_ajaxContent li{list-style:none;margin:5px 0 0}#TB_window #TB_ajaxContent li:before{content:"+";margin:0 10px 0 0;font-weight:700}.yoast-section__heading-icon-list{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20role%3D%22img%22%20aria%2Dhidden%3D%22true%22%20focusable%3D%22false%22%3E%3Cpath%20fill%3D%22%23555555%22%20d%3D%22M384%201408q0%2080%2D56%20136t%2D136%2056%2D136%2D56%2D56%2D136%2056%2D136%20136%2D56%20136%2056%2056%20136zm0%2D512q0%2080%2D56%20136t%2D136%2056%2D136%2D56%2D56%2D136%2056%2D136%20136%2D56%20136%2056%2056%20136zm1408%20416v192q0%2013%2D9%2E5%2022%2E5t%2D22%2E5%209%2E5h%2D1216q%2D13%200%2D22%2E5%2D9%2E5t%2D9%2E5%2D22%2E5v%2D192q0%2D13%209%2E5%2D22%2E5t22%2E5%2D9%2E5h1216q13%200%2022%2E5%209%2E5t9%2E5%2022%2E5zm%2D1408%2D928q0%2080%2D56%20136t%2D136%2056%2D136%2D56%2D56%2D136%2056%2D136%20136%2D56%20136%2056%2056%20136zm1408%20416v192q0%2013%2D9%2E5%2022%2E5t%2D22%2E5%209%2E5h%2D1216q%2D13%200%2D22%2E5%2D9%2E5t%2D9%2E5%2D22%2E5v%2D192q0%2D13%209%2E5%2D22%2E5t22%2E5%2D9%2E5h1216q13%200%2022%2E5%209%2E5t9%2E5%2022%2E5zm0%2D512v192q0%2013%2D9%2E5%2022%2E5t%2D22%2E5%209%2E5h%2D1216q%2D13%200%2D22%2E5%2D9%2E5t%2D9%2E5%2D22%2E5v%2D192q0%2D13%209%2E5%2D22%2E5t22%2E5%2D9%2E5h1216q13%200%2022%2E5%209%2E5t9%2E5%2022%2E5z%22%2F%3E%3C%2Fsvg%3E")}.yoast-section__heading-icon-key{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20role%3D%22img%22%20aria%2Dhidden%3D%22true%22%20focusable%3D%22false%22%3E%3Cpath%20fill%3D%22%23555555%22%20d%3D%22M832%20512q0%2D80%2D56%2D136t%2D136%2D56%2D136%2056%2D56%20136q0%2042%2019%2083%2D41%2D19%2D83%2D19%2D80%200%2D136%2056t%2D56%20136%2056%20136%20136%2056%20136%2D56%2056%2D136q0%2D42%2D19%2D83%2041%2019%2083%2019%2080%200%20136%2D56t56%2D136zm851%20704q0%2017%2D49%2066t%2D66%2049q%2D9%200%2D28%2E5%2D16t%2D36%2E5%2D33%2D38%2E5%2D40%2D24%2E5%2D26l%2D96%2096%20220%20220q28%2028%2028%2068%200%2042%2D39%2081t%2D81%2039q%2D40%200%2D68%2D28l%2D671%2D671q%2D176%20131%2D365%20131%2D163%200%2D265%2E5%2D102%2E5t%2D102%2E5%2D265%2E5q0%2D160%2095%2D313t248%2D248%20313%2D95q163%200%20265%2E5%20102%2E5t102%2E5%20265%2E5q0%20189%2D131%20365l355%20355%2096%2D96q%2D3%2D3%2D26%2D24%2E5t%2D40%2D38%2E5%2D33%2D36%2E5%2D16%2D28%2E5q0%2D17%2049%2D66t66%2D49q13%200%2023%2010%206%206%2046%2044%2E5t82%2079%2E5%2086%2E5%2086%2073%2078%2028%2E5%2041z%22%2F%3E%3C%2Fsvg%3E")}.yoast-section__heading-icon-edit{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20role%3D%22img%22%20aria%2Dhidden%3D%22true%22%20focusable%3D%22false%22%3E%3Cpath%20fill%3D%22%23555555%22%20d%3D%22M491%201536l91%2D91%2D235%2D235%2D91%2091v107h128v128h107zm523%2D928q0%2D22%2D22%2D22%2D10%200%2D17%207l%2D542%20542q%2D7%207%2D7%2017%200%2022%2022%2022%2010%200%2017%2D7l542%2D542q7%2D7%207%2D17zm%2D54%2D192l416%20416%2D832%20832h%2D416v%2D416zm683%2096q0%2053%2D37%2090l%2D166%20166%2D416%2D416%20166%2D165q36%2D38%2090%2D38%2053%200%2091%2038l235%20234q37%2039%2037%2091z%22%20%2F%3E%3C%2Fsvg%3E")}.yoast-tooltip.yoast-tooltip-hidden:after,.yoast-tooltip.yoast-tooltip-hidden:before{display:none}.screen-reader-text.wpseo-generic-tab-textual-score,.screen-reader-text.wpseo-keyword-tab-textual-score{display:block}.yoast-notice-go-premium{border-left-color:#a4286a;background:#f1f1f1;margin:0}.editor-styles-wrapper mark.annotation-text-yoast{background-color:#e1bee7}@media screen and (max-width:782px){.wpseo-metabox-buy-premium .wpseo-buy-premium{display:inline-block;width:20px;height:20px;margin-right:5px;padding:0}.yoast-help-panel{max-width:none!important}#wpseo-crawl-issues-table-form .subsubsub{float:none;max-width:calc(100vw - 20px)}#wpseo-crawl-issues-table-form .yoast-help-button{margin-top:3px}.wpseotab select[multiple]{height:auto!important}}@media screen and (max-width:600px){.wpseotab.content{padding:16px 0}}.wpseo-score-icon-container{height:20px;width:20px;margin-right:8px;display:flex;justify-content:center;align-items:center}
 
 
 
 
 
css/dist/metabox-1410-rtl.css ADDED
@@ -0,0 +1 @@
 
1
+ :root{--svg-icon-info:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23A4286A' d='M1152 1376v-160q0-14-9-23t-23-9h-96V672q0-14-9-23t-23-9H672q-14 0-23 9t-9 23v160q0 14 9 23t23 9h96v320h-96q-14 0-23 9t-9 23v160q0 14 9 23t23 9h448q14 0 23-9t9-23zm-128-896V320q0-14-9-23t-23-9H800q-14 0-23 9t-9 23v160q0 14 9 23t23 9h192q14 0 23-9t9-23zm640 416q0 209-103 385.5T1281.5 1561 896 1664t-385.5-103T231 1281.5 128 896t103-385.5T510.5 231 896 128t385.5 103T1561 510.5 1664 896z'/%3E%3C/svg%3E");--svg-icon-check:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%2377B227' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/%3E%3C/svg%3E");--svg-icon-check-ok:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%2377B227' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/%3E%3C/svg%3E");--svg-icon-caret-right:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 192 512' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z'/%3E%3C/svg%3E");--svg-icon-caret-left:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 192 512' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z'/%3E%3C/svg%3E");--svg-icon-eye:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M1664 960q-152-236-381-353 61 104 61 225 0 185-131.5 316.5T896 1280t-316.5-131.5T448 832q0-121 61-225-229 117-381 353 133 205 333.5 326.5T896 1408t434.5-121.5T1664 960zM944 576q0-20-14-34t-34-14q-125 0-214.5 89.5T592 832q0 20 14 34t34 14 34-14 14-34q0-86 61-147t147-61q20 0 34-14t14-34zm848 384q0 34-20 69-140 230-376.5 368.5T896 1536t-499.5-139T20 1029Q0 994 0 960t20-69q140-229 376.5-368T896 384t499.5 139T1772 891q20 35 20 69z'/%3E%3C/svg%3E");--svg-icon-list:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M384 1408q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm0-512q0 80-56 136t-136 56-136-56T0 896t56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5H544q-13 0-22.5-9.5T512 1504v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zM384 384q0 80-56 136t-136 56-136-56T0 384t56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5H544q-13 0-22.5-9.5T512 992V800q0-13 9.5-22.5T544 768h1216q13 0 22.5 9.5t9.5 22.5zm0-512v192q0 13-9.5 22.5T1760 512H544q-13 0-22.5-9.5T512 480V288q0-13 9.5-22.5T544 256h1216q13 0 22.5 9.5t9.5 22.5z'/%3E%3C/svg%3E");--svg-icon-key:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M832 512q0-80-56-136t-136-56-136 56-56 136q0 42 19 83-41-19-83-19-80 0-136 56t-56 136 56 136 136 56 136-56 56-136q0-42-19-83 41 19 83 19 80 0 136-56t56-136zm851 704q0 17-49 66t-66 49q-9 0-28.5-16t-36.5-33-38.5-40-24.5-26l-96 96 220 220q28 28 28 68 0 42-39 81t-81 39q-40 0-68-28l-671-671q-176 131-365 131-163 0-265.5-102.5T0 784q0-160 95-313t248-248 313-95q163 0 265.5 102.5T1024 496q0 189-131 365l355 355 96-96q-3-3-26-24.5t-40-38.5-33-36.5-16-28.5q0-17 49-66t66-49q13 0 23 10 6 6 46 44.5t82 79.5 86.5 86 73 78 28.5 41z'/%3E%3C/svg%3E");--svg-icon-edit:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M491 1536l91-91-235-235-91 91v107h128v128h107zm523-928q0-22-22-22-10 0-17 7l-542 542q-7 7-7 17 0 22 22 22 10 0 17-7l542-542q7-7 7-17zm-54-192l416 416-832 832H128v-416zm683 96q0 53-37 90l-166 166-416-416 166-165q36-38 90-38 53 0 91 38l235 234q37 39 37 91z'/%3E%3C/svg%3E");--svg-icon-yoast:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23999' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-good:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%237ad03a' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-ok:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23ee7c1b' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-bad:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23dc3232' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-noindex:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%231e8cbe' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E")}.draftJsMentionPlugin__mention__29BEd,.draftJsMentionPlugin__mention__29BEd:visited{color:#575f67;cursor:pointer;display:inline-block;background:#e6f3ff;padding-right:2px;padding-left:2px;border-radius:2px;text-decoration:none}.draftJsMentionPlugin__mention__29BEd:focus,.draftJsMentionPlugin__mention__29BEd:hover{color:#677584;background:#edf5fd;outline:0}.draftJsMentionPlugin__mention__29BEd:active{color:#222;background:#455261}.draftJsMentionPlugin__mentionSuggestionsEntry__3mSwm{padding:7px 10px 3px;transition:background-color .4s cubic-bezier(.27,1.27,.48,.56)}.draftJsMentionPlugin__mentionSuggestionsEntry__3mSwm:active{background-color:#cce7ff}.draftJsMentionPlugin__mentionSuggestionsEntryFocused__3LcTd{background-color:#e6f3ff}.draftJsMentionPlugin__mentionSuggestionsEntryText__3Jobq{display:inline-block;margin-right:8px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:368px;font-size:.9em;margin-bottom:.2em}.draftJsMentionPlugin__mentionSuggestionsEntryAvatar__1xgA9{display:inline-block;width:24px;height:24px;border-radius:12px}.draftJsMentionPlugin__mentionSuggestions__2DWjA{border:1px solid #eee;margin-top:.4em;position:absolute;min-width:220px;max-width:440px;background:#fff;border-radius:2px;box-shadow:0 4px 30px 0 #dcdcdc;cursor:pointer;padding-top:8px;padding-bottom:8px;z-index:2;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;box-sizing:border-box;-webkit-transform:scale(0);transform:scale(0)}.DraftEditor-editorContainer,.DraftEditor-root,.public-DraftEditor-content{height:inherit;text-align:initial}.public-DraftEditor-content[contenteditable=true]{-webkit-user-modify:read-write-plaintext-only}.DraftEditor-root{position:relative}.DraftEditor-editorContainer{background-color:hsla(0,0%,100%,0);border-left:.1px solid transparent;position:relative;z-index:1}.public-DraftEditor-block{position:relative}.DraftEditor-alignLeft .public-DraftStyleDefault-block{text-align:left}.DraftEditor-alignLeft .public-DraftEditorPlaceholder-root{left:0;text-align:left}.DraftEditor-alignCenter .public-DraftStyleDefault-block{text-align:center}.DraftEditor-alignCenter .public-DraftEditorPlaceholder-root{margin:0 auto;text-align:center;width:100%}.DraftEditor-alignRight .public-DraftStyleDefault-block{text-align:right}.DraftEditor-alignRight .public-DraftEditorPlaceholder-root{right:0;text-align:right}.public-DraftEditorPlaceholder-root{color:#9197a3;position:absolute;z-index:1}.public-DraftEditorPlaceholder-hasFocus{color:#bdc1c9}.DraftEditorPlaceholder-hidden{display:none}.public-DraftStyleDefault-block{position:relative;white-space:pre-wrap}.public-DraftStyleDefault-ltr{direction:ltr;text-align:left}.public-DraftStyleDefault-rtl{direction:rtl;text-align:right}.public-DraftStyleDefault-listLTR{direction:ltr}.public-DraftStyleDefault-listRTL{direction:rtl}.public-DraftStyleDefault-ol,.public-DraftStyleDefault-ul{margin:16px 0;padding:0}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listLTR{margin-left:1.5em}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listRTL{margin-right:1.5em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listLTR{margin-left:3em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listRTL{margin-right:3em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listLTR{margin-left:4.5em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listRTL{margin-right:4.5em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listLTR{margin-left:6em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listRTL{margin-right:6em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listLTR{margin-left:7.5em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listRTL{margin-right:7.5em}.public-DraftStyleDefault-unorderedListItem{list-style-type:square;position:relative}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth0{list-style-type:disc}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth1{list-style-type:circle}.public-DraftStyleDefault-orderedListItem{list-style-type:none;position:relative}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listLTR:before{left:-36px;position:absolute;text-align:right;width:30px}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listRTL:before{position:absolute;right:-36px;text-align:left;width:30px}.public-DraftStyleDefault-orderedListItem:before{content:counter(ol0) ". ";counter-increment:ol0}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth1:before{content:counter(ol1) ". ";counter-increment:ol1}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth2:before{content:counter(ol2) ". ";counter-increment:ol2}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth3:before{content:counter(ol3) ". ";counter-increment:ol3}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth4:before{content:counter(ol4) ". ";counter-increment:ol4}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-reset{counter-reset:ol0}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-reset{counter-reset:ol1}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-reset{counter-reset:ol2}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-reset{counter-reset:ol3}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-reset{counter-reset:ol4}#wpseo_meta{box-sizing:border-box}#wpseo_meta *,#wpseo_meta :after,#wpseo_meta :before{box-sizing:inherit}.DraftEditor-root [data-block]{margin:0}#edittag>#wp-description-wrap{display:none}#wp-description-wrap .wp-editor-area{border:0}.term-description-wrap td>textarea#description{min-height:530px}ul.wpseo-metabox-tabs{display:none;margin-top:6px;margin-bottom:0}ul.wpseo-metabox-tabs:after{content:"";display:table;clear:both}.wpseo-metabox-tabs-div{margin:0 5px 5px}.wpseo-metabox-tabs-div ul{list-style:none}#wpseo-meta-section-addons{padding:0 5px 5px}#wpseo-meta-section-addons .wpseo-metabox-tabs-div{margin:0}ul.wpseo-metabox-tabs li.active{background-color:#fdfdfd}.wpseo-meta-section,.wpseo-meta-section-react{display:none;width:100%;min-height:100%;height:auto;vertical-align:top;box-shadow:0 1px 2px rgba(0,0,0,.2);border-top:1px solid #e8e8e8}.wpseo-meta-section-react.active,.wpseo-meta-section.active{background:#fff;position:relative;z-index:12}.wpseo-meta-section.active{display:inline-block}.wpseo-meta-section-react.active{display:block;margin-bottom:10px}.wpseo-metabox-content{max-width:800px;padding-top:16px}.wpseo-metabox-menu{padding:0;background-color:#fff}.wpseo-metabox-menu ul{margin:0 0 0 1px;padding:0 16px 0 0;display:flex;align-items:flex-end;flex-wrap:wrap;flex-flow:wrap-reverse}.wpseo-metabox-menu ul li:first-child{z-index:10}.wpseo-metabox-menu ul li:nth-child(2){z-index:9}.wpseo-metabox-menu ul li:nth-child(3){z-index:8}.wpseo-metabox-menu ul li:nth-child(4){z-index:7}.wpseo-metabox-menu ul li:nth-child(5){z-index:6}.wpseo-metabox-menu ul li:nth-child(6){z-index:5}.wpseo-metabox-menu ul li{box-shadow:0 0 4px 0 rgba(0,0,0,.1);height:32px;margin-right:-1px;margin-bottom:-1px;text-align:center;position:relative;background-color:#f8f8f8}.wpseo-metabox-menu ul li a{color:#0073aa;display:flex;align-items:center;border:1px solid #ddd}.wpseo-metabox-menu ul li .yst-traffic-light{height:20px;width:auto;margin-left:10px;margin-right:4px}.wpseo-metabox-menu ul li span.dashicons{margin-left:8px}.wpseo-metabox-menu ul li span.wpseo-buy-premium{color:#a4286a}.wpseo-metabox-menu ul li span.wpseo-buy-premium:hover{color:#832055}.wpseo-metabox-menu ul li.active{height:36px;margin-top:-4px;z-index:11;background-color:#fff}.wpseo-metabox-menu ul li.active a{height:36px;color:#444}.wpseo-metabox-menu ul li.active span.wpseo-buy-premium{color:#a4286a;border-color:#a4286a}.wpseo-metabox-menu ul li.active span.wpseo-buy-premium:hover{color:#832055;border-color:#832055}.wpseo-metabox-menu a{height:32px;padding:0 8px;text-decoration:none}ul.wpseo-metabox-tabs li{float:right;margin-left:5px;margin-bottom:-1px;padding:0;border:1px solid #dfdfdf;border-bottom:0}ul.wpseo-metabox-tabs li .wpseo-keyword{display:inline-block;vertical-align:top;max-width:8em;max-width:8rem;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.wpseotab{display:none;padding:16px;border:1px solid #ddd;background-color:#fdfdfd}.wpseotab .wpseo-cornerstone-checkbox{margin-left:.5em}.wpseotab.content{padding:20px 15px}.wpseotab.active{display:block}.wpseo-metabox-tabs .wpseo_tablink{display:inline-block;vertical-align:top;padding:5px 12px 6px;text-decoration:none}.wpseo-metabox-tabs .wpseo_content_tab a{padding-left:12px}.wpseo-metabox-tabs .wpseo-score-icon{margin-right:0}#wpseo-meta-section-social .wpseo-metabox-tabs .wpseo_tablink{padding:5px 7px}.wpseo-metabox-tabs .wpseo_tablink .dashicons{width:16px;height:16px;font-size:16px}.wpseo-metabox-sidebar .dashicons{width:30px;height:30px;font-size:30px}.wpseo-metabox-tabs-div div.wpseo-tabs-panel{overflow:auto;padding:.5em .9em;border:1px solid}#wpseo_meta .inside{margin:0}#wpseo_meta .inside:after{content:"";display:table;clear:both}#wpseo_meta .postbox .inside .wpseotab{font-size:13px!important}.wpseo-form .select2-container,.wpseo-form input,.wpseo-form label,.wpseo-form p.error-message,.wpseo-form textarea{max-width:600px}.wpseo-form fieldset{padding-top:5px}.wpseo-form legend{font-weight:600}.wpseo-form label{display:block;font-weight:600}.wpseo-form input[type=checkbox]+label,.wpseo-form input[type=radio]+label{display:inline-block;font-weight:400}.wpseo-form fieldset,.wpseo-form label{margin-top:2em;margin-bottom:.5em}.wpseo-form input[type=checkbox],.wpseo-form input[type=checkbox]+label{margin-top:2em;margin-bottom:0;font-size:1em}.wpseo-form fieldset:first-child,.wpseo-form input[type=checkbox]:first-child,.wpseo-form input[type=checkbox]:first-child+label,.wpseo-form label:first-child{margin-top:10px}.wpseo-form input[type=radio]{margin-top:0}.wpseo-form input[type=radio]+label{margin:0 0 0 1em}.wpseo-form p.error-message{margin:.5em 0}.wpseo-form select[multiple]{margin-top:0}.yoast-metabox__description{max-width:600px;margin:.5em 0}.wpseo_image_upload_button{margin-right:3px}.good,.warn,.wrong{font-weight:600}.good{color:green}.warn{color:maroon}.wrong{color:#dc3232}#current_seo_title span{padding:2px 5px;background-color:#ffffe0}#focuskwresults ul{margin:0}#focuskwresults li,#focuskwresults p{font-size:13px}#focuskwresults li{margin:0 20px 0 0;list-style-type:disc}.wpseo_hidden{display:none}.wpseo_msg{margin:5px 0 10px;padding:0 5px;border:1px solid #e6db55;background-color:#ffffe0}ul.wpseo-metabox-tabs li.wpseo-tab-add-keyword{border:1px dashed #dfdfdf;border-bottom:none}.wpseo-tab-add-keyword .wpseo-add-keyword.button{height:auto;padding:5px 10px 5px 12px;vertical-align:top;font-size:inherit;line-height:inherit;font-weight:700;box-shadow:none;background:none;text-decoration:none}.wpseo-tab-add-keyword .wpseo-add-keyword.button:focus{box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}.wpseo-tab-add-keyword .wpseo-add-keyword.button:active{transform:none}.wpseo-add-keyword-plus{display:inline-block;vertical-align:top;margin:-1px 0 0 3px;font-size:20px}#wpseo-add-keyword-popup-title{margin:1em 0;font-size:1.3em}.snippet-editor__button.snippet-editor__edit-button:focus{border-color:#5b9dd9;outline:none;color:#23282d;background-color:#fafafa;box-shadow:0 0 3px rgba(0,115,170,.8)}.wpseo-admin-page .subsubsub li{display:inline;max-width:none}.yoast-seo-help-container{float:right;width:100%;max-width:none}.yoast-seo-help-container .yoast-help-panel{margin:.5em 0!important}.wpseo_content_wrapper p.search-box{margin:10px 0 5px}.wpseo-metabox-tabs .active a{color:#333}#wpseotab .ui-widget-content .ui-state-hover{border:1px solid #dfdfdf;color:#333;background:#f1f1f1}.yst-traffic-light{width:19px;height:30px;margin:0 5px 0 0}.yst-traffic-light .traffic-light-color{display:none}.yst-traffic-light.bad .traffic-light-red,.yst-traffic-light.good .traffic-light-green,.yst-traffic-light.init .traffic-light-init,.yst-traffic-light.na .traffic-light-empty,.yst-traffic-light.ok .traffic-light-orange{display:inline}.yoast-seo-score .yoast-logo.svg{float:right;width:18px;margin-left:7px;height:18px;background:var(--svg-icon-yoast) no-repeat;background-size:18px}.yoast-seo-score .yoast-logo.svg.good{background-image:var(--svg-icon-yoast-good)}.yoast-seo-score .yoast-logo.svg.ok{background-image:var(--svg-icon-yoast-ok)}.yoast-seo-score .yoast-logo.svg.bad{background-image:var(--svg-icon-yoast-bad)}.yoast-seo-score .yoast-logo.svg.na,.yoast-seo-score .yoast-logo.svg.noindex{background-image:var(--svg-icon-yoast)}.term-php .wpseo-taxonomy-metabox-postbox>h2{margin:0;padding:8px 12px;border-bottom:1px solid #eee;font-size:14px;line-height:1.4}#TB_window #TB_ajaxContent p{padding:5px 0 0;margin:5px 0 0}#TB_window #TB_ajaxContent ul{margin:5px 0 10px}#TB_window #TB_ajaxContent li{list-style:none;margin:5px 0 0}#TB_window #TB_ajaxContent li:before{content:"+";margin:0 0 0 10px;font-weight:700}.yoast-section__heading-icon-list{background-image:var(--svg-icon-list)}.yoast-section__heading-icon-key{background-image:var(--svg-icon-key)}.yoast-section__heading-icon-edit{background-image:var(--svg-icon-edit)}.yoast-tooltip.yoast-tooltip-hidden:after,.yoast-tooltip.yoast-tooltip-hidden:before{display:none}.screen-reader-text.wpseo-generic-tab-textual-score,.screen-reader-text.wpseo-keyword-tab-textual-score{display:block}.yoast-notice-go-premium{border-right-color:#a4286a;background:#f1f1f1;margin:0}.editor-styles-wrapper mark.annotation-text-yoast{background-color:#e1bee7}@media screen and (max-width:782px){.wpseo-metabox-buy-premium .wpseo-buy-premium{display:inline-block;width:20px;height:20px;margin-left:5px;padding:0}.yoast-help-panel{max-width:none!important}#wpseo-crawl-issues-table-form .subsubsub{float:none;max-width:calc(100vw - 20px)}#wpseo-crawl-issues-table-form .yoast-help-button{margin-top:3px}.wpseotab select[multiple]{height:auto!important}}@media screen and (max-width:600px){.wpseotab.content{padding:16px 0}}.wpseo-score-icon-container{height:20px;width:20px;margin-left:8px;display:flex;justify-content:center;align-items:center}
css/dist/metabox-1410.css ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ :root{--svg-icon-info:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23A4286A' d='M1152 1376v-160q0-14-9-23t-23-9h-96V672q0-14-9-23t-23-9H672q-14 0-23 9t-9 23v160q0 14 9 23t23 9h96v320h-96q-14 0-23 9t-9 23v160q0 14 9 23t23 9h448q14 0 23-9t9-23zm-128-896V320q0-14-9-23t-23-9H800q-14 0-23 9t-9 23v160q0 14 9 23t23 9h192q14 0 23-9t9-23zm640 416q0 209-103 385.5T1281.5 1561 896 1664t-385.5-103T231 1281.5 128 896t103-385.5T510.5 231 896 128t385.5 103T1561 510.5 1664 896z'/%3E%3C/svg%3E");--svg-icon-check:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%2377B227' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/%3E%3C/svg%3E");--svg-icon-check-ok:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%2377B227' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/%3E%3C/svg%3E");--svg-icon-caret-right:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 192 512' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z'/%3E%3C/svg%3E");--svg-icon-caret-left:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 192 512' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z'/%3E%3C/svg%3E");--svg-icon-eye:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M1664 960q-152-236-381-353 61 104 61 225 0 185-131.5 316.5T896 1280t-316.5-131.5T448 832q0-121 61-225-229 117-381 353 133 205 333.5 326.5T896 1408t434.5-121.5T1664 960zM944 576q0-20-14-34t-34-14q-125 0-214.5 89.5T592 832q0 20 14 34t34 14 34-14 14-34q0-86 61-147t147-61q20 0 34-14t14-34zm848 384q0 34-20 69-140 230-376.5 368.5T896 1536t-499.5-139T20 1029Q0 994 0 960t20-69q140-229 376.5-368T896 384t499.5 139T1772 891q20 35 20 69z'/%3E%3C/svg%3E");--svg-icon-list:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M384 1408q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm0-512q0 80-56 136t-136 56-136-56T0 896t56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5H544q-13 0-22.5-9.5T512 1504v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zM384 384q0 80-56 136t-136 56-136-56T0 384t56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5H544q-13 0-22.5-9.5T512 992V800q0-13 9.5-22.5T544 768h1216q13 0 22.5 9.5t9.5 22.5zm0-512v192q0 13-9.5 22.5T1760 512H544q-13 0-22.5-9.5T512 480V288q0-13 9.5-22.5T544 256h1216q13 0 22.5 9.5t9.5 22.5z'/%3E%3C/svg%3E");--svg-icon-key:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M832 512q0-80-56-136t-136-56-136 56-56 136q0 42 19 83-41-19-83-19-80 0-136 56t-56 136 56 136 136 56 136-56 56-136q0-42-19-83 41 19 83 19 80 0 136-56t56-136zm851 704q0 17-49 66t-66 49q-9 0-28.5-16t-36.5-33-38.5-40-24.5-26l-96 96 220 220q28 28 28 68 0 42-39 81t-81 39q-40 0-68-28l-671-671q-176 131-365 131-163 0-265.5-102.5T0 784q0-160 95-313t248-248 313-95q163 0 265.5 102.5T1024 496q0 189-131 365l355 355 96-96q-3-3-26-24.5t-40-38.5-33-36.5-16-28.5q0-17 49-66t66-49q13 0 23 10 6 6 46 44.5t82 79.5 86.5 86 73 78 28.5 41z'/%3E%3C/svg%3E");--svg-icon-edit:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M491 1536l91-91-235-235-91 91v107h128v128h107zm523-928q0-22-22-22-10 0-17 7l-542 542q-7 7-7 17 0 22 22 22 10 0 17-7l542-542q7-7 7-17zm-54-192l416 416-832 832H128v-416zm683 96q0 53-37 90l-166 166-416-416 166-165q36-38 90-38 53 0 91 38l235 234q37 39 37 91z'/%3E%3C/svg%3E");--svg-icon-yoast:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23999' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-good:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%237ad03a' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-ok:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23ee7c1b' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-bad:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23dc3232' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-noindex:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%231e8cbe' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E")}.draftJsMentionPlugin__mention__29BEd,.draftJsMentionPlugin__mention__29BEd:visited{color:#575f67;cursor:pointer;display:inline-block;background:#e6f3ff;padding-left:2px;padding-right:2px;border-radius:2px;text-decoration:none}.draftJsMentionPlugin__mention__29BEd:focus,.draftJsMentionPlugin__mention__29BEd:hover{color:#677584;background:#edf5fd;outline:0}.draftJsMentionPlugin__mention__29BEd:active{color:#222;background:#455261}.draftJsMentionPlugin__mentionSuggestionsEntry__3mSwm{padding:7px 10px 3px;transition:background-color .4s cubic-bezier(.27,1.27,.48,.56)}.draftJsMentionPlugin__mentionSuggestionsEntry__3mSwm:active{background-color:#cce7ff}.draftJsMentionPlugin__mentionSuggestionsEntryFocused__3LcTd{background-color:#e6f3ff}.draftJsMentionPlugin__mentionSuggestionsEntryText__3Jobq{display:inline-block;margin-left:8px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:368px;font-size:.9em;margin-bottom:.2em}.draftJsMentionPlugin__mentionSuggestionsEntryAvatar__1xgA9{display:inline-block;width:24px;height:24px;border-radius:12px}.draftJsMentionPlugin__mentionSuggestions__2DWjA{border:1px solid #eee;margin-top:.4em;position:absolute;min-width:220px;max-width:440px;background:#fff;border-radius:2px;box-shadow:0 4px 30px 0 #dcdcdc;cursor:pointer;padding-top:8px;padding-bottom:8px;z-index:2;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;box-sizing:border-box;-webkit-transform:scale(0);transform:scale(0)}
2
+ /*!rtl:begin:ignore*/.DraftEditor-editorContainer,.DraftEditor-root,.public-DraftEditor-content{height:inherit;text-align:initial}.public-DraftEditor-content[contenteditable=true]{-webkit-user-modify:read-write-plaintext-only}.DraftEditor-root{position:relative}.DraftEditor-editorContainer{background-color:hsla(0,0%,100%,0);border-left:.1px solid transparent;position:relative;z-index:1}.public-DraftEditor-block{position:relative}.DraftEditor-alignLeft .public-DraftStyleDefault-block{text-align:left}.DraftEditor-alignLeft .public-DraftEditorPlaceholder-root{left:0;text-align:left}.DraftEditor-alignCenter .public-DraftStyleDefault-block{text-align:center}.DraftEditor-alignCenter .public-DraftEditorPlaceholder-root{margin:0 auto;text-align:center;width:100%}.DraftEditor-alignRight .public-DraftStyleDefault-block{text-align:right}.DraftEditor-alignRight .public-DraftEditorPlaceholder-root{right:0;text-align:right}.public-DraftEditorPlaceholder-root{color:#9197a3;position:absolute;z-index:1}.public-DraftEditorPlaceholder-hasFocus{color:#bdc1c9}.DraftEditorPlaceholder-hidden{display:none}.public-DraftStyleDefault-block{position:relative;white-space:pre-wrap}.public-DraftStyleDefault-ltr{direction:ltr;text-align:left}.public-DraftStyleDefault-rtl{direction:rtl;text-align:right}.public-DraftStyleDefault-listLTR{direction:ltr}.public-DraftStyleDefault-listRTL{direction:rtl}.public-DraftStyleDefault-ol,.public-DraftStyleDefault-ul{margin:16px 0;padding:0}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listLTR{margin-left:1.5em}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listRTL{margin-right:1.5em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listLTR{margin-left:3em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listRTL{margin-right:3em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listLTR{margin-left:4.5em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listRTL{margin-right:4.5em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listLTR{margin-left:6em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listRTL{margin-right:6em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listLTR{margin-left:7.5em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listRTL{margin-right:7.5em}.public-DraftStyleDefault-unorderedListItem{list-style-type:square;position:relative}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth0{list-style-type:disc}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth1{list-style-type:circle}.public-DraftStyleDefault-orderedListItem{list-style-type:none;position:relative}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listLTR:before{left:-36px;position:absolute;text-align:right;width:30px}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listRTL:before{position:absolute;right:-36px;text-align:left;width:30px}.public-DraftStyleDefault-orderedListItem:before{content:counter(ol0) ". ";counter-increment:ol0}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth1:before{content:counter(ol1) ". ";counter-increment:ol1}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth2:before{content:counter(ol2) ". ";counter-increment:ol2}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth3:before{content:counter(ol3) ". ";counter-increment:ol3}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth4:before{content:counter(ol4) ". ";counter-increment:ol4}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-reset{counter-reset:ol0}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-reset{counter-reset:ol1}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-reset{counter-reset:ol2}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-reset{counter-reset:ol3}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-reset{counter-reset:ol4}
3
+ /*!rtl:end:ignore*/#wpseo_meta{box-sizing:border-box}#wpseo_meta *,#wpseo_meta :after,#wpseo_meta :before{box-sizing:inherit}.DraftEditor-root [data-block]{margin:0}#edittag>#wp-description-wrap{display:none}#wp-description-wrap .wp-editor-area{border:0}.term-description-wrap td>textarea#description{min-height:530px}ul.wpseo-metabox-tabs{display:none;margin-top:6px;margin-bottom:0}ul.wpseo-metabox-tabs:after{content:"";display:table;clear:both}.wpseo-metabox-tabs-div{margin:0 5px 5px}.wpseo-metabox-tabs-div ul{list-style:none}#wpseo-meta-section-addons{padding:0 5px 5px}#wpseo-meta-section-addons .wpseo-metabox-tabs-div{margin:0}ul.wpseo-metabox-tabs li.active{background-color:#fdfdfd}.wpseo-meta-section,.wpseo-meta-section-react{display:none;width:100%;min-height:100%;height:auto;vertical-align:top;box-shadow:0 1px 2px rgba(0,0,0,.2);border-top:1px solid #e8e8e8}.wpseo-meta-section-react.active,.wpseo-meta-section.active{background:#fff;position:relative;z-index:12}.wpseo-meta-section.active{display:inline-block}.wpseo-meta-section-react.active{display:block;margin-bottom:10px}.wpseo-metabox-content{max-width:800px;padding-top:16px}.wpseo-metabox-menu{padding:0;background-color:#fff}.wpseo-metabox-menu ul{margin:0 1px 0 0;padding:0 0 0 16px;display:flex;align-items:flex-end;flex-wrap:wrap;flex-flow:wrap-reverse}.wpseo-metabox-menu ul li:first-child{z-index:10}.wpseo-metabox-menu ul li:nth-child(2){z-index:9}.wpseo-metabox-menu ul li:nth-child(3){z-index:8}.wpseo-metabox-menu ul li:nth-child(4){z-index:7}.wpseo-metabox-menu ul li:nth-child(5){z-index:6}.wpseo-metabox-menu ul li:nth-child(6){z-index:5}.wpseo-metabox-menu ul li{box-shadow:0 0 4px 0 rgba(0,0,0,.1);height:32px;margin-left:-1px;margin-bottom:-1px;text-align:center;position:relative;background-color:#f8f8f8}.wpseo-metabox-menu ul li a{color:#0073aa;display:flex;align-items:center;border:1px solid #ddd}.wpseo-metabox-menu ul li .yst-traffic-light{height:20px;width:auto;margin-right:10px;margin-left:4px}.wpseo-metabox-menu ul li span.dashicons{margin-right:8px}.wpseo-metabox-menu ul li span.wpseo-buy-premium{color:#a4286a}.wpseo-metabox-menu ul li span.wpseo-buy-premium:hover{color:#832055}.wpseo-metabox-menu ul li.active{height:36px;margin-top:-4px;z-index:11;background-color:#fff}.wpseo-metabox-menu ul li.active a{height:36px;color:#444}.wpseo-metabox-menu ul li.active span.wpseo-buy-premium{color:#a4286a;border-color:#a4286a}.wpseo-metabox-menu ul li.active span.wpseo-buy-premium:hover{color:#832055;border-color:#832055}.wpseo-metabox-menu a{height:32px;padding:0 8px;text-decoration:none}ul.wpseo-metabox-tabs li{float:left;margin-right:5px;margin-bottom:-1px;padding:0;border:1px solid #dfdfdf;border-bottom:0}ul.wpseo-metabox-tabs li .wpseo-keyword{display:inline-block;vertical-align:top;max-width:8em;max-width:8rem;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.wpseotab{display:none;padding:16px;border:1px solid #ddd;background-color:#fdfdfd}.wpseotab .wpseo-cornerstone-checkbox{margin-right:.5em}.wpseotab.content{padding:20px 15px}.wpseotab.active{display:block}.wpseo-metabox-tabs .wpseo_tablink{display:inline-block;vertical-align:top;padding:5px 12px 6px;text-decoration:none}.wpseo-metabox-tabs .wpseo_content_tab a{padding-right:12px}.wpseo-metabox-tabs .wpseo-score-icon{margin-left:0}#wpseo-meta-section-social .wpseo-metabox-tabs .wpseo_tablink{padding:5px 7px}.wpseo-metabox-tabs .wpseo_tablink .dashicons{width:16px;height:16px;font-size:16px}.wpseo-metabox-sidebar .dashicons{width:30px;height:30px;font-size:30px}.wpseo-metabox-tabs-div div.wpseo-tabs-panel{overflow:auto;padding:.5em .9em;border:1px solid}#wpseo_meta .inside{margin:0}#wpseo_meta .inside:after{content:"";display:table;clear:both}#wpseo_meta .postbox .inside .wpseotab{font-size:13px!important}.wpseo-form .select2-container,.wpseo-form input,.wpseo-form label,.wpseo-form p.error-message,.wpseo-form textarea{max-width:600px}.wpseo-form fieldset{padding-top:5px}.wpseo-form legend{font-weight:600}.wpseo-form label{display:block;font-weight:600}.wpseo-form input[type=checkbox]+label,.wpseo-form input[type=radio]+label{display:inline-block;font-weight:400}.wpseo-form fieldset,.wpseo-form label{margin-top:2em;margin-bottom:.5em}.wpseo-form input[type=checkbox],.wpseo-form input[type=checkbox]+label{margin-top:2em;margin-bottom:0;font-size:1em}.wpseo-form fieldset:first-child,.wpseo-form input[type=checkbox]:first-child,.wpseo-form input[type=checkbox]:first-child+label,.wpseo-form label:first-child{margin-top:10px}.wpseo-form input[type=radio]{margin-top:0}.wpseo-form input[type=radio]+label{margin:0 1em 0 0}.wpseo-form p.error-message{margin:.5em 0}.wpseo-form select[multiple]{margin-top:0}.yoast-metabox__description{max-width:600px;margin:.5em 0}.wpseo_image_upload_button{margin-left:3px}.good,.warn,.wrong{font-weight:600}.good{color:green}.warn{color:maroon}.wrong{color:#dc3232}#current_seo_title span{padding:2px 5px;background-color:#ffffe0}#focuskwresults ul{margin:0}#focuskwresults li,#focuskwresults p{font-size:13px}#focuskwresults li{margin:0 0 0 20px;list-style-type:disc}.wpseo_hidden{display:none}.wpseo_msg{margin:5px 0 10px;padding:0 5px;border:1px solid #e6db55;background-color:#ffffe0}ul.wpseo-metabox-tabs li.wpseo-tab-add-keyword{border:1px dashed #dfdfdf;border-bottom:none}.wpseo-tab-add-keyword .wpseo-add-keyword.button{height:auto;padding:5px 12px 5px 10px;vertical-align:top;font-size:inherit;line-height:inherit;font-weight:700;box-shadow:none;background:none;text-decoration:none}.wpseo-tab-add-keyword .wpseo-add-keyword.button:focus{box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}.wpseo-tab-add-keyword .wpseo-add-keyword.button:active{transform:none}.wpseo-add-keyword-plus{display:inline-block;vertical-align:top;margin:-1px 3px 0 0;font-size:20px}#wpseo-add-keyword-popup-title{margin:1em 0;font-size:1.3em}.snippet-editor__button.snippet-editor__edit-button:focus{border-color:#5b9dd9;outline:none;color:#23282d;background-color:#fafafa;box-shadow:0 0 3px rgba(0,115,170,.8)}.wpseo-admin-page .subsubsub li{display:inline;max-width:none}.yoast-seo-help-container{float:left;width:100%;max-width:none}.yoast-seo-help-container .yoast-help-panel{margin:.5em 0!important}.wpseo_content_wrapper p.search-box{margin:10px 0 5px}.wpseo-metabox-tabs .active a{color:#333}#wpseotab .ui-widget-content .ui-state-hover{border:1px solid #dfdfdf;color:#333;background:#f1f1f1}.yst-traffic-light{width:19px;height:30px;margin:0 0 0 5px}.yst-traffic-light .traffic-light-color{display:none}.yst-traffic-light.bad .traffic-light-red,.yst-traffic-light.good .traffic-light-green,.yst-traffic-light.init .traffic-light-init,.yst-traffic-light.na .traffic-light-empty,.yst-traffic-light.ok .traffic-light-orange{display:inline}.yoast-seo-score .yoast-logo.svg{float:left;width:18px;margin-right:7px;height:18px;background:var(--svg-icon-yoast) no-repeat;background-size:18px}.yoast-seo-score .yoast-logo.svg.good{background-image:var(--svg-icon-yoast-good)}.yoast-seo-score .yoast-logo.svg.ok{background-image:var(--svg-icon-yoast-ok)}.yoast-seo-score .yoast-logo.svg.bad{background-image:var(--svg-icon-yoast-bad)}.yoast-seo-score .yoast-logo.svg.na,.yoast-seo-score .yoast-logo.svg.noindex{background-image:var(--svg-icon-yoast)}.term-php .wpseo-taxonomy-metabox-postbox>h2{margin:0;padding:8px 12px;border-bottom:1px solid #eee;font-size:14px;line-height:1.4}#TB_window #TB_ajaxContent p{padding:5px 0 0;margin:5px 0 0}#TB_window #TB_ajaxContent ul{margin:5px 0 10px}#TB_window #TB_ajaxContent li{list-style:none;margin:5px 0 0}#TB_window #TB_ajaxContent li:before{content:"+";margin:0 10px 0 0;font-weight:700}.yoast-section__heading-icon-list{background-image:var(--svg-icon-list)}.yoast-section__heading-icon-key{background-image:var(--svg-icon-key)}.yoast-section__heading-icon-edit{background-image:var(--svg-icon-edit)}.yoast-tooltip.yoast-tooltip-hidden:after,.yoast-tooltip.yoast-tooltip-hidden:before{display:none}.screen-reader-text.wpseo-generic-tab-textual-score,.screen-reader-text.wpseo-keyword-tab-textual-score{display:block}.yoast-notice-go-premium{border-left-color:#a4286a;background:#f1f1f1;margin:0}.editor-styles-wrapper mark.annotation-text-yoast{background-color:#e1bee7}@media screen and (max-width:782px){.wpseo-metabox-buy-premium .wpseo-buy-premium{display:inline-block;width:20px;height:20px;margin-right:5px;padding:0}.yoast-help-panel{max-width:none!important}#wpseo-crawl-issues-table-form .subsubsub{float:none;max-width:calc(100vw - 20px)}#wpseo-crawl-issues-table-form .yoast-help-button{margin-top:3px}.wpseotab select[multiple]{height:auto!important}}@media screen and (max-width:600px){.wpseotab.content{padding:16px 0}}.wpseo-score-icon-container{height:20px;width:20px;margin-right:8px;display:flex;justify-content:center;align-items:center}
css/dist/{metabox-primary-category-1404-rtl.css → metabox-primary-category-1410-rtl.css} RENAMED
File without changes
css/dist/{metabox-primary-category-1404.css → metabox-primary-category-1410.css} RENAMED
File without changes
css/dist/monorepo-1404-rtl.css DELETED
@@ -1 +0,0 @@
1
- .yoast .yoast-button{display:inline-block;position:relative;padding:10px 16px 12px;text-decoration:none;border-radius:4px;border:1px solid rgba(0,0,0,.2);box-shadow:inset 0 -2px 0 rgba(0,0,0,.3);transition:background-color .15s ease-out 0s;line-height:1.2;font-size:14px;cursor:pointer}.yoast .yoast-button:active{box-shadow:none;padding-bottom:12px;top:2px}.yoast .yoast-button--primary{color:var(--color-white);background-color:var(--color-primary);border:1px solid rgba(0,0,0,.2)}.yoast .yoast-button--primary:visited{color:var(--color-white);border:1px solid rgba(0,0,0,.2)}.yoast .yoast-button--primary:active,.yoast .yoast-button--primary:hover{color:var(--color-white);background-color:var(--color-primary-darker);border:1px solid rgba(0,0,0,.2)}.yoast-close{display:flex;justify-content:center;align-items:center;border:none;background:none;height:44px;width:44px;cursor:pointer;box-shadow:none;padding:0}.yoast-close svg{fill:var(--color-default);width:14px}@media screen and (max-width:782px){.yoast-close svg{width:10px}}.yoast-data-model{padding:0;list-style:none;width:275px}.yoast-data-model li{line-height:1.4;padding:0 8px;position:relative;z-index:2;font-weight:var(--font-weight-bold)}.yoast-data-model span{float:left;font-weight:var(--font-weight-default)}.yoast-data-model li+li{margin-top:9px}.yoast-data-model li:after{position:absolute;right:0;height:20px;background:#f5d6e6;content:"";width:var(--width);z-index:-1}.yoast-field-group,.yoast fieldset{position:relative;border:none;padding:0;margin:0 0 24px}.yoast-field-group__title{display:flex;align-items:center;font-weight:var(--font-weight-bold);margin:0 0 8px;color:var(--color-label);line-height:1.2;float:right;padding:0}.yoast-field-group__help{border-radius:50%;padding:4px;width:12px;height:12px;display:block;float:right;margin-top:-5px}.yoast-field-group__help+*{clear:both}.yoast-field-group__help-icon svg{width:12px;height:12px;fill:var(--color-label-help);transition:var(--transition-default)}.yoast-field-group__help:hover svg{fill:var(--color-link)}.yoast-field-group .description{margin:0}:root{--color-placeholder:#707070}.yoast-field-group__inputfield,.yoast-field-group__textarea,.yoast input,.yoast textarea{width:100%;font-size:var(--font-size-default);padding:8px;background:#fff;border:var(--border-default);box-shadow:inset 0 2px 4px rgba(0,0,0,.1);box-sizing:border-box}.yoast-field-group__inputfield,.yoast input{height:40px}.yoast-field-group__textarea,.yoast textarea{min-height:200px}.yoast-field-group .description+.yoast-field-group__inputfield,.yoast-field-group .description+input,.yoast-field-group__inputfield+.description,.yoast input+.description{margin-top:8px;margin-bottom:24px}::-ms-input-placeholder,::-webkit-input-placeholder,::placeholder{color:var(--color-placeholder)}.yoast-field-group__radiobutton{display:flex;align-items:center}.yoast-field-group__radiobutton--vertical:not(:last-of-type){margin-bottom:8px}.yoast-field-group__radiobutton label{cursor:pointer;margin-left:16px}.yoast-field-group__radiobutton input[type=radio],.yoast input[type=radio]{-webkit-appearance:none;-moz-appearance:none;width:18px;height:18px;padding:2px;margin:0 0 0 8px;border-radius:50%;transition:all .15s ease-out 0s;border:var(--border-default);box-shadow:inset 0 2px 4px rgba(0,0,0,.1);position:relative;overflow:hidden;cursor:pointer}.yoast-field-group__radiobutton input[type=radio]:checked,.yoast input[type=radio]:checked{border-color:var(--color-primary)}.yoast-field-group__radiobutton input[type=radio]:checked:after,.yoast input[type=radio]:checked:after{width:10px;height:10px;background:var(--color-primary);position:absolute;right:3px;top:3px;content:"";display:block;border-radius:50%}.yoast-field-group__select{display:flex;cursor:pointer;align-items:center}.select2-container--default,.yoast-field-group__select select,.yoast select{-webkit-appearance:none;-moz-appearance:none;width:100%;font-size:var(--font-size-default);padding:10px 8px 11px;background-color:#fff;background-image:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 8"><path d="M1.4 0L6 4.6 10.6 0 12 1.4 6 7.5 0 1.4z"/></svg>');background-position:left 15px center;background-repeat:no-repeat;background-size:10px auto;border-radius:0;border:var(--border-default);box-shadow:inset 0 2px 4px rgba(0,0,0,.1);position:relative;max-width:300px;display:block}.select2-container--default{background-image:none;padding:8px 8px 3px}.select2-container--default.select2-container--focus .select2-selection--multiple{outline:inherit;border:0}.select2-container--default .yoast-multiselect{border:0;min-height:0}.select2-container--default .yoast-multiselect ul{display:flex;margin:0;padding:0;list-style:none}.select2-container--default .yoast-multiselect .select2-selection__choice{background-color:var(--color-primary);border:0;border-radius:12px;color:var(--color-white);padding-top:0;padding-right:10px;padding-left:10px;margin-top:0;margin-left:8px;line-height:1.7;font-weight:500}.select2-container--default .yoast-multiselect .select2-selection__choice__remove{margin-left:8px;color:var(--color-white)}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:var(--color-white)}.select2-dropdown{border-color:var(--color-border--default);border-radius:0}.select2-container--open .select2-dropdown{top:-2px;right:-1px}.select2-results__option{padding:8px;border-top:var(--border-default)}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:var(--color-primary-lighter);color:var(--color-font-default)}.select2-container--default .select2-results__option[aria-selected=true]{background-color:var(--color-primary);color:var(--color-white)}.yoast-field-group__toggle{display:flex;align-items:center;width:600px;justify-content:space-between}.yoast-field-group__toggle input{position:absolute;right:0;opacity:0}.yoast-field-group__toggle label{position:relative;z-index:2;cursor:pointer}.yoast-field-group__toggle input:checked+label{color:var(--color-toggle-on)}.yoast-field-group__toggle input:not(:checked)+label{color:var(--color-toggle-off)}.yoast-field-group__toggle a{display:inline-block;width:34px;height:14px;border-radius:5px;background:#b6cf94;position:relative;margin:0 9px}.yoast-field-group__toggle input:first-of-type:checked~a{background:#9e9e9e}.yoast-field-group__toggle a:after{content:"";display:block;height:20px;width:20px;position:absolute;left:-2px;background:#6ea029;border-radius:50%;top:-3px;transition:all .1s ease-out}.yoast-field-group__toggle input:first-of-type:checked~a:after{left:calc(100% - 18px);background:#f1f1f1;box-shadow:0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.2),0 2px 1px -1px rgba(0,0,0,.12)}.yoast-field-group__checkbox{display:flex;cursor:pointer;align-items:center}.yoast-field-group__checkbox:not(.yoast-field-group__checkbox--horizontal)+.yoast-field-group__checkbox{margin-top:4px}.yoast-field-group__checkbox input[type=checkbox],.yoast input[type=checkbox]{-webkit-appearance:none;-moz-appearance:none;width:18px;height:18px;padding:2px;margin:2px 0 0 8px;border-radius:2px;transition:background-color .15s ease-out 0s;border:var(--border-default);box-shadow:inset 0 2px 4px rgba(0,0,0,.1);position:relative;overflow:hidden}.yoast label+input[type=checkbox]{margin-right:16px}.yoast-field-group__checkbox input[type=checkbox]:checked,.yoast input[type=checkbox]:checked{background:var(--checkmark--white) var(--color-primary) no-repeat 50%/13px;border:1px solid var(--color-primary);box-shadow:none}.yoast-modal__screen-overlay{position:fixed;top:0;left:0;bottom:0;right:0;background-color:rgba(164,40,106,.6);z-index:100000;animation:edit-post__fade-in-animation .2s ease-out 0s;animation-fill-mode:forwards}.yoast-modal{background:#fff;display:flex;flex-direction:column;overflow:hidden;position:fixed;height:calc(100% - 96px);top:48px;bottom:48px;right:calc(50% - 440px);max-width:880px;width:100%}.yoast-tabs .yoast-modal__content{display:grid;grid-template-areas:"heading heading" "menu content" "menu footer";grid-template-rows:72px 1fr 89px;grid-template-columns:280px 1fr}.yoast-modal__heading{padding:13px 24px 14px;display:flex;align-items:center;border-bottom:var(--border-default);grid-area:heading;background:var(--color-white);height:72px}.yoast-modal__heading .yoast-close{position:absolute;left:16px}.yoast-modal__heading h1{font-size:20px}.yoast-modal__heading-icon{fill:var(--color-primary);margin-left:16px;width:19px;height:20px;flex-shrink:0}.yoast-modal__menu{grid-area:menu;border-left:var(--border-default);overflow-y:auto}.yoast-modal__menu ul{padding:0;margin:0;list-style:none}.yoast-modal__menu li{padding:12px 16px 11px;border-bottom:var(--border-default);font-size:16px;cursor:pointer;text-decoration:none;color:var(--color-default);display:block}.yoast-modal__menu li:hover{background-color:#edd4e1}.yoast-modal__menu li.yoast-tabs__tab--selected{background-color:var(--color-primary);border-bottom:var(--border-default);color:#fff}.yoast-modal__content,.yoast-modal__section{grid-area:content;overflow-y:auto;flex-grow:1;position:relative;display:flex;flex-direction:column}.yoast-modal__section *{max-width:600px}.yoast-modal__section-header{position:-webkit-sticky;position:sticky;top:0;background:var(--color-white);padding:24px 24px 0;z-index:10}.yoast-modal__section .yoast-h2{border-bottom:var(--border-default);padding-bottom:24px}.yoast-modal__footer{grid-area:footer;padding:24px 0;border-top:var(--border-default);display:flex;align-self:flex-end;align-items:center;justify-content:flex-end;position:-webkit-sticky;position:sticky;bottom:0;background:var(--color-white);margin:0 24px;z-index:10;height:89px;width:calc(100% - 48px)}.yoast-modal__settings-saved{position:relative;margin-left:16px;display:inline-flex;align-items:center}.yoast-modal__settings-saved:before{content:"";background:var(--checkmark--green) no-repeat 50%;height:13px;width:14px;display:inline-block;margin-left:8px}.yoast-modal__footer .yoast-button{display:block}.yoast-modal__section-content{padding:24px;flex-grow:1}@media screen and (max-width:880px){.yoast-modal{position:fixed;top:0;bottom:0;right:0;left:0}}@media screen and (max-width:782px){.yoast-modal{overflow-y:initial;height:auto;padding-bottom:72px}.yoast-modal__heading{padding:14px 16px 15px;position:fixed;top:0;width:100%;z-index:11;height:auto}.yoast-close svg{width:10px}.yoast-modal__heading-icon{height:15px;margin-left:8px}.yoast .yoast-close{left:3px}.yoast-modal__heading .yoast-h2{font-size:var(--font-size-default)}.yoast-modal__section{overflow:initial;flex-grow:0}.yoast-modal__section-content{padding:24px 0;margin:0 16px}.yoast-modal__section:first-of-type{margin-top:46px}.yoast-modal__section:last-of-type{margin-bottom:72px}.yoast-modal__section-header{top:46px;position:-webkit-sticky;position:sticky;padding:0;margin:0}.yoast-modal__section-open .yoast-modal__section-header{padding-right:0;padding-left:0;margin-right:16px;margin-left:16px}.yoast-modal__section-open{border-bottom:var(--border-default)}.yoast-modal__footer{margin:0;width:100%;position:fixed;z-index:11;height:72px;padding:24px 16px}.yoast-modal-collapsible .yoast-modal__section-content{padding:24px 16px;border-bottom:var(--border-default);margin:0}.yoast-collapsible__hidden{display:none}.yoast-collapsible__trigger{padding:16px;border:none;border-bottom:var(--border-default);cursor:pointer;justify-content:space-between;font-size:var(--font-size-default);width:100%;text-align:right;background:#fff;color:var(--color-primary)}.yoast-collapsible__trigger[aria-expanded=true] .yoast-collapsible__icon{transform:rotate(-180deg)}.yoast-collapsible__trigger[aria-expanded=true]{padding:16px 0;width:calc(100% - 32px);margin:0 16px}.yoast-collapsible__icon{background-color:var(--color-white);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='%23404040'%3E%3Cpath d='M1.4 0L6 4.6 10.6 0 12 1.4 6 7.5 0 1.4z'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:10px auto;width:19px;height:19px;border:none;display:block;float:left}.yoast-collapsible-block{width:100%;margin-top:46px}.yoast-collapsible-block+.yoast-collapsible-block{margin-top:0}}:root{--border-default:1px solid rgba(0,0,0,0.2);--color-default:#404040;--color-primary:#a4286a;--color-secondary:#f7f7f7;--color-white:#fff;--color-green:#6ea029;--color-primary-darker:#7b1e50;--color-primary-lighter:#f5d6e6;--color-secondary-darker:#d9d9d9;--color-button-upsell:#fec228;--color-button-upsell-hover:#f2ae01;--color-dark:#303030;--color-sale:#fec228;--color-label:#303030;--color-label-help:#707070;--color-toggle-on:#303030;--color-toggle-off:#707070;--transition-default:all 150ms ease-out;--color-link:#006dac;--color-border--default:rgba(0,0,0,0.2);--checkmark--white:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFF' viewBox='0 0 512 512'%3E%3Cpath d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E");--svg-icon-caret-right:url('data:image/svg+xml;charset=utf-8,<svg viewBox="0 0 192 512" xmlns="http://www.w3.org/2000/svg"><path d="M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z"/></svg>');--checkmark--green:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%236EA029' viewBox='0 0 512 512'%3E%3Cpath d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E");--exclamation-mark:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23DC3232' viewBox='0 0 512 512'%3E%3Cpath d='M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z'/%3E%3C/svg%3E")}[class*=yoast-]{box-sizing:border-box}[class*=yoast-]:focus{box-shadow:0 0 0 2px #007fff,0 0 0 5px #bfdfff;border-radius:0;outline:none}:root{--font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;--font-size-default:14px;--font-weight-default:400;--font-weight-bold:600;--color-font-default:#404040}.yoast-h1,.yoast-h2,.yoast-h3,.yoast h1,.yoast h2,.yoast h3{font-weight:400;color:var(--color-primary);line-height:1.2;margin:0}.yoast-h1 a,.yoast-h2 a,.yoast-h3 a{color:var(--color-primary);text-decoration:none}.yoast-h1,.yoast h1{font-size:24px}.yoast-h2,.yoast h2{font-size:20px}.yoast-h3,.yoast h4{font-size:16px}.yoast-paragraph,.yoast p{font-size:var(--font-size-default);margin-top:0}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}@media (max-width:782px){.yoast-show-on-mobile{display:initial!important}}@media (min-width:782px){.yoast-hide-on-desktop{display:none}}
 
css/dist/monorepo-1404.css DELETED
@@ -1 +0,0 @@
1
- .yoast .yoast-button{display:inline-block;position:relative;padding:10px 16px 12px;text-decoration:none;border-radius:4px;border:1px solid rgba(0,0,0,.2);box-shadow:inset 0 -2px 0 rgba(0,0,0,.3);transition:background-color .15s ease-out 0s;line-height:1.2;font-size:14px;cursor:pointer}.yoast .yoast-button:active{box-shadow:none;padding-bottom:12px;top:2px}.yoast .yoast-button--primary{color:var(--color-white);background-color:var(--color-primary);border:1px solid rgba(0,0,0,.2)}.yoast .yoast-button--primary:visited{color:var(--color-white);border:1px solid rgba(0,0,0,.2)}.yoast .yoast-button--primary:active,.yoast .yoast-button--primary:hover{color:var(--color-white);background-color:var(--color-primary-darker);border:1px solid rgba(0,0,0,.2)}.yoast-close{display:flex;justify-content:center;align-items:center;border:none;background:none;height:44px;width:44px;cursor:pointer;box-shadow:none;padding:0}.yoast-close svg{fill:var(--color-default);width:14px}@media screen and (max-width:782px){.yoast-close svg{width:10px}}.yoast-data-model{padding:0;list-style:none;width:275px}.yoast-data-model li{line-height:1.4;padding:0 8px;position:relative;z-index:2;font-weight:var(--font-weight-bold)}.yoast-data-model span{float:right;font-weight:var(--font-weight-default)}.yoast-data-model li+li{margin-top:9px}.yoast-data-model li:after{position:absolute;left:0;height:20px;background:#f5d6e6;content:"";width:var(--width);z-index:-1}.yoast-field-group,.yoast fieldset{position:relative;border:none;padding:0;margin:0 0 24px}.yoast-field-group__title{display:flex;align-items:center;font-weight:var(--font-weight-bold);margin:0 0 8px;color:var(--color-label);line-height:1.2;float:left;padding:0}.yoast-field-group__help{border-radius:50%;padding:4px;width:12px;height:12px;display:block;float:left;margin-top:-5px}.yoast-field-group__help+*{clear:both}.yoast-field-group__help-icon svg{width:12px;height:12px;fill:var(--color-label-help);transition:var(--transition-default)}.yoast-field-group__help:hover svg{fill:var(--color-link)}.yoast-field-group .description{margin:0}:root{--color-placeholder:#707070}.yoast-field-group__inputfield,.yoast-field-group__textarea,.yoast input,.yoast textarea{width:100%;font-size:var(--font-size-default);padding:8px;background:#fff;border:var(--border-default);box-shadow:inset 0 2px 4px rgba(0,0,0,.1);box-sizing:border-box}.yoast-field-group__inputfield,.yoast input{height:40px}.yoast-field-group__textarea,.yoast textarea{min-height:200px}.yoast-field-group .description+.yoast-field-group__inputfield,.yoast-field-group .description+input,.yoast-field-group__inputfield+.description,.yoast input+.description{margin-top:8px;margin-bottom:24px}::-ms-input-placeholder,::-webkit-input-placeholder,::placeholder{color:var(--color-placeholder)}.yoast-field-group__radiobutton{display:flex;align-items:center}.yoast-field-group__radiobutton--vertical:not(:last-of-type){margin-bottom:8px}.yoast-field-group__radiobutton label{cursor:pointer;margin-right:16px}.yoast-field-group__radiobutton input[type=radio],.yoast input[type=radio]{-webkit-appearance:none;-moz-appearance:none;width:18px;height:18px;padding:2px;margin:0 8px 0 0;border-radius:50%;transition:all .15s ease-out 0s;border:var(--border-default);box-shadow:inset 0 2px 4px rgba(0,0,0,.1);position:relative;overflow:hidden;cursor:pointer}.yoast-field-group__radiobutton input[type=radio]:checked,.yoast input[type=radio]:checked{border-color:var(--color-primary)}.yoast-field-group__radiobutton input[type=radio]:checked:after,.yoast input[type=radio]:checked:after{width:10px;height:10px;background:var(--color-primary);position:absolute;left:3px;top:3px;content:"";display:block;border-radius:50%}.yoast-field-group__select{display:flex;cursor:pointer;align-items:center}.select2-container--default,.yoast-field-group__select select,.yoast select{-webkit-appearance:none;-moz-appearance:none;width:100%;font-size:var(--font-size-default);padding:10px 8px 11px;background-color:#fff;background-image:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 8"><path d="M1.4 0L6 4.6 10.6 0 12 1.4 6 7.5 0 1.4z"/></svg>');background-position:right 15px center;background-repeat:no-repeat;background-size:10px auto;border-radius:0;border:var(--border-default);box-shadow:inset 0 2px 4px rgba(0,0,0,.1);position:relative;max-width:300px;display:block}.select2-container--default{background-image:none;padding:8px 8px 3px}.select2-container--default.select2-container--focus .select2-selection--multiple{outline:inherit;border:0}.select2-container--default .yoast-multiselect{border:0;min-height:0}.select2-container--default .yoast-multiselect ul{display:flex;margin:0;padding:0;list-style:none}.select2-container--default .yoast-multiselect .select2-selection__choice{background-color:var(--color-primary);border:0;border-radius:12px;color:var(--color-white);padding-top:0;padding-left:10px;padding-right:10px;margin-top:0;margin-right:8px;line-height:1.7;font-weight:500}.select2-container--default .yoast-multiselect .select2-selection__choice__remove{margin-right:8px;color:var(--color-white)}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:var(--color-white)}.select2-dropdown{border-color:var(--color-border--default);border-radius:0}.select2-container--open .select2-dropdown{top:-2px;left:-1px}.select2-results__option{padding:8px;border-top:var(--border-default)}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:var(--color-primary-lighter);color:var(--color-font-default)}.select2-container--default .select2-results__option[aria-selected=true]{background-color:var(--color-primary);color:var(--color-white)}.yoast-field-group__toggle{display:flex;align-items:center;width:600px;justify-content:space-between}.yoast-field-group__toggle input{position:absolute;left:0;opacity:0}.yoast-field-group__toggle label{position:relative;z-index:2;cursor:pointer}.yoast-field-group__toggle input:checked+label{color:var(--color-toggle-on)}.yoast-field-group__toggle input:not(:checked)+label{color:var(--color-toggle-off)}.yoast-field-group__toggle a{display:inline-block;width:34px;height:14px;border-radius:5px;background:#b6cf94;position:relative;margin:0 9px}.yoast-field-group__toggle input:first-of-type:checked~a{background:#9e9e9e}.yoast-field-group__toggle a:after{content:"";display:block;height:20px;width:20px;position:absolute;right:-2px;background:#6ea029;border-radius:50%;top:-3px;transition:all .1s ease-out}.yoast-field-group__toggle input:first-of-type:checked~a:after{right:calc(100% - 18px);background:#f1f1f1;box-shadow:0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.2),0 2px 1px -1px rgba(0,0,0,.12)}.yoast-field-group__checkbox{display:flex;cursor:pointer;align-items:center}.yoast-field-group__checkbox:not(.yoast-field-group__checkbox--horizontal)+.yoast-field-group__checkbox{margin-top:4px}.yoast-field-group__checkbox input[type=checkbox],.yoast input[type=checkbox]{-webkit-appearance:none;-moz-appearance:none;width:18px;height:18px;padding:2px;margin:2px 8px 0 0;border-radius:2px;transition:background-color .15s ease-out 0s;border:var(--border-default);box-shadow:inset 0 2px 4px rgba(0,0,0,.1);position:relative;overflow:hidden}.yoast label+input[type=checkbox]{margin-left:16px}.yoast-field-group__checkbox input[type=checkbox]:checked,.yoast input[type=checkbox]:checked{background:var(--checkmark--white) var(--color-primary) no-repeat 50%/13px;border:1px solid var(--color-primary);box-shadow:none}.yoast-modal__screen-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background-color:rgba(164,40,106,.6);z-index:100000;animation:edit-post__fade-in-animation .2s ease-out 0s;animation-fill-mode:forwards}.yoast-modal{background:#fff;display:flex;flex-direction:column;overflow:hidden;position:fixed;height:calc(100% - 96px);top:48px;bottom:48px;left:calc(50% - 440px);max-width:880px;width:100%}.yoast-tabs .yoast-modal__content{display:grid;grid-template-areas:"heading heading" "menu content" "menu footer";grid-template-rows:72px 1fr 89px;grid-template-columns:280px 1fr}.yoast-modal__heading{padding:13px 24px 14px;display:flex;align-items:center;border-bottom:var(--border-default);grid-area:heading;background:var(--color-white);height:72px}.yoast-modal__heading .yoast-close{position:absolute;right:16px}.yoast-modal__heading h1{font-size:20px}.yoast-modal__heading-icon{fill:var(--color-primary);margin-right:16px;width:19px;height:20px;flex-shrink:0}.yoast-modal__menu{grid-area:menu;border-right:var(--border-default);overflow-y:auto}.yoast-modal__menu ul{padding:0;margin:0;list-style:none}.yoast-modal__menu li{padding:12px 16px 11px;border-bottom:var(--border-default);font-size:16px;cursor:pointer;text-decoration:none;color:var(--color-default);display:block}.yoast-modal__menu li:hover{background-color:#edd4e1}.yoast-modal__menu li.yoast-tabs__tab--selected{background-color:var(--color-primary);border-bottom:var(--border-default);color:#fff}.yoast-modal__content,.yoast-modal__section{grid-area:content;overflow-y:auto;flex-grow:1;position:relative;display:flex;flex-direction:column}.yoast-modal__section *{max-width:600px}.yoast-modal__section-header{position:-webkit-sticky;position:sticky;top:0;background:var(--color-white);padding:24px 24px 0;z-index:10}.yoast-modal__section .yoast-h2{border-bottom:var(--border-default);padding-bottom:24px}.yoast-modal__footer{grid-area:footer;padding:24px 0;border-top:var(--border-default);display:flex;align-self:flex-end;align-items:center;justify-content:flex-end;position:-webkit-sticky;position:sticky;bottom:0;background:var(--color-white);margin:0 24px;z-index:10;height:89px;width:calc(100% - 48px)}.yoast-modal__settings-saved{position:relative;margin-right:16px;display:inline-flex;align-items:center}.yoast-modal__settings-saved:before{content:"";background:var(--checkmark--green) no-repeat 50%;height:13px;width:14px;display:inline-block;margin-right:8px}.yoast-modal__footer .yoast-button{display:block}.yoast-modal__section-content{padding:24px;flex-grow:1}@media screen and (max-width:880px){.yoast-modal{position:fixed;top:0;bottom:0;left:0;right:0}}@media screen and (max-width:782px){.yoast-modal{overflow-y:initial;height:auto;padding-bottom:72px}.yoast-modal__heading{padding:14px 16px 15px;position:fixed;top:0;width:100%;z-index:11;height:auto}.yoast-close svg{width:10px}.yoast-modal__heading-icon{height:15px;margin-right:8px}.yoast .yoast-close{right:3px}.yoast-modal__heading .yoast-h2{font-size:var(--font-size-default)}.yoast-modal__section{overflow:initial;flex-grow:0}.yoast-modal__section-content{padding:24px 0;margin:0 16px}.yoast-modal__section:first-of-type{margin-top:46px}.yoast-modal__section:last-of-type{margin-bottom:72px}.yoast-modal__section-header{top:46px;position:-webkit-sticky;position:sticky;padding:0;margin:0}.yoast-modal__section-open .yoast-modal__section-header{padding-left:0;padding-right:0;margin-left:16px;margin-right:16px}.yoast-modal__section-open{border-bottom:var(--border-default)}.yoast-modal__footer{margin:0;width:100%;position:fixed;z-index:11;height:72px;padding:24px 16px}.yoast-modal-collapsible .yoast-modal__section-content{padding:24px 16px;border-bottom:var(--border-default);margin:0}.yoast-collapsible__hidden{display:none}.yoast-collapsible__trigger{padding:16px;border:none;border-bottom:var(--border-default);cursor:pointer;justify-content:space-between;font-size:var(--font-size-default);width:100%;text-align:left;background:#fff;color:var(--color-primary)}.yoast-collapsible__trigger[aria-expanded=true] .yoast-collapsible__icon{transform:rotate(180deg)}.yoast-collapsible__trigger[aria-expanded=true]{padding:16px 0;width:calc(100% - 32px);margin:0 16px}.yoast-collapsible__icon{background-color:var(--color-white);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='%23404040'%3E%3Cpath d='M1.4 0L6 4.6 10.6 0 12 1.4 6 7.5 0 1.4z'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:10px auto;width:19px;height:19px;border:none;display:block;float:right}.yoast-collapsible-block{width:100%;margin-top:46px}.yoast-collapsible-block+.yoast-collapsible-block{margin-top:0}}:root{--border-default:1px solid rgba(0,0,0,0.2);--color-default:#404040;--color-primary:#a4286a;--color-secondary:#f7f7f7;--color-white:#fff;--color-green:#6ea029;--color-primary-darker:#7b1e50;--color-primary-lighter:#f5d6e6;--color-secondary-darker:#d9d9d9;--color-button-upsell:#fec228;--color-button-upsell-hover:#f2ae01;--color-dark:#303030;--color-sale:#fec228;--color-label:#303030;--color-label-help:#707070;--color-toggle-on:#303030;--color-toggle-off:#707070;--transition-default:all 150ms ease-out;--color-link:#006dac;--color-border--default:rgba(0,0,0,0.2);--checkmark--white:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFF' viewBox='0 0 512 512'%3E%3Cpath d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E");--svg-icon-caret-right:url('data:image/svg+xml;charset=utf-8,<svg viewBox="0 0 192 512" xmlns="http://www.w3.org/2000/svg"><path d="M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z"/></svg>');--checkmark--green:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%236EA029' viewBox='0 0 512 512'%3E%3Cpath d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E");--exclamation-mark:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23DC3232' viewBox='0 0 512 512'%3E%3Cpath d='M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z'/%3E%3C/svg%3E")}[class*=yoast-]{box-sizing:border-box}[class*=yoast-]:focus{box-shadow:0 0 0 2px #007fff,0 0 0 5px #bfdfff;border-radius:0;outline:none}:root{--font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;--font-size-default:14px;--font-weight-default:400;--font-weight-bold:600;--color-font-default:#404040}.yoast-h1,.yoast-h2,.yoast-h3,.yoast h1,.yoast h2,.yoast h3{font-weight:400;color:var(--color-primary);line-height:1.2;margin:0}.yoast-h1 a,.yoast-h2 a,.yoast-h3 a{color:var(--color-primary);text-decoration:none}.yoast-h1,.yoast h1{font-size:24px}.yoast-h2,.yoast h2{font-size:20px}.yoast-h3,.yoast h4{font-size:16px}.yoast-paragraph,.yoast p{font-size:var(--font-size-default);margin-top:0}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}@media (max-width:782px){.yoast-show-on-mobile{display:initial!important}}@media (min-width:782px){.yoast-hide-on-desktop{display:none}}
 
css/dist/monorepo-1410-rtl.css ADDED
@@ -0,0 +1 @@
 
1
+ .yoast .yoast-button{display:inline-block;position:relative;padding:10px 16px 12px;text-decoration:none;border-radius:4px;border:1px solid rgba(0,0,0,.2);box-shadow:inset 0 -2px 0 rgba(0,0,0,.3);transition:background-color .15s ease-out 0s;line-height:1.2;font-size:14px;cursor:pointer}.yoast .yoast-button:active{box-shadow:none;padding-bottom:12px;top:2px}.yoast .yoast-button--primary{color:var(--color-white);background-color:var(--color-primary);border:1px solid rgba(0,0,0,.2)}.yoast .yoast-button--primary:visited{color:var(--color-white);border:1px solid rgba(0,0,0,.2)}.yoast .yoast-button--primary:active,.yoast .yoast-button--primary:hover{color:var(--color-white);background-color:var(--color-primary-darker);border:1px solid rgba(0,0,0,.2)}.yoast-close{display:flex;justify-content:center;align-items:center;border:none;background:none;height:44px;width:44px;cursor:pointer;box-shadow:none;padding:0}.yoast-close svg{fill:var(--color-default);width:14px}@media screen and (max-width:782px){.yoast-close svg{width:10px}}.yoast-data-model{padding:0;list-style:none;width:275px}.yoast-data-model li{line-height:1.4;padding:0 8px;position:relative;z-index:2;font-weight:var(--font-weight-bold)}.yoast-data-model span{float:left;font-weight:var(--font-weight-default)}.yoast-data-model li+li{margin-top:9px}.yoast-data-model li:after{position:absolute;right:0;height:20px;background:#f5d6e6;content:"";width:var(--width);z-index:-1}.yoast-field-group{position:relative;border:none;padding:0;margin:0 0 24px}.yoast-field-group__title{display:flex;align-items:center;font-weight:var(--font-weight-bold);margin:0 0 8px;color:var(--color-label);line-height:1.2;padding:0}.yoast-field-group .description{margin:0}.yoast-help{margin-right:4px}.yoast-help__icon svg{width:12px;height:12px;fill:var(--color-inactive-text);transition:var(--transition-default)}.yoast-help:hover svg{fill:var(--color-link)}:root{--color-placeholder:#707070}.yoast-field-group__inputfield,.yoast-field-group__textarea{width:100%;font-size:var(--font-size-default);padding:8px;background:#fff;border:var(--border-default);box-shadow:inset 0 2px 4px rgba(0,0,0,.1);box-sizing:border-box}.yoast-field-group__inputfield{height:40px}.yoast-field-group__textarea{min-height:200px}.yoast-field-group .description+.yoast-field-group__inputfield,.yoast-field-group .description+input,.yoast-field-group__inputfield+.description,.yoast input+.description{margin-top:8px;margin-bottom:24px}::-ms-input-placeholder,::-webkit-input-placeholder,::placeholder{color:var(--color-placeholder)}.yoast-field-group__radiobutton{display:flex;align-items:center}.yoast-field-group__radiobutton--vertical:not(:last-of-type){margin-bottom:8px}.yoast-field-group__radiobutton label{cursor:pointer;margin-left:16px}.yoast-field-group__radiobutton input[type=radio]{-webkit-appearance:none;-moz-appearance:none;width:18px;height:18px;padding:2px;margin:0 0 0 8px;border-radius:50%;transition:all .15s ease-out 0s;border:var(--border-default);box-shadow:inset 0 2px 4px rgba(0,0,0,.1);position:relative;overflow:hidden;cursor:pointer}.yoast-field-group__radiobutton input[type=radio]:checked{border-color:var(--color-primary)}.yoast-field-group__radiobutton input[type=radio]:checked:after{width:10px;height:10px;background:var(--color-primary);position:absolute;right:3px;top:3px;content:"";display:block;border-radius:50%}.yoast-field-group__select{display:flex;cursor:pointer;align-items:center}.select2-container.select2-container--default,.yoast-field-group__select select,.yoast-field-group select{-webkit-appearance:none;-moz-appearance:none;width:100%;font-size:var(--font-size-default);padding:5px 8px;background-color:#fff;background-image:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 8"><path d="M1.4 0L6 4.6 10.6 0 12 1.4 6 7.5 0 1.4z"/></svg>');background-position:left 15px center;background-repeat:no-repeat;background-size:10px auto;border-radius:0;border:var(--border-default);box-shadow:inset 0 2px 4px rgba(0,0,0,.1);position:relative;max-width:300px;display:block;min-height:2.8em}.yoast-field-group__select select,.yoast-field-group select{line-height:1.9}.select2-container.select2-container--default{background-image:none;padding:0 8px;max-width:100%}.select2-container--default.select2-container--open:not(.select2){max-width:0}.yoast-field-group .select2-container--default.select2-container--focus .select2-selection--multiple,.yoast-field-group .select2-container--default .select2-selection--multiple{outline:inherit;border:0;background-color:initial}.select2-container--default .select2-selection{border:0;min-height:0}.select2-container--default .select2-selection ul{display:flex;align-items:center;margin:0;padding:0 5px 4px;list-style:none}.yoast-field-group .select2-container--default .select2-selection .select2-selection__choice{background-color:var(--color-primary);border:0;border-radius:12px;color:var(--color-white);padding-top:0;padding-right:10px;padding-left:10px;margin-top:7px;margin-left:8px;line-height:1.7;font-weight:500}.yoast-field-group .select2-container--default .select2-selection .select2-selection__choice__remove{margin-left:8px;color:var(--color-white)}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:var(--color-white)}.select2-container .select2-dropdown{border-color:var(--color-border--default);border-radius:0}.select2-container.select2-container--open .select2-dropdown{top:-2px;right:-1px}.select2-container .select2-results__option{padding:8px;border-top:var(--border-default)}.select2-container--default .select2-results__option.select2-results__option--highlighted[aria-selected]{background-color:var(--color-primary-lighter);color:var(--color-font-default)}.select2-container--default .select2-results__option.select2-results__option[aria-selected=true]{background-color:var(--color-primary);color:var(--color-white)}.yoast-feature{max-width:600px}.yoast-toggle__item{display:flex;justify-content:space-between;padding-bottom:16px;border-bottom:1px solid var(--color-border);margin-bottom:16px}.yoast-toggle__item-title{display:flex;font-weight:700}.yoast-toggle-inverse input[type=checkbox],.yoast-toggle input[type=checkbox]{display:none}.yoast-toggle__switch{display:inline-block;position:relative;background-color:var(--color-inactive-grey);width:34px;height:14px;border-radius:8px;margin-right:8px;margin-left:8px}.yoast-toggle__switch:before{content:"";position:absolute;top:-3px;right:0;background-color:var(--color-inactive-grey-light);width:20px;height:20px;border-radius:50%}.yoast-toggle-inverse input[type=checkbox]:not(:checked)~.yoast-toggle__switch,.yoast-toggle input[type=checkbox]:checked~.yoast-toggle__switch{background-color:var(--color-active-light)}.yoast-toggle input[type=checkbox]:checked~.yoast-toggle__switch:before{background-color:var(--color-active);left:0;right:auto}.yoast-toggle-inverse input[type=checkbox]:not(:checked)~.yoast-toggle__switch:before{background-color:var(--color-active);left:auto;right:0}.yoast-toggle-inverse input[type=checkbox]~.yoast-toggle--inactive,.yoast-toggle input[type=checkbox]~.yoast-toggle--inactive{color:var(--color-default-darker)}.yoast-toggle-inverse input[type=checkbox]:checked~.yoast-toggle--inactive,.yoast-toggle-inverse input[type=checkbox]~.yoast-toggle--active,.yoast-toggle input[type=checkbox]:checked~.yoast-toggle--inactive,.yoast-toggle input[type=checkbox]~.yoast-toggle--active{color:var(--color-inactive-text)}.yoast-toggle-inverse input[type=checkbox]:checked~.yoast-toggle--active,.yoast-toggle input[type=checkbox]:checked~.yoast-toggle--active{color:var(--color-default-darker)}.yoast-field-group__checkbox{display:flex;cursor:pointer;align-items:center}.yoast-field-group__checkbox:not(.yoast-field-group__checkbox--horizontal)+.yoast-field-group__checkbox{margin-top:4px}.yoast-field-group__checkbox input[type=checkbox]{-webkit-appearance:none;-moz-appearance:none;width:18px;height:18px;padding:2px;margin:2px 0 0 8px;border-radius:2px;transition:background-color .15s ease-out 0s;border:var(--border-default);box-shadow:inset 0 2px 4px rgba(0,0,0,.1);position:relative;overflow:hidden}.yoast label+input[type=checkbox]{margin-right:16px}.yoast-field-group__checkbox input[type=checkbox]:checked{background:var(--checkmark--white) var(--color-primary) no-repeat 50%/13px;border:1px solid var(--color-primary);box-shadow:none}.yoast-modal__screen-overlay{position:fixed;top:0;left:0;bottom:0;right:0;background-color:rgba(164,40,106,.6);z-index:100000;animation:edit-post__fade-in-animation .2s ease-out 0s;animation-fill-mode:forwards}.yoast-modal{background:#fff;display:flex;flex-direction:column;overflow:hidden;position:fixed;height:calc(100% - 96px);top:48px;bottom:48px;right:calc(50% - 440px);max-width:880px;width:100%}.yoast-tabs .yoast-modal__content{display:grid;grid-template-areas:"heading heading" "menu content" "menu footer";grid-template-rows:72px 1fr 89px;grid-template-columns:280px 1fr}.yoast-modal__heading{padding:13px 24px 14px;display:flex;align-items:center;border-bottom:var(--border-default);grid-area:heading;background:var(--color-white);height:72px}.yoast-modal__heading .yoast-close{position:absolute;left:16px}.yoast-modal__heading h1{font-size:20px}.yoast-modal__heading-icon{fill:var(--color-primary);margin-left:16px;width:19px;height:20px;flex-shrink:0}.yoast-modal__menu{grid-area:menu;border-left:var(--border-default);overflow-y:auto}.yoast-modal__menu ul{padding:0;margin:0;list-style:none}.yoast-modal__menu li{padding:12px 16px 11px;border-bottom:var(--border-default);font-size:16px;cursor:pointer;text-decoration:none;color:var(--color-default);display:block}.yoast-modal__menu li:hover{background-color:#edd4e1}.yoast-modal__menu li.yoast-tabs__tab--selected{background-color:var(--color-primary);border-bottom:var(--border-default);color:#fff}.yoast-modal__content,.yoast-modal__section{grid-area:content;overflow-y:auto;flex-grow:1;position:relative;display:flex;flex-direction:column}.yoast-modal__section *{max-width:600px}.yoast-modal__section-header{position:-webkit-sticky;position:sticky;top:0;background:var(--color-white);padding:24px 24px 0;z-index:10}.yoast-modal__section .yoast-h2{border-bottom:var(--border-default);padding-bottom:24px}.yoast-modal__footer{grid-area:footer;padding:24px 0;border-top:var(--border-default);display:flex;align-self:flex-end;align-items:center;justify-content:flex-end;position:-webkit-sticky;position:sticky;bottom:0;background:var(--color-white);margin:0 24px;z-index:10;height:89px;width:calc(100% - 48px)}.yoast-modal__settings-saved{position:relative;margin-left:16px;display:inline-flex;align-items:center}.yoast-modal__settings-saved:before{content:"";background:var(--checkmark--green) no-repeat 50%;height:13px;width:14px;display:inline-block;margin-left:8px}.yoast-modal__footer .yoast-button{display:block}.yoast-modal__section-content{padding:24px;flex-grow:1}@media screen and (max-width:880px){.yoast-modal{position:fixed;top:0;bottom:0;right:0;left:0}}@media screen and (max-width:782px){.yoast-modal{overflow-y:initial;height:auto;padding-bottom:72px}.yoast-modal__heading{padding:14px 16px 15px;position:fixed;top:0;width:100%;z-index:11;height:auto}.yoast-close svg{width:10px}.yoast-modal__heading-icon{height:15px;margin-left:8px}.yoast .yoast-close{left:3px}.yoast-modal__heading .yoast-h2{font-size:var(--font-size-default)}.yoast-modal__section{overflow:initial;flex-grow:0}.yoast-modal__section-content{padding:24px 0;margin:0 16px}.yoast-modal__section:first-of-type{margin-top:46px}.yoast-modal__section:last-of-type{margin-bottom:72px}.yoast-modal__section-header{top:46px;position:-webkit-sticky;position:sticky;padding:0;margin:0}.yoast-modal__section-open .yoast-modal__section-header{padding-right:0;padding-left:0;margin-right:16px;margin-left:16px}.yoast-modal__section-open{border-bottom:var(--border-default)}.yoast-modal__footer{margin:0;width:100%;position:fixed;z-index:11;height:72px;padding:24px 16px}.yoast-modal-collapsible .yoast-modal__section-content{padding:24px 16px;border-bottom:var(--border-default);margin:0}.yoast-collapsible__hidden{display:none}.yoast-collapsible__trigger{padding:16px;border:none;border-bottom:var(--border-default);cursor:pointer;justify-content:space-between;font-size:var(--font-size-default);width:100%;text-align:right;background:#fff;color:var(--color-primary)}.yoast-collapsible__trigger[aria-expanded=true] .yoast-collapsible__icon{transform:rotate(-180deg)}.yoast-collapsible__trigger[aria-expanded=true]{padding:16px 0;width:calc(100% - 32px);margin:0 16px}.yoast-collapsible__icon{background-color:var(--color-white);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='%23404040'%3E%3Cpath d='M1.4 0L6 4.6 10.6 0 12 1.4 6 7.5 0 1.4z'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:10px auto;width:19px;height:19px;border:none;display:block;float:left}.yoast-collapsible-block{width:100%;margin-top:46px}.yoast-collapsible-block+.yoast-collapsible-block{margin-top:0}}:root{--border-default:1px solid rgba(0,0,0,0.2);--color-default:#404040;--color-default-darker:#303030;--color-primary:#a4286a;--color-secondary:#f7f7f7;--color-white:#fff;--color-green:#6ea029;--color-primary-darker:#7b1e50;--color-primary-lighter:#f5d6e6;--color-secondary-darker:#d9d9d9;--color-button-upsell:#fec228;--color-button-upsell-hover:#f2ae01;--color-dark:#303030;--color-sale:#fec228;--color-sale-darker:#feb601;--color-border:rgba(0,0,0,0.2);--color-label:#303030;--color-label-help:#707070;--color-active:#6ea029;--color-inactive:#dc3232;--color-inactive-grey:#9e9e9e;--color-inactive-grey-light:#f1f1f1;--color-active-light:#b6cf94;--transition-default:all 150ms ease-out;--color-link:#006dac;--color-border--default:rgba(0,0,0,0.2);--color-inactive-text:#707070;--checkmark--white:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFF' viewBox='0 0 512 512'%3E%3Cpath d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E");--svg-icon-info:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23A4286A' d='M1152 1376v-160q0-14-9-23t-23-9h-96V672q0-14-9-23t-23-9H672q-14 0-23 9t-9 23v160q0 14 9 23t23 9h96v320h-96q-14 0-23 9t-9 23v160q0 14 9 23t23 9h448q14 0 23-9t9-23zm-128-896V320q0-14-9-23t-23-9H800q-14 0-23 9t-9 23v160q0 14 9 23t23 9h192q14 0 23-9t9-23zm640 416q0 209-103 385.5T1281.5 1561 896 1664t-385.5-103T231 1281.5 128 896t103-385.5T510.5 231 896 128t385.5 103T1561 510.5 1664 896z'/%3E%3C/svg%3E");--svg-icon-check:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%2377B227' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/%3E%3C/svg%3E");--svg-icon-check-ok:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%2377B227' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/%3E%3C/svg%3E");--svg-icon-caret-right:url('data:image/svg+xml;charset=utf-8,<svg viewBox="0 0 192 512" xmlns="http://www.w3.org/2000/svg"><path d="M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z"/></svg>');--svg-icon-caret-left:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 192 512' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z'/%3E%3C/svg%3E");--svg-icon-eye:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M1664 960q-152-236-381-353 61 104 61 225 0 185-131.5 316.5T896 1280t-316.5-131.5T448 832q0-121 61-225-229 117-381 353 133 205 333.5 326.5T896 1408t434.5-121.5T1664 960zM944 576q0-20-14-34t-34-14q-125 0-214.5 89.5T592 832q0 20 14 34t34 14 34-14 14-34q0-86 61-147t147-61q20 0 34-14t14-34zm848 384q0 34-20 69-140 230-376.5 368.5T896 1536t-499.5-139T20 1029Q0 994 0 960t20-69q140-229 376.5-368T896 384t499.5 139T1772 891q20 35 20 69z'/%3E%3C/svg%3E");--svg-icon-list:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M384 1408q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm0-512q0 80-56 136t-136 56-136-56T0 896t56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5H544q-13 0-22.5-9.5T512 1504v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zM384 384q0 80-56 136t-136 56-136-56T0 384t56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5H544q-13 0-22.5-9.5T512 992V800q0-13 9.5-22.5T544 768h1216q13 0 22.5 9.5t9.5 22.5zm0-512v192q0 13-9.5 22.5T1760 512H544q-13 0-22.5-9.5T512 480V288q0-13 9.5-22.5T544 256h1216q13 0 22.5 9.5t9.5 22.5z'/%3E%3C/svg%3E");--svg-icon-key:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M832 512q0-80-56-136t-136-56-136 56-56 136q0 42 19 83-41-19-83-19-80 0-136 56t-56 136 56 136 136 56 136-56 56-136q0-42-19-83 41 19 83 19 80 0 136-56t56-136zm851 704q0 17-49 66t-66 49q-9 0-28.5-16t-36.5-33-38.5-40-24.5-26l-96 96 220 220q28 28 28 68 0 42-39 81t-81 39q-40 0-68-28l-671-671q-176 131-365 131-163 0-265.5-102.5T0 784q0-160 95-313t248-248 313-95q163 0 265.5 102.5T1024 496q0 189-131 365l355 355 96-96q-3-3-26-24.5t-40-38.5-33-36.5-16-28.5q0-17 49-66t66-49q13 0 23 10 6 6 46 44.5t82 79.5 86.5 86 73 78 28.5 41z'/%3E%3C/svg%3E");--svg-icon-edit:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M491 1536l91-91-235-235-91 91v107h128v128h107zm523-928q0-22-22-22-10 0-17 7l-542 542q-7 7-7 17 0 22 22 22 10 0 17-7l542-542q7-7 7-17zm-54-192l416 416-832 832H128v-416zm683 96q0 53-37 90l-166 166-416-416 166-165q36-38 90-38 53 0 91 38l235 234q37 39 37 91z'/%3E%3C/svg%3E");--svg-icon-yoast:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23999' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-good:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%237ad03a' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-ok:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23ee7c1b' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-bad:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23dc3232' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-noindex:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%231e8cbe' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--checkmark--green:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%236EA029' viewBox='0 0 512 512'%3E%3Cpath d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E");--exclamation-mark:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23DC3232' viewBox='0 0 512 512'%3E%3Cpath d='M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z'/%3E%3C/svg%3E");--font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;--font-size-default:14px;--font-weight-default:400;--font-weight-bold:600;--color-font-default:#404040;--shadow-default:0px 3px 6px rgba(0,0,0,0.15)}.yoast-h1,.yoast-h2,.yoast-h3{font-weight:400;color:var(--color-primary);line-height:1.2;margin:0}.yoast-h1 a,.yoast-h2 a,.yoast-h3 a{color:var(--color-primary);text-decoration:none}.yoast-h1{font-size:24px}.yoast-h2{font-size:20px}.yoast-h3{font-size:16px}.yoast-paragraph{font-size:var(--font-size-default);margin-top:0}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.visually-hidden{position:absolute;overflow:hidden;height:1px;width:1px;clip:rect(1px,1px,1px,1px);white-space:nowrap;word-wrap:normal}@media (max-width:782px){.yoast-show-on-mobile{display:initial!important}}@media (min-width:782px){.yoast-hide-on-desktop{display:none}}
css/dist/monorepo-1410.css ADDED
@@ -0,0 +1 @@
 
1
+ .yoast .yoast-button{display:inline-block;position:relative;padding:10px 16px 12px;text-decoration:none;border-radius:4px;border:1px solid rgba(0,0,0,.2);box-shadow:inset 0 -2px 0 rgba(0,0,0,.3);transition:background-color .15s ease-out 0s;line-height:1.2;font-size:14px;cursor:pointer}.yoast .yoast-button:active{box-shadow:none;padding-bottom:12px;top:2px}.yoast .yoast-button--primary{color:var(--color-white);background-color:var(--color-primary);border:1px solid rgba(0,0,0,.2)}.yoast .yoast-button--primary:visited{color:var(--color-white);border:1px solid rgba(0,0,0,.2)}.yoast .yoast-button--primary:active,.yoast .yoast-button--primary:hover{color:var(--color-white);background-color:var(--color-primary-darker);border:1px solid rgba(0,0,0,.2)}.yoast-close{display:flex;justify-content:center;align-items:center;border:none;background:none;height:44px;width:44px;cursor:pointer;box-shadow:none;padding:0}.yoast-close svg{fill:var(--color-default);width:14px}@media screen and (max-width:782px){.yoast-close svg{width:10px}}.yoast-data-model{padding:0;list-style:none;width:275px}.yoast-data-model li{line-height:1.4;padding:0 8px;position:relative;z-index:2;font-weight:var(--font-weight-bold)}.yoast-data-model span{float:right;font-weight:var(--font-weight-default)}.yoast-data-model li+li{margin-top:9px}.yoast-data-model li:after{position:absolute;left:0;height:20px;background:#f5d6e6;content:"";width:var(--width);z-index:-1}.yoast-field-group{position:relative;border:none;padding:0;margin:0 0 24px}.yoast-field-group__title{display:flex;align-items:center;font-weight:var(--font-weight-bold);margin:0 0 8px;color:var(--color-label);line-height:1.2;padding:0}.yoast-field-group .description{margin:0}.yoast-help{margin-left:4px}.yoast-help__icon svg{width:12px;height:12px;fill:var(--color-inactive-text);transition:var(--transition-default)}.yoast-help:hover svg{fill:var(--color-link)}:root{--color-placeholder:#707070}.yoast-field-group__inputfield,.yoast-field-group__textarea{width:100%;font-size:var(--font-size-default);padding:8px;background:#fff;border:var(--border-default);box-shadow:inset 0 2px 4px rgba(0,0,0,.1);box-sizing:border-box}.yoast-field-group__inputfield{height:40px}.yoast-field-group__textarea{min-height:200px}.yoast-field-group .description+.yoast-field-group__inputfield,.yoast-field-group .description+input,.yoast-field-group__inputfield+.description,.yoast input+.description{margin-top:8px;margin-bottom:24px}::-ms-input-placeholder,::-webkit-input-placeholder,::placeholder{color:var(--color-placeholder)}.yoast-field-group__radiobutton{display:flex;align-items:center}.yoast-field-group__radiobutton--vertical:not(:last-of-type){margin-bottom:8px}.yoast-field-group__radiobutton label{cursor:pointer;margin-right:16px}.yoast-field-group__radiobutton input[type=radio]{-webkit-appearance:none;-moz-appearance:none;width:18px;height:18px;padding:2px;margin:0 8px 0 0;border-radius:50%;transition:all .15s ease-out 0s;border:var(--border-default);box-shadow:inset 0 2px 4px rgba(0,0,0,.1);position:relative;overflow:hidden;cursor:pointer}.yoast-field-group__radiobutton input[type=radio]:checked{border-color:var(--color-primary)}.yoast-field-group__radiobutton input[type=radio]:checked:after{width:10px;height:10px;background:var(--color-primary);position:absolute;left:3px;top:3px;content:"";display:block;border-radius:50%}.yoast-field-group__select{display:flex;cursor:pointer;align-items:center}.select2-container.select2-container--default,.yoast-field-group__select select,.yoast-field-group select{-webkit-appearance:none;-moz-appearance:none;width:100%;font-size:var(--font-size-default);padding:5px 8px;background-color:#fff;background-image:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 8"><path d="M1.4 0L6 4.6 10.6 0 12 1.4 6 7.5 0 1.4z"/></svg>');background-position:right 15px center;background-repeat:no-repeat;background-size:10px auto;border-radius:0;border:var(--border-default);box-shadow:inset 0 2px 4px rgba(0,0,0,.1);position:relative;max-width:300px;display:block;min-height:2.8em}.yoast-field-group__select select,.yoast-field-group select{line-height:1.9}.select2-container.select2-container--default{background-image:none;padding:0 8px;max-width:100%}.select2-container--default.select2-container--open:not(.select2){max-width:0}.yoast-field-group .select2-container--default.select2-container--focus .select2-selection--multiple,.yoast-field-group .select2-container--default .select2-selection--multiple{outline:inherit;border:0;background-color:initial}.select2-container--default .select2-selection{border:0;min-height:0}.select2-container--default .select2-selection ul{display:flex;align-items:center;margin:0;padding:0 5px 4px;list-style:none}.yoast-field-group .select2-container--default .select2-selection .select2-selection__choice{background-color:var(--color-primary);border:0;border-radius:12px;color:var(--color-white);padding-top:0;padding-left:10px;padding-right:10px;margin-top:7px;margin-right:8px;line-height:1.7;font-weight:500}.yoast-field-group .select2-container--default .select2-selection .select2-selection__choice__remove{margin-right:8px;color:var(--color-white)}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:var(--color-white)}.select2-container .select2-dropdown{border-color:var(--color-border--default);border-radius:0}.select2-container.select2-container--open .select2-dropdown{top:-2px;left:-1px}.select2-container .select2-results__option{padding:8px;border-top:var(--border-default)}.select2-container--default .select2-results__option.select2-results__option--highlighted[aria-selected]{background-color:var(--color-primary-lighter);color:var(--color-font-default)}.select2-container--default .select2-results__option.select2-results__option[aria-selected=true]{background-color:var(--color-primary);color:var(--color-white)}.yoast-feature{max-width:600px}.yoast-toggle__item{display:flex;justify-content:space-between;padding-bottom:16px;border-bottom:1px solid var(--color-border);margin-bottom:16px}.yoast-toggle__item-title{display:flex;font-weight:700}.yoast-toggle-inverse input[type=checkbox],.yoast-toggle input[type=checkbox]{display:none}.yoast-toggle__switch{display:inline-block;position:relative;background-color:var(--color-inactive-grey);width:34px;height:14px;border-radius:8px;margin-left:8px;margin-right:8px}.yoast-toggle__switch:before{content:"";position:absolute;top:-3px;left:0;background-color:var(--color-inactive-grey-light);width:20px;height:20px;border-radius:50%}.yoast-toggle-inverse input[type=checkbox]:not(:checked)~.yoast-toggle__switch,.yoast-toggle input[type=checkbox]:checked~.yoast-toggle__switch{background-color:var(--color-active-light)}.yoast-toggle input[type=checkbox]:checked~.yoast-toggle__switch:before{background-color:var(--color-active);right:0;left:auto}.yoast-toggle-inverse input[type=checkbox]:not(:checked)~.yoast-toggle__switch:before{background-color:var(--color-active);right:auto;left:0}.yoast-toggle-inverse input[type=checkbox]~.yoast-toggle--inactive,.yoast-toggle input[type=checkbox]~.yoast-toggle--inactive{color:var(--color-default-darker)}.yoast-toggle-inverse input[type=checkbox]:checked~.yoast-toggle--inactive,.yoast-toggle-inverse input[type=checkbox]~.yoast-toggle--active,.yoast-toggle input[type=checkbox]:checked~.yoast-toggle--inactive,.yoast-toggle input[type=checkbox]~.yoast-toggle--active{color:var(--color-inactive-text)}.yoast-toggle-inverse input[type=checkbox]:checked~.yoast-toggle--active,.yoast-toggle input[type=checkbox]:checked~.yoast-toggle--active{color:var(--color-default-darker)}.yoast-field-group__checkbox{display:flex;cursor:pointer;align-items:center}.yoast-field-group__checkbox:not(.yoast-field-group__checkbox--horizontal)+.yoast-field-group__checkbox{margin-top:4px}.yoast-field-group__checkbox input[type=checkbox]{-webkit-appearance:none;-moz-appearance:none;width:18px;height:18px;padding:2px;margin:2px 8px 0 0;border-radius:2px;transition:background-color .15s ease-out 0s;border:var(--border-default);box-shadow:inset 0 2px 4px rgba(0,0,0,.1);position:relative;overflow:hidden}.yoast label+input[type=checkbox]{margin-left:16px}.yoast-field-group__checkbox input[type=checkbox]:checked{background:var(--checkmark--white) var(--color-primary) no-repeat 50%/13px;border:1px solid var(--color-primary);box-shadow:none}.yoast-modal__screen-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background-color:rgba(164,40,106,.6);z-index:100000;animation:edit-post__fade-in-animation .2s ease-out 0s;animation-fill-mode:forwards}.yoast-modal{background:#fff;display:flex;flex-direction:column;overflow:hidden;position:fixed;height:calc(100% - 96px);top:48px;bottom:48px;left:calc(50% - 440px);max-width:880px;width:100%}.yoast-tabs .yoast-modal__content{display:grid;grid-template-areas:"heading heading" "menu content" "menu footer";grid-template-rows:72px 1fr 89px;grid-template-columns:280px 1fr}.yoast-modal__heading{padding:13px 24px 14px;display:flex;align-items:center;border-bottom:var(--border-default);grid-area:heading;background:var(--color-white);height:72px}.yoast-modal__heading .yoast-close{position:absolute;right:16px}.yoast-modal__heading h1{font-size:20px}.yoast-modal__heading-icon{fill:var(--color-primary);margin-right:16px;width:19px;height:20px;flex-shrink:0}.yoast-modal__menu{grid-area:menu;border-right:var(--border-default);overflow-y:auto}.yoast-modal__menu ul{padding:0;margin:0;list-style:none}.yoast-modal__menu li{padding:12px 16px 11px;border-bottom:var(--border-default);font-size:16px;cursor:pointer;text-decoration:none;color:var(--color-default);display:block}.yoast-modal__menu li:hover{background-color:#edd4e1}.yoast-modal__menu li.yoast-tabs__tab--selected{background-color:var(--color-primary);border-bottom:var(--border-default);color:#fff}.yoast-modal__content,.yoast-modal__section{grid-area:content;overflow-y:auto;flex-grow:1;position:relative;display:flex;flex-direction:column}.yoast-modal__section *{max-width:600px}.yoast-modal__section-header{position:-webkit-sticky;position:sticky;top:0;background:var(--color-white);padding:24px 24px 0;z-index:10}.yoast-modal__section .yoast-h2{border-bottom:var(--border-default);padding-bottom:24px}.yoast-modal__footer{grid-area:footer;padding:24px 0;border-top:var(--border-default);display:flex;align-self:flex-end;align-items:center;justify-content:flex-end;position:-webkit-sticky;position:sticky;bottom:0;background:var(--color-white);margin:0 24px;z-index:10;height:89px;width:calc(100% - 48px)}.yoast-modal__settings-saved{position:relative;margin-right:16px;display:inline-flex;align-items:center}.yoast-modal__settings-saved:before{content:"";background:var(--checkmark--green) no-repeat 50%;height:13px;width:14px;display:inline-block;margin-right:8px}.yoast-modal__footer .yoast-button{display:block}.yoast-modal__section-content{padding:24px;flex-grow:1}@media screen and (max-width:880px){.yoast-modal{position:fixed;top:0;bottom:0;left:0;right:0}}@media screen and (max-width:782px){.yoast-modal{overflow-y:initial;height:auto;padding-bottom:72px}.yoast-modal__heading{padding:14px 16px 15px;position:fixed;top:0;width:100%;z-index:11;height:auto}.yoast-close svg{width:10px}.yoast-modal__heading-icon{height:15px;margin-right:8px}.yoast .yoast-close{right:3px}.yoast-modal__heading .yoast-h2{font-size:var(--font-size-default)}.yoast-modal__section{overflow:initial;flex-grow:0}.yoast-modal__section-content{padding:24px 0;margin:0 16px}.yoast-modal__section:first-of-type{margin-top:46px}.yoast-modal__section:last-of-type{margin-bottom:72px}.yoast-modal__section-header{top:46px;position:-webkit-sticky;position:sticky;padding:0;margin:0}.yoast-modal__section-open .yoast-modal__section-header{padding-left:0;padding-right:0;margin-left:16px;margin-right:16px}.yoast-modal__section-open{border-bottom:var(--border-default)}.yoast-modal__footer{margin:0;width:100%;position:fixed;z-index:11;height:72px;padding:24px 16px}.yoast-modal-collapsible .yoast-modal__section-content{padding:24px 16px;border-bottom:var(--border-default);margin:0}.yoast-collapsible__hidden{display:none}.yoast-collapsible__trigger{padding:16px;border:none;border-bottom:var(--border-default);cursor:pointer;justify-content:space-between;font-size:var(--font-size-default);width:100%;text-align:left;background:#fff;color:var(--color-primary)}.yoast-collapsible__trigger[aria-expanded=true] .yoast-collapsible__icon{transform:rotate(180deg)}.yoast-collapsible__trigger[aria-expanded=true]{padding:16px 0;width:calc(100% - 32px);margin:0 16px}.yoast-collapsible__icon{background-color:var(--color-white);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='%23404040'%3E%3Cpath d='M1.4 0L6 4.6 10.6 0 12 1.4 6 7.5 0 1.4z'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:10px auto;width:19px;height:19px;border:none;display:block;float:right}.yoast-collapsible-block{width:100%;margin-top:46px}.yoast-collapsible-block+.yoast-collapsible-block{margin-top:0}}:root{--border-default:1px solid rgba(0,0,0,0.2);--color-default:#404040;--color-default-darker:#303030;--color-primary:#a4286a;--color-secondary:#f7f7f7;--color-white:#fff;--color-green:#6ea029;--color-primary-darker:#7b1e50;--color-primary-lighter:#f5d6e6;--color-secondary-darker:#d9d9d9;--color-button-upsell:#fec228;--color-button-upsell-hover:#f2ae01;--color-dark:#303030;--color-sale:#fec228;--color-sale-darker:#feb601;--color-border:rgba(0,0,0,0.2);--color-label:#303030;--color-label-help:#707070;--color-active:#6ea029;--color-inactive:#dc3232;--color-inactive-grey:#9e9e9e;--color-inactive-grey-light:#f1f1f1;--color-active-light:#b6cf94;--transition-default:all 150ms ease-out;--color-link:#006dac;--color-border--default:rgba(0,0,0,0.2);--color-inactive-text:#707070;--checkmark--white:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFF' viewBox='0 0 512 512'%3E%3Cpath d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E");--svg-icon-info:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23A4286A' d='M1152 1376v-160q0-14-9-23t-23-9h-96V672q0-14-9-23t-23-9H672q-14 0-23 9t-9 23v160q0 14 9 23t23 9h96v320h-96q-14 0-23 9t-9 23v160q0 14 9 23t23 9h448q14 0 23-9t9-23zm-128-896V320q0-14-9-23t-23-9H800q-14 0-23 9t-9 23v160q0 14 9 23t23 9h192q14 0 23-9t9-23zm640 416q0 209-103 385.5T1281.5 1561 896 1664t-385.5-103T231 1281.5 128 896t103-385.5T510.5 231 896 128t385.5 103T1561 510.5 1664 896z'/%3E%3C/svg%3E");--svg-icon-check:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%2377B227' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/%3E%3C/svg%3E");--svg-icon-check-ok:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%2377B227' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/%3E%3C/svg%3E");--svg-icon-caret-right:url('data:image/svg+xml;charset=utf-8,<svg viewBox="0 0 192 512" xmlns="http://www.w3.org/2000/svg"><path d="M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z"/></svg>');--svg-icon-caret-left:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 192 512' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z'/%3E%3C/svg%3E");--svg-icon-eye:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M1664 960q-152-236-381-353 61 104 61 225 0 185-131.5 316.5T896 1280t-316.5-131.5T448 832q0-121 61-225-229 117-381 353 133 205 333.5 326.5T896 1408t434.5-121.5T1664 960zM944 576q0-20-14-34t-34-14q-125 0-214.5 89.5T592 832q0 20 14 34t34 14 34-14 14-34q0-86 61-147t147-61q20 0 34-14t14-34zm848 384q0 34-20 69-140 230-376.5 368.5T896 1536t-499.5-139T20 1029Q0 994 0 960t20-69q140-229 376.5-368T896 384t499.5 139T1772 891q20 35 20 69z'/%3E%3C/svg%3E");--svg-icon-list:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M384 1408q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm0-512q0 80-56 136t-136 56-136-56T0 896t56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5H544q-13 0-22.5-9.5T512 1504v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zM384 384q0 80-56 136t-136 56-136-56T0 384t56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5H544q-13 0-22.5-9.5T512 992V800q0-13 9.5-22.5T544 768h1216q13 0 22.5 9.5t9.5 22.5zm0-512v192q0 13-9.5 22.5T1760 512H544q-13 0-22.5-9.5T512 480V288q0-13 9.5-22.5T544 256h1216q13 0 22.5 9.5t9.5 22.5z'/%3E%3C/svg%3E");--svg-icon-key:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M832 512q0-80-56-136t-136-56-136 56-56 136q0 42 19 83-41-19-83-19-80 0-136 56t-56 136 56 136 136 56 136-56 56-136q0-42-19-83 41 19 83 19 80 0 136-56t56-136zm851 704q0 17-49 66t-66 49q-9 0-28.5-16t-36.5-33-38.5-40-24.5-26l-96 96 220 220q28 28 28 68 0 42-39 81t-81 39q-40 0-68-28l-671-671q-176 131-365 131-163 0-265.5-102.5T0 784q0-160 95-313t248-248 313-95q163 0 265.5 102.5T1024 496q0 189-131 365l355 355 96-96q-3-3-26-24.5t-40-38.5-33-36.5-16-28.5q0-17 49-66t66-49q13 0 23 10 6 6 46 44.5t82 79.5 86.5 86 73 78 28.5 41z'/%3E%3C/svg%3E");--svg-icon-edit:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M491 1536l91-91-235-235-91 91v107h128v128h107zm523-928q0-22-22-22-10 0-17 7l-542 542q-7 7-7 17 0 22 22 22 10 0 17-7l542-542q7-7 7-17zm-54-192l416 416-832 832H128v-416zm683 96q0 53-37 90l-166 166-416-416 166-165q36-38 90-38 53 0 91 38l235 234q37 39 37 91z'/%3E%3C/svg%3E");--svg-icon-yoast:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23999' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-good:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%237ad03a' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-ok:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23ee7c1b' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-bad:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23dc3232' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-noindex:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%231e8cbe' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--checkmark--green:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%236EA029' viewBox='0 0 512 512'%3E%3Cpath d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E");--exclamation-mark:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23DC3232' viewBox='0 0 512 512'%3E%3Cpath d='M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z'/%3E%3C/svg%3E");--font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;--font-size-default:14px;--font-weight-default:400;--font-weight-bold:600;--color-font-default:#404040;--shadow-default:0px 3px 6px rgba(0,0,0,0.15)}.yoast-h1,.yoast-h2,.yoast-h3{font-weight:400;color:var(--color-primary);line-height:1.2;margin:0}.yoast-h1 a,.yoast-h2 a,.yoast-h3 a{color:var(--color-primary);text-decoration:none}.yoast-h1{font-size:24px}.yoast-h2{font-size:20px}.yoast-h3{font-size:16px}.yoast-paragraph{font-size:var(--font-size-default);margin-top:0}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.visually-hidden{position:absolute;overflow:hidden;height:1px;width:1px;clip:rect(1px,1px,1px,1px);white-space:nowrap;word-wrap:normal}@media (max-width:782px){.yoast-show-on-mobile{display:initial!important}}@media (min-width:782px){.yoast-hide-on-desktop{display:none}}
css/dist/notifications-1410-rtl.css ADDED
@@ -0,0 +1 @@
 
1
+ :root{--svg-icon-info:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23A4286A' d='M1152 1376v-160q0-14-9-23t-23-9h-96V672q0-14-9-23t-23-9H672q-14 0-23 9t-9 23v160q0 14 9 23t23 9h96v320h-96q-14 0-23 9t-9 23v160q0 14 9 23t23 9h448q14 0 23-9t9-23zm-128-896V320q0-14-9-23t-23-9H800q-14 0-23 9t-9 23v160q0 14 9 23t23 9h192q14 0 23-9t9-23zm640 416q0 209-103 385.5T1281.5 1561 896 1664t-385.5-103T231 1281.5 128 896t103-385.5T510.5 231 896 128t385.5 103T1561 510.5 1664 896z'/%3E%3C/svg%3E");--svg-icon-check:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%2377B227' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/%3E%3C/svg%3E");--svg-icon-check-ok:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%2377B227' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/%3E%3C/svg%3E");--svg-icon-caret-right:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 192 512' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z'/%3E%3C/svg%3E");--svg-icon-caret-left:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 192 512' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z'/%3E%3C/svg%3E");--svg-icon-eye:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M1664 960q-152-236-381-353 61 104 61 225 0 185-131.5 316.5T896 1280t-316.5-131.5T448 832q0-121 61-225-229 117-381 353 133 205 333.5 326.5T896 1408t434.5-121.5T1664 960zM944 576q0-20-14-34t-34-14q-125 0-214.5 89.5T592 832q0 20 14 34t34 14 34-14 14-34q0-86 61-147t147-61q20 0 34-14t14-34zm848 384q0 34-20 69-140 230-376.5 368.5T896 1536t-499.5-139T20 1029Q0 994 0 960t20-69q140-229 376.5-368T896 384t499.5 139T1772 891q20 35 20 69z'/%3E%3C/svg%3E");--svg-icon-list:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M384 1408q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm0-512q0 80-56 136t-136 56-136-56T0 896t56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5H544q-13 0-22.5-9.5T512 1504v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zM384 384q0 80-56 136t-136 56-136-56T0 384t56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5H544q-13 0-22.5-9.5T512 992V800q0-13 9.5-22.5T544 768h1216q13 0 22.5 9.5t9.5 22.5zm0-512v192q0 13-9.5 22.5T1760 512H544q-13 0-22.5-9.5T512 480V288q0-13 9.5-22.5T544 256h1216q13 0 22.5 9.5t9.5 22.5z'/%3E%3C/svg%3E");--svg-icon-key:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M832 512q0-80-56-136t-136-56-136 56-56 136q0 42 19 83-41-19-83-19-80 0-136 56t-56 136 56 136 136 56 136-56 56-136q0-42-19-83 41 19 83 19 80 0 136-56t56-136zm851 704q0 17-49 66t-66 49q-9 0-28.5-16t-36.5-33-38.5-40-24.5-26l-96 96 220 220q28 28 28 68 0 42-39 81t-81 39q-40 0-68-28l-671-671q-176 131-365 131-163 0-265.5-102.5T0 784q0-160 95-313t248-248 313-95q163 0 265.5 102.5T1024 496q0 189-131 365l355 355 96-96q-3-3-26-24.5t-40-38.5-33-36.5-16-28.5q0-17 49-66t66-49q13 0 23 10 6 6 46 44.5t82 79.5 86.5 86 73 78 28.5 41z'/%3E%3C/svg%3E");--svg-icon-edit:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M491 1536l91-91-235-235-91 91v107h128v128h107zm523-928q0-22-22-22-10 0-17 7l-542 542q-7 7-7 17 0 22 22 22 10 0 17-7l542-542q7-7 7-17zm-54-192l416 416-832 832H128v-416zm683 96q0 53-37 90l-166 166-416-416 166-165q36-38 90-38 53 0 91 38l235 234q37 39 37 91z'/%3E%3C/svg%3E");--svg-icon-yoast:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23999' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-good:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%237ad03a' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-ok:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23ee7c1b' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-bad:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23dc3232' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-noindex:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%231e8cbe' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E")}.screen-reader-text{position:absolute!important;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);width:1px;height:1px;border:0;padding:0;overflow:hidden;word-wrap:normal!important}.yoast-notification{padding:0 12px;border-right:4px solid #fff;background:#fff;box-shadow:0 1px 2px rgba(0,0,0,.2)}.yoast-container{position:relative;max-width:1280px;margin:20px 0 1px;padding:20px 20px 0;border:1px solid #e5e5e5;background-color:#fdfdfd;box-shadow:0 1px 1px rgba(0,0,0,.04)}.yoast-notifications>h2:first-child{margin:0;padding:9px 0 4px;font-size:23px;font-weight:400;line-height:29px}.yoast-notifications .yoast-container h3{margin:-20px -20px 0;padding:1em;border-bottom:1px solid #ccc;background-color:#fdfdfd;font-size:1.4em}.yoast-container .container{max-width:980px}.yoast-container .yoast-notification-holder{display:flex;position:relative}.dismiss .dashicons,.restore .dashicons{font-size:20px;width:20px;height:20px}.yoast-bottom-spacing{margin-bottom:20px}.yoast-notifications .button.dismiss,.yoast-notifications .button.restore{position:absolute;left:0;width:52px;height:100%;line-height:inherit;padding:0;outline:none;cursor:pointer;background:transparent;border:none;box-shadow:none;border-radius:0}.yoast-notifications .button.dismiss:focus,.yoast-notifications .button.dismiss:hover,.yoast-notifications .button.restore:focus,.yoast-notifications .button.restore:hover{background:transparent}.yoast-notifications .button.dismiss:focus:before,.yoast-notifications .button.restore:focus:before{content:"";display:block;width:32px;height:32px;border-radius:50%;position:absolute;top:50%;right:50%;transform:translate(50%,-50%);box-shadow:0 0 0 1px #007cba;outline:2px solid transparent}.yoast-notifications .button.dismiss.yoast-container__configuration-wizard--dismiss:before{top:0;transform:translate(50%,6px)}.yoast-container .separator{margin-top:1em;margin-bottom:1em;border-top:1px solid #ddd}.yoast-container .dashicons-yes{color:#77b227}.yoast-container-disabled{display:table-cell;position:absolute;top:0;left:0;bottom:0;right:0;border-radius:4px;background-color:hsla(0,0%,91%,.7)}.yoast-no-issues{padding:1em 16px 1em 1em;color:#666}.yoast-muted-title{overflow:hidden;font-weight:600;font-style:italic}.yoast-muted-title:after{content:"";display:inline-block;height:.5em;vertical-align:bottom;width:100%;margin-left:-100%;margin-right:10px;border-top:1px solid #ddd}.yoast-notifications-active .yoast-notification,.yoast-notifications-dismissed .yoast-notification{padding-left:52px;flex:1}.yoast-notifications-active .yoast-notification-holder{margin-bottom:20px}.yoast-notifications-dismissed.paper.tab-block{margin:20px 0}.yoast-notifications-dismissed.paper.tab-block .paper-container.toggleable-container{padding:0}.yoast-notifications-dismissed.paper.tab-block .paper-container.toggleable-container .yoast-notification-holder:nth-child(odd){background-color:#f7f7f7}.yoast-notifications-dismissed.paper.tab-block .paper-container.toggleable-container .yoast-notification-holder:nth-child(odd) .yoast-notification{background-color:initial}.yoast-notifications-dismissed .yoast-svg-icon-eye{background:transparent var(--svg-icon-eye) no-repeat 100% 0;background-size:20px}#yoast-errors-header .dashicons{color:#dc3232}#yoast-errors-active .yoast-notification{border-right-color:#dc3232}#yoast-errors-dismissed .yoast-notification{border-right-color:#d93f69}#yoast-warnings-header .dashicons{color:#5d237a}#yoast-warnings-active .yoast-notification{border-right-color:#5d237a}#yoast-warnings-dismissed .yoast-notification{border-right-color:#0075b3}.yoast-notifications .yoast-container__configuration-wizard{display:flex;align-items:center;box-shadow:0 1px 2px rgba(0,0,0,.2);background-color:#fff;min-height:0;padding-bottom:20px;margin-bottom:15px}@media screen and (max-width:768px){.yoast-notifications .yoast-container__configuration-wizard img{display:none}}.yoast-notifications .yoast-container__configuration-wizard--content{flex:1 1 auto;margin:12px;padding:0}.yoast-notifications .yoast-container__configuration-wizard--content h3{border-bottom:0;font-size:1.4em;line-height:1;margin:0 0 4px;padding:0;background:transparent}.yoast-notifications .yoast-container__configuration-wizard--content p{margin:1em 0 0}.yoast-notifications .yoast-container__configuration-wizard--content p:last-child{margin:0}@media screen and (max-width:768px){.yoast-notifications .yoast-container__configuration-wizard--content{display:block;position:relative;padding:16px}}.yoast-notifications .yoast-container__configuration-wizard--dismiss{text-align:center}@media screen and (max-width:768px){.yoast-notifications .yoast-container__configuration-wizard--dismiss{width:40px;position:absolute;top:5px;left:5px;margin:0}}.yoast-notifications .yoast-container__configuration-wizard--dismiss .dashicons{text-decoration:none;margin-top:12px}
css/dist/notifications-1410.css ADDED
@@ -0,0 +1 @@
 
1
+ :root{--svg-icon-info:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23A4286A' d='M1152 1376v-160q0-14-9-23t-23-9h-96V672q0-14-9-23t-23-9H672q-14 0-23 9t-9 23v160q0 14 9 23t23 9h96v320h-96q-14 0-23 9t-9 23v160q0 14 9 23t23 9h448q14 0 23-9t9-23zm-128-896V320q0-14-9-23t-23-9H800q-14 0-23 9t-9 23v160q0 14 9 23t23 9h192q14 0 23-9t9-23zm640 416q0 209-103 385.5T1281.5 1561 896 1664t-385.5-103T231 1281.5 128 896t103-385.5T510.5 231 896 128t385.5 103T1561 510.5 1664 896z'/%3E%3C/svg%3E");--svg-icon-check:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%2377B227' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/%3E%3C/svg%3E");--svg-icon-check-ok:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%2377B227' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/%3E%3C/svg%3E");--svg-icon-caret-right:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 192 512' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z'/%3E%3C/svg%3E");--svg-icon-caret-left:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 192 512' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z'/%3E%3C/svg%3E");--svg-icon-eye:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M1664 960q-152-236-381-353 61 104 61 225 0 185-131.5 316.5T896 1280t-316.5-131.5T448 832q0-121 61-225-229 117-381 353 133 205 333.5 326.5T896 1408t434.5-121.5T1664 960zM944 576q0-20-14-34t-34-14q-125 0-214.5 89.5T592 832q0 20 14 34t34 14 34-14 14-34q0-86 61-147t147-61q20 0 34-14t14-34zm848 384q0 34-20 69-140 230-376.5 368.5T896 1536t-499.5-139T20 1029Q0 994 0 960t20-69q140-229 376.5-368T896 384t499.5 139T1772 891q20 35 20 69z'/%3E%3C/svg%3E");--svg-icon-list:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M384 1408q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm0-512q0 80-56 136t-136 56-136-56T0 896t56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5H544q-13 0-22.5-9.5T512 1504v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zM384 384q0 80-56 136t-136 56-136-56T0 384t56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5H544q-13 0-22.5-9.5T512 992V800q0-13 9.5-22.5T544 768h1216q13 0 22.5 9.5t9.5 22.5zm0-512v192q0 13-9.5 22.5T1760 512H544q-13 0-22.5-9.5T512 480V288q0-13 9.5-22.5T544 256h1216q13 0 22.5 9.5t9.5 22.5z'/%3E%3C/svg%3E");--svg-icon-key:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M832 512q0-80-56-136t-136-56-136 56-56 136q0 42 19 83-41-19-83-19-80 0-136 56t-56 136 56 136 136 56 136-56 56-136q0-42-19-83 41 19 83 19 80 0 136-56t56-136zm851 704q0 17-49 66t-66 49q-9 0-28.5-16t-36.5-33-38.5-40-24.5-26l-96 96 220 220q28 28 28 68 0 42-39 81t-81 39q-40 0-68-28l-671-671q-176 131-365 131-163 0-265.5-102.5T0 784q0-160 95-313t248-248 313-95q163 0 265.5 102.5T1024 496q0 189-131 365l355 355 96-96q-3-3-26-24.5t-40-38.5-33-36.5-16-28.5q0-17 49-66t66-49q13 0 23 10 6 6 46 44.5t82 79.5 86.5 86 73 78 28.5 41z'/%3E%3C/svg%3E");--svg-icon-edit:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M491 1536l91-91-235-235-91 91v107h128v128h107zm523-928q0-22-22-22-10 0-17 7l-542 542q-7 7-7 17 0 22 22 22 10 0 17-7l542-542q7-7 7-17zm-54-192l416 416-832 832H128v-416zm683 96q0 53-37 90l-166 166-416-416 166-165q36-38 90-38 53 0 91 38l235 234q37 39 37 91z'/%3E%3C/svg%3E");--svg-icon-yoast:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23999' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-good:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%237ad03a' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-ok:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23ee7c1b' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-bad:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23dc3232' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-noindex:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%231e8cbe' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E")}.screen-reader-text{position:absolute!important;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);width:1px;height:1px;border:0;padding:0;overflow:hidden;word-wrap:normal!important}.yoast-notification{padding:0 12px;border-left:4px solid #fff;background:#fff;box-shadow:0 1px 2px rgba(0,0,0,.2)}.yoast-container{position:relative;max-width:1280px;margin:20px 0 1px;padding:20px 20px 0;border:1px solid #e5e5e5;background-color:#fdfdfd;box-shadow:0 1px 1px rgba(0,0,0,.04)}.yoast-notifications>h2:first-child{margin:0;padding:9px 0 4px;font-size:23px;font-weight:400;line-height:29px}.yoast-notifications .yoast-container h3{margin:-20px -20px 0;padding:1em;border-bottom:1px solid #ccc;background-color:#fdfdfd;font-size:1.4em}.yoast-container .container{max-width:980px}.yoast-container .yoast-notification-holder{display:flex;position:relative}.dismiss .dashicons,.restore .dashicons{font-size:20px;width:20px;height:20px}.yoast-bottom-spacing{margin-bottom:20px}.yoast-notifications .button.dismiss,.yoast-notifications .button.restore{position:absolute;right:0;width:52px;height:100%;line-height:inherit;padding:0;outline:none;cursor:pointer;background:transparent;border:none;box-shadow:none;border-radius:0}.yoast-notifications .button.dismiss:focus,.yoast-notifications .button.dismiss:hover,.yoast-notifications .button.restore:focus,.yoast-notifications .button.restore:hover{background:transparent}.yoast-notifications .button.dismiss:focus:before,.yoast-notifications .button.restore:focus:before{content:"";display:block;width:32px;height:32px;border-radius:50%;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);box-shadow:0 0 0 1px #007cba;outline:2px solid transparent}.yoast-notifications .button.dismiss.yoast-container__configuration-wizard--dismiss:before{top:0;transform:translate(-50%,6px)}.yoast-container .separator{margin-top:1em;margin-bottom:1em;border-top:1px solid #ddd}.yoast-container .dashicons-yes{color:#77b227}.yoast-container-disabled{display:table-cell;position:absolute;top:0;right:0;bottom:0;left:0;border-radius:4px;background-color:hsla(0,0%,91%,.7)}.yoast-no-issues{padding:1em 1em 1em 16px;color:#666}.yoast-muted-title{overflow:hidden;font-weight:600;font-style:italic}.yoast-muted-title:after{content:"";display:inline-block;height:.5em;vertical-align:bottom;width:100%;margin-right:-100%;margin-left:10px;border-top:1px solid #ddd}.yoast-notifications-active .yoast-notification,.yoast-notifications-dismissed .yoast-notification{padding-right:52px;flex:1}.yoast-notifications-active .yoast-notification-holder{margin-bottom:20px}.yoast-notifications-dismissed.paper.tab-block{margin:20px 0}.yoast-notifications-dismissed.paper.tab-block .paper-container.toggleable-container{padding:0}.yoast-notifications-dismissed.paper.tab-block .paper-container.toggleable-container .yoast-notification-holder:nth-child(odd){background-color:#f7f7f7}.yoast-notifications-dismissed.paper.tab-block .paper-container.toggleable-container .yoast-notification-holder:nth-child(odd) .yoast-notification{background-color:initial}.yoast-notifications-dismissed .yoast-svg-icon-eye{background:transparent var(--svg-icon-eye) no-repeat 0 0;background-size:20px}#yoast-errors-header .dashicons{color:#dc3232}#yoast-errors-active .yoast-notification{border-left-color:#dc3232}#yoast-errors-dismissed .yoast-notification{border-left-color:#d93f69}#yoast-warnings-header .dashicons{color:#5d237a}#yoast-warnings-active .yoast-notification{border-left-color:#5d237a}#yoast-warnings-dismissed .yoast-notification{border-left-color:#0075b3}.yoast-notifications .yoast-container__configuration-wizard{display:flex;align-items:center;box-shadow:0 1px 2px rgba(0,0,0,.2);background-color:#fff;min-height:0;padding-bottom:20px;margin-bottom:15px}@media screen and (max-width:768px){.yoast-notifications .yoast-container__configuration-wizard img{display:none}}.yoast-notifications .yoast-container__configuration-wizard--content{flex:1 1 auto;margin:12px;padding:0}.yoast-notifications .yoast-container__configuration-wizard--content h3{border-bottom:0;font-size:1.4em;line-height:1;margin:0 0 4px;padding:0;background:transparent}.yoast-notifications .yoast-container__configuration-wizard--content p{margin:1em 0 0}.yoast-notifications .yoast-container__configuration-wizard--content p:last-child{margin:0}@media screen and (max-width:768px){.yoast-notifications .yoast-container__configuration-wizard--content{display:block;position:relative;padding:16px}}.yoast-notifications .yoast-container__configuration-wizard--dismiss{text-align:center}@media screen and (max-width:768px){.yoast-notifications .yoast-container__configuration-wizard--dismiss{width:40px;position:absolute;top:5px;right:5px;margin:0}}.yoast-notifications .yoast-container__configuration-wizard--dismiss .dashicons{text-decoration:none;margin-top:12px}
css/dist/score_icon-1410-rtl.css ADDED
@@ -0,0 +1 @@
 
1
+ .wpseo-score-icon{display:inline-block!important;width:12px!important;height:12px!important;border-radius:50%!important;margin:3px 3px 0 10px;background:#888;vertical-align:top}.wpseo-score-icon.good{background-color:#7ad03a}.wpseo-score-icon.ok{background-color:#ee7c1b}.wpseo-score-icon.bad{background-color:#dc3232}.wpseo-score-icon.na{background-color:#888}.wpseo-score-icon.noindex{background-color:#1e8cbe}
css/dist/score_icon-1410.css ADDED
@@ -0,0 +1 @@
 
1
+ .wpseo-score-icon{display:inline-block!important;width:12px!important;height:12px!important;border-radius:50%!important;margin:3px 10px 0 3px;background:#888;vertical-align:top}.wpseo-score-icon.good{background-color:#7ad03a}.wpseo-score-icon.ok{background-color:#ee7c1b}.wpseo-score-icon.bad{background-color:#dc3232}.wpseo-score-icon.na{background-color:#888}.wpseo-score-icon.noindex{background-color:#1e8cbe}
css/dist/search-appearance-1404-rtl.css DELETED
@@ -1 +0,0 @@
1
- .draftJsMentionPlugin__mention__29BEd,.draftJsMentionPlugin__mention__29BEd:visited{color:#575f67;cursor:pointer;display:inline-block;background:#e6f3ff;padding-right:2px;padding-left:2px;border-radius:2px;text-decoration:none}.draftJsMentionPlugin__mention__29BEd:focus,.draftJsMentionPlugin__mention__29BEd:hover{color:#677584;background:#edf5fd;outline:0}.draftJsMentionPlugin__mention__29BEd:active{color:#222;background:#455261}.draftJsMentionPlugin__mentionSuggestionsEntry__3mSwm{padding:7px 10px 3px;transition:background-color .4s cubic-bezier(.27,1.27,.48,.56)}.draftJsMentionPlugin__mentionSuggestionsEntry__3mSwm:active{background-color:#cce7ff}.draftJsMentionPlugin__mentionSuggestionsEntryFocused__3LcTd{background-color:#e6f3ff}.draftJsMentionPlugin__mentionSuggestionsEntryText__3Jobq{display:inline-block;margin-right:8px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:368px;font-size:.9em;margin-bottom:.2em}.draftJsMentionPlugin__mentionSuggestionsEntryAvatar__1xgA9{display:inline-block;width:24px;height:24px;border-radius:12px}.draftJsMentionPlugin__mentionSuggestions__2DWjA{border:1px solid #eee;margin-top:.4em;position:absolute;min-width:220px;max-width:440px;background:#fff;border-radius:2px;box-shadow:0 4px 30px 0 #dcdcdc;cursor:pointer;padding-top:8px;padding-bottom:8px;z-index:2;display:flex;flex-direction:column;box-sizing:border-box;transform:scale(0)}.DraftEditor-editorContainer,.DraftEditor-root,.public-DraftEditor-content{height:inherit;text-align:initial}.public-DraftEditor-content[contenteditable=true]{-webkit-user-modify:read-write-plaintext-only}.DraftEditor-root{position:relative}.DraftEditor-editorContainer{background-color:hsla(0,0%,100%,0);border-right:.1px solid transparent;position:relative;z-index:1}.public-DraftEditor-block{position:relative}.DraftEditor-alignLeft .public-DraftStyleDefault-block{text-align:right}.DraftEditor-alignLeft .public-DraftEditorPlaceholder-root{right:0;text-align:right}.DraftEditor-alignCenter .public-DraftStyleDefault-block{text-align:center}.DraftEditor-alignCenter .public-DraftEditorPlaceholder-root{margin:0 auto;text-align:center;width:100%}.DraftEditor-alignRight .public-DraftStyleDefault-block{text-align:left}.DraftEditor-alignRight .public-DraftEditorPlaceholder-root{left:0;text-align:left}.public-DraftEditorPlaceholder-root{color:#9197a3;position:absolute;z-index:1}.public-DraftEditorPlaceholder-hasFocus{color:#bdc1c9}.DraftEditorPlaceholder-hidden{display:none}.public-DraftStyleDefault-block{position:relative;white-space:pre-wrap}.public-DraftStyleDefault-ltr{direction:rtl;text-align:right}.public-DraftStyleDefault-rtl{direction:ltr;text-align:left}.public-DraftStyleDefault-listLTR{direction:rtl}.public-DraftStyleDefault-listRTL{direction:ltr}.public-DraftStyleDefault-ol,.public-DraftStyleDefault-ul{margin:16px 0;padding:0}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listLTR{margin-right:1.5em}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listRTL{margin-left:1.5em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listLTR{margin-right:3em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listRTL{margin-left:3em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listLTR{margin-right:4.5em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listRTL{margin-left:4.5em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listLTR{margin-right:6em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listRTL{margin-left:6em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listLTR{margin-right:7.5em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listRTL{margin-left:7.5em}.public-DraftStyleDefault-unorderedListItem{list-style-type:square;position:relative}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth0{list-style-type:disc}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth1{list-style-type:circle}.public-DraftStyleDefault-orderedListItem{list-style-type:none;position:relative}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listLTR:before{right:-36px;position:absolute;text-align:left;width:30px}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listRTL:before{position:absolute;left:-36px;text-align:right;width:30px}.public-DraftStyleDefault-orderedListItem:before{content:counter(ol0) ". ";counter-increment:ol0}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth1:before{content:counter(ol1) ". ";counter-increment:ol1}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth2:before{content:counter(ol2) ". ";counter-increment:ol2}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth3:before{content:counter(ol3) ". ";counter-increment:ol3}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth4:before{content:counter(ol4) ". ";counter-increment:ol4}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-reset{counter-reset:ol0}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-reset{counter-reset:ol1}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-reset{counter-reset:ol2}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-reset{counter-reset:ol3}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-reset{counter-reset:ol4}#person-selector{width:100%}
 
css/dist/search-appearance-1404.css DELETED
@@ -1 +0,0 @@
1
- .draftJsMentionPlugin__mention__29BEd,.draftJsMentionPlugin__mention__29BEd:visited{color:#575f67;cursor:pointer;display:inline-block;background:#e6f3ff;padding-left:2px;padding-right:2px;border-radius:2px;text-decoration:none}.draftJsMentionPlugin__mention__29BEd:focus,.draftJsMentionPlugin__mention__29BEd:hover{color:#677584;background:#edf5fd;outline:0}.draftJsMentionPlugin__mention__29BEd:active{color:#222;background:#455261}.draftJsMentionPlugin__mentionSuggestionsEntry__3mSwm{padding:7px 10px 3px;transition:background-color .4s cubic-bezier(.27,1.27,.48,.56)}.draftJsMentionPlugin__mentionSuggestionsEntry__3mSwm:active{background-color:#cce7ff}.draftJsMentionPlugin__mentionSuggestionsEntryFocused__3LcTd{background-color:#e6f3ff}.draftJsMentionPlugin__mentionSuggestionsEntryText__3Jobq{display:inline-block;margin-left:8px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:368px;font-size:.9em;margin-bottom:.2em}.draftJsMentionPlugin__mentionSuggestionsEntryAvatar__1xgA9{display:inline-block;width:24px;height:24px;border-radius:12px}.draftJsMentionPlugin__mentionSuggestions__2DWjA{border:1px solid #eee;margin-top:.4em;position:absolute;min-width:220px;max-width:440px;background:#fff;border-radius:2px;box-shadow:0 4px 30px 0 #dcdcdc;cursor:pointer;padding-top:8px;padding-bottom:8px;z-index:2;display:flex;flex-direction:column;box-sizing:border-box;transform:scale(0)}.DraftEditor-editorContainer,.DraftEditor-root,.public-DraftEditor-content{height:inherit;text-align:initial}.public-DraftEditor-content[contenteditable=true]{-webkit-user-modify:read-write-plaintext-only}.DraftEditor-root{position:relative}.DraftEditor-editorContainer{background-color:hsla(0,0%,100%,0);border-left:.1px solid transparent;position:relative;z-index:1}.public-DraftEditor-block{position:relative}.DraftEditor-alignLeft .public-DraftStyleDefault-block{text-align:left}.DraftEditor-alignLeft .public-DraftEditorPlaceholder-root{left:0;text-align:left}.DraftEditor-alignCenter .public-DraftStyleDefault-block{text-align:center}.DraftEditor-alignCenter .public-DraftEditorPlaceholder-root{margin:0 auto;text-align:center;width:100%}.DraftEditor-alignRight .public-DraftStyleDefault-block{text-align:right}.DraftEditor-alignRight .public-DraftEditorPlaceholder-root{right:0;text-align:right}.public-DraftEditorPlaceholder-root{color:#9197a3;position:absolute;z-index:1}.public-DraftEditorPlaceholder-hasFocus{color:#bdc1c9}.DraftEditorPlaceholder-hidden{display:none}.public-DraftStyleDefault-block{position:relative;white-space:pre-wrap}.public-DraftStyleDefault-ltr{direction:ltr;text-align:left}.public-DraftStyleDefault-rtl{direction:rtl;text-align:right}.public-DraftStyleDefault-listLTR{direction:ltr}.public-DraftStyleDefault-listRTL{direction:rtl}.public-DraftStyleDefault-ol,.public-DraftStyleDefault-ul{margin:16px 0;padding:0}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listLTR{margin-left:1.5em}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listRTL{margin-right:1.5em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listLTR{margin-left:3em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listRTL{margin-right:3em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listLTR{margin-left:4.5em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listRTL{margin-right:4.5em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listLTR{margin-left:6em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listRTL{margin-right:6em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listLTR{margin-left:7.5em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listRTL{margin-right:7.5em}.public-DraftStyleDefault-unorderedListItem{list-style-type:square;position:relative}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth0{list-style-type:disc}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth1{list-style-type:circle}.public-DraftStyleDefault-orderedListItem{list-style-type:none;position:relative}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listLTR:before{left:-36px;position:absolute;text-align:right;width:30px}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listRTL:before{position:absolute;right:-36px;text-align:left;width:30px}.public-DraftStyleDefault-orderedListItem:before{content:counter(ol0) ". ";counter-increment:ol0}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth1:before{content:counter(ol1) ". ";counter-increment:ol1}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth2:before{content:counter(ol2) ". ";counter-increment:ol2}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth3:before{content:counter(ol3) ". ";counter-increment:ol3}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth4:before{content:counter(ol4) ". ";counter-increment:ol4}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-reset{counter-reset:ol0}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-reset{counter-reset:ol1}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-reset{counter-reset:ol2}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-reset{counter-reset:ol3}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-reset{counter-reset:ol4}#person-selector{width:100%}
 
css/dist/search-appearance-1410-rtl.css ADDED
@@ -0,0 +1 @@
 
1
+ .draftJsMentionPlugin__mentionSuggestions__2DWjA{display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-transform:scale(0)}.draftJsMentionPlugin__mention__29BEd,.draftJsMentionPlugin__mention__29BEd:visited{color:#575f67;cursor:pointer;display:inline-block;background:#e6f3ff;padding-right:2px;padding-left:2px;border-radius:2px;text-decoration:none}.draftJsMentionPlugin__mention__29BEd:focus,.draftJsMentionPlugin__mention__29BEd:hover{color:#677584;background:#edf5fd;outline:0}.draftJsMentionPlugin__mention__29BEd:active{color:#222;background:#455261}.draftJsMentionPlugin__mentionSuggestionsEntry__3mSwm{padding:7px 10px 3px;transition:background-color .4s cubic-bezier(.27,1.27,.48,.56)}.draftJsMentionPlugin__mentionSuggestionsEntry__3mSwm:active{background-color:#cce7ff}.draftJsMentionPlugin__mentionSuggestionsEntryFocused__3LcTd{background-color:#e6f3ff}.draftJsMentionPlugin__mentionSuggestionsEntryText__3Jobq{display:inline-block;margin-right:8px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:368px;font-size:.9em;margin-bottom:.2em}.draftJsMentionPlugin__mentionSuggestionsEntryAvatar__1xgA9{display:inline-block;width:24px;height:24px;border-radius:12px}.draftJsMentionPlugin__mentionSuggestions__2DWjA{border:1px solid #eee;margin-top:.4em;position:absolute;min-width:220px;max-width:440px;background:#fff;border-radius:2px;box-shadow:0 4px 30px 0 #dcdcdc;cursor:pointer;padding-top:8px;padding-bottom:8px;z-index:2;display:flex;flex-direction:column;box-sizing:border-box;transform:scale(0)}.DraftEditor-editorContainer,.DraftEditor-root,.public-DraftEditor-content{height:inherit;text-align:initial}.public-DraftEditor-content[contenteditable=true]{-webkit-user-modify:read-write-plaintext-only}.DraftEditor-root{position:relative}.DraftEditor-editorContainer{background-color:hsla(0,0%,100%,0);border-right:.1px solid transparent;position:relative;z-index:1}.public-DraftEditor-block{position:relative}.DraftEditor-alignLeft .public-DraftStyleDefault-block{text-align:right}.DraftEditor-alignLeft .public-DraftEditorPlaceholder-root{right:0;text-align:right}.DraftEditor-alignCenter .public-DraftStyleDefault-block{text-align:center}.DraftEditor-alignCenter .public-DraftEditorPlaceholder-root{margin:0 auto;text-align:center;width:100%}.DraftEditor-alignRight .public-DraftStyleDefault-block{text-align:left}.DraftEditor-alignRight .public-DraftEditorPlaceholder-root{left:0;text-align:left}.public-DraftEditorPlaceholder-root{color:#9197a3;position:absolute;z-index:1}.public-DraftEditorPlaceholder-hasFocus{color:#bdc1c9}.DraftEditorPlaceholder-hidden{display:none}.public-DraftStyleDefault-block{position:relative;white-space:pre-wrap}.public-DraftStyleDefault-ltr{direction:rtl;text-align:right}.public-DraftStyleDefault-rtl{direction:ltr;text-align:left}.public-DraftStyleDefault-listLTR{direction:rtl}.public-DraftStyleDefault-listRTL{direction:ltr}.public-DraftStyleDefault-ol,.public-DraftStyleDefault-ul{margin:16px 0;padding:0}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listLTR{margin-right:1.5em}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listRTL{margin-left:1.5em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listLTR{margin-right:3em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listRTL{margin-left:3em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listLTR{margin-right:4.5em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listRTL{margin-left:4.5em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listLTR{margin-right:6em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listRTL{margin-left:6em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listLTR{margin-right:7.5em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listRTL{margin-left:7.5em}.public-DraftStyleDefault-unorderedListItem{list-style-type:square;position:relative}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth0{list-style-type:disc}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth1{list-style-type:circle}.public-DraftStyleDefault-orderedListItem{list-style-type:none;position:relative}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listLTR:before{right:-36px;position:absolute;text-align:left;width:30px}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listRTL:before{position:absolute;left:-36px;text-align:right;width:30px}.public-DraftStyleDefault-orderedListItem:before{content:counter(ol0) ". ";counter-increment:ol0}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth1:before{content:counter(ol1) ". ";counter-increment:ol1}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth2:before{content:counter(ol2) ". ";counter-increment:ol2}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth3:before{content:counter(ol3) ". ";counter-increment:ol3}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth4:before{content:counter(ol4) ". ";counter-increment:ol4}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-reset{counter-reset:ol0}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-reset{counter-reset:ol1}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-reset{counter-reset:ol2}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-reset{counter-reset:ol3}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-reset{counter-reset:ol4}#person-selector{width:100%}
css/dist/search-appearance-1410.css ADDED
@@ -0,0 +1 @@
 
1
+ .draftJsMentionPlugin__mentionSuggestions__2DWjA{display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-transform:scale(0)}.draftJsMentionPlugin__mention__29BEd,.draftJsMentionPlugin__mention__29BEd:visited{color:#575f67;cursor:pointer;display:inline-block;background:#e6f3ff;padding-left:2px;padding-right:2px;border-radius:2px;text-decoration:none}.draftJsMentionPlugin__mention__29BEd:focus,.draftJsMentionPlugin__mention__29BEd:hover{color:#677584;background:#edf5fd;outline:0}.draftJsMentionPlugin__mention__29BEd:active{color:#222;background:#455261}.draftJsMentionPlugin__mentionSuggestionsEntry__3mSwm{padding:7px 10px 3px;transition:background-color .4s cubic-bezier(.27,1.27,.48,.56)}.draftJsMentionPlugin__mentionSuggestionsEntry__3mSwm:active{background-color:#cce7ff}.draftJsMentionPlugin__mentionSuggestionsEntryFocused__3LcTd{background-color:#e6f3ff}.draftJsMentionPlugin__mentionSuggestionsEntryText__3Jobq{display:inline-block;margin-left:8px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:368px;font-size:.9em;margin-bottom:.2em}.draftJsMentionPlugin__mentionSuggestionsEntryAvatar__1xgA9{display:inline-block;width:24px;height:24px;border-radius:12px}.draftJsMentionPlugin__mentionSuggestions__2DWjA{border:1px solid #eee;margin-top:.4em;position:absolute;min-width:220px;max-width:440px;background:#fff;border-radius:2px;box-shadow:0 4px 30px 0 #dcdcdc;cursor:pointer;padding-top:8px;padding-bottom:8px;z-index:2;display:flex;flex-direction:column;box-sizing:border-box;transform:scale(0)}.DraftEditor-editorContainer,.DraftEditor-root,.public-DraftEditor-content{height:inherit;text-align:initial}.public-DraftEditor-content[contenteditable=true]{-webkit-user-modify:read-write-plaintext-only}.DraftEditor-root{position:relative}.DraftEditor-editorContainer{background-color:hsla(0,0%,100%,0);border-left:.1px solid transparent;position:relative;z-index:1}.public-DraftEditor-block{position:relative}.DraftEditor-alignLeft .public-DraftStyleDefault-block{text-align:left}.DraftEditor-alignLeft .public-DraftEditorPlaceholder-root{left:0;text-align:left}.DraftEditor-alignCenter .public-DraftStyleDefault-block{text-align:center}.DraftEditor-alignCenter .public-DraftEditorPlaceholder-root{margin:0 auto;text-align:center;width:100%}.DraftEditor-alignRight .public-DraftStyleDefault-block{text-align:right}.DraftEditor-alignRight .public-DraftEditorPlaceholder-root{right:0;text-align:right}.public-DraftEditorPlaceholder-root{color:#9197a3;position:absolute;z-index:1}.public-DraftEditorPlaceholder-hasFocus{color:#bdc1c9}.DraftEditorPlaceholder-hidden{display:none}.public-DraftStyleDefault-block{position:relative;white-space:pre-wrap}.public-DraftStyleDefault-ltr{direction:ltr;text-align:left}.public-DraftStyleDefault-rtl{direction:rtl;text-align:right}.public-DraftStyleDefault-listLTR{direction:ltr}.public-DraftStyleDefault-listRTL{direction:rtl}.public-DraftStyleDefault-ol,.public-DraftStyleDefault-ul{margin:16px 0;padding:0}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listLTR{margin-left:1.5em}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listRTL{margin-right:1.5em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listLTR{margin-left:3em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listRTL{margin-right:3em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listLTR{margin-left:4.5em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listRTL{margin-right:4.5em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listLTR{margin-left:6em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listRTL{margin-right:6em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listLTR{margin-left:7.5em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listRTL{margin-right:7.5em}.public-DraftStyleDefault-unorderedListItem{list-style-type:square;position:relative}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth0{list-style-type:disc}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth1{list-style-type:circle}.public-DraftStyleDefault-orderedListItem{list-style-type:none;position:relative}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listLTR:before{left:-36px;position:absolute;text-align:right;width:30px}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listRTL:before{position:absolute;right:-36px;text-align:left;width:30px}.public-DraftStyleDefault-orderedListItem:before{content:counter(ol0) ". ";counter-increment:ol0}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth1:before{content:counter(ol1) ". ";counter-increment:ol1}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth2:before{content:counter(ol2) ". ";counter-increment:ol2}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth3:before{content:counter(ol3) ". ";counter-increment:ol3}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth4:before{content:counter(ol4) ". ";counter-increment:ol4}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-reset{counter-reset:ol0}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-reset{counter-reset:ol1}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-reset{counter-reset:ol2}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-reset{counter-reset:ol3}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-reset{counter-reset:ol4}#person-selector{width:100%}
css/dist/{structured-data-blocks-1404-rtl.css → structured-data-blocks-1410-rtl.css} RENAMED
File without changes
css/dist/{structured-data-blocks-1404.css → structured-data-blocks-1410.css} RENAMED
File without changes
css/dist/{toggle-switch-1404-rtl.css → toggle-switch-1410-rtl.css} RENAMED
File without changes
css/dist/{toggle-switch-1404.css → toggle-switch-1410.css} RENAMED
File without changes
css/dist/{wpseo-dismissible-1404-rtl.css → wpseo-dismissible-1410-rtl.css} RENAMED
File without changes
css/dist/{wpseo-dismissible-1404.css → wpseo-dismissible-1410.css} RENAMED
File without changes
css/dist/{yoast-components-1404-rtl.css → yoast-components-1410-rtl.css} RENAMED
File without changes
css/dist/{yoast-components-1404.css → yoast-components-1410.css} RENAMED
File without changes
css/dist/yoast-extensions-1404-rtl.css DELETED
@@ -1 +0,0 @@
1
- @charset "UTF-8";.yoast-list--usp{padding:0;margin-bottom:1em;font-family:Arial,sans-serif}.yoast-list--usp li{list-style:none!important;position:relative;padding-right:1.2533333333rem}.yoast-list--usp li:before{content:"\f00c\0020";position:absolute;right:0;top:0;font-family:FontAwesome,Open Sans,Arial,sans-serif;color:#77b227}.yoast .h1,.yoast .h2,.yoast .h3,.yoast .h4,.yoast .h5,.yoast .h6,.yoast h1,.yoast h2,.yoast h3,.yoast h4,.yoast h5,.yoast h6{font-family:Arial,sans-serif;font-weight:300;margin-top:0;display:block}.yoast .h1,.yoast h1{font-size:2.5em;line-height:3.68rem;margin-bottom:1.35rem;letter-spacing:normal}@media only screen and (min-width:30rem){.yoast .h1,.yoast h1{font-size:2.75em}}.yoast .h2,.yoast h2{font-size:1.88em;line-height:2.5rem;margin-bottom:1.2rem}.yoast .h2.tight,.yoast h2.tight{margin-bottom:.6rem}.yoast .h3,.yoast h3{font-size:1.25em;line-height:1.88rem;margin-bottom:.8rem}.yoast .h3.tight,.yoast h3.tight{margin-bottom:.4rem}@media only screen and (min-width:30rem){.yoast .h3,.yoast h3{font-size:1.375em}}@media only screen and (min-width:50rem){.yoast .h3,.yoast h3{font-size:1.5em}}.yoast .h4,.yoast .h5,.yoast .h6,.yoast h4,.yoast h5,.yoast h6{font-size:1.13em;font-weight:400;line-height:1.88rem;margin-bottom:.2rem}.yoast-button{font-family:Arial,sans-serif;position:relative;display:inline-block;width:100%;padding:.345em 1em .345em 1.5em;font-size:1.1em;background-color:initial;background-color:#dc5c04;color:#dc5c04;border:0;text-decoration:none;cursor:pointer}@media only screen and (min-width:30rem){.yoast-button{margin-left:1.36rem;width:auto;max-height:2.86rem}.yoast-button:after{content:"";position:absolute;top:0;left:-1.36rem;height:0;width:0;border-left:0;border-right:1.43rem solid #dc5c04;border-top:1.43rem solid transparent;border-bottom:1.44rem solid transparent}.yoast-button.left{margin-left:0;margin-right:1.36rem}.yoast-button.left:after{content:none}.yoast-button.left:before{content:"";position:absolute;top:0;right:-1.36rem;height:0;width:0;border-right:0;border-left:1.43rem solid #dc5c04;border-top:1.43rem solid transparent;border-bottom:1.44rem solid transparent}}.yoast-button.alignleft{margin:1rem 0 0 2.5rem!important}.yoast-button .arrow{display:none}.yoast-button+.yoast-button{margin-top:1em;margin-right:1.88rem}.yoast-button--full{width:100%}.yoast-button--full:after{content:none}.yoast-button.default{color:#fff;background-color:#dc5c04}.yoast-button.default:after{border-right-color:#dc5c04}.yoast-button.default:before{border-left-color:#dc5c04}.yoast-button:hover,.yoast-button a:focus{background-color:#f58223;color:#fff;text-decoration:underline}.yoast-button:hover:after,.yoast-button a:focus:after{border-right-color:#f58223}.yoast-button:hover:before,.yoast-button a:focus:before{border-left-color:#f58223}.yoast-button.academy{color:#fff;background-color:#5d237a}.yoast-button.academy:after{border-right-color:#5d237a}.yoast-button.academy:before{border-left-color:#5d237a}@media only screen and (max-width:20rem){.yoast-button.academy{background-color:#5d237a}}.yoast-button.academy--secondary{color:#fff;background-color:#a4286a}.yoast-button.academy--secondary:after{border-right-color:#a4286a}.yoast-button.academy--secondary:before{border-left-color:#a4286a}@media only screen and (max-width:20rem){.yoast-button.academy--secondary{background-color:#a4286a}}.yoast-button.software{color:#fff;background-color:#0075b3}.yoast-button.software:after{border-right-color:#0075b3}.yoast-button.software:before{border-left-color:#0075b3}.yoast-button.review{color:#fff;background-color:#009288}.yoast-button.review:after{border-right-color:#009288}.yoast-button.review:before{border-left-color:#009288}.yoast-button.about{color:#fff;background-color:#d93f69}.yoast-button.about:after{border-right-color:#d93f69}.yoast-button.about:before{border-left-color:#d93f69}.yoast_academy .yoast-button{color:#fff;background-color:#d93f69}.yoast_academy .yoast-button:after{border-right-color:#d93f69}.yoast_academy .yoast-button:before{border-left-color:#d93f69}.yoast_academy .yoast-button:hover,.yoast_academy .yoast-button a:focus{background-color:#d42a59;color:#fff;text-decoration:underline}.yoast_academy .yoast-button:hover:after,.yoast_academy .yoast-button a:focus:after{border-right-color:#d42a59}.yoast_academy .yoast-button:hover:before,.yoast_academy .yoast-button a:focus:before{border-left-color:#d42a59}.yoast_academy .yoast-button.dimmed,body .yoast-button.dimmed{color:#646464;background-color:#dcdcdc}.yoast_academy .yoast-button.dimmed:after,body .yoast-button.dimmed:after{border-right-color:#dcdcdc}.yoast_academy .yoast-button.dimmed:before,body .yoast-button.dimmed:before{border-left-color:#dcdcdc}.yoast_academy .yoast-button.dimmed:hover,.yoast_academy .yoast-button.dimmed a:focus,body .yoast-button.dimmed:hover,body .yoast-button.dimmed a:focus{background-color:#cdcdcd;color:#646464;text-decoration:underline}.yoast_academy .yoast-button.dimmed:hover:after,.yoast_academy .yoast-button.dimmed a:focus:after,body .yoast-button.dimmed:hover:after,body .yoast-button.dimmed a:focus:after{border-right-color:#cdcdcd}.yoast_academy .yoast-button.dimmed:hover:before,.yoast_academy .yoast-button.dimmed a:focus:before,body .yoast-button.dimmed:hover:before,body .yoast-button.dimmed a:focus:before{border-left-color:#cdcdcd}.yoast-button--noarrow:after{content:none}.yoast-button--naked{border:none;background-color:initial;padding:0}.yoast-button--naked:after{content:none}.yoast-button i.fa{font-size:140%;margin:4px 0 0 10px}.yoast-promoblock{margin-bottom:1.88rem;box-shadow:0 1px 6px 0 rgba(0,0,0,.3);border:1px solid #dcdcdc;padding:16px}.yoast-promoblock p{color:#000}.yoast-promoblock p:last-of-type{margin-bottom:0}.yoast-promoblock i.blockicon{position:absolute;left:10px;bottom:10px;padding:0 .5em 0 0;font-size:2.25em}.yoast-promoblock a img{border:1px solid #dcdcdc}.yoast-promoblock p a{font-weight:600!important;text-decoration:underline}.yoast-promoblock form a{font-weight:400!important;text-decoration:none}.yoast-promoblock .h4,.yoast-promoblock h4{margin-bottom:.7rem}.yoast-promoblock.link{border-color:#dc5c04}.yoast-promoblock.link a,.yoast-promoblock.link a:hover{color:#dc5c04}.yoast-promoblock--white{border-color:#fff!important}.product .yoast-promoblock{overflow:hidden}.yoast-promoblock--hometitle{max-width:16em;height:11em;margin:1rem auto 2rem;display:flex;font-size:16px;font-size:1rem;line-height:1;background-color:rgba(217,63,105,.25);border-color:#fff!important}@media only screen and (max-width:30rem){.yoast-promoblock--hometitle:after{content:none!important}}.yoast-promoblock--imageholder{padding:0;margin-bottom:0}.yoast-promoblock--imageholdersmall{position:absolute}.yoast-promoblock--imageholdersmall:first-child{right:4rem}.yoast-promoblock--imageholdersmall:last-child{top:4rem}@media only screen and (max-width:50rem){.yoast-promoblock h2{margin-bottom:0}}a.promoblock{text-decoration:none;color:#000}a.promoblock:hover{text-decoration:none}.promoblockimage__holder{width:240px;height:295px;position:relative}.yoast{font-family:Open Sans,Arial,sans-serif;font-size:1rem;line-height:1.88;letter-spacing:.01em;color:#000}.yoast *,.yoast :after,.yoast :before{box-sizing:border-box}.yoast-hr{margin:0;border:0;padding-bottom:1.88rem;position:relative}.yoast-list--usp li:before{content:"";background:url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20role%3D%22img%22%20aria%2Dhidden%3D%22true%22%20focusable%3D%22false%22%3E%3Cpath%20fill%3D%22%2377B227%22%20d%3D%22M1671%20566q0%2040%2D28%2068l%2D724%20724%2D136%20136q%2D28%2028%2D68%2028t%2D68%2D28l%2D136%2D136%2D362%2D362q%2D28%2D28%2D28%2D68t28%2D68l136%2D136q28%2D28%2068%2D28t68%2028l294%20295%20656%2D657q28%2D28%2068%2D28t68%2028l136%20136q28%2028%2028%2068z%22%2F%3E%3C%2Fsvg%3E") no-repeat;background-size:contain;width:1em;height:100%;background-position:right .4em}.yoast-button--purple{background-color:#5d237a}.yoast-button-go-to:after{content:" \00BB";position:static;top:auto;left:auto;width:auto;height:auto;border:none}.yoast-button--extension{color:#fff;text-transform:uppercase;padding-right:.8em;padding-left:.8em}.yoast-button--extension+.yoast-button--extension-activated,.yoast-button--extension+.yoast-button--extension-not-activated{margin-right:0}.yoast-button--extension-activated:hover,.yoast-button--extension-installed:hover,.yoast-button--extension-not-activated:hover{text-decoration:none}.yoast-button--extension-installed{margin-left:.2rem}.yoast-button--extension-installed,.yoast-button--extension-installed:hover{background-color:#008a00}.yoast-button--extension-not-activated,.yoast-button--extension-not-activated:hover{background-color:#dc3232}.yoast-button--extension-activated,.yoast-button--extension-activated:hover{background-color:#008a00}.yoast-button-upsell{width:100%;margin-bottom:1em}@media only screen and (min-width:30rem){.yoast-button-upsell{width:auto;margin-left:1.36rem}}.yoast-promo-extensions{display:flex;flex-wrap:wrap;margin-right:-24px}.yoast-promo-extensions>h2{width:100%;margin-right:32px;margin-bottom:32px}.yoast-promo-extension{display:flex;flex-direction:column;max-width:340px;background-color:#fff;margin-right:32px}.yoast-promo-extension:first-child{margin-right:0}.yoast-promo-extension img{float:left;width:100px;height:100px;margin-bottom:.8rem}@media screen and (max-width:900px){.yoast-promo-extension img{display:none}}.yoast-promo-extension .yoast-button-container{margin-top:auto}.yoast-promo-extension .yoast-button-container div.yoast-button--extension{cursor:default}.yoast-promo-extension .yoast-button{width:100%;max-height:none;font-size:.9rem}.yoast-promo-extension .yoast-button--installed{color:#fff}.yoast-promo-extension .yoast-button--extension{font-size:.9rem;text-align:center;margin-top:0}.yoast-promo-extension .yoast-button--extension-installed{margin:0 0 0 2%;width:48%}.yoast-promo-extension .yoast-button--extension-activated,.yoast-promo-extension .yoast-button--extension-not-activated{margin-right:0;margin-left:0;width:48%}.yoast-promo-extension .yoast-button-upsell{width:100%}.yoast-promo-extension h3{color:#a4286a}@media screen and (max-width:900px){.yoast-promo-extension{max-width:none;width:100%}}.yoast-seo-premium-extension{margin:2em .5em 1.5em}.yoast-seo-premium-extension:after,.yoast-seo-premium-extension:before{content:"";display:table}.yoast-seo-premium-extension:after{clear:both}.yoast-seo-premium-benefits__title{font-weight:600}.yoast-seo-premium-benefits__description:before{content:"– "}.yoast-link--license,.yoast-link--more-info{color:#a4286a;font-weight:600}.yoast-link--license{margin:1em 0 0}.yoast-promo-extension .yoast-link--license{display:block;margin:1em 0 0}.yoast-link--license:after{content:" \00BB"}.yoast-link--more-info{background:url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20role%3D%22img%22%20aria%2Dhidden%3D%22true%22%20focusable%3D%22false%22%3E%3Cpath%20fill%3D%22%23A4286A%22%20d%3D%22M1152%201376v%2D160q0%2D14%2D9%2D23t%2D23%2D9h%2D96v%2D512q0%2D14%2D9%2D23t%2D23%2D9h%2D320q%2D14%200%2D23%209t%2D9%2023v160q0%2014%209%2023t23%209h96v320h%2D96q%2D14%200%2D23%209t%2D9%2023v160q0%2014%209%2023t23%209h448q14%200%2023%2D9t9%2D23zm%2D128%2D896v%2D160q0%2D14%2D9%2D23t%2D23%2D9h%2D192q%2D14%200%2D23%209t%2D9%2023v160q0%2014%209%2023t23%209h192q14%200%2023%2D9t9%2D23zm640%20416q0%20209%2D103%20385%2E5t%2D279%2E5%20279%2E5%2D385%2E5%20103%2D385%2E5%2D103%2D279%2E5%2D279%2E5%2D103%2D385%2E5%20103%2D385%2E5%20279%2E5%2D279%2E5%20385%2E5%2D103%20385%2E5%20103%20279%2E5%20279%2E5%20103%20385%2E5z%22%2F%3E%3C%2Fsvg%3E");padding-right:calc(1em + 5px);background-size:1em;background-repeat:no-repeat;background-position:100%}.yoast-link--more-info:after{content:" \00BB"}.yoast-promo-extension .yoast-link--more-info{display:block;margin:0;background-position:100%}.yoast-heading-highlight{color:#a4286a;font-weight:600}.yoast-money-back-guarantee{font-style:italic;font-size:1.1em}.yoast-license-status-active{padding:3px 6px;color:#fff;background:#008a00}.yoast-license-status-inactive{padding:3px 6px;color:#fff;background:#dc3232}
 
css/dist/yoast-extensions-1404.css DELETED
@@ -1 +0,0 @@
1
- @charset "UTF-8";.yoast-list--usp{padding:0;margin-bottom:1em;font-family:Arial,sans-serif}.yoast-list--usp li{list-style:none!important;position:relative;padding-left:1.2533333333rem}.yoast-list--usp li:before{content:"\f00c\0020";position:absolute;left:0;top:0;font-family:FontAwesome,Open Sans,Arial,sans-serif;color:#77b227}.yoast .h1,.yoast .h2,.yoast .h3,.yoast .h4,.yoast .h5,.yoast .h6,.yoast h1,.yoast h2,.yoast h3,.yoast h4,.yoast h5,.yoast h6{font-family:Arial,sans-serif;font-weight:300;margin-top:0;display:block}.yoast .h1,.yoast h1{font-size:2.5em;line-height:3.68rem;margin-bottom:1.35rem;letter-spacing:normal}@media only screen and (min-width:30rem){.yoast .h1,.yoast h1{font-size:2.75em}}.yoast .h2,.yoast h2{font-size:1.88em;line-height:2.5rem;margin-bottom:1.2rem}.yoast .h2.tight,.yoast h2.tight{margin-bottom:.6rem}.yoast .h3,.yoast h3{font-size:1.25em;line-height:1.88rem;margin-bottom:.8rem}.yoast .h3.tight,.yoast h3.tight{margin-bottom:.4rem}@media only screen and (min-width:30rem){.yoast .h3,.yoast h3{font-size:1.375em}}@media only screen and (min-width:50rem){.yoast .h3,.yoast h3{font-size:1.5em}}.yoast .h4,.yoast .h5,.yoast .h6,.yoast h4,.yoast h5,.yoast h6{font-size:1.13em;font-weight:400;line-height:1.88rem;margin-bottom:.2rem}.yoast-button{font-family:Arial,sans-serif;position:relative;display:inline-block;width:100%;padding:.345em 1.5em .345em 1em;font-size:1.1em;background-color:initial;background-color:#dc5c04;color:#dc5c04;border:0;text-decoration:none;cursor:pointer}@media only screen and (min-width:30rem){.yoast-button{margin-right:1.36rem;width:auto;max-height:2.86rem}.yoast-button:after{content:"";position:absolute;top:0;right:-1.36rem;height:0;width:0;border-right:0;border-left:1.43rem solid #dc5c04;border-top:1.43rem solid transparent;border-bottom:1.44rem solid transparent}.yoast-button.left{margin-right:0;margin-left:1.36rem}.yoast-button.left:after{content:none}.yoast-button.left:before{content:"";position:absolute;top:0;left:-1.36rem;height:0;width:0;border-left:0;border-right:1.43rem solid #dc5c04;border-top:1.43rem solid transparent;border-bottom:1.44rem solid transparent}}.yoast-button.alignleft{margin:1rem 2.5rem 0 0!important}.yoast-button .arrow{display:none}.yoast-button+.yoast-button{margin-top:1em;margin-left:1.88rem}.yoast-button--full{width:100%}.yoast-button--full:after{content:none}.yoast-button.default{color:#fff;background-color:#dc5c04}.yoast-button.default:after{border-left-color:#dc5c04}.yoast-button.default:before{border-right-color:#dc5c04}.yoast-button:hover,.yoast-button a:focus{background-color:#f58223;color:#fff;text-decoration:underline}.yoast-button:hover:after,.yoast-button a:focus:after{border-left-color:#f58223}.yoast-button:hover:before,.yoast-button a:focus:before{border-right-color:#f58223}.yoast-button.academy{color:#fff;background-color:#5d237a}.yoast-button.academy:after{border-left-color:#5d237a}.yoast-button.academy:before{border-right-color:#5d237a}@media only screen and (max-width:20rem){.yoast-button.academy{background-color:#5d237a}}.yoast-button.academy--secondary{color:#fff;background-color:#a4286a}.yoast-button.academy--secondary:after{border-left-color:#a4286a}.yoast-button.academy--secondary:before{border-right-color:#a4286a}@media only screen and (max-width:20rem){.yoast-button.academy--secondary{background-color:#a4286a}}.yoast-button.software{color:#fff;background-color:#0075b3}.yoast-button.software:after{border-left-color:#0075b3}.yoast-button.software:before{border-right-color:#0075b3}.yoast-button.review{color:#fff;background-color:#009288}.yoast-button.review:after{border-left-color:#009288}.yoast-button.review:before{border-right-color:#009288}.yoast-button.about{color:#fff;background-color:#d93f69}.yoast-button.about:after{border-left-color:#d93f69}.yoast-button.about:before{border-right-color:#d93f69}.yoast_academy .yoast-button{color:#fff;background-color:#d93f69}.yoast_academy .yoast-button:after{border-left-color:#d93f69}.yoast_academy .yoast-button:before{border-right-color:#d93f69}.yoast_academy .yoast-button:hover,.yoast_academy .yoast-button a:focus{background-color:#d42a59;color:#fff;text-decoration:underline}.yoast_academy .yoast-button:hover:after,.yoast_academy .yoast-button a:focus:after{border-left-color:#d42a59}.yoast_academy .yoast-button:hover:before,.yoast_academy .yoast-button a:focus:before{border-right-color:#d42a59}.yoast_academy .yoast-button.dimmed,body .yoast-button.dimmed{color:#646464;background-color:#dcdcdc}.yoast_academy .yoast-button.dimmed:after,body .yoast-button.dimmed:after{border-left-color:#dcdcdc}.yoast_academy .yoast-button.dimmed:before,body .yoast-button.dimmed:before{border-right-color:#dcdcdc}.yoast_academy .yoast-button.dimmed:hover,.yoast_academy .yoast-button.dimmed a:focus,body .yoast-button.dimmed:hover,body .yoast-button.dimmed a:focus{background-color:#cdcdcd;color:#646464;text-decoration:underline}.yoast_academy .yoast-button.dimmed:hover:after,.yoast_academy .yoast-button.dimmed a:focus:after,body .yoast-button.dimmed:hover:after,body .yoast-button.dimmed a:focus:after{border-left-color:#cdcdcd}.yoast_academy .yoast-button.dimmed:hover:before,.yoast_academy .yoast-button.dimmed a:focus:before,body .yoast-button.dimmed:hover:before,body .yoast-button.dimmed a:focus:before{border-right-color:#cdcdcd}.yoast-button--noarrow:after{content:none}.yoast-button--naked{border:none;background-color:initial;padding:0}.yoast-button--naked:after{content:none}.yoast-button i.fa{font-size:140%;margin:4px 10px 0 0}.yoast-promoblock{margin-bottom:1.88rem;box-shadow:0 1px 6px 0 rgba(0,0,0,.3);border:1px solid #dcdcdc;padding:16px}.yoast-promoblock p{color:#000}.yoast-promoblock p:last-of-type{margin-bottom:0}.yoast-promoblock i.blockicon{position:absolute;right:10px;bottom:10px;padding:0 0 0 .5em;font-size:2.25em}.yoast-promoblock a img{border:1px solid #dcdcdc}.yoast-promoblock p a{font-weight:600!important;text-decoration:underline}.yoast-promoblock form a{font-weight:400!important;text-decoration:none}.yoast-promoblock .h4,.yoast-promoblock h4{margin-bottom:.7rem}.yoast-promoblock.link{border-color:#dc5c04}.yoast-promoblock.link a,.yoast-promoblock.link a:hover{color:#dc5c04}.yoast-promoblock--white{border-color:#fff!important}.product .yoast-promoblock{overflow:hidden}.yoast-promoblock--hometitle{max-width:16em;height:11em;margin:1rem auto 2rem;display:flex;font-size:16px;font-size:1rem;line-height:1;background-color:rgba(217,63,105,.25);border-color:#fff!important}@media only screen and (max-width:30rem){.yoast-promoblock--hometitle:after{content:none!important}}.yoast-promoblock--imageholder{padding:0;margin-bottom:0}.yoast-promoblock--imageholdersmall{position:absolute}.yoast-promoblock--imageholdersmall:first-child{left:4rem}.yoast-promoblock--imageholdersmall:last-child{top:4rem}@media only screen and (max-width:50rem){.yoast-promoblock h2{margin-bottom:0}}a.promoblock{text-decoration:none;color:#000}a.promoblock:hover{text-decoration:none}.promoblockimage__holder{width:240px;height:295px;position:relative}.yoast{font-family:Open Sans,Arial,sans-serif;font-size:1rem;line-height:1.88;letter-spacing:.01em;color:#000}.yoast *,.yoast :after,.yoast :before{box-sizing:border-box}.yoast-hr{margin:0;border:0;padding-bottom:1.88rem;position:relative}.yoast-list--usp li:before{content:"";background:url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20role%3D%22img%22%20aria%2Dhidden%3D%22true%22%20focusable%3D%22false%22%3E%3Cpath%20fill%3D%22%2377B227%22%20d%3D%22M1671%20566q0%2040%2D28%2068l%2D724%20724%2D136%20136q%2D28%2028%2D68%2028t%2D68%2D28l%2D136%2D136%2D362%2D362q%2D28%2D28%2D28%2D68t28%2D68l136%2D136q28%2D28%2068%2D28t68%2028l294%20295%20656%2D657q28%2D28%2068%2D28t68%2028l136%20136q28%2028%2028%2068z%22%2F%3E%3C%2Fsvg%3E") no-repeat;background-size:contain;width:1em;height:100%;background-position:left .4em}.yoast-button--purple{background-color:#5d237a}.yoast-button-go-to:after{content:" \00BB";position:static;top:auto;right:auto;width:auto;height:auto;border:none}.yoast-button--extension{color:#fff;text-transform:uppercase;padding-left:.8em;padding-right:.8em}.yoast-button--extension+.yoast-button--extension-activated,.yoast-button--extension+.yoast-button--extension-not-activated{margin-left:0}.yoast-button--extension-activated:hover,.yoast-button--extension-installed:hover,.yoast-button--extension-not-activated:hover{text-decoration:none}.yoast-button--extension-installed{margin-right:.2rem}.yoast-button--extension-installed,.yoast-button--extension-installed:hover{background-color:#008a00}.yoast-button--extension-not-activated,.yoast-button--extension-not-activated:hover{background-color:#dc3232}.yoast-button--extension-activated,.yoast-button--extension-activated:hover{background-color:#008a00}.yoast-button-upsell{width:100%;margin-bottom:1em}@media only screen and (min-width:30rem){.yoast-button-upsell{width:auto;margin-right:1.36rem}}.yoast-promo-extensions{display:flex;flex-wrap:wrap;margin-left:-24px}.yoast-promo-extensions>h2{width:100%;margin-left:32px;margin-bottom:32px}.yoast-promo-extension{display:flex;flex-direction:column;max-width:340px;background-color:#fff;margin-left:32px}.yoast-promo-extension:first-child{margin-left:0}.yoast-promo-extension img{float:right;width:100px;height:100px;margin-bottom:.8rem}@media screen and (max-width:900px){.yoast-promo-extension img{display:none}}.yoast-promo-extension .yoast-button-container{margin-top:auto}.yoast-promo-extension .yoast-button-container div.yoast-button--extension{cursor:default}.yoast-promo-extension .yoast-button{width:100%;max-height:none;font-size:.9rem}.yoast-promo-extension .yoast-button--installed{color:#fff}.yoast-promo-extension .yoast-button--extension{font-size:.9rem;text-align:center;margin-top:0}.yoast-promo-extension .yoast-button--extension-installed{margin:0 2% 0 0;width:48%}.yoast-promo-extension .yoast-button--extension-activated,.yoast-promo-extension .yoast-button--extension-not-activated{margin-left:0;margin-right:0;width:48%}.yoast-promo-extension .yoast-button-upsell{width:100%}.yoast-promo-extension h3{color:#a4286a}@media screen and (max-width:900px){.yoast-promo-extension{max-width:none;width:100%}}.yoast-seo-premium-extension{margin:2em .5em 1.5em}.yoast-seo-premium-extension:after,.yoast-seo-premium-extension:before{content:"";display:table}.yoast-seo-premium-extension:after{clear:both}.yoast-seo-premium-benefits__title{font-weight:600}.yoast-seo-premium-benefits__description:before{content:"– "}.yoast-link--license,.yoast-link--more-info{color:#a4286a;font-weight:600}.yoast-link--license{margin:1em 0 0}.yoast-promo-extension .yoast-link--license{display:block;margin:1em 0 0}.yoast-link--license:after{content:" \00BB"}.yoast-link--more-info{background:url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20role%3D%22img%22%20aria%2Dhidden%3D%22true%22%20focusable%3D%22false%22%3E%3Cpath%20fill%3D%22%23A4286A%22%20d%3D%22M1152%201376v%2D160q0%2D14%2D9%2D23t%2D23%2D9h%2D96v%2D512q0%2D14%2D9%2D23t%2D23%2D9h%2D320q%2D14%200%2D23%209t%2D9%2023v160q0%2014%209%2023t23%209h96v320h%2D96q%2D14%200%2D23%209t%2D9%2023v160q0%2014%209%2023t23%209h448q14%200%2023%2D9t9%2D23zm%2D128%2D896v%2D160q0%2D14%2D9%2D23t%2D23%2D9h%2D192q%2D14%200%2D23%209t%2D9%2023v160q0%2014%209%2023t23%209h192q14%200%2023%2D9t9%2D23zm640%20416q0%20209%2D103%20385%2E5t%2D279%2E5%20279%2E5%2D385%2E5%20103%2D385%2E5%2D103%2D279%2E5%2D279%2E5%2D103%2D385%2E5%20103%2D385%2E5%20279%2E5%2D279%2E5%20385%2E5%2D103%20385%2E5%20103%20279%2E5%20279%2E5%20103%20385%2E5z%22%2F%3E%3C%2Fsvg%3E");padding-left:calc(1em + 5px);background-size:1em;background-repeat:no-repeat;background-position:0}.yoast-link--more-info:after{content:" \00BB"}.yoast-promo-extension .yoast-link--more-info{display:block;margin:0;background-position:0}.yoast-heading-highlight{color:#a4286a;font-weight:600}.yoast-money-back-guarantee{font-style:italic;font-size:1.1em}.yoast-license-status-active{padding:3px 6px;color:#fff;background:#008a00}.yoast-license-status-inactive{padding:3px 6px;color:#fff;background:#dc3232}
 
css/dist/yoast-extensions-1410-rtl.css ADDED
@@ -0,0 +1 @@
 
1
+ @charset "UTF-8";:root{--svg-icon-info:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23A4286A' d='M1152 1376v-160q0-14-9-23t-23-9h-96V672q0-14-9-23t-23-9H672q-14 0-23 9t-9 23v160q0 14 9 23t23 9h96v320h-96q-14 0-23 9t-9 23v160q0 14 9 23t23 9h448q14 0 23-9t9-23zm-128-896V320q0-14-9-23t-23-9H800q-14 0-23 9t-9 23v160q0 14 9 23t23 9h192q14 0 23-9t9-23zm640 416q0 209-103 385.5T1281.5 1561 896 1664t-385.5-103T231 1281.5 128 896t103-385.5T510.5 231 896 128t385.5 103T1561 510.5 1664 896z'/%3E%3C/svg%3E");--svg-icon-check:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%2377B227' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/%3E%3C/svg%3E");--svg-icon-check-ok:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%2377B227' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/%3E%3C/svg%3E");--svg-icon-caret-right:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 192 512' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z'/%3E%3C/svg%3E");--svg-icon-caret-left:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 192 512' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z'/%3E%3C/svg%3E");--svg-icon-eye:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M1664 960q-152-236-381-353 61 104 61 225 0 185-131.5 316.5T896 1280t-316.5-131.5T448 832q0-121 61-225-229 117-381 353 133 205 333.5 326.5T896 1408t434.5-121.5T1664 960zM944 576q0-20-14-34t-34-14q-125 0-214.5 89.5T592 832q0 20 14 34t34 14 34-14 14-34q0-86 61-147t147-61q20 0 34-14t14-34zm848 384q0 34-20 69-140 230-376.5 368.5T896 1536t-499.5-139T20 1029Q0 994 0 960t20-69q140-229 376.5-368T896 384t499.5 139T1772 891q20 35 20 69z'/%3E%3C/svg%3E");--svg-icon-list:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M384 1408q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm0-512q0 80-56 136t-136 56-136-56T0 896t56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5H544q-13 0-22.5-9.5T512 1504v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zM384 384q0 80-56 136t-136 56-136-56T0 384t56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5H544q-13 0-22.5-9.5T512 992V800q0-13 9.5-22.5T544 768h1216q13 0 22.5 9.5t9.5 22.5zm0-512v192q0 13-9.5 22.5T1760 512H544q-13 0-22.5-9.5T512 480V288q0-13 9.5-22.5T544 256h1216q13 0 22.5 9.5t9.5 22.5z'/%3E%3C/svg%3E");--svg-icon-key:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M832 512q0-80-56-136t-136-56-136 56-56 136q0 42 19 83-41-19-83-19-80 0-136 56t-56 136 56 136 136 56 136-56 56-136q0-42-19-83 41 19 83 19 80 0 136-56t56-136zm851 704q0 17-49 66t-66 49q-9 0-28.5-16t-36.5-33-38.5-40-24.5-26l-96 96 220 220q28 28 28 68 0 42-39 81t-81 39q-40 0-68-28l-671-671q-176 131-365 131-163 0-265.5-102.5T0 784q0-160 95-313t248-248 313-95q163 0 265.5 102.5T1024 496q0 189-131 365l355 355 96-96q-3-3-26-24.5t-40-38.5-33-36.5-16-28.5q0-17 49-66t66-49q13 0 23 10 6 6 46 44.5t82 79.5 86.5 86 73 78 28.5 41z'/%3E%3C/svg%3E");--svg-icon-edit:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M491 1536l91-91-235-235-91 91v107h128v128h107zm523-928q0-22-22-22-10 0-17 7l-542 542q-7 7-7 17 0 22 22 22 10 0 17-7l542-542q7-7 7-17zm-54-192l416 416-832 832H128v-416zm683 96q0 53-37 90l-166 166-416-416 166-165q36-38 90-38 53 0 91 38l235 234q37 39 37 91z'/%3E%3C/svg%3E");--svg-icon-yoast:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23999' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-good:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%237ad03a' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-ok:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23ee7c1b' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-bad:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23dc3232' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-noindex:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%231e8cbe' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E")}.yoast-list--usp{padding:0;margin-bottom:1em;font-family:Arial,sans-serif}.yoast-list--usp li{list-style:none!important;position:relative;padding-right:1.2533333333rem}.yoast-list--usp li:before{content:"\f00c\0020";position:absolute;right:0;top:0;font-family:FontAwesome,Open Sans,Arial,sans-serif;color:#77b227}.yoast .h1,.yoast .h2,.yoast .h3,.yoast .h4,.yoast .h5,.yoast .h6,.yoast h1,.yoast h2,.yoast h3,.yoast h4,.yoast h5,.yoast h6{font-family:Arial,sans-serif;font-weight:300;margin-top:0;display:block}.yoast .h1,.yoast h1{font-size:2.5em;line-height:3.68rem;margin-bottom:1.35rem;letter-spacing:normal}@media only screen and (min-width:30rem){.yoast .h1,.yoast h1{font-size:2.75em}}.yoast .h2,.yoast h2{font-size:1.88em;line-height:2.5rem;margin-bottom:1.2rem}.yoast .h2.tight,.yoast h2.tight{margin-bottom:.6rem}.yoast .h3,.yoast h3{font-size:1.25em;line-height:1.88rem;margin-bottom:.8rem}.yoast .h3.tight,.yoast h3.tight{margin-bottom:.4rem}@media only screen and (min-width:30rem){.yoast .h3,.yoast h3{font-size:1.375em}}@media only screen and (min-width:50rem){.yoast .h3,.yoast h3{font-size:1.5em}}.yoast .h4,.yoast .h5,.yoast .h6,.yoast h4,.yoast h5,.yoast h6{font-size:1.13em;font-weight:400;line-height:1.88rem;margin-bottom:.2rem}.yoast-button{font-family:Arial,sans-serif;position:relative;display:inline-block;width:100%;padding:.345em 1em .345em 1.5em;font-size:1.1em;background-color:initial;background-color:#dc5c04;color:#dc5c04;border:0;text-decoration:none;cursor:pointer}@media only screen and (min-width:30rem){.yoast-button{margin-left:1.36rem;width:auto;max-height:2.86rem}.yoast-button:after{content:"";position:absolute;top:0;left:-1.36rem;height:0;width:0;border-left:0;border-right:1.43rem solid #dc5c04;border-top:1.43rem solid transparent;border-bottom:1.44rem solid transparent}.yoast-button.left{margin-left:0;margin-right:1.36rem}.yoast-button.left:after{content:none}.yoast-button.left:before{content:"";position:absolute;top:0;right:-1.36rem;height:0;width:0;border-right:0;border-left:1.43rem solid #dc5c04;border-top:1.43rem solid transparent;border-bottom:1.44rem solid transparent}}.yoast-button.alignleft{margin:1rem 0 0 2.5rem!important}.yoast-button .arrow{display:none}.yoast-button+.yoast-button{margin-top:1em;margin-right:1.88rem}.yoast-button--full{width:100%}.yoast-button--full:after{content:none}.yoast-button.default{color:#fff;background-color:#dc5c04}.yoast-button.default:after{border-right-color:#dc5c04}.yoast-button.default:before{border-left-color:#dc5c04}.yoast-button:hover,.yoast-button a:focus{background-color:#f58223;color:#fff;text-decoration:underline}.yoast-button:hover:after,.yoast-button a:focus:after{border-right-color:#f58223}.yoast-button:hover:before,.yoast-button a:focus:before{border-left-color:#f58223}.yoast-button.academy{color:#fff;background-color:#5d237a}.yoast-button.academy:after{border-right-color:#5d237a}.yoast-button.academy:before{border-left-color:#5d237a}@media only screen and (max-width:20rem){.yoast-button.academy{background-color:#5d237a}}.yoast-button.academy--secondary{color:#fff;background-color:#a4286a}.yoast-button.academy--secondary:after{border-right-color:#a4286a}.yoast-button.academy--secondary:before{border-left-color:#a4286a}@media only screen and (max-width:20rem){.yoast-button.academy--secondary{background-color:#a4286a}}.yoast-button.software{color:#fff;background-color:#0075b3}.yoast-button.software:after{border-right-color:#0075b3}.yoast-button.software:before{border-left-color:#0075b3}.yoast-button.review{color:#fff;background-color:#009288}.yoast-button.review:after{border-right-color:#009288}.yoast-button.review:before{border-left-color:#009288}.yoast-button.about{color:#fff;background-color:#d93f69}.yoast-button.about:after{border-right-color:#d93f69}.yoast-button.about:before{border-left-color:#d93f69}.yoast_academy .yoast-button{color:#fff;background-color:#d93f69}.yoast_academy .yoast-button:after{border-right-color:#d93f69}.yoast_academy .yoast-button:before{border-left-color:#d93f69}.yoast_academy .yoast-button:hover,.yoast_academy .yoast-button a:focus{background-color:#d42a59;color:#fff;text-decoration:underline}.yoast_academy .yoast-button:hover:after,.yoast_academy .yoast-button a:focus:after{border-right-color:#d42a59}.yoast_academy .yoast-button:hover:before,.yoast_academy .yoast-button a:focus:before{border-left-color:#d42a59}.yoast_academy .yoast-button.dimmed,body .yoast-button.dimmed{color:#646464;background-color:#dcdcdc}.yoast_academy .yoast-button.dimmed:after,body .yoast-button.dimmed:after{border-right-color:#dcdcdc}.yoast_academy .yoast-button.dimmed:before,body .yoast-button.dimmed:before{border-left-color:#dcdcdc}.yoast_academy .yoast-button.dimmed:hover,.yoast_academy .yoast-button.dimmed a:focus,body .yoast-button.dimmed:hover,body .yoast-button.dimmed a:focus{background-color:#cdcdcd;color:#646464;text-decoration:underline}.yoast_academy .yoast-button.dimmed:hover:after,.yoast_academy .yoast-button.dimmed a:focus:after,body .yoast-button.dimmed:hover:after,body .yoast-button.dimmed a:focus:after{border-right-color:#cdcdcd}.yoast_academy .yoast-button.dimmed:hover:before,.yoast_academy .yoast-button.dimmed a:focus:before,body .yoast-button.dimmed:hover:before,body .yoast-button.dimmed a:focus:before{border-left-color:#cdcdcd}.yoast-button--noarrow:after{content:none}.yoast-button--naked{border:none;background-color:initial;padding:0}.yoast-button--naked:after{content:none}.yoast-button i.fa{font-size:140%;margin:4px 0 0 10px}.yoast-promoblock{margin-bottom:1.88rem;box-shadow:0 1px 6px 0 rgba(0,0,0,.3);border:1px solid #dcdcdc;padding:16px}.yoast-promoblock p{color:#000}.yoast-promoblock p:last-of-type{margin-bottom:0}.yoast-promoblock i.blockicon{position:absolute;left:10px;bottom:10px;padding:0 .5em 0 0;font-size:2.25em}.yoast-promoblock a img{border:1px solid #dcdcdc}.yoast-promoblock p a{font-weight:600!important;text-decoration:underline}.yoast-promoblock form a{font-weight:400!important;text-decoration:none}.yoast-promoblock .h4,.yoast-promoblock h4{margin-bottom:.7rem}.yoast-promoblock.link{border-color:#dc5c04}.yoast-promoblock.link a,.yoast-promoblock.link a:hover{color:#dc5c04}.yoast-promoblock--white{border-color:#fff!important}.product .yoast-promoblock{overflow:hidden}.yoast-promoblock--hometitle{max-width:16em;height:11em;margin:1rem auto 2rem;display:flex;font-size:16px;font-size:1rem;line-height:1;background-color:rgba(217,63,105,.25);border-color:#fff!important}@media only screen and (max-width:30rem){.yoast-promoblock--hometitle:after{content:none!important}}.yoast-promoblock--imageholder{padding:0;margin-bottom:0}.yoast-promoblock--imageholdersmall{position:absolute}.yoast-promoblock--imageholdersmall:first-child{right:4rem}.yoast-promoblock--imageholdersmall:last-child{top:4rem}@media only screen and (max-width:50rem){.yoast-promoblock h2{margin-bottom:0}}a.promoblock{text-decoration:none;color:#000}a.promoblock:hover{text-decoration:none}.promoblockimage__holder{width:240px;height:295px;position:relative}.yoast{font-family:Open Sans,Arial,sans-serif;font-size:1rem;line-height:1.88;letter-spacing:.01em;color:#000}.yoast *,.yoast :after,.yoast :before{box-sizing:border-box}.yoast-hr{margin:0;border:0;padding-bottom:1.88rem;position:relative}.yoast-list--usp li:before{content:"";background:var(--svg-icon-check) no-repeat;background-size:contain;width:1em;height:100%;background-position:right .4em}.yoast-button--purple{background-color:#5d237a}.yoast-button-go-to:after{content:" \00BB";position:static;top:auto;left:auto;width:auto;height:auto;border:none}.yoast-button--extension{color:#fff;text-transform:uppercase;padding-right:.8em;padding-left:.8em}.yoast-button--extension+.yoast-button--extension-activated,.yoast-button--extension+.yoast-button--extension-not-activated{margin-right:0}.yoast-button--extension-activated:hover,.yoast-button--extension-installed:hover,.yoast-button--extension-not-activated:hover{text-decoration:none}.yoast-button--extension-installed{margin-left:.2rem}.yoast-button--extension-installed,.yoast-button--extension-installed:hover{background-color:#008a00}.yoast-button--extension-not-activated,.yoast-button--extension-not-activated:hover{background-color:#dc3232}.yoast-button--extension-activated,.yoast-button--extension-activated:hover{background-color:#008a00}.yoast-button-upsell{width:100%;margin-bottom:1em}@media only screen and (min-width:30rem){.yoast-button-upsell{width:auto;margin-left:1.36rem}}.yoast-promo-extensions{display:flex;flex-wrap:wrap;margin-right:-24px}.yoast-promo-extensions>h2{width:100%;margin-right:32px;margin-bottom:32px}.yoast-promo-extension{display:flex;flex-direction:column;max-width:340px;background-color:#fff;margin-right:32px}.yoast-promo-extension:first-child{margin-right:0}.yoast-promo-extension img{float:left;width:100px;height:100px;margin-bottom:.8rem}@media screen and (max-width:900px){.yoast-promo-extension img{display:none}}.yoast-promo-extension .yoast-button-container{margin-top:auto}.yoast-promo-extension .yoast-button-container div.yoast-button--extension{cursor:default}.yoast-promo-extension .yoast-button{width:100%;max-height:none;font-size:.9rem}.yoast-promo-extension .yoast-button--installed{color:#fff}.yoast-promo-extension .yoast-button--extension{font-size:.9rem;text-align:center;margin-top:0}.yoast-promo-extension .yoast-button--extension-installed{margin:0 0 0 2%;width:48%}.yoast-promo-extension .yoast-button--extension-activated,.yoast-promo-extension .yoast-button--extension-not-activated{margin-right:0;margin-left:0;width:48%}.yoast-promo-extension .yoast-button-upsell{width:100%}.yoast-promo-extension h3{color:#a4286a}@media screen and (max-width:900px){.yoast-promo-extension{max-width:none;width:100%}}.yoast-seo-premium-extension{margin:2em .5em 1.5em}.yoast-seo-premium-extension:after,.yoast-seo-premium-extension:before{content:"";display:table}.yoast-seo-premium-extension:after{clear:both}.yoast-seo-premium-benefits__title{font-weight:600}.yoast-seo-premium-benefits__description:before{content:"– "}.yoast-link--license,.yoast-link--more-info{color:#a4286a;font-weight:600}.yoast-link--license{margin:1em 0 0}.yoast-promo-extension .yoast-link--license{display:block;margin:1em 0 0}.yoast-link--license:after{content:" \00BB"}.yoast-link--more-info{background:var(--svg-icon-info);padding-right:calc(1em + 5px);background-size:1em;background-repeat:no-repeat;background-position:100%}.yoast-link--more-info:after{content:" \00BB"}.yoast-promo-extension .yoast-link--more-info{display:block;margin:0;background-position:100%}.yoast-heading-highlight{color:#a4286a;font-weight:600}.yoast-money-back-guarantee{font-style:italic;font-size:1.1em}.yoast-license-status-active{padding:3px 6px;color:#fff;background:#008a00}.yoast-license-status-inactive{padding:3px 6px;color:#fff;background:#dc3232}
css/dist/yoast-extensions-1410.css ADDED
@@ -0,0 +1 @@
 
1
+ @charset "UTF-8";:root{--svg-icon-info:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23A4286A' d='M1152 1376v-160q0-14-9-23t-23-9h-96V672q0-14-9-23t-23-9H672q-14 0-23 9t-9 23v160q0 14 9 23t23 9h96v320h-96q-14 0-23 9t-9 23v160q0 14 9 23t23 9h448q14 0 23-9t9-23zm-128-896V320q0-14-9-23t-23-9H800q-14 0-23 9t-9 23v160q0 14 9 23t23 9h192q14 0 23-9t9-23zm640 416q0 209-103 385.5T1281.5 1561 896 1664t-385.5-103T231 1281.5 128 896t103-385.5T510.5 231 896 128t385.5 103T1561 510.5 1664 896z'/%3E%3C/svg%3E");--svg-icon-check:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%2377B227' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/%3E%3C/svg%3E");--svg-icon-check-ok:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%2377B227' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/%3E%3C/svg%3E");--svg-icon-caret-right:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 192 512' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z'/%3E%3C/svg%3E");--svg-icon-caret-left:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 192 512' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z'/%3E%3C/svg%3E");--svg-icon-eye:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M1664 960q-152-236-381-353 61 104 61 225 0 185-131.5 316.5T896 1280t-316.5-131.5T448 832q0-121 61-225-229 117-381 353 133 205 333.5 326.5T896 1408t434.5-121.5T1664 960zM944 576q0-20-14-34t-34-14q-125 0-214.5 89.5T592 832q0 20 14 34t34 14 34-14 14-34q0-86 61-147t147-61q20 0 34-14t14-34zm848 384q0 34-20 69-140 230-376.5 368.5T896 1536t-499.5-139T20 1029Q0 994 0 960t20-69q140-229 376.5-368T896 384t499.5 139T1772 891q20 35 20 69z'/%3E%3C/svg%3E");--svg-icon-list:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M384 1408q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm0-512q0 80-56 136t-136 56-136-56T0 896t56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5H544q-13 0-22.5-9.5T512 1504v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zM384 384q0 80-56 136t-136 56-136-56T0 384t56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5H544q-13 0-22.5-9.5T512 992V800q0-13 9.5-22.5T544 768h1216q13 0 22.5 9.5t9.5 22.5zm0-512v192q0 13-9.5 22.5T1760 512H544q-13 0-22.5-9.5T512 480V288q0-13 9.5-22.5T544 256h1216q13 0 22.5 9.5t9.5 22.5z'/%3E%3C/svg%3E");--svg-icon-key:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M832 512q0-80-56-136t-136-56-136 56-56 136q0 42 19 83-41-19-83-19-80 0-136 56t-56 136 56 136 136 56 136-56 56-136q0-42-19-83 41 19 83 19 80 0 136-56t56-136zm851 704q0 17-49 66t-66 49q-9 0-28.5-16t-36.5-33-38.5-40-24.5-26l-96 96 220 220q28 28 28 68 0 42-39 81t-81 39q-40 0-68-28l-671-671q-176 131-365 131-163 0-265.5-102.5T0 784q0-160 95-313t248-248 313-95q163 0 265.5 102.5T1024 496q0 189-131 365l355 355 96-96q-3-3-26-24.5t-40-38.5-33-36.5-16-28.5q0-17 49-66t66-49q13 0 23 10 6 6 46 44.5t82 79.5 86.5 86 73 78 28.5 41z'/%3E%3C/svg%3E");--svg-icon-edit:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M491 1536l91-91-235-235-91 91v107h128v128h107zm523-928q0-22-22-22-10 0-17 7l-542 542q-7 7-7 17 0 22 22 22 10 0 17-7l542-542q7-7 7-17zm-54-192l416 416-832 832H128v-416zm683 96q0 53-37 90l-166 166-416-416 166-165q36-38 90-38 53 0 91 38l235 234q37 39 37 91z'/%3E%3C/svg%3E");--svg-icon-yoast:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23999' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-good:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%237ad03a' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-ok:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23ee7c1b' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-bad:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23dc3232' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-noindex:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%231e8cbe' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E")}.yoast-list--usp{padding:0;margin-bottom:1em;font-family:Arial,sans-serif}.yoast-list--usp li{list-style:none!important;position:relative;padding-left:1.2533333333rem}.yoast-list--usp li:before{content:"\f00c\0020";position:absolute;left:0;top:0;font-family:FontAwesome,Open Sans,Arial,sans-serif;color:#77b227}.yoast .h1,.yoast .h2,.yoast .h3,.yoast .h4,.yoast .h5,.yoast .h6,.yoast h1,.yoast h2,.yoast h3,.yoast h4,.yoast h5,.yoast h6{font-family:Arial,sans-serif;font-weight:300;margin-top:0;display:block}.yoast .h1,.yoast h1{font-size:2.5em;line-height:3.68rem;margin-bottom:1.35rem;letter-spacing:normal}@media only screen and (min-width:30rem){.yoast .h1,.yoast h1{font-size:2.75em}}.yoast .h2,.yoast h2{font-size:1.88em;line-height:2.5rem;margin-bottom:1.2rem}.yoast .h2.tight,.yoast h2.tight{margin-bottom:.6rem}.yoast .h3,.yoast h3{font-size:1.25em;line-height:1.88rem;margin-bottom:.8rem}.yoast .h3.tight,.yoast h3.tight{margin-bottom:.4rem}@media only screen and (min-width:30rem){.yoast .h3,.yoast h3{font-size:1.375em}}@media only screen and (min-width:50rem){.yoast .h3,.yoast h3{font-size:1.5em}}.yoast .h4,.yoast .h5,.yoast .h6,.yoast h4,.yoast h5,.yoast h6{font-size:1.13em;font-weight:400;line-height:1.88rem;margin-bottom:.2rem}.yoast-button{font-family:Arial,sans-serif;position:relative;display:inline-block;width:100%;padding:.345em 1.5em .345em 1em;font-size:1.1em;background-color:initial;background-color:#dc5c04;color:#dc5c04;border:0;text-decoration:none;cursor:pointer}@media only screen and (min-width:30rem){.yoast-button{margin-right:1.36rem;width:auto;max-height:2.86rem}.yoast-button:after{content:"";position:absolute;top:0;right:-1.36rem;height:0;width:0;border-right:0;border-left:1.43rem solid #dc5c04;border-top:1.43rem solid transparent;border-bottom:1.44rem solid transparent}.yoast-button.left{margin-right:0;margin-left:1.36rem}.yoast-button.left:after{content:none}.yoast-button.left:before{content:"";position:absolute;top:0;left:-1.36rem;height:0;width:0;border-left:0;border-right:1.43rem solid #dc5c04;border-top:1.43rem solid transparent;border-bottom:1.44rem solid transparent}}.yoast-button.alignleft{margin:1rem 2.5rem 0 0!important}.yoast-button .arrow{display:none}.yoast-button+.yoast-button{margin-top:1em;margin-left:1.88rem}.yoast-button--full{width:100%}.yoast-button--full:after{content:none}.yoast-button.default{color:#fff;background-color:#dc5c04}.yoast-button.default:after{border-left-color:#dc5c04}.yoast-button.default:before{border-right-color:#dc5c04}.yoast-button:hover,.yoast-button a:focus{background-color:#f58223;color:#fff;text-decoration:underline}.yoast-button:hover:after,.yoast-button a:focus:after{border-left-color:#f58223}.yoast-button:hover:before,.yoast-button a:focus:before{border-right-color:#f58223}.yoast-button.academy{color:#fff;background-color:#5d237a}.yoast-button.academy:after{border-left-color:#5d237a}.yoast-button.academy:before{border-right-color:#5d237a}@media only screen and (max-width:20rem){.yoast-button.academy{background-color:#5d237a}}.yoast-button.academy--secondary{color:#fff;background-color:#a4286a}.yoast-button.academy--secondary:after{border-left-color:#a4286a}.yoast-button.academy--secondary:before{border-right-color:#a4286a}@media only screen and (max-width:20rem){.yoast-button.academy--secondary{background-color:#a4286a}}.yoast-button.software{color:#fff;background-color:#0075b3}.yoast-button.software:after{border-left-color:#0075b3}.yoast-button.software:before{border-right-color:#0075b3}.yoast-button.review{color:#fff;background-color:#009288}.yoast-button.review:after{border-left-color:#009288}.yoast-button.review:before{border-right-color:#009288}.yoast-button.about{color:#fff;background-color:#d93f69}.yoast-button.about:after{border-left-color:#d93f69}.yoast-button.about:before{border-right-color:#d93f69}.yoast_academy .yoast-button{color:#fff;background-color:#d93f69}.yoast_academy .yoast-button:after{border-left-color:#d93f69}.yoast_academy .yoast-button:before{border-right-color:#d93f69}.yoast_academy .yoast-button:hover,.yoast_academy .yoast-button a:focus{background-color:#d42a59;color:#fff;text-decoration:underline}.yoast_academy .yoast-button:hover:after,.yoast_academy .yoast-button a:focus:after{border-left-color:#d42a59}.yoast_academy .yoast-button:hover:before,.yoast_academy .yoast-button a:focus:before{border-right-color:#d42a59}.yoast_academy .yoast-button.dimmed,body .yoast-button.dimmed{color:#646464;background-color:#dcdcdc}.yoast_academy .yoast-button.dimmed:after,body .yoast-button.dimmed:after{border-left-color:#dcdcdc}.yoast_academy .yoast-button.dimmed:before,body .yoast-button.dimmed:before{border-right-color:#dcdcdc}.yoast_academy .yoast-button.dimmed:hover,.yoast_academy .yoast-button.dimmed a:focus,body .yoast-button.dimmed:hover,body .yoast-button.dimmed a:focus{background-color:#cdcdcd;color:#646464;text-decoration:underline}.yoast_academy .yoast-button.dimmed:hover:after,.yoast_academy .yoast-button.dimmed a:focus:after,body .yoast-button.dimmed:hover:after,body .yoast-button.dimmed a:focus:after{border-left-color:#cdcdcd}.yoast_academy .yoast-button.dimmed:hover:before,.yoast_academy .yoast-button.dimmed a:focus:before,body .yoast-button.dimmed:hover:before,body .yoast-button.dimmed a:focus:before{border-right-color:#cdcdcd}.yoast-button--noarrow:after{content:none}.yoast-button--naked{border:none;background-color:initial;padding:0}.yoast-button--naked:after{content:none}.yoast-button i.fa{font-size:140%;margin:4px 10px 0 0}.yoast-promoblock{margin-bottom:1.88rem;box-shadow:0 1px 6px 0 rgba(0,0,0,.3);border:1px solid #dcdcdc;padding:16px}.yoast-promoblock p{color:#000}.yoast-promoblock p:last-of-type{margin-bottom:0}.yoast-promoblock i.blockicon{position:absolute;right:10px;bottom:10px;padding:0 0 0 .5em;font-size:2.25em}.yoast-promoblock a img{border:1px solid #dcdcdc}.yoast-promoblock p a{font-weight:600!important;text-decoration:underline}.yoast-promoblock form a{font-weight:400!important;text-decoration:none}.yoast-promoblock .h4,.yoast-promoblock h4{margin-bottom:.7rem}.yoast-promoblock.link{border-color:#dc5c04}.yoast-promoblock.link a,.yoast-promoblock.link a:hover{color:#dc5c04}.yoast-promoblock--white{border-color:#fff!important}.product .yoast-promoblock{overflow:hidden}.yoast-promoblock--hometitle{max-width:16em;height:11em;margin:1rem auto 2rem;display:flex;font-size:16px;font-size:1rem;line-height:1;background-color:rgba(217,63,105,.25);border-color:#fff!important}@media only screen and (max-width:30rem){.yoast-promoblock--hometitle:after{content:none!important}}.yoast-promoblock--imageholder{padding:0;margin-bottom:0}.yoast-promoblock--imageholdersmall{position:absolute}.yoast-promoblock--imageholdersmall:first-child{left:4rem}.yoast-promoblock--imageholdersmall:last-child{top:4rem}@media only screen and (max-width:50rem){.yoast-promoblock h2{margin-bottom:0}}a.promoblock{text-decoration:none;color:#000}a.promoblock:hover{text-decoration:none}.promoblockimage__holder{width:240px;height:295px;position:relative}.yoast{font-family:Open Sans,Arial,sans-serif;font-size:1rem;line-height:1.88;letter-spacing:.01em;color:#000}.yoast *,.yoast :after,.yoast :before{box-sizing:border-box}.yoast-hr{margin:0;border:0;padding-bottom:1.88rem;position:relative}.yoast-list--usp li:before{content:"";background:var(--svg-icon-check) no-repeat;background-size:contain;width:1em;height:100%;background-position:left .4em}.yoast-button--purple{background-color:#5d237a}.yoast-button-go-to:after{content:" \00BB";position:static;top:auto;right:auto;width:auto;height:auto;border:none}.yoast-button--extension{color:#fff;text-transform:uppercase;padding-left:.8em;padding-right:.8em}.yoast-button--extension+.yoast-button--extension-activated,.yoast-button--extension+.yoast-button--extension-not-activated{margin-left:0}.yoast-button--extension-activated:hover,.yoast-button--extension-installed:hover,.yoast-button--extension-not-activated:hover{text-decoration:none}.yoast-button--extension-installed{margin-right:.2rem}.yoast-button--extension-installed,.yoast-button--extension-installed:hover{background-color:#008a00}.yoast-button--extension-not-activated,.yoast-button--extension-not-activated:hover{background-color:#dc3232}.yoast-button--extension-activated,.yoast-button--extension-activated:hover{background-color:#008a00}.yoast-button-upsell{width:100%;margin-bottom:1em}@media only screen and (min-width:30rem){.yoast-button-upsell{width:auto;margin-right:1.36rem}}.yoast-promo-extensions{display:flex;flex-wrap:wrap;margin-left:-24px}.yoast-promo-extensions>h2{width:100%;margin-left:32px;margin-bottom:32px}.yoast-promo-extension{display:flex;flex-direction:column;max-width:340px;background-color:#fff;margin-left:32px}.yoast-promo-extension:first-child{margin-left:0}.yoast-promo-extension img{float:right;width:100px;height:100px;margin-bottom:.8rem}@media screen and (max-width:900px){.yoast-promo-extension img{display:none}}.yoast-promo-extension .yoast-button-container{margin-top:auto}.yoast-promo-extension .yoast-button-container div.yoast-button--extension{cursor:default}.yoast-promo-extension .yoast-button{width:100%;max-height:none;font-size:.9rem}.yoast-promo-extension .yoast-button--installed{color:#fff}.yoast-promo-extension .yoast-button--extension{font-size:.9rem;text-align:center;margin-top:0}.yoast-promo-extension .yoast-button--extension-installed{margin:0 2% 0 0;width:48%}.yoast-promo-extension .yoast-button--extension-activated,.yoast-promo-extension .yoast-button--extension-not-activated{margin-left:0;margin-right:0;width:48%}.yoast-promo-extension .yoast-button-upsell{width:100%}.yoast-promo-extension h3{color:#a4286a}@media screen and (max-width:900px){.yoast-promo-extension{max-width:none;width:100%}}.yoast-seo-premium-extension{margin:2em .5em 1.5em}.yoast-seo-premium-extension:after,.yoast-seo-premium-extension:before{content:"";display:table}.yoast-seo-premium-extension:after{clear:both}.yoast-seo-premium-benefits__title{font-weight:600}.yoast-seo-premium-benefits__description:before{content:"– "}.yoast-link--license,.yoast-link--more-info{color:#a4286a;font-weight:600}.yoast-link--license{margin:1em 0 0}.yoast-promo-extension .yoast-link--license{display:block;margin:1em 0 0}.yoast-link--license:after{content:" \00BB"}.yoast-link--more-info{background:var(--svg-icon-info);padding-left:calc(1em + 5px);background-size:1em;background-repeat:no-repeat;background-position:0}.yoast-link--more-info:after{content:" \00BB"}.yoast-promo-extension .yoast-link--more-info{display:block;margin:0;background-position:0}.yoast-heading-highlight{color:#a4286a;font-weight:600}.yoast-money-back-guarantee{font-style:italic;font-size:1.1em}.yoast-license-status-active{padding:3px 6px;color:#fff;background:#008a00}.yoast-license-status-inactive{padding:3px 6px;color:#fff;background:#dc3232}
css/dist/yst_plugin_tools-1404-rtl.css DELETED
@@ -1 +0,0 @@
1
- .wpseo_content_wrapper{display:table;width:100%;table-layout:fixed}.wpseo_content_cell{display:table-cell;height:500px;margin:0;padding:0;vertical-align:top}#wpseo_content_top{width:100%}tr.yst_row{margin:5px 0 0;padding:5px 0 0}#sidebar-container{width:300px;padding-right:20px}tr.yst_row.even{background-color:#f6f6f6}.wpseo_content_wrapper label.select,.wpseo_content_wrapper label.textinput{float:right;width:200px;margin:5px 0}.wpseo_content_wrapper label.select.error,.wpseo_content_wrapper label.textinput.error{color:#dc3232;font-weight:700}.wpseo_content_wrapper .yoast-inline-label{float:none;display:inline-block;margin:0 0 8px}.wpseo_content_wrapper input.textinput,.wpseo_content_wrapper select,.wpseo_content_wrapper textarea{width:400px}.wpseo_content_wrapper input.large-text,.wpseo_content_wrapper textarea.large-text{width:99%}.wpseo_content_wrapper .select2-container,.wpseo_content_wrapper input.textinput,.wpseo_content_wrapper select.select,.wpseo_content_wrapper textarea.textinput{margin:0 0 15px}.wpseo_content_wrapper input.textinput[aria-invalid=true]{color:#000;background:#f9dcdc url(../../images/error-icon.svg) no-repeat calc(100% - (100% - 6px)) 50%;background-size:12px;border:1px solid #dc3232;padding-left:24px}.wpseo_content_wrapper input.textinput[aria-invalid=true][aria-describedby]{margin-bottom:.5rem}.wpseo_content_wrapper .yoast-input-validation__error-description{width:400px;padding-right:200px;margin:0 0 1rem;color:#8f1919}.wpseo_content_wrapper input.checkbox,.wpseo_content_wrapper input.checkbox.double,.wpseo_content_wrapper input.radio{margin:6px 0 6px 10px}.wpseo_content_wrapper .textinput.metadesc{height:50px}.wpseo_content_wrapper textarea.import{width:500px;height:100px}.wpseo_content_wrapper p.desc{margin:6px 0 10px;padding:0 25px 8px 0}.wpseo_content_wrapper div.desc.label,.wpseo_content_wrapper p.desc.label{margin:0 0 20px;padding:0 200px 10px 0}.wpseo_content_wrapper h4{clear:both;margin:1.2em 0 .5em}.wpseo_content_wrapper .postbox{margin:10px 0 0 10px}.wpseo_content_wrapper .postbox form{line-height:150%}.wpseo_content_wrapper .text{width:250px}.wpseo_content_wrapper .correct{padding:5px;color:#fff;background-color:green}.wpseo_content_wrapper .wrong{padding:5px;color:#fff;background-color:#dc3232}.wpseo_content_wrapper .wrong code{padding:3px 8px;color:#000}.wpseo_content_wrapper .button.fixit{float:left;margin:0 5px}.wpseo_content_wrapper .button.checkit{float:left;margin:0 5px;padding:5px 8px}.wpseo_content_wrapper .disabled-note{margin:0 0 8px;color:#888}.wpseo_content_wrapper #separator{margin:1.5em 0 .5em}.wpseo_content_wrapper #separator input.radio{position:absolute;right:-9999em;width:1px;height:1px}.wpseo_content_wrapper #separator input.radio+label{float:right;width:30px!important;margin:0 0 .5em 5px!important;padding:9px 6px;border:1px solid #ccc;font-family:Arial,Helvetica,sans-serif!important;font-size:18px!important;line-height:24px;text-align:center;cursor:pointer}.wpseo_content_wrapper #separator input.radio:checked+label{border:3px solid #a4286a;background-color:#fff;padding:7px 4px}.wpseo_content_wrapper #separator input.radio:focus+label{outline:2px solid #5b9dd9}.wpseo_content_wrapper .svg-container{text-align:center}.wpseo_content_wrapper .svg-container .dashicons{width:200px;height:100px;font-size:100px}.wpseo_content_wrapper .paper.tab-block button.toggleable-container-trigger{width:100%;padding:16px;font-size:1rem}.wpseo_content_wrapper .paper.tab-block button.toggleable-container-trigger:focus{outline:1px solid #0066cd;outline-offset:-1px;box-shadow:0 0 3px rgba(8,74,103,.8)}.wpseo_content_wrapper .paper.tab-block button.toggleable-container-trigger:active{box-shadow:none}.wpseo_content_wrapper .paper.tab-block h2.collapsible-header{margin:0!important;padding:0!important}.wpseo_content_wrapper .paper.tab-block.metabox button.toggleable-container-trigger{color:#555}.wpseo_content_wrapper .paper.tab-block.metabox.wpseotab{padding:0;border:0}.wpseo_content_wrapper .paper.tab-block.search-appearance{max-width:632px;box-shadow:0 1px 2px rgba(0,0,0,.2);background-color:#fff}.wpseo_content_wrapper .paper.tab-block .paper-container{padding:16px}.wpseo_content_wrapper .paper.tab-block .paper-container:first-child{margin-top:0}.wpseo_content_wrapper .paper.tab-block .paper-title{padding:16px}.wpseo_content_wrapper .paper.tab-block .paper-title h2{margin:0}.wpseo_content_wrapper .paper.tab-block .tab-block:first-child{margin-top:0}.wpseo_content_wrapper .wpseo-collapsible-container{background-color:#fff;border-top:1px solid #e2e4e7;border-bottom:1px solid #e2e4e7;margin-top:-1px}.wpseo_content_wrapper .toggleable-container-trigger{border:0;background:none;cursor:pointer;width:100%;padding:0;text-align:right}.wpseo_content_wrapper .toggleable-container-icon{float:left;width:20px;height:20px;position:relative}.wpseo_content_wrapper .toggleable-container-trigger .toggleable-container-icon:after{content:"";display:block;padding:14px;position:absolute;top:-4px;right:-4px}.wpseo_content_wrapper .toggleable-container-hidden{display:none}.wpseo_content_wrapper h3{font-size:1.15em;margin:1em 0 .5em}.wpseo_content_wrapper li,.wpseo_content_wrapper p{max-width:600px}.wpseo_content_wrapper .notice p,.yoast-alert p,.yoast-container .container,.yoast .search-box{max-width:none}table.wpseo th{text-align:right}#wpseo-tabs+.notice{margin-top:1.5em}.wpseo-variable-warning-element{border:1px solid #c62d2d!important}.wpseo-variable-warning{clear:both;margin:5px 0 0;padding:5px;color:#c62d2d}.wpseo-variable-warning code{color:#b02828}.wpseo-variable-warning a{color:#c62d2d}.wpseo_content_wrapper h1.wpseo-redirect-url-title{margin:1em 0 .5em;font-size:1.3em}table.yoast_help{border-collapse:collapse;width:100%}table.yoast_help,table.yoast_help td,table.yoast_help th{border:1px solid #ddd;color:#444}table.yoast_help td,table.yoast_help th{padding:5px 10px;text-align:right;vertical-align:top}table.yoast_help tr{background-color:#f1f1f1}table.yoast_help tr:nth-child(2n){background-color:#fbfbfe}table.yoast_help tr:hover{background-color:#ddd}table.yoast_help thead tr,table.yoast_help thead tr:hover{background-color:#fff}table.yoast_help .yoast-variable-name{font-weight:600;white-space:nowrap}table.yoast_help .yoast-variable-desc{min-width:300px}.yoast-notice-blocking-files code{line-height:2;color:#000}.yoast-notice-blocking-files .button{margin:.5em 0}.wpseo_content_wrapper .yoast-blocking-files-error p{max-width:none}.wpseotab{display:none}.wpseotab.active{display:block}.wpseotab p.expl{margin-right:6px}.wpseotab .tab-block{display:block;margin:30px 0}.wpseotab p.expl strong{font-size:115%}#wpseo-debug-info{clear:both;margin:20px 0 0;padding:20px 20px 0;border:1px solid #e5e5e5;background-color:#fff;box-shadow:0 1px 1px rgba(0,0,0,.04)}#wpseo-debug-info h2{margin:0;cursor:auto}#wpseo-debug-info .wpseo-debug-heading{font-size:1em}#wpseo-debug-info .wpseo-debug{display:inline-block;padding-right:20px;color:#c00}input.wpseo-new-title,textarea.wpseo-new-metadesc{width:100%;max-width:100%}body.toplevel_page_wpseo_dashboard .wp-badge{background:transparent url(../../images/Yoast_SEO_Icon.svg) no-repeat 50% 10px;background-size:140px 140px;box-shadow:none}#wpseo_progressbar{height:25px;border:1px solid #006691}#wpseo_progressbar .ui-progressbar-value{height:25px;background:#006691}.wpseo-progressbar-wrapper{display:inline;width:100%}.wpseo-progressbar{display:block;width:100%;height:25px;border:1px solid #006691}.wpseo-progressbar .ui-progressbar-value{height:25px;background:#006691}.archives-titles-metas-content{padding-top:1em}.yoast-sidebar__title{width:100%;margin:5px 0;padding:10px 0;color:#a4286a;text-align:right;box-sizing:border-box;line-height:19px;border-bottom:1px solid #a4286a}.yoast-sidebar__section{box-shadow:0 1px 6px 0 rgba(0,0,0,.3);border:1px solid #dcdcdc;background-color:#fff;padding:16px;margin:10px 0 20px}.yoast-sidebar__section h2{margin-top:0;color:#a4286a}.yoast-sidebar__section a{color:#0085ba}.yoast-sidebar__section ul{position:relative}.yoast-sidebar__section li{list-style:none;margin-right:20px}.yoast-sidebar__section li:before{content:"+";position:absolute;right:0;font-weight:700}.yoast-sidebar__section div{position:relative;margin:10px 0 20px}.yoast-sidebar__section div img{float:left;width:70px;height:70px;margin:0 10px 0 0}.yoast-sidebar__section div img.alignleft{margin:0 0 0 10px;float:right}.yoast-sidebar__section div p{float:right;width:100%;margin:0}.wpseo-banner__link{display:inline-block}.wpseo-banner__image{vertical-align:top}.yoast_premium_upsell{box-shadow:0 1px 6px 0 rgba(0,0,0,.3);border:1px solid #dcdcdc;padding:16px;background-color:#fff;max-width:640px;overflow:hidden;margin-top:2em}.yoast_premium_upsell--header{color:#a4286a;margin-top:.3em;font-size:1.7em;font-weight:700}.yoast_premium_upsell--motivation{display:flex;flex-wrap:wrap}.yoast_premium_upsell--motivation li{flex:0 0 50%;list-style:none}.yoast_premium_upsell--argument{padding:0 20px 0 8px}.yoast_premium_upsell--argument:before{position:relative;right:-16px;margin-left:-10px;font-weight:700;content:"+";top:-1px}@media screen and (max-width:480px){.yoast_premium_upsell--motivation{display:block}}.yoast-variable-desc{min-width:300px}.yoast-table-scrollable,.yoast-table-scrollable td,.yoast-table-scrollable th{box-sizing:border-box}.yoast-table-scrollable__container.yoast-has-scroll{position:relative;overflow:hidden}.yoast-table-scrollable__container.yoast-has-scroll:after{content:"";position:absolute;top:0;right:100%;width:50px;height:calc(100% - 16px);border-radius:0 10px 10px 0/0 50% 50% 0;box-shadow:5px 0 10px rgba(0,0,0,.25)}.yoast-table-scrollable__container.yoast-has-scroll .yoast-table-scrollable__inner{overflow-x:scroll;padding-bottom:16px}.yoast-table-scrollable__hintwrapper{display:none}.yoast-table-scrollable__hintwrapper.yoast-has-scroll{display:block;margin:1em 0;text-align:center}.yoast-has-scroll .yoast-table-scrollable__hint{display:inline-block}.yoast-has-scroll .yoast-table-scrollable__hint:before{content:"\21c4";display:inline-block;margin-left:10px;font-size:20px;line-height:inherit;vertical-align:text-top}.yoast-styled-select{display:inline-flex;align-items:center;position:relative;margin-bottom:1em}.yoast-styled-select:after,.yoast-styled-select:before{content:"";position:absolute;top:0;bottom:0;pointer-events:none}.yoast-styled-select:before{width:28px;left:0}.yoast-styled-select:after{width:0;height:0;border-top:4px solid transparent;border-color:#555 transparent transparent;border-style:solid;border-width:5px 4px 0;margin:auto;left:6px;z-index:1}.yoast-styled-select select{height:28px;box-sizing:border-box;margin:0;padding:4px 8px 4px 32px;max-width:100%;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:1px solid #aaa;border-radius:4px;line-height:1;color:#32373c}.yoast-styled-select select.error{border-color:#dc3232;border-width:2px}.wpseo_content_wrapper .yoast-styled-select select.select{margin:0}.yoast-styled-select select:focus{border-color:#5b9dd9}.yoast-styled-select select:-moz-focusring{color:transparent;text-shadow:0 0 0 #32373c}.yoast-styled-select select[disabled]{opacity:.75}.yoast-styled-select select::-ms-expand{display:none}@media screen and (max-width:1024px){.wpseo_content_cell,.wpseo_content_wrapper{display:block;height:auto}#wpseo_content_top{width:auto}#sidebar-container{width:auto;padding:0}.yoast-sidebar__product-list{display:flex;border-bottom:1px solid #ddd}.yoast-sidebar__product-list div p{word-wrap:break-word;width:calc(100% - 50px)}.yoast-sidebar__product-list .yoast-sidebar__section{border-bottom:none}.yoast-sidebar__product-list .yoast-sidebar__section:first-child{margin-left:40px}}@media screen and (max-width:782px){.wpseo_content_wrapper label.select,.wpseo_content_wrapper label.textinput{display:inline-block;float:none;width:auto}.wpseo_content_wrapper input.textinput,.wpseo_content_wrapper textarea,.wpseo_content_wrapper textarea.textinput{display:block;width:100%}.wpseo_content_wrapper .select2-container,.wpseo_content_wrapper select,.wpseo_content_wrapper select.select{display:block;max-width:100%;margin:0 0 5px}.wpseo_content_wrapper div.desc.label,.wpseo_content_wrapper p.desc.label{padding-right:0}.wpseo_content_wrapper .textinput[aria-invalid=true][aria-describedby]+br{display:none}.wpseo_content_wrapper .yoast-input-validation__error-description{width:auto;padding-right:0}}@media screen and (max-width:600px){.yoast-sidebar__product-list{display:block;border-bottom:none}.yoast-sidebar__product-list .yoast-sidebar__section{border-bottom:1px solid #ddd}.yoast-sidebar__product-list .yoast-sidebar__section p{word-wrap:break-word;width:calc(100% - 50px);padding-right:50px}}@media screen and (max-width:500px){body.toplevel_page_wpseo_dashboard .wp-badge{padding-top:80px;background-size:100px 100px;background-color:#a4286a;box-shadow:0 1px 3px rgba(0,0,0,.2)}}.wpseo-checkmark-ok-icon{float:right;width:18px;margin-left:5px;height:18px;background:url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20role%3D%22img%22%20aria%2Dhidden%3D%22true%22%20focusable%3D%22false%22%3E%3Cpath%20fill%3D%22%2377B227%22%20d%3D%22M1671%20566q0%2040%2D28%2068l%2D724%20724%2D136%20136q%2D28%2028%2D68%2028t%2D68%2D28l%2D136%2D136%2D362%2D362q%2D28%2D28%2D28%2D68t28%2D68l136%2D136q28%2D28%2068%2D28t68%2028l294%20295%20656%2D657q28%2D28%2068%2D28t68%2028l136%20136q28%2028%2028%2068z%22%2F%3E%3C%2Fsvg%3E") no-repeat;background-size:18px;vertical-align:top}
 
css/dist/yst_plugin_tools-1404.css DELETED
@@ -1 +0,0 @@
1
- .wpseo_content_wrapper{display:table;width:100%;table-layout:fixed}.wpseo_content_cell{display:table-cell;height:500px;margin:0;padding:0;vertical-align:top}#wpseo_content_top{width:100%}tr.yst_row{margin:5px 0 0;padding:5px 0 0}#sidebar-container{width:300px;padding-left:20px}tr.yst_row.even{background-color:#f6f6f6}.wpseo_content_wrapper label.select,.wpseo_content_wrapper label.textinput{float:left;width:200px;margin:5px 0}.wpseo_content_wrapper label.select.error,.wpseo_content_wrapper label.textinput.error{color:#dc3232;font-weight:700}.wpseo_content_wrapper .yoast-inline-label{float:none;display:inline-block;margin:0 0 8px}.wpseo_content_wrapper input.textinput,.wpseo_content_wrapper select,.wpseo_content_wrapper textarea{width:400px}.wpseo_content_wrapper input.large-text,.wpseo_content_wrapper textarea.large-text{width:99%}.wpseo_content_wrapper .select2-container,.wpseo_content_wrapper input.textinput,.wpseo_content_wrapper select.select,.wpseo_content_wrapper textarea.textinput{margin:0 0 15px}.wpseo_content_wrapper input.textinput[aria-invalid=true]{color:#000;background:#f9dcdc url(../../images/error-icon.svg) no-repeat calc(100% - 6px) 50%;background-size:12px;border:1px solid #dc3232;padding-right:24px}.wpseo_content_wrapper input.textinput[aria-invalid=true][aria-describedby]{margin-bottom:.5rem}.wpseo_content_wrapper .yoast-input-validation__error-description{width:400px;padding-left:200px;margin:0 0 1rem;color:#8f1919}.wpseo_content_wrapper input.checkbox,.wpseo_content_wrapper input.checkbox.double,.wpseo_content_wrapper input.radio{margin:6px 10px 6px 0}.wpseo_content_wrapper .textinput.metadesc{height:50px}.wpseo_content_wrapper textarea.import{width:500px;height:100px}.wpseo_content_wrapper p.desc{margin:6px 0 10px;padding:0 0 8px 25px}.wpseo_content_wrapper div.desc.label,.wpseo_content_wrapper p.desc.label{margin:0 0 20px;padding:0 0 10px 200px}.wpseo_content_wrapper h4{clear:both;margin:1.2em 0 .5em}.wpseo_content_wrapper .postbox{margin:10px 10px 0 0}.wpseo_content_wrapper .postbox form{line-height:150%}.wpseo_content_wrapper .text{width:250px}.wpseo_content_wrapper .correct{padding:5px;color:#fff;background-color:green}.wpseo_content_wrapper .wrong{padding:5px;color:#fff;background-color:#dc3232}.wpseo_content_wrapper .wrong code{padding:3px 8px;color:#000}.wpseo_content_wrapper .button.fixit{float:right;margin:0 5px}.wpseo_content_wrapper .button.checkit{float:right;margin:0 5px;padding:5px 8px}.wpseo_content_wrapper .disabled-note{margin:0 0 8px;color:#888}.wpseo_content_wrapper #separator{margin:1.5em 0 .5em}.wpseo_content_wrapper #separator input.radio{position:absolute;left:-9999em;width:1px;height:1px}.wpseo_content_wrapper #separator input.radio+label{float:left;width:30px!important;margin:0 5px .5em 0!important;padding:9px 6px;border:1px solid #ccc;font-family:Arial,Helvetica,sans-serif!important;font-size:18px!important;line-height:24px;text-align:center;cursor:pointer}.wpseo_content_wrapper #separator input.radio:checked+label{border:3px solid #a4286a;background-color:#fff;padding:7px 4px}.wpseo_content_wrapper #separator input.radio:focus+label{outline:2px solid #5b9dd9}.wpseo_content_wrapper .svg-container{text-align:center}.wpseo_content_wrapper .svg-container .dashicons{width:200px;height:100px;font-size:100px}.wpseo_content_wrapper .paper.tab-block button.toggleable-container-trigger{width:100%;padding:16px;font-size:1rem}.wpseo_content_wrapper .paper.tab-block button.toggleable-container-trigger:focus{outline:1px solid #0066cd;outline-offset:-1px;box-shadow:0 0 3px rgba(8,74,103,.8)}.wpseo_content_wrapper .paper.tab-block button.toggleable-container-trigger:active{box-shadow:none}.wpseo_content_wrapper .paper.tab-block h2.collapsible-header{margin:0!important;padding:0!important}.wpseo_content_wrapper .paper.tab-block.metabox button.toggleable-container-trigger{color:#555}.wpseo_content_wrapper .paper.tab-block.metabox.wpseotab{padding:0;border:0}.wpseo_content_wrapper .paper.tab-block.search-appearance{max-width:632px;box-shadow:0 1px 2px rgba(0,0,0,.2);background-color:#fff}.wpseo_content_wrapper .paper.tab-block .paper-container{padding:16px}.wpseo_content_wrapper .paper.tab-block .paper-container:first-child{margin-top:0}.wpseo_content_wrapper .paper.tab-block .paper-title{padding:16px}.wpseo_content_wrapper .paper.tab-block .paper-title h2{margin:0}.wpseo_content_wrapper .paper.tab-block .tab-block:first-child{margin-top:0}.wpseo_content_wrapper .wpseo-collapsible-container{background-color:#fff;border-top:1px solid #e2e4e7;border-bottom:1px solid #e2e4e7;margin-top:-1px}.wpseo_content_wrapper .toggleable-container-trigger{border:0;background:none;cursor:pointer;width:100%;padding:0;text-align:left}.wpseo_content_wrapper .toggleable-container-icon{float:right;width:20px;height:20px;position:relative}.wpseo_content_wrapper .toggleable-container-trigger .toggleable-container-icon:after{content:"";display:block;padding:14px;position:absolute;top:-4px;left:-4px}.wpseo_content_wrapper .toggleable-container-hidden{display:none}.wpseo_content_wrapper h3{font-size:1.15em;margin:1em 0 .5em}.wpseo_content_wrapper li,.wpseo_content_wrapper p{max-width:600px}.wpseo_content_wrapper .notice p,.yoast-alert p,.yoast-container .container,.yoast .search-box{max-width:none}table.wpseo th{text-align:left}#wpseo-tabs+.notice{margin-top:1.5em}.wpseo-variable-warning-element{border:1px solid #c62d2d!important}.wpseo-variable-warning{clear:both;margin:5px 0 0;padding:5px;color:#c62d2d}.wpseo-variable-warning code{color:#b02828}.wpseo-variable-warning a{color:#c62d2d}.wpseo_content_wrapper h1.wpseo-redirect-url-title{margin:1em 0 .5em;font-size:1.3em}table.yoast_help{border-collapse:collapse;width:100%}table.yoast_help,table.yoast_help td,table.yoast_help th{border:1px solid #ddd;color:#444}table.yoast_help td,table.yoast_help th{padding:5px 10px;text-align:left;vertical-align:top}table.yoast_help tr{background-color:#f1f1f1}table.yoast_help tr:nth-child(2n){background-color:#fbfbfe}table.yoast_help tr:hover{background-color:#ddd}table.yoast_help thead tr,table.yoast_help thead tr:hover{background-color:#fff}table.yoast_help .yoast-variable-name{font-weight:600;white-space:nowrap}table.yoast_help .yoast-variable-desc{min-width:300px}.yoast-notice-blocking-files code{line-height:2;color:#000}.yoast-notice-blocking-files .button{margin:.5em 0}.wpseo_content_wrapper .yoast-blocking-files-error p{max-width:none}.wpseotab{display:none}.wpseotab.active{display:block}.wpseotab p.expl{margin-left:6px}.wpseotab .tab-block{display:block;margin:30px 0}.wpseotab p.expl strong{font-size:115%}#wpseo-debug-info{clear:both;margin:20px 0 0;padding:20px 20px 0;border:1px solid #e5e5e5;background-color:#fff;box-shadow:0 1px 1px rgba(0,0,0,.04)}#wpseo-debug-info h2{margin:0;cursor:auto}#wpseo-debug-info .wpseo-debug-heading{font-size:1em}#wpseo-debug-info .wpseo-debug{display:inline-block;padding-left:20px;color:#c00}input.wpseo-new-title,textarea.wpseo-new-metadesc{width:100%;max-width:100%}body.toplevel_page_wpseo_dashboard .wp-badge{background:transparent url(../../images/Yoast_SEO_Icon.svg) no-repeat 50% 10px;background-size:140px 140px;box-shadow:none}#wpseo_progressbar{height:25px;border:1px solid #006691}#wpseo_progressbar .ui-progressbar-value{height:25px;background:#006691}.wpseo-progressbar-wrapper{display:inline;width:100%}.wpseo-progressbar{display:block;width:100%;height:25px;border:1px solid #006691}.wpseo-progressbar .ui-progressbar-value{height:25px;background:#006691}.archives-titles-metas-content{padding-top:1em}.yoast-sidebar__title{width:100%;margin:5px 0;padding:10px 0;color:#a4286a;text-align:left;box-sizing:border-box;line-height:19px;border-bottom:1px solid #a4286a}.yoast-sidebar__section{box-shadow:0 1px 6px 0 rgba(0,0,0,.3);border:1px solid #dcdcdc;background-color:#fff;padding:16px;margin:10px 0 20px}.yoast-sidebar__section h2{margin-top:0;color:#a4286a}.yoast-sidebar__section a{color:#0085ba}.yoast-sidebar__section ul{position:relative}.yoast-sidebar__section li{list-style:none;margin-left:20px}.yoast-sidebar__section li:before{content:"+";position:absolute;left:0;font-weight:700}.yoast-sidebar__section div{position:relative;margin:10px 0 20px}.yoast-sidebar__section div img{float:right;width:70px;height:70px;margin:0 0 0 10px}.yoast-sidebar__section div img.alignleft{margin:0 10px 0 0;float:left}.yoast-sidebar__section div p{float:left;width:100%;margin:0}.wpseo-banner__link{display:inline-block}.wpseo-banner__image{vertical-align:top}.yoast_premium_upsell{box-shadow:0 1px 6px 0 rgba(0,0,0,.3);border:1px solid #dcdcdc;padding:16px;background-color:#fff;max-width:640px;overflow:hidden;margin-top:2em}.yoast_premium_upsell--header{color:#a4286a;margin-top:.3em;font-size:1.7em;font-weight:700}.yoast_premium_upsell--motivation{display:flex;flex-wrap:wrap}.yoast_premium_upsell--motivation li{flex:0 0 50%;list-style:none}.yoast_premium_upsell--argument{padding:0 8px 0 20px}.yoast_premium_upsell--argument:before{position:relative;left:-16px;margin-right:-10px;font-weight:700;content:"+";top:-1px}@media screen and (max-width:480px){.yoast_premium_upsell--motivation{display:block}}.yoast-variable-desc{min-width:300px}.yoast-table-scrollable,.yoast-table-scrollable td,.yoast-table-scrollable th{box-sizing:border-box}.yoast-table-scrollable__container.yoast-has-scroll{position:relative;overflow:hidden}.yoast-table-scrollable__container.yoast-has-scroll:after{content:"";position:absolute;top:0;left:100%;width:50px;height:calc(100% - 16px);border-radius:10px 0 0 10px/50% 0 0 50%;box-shadow:-5px 0 10px rgba(0,0,0,.25)}.yoast-table-scrollable__container.yoast-has-scroll .yoast-table-scrollable__inner{overflow-x:scroll;padding-bottom:16px}.yoast-table-scrollable__hintwrapper{display:none}.yoast-table-scrollable__hintwrapper.yoast-has-scroll{display:block;margin:1em 0;text-align:center}.yoast-has-scroll .yoast-table-scrollable__hint{display:inline-block}.yoast-has-scroll .yoast-table-scrollable__hint:before{content:"\21c4";display:inline-block;margin-right:10px;font-size:20px;line-height:inherit;vertical-align:text-top}.yoast-styled-select{display:inline-flex;align-items:center;position:relative;margin-bottom:1em}.yoast-styled-select:after,.yoast-styled-select:before{content:"";position:absolute;top:0;bottom:0;pointer-events:none}.yoast-styled-select:before{width:28px;right:0}.yoast-styled-select:after{width:0;height:0;border-top:4px solid transparent;border-color:#555 transparent transparent;border-style:solid;border-width:5px 4px 0;margin:auto;right:6px;z-index:1}.yoast-styled-select select{height:28px;box-sizing:border-box;margin:0;padding:4px 32px 4px 8px;max-width:100%;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:1px solid #aaa;border-radius:4px;line-height:1;color:#32373c}.yoast-styled-select select.error{border-color:#dc3232;border-width:2px}.wpseo_content_wrapper .yoast-styled-select select.select{margin:0}.yoast-styled-select select:focus{border-color:#5b9dd9}.yoast-styled-select select:-moz-focusring{color:transparent;text-shadow:0 0 0 #32373c}.yoast-styled-select select[disabled]{opacity:.75}.yoast-styled-select select::-ms-expand{display:none}@media screen and (max-width:1024px){.wpseo_content_cell,.wpseo_content_wrapper{display:block;height:auto}#wpseo_content_top{width:auto}#sidebar-container{width:auto;padding:0}.yoast-sidebar__product-list{display:flex;border-bottom:1px solid #ddd}.yoast-sidebar__product-list div p{word-wrap:break-word;width:calc(100% - 50px)}.yoast-sidebar__product-list .yoast-sidebar__section{border-bottom:none}.yoast-sidebar__product-list .yoast-sidebar__section:first-child{margin-right:40px}}@media screen and (max-width:782px){.wpseo_content_wrapper label.select,.wpseo_content_wrapper label.textinput{display:inline-block;float:none;width:auto}.wpseo_content_wrapper input.textinput,.wpseo_content_wrapper textarea,.wpseo_content_wrapper textarea.textinput{display:block;width:100%}.wpseo_content_wrapper .select2-container,.wpseo_content_wrapper select,.wpseo_content_wrapper select.select{display:block;max-width:100%;margin:0 0 5px}.wpseo_content_wrapper div.desc.label,.wpseo_content_wrapper p.desc.label{padding-left:0}.wpseo_content_wrapper .textinput[aria-invalid=true][aria-describedby]+br{display:none}.wpseo_content_wrapper .yoast-input-validation__error-description{width:auto;padding-left:0}}@media screen and (max-width:600px){.yoast-sidebar__product-list{display:block;border-bottom:none}.yoast-sidebar__product-list .yoast-sidebar__section{border-bottom:1px solid #ddd}.yoast-sidebar__product-list .yoast-sidebar__section p{word-wrap:break-word;width:calc(100% - 50px);padding-left:50px}}@media screen and (max-width:500px){body.toplevel_page_wpseo_dashboard .wp-badge{padding-top:80px;background-size:100px 100px;background-color:#a4286a;box-shadow:0 1px 3px rgba(0,0,0,.2)}}.wpseo-checkmark-ok-icon{float:left;width:18px;margin-right:5px;height:18px;background:url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20role%3D%22img%22%20aria%2Dhidden%3D%22true%22%20focusable%3D%22false%22%3E%3Cpath%20fill%3D%22%2377B227%22%20d%3D%22M1671%20566q0%2040%2D28%2068l%2D724%20724%2D136%20136q%2D28%2028%2D68%2028t%2D68%2D28l%2D136%2D136%2D362%2D362q%2D28%2D28%2D28%2D68t28%2D68l136%2D136q28%2D28%2068%2D28t68%2028l294%20295%20656%2D657q28%2D28%2068%2D28t68%2028l136%20136q28%2028%2028%2068z%22%2F%3E%3C%2Fsvg%3E") no-repeat;background-size:18px;vertical-align:top}
 
css/dist/yst_plugin_tools-1410-rtl.css ADDED
@@ -0,0 +1 @@
 
1
+ :root{--svg-icon-info:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23A4286A' d='M1152 1376v-160q0-14-9-23t-23-9h-96V672q0-14-9-23t-23-9H672q-14 0-23 9t-9 23v160q0 14 9 23t23 9h96v320h-96q-14 0-23 9t-9 23v160q0 14 9 23t23 9h448q14 0 23-9t9-23zm-128-896V320q0-14-9-23t-23-9H800q-14 0-23 9t-9 23v160q0 14 9 23t23 9h192q14 0 23-9t9-23zm640 416q0 209-103 385.5T1281.5 1561 896 1664t-385.5-103T231 1281.5 128 896t103-385.5T510.5 231 896 128t385.5 103T1561 510.5 1664 896z'/%3E%3C/svg%3E");--svg-icon-check:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%2377B227' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/%3E%3C/svg%3E");--svg-icon-check-ok:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%2377B227' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/%3E%3C/svg%3E");--svg-icon-caret-right:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 192 512' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z'/%3E%3C/svg%3E");--svg-icon-caret-left:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 192 512' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z'/%3E%3C/svg%3E");--svg-icon-eye:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M1664 960q-152-236-381-353 61 104 61 225 0 185-131.5 316.5T896 1280t-316.5-131.5T448 832q0-121 61-225-229 117-381 353 133 205 333.5 326.5T896 1408t434.5-121.5T1664 960zM944 576q0-20-14-34t-34-14q-125 0-214.5 89.5T592 832q0 20 14 34t34 14 34-14 14-34q0-86 61-147t147-61q20 0 34-14t14-34zm848 384q0 34-20 69-140 230-376.5 368.5T896 1536t-499.5-139T20 1029Q0 994 0 960t20-69q140-229 376.5-368T896 384t499.5 139T1772 891q20 35 20 69z'/%3E%3C/svg%3E");--svg-icon-list:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M384 1408q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm0-512q0 80-56 136t-136 56-136-56T0 896t56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5H544q-13 0-22.5-9.5T512 1504v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zM384 384q0 80-56 136t-136 56-136-56T0 384t56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5H544q-13 0-22.5-9.5T512 992V800q0-13 9.5-22.5T544 768h1216q13 0 22.5 9.5t9.5 22.5zm0-512v192q0 13-9.5 22.5T1760 512H544q-13 0-22.5-9.5T512 480V288q0-13 9.5-22.5T544 256h1216q13 0 22.5 9.5t9.5 22.5z'/%3E%3C/svg%3E");--svg-icon-key:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M832 512q0-80-56-136t-136-56-136 56-56 136q0 42 19 83-41-19-83-19-80 0-136 56t-56 136 56 136 136 56 136-56 56-136q0-42-19-83 41 19 83 19 80 0 136-56t56-136zm851 704q0 17-49 66t-66 49q-9 0-28.5-16t-36.5-33-38.5-40-24.5-26l-96 96 220 220q28 28 28 68 0 42-39 81t-81 39q-40 0-68-28l-671-671q-176 131-365 131-163 0-265.5-102.5T0 784q0-160 95-313t248-248 313-95q163 0 265.5 102.5T1024 496q0 189-131 365l355 355 96-96q-3-3-26-24.5t-40-38.5-33-36.5-16-28.5q0-17 49-66t66-49q13 0 23 10 6 6 46 44.5t82 79.5 86.5 86 73 78 28.5 41z'/%3E%3C/svg%3E");--svg-icon-edit:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M491 1536l91-91-235-235-91 91v107h128v128h107zm523-928q0-22-22-22-10 0-17 7l-542 542q-7 7-7 17 0 22 22 22 10 0 17-7l542-542q7-7 7-17zm-54-192l416 416-832 832H128v-416zm683 96q0 53-37 90l-166 166-416-416 166-165q36-38 90-38 53 0 91 38l235 234q37 39 37 91z'/%3E%3C/svg%3E");--svg-icon-yoast:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23999' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-good:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%237ad03a' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-ok:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23ee7c1b' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-bad:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23dc3232' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-noindex:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%231e8cbe' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E")}.wpseo_content_wrapper{display:table;width:100%;table-layout:fixed}.wpseo_content_cell{display:table-cell;height:500px;margin:0;padding:0;vertical-align:top}#wpseo_content_top{width:100%}tr.yst_row{margin:5px 0 0;padding:5px 0 0}#sidebar-container{width:300px;padding-right:20px}tr.yst_row.even{background-color:#f6f6f6}.wpseo_content_wrapper label.select,.wpseo_content_wrapper label.textinput{float:right;width:200px;margin:5px 0}.wpseo_content_wrapper label.select.error,.wpseo_content_wrapper label.textinput.error{color:#dc3232;font-weight:700}.wpseo_content_wrapper .yoast-inline-label{float:none;display:inline-block;margin:0 0 8px}.wpseo_content_wrapper input.textinput,.wpseo_content_wrapper select,.wpseo_content_wrapper textarea{width:400px}.wpseo_content_wrapper input.large-text,.wpseo_content_wrapper textarea.large-text{width:99%}.wpseo_content_wrapper .select2-container,.wpseo_content_wrapper input.textinput,.wpseo_content_wrapper select.select,.wpseo_content_wrapper textarea.textinput{margin:0 0 15px}.wpseo_content_wrapper input.textinput[aria-invalid=true]{color:#000;background:#f9dcdc url(../../images/error-icon.svg) no-repeat calc(100% - (100% - 6px)) 50%;background-size:12px;border:1px solid #dc3232;padding-left:24px}.wpseo_content_wrapper input.textinput[aria-invalid=true][aria-describedby]{margin-bottom:.5rem}.wpseo_content_wrapper .yoast-input-validation__error-description{width:400px;padding-right:200px;margin:0 0 1rem;color:#8f1919}.wpseo_content_wrapper input.checkbox,.wpseo_content_wrapper input.checkbox.double,.wpseo_content_wrapper input.radio{margin:6px 0 6px 10px}.wpseo_content_wrapper .textinput.metadesc{height:50px}.wpseo_content_wrapper textarea.import{width:500px;height:100px}.wpseo_content_wrapper p.desc{margin:6px 0 10px;padding:0 25px 8px 0}.wpseo_content_wrapper div.desc.label,.wpseo_content_wrapper p.desc.label{margin:0 0 20px;padding:0 200px 10px 0}.wpseo_content_wrapper h4{clear:both;margin:1.2em 0 .5em}.wpseo_content_wrapper .postbox{margin:10px 0 0 10px}.wpseo_content_wrapper .postbox form{line-height:150%}.wpseo_content_wrapper .text{width:250px}.wpseo_content_wrapper .correct{padding:5px;color:#fff;background-color:green}.wpseo_content_wrapper .wrong{padding:5px;color:#fff;background-color:#dc3232}.wpseo_content_wrapper .wrong code{padding:3px 8px;color:#000}.wpseo_content_wrapper .button.fixit{float:left;margin:0 5px}.wpseo_content_wrapper .button.checkit{float:left;margin:0 5px;padding:5px 8px}.wpseo_content_wrapper .disabled-note{margin:0 0 8px;color:#888}.wpseo_content_wrapper #separator{margin:1.5em 0 .5em}.wpseo_content_wrapper #separator input.radio{position:absolute;right:-9999em;width:1px;height:1px}.wpseo_content_wrapper #separator input.radio+label{float:right;width:30px!important;margin:0 0 .5em 5px!important;padding:9px 6px;border:1px solid #ccc;font-family:Arial,Helvetica,sans-serif!important;font-size:18px!important;line-height:24px;text-align:center;cursor:pointer}.wpseo_content_wrapper #separator input.radio:checked+label{border:3px solid #a4286a;background-color:#fff;padding:7px 4px}.wpseo_content_wrapper #separator input.radio:focus+label{outline:2px solid #5b9dd9}.wpseo_content_wrapper .svg-container{text-align:center}.wpseo_content_wrapper .svg-container .dashicons{width:200px;height:100px;font-size:100px}.wpseo_content_wrapper .paper.tab-block button.toggleable-container-trigger{width:100%;padding:16px;font-size:1rem}.wpseo_content_wrapper .paper.tab-block button.toggleable-container-trigger:focus{outline:1px solid #0066cd;outline-offset:-1px;box-shadow:0 0 3px rgba(8,74,103,.8)}.wpseo_content_wrapper .paper.tab-block button.toggleable-container-trigger:active{box-shadow:none}.wpseo_content_wrapper .paper.tab-block h2.collapsible-header{margin:0!important;padding:0!important}.wpseo_content_wrapper .paper.tab-block.metabox button.toggleable-container-trigger{color:#555}.wpseo_content_wrapper .paper.tab-block.metabox.wpseotab{padding:0;border:0}.wpseo_content_wrapper .paper.tab-block.search-appearance{max-width:632px;box-shadow:0 1px 2px rgba(0,0,0,.2);background-color:#fff}.wpseo_content_wrapper .paper.tab-block .paper-container{padding:16px}.wpseo_content_wrapper .paper.tab-block .paper-container:first-child{margin-top:0}.wpseo_content_wrapper .paper.tab-block .paper-title{padding:16px}.wpseo_content_wrapper .paper.tab-block .paper-title h2{margin:0}.wpseo_content_wrapper .paper.tab-block .tab-block:first-child{margin-top:0}.wpseo_content_wrapper .wpseo-collapsible-container{background-color:#fff;border-top:1px solid #e2e4e7;border-bottom:1px solid #e2e4e7;margin-top:-1px}.wpseo_content_wrapper .toggleable-container-trigger{border:0;background:none;cursor:pointer;width:100%;padding:0;text-align:right}.wpseo_content_wrapper .toggleable-container-icon{float:left;width:20px;height:20px;position:relative}.wpseo_content_wrapper .toggleable-container-trigger .toggleable-container-icon:after{content:"";display:block;padding:14px;position:absolute;top:-4px;right:-4px}.wpseo_content_wrapper .toggleable-container-hidden{display:none}.wpseo_content_wrapper h3{font-size:1.15em;margin:1em 0 .5em}.wpseo_content_wrapper li,.wpseo_content_wrapper p{max-width:600px}.wpseo_content_wrapper .notice p,.yoast-container .container,.yoast-notification p,.yoast .search-box{max-width:none}table.wpseo th{text-align:right}#wpseo-tabs+.notice{margin-top:1.5em}.wpseo-variable-warning-element{border:1px solid #c62d2d!important}.wpseo-variable-warning{clear:both;margin:5px 0 0;padding:5px;color:#c62d2d}.wpseo-variable-warning code{color:#b02828}.wpseo-variable-warning a{color:#c62d2d}.wpseo_content_wrapper h1.wpseo-redirect-url-title{margin:1em 0 .5em;font-size:1.3em}table.yoast_help{border-collapse:collapse;width:100%}table.yoast_help,table.yoast_help td,table.yoast_help th{border:1px solid #ddd;color:#444}table.yoast_help td,table.yoast_help th{padding:5px 10px;text-align:right;vertical-align:top}table.yoast_help tr{background-color:#f1f1f1}table.yoast_help tr:nth-child(2n){background-color:#fbfbfe}table.yoast_help tr:hover{background-color:#ddd}table.yoast_help thead tr,table.yoast_help thead tr:hover{background-color:#fff}table.yoast_help .yoast-variable-name{font-weight:600;white-space:nowrap}table.yoast_help .yoast-variable-desc{min-width:300px}.yoast-notice-blocking-files code{line-height:2;color:#000}.yoast-notice-blocking-files .button{margin:.5em 0}.wpseo_content_wrapper .yoast-blocking-files-error p{max-width:none}.wpseotab{display:none}.wpseotab.active{display:block}.wpseotab p.expl{margin-right:6px}.wpseotab .tab-block{display:block;margin:30px 0}.wpseotab p.expl strong{font-size:115%}#wpseo-debug-info{clear:both;margin:20px 0 0;padding:20px 20px 0;border:1px solid #e5e5e5;background-color:#fff;box-shadow:0 1px 1px rgba(0,0,0,.04)}#wpseo-debug-info h2{margin:0;cursor:auto}#wpseo-debug-info .wpseo-debug-heading{font-size:1em}#wpseo-debug-info .wpseo-debug{display:inline-block;padding-right:20px;color:#c00}input.wpseo-new-title,textarea.wpseo-new-metadesc{width:100%;max-width:100%}body.toplevel_page_wpseo_dashboard .wp-badge{background:transparent url(../../images/Yoast_SEO_Icon.svg) no-repeat 50% 10px;background-size:140px 140px;box-shadow:none}#wpseo_progressbar{height:25px;border:1px solid #006691}#wpseo_progressbar .ui-progressbar-value{height:25px;background:#006691}.wpseo-progressbar-wrapper{display:inline;width:100%}.wpseo-progressbar{display:block;width:100%;height:25px;border:1px solid #006691}.wpseo-progressbar .ui-progressbar-value{height:25px;background:#006691}.archives-titles-metas-content{padding-top:1em}.yoast-sidebar__title{width:100%;margin:5px 0;padding:10px 0;color:#a4286a;text-align:right;box-sizing:border-box;line-height:19px;border-bottom:1px solid #a4286a}.yoast-sidebar__section{box-shadow:0 1px 6px 0 rgba(0,0,0,.3);border:1px solid #dcdcdc;background-color:#fff;padding:16px;margin:10px 0 20px}.yoast-sidebar__section h2{margin-top:0;color:#a4286a}.yoast-sidebar__section a{color:#0085ba}.yoast-sidebar__section ul{position:relative}.yoast-sidebar__section li{list-style:none;margin-right:20px}.yoast-sidebar__section li:before{content:"+";position:absolute;right:0;font-weight:700}.yoast-sidebar__section div{position:relative;margin:10px 0 20px}.yoast-sidebar__section div img{float:left;width:70px;height:70px;margin:0 10px 0 0}.yoast-sidebar__section div img.alignleft{margin:0 0 0 10px;float:right}.yoast-sidebar__section div p{float:right;width:100%;margin:0}.wpseo-banner__link{display:inline-block}.wpseo-banner__image{vertical-align:top}.yoast_premium_upsell{box-shadow:0 1px 6px 0 rgba(0,0,0,.3);border:1px solid #dcdcdc;padding:16px;background-color:#fff;max-width:640px;overflow:hidden;margin-top:2em}.yoast_premium_upsell--header{color:#a4286a;margin-top:.3em;font-size:1.7em;font-weight:700}.yoast_premium_upsell--motivation{display:flex;flex-wrap:wrap}.yoast_premium_upsell--motivation li{flex:0 0 50%;list-style:none}.yoast_premium_upsell--argument{padding:0 20px 0 8px}.yoast_premium_upsell--argument:before{position:relative;right:-16px;margin-left:-10px;font-weight:700;content:"+";top:-1px}@media screen and (max-width:480px){.yoast_premium_upsell--motivation{display:block}}.yoast-variable-desc{min-width:300px}.yoast-table-scrollable,.yoast-table-scrollable td,.yoast-table-scrollable th{box-sizing:border-box}.yoast-table-scrollable__container.yoast-has-scroll{position:relative;overflow:hidden}.yoast-table-scrollable__container.yoast-has-scroll:after{content:"";position:absolute;top:0;right:100%;width:50px;height:calc(100% - 16px);border-radius:0 10px 10px 0/0 50% 50% 0;box-shadow:5px 0 10px rgba(0,0,0,.25)}.yoast-table-scrollable__container.yoast-has-scroll .yoast-table-scrollable__inner{overflow-x:scroll;padding-bottom:16px}.yoast-table-scrollable__hintwrapper{display:none}.yoast-table-scrollable__hintwrapper.yoast-has-scroll{display:block;margin:1em 0;text-align:center}.yoast-has-scroll .yoast-table-scrollable__hint{display:inline-block}.yoast-has-scroll .yoast-table-scrollable__hint:before{content:"\21c4";display:inline-block;margin-left:10px;font-size:20px;line-height:inherit;vertical-align:text-top}.yoast-styled-select{display:inline-flex;align-items:center;position:relative;margin-bottom:1em}.yoast-styled-select:after,.yoast-styled-select:before{content:"";position:absolute;top:0;bottom:0;pointer-events:none}.yoast-styled-select:before{width:28px;left:0}.yoast-styled-select:after{width:0;height:0;border-top:4px solid transparent;border-color:#555 transparent transparent;border-style:solid;border-width:5px 4px 0;margin:auto;left:6px;z-index:1}.yoast-styled-select select{height:28px;box-sizing:border-box;margin:0;padding:4px 8px 4px 32px;max-width:100%;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:1px solid #aaa;border-radius:4px;line-height:1;color:#32373c}.yoast-styled-select select.error{border-color:#dc3232;border-width:2px}.wpseo_content_wrapper .yoast-styled-select select.select{margin:0}.yoast-styled-select select:focus{border-color:#5b9dd9}.yoast-styled-select select:-moz-focusring{color:transparent;text-shadow:0 0 0 #32373c}.yoast-styled-select select[disabled]{opacity:.75}.yoast-styled-select select::-ms-expand{display:none}@media screen and (max-width:1024px){.wpseo_content_cell,.wpseo_content_wrapper{display:block;height:auto}#wpseo_content_top{width:auto}#sidebar-container{width:auto;padding:0}.yoast-sidebar__product-list{display:flex;border-bottom:1px solid #ddd}.yoast-sidebar__product-list div p{word-wrap:break-word;width:calc(100% - 50px)}.yoast-sidebar__product-list .yoast-sidebar__section{border-bottom:none}.yoast-sidebar__product-list .yoast-sidebar__section:first-child{margin-left:40px}}@media screen and (max-width:782px){.wpseo_content_wrapper label.select,.wpseo_content_wrapper label.textinput{display:inline-block;float:none;width:auto}.wpseo_content_wrapper input.textinput,.wpseo_content_wrapper textarea,.wpseo_content_wrapper textarea.textinput{display:block;width:100%}.wpseo_content_wrapper .select2-container,.wpseo_content_wrapper select,.wpseo_content_wrapper select.select{display:block;max-width:100%;margin:0 0 5px}.wpseo_content_wrapper div.desc.label,.wpseo_content_wrapper p.desc.label{padding-right:0}.wpseo_content_wrapper .textinput[aria-invalid=true][aria-describedby]+br{display:none}.wpseo_content_wrapper .yoast-input-validation__error-description{width:auto;padding-right:0}}@media screen and (max-width:600px){.yoast-sidebar__product-list{display:block;border-bottom:none}.yoast-sidebar__product-list .yoast-sidebar__section{border-bottom:1px solid #ddd}.yoast-sidebar__product-list .yoast-sidebar__section p{word-wrap:break-word;width:calc(100% - 50px);padding-right:50px}}@media screen and (max-width:500px){body.toplevel_page_wpseo_dashboard .wp-badge{padding-top:80px;background-size:100px 100px;background-color:#a4286a;box-shadow:0 1px 3px rgba(0,0,0,.2)}}.wpseo-checkmark-ok-icon{float:right;width:18px;margin-left:5px;height:18px;background:var(--svg-icon-check-ok) no-repeat;background-size:18px;vertical-align:top}
css/dist/yst_plugin_tools-1410.css ADDED
@@ -0,0 +1 @@
 
1
+ :root{--svg-icon-info:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23A4286A' d='M1152 1376v-160q0-14-9-23t-23-9h-96V672q0-14-9-23t-23-9H672q-14 0-23 9t-9 23v160q0 14 9 23t23 9h96v320h-96q-14 0-23 9t-9 23v160q0 14 9 23t23 9h448q14 0 23-9t9-23zm-128-896V320q0-14-9-23t-23-9H800q-14 0-23 9t-9 23v160q0 14 9 23t23 9h192q14 0 23-9t9-23zm640 416q0 209-103 385.5T1281.5 1561 896 1664t-385.5-103T231 1281.5 128 896t103-385.5T510.5 231 896 128t385.5 103T1561 510.5 1664 896z'/%3E%3C/svg%3E");--svg-icon-check:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%2377B227' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/%3E%3C/svg%3E");--svg-icon-check-ok:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%2377B227' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/%3E%3C/svg%3E");--svg-icon-caret-right:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 192 512' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z'/%3E%3C/svg%3E");--svg-icon-caret-left:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 192 512' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z'/%3E%3C/svg%3E");--svg-icon-eye:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M1664 960q-152-236-381-353 61 104 61 225 0 185-131.5 316.5T896 1280t-316.5-131.5T448 832q0-121 61-225-229 117-381 353 133 205 333.5 326.5T896 1408t434.5-121.5T1664 960zM944 576q0-20-14-34t-34-14q-125 0-214.5 89.5T592 832q0 20 14 34t34 14 34-14 14-34q0-86 61-147t147-61q20 0 34-14t14-34zm848 384q0 34-20 69-140 230-376.5 368.5T896 1536t-499.5-139T20 1029Q0 994 0 960t20-69q140-229 376.5-368T896 384t499.5 139T1772 891q20 35 20 69z'/%3E%3C/svg%3E");--svg-icon-list:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M384 1408q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm0-512q0 80-56 136t-136 56-136-56T0 896t56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5H544q-13 0-22.5-9.5T512 1504v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zM384 384q0 80-56 136t-136 56-136-56T0 384t56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5H544q-13 0-22.5-9.5T512 992V800q0-13 9.5-22.5T544 768h1216q13 0 22.5 9.5t9.5 22.5zm0-512v192q0 13-9.5 22.5T1760 512H544q-13 0-22.5-9.5T512 480V288q0-13 9.5-22.5T544 256h1216q13 0 22.5 9.5t9.5 22.5z'/%3E%3C/svg%3E");--svg-icon-key:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M832 512q0-80-56-136t-136-56-136 56-56 136q0 42 19 83-41-19-83-19-80 0-136 56t-56 136 56 136 136 56 136-56 56-136q0-42-19-83 41 19 83 19 80 0 136-56t56-136zm851 704q0 17-49 66t-66 49q-9 0-28.5-16t-36.5-33-38.5-40-24.5-26l-96 96 220 220q28 28 28 68 0 42-39 81t-81 39q-40 0-68-28l-671-671q-176 131-365 131-163 0-265.5-102.5T0 784q0-160 95-313t248-248 313-95q163 0 265.5 102.5T1024 496q0 189-131 365l355 355 96-96q-3-3-26-24.5t-40-38.5-33-36.5-16-28.5q0-17 49-66t66-49q13 0 23 10 6 6 46 44.5t82 79.5 86.5 86 73 78 28.5 41z'/%3E%3C/svg%3E");--svg-icon-edit:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23555' d='M491 1536l91-91-235-235-91 91v107h128v128h107zm523-928q0-22-22-22-10 0-17 7l-542 542q-7 7-7 17 0 22 22 22 10 0 17-7l542-542q7-7 7-17zm-54-192l416 416-832 832H128v-416zm683 96q0 53-37 90l-166 166-416-416 166-165q36-38 90-38 53 0 91 38l235 234q37 39 37 91z'/%3E%3C/svg%3E");--svg-icon-yoast:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23999' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-good:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%237ad03a' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-ok:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23ee7c1b' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-bad:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%23dc3232' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E");--svg-icon-yoast-noindex:url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath fill='%231e8cbe' d='M403 218h691l-26 72H403q-110 0-188.5 79T136 558v771q0 95 60.5 169.5T350 1592q23 5 98 5v72h-45q-140 0-239.5-100T64 1329V558q0-140 99.5-240T403 218zM1254 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106L459 471h228l187 585zm474 558v1111H933q37-55 45-73h678V558q0-85-49.5-155T1477 304l25-67q101 34 163.5 123.5T1728 558z'/%3E%3C/svg%3E")}.wpseo_content_wrapper{display:table;width:100%;table-layout:fixed}.wpseo_content_cell{display:table-cell;height:500px;margin:0;padding:0;vertical-align:top}#wpseo_content_top{width:100%}tr.yst_row{margin:5px 0 0;padding:5px 0 0}#sidebar-container{width:300px;padding-left:20px}tr.yst_row.even{background-color:#f6f6f6}.wpseo_content_wrapper label.select,.wpseo_content_wrapper label.textinput{float:left;width:200px;margin:5px 0}.wpseo_content_wrapper label.select.error,.wpseo_content_wrapper label.textinput.error{color:#dc3232;font-weight:700}.wpseo_content_wrapper .yoast-inline-label{float:none;display:inline-block;margin:0 0 8px}.wpseo_content_wrapper input.textinput,.wpseo_content_wrapper select,.wpseo_content_wrapper textarea{width:400px}.wpseo_content_wrapper input.large-text,.wpseo_content_wrapper textarea.large-text{width:99%}.wpseo_content_wrapper .select2-container,.wpseo_content_wrapper input.textinput,.wpseo_content_wrapper select.select,.wpseo_content_wrapper textarea.textinput{margin:0 0 15px}.wpseo_content_wrapper input.textinput[aria-invalid=true]{color:#000;background:#f9dcdc url(../../images/error-icon.svg) no-repeat calc(100% - 6px) 50%;background-size:12px;border:1px solid #dc3232;padding-right:24px}.wpseo_content_wrapper input.textinput[aria-invalid=true][aria-describedby]{margin-bottom:.5rem}.wpseo_content_wrapper .yoast-input-validation__error-description{width:400px;padding-left:200px;margin:0 0 1rem;color:#8f1919}.wpseo_content_wrapper input.checkbox,.wpseo_content_wrapper input.checkbox.double,.wpseo_content_wrapper input.radio{margin:6px 10px 6px 0}.wpseo_content_wrapper .textinput.metadesc{height:50px}.wpseo_content_wrapper textarea.import{width:500px;height:100px}.wpseo_content_wrapper p.desc{margin:6px 0 10px;padding:0 0 8px 25px}.wpseo_content_wrapper div.desc.label,.wpseo_content_wrapper p.desc.label{margin:0 0 20px;padding:0 0 10px 200px}.wpseo_content_wrapper h4{clear:both;margin:1.2em 0 .5em}.wpseo_content_wrapper .postbox{margin:10px 10px 0 0}.wpseo_content_wrapper .postbox form{line-height:150%}.wpseo_content_wrapper .text{width:250px}.wpseo_content_wrapper .correct{padding:5px;color:#fff;background-color:green}.wpseo_content_wrapper .wrong{padding:5px;color:#fff;background-color:#dc3232}.wpseo_content_wrapper .wrong code{padding:3px 8px;color:#000}.wpseo_content_wrapper .button.fixit{float:right;margin:0 5px}.wpseo_content_wrapper .button.checkit{float:right;margin:0 5px;padding:5px 8px}.wpseo_content_wrapper .disabled-note{margin:0 0 8px;color:#888}.wpseo_content_wrapper #separator{margin:1.5em 0 .5em}.wpseo_content_wrapper #separator input.radio{position:absolute;left:-9999em;width:1px;height:1px}.wpseo_content_wrapper #separator input.radio+label{float:left;width:30px!important;margin:0 5px .5em 0!important;padding:9px 6px;border:1px solid #ccc;font-family:Arial,Helvetica,sans-serif!important;font-size:18px!important;line-height:24px;text-align:center;cursor:pointer}.wpseo_content_wrapper #separator input.radio:checked+label{border:3px solid #a4286a;background-color:#fff;padding:7px 4px}.wpseo_content_wrapper #separator input.radio:focus+label{outline:2px solid #5b9dd9}.wpseo_content_wrapper .svg-container{text-align:center}.wpseo_content_wrapper .svg-container .dashicons{width:200px;height:100px;font-size:100px}.wpseo_content_wrapper .paper.tab-block button.toggleable-container-trigger{width:100%;padding:16px;font-size:1rem}.wpseo_content_wrapper .paper.tab-block button.toggleable-container-trigger:focus{outline:1px solid #0066cd;outline-offset:-1px;box-shadow:0 0 3px rgba(8,74,103,.8)}.wpseo_content_wrapper .paper.tab-block button.toggleable-container-trigger:active{box-shadow:none}.wpseo_content_wrapper .paper.tab-block h2.collapsible-header{margin:0!important;padding:0!important}.wpseo_content_wrapper .paper.tab-block.metabox button.toggleable-container-trigger{color:#555}.wpseo_content_wrapper .paper.tab-block.metabox.wpseotab{padding:0;border:0}.wpseo_content_wrapper .paper.tab-block.search-appearance{max-width:632px;box-shadow:0 1px 2px rgba(0,0,0,.2);background-color:#fff}.wpseo_content_wrapper .paper.tab-block .paper-container{padding:16px}.wpseo_content_wrapper .paper.tab-block .paper-container:first-child{margin-top:0}.wpseo_content_wrapper .paper.tab-block .paper-title{padding:16px}.wpseo_content_wrapper .paper.tab-block .paper-title h2{margin:0}.wpseo_content_wrapper .paper.tab-block .tab-block:first-child{margin-top:0}.wpseo_content_wrapper .wpseo-collapsible-container{background-color:#fff;border-top:1px solid #e2e4e7;border-bottom:1px solid #e2e4e7;margin-top:-1px}.wpseo_content_wrapper .toggleable-container-trigger{border:0;background:none;cursor:pointer;width:100%;padding:0;text-align:left}.wpseo_content_wrapper .toggleable-container-icon{float:right;width:20px;height:20px;position:relative}.wpseo_content_wrapper .toggleable-container-trigger .toggleable-container-icon:after{content:"";display:block;padding:14px;position:absolute;top:-4px;left:-4px}.wpseo_content_wrapper .toggleable-container-hidden{display:none}.wpseo_content_wrapper h3{font-size:1.15em;margin:1em 0 .5em}.wpseo_content_wrapper li,.wpseo_content_wrapper p{max-width:600px}.wpseo_content_wrapper .notice p,.yoast-container .container,.yoast-notification p,.yoast .search-box{max-width:none}table.wpseo th{text-align:left}#wpseo-tabs+.notice{margin-top:1.5em}.wpseo-variable-warning-element{border:1px solid #c62d2d!important}.wpseo-variable-warning{clear:both;margin:5px 0 0;padding:5px;color:#c62d2d}.wpseo-variable-warning code{color:#b02828}.wpseo-variable-warning a{color:#c62d2d}.wpseo_content_wrapper h1.wpseo-redirect-url-title{margin:1em 0 .5em;font-size:1.3em}table.yoast_help{border-collapse:collapse;width:100%}table.yoast_help,table.yoast_help td,table.yoast_help th{border:1px solid #ddd;color:#444}table.yoast_help td,table.yoast_help th{padding:5px 10px;text-align:left;vertical-align:top}table.yoast_help tr{background-color:#f1f1f1}table.yoast_help tr:nth-child(2n){background-color:#fbfbfe}table.yoast_help tr:hover{background-color:#ddd}table.yoast_help thead tr,table.yoast_help thead tr:hover{background-color:#fff}table.yoast_help .yoast-variable-name{font-weight:600;white-space:nowrap}table.yoast_help .yoast-variable-desc{min-width:300px}.yoast-notice-blocking-files code{line-height:2;color:#000}.yoast-notice-blocking-files .button{margin:.5em 0}.wpseo_content_wrapper .yoast-blocking-files-error p{max-width:none}.wpseotab{display:none}.wpseotab.active{display:block}.wpseotab p.expl{margin-left:6px}.wpseotab .tab-block{display:block;margin:30px 0}.wpseotab p.expl strong{font-size:115%}#wpseo-debug-info{clear:both;margin:20px 0 0;padding:20px 20px 0;border:1px solid #e5e5e5;background-color:#fff;box-shadow:0 1px 1px rgba(0,0,0,.04)}#wpseo-debug-info h2{margin:0;cursor:auto}#wpseo-debug-info .wpseo-debug-heading{font-size:1em}#wpseo-debug-info .wpseo-debug{display:inline-block;padding-left:20px;color:#c00}input.wpseo-new-title,textarea.wpseo-new-metadesc{width:100%;max-width:100%}body.toplevel_page_wpseo_dashboard .wp-badge{background:transparent url(../../images/Yoast_SEO_Icon.svg) no-repeat 50% 10px;background-size:140px 140px;box-shadow:none}#wpseo_progressbar{height:25px;border:1px solid #006691}#wpseo_progressbar .ui-progressbar-value{height:25px;background:#006691}.wpseo-progressbar-wrapper{display:inline;width:100%}.wpseo-progressbar{display:block;width:100%;height:25px;border:1px solid #006691}.wpseo-progressbar .ui-progressbar-value{height:25px;background:#006691}.archives-titles-metas-content{padding-top:1em}.yoast-sidebar__title{width:100%;margin:5px 0;padding:10px 0;color:#a4286a;text-align:left;box-sizing:border-box;line-height:19px;border-bottom:1px solid #a4286a}.yoast-sidebar__section{box-shadow:0 1px 6px 0 rgba(0,0,0,.3);border:1px solid #dcdcdc;background-color:#fff;padding:16px;margin:10px 0 20px}.yoast-sidebar__section h2{margin-top:0;color:#a4286a}.yoast-sidebar__section a{color:#0085ba}.yoast-sidebar__section ul{position:relative}.yoast-sidebar__section li{list-style:none;margin-left:20px}.yoast-sidebar__section li:before{content:"+";position:absolute;left:0;font-weight:700}.yoast-sidebar__section div{position:relative;margin:10px 0 20px}.yoast-sidebar__section div img{float:right;width:70px;height:70px;margin:0 0 0 10px}.yoast-sidebar__section div img.alignleft{margin:0 10px 0 0;float:left}.yoast-sidebar__section div p{float:left;width:100%;margin:0}.wpseo-banner__link{display:inline-block}.wpseo-banner__image{vertical-align:top}.yoast_premium_upsell{box-shadow:0 1px 6px 0 rgba(0,0,0,.3);border:1px solid #dcdcdc;padding:16px;background-color:#fff;max-width:640px;overflow:hidden;margin-top:2em}.yoast_premium_upsell--header{color:#a4286a;margin-top:.3em;font-size:1.7em;font-weight:700}.yoast_premium_upsell--motivation{display:flex;flex-wrap:wrap}.yoast_premium_upsell--motivation li{flex:0 0 50%;list-style:none}.yoast_premium_upsell--argument{padding:0 8px 0 20px}.yoast_premium_upsell--argument:before{position:relative;left:-16px;margin-right:-10px;font-weight:700;content:"+";top:-1px}@media screen and (max-width:480px){.yoast_premium_upsell--motivation{display:block}}.yoast-variable-desc{min-width:300px}.yoast-table-scrollable,.yoast-table-scrollable td,.yoast-table-scrollable th{box-sizing:border-box}.yoast-table-scrollable__container.yoast-has-scroll{position:relative;overflow:hidden}.yoast-table-scrollable__container.yoast-has-scroll:after{content:"";position:absolute;top:0;left:100%;width:50px;height:calc(100% - 16px);border-radius:10px 0 0 10px/50% 0 0 50%;box-shadow:-5px 0 10px rgba(0,0,0,.25)}.yoast-table-scrollable__container.yoast-has-scroll .yoast-table-scrollable__inner{overflow-x:scroll;padding-bottom:16px}.yoast-table-scrollable__hintwrapper{display:none}.yoast-table-scrollable__hintwrapper.yoast-has-scroll{display:block;margin:1em 0;text-align:center}.yoast-has-scroll .yoast-table-scrollable__hint{display:inline-block}.yoast-has-scroll .yoast-table-scrollable__hint:before{content:"\21c4";display:inline-block;margin-right:10px;font-size:20px;line-height:inherit;vertical-align:text-top}.yoast-styled-select{display:inline-flex;align-items:center;position:relative;margin-bottom:1em}.yoast-styled-select:after,.yoast-styled-select:before{content:"";position:absolute;top:0;bottom:0;pointer-events:none}.yoast-styled-select:before{width:28px;right:0}.yoast-styled-select:after{width:0;height:0;border-top:4px solid transparent;border-color:#555 transparent transparent;border-style:solid;border-width:5px 4px 0;margin:auto;right:6px;z-index:1}.yoast-styled-select select{height:28px;box-sizing:border-box;margin:0;padding:4px 32px 4px 8px;max-width:100%;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:1px solid #aaa;border-radius:4px;line-height:1;color:#32373c}.yoast-styled-select select.error{border-color:#dc3232;border-width:2px}.wpseo_content_wrapper .yoast-styled-select select.select{margin:0}.yoast-styled-select select:focus{border-color:#5b9dd9}.yoast-styled-select select:-moz-focusring{color:transparent;text-shadow:0 0 0 #32373c}.yoast-styled-select select[disabled]{opacity:.75}.yoast-styled-select select::-ms-expand{display:none}@media screen and (max-width:1024px){.wpseo_content_cell,.wpseo_content_wrapper{display:block;height:auto}#wpseo_content_top{width:auto}#sidebar-container{width:auto;padding:0}.yoast-sidebar__product-list{display:flex;border-bottom:1px solid #ddd}.yoast-sidebar__product-list div p{word-wrap:break-word;width:calc(100% - 50px)}.yoast-sidebar__product-list .yoast-sidebar__section{border-bottom:none}.yoast-sidebar__product-list .yoast-sidebar__section:first-child{margin-right:40px}}@media screen and (max-width:782px){.wpseo_content_wrapper label.select,.wpseo_content_wrapper label.textinput{display:inline-block;float:none;width:auto}.wpseo_content_wrapper input.textinput,.wpseo_content_wrapper textarea,.wpseo_content_wrapper textarea.textinput{display:block;width:100%}.wpseo_content_wrapper .select2-container,.wpseo_content_wrapper select,.wpseo_content_wrapper select.select{display:block;max-width:100%;margin:0 0 5px}.wpseo_content_wrapper div.desc.label,.wpseo_content_wrapper p.desc.label{padding-left:0}.wpseo_content_wrapper .textinput[aria-invalid=true][aria-describedby]+br{display:none}.wpseo_content_wrapper .yoast-input-validation__error-description{width:auto;padding-left:0}}@media screen and (max-width:600px){.yoast-sidebar__product-list{display:block;border-bottom:none}.yoast-sidebar__product-list .yoast-sidebar__section{border-bottom:1px solid #ddd}.yoast-sidebar__product-list .yoast-sidebar__section p{word-wrap:break-word;width:calc(100% - 50px);padding-left:50px}}@media screen and (max-width:500px){body.toplevel_page_wpseo_dashboard .wp-badge{padding-top:80px;background-size:100px 100px;background-color:#a4286a;box-shadow:0 1px 3px rgba(0,0,0,.2)}}.wpseo-checkmark-ok-icon{float:left;width:18px;margin-right:5px;height:18px;background:var(--svg-icon-check-ok) no-repeat;background-size:18px;vertical-align:top}
css/dist/{yst_seo_score-1404-rtl.css → yst_seo_score-1410-rtl.css} RENAMED
File without changes
css/dist/{yst_seo_score-1404.css → yst_seo_score-1410.css} RENAMED
File without changes
css/src/admin-global.css ADDED
@@ -0,0 +1,576 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import url(../src/icons.css);
2
+ @import "../../node_modules/yoastseo/css/_tooltips.scss";
3
+
4
+ .wpseo-premium-indicator {
5
+ width: 1px;
6
+ height: 1px;
7
+ display: inline-block;
8
+ }
9
+
10
+ #adminmenu .wpseo-premium-indicator {
11
+ margin: -2px 0 -3px 2px;
12
+ color: inherit;
13
+ }
14
+
15
+ .wpseo-premium-indicator svg {
16
+ height: 100%;
17
+ width: auto;
18
+ display: none;
19
+ }
20
+
21
+ /* General typography */
22
+ .yoast-measure {
23
+ max-width: 600px;
24
+ }
25
+
26
+ /* Thickbox */
27
+ #TB_window .wpseo_content_wrapper p {
28
+ font-size: 14px;
29
+ font-style: normal;
30
+ }
31
+
32
+ #TB_window .wpseo_content_wrapper label {
33
+ margin: 0 10px 0 0;
34
+ font-size: 14px;
35
+ font-weight: 600;
36
+ }
37
+
38
+ .wpseo-premium-popup-title {
39
+ margin: 1em 0 !important;
40
+ padding: 0 !important;
41
+ font-size: 1.3em !important;
42
+ font-weight: 600 !important;
43
+ }
44
+
45
+ .wpseo-premium-popup-icon {
46
+ margin: 10px;
47
+ }
48
+
49
+ .edit-tags-php .column-description img {
50
+ max-width: 100%;
51
+ height: auto;
52
+ }
53
+
54
+ /* Select2 specific fixes for WordPress: they generally need high specificity */
55
+ .select2-container .select2-search--dropdown .select2-search__field {
56
+ margin: 0;
57
+ padding: 0 8px;
58
+ min-height: 30px;
59
+ }
60
+
61
+ .select2-results__option,
62
+ .select2-selection__choice,
63
+ .select2-search--inline {
64
+ margin-bottom: 0;
65
+ }
66
+
67
+ .select2-container .select2-search--inline .select2-search__field {
68
+ margin-top: 6px !important;
69
+ line-height: inherit;
70
+ min-height: 0;
71
+ }
72
+
73
+ /* Turn off select2 fixed height */
74
+ .wpseo-metabox .select2-container .select2-selection--single,
75
+ .wpseo-admin-page .select2-container .select2-selection--single {
76
+ height: auto;
77
+ }
78
+
79
+ .wpseo-metabox .select2-container .select2-selection--single .select2-selection__arrow,
80
+ .wpseo-admin-page .select2-container .select2-selection--single .select2-selection__arrow {
81
+ height: 100%;
82
+ }
83
+
84
+ .yoast-label-strong {
85
+ font-weight: 600;
86
+ }
87
+
88
+ .yoast-video-container-max-width {
89
+ max-width: 560px;
90
+ }
91
+
92
+ .yoast-video-container {
93
+ position: relative;
94
+ padding-bottom: 56.25%;
95
+ height: 0;
96
+ overflow: hidden;
97
+ }
98
+
99
+ .yoast-video-container iframe {
100
+ position: absolute;
101
+ top: 0;
102
+ left: 0;
103
+ width: 100%;
104
+ height: 100%;
105
+ }
106
+
107
+ .yoast-settings {
108
+ margin-bottom: 2em;
109
+ padding-left: 220px;
110
+ }
111
+
112
+ .yoast-settings h2 {
113
+ margin-bottom: 0;
114
+ margin-left: -220px;
115
+ }
116
+
117
+ .yoast-settings label {
118
+ display: inline-block;
119
+ width: 200px;
120
+ padding-top: 4px;
121
+ padding-right: 10px;
122
+ margin-right: 6px;
123
+ margin-left: -220px;
124
+ font-size: 14px;
125
+ line-height: 1.3;
126
+ font-weight: 600;
127
+ color: #23282d;
128
+ vertical-align: top;
129
+ }
130
+
131
+ .yoast-settings label,
132
+ .yoast-settings fieldset,
133
+ .yoast-settings input[type="text"],
134
+ .yoast .yoast-settings__checkbox,
135
+ .yoast .yoast-settings__radio,
136
+ .yoast-settings textarea,
137
+ .yoast-settings select {
138
+ margin-top: 2em;
139
+ margin-bottom: 0.5em;
140
+ }
141
+
142
+ .yoast-settings__textarea--medium {
143
+ width: 100%;
144
+ max-width: 600px;
145
+ }
146
+
147
+ .yoast .yoast-settings__checkbox,
148
+ .yoast .yoast-settings__radio {
149
+ vertical-align: top;
150
+ position: relative;
151
+ top: 1px;
152
+ }
153
+
154
+ .yoast-settings__group--checkbox,
155
+ .yoast-settings__group--radio {
156
+ padding-top: 1em;
157
+ }
158
+
159
+ .yoast-settings__group--checkbox .yoast-settings__checkbox,
160
+ .yoast-settings__group--radio .yoast-settings__radio {
161
+ margin: 0 4px 10px 0;
162
+ }
163
+
164
+ .yoast-settings__checkbox + label,
165
+ .yoast-settings__radio + label {
166
+ width: auto;
167
+ margin-left: 0;
168
+ margin-right: 0;
169
+ padding: 0;
170
+ max-width: calc( 100% - 25px);
171
+ }
172
+
173
+ .yoast-settings__group--checkbox .yoast-settings__checkbox + label,
174
+ .yoast-settings__group--radio .yoast-settings__radio + label {
175
+ margin-top: 0;
176
+ margin-bottom: 10px;
177
+ font-weight: 400;
178
+ }
179
+
180
+ .yoast-settings legend {
181
+ font-size: 14px;
182
+ font-weight: 600;
183
+ color: #23282d;
184
+ }
185
+
186
+ .yoast-settings .description {
187
+ margin-top: 0;
188
+ font-size: 14px;
189
+ }
190
+
191
+ /* Icons in the posts and taxonomies table cells. */
192
+ td .wpseo-score-icon {
193
+ display: inline-block;
194
+ width: 12px;
195
+ height: 12px;
196
+ margin-left: 5px;
197
+ border-radius: 50%;
198
+ background: #888;
199
+ line-height: 16px;
200
+ }
201
+
202
+ /* Adjust vertical alignment of the icons in the table cells. */
203
+ td .wpseo-score-icon {
204
+ margin-top: 3px;
205
+ }
206
+
207
+ /* Table internal links, SEO, and Readability columns tooltips. */
208
+ .fixed th.column-wpseo-score,
209
+ .fixed th.column-wpseo-score-readability,
210
+ .fixed th.column-wpseo-links,
211
+ .fixed th.column-wpseo-linked {
212
+ /* 42px */
213
+ width: 3em;
214
+ padding: 0;
215
+ }
216
+
217
+ /* Don't use selectors related to classes added with JavaScript to avoid flickering. */
218
+ th.column-wpseo-links a,
219
+ th.column-wpseo-linked a,
220
+ th.column-wpseo-score .yoast-tooltip,
221
+ th.column-wpseo-score-readability .yoast-tooltip {
222
+ overflow: visible;
223
+ /* Override WP property to make tooltips visible. */
224
+ display: inline-block;
225
+ /* To contain floats instead of using overflow. */
226
+ vertical-align: middle;
227
+ padding: 8px 0;
228
+ }
229
+
230
+ th.column-wpseo-score .yoast-tooltip,
231
+ th.column-wpseo-score-readability .yoast-tooltip {
232
+ /* 11+20+11=42px */
233
+ padding: 8px 11px;
234
+ }
235
+
236
+ .column-wpseo-links .yoast-tooltip-multiline::after {
237
+ max-width: 160px;
238
+ }
239
+
240
+ .column-wpseo-linked .yoast-tooltip-multiline::after {
241
+ max-width: 170px;
242
+ }
243
+
244
+ .yoast-column-header-has-tooltip {
245
+ position: relative;
246
+ }
247
+
248
+ /* Generate the icons in the table columns, exclude Screen Options. */
249
+ .manage-column .yoast-column-header-has-tooltip:before {
250
+ content: "";
251
+ display: inline-block;
252
+ width: 20px;
253
+ height: 20px;
254
+ padding: 0;
255
+ vertical-align: top;
256
+ text-decoration: none !important;
257
+ color: #444;
258
+ }
259
+
260
+ .manage-column .yoast-linked-to:before {
261
+ background: transparent url("../../images/link-out-icon.svg") no-repeat 0 0;
262
+ background-size: 20px;
263
+ }
264
+
265
+ .manage-column .yoast-linked-from:before {
266
+ background: transparent url("../../images/link-in-icon.svg") no-repeat 0 0;
267
+ background-size: 20px;
268
+ }
269
+
270
+ .manage-column .yoast-column-seo-score:before {
271
+ background: transparent url("../../images/Yoast_SEO_negative_icon.svg") no-repeat 0 0;
272
+ background-size: 20px;
273
+ }
274
+
275
+ .manage-column .yoast-column-readability:before {
276
+ background: transparent url("../../images/readability-icon.svg") no-repeat 0 0;
277
+ background-size: 20px;
278
+ }
279
+
280
+ /* Do not allow link numbers to break in the table cells. */
281
+ td.column-wpseo-links,
282
+ td.column-wpseo-linked {
283
+ word-wrap: normal;
284
+ }
285
+
286
+ @media screen and (max-width: 782px) {
287
+ .yoast-settings {
288
+ padding-left: 0;
289
+ }
290
+ .yoast-settings h2 {
291
+ margin-left: 0;
292
+ }
293
+ .yoast-settings label {
294
+ width: auto;
295
+ padding: 0;
296
+ margin-right: 0;
297
+ margin-left: 0;
298
+ }
299
+ .yoast .yoast-settings__radio,
300
+ .yoast-settings__radio + label {
301
+ margin-bottom: 1em;
302
+ }
303
+ .yoast-settings__checkbox + label,
304
+ .yoast-settings__radio + label {
305
+ max-width: calc( 100% - 35px);
306
+ padding-top: 8px;
307
+ }
308
+ .yoast-settings__group--checkbox .yoast-settings__checkbox + label,
309
+ .yoast-settings__group--radio .yoast-settings__radio + label {
310
+ padding-top: 4px;
311
+ }
312
+ .yoast-settings input[type="text"],
313
+ .yoast-settings textarea,
314
+ .yoast-settings select {
315
+ display: block;
316
+ width: 100%;
317
+ margin-top: 0;
318
+ margin-bottom: 0;
319
+ padding: 7px 10px;
320
+ max-width: none;
321
+ line-height: 1.5;
322
+ box-sizing: border-box;
323
+ }
324
+ .screen-reader-text.wpseo-score-text {
325
+ position: static !important;
326
+ clip-path: none;
327
+ width: auto;
328
+ height: auto;
329
+ margin: 0;
330
+ }
331
+ }
332
+
333
+ /* Help Center */
334
+ .react-tabs__tab-panel {
335
+ max-width: 900px;
336
+ margin: 0 auto;
337
+ }
338
+
339
+ .react-tabs__tab-panel li {
340
+ max-width: none !important;
341
+ }
342
+
343
+ .contact-premium-support {
344
+ text-align: center;
345
+ }
346
+
347
+ .contact-premium-support__content {
348
+ margin: 0 auto 1.5em;
349
+ font-size: 0.9375rem;
350
+ line-height: 1.4;
351
+ }
352
+
353
+ .contact-premium-support__content:nth-child(2) {
354
+ max-width: 610px;
355
+ }
356
+
357
+ .contact-premium-support__content:nth-child(3) {
358
+ max-width: 560px;
359
+ }
360
+
361
+ .contact-premium-support .contact-premium-support__button {
362
+ margin-bottom: 48px;
363
+ }
364
+
365
+ .wpseo-premium-description {
366
+ margin-top: 0.5em;
367
+ }
368
+
369
+ .wpseo-premium-advantages-list {
370
+ list-style: disc;
371
+ padding-left: 1.5em;
372
+ }
373
+
374
+ .yoast_help.yoast-help-button {
375
+ position: relative;
376
+ width: 20px;
377
+ height: 20px;
378
+ margin: 0;
379
+ padding: 0;
380
+ border: 0;
381
+ outline: none;
382
+ color: #72777c;
383
+ background: transparent;
384
+ box-shadow: none;
385
+ vertical-align: top;
386
+ cursor: pointer;
387
+ }
388
+
389
+ .yoast-section .yoast_help.yoast-help-button {
390
+ float: right;
391
+ }
392
+
393
+ .help-button-inline .yoast_help.yoast-help-button {
394
+ margin-top: -4px;
395
+ }
396
+
397
+ .yoast-section .yoast_help.yoast-help-button {
398
+ margin-top: -44px;
399
+ }
400
+
401
+ .wpseo-admin-page .yoast_help.yoast-help-button {
402
+ margin-right: 6px;
403
+ }
404
+
405
+ .yoast_help .yoast-help-icon::before {
406
+ position: absolute;
407
+ top: 0;
408
+ left: 0;
409
+ padding: 4px;
410
+ content: "\f223";
411
+ }
412
+
413
+ .yoast_help.yoast-help-button:hover,
414
+ .yoast_help.yoast-help-button:focus {
415
+ color: #0073aa;
416
+ }
417
+
418
+ .yoast_help.yoast-help-button:focus .yoast-help-icon::before,
419
+ .assessment-results__mark:focus {
420
+ border-radius: 100%;
421
+ box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, 0.8);
422
+ }
423
+
424
+ .yoast-help-panel {
425
+ display: none;
426
+ clear: both;
427
+ max-width: 30em !important;
428
+ padding: 0 0 1em;
429
+ font-weight: normal;
430
+ white-space: normal;
431
+ }
432
+
433
+ .wpseo-admin-page .yoast-help-panel {
434
+ max-width: 600px !important;
435
+ }
436
+
437
+ .copy-home-meta-description .yoast-help-panel {
438
+ max-width: 400px !important;
439
+ }
440
+
441
+ .yoast-modal_is-open {
442
+ overflow: hidden;
443
+ }
444
+
445
+ .yoast-notification .yoast-seo-icon {
446
+ float: left;
447
+ margin: 20px 10px;
448
+ }
449
+
450
+ .yoast-notification .yoast-seo-icon-wrap {
451
+ margin: 0 0 0 85px;
452
+ }
453
+
454
+ .yoast-button-upsell {
455
+ display: inline-flex;
456
+ align-items: center;
457
+ justify-content: center;
458
+ box-sizing: border-box;
459
+ min-height: 48px;
460
+ padding: 8px 1em;
461
+ font-size: 16px;
462
+ line-height: 1.5;
463
+ font-family: Arial, sans-serif;
464
+ color: #000;
465
+ border-radius: 4px;
466
+ box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.2);
467
+ filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
468
+ text-decoration: none;
469
+ background-color: #FEC228;
470
+ }
471
+
472
+ .yoast-button-upsell:hover, .yoast-button-upsell:focus, .yoast-button-upsell:active {
473
+ color: #000;
474
+ background-color: #F2AE01;
475
+ }
476
+
477
+ .yoast-button-upsell:focus {
478
+ box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.2), 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, 0.8);
479
+ }
480
+
481
+ .yoast-button-upsell:active {
482
+ transform: translateY(1px);
483
+ box-shadow: none;
484
+ filter: none;
485
+ }
486
+
487
+ .yoast-button-upsell#wpseo-premium-button {
488
+ color: #000;
489
+ }
490
+
491
+ .yoast-button-upsell__caret {
492
+ flex-shrink: 0;
493
+ width: 8px;
494
+ height: 16px;
495
+ margin: 0 -2px 0 6px;
496
+ background: transparent var(--svg-icon-caret-right) center no-repeat;
497
+ }
498
+
499
+ .rtl .yoast-button-upsell__caret {
500
+ background-image: var(--svg-icon-caret-left);
501
+ }
502
+
503
+ body.folded .wpseo-admin-submit-fixed {
504
+ left: 36px;
505
+ }
506
+
507
+ @media screen and (max-width: 782px) {
508
+ body.folded .wpseo-admin-submit-fixed {
509
+ left: 0;
510
+ }
511
+ }
512
+
513
+ .wpseo-admin-submit {
514
+ z-index: 5;
515
+ display: flex;
516
+ padding: 16px 0;
517
+ justify-content: flex-start;
518
+ align-items: baseline;
519
+ margin: 0;
520
+ }
521
+
522
+ .wpseo-admin-submit.wpseo-admin-submit-fixed {
523
+ padding: 16px;
524
+ position: fixed;
525
+ bottom: 0;
526
+ left: 160px;
527
+ right: 281px;
528
+ background-color: white;
529
+ max-width: 800px;
530
+ box-shadow: 0 1px 8px 1px rgba(0, 0, 0, 0.5);
531
+ margin: 0 16px;
532
+ }
533
+
534
+ @media screen and (max-width: 1024px) {
535
+ .wpseo-admin-submit.wpseo-admin-submit-fixed {
536
+ right: 0;
537
+ }
538
+ }
539
+
540
+ @media only screen and (max-width: 960px) {
541
+ .wpseo-admin-submit.wpseo-admin-submit-fixed {
542
+ left: 36px;
543
+ }
544
+ }
545
+
546
+ @media screen and (max-width: 782px) {
547
+ .wpseo-admin-submit.wpseo-admin-submit-fixed {
548
+ left: 0;
549
+ margin: 0;
550
+ }
551
+ }
552
+
553
+ .wpseo-admin-submit p.submit {
554
+ padding: 0;
555
+ margin: 0;
556
+ }
557
+
558
+ .wpseo-admin-submit p.wpseo-message {
559
+ margin: 0 16px 0 0;
560
+ padding: 0;
561
+ color: #008a00;
562
+ }
563
+
564
+ .yoast-site-health__signature {
565
+ display: flex;
566
+ font-size: 12px;
567
+ line-height: 20px;
568
+ margin-top: 2em;
569
+ color: #707070;
570
+ }
571
+
572
+ .yoast-site-health__signature-icon, .yoast-site-health__inline-button.fetch-status {
573
+ margin-right: 8px;
574
+ }
575
+
576
+ /*# sourceMappingURL=admin-global.css.map */
css/src/adminbar.css ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import url(../src/score_icon.css);
2
+ .adminbar-seo-score {
3
+ margin: 10px 0 0 4px !important;
4
+ }
5
+
6
+ #wpadminbar .yoast-issue-added,
7
+ #wpadminbar .yoast-issue-added:hover {
8
+ position: absolute;
9
+ top: 32px;
10
+ left: 0;
11
+ white-space: nowrap;
12
+ padding: 2px 12px;
13
+ border-radius: 0 10px 10px 10px;
14
+ color: white;
15
+ background-color: #a4286a;
16
+ box-shadow: 1px 1px 1px 1px grey;
17
+ }
18
+
19
+ #wpadminbar .yoast-issue-added {
20
+ display: none;
21
+ }
22
+
23
+ #wpadminbar .yoast-issue-counter {
24
+ display: inline;
25
+ padding: 1px 7px 1px 6px !important;
26
+ border-radius: 50%;
27
+ color: white;
28
+ }
29
+
30
+ #wpadminbar .yoast-logo.svg {
31
+ float: left;
32
+ width: 26px;
33
+ height: 30px;
34
+ background-repeat: no-repeat;
35
+ background-position: 0 6px;
36
+ background-size: 20px;
37
+ background-image: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6IzgyODc4YyIgdmlld0JveD0iMCAwIDUxMiA1MTIiPjxnPjxnPjxnPjxnPjxwYXRoIGQ9Ik0yMDMuNiwzOTVjNi44LTE3LjQsNi44LTM2LjYsMC01NGwtNzkuNC0yMDRoNzAuOWw0Ny43LDE0OS40bDc0LjgtMjA3LjZIMTE2LjRjLTQxLjgsMC03NiwzNC4yLTc2LDc2VjM1N2MwLDQxLjgsMzQuMiw3Niw3Niw3NkgxNzNDMTg5LDQyNC4xLDE5Ny42LDQxMC4zLDIwMy42LDM5NXoiLz48L2c+PGc+PHBhdGggZD0iTTQ3MS42LDE1NC44YzAtNDEuOC0zNC4yLTc2LTc2LTc2aC0zTDI4NS43LDM2NWMtOS42LDI2LjctMTkuNCw0OS4zLTMwLjMsNjhoMjE2LjJWMTU0Ljh6Ii8+PC9nPjwvZz48cGF0aCBzdHJva2Utd2lkdGg9IjIuOTc0IiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIGQ9Ik0zMzgsMS4zbC05My4zLDI1OS4xbC00Mi4xLTEzMS45aC04OS4xbDgzLjgsMjE1LjJjNiwxNS41LDYsMzIuNSwwLDQ4Yy03LjQsMTktMTksMzcuMy01Myw0MS45bC03LjIsMXY3Nmg4LjNjODEuNywwLDExOC45LTU3LjIsMTQ5LjYtMTQyLjlMNDMxLjYsMS4zSDMzOHogTTI3OS40LDM2MmMtMzIuOSw5Mi02Ny42LDEyOC43LTEyNS43LDEzMS44di00NWMzNy41LTcuNSw1MS4zLTMxLDU5LjEtNTEuMWM3LjUtMTkuMyw3LjUtNDAuNywwLTYwbC03NS0xOTIuN2g1Mi44bDUzLjMsMTY2LjhsMTA1LjktMjk0aDU4LjFMMjc5LjQsMzYyeiIvPjwvZz48L2c+PC9zdmc+");
38
+ }
39
+
40
+ .yoast-issue-counter {
41
+ background-color: #d54e21;
42
+ }
43
+
44
+ #wpadminbar #wp-admin-bar-wpseo-licenses .ab-item {
45
+ color: #f18500;
46
+ }
47
+
48
+ @media screen and (max-width: 782px) {
49
+ .adminbar-seo-score {
50
+ margin: 16px 10px 0 2px !important;
51
+ }
52
+ #wpadminbar #wp-admin-bar-wpseo-menu {
53
+ display: block;
54
+ position: static;
55
+ }
56
+ #wpadminbar .yoast-logo.svg {
57
+ width: 52px;
58
+ height: 46px;
59
+ background-position: 50% 8px;
60
+ background-size: 30px;
61
+ }
62
+ #wpadminbar .yoast-logo + .yoast-issue-counter {
63
+ margin-left: -5px;
64
+ margin-right: 10px;
65
+ }
66
+ #wpadminbar .ab-sub-wrapper .yoast-issue-counter {
67
+ vertical-align: text-top;
68
+ position: relative;
69
+ top: -5px;
70
+ }
71
+ #wpadminbar .yoast-issue-added,
72
+ #wpadminbar .yoast-issue-added:hover {
73
+ top: 46px;
74
+ white-space: normal;
75
+ line-height: 1.8;
76
+ }
77
+ #wp-admin-bar-wpseo-menu.menupop .ab-sub-wrapper #wp-admin-bar-wpseo-kwresearch,
78
+ #wp-admin-bar-wpseo-menu.menupop .ab-sub-wrapper #wp-admin-bar-wpseo-settings {
79
+ display: none;
80
+ }
81
+ }
82
+
83
+ /*# sourceMappingURL=adminbar.css.map */
css/src/alerts.css ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .yoast-alert {
2
+ display: flex;
3
+ align-items: flex-start;
4
+ padding: 16px;
5
+ border: 1px solid rgba(0, 0, 0, 0.2);
6
+ font-size: 14px;
7
+ line-height: 1.5;
8
+ margin: 16px 0;
9
+ }
10
+
11
+ .yoast-alert--error {
12
+ color: #8f1919;
13
+ background: #f9dcdc;
14
+ }
15
+
16
+ .yoast-alert--info {
17
+ color: #00468f;
18
+ background: #cce5ff;
19
+ }
20
+
21
+ .yoast-alert--success {
22
+ color: #395315;
23
+ background: #e2f2cc;
24
+ }
25
+
26
+ .yoast-alert--warning {
27
+ color: #674e00;
28
+ background: #fff3cd;
29
+ }
30
+
31
+ /* Needs higher specificity than a Gutenberg ruleset selector. */
32
+ .yoast-alert__icon.yoast-alert__icon {
33
+ display: block;
34
+ margin-top: 0.125rem;
35
+ margin-right: 8px;
36
+ height: 16px;
37
+ width: 16px;
38
+ max-width: none;
39
+ }
40
+
41
+ .yoast-alert a {
42
+ color: #004973;
43
+ }
css/src/dashboard.css ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #yoast-seo-dashboard-widget h3 {
2
+ /* csslint allow: qualified-headings */
3
+ font-weight: bold;
4
+ }
5
+
6
+ #yoast-seo-dashboard-widget .assessments, #yoast-seo-dashboard-widget .score-assessments {
7
+ padding-left: 0;
8
+ }
9
+
10
+ #yoast-seo-dashboard-widget .wordpress-feed {
11
+ margin: 16px -12px 0;
12
+ padding: 12px 12px 0;
13
+ border-top: 1px solid #eee;
14
+ }
15
+
16
+ #yoast-seo-dashboard-widget .wordpress-feed .wordpress-feed__post {
17
+ margin-top: 12px;
18
+ }
19
+
20
+ #yoast-seo-dashboard-widget .wordpress-feed .wordpress-feed__footer {
21
+ margin: 0 -12px;
22
+ padding: 4px 12px 0;
23
+ border-top: 1px solid #eee;
24
+ }
25
+
26
+ #yoast-seo-ryte-assessment {
27
+ margin: 12px -12px 0;
28
+ padding: 12px 12px 0;
29
+ border-top: 1px solid #eee;
30
+ }
31
+
32
+ #yoast-seo-ryte-assessment .button {
33
+ margin-right: 8px;
34
+ }
35
+
36
+ #yoast-seo-ryte-assessment .button.landing-page {
37
+ border-color: #7b1e4f #6f1b47 #6f1b47;
38
+ color: #fff;
39
+ background: #a4286a;
40
+ box-shadow: 0 1px 0 #6f1b47;
41
+ }
42
+
43
+ #yoast-seo-ryte-assessment .button.landing-page:hover, #yoast-seo-ryte-assessment .button.landing-page:focus {
44
+ background: #90235d;
45
+ border-color: #6f1b47;
46
+ }
47
+
48
+ #yoast-seo-ryte-assessment .button.landing-page:focus {
49
+ box-shadow: 0 1px 0 #7b1e4f, 0 0 2px 1px #a35685;
50
+ }
51
+
52
+ #yoast-seo-ryte-assessment .button.landing-page:active {
53
+ background: #7b1e4f;
54
+ border-color: #6f1b47;
55
+ box-shadow: inset 0 2px 0 #6f1b47;
56
+ vertical-align: top;
57
+ }
58
+
59
+ #yoast-seo-dashboard-widget:empty:before {
60
+ display: block;
61
+ content: "";
62
+ width: 40px;
63
+ height: 40px;
64
+ background-image: url("../../images/Yoast_SEO_Icon.svg");
65
+ margin: 25px auto;
66
+ -webkit-animation: rotate 2s infinite linear;
67
+ animation: rotate 2s infinite linear;
68
+ }
69
+
70
+ @-webkit-keyframes rotate {
71
+ 0% {
72
+ -webkit-transform: perspective(120px);
73
+ }
74
+ 100% {
75
+ -webkit-transform: perspective(120px) rotateY(360deg);
76
+ }
77
+ }
78
+
79
+ @keyframes rotate {
80
+ 0% {
81
+ transform: perspective(120px) rotateX(0deg) rotateY(0deg);
82
+ -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
83
+ }
84
+ 100% {
85
+ transform: perspective(120px) rotateX(0deg) rotateY(360deg);
86
+ -webkit-transform: perspective(120px) rotateX(0deg) rotateY(360deg);
87
+ }
88
+ }
89
+
90
+ /*# sourceMappingURL=dashboard.css.map */
css/src/edit-page.css ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ @import url(../src/score_icon.css);
2
+ @media screen and (max-width: 782px) {
3
+ .column-wpseo-title,
4
+ .column-wpseo-score,
5
+ .column-wpseo-metadesc,
6
+ .column-wpseo-focuskw {
7
+ display: none;
8
+ }
9
+ }
10
+
11
+ /*# sourceMappingURL=edit-page.css.map */
css/src/featured-image.css ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ #yst_opengraph_image_warning {
2
+ margin-top: 0;
3
+ }
4
+
5
+ .yoast-opengraph-image-notice #set-post-thumbnail > img {
6
+ box-shadow: 0 0 0 2px #fff, 0 0 0 5px #dc3232;
7
+ }
8
+
9
+ /*# sourceMappingURL=featured-image.css.map */
css/src/filter-explanation.css ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ #posts-filter .wpseo-filter-explanation {
2
+ margin: 10px 1px 5px;
3
+ clear: both;
4
+ }
5
+
6
+ /*# sourceMappingURL=filter-explanation.css.map */
css/src/icons.css ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ :root {
2
+ --svg-icon-info: url('data:image/svg+xml,<svg width="1792" height="1792" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false"><path fill="%23A4286A" d="M1152 1376v-160q0-14-9-23t-23-9h-96v-512q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v160q0 14 9 23t23 9h96v320h-96q-14 0-23 9t-9 23v160q0 14 9 23t23 9h448q14 0 23-9t9-23zm-128-896v-160q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v160q0 14 9 23t23 9h192q14 0 23-9t9-23zm640 416q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"/></svg>');
3
+ --svg-icon-check: url('data:image/svg+xml,<svg width="1792" height="1792" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false"><path fill="%2377B227" d="M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z"/></svg>');
4
+ --svg-icon-check-ok: url('data:image/svg+xml,<svg width="1792" height="1792" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false"><path fill="%2377B227" d="M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z"/></svg>');
5
+ --svg-icon-caret-right: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 192 512" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false"><path fill="%23555555" d="M 0 384.662 V 127.338 c 0 -17.818 21.543 -26.741 34.142 -14.142 l 128.662 128.662 c 7.81 7.81 7.81 20.474 0 28.284 L 34.142 398.804 C 21.543 411.404 0 402.48 0 384.662 Z"/></svg>');
6
+ --svg-icon-caret-left: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 192 512" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false"><path fill="%23555555" d="M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z"/></svg>');
7
+ --svg-icon-eye: url('data:image/svg+xml,<svg width="1792" height="1792" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false"><path fill="%23555555" d="M1664 960q-152-236-381-353 61 104 61 225 0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-121 61-225-229 117-381 353 133 205 333.5 326.5t434.5 121.5 434.5-121.5 333.5-326.5zm-720-384q0-20-14-34t-34-14q-125 0-214.5 89.5t-89.5 214.5q0 20 14 34t34 14 34-14 14-34q0-86 61-147t147-61q20 0 34-14t14-34zm848 384q0 34-20 69-140 230-376.5 368.5t-499.5 138.5-499.5-139-376.5-368q-20-35-20-69t20-69q140-229 376.5-368t499.5-139 499.5 139 376.5 368q20 35 20 69z" /></svg>');
8
+ --svg-icon-list: url('data:image/svg+xml,<svg width="1792" height="1792" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false"><path fill="%23555555" d="M384 1408q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm0-512q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zm-1408-928q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zm0-512v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5z"/></svg>');
9
+ --svg-icon-key: url('data:image/svg+xml,<svg width="1792" height="1792" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false"><path fill="%23555555" d="M832 512q0-80-56-136t-136-56-136 56-56 136q0 42 19 83-41-19-83-19-80 0-136 56t-56 136 56 136 136 56 136-56 56-136q0-42-19-83 41 19 83 19 80 0 136-56t56-136zm851 704q0 17-49 66t-66 49q-9 0-28.5-16t-36.5-33-38.5-40-24.5-26l-96 96 220 220q28 28 28 68 0 42-39 81t-81 39q-40 0-68-28l-671-671q-176 131-365 131-163 0-265.5-102.5t-102.5-265.5q0-160 95-313t248-248 313-95q163 0 265.5 102.5t102.5 265.5q0 189-131 365l355 355 96-96q-3-3-26-24.5t-40-38.5-33-36.5-16-28.5q0-17 49-66t66-49q13 0 23 10 6 6 46 44.5t82 79.5 86.5 86 73 78 28.5 41z"/></svg>');
10
+ --svg-icon-edit: url('data:image/svg+xml,<svg width="1792" height="1792" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false"><path fill="%23555555" d="M491 1536l91-91-235-235-91 91v107h128v128h107zm523-928q0-22-22-22-10 0-17 7l-542 542q-7 7-7 17 0 22 22 22 10 0 17-7l542-542q7-7 7-17zm-54-192l416 416-832 832h-416v-416zm683 96q0 53-37 90l-166 166-416-416 166-165q36-38 90-38 53 0 91 38l235 234q37 39 37 91z" /></svg>');
11
+ --svg-icon-yoast: url('data:image/svg+xml,<svg width="1792" height="1792" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false"><path fill="%23999999" d="M403 218h691l-26 72h-665q-110 0-188.5 79t-78.5 189v771q0 95 60.5 169.5t153.5 93.5q23 5 98 5v72h-45q-140 0-239.5-100t-99.5-240v-771q0-140 99.5-240t239.5-100zm851-218h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106l-285-733h228l187 585zm474 558v1111h-795q37-55 45-73h678v-1038q0-85-49.5-155t-129.5-99l25-67q101 34 163.5 123.5t62.5 197.5z"/></svg>');
12
+ --svg-icon-yoast-good: url('data:image/svg+xml,<svg width="1792" height="1792" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false"><path fill="%237ad03a" d="M403 218h691l-26 72h-665q-110 0-188.5 79t-78.5 189v771q0 95 60.5 169.5t153.5 93.5q23 5 98 5v72h-45q-140 0-239.5-100t-99.5-240v-771q0-140 99.5-240t239.5-100zm851-218h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106l-285-733h228l187 585zm474 558v1111h-795q37-55 45-73h678v-1038q0-85-49.5-155t-129.5-99l25-67q101 34 163.5 123.5t62.5 197.5z"/></svg>');
13
+ --svg-icon-yoast-ok: url('data:image/svg+xml,<svg width="1792" height="1792" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false"><path fill="%23ee7c1b" d="M403 218h691l-26 72h-665q-110 0-188.5 79t-78.5 189v771q0 95 60.5 169.5t153.5 93.5q23 5 98 5v72h-45q-140 0-239.5-100t-99.5-240v-771q0-140 99.5-240t239.5-100zm851-218h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106l-285-733h228l187 585zm474 558v1111h-795q37-55 45-73h678v-1038q0-85-49.5-155t-129.5-99l25-67q101 34 163.5 123.5t62.5 197.5z"/></svg>');
14
+ --svg-icon-yoast-bad: url('data:image/svg+xml,<svg width="1792" height="1792" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false"><path fill="%23dc3232" d="M403 218h691l-26 72h-665q-110 0-188.5 79t-78.5 189v771q0 95 60.5 169.5t153.5 93.5q23 5 98 5v72h-45q-140 0-239.5-100t-99.5-240v-771q0-140 99.5-240t239.5-100zm851-218h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106l-285-733h228l187 585zm474 558v1111h-795q37-55 45-73h678v-1038q0-85-49.5-155t-129.5-99l25-67q101 34 163.5 123.5t62.5 197.5z"/></svg>');
15
+ --svg-icon-yoast-noindex: url('data:image/svg+xml,<svg width="1792" height="1792" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false"><path fill="%231e8cbe" d="M403 218h691l-26 72h-665q-110 0-188.5 79t-78.5 189v771q0 95 60.5 169.5t153.5 93.5q23 5 98 5v72h-45q-140 0-239.5-100t-99.5-240v-771q0-140 99.5-240t239.5-100zm851-218h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106l-285-733h228l187 585zm474 558v1111h-795q37-55 45-73h678v-1038q0-85-49.5-155t-129.5-99l25-67q101 34 163.5 123.5t62.5 197.5z"/></svg>');
16
+ }
17
+
18
+ /*# sourceMappingURL=icons.css.map */
css/src/inside-editor.css ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ .yoast-text-mark {
2
+ background-color: #e1bee7;
3
+ }
4
+
5
+ .yoast-text-mark__highlight {
6
+ background-color: #4a148c;
7
+ color: white;
8
+ }
9
+
10
+ /*# sourceMappingURL=inside-editor.css.map */
css/src/metabox-primary-category.css ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .wpseo-primary-term > label,
2
+ .wpseo-is-primary-term {
3
+ font-weight: 600;
4
+ }
5
+
6
+ .wpseo-primary-term > .wpseo-make-primary-term,
7
+ .wpseo-term-unchecked > .wpseo-make-primary-term {
8
+ display: none;
9
+ }
10
+
11
+ .wpseo-non-primary-term > .wpseo-is-primary-term,
12
+ .wpseo-term-unchecked > .wpseo-is-primary-term {
13
+ display: none;
14
+ }
15
+
16
+ .wpseo-make-primary-term,
17
+ .wpseo-is-primary-term {
18
+ float: right;
19
+ }
20
+
21
+ .wpseo-primary-term:before,
22
+ .wpseo-primary-term:after,
23
+ .wpseo-non-primary-term:before,
24
+ .wpseo-non-primary-term:after {
25
+ display: table;
26
+ content: "";
27
+ }
28
+
29
+ .wpseo-primary-term:after,
30
+ .wpseo-non-primary-term:after {
31
+ clear: both;
32
+ }
33
+
34
+ /* It is a button, style it like a link */
35
+ .wpseo-make-primary-term {
36
+ margin: 4px 0 0 0;
37
+ padding: 0;
38
+ border: none;
39
+ color: #0073aa;
40
+ background: none;
41
+ text-decoration: underline;
42
+ cursor: pointer;
43
+ }
44
+
45
+ .wpseo-make-primary-term:hover {
46
+ color: #00a0d2;
47
+ }
48
+
49
+ /*# sourceMappingURL=metabox-primary-category.css.map */
css/src/metabox.css ADDED
@@ -0,0 +1,679 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import url(../src/icons.css);
2
+ @import "../../node_modules/draft-js-mention-plugin/lib/plugin.css";
3
+ /*!rtl:begin:ignore*/
4
+ @import "../../node_modules/draft-js/dist/Draft.css";
5
+ /*!rtl:end:ignore*/
6
+
7
+ #wpseo_meta {
8
+ box-sizing: border-box;
9
+ }
10
+
11
+ #wpseo_meta *, #wpseo_meta *:before, #wpseo_meta *:after {
12
+ box-sizing: inherit;
13
+ }
14
+
15
+ .DraftEditor-root [data-block] {
16
+ margin: 0;
17
+ }
18
+
19
+ /* Hide the taxonomy metabox rich editor when it's first inserted in the form. */
20
+ #edittag > #wp-description-wrap {
21
+ display: none;
22
+ }
23
+
24
+ #wp-description-wrap .wp-editor-area {
25
+ border: 0;
26
+ }
27
+
28
+ /* Give the original textarea enough height to mitigate content flash. */
29
+ .term-description-wrap td > textarea#description {
30
+ min-height: 530px;
31
+ }
32
+
33
+ /**
34
+ * Lines below came from metabox-tabs.css
35
+ *
36
+ * Metabox Tabs
37
+ */
38
+ ul.wpseo-metabox-tabs {
39
+ display: none;
40
+ margin-top: 6px;
41
+ margin-bottom: 0;
42
+ }
43
+
44
+ /* Contain floated list items and have overflow visible for the active tab */
45
+ ul.wpseo-metabox-tabs:after {
46
+ content: "";
47
+ display: table;
48
+ clear: both;
49
+ }
50
+
51
+ .wpseo-metabox-tabs-div {
52
+ margin: 0 5px 5px;
53
+ }
54
+
55
+ .wpseo-metabox-tabs-div ul {
56
+ list-style: none;
57
+ }
58
+
59
+ #wpseo-meta-section-addons {
60
+ padding: 0 5px 5px;
61
+ }
62
+
63
+ #wpseo-meta-section-addons .wpseo-metabox-tabs-div {
64
+ margin: 0;
65
+ }
66
+
67
+ ul.wpseo-metabox-tabs li.active {
68
+ background-color: #fdfdfd;
69
+ }
70
+
71
+ .wpseo-meta-section,
72
+ .wpseo-meta-section-react {
73
+ display: none;
74
+ width: 100%;
75
+ min-height: 100%;
76
+ height: auto;
77
+ vertical-align: top;
78
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
79
+ border-top: 1px solid #e8e8e8;
80
+ }
81
+
82
+ .wpseo-meta-section.active,
83
+ .wpseo-meta-section-react.active {
84
+ background: #fff;
85
+ position: relative;
86
+ /* 1 higher than the active menu item: .wpseo-metabox-menu.active */
87
+ z-index: 12;
88
+ }
89
+
90
+ .wpseo-meta-section.active {
91
+ display: inline-block;
92
+ }
93
+
94
+ .wpseo-meta-section-react.active {
95
+ display: block;
96
+ margin-bottom: 10px;
97
+ }
98
+
99
+ .wpseo-metabox-content {
100
+ max-width: 800px;
101
+ padding-top: 16px;
102
+ }
103
+
104
+ .wpseo-metabox-menu {
105
+ padding: 0;
106
+ background-color: #fff;
107
+ }
108
+
109
+ .wpseo-metabox-menu ul {
110
+ margin: 0 1px 0 0;
111
+ padding: 0 0 0 16px;
112
+ display: flex;
113
+ align-items: flex-end;
114
+ flex-wrap: wrap;
115
+ flex-flow: wrap-reverse;
116
+ }
117
+
118
+ .wpseo-metabox-menu ul li:nth-child(1) {
119
+ z-index: 10;
120
+ }
121
+
122
+ .wpseo-metabox-menu ul li:nth-child(2) {
123
+ z-index: 9;
124
+ }
125
+
126
+ .wpseo-metabox-menu ul li:nth-child(3) {
127
+ z-index: 8;
128
+ }
129
+
130
+ .wpseo-metabox-menu ul li:nth-child(4) {
131
+ z-index: 7;
132
+ }
133
+
134
+ .wpseo-metabox-menu ul li:nth-child(5) {
135
+ z-index: 6;
136
+ }
137
+
138
+ .wpseo-metabox-menu ul li:nth-child(6) {
139
+ z-index: 5;
140
+ }
141
+
142
+ .wpseo-metabox-menu ul li {
143
+ box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
144
+ height: 32px;
145
+ /* Negative margins are to not have double borders. */
146
+ margin-left: -1px;
147
+ margin-bottom: -1px;
148
+ text-align: center;
149
+ position: relative;
150
+ background-color: #f8f8f8;
151
+ }
152
+
153
+ .wpseo-metabox-menu ul li a {
154
+ color: #0073aa;
155
+ display: flex;
156
+ align-items: center;
157
+ border: 1px solid #ddd;
158
+ }
159
+
160
+ .wpseo-metabox-menu ul li .yst-traffic-light {
161
+ height: 20px;
162
+ width: initial;
163
+ /* all the other icons are 20x20 so we need to compensate */
164
+ margin-right: 10px;
165
+ margin-left: 4px;
166
+ }
167
+
168
+ .wpseo-metabox-menu ul li span.dashicons {
169
+ margin-right: 8px;
170
+ }
171
+
172
+ .wpseo-metabox-menu ul li span.wpseo-buy-premium {
173
+ color: #a4286a;
174
+ }
175
+
176
+ .wpseo-metabox-menu ul li span.wpseo-buy-premium:hover {
177
+ color: #832055;
178
+ }
179
+
180
+ .wpseo-metabox-menu ul li.active {
181
+ height: 36px;
182
+ /* 4 px is the difference in height with the inactive tabs. */
183
+ margin-top: -4px;
184
+ z-index: 11;
185
+ background-color: #ffffff;
186
+ }
187
+
188
+ .wpseo-metabox-menu ul li.active a {
189
+ height: 36px;
190
+ color: #444;
191
+ }
192
+
193
+ .wpseo-metabox-menu ul li.active span.wpseo-buy-premium {
194
+ color: #a4286a;
195
+ border-color: #a4286a;
196
+ }
197
+
198
+ .wpseo-metabox-menu ul li.active span.wpseo-buy-premium:hover {
199
+ color: #832055;
200
+ border-color: #832055;
201
+ }
202
+
203
+ .wpseo-metabox-menu a {
204
+ height: 32px;
205
+ padding: 0 8px;
206
+ text-decoration: none;
207
+ }
208
+
209
+ /* Floated to reset white space between list items */
210
+ ul.wpseo-metabox-tabs li {
211
+ float: left;
212
+ margin-right: 5px;
213
+ margin-bottom: -1px;
214
+ padding: 0;
215
+ border: 1px solid #dfdfdf;
216
+ border-bottom: 0 none;
217
+ }
218
+
219
+ ul.wpseo-metabox-tabs li .wpseo-keyword {
220
+ display: inline-block;
221
+ vertical-align: top;
222
+ max-width: 8em;
223
+ max-width: 8rem;
224
+ overflow: hidden;
225
+ white-space: nowrap;
226
+ text-overflow: ellipsis;
227
+ }
228
+
229
+ .wpseotab {
230
+ display: none;
231
+ padding: 16px;
232
+ border: 1px solid #ddd;
233
+ background-color: #fdfdfd;
234
+ }
235
+
236
+ .wpseotab .wpseo-cornerstone-checkbox {
237
+ margin-right: 0.5em;
238
+ }
239
+
240
+ .wpseotab.content {
241
+ padding: 20px 15px;
242
+ }
243
+
244
+ .wpseotab.active {
245
+ display: block;
246
+ }
247
+
248
+ /* Tab links. */
249
+ .wpseo-metabox-tabs .wpseo_tablink {
250
+ display: inline-block;
251
+ vertical-align: top;
252
+ padding: 5px 12px 6px 12px;
253
+ text-decoration: none;
254
+ }
255
+
256
+ /* Bigger right padding only for the content tab and the main keyword tabs */
257
+ .wpseo-metabox-tabs .wpseo_content_tab a {
258
+ padding-right: 12px;
259
+ }
260
+
261
+ .wpseo-metabox-tabs .wpseo-score-icon {
262
+ margin-left: 0;
263
+ }
264
+
265
+ #wpseo-meta-section-social .wpseo-metabox-tabs .wpseo_tablink {
266
+ padding: 5px 7px;
267
+ }
268
+
269
+ .wpseo-metabox-tabs .wpseo_tablink .dashicons {
270
+ width: 16px;
271
+ height: 16px;
272
+ font-size: 16px;
273
+ }
274
+
275
+ .wpseo-metabox-sidebar .dashicons {
276
+ width: 30px;
277
+ height: 30px;
278
+ font-size: 30px;
279
+ }
280
+
281
+ .wpseo-metabox-tabs-div div.wpseo-tabs-panel {
282
+ overflow: auto;
283
+ padding: 0.5em 0.9em;
284
+ border: 1px solid;
285
+ }
286
+
287
+ #wpseo_meta .inside {
288
+ margin: 0;
289
+ }
290
+
291
+ #wpseo_meta .inside::after {
292
+ content: "";
293
+ display: table;
294
+ clear: both;
295
+ }
296
+
297
+ #wpseo_meta .postbox .inside .wpseotab {
298
+ font-size: 13px !important;
299
+ }
300
+
301
+ /* Basic styling for social, advanced, and add-ons tabs content. */
302
+ .wpseo-form {
303
+ /* By default, labels are set to display block. */
304
+ /* Radio buttons and checkboxes labels are set to display inline-block. */
305
+ /* Default vertical spacing between blocks of controls. */
306
+ /* First form controls in a tab need a smaller top margin. */
307
+ /* Radio buttons. */
308
+ /* Descriptions and error messages below the fields. */
309
+ }
310
+
311
+ .wpseo-form input,
312
+ .wpseo-form label,
313
+ .wpseo-form textarea,
314
+ .wpseo-form .select2-container,
315
+ .wpseo-form p.error-message {
316
+ max-width: 600px;
317
+ }
318
+
319
+ .wpseo-form fieldset {
320
+ padding-top: 5px;
321
+ }
322
+
323
+ .wpseo-form legend {
324
+ font-weight: 600;
325
+ }
326
+
327
+ .wpseo-form label {
328
+ display: block;
329
+ font-weight: 600;
330
+ }
331
+
332
+ .wpseo-form input[type="radio"] + label,
333
+ .wpseo-form input[type="checkbox"] + label {
334
+ display: inline-block;
335
+ font-weight: 400;
336
+ }
337
+
338
+ .wpseo-form label,
339
+ .wpseo-form fieldset {
340
+ margin-top: 2em;
341
+ margin-bottom: 0.5em;
342
+ }
343
+
344
+ .wpseo-form input[type="checkbox"],
345
+ .wpseo-form input[type="checkbox"] + label {
346
+ margin-top: 2em;
347
+ margin-bottom: 0;
348
+ font-size: 1em;
349
+ /* 1em = 13px. Necessary for proper calculation of margins in em. */
350
+ }
351
+
352
+ .wpseo-form label:first-child,
353
+ .wpseo-form fieldset:first-child,
354
+ .wpseo-form input[type="checkbox"]:first-child,
355
+ .wpseo-form input[type="checkbox"]:first-child + label {
356
+ margin-top: 10px;
357
+ }
358
+
359
+ .wpseo-form input[type="radio"] {
360
+ margin-top: 0;
361
+ }
362
+
363
+ .wpseo-form input[type="radio"] + label {
364
+ margin: 0 1em 0 0;
365
+ }
366
+
367
+ .wpseo-form p.error-message {
368
+ margin: 0.5em 0;
369
+ }
370
+
371
+ .wpseo-form select[multiple] {
372
+ margin-top: 0;
373
+ }
374
+
375
+ .yoast-metabox__description {
376
+ max-width: 600px;
377
+ }
378
+
379
+ /* Descriptions and error messages below the fields. */
380
+ .yoast-metabox__description {
381
+ margin: 0.5em 0;
382
+ }
383
+
384
+ .wpseo_image_upload_button {
385
+ margin-left: 3px;
386
+ }
387
+
388
+ .good,
389
+ .warn,
390
+ .wrong {
391
+ font-weight: 600;
392
+ }
393
+
394
+ .good {
395
+ color: green;
396
+ }
397
+
398
+ .warn {
399
+ color: maroon;
400
+ }
401
+
402
+ .wrong {
403
+ color: #dc3232;
404
+ }
405
+
406
+ #current_seo_title span {
407
+ padding: 2px 5px;
408
+ background-color: lightyellow;
409
+ }
410
+
411
+ #focuskwresults ul {
412
+ margin: 0;
413
+ }
414
+
415
+ #focuskwresults p,
416
+ #focuskwresults li {
417
+ font-size: 13px;
418
+ }
419
+
420
+ #focuskwresults li {
421
+ margin: 0 0 0 20px;
422
+ list-style-type: disc;
423
+ }
424
+
425
+ .wpseo_hidden {
426
+ display: none;
427
+ }
428
+
429
+ .wpseo_msg {
430
+ margin: 5px 0 10px 0;
431
+ padding: 0 5px;
432
+ border: 1px solid #e6db55;
433
+ background-color: lightYellow;
434
+ }
435
+
436
+ ul.wpseo-metabox-tabs li.wpseo-tab-add-keyword {
437
+ border: 1px dashed #dfdfdf;
438
+ border-bottom: none;
439
+ }
440
+
441
+ .wpseo-tab-add-keyword .wpseo-add-keyword.button {
442
+ height: auto;
443
+ padding: 5px 12px 5px 10px;
444
+ vertical-align: top;
445
+ font-size: inherit;
446
+ line-height: inherit;
447
+ font-weight: bold;
448
+ box-shadow: none;
449
+ background: none;
450
+ text-decoration: none;
451
+ }
452
+
453
+ .wpseo-tab-add-keyword .wpseo-add-keyword.button:focus {
454
+ box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, 0.8);
455
+ }
456
+
457
+ .wpseo-tab-add-keyword .wpseo-add-keyword.button:active {
458
+ transform: none;
459
+ }
460
+
461
+ .wpseo-add-keyword-plus {
462
+ display: inline-block;
463
+ vertical-align: top;
464
+ margin: -1px 3px 0 0;
465
+ font-size: 20px;
466
+ }
467
+
468
+ #wpseo-add-keyword-popup-title {
469
+ margin: 1em 0;
470
+ font-size: 1.3em;
471
+ }
472
+
473
+ /**
474
+ * Edit Snippet Button focus style.
475
+ *
476
+ * This should be abstracted and applied to all buttons.
477
+ * Or, maybe, take advantage of the `.button` CSS class in WordPress.
478
+ */
479
+ .snippet-editor__button.snippet-editor__edit-button:focus {
480
+ border-color: #5b9dd9;
481
+ outline: none;
482
+ color: #23282d;
483
+ background-color: #fafafa;
484
+ box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
485
+ }
486
+
487
+ .wpseo-admin-page .subsubsub li {
488
+ display: inline;
489
+ max-width: none;
490
+ }
491
+
492
+ .yoast-seo-help-container {
493
+ float: left;
494
+ width: 100%;
495
+ max-width: none;
496
+ }
497
+
498
+ .yoast-seo-help-container .yoast-help-panel {
499
+ margin: 0.5em 0 !important;
500
+ }
501
+
502
+ .wpseo_content_wrapper p.search-box {
503
+ margin: 10px 0 5px 0;
504
+ }
505
+
506
+ .wpseo-metabox-tabs .active a {
507
+ color: #333;
508
+ }
509
+
510
+ #wpseotab .ui-widget-content .ui-state-hover {
511
+ border: 1px solid #dfdfdf;
512
+ color: #333;
513
+ background: #f1f1f1;
514
+ }
515
+
516
+ .yst-traffic-light {
517
+ width: 19px;
518
+ height: 30px;
519
+ margin: 0 0 0 5px;
520
+ }
521
+
522
+ .yst-traffic-light .traffic-light-color {
523
+ display: none;
524
+ }
525
+
526
+ .yst-traffic-light.init .traffic-light-init {
527
+ display: inline;
528
+ }
529
+
530
+ .yst-traffic-light.bad .traffic-light-red {
531
+ display: inline;
532
+ }
533
+
534
+ .yst-traffic-light.ok .traffic-light-orange {
535
+ display: inline;
536
+ }
537
+
538
+ .yst-traffic-light.good .traffic-light-green {
539
+ display: inline;
540
+ }
541
+
542
+ .yst-traffic-light.na .traffic-light-empty {
543
+ display: inline;
544
+ }
545
+
546
+ /**
547
+ * Content and SEO score in publish bar
548
+ */
549
+ .yoast-seo-score .yoast-logo.svg {
550
+ float: left;
551
+ width: 18px;
552
+ margin-right: 7px;
553
+ height: 18px;
554
+ background: var(--svg-icon-yoast) no-repeat;
555
+ background-size: 18px;
556
+ }
557
+
558
+ .yoast-seo-score .yoast-logo.svg.good {
559
+ background-image: var(--svg-icon-yoast-good);
560
+ }
561
+
562
+ .yoast-seo-score .yoast-logo.svg.ok {
563
+ background-image: var(--svg-icon-yoast-ok);
564
+ }
565
+
566
+ .yoast-seo-score .yoast-logo.svg.bad {
567
+ background-image: var(--svg-icon-yoast-bad);
568
+ }
569
+
570
+ .yoast-seo-score .yoast-logo.svg.na {
571
+ background-image: var(--svg-icon-yoast);
572
+ }
573
+
574
+ .yoast-seo-score .yoast-logo.svg.noindex {
575
+ background-image: var(--svg-icon-yoast);
576
+ }
577
+
578
+ .term-php .wpseo-taxonomy-metabox-postbox > h2 {
579
+ margin: 0;
580
+ padding: 8px 12px;
581
+ border-bottom: 1px solid #eee;
582
+ font-size: 14px;
583
+ line-height: 1.4;
584
+ }
585
+
586
+ #TB_window #TB_ajaxContent p {
587
+ padding: 5px 0 0 0;
588
+ margin: 5px 0 0 0;
589
+ }
590
+
591
+ #TB_window #TB_ajaxContent ul {
592
+ margin: 5px 0 10px 0;
593
+ }
594
+
595
+ #TB_window #TB_ajaxContent li {
596
+ list-style: none;
597
+ margin: 5px 0 0 0;
598
+ }
599
+
600
+ #TB_window #TB_ajaxContent li::before {
601
+ content: '+';
602
+ margin: 0 10px 0 0;
603
+ font-weight: bold;
604
+ }
605
+
606
+ .yoast-section__heading-icon-list {
607
+ background-image: var(--svg-icon-list);
608
+ }
609
+
610
+ .yoast-section__heading-icon-key {
611
+ background-image: var(--svg-icon-key);
612
+ }
613
+
614
+ .yoast-section__heading-icon-edit {
615
+ background-image: var(--svg-icon-edit);
616
+ }
617
+
618
+ .yoast-tooltip.yoast-tooltip-hidden::before,
619
+ .yoast-tooltip.yoast-tooltip-hidden::after {
620
+ display: none;
621
+ }
622
+
623
+ /* Workaround for VoiceOver bug see issue #5857 */
624
+ .screen-reader-text.wpseo-generic-tab-textual-score,
625
+ .screen-reader-text.wpseo-keyword-tab-textual-score {
626
+ display: block;
627
+ }
628
+
629
+ .yoast-notice-go-premium {
630
+ border-left-color: #a4286a;
631
+ background: #f1f1f1;
632
+ margin: 0;
633
+ }
634
+
635
+ .editor-styles-wrapper mark.annotation-text-yoast {
636
+ background-color: #e1bee7;
637
+ }
638
+
639
+ @media screen and (max-width: 782px) {
640
+ /* The Go Premium dashicon must stay unchanged in the responsive view. */
641
+ .wpseo-metabox-buy-premium .wpseo-buy-premium {
642
+ display: inline-block;
643
+ width: 20px;
644
+ height: 20px;
645
+ margin-right: 5px;
646
+ padding: 0;
647
+ }
648
+ .yoast-help-panel {
649
+ max-width: none !important;
650
+ }
651
+ #wpseo-crawl-issues-table-form .subsubsub {
652
+ float: none;
653
+ max-width: calc( 100vw - 20px);
654
+ }
655
+ #wpseo-crawl-issues-table-form .yoast-help-button {
656
+ margin-top: 3px;
657
+ }
658
+ /* Necessary to override a WP rule. */
659
+ .wpseotab select[multiple] {
660
+ height: auto !important;
661
+ }
662
+ }
663
+
664
+ @media screen and (max-width: 600px) {
665
+ .wpseotab.content {
666
+ padding: 16px 0;
667
+ }
668
+ }
669
+
670
+ .wpseo-score-icon-container {
671
+ height: 20px;
672
+ width: 20px;
673
+ margin-right: 8px;
674
+ display: flex;
675
+ justify-content: center;
676
+ align-items: center;
677
+ }
678
+
679
+ /*# sourceMappingURL=metabox.css.map */
css/src/notifications.css ADDED
@@ -0,0 +1,270 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import url(../src/icons.css);
2
+ @import "../../node_modules/yoast-components/css/accessibility.scss";
3
+ .yoast-notification {
4
+ padding: 0 12px;
5
+ border-left: 4px solid #fff;
6
+ background: #fff;
7
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
8
+ }
9
+
10
+ .yoast-container {
11
+ position: relative;
12
+ max-width: 1280px;
13
+ margin: 20px 0 1px;
14
+ padding: 20px 20px 0;
15
+ border: 1px solid #e5e5e5;
16
+ background-color: #fdfdfd;
17
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
18
+ }
19
+
20
+ .yoast-notifications > h2:first-child {
21
+ margin: 0;
22
+ padding: 9px 0 4px 0;
23
+ font-size: 23px;
24
+ font-weight: 400;
25
+ line-height: 29px;
26
+ }
27
+
28
+ .yoast-notifications .yoast-container h3 {
29
+ margin: -20px -20px 0;
30
+ padding: 1em;
31
+ border-bottom: 1px solid #ccc;
32
+ background-color: #fdfdfd;
33
+ font-size: 1.4em;
34
+ }
35
+
36
+ .yoast-container .container {
37
+ max-width: 980px;
38
+ }
39
+
40
+ .yoast-container .yoast-notification-holder {
41
+ display: flex;
42
+ position: relative;
43
+ }
44
+
45
+ .restore .dashicons,
46
+ .dismiss .dashicons {
47
+ font-size: 20px;
48
+ width: 20px;
49
+ height: 20px;
50
+ }
51
+
52
+ .yoast-bottom-spacing {
53
+ margin-bottom: 20px;
54
+ }
55
+
56
+ /* These selectors need a higher specificity than .wp-core-ui .button */
57
+ .yoast-notifications .button.restore,
58
+ .yoast-notifications .button.dismiss {
59
+ position: absolute;
60
+ right: 0;
61
+ width: 52px;
62
+ height: 100%;
63
+ line-height: inherit;
64
+ padding: 0;
65
+ outline: none;
66
+ cursor: pointer;
67
+ background: transparent;
68
+ border: none;
69
+ box-shadow: none;
70
+ border-radius: 0;
71
+ }
72
+
73
+ .yoast-notifications .button.restore:hover,
74
+ .yoast-notifications .button.dismiss:hover {
75
+ background: transparent;
76
+ }
77
+
78
+ .yoast-notifications .button.restore:focus,
79
+ .yoast-notifications .button.dismiss:focus {
80
+ background: transparent;
81
+ }
82
+
83
+ .yoast-notifications .button.restore:focus::before,
84
+ .yoast-notifications .button.dismiss:focus::before {
85
+ content: "";
86
+ display: block;
87
+ width: 32px;
88
+ height: 32px;
89
+ border-radius: 50%;
90
+ position: absolute;
91
+ top: 50%;
92
+ left: 50%;
93
+ transform: translate(-50%, -50%);
94
+ box-shadow: 0 0 0 1px #007cba;
95
+ /* Only visible in Windows High Contrast mode */
96
+ outline: 2px solid transparent;
97
+ }
98
+
99
+ .yoast-notifications .button.dismiss.yoast-container__configuration-wizard--dismiss::before {
100
+ top: 0;
101
+ transform: translate(-50%, 6px);
102
+ }
103
+
104
+ .yoast-container .separator {
105
+ margin-top: 1em;
106
+ margin-bottom: 1em;
107
+ border-top: 1px solid #ddd;
108
+ }
109
+
110
+ .yoast-container .dashicons-yes {
111
+ color: #77b227;
112
+ }
113
+
114
+ .yoast-container-disabled {
115
+ display: table-cell;
116
+ position: absolute;
117
+ top: 0;
118
+ right: 0;
119
+ bottom: 0;
120
+ left: 0;
121
+ border-radius: 4px;
122
+ background-color: rgba(232, 232, 232, 0.7);
123
+ }
124
+
125
+ .yoast-no-issues {
126
+ padding: 1em 1em 1em 16px;
127
+ color: #666;
128
+ }
129
+
130
+ .yoast-muted-title {
131
+ overflow: hidden;
132
+ font-weight: 600;
133
+ font-style: italic;
134
+ }
135
+
136
+ .yoast-muted-title:after {
137
+ content: "";
138
+ display: inline-block;
139
+ height: 0.5em;
140
+ vertical-align: bottom;
141
+ width: 100%;
142
+ margin-right: -100%;
143
+ margin-left: 10px;
144
+ border-top: 1px solid #ddd;
145
+ }
146
+
147
+ /* Shared style for the problems and notifications. */
148
+ .yoast-notifications-active .yoast-notification, .yoast-notifications-dismissed .yoast-notification {
149
+ padding-right: 52px;
150
+ flex: 1;
151
+ }
152
+
153
+ .yoast-notifications-active .yoast-notification-holder {
154
+ margin-bottom: 20px;
155
+ }
156
+
157
+ .yoast-notifications-dismissed.paper.tab-block {
158
+ margin: 20px 0 20px 0;
159
+ }
160
+
161
+ .yoast-notifications-dismissed.paper.tab-block .paper-container.toggleable-container {
162
+ padding: 0;
163
+ }
164
+
165
+ .yoast-notifications-dismissed.paper.tab-block .paper-container.toggleable-container .yoast-notification-holder:nth-child(odd) {
166
+ background-color: #f7f7f7;
167
+ }
168
+
169
+ .yoast-notifications-dismissed.paper.tab-block .paper-container.toggleable-container .yoast-notification-holder:nth-child(odd) .yoast-notification {
170
+ background-color: transparent;
171
+ }
172
+
173
+ .yoast-notifications-dismissed .yoast-svg-icon-eye {
174
+ background: transparent var(--svg-icon-eye) no-repeat 0 0;
175
+ background-size: 20px;
176
+ }
177
+
178
+ /* Style only for errors / problems. */
179
+ #yoast-errors-header .dashicons {
180
+ color: #dc3232;
181
+ }
182
+
183
+ #yoast-errors-active .yoast-notification {
184
+ border-left-color: #dc3232;
185
+ }
186
+
187
+ #yoast-errors-dismissed .yoast-notification {
188
+ border-left-color: #d93f69;
189
+ }
190
+
191
+ /* Style only for warnings / notifications. */
192
+ #yoast-warnings-header .dashicons {
193
+ color: #5d237a;
194
+ }
195
+
196
+ #yoast-warnings-active .yoast-notification {
197
+ border-left-color: #5d237a;
198
+ }
199
+
200
+ #yoast-warnings-dismissed .yoast-notification {
201
+ border-left-color: #0075b3;
202
+ }
203
+
204
+ .yoast-notifications .yoast-container__configuration-wizard {
205
+ display: flex;
206
+ align-items: center;
207
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
208
+ background-color: #fff;
209
+ min-height: 0;
210
+ padding-bottom: 20px;
211
+ margin-bottom: 15px;
212
+ }
213
+
214
+ @media screen and (max-width: 768px) {
215
+ .yoast-notifications .yoast-container__configuration-wizard img {
216
+ display: none;
217
+ }
218
+ }
219
+
220
+ .yoast-notifications .yoast-container__configuration-wizard--content {
221
+ flex: 1 1 auto;
222
+ margin: 12px;
223
+ padding: 0;
224
+ }
225
+
226
+ .yoast-notifications .yoast-container__configuration-wizard--content h3 {
227
+ border-bottom: 0;
228
+ font-size: 1.4em;
229
+ line-height: 1;
230
+ margin: 0 0 4px 0;
231
+ padding: 0;
232
+ background: transparent;
233
+ }
234
+
235
+ .yoast-notifications .yoast-container__configuration-wizard--content p {
236
+ margin: 1em 0 0;
237
+ }
238
+
239
+ .yoast-notifications .yoast-container__configuration-wizard--content p:last-child {
240
+ margin: 0;
241
+ }
242
+
243
+ @media screen and (max-width: 768px) {
244
+ .yoast-notifications .yoast-container__configuration-wizard--content {
245
+ display: block;
246
+ position: relative;
247
+ padding: 16px;
248
+ }
249
+ }
250
+
251
+ .yoast-notifications .yoast-container__configuration-wizard--dismiss {
252
+ text-align: center;
253
+ }
254
+
255
+ @media screen and (max-width: 768px) {
256
+ .yoast-notifications .yoast-container__configuration-wizard--dismiss {
257
+ width: 40px;
258
+ position: absolute;
259
+ top: 5px;
260
+ right: 5px;
261
+ margin: 0;
262
+ }
263
+ }
264
+
265
+ .yoast-notifications .yoast-container__configuration-wizard--dismiss .dashicons {
266
+ text-decoration: none;
267
+ margin-top: 12px;
268
+ }
269
+
270
+ /*# sourceMappingURL=notifications.css.map */
css/src/score_icon.css ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .wpseo-score-icon {
2
+ display: inline-block !important;
3
+ width: 12px !important;
4
+ height: 12px !important;
5
+ border-radius: 50% !important;
6
+ margin: 3px 10px 0 3px;
7
+ background: #888;
8
+ vertical-align: top;
9
+ }
10
+
11
+ .wpseo-score-icon.good {
12
+ background-color: #7ad03a;
13
+ }
14
+
15
+ .wpseo-score-icon.ok {
16
+ background-color: #ee7c1b;
17
+ }
18
+
19
+ .wpseo-score-icon.bad {
20
+ background-color: #dc3232;
21
+ }
22
+
23
+ .wpseo-score-icon.na {
24
+ background-color: #888;
25
+ }
26
+
27
+ .wpseo-score-icon.noindex {
28
+ background-color: #1e8cbe;
29
+ }
css/src/search-appearance.css ADDED
@@ -0,0 +1,310 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import "../../node_modules/draft-js-mention-plugin/lib/plugin.css";
2
+ /*rtl:begin:ignore*/
3
+ @import "../../node_modules/draft-js/dist/Draft.css";
4
+ /*rtl:end:ignore*/
5
+
6
+ .draftJsMentionPlugin__mention__29BEd, .draftJsMentionPlugin__mention__29BEd:visited {
7
+ color: #575f67;
8
+ cursor: pointer;
9
+ display: inline-block;
10
+ background: #e6f3ff;
11
+ padding-left: 2px;
12
+ padding-right: 2px;
13
+ border-radius: 2px;
14
+ text-decoration: none;
15
+ }
16
+
17
+ .draftJsMentionPlugin__mention__29BEd:hover, .draftJsMentionPlugin__mention__29BEd:focus {
18
+ color: #677584;
19
+ background: #edf5fd;
20
+ outline: 0;
21
+ /* reset for :focus */
22
+ }
23
+
24
+ .draftJsMentionPlugin__mention__29BEd:active {
25
+ color: #222;
26
+ background: #455261;
27
+ }
28
+
29
+ .draftJsMentionPlugin__mentionSuggestionsEntry__3mSwm {
30
+ padding: 7px 10px 3px 10px;
31
+ transition: background-color 0.4s cubic-bezier(0.27, 1.27, 0.48, 0.56);
32
+ }
33
+
34
+ .draftJsMentionPlugin__mentionSuggestionsEntry__3mSwm:active {
35
+ background-color: #cce7ff;
36
+ }
37
+
38
+ .draftJsMentionPlugin__mentionSuggestionsEntryFocused__3LcTd {
39
+ background-color: #e6f3ff;
40
+ }
41
+
42
+ .draftJsMentionPlugin__mentionSuggestionsEntryText__3Jobq {
43
+ display: inline-block;
44
+ margin-left: 8px;
45
+ white-space: nowrap;
46
+ overflow: hidden;
47
+ text-overflow: ellipsis;
48
+ max-width: 368px;
49
+ font-size: 0.9em;
50
+ margin-bottom: 0.2em;
51
+ }
52
+
53
+ .draftJsMentionPlugin__mentionSuggestionsEntryAvatar__1xgA9 {
54
+ display: inline-block;
55
+ width: 24px;
56
+ height: 24px;
57
+ border-radius: 12px;
58
+ }
59
+
60
+ .draftJsMentionPlugin__mentionSuggestions__2DWjA {
61
+ border: 1px solid #eee;
62
+ margin-top: 0.4em;
63
+ position: absolute;
64
+ min-width: 220px;
65
+ max-width: 440px;
66
+ background: #fff;
67
+ border-radius: 2px;
68
+ box-shadow: 0px 4px 30px 0px gainsboro;
69
+ cursor: pointer;
70
+ padding-top: 8px;
71
+ padding-bottom: 8px;
72
+ z-index: 2;
73
+ display: -webkit-box;
74
+ display: flex;
75
+ -webkit-box-orient: vertical;
76
+ -webkit-box-direction: normal;
77
+ flex-direction: column;
78
+ box-sizing: border-box;
79
+ -webkit-transform: scale(0);
80
+ transform: scale(0);
81
+ }
82
+
83
+ /*rtl:begin:ignore*/
84
+ /**
85
+ * Draft v0.10.5
86
+ *
87
+ * Copyright (c) 2013-present, Facebook, Inc.
88
+ * All rights reserved.
89
+ *
90
+ * This source code is licensed under the BSD-style license found in the
91
+ * LICENSE file in the root directory of this source tree. An additional grant
92
+ * of patent rights can be found in the PATENTS file in the same directory.
93
+ */
94
+ .DraftEditor-editorContainer, .DraftEditor-root, .public-DraftEditor-content {
95
+ height: inherit;
96
+ text-align: initial;
97
+ }
98
+
99
+ .public-DraftEditor-content[contenteditable=true] {
100
+ -webkit-user-modify: read-write-plaintext-only;
101
+ }
102
+
103
+ .DraftEditor-root {
104
+ position: relative;
105
+ }
106
+
107
+ .DraftEditor-editorContainer {
108
+ background-color: rgba(255, 255, 255, 0);
109
+ border-left: .1px solid transparent;
110
+ position: relative;
111
+ z-index: 1;
112
+ }
113
+
114
+ .public-DraftEditor-block {
115
+ position: relative;
116
+ }
117
+
118
+ .DraftEditor-alignLeft .public-DraftStyleDefault-block {
119
+ text-align: left;
120
+ }
121
+
122
+ .DraftEditor-alignLeft .public-DraftEditorPlaceholder-root {
123
+ left: 0;
124
+ text-align: left;
125
+ }
126
+
127
+ .DraftEditor-alignCenter .public-DraftStyleDefault-block {
128
+ text-align: center;
129
+ }
130
+
131
+ .DraftEditor-alignCenter .public-DraftEditorPlaceholder-root {
132
+ margin: 0 auto;
133
+ text-align: center;
134
+ width: 100%;
135
+ }
136
+
137
+ .DraftEditor-alignRight .public-DraftStyleDefault-block {
138
+ text-align: right;
139
+ }
140
+
141
+ .DraftEditor-alignRight .public-DraftEditorPlaceholder-root {
142
+ right: 0;
143
+ text-align: right;
144
+ }
145
+
146
+ .public-DraftEditorPlaceholder-root {
147
+ color: #9197a3;
148
+ position: absolute;
149
+ z-index: 1;
150
+ }
151
+
152
+ .public-DraftEditorPlaceholder-hasFocus {
153
+ color: #bdc1c9;
154
+ }
155
+
156
+ .DraftEditorPlaceholder-hidden {
157
+ display: none;
158
+ }
159
+
160
+ .public-DraftStyleDefault-block {
161
+ position: relative;
162
+ white-space: pre-wrap;
163
+ }
164
+
165
+ .public-DraftStyleDefault-ltr {
166
+ direction: ltr;
167
+ text-align: left;
168
+ }
169
+
170
+ .public-DraftStyleDefault-rtl {
171
+ direction: rtl;
172
+ text-align: right;
173
+ }
174
+
175
+ .public-DraftStyleDefault-listLTR {
176
+ direction: ltr;
177
+ }
178
+
179
+ .public-DraftStyleDefault-listRTL {
180
+ direction: rtl;
181
+ }
182
+
183
+ .public-DraftStyleDefault-ol, .public-DraftStyleDefault-ul {
184
+ margin: 16px 0;
185
+ padding: 0;
186
+ }
187
+
188
+ .public-DraftStyleDefault-depth0.public-DraftStyleDefault-listLTR {
189
+ margin-left: 1.5em;
190
+ }
191
+
192
+ .public-DraftStyleDefault-depth0.public-DraftStyleDefault-listRTL {
193
+ margin-right: 1.5em;
194
+ }
195
+
196
+ .public-DraftStyleDefault-depth1.public-DraftStyleDefault-listLTR {
197
+ margin-left: 3em;
198
+ }
199
+
200
+ .public-DraftStyleDefault-depth1.public-DraftStyleDefault-listRTL {
201
+ margin-right: 3em;
202
+ }
203
+
204
+ .public-DraftStyleDefault-depth2.public-DraftStyleDefault-listLTR {
205
+ margin-left: 4.5em;
206
+ }
207
+
208
+ .public-DraftStyleDefault-depth2.public-DraftStyleDefault-listRTL {
209
+ margin-right: 4.5em;
210
+ }
211
+
212
+ .public-DraftStyleDefault-depth3.public-DraftStyleDefault-listLTR {
213
+ margin-left: 6em;
214
+ }
215
+
216
+ .public-DraftStyleDefault-depth3.public-DraftStyleDefault-listRTL {
217
+ margin-right: 6em;
218
+ }
219
+
220
+ .public-DraftStyleDefault-depth4.public-DraftStyleDefault-listLTR {
221
+ margin-left: 7.5em;
222
+ }
223
+
224
+ .public-DraftStyleDefault-depth4.public-DraftStyleDefault-listRTL {
225
+ margin-right: 7.5em;
226
+ }
227
+
228
+ .public-DraftStyleDefault-unorderedListItem {
229
+ list-style-type: square;
230
+ position: relative;
231
+ }
232
+
233
+ .public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth0 {
234
+ list-style-type: disc;
235
+ }
236
+
237
+ .public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth1 {
238
+ list-style-type: circle;
239
+ }
240
+
241
+ .public-DraftStyleDefault-orderedListItem {
242
+ list-style-type: none;
243
+ position: relative;
244
+ }
245
+
246
+ .public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listLTR:before {
247
+ left: -36px;
248
+ position: absolute;
249
+ text-align: right;
250
+ width: 30px;
251
+ }
252
+
253
+ .public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listRTL:before {
254
+ position: absolute;
255
+ right: -36px;
256
+ text-align: left;
257
+ width: 30px;
258
+ }
259
+
260
+ .public-DraftStyleDefault-orderedListItem:before {
261
+ content: counter(ol0) ". ";
262
+ counter-increment: ol0;
263
+ }
264
+
265
+ .public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth1:before {
266
+ content: counter(ol1) ". ";
267
+ counter-increment: ol1;
268
+ }
269
+
270
+ .public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth2:before {
271
+ content: counter(ol2) ". ";
272
+ counter-increment: ol2;
273
+ }
274
+
275
+ .public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth3:before {
276
+ content: counter(ol3) ". ";
277
+ counter-increment: ol3;
278
+ }
279
+
280
+ .public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth4:before {
281
+ content: counter(ol4) ". ";
282
+ counter-increment: ol4;
283
+ }
284
+
285
+ .public-DraftStyleDefault-depth0.public-DraftStyleDefault-reset {
286
+ counter-reset: ol0;
287
+ }
288
+
289
+ .public-DraftStyleDefault-depth1.public-DraftStyleDefault-reset {
290
+ counter-reset: ol1;
291
+ }
292
+
293
+ .public-DraftStyleDefault-depth2.public-DraftStyleDefault-reset {
294
+ counter-reset: ol2;
295
+ }
296
+
297
+ .public-DraftStyleDefault-depth3.public-DraftStyleDefault-reset {
298
+ counter-reset: ol3;
299
+ }
300
+
301
+ .public-DraftStyleDefault-depth4.public-DraftStyleDefault-reset {
302
+ counter-reset: ol4;
303
+ }
304
+
305
+ /*rtl:end:ignore*/
306
+ #person-selector {
307
+ width: 100%;
308
+ }
309
+
310
+ /*# sourceMappingURL=search-appearance.css.map */
css/src/structured-data-blocks.css ADDED
@@ -0,0 +1,142 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .schema-how-to-step,
2
+ .schema-faq-section {
3
+ position: relative;
4
+ padding: 8px 4px 8px 32px;
5
+ margin: 4px 0;
6
+ border: 1px solid rgba(145, 151, 162, 0.25);
7
+ list-style-type: none;
8
+ }
9
+
10
+ .schema-how-to-buttons,
11
+ .schema-faq-buttons {
12
+ display: flex;
13
+ justify-content: center;
14
+ }
15
+
16
+ .schema-how-to-buttons button.components-icon-button:not(:disabled):not([aria-disabled=true]):not(.is-default):hover,
17
+ .schema-faq-buttons button.components-icon-button:not(:disabled):not([aria-disabled=true]):not(.is-default):hover {
18
+ box-shadow: none;
19
+ color: #007cba;
20
+ }
21
+
22
+ .schema-how-to-step-mover,
23
+ .schema-faq-section-mover {
24
+ display: inline-block;
25
+ }
26
+
27
+ .schema-how-to-step-mover .editor-block-mover__control,
28
+ .schema-faq-section-mover .editor-block-mover__control {
29
+ display: inline-flex;
30
+ width: 36px;
31
+ height: 36px;
32
+ }
33
+
34
+ .schema-how-to-step-name,
35
+ .schema-faq-question {
36
+ font-weight: 600;
37
+ }
38
+
39
+ .schema-how-to .schema-how-to-steps,
40
+ .schema-how-to .schema-how-to-description,
41
+ .schema-how-to .schema-how-to-step-name,
42
+ .schema-how-to .schema-how-to-step-text,
43
+ .schema-faq .schema-faq-question,
44
+ .schema-faq .schema-faq-answer {
45
+ margin: 0;
46
+ line-height: inherit;
47
+ }
48
+
49
+ .schema-how-to .schema-how-to-steps {
50
+ padding-top: 0;
51
+ }
52
+
53
+ .schema-how-to-step-button-container,
54
+ .schema-faq-section-button-container {
55
+ display: inline-flex;
56
+ text-align: right;
57
+ }
58
+
59
+ .schema-how-to-step-button-container button.components-icon-button:not(:disabled):not([aria-disabled=true]):not(.is-default):hover,
60
+ .schema-faq-section-button-container button.components-icon-button:not(:disabled):not([aria-disabled=true]):not(.is-default):hover {
61
+ box-shadow: none;
62
+ color: #007cba;
63
+ }
64
+
65
+ .schema-how-to-step-controls-container,
66
+ .schema-faq-section-controls-container {
67
+ text-align: right;
68
+ margin-left: -28px;
69
+ }
70
+
71
+ .schema-how-to-step-controls-container .dashicons-arrow-up-alt2,
72
+ .schema-faq-section-controls-container .dashicons-arrow-up-alt2 {
73
+ position: relative;
74
+ top: -1px;
75
+ }
76
+
77
+ .schema-how-to-duration-button .dashicon,
78
+ .how-to-step-add-media .dashicon,
79
+ .schema-how-to-add-step .dashicon,
80
+ .faq-section-add-media .dashicon,
81
+ .schema-faq-add-question .dashicon {
82
+ margin-right: 4px;
83
+ }
84
+
85
+ .schema-how-to {
86
+ padding-top: 4px;
87
+ }
88
+
89
+ .schema-how-to-step-number {
90
+ position: absolute;
91
+ left: 4px;
92
+ width: 24px;
93
+ text-align: right;
94
+ }
95
+
96
+ .schema-how-to-duration-flex-container {
97
+ display: flex;
98
+ align-items: center;
99
+ }
100
+
101
+ .schema-how-to-duration-time-input {
102
+ display: inline-flex;
103
+ align-items: center;
104
+ flex-wrap: nowrap;
105
+ }
106
+
107
+ legend.schema-how-to-duration-legend {
108
+ margin-right: 4px;
109
+ }
110
+
111
+ #schema-how-to-duration-days {
112
+ margin-right: 8px;
113
+ }
114
+
115
+ .schema-how-to-duration .schema-how-to-duration-input[type="number"] {
116
+ width: 40px;
117
+ margin: 0 2px;
118
+ padding: 6px 4px;
119
+ text-align: center;
120
+ -moz-appearance: textfield;
121
+ }
122
+
123
+ .schema-how-to-duration .schema-how-to-duration-input[type="number"]::-webkit-outer-spin-button, .schema-how-to-duration .schema-how-to-duration-input[type="number"]::-webkit-inner-spin-button {
124
+ -webkit-appearance: none;
125
+ margin: 0;
126
+ }
127
+
128
+ .schema-how-to-duration-button.components-icon-button {
129
+ margin-left: -8px;
130
+ vertical-align: top;
131
+ }
132
+
133
+ .schema-how-to-duration-button.components-icon-button:not(:disabled):not([aria-disabled=true]):not(.is-default):hover {
134
+ box-shadow: none;
135
+ color: #007cba;
136
+ }
137
+
138
+ .schema-how-to-description {
139
+ margin: 8px 0;
140
+ }
141
+
142
+ /*# sourceMappingURL=structured-data-blocks.css.map */
css/src/toggle-switch.css ADDED
@@ -0,0 +1,380 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @charset "UTF-8";
2
+ /*
3
+ * Styles from the toggle switch library.
4
+ */
5
+ /*
6
+ * CSS TOGGLE SWITCH
7
+ *
8
+ * Ionuț Colceriu - ghinda.net
9
+ * https://github.com/ghinda/css-toggle-switch
10
+ *
11
+ */
12
+ /* Hide by default. */
13
+ .switch-toggle a,
14
+ .switch-light span span {
15
+ display: none;
16
+ }
17
+
18
+ /* Only target browsers with support for media queries. */
19
+ @media only screen {
20
+ .switch-light,
21
+ .switch-toggle {
22
+ position: relative;
23
+ display: block;
24
+ padding: 0 !important;
25
+ }
26
+ .switch-light::after,
27
+ .switch-toggle::after {
28
+ clear: both;
29
+ content: "";
30
+ display: table;
31
+ }
32
+ .switch-light *,
33
+ .switch-light *:before,
34
+ .switch-light *:after,
35
+ .switch-toggle *,
36
+ .switch-toggle *:before,
37
+ .switch-toggle *:after {
38
+ box-sizing: border-box;
39
+ }
40
+ .switch-light a,
41
+ .switch-toggle a {
42
+ display: block;
43
+ -webkit-transition: all 0.2s ease-out;
44
+ -moz-transition: all 0.2s ease-out;
45
+ transition: all 0.2s ease-out;
46
+ }
47
+ .switch-light label,
48
+ .switch-light > span,
49
+ .switch-toggle label,
50
+ .switch-toggle > span,
51
+ .switch-light-visual-label {
52
+ line-height: 2;
53
+ vertical-align: middle;
54
+ }
55
+ .switch-light input {
56
+ position: absolute;
57
+ opacity: 0;
58
+ z-index: 3;
59
+ /* Override core style. */
60
+ }
61
+ .switch-light input[type=radio].disabled, .switch-light input[type=radio].disabled:checked:before, .switch-light input[type=radio]:disabled, .switch-light input[type=radio]:disabled:checked:before {
62
+ opacity: 0;
63
+ }
64
+ .switch-light input:checked ~ span a {
65
+ right: 0%;
66
+ }
67
+ /* Inherit from label. */
68
+ .switch-light strong {
69
+ font-weight: inherit;
70
+ }
71
+ .switch-light > span {
72
+ position: relative;
73
+ min-height: 2em;
74
+ padding: 0;
75
+ text-align: left;
76
+ }
77
+ .switch-light span span {
78
+ position: relative;
79
+ z-index: 2;
80
+ display: block;
81
+ float: left;
82
+ width: 50%;
83
+ text-align: center;
84
+ -webkit-user-select: none;
85
+ -moz-user-select: none;
86
+ user-select: none;
87
+ }
88
+ .switch-light a {
89
+ position: absolute;
90
+ right: 50%;
91
+ top: 0;
92
+ z-index: 1;
93
+ display: block;
94
+ width: 50%;
95
+ height: 100%;
96
+ padding: 0;
97
+ }
98
+ .switch-toggle input {
99
+ position: absolute;
100
+ left: 0;
101
+ opacity: 0;
102
+ /* Override core style. */
103
+ }
104
+ .switch-toggle input[type=radio].disabled, .switch-toggle input[type=radio].disabled:checked:before, .switch-toggle input[type=radio]:disabled, .switch-toggle input[type=radio]:disabled:checked:before {
105
+ opacity: 0;
106
+ }
107
+ .switch-toggle input + label {
108
+ float: left;
109
+ padding: 0 0.5em;
110
+ margin: 0;
111
+ text-align: center;
112
+ }
113
+ .switch-toggle input:checked + label {
114
+ position: relative;
115
+ z-index: 2;
116
+ }
117
+ .switch-toggle a {
118
+ position: absolute;
119
+ top: 0;
120
+ left: 0;
121
+ padding: 0;
122
+ z-index: 1;
123
+ width: 10px;
124
+ height: 100%;
125
+ }
126
+ .switch-toggle label:nth-child(2):nth-last-child(4),
127
+ .switch-toggle label:nth-child(2):nth-last-child(4) ~ label,
128
+ .switch-toggle label:nth-child(2):nth-last-child(4) ~ a {
129
+ width: 50%;
130
+ }
131
+ .switch-toggle label:nth-child(2):nth-last-child(4) ~ input:checked:nth-child(3) + label ~ a {
132
+ left: 50%;
133
+ }
134
+ .switch-toggle label:nth-child(2):nth-last-child(6),
135
+ .switch-toggle label:nth-child(2):nth-last-child(6) ~ label,
136
+ .switch-toggle label:nth-child(2):nth-last-child(6) ~ a {
137
+ width: 33.33%;
138
+ }
139
+ .switch-toggle label:nth-child(2):nth-last-child(6) ~ input:checked:nth-child(3) + label ~ a {
140
+ left: 33.33%;
141
+ }
142
+ .switch-toggle label:nth-child(2):nth-last-child(6) ~ input:checked:nth-child(5) + label ~ a {
143
+ left: 66.66%;
144
+ }
145
+ .switch-toggle label:nth-child(2):nth-last-child(8),
146
+ .switch-toggle label:nth-child(2):nth-last-child(8) ~ label,
147
+ .switch-toggle label:nth-child(2):nth-last-child(8) ~ a {
148
+ width: 25%;
149
+ }
150
+ .switch-toggle label:nth-child(2):nth-last-child(8) ~ input:checked:nth-child(3) + label ~ a {
151
+ left: 25%;
152
+ }
153
+ .switch-toggle label:nth-child(2):nth-last-child(8) ~ input:checked:nth-child(5) + label ~ a {
154
+ left: 50%;
155
+ }
156
+ .switch-toggle label:nth-child(2):nth-last-child(8) ~ input:checked:nth-child(7) + label ~ a {
157
+ left: 75%;
158
+ }
159
+ .switch-toggle label:nth-child(2):nth-last-child(10),
160
+ .switch-toggle label:nth-child(2):nth-last-child(10) ~ label,
161
+ .switch-toggle label:nth-child(2):nth-last-child(10) ~ a {
162
+ width: 20%;
163
+ }
164
+ .switch-toggle label:nth-child(2):nth-last-child(10) ~ input:checked:nth-child(3) + label ~ a {
165
+ left: 20%;
166
+ }
167
+ .switch-toggle label:nth-child(2):nth-last-child(10) ~ input:checked:nth-child(5) + label ~ a {
168
+ left: 40%;
169
+ }
170
+ .switch-toggle label:nth-child(2):nth-last-child(10) ~ input:checked:nth-child(7) + label ~ a {
171
+ left: 60%;
172
+ }
173
+ .switch-toggle label:nth-child(2):nth-last-child(10) ~ input:checked:nth-child(9) + label ~ a {
174
+ left: 80%;
175
+ }
176
+ .switch-toggle label:nth-child(2):nth-last-child(12),
177
+ .switch-toggle label:nth-child(2):nth-last-child(12) ~ label,
178
+ .switch-toggle label:nth-child(2):nth-last-child(12) ~ a {
179
+ width: 16.6%;
180
+ }
181
+ .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(3) + label ~ a {
182
+ left: 16.6%;
183
+ }
184
+ .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(5) + label ~ a {
185
+ left: 33.2%;
186
+ }
187
+ .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(7) + label ~ a {
188
+ left: 49.8%;
189
+ }
190
+ .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(9) + label ~ a {
191
+ left: 66.4%;
192
+ }
193
+ .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(11) + label ~ a {
194
+ left: 83%;
195
+ }
196
+ .switch-candy a {
197
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.45);
198
+ }
199
+ }
200
+
201
+ /*
202
+ * Bugfix for older Webkit, including mobile Webkit. Adapted from
203
+ * http://css-tricks.com/webkit-sibling-bug/
204
+ */
205
+ @media only screen and (-webkit-max-device-pixel-ratio: 2) and (max-device-width: 80em) {
206
+ .switch-light,
207
+ .switch-toggle {
208
+ -webkit-animation: webkitSiblingBugfix infinite 1s;
209
+ }
210
+ }
211
+
212
+ @-webkit-keyframes webkitSiblingBugfix {
213
+ from {
214
+ -webkit-transform: translate3d(0, 0, 0);
215
+ }
216
+ to {
217
+ -webkit-transform: translate3d(0, 0, 0);
218
+ }
219
+ }
220
+
221
+ /*
222
+ * Custom styles.
223
+ */
224
+ .fieldset-switch-toggle label {
225
+ float: none;
226
+ }
227
+
228
+ @media only screen {
229
+ .fieldset-switch-toggle legend {
230
+ float: left;
231
+ box-sizing: border-box;
232
+ min-width: 200px;
233
+ margin: 8px 0;
234
+ padding-right: 16px;
235
+ line-height: 2;
236
+ vertical-align: middle;
237
+ }
238
+ .fieldset-switch-toggle .disabled-note {
239
+ clear: both;
240
+ }
241
+ .switch-container__has-help legend,
242
+ .switch-container__has-help .switch-light-visual-label {
243
+ float: left;
244
+ min-width: 0;
245
+ padding-right: 0;
246
+ }
247
+ .switch-container__has-help .yoast_help.yoast-help-button {
248
+ margin: 8px 0 0 4px;
249
+ }
250
+ .switch-toggle.switch-yoast-seo,
251
+ .switch-light.switch-yoast-seo > span {
252
+ width: 250px;
253
+ border: 1px solid #ccc;
254
+ border-radius: 0.5em;
255
+ background-color: #dcdcdc;
256
+ box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15);
257
+ }
258
+ .switch-toggle.switch-yoast-seo,
259
+ .switch-light.switch-yoast-seo {
260
+ clear: both;
261
+ float: left;
262
+ }
263
+ .switch-light.switch-yoast-seo > span {
264
+ /* To contain floats instead of the original overflow: hidden;. */
265
+ display: inline-block;
266
+ /* To make the focus style fully visible. */
267
+ overflow: visible;
268
+ }
269
+ .switch-toggle.switch-yoast-seo a,
270
+ .switch-light.switch-yoast-seo a {
271
+ border: 1px solid #b5b5b5;
272
+ border-radius: 0.5em;
273
+ background: #a4286a;
274
+ }
275
+ .switch-toggle.switch-yoast-seo input.disabled + a,
276
+ .switch-toggle.switch-yoast-seo input.disabled ~ a,
277
+ .switch-toggle.switch-yoast-seo input:disabled + a,
278
+ .switch-toggle.switch-yoast-seo input:disabled ~ a {
279
+ background: #9b9b9b;
280
+ border: 0;
281
+ }
282
+ .switch-toggle.switch-yoast-seo input:focus ~ span a,
283
+ .switch-light.switch-yoast-seo input:focus ~ span a,
284
+ .switch-toggle.switch-yoast-seo input:focus + label,
285
+ .switch-light.switch-yoast-seo input:focus + label {
286
+ /* Reset focus style. */
287
+ outline: none;
288
+ }
289
+ .switch-toggle.switch-yoast-seo input:focus ~ a,
290
+ .switch-light.switch-yoast-seo input:focus ~ span a {
291
+ border-color: #5b9dd9 !important;
292
+ box-shadow: 0 0 2px rgba(0, 115, 170, 0.8) !important;
293
+ }
294
+ .switch-toggle.switch-yoast-seo input:checked ~ span a,
295
+ .switch-light.switch-yoast-seo input:checked ~ span a {
296
+ border: 1px solid #b5b5b5;
297
+ background: #a4286a;
298
+ }
299
+ .switch-light.switch-yoast-seo span span,
300
+ .switch-light.switch-yoast-seo input:checked ~ span span:first-child,
301
+ .switch-toggle.switch-yoast-seo label {
302
+ color: #333;
303
+ text-shadow: none;
304
+ font-weight: inherit;
305
+ }
306
+ .switch-candy.switch-yoast-seo input ~ span span:first-child,
307
+ .switch-candy.switch-yoast-seo input:checked ~ span span:nth-child(2),
308
+ .switch-candy.switch-yoast-seo input:checked + label {
309
+ color: #fff;
310
+ text-shadow: none;
311
+ }
312
+ .switch-candy.switch-yoast-seo input + label::after {
313
+ content: "";
314
+ display: block;
315
+ width: 100%;
316
+ height: 100%;
317
+ position: absolute;
318
+ top: 0;
319
+ left: 0;
320
+ z-index: 3;
321
+ }
322
+ .switch-candy.switch-yoast-seo input:checked + label::after {
323
+ content: none;
324
+ }
325
+ .switch-light.switch-yoast-seo-reverse input:checked ~ span a {
326
+ left: 0;
327
+ }
328
+ .switch-light.switch-yoast-seo-reverse a {
329
+ left: 50%;
330
+ }
331
+ .switch-light.switch-yoast-seo-reverse span span {
332
+ float: right;
333
+ }
334
+ .switch-toggle.switch-yoast-seo label,
335
+ label.switch-light.switch-yoast-seo {
336
+ margin-left: 0;
337
+ /*
338
+ * To help old iOS: ensure labels have cursor pointer instead of
339
+ * using the empty onclick hack.
340
+ */
341
+ cursor: pointer;
342
+ }
343
+ .switch-toggle.switch-yoast-seo input.disabled + label,
344
+ .switch-toggle.switch-yoast-seo input:disabled + label {
345
+ cursor: not-allowed;
346
+ }
347
+ .switch-yoast-seo .switch-yoast-seo-jaws-a11y {
348
+ /* JAWS 17.0 needs this hack. */
349
+ display: block;
350
+ overflow: hidden;
351
+ height: 1px;
352
+ margin-bottom: -1px;
353
+ }
354
+ .switch-toggle.switch-yoast-seo label code,
355
+ .switch-light.switch-yoast-seo label code {
356
+ background-color: inherit;
357
+ vertical-align: top;
358
+ }
359
+ .switch-light-visual-label {
360
+ display: block;
361
+ margin: 8px 0;
362
+ font-weight: 400;
363
+ line-height: 2;
364
+ }
365
+ .switch-light-visual-label__strong {
366
+ font-weight: 600;
367
+ }
368
+ .switch-container {
369
+ clear: both;
370
+ margin: 0 0 0.8em 0;
371
+ }
372
+ .switch-container + .switch-container {
373
+ margin-top: 8px;
374
+ }
375
+ .switch-container + p {
376
+ margin: 0 0 16px 0;
377
+ }
378
+ }
379
+
380
+ /*# sourceMappingURL=toggle-switch.css.map */
css/src/wpseo-dismissible.css ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .yoast-notice-dismiss:before {
2
+ display: block !important;
3
+ width: 20px;
4
+ height: 20px;
5
+ color: #b4b9be;
6
+ background: none;
7
+ font: normal 16px/1 "dashicons";
8
+ text-align: center;
9
+ content: "\f153";
10
+ -webkit-font-smoothing: antialiased !important;
11
+ speak: none;
12
+ }
13
+
14
+ .yoast-notice-dismiss {
15
+ position: absolute;
16
+ top: 0;
17
+ right: 1px;
18
+ margin: 0;
19
+ padding: 9px;
20
+ border: none;
21
+ color: #b4b9be;
22
+ background: none;
23
+ cursor: pointer;
24
+ }
25
+
26
+ .yoast-notice-dismiss:before {
27
+ position: relative;
28
+ top: 0;
29
+ left: 0;
30
+ line-height: 20px;
31
+ }
32
+
33
+ .yoast-notice-dismiss:hover:before,
34
+ .yoast-notice-dismiss:active:before,
35
+ .yoast-notice-dismiss:focus:before {
36
+ color: #c00;
37
+ }
38
+
39
+ .yoast-notice-dismiss:focus {
40
+ outline: none;
41
+ color: #c00;
42
+ box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, 0.8);
43
+ }
44
+
45
+ .yoast-notice.is-dismissible {
46
+ position: relative;
47
+ }
48
+
49
+ .yoast-notice-dismiss {
50
+ text-decoration: none;
51
+ }
52
+
53
+ /*# sourceMappingURL=wpseo-dismissible.css.map */
css/src/yoast-components.css ADDED
@@ -0,0 +1,618 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* This file is meant to be used exclusively for the Configuration Wizard. */
2
+ /* WordPress-specific styling to be used only for single-page apps like the Onboarding Wizard. */
3
+ .screen-reader-text {
4
+ position: absolute !important;
5
+ clip: rect(1px, 1px, 1px, 1px);
6
+ clip-path: inset(50%);
7
+ width: 1px;
8
+ height: 1px;
9
+ border: 0;
10
+ padding: 0;
11
+ overflow: hidden;
12
+ word-wrap: normal !important;
13
+ }
14
+
15
+ body {
16
+ background: #f1f1f1;
17
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
18
+ line-height: 1.375;
19
+ /* 22px based on default browser font size 16px. */
20
+ }
21
+
22
+ a {
23
+ color: #0073aa;
24
+ outline: 0;
25
+ -webkit-transition-property: border, background, color;
26
+ transition-property: border, background, color;
27
+ -webkit-transition-duration: .05s;
28
+ transition-duration: .05s;
29
+ -webkit-transition-timing-function: ease-in-out;
30
+ transition-timing-function: ease-in-out;
31
+ }
32
+
33
+ a:hover,
34
+ a:active {
35
+ color: #00a0d2;
36
+ }
37
+
38
+ a:focus {
39
+ color: #124964;
40
+ -webkit-box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, 0.8);
41
+ box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, 0.8);
42
+ }
43
+
44
+ body {
45
+ margin: 0;
46
+ padding: 0;
47
+ }
48
+
49
+ .yoast-wizard-body {
50
+ box-sizing: border-box;
51
+ width: 80%;
52
+ max-width: 60em;
53
+ margin: 1rem auto 4rem;
54
+ }
55
+
56
+ @media screen and (max-width: 768px) {
57
+ .yoast-wizard-body {
58
+ width: auto;
59
+ margin: 0;
60
+ }
61
+ }
62
+
63
+ .yoast-wizard__logo {
64
+ margin: 0 auto;
65
+ display: block;
66
+ }
67
+
68
+ .yoast-wizard {
69
+ text-align: left;
70
+ min-height: 20px;
71
+ background: #fff;
72
+ padding: 2em;
73
+ box-sizing: border-box;
74
+ width: 100%;
75
+ }
76
+
77
+ @media screen and (max-width: 768px) {
78
+ .yoast-wizard {
79
+ padding: 1em 1em 2em;
80
+ }
81
+ }
82
+
83
+ .yoast-wizard--header {
84
+ text-align: center;
85
+ }
86
+
87
+ .yoast-wizard--header--page-title {
88
+ color: #a4286a;
89
+ margin: 0 0 -16px;
90
+ font-size: 1.25em;
91
+ letter-spacing: 0.03em;
92
+ line-height: 2.5;
93
+ font-weight: normal;
94
+ padding: 0 8px;
95
+ }
96
+
97
+ @media screen and (max-width: 768px) {
98
+ .yoast-wizard--header--page-title {
99
+ font-size: 1.5em;
100
+ line-height: 1.25;
101
+ }
102
+ }
103
+
104
+ .yoast-wizard--navigation {
105
+ display: flex;
106
+ justify-content: space-between;
107
+ }
108
+
109
+ .yoast-wizard--button {
110
+ margin: 1em -8px 0;
111
+ padding: 8px;
112
+ background: none;
113
+ color: #0073aa;
114
+ border: none;
115
+ font: inherit;
116
+ cursor: pointer;
117
+ }
118
+
119
+ .yoast-wizard--button:after {
120
+ content: "";
121
+ display: block;
122
+ height: 0;
123
+ border-bottom: 1px solid #0073aa;
124
+ }
125
+
126
+ .yoast-wizard--button:focus {
127
+ outline: 1px solid #5b9dd9;
128
+ box-shadow: 0 0 2px 1px rgba(30, 140, 190, 0.8);
129
+ }
130
+
131
+ @media screen and (max-width: 768px) {
132
+ .yoast-wizard--step__active {
133
+ width: 38px;
134
+ overflow: hidden;
135
+ }
136
+ .yoast-wizard--step__active div {
137
+ display: inline-block !important;
138
+ vertical-align: middle;
139
+ }
140
+ .yoast-wizard--step__active div > span > span {
141
+ display: block !important;
142
+ margin-left: -7px;
143
+ padding-right: 99px !important;
144
+ }
145
+ }
146
+
147
+ .yoast-wizard--step__inactive div {
148
+ pointer-events: none;
149
+ }
150
+
151
+ @media screen and (max-width: 768px) {
152
+ .yoast-wizard--step__inactive {
153
+ display: none !important;
154
+ }
155
+ }
156
+
157
+ .yoast-wizard--step--container:focus {
158
+ outline: none;
159
+ }
160
+
161
+ .yoast-wizard--step--container h1 {
162
+ color: #a4286a;
163
+ margin: 0;
164
+ font-size: 2.25em;
165
+ letter-spacing: 0.03em;
166
+ line-height: 3.68rem;
167
+ font-weight: 100;
168
+ }
169
+
170
+ @media screen and (max-width: 768px) {
171
+ .yoast-wizard--step--container h1 {
172
+ font-size: 2em;
173
+ line-height: 1.25;
174
+ }
175
+ }
176
+
177
+ .yoast-wizard--step--container h2 {
178
+ color: #a4286a;
179
+ font-size: 1.375em;
180
+ font-weight: 100;
181
+ }
182
+
183
+ .yoast-wizard--stepper {
184
+ width: 100%;
185
+ margin: auto;
186
+ }
187
+
188
+ .yoast-wizard-overlay {
189
+ z-index: 10;
190
+ opacity: 0.2;
191
+ background-color: #000;
192
+ position: absolute;
193
+ top: 0;
194
+ left: 0;
195
+ height: 100%;
196
+ color: #fff;
197
+ text-align: center;
198
+ width: 100%;
199
+ }
200
+
201
+ .yoast-wizard-overlay-loader {
202
+ position: relative;
203
+ }
204
+
205
+ .yoast-wizard-container {
206
+ border: 1px solid #ccc;
207
+ text-align: left;
208
+ min-height: 20px;
209
+ position: relative;
210
+ box-shadow: rgba(0, 0, 0, 0.15) 0 3px 10px, rgba(0, 0, 0, 0.2) 0 3px 10px;
211
+ }
212
+
213
+ .yoast-wizard-container--no-navigation {
214
+ margin-top: 40px;
215
+ }
216
+
217
+ .yoast-wizard-container--no-navigation .yoast-wizard {
218
+ padding-top: 3em;
219
+ }
220
+
221
+ @media screen and (max-width: 768px) {
222
+ .yoast-wizard-container {
223
+ box-shadow: none;
224
+ }
225
+ }
226
+
227
+ .yoast-wizard-container fieldset {
228
+ border: 0;
229
+ margin: 1em 0;
230
+ }
231
+
232
+ .yoast-wizard-text-input {
233
+ font-size: 14px;
234
+ padding-bottom: 0.5em;
235
+ }
236
+
237
+ .yoast-wizard-text-input-label {
238
+ cursor: pointer;
239
+ display: block;
240
+ margin: 0.5em 0 0;
241
+ font-weight: bold;
242
+ font-size: 14px;
243
+ }
244
+
245
+ .yoast-wizard-text-input [type="text"] {
246
+ width: 100%;
247
+ max-width: 450px;
248
+ box-sizing: border-box;
249
+ }
250
+
251
+ .yoast-wizard-field-description {
252
+ font-weight: bold;
253
+ }
254
+
255
+ .yoast-wizard input {
256
+ line-height: 140%;
257
+ font-size: 14px;
258
+ margin: 0.5em 0;
259
+ padding: 5px;
260
+ }
261
+
262
+ .yoast-wizard label {
263
+ cursor: pointer;
264
+ }
265
+
266
+ .yoast-wizard input[type="radio"] {
267
+ margin: 0.3em 0.7em 0.3em 0;
268
+ vertical-align: middle;
269
+ }
270
+
271
+ .yoast-wizard-input__explanation {
272
+ color: #555;
273
+ margin-top: 0;
274
+ font-style: italic;
275
+ }
276
+
277
+ .yoast-wizard-input-radio {
278
+ font-size: 14px;
279
+ }
280
+
281
+ .yoast-wizard-input-radio-option label {
282
+ padding-top: 2px;
283
+ }
284
+
285
+ .yoast-wizard-input-radio-separator {
286
+ padding: 0;
287
+ }
288
+
289
+ .yoast-wizard-input-radio-separator input {
290
+ /* visually hide the radio buttons but keep them accessible */
291
+ position: absolute;
292
+ left: -9999em;
293
+ width: 1px;
294
+ height: 1px;
295
+ }
296
+
297
+ .yoast-wizard-input-radio-separator input + label {
298
+ float: left;
299
+ width: 30px !important;
300
+ margin: 0 5px 0.5em 0 !important;
301
+ padding: 9px 6px;
302
+ border: 1px solid #ccc;
303
+ /* Don't change: these mimic Google's font and font size for titles */
304
+ font-family: Arial, Helvetica, sans-serif !important;
305
+ font-size: 18px !important;
306
+ line-height: 24px;
307
+ text-align: center;
308
+ cursor: pointer;
309
+ }
310
+
311
+ .yoast-wizard-input-radio-separator input:checked + label {
312
+ border: 3px solid #a4286a;
313
+ background-color: #fff;
314
+ padding: 7px 4px;
315
+ }
316
+
317
+ .yoast-wizard-input-radio-separator input:focus + label {
318
+ outline: 2px solid #5b9dd9;
319
+ }
320
+
321
+ /* Responsive videos. */
322
+ /* Other common aspect ratios: 75% = 4:3, 66.66% = 3:2, 62.5% = 8:5 */
323
+ .yoast-video-container-max-width {
324
+ max-width: 560px;
325
+ }
326
+
327
+ .yoast-video-container {
328
+ position: relative;
329
+ padding-bottom: 56.25%;
330
+ /* 16:9 */
331
+ height: 0;
332
+ overflow: hidden;
333
+ }
334
+
335
+ .yoast-video-container iframe {
336
+ position: absolute;
337
+ top: 0;
338
+ left: 0;
339
+ width: 100%;
340
+ height: 100%;
341
+ }
342
+
343
+ .yoast-wizard-notice__error {
344
+ margin-bottom: 15px;
345
+ padding: 12px;
346
+ border-left: 4px solid #dc3232;
347
+ background: #fff;
348
+ box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
349
+ }
350
+
351
+ .yoast-wizard-content-container {
352
+ max-width: 560px;
353
+ }
354
+
355
+ .yoast-wizard-content-container.yoast-wizard-content-container__is-full-width {
356
+ max-width: none;
357
+ }
358
+
359
+ #wizard {
360
+ overflow: hidden;
361
+ }
362
+
363
+ .yoast-wizard {
364
+ padding-top: 2em;
365
+ /* Higher specificity to override WP styles. */
366
+ }
367
+
368
+ .yoast-wizard input[type="text"],
369
+ .yoast-wizard input[type="email"] {
370
+ min-width: 250px;
371
+ }
372
+
373
+ .yoast-wizard input[type="text"] + div,
374
+ .yoast-wizard input[type="email"] + div {
375
+ margin-right: 1em;
376
+ }
377
+
378
+ .yoast-wizard-body {
379
+ max-width: 80em;
380
+ }
381
+
382
+ .yoast-wizard--navigation {
383
+ border-top: 1px solid #a4286a;
384
+ margin-top: 2em;
385
+ padding-top: 1em;
386
+ }
387
+
388
+ .yoast-wizard-return-link-container {
389
+ text-align: center;
390
+ }
391
+
392
+ .wp-core-ui .yoast-wizard-return-link.button {
393
+ display: inline-flex;
394
+ align-items: center;
395
+ height: 36px;
396
+ border-color: transparent;
397
+ margin: 0 0 1em;
398
+ padding: 0 16px 0 10px;
399
+ border-radius: 2px;
400
+ background: #fff;
401
+ color: #646d78;
402
+ text-align: center;
403
+ text-transform: uppercase;
404
+ box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 6px, rgba(0, 0, 0, 0.12) 0px 1px 4px;
405
+ transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
406
+ }
407
+
408
+ .wp-core-ui .yoast-wizard-return-link.button:hover {
409
+ background: #ebebeb;
410
+ border-color: transparent;
411
+ }
412
+
413
+ .wp-core-ui .yoast-wizard-return-link.button:focus {
414
+ outline: none;
415
+ box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, 0.8);
416
+ }
417
+
418
+ .wp-core-ui .yoast-wizard-return-link.button:active {
419
+ background: #ebebeb;
420
+ box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 10px, rgba(0, 0, 0, 0.23) 0px 3px 10px;
421
+ transform: none;
422
+ }
423
+
424
+ .wp-core-ui .yoast-wizard-return-link.button .dashicons {
425
+ margin-right: 8px;
426
+ }
427
+
428
+ .yoast-wizard-mailchimp-message-error {
429
+ color: #dc3232;
430
+ }
431
+
432
+ .yoast-wizard-mailchimp-message-success {
433
+ color: #008a00;
434
+ }
435
+
436
+ .yoast-wizard-input {
437
+ padding-bottom: 0.5em;
438
+ }
439
+
440
+ .yoast-wizard-input__select {
441
+ margin: 1em 0;
442
+ font-size: 14px;
443
+ }
444
+
445
+ .yoast-wizard-image-upload-container__image {
446
+ max-width: 151px;
447
+ }
448
+
449
+ .yoast-wizard-image-upload-container-buttons {
450
+ margin-top: 1em;
451
+ }
452
+
453
+ .yoast-wizard-image-upload-container-buttons__remove {
454
+ margin-left: 1em;
455
+ }
456
+
457
+ .yoast-wizard-image-upload-container-description {
458
+ display: block;
459
+ }
460
+
461
+ .yoast-wizard--emphasis {
462
+ font-weight: bold;
463
+ }
464
+
465
+ .yoast-wizard--navigation {
466
+ margin-top: 2em;
467
+ padding-top: 1em;
468
+ border-top: 1px solid #a4286a;
469
+ }
470
+
471
+ .yoast-wizard--rows {
472
+ display: flex;
473
+ flex-direction: column;
474
+ }
475
+
476
+ .yoast-wizard--columns {
477
+ display: flex;
478
+ }
479
+
480
+ .yoast-wizard--columns .yoast-wizard-text-input-field {
481
+ max-width: 100%;
482
+ }
483
+
484
+ .yoast-wizard--columns__even > div {
485
+ flex-basis: 50%;
486
+ }
487
+
488
+ .yoast-wizard--columns > div {
489
+ margin-left: 1em;
490
+ }
491
+
492
+ .yoast-wizard--columns > div:first-child {
493
+ margin-left: 0;
494
+ }
495
+
496
+ .yoast-wizard--columns .yoast-wizard--heading {
497
+ margin: 0;
498
+ color: #a4286a;
499
+ }
500
+
501
+ .yoast-wizard--columns > .yoast-wizard--column__push_right {
502
+ order: 2;
503
+ }
504
+
505
+ .yoast-wizard--columns > .yoast-wizard--column__push_left {
506
+ order: 1;
507
+ margin-left: 0;
508
+ margin-right: 1em;
509
+ }
510
+
511
+ .yoast-wizard--columns > .yoast-wizard--column__push_left #plugin-training-image-link:focus {
512
+ outline: 3px auto #0073aa;
513
+ box-shadow: none;
514
+ }
515
+
516
+ .yoast-wizard--choice > .yoast-wizard--rows {
517
+ height: 100%;
518
+ }
519
+
520
+ .yoast-wizard--choice div {
521
+ align-self: flex-start;
522
+ }
523
+
524
+ .yoast-wizard--choice p {
525
+ margin-top: 0.3em;
526
+ height: 100%;
527
+ }
528
+
529
+ .yoast-wizard--box {
530
+ border: 1px solid #a4286a;
531
+ padding: 1em;
532
+ }
533
+
534
+ .yoast-wizard--box > div:first-child {
535
+ flex-basis: 100px;
536
+ }
537
+
538
+ .yoast-wizard-newsletter {
539
+ margin-bottom: 2em;
540
+ }
541
+
542
+ .yoast-wizard-newsletter--header svg {
543
+ fill: #a4286a;
544
+ top: 4px;
545
+ position: relative;
546
+ margin-right: 6px;
547
+ }
548
+
549
+ .yoast-wizard-newsletter--decoration {
550
+ width: 100%;
551
+ max-width: 490px;
552
+ }
553
+
554
+ .yoast-wizard-newsletter--decoration img {
555
+ width: 490px;
556
+ max-width: 100%;
557
+ /* Compensate for Header spacing */
558
+ margin-top: -3em;
559
+ }
560
+
561
+ @media screen and (max-width: 80em) {
562
+ .yoast-wizard--columns {
563
+ display: block;
564
+ }
565
+ .yoast-wizard--columns > div {
566
+ margin-left: 0;
567
+ }
568
+ .yoast-wizard--columns > .yoast-wizard--column__push_left {
569
+ margin-right: 0;
570
+ margin-top: 2em;
571
+ }
572
+ .yoast-wizard--box {
573
+ display: flex;
574
+ margin-top: 1em;
575
+ }
576
+ .yoast-wizard--box:first-child {
577
+ margin-top: 0;
578
+ }
579
+ .yoast-wizard--box > div {
580
+ margin-left: 1em;
581
+ }
582
+ .yoast-wizard .hide-on-tablet {
583
+ display: none;
584
+ }
585
+ }
586
+
587
+ .yoast-wizard--suggestion {
588
+ border-top: 1px solid #a4286a;
589
+ padding-top: 2em;
590
+ margin-bottom: 2em;
591
+ }
592
+
593
+ @media screen and (max-width: 50rem) {
594
+ .yoast-wizard .hide-on-mobile {
595
+ display: none;
596
+ }
597
+ .yoast-wizard--box {
598
+ display: block;
599
+ }
600
+ .yoast-wizard--box > div {
601
+ margin-left: 0;
602
+ }
603
+ .yoast-wizard--video-frame {
604
+ position: relative;
605
+ padding-bottom: 56.25%;
606
+ /* 16:9 */
607
+ height: 0;
608
+ }
609
+ .yoast-wizard--video-frame iframe {
610
+ position: absolute;
611
+ top: 0;
612
+ left: 0;
613
+ width: 100%;
614
+ height: 100%;
615
+ }
616
+ }
617
+
618
+ /*# sourceMappingURL=yoast-components.css.map */
css/src/yoast-extensions.css ADDED
@@ -0,0 +1,726 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @charset "UTF-8";
2
+ /*------------------------------------*\
3
+ #SETTINGS
4
+ \*------------------------------------*/
5
+ /**
6
+ * Pull in all the settings we require for this project.
7
+ */
8
+ /**
9
+ * Create vendor-prefixed CSS in one go, e.g.
10
+ *
11
+ `@include vendor(border-radius, 4px);`
12
+ *
13
+ */
14
+ @import url(../src/icons.css);
15
+ .yoast-list--usp {
16
+ padding: 0;
17
+ margin-bottom: 1em;
18
+ font-family: Arial, sans-serif;
19
+ }
20
+
21
+ .yoast-list--usp li {
22
+ list-style: none !important;
23
+ position: relative;
24
+ padding-left: 1.2533333333rem;
25
+ }
26
+
27
+ .yoast-list--usp li::before {
28
+ content: '\f00c\0020';
29
+ position: absolute;
30
+ left: 0;
31
+ top: 0;
32
+ font-family: "FontAwesome", "Open Sans", Arial, sans-serif;
33
+ color: #77B227;
34
+ }
35
+
36
+ .yoast h1, .yoast h2, .yoast h3, .yoast h4, .yoast h5, .yoast h6,
37
+ .yoast .h1, .yoast .h2, .yoast .h3, .yoast .h4, .yoast .h5, .yoast .h6 {
38
+ font-family: Arial, sans-serif;
39
+ font-weight: 300;
40
+ margin-top: 0;
41
+ display: block;
42
+ }
43
+
44
+ .yoast h1, .yoast .h1 {
45
+ font-size: 2.5em;
46
+ line-height: 3.68rem;
47
+ margin-bottom: 1.35rem;
48
+ letter-spacing: normal;
49
+ }
50
+
51
+ @media only screen and (min-width: 30rem) {
52
+ .yoast h1, .yoast .h1 {
53
+ font-size: 2.75em;
54
+ }
55
+ }
56
+
57
+ .yoast h2, .yoast .h2 {
58
+ font-size: 1.88em;
59
+ line-height: 2.5rem;
60
+ margin-bottom: 1.2rem;
61
+ }
62
+
63
+ .yoast h2.tight, .yoast .h2.tight {
64
+ margin-bottom: .6rem;
65
+ }
66
+
67
+ .yoast h3, .yoast .h3 {
68
+ font-size: 1.25em;
69
+ line-height: 1.88rem;
70
+ margin-bottom: 0.8rem;
71
+ }
72
+
73
+ .yoast h3.tight, .yoast .h3.tight {
74
+ margin-bottom: 0.4rem;
75
+ }
76
+
77
+ @media only screen and (min-width: 30rem) {
78
+ .yoast h3, .yoast .h3 {
79
+ font-size: 1.375em;
80
+ }
81
+ }
82
+
83
+ @media only screen and (min-width: 50rem) {
84
+ .yoast h3, .yoast .h3 {
85
+ font-size: 1.5em;
86
+ }
87
+ }
88
+
89
+ .yoast h4, .yoast .h4,
90
+ .yoast h5, .yoast .h5,
91
+ .yoast h6, .yoast .h6 {
92
+ font-size: 1.13em;
93
+ font-weight: 400;
94
+ line-height: 1.88rem;
95
+ margin-bottom: 0.2rem;
96
+ }
97
+
98
+ .yoast-button {
99
+ font-family: Arial, sans-serif;
100
+ position: relative;
101
+ display: inline-block;
102
+ width: 100%;
103
+ padding: 0.345em 1.5em 0.345em 1em;
104
+ font-size: 1.1em;
105
+ background-color: transparent;
106
+ background-color: #DC5C04;
107
+ color: #DC5C04;
108
+ border: 0;
109
+ text-decoration: none;
110
+ cursor: pointer;
111
+ }
112
+
113
+ @media only screen and (min-width: 30rem) {
114
+ .yoast-button {
115
+ margin-right: 1.36rem;
116
+ width: auto;
117
+ max-height: 2.86rem;
118
+ }
119
+ .yoast-button::after {
120
+ content: '';
121
+ position: absolute;
122
+ top: 0;
123
+ right: -1.36rem;
124
+ height: 0;
125
+ width: 0;
126
+ border-right: 0;
127
+ border-left: 1.43rem solid #DC5C04;
128
+ border-top: 1.43rem solid transparent;
129
+ border-bottom: 1.44rem solid transparent;
130
+ }
131
+ .yoast-button.left {
132
+ margin-right: 0;
133
+ margin-left: 1.36rem;
134
+ }
135
+ .yoast-button.left::after {
136
+ content: none;
137
+ }
138
+ .yoast-button.left::before {
139
+ content: '';
140
+ position: absolute;
141
+ top: 0;
142
+ left: -1.36rem;
143
+ height: 0;
144
+ width: 0;
145
+ border-left: 0;
146
+ border-right: 1.43rem solid #DC5C04;
147
+ border-top: 1.43rem solid transparent;
148
+ border-bottom: 1.44rem solid transparent;
149
+ }
150
+ }
151
+
152
+ .yoast-button.alignleft {
153
+ margin: 1rem 2.5rem 0 0 !important;
154
+ }
155
+
156
+ .yoast-button .arrow {
157
+ display: none;
158
+ }
159
+
160
+ .yoast-button + .yoast-button {
161
+ margin-top: 1em;
162
+ margin-left: 1.88rem;
163
+ }
164
+
165
+ .yoast-button--full {
166
+ width: 100%;
167
+ }
168
+
169
+ .yoast-button--full::after {
170
+ content: none;
171
+ }
172
+
173
+ .yoast-button.default {
174
+ color: #FFF;
175
+ background-color: #DC5C04;
176
+ }
177
+
178
+ .yoast-button.default::after {
179
+ border-left-color: #DC5C04;
180
+ }
181
+
182
+ .yoast-button.default::before {
183
+ border-right-color: #DC5C04;
184
+ }
185
+
186
+ .yoast-button:hover, .yoast-button a:focus {
187
+ background-color: #F58223;
188
+ color: #FFF;
189
+ text-decoration: underline;
190
+ }
191
+
192
+ .yoast-button:hover::after, .yoast-button a:focus::after {
193
+ border-left-color: #F58223;
194
+ }
195
+
196
+ .yoast-button:hover::before, .yoast-button a:focus::before {
197
+ border-right-color: #F58223;
198
+ }
199
+
200
+ .yoast-button.academy {
201
+ color: #FFF;
202
+ background-color: #5D237A;
203
+ }
204
+
205
+ .yoast-button.academy::after {
206
+ border-left-color: #5D237A;
207
+ }
208
+
209
+ .yoast-button.academy::before {
210
+ border-right-color: #5D237A;
211
+ }
212
+
213
+ @media only screen and (max-width: 20rem) {
214
+ .yoast-button.academy {
215
+ background-color: #5D237A;
216
+ }
217
+ }
218
+
219
+ .yoast-button.academy--secondary {
220
+ color: #FFF;
221
+ background-color: #A4286A;
222
+ }
223
+
224
+ .yoast-button.academy--secondary::after {
225
+ border-left-color: #A4286A;
226
+ }
227
+
228
+ .yoast-button.academy--secondary::before {
229
+ border-right-color: #A4286A;
230
+ }
231
+
232
+ @media only screen and (max-width: 20rem) {
233
+ .yoast-button.academy--secondary {
234
+ background-color: #A4286A;
235
+ }
236
+ }
237
+
238
+ .yoast-button.software {
239
+ color: #FFF;
240
+ background-color: #0075B3;
241
+ }
242
+
243
+ .yoast-button.software::after {
244
+ border-left-color: #0075B3;
245
+ }
246
+
247
+ .yoast-button.software::before {
248
+ border-right-color: #0075B3;
249
+ }
250
+
251
+ .yoast-button.review {
252
+ color: #FFF;
253
+ background-color: #009288;
254
+ }
255
+
256
+ .yoast-button.review::after {
257
+ border-left-color: #009288;
258
+ }
259
+
260
+ .yoast-button.review::before {
261
+ border-right-color: #009288;
262
+ }
263
+
264
+ .yoast-button.about {
265
+ color: #FFF;
266
+ background-color: #D93F69;
267
+ }
268
+
269
+ .yoast-button.about::after {
270
+ border-left-color: #D93F69;
271
+ }
272
+
273
+ .yoast-button.about::before {
274
+ border-right-color: #D93F69;
275
+ }
276
+
277
+ .yoast_academy .yoast-button {
278
+ color: #FFF;
279
+ background-color: #D93F69;
280
+ }
281
+
282
+ .yoast_academy .yoast-button::after {
283
+ border-left-color: #D93F69;
284
+ }
285
+
286
+ .yoast_academy .yoast-button::before {
287
+ border-right-color: #D93F69;
288
+ }
289
+
290
+ .yoast_academy .yoast-button:hover, .yoast_academy .yoast-button a:focus {
291
+ background-color: #d42a59;
292
+ color: #FFF;
293
+ text-decoration: underline;
294
+ }
295
+
296
+ .yoast_academy .yoast-button:hover::after, .yoast_academy .yoast-button a:focus::after {
297
+ border-left-color: #d42a59;
298
+ }
299
+
300
+ .yoast_academy .yoast-button:hover::before, .yoast_academy .yoast-button a:focus::before {
301
+ border-right-color: #d42a59;
302
+ }
303
+
304
+ body .yoast-button.dimmed,
305
+ .yoast_academy .yoast-button.dimmed {
306
+ color: #646464;
307
+ background-color: #DCDCDC;
308
+ }
309
+
310
+ body .yoast-button.dimmed::after,
311
+ .yoast_academy .yoast-button.dimmed::after {
312
+ border-left-color: #DCDCDC;
313
+ }
314
+
315
+ body .yoast-button.dimmed::before,
316
+ .yoast_academy .yoast-button.dimmed::before {
317
+ border-right-color: #DCDCDC;
318
+ }
319
+
320
+ body .yoast-button.dimmed:hover, body .yoast-button.dimmed a:focus,
321
+ .yoast_academy .yoast-button.dimmed:hover,
322
+ .yoast_academy .yoast-button.dimmed a:focus {
323
+ background-color: #CDCDCD;
324
+ color: #646464;
325
+ text-decoration: underline;
326
+ }
327
+
328
+ body .yoast-button.dimmed:hover::after, body .yoast-button.dimmed a:focus::after,
329
+ .yoast_academy .yoast-button.dimmed:hover::after,
330
+ .yoast_academy .yoast-button.dimmed a:focus::after {
331
+ border-left-color: #CDCDCD;
332
+ }
333
+
334
+ body .yoast-button.dimmed:hover:before, body .yoast-button.dimmed a:focus:before,
335
+ .yoast_academy .yoast-button.dimmed:hover:before,
336
+ .yoast_academy .yoast-button.dimmed a:focus:before {
337
+ border-right-color: #CDCDCD;
338
+ }
339
+
340
+ .yoast-button--noarrow::after {
341
+ content: none;
342
+ }
343
+
344
+ .yoast-button--naked {
345
+ border: none;
346
+ background-color: transparent;
347
+ padding: 0;
348
+ }
349
+
350
+ .yoast-button--naked::after {
351
+ content: none;
352
+ }
353
+
354
+ .yoast-button i.fa {
355
+ font-size: 140%;
356
+ margin: 4px 10px 0 0;
357
+ }
358
+
359
+ .yoast-promoblock {
360
+ margin-bottom: 1.88rem;
361
+ box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.3);
362
+ border: 1px solid #dcdcdc;
363
+ padding: 16px;
364
+ }
365
+
366
+ .yoast-promoblock p {
367
+ color: #000;
368
+ }
369
+
370
+ .yoast-promoblock p:last-of-type {
371
+ margin-bottom: 0;
372
+ }
373
+
374
+ .yoast-promoblock i.blockicon {
375
+ position: absolute;
376
+ right: 10px;
377
+ bottom: 10px;
378
+ padding: 0 0 0 .5em;
379
+ font-size: 2.25em;
380
+ }
381
+
382
+ .yoast-promoblock a img {
383
+ border: 1px solid #DCDCDC;
384
+ }
385
+
386
+ .yoast-promoblock p a {
387
+ font-weight: 600 !important;
388
+ text-decoration: underline;
389
+ }
390
+
391
+ .yoast-promoblock form a {
392
+ font-weight: 400 !important;
393
+ text-decoration: none;
394
+ }
395
+
396
+ .yoast-promoblock h4, .yoast-promoblock .h4 {
397
+ margin-bottom: 0.7rem;
398
+ }
399
+
400
+ .yoast-promoblock.link {
401
+ border-color: #DC5C04;
402
+ }
403
+
404
+ .yoast-promoblock.link a, .yoast-promoblock.link a:hover {
405
+ color: #DC5C04;
406
+ }
407
+
408
+ .yoast-promoblock--white {
409
+ border-color: #FFF !important;
410
+ }
411
+
412
+ .product .yoast-promoblock {
413
+ overflow: hidden;
414
+ }
415
+
416
+ .yoast-promoblock--hometitle {
417
+ max-width: 16em;
418
+ height: 11em;
419
+ margin: 16px auto 32px;
420
+ margin: 1rem auto 2rem;
421
+ display: flex;
422
+ font-size: 16px;
423
+ font-size: 1rem;
424
+ line-height: 1;
425
+ background-color: rgba(217, 63, 105, 0.25);
426
+ border-color: #FFF !important;
427
+ }
428
+
429
+ @media only screen and (max-width: 30rem) {
430
+ .yoast-promoblock--hometitle::after {
431
+ content: none !important;
432
+ }
433
+ }
434
+
435
+ .yoast-promoblock--imageholder {
436
+ padding: 0;
437
+ margin-bottom: 0;
438
+ }
439
+
440
+ .yoast-promoblock--imageholdersmall {
441
+ position: absolute;
442
+ }
443
+
444
+ .yoast-promoblock--imageholdersmall:first-child {
445
+ left: 4rem;
446
+ }
447
+
448
+ .yoast-promoblock--imageholdersmall:last-child {
449
+ top: 4rem;
450
+ }
451
+
452
+ @media only screen and (max-width: 50rem) {
453
+ .yoast-promoblock h2 {
454
+ margin-bottom: 0;
455
+ }
456
+ }
457
+
458
+ a.promoblock {
459
+ text-decoration: none;
460
+ color: #000;
461
+ }
462
+
463
+ a.promoblock:hover {
464
+ text-decoration: none;
465
+ }
466
+
467
+ .promoblockimage__holder {
468
+ width: 240px;
469
+ height: 295px;
470
+ position: relative;
471
+ }
472
+
473
+ .yoast {
474
+ font-family: "Open Sans",Arial,sans-serif;
475
+ font-size: 1rem;
476
+ line-height: 1.88;
477
+ letter-spacing: 0.01em;
478
+ color: #000;
479
+ }
480
+
481
+ .yoast *,
482
+ .yoast *:before,
483
+ .yoast *:after {
484
+ box-sizing: border-box;
485
+ }
486
+
487
+ .yoast-hr {
488
+ margin: 0;
489
+ border: 0;
490
+ padding-bottom: 1.88rem;
491
+ position: relative;
492
+ }
493
+
494
+ .yoast-list--usp li:before {
495
+ content: "";
496
+ background: var(--svg-icon-check) no-repeat;
497
+ background-size: contain;
498
+ width: 1em;
499
+ height: 100%;
500
+ background-position: left 0.4em;
501
+ }
502
+
503
+ .yoast-button--purple {
504
+ background-color: #5D237A;
505
+ }
506
+
507
+ .yoast-button-go-to:after {
508
+ content: " \00BB";
509
+ position: static;
510
+ top: auto;
511
+ right: auto;
512
+ width: auto;
513
+ height: auto;
514
+ border: none;
515
+ }
516
+
517
+ .yoast-button--extension {
518
+ color: #FFF;
519
+ text-transform: uppercase;
520
+ padding-left: 0.8em;
521
+ padding-right: 0.8em;
522
+ }
523
+
524
+ .yoast-button--extension + .yoast-button--extension-activated, .yoast-button--extension + .yoast-button--extension-not-activated {
525
+ margin-left: 0;
526
+ }
527
+
528
+ .yoast-button--extension-installed:hover, .yoast-button--extension-activated:hover, .yoast-button--extension-not-activated:hover {
529
+ text-decoration: none;
530
+ }
531
+
532
+ .yoast-button--extension-installed {
533
+ margin-right: 0.2rem;
534
+ }
535
+
536
+ .yoast-button--extension-installed, .yoast-button--extension-installed:hover {
537
+ background-color: #008a00;
538
+ }
539
+
540
+ .yoast-button--extension-not-activated, .yoast-button--extension-not-activated:hover {
541
+ background-color: #dc3232;
542
+ }
543
+
544
+ .yoast-button--extension-activated, .yoast-button--extension-activated:hover {
545
+ background-color: #008a00;
546
+ }
547
+
548
+ .yoast-button-upsell {
549
+ width: 100%;
550
+ margin-bottom: 1em;
551
+ }
552
+
553
+ @media only screen and (min-width: 30rem) {
554
+ .yoast-button-upsell {
555
+ width: auto;
556
+ margin-right: 1.36rem;
557
+ }
558
+ }
559
+
560
+ .yoast-promo-extensions {
561
+ display: flex;
562
+ flex-wrap: wrap;
563
+ margin-left: -24px;
564
+ }
565
+
566
+ .yoast-promo-extensions > h2 {
567
+ width: 100%;
568
+ margin-left: 32px;
569
+ margin-bottom: 32px;
570
+ }
571
+
572
+ .yoast-promo-extension {
573
+ display: flex;
574
+ flex-direction: column;
575
+ max-width: 340px;
576
+ background-color: #fff;
577
+ margin-left: 32px;
578
+ }
579
+
580
+ .yoast-promo-extension:first-child {
581
+ margin-left: 0;
582
+ }
583
+
584
+ .yoast-promo-extension img {
585
+ float: right;
586
+ width: 100px;
587
+ height: 100px;
588
+ margin-bottom: 0.8rem;
589
+ }
590
+
591
+ @media screen and (max-width: 900px) {
592
+ .yoast-promo-extension img {
593
+ display: none;
594
+ }
595
+ }
596
+
597
+ .yoast-promo-extension .yoast-button-container {
598
+ margin-top: auto;
599
+ }
600
+
601
+ .yoast-promo-extension .yoast-button-container div.yoast-button--extension {
602
+ cursor: default;
603
+ }
604
+
605
+ .yoast-promo-extension .yoast-button {
606
+ width: 100%;
607
+ max-height: none;
608
+ font-size: 0.9rem;
609
+ }
610
+
611
+ .yoast-promo-extension .yoast-button--installed {
612
+ color: #FFF;
613
+ }
614
+
615
+ .yoast-promo-extension .yoast-button--extension {
616
+ font-size: 0.9rem;
617
+ text-align: center;
618
+ margin-top: 0;
619
+ }
620
+
621
+ .yoast-promo-extension .yoast-button--extension-installed {
622
+ margin: 0 2% 0 0;
623
+ width: 48%;
624
+ }
625
+
626
+ .yoast-promo-extension .yoast-button--extension-activated, .yoast-promo-extension .yoast-button--extension-not-activated {
627
+ margin-left: 0;
628
+ margin-right: 0;
629
+ width: 48%;
630
+ }
631
+
632
+ .yoast-promo-extension .yoast-button-upsell {
633
+ width: 100%;
634
+ }
635
+
636
+ .yoast-promo-extension h3 {
637
+ color: #A4286A;
638
+ }
639
+
640
+ @media screen and (max-width: 900px) {
641
+ .yoast-promo-extension {
642
+ max-width: none;
643
+ width: 100%;
644
+ }
645
+ }
646
+
647
+ .yoast-seo-premium-extension {
648
+ margin: 2em 0.5em 1.5em;
649
+ }
650
+
651
+ .yoast-seo-premium-extension:before, .yoast-seo-premium-extension:after {
652
+ content: '';
653
+ display: table;
654
+ }
655
+
656
+ .yoast-seo-premium-extension:after {
657
+ clear: both;
658
+ }
659
+
660
+ .yoast-seo-premium-benefits__title {
661
+ font-weight: 600;
662
+ }
663
+
664
+ .yoast-seo-premium-benefits__description:before {
665
+ content: "– ";
666
+ }
667
+
668
+ .yoast-link--license, .yoast-link--more-info {
669
+ color: #A4286A;
670
+ font-weight: 600;
671
+ }
672
+
673
+ .yoast-link--license {
674
+ margin: 1em 0 0 0;
675
+ }
676
+
677
+ .yoast-promo-extension .yoast-link--license {
678
+ display: block;
679
+ margin: 1em 0 0 0;
680
+ }
681
+
682
+ .yoast-link--license:after {
683
+ content: " \00BB";
684
+ }
685
+
686
+ .yoast-link--more-info {
687
+ background: var(--svg-icon-info);
688
+ padding-left: calc( 1em + 5px);
689
+ background-size: 1em;
690
+ background-repeat: no-repeat;
691
+ background-position: left center;
692
+ }
693
+
694
+ .yoast-link--more-info:after {
695
+ content: " \00BB";
696
+ }
697
+
698
+ .yoast-promo-extension .yoast-link--more-info {
699
+ display: block;
700
+ margin: 0;
701
+ background-position: left center;
702
+ }
703
+
704
+ .yoast-heading-highlight {
705
+ color: #A4286A;
706
+ font-weight: 600;
707
+ }
708
+
709
+ .yoast-money-back-guarantee {
710
+ font-style: italic;
711
+ font-size: 1.1em;
712
+ }
713
+
714
+ .yoast-license-status-active {
715
+ padding: 3px 6px;
716
+ color: #FFF;
717
+ background: #008a00;
718
+ }
719
+
720
+ .yoast-license-status-inactive {
721
+ padding: 3px 6px;
722
+ color: #FFF;
723
+ background: #dc3232;
724
+ }
725
+
726
+ /*# sourceMappingURL=yoast-extensions.css.map */
css/src/yst_plugin_tools.css ADDED
@@ -0,0 +1,900 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import url(../src/icons.css);
2
+ /*------------------------------------*\
3
+ #SETTINGS
4
+ \*------------------------------------*/
5
+ /**
6
+ * Pull in all the settings we require for this project.
7
+ */
8
+ /* Settings pages layout based on CSS table model. */
9
+ .wpseo_content_wrapper {
10
+ display: table;
11
+ width: 100%;
12
+ table-layout: fixed;
13
+ }
14
+
15
+ .wpseo_content_cell {
16
+ display: table-cell;
17
+ height: 500px;
18
+ margin: 0;
19
+ padding: 0;
20
+ vertical-align: top;
21
+ }
22
+
23
+ #wpseo_content_top {
24
+ width: 100%;
25
+ }
26
+
27
+ /* @todo: check this. */
28
+ tr.yst_row {
29
+ margin: 5px 0 0 0;
30
+ padding: 5px 0 0 0;
31
+ }
32
+
33
+ #sidebar-container {
34
+ /* For historical reasons banner images have a 261px width. */
35
+ width: 300px;
36
+ padding-left: 20px;
37
+ }
38
+
39
+ /* @todo: check this. */
40
+ tr.yst_row.even {
41
+ background-color: #f6f6f6;
42
+ }
43
+
44
+ .wpseo_content_wrapper {
45
+ /* Forms. */
46
+ /* Input validation errors */
47
+ /* @todo: check if the .double class is still used. */
48
+ /* @todo: check this. */
49
+ /* @todo: check this. Couldn't find any textarea with class 'import'. */
50
+ /* @todo: check this. */
51
+ /* @todo: check this. */
52
+ /* @todo: check this. */
53
+ /* @todo: check this. */
54
+ /* @todo: check this. */
55
+ /* @todo: check this. */
56
+ /* @todo: check this. */
57
+ /* @todo: check this. */
58
+ /* Search Appearance: title separator. */
59
+ /* @todo: check this. */
60
+ /* @todo: check this. */
61
+ }
62
+
63
+ .wpseo_content_wrapper label.textinput,
64
+ .wpseo_content_wrapper label.select {
65
+ float: left;
66
+ width: 200px;
67
+ margin: 5px 0;
68
+ }
69
+
70
+ .wpseo_content_wrapper label.textinput.error,
71
+ .wpseo_content_wrapper label.select.error {
72
+ color: #dc3232;
73
+ font-weight: bold;
74
+ }
75
+
76
+ .wpseo_content_wrapper .yoast-inline-label {
77
+ float: none;
78
+ display: inline-block;
79
+ margin: 0 0 8px;
80
+ }
81
+
82
+ .wpseo_content_wrapper input.textinput,
83
+ .wpseo_content_wrapper textarea,
84
+ .wpseo_content_wrapper select {
85
+ width: 400px;
86
+ }
87
+
88
+ .wpseo_content_wrapper input.large-text,
89
+ .wpseo_content_wrapper textarea.large-text {
90
+ width: 99%;
91
+ }
92
+
93
+ .wpseo_content_wrapper input.textinput,
94
+ .wpseo_content_wrapper textarea.textinput,
95
+ .wpseo_content_wrapper select.select,
96
+ .wpseo_content_wrapper .select2-container {
97
+ margin: 0 0 15px 0;
98
+ }
99
+
100
+ .wpseo_content_wrapper input.textinput[aria-invalid="true"] {
101
+ color: #000;
102
+ background: #f9dcdc url(../../images/error-icon.svg) no-repeat calc( 100% - 6px) center;
103
+ background-size: 12px;
104
+ border: 1px solid #dc3232;
105
+ padding-right: 24px;
106
+ }
107
+
108
+ .wpseo_content_wrapper input.textinput[aria-invalid="true"][aria-describedby] {
109
+ margin-bottom: 0.5rem;
110
+ }
111
+
112
+ .wpseo_content_wrapper .yoast-input-validation__error-description {
113
+ width: 400px;
114
+ padding-left: 200px;
115
+ margin: 0 0 1rem;
116
+ color: #8f1919;
117
+ }
118
+
119
+ .wpseo_content_wrapper input.radio,
120
+ .wpseo_content_wrapper input.checkbox,
121
+ .wpseo_content_wrapper input.checkbox.double {
122
+ margin: 6px 10px 6px 0;
123
+ }
124
+
125
+ .wpseo_content_wrapper .textinput.metadesc {
126
+ height: 50px;
127
+ }
128
+
129
+ .wpseo_content_wrapper textarea.import {
130
+ width: 500px;
131
+ height: 100px;
132
+ }
133
+
134
+ .wpseo_content_wrapper p.desc {
135
+ margin: 6px 0 10px 0;
136
+ padding: 0 0 8px 25px;
137
+ }
138
+
139
+ .wpseo_content_wrapper p.desc.label,
140
+ .wpseo_content_wrapper div.desc.label {
141
+ margin: 0 0 20px;
142
+ padding: 0 0 10px 200px;
143
+ }
144
+
145
+ .wpseo_content_wrapper h4 {
146
+ clear: both;
147
+ margin: 1.2em 0 0.5em 0;
148
+ }
149
+
150
+ .wpseo_content_wrapper .postbox {
151
+ margin: 10px 10px 0 0;
152
+ }
153
+
154
+ .wpseo_content_wrapper .postbox form {
155
+ line-height: 150%;
156
+ }
157
+
158
+ .wpseo_content_wrapper .text {
159
+ width: 250px;
160
+ }
161
+
162
+ .wpseo_content_wrapper .correct {
163
+ padding: 5px;
164
+ color: white;
165
+ background-color: green;
166
+ }
167
+
168
+ .wpseo_content_wrapper .wrong {
169
+ padding: 5px;
170
+ color: white;
171
+ background-color: #dc3232;
172
+ }
173
+
174
+ .wpseo_content_wrapper .wrong code {
175
+ padding: 3px 8px;
176
+ color: #000;
177
+ }
178
+
179
+ .wpseo_content_wrapper .button.fixit {
180
+ float: right;
181
+ margin: 0 5px;
182
+ }
183
+
184
+ .wpseo_content_wrapper .button.checkit {
185
+ float: right;
186
+ margin: 0 5px;
187
+ padding: 5px 8px;
188
+ }
189
+
190
+ .wpseo_content_wrapper .disabled-note {
191
+ margin: 0 0 8px;
192
+ color: #888;
193
+ }
194
+
195
+ .wpseo_content_wrapper #separator {
196
+ margin: 1.5em 0 0.5em;
197
+ }
198
+
199
+ .wpseo_content_wrapper #separator input.radio {
200
+ /* visually hide the radio buttons but keep them accessible */
201
+ position: absolute;
202
+ left: -9999em;
203
+ width: 1px;
204
+ height: 1px;
205
+ }
206
+
207
+ .wpseo_content_wrapper #separator input.radio + label {
208
+ float: left;
209
+ width: 30px !important;
210
+ margin: 0 5px 0.5em 0 !important;
211
+ padding: 9px 6px;
212
+ border: 1px solid #ccc;
213
+ /* Don't change: these mimic Google's font and font size for titles */
214
+ font-family: Arial, Helvetica, sans-serif !important;
215
+ font-size: 18px !important;
216
+ line-height: 24px;
217
+ text-align: center;
218
+ cursor: pointer;
219
+ }
220
+
221
+ .wpseo_content_wrapper #separator input.radio:checked + label {
222
+ border: 3px solid #a4286a;
223
+ background-color: #fff;
224
+ padding: 7px 4px;
225
+ }
226
+
227
+ .wpseo_content_wrapper #separator input.radio:focus + label {
228
+ outline: 2px solid #5b9dd9;
229
+ }
230
+
231
+ .wpseo_content_wrapper .svg-container {
232
+ text-align: center;
233
+ }
234
+
235
+ .wpseo_content_wrapper .svg-container .dashicons {
236
+ width: 200px;
237
+ height: 100px;
238
+ font-size: 100px;
239
+ }
240
+
241
+ .wpseo_content_wrapper .paper.tab-block button.toggleable-container-trigger {
242
+ width: 100%;
243
+ padding: 16px;
244
+ font-size: 1rem;
245
+ }
246
+
247
+ .wpseo_content_wrapper .paper.tab-block button.toggleable-container-trigger:focus {
248
+ outline: 1px solid #0066cd;
249
+ outline-offset: -1px;
250
+ box-shadow: 0 0 3px rgba(8, 74, 103, 0.8);
251
+ }
252
+
253
+ .wpseo_content_wrapper .paper.tab-block button.toggleable-container-trigger:active {
254
+ box-shadow: none;
255
+ }
256
+
257
+ .wpseo_content_wrapper .paper.tab-block h2.collapsible-header {
258
+ margin: 0 !important;
259
+ padding: 0 !important;
260
+ }
261
+
262
+ .wpseo_content_wrapper .paper.tab-block.metabox button.toggleable-container-trigger {
263
+ color: #555;
264
+ }
265
+
266
+ .wpseo_content_wrapper .paper.tab-block.metabox.wpseotab {
267
+ padding: 0;
268
+ border: 0;
269
+ }
270
+
271
+ .wpseo_content_wrapper .paper.tab-block.search-appearance {
272
+ max-width: 632px;
273
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
274
+ background-color: #fff;
275
+ }
276
+
277
+ .wpseo_content_wrapper .paper.tab-block .paper-container {
278
+ padding: 16px;
279
+ }
280
+
281
+ .wpseo_content_wrapper .paper.tab-block .paper-container:first-child {
282
+ margin-top: 0;
283
+ }
284
+
285
+ .wpseo_content_wrapper .paper.tab-block .paper-title {
286
+ padding: 16px;
287
+ }
288
+
289
+ .wpseo_content_wrapper .paper.tab-block .paper-title h2 {
290
+ margin: 0;
291
+ }
292
+
293
+ .wpseo_content_wrapper .paper.tab-block .tab-block:first-child {
294
+ margin-top: 0;
295
+ }
296
+
297
+ .wpseo_content_wrapper .wpseo-collapsible-container {
298
+ background-color: #fff;
299
+ border-top: 1px solid #e2e4e7;
300
+ border-bottom: 1px solid #e2e4e7;
301
+ margin-top: -1px;
302
+ }
303
+
304
+ .wpseo_content_wrapper .toggleable-container-trigger {
305
+ border: 0;
306
+ background: none;
307
+ cursor: pointer;
308
+ width: 100%;
309
+ padding: 0;
310
+ text-align: left;
311
+ }
312
+
313
+ .wpseo_content_wrapper .toggleable-container-icon {
314
+ float: right;
315
+ width: 20px;
316
+ height: 20px;
317
+ position: relative;
318
+ }
319
+
320
+ .wpseo_content_wrapper .toggleable-container-trigger .toggleable-container-icon::after {
321
+ content: "";
322
+ display: block;
323
+ padding: 14px;
324
+ position: absolute;
325
+ top: -4px;
326
+ left: -4px;
327
+ }
328
+
329
+ .wpseo_content_wrapper .toggleable-container-hidden {
330
+ display: none;
331
+ }
332
+
333
+ /* Styles for Yoast specific content. */
334
+ .wpseo_content_wrapper h3 {
335
+ font-size: 1.15em;
336
+ margin: 1em 0 0.5em 0;
337
+ }
338
+
339
+ .wpseo_content_wrapper p,
340
+ .wpseo_content_wrapper li {
341
+ max-width: 600px;
342
+ }
343
+
344
+ .yoast .search-box,
345
+ .wpseo_content_wrapper .notice p,
346
+ .yoast-container .container,
347
+ .yoast-notification p {
348
+ max-width: none;
349
+ }
350
+
351
+ /* @todo: check this. */
352
+ table.wpseo th {
353
+ text-align: left;
354
+ }
355
+
356
+ /* Notices below Settings pages tabs. */
357
+ #wpseo-tabs + .notice {
358
+ margin-top: 1.5em;
359
+ }
360
+
361
+ /* Template variables error. */
362
+ .wpseo-variable-warning-element {
363
+ border: 1px solid #c62d2d !important;
364
+ }
365
+
366
+ .wpseo-variable-warning {
367
+ clear: both;
368
+ margin: 5px 0 0 0;
369
+ padding: 5px;
370
+ color: #c62d2d;
371
+ }
372
+
373
+ .wpseo-variable-warning code {
374
+ color: #b02828;
375
+ }
376
+
377
+ .wpseo-variable-warning a {
378
+ color: #c62d2d;
379
+ }
380
+
381
+ /* Create redirect popup. */
382
+ .wpseo_content_wrapper h1.wpseo-redirect-url-title {
383
+ margin: 1em 0 0.5em 0;
384
+ font-size: 1.3em;
385
+ }
386
+
387
+ /* Template variables table. */
388
+ table.yoast_help {
389
+ border-collapse: collapse;
390
+ width: 100%;
391
+ }
392
+
393
+ table.yoast_help,
394
+ table.yoast_help th,
395
+ table.yoast_help td {
396
+ border: 1px solid #ddd;
397
+ color: #444;
398
+ }
399
+
400
+ table.yoast_help th,
401
+ table.yoast_help td {
402
+ padding: 5px 10px;
403
+ text-align: left;
404
+ vertical-align: top;
405
+ }
406
+
407
+ table.yoast_help tr {
408
+ background-color: #f1f1f1;
409
+ }
410
+
411
+ table.yoast_help tr:nth-child(2n) {
412
+ background-color: #fbfbfe;
413
+ }
414
+
415
+ table.yoast_help tr:hover {
416
+ background-color: #ddd;
417
+ }
418
+
419
+ table.yoast_help thead tr,
420
+ table.yoast_help thead tr:hover {
421
+ background-color: #fff;
422
+ }
423
+
424
+ table.yoast_help .yoast-variable-name {
425
+ font-weight: 600;
426
+ white-space: nowrap;
427
+ }
428
+
429
+ table.yoast_help .yoast-variable-desc {
430
+ min-width: 300px;
431
+ }
432
+
433
+ .yoast-notice-blocking-files code {
434
+ line-height: 2;
435
+ color: #000;
436
+ }
437
+
438
+ .yoast-notice-blocking-files .button {
439
+ margin: 0.5em 0;
440
+ }
441
+
442
+ .wpseo_content_wrapper .yoast-blocking-files-error p {
443
+ max-width: none;
444
+ }
445
+
446
+ /* Tabs. */
447
+ .wpseotab {
448
+ display: none;
449
+ }
450
+
451
+ .wpseotab.active {
452
+ display: block;
453
+ }
454
+
455
+ .wpseotab p.expl {
456
+ margin-left: 6px;
457
+ }
458
+
459
+ .wpseotab .tab-block {
460
+ display: block;
461
+ margin: 30px 0;
462
+ }
463
+
464
+ .wpseotab p.expl strong {
465
+ font-size: 115%;
466
+ }
467
+
468
+ /* Debug Information meta box. */
469
+ #wpseo-debug-info {
470
+ clear: both;
471
+ margin: 20px 0 0;
472
+ padding: 20px 20px 0;
473
+ border: 1px solid #e5e5e5;
474
+ background-color: #fff;
475
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
476
+ }
477
+
478
+ #wpseo-debug-info h2 {
479
+ margin: 0;
480
+ cursor: auto;
481
+ }
482
+
483
+ #wpseo-debug-info .wpseo-debug-heading {
484
+ font-size: 1em;
485
+ }
486
+
487
+ #wpseo-debug-info .wpseo-debug {
488
+ display: inline-block;
489
+ padding-left: 20px;
490
+ color: #c00;
491
+ }
492
+
493
+ /* Bulk editor. */
494
+ input.wpseo-new-title,
495
+ textarea.wpseo-new-metadesc {
496
+ width: 100%;
497
+ max-width: 100%;
498
+ }
499
+
500
+ /* Yoast SEO credits page. */
501
+ body.toplevel_page_wpseo_dashboard .wp-badge {
502
+ background: transparent url(../../images/Yoast_SEO_Icon.svg) no-repeat 50% 10px;
503
+ background-size: 140px 140px;
504
+ box-shadow: none;
505
+ }
506
+
507
+ /* Recalculate score progress bar. Note: currently not used. */
508
+ #wpseo_progressbar {
509
+ height: 25px;
510
+ border: 1px solid #006691;
511
+ }
512
+
513
+ #wpseo_progressbar .ui-progressbar-value {
514
+ height: 25px;
515
+ background: #006691;
516
+ }
517
+
518
+ .wpseo-progressbar-wrapper {
519
+ display: inline;
520
+ width: 100%;
521
+ }
522
+
523
+ .wpseo-progressbar {
524
+ display: block;
525
+ width: 100%;
526
+ height: 25px;
527
+ border: 1px solid #006691;
528
+ }
529
+
530
+ .wpseo-progressbar .ui-progressbar-value {
531
+ height: 25px;
532
+ background: #006691;
533
+ }
534
+
535
+ .archives-titles-metas-content {
536
+ padding-top: 1em;
537
+ }
538
+
539
+ /* Banners sidebar. */
540
+ .yoast-sidebar__title {
541
+ width: 100%;
542
+ margin: 5px 0;
543
+ padding: 10px 0;
544
+ color: #a4286a;
545
+ text-align: left;
546
+ box-sizing: border-box;
547
+ line-height: 19px;
548
+ border-bottom: 1px solid #a4286a;
549
+ }
550
+
551
+ .yoast-sidebar__section {
552
+ box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.3);
553
+ border: 1px solid #dcdcdc;
554
+ background-color: #fff;
555
+ padding: 16px;
556
+ margin: 10px 0 20px 0;
557
+ }
558
+
559
+ .yoast-sidebar__section h2 {
560
+ margin-top: 0;
561
+ color: #a4286a;
562
+ }
563
+
564
+ .yoast-sidebar__section a {
565
+ color: #0085ba;
566
+ }
567
+
568
+ .yoast-sidebar__section ul {
569
+ position: relative;
570
+ }
571
+
572
+ .yoast-sidebar__section li {
573
+ list-style: none;
574
+ margin-left: 20px;
575
+ }
576
+
577
+ .yoast-sidebar__section li::before {
578
+ content: '+';
579
+ position: absolute;
580
+ left: 0;
581
+ font-weight: bold;
582
+ }
583
+
584
+ .yoast-sidebar__section div {
585
+ position: relative;
586
+ margin: 10px 0 20px 0;
587
+ }
588
+
589
+ .yoast-sidebar__section div img {
590
+ float: right;
591
+ width: 70px;
592
+ height: 70px;
593
+ margin: 0 0 0 10px;
594
+ }
595
+
596
+ .yoast-sidebar__section div img.alignleft {
597
+ margin: 0 10px 0 0;
598
+ float: left;
599
+ }
600
+
601
+ .yoast-sidebar__section div p {
602
+ float: left;
603
+ width: 100%;
604
+ margin: 0;
605
+ }
606
+
607
+ .wpseo-banner__link {
608
+ display: inline-block;
609
+ }
610
+
611
+ .wpseo-banner__image {
612
+ vertical-align: top;
613
+ }
614
+
615
+ /*
616
+ * Premium Upsell Admin Block
617
+ * @since 5.1
618
+ */
619
+ .yoast_premium_upsell {
620
+ box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.3);
621
+ border: 1px solid #dcdcdc;
622
+ padding: 16px;
623
+ background-color: #fff;
624
+ max-width: 640px;
625
+ overflow: hidden;
626
+ margin-top: 2em;
627
+ }
628
+
629
+ .yoast_premium_upsell--header {
630
+ color: #A4286A;
631
+ margin-top: 0.3em;
632
+ font-size: 1.7em;
633
+ font-weight: bold;
634
+ }
635
+
636
+ .yoast_premium_upsell--motivation {
637
+ display: flex;
638
+ flex-wrap: wrap;
639
+ }
640
+
641
+ .yoast_premium_upsell--motivation li {
642
+ flex: 0 0 50%;
643
+ list-style: none;
644
+ }
645
+
646
+ .yoast_premium_upsell--argument {
647
+ padding: 0 8px 0 20px;
648
+ }
649
+
650
+ .yoast_premium_upsell--argument::before {
651
+ position: relative;
652
+ left: -16px;
653
+ margin-right: -10px;
654
+ font-weight: bold;
655
+ content: "+";
656
+ top: -1px;
657
+ }
658
+
659
+ @media screen and (max-width: 480px) {
660
+ .yoast_premium_upsell--motivation {
661
+ display: block;
662
+ }
663
+ }
664
+
665
+ .yoast-variable-desc {
666
+ min-width: 300px;
667
+ }
668
+
669
+ .yoast-table-scrollable {
670
+ box-sizing: border-box;
671
+ }
672
+
673
+ .yoast-table-scrollable th,
674
+ .yoast-table-scrollable td {
675
+ box-sizing: border-box;
676
+ }
677
+
678
+ .yoast-table-scrollable__container.yoast-has-scroll {
679
+ position: relative;
680
+ overflow: hidden;
681
+ }
682
+
683
+ .yoast-table-scrollable__container.yoast-has-scroll:after {
684
+ content: '';
685
+ position: absolute;
686
+ top: 0;
687
+ left: 100%;
688
+ width: 50px;
689
+ height: calc( 100% - 16px);
690
+ border-radius: 10px 0 0 10px / 50% 0 0 50%;
691
+ box-shadow: -5px 0 10px rgba(0, 0, 0, 0.25);
692
+ }
693
+
694
+ .yoast-table-scrollable__container.yoast-has-scroll .yoast-table-scrollable__inner {
695
+ overflow-x: scroll;
696
+ padding-bottom: 16px;
697
+ }
698
+
699
+ .yoast-table-scrollable__hintwrapper {
700
+ display: none;
701
+ }
702
+
703
+ .yoast-table-scrollable__hintwrapper.yoast-has-scroll {
704
+ display: block;
705
+ margin: 1em 0;
706
+ text-align: center;
707
+ }
708
+
709
+ .yoast-has-scroll .yoast-table-scrollable__hint {
710
+ display: inline-block;
711
+ }
712
+
713
+ .yoast-has-scroll .yoast-table-scrollable__hint:before {
714
+ content: "\21c4";
715
+ display: inline-block;
716
+ margin-right: 10px;
717
+ font-size: 20px;
718
+ line-height: inherit;
719
+ vertical-align: text-top;
720
+ }
721
+
722
+ /* Styled select. */
723
+ .yoast-styled-select {
724
+ display: inline-flex;
725
+ align-items: center;
726
+ position: relative;
727
+ margin-bottom: 1em;
728
+ }
729
+
730
+ .yoast-styled-select::after, .yoast-styled-select::before {
731
+ content: "";
732
+ position: absolute;
733
+ top: 0;
734
+ bottom: 0;
735
+ pointer-events: none;
736
+ }
737
+
738
+ .yoast-styled-select::before {
739
+ width: 28px;
740
+ right: 0;
741
+ }
742
+
743
+ .yoast-styled-select::after {
744
+ width: 0;
745
+ height: 0;
746
+ border: 4px solid transparent;
747
+ border-top: 5px solid #555;
748
+ border-bottom-width: 0;
749
+ margin: auto;
750
+ right: 6px;
751
+ z-index: 1;
752
+ }
753
+
754
+ .yoast-styled-select select {
755
+ height: 28px;
756
+ box-sizing: border-box;
757
+ margin: 0;
758
+ padding: 4px 32px 4px 8px;
759
+ max-width: 100%;
760
+ appearance: none;
761
+ background: transparent;
762
+ border: 1px solid #aaa;
763
+ border-radius: 4px;
764
+ line-height: 1;
765
+ color: #32373c;
766
+ /* Inherits other focus styles from WordPress */
767
+ /* Reset Firefox selected option inner outline */
768
+ /* Remove the default down arrow in Edge. */
769
+ }
770
+
771
+ .yoast-styled-select select.error {
772
+ border-color: #dc3232;
773
+ border-width: 2px;
774
+ }
775
+
776
+ .wpseo_content_wrapper .yoast-styled-select select.select {
777
+ margin: 0;
778
+ }
779
+
780
+ .yoast-styled-select select:focus {
781
+ border-color: #5b9dd9;
782
+ }
783
+
784
+ .yoast-styled-select select:-moz-focusring {
785
+ color: transparent;
786
+ text-shadow: 0 0 0 #32373c;
787
+ }
788
+
789
+ .yoast-styled-select select[disabled] {
790
+ opacity: .75;
791
+ }
792
+
793
+ .yoast-styled-select select::-ms-expand {
794
+ display: none;
795
+ }
796
+
797
+ /* Responsive layout. */
798
+ @media screen and (max-width: 1024px) {
799
+ .wpseo_content_wrapper,
800
+ .wpseo_content_cell {
801
+ display: block;
802
+ height: auto;
803
+ }
804
+ #wpseo_content_top {
805
+ width: auto;
806
+ }
807
+ #sidebar-container {
808
+ width: auto;
809
+ padding: 0;
810
+ }
811
+ /* Make the banners with product lists appear next to each other. */
812
+ .yoast-sidebar__product-list {
813
+ display: flex;
814
+ border-bottom: 1px solid #ddd;
815
+ }
816
+ .yoast-sidebar__product-list div p {
817
+ word-wrap: break-word;
818
+ width: calc( 100% - 50px);
819
+ }
820
+ .yoast-sidebar__product-list .yoast-sidebar__section {
821
+ border-bottom: none;
822
+ }
823
+ .yoast-sidebar__product-list .yoast-sidebar__section:first-child {
824
+ margin-right: 40px;
825
+ }
826
+ }
827
+
828
+ @media screen and (max-width: 782px) {
829
+ .wpseo_content_wrapper {
830
+ /* Forms. */
831
+ /* Input validation errors */
832
+ }
833
+ .wpseo_content_wrapper label.textinput,
834
+ .wpseo_content_wrapper label.select {
835
+ display: inline-block;
836
+ float: none;
837
+ width: auto;
838
+ }
839
+ .wpseo_content_wrapper input.textinput,
840
+ .wpseo_content_wrapper textarea,
841
+ .wpseo_content_wrapper textarea.textinput {
842
+ display: block;
843
+ width: 100%;
844
+ }
845
+ .wpseo_content_wrapper select,
846
+ .wpseo_content_wrapper select.select,
847
+ .wpseo_content_wrapper .select2-container {
848
+ display: block;
849
+ max-width: 100%;
850
+ margin: 0 0 5px 0;
851
+ }
852
+ .wpseo_content_wrapper p.desc.label,
853
+ .wpseo_content_wrapper div.desc.label {
854
+ padding-left: 0;
855
+ }
856
+ .wpseo_content_wrapper .textinput[aria-invalid="true"][aria-describedby] + br {
857
+ display: none;
858
+ }
859
+ .wpseo_content_wrapper .yoast-input-validation__error-description {
860
+ width: auto;
861
+ padding-left: 0;
862
+ }
863
+ }
864
+
865
+ @media screen and (max-width: 600px) {
866
+ /* Make the banners with product lists appear below each other. */
867
+ .yoast-sidebar__product-list {
868
+ display: block;
869
+ border-bottom: none;
870
+ }
871
+ .yoast-sidebar__product-list .yoast-sidebar__section {
872
+ border-bottom: 1px solid #ddd;
873
+ }
874
+ .yoast-sidebar__product-list .yoast-sidebar__section p {
875
+ word-wrap: break-word;
876
+ width: calc( 100% - 50px);
877
+ padding-left: 50px;
878
+ }
879
+ }
880
+
881
+ @media screen and (max-width: 500px) {
882
+ body.toplevel_page_wpseo_dashboard .wp-badge {
883
+ padding-top: 80px;
884
+ background-size: 100px 100px;
885
+ background-color: #a4286a;
886
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
887
+ }
888
+ }
889
+
890
+ .wpseo-checkmark-ok-icon {
891
+ float: left;
892
+ width: 18px;
893
+ margin-right: 5px;
894
+ height: 18px;
895
+ background: var(--svg-icon-check-ok) no-repeat;
896
+ background-size: 18px;
897
+ vertical-align: top;
898
+ }
899
+
900
+ /*# sourceMappingURL=yst_plugin_tools.css.map */
css/src/yst_seo_score.css ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import url(../src/score_icon.css);
2
+ .wpseo-score-title {
3
+ font-weight: 600;
4
+ }
5
+
6
+ #taxonomy_overall {
7
+ position: absolute;
8
+ top: 0;
9
+ margin-left: 87.5%;
10
+ }
11
+
12
+ /*# sourceMappingURL=yst_seo_score.css.map */
deprecated/admin/ajax/class-yoast-onpage-ajax.php CHANGED
@@ -38,5 +38,4 @@ class Yoast_OnPage_Ajax {
38
  public function dismiss_notice() {
39
  _deprecated_function( __METHOD__, 'WPSEO 13.2' );
40
  }
41
-
42
  }
38
  public function dismiss_notice() {
39
  _deprecated_function( __METHOD__, 'WPSEO 13.2' );
40
  }
 
41
  }
deprecated/admin/config-ui/fields/class-field-google-search-console-intro.php CHANGED
@@ -26,14 +26,13 @@ class WPSEO_Config_Field_Google_Search_Console_Intro extends WPSEO_Config_Field
26
 
27
  parent::__construct( 'googleSearchConsoleIntro', 'HTML' );
28
 
29
- $html =
30
- sprintf(
31
- /* translators: %1$s is the plugin name. %2$s is a link start tag to a Yoast help page, %3$s is the link closing tag. */
32
- esc_html__( '%1$s integrates with Google Search Console, a must-have tool for site owners. It provides you with information about the health of your site. Don\'t have a Google account or is your site not activated yet? Find out %2$show to connect Google Search Console to your site%3$s.', 'wordpress-seo' ),
33
- 'Yoast SEO',
34
- '<a href="' . esc_url( WPSEO_Shortlinker::get( 'https://yoa.st/1ex' ) ) . '" target="_blank">',
35
- '</a>'
36
- );
37
 
38
  $disclaimer = __( 'Note: we don\'t store your data in any way and don\'t have full access to your account. Your privacy is safe with us.', 'wordpress-seo' );
39
 
26
 
27
  parent::__construct( 'googleSearchConsoleIntro', 'HTML' );
28
 
29
+ $html = sprintf(
30
+ /* translators: %1$s is the plugin name. %2$s is a link start tag to a Yoast help page, %3$s is the link closing tag. */
31
+ esc_html__( '%1$s integrates with Google Search Console, a must-have tool for site owners. It provides you with information about the health of your site. Don\'t have a Google account or is your site not activated yet? Find out %2$show to connect Google Search Console to your site%3$s.', 'wordpress-seo' ),
32
+ 'Yoast SEO',
33
+ '<a href="' . esc_url( WPSEO_Shortlinker::get( 'https://yoa.st/1ex' ) ) . '" target="_blank">',
34
+ '</a>'
35
+ );
 
36
 
37
  $disclaimer = __( 'Note: we don\'t store your data in any way and don\'t have full access to your account. Your privacy is safe with us.', 'wordpress-seo' );
38
 
deprecated/admin/links/class-link-compatibility-notifier.php CHANGED
@@ -43,7 +43,7 @@ class WPSEO_Link_Compatibility_Notifier {
43
  */
44
  protected function get_notification() {
45
  _deprecated_function( __METHOD__, 'WPSEO 13.1' );
46
-
47
  return null;
48
  }
49
  }
43
  */
44
  protected function get_notification() {
45
  _deprecated_function( __METHOD__, 'WPSEO 13.1' );
46
+
47
  return null;
48
  }
49
  }
deprecated/admin/links/class-link-table-accessible-notifier.php ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * WPSEO plugin file.
4
+ *
5
+ * @package WPSEO\Admin\Links
6
+ */
7
+
8
+ /**
9
+ * Represents the notice when the table is not accessible.
10
+ */
11
+ class WPSEO_Link_Table_Accessible_Notifier {
12
+
13
+ /**
14
+ * Adds the notification to the notification center.
15
+ *
16
+ * @deprecated 14.1
17
+ *
18
+ * @codeCoverageIgnore
19
+ */
20
+ public function add_notification() {
21
+ _deprecated_function( __METHOD__, 'WPSEO 14.1' );
22
+ }
23
+
24
+ /**
25
+ * Removes the notification from the notification center.
26
+ *
27
+ * @deprecated 14.1
28
+ *
29
+ * @codeCoverageIgnore
30
+ */
31
+ public function remove_notification() {
32
+ _deprecated_function( __METHOD__, 'WPSEO 14.1' );
33
+ }
34
+
35
+ /**
36
+ * Returns the notification when the table is not accessible.
37
+ *
38
+ * @deprecated 14.1
39
+ *
40
+ * @codeCoverageIgnore
41
+ *
42
+ * @return Yoast_Notification The notification.
43
+ */
44
+ protected function get_notification() {
45
+ _deprecated_function( __METHOD__, 'WPSEO 14.1' );
46
+
47
+ return null;
48
+ }
49
+ }
deprecated/admin/notifiers/class-post-type-archive-notification-handler.php ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * WPSEO plugin file.
4
+ *
5
+ * @package WPSEO\Admin\Notifiers
6
+ */
7
+
8
+ /**
9
+ * Represents the logic for showing the post type archive notification.
10
+ *
11
+ * @deprecated 14.1
12
+ */
13
+ class WPSEO_Post_Type_Archive_Notification_Handler extends WPSEO_Dismissible_Notification {
14
+
15
+ /**
16
+ * Defaults for the title option.
17
+ *
18
+ * @var array
19
+ */
20
+ protected $option_defaults = [];
21
+
22
+ /**
23
+ * Sets the notification identifier.
24
+ *
25
+ * @deprecated 14.1
26
+ * @codeCoverageIgnore
27
+ *
28
+ * @return void
29
+ */
30
+ public function __construct() {
31
+ _deprecated_function( __METHOD__, 'WPSEO 14.1' );
32
+ }
33
+
34
+ /**
35
+ * Returns the notification.
36
+ *
37
+ * @deprecated 14.1
38
+ * @codeCoverageIgnore
39
+ *
40
+ * @return Yoast_Notification The notification for the notification center.
41
+ */
42
+ protected function get_notification() {
43
+ _deprecated_function( __METHOD__, 'WPSEO 14.1' );
44
+
45
+ return null;
46
+ }
47
+ }
deprecated/admin/onpage/class-onpage-option.php CHANGED
@@ -14,7 +14,7 @@ _deprecated_file( __FILE__, 'WPSEO 13.2' );
14
  * @deprecated 13.2
15
  * @codeCoverageIgnore
16
  */
17
- class WPSEO_OnPage_Option extends WPSEO_Ryte_Option {
18
 
19
  /**
20
  * Setting the object by setting the properties.
@@ -25,5 +25,4 @@ class WPSEO_OnPage_Option extends WPSEO_Ryte_Option {
25
  public function __construct() {
26
  _deprecated_function( __METHOD__, 'WPSEO 13.2', WPSEO_Ryte_Option::class );
27
  }
28
-
29
  }
14
  * @deprecated 13.2
15
  * @codeCoverageIgnore
16
  */
17
+ class WPSEO_OnPage_Option extends WPSEO_Ryte_Option {
18
 
19
  /**
20
  * Setting the object by setting the properties.
25
  public function __construct() {
26
  _deprecated_function( __METHOD__, 'WPSEO 13.2', WPSEO_Ryte_Option::class );
27
  }
 
28
  }
deprecated/admin/onpage/class-onpage.php CHANGED
@@ -26,7 +26,6 @@ class WPSEO_OnPage extends WPSEO_Ryte implements WPSEO_WordPress_Integration {
26
  _deprecated_function( __METHOD__, 'WPSEO 13.2', WPSEO_Ryte::class );
27
  }
28
 
29
-
30
  /**
31
  * Shows a notice when the website is not indexable.
32
  *
26
  _deprecated_function( __METHOD__, 'WPSEO 13.2', WPSEO_Ryte::class );
27
  }
28
 
 
29
  /**
30
  * Shows a notice when the website is not indexable.
31
  *
deprecated/frontend/class-opengraph.php CHANGED
@@ -223,7 +223,7 @@ class WPSEO_OpenGraph {
223
  public function facebook_filter( $meta_tags ) {
224
  _deprecated_function( __METHOD__, 'WPSEO 14.0' );
225
 
226
- return array();
227
  }
228
 
229
  /**
@@ -259,7 +259,7 @@ class WPSEO_OpenGraph {
259
  *
260
  * @deprecated 14.0
261
  * @codeCoverageIgnore
262
-
263
  * @param string|bool $image Optional. Image URL.
264
  *
265
  * @return void
223
  public function facebook_filter( $meta_tags ) {
224
  _deprecated_function( __METHOD__, 'WPSEO 14.0' );
225
 
226
+ return [];
227
  }
228
 
229
  /**
259
  *
260
  * @deprecated 14.0
261
  * @codeCoverageIgnore
262
+ *
263
  * @param string|bool $image Optional. Image URL.
264
  *
265
  * @return void
deprecated/frontend/class-primary-category.php CHANGED
@@ -16,7 +16,7 @@ class WPSEO_Frontend_Primary_Category implements WPSEO_WordPress_Integration {
16
  * Registers the hooks necessary for correct primary category behaviour.
17
  */
18
  public function register_hooks() {
19
- add_filter( 'post_link_category', array( $this, 'post_link_category' ), 10, 3 );
20
  }
21
 
22
  /**
16
  * Registers the hooks necessary for correct primary category behaviour.
17
  */
18
  public function register_hooks() {
19
+ add_filter( 'post_link_category', [ $this, 'post_link_category' ], 10, 3 );
20
  }
21
 
22
  /**
deprecated/frontend/class-twitter.php CHANGED
@@ -26,7 +26,7 @@ class WPSEO_Twitter {
26
  *
27
  * @var array
28
  */
29
- public $shown_images = array();
30
 
31
  /**
32
  * Class constructor.
26
  *
27
  * @var array
28
  */
29
+ public $shown_images = [];
30
 
31
  /**
32
  * Class constructor.
deprecated/frontend/frontend.php CHANGED
@@ -19,6 +19,7 @@ use Yoast\WP\SEO\Surfaces\Helpers_Surface;
19
  * @codeCoverageIgnore Because of deprecation.
20
  */
21
  class WPSEO_Frontend {
 
22
  /**
23
  * Instance of this class.
24
  *
@@ -207,7 +208,7 @@ class WPSEO_Frontend {
207
  public function add_to_title( $sep, $seplocation, $title, $title_part ) {
208
  _deprecated_function( __METHOD__, 'WPSEO 14.0' );
209
 
210
- if ( 'right' === $seplocation ) {
211
  return $title . $sep . $title_part;
212
  }
213
 
@@ -224,13 +225,13 @@ class WPSEO_Frontend {
224
 
225
  $presentation = $this->get_current_page_presentation();
226
 
227
- $rel_prev_presenter = new Rel_Prev_Presenter();
228
  $rel_prev_presenter->presentation = $presentation;
229
  $rel_prev_presenter->helpers = $this->helpers;
230
  $rel_prev_presenter->replace_vars = $this->replace_vars;
231
  echo $rel_prev_presenter->present();
232
 
233
- $rel_next_presenter = new Rel_Next_Presenter();
234
  $rel_next_presenter->presentation = $presentation;
235
  $rel_next_presenter->helpers = $this->helpers;
236
  $rel_next_presenter->replace_vars = $this->replace_vars;
@@ -253,7 +254,7 @@ class WPSEO_Frontend {
253
  return $presentation->meta_description;
254
  }
255
 
256
- $presenter = new Meta_Description_Presenter();
257
  $presenter->presentation = $presentation;
258
  $presenter->helpers = $this->helpers;
259
  $presenter->replace_vars = $this->replace_vars;
19
  * @codeCoverageIgnore Because of deprecation.
20
  */
21
  class WPSEO_Frontend {
22
+
23
  /**
24
  * Instance of this class.
25
  *
208
  public function add_to_title( $sep, $seplocation, $title, $title_part ) {
209
  _deprecated_function( __METHOD__, 'WPSEO 14.0' );
210
 
211
+ if ( $seplocation === 'right' ) {
212
  return $title . $sep . $title_part;
213
  }
214
 
225
 
226
  $presentation = $this->get_current_page_presentation();
227
 
228
+ $rel_prev_presenter = new Rel_Prev_Presenter();
229
  $rel_prev_presenter->presentation = $presentation;
230
  $rel_prev_presenter->helpers = $this->helpers;
231
  $rel_prev_presenter->replace_vars = $this->replace_vars;
232
  echo $rel_prev_presenter->present();
233
 
234
+ $rel_next_presenter = new Rel_Next_Presenter();
235
  $rel_next_presenter->presentation = $presentation;
236
  $rel_next_presenter->helpers = $this->helpers;
237
  $rel_next_presenter->replace_vars = $this->replace_vars;
254
  return $presentation->meta_description;
255
  }
256
 
257
+ $presenter = new Meta_Description_Presenter();
258
  $presenter->presentation = $presentation;
259
  $presenter->helpers = $this->helpers;
260
  $presenter->replace_vars = $this->replace_vars;
deprecated/frontend/schema/class-schema-author.php CHANGED
@@ -116,8 +116,8 @@ class WPSEO_Schema_Author extends Author implements WPSEO_Graph_Piece {
116
  _deprecated_function( __METHOD__, 'WPSEO 14.0' );
117
 
118
  return (
119
- $this->context->indexable->object_type === 'post' &&
120
- $this->helpers->schema->article->is_article_post_type( $this->context->indexable->object_sub_type )
121
  );
122
  }
123
 
116
  _deprecated_function( __METHOD__, 'WPSEO 14.0' );
117
 
118
  return (
119
+ $this->context->indexable->object_type === 'post'
120
+ && $this->helpers->schema->article->is_article_post_type( $this->context->indexable->object_sub_type )
121
  );
122
  }
123
 
deprecated/frontend/schema/class-schema-howto.php CHANGED
@@ -33,7 +33,7 @@ class WPSEO_Schema_HowTo extends HowTo implements WPSEO_Graph_Piece {
33
  * @deprecated 14.0
34
  */
35
  public function __construct( $context = null ) {
36
- _deprecated_function( __METHOD__, 'WPSEO 14.0', 'Yoast\WP\SEO\Generators\Schema\HowTo' );
37
 
38
  $memoizer = YoastSEO()->classes->get( Meta_Tags_Context_Memoizer::class );
39
  $this->context = $memoizer->for_current_page();
@@ -68,7 +68,7 @@ class WPSEO_Schema_HowTo extends HowTo implements WPSEO_Graph_Piece {
68
  public function render( $graph, $block ) {
69
  _deprecated_function( __METHOD__, 'WPSEO 14.0', 'Yoast\WP\SEO\Generators\Schema\HowTo::add_how_to' );
70
 
71
- $this->counter++;
72
  $this->add_how_to( $graph, $block, $this->counter );
73
 
74
  return $graph;
33
  * @deprecated 14.0
34
  */
35
  public function __construct( $context = null ) {
36
+ _deprecated_function( __METHOD__, 'WPSEO 14.0', 'Yoast\WP\SEO\Generators\Schema\HowTo' );
37
 
38
  $memoizer = YoastSEO()->classes->get( Meta_Tags_Context_Memoizer::class );
39
  $this->context = $memoizer->for_current_page();
68
  public function render( $graph, $block ) {
69
  _deprecated_function( __METHOD__, 'WPSEO 14.0', 'Yoast\WP\SEO\Generators\Schema\HowTo::add_how_to' );
70
 
71
+ ++$this->counter;
72
  $this->add_how_to( $graph, $block, $this->counter );
73
 
74
  return $graph;
deprecated/frontend/schema/class-schema-main-image.php CHANGED
@@ -27,7 +27,7 @@ class WPSEO_Schema_MainImage extends Main_Image implements WPSEO_Graph_Piece {
27
  * @deprecated 14.0
28
  */
29
  public function __construct( $context = null ) {
30
- _deprecated_function( __METHOD__, 'WPSEO 14.0', 'Yoast\WP\SEO\Generators\Schema\Main_Image' );
31
 
32
  $memoizer = YoastSEO()->classes->get( Meta_Tags_Context_Memoizer::class );
33
  $this->context = $memoizer->for_current_page();
27
  * @deprecated 14.0
28
  */
29
  public function __construct( $context = null ) {
30
+ _deprecated_function( __METHOD__, 'WPSEO 14.0', 'Yoast\WP\SEO\Generators\Schema\Main_Image' );
31
 
32
  $memoizer = YoastSEO()->classes->get( Meta_Tags_Context_Memoizer::class );
33
  $this->context = $memoizer->for_current_page();
images/alert-error-icon.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" role="img" aria-hidden="true" fill="#8f1919" width="14" height="14" focusable="false"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z"/></svg>
images/alert-info-icon.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" role="img" aria-hidden="true" fill="#00468f" width="14" height="14" focusable="false"><path d="M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z"/></svg>
images/alert-success-icon.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" role="img" aria-hidden="true" fill="#395315" width="14" height="14" focusable="false"><path d="M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"/></svg>
images/alert-warning-icon.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" role="img" aria-hidden="true" fill="#674e00" width="14" height="14" focusable="false"><path d="M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"/></svg>
inc/class-addon-manager.php CHANGED
@@ -258,10 +258,9 @@ class WPSEO_Addon_Manager {
258
  'homepage' => $subscription->product->store_url,
259
  'download_link' => $subscription->product->download,
260
  'package' => $subscription->product->download,
261
- 'sections' =>
262
- [
263
- 'changelog' => $subscription->product->changelog,
264
- ],
265
  ];
266
  }
267
 
258
  'homepage' => $subscription->product->store_url,
259
  'download_link' => $subscription->product->download,
260
  'package' => $subscription->product->download,
261
+ 'sections' => [
262
+ 'changelog' => $subscription->product->changelog,
263
+ ],
 
264
  ];
265
  }
266
 
inc/class-upgrade.php CHANGED
@@ -5,6 +5,8 @@
5
  * @package WPSEO\Internal
6
  */
7
 
 
 
8
  /**
9
  * This code handles the option upgrades.
10
  */
@@ -54,6 +56,7 @@ class WPSEO_Upgrade {
54
  '12.8-RC0' => 'upgrade_128',
55
  '13.2-RC0' => 'upgrade_132',
56
  '14.0.3-RC0' => 'upgrade_1403',
 
57
  ];
58
 
59
  array_walk( $routines, [ $this, 'run_upgrade_routine' ], $version );
@@ -743,6 +746,78 @@ class WPSEO_Upgrade {
743
  WPSEO_Options::set( 'ignore_indexation_warning', false );
744
  }
745
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
746
  /**
747
  * Removes all notifications saved in the database under 'wp_yoast_notifications'.
748
  *
5
  * @package WPSEO\Internal
6
  */
7
 
8
+ use Yoast\WP\Lib\Model;
9
+
10
  /**
11
  * This code handles the option upgrades.
12
  */
56
  '12.8-RC0' => 'upgrade_128',
57
  '13.2-RC0' => 'upgrade_132',
58
  '14.0.3-RC0' => 'upgrade_1403',
59
+ '14.1-RC0' => 'upgrade_141',
60
  ];
61
 
62
  array_walk( $routines, [ $this, 'run_upgrade_routine' ], $version );
746
  WPSEO_Options::set( 'ignore_indexation_warning', false );
747
  }
748
 
749
+ /**
750
+ * Performs the 14.1 upgrade.
751
+ */
752
+ private function upgrade_141() {
753
+ /*
754
+ * These notifications are retrieved from storage on the `init` hook with
755
+ * priority 1. We need to remove them after they're retrieved.
756
+ */
757
+ add_action( 'init', [ $this, 'remove_notifications_for_141' ] );
758
+ add_action( 'init', [ $this, 'clean_up_private_taxonomies_for_141' ] );
759
+
760
+ $this->reset_permalinks_of_attachments_for_141();
761
+ }
762
+
763
+ /**
764
+ * Cleans up the private taxonomies from the indexables table for the upgrade routine to 14.1.
765
+ */
766
+ public function clean_up_private_taxonomies_for_141() {
767
+ global $wpdb;
768
+
769
+ // If migrations haven't been completed succesfully the following may give false errors. So suppress them.
770
+ $show_errors = $wpdb->show_errors;
771
+ $wpdb->show_errors = false;
772
+
773
+ // Clean up indexables of private taxonomies.
774
+ $private_taxonomies = \get_taxonomies( [ 'public' => false ], 'names' );
775
+
776
+ if ( empty( $private_taxonomies ) ) {
777
+ return;
778
+ }
779
+
780
+ $placeholders = \implode( ', ', \array_fill( 0, \count( $private_taxonomies ), '%s' ) );
781
+ $indexable_table = Model::get_table_name( 'Indexable' );
782
+ $query = $wpdb->prepare(
783
+ "DELETE FROM $indexable_table WHERE object_type = 'term' AND object_sub_type IN ($placeholders)",
784
+ $private_taxonomies
785
+ );
786
+ $wpdb->query( $query );
787
+
788
+ $wpdb->show_errors = $show_errors;
789
+ }
790
+
791
+ /**
792
+ * Resets the permalinks of attachments to `null` in the indexable table for the upgrade routine to 14.1.
793
+ */
794
+ private function reset_permalinks_of_attachments_for_141() {
795
+ global $wpdb;
796
+
797
+ // If migrations haven't been completed succesfully the following may give false errors. So suppress them.
798
+ $show_errors = $wpdb->show_errors;
799
+ $wpdb->show_errors = false;
800
+
801
+ // Reset the permalinks of the attachments in the indexable table.
802
+ $indexable_table = Model::get_table_name( 'Indexable' );
803
+ $query = "UPDATE $indexable_table SET permalink = NULL WHERE object_type = 'post' AND object_sub_type = 'attachment'";
804
+ $wpdb->query( $query );
805
+
806
+ $wpdb->show_errors = $show_errors;
807
+ }
808
+
809
+ /**
810
+ * Removes notifications from the Notification center for the 14.1 upgrade.
811
+ *
812
+ * @return void
813
+ */
814
+ public function remove_notifications_for_141() {
815
+ Yoast_Notification_Center::get()->remove_notification_by_id( 'wpseo-dismiss-recalculate' );
816
+ Yoast_Notification_Center::get()->remove_notification_by_id( 'wpseo-dismiss-blog-public-notice' );
817
+ Yoast_Notification_Center::get()->remove_notification_by_id( 'wpseo-links-table-not-accessible' );
818
+ Yoast_Notification_Center::get()->remove_notification_by_id( 'wpseo-post-type-archive-notification' );
819
+ }
820
+
821
  /**
822
  * Removes all notifications saved in the database under 'wp_yoast_notifications'.
823
  *
inc/class-wpseo-admin-bar-menu.php CHANGED
@@ -158,10 +158,10 @@ class WPSEO_Admin_Bar_Menu implements WPSEO_WordPress_Integration {
158
  protected function add_root_menu( WP_Admin_Bar $wp_admin_bar ) {
159
  $title = $this->get_title();
160
 
161
- $score = '';
162
- $settings_url = '';
163
- $counter = '';
164
- $alert_popup = '';
165
 
166
  $post = $this->get_singular_post();
167
  if ( $post ) {
@@ -180,13 +180,13 @@ class WPSEO_Admin_Bar_Menu implements WPSEO_WordPress_Integration {
180
  }
181
 
182
  if ( empty( $score ) && ! is_network_admin() && $can_manage_options ) {
183
- $counter = $this->get_notification_counter();
184
- $alert_popup = $this->get_notification_alert_popup();
185
  }
186
 
187
  $admin_bar_menu_args = [
188
  'id' => self::MENU_IDENTIFIER,
189
- 'title' => $title . $score . $counter . $alert_popup,
190
  'href' => $settings_url,
191
  'meta' => [ 'tabindex' => ! empty( $settings_url ) ? false : '0' ],
192
  ];
@@ -645,11 +645,11 @@ class WPSEO_Admin_Bar_Menu implements WPSEO_WordPress_Integration {
645
  }
646
 
647
  /**
648
- * Gets the notification alert popup if in a valid context.
649
  *
650
- * @return string Notification alert popup markup, or empty string if not available.
651
  */
652
- protected function get_notification_alert_popup() {
653
  $notification_center = Yoast_Notification_Center::get();
654
  $new_notifications = $notification_center->get_new_notifications();
655
  $new_notifications_count = count( $new_notifications );
158
  protected function add_root_menu( WP_Admin_Bar $wp_admin_bar ) {
159
  $title = $this->get_title();
160
 
161
+ $score = '';
162
+ $settings_url = '';
163
+ $counter = '';
164
+ $notification_popup = '';
165
 
166
  $post = $this->get_singular_post();
167
  if ( $post ) {
180
  }
181
 
182
  if ( empty( $score ) && ! is_network_admin() && $can_manage_options ) {
183
+ $counter = $this->get_notification_counter();
184
+ $notification_popup = $this->get_notification_popup();
185
  }
186
 
187
  $admin_bar_menu_args = [
188
  'id' => self::MENU_IDENTIFIER,
189
+ 'title' => $title . $score . $counter . $notification_popup,
190
  'href' => $settings_url,
191
  'meta' => [ 'tabindex' => ! empty( $settings_url ) ? false : '0' ],
192
  ];
645
  }
646
 
647
  /**
648
+ * Gets the notification popup if in a valid context.
649
  *
650
+ * @return string Notification popup markup, or empty string if not available.
651
  */
652
+ protected function get_notification_popup() {
653
  $notification_center = Yoast_Notification_Center::get();
654
  $new_notifications = $notification_center->get_new_notifications();
655
  $new_notifications_count = count( $new_notifications );
inc/class-wpseo-meta.php CHANGED
@@ -142,7 +142,7 @@ class WPSEO_Meta {
142
  ],
143
  'advanced' => [
144
  'meta-robots-noindex' => [
145
- 'type' => 'select',
146
  'title' => '', // Translation added later.
147
  'default_value' => '0', // = post-type default.
148
  'options' => [
@@ -152,7 +152,7 @@ class WPSEO_Meta {
152
  ],
153
  ],
154
  'meta-robots-nofollow' => [
155
- 'type' => 'radio',
156
  'title' => '', // Translation added later.
157
  'default_value' => '0', // = follow.
158
  'options' => [
@@ -161,7 +161,7 @@ class WPSEO_Meta {
161
  ],
162
  ],
163
  'meta-robots-adv' => [
164
- 'type' => 'multiselect',
165
  'title' => '', // Translation added later.
166
  'default_value' => '',
167
  'description' => '', // Translation added later.
@@ -172,13 +172,13 @@ class WPSEO_Meta {
172
  ],
173
  ],
174
  'bctitle' => [
175
- 'type' => 'text',
176
  'title' => '', // Translation added later.
177
  'default_value' => '',
178
  'description' => '', // Translation added later.
179
  ],
180
  'canonical' => [
181
- 'type' => 'url',
182
  'title' => '', // Translation added later.
183
  'default_value' => '',
184
  'description' => '', // Translation added later.
@@ -411,12 +411,12 @@ class WPSEO_Meta {
411
  break;
412
 
413
 
414
- case ( $field_def['type'] === 'multiselect' && $meta_key === self::$meta_prefix . 'meta-robots-adv' ):
415
  $clean = self::validate_meta_robots_adv( $meta_value );
416
  break;
417
 
418
 
419
- case ( $field_def['type'] === 'url' ):
420
  // Validate as url(-part).
421
  $url = WPSEO_Utils::sanitize_url( $meta_value );
422
  if ( $url !== '' ) {
@@ -445,6 +445,13 @@ class WPSEO_Meta {
445
  }
446
  break;
447
 
 
 
 
 
 
 
 
448
  case ( $field_def['type'] === 'textarea' ):
449
  if ( is_string( $meta_value ) ) {
450
  // Remove line breaks and tabs.
142
  ],
143
  'advanced' => [
144
  'meta-robots-noindex' => [
145
+ 'type' => 'hidden',
146
  'title' => '', // Translation added later.
147
  'default_value' => '0', // = post-type default.
148
  'options' => [
152
  ],
153
  ],
154
  'meta-robots-nofollow' => [
155
+ 'type' => 'hidden',
156
  'title' => '', // Translation added later.
157
  'default_value' => '0', // = follow.
158
  'options' => [
161
  ],
162
  ],
163
  'meta-robots-adv' => [
164
+ 'type' => 'hidden',
165
  'title' => '', // Translation added later.
166
  'default_value' => '',
167
  'description' => '', // Translation added later.
172
  ],
173
  ],
174
  'bctitle' => [
175
+ 'type' => 'hidden',
176
  'title' => '', // Translation added later.
177
  'default_value' => '',
178
  'description' => '', // Translation added later.
179
  ],
180
  'canonical' => [
181
+ 'type' => 'hidden',
182
  'title' => '', // Translation added later.
183
  'default_value' => '',
184
  'description' => '', // Translation added later.
411
  break;
412
 
413
 
414
+ case ( $field_def['type'] === 'hidden' && $meta_key === self::$meta_prefix . 'meta-robots-adv' ):
415
  $clean = self::validate_meta_robots_adv( $meta_value );
416
  break;
417
 
418
 
419
+ case ( $field_def['type'] === 'url' || $meta_key === self::$meta_prefix . 'canonical' ):
420
  // Validate as url(-part).
421
  $url = WPSEO_Utils::sanitize_url( $meta_value );
422
  if ( $url !== '' ) {
445
  }
446
  break;
447
 
448
+ case ( $field_def['type'] === 'hidden' && isset( $field_def['options'] ) ):
449
+ // Only allow value if it's one of the predefined options.
450
+ if ( isset( $field_def['options'][ $meta_value ] ) ) {
451
+ $clean = $meta_value;
452
+ }
453
+ break;
454
+
455
  case ( $field_def['type'] === 'textarea' ):
456
  if ( is_string( $meta_value ) ) {
457
  // Remove line breaks and tabs.
inc/class-wpseo-replace-vars.php CHANGED
@@ -284,11 +284,11 @@ class WPSEO_Replace_Vars {
284
  if ( ! empty( $this->args->ID ) ) {
285
  $cat = $this->get_terms( $this->args->ID, 'category' );
286
  if ( $cat !== '' ) {
287
- $replacement = $cat;
288
  }
289
  }
290
 
291
- if ( ( ! isset( $replacement ) || $replacement === '' ) && ( isset( $this->args->cat_name ) && ! empty( $this->args->cat_name ) ) ) {
292
  $replacement = $this->args->cat_name;
293
  }
294
 
@@ -391,7 +391,7 @@ class WPSEO_Replace_Vars {
391
  private function retrieve_parent_title() {
392
  $replacement = null;
393
 
394
- if ( ! isset( $replacement ) && ( ( is_singular() || is_admin() ) && isset( $GLOBALS['post'] ) ) ) {
395
  if ( isset( $GLOBALS['post']->post_parent ) && $GLOBALS['post']->post_parent !== 0 ) {
396
  $replacement = get_the_title( $GLOBALS['post']->post_parent );
397
  }
@@ -408,11 +408,9 @@ class WPSEO_Replace_Vars {
408
  private function retrieve_searchphrase() {
409
  $replacement = null;
410
 
411
- if ( ! isset( $replacement ) ) {
412
- $search = get_query_var( 's' );
413
- if ( $search !== '' ) {
414
- $replacement = esc_html( $search );
415
- }
416
  }
417
 
418
  return $replacement;
@@ -430,6 +428,9 @@ class WPSEO_Replace_Vars {
430
  /**
431
  * Retrieve the site's tag line / description for use as replacement string.
432
  *
 
 
 
433
  * @return string|null
434
  */
435
  private function retrieve_sitedesc() {
@@ -448,6 +449,9 @@ class WPSEO_Replace_Vars {
448
  /**
449
  * Retrieve the site's name for use as replacement string.
450
  *
 
 
 
451
  * @return string|null
452
  */
453
  private function retrieve_sitename() {
@@ -706,6 +710,13 @@ class WPSEO_Replace_Vars {
706
  $replacement = $name;
707
  }
708
  }
 
 
 
 
 
 
 
709
  }
710
 
711
  return $replacement;
@@ -766,6 +777,9 @@ class WPSEO_Replace_Vars {
766
  /**
767
  * Retrieve the current date for use as replacement string.
768
  *
 
 
 
769
  * @return string The formatted current date.
770
  */
771
  private function retrieve_currentdate() {
@@ -781,6 +795,9 @@ class WPSEO_Replace_Vars {
781
  /**
782
  * Retrieve the current day for use as replacement string.
783
  *
 
 
 
784
  * @return string The current day.
785
  */
786
  private function retrieve_currentday() {
@@ -796,6 +813,9 @@ class WPSEO_Replace_Vars {
796
  /**
797
  * Retrieve the current month for use as replacement string.
798
  *
 
 
 
799
  * @return string The current month.
800
  */
801
  private function retrieve_currentmonth() {
@@ -811,6 +831,9 @@ class WPSEO_Replace_Vars {
811
  /**
812
  * Retrieve the current time for use as replacement string.
813
  *
 
 
 
814
  * @return string The formatted current time.
815
  */
816
  private function retrieve_currenttime() {
@@ -826,6 +849,9 @@ class WPSEO_Replace_Vars {
826
  /**
827
  * Retrieve the current year for use as replacement string.
828
  *
 
 
 
829
  * @return string The current year.
830
  */
831
  private function retrieve_currentyear() {
@@ -1360,7 +1386,7 @@ class WPSEO_Replace_Vars {
1360
  private function retrieve_term_hierarchy() {
1361
  $replacement = null;
1362
 
1363
- if ( ! isset( $replacement ) && isset( $this->args->term_id ) && ! empty( $this->args->taxonomy ) ) {
1364
  $hierarchy = $this->get_term_hierarchy();
1365
 
1366
  if ( $hierarchy !== '' ) {
284
  if ( ! empty( $this->args->ID ) ) {
285
  $cat = $this->get_terms( $this->args->ID, 'category' );
286
  if ( $cat !== '' ) {
287
+ return $cat;
288
  }
289
  }
290
 
291
+ if ( isset( $this->args->cat_name ) && ! empty( $this->args->cat_name ) ) {
292
  $replacement = $this->args->cat_name;
293
  }
294
 
391
  private function retrieve_parent_title() {
392
  $replacement = null;
393
 
394
+ if ( ( is_singular() || is_admin() ) && isset( $GLOBALS['post'] ) ) {
395
  if ( isset( $GLOBALS['post']->post_parent ) && $GLOBALS['post']->post_parent !== 0 ) {
396
  $replacement = get_the_title( $GLOBALS['post']->post_parent );
397
  }
408
  private function retrieve_searchphrase() {
409
  $replacement = null;
410
 
411
+ $search = get_query_var( 's' );
412
+ if ( $search !== '' ) {
413
+ $replacement = esc_html( $search );
 
 
414
  }
415
 
416
  return $replacement;
428
  /**
429
  * Retrieve the site's tag line / description for use as replacement string.
430
  *
431
+ * The `$replacement` variable is static because it doesn't change depending
432
+ * on the context. See https://github.com/Yoast/wordpress-seo/pull/1172#issuecomment-46019482.
433
+ *
434
  * @return string|null
435
  */
436
  private function retrieve_sitedesc() {
449
  /**
450
  * Retrieve the site's name for use as replacement string.
451
  *
452
+ * The `$replacement` variable is static because it doesn't change depending
453
+ * on the context. See https://github.com/Yoast/wordpress-seo/pull/1172#issuecomment-46019482.
454
+ *
455
  * @return string|null
456
  */
457
  private function retrieve_sitename() {
710
  $replacement = $name;
711
  }
712
  }
713
+ elseif ( is_category() || is_tag() || is_tax() ) {
714
+ $term = $GLOBALS['wp_query']->get_queried_object();
715
+ $name = get_term_meta( $term->term_id, $field, true );
716
+ if ( $name !== '' ) {
717
+ $replacement = $name;
718
+ }
719
+ }
720
  }
721
 
722
  return $replacement;
777
  /**
778
  * Retrieve the current date for use as replacement string.
779
  *
780
+ * The `$replacement` variable is static because it doesn't change depending
781
+ * on the context. See https://github.com/Yoast/wordpress-seo/pull/1172#issuecomment-46019482.
782
+ *
783
  * @return string The formatted current date.
784
  */
785
  private function retrieve_currentdate() {
795
  /**
796
  * Retrieve the current day for use as replacement string.
797
  *
798
+ * The `$replacement` variable is static because it doesn't change depending
799
+ * on the context. See https://github.com/Yoast/wordpress-seo/pull/1172#issuecomment-46019482.
800
+ *
801
  * @return string The current day.
802
  */
803
  private function retrieve_currentday() {
813
  /**
814
  * Retrieve the current month for use as replacement string.
815
  *
816
+ * The `$replacement` variable is static because it doesn't change depending
817
+ * on the context. See https://github.com/Yoast/wordpress-seo/pull/1172#issuecomment-46019482.
818
+ *
819
  * @return string The current month.
820
  */
821
  private function retrieve_currentmonth() {
831
  /**
832
  * Retrieve the current time for use as replacement string.
833
  *
834
+ * The `$replacement` variable is static because it doesn't change depending
835
+ * on the context. See https://github.com/Yoast/wordpress-seo/pull/1172#issuecomment-46019482.
836
+ *
837
  * @return string The formatted current time.
838
  */
839
  private function retrieve_currenttime() {
849
  /**
850
  * Retrieve the current year for use as replacement string.
851
  *
852
+ * The `$replacement` variable is static because it doesn't change depending
853
+ * on the context. See https://github.com/Yoast/wordpress-seo/pull/1172#issuecomment-46019482.
854
+ *
855
  * @return string The current year.
856
  */
857
  private function retrieve_currentyear() {
1386
  private function retrieve_term_hierarchy() {
1387
  $replacement = null;
1388
 
1389
+ if ( isset( $this->args->term_id ) && ! empty( $this->args->taxonomy ) ) {
1390
  $hierarchy = $this->get_term_hierarchy();
1391
 
1392
  if ( $hierarchy !== '' ) {
inc/class-wpseo-utils.php CHANGED
@@ -308,7 +308,6 @@ class WPSEO_Utils {
308
  * @param string $filtered The sanitized string.
309
  * @param string $str The string prior to being sanitized.
310
  */
311
-
312
  return apply_filters( 'sanitize_text_field', $filtered, $value );
313
  }
314
 
@@ -690,7 +689,7 @@ class WPSEO_Utils {
690
  $result = bccomp( $number1, $number2, $precision ); // Returns int 0, 1 or -1.
691
  }
692
  else {
693
- $result = ( $number1 == $number2 ) ? 0 : ( ( $number1 > $number2 ) ? 1 : - 1 );
694
  }
695
  break;
696
  }
@@ -982,7 +981,7 @@ class WPSEO_Utils {
982
  * @return string
983
  */
984
  public static function traffic_light_svg() {
985
- return <<<SVG
986
  <svg class="yst-traffic-light init" version="1.1" xmlns="http://www.w3.org/2000/svg"
987
  role="img" aria-hidden="true" focusable="false"
988
  x="0px" y="0px" viewBox="0 0 30 47" enable-background="new 0 0 30 47" xml:space="preserve">
@@ -1136,13 +1135,70 @@ SVG;
1136
  return $network_active;
1137
  }
1138
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1139
  /**
1140
  * Getter for the Adminl10n array. Applies the wpseo_admin_l10n filter.
1141
  *
1142
  * @return array The Adminl10n array.
1143
  */
1144
  public static function get_admin_l10n() {
1145
- $wpseo_admin_l10n = [];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1146
 
1147
  $additional_entries = apply_filters( 'wpseo_admin_l10n', [] );
1148
  if ( is_array( $additional_entries ) ) {
@@ -1197,7 +1253,7 @@ SVG;
1197
  do_action( 'wpseo_home_url' );
1198
 
1199
  // If the plugin is network-activated, use the network home URL.
1200
- if ( WPSEO_Utils::is_plugin_network_active() ) {
1201
  return network_home_url();
1202
  }
1203
 
308
  * @param string $filtered The sanitized string.
309
  * @param string $str The string prior to being sanitized.
310
  */
 
311
  return apply_filters( 'sanitize_text_field', $filtered, $value );
312
  }
313
 
689
  $result = bccomp( $number1, $number2, $precision ); // Returns int 0, 1 or -1.
690
  }
691
  else {
692
+ $result = ( $number1 == $number2 ) ? 0 : ( ( $number1 > $number2 ) ? 1 : -1 );
693
  }
694
  break;
695
  }
981
  * @return string
982
  */
983
  public static function traffic_light_svg() {
984
+ return <<<'SVG'
985
  <svg class="yst-traffic-light init" version="1.1" xmlns="http://www.w3.org/2000/svg"
986
  role="img" aria-hidden="true" focusable="false"
987
  x="0px" y="0px" viewBox="0 0 30 47" enable-background="new 0 0 30 47" xml:space="preserve">
1135
  return $network_active;
1136
  }
1137
 
1138
+ /**
1139
+ * Gets the type of the current post.
1140
+ *
1141
+ * @return string The post type, or an empty string.
1142
+ */
1143
+ public static function get_post_type() {
1144
+ global $post;
1145
+
1146
+ if ( isset( $post->post_type ) ) {
1147
+ return $post->post_type;
1148
+ }
1149
+ elseif ( isset( $_GET['post_type'] ) ) {
1150
+ return sanitize_text_field( $_GET['post_type'] );
1151
+ }
1152
+
1153
+ return '';
1154
+ }
1155
+
1156
+ /**
1157
+ * Gets the type of the current page.
1158
+ *
1159
+ * @return string Returns 'post' if the current page is a post edit page. Taxonomy in other cases.
1160
+ */
1161
+ public static function get_page_type() {
1162
+ global $pagenow;
1163
+ if ( WPSEO_Metabox::is_post_edit( $pagenow ) ) {
1164
+ return 'post';
1165
+ }
1166
+
1167
+ return 'taxonomy';
1168
+ }
1169
+
1170
  /**
1171
  * Getter for the Adminl10n array. Applies the wpseo_admin_l10n filter.
1172
  *
1173
  * @return array The Adminl10n array.
1174
  */
1175
  public static function get_admin_l10n() {
1176
+ $post_type = WPSEO_Utils::get_post_type();
1177
+ $page_type = WPSEO_Utils::get_page_type();
1178
+
1179
+ $label_object = false;
1180
+ $no_index = false;
1181
+
1182
+ if ( $page_type === 'post' ) {
1183
+ $label_object = get_post_type_object( $post_type );
1184
+ $no_index = WPSEO_Options::get( 'noindex-' . $post_type, false );
1185
+ }
1186
+ else {
1187
+ $label_object = WPSEO_Taxonomy::get_labels();
1188
+
1189
+ $taxonomy_slug = filter_input( INPUT_GET, 'taxonomy', FILTER_DEFAULT, [ 'options' => [ 'default' => '' ] ] );
1190
+ $no_index = WPSEO_Options::get( 'noindex-tax-' . $taxonomy_slug, false );
1191
+ }
1192
+
1193
+ $wpseo_admin_l10n = [
1194
+ 'displayAdvancedTab' => WPSEO_Capability_Utils::current_user_can( 'wpseo_edit_advanced_metadata' ) && ! ! WPSEO_Options::get( 'disableadvanced_meta' ),
1195
+ 'noIndex' => ! ! $no_index,
1196
+ 'isPostType' => ! ! get_post_type(),
1197
+ 'postTypeNamePlural' => ( $page_type === 'post' ) ? $label_object->label : $label_object->name,
1198
+ 'postTypeNameSingular' => ( $page_type === 'post' ) ? $label_object->labels->singular_name : $label_object->singular_name,
1199
+ 'breadcrumbsDisabled' => WPSEO_Options::get( 'breadcrumbs-enable', false ) !== true && ! current_theme_supports( 'yoast-seo-breadcrumbs' ),
1200
+ 'privateBlog' => ( (string) get_option( 'blog_public' ) ) === '0',
1201
+ ];
1202
 
1203
  $additional_entries = apply_filters( 'wpseo_admin_l10n', [] );
1204
  if ( is_array( $additional_entries ) ) {
1253
  do_action( 'wpseo_home_url' );
1254
 
1255
  // If the plugin is network-activated, use the network home URL.
1256
+ if ( self::is_plugin_network_active() ) {
1257
  return network_home_url();
1258
  }
1259
 
inc/health-check-curl-version.php CHANGED
@@ -28,7 +28,7 @@ class WPSEO_Health_Check_Curl_Version extends WPSEO_Health_Check {
28
  }
29
 
30
  if ( ! $this->is_my_yoast_api_reachable() && $this->is_recent_curl_version() ) {
31
- $this->label = sprintf(
32
  /* translators: %1$s expands to 'my.yoast.com'. */
33
  esc_html__( 'Your site can not connect to %1$s', 'wordpress-seo' ),
34
  'my.yoast.com'
@@ -49,7 +49,7 @@ class WPSEO_Health_Check_Curl_Version extends WPSEO_Health_Check {
49
 
50
  // Note: as of January 2020, the most recent cURL version is 7.67.0.
51
  if ( ! $this->is_my_yoast_api_reachable() && ! $this->is_recent_curl_version() ) {
52
- $this->label = sprintf(
53
  /* translators: %1$s expands to 'my.yoast.com'. */
54
  esc_html__( 'Your site can not connect to %1$s', 'wordpress-seo' ),
55
  'my.yoast.com'
@@ -67,7 +67,7 @@ class WPSEO_Health_Check_Curl_Version extends WPSEO_Health_Check {
67
  return;
68
  }
69
 
70
- $this->label = sprintf(
71
  /* translators: %1$s expands to 'my.yoast.com'. */
72
  esc_html__( 'Your site can connect to %1$s', 'wordpress-seo' ),
73
  'my.yoast.com'
28
  }
29
 
30
  if ( ! $this->is_my_yoast_api_reachable() && $this->is_recent_curl_version() ) {
31
+ $this->label = sprintf(
32
  /* translators: %1$s expands to 'my.yoast.com'. */
33
  esc_html__( 'Your site can not connect to %1$s', 'wordpress-seo' ),
34
  'my.yoast.com'
49
 
50
  // Note: as of January 2020, the most recent cURL version is 7.67.0.
51
  if ( ! $this->is_my_yoast_api_reachable() && ! $this->is_recent_curl_version() ) {
52
+ $this->label = sprintf(
53
  /* translators: %1$s expands to 'my.yoast.com'. */
54
  esc_html__( 'Your site can not connect to %1$s', 'wordpress-seo' ),
55
  'my.yoast.com'
67
  return;
68
  }
69
 
70
+ $this->label = sprintf(
71
  /* translators: %1$s expands to 'my.yoast.com'. */
72
  esc_html__( 'Your site can connect to %1$s', 'wordpress-seo' ),
73
  'my.yoast.com'
inc/health-check-links-table-not-accessible.php ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * WPSEO plugin file.
4
+ *
5
+ * @package WPSEO\Internals
6
+ */
7
+
8
+ /**
9
+ * Represents the health check when the links table is not accessible.
10
+ */
11
+ class WPSEO_Health_Check_Link_Table_Not_Accessible extends WPSEO_Health_Check {
12
+
13
+ /**
14
+ * The name of the test.
15
+ *
16
+ * @var string
17
+ */
18
+ protected $test = 'yoast-health-check-links-table-not-accessible';
19
+
20
+ /**
21
+ * Runs the test.
22
+ */
23
+ public function run() {
24
+ if ( ! $this->is_text_link_counter_enabled() ) {
25
+ return;
26
+ }
27
+
28
+ if ( $this->are_tables_accessible() ) {
29
+ $this->label = esc_html__( 'The text link counter is working as expected', 'wordpress-seo' );
30
+ $this->status = self::STATUS_GOOD;
31
+ $this->badge['color'] = 'blue';
32
+ $this->description = sprintf(
33
+ /* translators: 1: Link to the Yoast SEO blog, 2: Link closing tag. */
34
+ esc_html__( 'The text link counter helps you improve your site structure. %1$sFind out how the text link counter can enhance your SEO%2$s.', 'wordpress-seo' ),
35
+ '<a href="' . WPSEO_Shortlinker::get( 'https://yoa.st/3zw' ) . '" target="_blank">',
36
+ WPSEO_Admin_Utils::get_new_tab_message() . '</a>'
37
+ );
38
+
39
+ return;
40
+ }
41
+
42
+ $this->label = esc_html__( 'The text link counter feature is not working as expected', 'wordpress-seo' );
43
+ $this->status = self::STATUS_RECOMMENDED;
44
+ $this->badge['color'] = 'red';
45
+
46
+ $this->description = sprintf(
47
+ /* translators: 1: Yoast SEO. */
48
+ esc_html__( 'For this feature to work, %1$s needs to create a table in your database. We were unable to create this table automatically.', 'wordpress-seo' ),
49
+ 'Yoast SEO'
50
+ );
51
+
52
+ $this->actions = sprintf(
53
+ /* translators: 1: Link to the Yoast knowledge base, 2: Link closing tag. */
54
+ esc_html__( '%1$sFind out how to solve this problem on our knowledge base%2$s.', 'wordpress-seo' ),
55
+ '<a href="' . WPSEO_Shortlinker::get( 'https://yoa.st/3zv' ) . '" target="_blank">',
56
+ WPSEO_Admin_Utils::get_new_tab_message() . '</a>'
57
+ );
58
+ }
59
+
60
+ /**
61
+ * Checks whether the text link counter feature is enabled.
62
+ *
63
+ * @return bool Whether the text link counter feature is enabled.
64
+ */
65
+ protected function is_text_link_counter_enabled() {
66
+ return WPSEO_Options::get( 'enable_text_link_counter' );
67
+ }
68
+
69
+ /**
70
+ * Checks whether the SEO links and SEO meta database tables exist.
71
+ *
72
+ * @return bool Whether the SEO links and SEO meta database tables exist.
73
+ */
74
+ protected function are_tables_accessible() {
75
+ return WPSEO_Link_Table_Accessible::is_accessible() && WPSEO_Meta_Table_Accessible::is_accessible();
76
+ }
77
+ }
inc/health-check-postname-permalink.php CHANGED
@@ -34,7 +34,7 @@ class WPSEO_Health_Check_Postname_Permalink extends WPSEO_Health_Check {
34
  $this->status = self::STATUS_RECOMMENDED;
35
  $this->badge['color'] = 'red';
36
 
37
- $this->description = sprintf(
38
  /* translators: %s expands to '/%postname%/' */
39
  __( 'It\'s highly recommended to have your postname in the URL of your posts and pages. Consider setting your permalink structure to %s.', 'wordpress-seo' ),
40
  '<strong>/%postname%/</strong>'
@@ -54,6 +54,6 @@ class WPSEO_Health_Check_Postname_Permalink extends WPSEO_Health_Check {
54
  * @return bool
55
  */
56
  private function has_postname_in_permalink() {
57
- return ( false !== strpos( get_option( 'permalink_structure' ), '%postname%' ) );
58
  }
59
  }
34
  $this->status = self::STATUS_RECOMMENDED;
35
  $this->badge['color'] = 'red';
36
 
37
+ $this->description = sprintf(
38
  /* translators: %s expands to '/%postname%/' */
39
  __( 'It\'s highly recommended to have your postname in the URL of your posts and pages. Consider setting your permalink structure to %s.', 'wordpress-seo' ),
40
  '<strong>/%postname%/</strong>'
54
  * @return bool
55
  */
56
  private function has_postname_in_permalink() {
57
+ return ( strpos( get_option( 'permalink_structure' ), '%postname%' ) !== false );
58
  }
59
  }
inc/health-check-ryte.php CHANGED
@@ -5,6 +5,8 @@
5
  * @package WPSEO\Internals
6
  */
7
 
 
 
8
  /**
9
  * Represents the health check for Ryte.
10
  */
@@ -73,7 +75,7 @@ class WPSEO_Health_Check_Ryte extends WPSEO_Health_Check {
73
  return false;
74
  }
75
 
76
- if ( '0' === get_option( 'blog_public' ) ) {
77
  return false;
78
  }
79
 
@@ -114,7 +116,7 @@ class WPSEO_Health_Check_Ryte extends WPSEO_Health_Check {
114
  '%s<br><br>%s',
115
  sprintf(
116
  /* translators: %1$s: Expands to 'Ryte', %2$s: Expands to 'Yoast SEO'. */
117
- esc_html( '%1$s offers a free indexability check for %2$s users. The request to %1$s to check whether your site can be found by search engines failed due to an error.', 'wordpress-seo' ),
118
  'Ryte',
119
  'Yoast SEO'
120
  ),
@@ -148,14 +150,14 @@ class WPSEO_Health_Check_Ryte extends WPSEO_Health_Check {
148
  $this->status = self::STATUS_CRITICAL;
149
  $this->badge['color'] = 'red';
150
 
151
- $this->description = sprintf(
152
  /* translators: %1$s: Expands to 'Ryte', %2$s: Expands to 'Yoast SEO'. */
153
  esc_html__( '%1$s offers a free indexability check for %2$s users and it has determined that your site cannot be found by search engines. If this site is live or about to become live, this should be fixed.', 'wordpress-seo' ),
154
  'Ryte',
155
  'Yoast SEO'
156
  );
157
 
158
- $this->actions = sprintf(
159
  /* translators: %1$s: Opening tag of the link to the Yoast knowledge base, %2$s: Link closing tag. */
160
  esc_html__( '%1$sRead more about troubleshooting search engine visibility.%2$s', 'wordpress-seo' ),
161
  '<a href="' . esc_url( WPSEO_Shortlinker::get( 'https://yoa.st/onpageindexerror' ) ) . '" target="_blank">',
@@ -172,7 +174,7 @@ class WPSEO_Health_Check_Ryte extends WPSEO_Health_Check {
172
  * @return void
173
  */
174
  protected function unknown_indexability_response() {
175
- $this->label = sprintf(
176
  /* translators: %1$s: Expands to 'Ryte'. */
177
  esc_html__( '%1$s cannot determine whether your site can be found by search engines', 'wordpress-seo' ),
178
  'Ryte'
@@ -181,15 +183,26 @@ class WPSEO_Health_Check_Ryte extends WPSEO_Health_Check {
181
  $this->badge['color'] = 'red';
182
 
183
  $this->description = sprintf(
184
- /* translators: %1$s: Expands to 'Ryte', %2$s: Expands to 'Yoast SEO', %3$s: Opening tag to the Yoast knowledge base, %4$s: Link closing tag. */
185
  esc_html__( '%1$s offers a free indexability check for %2$s users and right now it has trouble determining
186
  whether search engines can find your site. This could have several (legitimate) reasons and is not a problem
187
- in itself. If this is a live site, %3$sit is recommended that you figure out why the %1$s check failed.%4$s', 'wordpress-seo' ),
 
 
 
 
 
 
 
 
 
 
188
  'Ryte',
189
- 'Yoast SEO',
190
  '<a href="' . esc_url( WPSEO_Shortlinker::get( 'https://yoa.st/onpagerequestfailed' ) ) . '" target="_blank">',
191
  WPSEO_Admin_Utils::get_new_tab_message() . '</a>'
192
  );
 
 
193
 
194
  $this->add_ryte_link();
195
  }
5
  * @package WPSEO\Internals
6
  */
7
 
8
+ use Yoast\WP\SEO\Presenters\Admin\Alert_Presenter;
9
+
10
  /**
11
  * Represents the health check for Ryte.
12
  */
75
  return false;
76
  }
77
 
78
+ if ( get_option( 'blog_public' ) === '0' ) {
79
  return false;
80
  }
81
 
116
  '%s<br><br>%s',
117
  sprintf(
118
  /* translators: %1$s: Expands to 'Ryte', %2$s: Expands to 'Yoast SEO'. */
119
+ esc_html__( '%1$s offers a free indexability check for %2$s users. The request to %1$s to check whether your site can be found by search engines failed due to an error.', 'wordpress-seo' ),
120
  'Ryte',
121
  'Yoast SEO'
122
  ),
150
  $this->status = self::STATUS_CRITICAL;
151
  $this->badge['color'] = 'red';
152
 
153
+ $this->description = sprintf(
154
  /* translators: %1$s: Expands to 'Ryte', %2$s: Expands to 'Yoast SEO'. */
155
  esc_html__( '%1$s offers a free indexability check for %2$s users and it has determined that your site cannot be found by search engines. If this site is live or about to become live, this should be fixed.', 'wordpress-seo' ),
156
  'Ryte',
157
  'Yoast SEO'
158
  );
159
 
160
+ $this->actions = sprintf(
161
  /* translators: %1$s: Opening tag of the link to the Yoast knowledge base, %2$s: Link closing tag. */
162
  esc_html__( '%1$sRead more about troubleshooting search engine visibility.%2$s', 'wordpress-seo' ),
163
  '<a href="' . esc_url( WPSEO_Shortlinker::get( 'https://yoa.st/onpageindexerror' ) ) . '" target="_blank">',
174
  * @return void
175
  */
176
  protected function unknown_indexability_response() {
177
+ $this->label = sprintf(
178
  /* translators: %1$s: Expands to 'Ryte'. */
179
  esc_html__( '%1$s cannot determine whether your site can be found by search engines', 'wordpress-seo' ),
180
  'Ryte'
183
  $this->badge['color'] = 'red';
184
 
185
  $this->description = sprintf(
186
+ /* translators: %1$s: Expands to 'Ryte', %2$s: Expands to 'Yoast SEO'. */
187
  esc_html__( '%1$s offers a free indexability check for %2$s users and right now it has trouble determining
188
  whether search engines can find your site. This could have several (legitimate) reasons and is not a problem
189
+ in itself. If this is a live site, it is recommended that you figure out why the %1$s check failed.', 'wordpress-seo' ),
190
+ 'Ryte',
191
+ 'Yoast SEO'
192
+ );
193
+ $this->description .= '<br />';
194
+
195
+ $alert_content = sprintf(
196
+ /* translators: %1$s: Expands to 'Ryte', %2$s: Link start tag to the Yoast knowledge base, %3$s: Link closing tag. */
197
+ esc_html__( 'As the indexability status of your website can only be fetched from %1$s every 15 seconds,
198
+ a first step could be to wait at least 15 seconds and refresh the Site Health page. If that did not help,
199
+ %2$sread more about troubleshooting search engine visibility%3$s.', 'wordpress-seo' ),
200
  'Ryte',
 
201
  '<a href="' . esc_url( WPSEO_Shortlinker::get( 'https://yoa.st/onpagerequestfailed' ) ) . '" target="_blank">',
202
  WPSEO_Admin_Utils::get_new_tab_message() . '</a>'
203
  );
204
+ $alert = new Alert_Presenter( $alert_content, 'info' );
205
+ $this->description .= $alert->present();
206
 
207
  $this->add_ryte_link();
208
  }
inc/options/class-wpseo-option-wpseo.php CHANGED
@@ -26,31 +26,34 @@ class WPSEO_Option_Wpseo extends WPSEO_Option {
26
  */
27
  protected $defaults = [
28
  // Non-form fields, set via (ajax) function.
29
- 'ms_defaults_set' => false,
30
- 'ignore_indexation_warning' => false,
 
 
 
31
  // Non-form field, should only be set via validation routine.
32
  'version' => '', // Leave default as empty to ensure activation/upgrade works.
33
  'previous_version' => '',
34
  // Form fields.
35
- 'disableadvanced_meta' => true,
36
  'enable_headless_rest_endpoints' => true,
37
- 'ryte_indexability' => true,
38
- 'baiduverify' => '', // Text field.
39
- 'googleverify' => '', // Text field.
40
- 'msverify' => '', // Text field.
41
- 'yandexverify' => '',
42
- 'site_type' => '', // List of options.
43
- 'has_multiple_authors' => '',
44
- 'environment_type' => '',
45
- 'content_analysis_active' => true,
46
- 'keyword_analysis_active' => true,
47
- 'enable_admin_bar_menu' => true,
48
- 'enable_cornerstone_content' => true,
49
- 'enable_xml_sitemap' => true,
50
- 'enable_text_link_counter' => true,
51
- 'show_onboarding_notice' => false,
52
- 'first_activated_on' => false,
53
- 'myyoast-oauth' => [
54
  'config' => [
55
  'clientId' => null,
56
  'secret' => null,
@@ -65,6 +68,7 @@ class WPSEO_Option_Wpseo extends WPSEO_Option {
65
  * @var array
66
  */
67
  public $ms_exclude = [
 
68
  /* Privacy. */
69
  'baiduverify',
70
  'googleverify',
@@ -248,6 +252,7 @@ class WPSEO_Option_Wpseo extends WPSEO_Option {
248
  * Boolean dismiss warnings - not fields - may not be in form
249
  * (and don't need to be either as long as the default is false).
250
  */
 
251
  case 'ms_defaults_set':
252
  if ( isset( $dirty[ $key ] ) ) {
253
  $clean[ $key ] = WPSEO_Utils::validate_bool( $dirty[ $key ] );
@@ -280,6 +285,8 @@ class WPSEO_Option_Wpseo extends WPSEO_Option {
280
  break;
281
 
282
  case 'first_activated_on':
 
 
283
  $clean[ $key ] = false;
284
  if ( isset( $dirty[ $key ] ) ) {
285
  if ( $dirty[ $key ] === false || WPSEO_Utils::validate_int( $dirty[ $key ] ) ) {
@@ -396,6 +403,21 @@ class WPSEO_Option_Wpseo extends WPSEO_Option {
396
  * @return array Cleaned option.
397
  */
398
  protected function clean_option( $option_value, $current_version = null, $all_old_option_values = null ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
399
  return $option_value;
400
  }
401
  }
26
  */
27
  protected $defaults = [
28
  // Non-form fields, set via (ajax) function.
29
+ 'ms_defaults_set' => false,
30
+ 'ignore_search_engines_discouraged_notice' => false,
31
+ 'ignore_indexation_warning' => false,
32
+ 'indexation_warning_hide_until' => false,
33
+ 'indexation_started' => false,
34
  // Non-form field, should only be set via validation routine.
35
  'version' => '', // Leave default as empty to ensure activation/upgrade works.
36
  'previous_version' => '',
37
  // Form fields.
38
+ 'disableadvanced_meta' => true,
39
  'enable_headless_rest_endpoints' => true,
40
+ 'ryte_indexability' => true,
41
+ 'baiduverify' => '', // Text field.
42
+ 'googleverify' => '', // Text field.
43
+ 'msverify' => '', // Text field.
44
+ 'yandexverify' => '',
45
+ 'site_type' => '', // List of options.
46
+ 'has_multiple_authors' => '',
47
+ 'environment_type' => '',
48
+ 'content_analysis_active' => true,
49
+ 'keyword_analysis_active' => true,
50
+ 'enable_admin_bar_menu' => true,
51
+ 'enable_cornerstone_content' => true,
52
+ 'enable_xml_sitemap' => true,
53
+ 'enable_text_link_counter' => true,
54
+ 'show_onboarding_notice' => false,
55
+ 'first_activated_on' => false,
56
+ 'myyoast-oauth' => [
57
  'config' => [
58
  'clientId' => null,
59
  'secret' => null,
68
  * @var array
69
  */
70
  public $ms_exclude = [
71
+ 'ignore_search_engines_discouraged_notice',
72
  /* Privacy. */
73
  'baiduverify',
74
  'googleverify',
252
  * Boolean dismiss warnings - not fields - may not be in form
253
  * (and don't need to be either as long as the default is false).
254
  */
255
+ case 'ignore_search_engines_discouraged_notice':
256
  case 'ms_defaults_set':
257
  if ( isset( $dirty[ $key ] ) ) {
258
  $clean[ $key ] = WPSEO_Utils::validate_bool( $dirty[ $key ] );
285
  break;
286
 
287
  case 'first_activated_on':
288
+ case 'indexation_started' :
289
+ case 'indexation_warning_hide_until' :
290
  $clean[ $key ] = false;
291
  if ( isset( $dirty[ $key ] ) ) {
292
  if ( $dirty[ $key ] === false || WPSEO_Utils::validate_int( $dirty[ $key ] ) ) {
403
  * @return array Cleaned option.
404
  */
405
  protected function clean_option( $option_value, $current_version = null, $all_old_option_values = null ) {
406
+ // Deal with value change from text string to boolean.
407
+ $value_change = [
408
+ 'ignore_search_engines_discouraged_notice',
409
+ ];
410
+
411
+ foreach ( $value_change as $key ) {
412
+ if ( isset( $option_value[ $key ] ) && in_array( $option_value[ $key ], [
413
+ 'ignore',
414
+ 'done',
415
+ ], true )
416
+ ) {
417
+ $option_value[ $key ] = true;
418
+ }
419
+ }
420
+
421
  return $option_value;
422
  }
423
  }
inc/sitemaps/class-author-sitemap-provider.php CHANGED
@@ -94,7 +94,7 @@ class WPSEO_Author_Sitemap_Provider implements WPSEO_Sitemap_Provider {
94
  'lastmod' => ( $user->_yoast_wpseo_profile_updated ) ? $this->date->format_timestamp( $user->_yoast_wpseo_profile_updated ) : null,
95
  ];
96
 
97
- $page++;
98
  }
99
 
100
  return $index;
94
  'lastmod' => ( $user->_yoast_wpseo_profile_updated ) ? $this->date->format_timestamp( $user->_yoast_wpseo_profile_updated ) : null,
95
  ];
96
 
97
+ ++$page;
98
  }
99
 
100
  return $index;
inc/sitemaps/class-sitemaps-cache.php CHANGED
@@ -195,8 +195,8 @@ class WPSEO_Sitemaps_Cache {
195
  public static function invalidate_helper( $unused, $type ) {
196
 
197
  if (
198
- WPSEO_Options::get( 'noindex-' . $type ) === false ||
199
- WPSEO_Options::get( 'noindex-tax-' . $type ) === false
200
  ) {
201
  self::invalidate( $type );
202
  }
195
  public static function invalidate_helper( $unused, $type ) {
196
 
197
  if (
198
+ WPSEO_Options::get( 'noindex-' . $type ) === false
199
+ || WPSEO_Options::get( 'noindex-tax-' . $type ) === false
200
  ) {
201
  self::invalidate( $type );
202
  }
inc/sitemaps/class-sitemaps.php CHANGED
@@ -500,7 +500,7 @@ class WPSEO_Sitemaps {
500
  WHERE post_status IN ('" . implode( "','", $post_statuses ) . "')
501
  AND post_type IN ('" . implode( "','", $post_type_names ) . "')
502
  GROUP BY post_type
503
- ORDER BY post_modified_gmt DESC
504
  ";
505
 
506
  foreach ( $wpdb->get_results( $sql ) as $obj ) {
500
  WHERE post_status IN ('" . implode( "','", $post_statuses ) . "')
501
  AND post_type IN ('" . implode( "','", $post_type_names ) . "')
502
  GROUP BY post_type
503
+ ORDER BY date DESC
504
  ";
505
 
506
  foreach ( $wpdb->get_results( $sql ) as $obj ) {
js/dist/analysis-1404.js DELETED
@@ -1,21 +0,0 @@
1
- !function(a){var e={};function t(i){if(e[i])return e[i].exports;var n=e[i]={i:i,l:!1,exports:{}};return a[i].call(n.exports,n,n.exports,t),n.l=!0,n.exports}t.m=a,t.c=e,t.d=function(a,e,i){t.o(a,e)||Object.defineProperty(a,e,{enumerable:!0,get:i})},t.r=function(a){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(a,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(a,"__esModule",{value:!0})},t.t=function(a,e){if(1&e&&(a=t(a)),8&e)return a;if(4&e&&"object"==typeof a&&a&&a.__esModule)return a;var i=Object.create(null);if(t.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:a}),2&e&&"string"!=typeof a)for(var n in a)t.d(i,n,function(e){return a[e]}.bind(null,n));return i},t.n=function(a){var e=a&&a.__esModule?function(){return a.default}:function(){return a};return t.d(e,"a",e),e},t.o=function(a,e){return Object.prototype.hasOwnProperty.call(a,e)},t.p="",t(t.s=556)}([,function(a,e,t){"use strict";t.r(e);var i=t(12),n=t(3),o="[object Symbol]";var r=function(a){return"symbol"==typeof a||Object(n.a)(a)&&Object(i.a)(a)==o},s=NaN;var d=function(a){return"number"==typeof a?a:r(a)?s:+a},l=t(15);var c=function(a,e){for(var t=-1,i=null==a?0:a.length,n=Array(i);++t<i;)n[t]=e(a[t],t,a);return n},u=t(2),p=1/0,z=l.a?l.a.prototype:void 0,g=z?z.toString:void 0;var m=function a(e){if("string"==typeof e)return e;if(Object(u.a)(e))return c(e,a)+"";if(r(e))return g?g.call(e):"";var t=e+"";return"0"==t&&1/e==-p?"-0":t};var w=function(a,e){return function(t,i){var n;if(void 0===t&&void 0===i)return e;if(void 0!==t&&(n=t),void 0!==i){if(void 0===n)return i;"string"==typeof t||"string"==typeof i?(t=m(t),i=m(i)):(t=d(t),i=d(i)),n=a(t,i)}return n}},y=w(function(a,e){return a+e},0);var f=function(a){var e=typeof a;return null!=a&&("object"==e||"function"==e)},b=NaN,h=/^\s+|\s+$/g,v=/^[-+]0x[0-9a-f]+$/i,k=/^0b[01]+$/i,j=/^0o[0-7]+$/i,_=parseInt;var x=function(a){if("number"==typeof a)return a;if(r(a))return b;if(f(a)){var e="function"==typeof a.valueOf?a.valueOf():a;a=f(e)?e+"":e}if("string"!=typeof a)return 0===a?a:+a;a=a.replace(h,"");var t=k.test(a);return t||j.test(a)?_(a.slice(2),t?2:8):v.test(a)?b:+a},q=1/0,E=1.7976931348623157e308;var A=function(a){return a?(a=x(a))===q||a===-q?(a<0?-1:1)*E:a==a?a:0:0===a?a:0};var O=function(a){var e=A(a),t=e%1;return e==e?t?e-t:e:0},T="Expected a function";var S=function(a,e){if("function"!=typeof e)throw new TypeError(T);return a=O(a),function(){if(--a<1)return e.apply(this,arguments)}};var M=function(a){return a},P="[object AsyncFunction]",C="[object Function]",R="[object GeneratorFunction]",D="[object Proxy]";var F=function(a){if(!f(a))return!1;var e=Object(i.a)(a);return e==C||e==R||e==P||e==D},B=t(8),$=B.a["__core-js_shared__"],I=function(){var a=/[^.]+$/.exec($&&$.keys&&$.keys.IE_PROTO||"");return a?"Symbol(src)_1."+a:""}();var L=function(a){return!!I&&I in a},W=Function.prototype.toString;var N=function(a){if(null!=a){try{return W.call(a)}catch(a){}try{return a+""}catch(a){}}return""},U=/^\[object .+?Constructor\]$/,K=Function.prototype,H=Object.prototype,V=K.toString,Y=H.hasOwnProperty,G=RegExp("^"+V.call(Y).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");var Z=function(a){return!(!f(a)||L(a))&&(F(a)?G:U).test(N(a))};var J=function(a,e){return null==a?void 0:a[e]};var Q=function(a,e){var t=J(a,e);return Z(t)?t:void 0},X=Q(B.a,"WeakMap"),aa=X&&new X,ea=aa?function(a,e){return aa.set(a,e),a}:M,ta=Object.create,ia=function(){function a(){}return function(e){if(!f(e))return{};if(ta)return ta(e);a.prototype=e;var t=new a;return a.prototype=void 0,t}}();var na=function(a){return function(){var e=arguments;switch(e.length){case 0:return new a;case 1:return new a(e[0]);case 2:return new a(e[0],e[1]);case 3:return new a(e[0],e[1],e[2]);case 4:return new a(e[0],e[1],e[2],e[3]);case 5:return new a(e[0],e[1],e[2],e[3],e[4]);case 6:return new a(e[0],e[1],e[2],e[3],e[4],e[5]);case 7:return new a(e[0],e[1],e[2],e[3],e[4],e[5],e[6])}var t=ia(a.prototype),i=a.apply(t,e);return f(i)?i:t}},oa=1;var ra=function(a,e,t){var i=e&oa,n=na(a);return function e(){return(this&&this!==B.a&&this instanceof e?n:a).apply(i?t:this,arguments)}};var sa=function(a,e,t){switch(t.length){case 0:return a.call(e);case 1:return a.call(e,t[0]);case 2:return a.call(e,t[0],t[1]);case 3:return a.call(e,t[0],t[1],t[2])}return a.apply(e,t)},da=Math.max;var la=function(a,e,t,i){for(var n=-1,o=a.length,r=t.length,s=-1,d=e.length,l=da(o-r,0),c=Array(d+l),u=!i;++s<d;)c[s]=e[s];for(;++n<r;)(u||n<o)&&(c[t[n]]=a[n]);for(;l--;)c[s++]=a[n++];return c},ca=Math.max;var ua=function(a,e,t,i){for(var n=-1,o=a.length,r=-1,s=t.length,d=-1,l=e.length,c=ca(o-s,0),u=Array(c+l),p=!i;++n<c;)u[n]=a[n];for(var z=n;++d<l;)u[z+d]=e[d];for(;++r<s;)(p||n<o)&&(u[z+t[r]]=a[n++]);return u};var pa=function(a,e){for(var t=a.length,i=0;t--;)a[t]===e&&++i;return i};var za=function(){},ga=4294967295;function ma(a){this.__wrapped__=a,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=ga,this.__views__=[]}ma.prototype=ia(za.prototype),ma.prototype.constructor=ma;var wa=ma;var ya=function(){},fa=aa?function(a){return aa.get(a)}:ya,ba={},ha=Object.prototype.hasOwnProperty;var va=function(a){for(var e=a.name+"",t=ba[e],i=ha.call(ba,e)?t.length:0;i--;){var n=t[i],o=n.func;if(null==o||o==a)return n.name}return e};function ka(a,e){this.__wrapped__=a,this.__actions__=[],this.__chain__=!!e,this.__index__=0,this.__values__=void 0}ka.prototype=ia(za.prototype),ka.prototype.constructor=ka;var ja=ka;var _a=function(a,e){var t=-1,i=a.length;for(e||(e=Array(i));++t<i;)e[t]=a[t];return e};var xa=function(a){if(a instanceof wa)return a.clone();var e=new ja(a.__wrapped__,a.__chain__);return e.__actions__=_a(a.__actions__),e.__index__=a.__index__,e.__values__=a.__values__,e},qa=Object.prototype.hasOwnProperty;function Ea(a){if(Object(n.a)(a)&&!Object(u.a)(a)&&!(a instanceof wa)){if(a instanceof ja)return a;if(qa.call(a,"__wrapped__"))return xa(a)}return new ja(a)}Ea.prototype=za.prototype,Ea.prototype.constructor=Ea;var Aa=Ea;var Oa=function(a){var e=va(a),t=Aa[e];if("function"!=typeof t||!(e in wa.prototype))return!1;if(a===t)return!0;var i=fa(t);return!!i&&a===i[0]},Ta=800,Sa=16,Ma=Date.now;var Pa=function(a){var e=0,t=0;return function(){var i=Ma(),n=Sa-(i-t);if(t=i,n>0){if(++e>=Ta)return arguments[0]}else e=0;return a.apply(void 0,arguments)}},Ca=Pa(ea),Ra=/\{\n\/\* \[wrapped with (.+)\] \*/,Da=/,? & /;var Fa=function(a){var e=a.match(Ra);return e?e[1].split(Da):[]},Ba=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/;var $a=function(a,e){var t=e.length;if(!t)return a;var i=t-1;return e[i]=(t>1?"& ":"")+e[i],e=e.join(t>2?", ":" "),a.replace(Ba,"{\n/* [wrapped with "+e+"] */\n")};var Ia=function(a){return function(){return a}},La=function(){try{var a=Q(Object,"defineProperty");return a({},"",{}),a}catch(a){}}(),Wa=Pa(La?function(a,e){return La(a,"toString",{configurable:!0,enumerable:!1,value:Ia(e),writable:!0})}:M);var Na=function(a,e){for(var t=-1,i=null==a?0:a.length;++t<i&&!1!==e(a[t],t,a););return a};var Ua=function(a,e,t,i){for(var n=a.length,o=t+(i?1:-1);i?o--:++o<n;)if(e(a[o],o,a))return o;return-1};var Ka=function(a){return a!=a};var Ha=function(a,e,t){for(var i=t-1,n=a.length;++i<n;)if(a[i]===e)return i;return-1};var Va=function(a,e,t){return e==e?Ha(a,e,t):Ua(a,Ka,t)};var Ya=function(a,e){return!(null==a||!a.length)&&Va(a,e,0)>-1},Ga=[["ary",128],["bind",1],["bindKey",2],["curry",8],["curryRight",16],["flip",512],["partial",32],["partialRight",64],["rearg",256]];var Za=function(a,e){return Na(Ga,function(t){var i="_."+t[0];e&t[1]&&!Ya(a,i)&&a.push(i)}),a.sort()};var Ja=function(a,e,t){var i=e+"";return Wa(a,$a(i,Za(Fa(i),t)))},Qa=1,Xa=2,ae=4,ee=8,te=32,ie=64;var ne=function(a,e,t,i,n,o,r,s,d,l){var c=e&ee;e|=c?te:ie,(e&=~(c?ie:te))&ae||(e&=~(Qa|Xa));var u=[a,e,n,c?o:void 0,c?r:void 0,c?void 0:o,c?void 0:r,s,d,l],p=t.apply(void 0,u);return Oa(a)&&Ca(p,u),p.placeholder=i,Ja(p,a,e)};var oe=function(a){return a.placeholder},re=9007199254740991,se=/^(?:0|[1-9]\d*)$/;var de=function(a,e){var t=typeof a;return!!(e=null==e?re:e)&&("number"==t||"symbol"!=t&&se.test(a))&&a>-1&&a%1==0&&a<e},le=Math.min;var ce=function(a,e){for(var t=a.length,i=le(e.length,t),n=_a(a);i--;){var o=e[i];a[i]=de(o,t)?n[o]:void 0}return a},ue="__lodash_placeholder__";var pe=function(a,e){for(var t=-1,i=a.length,n=0,o=[];++t<i;){var r=a[t];r!==e&&r!==ue||(a[t]=ue,o[n++]=t)}return o},ze=1,ge=2,me=8,we=16,ye=128,fe=512;var be=function a(e,t,i,n,o,r,s,d,l,c){var u=t&ye,p=t&ze,z=t&ge,g=t&(me|we),m=t&fe,w=z?void 0:na(e);return function y(){for(var f=arguments.length,b=Array(f),h=f;h--;)b[h]=arguments[h];if(g)var v=oe(y),k=pa(b,v);if(n&&(b=la(b,n,o,g)),r&&(b=ua(b,r,s,g)),f-=k,g&&f<c){var j=pe(b,v);return ne(e,t,a,y.placeholder,i,b,j,d,l,c-f)}var _=p?i:this,x=z?_[e]:e;return f=b.length,d?b=ce(b,d):m&&f>1&&b.reverse(),u&&l<f&&(b.length=l),this&&this!==B.a&&this instanceof y&&(x=w||na(x)),x.apply(_,b)}};var he=function(a,e,t){var i=na(a);return function n(){for(var o=arguments.length,r=Array(o),s=o,d=oe(n);s--;)r[s]=arguments[s];var l=o<3&&r[0]!==d&&r[o-1]!==d?[]:pe(r,d);if((o-=l.length)<t)return ne(a,e,be,n.placeholder,void 0,r,l,void 0,void 0,t-o);var c=this&&this!==B.a&&this instanceof n?i:a;return sa(c,this,r)}},ve=1;var ke=function(a,e,t,i){var n=e&ve,o=na(a);return function e(){for(var r=-1,s=arguments.length,d=-1,l=i.length,c=Array(l+s),u=this&&this!==B.a&&this instanceof e?o:a;++d<l;)c[d]=i[d];for(;s--;)c[d++]=arguments[++r];return sa(u,n?t:this,c)}},je="__lodash_placeholder__",_e=1,xe=2,qe=4,Ee=8,Ae=128,Oe=256,Te=Math.min;var Se=function(a,e){var t=a[1],i=e[1],n=t|i,o=n<(_e|xe|Ae),r=i==Ae&&t==Ee||i==Ae&&t==Oe&&a[7].length<=e[8]||i==(Ae|Oe)&&e[7].length<=e[8]&&t==Ee;if(!o&&!r)return a;i&_e&&(a[2]=e[2],n|=t&_e?0:qe);var s=e[3];if(s){var d=a[3];a[3]=d?la(d,s,e[4]):s,a[4]=d?pe(a[3],je):e[4]}return(s=e[5])&&(d=a[5],a[5]=d?ua(d,s,e[6]):s,a[6]=d?pe(a[5],je):e[6]),(s=e[7])&&(a[7]=s),i&Ae&&(a[8]=null==a[8]?e[8]:Te(a[8],e[8])),null==a[9]&&(a[9]=e[9]),a[0]=e[0],a[1]=n,a},Me="Expected a function",Pe=1,Ce=2,Re=8,De=16,Fe=32,Be=64,$e=Math.max;var Ie=function(a,e,t,i,n,o,r,s){var d=e&Ce;if(!d&&"function"!=typeof a)throw new TypeError(Me);var l=i?i.length:0;if(l||(e&=~(Fe|Be),i=n=void 0),r=void 0===r?r:$e(O(r),0),s=void 0===s?s:O(s),l-=n?n.length:0,e&Be){var c=i,u=n;i=n=void 0}var p=d?void 0:fa(a),z=[a,e,t,i,n,c,u,o,r,s];if(p&&Se(z,p),a=z[0],e=z[1],t=z[2],i=z[3],n=z[4],!(s=z[9]=void 0===z[9]?d?0:a.length:$e(z[9]-l,0))&&e&(Re|De)&&(e&=~(Re|De)),e&&e!=Pe)g=e==Re||e==De?he(a,e,s):e!=Fe&&e!=(Pe|Fe)||n.length?be.apply(void 0,z):ke(a,e,t,i);else var g=ra(a,e,t);return Ja((p?ea:Ca)(g,z),a,e)},Le=128;var We=function(a,e,t){return e=t?void 0:e,e=a&&null==e?a.length:e,Ie(a,Le,void 0,void 0,void 0,void 0,e)};var Ne=function(a,e,t){"__proto__"==e&&La?La(a,e,{configurable:!0,enumerable:!0,value:t,writable:!0}):a[e]=t};var Ue=function(a,e){return a===e||a!=a&&e!=e},Ke=Object.prototype.hasOwnProperty;var He=function(a,e,t){var i=a[e];Ke.call(a,e)&&Ue(i,t)&&(void 0!==t||e in a)||Ne(a,e,t)};var Ve=function(a,e,t,i){var n=!t;t||(t={});for(var o=-1,r=e.length;++o<r;){var s=e[o],d=i?i(t[s],a[s],s,t,a):void 0;void 0===d&&(d=a[s]),n?Ne(t,s,d):He(t,s,d)}return t},Ye=Math.max;var Ge=function(a,e,t){return e=Ye(void 0===e?a.length-1:e,0),function(){for(var i=arguments,n=-1,o=Ye(i.length-e,0),r=Array(o);++n<o;)r[n]=i[e+n];n=-1;for(var s=Array(e+1);++n<e;)s[n]=i[n];return s[e]=t(r),sa(a,this,s)}};var Ze=function(a,e){return Wa(Ge(a,e,M),a+"")},Je=9007199254740991;var Qe=function(a){return"number"==typeof a&&a>-1&&a%1==0&&a<=Je};var Xe=function(a){return null!=a&&Qe(a.length)&&!F(a)};var at=function(a,e,t){if(!f(t))return!1;var i=typeof e;return!!("number"==i?Xe(t)&&de(e,t.length):"string"==i&&e in t)&&Ue(t[e],a)};var et=function(a){return Ze(function(e,t){var i=-1,n=t.length,o=n>1?t[n-1]:void 0,r=n>2?t[2]:void 0;for(o=a.length>3&&"function"==typeof o?(n--,o):void 0,r&&at(t[0],t[1],r)&&(o=n<3?void 0:o,n=1),e=Object(e);++i<n;){var s=t[i];s&&a(e,s,i,o)}return e})},tt=Object.prototype;var it=function(a){var e=a&&a.constructor;return a===("function"==typeof e&&e.prototype||tt)};var nt=function(a,e){for(var t=-1,i=Array(a);++t<a;)i[t]=e(t);return i},ot=t(28),rt=t(24),st={};st["[object Float32Array]"]=st["[object Float64Array]"]=st["[object Int8Array]"]=st["[object Int16Array]"]=st["[object Int32Array]"]=st["[object Uint8Array]"]=st["[object Uint8ClampedArray]"]=st["[object Uint16Array]"]=st["[object Uint32Array]"]=!0,st["[object Arguments]"]=st["[object Array]"]=st["[object ArrayBuffer]"]=st["[object Boolean]"]=st["[object DataView]"]=st["[object Date]"]=st["[object Error]"]=st["[object Function]"]=st["[object Map]"]=st["[object Number]"]=st["[object Object]"]=st["[object RegExp]"]=st["[object Set]"]=st["[object String]"]=st["[object WeakMap]"]=!1;var dt=function(a){return Object(n.a)(a)&&Qe(a.length)&&!!st[Object(i.a)(a)]};var lt=function(a){return function(e){return a(e)}},ct=t(23),ut=ct.a&&ct.a.isTypedArray,pt=ut?lt(ut):dt,zt=Object.prototype.hasOwnProperty;var gt=function(a,e){var t=Object(u.a)(a),i=!t&&Object(ot.a)(a),n=!t&&!i&&Object(rt.a)(a),o=!t&&!i&&!n&&pt(a),r=t||i||n||o,s=r?nt(a.length,String):[],d=s.length;for(var l in a)!e&&!zt.call(a,l)||r&&("length"==l||n&&("offset"==l||"parent"==l)||o&&("buffer"==l||"byteLength"==l||"byteOffset"==l)||de(l,d))||s.push(l);return s};var mt=function(a,e){return function(t){return a(e(t))}},wt=mt(Object.keys,Object),yt=Object.prototype.hasOwnProperty;var ft=function(a){if(!it(a))return wt(a);var e=[];for(var t in Object(a))yt.call(a,t)&&"constructor"!=t&&e.push(t);return e};var bt=function(a){return Xe(a)?gt(a):ft(a)},ht=Object.prototype.hasOwnProperty,vt=et(function(a,e){if(it(e)||Xe(e))Ve(e,bt(e),a);else for(var t in e)ht.call(e,t)&&He(a,t,e[t])});var kt=function(a){var e=[];if(null!=a)for(var t in Object(a))e.push(t);return e},jt=Object.prototype.hasOwnProperty;var _t=function(a){if(!f(a))return kt(a);var e=it(a),t=[];for(var i in a)("constructor"!=i||!e&&jt.call(a,i))&&t.push(i);return t};var xt=function(a){return Xe(a)?gt(a,!0):_t(a)},qt=et(function(a,e){Ve(e,xt(e),a)}),Et=et(function(a,e,t,i){Ve(e,xt(e),a,i)}),At=et(function(a,e,t,i){Ve(e,bt(e),a,i)}),Ot=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,Tt=/^\w*$/;var St=function(a,e){if(Object(u.a)(a))return!1;var t=typeof a;return!("number"!=t&&"symbol"!=t&&"boolean"!=t&&null!=a&&!r(a))||Tt.test(a)||!Ot.test(a)||null!=e&&a in Object(e)},Mt=Q(Object,"create");var Pt=function(){this.__data__=Mt?Mt(null):{},this.size=0};var Ct=function(a){var e=this.has(a)&&delete this.__data__[a];return this.size-=e?1:0,e},Rt="__lodash_hash_undefined__",Dt=Object.prototype.hasOwnProperty;var Ft=function(a){var e=this.__data__;if(Mt){var t=e[a];return t===Rt?void 0:t}return Dt.call(e,a)?e[a]:void 0},Bt=Object.prototype.hasOwnProperty;var $t=function(a){var e=this.__data__;return Mt?void 0!==e[a]:Bt.call(e,a)},It="__lodash_hash_undefined__";var Lt=function(a,e){var t=this.__data__;return this.size+=this.has(a)?0:1,t[a]=Mt&&void 0===e?It:e,this};function Wt(a){var e=-1,t=null==a?0:a.length;for(this.clear();++e<t;){var i=a[e];this.set(i[0],i[1])}}Wt.prototype.clear=Pt,Wt.prototype.delete=Ct,Wt.prototype.get=Ft,Wt.prototype.has=$t,Wt.prototype.set=Lt;var Nt=Wt;var Ut=function(){this.__data__=[],this.size=0};var Kt=function(a,e){for(var t=a.length;t--;)if(Ue(a[t][0],e))return t;return-1},Ht=Array.prototype.splice;var Vt=function(a){var e=this.__data__,t=Kt(e,a);return!(t<0||(t==e.length-1?e.pop():Ht.call(e,t,1),--this.size,0))};var Yt=function(a){var e=this.__data__,t=Kt(e,a);return t<0?void 0:e[t][1]};var Gt=function(a){return Kt(this.__data__,a)>-1};var Zt=function(a,e){var t=this.__data__,i=Kt(t,a);return i<0?(++this.size,t.push([a,e])):t[i][1]=e,this};function Jt(a){var e=-1,t=null==a?0:a.length;for(this.clear();++e<t;){var i=a[e];this.set(i[0],i[1])}}Jt.prototype.clear=Ut,Jt.prototype.delete=Vt,Jt.prototype.get=Yt,Jt.prototype.has=Gt,Jt.prototype.set=Zt;var Qt=Jt,Xt=Q(B.a,"Map");var ai=function(){this.size=0,this.__data__={hash:new Nt,map:new(Xt||Qt),string:new Nt}};var ei=function(a){var e=typeof a;return"string"==e||"number"==e||"symbol"==e||"boolean"==e?"__proto__"!==a:null===a};var ti=function(a,e){var t=a.__data__;return ei(e)?t["string"==typeof e?"string":"hash"]:t.map};var ii=function(a){var e=ti(this,a).delete(a);return this.size-=e?1:0,e};var ni=function(a){return ti(this,a).get(a)};var oi=function(a){return ti(this,a).has(a)};var ri=function(a,e){var t=ti(this,a),i=t.size;return t.set(a,e),this.size+=t.size==i?0:1,this};function si(a){var e=-1,t=null==a?0:a.length;for(this.clear();++e<t;){var i=a[e];this.set(i[0],i[1])}}si.prototype.clear=ai,si.prototype.delete=ii,si.prototype.get=ni,si.prototype.has=oi,si.prototype.set=ri;var di=si,li="Expected a function";function ci(a,e){if("function"!=typeof a||null!=e&&"function"!=typeof e)throw new TypeError(li);var t=function(){var i=arguments,n=e?e.apply(this,i):i[0],o=t.cache;if(o.has(n))return o.get(n);var r=a.apply(this,i);return t.cache=o.set(n,r)||o,r};return t.cache=new(ci.Cache||di),t}ci.Cache=di;var ui=ci,pi=500;var zi=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,gi=/\\(\\)?/g,mi=function(a){var e=ui(a,function(a){return t.size===pi&&t.clear(),a}),t=e.cache;return e}(function(a){var e=[];return 46===a.charCodeAt(0)&&e.push(""),a.replace(zi,function(a,t,i,n){e.push(i?n.replace(gi,"$1"):t||a)}),e});var wi=function(a){return null==a?"":m(a)};var yi=function(a,e){return Object(u.a)(a)?a:St(a,e)?[a]:mi(wi(a))},fi=1/0;var bi=function(a){if("string"==typeof a||r(a))return a;var e=a+"";return"0"==e&&1/a==-fi?"-0":e};var hi=function(a,e){for(var t=0,i=(e=yi(e,a)).length;null!=a&&t<i;)a=a[bi(e[t++])];return t&&t==i?a:void 0};var vi=function(a,e,t){var i=null==a?void 0:hi(a,e);return void 0===i?t:i};var ki=function(a,e){for(var t=-1,i=e.length,n=Array(i),o=null==a;++t<i;)n[t]=o?void 0:vi(a,e[t]);return n},ji=t(9);var _i=function(a){return null!=a&&a.length?Object(ji.a)(a,1):[]};var xi=function(a){return Wa(Ge(a,void 0,_i),a+"")},qi=xi(ki),Ei=mt(Object.getPrototypeOf,Object),Ai="[object Object]",Oi=Function.prototype,Ti=Object.prototype,Si=Oi.toString,Mi=Ti.hasOwnProperty,Pi=Si.call(Object);var Ci=function(a){if(!Object(n.a)(a)||Object(i.a)(a)!=Ai)return!1;var e=Ei(a);if(null===e)return!0;var t=Mi.call(e,"constructor")&&e.constructor;return"function"==typeof t&&t instanceof t&&Si.call(t)==Pi},Ri="[object DOMException]",Di="[object Error]";var Fi=function(a){if(!Object(n.a)(a))return!1;var e=Object(i.a)(a);return e==Di||e==Ri||"string"==typeof a.message&&"string"==typeof a.name&&!Ci(a)},Bi=Ze(function(a,e){try{return sa(a,void 0,e)}catch(a){return Fi(a)?a:new Error(a)}}),$i="Expected a function";var Ii=function(a,e){var t;if("function"!=typeof e)throw new TypeError($i);return a=O(a),function(){return--a>0&&(t=e.apply(this,arguments)),a<=1&&(e=void 0),t}},Li=Ze(function(a,e,t){var i=1;if(t.length){var n=pe(t,oe(Li));i|=32}return Ie(a,i,e,t,n)});Li.placeholder={};var Wi=Li,Ni=xi(function(a,e){return Na(e,function(e){e=bi(e),Ne(a,e,Wi(a[e],a))}),a}),Ui=Ze(function(a,e,t){var i=3;if(t.length){var n=pe(t,oe(Ui));i|=32}return Ie(e,i,a,t,n)});Ui.placeholder={};var Ki=Ui;var Hi=function(a,e,t){var i=-1,n=a.length;e<0&&(e=-e>n?0:n+e),(t=t>n?n:t)<0&&(t+=n),n=e>t?0:t-e>>>0,e>>>=0;for(var o=Array(n);++i<n;)o[i]=a[i+e];return o};var Vi=function(a,e,t){var i=a.length;return t=void 0===t?i:t,!e&&t>=i?a:Hi(a,e,t)},Yi=RegExp("[\\u200d\\ud800-\\udfff\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff\\ufe0e\\ufe0f]");var Gi=function(a){return Yi.test(a)};var Zi=function(a){return a.split("")},Ji="[\\ud800-\\udfff]",Qi="[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]",Xi="\\ud83c[\\udffb-\\udfff]",an="[^\\ud800-\\udfff]",en="(?:\\ud83c[\\udde6-\\uddff]){2}",tn="[\\ud800-\\udbff][\\udc00-\\udfff]",nn="(?:"+Qi+"|"+Xi+")"+"?",on="[\\ufe0e\\ufe0f]?"+nn+("(?:\\u200d(?:"+[an,en,tn].join("|")+")[\\ufe0e\\ufe0f]?"+nn+")*"),rn="(?:"+[an+Qi+"?",Qi,en,tn,Ji].join("|")+")",sn=RegExp(Xi+"(?="+Xi+")|"+rn+on,"g");var dn=function(a){return a.match(sn)||[]};var ln=function(a){return Gi(a)?dn(a):Zi(a)};var cn=function(a){return function(e){e=wi(e);var t=Gi(e)?ln(e):void 0,i=t?t[0]:e.charAt(0),n=t?Vi(t,1).join(""):e.slice(1);return i[a]()+n}},un=cn("toUpperCase");var pn=function(a){return un(wi(a).toLowerCase())};var zn=function(a,e,t,i){var n=-1,o=null==a?0:a.length;for(i&&o&&(t=a[++n]);++n<o;)t=e(t,a[n],n,a);return t};var gn=function(a){return function(e){return null==a?void 0:a[e]}},mn=gn({"À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","Ç":"C","ç":"c","Ð":"D","ð":"d","È":"E","É":"E","Ê":"E","Ë":"E","è":"e","é":"e","ê":"e","ë":"e","Ì":"I","Í":"I","Î":"I","Ï":"I","ì":"i","í":"i","î":"i","ï":"i","Ñ":"N","ñ":"n","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","Ù":"U","Ú":"U","Û":"U","Ü":"U","ù":"u","ú":"u","û":"u","ü":"u","Ý":"Y","ý":"y","ÿ":"y","Æ":"Ae","æ":"ae","Þ":"Th","þ":"th","ß":"ss","Ā":"A","Ă":"A","Ą":"A","ā":"a","ă":"a","ą":"a","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","ć":"c","ĉ":"c","ċ":"c","č":"c","Ď":"D","Đ":"D","ď":"d","đ":"d","Ē":"E","Ĕ":"E","Ė":"E","Ę":"E","Ě":"E","ē":"e","ĕ":"e","ė":"e","ę":"e","ě":"e","Ĝ":"G","Ğ":"G","Ġ":"G","Ģ":"G","ĝ":"g","ğ":"g","ġ":"g","ģ":"g","Ĥ":"H","Ħ":"H","ĥ":"h","ħ":"h","Ĩ":"I","Ī":"I","Ĭ":"I","Į":"I","İ":"I","ĩ":"i","ī":"i","ĭ":"i","į":"i","ı":"i","Ĵ":"J","ĵ":"j","Ķ":"K","ķ":"k","ĸ":"k","Ĺ":"L","Ļ":"L","Ľ":"L","Ŀ":"L","Ł":"L","ĺ":"l","ļ":"l","ľ":"l","ŀ":"l","ł":"l","Ń":"N","Ņ":"N","Ň":"N","Ŋ":"N","ń":"n","ņ":"n","ň":"n","ŋ":"n","Ō":"O","Ŏ":"O","Ő":"O","ō":"o","ŏ":"o","ő":"o","Ŕ":"R","Ŗ":"R","Ř":"R","ŕ":"r","ŗ":"r","ř":"r","Ś":"S","Ŝ":"S","Ş":"S","Š":"S","ś":"s","ŝ":"s","ş":"s","š":"s","Ţ":"T","Ť":"T","Ŧ":"T","ţ":"t","ť":"t","ŧ":"t","Ũ":"U","Ū":"U","Ŭ":"U","Ů":"U","Ű":"U","Ų":"U","ũ":"u","ū":"u","ŭ":"u","ů":"u","ű":"u","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","Ż":"Z","Ž":"Z","ź":"z","ż":"z","ž":"z","IJ":"IJ","ij":"ij","Œ":"Oe","œ":"oe","ʼn":"'n","ſ":"s"}),wn=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,yn=RegExp("[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]","g");var fn=function(a){return(a=wi(a))&&a.replace(wn,mn).replace(yn,"")},bn=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g;var hn=function(a){return a.match(bn)||[]},vn=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/;var kn=function(a){return vn.test(a)},jn="\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",_n="["+jn+"]",xn="\\d+",qn="[\\u2700-\\u27bf]",En="[a-z\\xdf-\\xf6\\xf8-\\xff]",An="[^\\ud800-\\udfff"+jn+xn+"\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde]",On="(?:\\ud83c[\\udde6-\\uddff]){2}",Tn="[\\ud800-\\udbff][\\udc00-\\udfff]",Sn="[A-Z\\xc0-\\xd6\\xd8-\\xde]",Mn="(?:"+En+"|"+An+")",Pn="(?:"+Sn+"|"+An+")",Cn="(?:[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]|\\ud83c[\\udffb-\\udfff])?",Rn="[\\ufe0e\\ufe0f]?"+Cn+("(?:\\u200d(?:"+["[^\\ud800-\\udfff]",On,Tn].join("|")+")[\\ufe0e\\ufe0f]?"+Cn+")*"),Dn="(?:"+[qn,On,Tn].join("|")+")"+Rn,Fn=RegExp([Sn+"?"+En+"+(?:['’](?:d|ll|m|re|s|t|ve))?(?="+[_n,Sn,"$"].join("|")+")",Pn+"+(?:['’](?:D|LL|M|RE|S|T|VE))?(?="+[_n,Sn+Mn,"$"].join("|")+")",Sn+"?"+Mn+"+(?:['’](?:d|ll|m|re|s|t|ve))?",Sn+"+(?:['’](?:D|LL|M|RE|S|T|VE))?","\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])","\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",xn,Dn].join("|"),"g");var Bn=function(a){return a.match(Fn)||[]};var $n=function(a,e,t){return a=wi(a),void 0===(e=t?void 0:e)?kn(a)?Bn(a):hn(a):a.match(e)||[]},In=RegExp("['’]","g");var Ln=function(a){return function(e){return zn($n(fn(e).replace(In,"")),a,"")}},Wn=Ln(function(a,e,t){return e=e.toLowerCase(),a+(t?pn(e):e)});var Nn=function(){if(!arguments.length)return[];var a=arguments[0];return Object(u.a)(a)?a:[a]},Un=Math.min;var Kn=function(a){var e=Math[a];return function(a,t){if(a=x(a),t=null==t?0:Un(O(t),292)){var i=(wi(a)+"e").split("e"),n=e(i[0]+"e"+(+i[1]+t));return+((i=(wi(n)+"e").split("e"))[0]+"e"+(+i[1]-t))}return e(a)}},Hn=Kn("ceil");var Vn=function(a){var e=Aa(a);return e.__chain__=!0,e},Yn=Math.ceil,Gn=Math.max;var Zn=function(a,e,t){e=(t?at(a,e,t):void 0===e)?1:Gn(O(e),0);var i=null==a?0:a.length;if(!i||e<1)return[];for(var n=0,o=0,r=Array(Yn(i/e));n<i;)r[o++]=Hi(a,n,n+=e);return r};var Jn=function(a,e,t){return a==a&&(void 0!==t&&(a=a<=t?a:t),void 0!==e&&(a=a>=e?a:e)),a};var Qn=function(a,e,t){return void 0===t&&(t=e,e=void 0),void 0!==t&&(t=(t=x(t))==t?t:0),void 0!==e&&(e=(e=x(e))==e?e:0),Jn(x(a),e,t)};var Xn=function(){this.__data__=new Qt,this.size=0};var ao=function(a){var e=this.__data__,t=e.delete(a);return this.size=e.size,t};var eo=function(a){return this.__data__.get(a)};var to=function(a){return this.__data__.has(a)},io=200;var no=function(a,e){var t=this.__data__;if(t instanceof Qt){var i=t.__data__;if(!Xt||i.length<io-1)return i.push([a,e]),this.size=++t.size,this;t=this.__data__=new di(i)}return t.set(a,e),this.size=t.size,this};function oo(a){var e=this.__data__=new Qt(a);this.size=e.size}oo.prototype.clear=Xn,oo.prototype.delete=ao,oo.prototype.get=eo,oo.prototype.has=to,oo.prototype.set=no;var ro=oo;var so=function(a,e){return a&&Ve(e,bt(e),a)};var lo=function(a,e){return a&&Ve(e,xt(e),a)},co=t(153);var uo=function(a,e){for(var t=-1,i=null==a?0:a.length,n=0,o=[];++t<i;){var r=a[t];e(r,t,a)&&(o[n++]=r)}return o};var po=function(){return[]},zo=Object.prototype.propertyIsEnumerable,go=Object.getOwnPropertySymbols,mo=go?function(a){return null==a?[]:(a=Object(a),uo(go(a),function(e){return zo.call(a,e)}))}:po;var wo=function(a,e){return Ve(a,mo(a),e)},yo=t(26),fo=Object.getOwnPropertySymbols?function(a){for(var e=[];a;)Object(yo.a)(e,mo(a)),a=Ei(a);return e}:po;var bo=function(a,e){return Ve(a,fo(a),e)};var ho=function(a,e,t){var i=e(a);return Object(u.a)(a)?i:Object(yo.a)(i,t(a))};var vo=function(a){return ho(a,bt,mo)};var ko=function(a){return ho(a,xt,fo)},jo=Q(B.a,"DataView"),_o=Q(B.a,"Promise"),xo=Q(B.a,"Set"),qo=N(jo),Eo=N(Xt),Ao=N(_o),Oo=N(xo),To=N(X),So=i.a;(jo&&"[object DataView]"!=So(new jo(new ArrayBuffer(1)))||Xt&&"[object Map]"!=So(new Xt)||_o&&"[object Promise]"!=So(_o.resolve())||xo&&"[object Set]"!=So(new xo)||X&&"[object WeakMap]"!=So(new X))&&(So=function(a){var e=Object(i.a)(a),t="[object Object]"==e?a.constructor:void 0,n=t?N(t):"";if(n)switch(n){case qo:return"[object DataView]";case Eo:return"[object Map]";case Ao:return"[object Promise]";case Oo:return"[object Set]";case To:return"[object WeakMap]"}return e});var Mo=So,Po=Object.prototype.hasOwnProperty;var Co=function(a){var e=a.length,t=new a.constructor(e);return e&&"string"==typeof a[0]&&Po.call(a,"index")&&(t.index=a.index,t.input=a.input),t},Ro=B.a.Uint8Array;var Do=function(a){var e=new a.constructor(a.byteLength);return new Ro(e).set(new Ro(a)),e};var Fo=function(a,e){var t=e?Do(a.buffer):a.buffer;return new a.constructor(t,a.byteOffset,a.byteLength)},Bo=/\w*$/;var $o=function(a){var e=new a.constructor(a.source,Bo.exec(a));return e.lastIndex=a.lastIndex,e},Io=l.a?l.a.prototype:void 0,Lo=Io?Io.valueOf:void 0;var Wo=function(a){return Lo?Object(Lo.call(a)):{}};var No=function(a,e){var t=e?Do(a.buffer):a.buffer;return new a.constructor(t,a.byteOffset,a.length)},Uo="[object Boolean]",Ko="[object Date]",Ho="[object Map]",Vo="[object Number]",Yo="[object RegExp]",Go="[object Set]",Zo="[object String]",Jo="[object Symbol]",Qo="[object ArrayBuffer]",Xo="[object DataView]",ar="[object Float32Array]",er="[object Float64Array]",tr="[object Int8Array]",ir="[object Int16Array]",nr="[object Int32Array]",or="[object Uint8Array]",rr="[object Uint8ClampedArray]",sr="[object Uint16Array]",dr="[object Uint32Array]";var lr=function(a,e,t){var i=a.constructor;switch(e){case Qo:return Do(a);case Uo:case Ko:return new i(+a);case Xo:return Fo(a,t);case ar:case er:case tr:case ir:case nr:case or:case rr:case sr:case dr:return No(a,t);case Ho:return new i;case Vo:case Zo:return new i(a);case Yo:return $o(a);case Go:return new i;case Jo:return Wo(a)}};var cr=function(a){return"function"!=typeof a.constructor||it(a)?{}:ia(Ei(a))},ur="[object Map]";var pr=function(a){return Object(n.a)(a)&&Mo(a)==ur},zr=ct.a&&ct.a.isMap,gr=zr?lt(zr):pr,mr="[object Set]";var wr=function(a){return Object(n.a)(a)&&Mo(a)==mr},yr=ct.a&&ct.a.isSet,fr=yr?lt(yr):wr,br=1,hr=2,vr=4,kr="[object Arguments]",jr="[object Function]",_r="[object GeneratorFunction]",xr="[object Object]",qr={};qr[kr]=qr["[object Array]"]=qr["[object ArrayBuffer]"]=qr["[object DataView]"]=qr["[object Boolean]"]=qr["[object Date]"]=qr["[object Float32Array]"]=qr["[object Float64Array]"]=qr["[object Int8Array]"]=qr["[object Int16Array]"]=qr["[object Int32Array]"]=qr["[object Map]"]=qr["[object Number]"]=qr[xr]=qr["[object RegExp]"]=qr["[object Set]"]=qr["[object String]"]=qr["[object Symbol]"]=qr["[object Uint8Array]"]=qr["[object Uint8ClampedArray]"]=qr["[object Uint16Array]"]=qr["[object Uint32Array]"]=!0,qr["[object Error]"]=qr[jr]=qr["[object WeakMap]"]=!1;var Er=function a(e,t,i,n,o,r){var s,d=t&br,l=t&hr,c=t&vr;if(i&&(s=o?i(e,n,o,r):i(e)),void 0!==s)return s;if(!f(e))return e;var p=Object(u.a)(e);if(p){if(s=Co(e),!d)return _a(e,s)}else{var z=Mo(e),g=z==jr||z==_r;if(Object(rt.a)(e))return Object(co.a)(e,d);if(z==xr||z==kr||g&&!o){if(s=l||g?{}:cr(e),!d)return l?bo(e,lo(s,e)):wo(e,so(s,e))}else{if(!qr[z])return o?e:{};s=lr(e,z,d)}}r||(r=new ro);var m=r.get(e);if(m)return m;if(r.set(e,s),fr(e))return e.forEach(function(n){s.add(a(n,t,i,n,e,r))}),s;if(gr(e))return e.forEach(function(n,o){s.set(o,a(n,t,i,o,e,r))}),s;var w=c?l?ko:vo:l?keysIn:bt,y=p?void 0:w(e);return Na(y||e,function(n,o){y&&(n=e[o=n]),He(s,o,a(n,t,i,o,e,r))}),s},Ar=4;var Or=function(a){return Er(a,Ar)},Tr=1,Sr=4;var Mr=function(a){return Er(a,Tr|Sr)},Pr=1,Cr=4;var Rr=function(a,e){return Er(a,Pr|Cr,e="function"==typeof e?e:void 0)},Dr=4;var Fr=function(a,e){return Er(a,Dr,e="function"==typeof e?e:void 0)};var Br=function(){return new ja(this.value(),this.__chain__)};var $r=function(a){for(var e=-1,t=null==a?0:a.length,i=0,n=[];++e<t;){var o=a[e];o&&(n[i++]=o)}return n};var Ir=function(){var a=arguments.length;if(!a)return[];for(var e=Array(a-1),t=arguments[0],i=a;i--;)e[i-1]=arguments[i];return Object(yo.a)(Object(u.a)(t)?_a(t):[t],Object(ji.a)(e,1))},Lr="__lodash_hash_undefined__";var Wr=function(a){return this.__data__.set(a,Lr),this};var Nr=function(a){return this.__data__.has(a)};function Ur(a){var e=-1,t=null==a?0:a.length;for(this.__data__=new di;++e<t;)this.add(a[e])}Ur.prototype.add=Ur.prototype.push=Wr,Ur.prototype.has=Nr;var Kr=Ur;var Hr=function(a,e){for(var t=-1,i=null==a?0:a.length;++t<i;)if(e(a[t],t,a))return!0;return!1};var Vr=function(a,e){return a.has(e)},Yr=1,Gr=2;var Zr=function(a,e,t,i,n,o){var r=t&Yr,s=a.length,d=e.length;if(s!=d&&!(r&&d>s))return!1;var l=o.get(a);if(l&&o.get(e))return l==e;var c=-1,u=!0,p=t&Gr?new Kr:void 0;for(o.set(a,e),o.set(e,a);++c<s;){var z=a[c],g=e[c];if(i)var m=r?i(g,z,c,e,a,o):i(z,g,c,a,e,o);if(void 0!==m){if(m)continue;u=!1;break}if(p){if(!Hr(e,function(a,e){if(!Vr(p,e)&&(z===a||n(z,a,t,i,o)))return p.push(e)})){u=!1;break}}else if(z!==g&&!n(z,g,t,i,o)){u=!1;break}}return o.delete(a),o.delete(e),u};var Jr=function(a){var e=-1,t=Array(a.size);return a.forEach(function(a,i){t[++e]=[i,a]}),t};var Qr=function(a){var e=-1,t=Array(a.size);return a.forEach(function(a){t[++e]=a}),t},Xr=1,as=2,es="[object Boolean]",ts="[object Date]",is="[object Error]",ns="[object Map]",os="[object Number]",rs="[object RegExp]",ss="[object Set]",ds="[object String]",ls="[object Symbol]",cs="[object ArrayBuffer]",us="[object DataView]",ps=l.a?l.a.prototype:void 0,zs=ps?ps.valueOf:void 0;var gs=function(a,e,t,i,n,o,r){switch(t){case us:if(a.byteLength!=e.byteLength||a.byteOffset!=e.byteOffset)return!1;a=a.buffer,e=e.buffer;case cs:return!(a.byteLength!=e.byteLength||!o(new Ro(a),new Ro(e)));case es:case ts:case os:return Ue(+a,+e);case is:return a.name==e.name&&a.message==e.message;case rs:case ds:return a==e+"";case ns:var s=Jr;case ss:var d=i&Xr;if(s||(s=Qr),a.size!=e.size&&!d)return!1;var l=r.get(a);if(l)return l==e;i|=as,r.set(a,e);var c=Zr(s(a),s(e),i,n,o,r);return r.delete(a),c;case ls:if(zs)return zs.call(a)==zs.call(e)}return!1},ms=1,ws=Object.prototype.hasOwnProperty;var ys=function(a,e,t,i,n,o){var r=t&ms,s=vo(a),d=s.length;if(d!=vo(e).length&&!r)return!1;for(var l=d;l--;){var c=s[l];if(!(r?c in e:ws.call(e,c)))return!1}var u=o.get(a);if(u&&o.get(e))return u==e;var p=!0;o.set(a,e),o.set(e,a);for(var z=r;++l<d;){var g=a[c=s[l]],m=e[c];if(i)var w=r?i(m,g,c,e,a,o):i(g,m,c,a,e,o);if(!(void 0===w?g===m||n(g,m,t,i,o):w)){p=!1;break}z||(z="constructor"==c)}if(p&&!z){var y=a.constructor,f=e.constructor;y!=f&&"constructor"in a&&"constructor"in e&&!("function"==typeof y&&y instanceof y&&"function"==typeof f&&f instanceof f)&&(p=!1)}return o.delete(a),o.delete(e),p},fs=1,bs="[object Arguments]",hs="[object Array]",vs="[object Object]",ks=Object.prototype.hasOwnProperty;var js=function(a,e,t,i,n,o){var r=Object(u.a)(a),s=Object(u.a)(e),d=r?hs:Mo(a),l=s?hs:Mo(e),c=(d=d==bs?vs:d)==vs,p=(l=l==bs?vs:l)==vs,z=d==l;if(z&&Object(rt.a)(a)){if(!Object(rt.a)(e))return!1;r=!0,c=!1}if(z&&!c)return o||(o=new ro),r||pt(a)?Zr(a,e,t,i,n,o):gs(a,e,d,t,i,n,o);if(!(t&fs)){var g=c&&ks.call(a,"__wrapped__"),m=p&&ks.call(e,"__wrapped__");if(g||m){var w=g?a.value():a,y=m?e.value():e;return o||(o=new ro),n(w,y,t,i,o)}}return!!z&&(o||(o=new ro),ys(a,e,t,i,n,o))};var _s=function a(e,t,i,o,r){return e===t||(null==e||null==t||!Object(n.a)(e)&&!Object(n.a)(t)?e!=e&&t!=t:js(e,t,i,o,a,r))},xs=1,qs=2;var Es=function(a,e,t,i){var n=t.length,o=n,r=!i;if(null==a)return!o;for(a=Object(a);n--;){var s=t[n];if(r&&s[2]?s[1]!==a[s[0]]:!(s[0]in a))return!1}for(;++n<o;){var d=(s=t[n])[0],l=a[d],c=s[1];if(r&&s[2]){if(void 0===l&&!(d in a))return!1}else{var u=new ro;if(i)var p=i(l,c,d,a,e,u);if(!(void 0===p?_s(c,l,xs|qs,i,u):p))return!1}}return!0};var As=function(a){return a==a&&!f(a)};var Os=function(a){for(var e=bt(a),t=e.length;t--;){var i=e[t],n=a[i];e[t]=[i,n,As(n)]}return e};var Ts=function(a,e){return function(t){return null!=t&&t[a]===e&&(void 0!==e||a in Object(t))}};var Ss=function(a){var e=Os(a);return 1==e.length&&e[0][2]?Ts(e[0][0],e[0][1]):function(t){return t===a||Es(t,a,e)}};var Ms=function(a,e){return null!=a&&e in Object(a)};var Ps=function(a,e,t){for(var i=-1,n=(e=yi(e,a)).length,o=!1;++i<n;){var r=bi(e[i]);if(!(o=null!=a&&t(a,r)))break;a=a[r]}return o||++i!=n?o:!!(n=null==a?0:a.length)&&Qe(n)&&de(r,n)&&(Object(u.a)(a)||Object(ot.a)(a))};var Cs=function(a,e){return null!=a&&Ps(a,e,Ms)},Rs=1,Ds=2;var Fs=function(a,e){return St(a)&&As(e)?Ts(bi(a),e):function(t){var i=vi(t,a);return void 0===i&&i===e?Cs(t,a):_s(e,i,Rs|Ds)}};var Bs=function(a){return function(e){return null==e?void 0:e[a]}};var $s=function(a){return function(e){return hi(e,a)}};var Is=function(a){return St(a)?Bs(bi(a)):$s(a)};var Ls=function(a){return"function"==typeof a?a:null==a?M:"object"==typeof a?Object(u.a)(a)?Fs(a[0],a[1]):Ss(a):Is(a)},Ws="Expected a function";var Ns=function(a){var e=null==a?0:a.length,t=Ls;return a=e?c(a,function(a){if("function"!=typeof a[1])throw new TypeError(Ws);return[t(a[0]),a[1]]}):[],Ze(function(t){for(var i=-1;++i<e;){var n=a[i];if(sa(n[0],this,t))return sa(n[1],this,t)}})};var Us=function(a,e,t){var i=t.length;if(null==a)return!i;for(a=Object(a);i--;){var n=t[i],o=e[n],r=a[n];if(void 0===r&&!(n in a)||!o(r))return!1}return!0};var Ks=function(a){var e=bt(a);return function(t){return Us(t,a,e)}},Hs=1;var Vs=function(a){return Ks(Er(a,Hs))};var Ys=function(a,e){return null==e||Us(a,e,bt(e))};var Gs=function(a,e,t,i){for(var n=-1,o=null==a?0:a.length;++n<o;){var r=a[n];e(i,r,t(r),a)}return i};var Zs=function(a){return function(e,t,i){for(var n=-1,o=Object(e),r=i(e),s=r.length;s--;){var d=r[a?s:++n];if(!1===t(o[d],d,o))break}return e}},Js=Zs();var Qs=function(a,e){return a&&Js(a,e,bt)};var Xs=function(a,e){return function(t,i){if(null==t)return t;if(!Xe(t))return a(t,i);for(var n=t.length,o=e?n:-1,r=Object(t);(e?o--:++o<n)&&!1!==i(r[o],o,r););return t}},ad=Xs(Qs);var ed=function(a,e,t,i){return ad(a,function(a,n,o){e(i,a,t(a),o)}),i};var td=function(a,e){return function(t,i){var n=Object(u.a)(t)?Gs:ed,o=e?e():{};return n(t,a,Ls(i,2),o)}},id=Object.prototype.hasOwnProperty,nd=td(function(a,e,t){id.call(a,t)?++a[t]:Ne(a,t,1)});var od=function(a,e){var t=ia(a);return null==e?t:so(t,e)},rd=8;function sd(a,e,t){var i=Ie(a,rd,void 0,void 0,void 0,void 0,void 0,e=t?void 0:e);return i.placeholder=sd.placeholder,i}sd.placeholder={};var dd=sd,ld=16;function cd(a,e,t){var i=Ie(a,ld,void 0,void 0,void 0,void 0,void 0,e=t?void 0:e);return i.placeholder=cd.placeholder,i}cd.placeholder={};var ud=cd,pd=function(){return B.a.Date.now()},zd="Expected a function",gd=Math.max,md=Math.min;var wd=function(a,e,t){var i,n,o,r,s,d,l=0,c=!1,u=!1,p=!0;if("function"!=typeof a)throw new TypeError(zd);function z(e){var t=i,o=n;return i=n=void 0,l=e,r=a.apply(o,t)}function g(a){var t=a-d;return void 0===d||t>=e||t<0||u&&a-l>=o}function m(){var a=pd();if(g(a))return w(a);s=setTimeout(m,function(a){var t=e-(a-d);return u?md(t,o-(a-l)):t}(a))}function w(a){return s=void 0,p&&i?z(a):(i=n=void 0,r)}function y(){var a=pd(),t=g(a);if(i=arguments,n=this,d=a,t){if(void 0===s)return function(a){return l=a,s=setTimeout(m,e),c?z(a):r}(d);if(u)return s=setTimeout(m,e),z(d)}return void 0===s&&(s=setTimeout(m,e)),r}return e=x(e)||0,f(t)&&(c=!!t.leading,o=(u="maxWait"in t)?gd(x(t.maxWait)||0,e):o,p="trailing"in t?!!t.trailing:p),y.cancel=function(){void 0!==s&&clearTimeout(s),l=0,i=d=n=s=void 0},y.flush=function(){return void 0===s?r:w(pd())},y};var yd=function(a,e){return null==a||a!=a?e:a},fd=Object.prototype,bd=fd.hasOwnProperty,hd=Ze(function(a,e){a=Object(a);var t=-1,i=e.length,n=i>2?e[2]:void 0;for(n&&at(e[0],e[1],n)&&(i=1);++t<i;)for(var o=e[t],r=xt(o),s=-1,d=r.length;++s<d;){var l=r[s],c=a[l];(void 0===c||Ue(c,fd[l])&&!bd.call(a,l))&&(a[l]=o[l])}return a});var vd=function(a,e,t){(void 0===t||Ue(a[e],t))&&(void 0!==t||e in a)||Ne(a,e,t)};var kd=function(a){return Object(n.a)(a)&&Xe(a)};var jd=function(a,e){if("__proto__"!=e)return a[e]};var _d=function(a){return Ve(a,xt(a))};var xd=function(a,e,t,i,n,o,r){var s=jd(a,t),d=jd(e,t),l=r.get(d);if(l)vd(a,t,l);else{var c=o?o(s,d,t+"",a,e,r):void 0,p=void 0===c;if(p){var z=Object(u.a)(d),g=!z&&Object(rt.a)(d),m=!z&&!g&&pt(d);c=d,z||g||m?Object(u.a)(s)?c=s:kd(s)?c=_a(s):g?(p=!1,c=Object(co.a)(d,!0)):m?(p=!1,c=No(d,!0)):c=[]:Ci(d)||Object(ot.a)(d)?(c=s,Object(ot.a)(s)?c=_d(s):f(s)&&!F(s)||(c=cr(d))):p=!1}p&&(r.set(d,c),n(c,d,i,o,r),r.delete(d)),vd(a,t,c)}};var qd=function a(e,t,i,n,o){e!==t&&Js(t,function(r,s){if(f(r))o||(o=new ro),xd(e,t,s,i,a,n,o);else{var d=n?n(jd(e,s),r,s+"",e,t,o):void 0;void 0===d&&(d=r),vd(e,s,d)}},xt)};var Ed=function a(e,t,i,n,o,r){return f(e)&&f(t)&&(r.set(t,e),qd(e,t,void 0,a,r),r.delete(t)),e},Ad=et(function(a,e,t,i){qd(a,e,t,i)}),Od=Ze(function(a){return a.push(void 0,Ed),sa(Ad,void 0,a)}),Td="Expected a function";var Sd=function(a,e,t){if("function"!=typeof a)throw new TypeError(Td);return setTimeout(function(){a.apply(void 0,t)},e)},Md=Ze(function(a,e){return Sd(a,1,e)}),Pd=Ze(function(a,e,t){return Sd(a,x(e)||0,t)});var Cd=function(a,e,t){for(var i=-1,n=null==a?0:a.length;++i<n;)if(t(e,a[i]))return!0;return!1},Rd=200;var Dd=function(a,e,t,i){var n=-1,o=Ya,r=!0,s=a.length,d=[],l=e.length;if(!s)return d;t&&(e=c(e,lt(t))),i?(o=Cd,r=!1):e.length>=Rd&&(o=Vr,r=!1,e=new Kr(e));a:for(;++n<s;){var u=a[n],p=null==t?u:t(u);if(u=i||0!==u?u:0,r&&p==p){for(var z=l;z--;)if(e[z]===p)continue a;d.push(u)}else o(e,p,i)||d.push(u)}return d},Fd=Ze(function(a,e){return kd(a)?Dd(a,Object(ji.a)(e,1,kd,!0)):[]});var Bd=function(a){var e=null==a?0:a.length;return e?a[e-1]:void 0},$d=Ze(function(a,e){var t=Bd(e);return kd(t)&&(t=void 0),kd(a)?Dd(a,Object(ji.a)(e,1,kd,!0),Ls(t,2)):[]}),Id=Ze(function(a,e){var t=Bd(e);return kd(t)&&(t=void 0),kd(a)?Dd(a,Object(ji.a)(e,1,kd,!0),void 0,t):[]}),Ld=w(function(a,e){return a/e},1);var Wd=function(a,e,t){var i=null==a?0:a.length;return i?(e=t||void 0===e?1:O(e),Hi(a,e<0?0:e,i)):[]};var Nd=function(a,e,t){var i=null==a?0:a.length;return i?(e=t||void 0===e?1:O(e),Hi(a,0,(e=i-e)<0?0:e)):[]};var Ud=function(a,e,t,i){for(var n=a.length,o=i?n:-1;(i?o--:++o<n)&&e(a[o],o,a););return t?Hi(a,i?0:o,i?o+1:n):Hi(a,i?o+1:0,i?n:o)};var Kd=function(a,e){return a&&a.length?Ud(a,Ls(e,3),!0,!0):[]};var Hd=function(a,e){return a&&a.length?Ud(a,Ls(e,3),!0):[]};var Vd=function(a){return"function"==typeof a?a:M};var Yd=function(a,e){return(Object(u.a)(a)?Na:ad)(a,Vd(e))};var Gd=function(a,e){for(var t=null==a?0:a.length;t--&&!1!==e(a[t],t,a););return a},Zd=Zs(!0);var Jd=function(a,e){return a&&Zd(a,e,bt)},Qd=Xs(Jd,!0);var Xd=function(a,e){return(Object(u.a)(a)?Gd:Qd)(a,Vd(e))};var al=function(a,e,t){a=wi(a),e=m(e);var i=a.length,n=t=void 0===t?i:Jn(O(t),0,i);return(t-=e.length)>=0&&a.slice(t,n)==e};var el=function(a,e){return c(e,function(e){return[e,a[e]]})};var tl=function(a){var e=-1,t=Array(a.size);return a.forEach(function(a){t[++e]=[a,a]}),t},il="[object Map]",nl="[object Set]";var ol=function(a){return function(e){var t=Mo(e);return t==il?Jr(e):t==nl?tl(e):el(e,a(e))}},rl=ol(bt),sl=ol(xt),dl=gn({"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;"}),ll=/[&<>"']/g,cl=RegExp(ll.source);var ul=function(a){return(a=wi(a))&&cl.test(a)?a.replace(ll,dl):a},pl=/[\\^$.*+?()[\]{}|]/g,zl=RegExp(pl.source);var gl=function(a){return(a=wi(a))&&zl.test(a)?a.replace(pl,"\\$&"):a};var ml=function(a,e){for(var t=-1,i=null==a?0:a.length;++t<i;)if(!e(a[t],t,a))return!1;return!0};var wl=function(a,e){var t=!0;return ad(a,function(a,i,n){return t=!!e(a,i,n)}),t};var yl=function(a,e,t){var i=Object(u.a)(a)?ml:wl;return t&&at(a,e,t)&&(e=void 0),i(a,Ls(e,3))},fl=4294967295;var bl=function(a){return a?Jn(O(a),0,fl):0};var hl=function(a,e,t,i){var n=a.length;for((t=O(t))<0&&(t=-t>n?0:n+t),(i=void 0===i||i>n?n:O(i))<0&&(i+=n),i=t>i?0:bl(i);t<i;)a[t++]=e;return a};var vl=function(a,e,t,i){var n=null==a?0:a.length;return n?(t&&"number"!=typeof t&&at(a,e,t)&&(t=0,i=n),hl(a,e,t,i)):[]};var kl=function(a,e){var t=[];return ad(a,function(a,i,n){e(a,i,n)&&t.push(a)}),t};var jl=function(a,e){return(Object(u.a)(a)?uo:kl)(a,Ls(e,3))};var _l=function(a){return function(e,t,i){var n=Object(e);if(!Xe(e)){var o=Ls(t,3);e=bt(e),t=function(a){return o(n[a],a,n)}}var r=a(e,t,i);return r>-1?n[o?e[r]:r]:void 0}},xl=Math.max;var ql=function(a,e,t){var i=null==a?0:a.length;if(!i)return-1;var n=null==t?0:O(t);return n<0&&(n=xl(i+n,0)),Ua(a,Ls(e,3),n)},El=_l(ql);var Al=function(a,e,t){var i;return t(a,function(a,t,n){if(e(a,t,n))return i=t,!1}),i};var Ol=function(a,e){return Al(a,Ls(e,3),Qs)},Tl=Math.max,Sl=Math.min;var Ml=function(a,e,t){var i=null==a?0:a.length;if(!i)return-1;var n=i-1;return void 0!==t&&(n=O(t),n=t<0?Tl(i+n,0):Sl(n,i-1)),Ua(a,Ls(e,3),n,!0)},Pl=_l(Ml);var Cl=function(a,e){return Al(a,Ls(e,3),Jd)};var Rl=function(a){return a&&a.length?a[0]:void 0};var Dl=function(a,e){var t=-1,i=Xe(a)?Array(a.length):[];return ad(a,function(a,n,o){i[++t]=e(a,n,o)}),i};var Fl=function(a,e){return(Object(u.a)(a)?c:Dl)(a,Ls(e,3))};var Bl=function(a,e){return Object(ji.a)(Fl(a,e),1)},$l=1/0;var Il=function(a,e){return Object(ji.a)(Fl(a,e),$l)};var Ll=function(a,e,t){return t=void 0===t?1:O(t),Object(ji.a)(Fl(a,e),t)},Wl=t(106);var Nl=function(a,e){return null!=a&&a.length?(e=void 0===e?1:O(e),Object(ji.a)(a,e)):[]},Ul=512;var Kl=function(a){return Ie(a,Ul)},Hl=Kn("floor"),Vl="Expected a function",Yl=8,Gl=32,Zl=128,Jl=256;var Ql=function(a){return xi(function(e){var t=e.length,i=t,n=ja.prototype.thru;for(a&&e.reverse();i--;){var o=e[i];if("function"!=typeof o)throw new TypeError(Vl);if(n&&!r&&"wrapper"==va(o))var r=new ja([],!0)}for(i=r?i:t;++i<t;){o=e[i];var s=va(o),d="wrapper"==s?fa(o):void 0;r=d&&Oa(d[0])&&d[1]==(Zl|Yl|Gl|Jl)&&!d[4].length&&1==d[9]?r[va(d[0])].apply(r,d[3]):1==o.length&&Oa(o)?r[s]():r.thru(o)}return function(){var a=arguments,i=a[0];if(r&&1==a.length&&Object(u.a)(i))return r.plant(i).value();for(var n=0,o=t?e[n].apply(this,a):i;++n<t;)o=e[n].call(this,o);return o}})},Xl=Ql(),ac=Ql(!0);var ec=function(a,e){return null==a?a:Js(a,Vd(e),xt)};var tc=function(a,e){return null==a?a:Zd(a,Vd(e),xt)};var ic=function(a,e){return a&&Qs(a,Vd(e))};var nc=function(a,e){return a&&Jd(a,Vd(e))};var oc=function(a){for(var e=-1,t=null==a?0:a.length,i={};++e<t;){var n=a[e];i[n[0]]=n[1]}return i};var rc=function(a,e){return uo(e,function(e){return F(a[e])})};var sc=function(a){return null==a?[]:rc(a,bt(a))};var dc=function(a){return null==a?[]:rc(a,xt(a))},lc=Object.prototype.hasOwnProperty,cc=td(function(a,e,t){lc.call(a,t)?a[t].push(e):Ne(a,t,[e])});var uc=function(a,e){return a>e};var pc=function(a){return function(e,t){return"string"==typeof e&&"string"==typeof t||(e=x(e),t=x(t)),a(e,t)}},zc=pc(uc),gc=pc(function(a,e){return a>=e}),mc=Object.prototype.hasOwnProperty;var wc=function(a,e){return null!=a&&mc.call(a,e)};var yc=function(a,e){return null!=a&&Ps(a,e,wc)},fc=Math.max,bc=Math.min;var hc=function(a,e,t){return a>=bc(e,t)&&a<fc(e,t)};var vc=function(a,e,t){return e=A(e),void 0===t?(t=e,e=0):t=A(t),a=x(a),hc(a,e,t)},kc="[object String]";var jc=function(a){return"string"==typeof a||!Object(u.a)(a)&&Object(n.a)(a)&&Object(i.a)(a)==kc};var _c=function(a,e){return c(e,function(e){return a[e]})};var xc=function(a){return null==a?[]:_c(a,bt(a))},qc=Math.max;var Ec=function(a,e,t,i){a=Xe(a)?a:xc(a),t=t&&!i?O(t):0;var n=a.length;return t<0&&(t=qc(n+t,0)),jc(a)?t<=n&&a.indexOf(e,t)>-1:!!n&&Va(a,e,t)>-1},Ac=Math.max;var Oc=function(a,e,t){var i=null==a?0:a.length;if(!i)return-1;var n=null==t?0:O(t);return n<0&&(n=Ac(i+n,0)),Va(a,e,n)};var Tc=function(a){return null!=a&&a.length?Hi(a,0,-1):[]},Sc=Math.min;var Mc=function(a,e,t){for(var i=t?Cd:Ya,n=a[0].length,o=a.length,r=o,s=Array(o),d=1/0,l=[];r--;){var u=a[r];r&&e&&(u=c(u,lt(e))),d=Sc(u.length,d),s[r]=!t&&(e||n>=120&&u.length>=120)?new Kr(r&&u):void 0}u=a[0];var p=-1,z=s[0];a:for(;++p<n&&l.length<d;){var g=u[p],m=e?e(g):g;if(g=t||0!==g?g:0,!(z?Vr(z,m):i(l,m,t))){for(r=o;--r;){var w=s[r];if(!(w?Vr(w,m):i(a[r],m,t)))continue a}z&&z.push(m),l.push(g)}}return l};var Pc=function(a){return kd(a)?a:[]},Cc=Ze(function(a){var e=c(a,Pc);return e.length&&e[0]===a[0]?Mc(e):[]}),Rc=Ze(function(a){var e=Bd(a),t=c(a,Pc);return e===Bd(t)?e=void 0:t.pop(),t.length&&t[0]===a[0]?Mc(t,Ls(e,2)):[]}),Dc=Ze(function(a){var e=Bd(a),t=c(a,Pc);return(e="function"==typeof e?e:void 0)&&t.pop(),t.length&&t[0]===a[0]?Mc(t,void 0,e):[]});var Fc=function(a,e,t,i){return Qs(a,function(a,n,o){e(i,t(a),n,o)}),i};var Bc=function(a,e){return function(t,i){return Fc(t,a,e(i),{})}},$c=Object.prototype.toString,Ic=Bc(function(a,e,t){null!=e&&"function"!=typeof e.toString&&(e=$c.call(e)),a[e]=t},Ia(M)),Lc=Object.prototype,Wc=Lc.hasOwnProperty,Nc=Lc.toString,Uc=Bc(function(a,e,t){null!=e&&"function"!=typeof e.toString&&(e=Nc.call(e)),Wc.call(a,e)?a[e].push(t):a[e]=[t]},Ls);var Kc=function(a,e){return e.length<2?a:hi(a,Hi(e,0,-1))};var Hc=function(a,e,t){e=yi(e,a);var i=null==(a=Kc(a,e))?a:a[bi(Bd(e))];return null==i?void 0:sa(i,a,t)},Vc=Ze(Hc),Yc=Ze(function(a,e,t){var i=-1,n="function"==typeof e,o=Xe(a)?Array(a.length):[];return ad(a,function(a){o[++i]=n?sa(e,a,t):Hc(a,e,t)}),o}),Gc="[object ArrayBuffer]";var Zc=function(a){return Object(n.a)(a)&&Object(i.a)(a)==Gc},Jc=ct.a&&ct.a.isArrayBuffer,Qc=Jc?lt(Jc):Zc,Xc="[object Boolean]";var au=function(a){return!0===a||!1===a||Object(n.a)(a)&&Object(i.a)(a)==Xc},eu="[object Date]";var tu=function(a){return Object(n.a)(a)&&Object(i.a)(a)==eu},iu=ct.a&&ct.a.isDate,nu=iu?lt(iu):tu;var ou=function(a){return Object(n.a)(a)&&1===a.nodeType&&!Ci(a)},ru="[object Map]",su="[object Set]",du=Object.prototype.hasOwnProperty;var lu=function(a){if(null==a)return!0;if(Xe(a)&&(Object(u.a)(a)||"string"==typeof a||"function"==typeof a.splice||Object(rt.a)(a)||pt(a)||Object(ot.a)(a)))return!a.length;var e=Mo(a);if(e==ru||e==su)return!a.size;if(it(a))return!ft(a).length;for(var t in a)if(du.call(a,t))return!1;return!0};var cu=function(a,e){return _s(a,e)};var uu=function(a,e,t){var i=(t="function"==typeof t?t:void 0)?t(a,e):void 0;return void 0===i?_s(a,e,void 0,t):!!i},pu=B.a.isFinite;var zu=function(a){return"number"==typeof a&&pu(a)};var gu=function(a){return"number"==typeof a&&a==O(a)};var mu=function(a,e){return a===e||Es(a,e,Os(e))};var wu=function(a,e,t){return t="function"==typeof t?t:void 0,Es(a,e,Os(e),t)},yu="[object Number]";var fu=function(a){return"number"==typeof a||Object(n.a)(a)&&Object(i.a)(a)==yu};var bu=function(a){return fu(a)&&a!=+a},hu=t(62),vu=$?F:hu.a,ku="Unsupported core-js use. Try https://npms.io/search?q=ponyfill.";var ju=function(a){if(vu(a))throw new Error(ku);return Z(a)};var _u=function(a){return null==a};var xu=function(a){return null===a},qu="[object RegExp]";var Eu=function(a){return Object(n.a)(a)&&Object(i.a)(a)==qu},Au=ct.a&&ct.a.isRegExp,Ou=Au?lt(Au):Eu,Tu=9007199254740991;var Su=function(a){return gu(a)&&a>=-Tu&&a<=Tu};var Mu=function(a){return void 0===a},Pu="[object WeakMap]";var Cu=function(a){return Object(n.a)(a)&&Mo(a)==Pu},Ru="[object WeakSet]";var Du=function(a){return Object(n.a)(a)&&Object(i.a)(a)==Ru},Fu=1;var Bu=function(a){return Ls("function"==typeof a?a:Er(a,Fu))},$u=Array.prototype.join;var Iu=function(a,e){return null==a?"":$u.call(a,e)},Lu=Ln(function(a,e,t){return a+(t?"-":"")+e.toLowerCase()}),Wu=td(function(a,e,t){Ne(a,t,e)});var Nu=function(a,e,t){for(var i=t+1;i--;)if(a[i]===e)return i;return i},Uu=Math.max,Ku=Math.min;var Hu=function(a,e,t){var i=null==a?0:a.length;if(!i)return-1;var n=i;return void 0!==t&&(n=(n=O(t))<0?Uu(i+n,0):Ku(n,i-1)),e==e?Nu(a,e,n):Ua(a,Ka,n,!0)},Vu=Ln(function(a,e,t){return a+(t?" ":"")+e.toLowerCase()}),Yu=cn("toLowerCase");var Gu=function(a,e){return a<e},Zu=pc(Gu),Ju=pc(function(a,e){return a<=e});var Qu=function(a,e){var t={};return e=Ls(e,3),Qs(a,function(a,i,n){Ne(t,e(a,i,n),a)}),t};var Xu=function(a,e){var t={};return e=Ls(e,3),Qs(a,function(a,i,n){Ne(t,i,e(a,i,n))}),t},ap=1;var ep=function(a){return Ss(Er(a,ap))},tp=1;var ip=function(a,e){return Fs(a,Er(e,tp))};var np=function(a,e,t){for(var i=-1,n=a.length;++i<n;){var o=a[i],s=e(o);if(null!=s&&(void 0===d?s==s&&!r(s):t(s,d)))var d=s,l=o}return l};var op=function(a){return a&&a.length?np(a,M,uc):void 0};var rp=function(a,e){return a&&a.length?np(a,Ls(e,2),uc):void 0};var sp=function(a,e){for(var t,i=-1,n=a.length;++i<n;){var o=e(a[i]);void 0!==o&&(t=void 0===t?o:t+o)}return t},dp=NaN;var lp=function(a,e){var t=null==a?0:a.length;return t?sp(a,e)/t:dp};var cp=function(a){return lp(a,M)};var up=function(a,e){return lp(a,Ls(e,2))},pp=et(function(a,e,t){qd(a,e,t)}),zp=Ze(function(a,e){return function(t){return Hc(t,a,e)}}),gp=Ze(function(a,e){return function(t){return Hc(a,t,e)}});var mp=function(a){return a&&a.length?np(a,M,Gu):void 0};var wp=function(a,e){return a&&a.length?np(a,Ls(e,2),Gu):void 0};var yp=function(a,e,t){var i=bt(e),n=rc(e,i),o=!(f(t)&&"chain"in t&&!t.chain),r=F(a);return Na(n,function(t){var i=e[t];a[t]=i,r&&(a.prototype[t]=function(){var e=this.__chain__;if(o||e){var t=a(this.__wrapped__);return(t.__actions__=_a(this.__actions__)).push({func:i,args:arguments,thisArg:a}),t.__chain__=e,t}return i.apply(a,Object(yo.a)([this.value()],arguments))})}),a},fp=w(function(a,e){return a*e},1),bp="Expected a function";var hp=function(a){if("function"!=typeof a)throw new TypeError(bp);return function(){var e=arguments;switch(e.length){case 0:return!a.call(this);case 1:return!a.call(this,e[0]);case 2:return!a.call(this,e[0],e[1]);case 3:return!a.call(this,e[0],e[1],e[2])}return!a.apply(this,e)}};var vp=function(a){for(var e,t=[];!(e=a.next()).done;)t.push(e.value);return t},kp="[object Map]",jp="[object Set]",_p=l.a?l.a.iterator:void 0;var xp=function(a){if(!a)return[];if(Xe(a))return jc(a)?ln(a):_a(a);if(_p&&a[_p])return vp(a[_p]());var e=Mo(a);return(e==kp?Jr:e==jp?Qr:xc)(a)};var qp=function(){void 0===this.__values__&&(this.__values__=xp(this.value()));var a=this.__index__>=this.__values__.length;return{done:a,value:a?void 0:this.__values__[this.__index__++]}};var Ep=function(a,e){var t=a.length;if(t)return de(e+=e<0?t:0,t)?a[e]:void 0};var Ap=function(a,e){return a&&a.length?Ep(a,O(e)):void 0};var Op=function(a){return a=O(a),Ze(function(e){return Ep(e,a)})};var Tp=function(a,e){return e=yi(e,a),null==(a=Kc(a,e))||delete a[bi(Bd(e))]};var Sp=function(a){return Ci(a)?void 0:a},Mp=xi(function(a,e){var t={};if(null==a)return t;var i=!1;e=c(e,function(e){return e=yi(e,a),i||(i=e.length>1),e}),Ve(a,ko(a),t),i&&(t=Er(t,7,Sp));for(var n=e.length;n--;)Tp(t,e[n]);return t});var Pp=function(a,e,t,i){if(!f(a))return a;for(var n=-1,o=(e=yi(e,a)).length,r=o-1,s=a;null!=s&&++n<o;){var d=bi(e[n]),l=t;if(n!=r){var c=s[d];void 0===(l=i?i(c,d,s):void 0)&&(l=f(c)?c:de(e[n+1])?[]:{})}He(s,d,l),s=s[d]}return a};var Cp=function(a,e,t){for(var i=-1,n=e.length,o={};++i<n;){var r=e[i],s=hi(a,r);t(s,r)&&Pp(o,yi(r,a),s)}return o};var Rp=function(a,e){if(null==a)return{};var t=c(ko(a),function(a){return[a]});return e=Ls(e),Cp(a,t,function(a,t){return e(a,t[0])})};var Dp=function(a,e){return Rp(a,hp(Ls(e)))};var Fp=function(a){return Ii(2,a)};var Bp=function(a,e){var t=a.length;for(a.sort(e);t--;)a[t]=a[t].value;return a};var $p=function(a,e){if(a!==e){var t=void 0!==a,i=null===a,n=a==a,o=r(a),s=void 0!==e,d=null===e,l=e==e,c=r(e);if(!d&&!c&&!o&&a>e||o&&s&&l&&!d&&!c||i&&s&&l||!t&&l||!n)return 1;if(!i&&!o&&!c&&a<e||c&&t&&n&&!i&&!o||d&&t&&n||!s&&n||!l)return-1}return 0};var Ip=function(a,e,t){for(var i=-1,n=a.criteria,o=e.criteria,r=n.length,s=t.length;++i<r;){var d=$p(n[i],o[i]);if(d)return i>=s?d:d*("desc"==t[i]?-1:1)}return a.index-e.index};var Lp=function(a,e,t){var i=-1;e=c(e.length?e:[M],lt(Ls));var n=Dl(a,function(a,t,n){return{criteria:c(e,function(e){return e(a)}),index:++i,value:a}});return Bp(n,function(a,e){return Ip(a,e,t)})};var Wp=function(a,e,t,i){return null==a?[]:(Object(u.a)(e)||(e=null==e?[]:[e]),t=i?void 0:t,Object(u.a)(t)||(t=null==t?[]:[t]),Lp(a,e,t))};var Np=function(a){return xi(function(e){return e=c(e,lt(Ls)),Ze(function(t){var i=this;return a(e,function(a){return sa(a,i,t)})})})},Up=Np(c),Kp=Ze,Hp=Math.min,Vp=Kp(function(a,e){var t=(e=1==e.length&&Object(u.a)(e[0])?c(e[0],lt(Ls)):c(Object(ji.a)(e,1),lt(Ls))).length;return Ze(function(i){for(var n=-1,o=Hp(i.length,t);++n<o;)i[n]=e[n].call(this,i[n]);return sa(a,this,i)})}),Yp=Np(ml),Gp=Np(Hr),Zp=9007199254740991,Jp=Math.floor;var Qp=function(a,e){var t="";if(!a||e<1||e>Zp)return t;do{e%2&&(t+=a),(e=Jp(e/2))&&(a+=a)}while(e);return t},Xp=Bs("length"),az="[\\ud800-\\udfff]",ez="[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]",tz="[^\\ud800-\\udfff]",iz="(?:\\ud83c[\\udde6-\\uddff]){2}",nz="[\\ud800-\\udbff][\\udc00-\\udfff]",oz="(?:"+ez+"|\\ud83c[\\udffb-\\udfff])"+"?",rz="[\\ufe0e\\ufe0f]?"+oz+("(?:\\u200d(?:"+[tz,iz,nz].join("|")+")[\\ufe0e\\ufe0f]?"+oz+")*"),sz="(?:"+[tz+ez+"?",ez,iz,nz,az].join("|")+")",dz=RegExp("\\ud83c[\\udffb-\\udfff](?=\\ud83c[\\udffb-\\udfff])|"+sz+rz,"g");var lz=function(a){for(var e=dz.lastIndex=0;dz.test(a);)++e;return e};var cz=function(a){return Gi(a)?lz(a):Xp(a)},uz=Math.ceil;var pz=function(a,e){var t=(e=void 0===e?" ":m(e)).length;if(t<2)return t?Qp(e,a):e;var i=Qp(e,uz(a/cz(e)));return Gi(e)?Vi(ln(i),0,a).join(""):i.slice(0,a)},zz=Math.ceil,gz=Math.floor;var mz=function(a,e,t){a=wi(a);var i=(e=O(e))?cz(a):0;if(!e||i>=e)return a;var n=(e-i)/2;return pz(gz(n),t)+a+pz(zz(n),t)};var wz=function(a,e,t){a=wi(a);var i=(e=O(e))?cz(a):0;return e&&i<e?a+pz(e-i,t):a};var yz=function(a,e,t){a=wi(a);var i=(e=O(e))?cz(a):0;return e&&i<e?pz(e-i,t)+a:a},fz=/^\s+/,bz=B.a.parseInt;var hz=function(a,e,t){return t||null==e?e=0:e&&(e=+e),bz(wi(a).replace(fz,""),e||0)},vz=Ze(function(a,e){var t=pe(e,oe(vz));return Ie(a,32,void 0,e,t)});vz.placeholder={};var kz=vz,jz=Ze(function(a,e){var t=pe(e,oe(jz));return Ie(a,64,void 0,e,t)});jz.placeholder={};var _z=jz,xz=td(function(a,e,t){a[t?0:1].push(e)},function(){return[[],[]]});var qz=function(a,e){return Cp(a,e,function(e,t){return Cs(a,t)})},Ez=xi(function(a,e){return null==a?{}:qz(a,e)});var Az=function(a){for(var e,t=this;t instanceof za;){var i=xa(t);i.__index__=0,i.__values__=void 0,e?n.__wrapped__=i:e=i;var n=i;t=t.__wrapped__}return n.__wrapped__=a,e};var Oz=function(a){return function(e){return null==a?void 0:hi(a,e)}};var Tz=function(a,e,t,i){for(var n=t-1,o=a.length;++n<o;)if(i(a[n],e))return n;return-1},Sz=Array.prototype.splice;var Mz=function(a,e,t,i){var n=i?Tz:Va,o=-1,r=e.length,s=a;for(a===e&&(e=_a(e)),t&&(s=c(a,lt(t)));++o<r;)for(var d=0,l=e[o],u=t?t(l):l;(d=n(s,u,d,i))>-1;)s!==a&&Sz.call(s,d,1),Sz.call(a,d,1);return a};var Pz=function(a,e){return a&&a.length&&e&&e.length?Mz(a,e):a},Cz=Ze(Pz);var Rz=function(a,e,t){return a&&a.length&&e&&e.length?Mz(a,e,Ls(t,2)):a};var Dz=function(a,e,t){return a&&a.length&&e&&e.length?Mz(a,e,void 0,t):a},Fz=Array.prototype.splice;var Bz=function(a,e){for(var t=a?e.length:0,i=t-1;t--;){var n=e[t];if(t==i||n!==o){var o=n;de(n)?Fz.call(a,n,1):Tp(a,n)}}return a},$z=xi(function(a,e){var t=null==a?0:a.length,i=ki(a,e);return Bz(a,c(e,function(a){return de(a,t)?+a:a}).sort($p)),i}),Iz=Math.floor,Lz=Math.random;var Wz=function(a,e){return a+Iz(Lz()*(e-a+1))},Nz=parseFloat,Uz=Math.min,Kz=Math.random;var Hz=function(a,e,t){if(t&&"boolean"!=typeof t&&at(a,e,t)&&(e=t=void 0),void 0===t&&("boolean"==typeof e?(t=e,e=void 0):"boolean"==typeof a&&(t=a,a=void 0)),void 0===a&&void 0===e?(a=0,e=1):(a=A(a),void 0===e?(e=a,a=0):e=A(e)),a>e){var i=a;a=e,e=i}if(t||a%1||e%1){var n=Kz();return Uz(a+n*(e-a+Nz("1e-"+((n+"").length-1))),e)}return Wz(a,e)},Vz=Math.ceil,Yz=Math.max;var Gz=function(a,e,t,i){for(var n=-1,o=Yz(Vz((e-a)/(t||1)),0),r=Array(o);o--;)r[i?o:++n]=a,a+=t;return r};var Zz=function(a){return function(e,t,i){return i&&"number"!=typeof i&&at(e,t,i)&&(t=i=void 0),e=A(e),void 0===t?(t=e,e=0):t=A(t),i=void 0===i?e<t?1:-1:A(i),Gz(e,t,i,a)}},Jz=Zz(),Qz=Zz(!0),Xz=xi(function(a,e){return Ie(a,256,void 0,void 0,void 0,e)});var ag=function(a,e,t,i,n){return n(a,function(a,n,o){t=i?(i=!1,a):e(t,a,n,o)}),t};var eg=function(a,e,t){var i=Object(u.a)(a)?zn:ag,n=arguments.length<3;return i(a,Ls(e,4),t,n,ad)};var tg=function(a,e,t,i){var n=null==a?0:a.length;for(i&&n&&(t=a[--n]);n--;)t=e(t,a[n],n,a);return t};var ig=function(a,e,t){var i=Object(u.a)(a)?tg:ag,n=arguments.length<3;return i(a,Ls(e,4),t,n,Qd)};var ng=function(a,e){return(Object(u.a)(a)?uo:kl)(a,hp(Ls(e,3)))};var og=function(a,e){var t=[];if(!a||!a.length)return t;var i=-1,n=[],o=a.length;for(e=Ls(e,3);++i<o;){var r=a[i];e(r,i,a)&&(t.push(r),n.push(i))}return Bz(a,n),t};var rg=function(a,e,t){return e=(t?at(a,e,t):void 0===e)?1:O(e),Qp(wi(a),e)};var sg=function(){var a=arguments,e=wi(a[0]);return a.length<3?e:e.replace(a[1],a[2])},dg="Expected a function";var lg=function(a,e){if("function"!=typeof a)throw new TypeError(dg);return e=void 0===e?e:O(e),Ze(a,e)};var cg=function(a,e,t){var i=-1,n=(e=yi(e,a)).length;for(n||(n=1,a=void 0);++i<n;){var o=null==a?void 0:a[bi(e[i])];void 0===o&&(i=n,o=t),a=F(o)?o.call(a):o}return a},ug=Array.prototype.reverse;var pg=function(a){return null==a?a:ug.call(a)},zg=Kn("round");var gg=function(a){var e=a.length;return e?a[Wz(0,e-1)]:void 0};var mg=function(a){return gg(xc(a))};var wg=function(a){return(Object(u.a)(a)?gg:mg)(a)};var yg=function(a,e){var t=-1,i=a.length,n=i-1;for(e=void 0===e?i:e;++t<e;){var o=Wz(t,n),r=a[o];a[o]=a[t],a[t]=r}return a.length=e,a};var fg=function(a,e){return yg(_a(a),Jn(e,0,a.length))};var bg=function(a,e){var t=xc(a);return yg(t,Jn(e,0,t.length))};var hg=function(a,e,t){return e=(t?at(a,e,t):void 0===e)?1:O(e),(Object(u.a)(a)?fg:bg)(a,e)};var vg=function(a,e,t){return null==a?a:Pp(a,e,t)};var kg=function(a,e,t,i){return i="function"==typeof i?i:void 0,null==a?a:Pp(a,e,t,i)};var jg=function(a){return yg(_a(a))};var _g=function(a){return yg(xc(a))};var xg=function(a){return(Object(u.a)(a)?jg:_g)(a)},qg="[object Map]",Eg="[object Set]";var Ag=function(a){if(null==a)return 0;if(Xe(a))return jc(a)?cz(a):a.length;var e=Mo(a);return e==qg||e==Eg?a.size:ft(a).length};var Og=function(a,e,t){var i=null==a?0:a.length;return i?(t&&"number"!=typeof t&&at(a,e,t)?(e=0,t=i):(e=null==e?0:O(e),t=void 0===t?i:O(t)),Hi(a,e,t)):[]},Tg=Ln(function(a,e,t){return a+(t?"_":"")+e.toLowerCase()});var Sg=function(a,e){var t;return ad(a,function(a,i,n){return!(t=e(a,i,n))}),!!t};var Mg=function(a,e,t){var i=Object(u.a)(a)?Hr:Sg;return t&&at(a,e,t)&&(e=void 0),i(a,Ls(e,3))},Pg=Ze(function(a,e){if(null==a)return[];var t=e.length;return t>1&&at(a,e[0],e[1])?e=[]:t>2&&at(e[0],e[1],e[2])&&(e=[e[0]]),Lp(a,Object(ji.a)(e,1),[])}),Cg=4294967294,Rg=Math.floor,Dg=Math.min;var Fg=function(a,e,t,i){e=t(e);for(var n=0,o=null==a?0:a.length,s=e!=e,d=null===e,l=r(e),c=void 0===e;n<o;){var u=Rg((n+o)/2),p=t(a[u]),z=void 0!==p,g=null===p,m=p==p,w=r(p);if(s)var y=i||m;else y=c?m&&(i||z):d?m&&z&&(i||!g):l?m&&z&&!g&&(i||!w):!g&&!w&&(i?p<=e:p<e);y?n=u+1:o=u}return Dg(o,Cg)},Bg=2147483647;var $g=function(a,e,t){var i=0,n=null==a?i:a.length;if("number"==typeof e&&e==e&&n<=Bg){for(;i<n;){var o=i+n>>>1,s=a[o];null!==s&&!r(s)&&(t?s<=e:s<e)?i=o+1:n=o}return n}return Fg(a,e,M,t)};var Ig=function(a,e){return $g(a,e)};var Lg=function(a,e,t){return Fg(a,e,Ls(t,2))};var Wg=function(a,e){var t=null==a?0:a.length;if(t){var i=$g(a,e);if(i<t&&Ue(a[i],e))return i}return-1};var Ng=function(a,e){return $g(a,e,!0)};var Ug=function(a,e,t){return Fg(a,e,Ls(t,2),!0)};var Kg=function(a,e){if(null!=a&&a.length){var t=$g(a,e,!0)-1;if(Ue(a[t],e))return t}return-1};var Hg=function(a,e){for(var t=-1,i=a.length,n=0,o=[];++t<i;){var r=a[t],s=e?e(r):r;if(!t||!Ue(s,d)){var d=s;o[n++]=0===r?0:r}}return o};var Vg=function(a){return a&&a.length?Hg(a):[]};var Yg=function(a,e){return a&&a.length?Hg(a,Ls(e,2)):[]},Gg=4294967295;var Zg=function(a,e,t){return t&&"number"!=typeof t&&at(a,e,t)&&(e=t=void 0),(t=void 0===t?Gg:t>>>0)?(a=wi(a))&&("string"==typeof e||null!=e&&!Ou(e))&&!(e=m(e))&&Gi(a)?Vi(ln(a),0,t):a.split(e,t):[]},Jg="Expected a function",Qg=Math.max;var Xg=function(a,e){if("function"!=typeof a)throw new TypeError(Jg);return e=null==e?0:Qg(O(e),0),Ze(function(t){var i=t[e],n=Vi(t,0,e);return i&&Object(yo.a)(n,i),sa(a,this,n)})},am=Ln(function(a,e,t){return a+(t?" ":"")+un(e)});var em=function(a,e,t){return a=wi(a),t=null==t?0:Jn(O(t),0,a.length),e=m(e),a.slice(t,t+e.length)==e};var tm=function(){return{}};var im=function(){return""};var nm=function(){return!0},om=w(function(a,e){return a-e},0);var rm=function(a){return a&&a.length?sp(a,M):0};var sm=function(a,e){return a&&a.length?sp(a,Ls(e,2)):0};var dm=function(a){var e=null==a?0:a.length;return e?Hi(a,1,e):[]};var lm=function(a,e,t){return a&&a.length?(e=t||void 0===e?1:O(e),Hi(a,0,e<0?0:e)):[]};var cm=function(a,e,t){var i=null==a?0:a.length;return i?(e=t||void 0===e?1:O(e),Hi(a,(e=i-e)<0?0:e,i)):[]};var um=function(a,e){return a&&a.length?Ud(a,Ls(e,3),!1,!0):[]};var pm=function(a,e){return a&&a.length?Ud(a,Ls(e,3)):[]};var zm=function(a,e){return e(a),a},gm=Object.prototype,mm=gm.hasOwnProperty;var wm=function(a,e,t,i){return void 0===a||Ue(a,gm[t])&&!mm.call(i,t)?e:a},ym={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"};var fm=function(a){return"\\"+ym[a]},bm=/<%=([\s\S]+?)%>/g,hm={escape:/<%-([\s\S]+?)%>/g,evaluate:/<%([\s\S]+?)%>/g,interpolate:bm,variable:"",imports:{_:{escape:ul}}},vm=/\b__p \+= '';/g,km=/\b(__p \+=) '' \+/g,jm=/(__e\(.*?\)|\b__t\)) \+\n'';/g,_m=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,xm=/($^)/,qm=/['\n\r\u2028\u2029\\]/g;var Em=function(a,e,t){var i=hm.imports._.templateSettings||hm;t&&at(a,e,t)&&(e=void 0),a=wi(a),e=Et({},e,i,wm);var n,o,r=Et({},e.imports,i.imports,wm),s=bt(r),d=_c(r,s),l=0,c=e.interpolate||xm,u="__p += '",p=RegExp((e.escape||xm).source+"|"+c.source+"|"+(c===bm?_m:xm).source+"|"+(e.evaluate||xm).source+"|$","g"),z="sourceURL"in e?"//# sourceURL="+e.sourceURL+"\n":"";a.replace(p,function(e,t,i,r,s,d){return i||(i=r),u+=a.slice(l,d).replace(qm,fm),t&&(n=!0,u+="' +\n__e("+t+") +\n'"),s&&(o=!0,u+="';\n"+s+";\n__p += '"),i&&(u+="' +\n((__t = ("+i+")) == null ? '' : __t) +\n'"),l=d+e.length,e}),u+="';\n";var g=e.variable;g||(u="with (obj) {\n"+u+"\n}\n"),u=(o?u.replace(vm,""):u).replace(km,"$1").replace(jm,"$1;"),u="function("+(g||"obj")+") {\n"+(g?"":"obj || (obj = {});\n")+"var __t, __p = ''"+(n?", __e = _.escape":"")+(o?", __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n":";\n")+u+"return __p\n}";var m=Bi(function(){return Function(s,z+"return "+u).apply(void 0,d)});if(m.source=u,Fi(m))throw m;return m},Am="Expected a function";var Om=function(a,e,t){var i=!0,n=!0;if("function"!=typeof a)throw new TypeError(Am);return f(t)&&(i="leading"in t?!!t.leading:i,n="trailing"in t?!!t.trailing:n),wd(a,e,{leading:i,maxWait:e,trailing:n})};var Tm=function(a,e){return e(a)},Sm=9007199254740991,Mm=4294967295,Pm=Math.min;var Cm=function(a,e){if((a=O(a))<1||a>Sm)return[];var t=Mm,i=Pm(a,Mm);e=Vd(e),a-=Mm;for(var n=nt(i,e);++t<a;)e(t);return n};var Rm=function(){return this};var Dm=function(a,e){var t=a;return t instanceof wa&&(t=t.value()),zn(e,function(a,e){return e.func.apply(e.thisArg,Object(yo.a)([a],e.args))},t)};var Fm=function(){return Dm(this.__wrapped__,this.__actions__)};var Bm=function(a){return wi(a).toLowerCase()};var $m=function(a){return Object(u.a)(a)?c(a,bi):r(a)?[a]:_a(mi(wi(a)))},Im=9007199254740991;var Lm=function(a){return a?Jn(O(a),-Im,Im):0===a?a:0};var Wm=function(a){return wi(a).toUpperCase()};var Nm=function(a,e,t){var i=Object(u.a)(a),n=i||Object(rt.a)(a)||pt(a);if(e=Ls(e,4),null==t){var o=a&&a.constructor;t=n?i?new o:[]:f(a)&&F(o)?ia(Ei(a)):{}}return(n?Na:Qs)(a,function(a,i,n){return e(t,a,i,n)}),t};var Um=function(a,e){for(var t=a.length;t--&&Va(e,a[t],0)>-1;);return t};var Km=function(a,e){for(var t=-1,i=a.length;++t<i&&Va(e,a[t],0)>-1;);return t},Hm=/^\s+|\s+$/g;var Vm=function(a,e,t){if((a=wi(a))&&(t||void 0===e))return a.replace(Hm,"");if(!a||!(e=m(e)))return a;var i=ln(a),n=ln(e),o=Km(i,n),r=Um(i,n)+1;return Vi(i,o,r).join("")},Ym=/\s+$/;var Gm=function(a,e,t){if((a=wi(a))&&(t||void 0===e))return a.replace(Ym,"");if(!a||!(e=m(e)))return a;var i=ln(a),n=Um(i,ln(e))+1;return Vi(i,0,n).join("")},Zm=/^\s+/;var Jm=function(a,e,t){if((a=wi(a))&&(t||void 0===e))return a.replace(Zm,"");if(!a||!(e=m(e)))return a;var i=ln(a),n=Km(i,ln(e));return Vi(i,n).join("")},Qm=30,Xm="...",aw=/\w*$/;var ew=function(a,e){var t=Qm,i=Xm;if(f(e)){var n="separator"in e?e.separator:n;t="length"in e?O(e.length):t,i="omission"in e?m(e.omission):i}var o=(a=wi(a)).length;if(Gi(a)){var r=ln(a);o=r.length}if(t>=o)return a;var s=t-cz(i);if(s<1)return i;var d=r?Vi(r,0,s).join(""):a.slice(0,s);if(void 0===n)return d+i;if(r&&(s+=d.length-s),Ou(n)){if(a.slice(s).search(n)){var l,c=d;for(n.global||(n=RegExp(n.source,wi(aw.exec(n))+"g")),n.lastIndex=0;l=n.exec(c);)var u=l.index;d=d.slice(0,void 0===u?s:u)}}else if(a.indexOf(m(n),s)!=s){var p=d.lastIndexOf(n);p>-1&&(d=d.slice(0,p))}return d+i};var tw=function(a){return We(a,1)},iw=gn({"&amp;":"&","&lt;":"<","&gt;":">","&quot;":'"',"&#39;":"'"}),nw=/&(?:amp|lt|gt|quot|#39);/g,ow=RegExp(nw.source);var rw=function(a){return(a=wi(a))&&ow.test(a)?a.replace(nw,iw):a},sw=xo&&1/Qr(new xo([,-0]))[1]==1/0?function(a){return new xo(a)}:ya,dw=200;var lw=function(a,e,t){var i=-1,n=Ya,o=a.length,r=!0,s=[],d=s;if(t)r=!1,n=Cd;else if(o>=dw){var l=e?null:sw(a);if(l)return Qr(l);r=!1,n=Vr,d=new Kr}else d=e?[]:s;a:for(;++i<o;){var c=a[i],u=e?e(c):c;if(c=t||0!==c?c:0,r&&u==u){for(var p=d.length;p--;)if(d[p]===u)continue a;e&&d.push(u),s.push(c)}else n(d,u,t)||(d!==s&&d.push(u),s.push(c))}return s},cw=Ze(function(a){return lw(Object(ji.a)(a,1,kd,!0))}),uw=Ze(function(a){var e=Bd(a);return kd(e)&&(e=void 0),lw(Object(ji.a)(a,1,kd,!0),Ls(e,2))}),pw=Ze(function(a){var e=Bd(a);return e="function"==typeof e?e:void 0,lw(Object(ji.a)(a,1,kd,!0),void 0,e)});var zw=function(a){return a&&a.length?lw(a):[]};var gw=function(a,e){return a&&a.length?lw(a,Ls(e,2)):[]};var mw=function(a,e){return e="function"==typeof e?e:void 0,a&&a.length?lw(a,void 0,e):[]},ww=0;var yw=function(a){var e=++ww;return wi(a)+e};var fw=function(a,e){return null==a||Tp(a,e)},bw=Math.max;var hw=function(a){if(!a||!a.length)return[];var e=0;return a=uo(a,function(a){if(kd(a))return e=bw(a.length,e),!0}),nt(e,function(e){return c(a,Bs(e))})};var vw=function(a,e){if(!a||!a.length)return[];var t=hw(a);return null==e?t:c(t,function(a){return sa(e,void 0,a)})};var kw=function(a,e,t,i){return Pp(a,e,t(hi(a,e)),i)};var jw=function(a,e,t){return null==a?a:kw(a,e,Vd(t))};var _w=function(a,e,t,i){return i="function"==typeof i?i:void 0,null==a?a:kw(a,e,Vd(t),i)},xw=Ln(function(a,e,t){return a+(t?" ":"")+e.toUpperCase()});var qw=function(a){return null==a?[]:_c(a,xt(a))},Ew=Ze(function(a,e){return kd(a)?Dd(a,e):[]});var Aw=function(a,e){return kz(Vd(e),a)},Ow=xi(function(a){var e=a.length,t=e?a[0]:0,i=this.__wrapped__,n=function(e){return ki(e,a)};return!(e>1||this.__actions__.length)&&i instanceof wa&&de(t)?((i=i.slice(t,+t+(e?1:0))).__actions__.push({func:Tm,args:[n],thisArg:void 0}),new ja(i,this.__chain__).thru(function(a){return e&&!a.length&&a.push(void 0),a})):this.thru(n)});var Tw=function(){return Vn(this)};var Sw=function(){var a=this.__wrapped__;if(a instanceof wa){var e=a;return this.__actions__.length&&(e=new wa(this)),(e=e.reverse()).__actions__.push({func:Tm,args:[pg],thisArg:void 0}),new ja(e,this.__chain__)}return this.thru(pg)};var Mw=function(a,e,t){var i=a.length;if(i<2)return i?lw(a[0]):[];for(var n=-1,o=Array(i);++n<i;)for(var r=a[n],s=-1;++s<i;)s!=n&&(o[n]=Dd(o[n]||r,a[s],e,t));return lw(Object(ji.a)(o,1),e,t)},Pw=Ze(function(a){return Mw(uo(a,kd))}),Cw=Ze(function(a){var e=Bd(a);return kd(e)&&(e=void 0),Mw(uo(a,kd),Ls(e,2))}),Rw=Ze(function(a){var e=Bd(a);return e="function"==typeof e?e:void 0,Mw(uo(a,kd),void 0,e)}),Dw=Ze(hw);var Fw=function(a,e,t){for(var i=-1,n=a.length,o=e.length,r={};++i<n;){var s=i<o?e[i]:void 0;t(r,a[i],s)}return r};var Bw=function(a,e){return Fw(a||[],e||[],He)};var $w=function(a,e){return Fw(a||[],e||[],Pp)},Iw=Ze(function(a){var e=a.length,t=e>1?a[e-1]:void 0;return t="function"==typeof t?(a.pop(),t):void 0,vw(a,t)}),Lw={chunk:Zn,compact:$r,concat:Ir,difference:Fd,differenceBy:$d,differenceWith:Id,drop:Wd,dropRight:Nd,dropRightWhile:Kd,dropWhile:Hd,fill:vl,findIndex:ql,findLastIndex:Ml,first:Rl,flatten:_i,flattenDeep:Wl.default,flattenDepth:Nl,fromPairs:oc,head:Rl,indexOf:Oc,initial:Tc,intersection:Cc,intersectionBy:Rc,intersectionWith:Dc,join:Iu,last:Bd,lastIndexOf:Hu,nth:Ap,pull:Cz,pullAll:Pz,pullAllBy:Rz,pullAllWith:Dz,pullAt:$z,remove:og,reverse:pg,slice:Og,sortedIndex:Ig,sortedIndexBy:Lg,sortedIndexOf:Wg,sortedLastIndex:Ng,sortedLastIndexBy:Ug,sortedLastIndexOf:Kg,sortedUniq:Vg,sortedUniqBy:Yg,tail:dm,take:lm,takeRight:cm,takeRightWhile:um,takeWhile:pm,union:cw,unionBy:uw,unionWith:pw,uniq:zw,uniqBy:gw,uniqWith:mw,unzip:hw,unzipWith:vw,without:Ew,xor:Pw,xorBy:Cw,xorWith:Rw,zip:Dw,zipObject:Bw,zipObjectDeep:$w,zipWith:Iw},Ww={countBy:nd,each:Yd,eachRight:Xd,every:yl,filter:jl,find:El,findLast:Pl,flatMap:Bl,flatMapDeep:Il,flatMapDepth:Ll,forEach:Yd,forEachRight:Xd,groupBy:cc,includes:Ec,invokeMap:Yc,keyBy:Wu,map:Fl,orderBy:Wp,partition:xz,reduce:eg,reduceRight:ig,reject:ng,sample:wg,sampleSize:hg,shuffle:xg,size:Ag,some:Mg,sortBy:Pg},Nw={now:pd},Uw={after:S,ary:We,before:Ii,bind:Wi,bindKey:Ki,curry:dd,curryRight:ud,debounce:wd,defer:Md,delay:Pd,flip:Kl,memoize:ui,negate:hp,once:Fp,overArgs:Vp,partial:kz,partialRight:_z,rearg:Xz,rest:lg,spread:Xg,throttle:Om,unary:tw,wrap:Aw},Kw={castArray:Nn,clone:Or,cloneDeep:Mr,cloneDeepWith:Rr,cloneWith:Fr,conformsTo:Ys,eq:Ue,gt:zc,gte:gc,isArguments:ot.a,isArray:u.a,isArrayBuffer:Qc,isArrayLike:Xe,isArrayLikeObject:kd,isBoolean:au,isBuffer:rt.a,isDate:nu,isElement:ou,isEmpty:lu,isEqual:cu,isEqualWith:uu,isError:Fi,isFinite:zu,isFunction:F,isInteger:gu,isLength:Qe,isMap:gr,isMatch:mu,isMatchWith:wu,isNaN:bu,isNative:ju,isNil:_u,isNull:xu,isNumber:fu,isObject:f,isObjectLike:n.a,isPlainObject:Ci,isRegExp:Ou,isSafeInteger:Su,isSet:fr,isString:jc,isSymbol:r,isTypedArray:pt,isUndefined:Mu,isWeakMap:Cu,isWeakSet:Du,lt:Zu,lte:Ju,toArray:xp,toFinite:A,toInteger:O,toLength:bl,toNumber:x,toPlainObject:_d,toSafeInteger:Lm,toString:wi},Hw={add:y,ceil:Hn,divide:Ld,floor:Hl,max:op,maxBy:rp,mean:cp,meanBy:up,min:mp,minBy:wp,multiply:fp,round:zg,subtract:om,sum:rm,sumBy:sm},Vw={clamp:Qn,inRange:vc,random:Hz},Yw={assign:vt,assignIn:qt,assignInWith:Et,assignWith:At,at:qi,create:od,defaults:hd,defaultsDeep:Od,entries:rl,entriesIn:sl,extend:qt,extendWith:Et,findKey:Ol,findLastKey:Cl,forIn:ec,forInRight:tc,forOwn:ic,forOwnRight:nc,functions:sc,functionsIn:dc,get:vi,has:yc,hasIn:Cs,invert:Ic,invertBy:Uc,invoke:Vc,keys:bt,keysIn:xt,mapKeys:Qu,mapValues:Xu,merge:pp,mergeWith:Ad,omit:Mp,omitBy:Dp,pick:Ez,pickBy:Rp,result:cg,set:vg,setWith:kg,toPairs:rl,toPairsIn:sl,transform:Nm,unset:fw,update:jw,updateWith:_w,values:xc,valuesIn:qw},Gw={at:Ow,chain:Vn,commit:Br,lodash:Aa,next:qp,plant:Az,reverse:Sw,tap:zm,thru:Tm,toIterator:Rm,toJSON:Fm,value:Fm,valueOf:Fm,wrapperChain:Tw},Zw={camelCase:Wn,capitalize:pn,deburr:fn,endsWith:al,escape:ul,escapeRegExp:gl,kebabCase:Lu,lowerCase:Vu,lowerFirst:Yu,pad:mz,padEnd:wz,padStart:yz,parseInt:hz,repeat:rg,replace:sg,snakeCase:Tg,split:Zg,startCase:am,startsWith:em,template:Em,templateSettings:hm,toLower:Bm,toUpper:Wm,trim:Vm,trimEnd:Gm,trimStart:Jm,truncate:ew,unescape:rw,upperCase:xw,upperFirst:un,words:$n},Jw={attempt:Bi,bindAll:Ni,cond:Ns,conforms:Vs,constant:Ia,defaultTo:yd,flow:Xl,flowRight:ac,identity:M,iteratee:Bu,matches:ep,matchesProperty:ip,method:zp,methodOf:gp,mixin:yp,noop:ya,nthArg:Op,over:Up,overEvery:Yp,overSome:Gp,property:Is,propertyOf:Oz,range:Jz,rangeRight:Qz,stubArray:po,stubFalse:hu.a,stubObject:tm,stubString:im,stubTrue:nm,times:Cm,toPath:$m,uniqueId:yw};var Qw=function(){var a=new wa(this.__wrapped__);return a.__actions__=_a(this.__actions__),a.__dir__=this.__dir__,a.__filtered__=this.__filtered__,a.__iteratees__=_a(this.__iteratees__),a.__takeCount__=this.__takeCount__,a.__views__=_a(this.__views__),a};var Xw=function(){if(this.__filtered__){var a=new wa(this);a.__dir__=-1,a.__filtered__=!0}else(a=this.clone()).__dir__*=-1;return a},ay=Math.max,ey=Math.min;var ty=function(a,e,t){for(var i=-1,n=t.length;++i<n;){var o=t[i],r=o.size;switch(o.type){case"drop":a+=r;break;case"dropRight":e-=r;break;case"take":e=ey(e,a+r);break;case"takeRight":a=ay(a,e-r)}}return{start:a,end:e}},iy=1,ny=2,oy=Math.min;var ry=function(){var a=this.__wrapped__.value(),e=this.__dir__,t=Object(u.a)(a),i=e<0,n=t?a.length:0,o=ty(0,n,this.__views__),r=o.start,s=o.end,d=s-r,l=i?s:r-1,c=this.__iteratees__,p=c.length,z=0,g=oy(d,this.__takeCount__);if(!t||!i&&n==d&&g==d)return Dm(a,this.__actions__);var m=[];a:for(;d--&&z<g;){for(var w=-1,y=a[l+=e];++w<p;){var f=c[w],b=f.iteratee,h=f.type,v=b(y);if(h==ny)y=v;else if(!v){if(h==iy)continue a;break a}}m[z++]=y}return m},sy=Array.prototype,dy=Object.prototype.hasOwnProperty,ly=l.a?l.a.iterator:void 0,cy=Math.max,uy=Math.min,py=function(a){return function(e,t,i){if(null==i){var n=f(t),o=n&&bt(t),r=o&&o.length&&rc(t,o);(r?r.length:n)||(i=t,t=e,e=this)}return a(e,t,i)}}(yp);
2
- /**
3
- * @license
4
- * Lodash (Custom Build) <https://lodash.com/>
5
- * Build: `lodash modularize exports="es" -o ./`
6
- * Copyright JS Foundation and other contributors <https://js.foundation/>
7
- * Released under MIT license <https://lodash.com/license>
8
- * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
9
- * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
10
- */Aa.after=Uw.after,Aa.ary=Uw.ary,Aa.assign=Yw.assign,Aa.assignIn=Yw.assignIn,Aa.assignInWith=Yw.assignInWith,Aa.assignWith=Yw.assignWith,Aa.at=Yw.at,Aa.before=Uw.before,Aa.bind=Uw.bind,Aa.bindAll=Jw.bindAll,Aa.bindKey=Uw.bindKey,Aa.castArray=Kw.castArray,Aa.chain=Gw.chain,Aa.chunk=Lw.chunk,Aa.compact=Lw.compact,Aa.concat=Lw.concat,Aa.cond=Jw.cond,Aa.conforms=Jw.conforms,Aa.constant=Jw.constant,Aa.countBy=Ww.countBy,Aa.create=Yw.create,Aa.curry=Uw.curry,Aa.curryRight=Uw.curryRight,Aa.debounce=Uw.debounce,Aa.defaults=Yw.defaults,Aa.defaultsDeep=Yw.defaultsDeep,Aa.defer=Uw.defer,Aa.delay=Uw.delay,Aa.difference=Lw.difference,Aa.differenceBy=Lw.differenceBy,Aa.differenceWith=Lw.differenceWith,Aa.drop=Lw.drop,Aa.dropRight=Lw.dropRight,Aa.dropRightWhile=Lw.dropRightWhile,Aa.dropWhile=Lw.dropWhile,Aa.fill=Lw.fill,Aa.filter=Ww.filter,Aa.flatMap=Ww.flatMap,Aa.flatMapDeep=Ww.flatMapDeep,Aa.flatMapDepth=Ww.flatMapDepth,Aa.flatten=Lw.flatten,Aa.flattenDeep=Lw.flattenDeep,Aa.flattenDepth=Lw.flattenDepth,Aa.flip=Uw.flip,Aa.flow=Jw.flow,Aa.flowRight=Jw.flowRight,Aa.fromPairs=Lw.fromPairs,Aa.functions=Yw.functions,Aa.functionsIn=Yw.functionsIn,Aa.groupBy=Ww.groupBy,Aa.initial=Lw.initial,Aa.intersection=Lw.intersection,Aa.intersectionBy=Lw.intersectionBy,Aa.intersectionWith=Lw.intersectionWith,Aa.invert=Yw.invert,Aa.invertBy=Yw.invertBy,Aa.invokeMap=Ww.invokeMap,Aa.iteratee=Jw.iteratee,Aa.keyBy=Ww.keyBy,Aa.keys=bt,Aa.keysIn=Yw.keysIn,Aa.map=Ww.map,Aa.mapKeys=Yw.mapKeys,Aa.mapValues=Yw.mapValues,Aa.matches=Jw.matches,Aa.matchesProperty=Jw.matchesProperty,Aa.memoize=Uw.memoize,Aa.merge=Yw.merge,Aa.mergeWith=Yw.mergeWith,Aa.method=Jw.method,Aa.methodOf=Jw.methodOf,Aa.mixin=py,Aa.negate=hp,Aa.nthArg=Jw.nthArg,Aa.omit=Yw.omit,Aa.omitBy=Yw.omitBy,Aa.once=Uw.once,Aa.orderBy=Ww.orderBy,Aa.over=Jw.over,Aa.overArgs=Uw.overArgs,Aa.overEvery=Jw.overEvery,Aa.overSome=Jw.overSome,Aa.partial=Uw.partial,Aa.partialRight=Uw.partialRight,Aa.partition=Ww.partition,Aa.pick=Yw.pick,Aa.pickBy=Yw.pickBy,Aa.property=Jw.property,Aa.propertyOf=Jw.propertyOf,Aa.pull=Lw.pull,Aa.pullAll=Lw.pullAll,Aa.pullAllBy=Lw.pullAllBy,Aa.pullAllWith=Lw.pullAllWith,Aa.pullAt=Lw.pullAt,Aa.range=Jw.range,Aa.rangeRight=Jw.rangeRight,Aa.rearg=Uw.rearg,Aa.reject=Ww.reject,Aa.remove=Lw.remove,Aa.rest=Uw.rest,Aa.reverse=Lw.reverse,Aa.sampleSize=Ww.sampleSize,Aa.set=Yw.set,Aa.setWith=Yw.setWith,Aa.shuffle=Ww.shuffle,Aa.slice=Lw.slice,Aa.sortBy=Ww.sortBy,Aa.sortedUniq=Lw.sortedUniq,Aa.sortedUniqBy=Lw.sortedUniqBy,Aa.split=Zw.split,Aa.spread=Uw.spread,Aa.tail=Lw.tail,Aa.take=Lw.take,Aa.takeRight=Lw.takeRight,Aa.takeRightWhile=Lw.takeRightWhile,Aa.takeWhile=Lw.takeWhile,Aa.tap=Gw.tap,Aa.throttle=Uw.throttle,Aa.thru=Tm,Aa.toArray=Kw.toArray,Aa.toPairs=Yw.toPairs,Aa.toPairsIn=Yw.toPairsIn,Aa.toPath=Jw.toPath,Aa.toPlainObject=Kw.toPlainObject,Aa.transform=Yw.transform,Aa.unary=Uw.unary,Aa.union=Lw.union,Aa.unionBy=Lw.unionBy,Aa.unionWith=Lw.unionWith,Aa.uniq=Lw.uniq,Aa.uniqBy=Lw.uniqBy,Aa.uniqWith=Lw.uniqWith,Aa.unset=Yw.unset,Aa.unzip=Lw.unzip,Aa.unzipWith=Lw.unzipWith,Aa.update=Yw.update,Aa.updateWith=Yw.updateWith,Aa.values=Yw.values,Aa.valuesIn=Yw.valuesIn,Aa.without=Lw.without,Aa.words=Zw.words,Aa.wrap=Uw.wrap,Aa.xor=Lw.xor,Aa.xorBy=Lw.xorBy,Aa.xorWith=Lw.xorWith,Aa.zip=Lw.zip,Aa.zipObject=Lw.zipObject,Aa.zipObjectDeep=Lw.zipObjectDeep,Aa.zipWith=Lw.zipWith,Aa.entries=Yw.toPairs,Aa.entriesIn=Yw.toPairsIn,Aa.extend=Yw.assignIn,Aa.extendWith=Yw.assignInWith,py(Aa,Aa),Aa.add=Hw.add,Aa.attempt=Jw.attempt,Aa.camelCase=Zw.camelCase,Aa.capitalize=Zw.capitalize,Aa.ceil=Hw.ceil,Aa.clamp=Vw.clamp,Aa.clone=Kw.clone,Aa.cloneDeep=Kw.cloneDeep,Aa.cloneDeepWith=Kw.cloneDeepWith,Aa.cloneWith=Kw.cloneWith,Aa.conformsTo=Kw.conformsTo,Aa.deburr=Zw.deburr,Aa.defaultTo=Jw.defaultTo,Aa.divide=Hw.divide,Aa.endsWith=Zw.endsWith,Aa.eq=Kw.eq,Aa.escape=Zw.escape,Aa.escapeRegExp=Zw.escapeRegExp,Aa.every=Ww.every,Aa.find=Ww.find,Aa.findIndex=Lw.findIndex,Aa.findKey=Yw.findKey,Aa.findLast=Ww.findLast,Aa.findLastIndex=Lw.findLastIndex,Aa.findLastKey=Yw.findLastKey,Aa.floor=Hw.floor,Aa.forEach=Ww.forEach,Aa.forEachRight=Ww.forEachRight,Aa.forIn=Yw.forIn,Aa.forInRight=Yw.forInRight,Aa.forOwn=Yw.forOwn,Aa.forOwnRight=Yw.forOwnRight,Aa.get=Yw.get,Aa.gt=Kw.gt,Aa.gte=Kw.gte,Aa.has=Yw.has,Aa.hasIn=Yw.hasIn,Aa.head=Lw.head,Aa.identity=M,Aa.includes=Ww.includes,Aa.indexOf=Lw.indexOf,Aa.inRange=Vw.inRange,Aa.invoke=Yw.invoke,Aa.isArguments=Kw.isArguments,Aa.isArray=u.a,Aa.isArrayBuffer=Kw.isArrayBuffer,Aa.isArrayLike=Kw.isArrayLike,Aa.isArrayLikeObject=Kw.isArrayLikeObject,Aa.isBoolean=Kw.isBoolean,Aa.isBuffer=Kw.isBuffer,Aa.isDate=Kw.isDate,Aa.isElement=Kw.isElement,Aa.isEmpty=Kw.isEmpty,Aa.isEqual=Kw.isEqual,Aa.isEqualWith=Kw.isEqualWith,Aa.isError=Kw.isError,Aa.isFinite=Kw.isFinite,Aa.isFunction=Kw.isFunction,Aa.isInteger=Kw.isInteger,Aa.isLength=Kw.isLength,Aa.isMap=Kw.isMap,Aa.isMatch=Kw.isMatch,Aa.isMatchWith=Kw.isMatchWith,Aa.isNaN=Kw.isNaN,Aa.isNative=Kw.isNative,Aa.isNil=Kw.isNil,Aa.isNull=Kw.isNull,Aa.isNumber=Kw.isNumber,Aa.isObject=f,Aa.isObjectLike=Kw.isObjectLike,Aa.isPlainObject=Kw.isPlainObject,Aa.isRegExp=Kw.isRegExp,Aa.isSafeInteger=Kw.isSafeInteger,Aa.isSet=Kw.isSet,Aa.isString=Kw.isString,Aa.isSymbol=Kw.isSymbol,Aa.isTypedArray=Kw.isTypedArray,Aa.isUndefined=Kw.isUndefined,Aa.isWeakMap=Kw.isWeakMap,Aa.isWeakSet=Kw.isWeakSet,Aa.join=Lw.join,Aa.kebabCase=Zw.kebabCase,Aa.last=Bd,Aa.lastIndexOf=Lw.lastIndexOf,Aa.lowerCase=Zw.lowerCase,Aa.lowerFirst=Zw.lowerFirst,Aa.lt=Kw.lt,Aa.lte=Kw.lte,Aa.max=Hw.max,Aa.maxBy=Hw.maxBy,Aa.mean=Hw.mean,Aa.meanBy=Hw.meanBy,Aa.min=Hw.min,Aa.minBy=Hw.minBy,Aa.stubArray=Jw.stubArray,Aa.stubFalse=Jw.stubFalse,Aa.stubObject=Jw.stubObject,Aa.stubString=Jw.stubString,Aa.stubTrue=Jw.stubTrue,Aa.multiply=Hw.multiply,Aa.nth=Lw.nth,Aa.noop=Jw.noop,Aa.now=Nw.now,Aa.pad=Zw.pad,Aa.padEnd=Zw.padEnd,Aa.padStart=Zw.padStart,Aa.parseInt=Zw.parseInt,Aa.random=Vw.random,Aa.reduce=Ww.reduce,Aa.reduceRight=Ww.reduceRight,Aa.repeat=Zw.repeat,Aa.replace=Zw.replace,Aa.result=Yw.result,Aa.round=Hw.round,Aa.sample=Ww.sample,Aa.size=Ww.size,Aa.snakeCase=Zw.snakeCase,Aa.some=Ww.some,Aa.sortedIndex=Lw.sortedIndex,Aa.sortedIndexBy=Lw.sortedIndexBy,Aa.sortedIndexOf=Lw.sortedIndexOf,Aa.sortedLastIndex=Lw.sortedLastIndex,Aa.sortedLastIndexBy=Lw.sortedLastIndexBy,Aa.sortedLastIndexOf=Lw.sortedLastIndexOf,Aa.startCase=Zw.startCase,Aa.startsWith=Zw.startsWith,Aa.subtract=Hw.subtract,Aa.sum=Hw.sum,Aa.sumBy=Hw.sumBy,Aa.template=Zw.template,Aa.times=Jw.times,Aa.toFinite=Kw.toFinite,Aa.toInteger=O,Aa.toLength=Kw.toLength,Aa.toLower=Zw.toLower,Aa.toNumber=Kw.toNumber,Aa.toSafeInteger=Kw.toSafeInteger,Aa.toString=Kw.toString,Aa.toUpper=Zw.toUpper,Aa.trim=Zw.trim,Aa.trimEnd=Zw.trimEnd,Aa.trimStart=Zw.trimStart,Aa.truncate=Zw.truncate,Aa.unescape=Zw.unescape,Aa.uniqueId=Jw.uniqueId,Aa.upperCase=Zw.upperCase,Aa.upperFirst=Zw.upperFirst,Aa.each=Ww.forEach,Aa.eachRight=Ww.forEachRight,Aa.first=Lw.head,py(Aa,function(){var a={};return Qs(Aa,function(e,t){dy.call(Aa.prototype,t)||(a[t]=e)}),a}(),{chain:!1}),Aa.VERSION="4.17.11",(Aa.templateSettings=Zw.templateSettings).imports._=Aa,Na(["bind","bindKey","curry","curryRight","partial","partialRight"],function(a){Aa[a].placeholder=Aa}),Na(["drop","take"],function(a,e){wa.prototype[a]=function(t){t=void 0===t?1:cy(O(t),0);var i=this.__filtered__&&!e?new wa(this):this.clone();return i.__filtered__?i.__takeCount__=uy(t,i.__takeCount__):i.__views__.push({size:uy(t,4294967295),type:a+(i.__dir__<0?"Right":"")}),i},wa.prototype[a+"Right"]=function(e){return this.reverse()[a](e).reverse()}}),Na(["filter","map","takeWhile"],function(a,e){var t=e+1,i=1==t||3==t;wa.prototype[a]=function(a){var e=this.clone();return e.__iteratees__.push({iteratee:Ls(a,3),type:t}),e.__filtered__=e.__filtered__||i,e}}),Na(["head","last"],function(a,e){var t="take"+(e?"Right":"");wa.prototype[a]=function(){return this[t](1).value()[0]}}),Na(["initial","tail"],function(a,e){var t="drop"+(e?"":"Right");wa.prototype[a]=function(){return this.__filtered__?new wa(this):this[t](1)}}),wa.prototype.compact=function(){return this.filter(M)},wa.prototype.find=function(a){return this.filter(a).head()},wa.prototype.findLast=function(a){return this.reverse().find(a)},wa.prototype.invokeMap=Ze(function(a,e){return"function"==typeof a?new wa(this):this.map(function(t){return Hc(t,a,e)})}),wa.prototype.reject=function(a){return this.filter(hp(Ls(a)))},wa.prototype.slice=function(a,e){a=O(a);var t=this;return t.__filtered__&&(a>0||e<0)?new wa(t):(a<0?t=t.takeRight(-a):a&&(t=t.drop(a)),void 0!==e&&(t=(e=O(e))<0?t.dropRight(-e):t.take(e-a)),t)},wa.prototype.takeRightWhile=function(a){return this.reverse().takeWhile(a).reverse()},wa.prototype.toArray=function(){return this.take(4294967295)},Qs(wa.prototype,function(a,e){var t=/^(?:filter|find|map|reject)|While$/.test(e),i=/^(?:head|last)$/.test(e),n=Aa[i?"take"+("last"==e?"Right":""):e],o=i||/^find/.test(e);n&&(Aa.prototype[e]=function(){var e=this.__wrapped__,r=i?[1]:arguments,s=e instanceof wa,d=r[0],l=s||Object(u.a)(e),c=function(a){var e=n.apply(Aa,Object(yo.a)([a],r));return i&&p?e[0]:e};l&&t&&"function"==typeof d&&1!=d.length&&(s=l=!1);var p=this.__chain__,z=!!this.__actions__.length,g=o&&!p,m=s&&!z;if(!o&&l){e=m?e:new wa(this);var w=a.apply(e,r);return w.__actions__.push({func:Tm,args:[c],thisArg:void 0}),new ja(w,p)}return g&&m?a.apply(this,r):(w=this.thru(c),g?i?w.value()[0]:w.value():w)})}),Na(["pop","push","shift","sort","splice","unshift"],function(a){var e=sy[a],t=/^(?:push|sort|unshift)$/.test(a)?"tap":"thru",i=/^(?:pop|shift)$/.test(a);Aa.prototype[a]=function(){var a=arguments;if(i&&!this.__chain__){var n=this.value();return e.apply(Object(u.a)(n)?n:[],a)}return this[t](function(t){return e.apply(Object(u.a)(t)?t:[],a)})}}),Qs(wa.prototype,function(a,e){var t=Aa[e];if(t){var i=t.name+"";(ba[i]||(ba[i]=[])).push({name:e,func:t})}}),ba[be(void 0,2).name]=[{name:"wrapper",func:void 0}],wa.prototype.clone=Qw,wa.prototype.reverse=Xw,wa.prototype.value=ry,Aa.prototype.at=Gw.at,Aa.prototype.chain=Gw.wrapperChain,Aa.prototype.commit=Gw.commit,Aa.prototype.next=Gw.next,Aa.prototype.plant=Gw.plant,Aa.prototype.reverse=Gw.reverse,Aa.prototype.toJSON=Aa.prototype.valueOf=Aa.prototype.value=Gw.value,Aa.prototype.first=Aa.prototype.head,ly&&(Aa.prototype[ly]=Gw.toIterator);var zy=Aa;t.d(e,"add",function(){return y}),t.d(e,"after",function(){return S}),t.d(e,"ary",function(){return We}),t.d(e,"assign",function(){return vt}),t.d(e,"assignIn",function(){return qt}),t.d(e,"assignInWith",function(){return Et}),t.d(e,"assignWith",function(){return At}),t.d(e,"at",function(){return qi}),t.d(e,"attempt",function(){return Bi}),t.d(e,"before",function(){return Ii}),t.d(e,"bind",function(){return Wi}),t.d(e,"bindAll",function(){return Ni}),t.d(e,"bindKey",function(){return Ki}),t.d(e,"camelCase",function(){return Wn}),t.d(e,"capitalize",function(){return pn}),t.d(e,"castArray",function(){return Nn}),t.d(e,"ceil",function(){return Hn}),t.d(e,"chain",function(){return Vn}),t.d(e,"chunk",function(){return Zn}),t.d(e,"clamp",function(){return Qn}),t.d(e,"clone",function(){return Or}),t.d(e,"cloneDeep",function(){return Mr}),t.d(e,"cloneDeepWith",function(){return Rr}),t.d(e,"cloneWith",function(){return Fr}),t.d(e,"commit",function(){return Br}),t.d(e,"compact",function(){return $r}),t.d(e,"concat",function(){return Ir}),t.d(e,"cond",function(){return Ns}),t.d(e,"conforms",function(){return Vs}),t.d(e,"conformsTo",function(){return Ys}),t.d(e,"constant",function(){return Ia}),t.d(e,"countBy",function(){return nd}),t.d(e,"create",function(){return od}),t.d(e,"curry",function(){return dd}),t.d(e,"curryRight",function(){return ud}),t.d(e,"debounce",function(){return wd}),t.d(e,"deburr",function(){return fn}),t.d(e,"defaultTo",function(){return yd}),t.d(e,"defaults",function(){return hd}),t.d(e,"defaultsDeep",function(){return Od}),t.d(e,"defer",function(){return Md}),t.d(e,"delay",function(){return Pd}),t.d(e,"difference",function(){return Fd}),t.d(e,"differenceBy",function(){return $d}),t.d(e,"differenceWith",function(){return Id}),t.d(e,"divide",function(){return Ld}),t.d(e,"drop",function(){return Wd}),t.d(e,"dropRight",function(){return Nd}),t.d(e,"dropRightWhile",function(){return Kd}),t.d(e,"dropWhile",function(){return Hd}),t.d(e,"each",function(){return Yd}),t.d(e,"eachRight",function(){return Xd}),t.d(e,"endsWith",function(){return al}),t.d(e,"entries",function(){return rl}),t.d(e,"entriesIn",function(){return sl}),t.d(e,"eq",function(){return Ue}),t.d(e,"escape",function(){return ul}),t.d(e,"escapeRegExp",function(){return gl}),t.d(e,"every",function(){return yl}),t.d(e,"extend",function(){return qt}),t.d(e,"extendWith",function(){return Et}),t.d(e,"fill",function(){return vl}),t.d(e,"filter",function(){return jl}),t.d(e,"find",function(){return El}),t.d(e,"findIndex",function(){return ql}),t.d(e,"findKey",function(){return Ol}),t.d(e,"findLast",function(){return Pl}),t.d(e,"findLastIndex",function(){return Ml}),t.d(e,"findLastKey",function(){return Cl}),t.d(e,"first",function(){return Rl}),t.d(e,"flatMap",function(){return Bl}),t.d(e,"flatMapDeep",function(){return Il}),t.d(e,"flatMapDepth",function(){return Ll}),t.d(e,"flatten",function(){return _i}),t.d(e,"flattenDeep",function(){return Wl.default}),t.d(e,"flattenDepth",function(){return Nl}),t.d(e,"flip",function(){return Kl}),t.d(e,"floor",function(){return Hl}),t.d(e,"flow",function(){return Xl}),t.d(e,"flowRight",function(){return ac}),t.d(e,"forEach",function(){return Yd}),t.d(e,"forEachRight",function(){return Xd}),t.d(e,"forIn",function(){return ec}),t.d(e,"forInRight",function(){return tc}),t.d(e,"forOwn",function(){return ic}),t.d(e,"forOwnRight",function(){return nc}),t.d(e,"fromPairs",function(){return oc}),t.d(e,"functions",function(){return sc}),t.d(e,"functionsIn",function(){return dc}),t.d(e,"get",function(){return vi}),t.d(e,"groupBy",function(){return cc}),t.d(e,"gt",function(){return zc}),t.d(e,"gte",function(){return gc}),t.d(e,"has",function(){return yc}),t.d(e,"hasIn",function(){return Cs}),t.d(e,"head",function(){return Rl}),t.d(e,"identity",function(){return M}),t.d(e,"inRange",function(){return vc}),t.d(e,"includes",function(){return Ec}),t.d(e,"indexOf",function(){return Oc}),t.d(e,"initial",function(){return Tc}),t.d(e,"intersection",function(){return Cc}),t.d(e,"intersectionBy",function(){return Rc}),t.d(e,"intersectionWith",function(){return Dc}),t.d(e,"invert",function(){return Ic}),t.d(e,"invertBy",function(){return Uc}),t.d(e,"invoke",function(){return Vc}),t.d(e,"invokeMap",function(){return Yc}),t.d(e,"isArguments",function(){return ot.a}),t.d(e,"isArray",function(){return u.a}),t.d(e,"isArrayBuffer",function(){return Qc}),t.d(e,"isArrayLike",function(){return Xe}),t.d(e,"isArrayLikeObject",function(){return kd}),t.d(e,"isBoolean",function(){return au}),t.d(e,"isBuffer",function(){return rt.a}),t.d(e,"isDate",function(){return nu}),t.d(e,"isElement",function(){return ou}),t.d(e,"isEmpty",function(){return lu}),t.d(e,"isEqual",function(){return cu}),t.d(e,"isEqualWith",function(){return uu}),t.d(e,"isError",function(){return Fi}),t.d(e,"isFinite",function(){return zu}),t.d(e,"isFunction",function(){return F}),t.d(e,"isInteger",function(){return gu}),t.d(e,"isLength",function(){return Qe}),t.d(e,"isMap",function(){return gr}),t.d(e,"isMatch",function(){return mu}),t.d(e,"isMatchWith",function(){return wu}),t.d(e,"isNaN",function(){return bu}),t.d(e,"isNative",function(){return ju}),t.d(e,"isNil",function(){return _u}),t.d(e,"isNull",function(){return xu}),t.d(e,"isNumber",function(){return fu}),t.d(e,"isObject",function(){return f}),t.d(e,"isObjectLike",function(){return n.a}),t.d(e,"isPlainObject",function(){return Ci}),t.d(e,"isRegExp",function(){return Ou}),t.d(e,"isSafeInteger",function(){return Su}),t.d(e,"isSet",function(){return fr}),t.d(e,"isString",function(){return jc}),t.d(e,"isSymbol",function(){return r}),t.d(e,"isTypedArray",function(){return pt}),t.d(e,"isUndefined",function(){return Mu}),t.d(e,"isWeakMap",function(){return Cu}),t.d(e,"isWeakSet",function(){return Du}),t.d(e,"iteratee",function(){return Bu}),t.d(e,"join",function(){return Iu}),t.d(e,"kebabCase",function(){return Lu}),t.d(e,"keyBy",function(){return Wu}),t.d(e,"keys",function(){return bt}),t.d(e,"keysIn",function(){return xt}),t.d(e,"last",function(){return Bd}),t.d(e,"lastIndexOf",function(){return Hu}),t.d(e,"lodash",function(){return Aa}),t.d(e,"lowerCase",function(){return Vu}),t.d(e,"lowerFirst",function(){return Yu}),t.d(e,"lt",function(){return Zu}),t.d(e,"lte",function(){return Ju}),t.d(e,"map",function(){return Fl}),t.d(e,"mapKeys",function(){return Qu}),t.d(e,"mapValues",function(){return Xu}),t.d(e,"matches",function(){return ep}),t.d(e,"matchesProperty",function(){return ip}),t.d(e,"max",function(){return op}),t.d(e,"maxBy",function(){return rp}),t.d(e,"mean",function(){return cp}),t.d(e,"meanBy",function(){return up}),t.d(e,"memoize",function(){return ui}),t.d(e,"merge",function(){return pp}),t.d(e,"mergeWith",function(){return Ad}),t.d(e,"method",function(){return zp}),t.d(e,"methodOf",function(){return gp}),t.d(e,"min",function(){return mp}),t.d(e,"minBy",function(){return wp}),t.d(e,"mixin",function(){return yp}),t.d(e,"multiply",function(){return fp}),t.d(e,"negate",function(){return hp}),t.d(e,"next",function(){return qp}),t.d(e,"noop",function(){return ya}),t.d(e,"now",function(){return pd}),t.d(e,"nth",function(){return Ap}),t.d(e,"nthArg",function(){return Op}),t.d(e,"omit",function(){return Mp}),t.d(e,"omitBy",function(){return Dp}),t.d(e,"once",function(){return Fp}),t.d(e,"orderBy",function(){return Wp}),t.d(e,"over",function(){return Up}),t.d(e,"overArgs",function(){return Vp}),t.d(e,"overEvery",function(){return Yp}),t.d(e,"overSome",function(){return Gp}),t.d(e,"pad",function(){return mz}),t.d(e,"padEnd",function(){return wz}),t.d(e,"padStart",function(){return yz}),t.d(e,"parseInt",function(){return hz}),t.d(e,"partial",function(){return kz}),t.d(e,"partialRight",function(){return _z}),t.d(e,"partition",function(){return xz}),t.d(e,"pick",function(){return Ez}),t.d(e,"pickBy",function(){return Rp}),t.d(e,"plant",function(){return Az}),t.d(e,"property",function(){return Is}),t.d(e,"propertyOf",function(){return Oz}),t.d(e,"pull",function(){return Cz}),t.d(e,"pullAll",function(){return Pz}),t.d(e,"pullAllBy",function(){return Rz}),t.d(e,"pullAllWith",function(){return Dz}),t.d(e,"pullAt",function(){return $z}),t.d(e,"random",function(){return Hz}),t.d(e,"range",function(){return Jz}),t.d(e,"rangeRight",function(){return Qz}),t.d(e,"rearg",function(){return Xz}),t.d(e,"reduce",function(){return eg}),t.d(e,"reduceRight",function(){return ig}),t.d(e,"reject",function(){return ng}),t.d(e,"remove",function(){return og}),t.d(e,"repeat",function(){return rg}),t.d(e,"replace",function(){return sg}),t.d(e,"rest",function(){return lg}),t.d(e,"result",function(){return cg}),t.d(e,"reverse",function(){return pg}),t.d(e,"round",function(){return zg}),t.d(e,"sample",function(){return wg}),t.d(e,"sampleSize",function(){return hg}),t.d(e,"set",function(){return vg}),t.d(e,"setWith",function(){return kg}),t.d(e,"shuffle",function(){return xg}),t.d(e,"size",function(){return Ag}),t.d(e,"slice",function(){return Og}),t.d(e,"snakeCase",function(){return Tg}),t.d(e,"some",function(){return Mg}),t.d(e,"sortBy",function(){return Pg}),t.d(e,"sortedIndex",function(){return Ig}),t.d(e,"sortedIndexBy",function(){return Lg}),t.d(e,"sortedIndexOf",function(){return Wg}),t.d(e,"sortedLastIndex",function(){return Ng}),t.d(e,"sortedLastIndexBy",function(){return Ug}),t.d(e,"sortedLastIndexOf",function(){return Kg}),t.d(e,"sortedUniq",function(){return Vg}),t.d(e,"sortedUniqBy",function(){return Yg}),t.d(e,"split",function(){return Zg}),t.d(e,"spread",function(){return Xg}),t.d(e,"startCase",function(){return am}),t.d(e,"startsWith",function(){return em}),t.d(e,"stubArray",function(){return po}),t.d(e,"stubFalse",function(){return hu.a}),t.d(e,"stubObject",function(){return tm}),t.d(e,"stubString",function(){return im}),t.d(e,"stubTrue",function(){return nm}),t.d(e,"subtract",function(){return om}),t.d(e,"sum",function(){return rm}),t.d(e,"sumBy",function(){return sm}),t.d(e,"tail",function(){return dm}),t.d(e,"take",function(){return lm}),t.d(e,"takeRight",function(){return cm}),t.d(e,"takeRightWhile",function(){return um}),t.d(e,"takeWhile",function(){return pm}),t.d(e,"tap",function(){return zm}),t.d(e,"template",function(){return Em}),t.d(e,"templateSettings",function(){return hm}),t.d(e,"throttle",function(){return Om}),t.d(e,"thru",function(){return Tm}),t.d(e,"times",function(){return Cm}),t.d(e,"toArray",function(){return xp}),t.d(e,"toFinite",function(){return A}),t.d(e,"toInteger",function(){return O}),t.d(e,"toIterator",function(){return Rm}),t.d(e,"toJSON",function(){return Fm}),t.d(e,"toLength",function(){return bl}),t.d(e,"toLower",function(){return Bm}),t.d(e,"toNumber",function(){return x}),t.d(e,"toPairs",function(){return rl}),t.d(e,"toPairsIn",function(){return sl}),t.d(e,"toPath",function(){return $m}),t.d(e,"toPlainObject",function(){return _d}),t.d(e,"toSafeInteger",function(){return Lm}),t.d(e,"toString",function(){return wi}),t.d(e,"toUpper",function(){return Wm}),t.d(e,"transform",function(){return Nm}),t.d(e,"trim",function(){return Vm}),t.d(e,"trimEnd",function(){return Gm}),t.d(e,"trimStart",function(){return Jm}),t.d(e,"truncate",function(){return ew}),t.d(e,"unary",function(){return tw}),t.d(e,"unescape",function(){return rw}),t.d(e,"union",function(){return cw}),t.d(e,"unionBy",function(){return uw}),t.d(e,"unionWith",function(){return pw}),t.d(e,"uniq",function(){return zw}),t.d(e,"uniqBy",function(){return gw}),t.d(e,"uniqWith",function(){return mw}),t.d(e,"uniqueId",function(){return yw}),t.d(e,"unset",function(){return fw}),t.d(e,"unzip",function(){return hw}),t.d(e,"unzipWith",function(){return vw}),t.d(e,"update",function(){return jw}),t.d(e,"updateWith",function(){return _w}),t.d(e,"upperCase",function(){return xw}),t.d(e,"upperFirst",function(){return un}),t.d(e,"value",function(){return Fm}),t.d(e,"valueOf",function(){return Fm}),t.d(e,"values",function(){return xc}),t.d(e,"valuesIn",function(){return qw}),t.d(e,"without",function(){return Ew}),t.d(e,"words",function(){return $n}),t.d(e,"wrap",function(){return Aw}),t.d(e,"wrapperAt",function(){return Ow}),t.d(e,"wrapperChain",function(){return Tw}),t.d(e,"wrapperCommit",function(){return Br}),t.d(e,"wrapperLodash",function(){return Aa}),t.d(e,"wrapperNext",function(){return qp}),t.d(e,"wrapperPlant",function(){return Az}),t.d(e,"wrapperReverse",function(){return Sw}),t.d(e,"wrapperToIterator",function(){return Rm}),t.d(e,"wrapperValue",function(){return Fm}),t.d(e,"xor",function(){return Pw}),t.d(e,"xorBy",function(){return Cw}),t.d(e,"xorWith",function(){return Rw}),t.d(e,"zip",function(){return Dw}),t.d(e,"zipObject",function(){return Bw}),t.d(e,"zipObjectDeep",function(){return $w}),t.d(e,"zipWith",function(){return Iw}),t.d(e,"default",function(){return zy})},function(a,e,t){"use strict";var i=Array.isArray;e.a=i},function(a,e,t){"use strict";e.a=function(a){return null!=a&&"object"==typeof a}},,function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=function(a){return a&&a.__esModule?a:{default:a}}(t(42));var o=function(){return[]},r=function(a){this._hasScore=!1,this._identifier="",this._hasMarks=!1,this._marker=o,this.score=0,this.text="",this.marks=[],(0,i.isUndefined)(a)&&(a={}),(0,i.isUndefined)(a.score)||this.setScore(a.score),(0,i.isUndefined)(a.text)||this.setText(a.text),(0,i.isUndefined)(a.marks)||this.setMarks(a.marks)};r.prototype.hasScore=function(){return this._hasScore},r.prototype.getScore=function(){return this.score},r.prototype.setScore=function(a){(0,i.isNumber)(a)&&(this.score=a,this._hasScore=!0)},r.prototype.hasText=function(){return""!==this.text},r.prototype.getText=function(){return this.text},r.prototype.setText=function(a){(0,i.isUndefined)(a)&&(a=""),this.text=a},r.prototype.getMarks=function(){return this.marks},r.prototype.setMarks=function(a){(0,i.isArray)(a)&&(this.marks=a,this._hasMarks=a.length>0)},r.prototype.setIdentifier=function(a){this._identifier=a},r.prototype.getIdentifier=function(){return this._identifier},r.prototype.setMarker=function(a){this._marker=a},r.prototype.hasMarker=function(){return this._hasMarks&&this._marker!==this.emptyMarker},r.prototype.getMarker=function(){return this._marker},r.prototype.setHasMarks=function(a){this._hasMarks=a},r.prototype.hasMarks=function(){return this._hasMarks},r.prototype.serialize=function(){return{_parseClass:"AssessmentResult",identifier:this._identifier,score:this.score,text:this.text,marks:this.marks.map(a=>a.serialize())}},r.parse=function(a){const e=new r({text:a.text,score:a.score,marks:a.marks.map(a=>n.default.parse(a))});return e.setIdentifier(a.identifier),e},e.default=r},,function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(563);Object.keys(i).forEach(function(a){"default"!==a&&"__esModule"!==a&&Object.defineProperty(e,a,{enumerable:!0,get:function(){return i[a]}})})},function(a,e,t){"use strict";var i=t(152),n="object"==typeof self&&self&&self.Object===Object&&self,o=i.a||n||Function("return this")();e.a=o},function(a,e,t){"use strict";var i=t(26),n=t(15),o=t(28),r=t(2),s=n.a?n.a.isConcatSpreadable:void 0;var d=function(a){return Object(r.a)(a)||Object(o.a)(a)||!!(s&&a&&a[s])};e.a=function a(e,t,n,o,r){var s=-1,l=e.length;for(n||(n=d),r||(r=[]);++s<l;){var c=e[s];t>0&&n(c)?t>1?a(c,t-1,n,o,r):Object(i.a)(r,c):o||(r[r.length]=c)}return r}},,,function(a,e,t){"use strict";var i=t(15),n=Object.prototype,o=n.hasOwnProperty,r=n.toString,s=i.a?i.a.toStringTag:void 0;var d=function(a){var e=o.call(a,s),t=a[s];try{a[s]=void 0;var i=!0}catch(a){}var n=r.call(a);return i&&(e?a[s]=t:delete a[s]),n},l=Object.prototype.toString;var c=function(a){return l.call(a)},u="[object Null]",p="[object Undefined]",z=i.a?i.a.toStringTag:void 0;e.a=function(a){return null==a?void 0===a?p:u:z&&z in Object(a)?d(a):c(a)}},,function(a,e,t){(function(a,i){var n=/%[sdj%]/g;e.format=function(a){if(!y(a)){for(var e=[],t=0;t<arguments.length;t++)e.push(s(arguments[t]));return e.join(" ")}t=1;for(var i=arguments,o=i.length,r=String(a).replace(n,function(a){if("%%"===a)return"%";if(t>=o)return a;switch(a){case"%s":return String(i[t++]);case"%d":return Number(i[t++]);case"%j":try{return JSON.stringify(i[t++])}catch(a){return"[Circular]"}default:return a}}),d=i[t];t<o;d=i[++t])m(d)||!h(d)?r+=" "+d:r+=" "+s(d);return r},e.deprecate=function(t,n){if(f(a.process))return function(){return e.deprecate(t,n).apply(this,arguments)};if(!0===i.noDeprecation)return t;var o=!1;return function(){if(!o){if(i.throwDeprecation)throw new Error(n);i.traceDeprecation?console.trace(n):console.error(n),o=!0}return t.apply(this,arguments)}};var o,r={};function s(a,t){var i={seen:[],stylize:l};return arguments.length>=3&&(i.depth=arguments[2]),arguments.length>=4&&(i.colors=arguments[3]),g(t)?i.showHidden=t:t&&e._extend(i,t),f(i.showHidden)&&(i.showHidden=!1),f(i.depth)&&(i.depth=2),f(i.colors)&&(i.colors=!1),f(i.customInspect)&&(i.customInspect=!0),i.colors&&(i.stylize=d),c(i,a,i.depth)}function d(a,e){var t=s.styles[e];return t?"["+s.colors[t][0]+"m"+a+"["+s.colors[t][1]+"m":a}function l(a,e){return a}function c(a,t,i){if(a.customInspect&&t&&j(t.inspect)&&t.inspect!==e.inspect&&(!t.constructor||t.constructor.prototype!==t)){var n=t.inspect(i,a);return y(n)||(n=c(a,n,i)),n}var o=function(a,e){if(f(e))return a.stylize("undefined","undefined");if(y(e)){var t="'"+JSON.stringify(e).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return a.stylize(t,"string")}if(w(e))return a.stylize(""+e,"number");if(g(e))return a.stylize(""+e,"boolean");if(m(e))return a.stylize("null","null")}(a,t);if(o)return o;var r=Object.keys(t),s=function(a){var e={};return a.forEach(function(a,t){e[a]=!0}),e}(r);if(a.showHidden&&(r=Object.getOwnPropertyNames(t)),k(t)&&(r.indexOf("message")>=0||r.indexOf("description")>=0))return u(t);if(0===r.length){if(j(t)){var d=t.name?": "+t.name:"";return a.stylize("[Function"+d+"]","special")}if(b(t))return a.stylize(RegExp.prototype.toString.call(t),"regexp");if(v(t))return a.stylize(Date.prototype.toString.call(t),"date");if(k(t))return u(t)}var l,h="",_=!1,x=["{","}"];(z(t)&&(_=!0,x=["[","]"]),j(t))&&(h=" [Function"+(t.name?": "+t.name:"")+"]");return b(t)&&(h=" "+RegExp.prototype.toString.call(t)),v(t)&&(h=" "+Date.prototype.toUTCString.call(t)),k(t)&&(h=" "+u(t)),0!==r.length||_&&0!=t.length?i<0?b(t)?a.stylize(RegExp.prototype.toString.call(t),"regexp"):a.stylize("[Object]","special"):(a.seen.push(t),l=_?function(a,e,t,i,n){for(var o=[],r=0,s=e.length;r<s;++r)E(e,String(r))?o.push(p(a,e,t,i,String(r),!0)):o.push("");return n.forEach(function(n){n.match(/^\d+$/)||o.push(p(a,e,t,i,n,!0))}),o}(a,t,i,s,r):r.map(function(e){return p(a,t,i,s,e,_)}),a.seen.pop(),function(a,e,t){if(a.reduce(function(a,e){return 0,e.indexOf("\n")>=0&&0,a+e.replace(/\u001b\[\d\d?m/g,"").length+1},0)>60)return t[0]+(""===e?"":e+"\n ")+" "+a.join(",\n ")+" "+t[1];return t[0]+e+" "+a.join(", ")+" "+t[1]}(l,h,x)):x[0]+h+x[1]}function u(a){return"["+Error.prototype.toString.call(a)+"]"}function p(a,e,t,i,n,o){var r,s,d;if((d=Object.getOwnPropertyDescriptor(e,n)||{value:e[n]}).get?s=d.set?a.stylize("[Getter/Setter]","special"):a.stylize("[Getter]","special"):d.set&&(s=a.stylize("[Setter]","special")),E(i,n)||(r="["+n+"]"),s||(a.seen.indexOf(d.value)<0?(s=m(t)?c(a,d.value,null):c(a,d.value,t-1)).indexOf("\n")>-1&&(s=o?s.split("\n").map(function(a){return" "+a}).join("\n").substr(2):"\n"+s.split("\n").map(function(a){return" "+a}).join("\n")):s=a.stylize("[Circular]","special")),f(r)){if(o&&n.match(/^\d+$/))return s;(r=JSON.stringify(""+n)).match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(r=r.substr(1,r.length-2),r=a.stylize(r,"name")):(r=r.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),r=a.stylize(r,"string"))}return r+": "+s}function z(a){return Array.isArray(a)}function g(a){return"boolean"==typeof a}function m(a){return null===a}function w(a){return"number"==typeof a}function y(a){return"string"==typeof a}function f(a){return void 0===a}function b(a){return h(a)&&"[object RegExp]"===_(a)}function h(a){return"object"==typeof a&&null!==a}function v(a){return h(a)&&"[object Date]"===_(a)}function k(a){return h(a)&&("[object Error]"===_(a)||a instanceof Error)}function j(a){return"function"==typeof a}function _(a){return Object.prototype.toString.call(a)}function x(a){return a<10?"0"+a.toString(10):a.toString(10)}e.debuglog=function(a){if(f(o)&&(o=i.env.NODE_DEBUG||""),a=a.toUpperCase(),!r[a])if(new RegExp("\\b"+a+"\\b","i").test(o)){var t=i.pid;r[a]=function(){var i=e.format.apply(e,arguments);console.error("%s %d: %s",a,t,i)}}else r[a]=function(){};return r[a]},e.inspect=s,s.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},s.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"},e.isArray=z,e.isBoolean=g,e.isNull=m,e.isNullOrUndefined=function(a){return null==a},e.isNumber=w,e.isString=y,e.isSymbol=function(a){return"symbol"==typeof a},e.isUndefined=f,e.isRegExp=b,e.isObject=h,e.isDate=v,e.isError=k,e.isFunction=j,e.isPrimitive=function(a){return null===a||"boolean"==typeof a||"number"==typeof a||"string"==typeof a||"symbol"==typeof a||void 0===a},e.isBuffer=t(592);var q=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function E(a,e){return Object.prototype.hasOwnProperty.call(a,e)}e.log=function(){console.log("%s - %s",function(){var a=new Date,e=[x(a.getHours()),x(a.getMinutes()),x(a.getSeconds())].join(":");return[a.getDate(),q[a.getMonth()],e].join(" ")}(),e.format.apply(e,arguments))},e.inherits=t(102),e._extend=function(a,e){if(!e||!h(e))return a;for(var t=Object.keys(e),i=t.length;i--;)a[t[i]]=e[t[i]];return a}}).call(this,t(44),t(591))},function(a,e,t){"use strict";var i=t(8).a.Symbol;e.a=i},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.default=class{getResult(a,e,t){throw"The method getResult is not implemented"}isApplicable(a){return!0}}},,,,function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a){return a.split("_")[0]}},,function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a){if(""===(a=(0,n.default)((0,i.stripFullTags)(a))))return[];var e=a.split(/\s/g);return e=(0,r.map)(e,function(a){return(0,o.default)(a)}),(0,r.filter)(e,function(a){return""!==a.trim()})};var i=t(33),n=s(t(25)),o=s(t(188)),r=t(1);function s(a){return a&&a.__esModule?a:{default:a}}},function(a,e,t){"use strict";(function(a){var i=t(152),n="object"==typeof exports&&exports&&!exports.nodeType&&exports,o=n&&"object"==typeof a&&a&&!a.nodeType&&a,r=o&&o.exports===n&&i.a.process,s=function(){try{var a=o&&o.require&&o.require("util").types;return a||r&&r.binding&&r.binding("util")}catch(a){}}();e.a=s}).call(this,t(180)(a))},function(a,e,t){"use strict";(function(a){var i=t(8),n=t(62),o="object"==typeof exports&&exports&&!exports.nodeType&&exports,r=o&&"object"==typeof a&&a&&!a.nodeType&&a,s=r&&r.exports===o?i.a.Buffer:void 0,d=(s?s.isBuffer:void 0)||n.a;e.a=d}).call(this,t(180)(a))},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a){return a=(a=(a=a.replace(/\s{2,}/g," ")).replace(/\s\./g,".")).replace(/^\s+|\s+$/g,"")}},function(a,e,t){"use strict";e.a=function(a,e){for(var t=-1,i=e.length,n=a.length;++t<i;)a[n+t]=e[t];return a}},,function(a,e,t){"use strict";var i=t(12),n=t(3),o="[object Arguments]";var r=function(a){return Object(n.a)(a)&&Object(i.a)(a)==o},s=Object.prototype,d=s.hasOwnProperty,l=s.propertyIsEnumerable,c=r(function(){return arguments}())?r:function(a){return Object(n.a)(a)&&d.call(a,"callee")&&!l.call(a,"callee")};e.a=c},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a){a=(0,o.unifyNonBreakingSpace)(a);let e=(0,n.getBlocks)(a);e=(0,i.flatMap)(e,function(a){return a.split(s)});const t=(0,i.flatMap)(e,d);return(0,i.filter)(t,(0,i.negate)(i.isEmpty))};var i=t(1),n=t(122),o=t(260),r=function(a){return a&&a.__esModule?a:{default:a}}(t(568));const s=new RegExp("\n\r|\n|\r");const d=(0,i.memoize)(function(a){const e=new r.default;var t=e.createTokenizer();const i=t.tokenizer,n=t.tokens;return e.tokenize(i,a),0===n.length?[]:e.getSentencesFromTokens(n)})},,,,function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.stripBlockTagsAtStartEnd=e.stripIncompleteTags=e.stripFullTags=void 0;var i=function(a){return a&&a.__esModule?a:{default:a}}(t(25)),n=t(122);var o=new RegExp("^<("+n.blockElements.join("|")+")[^>]*?>","i"),r=new RegExp("</("+n.blockElements.join("|")+")[^>]*?>$","i"),s=function(a){return a=(a=a.replace(/^(<\/([^>]+)>)+/i,"")).replace(/(<([^/>]+)>)+$/i,"")},d=function(a){return a=(a=a.replace(o,"")).replace(r,"")},l=function(a){return a=a.replace(/(<([^>]+)>)/gi," "),a=(0,i.default)(a)};e.stripFullTags=l,e.stripIncompleteTags=s,e.stripBlockTagsAtStartEnd=d,e.default={stripFullTags:l,stripIncompleteTags:s,stripBlockTagsAtStartEnd:d}},,,,,,,,,function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=Object.assign||function(a){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&(a[i]=t[i])}return a},n=t(1);function o(a){(0,n.defaults)(a,{original:"",marked:""}),this._properties=a}o.prototype.getOriginal=function(){return this._properties.original},o.prototype.getMarked=function(){return this._properties.marked},o.prototype.applyWithReplace=function(a){return a.split(this._properties.original).join(this._properties.marked)},o.prototype.serialize=function(){return i({_parseClass:"Mark"},this._properties)},o.parse=function(a){return delete a._parseClass,new o(a)},e.default=o},function(a,e,t){"use strict";function i(a,e,t){return a>e&&a<=t}function n(a,e,t){return a>=e&&a<t}function o(a,e,t){return a>=e&&a<=t}Object.defineProperty(e,"__esModule",{value:!0}),e.inRange=i,e.inRangeStartInclusive=n,e.inRangeEndInclusive=i,e.inRangeStartEndInclusive=o,e.default={inRange:i,inRangeStartInclusive:n,inRangeEndInclusive:i,inRangeStartEndInclusive:o}},function(a,e){var t;t=function(){return this}();try{t=t||Function("return this")()||(0,eval)("this")}catch(a){"object"==typeof window&&(t=window)}a.exports=t},,,,,,function(a,e,t){"use strict";function i(a){return a.replace(/[‘’‛`]/g,"'")}function n(a){return a.replace(/[“”〝〞〟‟„]/g,'"')}function o(a){return n(i(a))}Object.defineProperty(e,"__esModule",{value:!0}),e.normalizeSingle=i,e.normalizeDouble=n,e.normalize=o,e.default={normalizeSingle:i,normalizeDouble:n,normalize:o}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=l(t(137)),n=l(t(134)),o=l(t(853)),r=l(t(5)),s=t(854),d=t(1);function l(a){return a&&a.__esModule?a:{default:a}}var c=function(a,e){this.type="Assessor",this.setI18n(a),this._assessments=[],this._options=e||{},(0,d.isUndefined)(this._options.researcher)||(this._researcher=this._options.researcher)};c.prototype.setI18n=function(a){if((0,d.isUndefined)(a))throw new n.default("The assessor requires an i18n object.");this.i18n=a},c.prototype.getAvailableAssessments=function(){return this._assessments},c.prototype.isApplicable=function(a,e,t){return!a.hasOwnProperty("isApplicable")&&"function"!=typeof a.isApplicable||a.isApplicable(e,t)},c.prototype.hasMarker=function(a){return(0,d.isFunction)(this._options.marker)&&(a.hasOwnProperty("getMarks")||"function"==typeof a.getMarks)},c.prototype.getSpecificMarker=function(){return this._options.marker},c.prototype.getPaper=function(){return this._lastPaper},c.prototype.getMarker=function(a,e,t){var i=this._options.marker;return function(){let n=a.getMarks(e,t);n=(0,o.default)(n),i(e,n)}},c.prototype.assess=function(a){(0,d.isUndefined)(this._researcher)?this._researcher=new i.default(a):this._researcher.setPaper(a);var e=this.getAvailableAssessments();this.results=[],e=(0,d.filter)(e,function(e){return this.isApplicable(e,a,this._researcher)}.bind(this)),this.setHasMarkers(!1),this.results=(0,d.map)(e,this.executeAssessment.bind(this,a,this._researcher)),this._lastPaper=a},c.prototype.setHasMarkers=function(a){this._hasMarkers=a},c.prototype.hasMarkers=function(){return this._hasMarkers},c.prototype.executeAssessment=function(a,e,t){var i;try{(i=t.getResult(a,e,this.i18n)).setIdentifier(t.identifier),i.hasMarks()&&(i.marks=t.getMarks(a,e),i.marks=(0,o.default)(i.marks)),i.hasMarks()&&this.hasMarker(t)&&(this.setHasMarkers(!0),i.setMarker(this.getMarker(t,a,e)))}catch(a){(0,s.showTrace)(a),(i=new r.default).setScore(-1),i.setText(this.i18n.sprintf(this.i18n.dgettext("js-text-analysis","An error occurred in the '%1$s' assessment"),t.identifier,a))}return i},c.prototype.getValidResults=function(){return(0,d.filter)(this.results,function(a){return this.isValidResult(a)}.bind(this))},c.prototype.isValidResult=function(a){return a.hasScore()&&a.hasText()},c.prototype.calculateOverallScore=function(){var a=this.getValidResults(),e=0;return(0,d.forEach)(a,function(a){e+=a.getScore()}),Math.round(e/(9*a.length)*100)||0},c.prototype.addAssessment=function(a,e){return e.hasOwnProperty("identifier")||(e.identifier=a),this._assessments.push(e),!0},c.prototype.removeAssessment=function(a){var e=(0,d.findIndex)(this._assessments,function(e){return e.hasOwnProperty("identifier")&&a===e.identifier});-1!==e&&this._assessments.splice(e,1)},c.prototype.getAssessment=function(a){return(0,d.find)(this._assessments,function(e){return e.hasOwnProperty("identifier")&&a===e.identifier})},c.prototype.getApplicableAssessments=function(){var a=this.getAvailableAssessments();return(0,d.filter)(a,function(a){return this.isApplicable(a,this.getPaper())}.bind(this))},e.default=c},function(a,e){var t=Array.isArray;a.exports=t},,,function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a){return(0,i.default)(a).length};var i=function(a){return a&&a.__esModule?a:{default:a}}(t(22))},function(a,e,t){var i=t(310),n="object"==typeof self&&self&&self.Object===Object&&self,o=i||n||Function("return this")();a.exports=o},,,,function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=t(795),o={auxiliaries:[],type:"",language:""},r=function(a,e,t){this.setParticiple(a),this.setSentencePart(e),this._determinesSentencePartIsPassive=!1,t=t||{},(0,i.defaults)(t,o),function(a){(0,i.forEach)(a,function(a,e){var t=(0,n.getType)(o[e]);if(!1===(0,n.isSameType)(a,t))throw Error("Attribute "+e+" has invalid type. Expected "+t+", got "+(0,n.getType)(a)+".")})}(t),this._attributes=t};r.prototype.setParticiple=function(a){if(""===a)throw Error("The participle should not be empty.");if(!(0,i.isString)(a))throw Error("The participle should be a string.");this._participle=a},r.prototype.getParticiple=function(){return this._participle},r.prototype.setSentencePart=function(a){if(""===a)throw Error("The sentence part should not be empty.");this._sentencePart=a},r.prototype.getSentencePart=function(){return this._sentencePart},r.prototype.getType=function(){return this._attributes.type},r.prototype.getAuxiliaries=function(){return this._attributes.auxiliaries},r.prototype.getLanguage=function(){return this._attributes.language},r.prototype.determinesSentencePartIsPassive=function(){return this._determinesSentencePartIsPassive},r.prototype.setSentencePartPassiveness=function(a){if(!(0,n.isSameType)(a,"boolean"))throw Error("Passiveness had invalid type. Expected boolean, got "+(0,n.getType)(a)+".");this._determinesSentencePartIsPassive=a},r.prototype.serialize=function(){return{_parseClass:"Participle",attributes:this._attributes,participle:this._participle,sentencePart:this._sentencePart,determinesSentencePartIsPassive:this._determinesSentencePartIsPassive}},r.parse=function(a){const e=new r(a.participle,a.sentencePart,a.attributes);return e.setSentencePartPassiveness(a.determinesSentencePartIsPassive),e},e.default=r},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=function(a,e,t){this._sentencePartText=a,this._auxiliaries=e,this._locale=t,this._isPassive=!1};i.prototype.getSentencePartText=function(){return this._sentencePartText},i.prototype.isPassive=function(){return this._isPassive},i.prototype.getAuxiliaries=function(){return this._auxiliaries},i.prototype.getLocale=function(){return this._locale},i.prototype.setPassive=function(a){this._isPassive=a},i.prototype.serialize=function(){return{_parseClass:"SentencePart",sentencePartText:this._sentencePartText,auxiliaries:this._auxiliaries,locale:this._locale,isPassive:this._isPassive}},i.parse=function(a){const e=new i(a.sentencePartText,a.auxiliaries,a.locale);return e.setPassive(a.isPassive),e},e.default=i},function(a,e,t){"use strict";e.a=function(){return!1}},,,,,,,,,,,function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a){return"<yoastmark class='yoast-text-mark'>"+a+"</yoastmark>"}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=s(t(16)),o=t(7),r=s(t(5));function s(a){return a&&a.__esModule?a:{default:a}}e.default=class extends n.default{constructor(a={}){super();const e={scores:{onlyFunctionWords:0},urlTitle:(0,o.createAnchorOpeningTag)("https://yoa.st/functionwordskeyphrase-1"),urlCallToAction:(0,o.createAnchorOpeningTag)("https://yoa.st/functionwordskeyphrase-2")};this.identifier="functionWordsInKeyphrase",this._config=(0,i.merge)(e,a)}getResult(a,e,t){this._functionWordsInKeyphrase=e.getResearch("functionWordsInKeyphrase"),this._keyword=(0,i.escape)(a.getKeyword());const n=new r.default;return this._functionWordsInKeyphrase&&(n.setScore(this._config.scores.onlyFunctionWords),n.setText(t.sprintf(t.dgettext("js-text-analysis",'%1$sFunction words in keyphrase%3$s: Your keyphrase "%4$s" contains function words only. %2$sLearn more about what makes a good keyphrase.%3$s'),this._config.urlTitle,this._config.urlCallToAction,"</a>",this._keyword))),n}isApplicable(a){return a.hasKeyword()}}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=s(t(16)),o=t(7),r=s(t(5));function s(a){return a&&a.__esModule?a:{default:a}}e.default=class extends n.default{constructor(a={}){super();const e={scores:{good:9,okay:6,bad:3},urlTitle:(0,o.createAnchorOpeningTag)("https://yoa.st/33e"),urlCallToAction:(0,o.createAnchorOpeningTag)("https://yoa.st/33f")};this.identifier="introductionKeyword",this._config=(0,i.merge)(e,a)}getResult(a,e,t){const i=new r.default;this._firstParagraphMatches=e.getResearch("firstParagraph");const n=this.calculateResult(t);return i.setScore(n.score),i.setText(n.resultText),i}isApplicable(a){return a.hasKeyword()&&a.hasText()}calculateResult(a){return this._firstParagraphMatches.foundInOneSentence?{score:this._config.scores.good,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sKeyphrase in introduction%2$s: Well done!"),this._config.urlTitle,"</a>")}:this._firstParagraphMatches.foundInParagraph?{score:this._config.scores.okay,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sKeyphrase in introduction%3$s:Your keyphrase or its synonyms appear in the first paragraph of the copy, but not within one sentence. %2$sFix that%3$s!"),this._config.urlTitle,this._config.urlCallToAction,"</a>")}:{score:this._config.scores.bad,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sKeyphrase in introduction%3$s: Your keyphrase or its synonyms do not appear in the first paragraph. %2$sMake sure the topic is clear immediately%3$s."),this._config.urlTitle,this._config.urlCallToAction,"</a>")}}}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=l(t(16)),o=l(t(261)),r=l(t(20)),s=t(7),d=l(t(5));function l(a){return a&&a.__esModule?a:{default:a}}e.default=class extends n.default{constructor(a={}){super();const e={parameters:{recommendedMinimum:1,recommendedMaximum:4,acceptableMaximum:8},parametersNoFunctionWordSupport:{recommendedMaximum:6,acceptableMaximum:9},scores:{veryBad:-999,bad:3,okay:6,good:9},urlTitle:(0,s.createAnchorOpeningTag)("https://yoa.st/33i"),urlCallToAction:(0,s.createAnchorOpeningTag)("https://yoa.st/33j"),isRelatedKeyphrase:!1};this.identifier="keyphraseLength",this._config=(0,i.merge)(e,a)}getResult(a,e,t){this._keyphraseLength=e.getResearch("keyphraseLength");const n=new d.default;this._boundaries=this._config.parameters,!1===(0,o.default)().includes((0,r.default)(a.getLocale()))&&(this._boundaries=(0,i.merge)({},this._config.parameters,this._config.parametersNoFunctionWordSupport));const s=this.calculateResult(t);return(0,i.isUndefined)(s)||(n.setScore(s.score),n.setText(s.resultText)),n}calculateResult(a){return this._keyphraseLength<this._boundaries.recommendedMinimum?this._config.isRelatedKeyphrase?{score:this._config.scores.veryBad,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sKeyphrase length%3$s: %2$sSet a keyphrase in order to calculate your SEO score%3$s."),this._config.urlTitle,this._config.urlCallToAction,"</a>")}:{score:this._config.scores.veryBad,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sKeyphrase length%3$s: No focus keyphrase was set for this page. %2$sSet a keyphrase in order to calculate your SEO score%3$s."),this._config.urlTitle,this._config.urlCallToAction,"</a>")}:(0,i.inRange)(this._keyphraseLength,this._boundaries.recommendedMinimum,this._boundaries.recommendedMaximum+1)?{score:this._config.scores.good,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sKeyphrase length%2$s: Good job!"),this._config.urlTitle,"</a>")}:(0,i.inRange)(this._keyphraseLength,this._boundaries.recommendedMaximum+1,this._boundaries.acceptableMaximum+1)?{score:this._config.scores.okay,resultText:a.sprintf(a.dgettext("js-text-analysis","%3$sKeyphrase length%5$s: The keyphrase is %1$d words long. That's more than the recommended maximum of %2$d words. %4$sMake it shorter%5$s!"),this._keyphraseLength,this._boundaries.recommendedMaximum,this._config.urlTitle,this._config.urlCallToAction,"</a>")}:{score:this._config.scores.bad,resultText:a.sprintf(a.dgettext("js-text-analysis","%3$sKeyphrase length%5$s: The keyphrase is %1$d words long. That's way more than the recommended maximum of %2$d words. %4$sMake it shorter%5$s!"),this._keyphraseLength,this._boundaries.recommendedMaximum,this._config.urlTitle,this._config.urlCallToAction,"</a>")}}}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=z(t(573)),o=z(t(16)),r=z(t(20)),s=z(t(275)),d=z(t(5)),l=t(43),c=t(7),u=z(t(274)),p=z(t(55));function z(a){return a&&a.__esModule?a:{default:a}}e.default=class extends o.default{constructor(a={}){super();const e={parameters:{noWordForms:{overMaximum:4,maximum:3,minimum:.5},multipleWordForms:{overMaximum:4,maximum:3.5,minimum:.5}},scores:{wayOverMaximum:-50,overMaximum:-10,correctDensity:9,underMinimum:4},urlTitle:(0,c.createAnchorOpeningTag)("https://yoa.st/33v"),urlCallToAction:(0,c.createAnchorOpeningTag)("https://yoa.st/33w")};this.identifier="keywordDensity",this._config=(0,i.merge)(e,a)}setBoundaries(a,e){this._hasMorphologicalForms?this._boundaries=this._config.parameters.multipleWordForms:this._boundaries=this._config.parameters.noWordForms,this._minRecommendedKeywordCount=(0,n.default)(a,e,this._boundaries.minimum,"min"),this._maxRecommendedKeywordCount=(0,n.default)(a,e,this._boundaries.maximum,"max")}getResult(a,e,t){this._hasMorphologicalForms=!1!==e.getData("morphology")&&(0,s.default)().includes((0,r.default)(a.getLocale())),this._keywordCount=e.getResearch("keywordCount");const i=this._keywordCount.length;this.setBoundaries(a.getText(),i);const n=new d.default;this._keywordDensity=e.getResearch("getKeywordDensity"),this._keywordDensity=this._keywordDensity*(0,u.default)(i);const o=this.calculateResult(t);return n.setScore(o.score),n.setText(o.resultText),n.setHasMarks(this._keywordCount.count>0),n}hasNoMatches(){return 0===this._keywordCount.count}hasTooFewMatches(){return(0,l.inRangeStartInclusive)(this._keywordDensity,0,this._boundaries.minimum)||1===this._keywordCount.count}hasGoodNumberOfMatches(){return(0,l.inRangeStartEndInclusive)(this._keywordDensity,this._boundaries.minimum,this._boundaries.maximum)||2===this._keywordCount.count&&this._minRecommendedKeywordCount<=2}hasTooManyMatches(){return(0,l.inRangeEndInclusive)(this._keywordDensity,this._boundaries.maximum,this._boundaries.overMaximum)}calculateResult(a){return this.hasNoMatches()?{score:this._config.scores.underMinimum,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sKeyphrase density%2$s: The focus keyphrase was found 0 times. That's less than the recommended minimum of %3$d times for a text of this length. %4$sFocus on your keyphrase%2$s!"),this._config.urlTitle,"</a>",this._minRecommendedKeywordCount,this._config.urlCallToAction)}:this.hasTooFewMatches()?{score:this._config.scores.underMinimum,resultText:a.sprintf(a.dngettext("js-text-analysis","%1$sKeyphrase density%2$s: The focus keyphrase was found %5$d time. That's less than the recommended minimum of %3$d times for a text of this length. %4$sFocus on your keyphrase%2$s!","%1$sKeyphrase density%2$s: The focus keyphrase was found %5$d times. That's less than the recommended minimum of %3$d times for a text of this length. %4$sFocus on your keyphrase%2$s!",this._keywordCount.count),this._config.urlTitle,"</a>",this._minRecommendedKeywordCount,this._config.urlCallToAction,this._keywordCount.count)}:this.hasGoodNumberOfMatches()?{score:this._config.scores.correctDensity,resultText:a.sprintf(a.dngettext("js-text-analysis","%1$sKeyphrase density%2$s: The focus keyphrase was found %3$d time. This is great!","%1$sKeyphrase density%2$s: The focus keyphrase was found %3$d times. This is great!",this._keywordCount.count),this._config.urlTitle,"</a>",this._keywordCount.count)}:this.hasTooManyMatches()?{score:this._config.scores.overMaximum,resultText:a.sprintf(a.dngettext("js-text-analysis","%1$sKeyphrase density%2$s: The focus keyphrase was found %5$d time. That's more than the recommended maximum of %3$d times for a text of this length. %4$sDon't overoptimize%2$s!","%1$sKeyphrase density%2$s: The focus keyphrase was found %5$d times. That's more than the recommended maximum of %3$d times for a text of this length. %4$sDon't overoptimize%2$s!",this._keywordCount.count),this._config.urlTitle,"</a>",this._maxRecommendedKeywordCount,this._config.urlCallToAction,this._keywordCount.count)}:{score:this._config.scores.wayOverMaximum,resultText:a.sprintf(a.dngettext("js-text-analysis","%1$sKeyphrase density%2$s: The focus keyphrase was found %5$d time. That's way more than the recommended maximum of %3$d times for a text of this length. %4$sDon't overoptimize%2$s!","%1$sKeyphrase density%2$s: The focus keyphrase was found %5$d times. That's way more than the recommended maximum of %3$d times for a text of this length. %4$sDon't overoptimize%2$s!",this._keywordCount.count),this._config.urlTitle,"</a>",this._maxRecommendedKeywordCount,this._config.urlCallToAction,this._keywordCount.count)}}getMarks(){return this._keywordCount.markings}isApplicable(a){return a.hasText()&&a.hasKeyword()&&(0,p.default)(a.getText())>=100}}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=s(t(16)),o=t(7),r=s(t(5));function s(a){return a&&a.__esModule?a:{default:a}}e.default=class extends n.default{constructor(a={}){super();const e={parameters:{recommendedMinimum:1},scores:{good:9,ok:6,bad:3},urlTitle:(0,o.createAnchorOpeningTag)("https://yoa.st/33k"),urlCallToAction:(0,o.createAnchorOpeningTag)("https://yoa.st/33l")};this.identifier="metaDescriptionKeyword",this._config=(0,i.merge)(e,a)}getResult(a,e,t){this._keyphraseCounts=e.getResearch("metaDescriptionKeyword");const i=new r.default,n=this.calculateResult(t);return i.setScore(n.score),i.setText(n.resultText),i}calculateResult(a){return 1===this._keyphraseCounts||2===this._keyphraseCounts?{score:this._config.scores.good,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sKeyphrase in meta description%2$s: Keyphrase or synonym appear in the meta description. Well done!"),this._config.urlTitle,"</a>")}:this._keyphraseCounts>=3?{score:this._config.scores.bad,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sKeyphrase in meta description%2$s: The meta description contains the keyphrase %3$s times, which is over the advised maximum of 2 times. %4$sLimit that%5$s!"),this._config.urlTitle,"</a>",this._keyphraseCounts,this._config.urlCallToAction,"</a>")}:{score:this._config.scores.bad,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sKeyphrase in meta description%2$s: The meta description has been specified, but it does not contain the keyphrase. %3$sFix that%4$s!"),this._config.urlTitle,"</a>",this._config.urlCallToAction,"</a>")}}isApplicable(a){return a.hasKeyword()&&a.hasDescription()}}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a,e=!1,t="",s=!1){const d="("+(a=(0,i.map)(a,function(a){return s&&(a=(0,o.default)(a)),a=(0,r.default)(a),e?a:(0,n.default)(a,!0,t)})).join(")|(")+")";return new RegExp(d,"ig")};var i=t(1),n=s(t(105)),o=s(t(136)),r=s(t(301));function s(a){return a&&a.__esModule?a:{default:a}}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.findTopicFormsInString=e.findWordFormsInString=void 0;var i=function(a){return a&&a.__esModule?a:{default:a}}(t(90)),n=t(1);const o=function(a,e,t){const o=a.length,r=Array(o);for(let n=0;n<o;n++){const o=(0,i.default)(e,a[n],t).count>0;r[n]=o?1:0}const s=(0,n.sum)(r),d={countWordMatches:s,percentWordMatches:0};return o>0&&(d.percentWordMatches=Math.round(s/o*100)),d};e.findWordFormsInString=o,e.findTopicFormsInString=function(a,e,t,i){let r=o(a.keyphraseForms,e,i);if(r.keyphraseOrSynonym="keyphrase",100===r.percentWordMatches||!1===t||(0,n.isEmpty)(a.synonymsForms))return r;const s=[];for(let t=0;t<a.synonymsForms.length;t++){const n=a.synonymsForms[t];s[t]=o(n,e,i)}const d=s.map(a=>a.percentWordMatches),l=d.indexOf(Math.max(...d));return r.percentWordMatches>=s[l].percentWordMatches?r:((r=s[l]).keyphraseOrSynonym="synonym",r)}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a,e,t){const o=(0,n.default)(a),p=[];return(0,i.forEach)(o,function(i){let n="";if(0!==g(i,t).length&&(n="regular"),0!==m(i,t).length&&(n="irregular"),""!==n)switch(t){case"fr":p.push(new s.default(i,a,{auxiliaries:e,type:n,language:t}));break;case"es":p.push(new d.default(i,a,{auxiliaries:e,type:n,language:t}));break;case"it":p.push(new l.default(i,a,{auxiliaries:e,type:n,language:t}));break;case"nl":p.push(new c.default(i,a,{auxiliaries:e,type:n,language:t}));break;case"pl":p.push(new u.default(i,a,{auxiliaries:e,type:n,language:t}));break;case"en":default:p.push(new r.default(i,a,{auxiliaries:e,type:n,language:t}))}}),p};var i=t(1),n=p(t(22)),o=p(t(787)),r=p(t(794)),s=p(t(797)),d=p(t(799)),l=p(t(800)),c=p(t(801)),u=p(t(802));function p(a){return a&&a.__esModule?a:{default:a}}const z=(0,o.default)(),g=z.regularParticiples,m=z.irregularParticiples},,,,,function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a,e){var t=(0,n.default)(a);return(0,i.indexOf)(e,t)>-1};var i=t(1),n=function(a){return a&&a.__esModule?a:{default:a}}(t(20))},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a){return Math.round(a)===a?Math.round(a):Math.round(10*a)/10}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){return{en:m,de:g,nl:w,fr:b,es:y,it:f,pt:h,ru:v,pl:k,sv:j}};var i=z(t(569)),n=z(t(192)),o=z(t(265)),r=z(t(193)),s=z(t(194)),d=z(t(195)),l=z(t(570)),c=z(t(571)),u=z(t(196)),p=z(t(572));function z(a){return a&&a.__esModule?a:{default:a}}const g=(0,i.default)(),m=(0,n.default)(),w=(0,o.default)(),y=(0,r.default)(),f=(0,s.default)(),b=(0,d.default)(),h=(0,l.default)(),v=(0,c.default)(),k=(0,u.default)(),j=(0,p.default)()},function(a,e){a.exports={Text:"text",Directive:"directive",Comment:"comment",Script:"script",Style:"style",Tag:"tag",CDATA:"cdata",Doctype:"doctype",isTag:function(a){return"tag"===a.type||"script"===a.type||"style"===a.type}}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a,e,t="en_EN"){let d=0,l=[];return e=e.map(r.normalize),(0,s.uniq)(e).forEach(function(e){const i=(0,o.default)(a,e,t);d+=i.count,l=l.concat(i.matches)}),null===l&&(l=[]),l=l.map(function(a){return(0,i.default)((0,n.default)(a))}),{count:d,matches:l}};var i=d(t(25)),n=d(t(188)),o=d(t(306)),r=t(50),s=t(1);function d(a){return a&&a.__esModule?a:{default:a}}},function(a,e,t){var i=t(139),n=t(636),o=t(637),r="[object Null]",s="[object Undefined]",d=i?i.toStringTag:void 0;a.exports=function(a){return null==a?void 0===a?s:r:d&&d in Object(a)?n(a):o(a)}},function(a,e){a.exports=function(a){return null!=a&&"object"==typeof a}},function(a,e,t){var i=t(660),n=t(663);a.exports=function(a,e){var t=n(a,e);return i(t)?t:void 0}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){(0,i.isEmpty)(this.getParticiple())?this.setSentencePartPassiveness(!1):this.setSentencePartPassiveness(this.isPassive())};var i=t(1)},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a,e,t){const n=(0,c.default)(a).map(a=>a.toLowerCase()),o=n.indexOf(e.toLowerCase());if(o<1)return!1;const r=n[o-1],s=(0,i.get)(p,t,[]);return(0,i.includes)(s,r)};var i=t(1),n=u(t(265)),o=u(t(192)),r=u(t(195)),s=u(t(194)),d=u(t(196)),l=u(t(193)),c=u(t(22));function u(a){return a&&a.__esModule?a:{default:a}}const p={nl:(0,n.default)().cannotDirectlyPrecedePassiveParticiple,en:(0,o.default)().cannotDirectlyPrecedePassiveParticiple,fr:(0,r.default)().cannotDirectlyPrecedePassiveParticiple,it:(0,s.default)().cannotDirectlyPrecedePassiveParticiple,pl:(0,d.default)().cannotDirectlyPrecedePassiveParticiple,es:(0,l.default)().cannotDirectlyPrecedePassiveParticiple}},,,,function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.checkIfWordEndingIsOnExceptionList=function(a,e){for(let t=0;t<e.length;t++)if(a.endsWith(e[t]))return!0;return!1},e.checkIfWordIsOnVerbExceptionList=function(a,e,t){const n=(0,i.flattenSortLength)(t).find(e=>a.startsWith(e));let o="";"string"==typeof n&&(o=a.slice(n.length)).length>2&&(a=o);return e.includes(a)},e.checkExceptionListWithTwoStems=function(a,e){for(const t of a){const a=t.find(a=>e.endsWith(a));if(a){const i=e.slice(0,e.length-a.length);return i+t[0]}}};var i=t(127)},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=s(t(16)),o=t(7),r=s(t(5));function s(a){return a&&a.__esModule?a:{default:a}}e.default=class extends n.default{constructor(a={}){super();const e={parameters:{recommendedMaximum:0},scores:{bad:2},urlTitle:(0,o.createAnchorOpeningTag)("https://yoa.st/34l"),urlCallToAction:(0,o.createAnchorOpeningTag)("https://yoa.st/34m")};this.identifier="textCompetingLinks",this._config=(0,i.merge)(e,a)}getResult(a,e,t){const n=new r.default;this.linkCount=e.getResearch("getLinkStatistics");const o=this.calculateResult(t);return(0,i.isUndefined)(o)?n:(n.setScore(o.score),n.setText(o.resultText),n.setHasMarks(!1),n)}isApplicable(a){return a.hasText()&&a.hasKeyword()}calculateResult(a){if(this.linkCount.keyword.totalKeyword>this._config.parameters.recommendedMaximum)return{score:this._config.scores.bad,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sLink keyphrase%3$s: You're linking to another page with the words you want this page to rank for. %2$sDon't do that%3$s!"),this._config.urlTitle,this._config.urlCallToAction,"</a>")}}}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=d(t(16)),o=t(43),r=t(7),s=d(t(5));function d(a){return a&&a.__esModule?a:{default:a}}e.default=class extends n.default{constructor(a={}){super();const e={parameters:{lowerBoundary:.3,upperBoundary:.75},scores:{noImages:3,withAltGoodNumberOfKeywordMatches:9,withAltTooFewKeywordMatches:6,withAltTooManyKeywordMatches:6,withAltNonKeyword:6,withAlt:6,noAlt:6},urlTitle:(0,r.createAnchorOpeningTag)("https://yoa.st/33c"),urlCallToAction:(0,r.createAnchorOpeningTag)("https://yoa.st/33d")};this.identifier="textImages",this._config=(0,i.merge)(e,a)}getResult(a,e,t){this.imageCount=e.getResearch("imageCount"),this.altProperties=e.getResearch("altTagCount"),this._minNumberOfKeywordMatches=Math.ceil(this.imageCount*this._config.parameters.lowerBoundary),this._maxNumberOfKeywordMatches=Math.floor(this.imageCount*this._config.parameters.upperBoundary);const i=this.calculateResult(t),n=new s.default;return n.setScore(i.score),n.setText(i.resultText),n}isApplicable(a){return a.hasText()}hasTooFewMatches(){return this.imageCount>4&&this.altProperties.withAltKeyword>0&&this.altProperties.withAltKeyword<this._minNumberOfKeywordMatches}hasGoodNumberOfMatches(){return this.imageCount<5&&this.altProperties.withAltKeyword>0||5===this.imageCount&&(0,o.inRangeStartEndInclusive)(this.altProperties.withAltKeyword,2,4)||this.imageCount>4&&(0,o.inRangeStartEndInclusive)(this.altProperties.withAltKeyword,this._minNumberOfKeywordMatches,this._maxNumberOfKeywordMatches)}hasTooManyMatches(){return this.imageCount>4&&this.altProperties.withAltKeyword>this._maxNumberOfKeywordMatches}calculateResult(a){return 0===this.imageCount?{score:this._config.scores.noImages,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sImage alt attributes%3$s: No images appear on this page. %2$sAdd some%3$s!"),this._config.urlTitle,this._config.urlCallToAction,"</a>")}:this.altProperties.withAlt>0?{score:this._config.scores.withAlt,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sImage alt attributes%3$s: Images on this page have alt attributes, but you have not set your keyphrase. %2$sFix that%3$s!"),this._config.urlTitle,this._config.urlCallToAction,"</a>")}:this.altProperties.withAltNonKeyword>0&&0===this.altProperties.withAltKeyword?{score:this._config.scores.withAltNonKeyword,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sImage alt attributes%3$s: Images on this page do not have alt attributes that reflect the topic of your text. %2$sAdd your keyphrase or synonyms to the alt tags of relevant images%3$s!"),this._config.urlTitle,this._config.urlCallToAction,"</a>")}:this.hasTooFewMatches()?{score:this._config.scores.withAltTooFewKeywordMatches,resultText:a.sprintf(a.dngettext("js-text-analysis","%3$sImage alt attributes%5$s: Out of %2$d images on this page, only %1$d has an alt attribute that reflects the topic of your text. %4$sAdd your keyphrase or synonyms to the alt tags of more relevant images%5$s!","%3$sImage alt attributes%5$s: Out of %2$d images on this page, only %1$d have alt attributes that reflect the topic of your text. %4$sAdd your keyphrase or synonyms to the alt tags of more relevant images%5$s!",this.altProperties.withAltKeyword),this.altProperties.withAltKeyword,this.imageCount,this._config.urlTitle,this._config.urlCallToAction,"</a>")}:this.hasGoodNumberOfMatches()?{score:this._config.scores.withAltGoodNumberOfKeywordMatches,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sImage alt attributes%2$s: Good job!"),this._config.urlTitle,"</a>")}:this.hasTooManyMatches()?{score:this._config.scores.withAltTooManyKeywordMatches,resultText:a.sprintf(a.dgettext("js-text-analysis","%3$sImage alt attributes%5$s: Out of %2$d images on this page, %1$d have alt attributes with words from your keyphrase or synonyms. That's a bit much. %4$sOnly include the keyphrase or its synonyms when it really fits the image%5$s."),this.altProperties.withAltKeyword,this.imageCount,this._config.urlTitle,this._config.urlCallToAction,"</a>")}:{score:this._config.scores.noAlt,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sImage alt attributes%3$s: Images on this page do not have alt attributes that reflect the topic of your text. %2$sAdd your keyphrase or synonyms to the alt tags of relevant images%3$s!"),this._config.urlTitle,this._config.urlCallToAction,"</a>")}}}},function(a,e){"function"==typeof Object.create?a.exports=function(a,e){a.super_=e,a.prototype=Object.create(e.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}})}:a.exports=function(a,e){a.super_=e;var t=function(){};t.prototype=e.prototype,a.prototype=new t,a.prototype.constructor=a}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a){return(0,i.default)(a,"<img(?:[^>]+)?>")};var i=function(a){return a&&a.__esModule?a:{default:a}}(t(202))},function(a,e,t){var i=t(292),n=t(296);function o(e,t){return delete a.exports[e],a.exports[e]=t,t}a.exports={Parser:i,Tokenizer:t(293),ElementType:t(89),DomHandler:n,get FeedHandler(){return o("FeedHandler",t(599))},get Stream(){return o("Stream",t(610))},get WritableStream(){return o("WritableStream",t(299))},get ProxyHandler(){return o("ProxyHandler",t(617))},get DomUtils(){return o("DomUtils",t(298))},get CollectingHandler(){return o("CollectingHandler",t(618))},DefaultHandler:n,get RssHandler(){return o("RssHandler",this.FeedHandler)},parseDOM:function(a,e){var t=new n(e);return new i(t,e).end(a),t.dom},parseFeed:function(e,t){var n=new a.exports.FeedHandler(t);return new i(n,t).end(e),n.dom},createDomStream:function(a,e,t){var o=new n(a,e,t);return new i(o,e)},EVENTS:{attribute:2,cdatastart:0,cdataend:0,text:1,processinginstruction:2,comment:1,commentend:0,closetag:1,opentag:2,opentagname:1,error:1,end:0}}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a,e=!1,t=""){var i;return"(^|"+(i='[ \\u00a0 \\n\\r\\t.,()”“〝〞〟‟„"+\\-;!¡?¿:/»«‹›'+t+"<>")+"'‘’‛`])"+a+(e?"($|((?="+i+"]))|((['‘’‛`])("+i+"])))":"($|("+i+"])|((['‘’‛`])("+i+"])))")}},function(a,e,t){"use strict";t.r(e);var i=t(9),n=1/0;e.default=function(a){return null!=a&&a.length?Object(i.a)(a,n):[]}},,,,,,,,,,,,,,,,function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.getBlocks=e.isInlineElement=e.isBlockElement=e.inlineElements=e.blockElements=void 0;var i=function(a){return a&&a.__esModule?a:{default:a}}(t(257)),n=t(1);var o,r=["address","article","aside","blockquote","canvas","dd","div","dl","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","hr","li","main","nav","noscript","ol","output","p","pre","section","table","tfoot","ul","video"],s=["b","big","i","small","tt","abbr","acronym","cite","code","dfn","em","kbd","strong","samp","time","var","a","bdo","br","img","map","object","q","script","span","sub","sup","button","input","label","select","textarea"],d=new RegExp("^("+r.join("|")+")$","i"),l=new RegExp("^("+s.join("|")+")$","i"),c=new RegExp("^<("+r.join("|")+")[^>]*?>$","i"),u=new RegExp("^</("+r.join("|")+")[^>]*?>$","i"),p=new RegExp("^<("+s.join("|")+")[^>]*>$","i"),z=new RegExp("^</("+s.join("|")+")[^>]*>$","i"),g=/^<([^>\s/]+)[^>]*>$/,m=/^<\/([^>\s]+)[^>]*>$/,w=/^[^<]+$/,y=/^<[^><]*$/,f=/<!--(.|[\r\n])*?-->/g,b=[];function h(a){return d.test(a)}function v(a){return l.test(a)}const k=(0,n.memoize)(function(a){var e=[],t=0,r="",s="",d="";return a=a.replace(f,""),b=[],(o=(0,i.default)(function(a){b.push(a)})).addRule(w,"content"),o.addRule(y,"greater-than-sign-content"),o.addRule(c,"block-start"),o.addRule(u,"block-end"),o.addRule(p,"inline-start"),o.addRule(z,"inline-end"),o.addRule(g,"other-element-start"),o.addRule(m,"other-element-end"),o.onText(a),o.end(),(0,n.forEach)(b,function(a,i){var n=b[i+1];switch(a.type){case"content":case"greater-than-sign-content":case"inline-start":case"inline-end":case"other-tag":case"other-element-start":case"other-element-end":case"greater than sign":n&&(0!==t||"block-start"!==n.type&&"block-end"!==n.type)?s+=a.src:(s+=a.src,e.push(s),r="",s="",d="");break;case"block-start":0!==t&&(""!==s.trim()&&e.push(s),s="",d=""),t++,r=a.src;break;case"block-end":t--,d=a.src,""!==r&&""!==d?e.push(r+s+d):""!==s.trim()&&e.push(s),r="",s="",d=""}t<0&&(t=0)}),e});e.blockElements=r,e.inlineElements=s,e.isBlockElement=h,e.isInlineElement=v,e.getBlocks=k,e.default={blockElements:r,inlineElements:s,isBlockElement:h,isInlineElement:v,getBlocks:k}},function(a,e,t){"use strict";function i(a){const e=[],t=/<h([1-6])(?:[^>]+)?>(.*?)<\/h\1>/gi;let i;for(;null!==(i=t.exec(a));)e.push(i);return e}function n(a){const e=[],t=/<h([2-3])(?:[^>]+)?>(.*?)<\/h\1>/gi;let i;for(;null!==(i=t.exec(a));)e.push(i);return e}function o(a){return i(a).map(a=>a[0])}function r(a){return n(a).map(a=>a[0])}function s(a){return a.replace(/<h([2-3])(?:[^>]+)?>(.*?)<\/h\1>/gi,"")}Object.defineProperty(e,"__esModule",{value:!0}),e.getSubheadings=i,e.getSubheadingsTopLevel=n,e.getSubheadingContents=o,e.getSubheadingContentsTopLevel=r,e.removeSubheadingsTopLevel=s,e.default={getSubheadings:i,getSubheadingsTopLevel:n,getSubheadingContents:o,getSubheadingContentsTopLevel:r,removeSubheadingsTopLevel:s}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){return{participleLike:i,otherAuxiliaries:n.concat(o),filteredAuxiliaries:i.concat(n),infinitiveAuxiliaries:o,allAuxiliaries:i.concat(n,o)}};var i=["bekommst","bekommt","bekamst","bekommest","bekommet","bekämest","bekämst","bekämet","bekämt","gekriegt","gehörst","gehört","gehörtest","gehörtet","gehörest","gehöret","erhältst","erhält","erhaltet","erhielt","erhieltest","erhieltst","erhieltet","erhaltest"],n=["werde","wirst","wird","werden","werdet","wurde","ward","wurdest","wardst","wurden","wurdet","worden","werdest","würde","würdest","würden","würdet","bekomme","bekommen","bekam","bekamen","bekäme","bekämen","kriege","kriegst","kriegt","kriegen","kriegte","kriegtest","kriegten","kriegtet","kriegest","krieget","gehöre","gehören","gehörte","gehörten","erhalte","erhalten","erhielten","erhielte"],o=["werden","bekommen","kriegen","gehören","erhalten"]},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.buildOneFormFromRegex=function(a,e){for(let t=0;t<e.length;t++)if(!0===e[t].reg.test(a))return a.replace(e[t].reg,e[t].repl)}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a){return a.map(function(a){return 2===a.length?{reg:new RegExp(a[0],"i"),repl:a[1]}:3===a.length?{reg:new RegExp(a[0],"i"),repl1:a[1],repl2:a[2]}:void 0})}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.flattenSortLength=function(a){return(0,i.flatten)(Object.values(a)).sort((a,e)=>e.length-a.length||a.localeCompare(e))};var i=t(1)},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=d(t(16)),o=d(t(198)),r=t(7),s=d(t(5));function d(a){return a&&a.__esModule?a:{default:a}}const l=o.default.maxMeta;e.default=class extends n.default{constructor(a={}){super();const e={recommendedMaximumLength:120,maximumLength:l,scores:{noMetaDescription:1,tooLong:6,tooShort:6,correctLength:9},urlTitle:(0,r.createAnchorOpeningTag)("https://yoa.st/34d"),urlCallToAction:(0,r.createAnchorOpeningTag)("https://yoa.st/34e")};this.identifier="metaDescriptionLength",this._config=(0,i.merge)(e,a)}getMaximumLength(){return this._config.maximumLength}getResult(a,e,t){const i=e.getResearch("metaDescriptionLength"),n=new s.default;return n.setScore(this.calculateScore(i)),n.setText(this.translateScore(i,t)),n.max=this._config.maximumLength,n.actual=i,n}calculateScore(a){return 0===a?this._config.scores.noMetaDescription:a<=this._config.recommendedMaximumLength?this._config.scores.tooShort:a>this._config.maximumLength?this._config.scores.tooLong:a>=this._config.recommendedMaximumLength&&a<=this._config.maximumLength?this._config.scores.correctLength:0}translateScore(a,e){return 0===a?e.sprintf(e.dgettext("js-text-analysis","%1$sMeta description length%3$s: No meta description has been specified. Search engines will display copy from the page instead. %2$sMake sure to write one%3$s!"),this._config.urlTitle,this._config.urlCallToAction,"</a>"):a<=this._config.recommendedMaximumLength?e.sprintf(e.dgettext("js-text-analysis","%1$sMeta description length%3$s: The meta description is too short (under %4$d characters). Up to %5$d characters are available. %2$sUse the space%3$s!"),this._config.urlTitle,this._config.urlCallToAction,"</a>",this._config.recommendedMaximumLength,this._config.maximumLength):a>this._config.maximumLength?e.sprintf(e.dgettext("js-text-analysis","%1$sMeta description length%3$s: The meta description is over %4$d characters. To ensure the entire description will be visible, %2$syou should reduce the length%3$s!"),this._config.urlTitle,this._config.urlCallToAction,"</a>",this._config.maximumLength):a>=this._config.recommendedMaximumLength&&a<=this._config.maximumLength?e.sprintf(e.dgettext("js-text-analysis","%1$sMeta description length%2$s: Well done!"),this._config.urlTitle,"</a>"):void 0}}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=d(t(16)),o=t(43),r=t(7),s=d(t(5));function d(a){return a&&a.__esModule?a:{default:a}}const l=600;e.default=class extends n.default{constructor(a={}){super();const e={minLength:400,maxLength:l,scores:{noTitle:1,widthTooShort:6,widthTooLong:3,widthCorrect:9},urlTitle:(0,r.createAnchorOpeningTag)("https://yoa.st/34h"),urlCallToAction:(0,r.createAnchorOpeningTag)("https://yoa.st/34i")};this.identifier="titleWidth",this._config=(0,i.merge)(e,a)}getMaximumLength(){return l}getResult(a,e,t){const i=e.getResearch("pageTitleWidth"),n=new s.default;return n.setScore(this.calculateScore(i)),n.setText(this.translateScore(i,t)),n.max=this._config.maxLength,n.actual=i,n}calculateScore(a){return(0,o.inRangeEndInclusive)(a,1,400)?this._config.scores.widthTooShort:(0,o.inRangeEndInclusive)(a,this._config.minLength,this._config.maxLength)?this._config.scores.widthCorrect:a>this._config.maxLength?this._config.scores.widthTooLong:this._config.scores.noTitle}translateScore(a,e){return(0,o.inRangeEndInclusive)(a,1,400)?e.sprintf(e.dgettext("js-text-analysis","%1$sSEO title width%3$s: The SEO title is too short. %2$sUse the space to add keyphrase variations or create compelling call-to-action copy%3$s."),this._config.urlTitle,this._config.urlCallToAction,"</a>"):(0,o.inRangeEndInclusive)(a,this._config.minLength,this._config.maxLength)?e.sprintf(e.dgettext("js-text-analysis","%1$sSEO title width%2$s: Good job!"),this._config.urlTitle,"</a>"):a>this._config.maxLength?e.sprintf(e.dgettext("js-text-analysis","%1$sSEO title width%3$s: The SEO title is wider than the viewable limit. %2$sTry to make it shorter%3$s."),this._config.urlTitle,this._config.urlCallToAction,"</a>"):e.sprintf(e.dgettext("js-text-analysis","%1$sSEO title width%3$s: %2$sPlease create an SEO title%3$s."),this._config.urlTitle,this._config.urlCallToAction,"</a>")}}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=l(t(16)),o=t(7),r=l(t(73)),s=l(t(5)),d=l(t(42));function l(a){return a&&a.__esModule?a:{default:a}}e.default=class extends n.default{constructor(a={}){super();const e={scores:{textContainsSuperfluousH1:1},urlTitle:(0,o.createAnchorOpeningTag)("https://yoa.st/3a6"),urlCallToAction:(0,o.createAnchorOpeningTag)("https://yoa.st/3a7")};this.identifier="singleH1",this._config=(0,i.merge)(e,a)}getResult(a,e,t){this._h1s=e.getResearch("h1s");const n=new s.default,o=this.calculateResult(t);return(0,i.isUndefined)(o)||(n.setScore(o.score),n.setText(o.resultText),n.setHasMarks(!0)),n}firstH1AtBeginning(){return 0===this._h1s[0].position}calculateResult(a){if(0!==this._h1s.length&&(1!==this._h1s.length||!this.firstH1AtBeginning()))return{score:this._config.scores.textContainsSuperfluousH1,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sSingle title%3$s: H1s should only be used as your main title. Find all H1s in your text that aren't your main title and %2$schange them to a lower heading level%3$s!"),this._config.urlTitle,this._config.urlCallToAction,"</a>")}}getMarks(){const a=this._h1s;return this.firstH1AtBeginning()&&a.shift(),(0,i.map)(a,function(a){return new d.default({original:"<h1>"+a.content+"</h1>",marked:"<h1>"+(0,r.default)(a.content)+"</h1>"})})}isApplicable(a){return a.hasText()}}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=s(t(16)),o=t(7),r=s(t(5));function s(a){return a&&a.__esModule?a:{default:a}}e.default=class extends n.default{constructor(a={}){super();const e={recommendedMinimum:300,slightlyBelowMinimum:250,belowMinimum:200,veryFarBelowMinimum:100,scores:{recommendedMinimum:9,slightlyBelowMinimum:6,belowMinimum:3,farBelowMinimum:-10,veryFarBelowMinimum:-20},urlTitle:(0,o.createAnchorOpeningTag)("https://yoa.st/34n"),urlCallToAction:(0,o.createAnchorOpeningTag)("https://yoa.st/34o"),cornerstoneContent:!1};this.identifier="textLength",this._config=(0,i.merge)(e,a)}getResult(a,e,t){const i=e.getResearch("wordCountInText"),n=new r.default,o=this.calculateResult(i,t);return n.setScore(o.score),n.setText(o.resultText),n}calculateResult(a,e){if(a>=this._config.recommendedMinimum)return{score:this._config.scores.recommendedMinimum,resultText:e.sprintf(e.dngettext("js-text-analysis","%2$sText length%3$s: The text contains %1$d word. Good job!","%2$sText length%3$s: The text contains %1$d words. Good job!",a),a,this._config.urlTitle,"</a>")};if((0,i.inRange)(a,0,this._config.belowMinimum)){let t=this._config.scores.farBelowMinimum;return(0,i.inRange)(a,0,this._config.veryFarBelowMinimum)&&(t=this._config.scores.veryFarBelowMinimum),{score:t,resultText:e.sprintf(e.dngettext("js-text-analysis","%2$sText length%4$s: The text contains %1$d word.","%2$sText length%4$s: The text contains %1$d words.",a)+" "+e.dngettext("js-text-analysis","This is far below the recommended minimum of %5$d word. %3$sAdd more content%4$s.","This is far below the recommended minimum of %5$d words. %3$sAdd more content%4$s.",this._config.recommendedMinimum),a,this._config.urlTitle,this._config.urlCallToAction,"</a>",this._config.recommendedMinimum)}}return(0,i.inRange)(a,this._config.slightlyBelowMinimum,this._config.recommendedMinimum)?!1===this._config.cornerstoneContent?{score:this._config.scores.slightlyBelowMinimum,resultText:e.sprintf(e.dngettext("js-text-analysis","%2$sText length%4$s: The text contains %1$d word.","%2$sText length%4$s: The text contains %1$d words.",a)+" "+e.dngettext("js-text-analysis","This is slightly below the recommended minimum of %5$d word. %3$sAdd a bit more copy%4$s.","This is slightly below the recommended minimum of %5$d words. %3$sAdd a bit more copy%4$s.",this._config.recommendedMinimum),a,this._config.urlTitle,this._config.urlCallToAction,"</a>",this._config.recommendedMinimum)}:{score:this._config.scores.slightlyBelowMinimum,resultText:e.sprintf(e.dngettext("js-text-analysis","%2$sText length%4$s: The text contains %1$d word.","%2$sText length%4$s: The text contains %1$d words.",a)+" "+e.dngettext("js-text-analysis","This is below the recommended minimum of %5$d word. %3$sAdd more content%4$s.","This is below the recommended minimum of %5$d words. %3$sAdd more content%4$s.",this._config.recommendedMinimum),a,this._config.urlTitle,this._config.urlCallToAction,"</a>",this._config.recommendedMinimum)}:{score:this._config.scores.belowMinimum,resultText:e.sprintf(e.dngettext("js-text-analysis","%2$sText length%4$s: The text contains %1$d word.","%2$sText length%4$s: The text contains %1$d words.",a)+" "+e.dngettext("js-text-analysis","This is below the recommended minimum of %5$d word. %3$sAdd more content%4$s.","This is below the recommended minimum of %5$d words. %3$sAdd more content%4$s.",this._config.recommendedMinimum),a,this._config.urlTitle,this._config.urlCallToAction,"</a>",this._config.recommendedMinimum)}}}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=s(t(16)),o=t(7),r=s(t(5));function s(a){return a&&a.__esModule?a:{default:a}}e.default=class extends n.default{constructor(a={}){super();const e={parameters:{recommendedPosition:0},scores:{good:9,okay:6,bad:2},urlTitle:(0,o.createAnchorOpeningTag)("https://yoa.st/33g"),urlCallToAction:(0,o.createAnchorOpeningTag)("https://yoa.st/33h")};this.identifier="titleKeyword",this._config=(0,i.merge)(e,a)}getResult(a,e,t){this._keywordMatches=e.getResearch("findKeywordInPageTitle"),this._keyword=(0,i.escape)(a.getKeyword());const n=new r.default,o=this.calculateResult(t,this._keyword);return n.setScore(o.score),n.setText(o.resultText),n}isApplicable(a){return a.hasKeyword()&&a.hasTitle()}calculateResult(a,e){const t=this._keywordMatches.exactMatchFound,i=this._keywordMatches.position,n=this._keywordMatches.allWordsFound,o=this._keywordMatches.exactMatchKeyphrase;return!0===t?0===i?{score:this._config.scores.good,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sKeyphrase in title%2$s: The exact match of the keyphrase appears at the beginning of the SEO title. Good job!"),this._config.urlTitle,"</a>")}:{score:this._config.scores.okay,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sKeyphrase in title%3$s: The exact match of the keyphrase appears in the SEO title, but not at the beginning. %2$sTry to move it to the beginning%3$s."),this._config.urlTitle,this._config.urlCallToAction,"</a>")}:n?{score:this._config.scores.okay,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sKeyphrase in title%3$s: Does not contain the exact match. %2$sTry to write the exact match of your keyphrase in the SEO title%3$s."),this._config.urlTitle,this._config.urlCallToAction,"</a>")}:o?{score:this._config.scores.bad,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sKeyphrase in title%3$s: Does not contain the exact match. %2$sTry to write the exact match of your keyphrase in the SEO title%3$s."),this._config.urlTitle,this._config.urlCallToAction,"</a>",e)}:{score:this._config.scores.bad,resultText:a.sprintf(a.dgettext("js-text-analysis",'%1$sKeyphrase in title%3$s: Not all the words from your keyphrase "%4$s" appear in the SEO title. %2$sTry to use the exact match of your keyphrase in the SEO title%3$s.'),this._config.urlTitle,this._config.urlCallToAction,"</a>",e)}}}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=s(t(16)),o=t(7),r=s(t(5));function s(a){return a&&a.__esModule?a:{default:a}}e.default=class extends n.default{constructor(a={}){super();const e={scores:{okay:6,good:9},urlTitle:(0,o.createAnchorOpeningTag)("https://yoa.st/33o"),urlCallToAction:(0,o.createAnchorOpeningTag)("https://yoa.st/33p")};this.identifier="urlKeyword",this._config=(0,i.merge)(e,a)}getResult(a,e,t){this._keywordInURL=e.getResearch("keywordCountInUrl");const i=new r.default,n=this.calculateResult(t);return i.setScore(n.score),i.setText(n.resultText),i}isApplicable(a){return a.hasKeyword()&&a.hasUrl()}calculateResult(a){return this._keywordInURL.keyphraseLength<3?100===this._keywordInURL.percentWordMatches?{score:this._config.scores.good,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sKeyphrase in slug%2$s: Great work!"),this._config.urlTitle,"</a>")}:{score:this._config.scores.okay,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sKeyphrase in slug%3$s: (Part of) your keyphrase does not appear in the slug. %2$sChange that%3$s!"),this._config.urlTitle,this._config.urlCallToAction,"</a>")}:this._keywordInURL.percentWordMatches>50?{score:this._config.scores.good,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sKeyphrase in slug%2$s: More than half of your keyphrase appears in the slug. That's great!"),this._config.urlTitle,"</a>")}:{score:this._config.scores.okay,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sKeyphrase in slug%3$s: (Part of) your keyphrase does not appear in the slug. %2$sChange that%3$s!"),this._config.urlTitle,this._config.urlCallToAction,"</a>")}}}},function(a,e,t){"use strict";function i(a){Error.captureStackTrace(this,this.constructor),this.name=this.constructor.name,this.message=a}Object.defineProperty(e,"__esModule",{value:!0}),function(a){return a&&a.__esModule?a:{default:a}}(t(14)).default.inherits(i,Error),e.default=i},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.default=function(a){return-1===a?"error":0===a?"feedback":a<=4?"bad":a>4&&a<=7?"ok":a>7?"good":""}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a){for(var e=(0,i.default)(),t=0;t<e.length;t++)a=a.replace(e[t].letters,e[t].base);return a};var i=function(a){return a&&a.__esModule?a:{default:a}}(t(595))},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=K(t(619)),n=t(1),o=K(t(207)),r=K(t(134)),s=K(t(305)),d=K(t(620)),l=K(t(729)),c=K(t(326)),u=K(t(730)),p=K(t(731)),z=K(t(732)),g=K(t(733)),m=K(t(734)),w=K(t(736)),y=K(t(738)),f=K(t(739)),b=K(t(753)),h=K(t(331)),v=K(t(754)),k=K(t(755)),j=K(t(756)),_=K(t(757)),x=K(t(758)),q=K(t(760)),E=K(t(761)),A=K(t(762)),O=K(t(763)),T=K(t(764)),S=K(t(765)),M=K(t(767)),P=K(t(784)),C=K(t(830)),R=K(t(842)),D=K(t(843)),F=K(t(844)),B=K(t(342)),$=t(846),I=K(t(847)),L=K(t(848)),W=K(t(849)),N=K(t(850)),U=K(t(851));function K(a){return a&&a.__esModule?a:{default:a}}const H=$.keyphraseDistributionResearcher;var V=function(a){this.setPaper(a),this.defaultResearches={urlLength:u.default,wordCountInText:s.default,findKeywordInPageTitle:p.default,calculateFleschReading:f.default,getLinkStatistics:d.default,getLinks:c.default,linkCount:l.default,imageCount:h.default,altTagCount:v.default,matchKeywordInSubheadings:z.default,keywordCount:m.default,getKeywordDensity:g.default,stopWordsInKeyword:w.default,stopWordsInUrl:y.default,metaDescriptionLength:b.default,keyphraseLength:k.default,keywordCountInUrl:_.default,firstParagraph:x.default,metaDescriptionKeyword:j.default,pageTitleWidth:q.default,wordComplexity:E.default,getParagraphLength:A.default,countSentencesFromText:O.default,countSentencesFromDescription:T.default,getSubheadingTextLengths:S.default,findTransitionWords:M.default,passiveVoice:P.default,getSentenceBeginnings:C.default,relevantWords:R.default,readingTime:D.default,getTopicDensity:F.default,topicCount:B.default,sentences:i.default,keyphraseDistribution:H,morphology:U.default,functionWordsInKeyphrase:I.default,h1s:L.default,prominentWordsForInsights:W.default,prominentWordsForInternalLinking:N.default},this._data={},this.customResearches={}};V.prototype.setPaper=function(a){this.paper=a},V.prototype.addResearch=function(a,e){if((0,n.isUndefined)(a)||(0,n.isEmpty)(a))throw new r.default("Research name cannot be empty");if(!(e instanceof Function))throw new o.default("The research requires a Function callback.");this.customResearches[a]=e},V.prototype.hasResearch=function(a){return Object.keys(this.getAvailableResearches()).filter(function(e){return e===a}).length>0},V.prototype.getAvailableResearches=function(){return(0,n.merge)(this.defaultResearches,this.customResearches)},V.prototype.getResearch=function(a){if((0,n.isUndefined)(a)||(0,n.isEmpty)(a))throw new r.default("Research name cannot be empty");return!!this.hasResearch(a)&&this.getAvailableResearches()[a](this.paper,this)},V.prototype.addResearchData=function(a,e){this._data[a]=e},V.prototype.getData=function(a){return!!this._data.hasOwnProperty(a)&&this._data[a]},e.default=V},function(a,e,t){var i=t(633),n=t(642),o=t(210);a.exports=function(a){return o(a)?i(a):n(a)}},function(a,e,t){var i=t(56).Symbol;a.exports=i},function(a,e){a.exports=function(a){return a.webpackPolyfill||(a.deprecate=function(){},a.paths=[],a.children||(a.children=[]),Object.defineProperty(a,"loaded",{enumerable:!0,get:function(){return a.l}}),Object.defineProperty(a,"id",{enumerable:!0,get:function(){return a.i}}),a.webpackPolyfill=1),a}},function(a,e){a.exports=function(a){var e=typeof a;return null!=a&&("object"==e||"function"==e)}},function(a,e,t){var i=t(650),n=t(651),o=t(652),r=t(653),s=t(654);function d(a){var e=-1,t=null==a?0:a.length;for(this.clear();++e<t;){var i=a[e];this.set(i[0],i[1])}}d.prototype.clear=i,d.prototype.delete=n,d.prototype.get=o,d.prototype.has=r,d.prototype.set=s,a.exports=d},function(a,e,t){var i=t(316);a.exports=function(a,e){for(var t=a.length;t--;)if(i(a[t][0],e))return t;return-1}},function(a,e,t){var i=t(93)(Object,"create");a.exports=i},function(a,e,t){var i=t(672);a.exports=function(a,e){var t=a.__data__;return i(e)?t["string"==typeof e?"string":"hash"]:t.map}},function(a,e,t){var i=t(91),n=t(92),o="[object Symbol]";a.exports=function(a){return"symbol"==typeof a||n(a)&&i(a)==o}},function(a,e,t){var i=t(146),n=1/0;a.exports=function(a){if("string"==typeof a||i(a))return a;var e=a+"";return"0"==e&&1/a==-n?"-0":e}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a,e,t){const n=(0,d.default)(a).map(a=>a.toLowerCase()),o=n.indexOf(e.toLowerCase());if(o<1)return!1;const r=(0,i.get)(c,t,[]);for(let a=0;a<o;a++)if((0,i.includes)(r,n[a]))return!0;return!1};var i=t(1),n=l(t(192)),o=l(t(195)),r=l(t(194)),s=l(t(193)),d=l(t(22));function l(a){return a&&a.__esModule?a:{default:a}}const c={en:(0,n.default)().cannotBeBetweenPassiveAuxiliaryAndParticiple,fr:(0,o.default)().cannotBeBetweenPassiveAuxiliaryAndParticiple,it:(0,r.default)().cannotBeBetweenPassiveAuxiliaryAndParticiple,es:(0,s.default)().cannotBeBetweenPassiveAuxiliaryAndParticiple}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(14),n=v(t(75)),o=v(t(76)),r=v(t(77)),s=v(t(78)),d=v(t(100)),l=v(t(191)),c=v(t(132)),u=v(t(133)),p=v(t(51)),z=v(t(128)),g=v(t(200)),m=v(t(101)),w=v(t(131)),y=v(t(199)),f=v(t(129)),b=v(t(74)),h=v(t(130));function v(a){return a&&a.__esModule?a:{default:a}}const k=function(a,e){p.default.call(this,a,e),this.type="SEOAssessor",this._assessments=[new n.default,new o.default,new r.default,new s.default,new z.default,new g.default,new d.default,new m.default,new w.default,new y.default,new c.default,new l.default,new f.default,new u.default,new b.default,new h.default]};(0,i.inherits)(k,p.default),e.default=k},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=m(t(51)),n=m(t(181)),o=m(t(182)),r=m(t(186)),s=m(t(187)),d=m(t(190)),l=m(t(184)),c=m(t(185)),u=m(t(189)),p=m(t(346)),z=m(t(135)),g=t(1);function m(a){return a&&a.__esModule?a:{default:a}}const w=function(a,e={}){i.default.call(this,a,e),this.type="ContentAssessor";const t=e.hasOwnProperty("locale")?e.locale:"en_US";this._assessments=[new n.default((0,p.default)(t).fleschReading),new s.default,o.default,new r.default((0,p.default)(t).sentenceLength),d.default,l.default,u.default,c.default]};t(14).inherits(w,i.default),w.prototype.calculatePenaltyPointsFullSupport=function(a){switch(a){case"bad":return 3;case"ok":return 2;default:case"good":return 0}},w.prototype.calculatePenaltyPointsPartialSupport=function(a){switch(a){case"bad":return 4;case"ok":return 2;default:case"good":return 0}},w.prototype._allAssessmentsSupported=function(){return 8===this.getApplicableAssessments().length},w.prototype.calculatePenaltyPoints=function(){const a=this.getValidResults(),e=(0,g.map)(a,function(a){const e=(0,z.default)(a.getScore());return this._allAssessmentsSupported()?this.calculatePenaltyPointsFullSupport(e):this.calculatePenaltyPointsPartialSupport(e)}.bind(this));return(0,g.sum)(e)},w.prototype._ratePenaltyPoints=function(a){if(1===this.getValidResults().length)return 30;if(this._allAssessmentsSupported()){if(a>6)return 30;if(a>4)return 60}else{if(a>4)return 30;if(a>2)return 60}return 90},w.prototype.calculateOverallScore=function(){if(0===this.getValidResults().length)return 30;const a=this.calculatePenaltyPoints();return this._ratePenaltyPoints(a)},e.default=w},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=Object.assign||function(a){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&(a[i]=t[i])}return a},n=t(1);var o={keyword:"",synonyms:"",description:"",title:"",titleWidth:0,url:"",locale:"en_US",permalink:""},r=function(a,e){this._text=a||"",e=e||{},(0,n.defaults)(e,o),""===e.locale&&(e.locale=o.locale);const t=e.keyword.replace(/[‘’“”"'.?!:;,¿¡«»&*@#±^%|~`[\](){}⟨⟩<>/\\–\-\u2014\u00d7\u002b\u0026\s]/g,"");(0,n.isEmpty)(t)&&(e.keyword=o.keyword),this._attributes=e};r.prototype.hasKeyword=function(){return""!==this._attributes.keyword},r.prototype.getKeyword=function(){return this._attributes.keyword},r.prototype.hasSynonyms=function(){return""!==this._attributes.synonyms},r.prototype.getSynonyms=function(){return this._attributes.synonyms},r.prototype.hasText=function(){return""!==this._text},r.prototype.getText=function(){return this._text},r.prototype.hasDescription=function(){return""!==this._attributes.description},r.prototype.getDescription=function(){return this._attributes.description},r.prototype.hasTitle=function(){return""!==this._attributes.title},r.prototype.getTitle=function(){return this._attributes.title},r.prototype.hasTitleWidth=function(){return 0!==this._attributes.titleWidth},r.prototype.getTitleWidth=function(){return this._attributes.titleWidth},r.prototype.hasUrl=function(){return""!==this._attributes.url},r.prototype.getUrl=function(){return this._attributes.url},r.prototype.hasLocale=function(){return""!==this._attributes.locale},r.prototype.getLocale=function(){return this._attributes.locale},r.prototype.hasPermalink=function(){return""!==this._attributes.permalink},r.prototype.getPermalink=function(){return this._attributes.permalink},r.prototype.serialize=function(){return i({_parseClass:"Paper",text:this._text},this._attributes)},r.prototype.equals=function(a){return this._text===a.getText()&&(0,n.isEqual)(this._attributes,a._attributes)},r.parse=function(a){const e=a.text,t=(a._parseClass,function(a,e){var t={};for(var i in a)e.indexOf(i)>=0||Object.prototype.hasOwnProperty.call(a,i)&&(t[i]=a[i]);return t}(a,["text","_parseClass"]));return new r(e,t)},e.default=r},function(a,e,t){"use strict";(function(a){var t="object"==typeof a&&a&&a.Object===Object&&a;e.a=t}).call(this,t(44))},function(a,e,t){"use strict";(function(a){var i=t(8),n="object"==typeof exports&&exports&&!exports.nodeType&&exports,o=n&&"object"==typeof a&&a&&!a.nodeType&&a,r=o&&o.exports===n?i.a.Buffer:void 0,s=r?r.allocUnsafe:void 0;e.a=function(a,e){if(e)return a.slice();var t=a.length,i=s?s(t):new a.constructor(t);return a.copy(i),i}}).call(this,t(180)(a))},,,,,,,,,,,,,,,,,,,,,,,,,,,function(a,e){a.exports=function(a){if(!a.webpackPolyfill){var e=Object.create(a);e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),Object.defineProperty(e,"exports",{enumerable:!0}),e.webpackPolyfill=1}return e}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=d(t(16)),o=d(t(86)),r=t(7),s=d(t(5));function d(a){return a&&a.__esModule?a:{default:a}}const l=["en","nl","de","it","ru","fr","es"];e.default=class extends n.default{constructor(a){super();const e={urlTitle:(0,r.createAnchorOpeningTag)("https://yoa.st/34r"),urlCallToAction:(0,r.createAnchorOpeningTag)("https://yoa.st/34s")};this.identifier="fleschReadingEase",this._config=(0,i.merge)(e,a)}getResult(a,e,t){if(this.fleschReadingResult=e.getResearch("calculateFleschReading"),this.isApplicable(a)){const a=new s.default(t),e=this.calculateResult(t);return a.setScore(e.score),a.setText(e.resultText),a}return null}calculateResult(a){this.fleschReadingResult<0&&(this.fleschReadingResult=0),this.fleschReadingResult>100&&(this.fleschReadingResult=100);let e=0,t="",n=a.dgettext("js-text-analysis","Good job!");return this.fleschReadingResult>=this._config.borders.veryEasy?(e=this._config.scores.veryEasy,t=a.dgettext("js-text-analysis","very easy")):(0,i.inRange)(this.fleschReadingResult,this._config.borders.easy,this._config.borders.veryEasy)?(e=this._config.scores.easy,t=a.dgettext("js-text-analysis","easy")):(0,i.inRange)(this.fleschReadingResult,this._config.borders.fairlyEasy,this._config.borders.easy)?(e=this._config.scores.fairlyEasy,t=a.dgettext("js-text-analysis","fairly easy")):(0,i.inRange)(this.fleschReadingResult,this._config.borders.okay,this._config.borders.fairlyEasy)?(e=this._config.scores.okay,t=a.dgettext("js-text-analysis","ok")):(0,i.inRange)(this.fleschReadingResult,this._config.borders.fairlyDifficult,this._config.borders.okay)?(e=this._config.scores.fairlyDifficult,t=a.dgettext("js-text-analysis","fairly difficult"),n=a.dgettext("js-text-analysis","Try to make shorter sentences to improve readability")):(0,i.inRange)(this.fleschReadingResult,this._config.borders.difficult,this._config.borders.fairlyDifficult)?(e=this._config.scores.difficult,t=a.dgettext("js-text-analysis","difficult"),n=a.dgettext("js-text-analysis","Try to make shorter sentences, using less difficult words to improve readability")):(e=this._config.scores.veryDifficult,t=a.dgettext("js-text-analysis","very difficult"),n=a.dgettext("js-text-analysis","Try to make shorter sentences, using less difficult words to improve readability")),e>=this._config.scores.okay?{score:e,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sFlesch Reading Ease%2$s: The copy scores %3$s in the test, which is considered %4$s to read. %5$s"),this._config.urlTitle,"</a>",this.fleschReadingResult,t,n)}:{score:e,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sFlesch Reading Ease%2$s: The copy scores %3$s in the test, which is considered %4$s to read. %5$s%6$s%7$s"),this._config.urlTitle,"</a>",this.fleschReadingResult,t,this._config.urlCallToAction,n,"</a>.")}}isApplicable(a){return(0,o.default)(a.getLocale(),l)&&a.hasText()}}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=t(43),o=u(t(183)),r=u(t(73)),s=t(7),d=t(33),l=u(t(5)),c=u(t(42));function u(a){return a&&a.__esModule?a:{default:a}}const p=function(a){return(0,i.filter)(a,function(a){return(0,o.default)(150,a.wordCount)})};e.default={identifier:"textParagraphTooLong",getResult:function(a,e,t){var i=e.getResearch("getParagraphLength"),o=function(a,e,t){let i;const o=(0,s.createAnchorOpeningTag)("https://yoa.st/35d"),r=(0,s.createAnchorOpeningTag)("https://yoa.st/35e");if(0===a.length)return{};const d=a[0].wordCount;return d<=150&&(i=9),(0,n.inRangeEndInclusive)(d,150,200)&&(i=6),d>200&&(i=3),i>=7?{score:i,hasMarks:!1,text:t.sprintf(t.dgettext("js-text-analysis","%1$sParagraph length%2$s: None of the paragraphs are too long. Great job!"),o,"</a>")}:{score:i,hasMarks:!0,text:t.sprintf(t.dngettext("js-text-analysis","%1$sParagraph length%2$s: %3$d of the paragraphs contains more than the recommended maximum of %4$d words. %5$sShorten your paragraphs%2$s!","%1$sParagraph length%2$s: %3$d of the paragraphs contain more than the recommended maximum of %4$d words. %5$sShorten your paragraphs%2$s!",e.length),o,"</a>",e.length,150,r)}}(i=function(a){return a.sort(function(a,e){return e.wordCount-a.wordCount})}(i),p(i),t),r=new l.default;return r.setScore(o.score),r.setText(o.text),r.setHasMarks(o.hasMarks),r},isApplicable:function(a){return a.hasText()},getMarks:function(a,e){var t=e.getResearch("getParagraphLength"),n=p(t);return(0,i.map)(n,function(a){var e=(0,d.stripBlockTagsAtStartEnd)(a.text),t=(0,r.default)(e);return new c.default({original:e,marked:t})})}}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a,e){return e>a}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=p(t(87)),o=p(t(86)),r=t(43),s=p(t(73)),d=t(7),l=t(33),c=p(t(5)),u=p(t(42));function p(a){return a&&a.__esModule?a:{default:a}}const z=["en","de","fr","es","ru","it","nl","pl","sv"];e.default={identifier:"passiveVoice",getResult:function(a,e,t){const i=function(a,e){let t,i=0;const o=(0,d.createAnchorOpeningTag)("https://yoa.st/34t"),s=(0,d.createAnchorOpeningTag)("https://yoa.st/34u");0!==a.total&&(i=(0,n.default)(a.passives.length/a.total*100));const l=i>0;return i<=10&&(t=9),(0,r.inRangeEndInclusive)(i,10,15)&&(t=6),i>15&&(t=3),t>=7?{score:t,hasMarks:l,text:e.sprintf(e.dgettext("js-text-analysis","%1$sPassive voice%2$s: You're using enough active voice. That's great!"),o,"</a>")}:{score:t,hasMarks:l,text:e.sprintf(e.dgettext("js-text-analysis","%1$sPassive voice%2$s: %3$s of the sentences contain passive voice, which is more than the recommended maximum of %4$s. %5$sTry to use their active counterparts%2$s."),o,"</a>",i+"%","10%",s)}}(e.getResearch("passiveVoice"),t),o=new c.default;return o.setScore(i.score),o.setText(i.text),o.setHasMarks(i.hasMarks),o},isApplicable:function(a){return(0,o.default)(a.getLocale(),z)&&a.hasText()},getMarks:function(a,e){const t=e.getResearch("passiveVoice");return(0,i.map)(t.passives,function(a){a=(0,l.stripIncompleteTags)(a);const e=(0,s.default)(a);return new u.default({original:a,marked:e})})}}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=c(t(73)),o=t(7),r=t(33),s=c(t(5)),d=c(t(42)),l=c(t(86));function c(a){return a&&a.__esModule?a:{default:a}}const u=["en","de","es","fr","nl","it","ru","pl","sv","pt"];e.default={identifier:"sentenceBeginnings",getResult:function(a,e,t){const n=function(a,e){const t=(0,o.createAnchorOpeningTag)("https://yoa.st/35f"),i=(0,o.createAnchorOpeningTag)("https://yoa.st/35g");return a.total>0?{score:3,hasMarks:!0,text:e.sprintf(e.dngettext("js-text-analysis","%1$sConsecutive sentences%2$s: The text contains %3$d consecutive sentences starting with the same word. %5$sTry to mix things up%2$s!","%1$sConsecutive sentences%2$s: The text contains %4$d instances where %3$d or more consecutive sentences start with the same word. %5$sTry to mix things up%2$s!",a.total),t,"</a>",a.lowestCount,a.total,i)}:{score:9,hasMarks:!1,text:e.sprintf(e.dgettext("js-text-analysis","%1$sConsecutive sentences%2$s: There is enough variety in your sentences. That's great!"),t,"</a>")}}(function(a){const e=(0,i.partition)(a,function(a){return a.count>2});if(0===e[0].length)return{total:0};const t=(0,i.sortBy)(e[0],function(a){return a.count});return{total:e[0].length,lowestCount:t[0].count}}(e.getResearch("getSentenceBeginnings")),t),r=new s.default;return r.setScore(n.score),r.setText(n.text),r.setHasMarks(n.hasMarks),r},isApplicable:function(a){return(0,l.default)(a.getLocale(),u)&&a.hasText()},getMarks:function(a,e){let t=e.getResearch("getSentenceBeginnings");t=(0,i.filter)(t,function(a){return a.count>2});const o=(0,i.map)(t,function(a){return a.sentences});return(0,i.map)((0,i.flatten)(o),function(a){a=(0,r.stripIncompleteTags)(a);const e=(0,n.default)(a);return new d.default({original:a,marked:e})})}}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=z(t(16)),o=z(t(258)),r=z(t(87)),s=t(43),d=z(t(73)),l=t(7),c=t(33),u=z(t(5)),p=z(t(42));function z(a){return a&&a.__esModule?a:{default:a}}e.default=class extends n.default{constructor(a={}){super(),this.identifier="textSentenceLength",this._config=(0,i.merge)({recommendedWordCount:20,slightlyTooMany:25,farTooMany:30},a)}getResult(a,e,t){const i=e.getResearch("countSentencesFromText"),n=this.calculatePercentage(i),o=this.calculateScore(n),r=new u.default;return r.setScore(o),r.setText(this.translateScore(o,n,t)),r.setHasMarks(n>0),r}isApplicable(a){return a.hasText()}getMarks(a,e){const t=e.getResearch("countSentencesFromText"),n=this.getTooLongSentences(t);return(0,i.map)(n,function(a){const e=(0,c.stripIncompleteTags)(a.sentence);return new p.default({original:e,marked:(0,d.default)(e)})})}translateScore(a,e,t){const i=(0,l.createAnchorOpeningTag)("https://yoa.st/34v"),n=(0,l.createAnchorOpeningTag)("https://yoa.st/34w");return a>=7?t.sprintf(t.dgettext("js-text-analysis","%1$sSentence length%2$s: Great!"),i,"</a>"):t.sprintf(t.dgettext("js-text-analysis","%1$sSentence length%2$s: %3$s of the sentences contain more than %4$s words, which is more than the recommended maximum of %5$s. %6$sTry to shorten the sentences%2$s."),i,"</a>",e+"%",this._config.recommendedWordCount,this._config.slightlyTooMany+"%",n)}calculatePercentage(a){let e=0;if(0!==a.length){const t=this.countTooLongSentences(a);e=(0,r.default)(t/a.length*100)}return e}calculateScore(a){let e;return a<=this._config.slightlyTooMany&&(e=9),(0,s.inRangeEndInclusive)(a,this._config.slightlyTooMany,this._config.farTooMany)&&(e=6),a>this._config.farTooMany&&(e=3),e}getTooLongSentences(a){return(0,o.default)(a,this._config.recommendedWordCount)}countTooLongSentences(a){return this.getTooLongSentences(a).length}}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=u(t(16)),o=t(43),r=u(t(183)),s=t(7),d=t(123),l=u(t(22)),c=u(t(5));function u(a){return a&&a.__esModule?a:{default:a}}e.default=class extends n.default{constructor(a={}){super();const e={parameters:{recommendedMaximumWordCount:300,slightlyTooMany:300,farTooMany:350},urlTitle:(0,s.createAnchorOpeningTag)("https://yoa.st/34x"),urlCallToAction:(0,s.createAnchorOpeningTag)("https://yoa.st/34y"),scores:{goodShortTextNoSubheadings:9,goodSubheadings:9,okSubheadings:6,badSubheadings:3,badLongTextNoSubheadings:2}};this.identifier="subheadingsTooLong",this._config=(0,i.merge)(e,a)}getResult(a,e,t){this._subheadingTextsLength=e.getResearch("getSubheadingTextLengths"),this._subheadingTextsLength=this._subheadingTextsLength.sort(function(a,e){return e.wordCount-a.wordCount}),this._tooLongTextsNumber=this.getTooLongSubheadingTexts().length;const i=new c.default;i.setIdentifier(this.identifier),this._hasSubheadings=this.hasSubheadings(a),this._textLength=(0,l.default)(a.getText()).length;const n=this.calculateResult(t);return n.resultTextPlural=n.resultTextPlural||"",i.setScore(n.score),i.setText(n.resultText),i}isApplicable(a){return a.hasText()}hasSubheadings(a){return(0,d.getSubheadings)(a.getText()).length>0}getTooLongSubheadingTexts(){return(0,i.filter)(this._subheadingTextsLength,function(a){return(0,r.default)(this._config.parameters.recommendedMaximumWordCount,a.wordCount)}.bind(this))}calculateResult(a){if(this._textLength>300){if(this._hasSubheadings){const e=this._subheadingTextsLength[0].wordCount;return e<=this._config.parameters.slightlyTooMany?{score:this._config.scores.goodSubheadings,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sSubheading distribution%2$s: Great job!"),this._config.urlTitle,"</a>")}:(0,o.inRangeEndInclusive)(e,this._config.parameters.slightlyTooMany,this._config.parameters.farTooMany)?{score:this._config.scores.okSubheadings,resultText:a.sprintf(a.dngettext("js-text-analysis","%1$sSubheading distribution%2$s: %3$d section of your text is longer than %4$d words and is not separated by any subheadings. %5$sAdd subheadings to improve readability%2$s.","%1$sSubheading distribution%2$s: %3$d sections of your text are longer than %4$d words and are not separated by any subheadings. %5$sAdd subheadings to improve readability%2$s.",this._tooLongTextsNumber),this._config.urlTitle,"</a>",this._tooLongTextsNumber,this._config.parameters.recommendedMaximumWordCount,this._config.urlCallToAction)}:{score:this._config.scores.badSubheadings,resultText:a.sprintf(a.dngettext("js-text-analysis","%1$sSubheading distribution%2$s: %3$d section of your text is longer than %4$d words and is not separated by any subheadings. %5$sAdd subheadings to improve readability%2$s.","%1$sSubheading distribution%2$s: %3$d sections of your text are longer than %4$d words and are not separated by any subheadings. %5$sAdd subheadings to improve readability%2$s.",this._tooLongTextsNumber),this._config.urlTitle,"</a>",this._tooLongTextsNumber,this._config.parameters.recommendedMaximumWordCount,this._config.urlCallToAction)}}return{score:this._config.scores.badLongTextNoSubheadings,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sSubheading distribution%2$s: You are not using any subheadings, although your text is rather long. %3$sTry and add some subheadings%2$s."),this._config.urlTitle,"</a>",this._config.urlCallToAction)}}return this._hasSubheadings?{score:this._config.scores.goodSubheadings,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sSubheading distribution%2$s: Great job!"),this._config.urlTitle,"</a>")}:{score:this._config.scores.goodShortTextNoSubheadings,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sSubheading distribution%2$s: You are not using any subheadings, but your text is short enough and probably doesn't need them."),this._config.urlTitle,"</a>")}}}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a){return a=(a=a.replace(i,"")).replace(n,"")};var i=new RegExp("^[\\–\\-\\(\\)_\\[\\]’“”\"'.?!:;,¿¡«»‹›—×+&<>]+"),n=new RegExp("[\\–\\-\\(\\)_\\[\\]’“”\"'.?!:;,¿¡«»‹›—×+&<>]+$")},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(7),n=t(33),o=function(a){return a&&a.__esModule?a:{default:a}}(t(5));e.default={identifier:"textPresence",getResult:function(a,e,t){const r=(0,n.stripFullTags)(a.getText()),s=(0,i.createAnchorOpeningTag)("https://yoa.st/35h"),d=(0,i.createAnchorOpeningTag)("https://yoa.st/35i");if(r.length<50){const a=new o.default;return a.setText(t.sprintf(t.dgettext("js-text-analysis","%1$sNot enough content%2$s: %3$sPlease add some content to enable a good analysis%2$s."),s,"</a>",d)),a.setScore(3),a}return new o.default}}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=p(t(87)),o=t(43),r=t(7),s=t(33),d=p(t(5)),l=p(t(42)),c=p(t(73)),u=p(t(86));function p(a){return a&&a.__esModule?a:{default:a}}const z=["en","de","es","fr","nl","it","pt","ru","ca","pl","sv","hu"],g=function(a,e){const t=function(a){return 0===a.transitionWordSentences||0===a.totalSentences?0:(0,n.default)(a.transitionWordSentences/a.totalSentences*100)}(a),i=function(a){return a<20?3:(0,o.inRangeStartInclusive)(a,20,30)?6:a>=30?9:void 0}(t),s=t>0,d=(0,r.createAnchorOpeningTag)("https://yoa.st/34z"),l=(0,r.createAnchorOpeningTag)("https://yoa.st/35a");return i<7&&0===t?{score:(0,n.default)(i),hasMarks:s,text:e.sprintf(e.dgettext("js-text-analysis","%1$sTransition words%2$s: None of the sentences contain transition words. %3$sUse some%2$s."),d,"</a>",l)}:i<7?{score:(0,n.default)(i),hasMarks:s,text:e.sprintf(e.dgettext("js-text-analysis","%1$sTransition words%2$s: Only %3$s of the sentences contain transition words, which is not enough. %4$sUse more of them%2$s."),d,"</a>",t+"%",l)}:{score:(0,n.default)(i),hasMarks:s,text:e.sprintf(e.dgettext("js-text-analysis","%1$sTransition words%2$s: Well done!"),d,"</a>")}};e.default={identifier:"textTransitionWords",getResult:function(a,e,t){const i=e.getResearch("findTransitionWords"),n=g(i,t),o=new d.default;return o.setScore(n.score),o.setText(n.text),o.setHasMarks(n.hasMarks),o},isApplicable:function(a){return(0,u.default)(a.getLocale(),z)&&a.hasText()},getMarks:function(a,e){const t=e.getResearch("findTransitionWords");return(0,i.map)(t.sentenceResults,function(a){let e=a.sentence;return e=(0,s.stripIncompleteTags)(e),new l.default({original:e,marked:(0,c.default)(e)})})}}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=s(t(16)),o=t(7),r=s(t(5));function s(a){return a&&a.__esModule?a:{default:a}}e.default=class extends n.default{constructor(a={}){super();const e={parameters:{recommendedMinimum:1},scores:{allInternalFollow:9,someInternalFollow:8,noneInternalFollow:7,noInternal:3},urlTitle:(0,o.createAnchorOpeningTag)("https://yoa.st/33z"),urlCallToAction:(0,o.createAnchorOpeningTag)("https://yoa.st/34a")};this.identifier="internalLinks",this._config=(0,i.merge)(e,a)}getResult(a,e,t){this.linkStatistics=e.getResearch("getLinkStatistics");const i=new r.default,n=this.calculateResult(t);return i.setScore(n.score),i.setText(n.resultText),i}isApplicable(a){return a.hasText()}calculateResult(a){return 0===this.linkStatistics.internalTotal?{score:this._config.scores.noInternal,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sInternal links%3$s: No internal links appear in this page, %2$smake sure to add some%3$s!"),this._config.urlTitle,this._config.urlCallToAction,"</a>")}:this.linkStatistics.internalNofollow===this.linkStatistics.internalTotal?{score:this._config.scores.noneInternalFollow,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sInternal links%3$s: The internal links in this page are all nofollowed. %2$sAdd some good internal links%3$s."),this._config.urlTitle,this._config.urlCallToAction,"</a>")}:this.linkStatistics.internalDofollow===this.linkStatistics.internalTotal?{score:this._config.scores.allInternalFollow,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sInternal links%2$s: You have enough internal links. Good job!"),this._config.urlTitle,"</a>")}:{score:this._config.scores.someInternalFollow,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sInternal links%2$s: There are both nofollowed and normal internal links on this page. Good job!"),this._config.urlTitle,"</a>")}}}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){return{filteredAtEnding:[].concat(u,A,B),filteredAtBeginningAndEnding:[].concat(l,O,S,g,D,w,m),filteredAnywhere:[].concat(d,x,p,z,y,$,c,r,q,E,C,F,f,M,P,h,v,k,_,N,T,j,I,L,W),cannotDirectlyPrecedePassiveParticiple:[].concat(l,O,g,m,u,A,w),cannotBeBetweenPassiveAuxiliaryAndParticiple:[].concat(q,E,C,F),all:[].concat(l,c,u,g,m,y,p,z,w,f,A,b,h,v,k,j,_,x,T,r,s,q,E,O,S,M,P,C,d,R,D,F,$,B,I,W,N,U,K)}};var i=o(t(263)),n=o(t(264));function o(a){return a&&a.__esModule?a:{default:a}}const r=(0,i.default)().filteredAuxiliaries,s=(0,i.default)().notFilteredAuxiliaries,d=(0,n.default)().singleWords,l=["the","an","a"],c=["one","two","three","four","five","six","seven","eight","nine","ten","eleven","twelve","thirteen","fourteen","fifteen","sixteen","seventeen","eighteen","nineteen","twenty","hundred","hundreds","thousand","thousands","million","millions","billion","billions"],u=["first","second","third","fourth","fifth","sixth","seventh","eighth","ninth","tenth","eleventh","twelfth","thirteenth","fourteenth","fifteenth","sixteenth","seventeenth","eighteenth","nineteenth","twentieth"],p=["i","you","he","she","it","we","they"],z=["me","him","us","them"],g=["this","that","these","those"],m=["my","your","his","her","its","their","our","mine","yours","hers","theirs","ours"],w=["all","some","many","lot","lots","ton","tons","bit","no","every","enough","little","much","more","most","plenty","several","few","fewer","kind","kinds"],y=["myself","yourself","himself","herself","itself","oneself","ourselves","yourselves","themselves"],f=["none","nobody","everyone","everybody","someone","somebody","anyone","anybody","nothing","everything","something","anything","each","other","whatever","whichever","whoever","whomever","whomsoever","whosoever","others","neither","both","either","any","such"],b=["one's","nobody's","everyone's","everybody's","someone's","somebody's","anyone's","anybody's","nothing's","everything's","something's","anything's","whoever's","others'","other's","another's","neither's","either's"],h=["which","what","whose"],v=["who","whom"],k=["where","how","why","whether","wherever","whyever","wheresoever","whensoever","howsoever","whysoever","whatsoever","whereso","whomso","whenso","howso","whyso","whoso","whatso"],j=["therefor","therein","hereby","hereto","wherein","therewith","herewith","wherewith","thereby"],_=["there","here","whither","thither","hither","whence","thence"],x=["always","once","twice","thrice"],q=["can","cannot","can't","could","couldn't","could've","dare","dares","dared","do","don't","does","doesn't","did","didn't","done","have","haven't","had","hadn't","has","hasn't","i've","you've","we've","they've","i'd","you'd","he'd","she'd","it'd","we'd","they'd","would","wouldn't","would've","may","might","must","need","needn't","needs","ought","shall","shalln't","shan't","should","shouldn't","will","won't","i'll","you'll","he'll","she'll","it'll","we'll","they'll","there's","there're","there'll","here's","here're","there'll"],E=["appear","appears","appeared","become","becomes","became","come","comes","came","keep","keeps","kept","remain","remains","remained","stay","stays","stayed","turn","turns","turned"],A=["doing","daring","having","appearing","becoming","coming","keeping","remaining","staying","saying","asking","stating","seeming","letting","making","setting","showing","putting","adding","going","using","trying","containing"],O=["in","from","with","under","throughout","atop","for","on","of","to","aboard","about","above","abreast","absent","across","adjacent","after","against","along","alongside","amid","mid","among","apropos","apud","around","as","astride","at","ontop","afore","tofore","behind","ahind","below","ablow","beneath","neath","beside","between","atween","beyond","ayond","by","chez","circa","spite","down","except","into","less","like","minus","near","nearer","nearest","anear","notwithstanding","off","onto","opposite","out","outen","over","past","per","pre","qua","sans","sauf","sithence","through","thru","truout","toward","underneath","up","upon","upside","versus","via","vis-à-vis","without","ago","apart","aside","aslant","away","withal","towards","amidst","amongst","midst","whilst"],T=["back","within","forward","backward","ahead"],S=["and","or","and/or","yet"],M=["sooner","just","only"],P=["if","even"],C=["say","says","said","claimed","ask","asks","asked","stated","explain","explains","explained","think","thinks","talks","talked","announces","announced","tells","told","discusses","discussed","suggests","suggested","understands","understood"],R=["again","definitely","eternally","expressively","instead","expressly","immediately","including","instantly","namely","naturally","next","notably","now","nowadays","ordinarily","positively","truly","ultimately","uniquely","usually","almost","maybe","probably","granted","initially","too","actually","already","e.g","i.e","often","regularly","simply","optionally","perhaps","sometimes","likely","never","ever","else","inasmuch","provided","currently","incidentally","elsewhere","particular","recently","relatively","f.i","clearly","apparently"],D=["highly","very","really","extremely","absolutely","completely","totally","utterly","quite","somewhat","seriously","fairly","fully","amazingly"],F=["seem","seems","seemed","let","let's","lets","make","makes","made","want","showed","shown","go","goes","went","gone","take","takes","took","taken","put","puts","use","used","try","tries","tried","mean","means","meant","called","based","add","adds","added","contain","contains","contained","consist","consists","consisted","ensure","ensures","ensured"],B=["new","newer","newest","old","older","oldest","previous","good","well","better","best","big","bigger","biggest","easy","easier","easiest","fast","faster","fastest","far","hard","harder","hardest","least","own","large","larger","largest","long","longer","longest","low","lower","lowest","high","higher","highest","regular","simple","simpler","simplest","small","smaller","smallest","tiny","tinier","tiniest","short","shorter","shortest","main","actual","nice","nicer","nicest","real","same","able","certain","usual","so-called","mainly","mostly","recent","anymore","complete","lately","possible","commonly","constantly","continually","directly","easily","nearly","slightly","somewhere","estimated","latest","different","similar","widely","bad","worse","worst","great","specific","available","average","awful","awesome","basic","beautiful","busy","current","entire","everywhere","important","major","multiple","normal","necessary","obvious","partly","special","last","early","earlier","earliest","young","younger","youngest",""],$=["oh","wow","tut-tut","tsk-tsk","ugh","whew","phew","yeah","yea","shh","oops","ouch","aha","yikes"],I=["tbs","tbsp","spk","lb","qt","pk","bu","oz","pt","mod","doz","hr","f.g","ml","dl","cl","l","mg","g","kg","quart"],L=["seconds","minute","minutes","hour","hours","day","days","week","weeks","month","months","year","years","today","tomorrow","yesterday"],W=["thing","things","way","ways","matter","case","likelihood","ones","piece","pieces","stuff","times","part","parts","percent","instance","instances","aspect","aspects","item","items","idea","theme","person","instance","instances","detail","details","factor","factors","difference","differences"],N=["not","yes","sure","top","bottom","ok","okay","amen","aka","etc","etcetera","sorry","please"],U=["ms","mss","mrs","mr","dr","prof"],K=["jr","sr"]},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){return{filteredAtBeginning:R,filteredAtEnding:[].concat(r,h,j,_,C),filteredAtBeginningAndEnding:[].concat(n,x,E,u,M,z,p),filteredAnywhere:[].concat(i,s,d,l,c,D,o,b,v,k,T,P,g,A,O,m,w,y,f,I,q,F,B,$),cannotDirectlyPrecedePassiveParticiple:[].concat(n,x,d,p,g,y,o,r,P,C,T,m,w,c,l,q),cannotBeBetweenPassiveAuxiliaryAndParticiple:[].concat(v,j),all:[].concat(n,o,r,u,p,s,c,l,d,z,g,m,w,y,f,q,b,h,v,k,j,_,x,E,A,O,T,i,S,M,P,C,D,R,F,$,I,L,W)}};const i=(0,function(a){return a&&a.__esModule?a:{default:a}}(t(267)).default)().singleWords,n=["el","la","los","las","un","una","unos","unas"],o=["dos","tres","cuatro","cinco","seis","siete","ocho","nueve","diez","once","doce","trece","catorce","quince","dieciseis","diecisiete","dieciocho","diecinueve","veinte","cien","centena","mil","millon","millones"],r=["primera","segunda","tercera","cuarto","cuarta","quinto","quinta","sexto","sexta","septimo","septima","octavo","octava","noveno","novena","décimo","décima","vigésimo","vigésima","primeros","primeras","segundos","segundas","terceros","terceras","cuartos","cuartas","quintos","quintas","sextos","sextas","septimos","septimas","octavos","octavas","novenos","novenas","décimos","décimas","vigésimos","vigésimas"],s=["yo","yos","yoes","tú","él","ella","ello","nosotros","nosotras","vosotros","vosotras","ustedes","ellos","ellas"],d=["me","te","lo","se","nos","os","les"],l=["mí","ti","ud","uds","usted"],c=["conmigo","contigo","consigo"],u=["este","ese","aquel","esta","esa","aquella","estos","esos","aquellos","estas","esas","aquellas","esto","eso","aquello"],p=["mi","mis","mío","míos","mía","mías","nuestro","nuestros","nuestra","nuestras","tuyo","tuyos","tuya","tuyas","tu","tus","vuestro","vuestros","vuestra","vuestras","suyo","suyos","suya","suyas","su","sus"],z=["bastante","bastantes","mucho","muchas","mucha","muchos","más","muchísimo","muchísima","muchísimos","muchísimas","demasiado","demasiada","demasiados","demasiadas","poco","poca","pocos","pocas","menos","poquísimo","poquísima","poquísimos","poquísimas","demás","otros","otras","todo","toda","todos","todas"],g=["alguien","algo","algún","alguno","alguna","algunos","algunas","nadie","nada","ningún","ninguno","ninguna","ningunos","ningunas","tanto","tantos","tanta","tantas"],m=["cuyas","cual"],w=["cuyo"],y=["comoquiera","cualesquiera","cualquier","cuanta","cuantas","cuanto","cuantos","cuál","cuáles","cuánta","cuántas","cuánto","cuántos","cómo","dondequiera","dónde","quien","quienes","quienquiera","quién","quiénes","qué"],f=["allí","ahí","allá","aquí","acá","adónde","delante","detrás","debajo","adelante","atrás","adentro","afuera"],b=["he","has","ha","hay","hemos","habéis","han","hube","hubiste","hubo","hubimos","hubisteis","hubieron","había","habías","habíamos","habíais","habían","habría","habrías","habríais","habrían","habré","habrás","habrá","habremos","habréis","habrán","haya","hayas","hayamos","hayáis","hayan","hubiera","hubieras","hubiéramos","hubierais","hubieran","hubiese","hubieses","hubiésemos","hubieseis","hubiesen","hubiere","hubieres","hubiéremos","hubiereis","hubieren","habed","habido","debo","debes","debe","debemos","debéis","deben","debí","debiste","debió","debimos","debisteis","debieron","debía","debías","debíamos","debíais","debían","debería","deberías","deberíamos","deberíais","deberían","deberé","deberás","deberá","deberemos","deberéis","deberán","deba","debas","debamos","debáis","deban","debiera","debieras","debiéramos","debierais","debieran","debiese","debieses","debiésemos","debieseis","debiesen","debiere","debieres","debiéremos","debiereis","debieren","debed","debido","empiezo","empiezas","empieza","empezáis","empiezan","empecé","empezaste","empezó","empezamos","empezasteis","empezaron","empezaba","empezabas","empezábamos","empezabais","empezaban","empezaría","empezarías","empezaríamos","empezaríais","empezarían","empezaré","empezarás","empezará","empezaremos","empezaréis","empezarán","empiece","empieces","empecemos","empecéis","empiecen","empezara","empezaras","empezáramos","empezarais","empezaran","empezase","empezases","empezásemos","empezaseis","empezasen","empezare","empezares","empezáremos","empezareis","empezaren","empezad","empezado","comienzo","comienzas","comienza","comenzamos","comenzáis","comienzan","comencé","comenzaste","comenzó","comenzasteis","comenzaron","comenzaba","comenzabas","comenzábamos","comenzabais","comenzaban","comenzaría","comenzarías","comenzaríamos","comenzaríais","comenzarían","comenzaré","comenzarás","comenzará","comenzaremos","comenzaréis","comenzarán","comience","comiences","comencemos","comencéis","comiencen","comenzara","comenzaras","comenzáramos","comenzarais","comenzaran","comenzase","comenzases","comenzásemos","comenzaseis","comenzasen","comenzare","comenzares","comenzáremos","comenzareis","comenzaren","comenzad","comenzado","sigo","sigues","sigue","seguimos","seguis","siguen","seguí","seguiste","siguió","seguisteis","siguieron","seguía","seguías","seguíamos","seguíais","seguían","seguiría","seguirías","seguiríamos","seguiríais","seguirían","seguiré","seguirás","seguirá","seguiremos","seguiréis","seguirán","siga","sigas","sigamos","sigáis","sigan","siguiera","siguieras","siguiéramos","siguierais","siguieran","siguiese","siguieses","siguiésemos","siguieseis","siguiesen","siguiere","siguieres","siguiéremos","siguiereis","siguieren","seguid","seguido","tengo","tienes","tiene","tenemos","tenéis","tienen","tuve","tuviste","tuvo","tuvimos","tuvisteis","tuvieron","tenía","tenías","teníamos","teníais","tenían","tendría","tendrías","tendríamos","tendríais","tendrían","tendré","tendrás","tendrá","tendremos","tendréis","tendrán","tenga","tengas","tengamos","tengáis","tengan","tuviera","tuvieras","tuviéramos","tuvierais","tuvieran","tuviese","tuvieses","tuviésemos","tuvieseis","tuviesen","tuviere","tuvieres","tuviéremos","tuviereis","tuvieren","ten","tened","tenido","ando","andas","andamos","andáis","andan","anduve","anduviste","anduvo","anduvimos","anduvisteis","anduvieron","andaba","andabas","andábamos","andabais","andaban","andaría","andarías","andaríamos","andaríais","andarían","andaré","andarás","andará","andaremos","andaréis","andarán","ande","andes","andemos","andéis","anden","anduviera","anduvieras","anduviéramos","anduvierais","anduvieran","anduviese","anduvieses","anduviésemos","anduvieseis","anduviesen","anduviere","anduvieres","anduviéremos","anduviereis","anduvieren","andad","andado","quedo","quedas","queda","quedamos","quedáis","quedan","quedé","quedasteis","quedaron","quedaba","quedabas","quedábamos","quedabais","quedaban","quedaría","quedarías","quedaríamos","quedaríais","quedarían","quedaré","quedarás","quedará","quedaremos","quedaréis","quedarán","quede","quedes","quedemos","quedéis","queden","quedara","quedaras","quedáramos","quedarais","quedaran","quedase","quedases","quedásemos","quedaseis","quedasen","quedare","quedares","quedáremos","quedareis","quedaren","quedad","quedado","hallo","hallas","halla","hallamos","halláis","hallan","hallé","hallaste","halló","hallasteis","hallaron","hallaba","hallabas","hallábamos","hallabais","hallaban","hallaría","hallarías","hallaríamos","hallaríais","hallarían","hallaré","hallarás","hallará","hallaremos","hallaréis","hallarán","halle","halles","hallemos","halléis","hallen","hallara","hallaras","halláramos","hallarais","hallaran","hallase","hallases","hallásemos","hallaseis","hallasen","hallare","hallares","halláremos","hallareis","hallaren","hallad","hallado","vengo","vienes","viene","venimos","venis","vienen","vine","viniste","vino","vinimos","vinisteis","vinieron","venía","vanías","verníamos","veníais","venían","vendría","vendrías","vendríamos","vendíais","vendrían","vendré","vendrás","vendrá","vendremos","vendréis","vendrán","venga","vengas","vengamos","vengáis","vengan","viniera","vinieras","viniéramos","vinierais","vinieran","viniese","vinieses","viniésemos","vinieseis","viniesen","viniere","vinieres","viniéremos","viniereis","vinieren","ven","venid","venido","abro","abres","abre","abrismos","abrís","abren","abrí","abriste","abrió","abristeis","abrieron","abría","abrías","abríais","abrían","abriría","abrirías","abriríamos","abriríais","abrirían","abriré","abrirás","abrirá","abriremos","abriréis","abrirán","abra","abras","abramos","abráis","abran","abriera","abrieras","abriéramos","abrierais","abrieran","abriese","abrieses","abriésemos","abrieseis","abriesen","abriere","abrieres","abriéremos","abriereis","abrieren","abrid","abierto","voy","vas","va","vamos","vais","van","iba","ibas","íbamos","ibais","iban","iría","irías","iríamos","iríais","irían","iré","irás","irá","iremos","iréis","irán","vaya","vayas","vayamos","vayáis","vayan","ve","id","ido","acabo","acabas","acaba","acabamos","acabáis","acaban","acabé","acabaste","acabó","acabasteis","acabaron","acababa","acababas","acabábamos","acababais","acababan","acabaría","acabarías","acabaríamos","acabaríais","acabarían","acabaré","acabarás","acabará","acabaremos","acabaréis","acabarán","acabe","acabes","acabemos","acabéis","acaben","acabara","acabaras","acabáramos","acabarais","acabaran","acabase","acabases","acabásemos","acabaseis","acabasen","acabare","acabares","acabáremos","acabareis","acabaren","acabad","acabado","llevo","llevas","lleva","llevamos","lleváis","llevan","llevé","llevaste","llevó","llevasteis","llevaron","llevaba","llevabas","llevábamos","llevabais","llevaban","llevaría","llevarías","llevaríamos","llevaríais","llevarían","llevaré","llevarás","llevará","llevaremos","llevaréis","llevarán","lleve","lleves","llevemos","llevéis","lleven","llevara","llevaras","lleváramos","llevarais","llevaran","llevase","llevases","llevásemos","llevaseis","llevasen","llevare","llevares","lleváremos","llevareis","llevaren","llevad","llevado","alcanzo","alcanzas","alcanza","alcanzamos","alcanzáis","alcanzan","alcancé","alcanzaste","alcanzó","alcanzasteis","alcanzaron","alcanzaba","alcanzabas","alcanzábamos","alcanzabais","alcanzaban","alcanzaría","alcanzarías","alcanzaríamos","alcanzaríais","alcanzarían","alcanzaré","alcanzarás","alcanzará","alcanzaremos","alcanzaréis","alcanzarán","alcance","alcances","alcancemos","alcancéis","alcancen","alcanzara","alcanzaras","alcanzáramos","alcanzarais","alcanzaran","alcanzase","alcanzases","alcanzásemos","alcanzaseis","alcanzasen","alcanzare","alcanzares","alcanzáremos","alcanzareis","alcanzaren","alcanzad","alcanzado","digo","dices","dice","decimos","decís","dicen","dije","dijiste","dijo","dijimos","dijisteis","dijeron","decía","decías","decíamos","decíais","decían","diría","dirías","diríamos","diríais","dirían","diré","dirás","dirá","diremos","diréis","dirán","diga","digas","digamos","digáis","digan","dijera","dijeras","dijéramos","dijerais","dijeran","dijese","dijeses","dijésemos","dijeseis","dijesen","dijere","dijeres","dijéremos","dijereis","dijeren","di","decid","dicho","continúo","continúas","continúa","continuamos","continuáis","continúan","continué","continuaste","continuó","continuasteis","continuaron","continuaba","continuabas","continuábamos","continuabais","continuaban","continuaría","continuarías","continuaríamos","continuaríais","continuarían","continuaré","continuarás","continuará","continuaremos","continuaréis","continuarán","continúe","continúes","continuemos","continuéis","continúen","continuara","continuaras","continuáramos","continuarais","continuaran","continuase","continuases","continuásemos","continuaseis","continuasen","continuare","continuares","continuáremos","continuareis","continuaren","continuad","continuado","resulto","resultas","resulta","resultamos","resultáis","resultan","resulté","resultaste","resultó","resultasteis","resultaron","resultaba","resultabas","resultábamos","resultabais","resultaban","resultaría","resultarías","resultaríamos","resultaríais","resultarían","resultaré","resultarás","resultará","resultaremos","resultaréis","resultarán","resulte","resultes","resultemos","resultéis","resulten","resultara","resultaras","resultáramos","resultarais","resultaran","resultase","resultases","resultásemos","resultaseis","resultasen","resultare","resultares","resultáremos","resultareis","resultaren","resultad","resultado","puedo","puedes","puede","podemos","podéis","pueden","pude","pudiste","pudo","pudimos","pudisteis","pudieron","podía","podías","podíamos","podíais","podían","podría","podrías","podríamos","podríais","podrían","podré","podrás","podrá","podremos","podréis","podrán","pueda","puedas","podamos","podáis","puedan","pudiera","pudieras","pudiéramos","pudierais","pudieran","pudiese","pudieses","pudiésemos","pudieseis","pudiesen","pudiere","pudieres","pudiéremos","pudiereis","pudieren","poded","podido","quiero","quieres","quiere","queremos","queréis","quieren","quise","quisiste","quiso","quisimos","quisisteis","quisieron","quería","querías","queríamos","queríais","querían","querría","querrías","querríamos","querríais","querrían","querré","querrás","querrá","querremos","querréis","querrán","quiera","quieras","queramos","queráis","quieran","quisiera","quisieras","quisiéramos","quisierais","quisieran","quisiese","quisieses","quisiésemos","quisieseis","quisiesen","quisiere","quisieres","quisiéremos","quisiereis","quisieren","quered","querido","sabes","sabe","sabemos","sabéis","saben","supe","supiste","supo","supimos","supisteis","supieron","sabía","sabías","sabíamos","sabíais","sabían","sabría","sabrías","sabríamos","sabríais","sabrían","sabré","sabrás","sabrá","sabremos","sabréis","sabrán","sepa","sepas","sepamos","sepáis","sepan","supiera","supieras","supiéramos","supierais","supieran","supiese","supieses","supiésemos","supieseis","supiesen","supiere","supieres","supiéremos","supiereis","supieren","sabed","sabido","suelo","sueles","suele","solemos","soléis","suelen","solí","soliste","solió","solimos","solisteis","solieron","solía","solías","solíamos","solíais","solían","solería","solerías","soleríamos","soleríais","solerían","soleré","solerás","solerá","soleremos","soleréis","solerán","suela","suelas","solamos","soláis","suelan","soliera","solieras","soliéramos","solierais","solieran","soliese","solieses","soliésemos","solieseis","soliesen","soliere","solieres","soliéremos","soliereis","solieren","soled","solido","necesito","necesitas","necesitamos","necesitáis","necesitan","necesité","necesitaste","necesitó","necesitasteis","necesitaron","necesitaba","necesitabas","necesitábamos","necesitabais","necesitaban","necesitaría","necesitarías","necesitaríamos","necesitaríais","necesitarían","necesitaré","necesitarás","necesitará","necesitaremos","necesitaréis","necesitarán","necesite","necesites","necesitemos","necesitéis","necesiten","necesitara","necesitaras","necesitáramos","necesitarais","necesitaran","necesitase","necesitases","necesitásemos","necesitaseis","necesitasen","necesitare","necesitares","necesitáremos","necesitareis","necesitaren","necesita","necesitad","necesitado"],h=["haber","deber","empezar","comenzar","seguir","tener","andar","quedar","hallar","venir","abrir","ir","acabar","llevar","alcanzar","decir","continuar","resultar","poder","querer","saber","soler","necesitar"],v=["estoy","estás","está","estamos","estáis","están","estuve","estuviste","estuvo","estuvimos","estuvisteis","estuvieron","estuba","estabas","estábamos","estabais","estaban","estraría","estarías","estaríamos","estaríais","estarían","estaré","estarás","estará","estaremos","estaréis","estarán","esté","estés","estemos","estéis","estén","estuviera","estuviese","estuvieras","estuviéramos","estuvierais","estuvieran","estuvieses","estuviésemos","estuvieseis","estuviesen","estuviere","estuvieres","estuviéremos","estuviereis","estuvieren","estad","estado"],k=["soy","eres","es","somos","sois","son","fui","fuiste","fuimos","fuisteis","fueron","era","eras","éramos","erais","eran","sería","serías","seríamos","seríais","serían","seré","serás","seremos","seréis","serán","sea","seas","seamos","seáis","sean","fueras","fuéramos","fuerais","fueran","fuese","fueses","fuésemos","fueseis","fuesen","fuere","fueres","fuéremos","fuereis","fueren","sé","sed","sido"],j=["estar"],_=["ser"],x=["a","ante","abajo","adonde","al","allende","alrededor","amén","antes","arriba","aun","bajo","cabe","cabo","con","contigo","contra","de","dejante","del","dentro","desde","donde","durante","en","encima","entre","excepto","fuera","hacia","hasta","incluso","mediante","más","opuesto","par","para","próximo","salvo","según","sin","so","sobre","tras","versus","vía"],q=["cerca"],E=["o","y","entonces","e","u","ni","bien","ora"],A=["igual"],O=["apenas","segun","que"],T=["apunto","apunta","confieso","confiesa","confesaba","revelado","revelo","revela","revelaba","declarado","declaro","declara","declaba","señalo","señala","señalaba","declaraba","comento","comenta"],S=["básicamente","esencialmente","primeramente","siempre","nunca","ahora","quizá","acaso","inclusive","probablemente","verdaderamente","seguramente","jamás","obviamente","indiscutiblement","inmediatamente","previamente"],M=["muy","tan","completamente","suficiente","tal","tales"],P=["hago","haces","hace","hacemos","hacéis","hacen","hice","hiciste","hizo","hicimos","hicisteis","hicieron","hacía","hacías","hacíamos","hacíais","hacían","haría,","harías","haríamos","haríais","harían","haré","harás","hará","haremos","haréis","harán","haga","hagas","hagamos","hagáis","hagan","hiciera","hicieras","hiciéramos","hicierais","hicieran","hiciese","hicieses","hiciésemos","hicieseis","hiciesen","hiciere","hicieres","hiciéremos","hiciereis","hicieren","haz","haced","hecho","parezco","pareces","parece","parecemos","parecéis","parecen","parecí","pareciste","pareció","parecimos","parecisteis","parecieron","parecía","parecías","parecíamos","parecíais","parecían","parecería","parecerías","pareceríamos","pareceríais","parecerían","pareceré","parecerás","parecerá","pareceremos","pareceréis","parecerán","parezca","parezcas","parezcamos","parezcáis","parezcan","pareciera","parecieras","pareciéramos","parecierais","parecieran","pareciese","parecieses","pareciésemos","parecieseis","pareciesen","pareciere","parecieres","pareciéremos","pareciereis","parecieren","pareced","parecido","iba","ibais","iban","ibas","id","ido","iremos","irá","irán","irás","iré","iréis","iría","iríais","iríamos","irían","irías","va","vais","vamos","van","vas","vaya","vayamos","vayan","vayas","vayáis","ve","voy","yendo","íbamos"],C=["hacer","parecer","ir"],R=["enfrente","claro","bueno","mejor","mejores","buena","buenos","buenas","óptimo","óptimos","óptimas","bonísimo","bonísima","bonísimos","bonísimas","buenísimo","buenísima","buenísimos","buenísimas","buenérrimo","buenérrima","buenérrimos","buenérrimas","nuevo","nueva","nuevos","nuevas","novísimo","novísima","novísimos","novísimas","nuevísimo","nuevísima","nuevísimos","nuevísimas","viejo","viejos","vieja","viejas","anterior","grande","gran","grandes","mayores","mayor","máximo","máxima","grandísimo","grandísima","máximos","máximas","grandísimos","grandísimas","fácil","fáciles","rápido","rápida","rápidos","rápidas","lejos","lejas","lejote","lejotes","difícil","difíciles","propio","propios","propia","propias","largo","larga","largos","largas","bajos","baja","bajas","inferior","ínfimo","ínfima","ínfimos","ínfimas","bajísimo","bajísima","bajísimos","bajísimas","alto","alta","altos","altas","superior","superiores","supremo","suprema","supremos","supremas","sumo","suma","sumos","sumas","altísimo","altísima","altísimos","altísimas","regular","regulares","normal","pequeño","pequeña","pequeños","pequeñas","menor","pequeñísimo","pequeñísima","pequeñísimos","pequeñísimas","mínimo","mínima","mínimos","mínimas","diminuta","diminuto","diminutas","diminutos","chiquitito","chiquititos","chiquitita","chiquititas","corta","corto","cortas","cortos","principal","principales","mismo","mismos","misma","mismas","capaz","capaces","cierta","cierto","ciertas","ciertos","certísimos","certísimas","ciertísimo","ciertísima","ciertísimos","ciertísimas","llamado","llamada","llamados","llamadas","mayormente","reciente","recientes","completa","completo","completas","completos","absoluta","absoluto","absolutas","absolutos","últimamente","posible","común","comúnes","comúnmente","constantemente","continuamente","directamente","fácilmente","casi","ligeramente","estima","estimada","estimado","aproximada","aproximadamente","última","últimas","último","últimos","diferente","diferentes","similar","mal","malo","malos","mala","malas","peor","pésimo","pésima","malísimo","malísima","pésimos","pésimas","malísimos","malísimas","perfectamente","excelente","final","general"],D=["ah","eh","ejem","ele","achís","adiós","agur","ajá","ajajá","ala","alá","albricias","aleluya","alerta","alirón","aló","amalaya","ar","aro","arrarray","arre","arsa","atatay","aúpa","ax","ay","ayayay","bah","banzai","barajo","bla","bravo","buf","bum","ca","caguendiós","canastos","caracho","caracoles","carajo","caramba","carape","caray","cáscaras","cáspita","cataplum","ce","chao","chau","che","chis","chist","chitón","cho","chucho","chus","cielos","clo","coche","cochi","cojones","concho","coño","córcholis","cuchí","cuidado","cuz","demonio","demontre","despacio","diablo","diantre","dios","ea","epa","equilicuá","estúpido","eureka","evohé","exacto","fantástico","firmes","fo","forte","gua","gualá","guarte","guay","hala","hale","he","hi","hin","hola","hopo","huesque","huiche","huichó","huifa","hurra","huy","ja","jajajá","jajay","jaque","jau","jo","jobar","joder","jolín","jopo","leñe","listo","malhayas","mamola","mecachis","miéchica","mondo","moste","mutis","nanay","narices","oh","ojalá","ojo","okay","ole","olé","órdiga","oste","ostras","ox","oxte","paf","pardiez","paso","pucha","puf","puff","pumba","puñeta","quia","quiúbole","recórcholis","rediez","rediós","salve","sanseacabó","sniff","socorro","ta","tararira","tate","tururú","uf","uh","ui","upa","uste","uy","victoria","vítor","viva","za","zambomba","zapateta","zape","zas"],F=["kg","mg","gr","g","km","m","l","ml","cl"],B=["minuto","minutos","hora","horas","día","días","semana","semanas","mes","meses","año","años","hoy","mañana","ayer"],$=["cosa","cosas","manera","maneras","caso","casos","pieza","piezas","vez","veces","parte","partes","porcentaje","instancia","aspecto","aspectos","punto","puntos","objeto","objectos","persona","personas"],I=["no","euros","sí","síes","noes"],L=["sra","sras","srta","sr","sres","dra","dr","profa","prof"],W=["jr","sr"]},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){return{filteredAtBeginning:R,filteredAtEnding:[].concat(r,T,h,k,_,C,D),filteredAtBeginningAndEnding:[].concat(n,x,q,c,M,p,u),filteredAnywhere:[].concat(i,s,d,l,F,o,b,v,j,O,P,z,E,A,g,m,w,f,L,y,B,$,I),cannotDirectlyPrecedePassiveParticiple:[].concat(n,x,d,u,z,o,r,P,C,O,g,m,l,w),cannotBeBetweenPassiveAuxiliaryAndParticiple:[].concat(v,k),all:[].concat(n,o,r,c,u,s,d,l,p,z,m,w,g,y,f,b,h,v,k,j,_,x,q,E,A,O,T,i,S,M,P,C,F,R,D,B,I,L,$,W)}};const i=(0,function(a){return a&&a.__esModule?a:{default:a}}(t(268)).default)().singleWords,n=["il","i","la","le","lo","gli","un","uno","una"],o=["due","tre","quattro","cinque","sette","otto","nove","dieci","undici","dodici","tredici","quattordici","quindici","sedici","diciassette","diciotto","diciannove","venti","cento","mille","mila","duemila","tremila","quattromila","cinquemila","seimila","settemila","ottomila","novemila","diecimila","milione","milioni","miliardo","miliardi"],r=["prima","primi","prime","secondo","seconda","secondi","seconde","terzo","terza","terzi","terze","quarto","quarta","quarti","quarte","quinto","quinta","quinti","quinte","sesto","sesta","sesti","seste","settimo","settima","settimi","settime","ottavo","ottava","ottavi","ottave","nono","nona","noni","none","decimo","decima","decimi","decime","undicesimo","undicesima","undicesimi","undicesime","dodicesimo","dodicesima","dodicesimi","dodicesime","tredicesimo","tredicesima","tredicesimi","tredicesime","quattordicesimo","quattordicesima","quattordicesimi","quattordicesime","quindicesimo","quindicesima","quindicesimi","quindicesime","sedicesimo","sedicesima","sedicesimi","sedicesime","diciassettesimo","diciassettesima","diciassettesimi","diciassettesime","diciannovesimo","diciannovesima","diciannovesimi","diciannovesime","ventesimo","ventesima","ventesimi","ventesime"],s=["io","tu","egli","esso","lui","ella","essa","lei","noi","voi","essi","esse","loro"],d=["mi","ti","si","ci","vi","li","me","te","se","glie","glielo","gliela","glieli","gliele","gliene","ce","ve"],l=["sé"],c=["ciò","codesto","codesta","codesti","codeste","colei","colui","coloro","costei","costui","costoro","medesimo","medesima","medesimi","medesime","questo","questa","questi","queste","quello","quella","quelli","quelle","quel","quei","quegli"],u=["mio","mia","miei","mie","tuo","tua","tuoi","tue","suo","sua","suoi","sue","nostro","nostra","nostri","nostre","vostro","vostra","vostri","vostre"],p=["affatto","alcun","alcuna","alcune","alcuni","alcuno","bastantemente","grandemente","massimamente","meno","minimamente","molta","molte","molti","moltissimo","molto","nessun","nessuna","nessuno","niente","nulla","ogni","più","po'","poca","poche","pochi","poco","pochissime","pochissimi","qualche","qualsiasi","qualunque","quintali","rara","rarissima","rarissimo","raro","spesso","spessissimo","sufficientemente","taluno","taluna","taluni","talune","tanta","tante","tanti","tantissime","tantissimi","tanto","tonnellate","troppa","troppe","troppi","troppo","tutta","tutte","tutti","tutto"],z=["alcunché","alcunchè","altro","altra","altri","altre","certa","certi","certe","checché","checchè","chicchessia","chiunque","ciascuno","ciascuna","ciascun","diverso","diversa","diversi","diverse","parecchio","parecchia","parecchi","parecchie","qualcosa","qualcuno","qualcuna","vario","varia","vari","varie"],g=["che","cosa","cui","qual","quale","quali"],m=["chi","quanta","quante","quanti","quanto"],w=["com'è","com'era","com'erano","donde","d'onde","dove","dov'è","dov'era","dov'erano","dovunque"],y=["ne"],f=["accanto","altrove","attorno","dappertutto","giù","là","laggiù","lassù","lì","ovunque","qua","quaggiù","quassù","qui"],b=["vengano","vengo","vengono","veniamo","veniate","venimmo","venisse","venissero","venissi","venissimo","veniste","venisti","venite","veniva","venivamo","venivano","venivate","venivi","venivo","venne","vennero","venni","verrà","verrai","verranno","verrebbe","verrebbero","verrei","verremmo","verremo","verreste","verresti","verrete","verrò","viene","vieni"],h=["venire","venir"],v=["abbi","abbia","abbiamo","abbiano","abbiate","abbiente","avemmo","avendo","avente","avesse","avessero","avessi","avessimo","aveste","avesti","avete","aveva","avevamo","avevano","avevate","avevi","avevo","avrà","avrai","avranno","avrebbe","avrebbero","avrei","avremmo","avremo","avreste","avresti","avrete","avrò","avuto","ebbe","ebbero","ebbi","ha","hai","hanno","ho","l'abbi","l'abbia","l'abbiamo","l'abbiano","l'abbiate","l'abbiente","l'avemmo","l'avendo","l'avente","l'avesse","l'avessero","l'avessi","l'avessimo","l'aveste","l'avesti","l'avete","l'aveva","l'avevamo","l'avevano","l'avevate","l'avevi","l'avevo","l'avrà","l'avrai","l'avranno","l'avrebbe","l'avrebbero","l'avrei","l'avremmo","l'avremo","l'avreste","l'avresti","l'avrete","l'avrò","l'avuto","l'ebbe","l'ebbero","l'ebbi","l'ha","l'hai","l'hanno","l'ho","possa","possano","possiamo","possiate","posso","possono","poté","potei","potemmo","potendo","potente","poterono","potesse","potessero","potessi","potessimo","poteste","potesti","potete","potette","potettero","potetti","poteva","potevamo","potevano","potevate","potevi","potevo","potrà","potrai","potranno","potrebbe","potrebbero","potrei","potremmo","potremo","potreste","potresti","potrete","potrò","potuto","può","puoi","voglia","vogliamo","vogliano","vogliate","voglio","vogliono","volemmo","volendo","volente","volesse","volessero","volessi","volessimo","voleste","volesti","volete","voleva","volevamo","volevano","volevate","volevi","volevo","volle","vollero","volli","voluto","vorrà","vorrai","vorranno","vorrebbe","vorrebbero","vorrei","vorremmo","vorremo","vorreste","vorresti","vorrete","vorrò","vuoi","vuole","debba","debbano","debbono","deva","deve","devi","devo","devono","dobbiamo","dobbiate","dové","dovei","dovemmo","dovendo","doverono","dovesse","dovessero","dovessi","dovessimo","doveste","dovesti","dovete","dovette","dovettero","dovetti","doveva","dovevamo","dovevano","dovevate","dovevi","dovevo","dovrà","dovrai","dovranno","dovrebbe","dovrebbero","dovrei","dovremmo","dovremo","dovreste","dovresti","dovrete","dovrò","dovuto","sa","sai","sanno","sapemmo","sapendo","sapesse","sapessero","sapessi","sapessimo","sapeste","sapesti","sapete","sapeva","sapevamo","sapevano","sapevate","sapevi","sapevo","sappi","sappia","sappiamo","sappiano","sappiate","saprà","saprai","sapranno","saprebbe","saprebbero","saprei","sapremmo","sapremo","sapreste","sapresti","saprete","saprò","saputo","seppe","seppero","seppi","so","soglia","sogliamo","sogliano","sogliate","soglio","sogliono","solesse","solessero","solessi","solessimo","soleste","solete","soleva","solevamo","solevano","solevate","solevi","solevo","suoli","sta","stai","stando","stanno","stante","starà","starai","staranno","staremo","starete","starò","stava","stavamo","stavano","stavate","stavi","stavo","stemmo","stessero","stessimo","steste","stesti","stette","stettero","stetti","stia","stiamo","stiano","stiate","sto"],k=["avere","l'avere","aver","l'aver","potere","poter","volere","voler","dovere","dover","sapere","saper","solere","stare","star"],j=["è","e'","era","erano","eravamo","eravate","eri","ero","essendo","essente","fosse","fossero","fossi","fossimo","foste","fosti","fu","fui","fummo","furono","sarà","sarai","saranno","sarebbe","sarebbero","sarei","saremmo","saremo","sareste","saresti","sarete","sarò","sei","sia","siamo","siano","siate","siete","sii","sono","stata","state","stati","stato"],_=["essere","esser"],x=["di","del","dello","della","dei","degli","delle","a","ad","al","allo","alla","ai","agli","alle","da","dal","dallo","dalla","dai","dagli","dalle","in","nel","nello","nella","nei","negli","nelle","con","col","collo","colla","coi","cogli","colle","su","sul","sullo","sulla","sui","sugli","sulle","per","pel","pello","pella","pei","pegli","tra","fra","attraverso","circa","contro","davanti","dentro","dietro","entro","escluso","fuori","insieme","intorno","lontano","lungo","mediante","oltre","presso","rasente","riguardo","senza","sopra","sotto","tramite","vicino"],q=["e","ed","o","oppure"],E=["tale","l'uno","l'altro","tali","dall'altra"],A=["anziché","anzichè","fuorché","fuorchè","giacché","giacchè","laddove","modo","ove","qualora","quantunque","volta"],O=["dice","dicono","diceva","dicevano","disse","dissero","detto","domanda","domandano","domandava","domandavano","domandò","domandarono","domandato","afferma","affermato","aggiunge","aggiunto","ammette","ammesso","annuncia","annunciato","assicura","assicurato","chiede","chiesto","commentato","conclude","concluso","continua","continuato","denuncia","denunciato","dichiara","dichiarato","esordisce","esordito","inizia","iniziato","precisato","prosegue","proseguito","racconta","raccontato","recita","recitato","replica","replicato","risponde","risposto","rimarca","rimarcato","rivela","rivelato","scandisce","scandito","scrive","scritto","segnala","segnalato","sottolinea","sottolineato","spiega","spiegato"],T=["affermare","aggiungere","ammettere","annunciare","assicurare","chiedere","commentare","concludere","continuare","denunciare","dichiarare","esordire","iniziare","precisare","proseguire","raccontare","recitare","replicare","rispondere","rimarcare","rivelare","scandire","scrivere","segnalare","sottolineare","spiegare"],S=["eventualmente","forse","mai","probabilmente"],M=["addirittura","assolutamente","ben","estremamente","mica","nemmeno","quasi"],P=["fa","fa'","faccia","facciamo","facciano","facciate","faccio","facemmo","facendo","facente","facesse","facessero","facessi","facessimo","faceste","facesti","faceva","facevamo","facevano","facevate","facevi","facevo","fai","fanno","farà","farai","faranno","farebbe","farebbero","farei","faremmo","faremo","fareste","faresti","farete","farò","fate","fatto","fece","fecero","feci","fo"],C=["fare"],R=["anteriore","anteriori","precedente","precedenti","facile","facili","facilissimo","facilissima","facilissimi","facilissime","semplice","semplici","semplicissima","semplicissimo","semplicissimi","semplicissime","semplicemente","rapido","rapida","rapidi","rapide","veloce","veloci","differente","difficile","difficili","difficilissimo","difficilissima","difficilissimi","difficilissime","basso","bassa","bassi","basse","alto","alta","alti","alte","normale","normali","normalmente","corto","corta","corti","corte","breve","brevi","recente","recenti","totale","totali","completo","completa","completi","complete","possibile","possibili","ultimo","ultima","ultimi","ultime","differenti","simile","simili","prossimo","prossima","prossimi","prossime","giusto","giusta","giusti","giuste","giustamente","cosiddetto","bene","meglio","benissimo","male","peggio","malissimo","comunemente","constantemente","direttamente","esattamente","facilmente","generalmente","leggermente","personalmente","recentemente","sinceramente","solamente","avanti","indietro"],D=["nuovo","nuova","nuovi","nuove","vecchio","vecchia","vecchi","vecchie","bello","bella","belli","belle","bellissimo","bellissima","bellissimi","bellissime","buono","buona","buoni","buone","buonissimo","buonissima","buonissimi","buonissime","grande","grandi","grandissimo","grandissima","grandissimi","grandissime","lunga","lunghi","lunghe","piccolo","piccola","piccoli","piccole","piccolissimo","piccolissima","piccolissimi","piccolissime","proprio","propria","propri","proprie","solito","solita","soliti","solite","stesso","stessa","stessi","stesse"],F=["accidenti","acciderba","ah","aah","ahi","ahia","ahimé","bah","beh","boh","ca","caspita","chissà","de'","diamine","ecco","eh","ehi","eeh","ehilà","ehm","gna","ih","magari","macché","macchè","mah","mhm","nca","neh","oibò","oh","ohe","ohé","ohilá","ohibò","ohimé","okay","ok","olà","poh","pota","puah","sorbole","to'","toh","ts","uff","uffa","uh","uhi"],B=["cc","g","hg","hl","kg","l","prs","pz","q.b.","qb","ta","tz"],$=["minuto","minuti","ora","ore","giorno","giorni","giornata","giornate","settimana","settimane","mese","mesi","anno","anni","oggi","domani","ieri","stamattina","stanotte","stasera","tardi"],I=["aspetto","aspetti","caso","casi","cose","idea","idee","istanza","maniera","oggetto","oggetti","parte","parti","persona","persone","pezzo","pezzi","punto","punti","sorta","sorte","tema","temi","volte"],L=["sì","no","non","€","euro","euros","ecc","eccetera"],W=["sig.na","sig.ra","sig","sigg","dr","dr.ssa","dott","dott.ssa","prof","prof.ssa","gent","gent.mo","gent.mi","gent.ma","gent.me","egr","egr.i","egr.ia","egr.ie","preg.mo","preg.mo","preg.ma","preg.me","ill","ill.mo","ill.mi","ill.ma","ill.me","cav","on","spett"]},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){return{filteredAtEnding:[].concat(r,v,P,j,O,R),filteredAtBeginning:C,filteredAtBeginningAndEnding:[].concat(n,_,x,c,S,p,u),filteredAnywhere:[].concat(i,s,l,d,z,D,o,k,A,h,M,g,q,E,y,m,b,I,f,F,B,$),cannotDirectlyPrecedePassiveParticiple:[].concat(n,_,d,l,u,z,g,w,y,o,r,M,A,P),cannotBeBetweenPassiveAuxiliaryAndParticiple:[].concat(h,v),all:[].concat(n,o,r,c,u,z,s,l,m,p,g,w,f,b,h,v,y,k,j,_,x,q,E,A,O,i,T,S,M,P,D,C,R,F,$,I,B,L,W,d)}};const i=(0,function(a){return a&&a.__esModule?a:{default:a}}(t(269)).default)().singleWords,n=["le","la","les","un","une","des","aux","du","au","d'un","d'une","l'un","l'une"],o=["deux","trois","quatre","cinq","six","sept","huit","neuf","dix","onze","douze","treize","quatorze","quinze","seize","dix-sept","dix-huit","dix-neuf","vingt","trente","quarante","cinquante","soixante","soixante-dix","quatre-vingt","quatre-vingt-dix","septante","huitante","octante","nonante","cent","mille","million","milliard"],r=["second","secondes","deuxième","deuxièmes","troisième","troisièmes","quatrième","quatrièmes","cinquième","cinquièmes","sixième","sixièmes","septième","septièmes","huitième","huitièmes","neuvième","neuvièmes","dixième","dixièmes","onzième","onzièmes","douzième","douzièmes","treizième","treizièmes","quatorzième","quatorzièmes","quinzième","quinzièmes","seizième","seizièmes","dix-septième","dix-septièmes","dix-huitième","dix-huitièmes","dix-neuvième","dix-neuvièmes","vingtième","vingtièmes"],s=["je","tu","il","elle","on","nous","vous","ils","elles","qu'il","qu'elle","qu'ils","qu'elles","qu'on","d'elle","d'elles"],d=["moi","toi","lui","soi","eux","d'eux","qu'eux"],l=["me","te"],c=["celui","celle","ceux","celles","ce","celui-ci","celui-là","celle-ci","celle-là","ceux-ci","ceux-là","celles-ci","celles-là","ceci","cela","ça","cette","cet","ces"],u=["mon","ton","son","ma","ta","sa","mes","tes","ses","notre","votre","leur","nos","vos","leurs"],p=["beaucoup","peu","quelque","quelques","tous","tout","toute","toutes","plusieurs","plein","chaque","suffisant","suffisante","suffisantes","suffisants","faible","moins","tant","plus","divers","diverse","diverses"],z=["se"],g=["aucun","aucune","autre","autres","d'autres","certain","certaine","certaines","certains","chacun","chacune","même","mêmes","quelqu'un","quelqu'une","quelques'uns","quelques'unes","autrui","nul","personne","quiconque","rien","d'aucunes","d'aucuns","nuls","nules","l'autre","tel","telle","tels","telles"],m=["qui","que","lequel","laquelle","auquel","auxquels","auxquelles","duquel","desquels","desquelles","dont","où","quoi"],w=["combien","comment","pourquoi","d'où"],y=["quel","quels","quelle"],f=["y","n'y"],b=["là","ici","d'ici","voici"],h=["a","a-t-elle","a-t-il","a-t-on","ai","ai-je","aie","as","as-tu","aura","aurai","auraient","aurais","aurait","auras","aurez","auriez","aurons","auront","avaient","avais","avait","avez","avez-vous","aviez","avions","avons","avons-nous","ayez","ayons","eu","eûmes","eurent","eus","eut","eûtes","j'ai","j'aurai","j'avais","j'eus","ont","ont-elles","ont-ils","vais","vas","va","allons","allez","vont","vais-je","vas-tu","va-t-il","va-t-elle","va-t-on","allons-nous","allez-vous","vont-elles","vont-ils","allé","allés","j'allai","allai","allas","alla","allâmes","allâtes","allèrent","j'allais","allais","allait","allions","alliez","allaient","j'irai","iras","ira","irons","irez","iront","j'aille","aille","ailles","aillent","j'allasse","allasse","allasses","allât","allassions","allassiez","allassent","j'irais","irais","irait","irions","iriez","iraient","allant","viens","vient","venons","venez","viennent","viens-je","viens-de","vient-il","vient-elle","vient-on","venons-nous","venez-vous","viennent-elles","viennent-ils","vins","vint","vînmes","vîntes","vinrent","venu","venus","venais","venait","venions","veniez","venaient","viendrai","viendras","viendra","viendrons","viendrez","viendront","vienne","viennes","vinsse","vinsses","vînt","vinssions","vinssiez","vinssent","viendrais","viendrait","viendrions","viendriez","viendraient","venant","dois","doit","devons","devez","doivent","dois-je","dois-tu","doit-il","doit-elle","doit-on","devons-nous","devez-vous","doivent-elles","doivent-ils","dus","dut","dûmes","dûtes","durent","dû","devais","devait","devions","deviez","devaient","devrai","devras","devra","devrons","devrez","devront","doive","doives","dusse","dusses","dût","dussions","dussiez","dussent","devrais","devrait","devrions","devriez","devraient","peux","peut","pouvons","pouvez","peuvent","peux-je","peux-tu","peut-il","peut-elle","peut-on","pouvons-nous","pouvez-vous","peuvent-ils","peuvent-elles","pus","put","pûmes","pûtes","purent","pu","pouvais","pouvait","pouvions","pouviez","pouvaient","pourrai","pourras","pourra","pourrons","pourrez","pourront","puisse","puisses","puissions","puissiez","puissent","pusse","pusses","pût","pussions","pussiez","pussent","pourrais","pourrait","pourrions","pourriez","pourraient","pouvant","semble","sembles","semblons","semblez","semblent","semble-je","sembles-il","sembles-elle","sembles-on","semblons-nous","semblez-vous","semblent-ils","semblent-elles","semblai","semblas","sembla","semblâmes","semblâtes","semblèrent","semblais","semblait","semblions","sembliez","semblaient","semblerai","sembleras","semblera","semblerons","semblerez","sembleront","semblé","semblasse","semblasses","semblât","semblassions","semblassiez","semblassent","semblerais","semblerait","semblerions","sembleriez","sembleraient","parais","paraît","ait","paraissons","paraissez","paraissent","parais-je","parais-tu","paraît-il","paraît-elle","paraît-on","ait-il","ait-elle","ait-on","paraissons-nous","paraissez-vous","paraissent-ils","paraissent-elles","parus","parut","parûmes","parûtes","parurent","paraissais","paraissait","paraissions","paraissiez","paraissaient","paraîtrai","paraîtras","paraîtra","paraîtrons","paraîtrez","paraîtront","paru","paraisse","paraisses","parusse","parusses","parût","parussions","parussiez","parussent","paraîtrais","paraîtrait","paraîtrions","paraîtriez","paraîtraient","paraitrais","paraitrait","paraitrions","paraitriez","paraitraient","paraissant","mets","met","mettons","mettez","mettent","mets-je","mets-tu","met-il","met-elle","met-on","mettons-nous","mettez-vous","mettent-ils","mettent-elles","mis","mit","mîmes","mîtes","mirent","mettais","mettait","mettions","mettiez","mettaient","mettrai","mettras","mettra","mettrons","mettrez","mettront","mette","mettes","misse","misses","mît","missions","missiez","missent","mettrais","mettrait","mettrions","mettriez","mettraient","mettant","finis","finit","finissons","finissez","finissent","finis-je","finis-tu","finit-il","finit-elle","finit-on","finissons-nous","finissez-vous","finissent-ils","finissent-elles","finîmes","finîtes","finirent","finissais","finissait","finissions","finissiez","finissaient","finirai","finiras","finira","finirons","finirez","finiront","fini","finisse","finisses","finît","finirais","finirait","finirions","finiriez","finiraient","finissant","n'a","n'ai","n'aie","n'as","n'aura","n'aurai","n'auraient","n'aurais","n'aurait","n'auras","n'aurez","n'auriez","n'aurons","n'auront","n'avaient","n'avais","n'avait","n'avez","n'avez-vous","n'aviez","n'avions","n'avons","n'avons-nous","n'ayez","n'ayons","n'ont","n'ont-elles","n'ont-ils","n'allons","n'allez","n'allais","n'allait","n'allions","n'alliez","n'allaient","n'iras","n'ira","n'irons","n'irez","n'iront","qu'a"],v=["avoir","aller","venir","devoir","pouvoir","sembler","paraître","paraitre","mettre","finir","d'avoir","d'aller","n'avoir","l'avoir"],k=["suis","es","est","est-ce","n'est","sommes","êtes","sont","suis-je","es-tu","est-il","est-elle","est-on","sommes-nous","êtes-vous","sont-ils","sont-elles","étais","était","étions","étiez","étaient","serai","seras","sera","serons","serez","seront","serais","serait","serions","seriez","seraient","sois","soit","soyons","soyez","soient","été","n'es","n'est-ce","n'êtes","n'était","n'étais","n'étions","n'étiez","n'étaient","qu'est"],j=["être","d'être"],_=["à","après","d'après","au-delà","au-dessous","au-dessus","avant","avec","concernant","chez","contre","dans","de","depuis","derrière","dès","devant","durant","en","entre","envers","environ","hormis","hors","jusque","jusqu'à","jusqu'au","jusqu'aux","loin","moyennant","outre","par","parmi","pendant","pour","près","quant","sans","sous","sur","travers","vers","voilà"],x=["et","ni","or","ou"],q=["non","pas","seulement","sitôt","aussitôt","d'autre"],E=["afin","autant","comme","d'autant","d'ici","quand","lors","parce","si","tandis"],A=["dit","disent","dit-il","dit-elle","disent-ils","disent-elles","disait","disait-il","disait-elle","disaient-ils","disaient-elles","dirent","demande","demandent","demande-t-il","demande-t-elle","demandent-ils","demandent-elles","demandait","demandaient","demandait-il","demandait-elle","demandaient-ils","demandaient-elles","demanda","demanda-t-il","demanda-t-elle","demandé","pense","pensent","pense-t-il","pense-t-elle","pensent-ils","pensent-elles","pensait","pensaient","pensait-il","pensait-elle","pensaient-ils","pensaient-elles","pensa","pensa-t-il","pensa-t-elle","pensé","affirme","affirme-t-il","affirme-t-elle","affirmé","avoue","avoue-t-il","avoue-t-elle","avoué","concède","concède-t-il","concède-t-elle","concédé","confie","confie-t-il","confie-t-elle","confié","continue","continue-t-il","continue-t-elle","continué","déclame","déclame-t-il","déclame-t-elle","déclamé","déclare","déclare-t-il","déclare-t-elle","déclaré","déplore","déplore-t-il","déplore-t-elle","déploré","explique","explique-t-il","explique-t-elle","expliqué","lance","lance-t-il","lance-t-elle","lancé","narre","narre-t-il","narre-t-elle","narré","raconte","raconte-t-il","raconte-t-elle","raconté","rappelle","rappelle-t-il","rappelle-t-elle","rappelé","réagit","réagit-il","réagit-elle","réagi","répond","répond-il","répond-elle","répondu","rétorque","rétorque-t-il","rétorque-t-elle","rétorqué","souligne","souligne-t-il","souligne-t-elle","souligné","affirme-t-il","affirme-t-elle","ajoute-t-il","ajoute-t-elle","analyse-t-il","analyse-t-elle","avance-t-il","avance-t-elle","écrit-il","écrit-elle","indique-t-il","indique-t-elle","poursuit-il","poursuit-elle","précise-t-il","précise-t-elle","résume-t-il","résume-t-elle","souvient-il","souvient-elle","témoigne-t-il","témoigne-t-elle"],O=["dire","penser","demander","concéder","continuer","confier","déclamer","déclarer","déplorer","expliquer","lancer","narrer","raconter","rappeler","réagir","répondre","rétorquer","souligner","affirmer","ajouter","analyser","avancer","écrire","indiquer","poursuivre","préciser","résumer","témoigner"],T=["encore","éternellement","immédiatement","compris","comprenant","inclus","naturellement","particulièrement","notablement","actuellement","maintenant","ordinairement","généralement","habituellement","d'habitude","vraiment","finalement","uniquement","peut-être","initialement","déjà","c.-à-d","souvent","fréquemment","régulièrement","simplement","éventuellement","quelquefois","parfois","probable","plausible","jamais","toujours","incidemment","accidentellement","récemment","dernièrement","relativement","clairement","évidemment","apparemment","pourvu"],S=["assez","trop","tellement","presque","très","absolument","extrêmement","quasi","quasiment","fort"],M=["fais","fait","faisons","faites","font","fais-je","fait-il","fait-elle","fait-on","faisons-nous","faites-vous","font-ils","font-elles","fis","fit","fîmes","fîtes","firent","faisais","faisait","faisions","faisiez","faisaient","ferai","feras","fera","ferons","ferez","feront","veux","veut","voulons","voulez","veulent","voulus","voulut","voulûmes","voulûtes","voulurent","voulais","voulait","voulions","vouliez","voulaient","voudrai","voudras","voudra","voudrons","voudrez","voudront","voulu","veux-je","veux-tu","veut-il","veut-elle","veut-on","voulons-nous","voulez-vous","veulent-ils","veulent-elles","voudrais","voudrait","voudrions","voudriez","voudraient","voulant"],P=["faire","vouloir"],C=["antérieur","antérieures","antérieurs","antérieure","précédent","précédents","précédente","précédentes","facile","faciles","simple","simples","vite","vites","vitesse","vitesses","difficile","difficiles","propre","propres","long","longe","longs","longes","longue","longues","bas","basse","basses","ordinaire","ordinaires","bref","brefs","brève","brèves","sûr","sûrs","sûre","sûres","sure","sures","surs","habituel","habituels","habituelle","habituelles","soi-disant","surtout","récent","récents","récente","récentes","total","totaux","totale","totales","complet","complets","complète","complètes","possible","possibles","communément","constamment","facilement","continuellement","directement","légèrement","dernier","derniers","dernière","dernières","différent","différents","différente","différentes","similaire","similaires","pareil","pareils","pareille","pareilles","largement","mal","super","bien","pire","pires","suivants","suivante","suivantes","prochain","prochaine","prochains","prochaines","proche","proches","fur"],R=["nouveau","nouvel","nouvelle","nouveaux","nouvelles","vieux","vieil","vieille","vieilles","beau","bel","belle","belles","bon","bons","bonne","bonnes","grand","grande","grands","grandes","haut","hauts","haute","hautes","petit","petite","petits","petites","meilleur","meilleurs","meilleure","meilleures","joli","jolis","jolie","jolies","gros","grosse","grosses","mauvais","mauvaise","mauvaises","dernier","derniers","dernière","dernières"],D=["ah","ha","oh","ho","bis","plouf","vlan","ciel","pouf","paf","crac","hurrah","allo","stop","bravo","ô","eh","hé","aïe","oef","ahi","fi","zest","hem","holà","chut"],F=["mg","g","kg","ml","dl","cl","l","grammes","gram","once","onces","oz","lbs","càc","cc","càd","càs","càt","cd","cs","ct"],B=["minute","minutes","heure","heures","journée","journées","semaine","semaines","mois","année","années","aujourd'hui","demain","hier","après-demain","avant-hier"],$=["chose","choses","façon","façons","pièce","pièces","truc","trucs","fois","cas","aspect","aspects","objet","objets","idée","idées","thème","thèmes","sujet","sujets","personnes","manière","manières","sorte","sortes"],I=["ne","oui","d'accord","amen","euro","euros","etc"],L=["mme","mmes","mlle","mlles","mm","dr","pr"],W=["jr","sr"]},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){return{filteredAtEnding:[].concat(o,D,F,P,q,x),filteredAtBeginningAndEnding:[].concat(E,O,h,v,R,z,g,m),filteredAnywhere:[].concat(i,S,n,r,s,d,l,c,u,p,w,y,f,b,k,A,T,M,C,B,$,I,L,W,N,j),cannotDirectlyPrecedePassiveParticiple:[].concat(E,u,z,n,o,M,P,C,f,w,y),cannotBeBetweenPassiveAuxiliaryAndParticiple:[].concat(j,q,g),all:[].concat(i,S,n,r,s,d,l,c,u,p,w,y,f,b,k,j,A,T,M,C,B,$,I,L,W,N,_,E,O,h,v,R,z,g,m,o,D,F,P,q,x)}};const i=(0,function(a){return a&&a.__esModule?a:{default:a}}(t(272)).default)().singleWords,n=["czterech","czterem","czterema","czternaście","czternastce","czternastek","czternastka","czternastką","czternastkach","czternastkami","czternastkę","czternastki","czternastko","czternastkom","czternastoma","czternastu","cztery","czwórce","czwórek","czwórka","czwórką","czwórkach","czwórkami","czwórkę","czwórki","czwórko","czwórkom","czworo","dwa","dwadzieścia","dwanaście","dwie","dwiema","dwóch","dwójce","dwoje","dwójek","dwójka","dwójką","dwójkach","dwójkami","dwójki","dwójko","dwójkom","dwóm","dwoma","dwudziestce","dwudziestek","dwudziestka","dwudziestką","dwudziestkach","dwudziestkami","dwudziestkę","dwudziestki","dwudziestkom","dwudziestoma","dwudziestu","dwunastce","dwunastek","dwunastka","dwunastką","dwunastkach","dwunastkami","dwunastkę","dwunastki","dwunastko","dwunastkom","dwunastoma","dwunastu","dziesiątce","dziesiątek","dziesiątka","dziesiątką","dziesiątkach","dziesiątkami","dziesiątkę","dziesiątki","dziesiątko","dziesiątkom","dziesięć","dziesięcioma","dziesięciu","dziewiątce","dziewiątek","dziewiątka","dziewiątką","dziewiątkach","dziewiątkami","dziewiątkę","dziewiątki","dziewiątko","dziewiątkom","dziewięć","dziewięcioma","dziewięciorga","dziewięciorgiem","dziewięciorgu","dziewięcioro","dziewięciu","dziewiętnaście","dziewiętnastce","dziewiętnastek","dziewiętnastka","dziewiętnastką","dziewiętnastkach","dziewiętnastkami","dziewiętnastkę","dziewiętnastki","dziewiętnastkom","dziewiętnastoma","dziewiętnastu","jeden","jedenaście","jedenastce","jedenastek","jedenastka","jedenastką","jedenastkach","jedenastkami","jedenastkę","jedenastki","jedenastko","jedenastkom","jedenastoma","jedenastu","jedna","jedną","jednego","jednej","jednemu","jedno","jednym","jedynce","jedynek","jedynka","jedynką","jedynkach","jedynkami","jedynkę","jedynki","jedynko","jedynkom","miliard","miliarda","miliardach","miliardami","miliardem","miliardom","miliardów","miliardowi","miliardy","miliardzie","milion","miliona","milionach","milionami","milionem","milionie","milionom","milionów","milionowi","miliony","ósemce","ósemek","ósemka","ósemką","ósemkach","ósemkami","ósemkę","ósemki","ósemko","ósemkom","osiem","osiemnaście","osiemnastce","osiemnastek","osiemnastka","osiemnastką","osiemnastkach","osiemnastkam","osiemnastkę","osiemnastki","osiemnastko","osiemnastkom","osiemnastoma","osiemnastu","ośmioma","ośmiorga","ośmiorgiem","ośmiorgu","ośmioro","ośmiu","piątce","piątek","piątka","piątką","piątkach","piątkami","piątkę","piątki","piątko","piątkom","pięć","pięcioma","pięciorga","pięciorgiem","pięciorgu","pięcioro","pięciu","piętnaście","piętnastce","piętnastek","piętnastka","piętnastką","piętnastkach","piętnastkami","piętnastkę","piętnastki","piętnastko","piętnastkom","piętnastoma","piętnastu","raz","setce","setek","setka","setkach","setkami","setkę","setki","setkom","siedem","siedemnaście","siedemnastce","siedemnastek","siedemnastka","siedemnastką","siedemnastkach","siedemnastkami","siedemnastkę","siedemnastki","siedemnastko","siedemnastkom","siedemnastoma","siedemnastu","siedmioma","siedmiorga","siedmiorgiem","siedmiorgu","siedmioro","siedmiu","siódemce","siódemek","siódemka","siódemką","siódemkach","siódemkami","siódemkę","siódemki","siódemko","siódemkom","sto","stoma","stu","sześć","sześcioma","sześciorga","sześciorgiem","sześciorgu","sześcioro","sześciu","szesnaście","szesnastce","szesnastek","szesnastka","szesnastką","szesnastkach","szesnastkami","szesnastkę","szesnastki","szesnastko","szesnastkom","szesnastoma","szesnastu","szóstce","szóstek","szóstka","szóstką","szóstkach","szóstkami","szóstkę","szóstki","szóstko","szóstkom","trójce","troje","trójek","trójka","trójką","trójkach","trójkami","trójki","trójko","trójkom","trzech","trzem","trzema","trzy","trzynaście","trzynastce","trzynastek","trzynastka","trzynastką","trzynastkach","trzynastkami","trzynastkę","trzynastki","trzynastko","trzynastkom","trzynastoma","trzynastu","tysiąc","tysiąca","tysiącach","tysiącami","tysiące","tysiącem","tysiącom","tysiącowi","tysiącu","tysięcy"],o=["czternaści","czternasta","czternastą","czternaste","czternastego","czternastej","czternastemu","czternasty","czternastych","czternastym","czternastymi","czwarci","czwarta","czwartą","czwarte","czwartego","czwartej","czwartemu","czwarty","czwartych","czwartym","czwartymi","drudzy","druga","drugą","drugi","drugich","drugie","drugiego","drugiej","drugiemu","drugim","drugimi","dwudzieści","dwudziesta","dwudziestą","dwudzieste","dwudziestego","dwudziestej","dwudziestemu","dwudziesty","dwudziestych","dwudziestym","dwudziestymi","dwunaści","dwunasta","dwunastą","dwunaste","dwunastego","dwunastej","dwunastemu","dwunasty","dwunastych","dwunastym","dwunastymi","dziesiąci","dziesiąta","dziesiątą","dziesiąte","dziesiątego","dziesiątej","dziesiątemu","dziesiąty","dziesiątych","dziesiątym","dziesiątymi","dziewiąci","dziewiąta","dziewiątą","dziewiąte","dziewiątego","dziewiątej","dziewiątemu","dziewiąty","dziewiątych","dziewiątym","dziewiątymi","dziewiętnaści","dziewiętnasta","dziewiętnastą","dziewiętnaste","dziewiętnastego","dziewiętnastej","dziewiętnastemu","dziewiętnasty","dziewiętnastych","dziewiętnastym","dziewiętnastymi","jedenaści","jedenasta","jedenastą","jedenaste","jedenastego","jedenastej","jedenastemu","jedenasty","jedenastych","jedenastym","jedenastymi","osiemnaści","osiemnasta","osiemnastą","osiemnaste","osiemnastego","osiemnastej","osiemnastemu","osiemnasty","osiemnastych","osiemnastym","osiemnastymi","ósma","ósmą","ósme","ósmego","ósmej","ósmemu","óśmi","ósmy","ósmych","ósmym","ósmymi","piąci","piąta","piątą","piąte","piątego","piątej","piątemu","piąty","piątych","piątym","piątymi","pierwsi","pierwsza","pierwszą","pierwsze","pierwszego","pierwszej","pierwszemu","pierwszy","pierwszych","pierwszym","pierwszymi","piętnaści","piętnasta","piętnastą","piętnaste","piętnastego","piętnastej","piętnastemu","piętnasty","piętnastych","piętnastym","piętnastymi","siedemnaści","siedemnasta","siedemnastą","siedemnaste","siedemnastego","siedemnastej","siedemnastemu","siedemnasty","siedemnastych","siedemnastym","siedemnastymi","siódma","siódmą","siódme","siódmego","siódmej","siódmemu","siódmi","siódmy","siódmych","siódmym","siódmymi","szesnaści","szesnasta","szesnastą","szesnaste","szesnastego","szesnastej","szesnastemu","szesnasty","szesnastych","szesnastymi","szóści","szósta","szóstą","szóste","szóstego","szóstej","szóstemu","szósty","szóstych","szóstym","szóstymi","trzeci","trzecia","trzecią","trzecich","trzecie","trzeciego","trzeciej","trzeciemu","trzecim","trzecimi","trzynaści","trzynasta","trzynastą","trzynaste","trzynastego","trzynastej","trzynastemu","trzynasty","trzynastych","trzynastym","trzynastymi"],r=["ja","my","on","ona","one","oni","ono","ty","wy"],s=["cię","ciebie","go","ich","ją","je","jego","mnie","nas","nią","nich","nie","niego","was"],d=["jej","niej"],l=["mi","ci","im","jemu","mu","nam","niemu","nim","tobie","wam"],c=["mną","nami","nią","nim","nimi","tobą","wami"],u=["myśmy","wyście","żeście","żeśmy"],p=["doń","nań","zeń"],z=["ich","jego","jej","ma","mą","me","mego","mej","memu","moi","moich","moim","moimi","mój","moja","moją","moje","mojego","mojej","mojemu","mych","mym","mymi","nasi","nasz","nasza","naszą","nasze","naszego","naszej","naszemu","naszych","naszym","naszymi","swa","swą","swe","swego","swej","swemu","swoi","swoich","swoim","swoimi","swój","swoja","swoją","swoje","swojego","swojej","swojemu","swych","swym","swymi","twa","twą","twe","twego","twej","twemu","twoi","twoich","twoim","twoimi","twój","twoja","twoją","twoje","twojego","twojej","twojemu","twych","twym","twymi","wasi","wasz","wasza","waszą","wasze","waszego","waszej","waszemu","waszych","waszym","waszymi"],g=["się"],m=["siebie","sobą"],w=["czyi","czyich","czyim","czyimi","czyj","czyja","czyją","czyje","czyjego","czyjej","czyjemu","kim","kogo","komu","kto"],y=["czy","czyś","czyśbyś","dlaczego","dokąd","dokądże","dokądżeś","gdzie","gdzież","gdzieżeś","ile","ileż","jak","jakbyś","jakże","jakżebyś","jakżeś","kiedy","którędy","którędyż","skąd","skądże","skądżeś"],f=["co","czego","czemu","czym","jacy","jaka","jaką","jaki","jakich","jakie","jakiego","jakiej","jakiemu","jakim","jakimi","która","którą","które","którego","której","któremu","który","których","którym","którymi","którzy"],b=["coś","czegoś","czemuś","czyichkolwiek","czyichś","czyikolwiek","czyimikolwiek","czyimiś","czyimkolwiek","czyimkolwiem","czyimś","czyiś","czyjakolwiek","czyjąkolwiek","czyjaś","czyjąś","czyjegokolwiek","czyjegoś","czyjejkolwiek","czyjejś","czyjekolwiek","czyjemukolwiek","czyjemuś","czyjeś","czyjkolwiek","czymś","dlaczegoś","dokądkolwiek","dokądś","gdziekolwiek","gdzieś","ilekolwiek","ileś","jacykolwiek","jacyś","jakakolwiek","jakąkolwiek","jakaś","jakąś","jakichkolwiek","jakichś","jakiegokolwiek","jakiegoś","jakiejkolwiek","jakiejś","jakiekolwiek","jakiemukolwiek","jakiemuś","jakieś","jakikolwiek","jakimikolwiek","jakimkolwiek","jakimś","jakiś","jakkolwiek","jakoś","każda","każdą","każde","każdego","każdej","każdemu","każdy","każdym","kiedykolwiek","kiedyś","kimkolwiek","kimś","kogokolwiek","kogoś","komukolwiek","komuś","ktokolwiek","którakolwiek","którąkolwiek","któraś","którąś","którędykolwiek","którędyś","któregokolwiek","któregoś","którejkolwiek","którejś","którekolwiek","któremukolwiek","któremuś","któreś","którychkolwiek","którychś","którykolwiek","którymikolwiek","którymiś","którymkolwiek","którymś","któryś","którzykolwiek","którzyś","ktoś","nawzajem","nic","niczego","niczemu","niczyi","niczyich","niczyim","niczyimi","niczyj","niczyja","niczyją","niczyjego","niczyjej","niczyjemu","niczym","nikim","nikogo","nikogokolwiek","nikomu","nikt","skądkolwiek","skądś","wszyscy","wszyskiego","wszystkich","wszystkie","wszystkiemu","wszystkim","wszystkimi","wszystko","żaden","żadna","żadną","żadne","żadnego","żadnej","żadnemu","żadni","żadnych","żadnym","żadnymi"],h=["ci","dlatego","ów","owa","ową","owe","owego","owej","owemu","owi","owo","owych","owym","stąd","stamtąd","ta","tacy","tak","taka","taką","taki","takich","takie","takiego","takiej","takiemu","takim","takimi","tam","tamci","tamta","tamtą","tamte","tamtego","tamtej","tamtemu","tamten","tamto","tamtych","tamtym","tamtymi","tą","te","tę","tędy","tego","tegoż","tej","temu","ten","to","tu","tutaj","tych","tyle","tyloma","tylu","tym","tymi","wtedy"],v=["ciut","część","części","częścią","częściach","częściami","częściom","dość","dosyć","dużo","kilka","kilkadziesiąt","kilkanaście","kilkaset","kilknasty","kilkoma","kilku","kilkudziesiąte","kilkudziesiątego","kilkudziesiątej","kilkudziesiąty","kilkudziesiątych","kilkudziesiątym","kilkudziesiątymi","kilkudziesięcioma","kilkudziesięciu","kilkunasta","kilkunastą","kilkunaste","kilkunastego","kilkunastej","kilkunastemu","kilkunastoma","kilkunastu","kilkunastym","kilkuset","kilkustoma","kiludziesiąta","mało","malutko","mniej","mnóstwa","mnóstwem","mnóstwie","mnóstwo","mnóstwu","multum","nadto","najmniej","najwięcej","nieco","niedużo","niejednokroć","niektóre","niektórzy","niektórych","niektórym","niektórymi","niemało","niewiele","niewieloma","niewielu","oba","obaj","obie","oboje","obojga","obojgiem","obojgu","obóm","oboma","obu","obydwa","obydwaj","obydwie","obydwiema","obydwóch","obydwoje","obydwojgiem","obydwojgu","obydwóm","obydwoma","obydwu","odrobiną","odrobince","odrobinę","odrobinie","odrobinką","odrobinkę","odrobinki","odrobiny","parę","parędziesiąt","parędziesięcioma","parędziesięciu","paręnaście","paręnastoma","paręnastu","parokroć","paroma","paru","parze","pełno","pół","półczwarta","połowa","połową","połowie","połowy","półtora","półtorej","sporo","trochę","trochu","troszeczkę","troszkę","wcale","więcej","większość","większości","większością","większościach","większościami","większościom","wiele","wielokrotnie","wieloma","wielu"],k=["czasem","często","nigdy","rzadko","zawsze"],j=["chcą","chcąc","chcąca","chcące","chcący","chce","chcę","chcecie","chcemy","chcesz","chciał","chciała","chciałaby","chciałabym","chciałabyś","chciałam","chciałaś","chciałby","chciałbym","chciałbyś","chciałem","chciałeś","chciały","chciałyby","chciałybyście","chciałybyśmy","chciałyście","chciałyśmy","chcieli","chcieliby","chcielibyście","chcieliście","chcieliśmy","chcono","ma","macie","mają","mając","mam","mamy","masz","miał","miała","miałaby","miałabym","miałabyś","miałam","miałaś","miałby","miałbym","miałbyś","miałem","miałeś","miało","miałoby","miały","miałyby","miałybyście","miałybyśmy","miałyście","miałyśmy","miano","miej","miejąca","miejące","miejący","miejcie","miejmy","mieli","mieliby","mielibyście","mielibyśmy","mieliście","mieliśmy","mogą","mogąc","mogąca","mogące","mogący","mogę","mógł","mogła","mogłaby","mogłabym","mogłabyś","mogłam","mogłaś","mógłby","mógłbym","mógłbyś","mogłem","mogłeś","mogli","mogliby","moglibyście","moglibyśmy","mogliście","mogliśmy","mogły","mogłyby","mogłybyście","mogłybyśmy","mogłyście","mogłyśmy","może","możecie","możemy","możesz","można","możnaby","musi","musiał","musiała","musiałaby","musiałabym","musiałabyś","musiałam","musiałaś","musiałby","musiałbym","musiałbyś","musiałem","musiałeś","musiało","musiałoby","musiały","musiałyby","musiałybyście","musiałybyśmy","musiałyście","musiałyśmy","musiano","musicie","musieli","musieliby","musielibyście","musielibyśmy","musieliście","musieliśmy","musimy","musisz","muszą","musząc","musząca","muszące","muszący","muszę","należy","niech","potrafi","potrafią","potrafiąc","potrafiąca","potrafiące","potrafiący","potraficie","potrafię","potrafiłaby","potrafiłabym","potrafiłabyś","potrafiłam","potrafiłaś","potrafiłbym","potrafiłbyś","potrafiłem","potrafiłeś","potrafili","potrafiliby","potrafilibyście","potrafilibyśmy","potrafiliście","potrafiliśmy","potrafiło","potrafiłoby","potrafiłyby","potrafiłybyście","potrafiłybyśmy","potrafiłyście","potrafiłyśmy","potrafimy","potrafiono","potrafisz","powinien","powinienem","powinieneś","powinna","powinnam","powinnaś","powinne","powinni","powinniście","powinniśmy","powinnyście","powinnyśmy","pozostaje","stają","stając","stająca","stające","stający","staje","staję","stajecie","stajemy","stajesz","stał","stała","stałaby","stałabym","stałabyś","stałam","stałaś","stałby","stałbym","stałbyś","stałem","stałeś","stali","staliby","stalibyście","stalibyśmy","staliście","staliśmy","stało","stały","stałyby","stałybyście","stałybyśmy","stałyście","stałyśmy","stanie","stano","stawać","stawając","stawająca","stawające","stawający","stawał","stawała","stawałaby","stawałabym","stawałabyś","stawałabyście","stawałam","stawałaś","stawałby","stawałbym","stawałbyś","stawałem","stawałeś","stawali","stawaliby","stawalibyście","stawalibyśmy","stawaliście","stawaliśmy","stawały","stawałyby","stawałybyśmy","stawałyście","stawałyśmy","stawano","stawawszy","stawszy","trzeba","warto","wystarczy"],_=["bądź","bądźcie","bądźmy","będą","będąc","będę","będzie","będziecie","będziemy","będziesz","by","był","była","byłaby","byłabym","byłabyś","byłam","byłaś","byłby","byłbym","byłbyś","byłem","byłeś","byli","byliby","bylibyście","bylibyśmy","byliście","byliśmy","było","byłoby","były","byłyby","byłybyście","byłybyśmy","byłyście","byłyśmy","bym","byś","byście","byśmy","byto","bywało","jest","jestem","jesteś","jesteście","jesteśmy","są","zostają","zostając","zostająca","zostające","zostający","zostaje","zostaję","zostajecie","zostajemy","zostajesz","został","została","zostałaby","zostałabym","zostałabyś","zostałam","zostałaś","zostałby","zostałbym","zostałbyś","zostałem","zostałeś","zostali","zostaliby","zostalibyście","zostalibyśmy","zostaliście","zostaliśmy","zostało","zostaloby","zostały","zostałyby","zostałybyście","zostałybyśmy","zostałyście","zostałyśmy","zostań","zostaną","zostańcie","zostanę","zostanie","zostaniecie","zostaniemy","zostaniesz","zostańmy","zostawało","zostawano","zostawszy"],x=["być","zostać"],q=["chcieć","mieć","móc","musieć","potrafić","stać"],E=["bez","beze","blisko","daleko","dla","do","dole","dookoła","górze","jako","koło","ku","między","mimo","na","nad","nade","naokoło","naprzeciwko","niedaleko","nieopodal","niż","o","obok","od","ode","około","oprócz","po","pod","podczas","pode","pomiędzy","ponad","poniżej","poprzek","poprzez","pośród","powyżej","poza","przeciw","przeciwko","przed","przede","przez","przeze","przy","spodem","spośród","spoza","u","w","wbrew","we","wedle","wewnątrz","wpół","wraz","wśród","wzdłuż","z","za","ze","zza"],A=["bliska","daleka","przodu","tyłu"],O=["albo","ani","bądź","i","lub","oraz","tylko"],T=["aż","by","czy","gdyby","jak","jeśli","jeżeli","że"],S=["ano","ciągu","coraz","dzięki","chyba","jakby","jednocześnie","jeszcze","już","nadal","nagle","znowu","prawdopodobnie","niestety","dziś","dzisiaj","oczywiście","względem","m.in.","właśnie","zaraz"],M=["bierz","bierzcie","bierzecie","bierzemy","bierzesz","bierzmy","biorą","biorąc","biorąca","biorące","biorący","biorę","brał","brała","brałaby","brałabym","brałabyś","brałam","brałaś","brałby","brałbym","brałbyś","brałem","brałeś","brali","braliby","bralibyście","bralibyśmy","braliście","braliśmy","brało","brałoby","brały","brałyby","brałybyście","brałybyśmy","brałyście","brałyśmy","brany","da","dacie","dadzą","daj","dają","dając","dająca","dające","dający","dajcie","daje","daję","dajecie","dajemy","dajesz","dajmy","dał","dała","dałaby","dałabym","dałabyś","dałam","dałaś","dałby","dałbym","dałbyś","dałem","dałeś","dali","daliby","dalibyście","dalibyśmy","daliście","daliśmy","dało","dałoby","dały","dałyby","dałybyście","dałybyśmy","dałyście","dałyśmy","dam","damy","dana","dano","dany","dasz","dawaj","dawajcie","dawajmy","dawał","dawała","dawałaby","dawałabym","dawałabyś","dawałam","dawałaś","dawałby","dawałbym","dawałbyś","dawałem","dawałeś","dawali","dawaliby","dawalibyście","dawalibyśmy","dawaliście","dawaliśmy","dawało","dawały","dawałyby","dawałybyście","dawałybyśmy","dawałyście","dawałyśmy","dawana","dawane","dawano","dawany","idą","idąc","idąca","idące","idący","idę","idź","idźcie","idzie","idziecie","idziemy","idziesz","idźmy","rób","róbcie","robi","robią","robiąc","robiąca","robiące","robiący","robicie","robię","robił","robiła","robiłaby","robiłabym","robiłabyś","robiłam","robiłaś","robiłby","robiłbym","robiłbyś","robiłem","robiłeś","robili","robilibiście","robiliby","robilibyśmy","robiliście","robiliśmy","robiło","robiły","robiłyby","robiłybyście","robiłybyśmy","robiłyście","robiłyśmy","robimy","robiono","robiony","robisz","róbmy","stanowi","stanowią","stanowiły","stanowili","stoi","stoicie","stoimy","stoisz","stój","stoją","stojąc","stojąca","stojące","stojący","stójcie","stoję","stójmy","świadczy","szedł","szedłby","szedłbym","szedłbyś","szedłem","szedłeś","szła","szłaby","szłabym","szłabyś","szłam","szłaś","szli","szliby","szlibyście","szlibyśmy","szliście","szliśmy","szło","szłoby","szły","szłyby","szłybyście","szłybyśmy","szłyście","uprawia","uprawiacie","uprawiają","uprawiając","uprawiająca","uprawiające","uprawiający","uprawiał","uprawiała","uprawiałaby","uprawiałabym","uprawiałabyś","uprawiałam","uprawiałaś","uprawiałby","uprawiałbym","uprawiałbyś","uprawiałem","uprawiałeś","uprawiali","uprawialiby","uprawialibyście","uprawialibyśmy","uprawialiście","uprawialiśmy","uprawiało","uprawiałoby","uprawiały","uprawiałyby","uprawiałybyście","uprawiałybyśmy","uprawiałyście","uprawiałyśmy","uprawiam","uprawiamy","uprawiana","uprawiane","uprawiano","uprawiany","uprawiasz","weź","weźcie","wezmą","wezmę","weźmie","weźmiecie","weźmiemy","weźmiesz","weźmy","wykonuj","wykonują","wykonując","wykonująca","wykonujące","wykonujący","wykonujcie","wykonuje","wykonuję","wykonujecie","wykonujemy","wykonujesz","wykonujmy","wykonywał","wykonywała","wykonywałaby","wykonywałabym","wykonywałabyś","wykonywałam","wykonywałaś","wykonywałby","wykonywałbym","wykonywałbyś","wykonywałem","wykonywałeś","wykonywali","wykonywaliby","wykonywalibyście","wykonywalibyśmy","wykonywaliście","wykonywaliśmy","wykonywało","wykonywałoby","wykonywały","wykonywałyby","wykonywałybyście","wykonywałybyśmy","wykonywałyście","wykonywałyśmy","wykonywana","wykonywane","wykonywany","wziął","wziąłby","wziąłbym","wziąłbyś","wziąłem","wziąłeś","wziąwszy","wzięła","wzięłaby","wzięłabym","wzięłabyś","wzięłam","wzięłaś","wzięli","wzięliby","wzięlibyście","wzięlibyśmy","wzięliście","wzięliśmy","wzięło","wzięłoby","wzięły","wzięłyby","wzięłybyście","wzięłybyśmy","wzięłyście","wzięłyśmy","zrób","zróbcie","zrobi","zrobią","zrobiąc","zrobiąca","zrobiące","zrobiący","zrobicie","zrobię","zrobił","zrobiła","zrobiłaby","zrobiłabym","zrobiłabyś","zrobiłam","zrobiłaś","zrobiłby","zrobiłbym","zrobiłbyś","zrobiłem","zrobiłeś","zrobili","zrobilibiście","zrobiliby","zrobilibyśmy","zrobiliście","zrobiliśmy","zrobiło","zrobiły","zrobiłyby","zrobiłybyście","zrobiłybyśmy","zrobiłyście","zrobiłyśmy","zrobimy","zrobiono","zrobiony","zrobisz","zróbmy"],P=["brać","dać","dawać","iść","robić","stanowić","uprawiać","wykonywać","wziąć","zrobić"],C=["informowali","informowały","informują","informuje","informuję","mówi","mówią","mówię","mówił","mówiła","mówili","mówiły","odpowiada","odpowiadają","odpowiadam","odpowiedział","odpowiedziała","odpowiedziałam","odpowiedziały","odpowiedzieli","odwiedziałam","poinformowałam","poinformowali","poinformowały","powiedział","powiedziała","powiedziałam","powiedziały","powiedzieli","pyta","pytać","pytał","pytała","pytałam","pytali","pytały","pytam","sądzą","sądzę","sądzi","sądzić","sądziłam","sądzili","sądziły","spytał","spytała","spytałam","spytali","spytały","stwierdziały","stwierdzieli","stwierdził","stwierdziła","stwierdziłam","twierdzą","twierdzę","twierdzi","twierdziały","twierdzić","twierdzieli","twierdził","twierdziła","twierdziłam","uważa","uważają","uważał","uważała","uważali","uważały","uważam","wyjaśnia","wyjaśniać","wyjaśniają","wyjaśniam","wyjaśnił","wyjaśniła","wyjaśnili","wyjaśniły","zapytał","zapytała","zapytałam","zapytali","zapytały","zaznacza","zaznaczają","zaznaczam","zaznaczył","zaznaczyła","zaznaczyłam","zaznaczyli","zaznaczyły"],R=["bardziej","bardzo","całkiem","całkowicie","doskonale","dość","dosyć","kompletnie","najbardziej","naprawdę","nawet","nieco","niezbyt","niezmiernie","niezwykle","ogromnie","strasznie","świetnie","wielce","wyjątkowo","zbyt","znacznie","zupełnie"],D=["cała","całą","całe","całego","całej","całemu","cali","cały","całych","całym","całymi","ciekawa","ciekawą","ciekawe","ciekawego","ciekawej","ciekawemu","ciekawi","ciekawy","ciekawych","ciekawym","ciekawymi","dłudzy","długa","długą","długi","długich","długie","długiego","długiej","długiemu","długim","długimi","dłużsi","dłuższa","dłuższą","dłuższe","dłuższego","dłuższej","dłuższemu","dłuższy","dłuższych","dłuższym","dłuższymi","dobra","dobrą","dobre","dobrego","dobrej","dobremu","dobry","dobrych","dobrym","dobrymi","dobrzy","fajna","fajną","fajne","fajnego","fajnej","fajnemu","fajni","fajny","fajnych","fajnym","fajnymi","główna","główną","główne","głównego","głównej","głównemu","główni","główny","głównych","głównym","głównymi","inna","inną","inne","innego","innej","innemu","inni","inny","innych","innym","innymi","krótcy","krótka","krótką","krótki","krótkich","krótkie","krótkiego","krótkiej","krótkiemu","krótkim","krótkimi","krótsi","krótsza","krótszą","krótsze","krótszego","krótszej","krótszemu","krótszych","krótszym","krótszymi","łatwe","łatwego","łatwiejsze","łatwym","lepsi","lepsza","lepszą","lepsze","lepszego","lepszej","lepszemu","lepszy","lepszych","lepszym","lepszymi","mała","małą","małe","małego","małej","małemu","mali","mały","małych","małym","małymi","mniejsi","mniejsza","mniejszą","mniejsze","mniejszego","mniejszej","mniejszemu","mniejszy","mniejszych","mniejszym","mniejszymi","najdłużsi","najdłuższa","najdłuższą","najdłuższe","najdłuższego","najdłuższej","najdłuższemu","najdłuższy","najdłuższych","najdłuższym","najdłuższymi","najkrótsi","najkrótsza","najkrótszą","najkrótsze","najkrótszego","najkrótszej","najkrótszemu","najkrótszych","najkrótszym","najkrótszymi","najłatwiejsze","najlepsi","najlepsza","najlepszą","najlepsze","najlepszego","najlepszej","najlepszemu","najlepszych","najlepszym","najlepszymi","najmniejsi","najmniejsza","najmniejszą","najmniejsze","najmniejszego","najmniejszej","najmniejszemu","najmniejszy","najmniejszych","najmniejszym","najmniejszymi","najniżsi","najniższa","najniższą","najniższe","najniższego","najniższej","najniższemu","najniższy","najniższych","najniższym","najniższymi","najtrudniejsze","najwięksi","największa","największą","największe","największego","największej","największemu","największych","największym","największymi","najwyżsi","najwyższa","najwyższą","najwyższe","najwyższego","najwyższej","najwyższemu","najwyższy","najwyższych","najwyższym","najwyższymi","następna","następną","następne","następnego","następnej","następni","następny","następnych","następnym","następnymi","niewłaściwa","niewłaściwą","niewłaściwe","niewłaściwego","niewłaściwej","niewłaściwemu","niewłaściwi","niewłaściwy","niewłaściwych","niewłaściwym","niewłaściwymi","niscy","niska","niską","niski","niskich","niskie","niskiego","niskiej","niskiemu","niskim","niskimi","niżsi","niższa","niższą","niższe","niższego","niższej","niższemu","niższy","niższych","niższym","niższymi","ostatni","ostatnia","ostatnią","ostatnich","ostatnie","ostatniego","ostatniej","ostatniemu","ostatnim","ostatnimi","poprzedni","poprzednia","poprzednią","poprzednich","poprzednie","poprzedniego","poprzedniej","poprzedniemu","poprzednim","poprzednimi","sam","sama","samą","same","samego","samej","samemu","sami","samo","samych","samym","samymi","trudne","trudnego","trudniejsze","trudnym","więksi","większa","większą","większe","większego","większej","większemu","większych","większym","większymi","wielcy","wielka","wielką","wielki","wielkich","wielkie","wielkiego","wielkiej","wielkiemu","wielkim","wielkimi","właściwa","właściwą","właściwe","właściwego","właściwej","właściwemu","właściwi","właściwy","właściwych","właściwym","właściwymi","wysocy","wysoka","wysoką","wysoki","wysokich","wysokie","wysokiego","wysokiej","wysokiemu","wysokim","wysokimi","wyżsi","wyższa","wyższą","wyższe","wyższego","wyższej","wyższemu","wyższy","wyższych","wyższym","wyższymi"],F=["blisko","bliżej","ciągle","ciężko","czasami","czasem","częściej","często","dalej","daleko","dawniej","dawno","dobrze","dopiero","fajnie","fajniej","gorzej","inaczej","ładnie","łatwiej","łatwo","lepiej","najbliżej","najczęściej","najdalej","najdawniej","najfajniej","najgorzej","najłatwiej","najlepiej","najniżej","najpóźniej","najprościej","najszybciej","najtrudniej","najwcześniej","najwyżej","naprawdę","niedaleko","niedawno","nisko","niżej","ostatnio","pewno","póżniej","późno","prawie","prościej","prosto","prostu","szybciej","szybko","trochę","trudniej","trudno","wcześnie","wcześniej","wolno","wszędzie","wysoko","wyżej","zazwyczaj","źle"],B=["dni","dnia","dniach","dniami","dnie","dzień","dzisiaj","godzin","godzina","godzinach","godzinami","godzinę","godziny","jutro","lata","latach","latami","miesiąc","miesiąca","miesiącach","miesiącami","miesiące","miesiącem","miesiącu","miesięcy","minut","minuta","minutach","minutę","minuty","pojutrze","przedwczoraj","rok","rokiem","roku","sekund","sekunda","sekundach","sekundę","sekundy","tydzień","tygodni","tygodnia","tygodniach","tygodniami","tygodnie","tygodniu","wczoraj"],$=["chwila","chwilą","chwilach","chwilami","chwile","chwilę","chwili","chwilom","część","części","częścią","częściach","częściami","częściom","momencie","moment","ogóle","osób","osoba","osobą","osobach","osobami","osobę","osobie","osobom","osoby","powód","powodach","powodami","powodem","powodom","powodów","powodowi","powodu","powody","powodzie","przypadkiem","przypadku","raz","razach","razami","razem","razie","razom","razów","razowi","razu","razy","rodzaj","rodzajach","rodzajami","rodzajem","rodzajom","rodzajów","rodzajowi","rodzaju","rzecz","rzeczą","rzeczach","rzeczami","rzeczom","rzeczy","sposób","sposobem","sprawa","sprawą","sprawach","sprawami","sprawę","sprawie","sprawom","sprawy","temacie","temat","tematach","tematami","tematem","tematom","tematów","tematowi","tematu","tematy"],I=["dr","dyr","mgr","p","pan","pani","panie","panowie","prof"],L=["a","ach","aha","aj","akurat","ał","aua","auć","ba","brawo","e","ech","ehe","ehm","ej","ejże","ekhm","ekstra","jej","jejku","łał","och","oh","oho","oj","ojej","ojejku","phi","precz","super","uwaga","wow"],W=["°C","°F","ar","ary","arów","arach","c","cl","cm","cm²","cm³","dag","deka","dl","f","ft","g","gram","gramów","gramy","ha","hektar","hektary","hektarów","hektarach","in","kg","kilo","km","km²","cm³","l","litr","litrów","litry","łyżeczka","łyżeczkę","łyżeczki","łyżka","łyżkę","łyżki","m","m²","m³","mg","ml","mm","mm²","mm³","szczypta","szczyptę","szczypty","szklanka","szklankę","szklanki","tuzin"],N=["nie","no","oto","tak","sobie","ok","okej"]},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.modifyStem=function(a,e){const t=e.find(e=>-1!==a.search(new RegExp(e[0])));void 0!==t&&(a=a.replace(new RegExp(t[0]),t[1]));return a},e.isVowelDoublingAllowed=function(a,e,t){const s=(0,i.checkIfWordIsOnVerbExceptionList)(a,e.getVowelDoubling,t),d=n(a,e.noVowelOrConsonantDoubling,t),l=o(a),c=r(a,e.noVowelOrConsonantDoubling.rule);return s||!d&&l&&c};var i=t(99);const n=function(a,e,t){if((0,i.checkIfWordEndingIsOnExceptionList)(a,e.endingMatch)||(0,i.checkIfWordIsOnVerbExceptionList)(a,e.verbs,t)||e.exactMatch.includes(a))return!0},o=function(a){return a.charAt(a.length-4)!==a.charAt(a.length-3)},r=function(a,e){return-1===a.search(new RegExp(e))}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.default={queue:["wordCount","keywordDensity","subHeadings","stopwords","fleschReading","linkCount","imageCount","urlKeyword","urlLength","metaDescriptionLength","metaDescriptionKeyword","pageTitleKeyword","pageTitleLength","firstParagraph","urlStopwords","keywordDoubles","keyphraseSizeCheck"],stopWords:["a","about","above","after","again","against","all","am","an","and","any","are","as","at","be","because","been","before","being","below","between","both","but","by","could","did","do","does","doing","down","during","each","few","for","from","further","had","has","have","having","he","he'd","he'll","he's","her","here","here's","hers","herself","him","himself","his","how","how's","i","i'd","i'll","i'm","i've","if","in","into","is","it","it's","its","itself","let's","me","more","most","my","myself","nor","of","on","once","only","or","other","ought","our","ours","ourselves","out","over","own","same","she","she'd","she'll","she's","should","so","some","such","than","that","that's","the","their","theirs","them","themselves","then","there","there's","these","they","they'd","they'll","they're","they've","this","those","through","to","too","under","until","up","very","was","we","we'd","we'll","we're","we've","were","what","what's","when","when's","where","where's","which","while","who","who's","whom","why","why's","with","would","you","you'd","you'll","you're","you've","your","yours","yourself","yourselves"],wordsToRemove:[" a"," in"," an"," on"," for"," the"," and"],maxSlugLength:20,maxUrlLength:40,maxMeta:156}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=s(t(16)),o=t(7),r=s(t(5));function s(a){return a&&a.__esModule?a:{default:a}}e.default=class extends n.default{constructor(a={}){super();const e={scores:{noLinks:3,allNofollowed:7,someNoFollowed:8,allFollowed:9},urlTitle:(0,o.createAnchorOpeningTag)("https://yoa.st/34f"),urlCallToAction:(0,o.createAnchorOpeningTag)("https://yoa.st/34g")};this.identifier="externalLinks",this._config=(0,i.merge)(e,a)}getResult(a,e,t){const n=e.getResearch("getLinkStatistics"),o=new r.default;return(0,i.isEmpty)(n)||(o.setScore(this.calculateScore(n)),o.setText(this.translateScore(n,t))),o}isApplicable(a){return a.hasText()}calculateScore(a){return 0===a.externalTotal?this._config.scores.noLinks:a.externalNofollow===a.externalTotal?this._config.scores.allNofollowed:a.externalDofollow<a.externalTotal?this._config.scores.someNoFollowed:a.externalDofollow===a.externalTotal?this._config.scores.allFollowed:null}translateScore(a,e){return 0===a.externalTotal?e.sprintf(e.dgettext("js-text-analysis","%1$sOutbound links%3$s: No outbound links appear in this page. %2$sAdd some%3$s!"),this._config.urlTitle,this._config.urlCallToAction,"</a>"):a.externalNofollow===a.externalTotal?e.sprintf(e.dgettext("js-text-analysis","%1$sOutbound links%3$s: All outbound links on this page are nofollowed. %2$sAdd some normal links%3$s."),this._config.urlTitle,this._config.urlCallToAction,"</a>"):a.externalDofollow===a.externalTotal?e.sprintf(e.dgettext("js-text-analysis","%1$sOutbound links%2$s: Good job!"),this._config.urlTitle,"</a>"):a.externalDofollow<a.externalTotal?e.sprintf(e.dgettext("js-text-analysis","%1$sOutbound links%2$s: There are both nofollowed and normal outbound links on this page. Good job!"),this._config.urlTitle,"</a>"):""}}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=l(t(16)),o=t(7),r=t(43),s=t(123),d=l(t(5));function l(a){return a&&a.__esModule?a:{default:a}}e.default=class extends n.default{constructor(a={}){super();const e={parameters:{lowerBoundary:.3,upperBoundary:.75},scores:{noMatches:3,tooFewMatches:3,goodNumberOfMatches:9,tooManyMatches:3},urlTitle:(0,o.createAnchorOpeningTag)("https://yoa.st/33m"),urlCallToAction:(0,o.createAnchorOpeningTag)("https://yoa.st/33n")};this.identifier="subheadingsKeyword",this._config=(0,i.merge)(e,a)}getResult(a,e,t){this._subHeadings=e.getResearch("matchKeywordInSubheadings");const i=new d.default;this._minNumberOfSubheadings=Math.ceil(this._subHeadings.count*this._config.parameters.lowerBoundary),this._maxNumberOfSubheadings=Math.floor(this._subHeadings.count*this._config.parameters.upperBoundary);const n=this.calculateResult(t);return i.setScore(n.score),i.setText(n.resultText),i}hasSubheadings(a){return(0,s.getSubheadingsTopLevel)(a.getText()).length>0}isApplicable(a){return a.hasText()&&a.hasKeyword()&&this.hasSubheadings(a)}hasTooFewMatches(){return this._subHeadings.matches>0&&this._subHeadings.matches<this._minNumberOfSubheadings}hasTooManyMatches(){return this._subHeadings.count>1&&this._subHeadings.matches>this._maxNumberOfSubheadings}isOneOfOne(){return 1===this._subHeadings.count&&1===this._subHeadings.matches}hasGoodNumberOfMatches(){return(0,r.inRangeStartEndInclusive)(this._subHeadings.matches,this._minNumberOfSubheadings,this._maxNumberOfSubheadings)}calculateResult(a){return this.hasTooFewMatches()?{score:this._config.scores.tooFewMatches,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sKeyphrase in subheading%3$s: %2$sUse more keyphrases or synonyms in your higher-level subheadings%3$s!"),this._config.urlTitle,this._config.urlCallToAction,"</a>")}:this.hasTooManyMatches()?{score:this._config.scores.tooManyMatches,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sKeyphrase in subheading%3$s: More than 75%% of your higher-level subheadings reflect the topic of your copy. That's too much. %2$sDon't over-optimize%3$s!"),this._config.urlTitle,this._config.urlCallToAction,"</a>")}:this.isOneOfOne()?{score:this._config.scores.goodNumberOfMatches,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sKeyphrase in subheading%2$s: Your higher-level subheading reflects the topic of your copy. Good job!",this._subHeadings.matches),this._config.urlTitle,"</a>")}:this.hasGoodNumberOfMatches()?{score:this._config.scores.goodNumberOfMatches,resultText:a.sprintf(a.dngettext("js-text-analysis","%1$sKeyphrase in subheading%2$s: %3$s of your higher-level subheadings reflects the topic of your copy. Good job!","%1$sKeyphrase in subheading%2$s: %3$s of your higher-level subheadings reflect the topic of your copy. Good job!",this._subHeadings.matches),this._config.urlTitle,"</a>",this._subHeadings.matches)}:{score:this._config.scores.noMatches,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sKeyphrase in subheading%3$s: %2$sUse more keyphrases or synonyms in your higher-level subheadings%3$s!"),this._config.urlTitle,this._config.urlCallToAction,"</a>")}}}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a,e){for(var t=(0,i.default)(e),n=0;n<t.length;n++)a=a.replace(t[n].letter,t[n].alternative);return a};var i=function(a){return a&&a.__esModule?a:{default:a}}(t(594))},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a,e){var t=new RegExp(e,"ig"),i=a.match(t);return null===i&&(i=[]),i}},function(a){a.exports={Aacute:"Á",aacute:"á",Abreve:"Ă",abreve:"ă",ac:"∾",acd:"∿",acE:"∾̳",Acirc:"Â",acirc:"â",acute:"´",Acy:"А",acy:"а",AElig:"Æ",aelig:"æ",af:"⁡",Afr:"𝔄",afr:"𝔞",Agrave:"À",agrave:"à",alefsym:"ℵ",aleph:"ℵ",Alpha:"Α",alpha:"α",Amacr:"Ā",amacr:"ā",amalg:"⨿",amp:"&",AMP:"&",andand:"⩕",And:"⩓",and:"∧",andd:"⩜",andslope:"⩘",andv:"⩚",ang:"∠",ange:"⦤",angle:"∠",angmsdaa:"⦨",angmsdab:"⦩",angmsdac:"⦪",angmsdad:"⦫",angmsdae:"⦬",angmsdaf:"⦭",angmsdag:"⦮",angmsdah:"⦯",angmsd:"∡",angrt:"∟",angrtvb:"⊾",angrtvbd:"⦝",angsph:"∢",angst:"Å",angzarr:"⍼",Aogon:"Ą",aogon:"ą",Aopf:"𝔸",aopf:"𝕒",apacir:"⩯",ap:"≈",apE:"⩰",ape:"≊",apid:"≋",apos:"'",ApplyFunction:"⁡",approx:"≈",approxeq:"≊",Aring:"Å",aring:"å",Ascr:"𝒜",ascr:"𝒶",Assign:"≔",ast:"*",asymp:"≈",asympeq:"≍",Atilde:"Ã",atilde:"ã",Auml:"Ä",auml:"ä",awconint:"∳",awint:"⨑",backcong:"≌",backepsilon:"϶",backprime:"‵",backsim:"∽",backsimeq:"⋍",Backslash:"∖",Barv:"⫧",barvee:"⊽",barwed:"⌅",Barwed:"⌆",barwedge:"⌅",bbrk:"⎵",bbrktbrk:"⎶",bcong:"≌",Bcy:"Б",bcy:"б",bdquo:"„",becaus:"∵",because:"∵",Because:"∵",bemptyv:"⦰",bepsi:"϶",bernou:"ℬ",Bernoullis:"ℬ",Beta:"Β",beta:"β",beth:"ℶ",between:"≬",Bfr:"𝔅",bfr:"𝔟",bigcap:"⋂",bigcirc:"◯",bigcup:"⋃",bigodot:"⨀",bigoplus:"⨁",bigotimes:"⨂",bigsqcup:"⨆",bigstar:"★",bigtriangledown:"▽",bigtriangleup:"△",biguplus:"⨄",bigvee:"⋁",bigwedge:"⋀",bkarow:"⤍",blacklozenge:"⧫",blacksquare:"▪",blacktriangle:"▴",blacktriangledown:"▾",blacktriangleleft:"◂",blacktriangleright:"▸",blank:"␣",blk12:"▒",blk14:"░",blk34:"▓",block:"█",bne:"=⃥",bnequiv:"≡⃥",bNot:"⫭",bnot:"⌐",Bopf:"𝔹",bopf:"𝕓",bot:"⊥",bottom:"⊥",bowtie:"⋈",boxbox:"⧉",boxdl:"┐",boxdL:"╕",boxDl:"╖",boxDL:"╗",boxdr:"┌",boxdR:"╒",boxDr:"╓",boxDR:"╔",boxh:"─",boxH:"═",boxhd:"┬",boxHd:"╤",boxhD:"╥",boxHD:"╦",boxhu:"┴",boxHu:"╧",boxhU:"╨",boxHU:"╩",boxminus:"⊟",boxplus:"⊞",boxtimes:"⊠",boxul:"┘",boxuL:"╛",boxUl:"╜",boxUL:"╝",boxur:"└",boxuR:"╘",boxUr:"╙",boxUR:"╚",boxv:"│",boxV:"║",boxvh:"┼",boxvH:"╪",boxVh:"╫",boxVH:"╬",boxvl:"┤",boxvL:"╡",boxVl:"╢",boxVL:"╣",boxvr:"├",boxvR:"╞",boxVr:"╟",boxVR:"╠",bprime:"‵",breve:"˘",Breve:"˘",brvbar:"¦",bscr:"𝒷",Bscr:"ℬ",bsemi:"⁏",bsim:"∽",bsime:"⋍",bsolb:"⧅",bsol:"\\",bsolhsub:"⟈",bull:"•",bullet:"•",bump:"≎",bumpE:"⪮",bumpe:"≏",Bumpeq:"≎",bumpeq:"≏",Cacute:"Ć",cacute:"ć",capand:"⩄",capbrcup:"⩉",capcap:"⩋",cap:"∩",Cap:"⋒",capcup:"⩇",capdot:"⩀",CapitalDifferentialD:"ⅅ",caps:"∩︀",caret:"⁁",caron:"ˇ",Cayleys:"ℭ",ccaps:"⩍",Ccaron:"Č",ccaron:"č",Ccedil:"Ç",ccedil:"ç",Ccirc:"Ĉ",ccirc:"ĉ",Cconint:"∰",ccups:"⩌",ccupssm:"⩐",Cdot:"Ċ",cdot:"ċ",cedil:"¸",Cedilla:"¸",cemptyv:"⦲",cent:"¢",centerdot:"·",CenterDot:"·",cfr:"𝔠",Cfr:"ℭ",CHcy:"Ч",chcy:"ч",check:"✓",checkmark:"✓",Chi:"Χ",chi:"χ",circ:"ˆ",circeq:"≗",circlearrowleft:"↺",circlearrowright:"↻",circledast:"⊛",circledcirc:"⊚",circleddash:"⊝",CircleDot:"⊙",circledR:"®",circledS:"Ⓢ",CircleMinus:"⊖",CirclePlus:"⊕",CircleTimes:"⊗",cir:"○",cirE:"⧃",cire:"≗",cirfnint:"⨐",cirmid:"⫯",cirscir:"⧂",ClockwiseContourIntegral:"∲",CloseCurlyDoubleQuote:"”",CloseCurlyQuote:"’",clubs:"♣",clubsuit:"♣",colon:":",Colon:"∷",Colone:"⩴",colone:"≔",coloneq:"≔",comma:",",commat:"@",comp:"∁",compfn:"∘",complement:"∁",complexes:"ℂ",cong:"≅",congdot:"⩭",Congruent:"≡",conint:"∮",Conint:"∯",ContourIntegral:"∮",copf:"𝕔",Copf:"ℂ",coprod:"∐",Coproduct:"∐",copy:"©",COPY:"©",copysr:"℗",CounterClockwiseContourIntegral:"∳",crarr:"↵",cross:"✗",Cross:"⨯",Cscr:"𝒞",cscr:"𝒸",csub:"⫏",csube:"⫑",csup:"⫐",csupe:"⫒",ctdot:"⋯",cudarrl:"⤸",cudarrr:"⤵",cuepr:"⋞",cuesc:"⋟",cularr:"↶",cularrp:"⤽",cupbrcap:"⩈",cupcap:"⩆",CupCap:"≍",cup:"∪",Cup:"⋓",cupcup:"⩊",cupdot:"⊍",cupor:"⩅",cups:"∪︀",curarr:"↷",curarrm:"⤼",curlyeqprec:"⋞",curlyeqsucc:"⋟",curlyvee:"⋎",curlywedge:"⋏",curren:"¤",curvearrowleft:"↶",curvearrowright:"↷",cuvee:"⋎",cuwed:"⋏",cwconint:"∲",cwint:"∱",cylcty:"⌭",dagger:"†",Dagger:"‡",daleth:"ℸ",darr:"↓",Darr:"↡",dArr:"⇓",dash:"‐",Dashv:"⫤",dashv:"⊣",dbkarow:"⤏",dblac:"˝",Dcaron:"Ď",dcaron:"ď",Dcy:"Д",dcy:"д",ddagger:"‡",ddarr:"⇊",DD:"ⅅ",dd:"ⅆ",DDotrahd:"⤑",ddotseq:"⩷",deg:"°",Del:"∇",Delta:"Δ",delta:"δ",demptyv:"⦱",dfisht:"⥿",Dfr:"𝔇",dfr:"𝔡",dHar:"⥥",dharl:"⇃",dharr:"⇂",DiacriticalAcute:"´",DiacriticalDot:"˙",DiacriticalDoubleAcute:"˝",DiacriticalGrave:"`",DiacriticalTilde:"˜",diam:"⋄",diamond:"⋄",Diamond:"⋄",diamondsuit:"♦",diams:"♦",die:"¨",DifferentialD:"ⅆ",digamma:"ϝ",disin:"⋲",div:"÷",divide:"÷",divideontimes:"⋇",divonx:"⋇",DJcy:"Ђ",djcy:"ђ",dlcorn:"⌞",dlcrop:"⌍",dollar:"$",Dopf:"𝔻",dopf:"𝕕",Dot:"¨",dot:"˙",DotDot:"⃜",doteq:"≐",doteqdot:"≑",DotEqual:"≐",dotminus:"∸",dotplus:"∔",dotsquare:"⊡",doublebarwedge:"⌆",DoubleContourIntegral:"∯",DoubleDot:"¨",DoubleDownArrow:"⇓",DoubleLeftArrow:"⇐",DoubleLeftRightArrow:"⇔",DoubleLeftTee:"⫤",DoubleLongLeftArrow:"⟸",DoubleLongLeftRightArrow:"⟺",DoubleLongRightArrow:"⟹",DoubleRightArrow:"⇒",DoubleRightTee:"⊨",DoubleUpArrow:"⇑",DoubleUpDownArrow:"⇕",DoubleVerticalBar:"∥",DownArrowBar:"⤓",downarrow:"↓",DownArrow:"↓",Downarrow:"⇓",DownArrowUpArrow:"⇵",DownBreve:"̑",downdownarrows:"⇊",downharpoonleft:"⇃",downharpoonright:"⇂",DownLeftRightVector:"⥐",DownLeftTeeVector:"⥞",DownLeftVectorBar:"⥖",DownLeftVector:"↽",DownRightTeeVector:"⥟",DownRightVectorBar:"⥗",DownRightVector:"⇁",DownTeeArrow:"↧",DownTee:"⊤",drbkarow:"⤐",drcorn:"⌟",drcrop:"⌌",Dscr:"𝒟",dscr:"𝒹",DScy:"Ѕ",dscy:"ѕ",dsol:"⧶",Dstrok:"Đ",dstrok:"đ",dtdot:"⋱",dtri:"▿",dtrif:"▾",duarr:"⇵",duhar:"⥯",dwangle:"⦦",DZcy:"Џ",dzcy:"џ",dzigrarr:"⟿",Eacute:"É",eacute:"é",easter:"⩮",Ecaron:"Ě",ecaron:"ě",Ecirc:"Ê",ecirc:"ê",ecir:"≖",ecolon:"≕",Ecy:"Э",ecy:"э",eDDot:"⩷",Edot:"Ė",edot:"ė",eDot:"≑",ee:"ⅇ",efDot:"≒",Efr:"𝔈",efr:"𝔢",eg:"⪚",Egrave:"È",egrave:"è",egs:"⪖",egsdot:"⪘",el:"⪙",Element:"∈",elinters:"⏧",ell:"ℓ",els:"⪕",elsdot:"⪗",Emacr:"Ē",emacr:"ē",empty:"∅",emptyset:"∅",EmptySmallSquare:"◻",emptyv:"∅",EmptyVerySmallSquare:"▫",emsp13:" ",emsp14:" ",emsp:" ",ENG:"Ŋ",eng:"ŋ",ensp:" ",Eogon:"Ę",eogon:"ę",Eopf:"𝔼",eopf:"𝕖",epar:"⋕",eparsl:"⧣",eplus:"⩱",epsi:"ε",Epsilon:"Ε",epsilon:"ε",epsiv:"ϵ",eqcirc:"≖",eqcolon:"≕",eqsim:"≂",eqslantgtr:"⪖",eqslantless:"⪕",Equal:"⩵",equals:"=",EqualTilde:"≂",equest:"≟",Equilibrium:"⇌",equiv:"≡",equivDD:"⩸",eqvparsl:"⧥",erarr:"⥱",erDot:"≓",escr:"ℯ",Escr:"ℰ",esdot:"≐",Esim:"⩳",esim:"≂",Eta:"Η",eta:"η",ETH:"Ð",eth:"ð",Euml:"Ë",euml:"ë",euro:"€",excl:"!",exist:"∃",Exists:"∃",expectation:"ℰ",exponentiale:"ⅇ",ExponentialE:"ⅇ",fallingdotseq:"≒",Fcy:"Ф",fcy:"ф",female:"♀",ffilig:"ffi",fflig:"ff",ffllig:"ffl",Ffr:"𝔉",ffr:"𝔣",filig:"fi",FilledSmallSquare:"◼",FilledVerySmallSquare:"▪",fjlig:"fj",flat:"♭",fllig:"fl",fltns:"▱",fnof:"ƒ",Fopf:"𝔽",fopf:"𝕗",forall:"∀",ForAll:"∀",fork:"⋔",forkv:"⫙",Fouriertrf:"ℱ",fpartint:"⨍",frac12:"½",frac13:"⅓",frac14:"¼",frac15:"⅕",frac16:"⅙",frac18:"⅛",frac23:"⅔",frac25:"⅖",frac34:"¾",frac35:"⅗",frac38:"⅜",frac45:"⅘",frac56:"⅚",frac58:"⅝",frac78:"⅞",frasl:"⁄",frown:"⌢",fscr:"𝒻",Fscr:"ℱ",gacute:"ǵ",Gamma:"Γ",gamma:"γ",Gammad:"Ϝ",gammad:"ϝ",gap:"⪆",Gbreve:"Ğ",gbreve:"ğ",Gcedil:"Ģ",Gcirc:"Ĝ",gcirc:"ĝ",Gcy:"Г",gcy:"г",Gdot:"Ġ",gdot:"ġ",ge:"≥",gE:"≧",gEl:"⪌",gel:"⋛",geq:"≥",geqq:"≧",geqslant:"⩾",gescc:"⪩",ges:"⩾",gesdot:"⪀",gesdoto:"⪂",gesdotol:"⪄",gesl:"⋛︀",gesles:"⪔",Gfr:"𝔊",gfr:"𝔤",gg:"≫",Gg:"⋙",ggg:"⋙",gimel:"ℷ",GJcy:"Ѓ",gjcy:"ѓ",gla:"⪥",gl:"≷",glE:"⪒",glj:"⪤",gnap:"⪊",gnapprox:"⪊",gne:"⪈",gnE:"≩",gneq:"⪈",gneqq:"≩",gnsim:"⋧",Gopf:"𝔾",gopf:"𝕘",grave:"`",GreaterEqual:"≥",GreaterEqualLess:"⋛",GreaterFullEqual:"≧",GreaterGreater:"⪢",GreaterLess:"≷",GreaterSlantEqual:"⩾",GreaterTilde:"≳",Gscr:"𝒢",gscr:"ℊ",gsim:"≳",gsime:"⪎",gsiml:"⪐",gtcc:"⪧",gtcir:"⩺",gt:">",GT:">",Gt:"≫",gtdot:"⋗",gtlPar:"⦕",gtquest:"⩼",gtrapprox:"⪆",gtrarr:"⥸",gtrdot:"⋗",gtreqless:"⋛",gtreqqless:"⪌",gtrless:"≷",gtrsim:"≳",gvertneqq:"≩︀",gvnE:"≩︀",Hacek:"ˇ",hairsp:" ",half:"½",hamilt:"ℋ",HARDcy:"Ъ",hardcy:"ъ",harrcir:"⥈",harr:"↔",hArr:"⇔",harrw:"↭",Hat:"^",hbar:"ℏ",Hcirc:"Ĥ",hcirc:"ĥ",hearts:"♥",heartsuit:"♥",hellip:"…",hercon:"⊹",hfr:"𝔥",Hfr:"ℌ",HilbertSpace:"ℋ",hksearow:"⤥",hkswarow:"⤦",hoarr:"⇿",homtht:"∻",hookleftarrow:"↩",hookrightarrow:"↪",hopf:"𝕙",Hopf:"ℍ",horbar:"―",HorizontalLine:"─",hscr:"𝒽",Hscr:"ℋ",hslash:"ℏ",Hstrok:"Ħ",hstrok:"ħ",HumpDownHump:"≎",HumpEqual:"≏",hybull:"⁃",hyphen:"‐",Iacute:"Í",iacute:"í",ic:"⁣",Icirc:"Î",icirc:"î",Icy:"И",icy:"и",Idot:"İ",IEcy:"Е",iecy:"е",iexcl:"¡",iff:"⇔",ifr:"𝔦",Ifr:"ℑ",Igrave:"Ì",igrave:"ì",ii:"ⅈ",iiiint:"⨌",iiint:"∭",iinfin:"⧜",iiota:"℩",IJlig:"IJ",ijlig:"ij",Imacr:"Ī",imacr:"ī",image:"ℑ",ImaginaryI:"ⅈ",imagline:"ℐ",imagpart:"ℑ",imath:"ı",Im:"ℑ",imof:"⊷",imped:"Ƶ",Implies:"⇒",incare:"℅",in:"∈",infin:"∞",infintie:"⧝",inodot:"ı",intcal:"⊺",int:"∫",Int:"∬",integers:"ℤ",Integral:"∫",intercal:"⊺",Intersection:"⋂",intlarhk:"⨗",intprod:"⨼",InvisibleComma:"⁣",InvisibleTimes:"⁢",IOcy:"Ё",iocy:"ё",Iogon:"Į",iogon:"į",Iopf:"𝕀",iopf:"𝕚",Iota:"Ι",iota:"ι",iprod:"⨼",iquest:"¿",iscr:"𝒾",Iscr:"ℐ",isin:"∈",isindot:"⋵",isinE:"⋹",isins:"⋴",isinsv:"⋳",isinv:"∈",it:"⁢",Itilde:"Ĩ",itilde:"ĩ",Iukcy:"І",iukcy:"і",Iuml:"Ï",iuml:"ï",Jcirc:"Ĵ",jcirc:"ĵ",Jcy:"Й",jcy:"й",Jfr:"𝔍",jfr:"𝔧",jmath:"ȷ",Jopf:"𝕁",jopf:"𝕛",Jscr:"𝒥",jscr:"𝒿",Jsercy:"Ј",jsercy:"ј",Jukcy:"Є",jukcy:"є",Kappa:"Κ",kappa:"κ",kappav:"ϰ",Kcedil:"Ķ",kcedil:"ķ",Kcy:"К",kcy:"к",Kfr:"𝔎",kfr:"𝔨",kgreen:"ĸ",KHcy:"Х",khcy:"х",KJcy:"Ќ",kjcy:"ќ",Kopf:"𝕂",kopf:"𝕜",Kscr:"𝒦",kscr:"𝓀",lAarr:"⇚",Lacute:"Ĺ",lacute:"ĺ",laemptyv:"⦴",lagran:"ℒ",Lambda:"Λ",lambda:"λ",lang:"⟨",Lang:"⟪",langd:"⦑",langle:"⟨",lap:"⪅",Laplacetrf:"ℒ",laquo:"«",larrb:"⇤",larrbfs:"⤟",larr:"←",Larr:"↞",lArr:"⇐",larrfs:"⤝",larrhk:"↩",larrlp:"↫",larrpl:"⤹",larrsim:"⥳",larrtl:"↢",latail:"⤙",lAtail:"⤛",lat:"⪫",late:"⪭",lates:"⪭︀",lbarr:"⤌",lBarr:"⤎",lbbrk:"❲",lbrace:"{",lbrack:"[",lbrke:"⦋",lbrksld:"⦏",lbrkslu:"⦍",Lcaron:"Ľ",lcaron:"ľ",Lcedil:"Ļ",lcedil:"ļ",lceil:"⌈",lcub:"{",Lcy:"Л",lcy:"л",ldca:"⤶",ldquo:"“",ldquor:"„",ldrdhar:"⥧",ldrushar:"⥋",ldsh:"↲",le:"≤",lE:"≦",LeftAngleBracket:"⟨",LeftArrowBar:"⇤",leftarrow:"←",LeftArrow:"←",Leftarrow:"⇐",LeftArrowRightArrow:"⇆",leftarrowtail:"↢",LeftCeiling:"⌈",LeftDoubleBracket:"⟦",LeftDownTeeVector:"⥡",LeftDownVectorBar:"⥙",LeftDownVector:"⇃",LeftFloor:"⌊",leftharpoondown:"↽",leftharpoonup:"↼",leftleftarrows:"⇇",leftrightarrow:"↔",LeftRightArrow:"↔",Leftrightarrow:"⇔",leftrightarrows:"⇆",leftrightharpoons:"⇋",leftrightsquigarrow:"↭",LeftRightVector:"⥎",LeftTeeArrow:"↤",LeftTee:"⊣",LeftTeeVector:"⥚",leftthreetimes:"⋋",LeftTriangleBar:"⧏",LeftTriangle:"⊲",LeftTriangleEqual:"⊴",LeftUpDownVector:"⥑",LeftUpTeeVector:"⥠",LeftUpVectorBar:"⥘",LeftUpVector:"↿",LeftVectorBar:"⥒",LeftVector:"↼",lEg:"⪋",leg:"⋚",leq:"≤",leqq:"≦",leqslant:"⩽",lescc:"⪨",les:"⩽",lesdot:"⩿",lesdoto:"⪁",lesdotor:"⪃",lesg:"⋚︀",lesges:"⪓",lessapprox:"⪅",lessdot:"⋖",lesseqgtr:"⋚",lesseqqgtr:"⪋",LessEqualGreater:"⋚",LessFullEqual:"≦",LessGreater:"≶",lessgtr:"≶",LessLess:"⪡",lesssim:"≲",LessSlantEqual:"⩽",LessTilde:"≲",lfisht:"⥼",lfloor:"⌊",Lfr:"𝔏",lfr:"𝔩",lg:"≶",lgE:"⪑",lHar:"⥢",lhard:"↽",lharu:"↼",lharul:"⥪",lhblk:"▄",LJcy:"Љ",ljcy:"љ",llarr:"⇇",ll:"≪",Ll:"⋘",llcorner:"⌞",Lleftarrow:"⇚",llhard:"⥫",lltri:"◺",Lmidot:"Ŀ",lmidot:"ŀ",lmoustache:"⎰",lmoust:"⎰",lnap:"⪉",lnapprox:"⪉",lne:"⪇",lnE:"≨",lneq:"⪇",lneqq:"≨",lnsim:"⋦",loang:"⟬",loarr:"⇽",lobrk:"⟦",longleftarrow:"⟵",LongLeftArrow:"⟵",Longleftarrow:"⟸",longleftrightarrow:"⟷",LongLeftRightArrow:"⟷",Longleftrightarrow:"⟺",longmapsto:"⟼",longrightarrow:"⟶",LongRightArrow:"⟶",Longrightarrow:"⟹",looparrowleft:"↫",looparrowright:"↬",lopar:"⦅",Lopf:"𝕃",lopf:"𝕝",loplus:"⨭",lotimes:"⨴",lowast:"∗",lowbar:"_",LowerLeftArrow:"↙",LowerRightArrow:"↘",loz:"◊",lozenge:"◊",lozf:"⧫",lpar:"(",lparlt:"⦓",lrarr:"⇆",lrcorner:"⌟",lrhar:"⇋",lrhard:"⥭",lrm:"‎",lrtri:"⊿",lsaquo:"‹",lscr:"𝓁",Lscr:"ℒ",lsh:"↰",Lsh:"↰",lsim:"≲",lsime:"⪍",lsimg:"⪏",lsqb:"[",lsquo:"‘",lsquor:"‚",Lstrok:"Ł",lstrok:"ł",ltcc:"⪦",ltcir:"⩹",lt:"<",LT:"<",Lt:"≪",ltdot:"⋖",lthree:"⋋",ltimes:"⋉",ltlarr:"⥶",ltquest:"⩻",ltri:"◃",ltrie:"⊴",ltrif:"◂",ltrPar:"⦖",lurdshar:"⥊",luruhar:"⥦",lvertneqq:"≨︀",lvnE:"≨︀",macr:"¯",male:"♂",malt:"✠",maltese:"✠",Map:"⤅",map:"↦",mapsto:"↦",mapstodown:"↧",mapstoleft:"↤",mapstoup:"↥",marker:"▮",mcomma:"⨩",Mcy:"М",mcy:"м",mdash:"—",mDDot:"∺",measuredangle:"∡",MediumSpace:" ",Mellintrf:"ℳ",Mfr:"𝔐",mfr:"𝔪",mho:"℧",micro:"µ",midast:"*",midcir:"⫰",mid:"∣",middot:"·",minusb:"⊟",minus:"−",minusd:"∸",minusdu:"⨪",MinusPlus:"∓",mlcp:"⫛",mldr:"…",mnplus:"∓",models:"⊧",Mopf:"𝕄",mopf:"𝕞",mp:"∓",mscr:"𝓂",Mscr:"ℳ",mstpos:"∾",Mu:"Μ",mu:"μ",multimap:"⊸",mumap:"⊸",nabla:"∇",Nacute:"Ń",nacute:"ń",nang:"∠⃒",nap:"≉",napE:"⩰̸",napid:"≋̸",napos:"ʼn",napprox:"≉",natural:"♮",naturals:"ℕ",natur:"♮",nbsp:" ",nbump:"≎̸",nbumpe:"≏̸",ncap:"⩃",Ncaron:"Ň",ncaron:"ň",Ncedil:"Ņ",ncedil:"ņ",ncong:"≇",ncongdot:"⩭̸",ncup:"⩂",Ncy:"Н",ncy:"н",ndash:"–",nearhk:"⤤",nearr:"↗",neArr:"⇗",nearrow:"↗",ne:"≠",nedot:"≐̸",NegativeMediumSpace:"​",NegativeThickSpace:"​",NegativeThinSpace:"​",NegativeVeryThinSpace:"​",nequiv:"≢",nesear:"⤨",nesim:"≂̸",NestedGreaterGreater:"≫",NestedLessLess:"≪",NewLine:"\n",nexist:"∄",nexists:"∄",Nfr:"𝔑",nfr:"𝔫",ngE:"≧̸",nge:"≱",ngeq:"≱",ngeqq:"≧̸",ngeqslant:"⩾̸",nges:"⩾̸",nGg:"⋙̸",ngsim:"≵",nGt:"≫⃒",ngt:"≯",ngtr:"≯",nGtv:"≫̸",nharr:"↮",nhArr:"⇎",nhpar:"⫲",ni:"∋",nis:"⋼",nisd:"⋺",niv:"∋",NJcy:"Њ",njcy:"њ",nlarr:"↚",nlArr:"⇍",nldr:"‥",nlE:"≦̸",nle:"≰",nleftarrow:"↚",nLeftarrow:"⇍",nleftrightarrow:"↮",nLeftrightarrow:"⇎",nleq:"≰",nleqq:"≦̸",nleqslant:"⩽̸",nles:"⩽̸",nless:"≮",nLl:"⋘̸",nlsim:"≴",nLt:"≪⃒",nlt:"≮",nltri:"⋪",nltrie:"⋬",nLtv:"≪̸",nmid:"∤",NoBreak:"⁠",NonBreakingSpace:" ",nopf:"𝕟",Nopf:"ℕ",Not:"⫬",not:"¬",NotCongruent:"≢",NotCupCap:"≭",NotDoubleVerticalBar:"∦",NotElement:"∉",NotEqual:"≠",NotEqualTilde:"≂̸",NotExists:"∄",NotGreater:"≯",NotGreaterEqual:"≱",NotGreaterFullEqual:"≧̸",NotGreaterGreater:"≫̸",NotGreaterLess:"≹",NotGreaterSlantEqual:"⩾̸",NotGreaterTilde:"≵",NotHumpDownHump:"≎̸",NotHumpEqual:"≏̸",notin:"∉",notindot:"⋵̸",notinE:"⋹̸",notinva:"∉",notinvb:"⋷",notinvc:"⋶",NotLeftTriangleBar:"⧏̸",NotLeftTriangle:"⋪",NotLeftTriangleEqual:"⋬",NotLess:"≮",NotLessEqual:"≰",NotLessGreater:"≸",NotLessLess:"≪̸",NotLessSlantEqual:"⩽̸",NotLessTilde:"≴",NotNestedGreaterGreater:"⪢̸",NotNestedLessLess:"⪡̸",notni:"∌",notniva:"∌",notnivb:"⋾",notnivc:"⋽",NotPrecedes:"⊀",NotPrecedesEqual:"⪯̸",NotPrecedesSlantEqual:"⋠",NotReverseElement:"∌",NotRightTriangleBar:"⧐̸",NotRightTriangle:"⋫",NotRightTriangleEqual:"⋭",NotSquareSubset:"⊏̸",NotSquareSubsetEqual:"⋢",NotSquareSuperset:"⊐̸",NotSquareSupersetEqual:"⋣",NotSubset:"⊂⃒",NotSubsetEqual:"⊈",NotSucceeds:"⊁",NotSucceedsEqual:"⪰̸",NotSucceedsSlantEqual:"⋡",NotSucceedsTilde:"≿̸",NotSuperset:"⊃⃒",NotSupersetEqual:"⊉",NotTilde:"≁",NotTildeEqual:"≄",NotTildeFullEqual:"≇",NotTildeTilde:"≉",NotVerticalBar:"∤",nparallel:"∦",npar:"∦",nparsl:"⫽⃥",npart:"∂̸",npolint:"⨔",npr:"⊀",nprcue:"⋠",nprec:"⊀",npreceq:"⪯̸",npre:"⪯̸",nrarrc:"⤳̸",nrarr:"↛",nrArr:"⇏",nrarrw:"↝̸",nrightarrow:"↛",nRightarrow:"⇏",nrtri:"⋫",nrtrie:"⋭",nsc:"⊁",nsccue:"⋡",nsce:"⪰̸",Nscr:"𝒩",nscr:"𝓃",nshortmid:"∤",nshortparallel:"∦",nsim:"≁",nsime:"≄",nsimeq:"≄",nsmid:"∤",nspar:"∦",nsqsube:"⋢",nsqsupe:"⋣",nsub:"⊄",nsubE:"⫅̸",nsube:"⊈",nsubset:"⊂⃒",nsubseteq:"⊈",nsubseteqq:"⫅̸",nsucc:"⊁",nsucceq:"⪰̸",nsup:"⊅",nsupE:"⫆̸",nsupe:"⊉",nsupset:"⊃⃒",nsupseteq:"⊉",nsupseteqq:"⫆̸",ntgl:"≹",Ntilde:"Ñ",ntilde:"ñ",ntlg:"≸",ntriangleleft:"⋪",ntrianglelefteq:"⋬",ntriangleright:"⋫",ntrianglerighteq:"⋭",Nu:"Ν",nu:"ν",num:"#",numero:"№",numsp:" ",nvap:"≍⃒",nvdash:"⊬",nvDash:"⊭",nVdash:"⊮",nVDash:"⊯",nvge:"≥⃒",nvgt:">⃒",nvHarr:"⤄",nvinfin:"⧞",nvlArr:"⤂",nvle:"≤⃒",nvlt:"<⃒",nvltrie:"⊴⃒",nvrArr:"⤃",nvrtrie:"⊵⃒",nvsim:"∼⃒",nwarhk:"⤣",nwarr:"↖",nwArr:"⇖",nwarrow:"↖",nwnear:"⤧",Oacute:"Ó",oacute:"ó",oast:"⊛",Ocirc:"Ô",ocirc:"ô",ocir:"⊚",Ocy:"О",ocy:"о",odash:"⊝",Odblac:"Ő",odblac:"ő",odiv:"⨸",odot:"⊙",odsold:"⦼",OElig:"Œ",oelig:"œ",ofcir:"⦿",Ofr:"𝔒",ofr:"𝔬",ogon:"˛",Ograve:"Ò",ograve:"ò",ogt:"⧁",ohbar:"⦵",ohm:"Ω",oint:"∮",olarr:"↺",olcir:"⦾",olcross:"⦻",oline:"‾",olt:"⧀",Omacr:"Ō",omacr:"ō",Omega:"Ω",omega:"ω",Omicron:"Ο",omicron:"ο",omid:"⦶",ominus:"⊖",Oopf:"𝕆",oopf:"𝕠",opar:"⦷",OpenCurlyDoubleQuote:"“",OpenCurlyQuote:"‘",operp:"⦹",oplus:"⊕",orarr:"↻",Or:"⩔",or:"∨",ord:"⩝",order:"ℴ",orderof:"ℴ",ordf:"ª",ordm:"º",origof:"⊶",oror:"⩖",orslope:"⩗",orv:"⩛",oS:"Ⓢ",Oscr:"𝒪",oscr:"ℴ",Oslash:"Ø",oslash:"ø",osol:"⊘",Otilde:"Õ",otilde:"õ",otimesas:"⨶",Otimes:"⨷",otimes:"⊗",Ouml:"Ö",ouml:"ö",ovbar:"⌽",OverBar:"‾",OverBrace:"⏞",OverBracket:"⎴",OverParenthesis:"⏜",para:"¶",parallel:"∥",par:"∥",parsim:"⫳",parsl:"⫽",part:"∂",PartialD:"∂",Pcy:"П",pcy:"п",percnt:"%",period:".",permil:"‰",perp:"⊥",pertenk:"‱",Pfr:"𝔓",pfr:"𝔭",Phi:"Φ",phi:"φ",phiv:"ϕ",phmmat:"ℳ",phone:"☎",Pi:"Π",pi:"π",pitchfork:"⋔",piv:"ϖ",planck:"ℏ",planckh:"ℎ",plankv:"ℏ",plusacir:"⨣",plusb:"⊞",pluscir:"⨢",plus:"+",plusdo:"∔",plusdu:"⨥",pluse:"⩲",PlusMinus:"±",plusmn:"±",plussim:"⨦",plustwo:"⨧",pm:"±",Poincareplane:"ℌ",pointint:"⨕",popf:"𝕡",Popf:"ℙ",pound:"£",prap:"⪷",Pr:"⪻",pr:"≺",prcue:"≼",precapprox:"⪷",prec:"≺",preccurlyeq:"≼",Precedes:"≺",PrecedesEqual:"⪯",PrecedesSlantEqual:"≼",PrecedesTilde:"≾",preceq:"⪯",precnapprox:"⪹",precneqq:"⪵",precnsim:"⋨",pre:"⪯",prE:"⪳",precsim:"≾",prime:"′",Prime:"″",primes:"ℙ",prnap:"⪹",prnE:"⪵",prnsim:"⋨",prod:"∏",Product:"∏",profalar:"⌮",profline:"⌒",profsurf:"⌓",prop:"∝",Proportional:"∝",Proportion:"∷",propto:"∝",prsim:"≾",prurel:"⊰",Pscr:"𝒫",pscr:"𝓅",Psi:"Ψ",psi:"ψ",puncsp:" ",Qfr:"𝔔",qfr:"𝔮",qint:"⨌",qopf:"𝕢",Qopf:"ℚ",qprime:"⁗",Qscr:"𝒬",qscr:"𝓆",quaternions:"ℍ",quatint:"⨖",quest:"?",questeq:"≟",quot:'"',QUOT:'"',rAarr:"⇛",race:"∽̱",Racute:"Ŕ",racute:"ŕ",radic:"√",raemptyv:"⦳",rang:"⟩",Rang:"⟫",rangd:"⦒",range:"⦥",rangle:"⟩",raquo:"»",rarrap:"⥵",rarrb:"⇥",rarrbfs:"⤠",rarrc:"⤳",rarr:"→",Rarr:"↠",rArr:"⇒",rarrfs:"⤞",rarrhk:"↪",rarrlp:"↬",rarrpl:"⥅",rarrsim:"⥴",Rarrtl:"⤖",rarrtl:"↣",rarrw:"↝",ratail:"⤚",rAtail:"⤜",ratio:"∶",rationals:"ℚ",rbarr:"⤍",rBarr:"⤏",RBarr:"⤐",rbbrk:"❳",rbrace:"}",rbrack:"]",rbrke:"⦌",rbrksld:"⦎",rbrkslu:"⦐",Rcaron:"Ř",rcaron:"ř",Rcedil:"Ŗ",rcedil:"ŗ",rceil:"⌉",rcub:"}",Rcy:"Р",rcy:"р",rdca:"⤷",rdldhar:"⥩",rdquo:"”",rdquor:"”",rdsh:"↳",real:"ℜ",realine:"ℛ",realpart:"ℜ",reals:"ℝ",Re:"ℜ",rect:"▭",reg:"®",REG:"®",ReverseElement:"∋",ReverseEquilibrium:"⇋",ReverseUpEquilibrium:"⥯",rfisht:"⥽",rfloor:"⌋",rfr:"𝔯",Rfr:"ℜ",rHar:"⥤",rhard:"⇁",rharu:"⇀",rharul:"⥬",Rho:"Ρ",rho:"ρ",rhov:"ϱ",RightAngleBracket:"⟩",RightArrowBar:"⇥",rightarrow:"→",RightArrow:"→",Rightarrow:"⇒",RightArrowLeftArrow:"⇄",rightarrowtail:"↣",RightCeiling:"⌉",RightDoubleBracket:"⟧",RightDownTeeVector:"⥝",RightDownVectorBar:"⥕",RightDownVector:"⇂",RightFloor:"⌋",rightharpoondown:"⇁",rightharpoonup:"⇀",rightleftarrows:"⇄",rightleftharpoons:"⇌",rightrightarrows:"⇉",rightsquigarrow:"↝",RightTeeArrow:"↦",RightTee:"⊢",RightTeeVector:"⥛",rightthreetimes:"⋌",RightTriangleBar:"⧐",RightTriangle:"⊳",RightTriangleEqual:"⊵",RightUpDownVector:"⥏",RightUpTeeVector:"⥜",RightUpVectorBar:"⥔",RightUpVector:"↾",RightVectorBar:"⥓",RightVector:"⇀",ring:"˚",risingdotseq:"≓",rlarr:"⇄",rlhar:"⇌",rlm:"‏",rmoustache:"⎱",rmoust:"⎱",rnmid:"⫮",roang:"⟭",roarr:"⇾",robrk:"⟧",ropar:"⦆",ropf:"𝕣",Ropf:"ℝ",roplus:"⨮",rotimes:"⨵",RoundImplies:"⥰",rpar:")",rpargt:"⦔",rppolint:"⨒",rrarr:"⇉",Rrightarrow:"⇛",rsaquo:"›",rscr:"𝓇",Rscr:"ℛ",rsh:"↱",Rsh:"↱",rsqb:"]",rsquo:"’",rsquor:"’",rthree:"⋌",rtimes:"⋊",rtri:"▹",rtrie:"⊵",rtrif:"▸",rtriltri:"⧎",RuleDelayed:"⧴",ruluhar:"⥨",rx:"℞",Sacute:"Ś",sacute:"ś",sbquo:"‚",scap:"⪸",Scaron:"Š",scaron:"š",Sc:"⪼",sc:"≻",sccue:"≽",sce:"⪰",scE:"⪴",Scedil:"Ş",scedil:"ş",Scirc:"Ŝ",scirc:"ŝ",scnap:"⪺",scnE:"⪶",scnsim:"⋩",scpolint:"⨓",scsim:"≿",Scy:"С",scy:"с",sdotb:"⊡",sdot:"⋅",sdote:"⩦",searhk:"⤥",searr:"↘",seArr:"⇘",searrow:"↘",sect:"§",semi:";",seswar:"⤩",setminus:"∖",setmn:"∖",sext:"✶",Sfr:"𝔖",sfr:"𝔰",sfrown:"⌢",sharp:"♯",SHCHcy:"Щ",shchcy:"щ",SHcy:"Ш",shcy:"ш",ShortDownArrow:"↓",ShortLeftArrow:"←",shortmid:"∣",shortparallel:"∥",ShortRightArrow:"→",ShortUpArrow:"↑",shy:"­",Sigma:"Σ",sigma:"σ",sigmaf:"ς",sigmav:"ς",sim:"∼",simdot:"⩪",sime:"≃",simeq:"≃",simg:"⪞",simgE:"⪠",siml:"⪝",simlE:"⪟",simne:"≆",simplus:"⨤",simrarr:"⥲",slarr:"←",SmallCircle:"∘",smallsetminus:"∖",smashp:"⨳",smeparsl:"⧤",smid:"∣",smile:"⌣",smt:"⪪",smte:"⪬",smtes:"⪬︀",SOFTcy:"Ь",softcy:"ь",solbar:"⌿",solb:"⧄",sol:"/",Sopf:"𝕊",sopf:"𝕤",spades:"♠",spadesuit:"♠",spar:"∥",sqcap:"⊓",sqcaps:"⊓︀",sqcup:"⊔",sqcups:"⊔︀",Sqrt:"√",sqsub:"⊏",sqsube:"⊑",sqsubset:"⊏",sqsubseteq:"⊑",sqsup:"⊐",sqsupe:"⊒",sqsupset:"⊐",sqsupseteq:"⊒",square:"□",Square:"□",SquareIntersection:"⊓",SquareSubset:"⊏",SquareSubsetEqual:"⊑",SquareSuperset:"⊐",SquareSupersetEqual:"⊒",SquareUnion:"⊔",squarf:"▪",squ:"□",squf:"▪",srarr:"→",Sscr:"𝒮",sscr:"𝓈",ssetmn:"∖",ssmile:"⌣",sstarf:"⋆",Star:"⋆",star:"☆",starf:"★",straightepsilon:"ϵ",straightphi:"ϕ",strns:"¯",sub:"⊂",Sub:"⋐",subdot:"⪽",subE:"⫅",sube:"⊆",subedot:"⫃",submult:"⫁",subnE:"⫋",subne:"⊊",subplus:"⪿",subrarr:"⥹",subset:"⊂",Subset:"⋐",subseteq:"⊆",subseteqq:"⫅",SubsetEqual:"⊆",subsetneq:"⊊",subsetneqq:"⫋",subsim:"⫇",subsub:"⫕",subsup:"⫓",succapprox:"⪸",succ:"≻",succcurlyeq:"≽",Succeeds:"≻",SucceedsEqual:"⪰",SucceedsSlantEqual:"≽",SucceedsTilde:"≿",succeq:"⪰",succnapprox:"⪺",succneqq:"⪶",succnsim:"⋩",succsim:"≿",SuchThat:"∋",sum:"∑",Sum:"∑",sung:"♪",sup1:"¹",sup2:"²",sup3:"³",sup:"⊃",Sup:"⋑",supdot:"⪾",supdsub:"⫘",supE:"⫆",supe:"⊇",supedot:"⫄",Superset:"⊃",SupersetEqual:"⊇",suphsol:"⟉",suphsub:"⫗",suplarr:"⥻",supmult:"⫂",supnE:"⫌",supne:"⊋",supplus:"⫀",supset:"⊃",Supset:"⋑",supseteq:"⊇",supseteqq:"⫆",supsetneq:"⊋",supsetneqq:"⫌",supsim:"⫈",supsub:"⫔",supsup:"⫖",swarhk:"⤦",swarr:"↙",swArr:"⇙",swarrow:"↙",swnwar:"⤪",szlig:"ß",Tab:"\t",target:"⌖",Tau:"Τ",tau:"τ",tbrk:"⎴",Tcaron:"Ť",tcaron:"ť",Tcedil:"Ţ",tcedil:"ţ",Tcy:"Т",tcy:"т",tdot:"⃛",telrec:"⌕",Tfr:"𝔗",tfr:"𝔱",there4:"∴",therefore:"∴",Therefore:"∴",Theta:"Θ",theta:"θ",thetasym:"ϑ",thetav:"ϑ",thickapprox:"≈",thicksim:"∼",ThickSpace:"  ",ThinSpace:" ",thinsp:" ",thkap:"≈",thksim:"∼",THORN:"Þ",thorn:"þ",tilde:"˜",Tilde:"∼",TildeEqual:"≃",TildeFullEqual:"≅",TildeTilde:"≈",timesbar:"⨱",timesb:"⊠",times:"×",timesd:"⨰",tint:"∭",toea:"⤨",topbot:"⌶",topcir:"⫱",top:"⊤",Topf:"𝕋",topf:"𝕥",topfork:"⫚",tosa:"⤩",tprime:"‴",trade:"™",TRADE:"™",triangle:"▵",triangledown:"▿",triangleleft:"◃",trianglelefteq:"⊴",triangleq:"≜",triangleright:"▹",trianglerighteq:"⊵",tridot:"◬",trie:"≜",triminus:"⨺",TripleDot:"⃛",triplus:"⨹",trisb:"⧍",tritime:"⨻",trpezium:"⏢",Tscr:"𝒯",tscr:"𝓉",TScy:"Ц",tscy:"ц",TSHcy:"Ћ",tshcy:"ћ",Tstrok:"Ŧ",tstrok:"ŧ",twixt:"≬",twoheadleftarrow:"↞",twoheadrightarrow:"↠",Uacute:"Ú",uacute:"ú",uarr:"↑",Uarr:"↟",uArr:"⇑",Uarrocir:"⥉",Ubrcy:"Ў",ubrcy:"ў",Ubreve:"Ŭ",ubreve:"ŭ",Ucirc:"Û",ucirc:"û",Ucy:"У",ucy:"у",udarr:"⇅",Udblac:"Ű",udblac:"ű",udhar:"⥮",ufisht:"⥾",Ufr:"𝔘",ufr:"𝔲",Ugrave:"Ù",ugrave:"ù",uHar:"⥣",uharl:"↿",uharr:"↾",uhblk:"▀",ulcorn:"⌜",ulcorner:"⌜",ulcrop:"⌏",ultri:"◸",Umacr:"Ū",umacr:"ū",uml:"¨",UnderBar:"_",UnderBrace:"⏟",UnderBracket:"⎵",UnderParenthesis:"⏝",Union:"⋃",UnionPlus:"⊎",Uogon:"Ų",uogon:"ų",Uopf:"𝕌",uopf:"𝕦",UpArrowBar:"⤒",uparrow:"↑",UpArrow:"↑",Uparrow:"⇑",UpArrowDownArrow:"⇅",updownarrow:"↕",UpDownArrow:"↕",Updownarrow:"⇕",UpEquilibrium:"⥮",upharpoonleft:"↿",upharpoonright:"↾",uplus:"⊎",UpperLeftArrow:"↖",UpperRightArrow:"↗",upsi:"υ",Upsi:"ϒ",upsih:"ϒ",Upsilon:"Υ",upsilon:"υ",UpTeeArrow:"↥",UpTee:"⊥",upuparrows:"⇈",urcorn:"⌝",urcorner:"⌝",urcrop:"⌎",Uring:"Ů",uring:"ů",urtri:"◹",Uscr:"𝒰",uscr:"𝓊",utdot:"⋰",Utilde:"Ũ",utilde:"ũ",utri:"▵",utrif:"▴",uuarr:"⇈",Uuml:"Ü",uuml:"ü",uwangle:"⦧",vangrt:"⦜",varepsilon:"ϵ",varkappa:"ϰ",varnothing:"∅",varphi:"ϕ",varpi:"ϖ",varpropto:"∝",varr:"↕",vArr:"⇕",varrho:"ϱ",varsigma:"ς",varsubsetneq:"⊊︀",varsubsetneqq:"⫋︀",varsupsetneq:"⊋︀",varsupsetneqq:"⫌︀",vartheta:"ϑ",vartriangleleft:"⊲",vartriangleright:"⊳",vBar:"⫨",Vbar:"⫫",vBarv:"⫩",Vcy:"В",vcy:"в",vdash:"⊢",vDash:"⊨",Vdash:"⊩",VDash:"⊫",Vdashl:"⫦",veebar:"⊻",vee:"∨",Vee:"⋁",veeeq:"≚",vellip:"⋮",verbar:"|",Verbar:"‖",vert:"|",Vert:"‖",VerticalBar:"∣",VerticalLine:"|",VerticalSeparator:"❘",VerticalTilde:"≀",VeryThinSpace:" ",Vfr:"𝔙",vfr:"𝔳",vltri:"⊲",vnsub:"⊂⃒",vnsup:"⊃⃒",Vopf:"𝕍",vopf:"𝕧",vprop:"∝",vrtri:"⊳",Vscr:"𝒱",vscr:"𝓋",vsubnE:"⫋︀",vsubne:"⊊︀",vsupnE:"⫌︀",vsupne:"⊋︀",Vvdash:"⊪",vzigzag:"⦚",Wcirc:"Ŵ",wcirc:"ŵ",wedbar:"⩟",wedge:"∧",Wedge:"⋀",wedgeq:"≙",weierp:"℘",Wfr:"𝔚",wfr:"𝔴",Wopf:"𝕎",wopf:"𝕨",wp:"℘",wr:"≀",wreath:"≀",Wscr:"𝒲",wscr:"𝓌",xcap:"⋂",xcirc:"◯",xcup:"⋃",xdtri:"▽",Xfr:"𝔛",xfr:"𝔵",xharr:"⟷",xhArr:"⟺",Xi:"Ξ",xi:"ξ",xlarr:"⟵",xlArr:"⟸",xmap:"⟼",xnis:"⋻",xodot:"⨀",Xopf:"𝕏",xopf:"𝕩",xoplus:"⨁",xotime:"⨂",xrarr:"⟶",xrArr:"⟹",Xscr:"𝒳",xscr:"𝓍",xsqcup:"⨆",xuplus:"⨄",xutri:"△",xvee:"⋁",xwedge:"⋀",Yacute:"Ý",yacute:"ý",YAcy:"Я",yacy:"я",Ycirc:"Ŷ",ycirc:"ŷ",Ycy:"Ы",ycy:"ы",yen:"¥",Yfr:"𝔜",yfr:"𝔶",YIcy:"Ї",yicy:"ї",Yopf:"𝕐",yopf:"𝕪",Yscr:"𝒴",yscr:"𝓎",YUcy:"Ю",yucy:"ю",yuml:"ÿ",Yuml:"Ÿ",Zacute:"Ź",zacute:"ź",Zcaron:"Ž",zcaron:"ž",Zcy:"З",zcy:"з",Zdot:"Ż",zdot:"ż",zeetrf:"ℨ",ZeroWidthSpace:"​",Zeta:"Ζ",zeta:"ζ",zfr:"𝔷",Zfr:"ℨ",ZHcy:"Ж",zhcy:"ж",zigrarr:"⇝",zopf:"𝕫",Zopf:"ℤ",Zscr:"𝒵",zscr:"𝓏",zwj:"‍",zwnj:"‌"}},function(a){a.exports={amp:"&",apos:"'",gt:">",lt:"<",quot:'"'}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=s(t(136)),o=s(t(105)),r=s(t(301));function s(a){return a&&a.__esModule?a:{default:a}}e.default=(0,i.memoize)(function(a,e,t){return(0,i.isUndefined)(e)&&(e=""),((0,i.isUndefined)(t)||!0===t)&&(a=(0,n.default)(a)),a=(0,r.default)(a),a=(0,i.escapeRegExp)(a),a=(0,o.default)(a,!1,e),new RegExp(a,"ig")})},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.scoreToRating=void 0;var i=function(a){return a&&a.__esModule?a:{default:a}}(t(135));e.scoreToRating=i.default},function(a,e,t){"use strict";function i(a){Error.captureStackTrace(this,this.constructor),this.name=this.constructor.name,this.message=a}Object.defineProperty(e,"__esModule",{value:!0}),function(a){return a&&a.__esModule?a:{default:a}}(t(14)).default.inherits(i,Error),e.default=i},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a,e){((0,n.isUndefined)(e)||""===e)&&(e="en");const t=(0,n.get)(o,[e],[]);if(a.length>1){const e=(0,n.filter)(a,function(a){return!(0,n.includes)(t.all,a.trim().toLocaleLowerCase())});if(e.length>0)return e}return a};var i=function(a){return a&&a.__esModule?a:{default:a}}(t(88)),n=t(1);const o=(0,i.default)()},function(a,e){var t=9007199254740991;a.exports=function(a){return"number"==typeof a&&a>-1&&a%1==0&&a<=t}},function(a,e,t){var i=t(314),n=t(209);a.exports=function(a){return null!=a&&n(a.length)&&!i(a)}},function(a,e,t){var i=t(93)(t(56),"Map");a.exports=i},function(a,e,t){var i=t(664),n=t(671),o=t(673),r=t(674),s=t(675);function d(a){var e=-1,t=null==a?0:a.length;for(this.clear();++e<t;){var i=a[e];this.set(i[0],i[1])}}d.prototype.clear=i,d.prototype.delete=n,d.prototype.get=o,d.prototype.has=r,d.prototype.set=s,a.exports=d},function(a,e,t){var i=t(52),n=t(146),o=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,r=/^\w*$/;a.exports=function(a,e){if(i(a))return!1;var t=typeof a;return!("number"!=t&&"symbol"!=t&&"boolean"!=t&&null!=a&&!n(a))||r.test(a)||!o.test(a)||null!=e&&a in Object(e)}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a){var e;return null===(e=a.match(/<a(?:[^>]+)?>(.*?)<\/a>/gi))&&(e=[]),e}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=function(a){return a&&a.__esModule?a:{default:a}}(t(723));var n=/href=(["'])([^"']+)\1/i;function o(a){return a.split("#")[0]}function r(a){return a.split("?")[0]}function s(a){return a.replace(/\/$/,"")}function d(a){return s(a)+"/"}e.default={removeHash:o,removeQueryArgs:r,removeTrailingSlash:s,addTrailingSlash:d,getFromAnchorTag:function(a){var e=n.exec(a);return null===e?"":e[2]},areEqual:function(a,e){return a=r(o(a)),e=r(o(e)),d(a)===d(e)},getHostname:function(a){return(a=i.default.parse(a)).hostname},getProtocol:function(a){return i.default.parse(a).protocol},isInternalLink:function(a,e){const t=i.default.parse(a,!1,!0);return-1===a.indexOf("//")&&0===a.indexOf("/")||0!==a.indexOf("#")&&(!t.host||t.host===e)},protocolIsHttpScheme:function(a){return!!a&&("http:"===a||"https:"===a)},isRelativeFragmentURL:function(a){return 0===a.indexOf("#")}}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.getIndicesByWordListSorted=e.sortIndices=e.filterIndices=e.getIndicesByWordList=e.getIndicesByWord=void 0;var i=t(1),n=function(a){return a&&a.__esModule?a:{default:a}}(t(25)),o=t(336);function r(a,e){for(var t,i=0,n=a.length,r=[];(t=e.indexOf(a,i))>-1;){var s=(0,o.characterInBoundary)(e[t-1])||0===t,d=(0,o.characterInBoundary)(e[t+n])||e.length===t+n;s&&d&&r.push({index:t,match:a}),i=t+n}return r}var s=function(a,e){var t=[];return(0,i.forEach)(a,function(a){a=(0,n.default)(a),(0,o.isWordInSentence)(a,e)&&(t=t.concat(r(a,e)))}),t},d=function(a){return a.sort(function(a,e){return a.index>e.index})},l=function(a){a=d(a);for(var e=[],t=0;t<a.length;t++)!(0,i.isUndefined)(a[t+1])&&a[t+1].index<a[t].index+a[t].match.length?(e.push(a[t]),t++):e.push(a[t]);return e},c=function(a,e){var t=[];return(0,i.forEach)(a,function(a){if(a=(0,n.default)(a),!(0,o.isWordInSentence)(a,e))return t;t=t.concat(r(a,e))}),t=t.sort(function(a,e){return a.index<e.index?-1:a.index>e.index?1:0})};e.getIndicesByWord=r,e.getIndicesByWordList=s,e.filterIndices=l,e.sortIndices=d,e.getIndicesByWordListSorted=c,e.default={getIndicesByWord:r,getIndicesByWordList:s,filterIndices:l,sortIndices:d,getIndicesByWordListSorted:c}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a,e){const t=i[a];return e&&t?t:a=>a};const i=(0,function(a){return a&&a.__esModule?a:{default:a}}(t(276)).default)()},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=function(a){return a&&a.__esModule?a:{default:a}}(t(207));var o=function(a){this.app=a,this.loaded=!1,this.preloadThreshold=3e3,this.plugins={},this.modifications={},this.customTests=[],setTimeout(this._pollLoadingPlugins.bind(this),1500)};o.prototype._registerPlugin=function(a,e){return"string"!=typeof a?(console.error("Failed to register plugin. Expected parameter `pluginName` to be a string."),!1):(0,i.isUndefined)(e)||"object"==typeof e?!1===this._validateUniqueness(a)?(console.error("Failed to register plugin. Plugin with name "+a+" already exists"),!1):(this.plugins[a]=e,!0):(console.error("Failed to register plugin "+a+". Expected parameters `options` to be a object."),!1)},o.prototype._ready=function(a){return"string"!=typeof a?(console.error("Failed to modify status for plugin "+a+". Expected parameter `pluginName` to be a string."),!1):(0,i.isUndefined)(this.plugins[a])?(console.error("Failed to modify status for plugin "+a+". The plugin was not properly registered."),!1):(this.plugins[a].status="ready",!0)},o.prototype._reloaded=function(a){return"string"!=typeof a?(console.error("Failed to reload Content Analysis for "+a+". Expected parameter `pluginName` to be a string."),!1):(0,i.isUndefined)(this.plugins[a])?(console.error("Failed to reload Content Analysis for plugin "+a+". The plugin was not properly registered."),!1):(this.app.refresh(),!0)},o.prototype._registerModification=function(a,e,t,n){if("string"!=typeof a)return console.error("Failed to register modification for plugin "+t+". Expected parameter `modification` to be a string."),!1;if("function"!=typeof e)return console.error("Failed to register modification for plugin "+t+". Expected parameter `callable` to be a function."),!1;if("string"!=typeof t)return console.error("Failed to register modification for plugin "+t+". Expected parameter `pluginName` to be a string."),!1;if(!1===this._validateOrigin(t))return console.error("Failed to register modification for plugin "+t+". The integration has not finished loading yet."),!1;var o={callable:e,origin:t,priority:"number"==typeof n?n:10};return(0,i.isUndefined)(this.modifications[a])&&(this.modifications[a]=[]),this.modifications[a].push(o),!0},o.prototype._registerTest=function(){console.error("This function is deprecated, please use _registerAssessment")},o.prototype._registerAssessment=function(a,e,t,o){if(!(0,i.isString)(e))throw new n.default("Failed to register test for plugin "+o+". Expected parameter `name` to be a string.");if(!(0,i.isObject)(t))throw new n.default("Failed to register assessment for plugin "+o+". Expected parameter `assessment` to be a function.");if(!(0,i.isString)(o))throw new n.default("Failed to register assessment for plugin "+o+". Expected parameter `pluginName` to be a string.");return e=o+"-"+e,a.addAssessment(e,t),!0},o.prototype._pollLoadingPlugins=function(a){a=(0,i.isUndefined)(a)?0:a,!0===this._allReady()?(this.loaded=!0,this.app.pluginsLoaded()):a>=this.preloadThreshold?this._pollTimeExceeded():(a+=50,setTimeout(this._pollLoadingPlugins.bind(this,a),50))},o.prototype._allReady=function(){return(0,i.reduce)(this.plugins,function(a,e){return a&&"ready"===e.status},!0)},o.prototype._pollTimeExceeded=function(){(0,i.forEach)(this.plugins,function(a,e){(0,i.isUndefined)(a.options)||"ready"===a.options.status||(console.error("Error: Plugin "+e+". did not finish loading in time."),delete this.plugins[e])}),this.loaded=!0,this.app.pluginsLoaded()},o.prototype._applyModifications=function(a,e,t){var n=this.modifications[a];return n instanceof Array&&n.length>0&&((n=this._stripIllegalModifications(n)).sort(function(a,e){return a.priority-e.priority}),(0,i.forEach)(n,function(i){var n=(0,i.callable)(e,t);typeof n==typeof e?e=n:console.error("Modification with name "+a+" performed by plugin with name "+i.origin+" was ignored because the data that was returned by it was of a different type than the data we had passed it.")})),e},o.prototype._addPluginTests=function(a){this.customTests.map(function(e){this._addPluginTest(a,e)},this)},o.prototype._addPluginTest=function(a,e){a.addAnalysis({name:e.name,callable:e.analysis}),a.analyzeScorer.addScoring({name:e.name,scoring:e.scoring})},o.prototype._stripIllegalModifications=function(a){return(0,i.forEach)(a,function(e,t){!1===this._validateOrigin(e.origin)&&delete a[t]}.bind(this)),a},o.prototype._validateOrigin=function(a){return"ready"===this.plugins[a].status},o.prototype._validateUniqueness=function(a){return!!(0,i.isUndefined)(this.plugins[a])},e.default=o},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=z(t(205)),o=t(33),r=z(t(25)),s=z(t(136)),d=z(t(201)),l=z(t(348)),c=z(t(862)),u=z(t(349)),p=z(t(198));function z(a){return a&&a.__esModule?a:{default:a}}var g=l.default.snippetEditor,m=l.default.hiddenSpan,w={data:{title:"",metaDesc:"",urlPath:"",titleWidth:0,metaHeight:0},placeholder:{title:"This is an example title - edit by clicking here",metaDesc:"Modify your meta description by editing it right here",urlPath:"example-post/"},defaultValue:{title:"",metaDesc:""},baseURL:"http://example.com/",callbacks:{saveSnippetData:function(){}},addTrailingSlash:!0,metaDescriptionDate:"",previewMode:"desktop"};const y=p.default.maxMeta;var f=[{preview:"title_container",inputField:"title"},{preview:"url_container",inputField:"urlPath"},{preview:"meta_container",inputField:"metaDesc"}];function b(a){return this.data[a]}function h(a,e){this.element.input[a].value=e,this.data[a]=e}function v(a,e,t,i){var n;a.value=e,u.default.removeClasses(a,["snippet-editor__progress--bad","snippet-editor__progress--ok","snippet-editor__progress--good"]),u.default.addClass(a,"snippet-editor__progress--"+i),this.hasProgressSupport||(n=e/t*100,a.getElementsByClassName("snippet-editor__progress-bar")[0].style.width=n+"%")}var k=function(a){if((0,i.defaultsDeep)(a,w),this.data=a.data,(0,i.isUndefined)(a.analyzerApp)||(this.refObj=a.analyzerApp,this.i18n=this.refObj.i18n,this.data={title:this.refObj.rawData.snippetTitle||"",urlPath:this.refObj.rawData.snippetCite||"",metaDesc:this.refObj.rawData.snippetMeta||""},(0,i.isEmpty)(this.refObj.rawData.metaTitle)||(a.placeholder.title=this.refObj.rawData.metaTitle)),(0,i.isUndefined)(a.i18n)||(this.i18n=a.i18n),!(0,i.isElement)(a.targetElement))throw new Error("The snippet preview requires a valid target element");this.opts=a,this._currentFocus=null,this._currentHover=null,this.unformattedText={},Object.defineProperty(this.unformattedText,"snippet_cite",{get:b.bind(this,"urlPath"),set:h.bind(this,"urlPath")}),Object.defineProperty(this.unformattedText,"snippet_meta",{get:b.bind(this,"metaDesc"),set:h.bind(this,"metaDesc")}),Object.defineProperty(this.unformattedText,"snippet_title",{get:b.bind(this,"title"),set:h.bind(this,"title")})};function j(){var a=this.data.title;return(0,i.isEmpty)(a)&&(a=this.opts.defaultValue.title),this.hasPluggable()&&(a=this.refObj.pluggable._applyModifications("data_page_title",a)),(0,r.default)(a)}k.prototype.renderTemplate=function(){var a=this.opts.targetElement;a.innerHTML=g({raw:{title:this.data.title,snippetCite:this.data.urlPath,meta:this.data.metaDesc},rendered:{title:this.formatTitle(),baseUrl:this.formatUrl(),snippetCite:this.formatCite(),meta:this.formatMeta()},metaDescriptionDate:this.opts.metaDescriptionDate,placeholder:this.opts.placeholder,i18n:{edit:this.i18n.dgettext("js-text-analysis","Edit snippet"),title:this.i18n.dgettext("js-text-analysis","SEO title"),slug:this.i18n.dgettext("js-text-analysis","Slug"),metaDescription:this.i18n.dgettext("js-text-analysis","Meta description"),save:this.i18n.dgettext("js-text-analysis","Close snippet editor"),snippetPreview:this.i18n.dgettext("js-text-analysis","Google preview"),titleLabel:this.i18n.dgettext("js-text-analysis","SEO title preview:"),slugLabel:this.i18n.dgettext("js-text-analysis","Slug preview:"),metaDescriptionLabel:this.i18n.dgettext("js-text-analysis","Meta description preview:"),snippetPreviewDescription:this.i18n.dgettext("js-text-analysis","You can click on each element in the preview to jump to the Snippet Editor."),desktopPreviewMode:this.i18n.dgettext("js-text-analysis","Desktop preview"),mobilePreviewMode:this.i18n.dgettext("js-text-analysis","Mobile preview"),isScrollableHint:this.i18n.dgettext("js-text-analysis","Scroll to see the preview content.")}}),this.element={measurers:{metaHeight:null},rendered:{title:document.getElementById("snippet_title"),urlBase:document.getElementById("snippet_citeBase"),urlPath:document.getElementById("snippet_cite"),metaDesc:document.getElementById("snippet_meta")},input:{title:a.getElementsByClassName("js-snippet-editor-title")[0],urlPath:a.getElementsByClassName("js-snippet-editor-slug")[0],metaDesc:a.getElementsByClassName("js-snippet-editor-meta-description")[0]},progress:{title:a.getElementsByClassName("snippet-editor__progress-title")[0],metaDesc:a.getElementsByClassName("snippet-editor__progress-meta-description")[0]},container:document.getElementById("snippet_preview"),formContainer:a.getElementsByClassName("snippet-editor__form")[0],editToggle:a.getElementsByClassName("snippet-editor__edit-button")[0],closeEditor:a.getElementsByClassName("snippet-editor__submit")[0],formFields:a.getElementsByClassName("snippet-editor__form-field")},this.element.label={title:this.element.input.title.parentNode,urlPath:this.element.input.urlPath.parentNode,metaDesc:this.element.input.metaDesc.parentNode},this.element.preview={title:this.element.rendered.title.parentNode,urlPath:this.element.rendered.urlPath.parentNode,metaDesc:this.element.rendered.metaDesc.parentNode},this.hasProgressSupport=function(){var a=document.createElement("progress");return!(0,i.isUndefined)(a.max)}(),this.hasProgressSupport?(this.element.progress.title.max=600,this.element.progress.metaDesc.max=y):(0,i.forEach)(this.element.progress,function(a){u.default.addClass(a,"snippet-editor__progress--fallback")}),this.initPreviewToggler(),this.setInitialView(),this.opened=!1,this.createMeasurementElements(),this.updateProgressBars()},k.prototype.initPreviewToggler=function(){this.snippetPreviewToggle=new c.default(this.opts.previewMode,this.opts.targetElement.getElementsByClassName("snippet-editor__view-icon")),this.snippetPreviewToggle.initialize(),this.snippetPreviewToggle.bindEvents()},k.prototype.refresh=function(){this.output=this.htmlOutput(),this.renderOutput(),this.renderSnippetStyle(),this.measureTitle(),this.measureMetaDescription(),this.updateProgressBars()};var _=function(){var a=this.data.metaDesc;return(0,i.isEmpty)(a)&&(a=this.opts.defaultValue.metaDesc),this.hasPluggable()&&(a=this.refObj.pluggable._applyModifications("data_meta_desc",a)),(0,i.isEmpty)(this.opts.metaDescriptionDate)||(0,i.isEmpty)(a)||(a=this.opts.metaDescriptionDate+" - "+this.data.metaDesc),(0,r.default)(a)};k.prototype.getAnalyzerData=function(){return{title:j.call(this),url:this.data.urlPath,metaDesc:_.call(this)}},k.prototype.callRegisteredEventBinder=function(){this.hasApp()&&this.refObj.callbacks.bindElementEvents(this.refObj)},k.prototype.init=function(){this.hasApp()&&null!==this.refObj.rawData.metaTitle&&null!==this.refObj.rawData.cite&&this.refresh()},k.prototype.htmlOutput=function(){var a={};return a.title=this.formatTitle(),a.cite=this.formatCite(),a.meta=this.formatMeta(),a.url=this.formatUrl(),a},k.prototype.formatTitle=function(){var a=this.data.title;return(0,i.isEmpty)(a)&&(a=this.opts.defaultValue.title),(0,i.isEmpty)(a)&&(a=this.opts.placeholder.title),this.hasPluggable()&&this.refObj.pluggable.loaded&&(a=this.refObj.pluggable._applyModifications("data_page_title",a)),a=(0,o.stripFullTags)(a),(0,i.isEmpty)(a)&&(a=this.i18n.dgettext("js-text-analysis","Please provide an SEO title by editing the snippet below.")),a},k.prototype.formatUrl=function(){return function(){var a=this.opts.baseURL;return this.hasApp()&&!(0,i.isEmpty)(this.refObj.rawData.baseUrl)&&this.opts.baseURL===w.baseURL&&(a=this.refObj.rawData.baseUrl),a}.call(this).replace(/http:\/\//gi,"")},k.prototype.formatCite=function(){var a=this.data.urlPath;return a=(0,s.default)((0,o.stripFullTags)(a)),(0,i.isEmpty)(a)&&(a=this.opts.placeholder.urlPath),this.hasApp()&&!(0,i.isEmpty)(this.refObj.rawData.keyword)&&(a=this.formatKeywordUrl(a)),this.opts.addTrailingSlash&&!function(a){return a.indexOf("/")===a.length-1}(a)&&(a+="/"),a=(a=a.replace(/\s/g,"-")).replace(/\?|#/g,"")},k.prototype.formatMeta=function(){var a=this.data.metaDesc;return(0,i.isEmpty)(a)&&(a=this.getMetaText()),this.hasPluggable()&&this.refObj.pluggable.loaded&&(a=this.refObj.pluggable._applyModifications("data_meta_desc",a)),a=(a=(0,o.stripFullTags)(a)).substring(0,y),this.hasApp()&&!(0,i.isEmpty)(this.refObj.rawData.keyword)&&(a=this.formatKeyword(a)),(0,i.isEmpty)(a)&&(a=this.i18n.dgettext("js-text-analysis","Please provide a meta description by editing the snippet below.")),a},k.prototype.getMetaText=function(){var a=this.opts.defaultValue.metaDesc;return this.hasApp()&&!(0,i.isUndefined)(this.refObj.rawData.excerpt)&&(0,i.isEmpty)(a)&&(a=this.refObj.rawData.excerpt),this.hasApp()&&!(0,i.isUndefined)(this.refObj.rawData.text)&&(0,i.isEmpty)(a)&&(a=this.refObj.rawData.text,this.hasPluggable()&&this.refObj.pluggable.loaded&&(a=this.refObj.pluggable._applyModifications("content",a))),(a=(0,o.stripFullTags)(a)).substring(0,y)},k.prototype.getIndexMatches=function(){for(var a=[],e=0,t=this.refObj.rawData.text.indexOf(this.refObj.rawData.keyword,e);t>-1;)a.push(t),e=t+this.refObj.rawData.keyword.length,t=this.refObj.rawData.text.indexOf(this.refObj.rawData.keyword,e);return a},k.prototype.getPeriodMatches=function(){for(var a,e=[0],t=0;(a=this.refObj.rawData.text.indexOf(".",t))>-1;)e.push(a),t=a+1;return e},k.prototype.formatKeyword=function(a){var e=this.refObj.rawData.keyword,t=(0,n.default)(e,"",!1);a=a.replace(t,function(a){return"<strong>"+a+"</strong>"});var i=(0,d.default)(e,this.refObj.rawData.locale);return i!==e&&(t=(0,n.default)(i,"",!1),a=a.replace(t,function(a){return"<strong>"+a+"</strong>"})),a},k.prototype.formatKeywordUrl=function(a){var e=this.refObj.rawData.keyword,t=(e=(e=(0,d.default)(e,this.refObj.rawData.locale)).replace(/'/,"")).replace(/\s/g,"-"),i=(0,n.default)(t,"\\-");return a.replace(i,function(a){return"<strong>"+a+"</strong>"})},k.prototype.renderOutput=function(){this.element.rendered.title.innerHTML=this.output.title,this.element.rendered.urlPath.innerHTML=this.output.cite,this.element.rendered.urlBase.innerHTML=this.output.url,this.element.rendered.metaDesc.innerHTML=this.output.meta},k.prototype.renderSnippetStyle=function(){var a=this.element.rendered.metaDesc,e=_.call(this);(0,i.isEmpty)(e)?(u.default.addClass(a,"desc-render"),u.default.removeClass(a,"desc-default")):(u.default.addClass(a,"desc-default"),u.default.removeClass(a,"desc-render"))},k.prototype.reRender=function(){this.init()},k.prototype.checkTextLength=function(a){var e=a.currentTarget.textContent;switch(a.currentTarget.id){case"snippet_meta":a.currentTarget.className="desc",e.length>y&&(YoastSEO.app.snippetPreview.unformattedText.snippet_meta=a.currentTarget.textContent,a.currentTarget.textContent=e.substring(0,y));break;case"snippet_title":a.currentTarget.className="title",e.length>600&&(YoastSEO.app.snippetPreview.unformattedText.snippet_title=a.currentTarget.textContent,a.currentTarget.textContent=e.substring(0,600))}},k.prototype.getUnformattedText=function(a){var e=a.currentTarget.id;void 0!==this.unformattedText[e]&&(a.currentTarget.textContent=this.unformattedText[e])},k.prototype.setUnformattedText=function(a){var e=a.currentTarget.id;this.unformattedText[e]=document.getElementById(e).textContent},k.prototype.validateFields=function(){var a=_.call(this),e=j.call(this);a.length>y?u.default.addClass(this.element.input.metaDesc,"snippet-editor__field--invalid"):u.default.removeClass(this.element.input.metaDesc,"snippet-editor__field--invalid"),e.length>600?u.default.addClass(this.element.input.title,"snippet-editor__field--invalid"):u.default.removeClass(this.element.input.title,"snippet-editor__field--invalid")},k.prototype.updateProgressBars=function(){var a,e,t;t=_.call(this),e=function(a){var e;switch(!0){case a>0&&a<=399:case a>600:e="ok";break;case a>=400&&a<=600:e="good";break;default:e="bad"}return e}(this.data.titleWidth),a=function(a){var e;switch(!0){case a>0&&a<120:case a>y:e="ok";break;case a>=120&&a<=y:e="good";break;default:e="bad"}return e}(t.length),v.call(this,this.element.progress.title,this.data.titleWidth,600,e),v.call(this,this.element.progress.metaDesc,t.length,y,a)},k.prototype.setInitialView=function(){var a=document.getElementById("snippet_preview").getBoundingClientRect().width;this.snippetPreviewToggle.setVisibility(a)},k.prototype.handleWindowResizing=(0,i.debounce)(function(){var a=document.getElementById("snippet_preview").getBoundingClientRect().width;this.snippetPreviewToggle.setScrollHintVisibility(a)},25),k.prototype.bindEvents=function(){var a;(0,i.forEach)(["title","slug","meta-description"],function(e){(a=document.getElementsByClassName("js-snippet-editor-"+e)[0]).addEventListener("keydown",this.changedInput.bind(this)),a.addEventListener("keyup",this.changedInput.bind(this)),a.addEventListener("input",this.changedInput.bind(this)),a.addEventListener("focus",this.changedInput.bind(this)),a.addEventListener("blur",this.changedInput.bind(this))}.bind(this)),this.element.editToggle.addEventListener("click",this.toggleEditor.bind(this)),this.element.closeEditor.addEventListener("click",this.closeEditor.bind(this)),window.addEventListener("resize",this.handleWindowResizing.bind(this)),(0,i.forEach)(f,function(a){var e=document.getElementById(a.preview),t=this.element.input[a.inputField];e.addEventListener("click",function(){this.openEditor(),t.focus()}.bind(this)),t.addEventListener("focus",function(){this._currentFocus=a.inputField,this._updateFocusCarets()}.bind(this)),t.addEventListener("blur",function(){this._currentFocus=null,this._updateFocusCarets()}.bind(this)),e.addEventListener("mouseover",function(){this._currentHover=a.inputField,this._updateHoverCarets()}.bind(this)),e.addEventListener("mouseout",function(){this._currentHover=null,this._updateHoverCarets()}.bind(this))}.bind(this))},k.prototype.changedInput=(0,i.debounce)(function(){this.updateDataFromDOM(),this.validateFields(),this.updateProgressBars(),this.refresh(),this.hasApp()&&this.refObj.refresh()},25),k.prototype.updateDataFromDOM=function(){this.data.title=this.element.input.title.value,this.data.urlPath=this.element.input.urlPath.value,this.data.metaDesc=this.element.input.metaDesc.value,this.opts.callbacks.saveSnippetData((0,i.clone)(this.data))},k.prototype.openEditor=function(){this.element.editToggle.setAttribute("aria-expanded","true"),u.default.removeClass(this.element.formContainer,"snippet-editor--hidden"),this.opened=!0},k.prototype.closeEditor=function(){u.default.addClass(this.element.formContainer,"snippet-editor--hidden"),this.element.editToggle.setAttribute("aria-expanded","false"),this.element.editToggle.focus(),this.opened=!1},k.prototype.toggleEditor=function(){this.opened?this.closeEditor():this.openEditor()},k.prototype._updateFocusCarets=function(){var a,e;(0,i.forEach)(this.element.label,function(a){u.default.removeClass(a,"snippet-editor__label--focus")}),(0,i.forEach)(this.element.preview,function(a){u.default.removeClass(a,"snippet-editor__container--focus")}),null!==this._currentFocus&&(a=this.element.label[this._currentFocus],e=this.element.preview[this._currentFocus],u.default.addClass(a,"snippet-editor__label--focus"),u.default.addClass(e,"snippet-editor__container--focus"))},k.prototype._updateHoverCarets=function(){var a;(0,i.forEach)(this.element.label,function(a){u.default.removeClass(a,"snippet-editor__label--hover")}),null!==this._currentHover&&(a=this.element.label[this._currentHover],u.default.addClass(a,"snippet-editor__label--hover"))},k.prototype.setTitle=function(a){this.element.input.title.value=a,this.changedInput()},k.prototype.setUrlPath=function(a){this.element.input.urlPath.value=a,this.changedInput()},k.prototype.setMetaDescription=function(a){this.element.input.metaDesc.value=a,this.changedInput()},k.prototype.createMeasurementElements=function(){var a,e;a=m({width:document.getElementById("meta_container").offsetWidth+"px",whiteSpace:""}),(e=document.createElement("div")).className="yoast-measurement-elements-holder",e.innerHTML=a,document.body.appendChild(e),this.element.measurers.metaHeight=e.childNodes[0]},k.prototype.measureTitle=function(){0===this.element.rendered.title.offsetWidth&&""!==this.element.rendered.title.textContent||(this.data.titleWidth=this.element.rendered.title.offsetWidth)},k.prototype.measureMetaDescription=function(){var a=this.element.measurers.metaHeight;a.innerHTML=this.element.rendered.metaDesc.innerHTML,this.data.metaHeight=a.offsetHeight},k.prototype.getTitleWidth=function(){return this.data.titleWidth},k.prototype.setTitleWidth=function(a){this.data.titleWidth=a},k.prototype.hasApp=function(){return!(0,i.isUndefined)(this.refObj)},k.prototype.hasPluggable=function(){return!(0,i.isUndefined)(this.refObj)&&!(0,i.isUndefined)(this.refObj.pluggable)},k.prototype.disableEnter=function(a){},k.prototype.textFeedback=function(a){},k.prototype.showEditIcon=function(a){},k.prototype.hideEditIcon=function(){},k.prototype.setFocus=function(a){},e.default=k},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.default=class{aggregate(a){console.warn("'aggregate' must be implemented by a child class of 'ScoreAggregator'")}}},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(a,e,t){
11
- /**
12
- * @preserve jed.js https://github.com/SlexAxton/Jed
13
- */
14
- !function(t,i){var n=Array.prototype,o=Object.prototype,r=n.slice,s=o.hasOwnProperty,d=n.forEach,l={},c={forEach:function(a,e,t){var i,n,o;if(null!==a)if(d&&a.forEach===d)a.forEach(e,t);else if(a.length===+a.length){for(i=0,n=a.length;i<n;i++)if(i in a&&e.call(t,a[i],i,a)===l)return}else for(o in a)if(s.call(a,o)&&e.call(t,a[o],o,a)===l)return},extend:function(a){return this.forEach(r.call(arguments,1),function(e){for(var t in e)a[t]=e[t]}),a}},u=function(a){if(this.defaults={locale_data:{messages:{"":{domain:"messages",lang:"en",plural_forms:"nplurals=2; plural=(n != 1);"}}},domain:"messages",debug:!1},this.options=c.extend({},this.defaults,a),this.textdomain(this.options.domain),a.domain&&!this.options.locale_data[this.options.domain])throw new Error("Text domain set to non-existent domain: `"+a.domain+"`")};function p(a){return u.PF.compile(a||"nplurals=2; plural=(n != 1);")}function z(a,e){this._key=a,this._i18n=e}u.context_delimiter=String.fromCharCode(4),c.extend(z.prototype,{onDomain:function(a){return this._domain=a,this},withContext:function(a){return this._context=a,this},ifPlural:function(a,e){return this._val=a,this._pkey=e,this},fetch:function(a){return"[object Array]"!={}.toString.call(a)&&(a=[].slice.call(arguments,0)),(a&&a.length?u.sprintf:function(a){return a})(this._i18n.dcnpgettext(this._domain,this._context,this._key,this._pkey,this._val),a)}}),c.extend(u.prototype,{translate:function(a){return new z(a,this)},textdomain:function(a){if(!a)return this._textdomain;this._textdomain=a},gettext:function(a){return this.dcnpgettext.call(this,void 0,void 0,a)},dgettext:function(a,e){return this.dcnpgettext.call(this,a,void 0,e)},dcgettext:function(a,e){return this.dcnpgettext.call(this,a,void 0,e)},ngettext:function(a,e,t){return this.dcnpgettext.call(this,void 0,void 0,a,e,t)},dngettext:function(a,e,t,i){return this.dcnpgettext.call(this,a,void 0,e,t,i)},dcngettext:function(a,e,t,i){return this.dcnpgettext.call(this,a,void 0,e,t,i)},pgettext:function(a,e){return this.dcnpgettext.call(this,void 0,a,e)},dpgettext:function(a,e,t){return this.dcnpgettext.call(this,a,e,t)},dcpgettext:function(a,e,t){return this.dcnpgettext.call(this,a,e,t)},npgettext:function(a,e,t,i){return this.dcnpgettext.call(this,void 0,a,e,t,i)},dnpgettext:function(a,e,t,i,n){return this.dcnpgettext.call(this,a,e,t,i,n)},dcnpgettext:function(a,e,t,i,n){var o;if(i=i||t,a=a||this._textdomain,!this.options)return(o=new u).dcnpgettext.call(o,void 0,void 0,t,i,n);if(!this.options.locale_data)throw new Error("No locale data provided.");if(!this.options.locale_data[a])throw new Error("Domain `"+a+"` was not found.");if(!this.options.locale_data[a][""])throw new Error("No locale meta information provided.");if(!t)throw new Error("No translation key found.");var r,s,d,l=e?e+u.context_delimiter+t:t,c=this.options.locale_data,z=c[a],g=(c.messages||this.defaults.locale_data.messages)[""],m=z[""].plural_forms||z[""]["Plural-Forms"]||z[""]["plural-forms"]||g.plural_forms||g["Plural-Forms"]||g["plural-forms"];if(void 0===n)d=0;else{if("number"!=typeof n&&(n=parseInt(n,10),isNaN(n)))throw new Error("The number that was passed in is not a number.");d=p(m)(n)}if(!z)throw new Error("No domain named `"+a+"` could be found.");return!(r=z[l])||d>r.length?(this.options.missing_key_callback&&this.options.missing_key_callback(l,a),s=[t,i],!0===this.options.debug&&console.log(s[p(m)(n)]),s[p()(n)]):(s=r[d])||(s=[t,i])[p()(n)]}});var g=function(){function a(a){return Object.prototype.toString.call(a).slice(8,-1).toLowerCase()}function e(a,e){for(var t=[];e>0;t[--e]=a);return t.join("")}var t=function(){return t.cache.hasOwnProperty(arguments[0])||(t.cache[arguments[0]]=t.parse(arguments[0])),t.format.call(null,t.cache[arguments[0]],arguments)};return t.format=function(t,i){var n,o,r,s,d,l,c,u=1,p=t.length,z="",m=[];for(o=0;o<p;o++)if("string"===(z=a(t[o])))m.push(t[o]);else if("array"===z){if((s=t[o])[2])for(n=i[u],r=0;r<s[2].length;r++){if(!n.hasOwnProperty(s[2][r]))throw g('[sprintf] property "%s" does not exist',s[2][r]);n=n[s[2][r]]}else n=s[1]?i[s[1]]:i[u++];if(/[^s]/.test(s[8])&&"number"!=a(n))throw g("[sprintf] expecting number but found %s",a(n));switch(void 0!==n&&null!==n||(n=""),s[8]){case"b":n=n.toString(2);break;case"c":n=String.fromCharCode(n);break;case"d":n=parseInt(n,10);break;case"e":n=s[7]?n.toExponential(s[7]):n.toExponential();break;case"f":n=s[7]?parseFloat(n).toFixed(s[7]):parseFloat(n);break;case"o":n=n.toString(8);break;case"s":n=(n=String(n))&&s[7]?n.substring(0,s[7]):n;break;case"u":n=Math.abs(n);break;case"x":n=n.toString(16);break;case"X":n=n.toString(16).toUpperCase()}n=/[def]/.test(s[8])&&s[3]&&n>=0?"+"+n:n,l=s[4]?"0"==s[4]?"0":s[4].charAt(1):" ",c=s[6]-String(n).length,d=s[6]?e(l,c):"",m.push(s[5]?n+d:d+n)}return m.join("")},t.cache={},t.parse=function(a){for(var e=a,t=[],i=[],n=0;e;){if(null!==(t=/^[^\x25]+/.exec(e)))i.push(t[0]);else if(null!==(t=/^\x25{2}/.exec(e)))i.push("%");else{if(null===(t=/^\x25(?:([1-9]\d*)\$|\(([^\)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-fosuxX])/.exec(e)))throw"[sprintf] huh?";if(t[2]){n|=1;var o=[],r=t[2],s=[];if(null===(s=/^([a-z_][a-z_\d]*)/i.exec(r)))throw"[sprintf] huh?";for(o.push(s[1]);""!==(r=r.substring(s[0].length));)if(null!==(s=/^\.([a-z_][a-z_\d]*)/i.exec(r)))o.push(s[1]);else{if(null===(s=/^\[(\d+)\]/.exec(r)))throw"[sprintf] huh?";o.push(s[1])}t[2]=o}else n|=2;if(3===n)throw"[sprintf] mixing positional and named placeholders is not (yet) supported";i.push(t)}e=e.substring(t[0].length)}return i},t}();u.parse_plural=function(a,e){return a=a.replace(/n/g,e),u.parse_expression(a)},u.sprintf=function(a,e){return"[object Array]"=={}.toString.call(e)?function(a,e){return e.unshift(a),g.apply(null,e)}(a,[].slice.call(e)):g.apply(this,[].slice.call(arguments))},u.prototype.sprintf=function(){return u.sprintf.apply(this,arguments)},u.PF={},u.PF.parse=function(a){var e=u.PF.extractPluralExpr(a);return u.PF.parser.parse.call(u.PF.parser,e)},u.PF.compile=function(a){var e=u.PF.parse(a);return function(a){return function(a){return!0===a?1:a||0}(u.PF.interpreter(e)(a))}},u.PF.interpreter=function(a){return function(e){switch(a.type){case"GROUP":return u.PF.interpreter(a.expr)(e);case"TERNARY":return u.PF.interpreter(a.expr)(e)?u.PF.interpreter(a.truthy)(e):u.PF.interpreter(a.falsey)(e);case"OR":return u.PF.interpreter(a.left)(e)||u.PF.interpreter(a.right)(e);case"AND":return u.PF.interpreter(a.left)(e)&&u.PF.interpreter(a.right)(e);case"LT":return u.PF.interpreter(a.left)(e)<u.PF.interpreter(a.right)(e);case"GT":return u.PF.interpreter(a.left)(e)>u.PF.interpreter(a.right)(e);case"LTE":return u.PF.interpreter(a.left)(e)<=u.PF.interpreter(a.right)(e);case"GTE":return u.PF.interpreter(a.left)(e)>=u.PF.interpreter(a.right)(e);case"EQ":return u.PF.interpreter(a.left)(e)==u.PF.interpreter(a.right)(e);case"NEQ":return u.PF.interpreter(a.left)(e)!=u.PF.interpreter(a.right)(e);case"MOD":return u.PF.interpreter(a.left)(e)%u.PF.interpreter(a.right)(e);case"VAR":return e;case"NUM":return a.val;default:throw new Error("Invalid Token found.")}}},u.PF.extractPluralExpr=function(a){a=a.replace(/^\s\s*/,"").replace(/\s\s*$/,""),/;\s*$/.test(a)||(a=a.concat(";"));var e,t=/nplurals\=(\d+);/,i=a.match(t);if(!(i.length>1))throw new Error("nplurals not found in plural_forms string: "+a);if(i[1],!((e=(a=a.replace(t,"")).match(/plural\=(.*);/))&&e.length>1))throw new Error("`plural` expression not found: "+a);return e[1]},u.PF.parser=function(){var a={trace:function(){},yy:{},symbols_:{error:2,expressions:3,e:4,EOF:5,"?":6,":":7,"||":8,"&&":9,"<":10,"<=":11,">":12,">=":13,"!=":14,"==":15,"%":16,"(":17,")":18,n:19,NUMBER:20,$accept:0,$end:1},terminals_:{2:"error",5:"EOF",6:"?",7:":",8:"||",9:"&&",10:"<",11:"<=",12:">",13:">=",14:"!=",15:"==",16:"%",17:"(",18:")",19:"n",20:"NUMBER"},productions_:[0,[3,2],[4,5],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,1],[4,1]],performAction:function(a,e,t,i,n,o,r){var s=o.length-1;switch(n){case 1:return{type:"GROUP",expr:o[s-1]};case 2:this.$={type:"TERNARY",expr:o[s-4],truthy:o[s-2],falsey:o[s]};break;case 3:this.$={type:"OR",left:o[s-2],right:o[s]};break;case 4:this.$={type:"AND",left:o[s-2],right:o[s]};break;case 5:this.$={type:"LT",left:o[s-2],right:o[s]};break;case 6:this.$={type:"LTE",left:o[s-2],right:o[s]};break;case 7:this.$={type:"GT",left:o[s-2],right:o[s]};break;case 8:this.$={type:"GTE",left:o[s-2],right:o[s]};break;case 9:this.$={type:"NEQ",left:o[s-2],right:o[s]};break;case 10:this.$={type:"EQ",left:o[s-2],right:o[s]};break;case 11:this.$={type:"MOD",left:o[s-2],right:o[s]};break;case 12:this.$={type:"GROUP",expr:o[s-1]};break;case 13:this.$={type:"VAR"};break;case 14:this.$={type:"NUM",val:Number(a)}}},table:[{3:1,4:2,17:[1,3],19:[1,4],20:[1,5]},{1:[3]},{5:[1,6],6:[1,7],8:[1,8],9:[1,9],10:[1,10],11:[1,11],12:[1,12],13:[1,13],14:[1,14],15:[1,15],16:[1,16]},{4:17,17:[1,3],19:[1,4],20:[1,5]},{5:[2,13],6:[2,13],7:[2,13],8:[2,13],9:[2,13],10:[2,13],11:[2,13],12:[2,13],13:[2,13],14:[2,13],15:[2,13],16:[2,13],18:[2,13]},{5:[2,14],6:[2,14],7:[2,14],8:[2,14],9:[2,14],10:[2,14],11:[2,14],12:[2,14],13:[2,14],14:[2,14],15:[2,14],16:[2,14],18:[2,14]},{1:[2,1]},{4:18,17:[1,3],19:[1,4],20:[1,5]},{4:19,17:[1,3],19:[1,4],20:[1,5]},{4:20,17:[1,3],19:[1,4],20:[1,5]},{4:21,17:[1,3],19:[1,4],20:[1,5]},{4:22,17:[1,3],19:[1,4],20:[1,5]},{4:23,17:[1,3],19:[1,4],20:[1,5]},{4:24,17:[1,3],19:[1,4],20:[1,5]},{4:25,17:[1,3],19:[1,4],20:[1,5]},{4:26,17:[1,3],19:[1,4],20:[1,5]},{4:27,17:[1,3],19:[1,4],20:[1,5]},{6:[1,7],8:[1,8],9:[1,9],10:[1,10],11:[1,11],12:[1,12],13:[1,13],14:[1,14],15:[1,15],16:[1,16],18:[1,28]},{6:[1,7],7:[1,29],8:[1,8],9:[1,9],10:[1,10],11:[1,11],12:[1,12],13:[1,13],14:[1,14],15:[1,15],16:[1,16]},{5:[2,3],6:[2,3],7:[2,3],8:[2,3],9:[1,9],10:[1,10],11:[1,11],12:[1,12],13:[1,13],14:[1,14],15:[1,15],16:[1,16],18:[2,3]},{5:[2,4],6:[2,4],7:[2,4],8:[2,4],9:[2,4],10:[1,10],11:[1,11],12:[1,12],13:[1,13],14:[1,14],15:[1,15],16:[1,16],18:[2,4]},{5:[2,5],6:[2,5],7:[2,5],8:[2,5],9:[2,5],10:[2,5],11:[2,5],12:[2,5],13:[2,5],14:[2,5],15:[2,5],16:[1,16],18:[2,5]},{5:[2,6],6:[2,6],7:[2,6],8:[2,6],9:[2,6],10:[2,6],11:[2,6],12:[2,6],13:[2,6],14:[2,6],15:[2,6],16:[1,16],18:[2,6]},{5:[2,7],6:[2,7],7:[2,7],8:[2,7],9:[2,7],10:[2,7],11:[2,7],12:[2,7],13:[2,7],14:[2,7],15:[2,7],16:[1,16],18:[2,7]},{5:[2,8],6:[2,8],7:[2,8],8:[2,8],9:[2,8],10:[2,8],11:[2,8],12:[2,8],13:[2,8],14:[2,8],15:[2,8],16:[1,16],18:[2,8]},{5:[2,9],6:[2,9],7:[2,9],8:[2,9],9:[2,9],10:[2,9],11:[2,9],12:[2,9],13:[2,9],14:[2,9],15:[2,9],16:[1,16],18:[2,9]},{5:[2,10],6:[2,10],7:[2,10],8:[2,10],9:[2,10],10:[2,10],11:[2,10],12:[2,10],13:[2,10],14:[2,10],15:[2,10],16:[1,16],18:[2,10]},{5:[2,11],6:[2,11],7:[2,11],8:[2,11],9:[2,11],10:[2,11],11:[2,11],12:[2,11],13:[2,11],14:[2,11],15:[2,11],16:[2,11],18:[2,11]},{5:[2,12],6:[2,12],7:[2,12],8:[2,12],9:[2,12],10:[2,12],11:[2,12],12:[2,12],13:[2,12],14:[2,12],15:[2,12],16:[2,12],18:[2,12]},{4:30,17:[1,3],19:[1,4],20:[1,5]},{5:[2,2],6:[1,7],7:[2,2],8:[1,8],9:[1,9],10:[1,10],11:[1,11],12:[1,12],13:[1,13],14:[1,14],15:[1,15],16:[1,16],18:[2,2]}],defaultActions:{6:[2,1]},parseError:function(a,e){throw new Error(a)},parse:function(a){var e=this,t=[0],i=[null],n=[],o=this.table,r="",s=0,d=0,l=0;this.lexer.setInput(a),this.lexer.yy=this.yy,this.yy.lexer=this.lexer,void 0===this.lexer.yylloc&&(this.lexer.yylloc={});var c=this.lexer.yylloc;function u(a){t.length=t.length-2*a,i.length=i.length-a,n.length=n.length-a}function p(){var a;return"number"!=typeof(a=e.lexer.lex()||1)&&(a=e.symbols_[a]||a),a}n.push(c),"function"==typeof this.yy.parseError&&(this.parseError=this.yy.parseError);for(var z,g,m,w,y,f,b,h,v,k={};;){if(m=t[t.length-1],this.defaultActions[m]?w=this.defaultActions[m]:(null==z&&(z=p()),w=o[m]&&o[m][z]),void 0===w||!w.length||!w[0]){if(!l){for(f in v=[],o[m])this.terminals_[f]&&f>2&&v.push("'"+this.terminals_[f]+"'");var j="";j=this.lexer.showPosition?"Parse error on line "+(s+1)+":\n"+this.lexer.showPosition()+"\nExpecting "+v.join(", ")+", got '"+this.terminals_[z]+"'":"Parse error on line "+(s+1)+": Unexpected "+(1==z?"end of input":"'"+(this.terminals_[z]||z)+"'"),this.parseError(j,{text:this.lexer.match,token:this.terminals_[z]||z,line:this.lexer.yylineno,loc:c,expected:v})}if(3==l){if(1==z)throw new Error(j||"Parsing halted.");d=this.lexer.yyleng,r=this.lexer.yytext,s=this.lexer.yylineno,c=this.lexer.yylloc,z=p()}for(;!(2..toString()in o[m]);){if(0==m)throw new Error(j||"Parsing halted.");u(1),m=t[t.length-1]}g=z,z=2,w=o[m=t[t.length-1]]&&o[m][2],l=3}if(w[0]instanceof Array&&w.length>1)throw new Error("Parse Error: multiple actions possible at state: "+m+", token: "+z);switch(w[0]){case 1:t.push(z),i.push(this.lexer.yytext),n.push(this.lexer.yylloc),t.push(w[1]),z=null,g?(z=g,g=null):(d=this.lexer.yyleng,r=this.lexer.yytext,s=this.lexer.yylineno,c=this.lexer.yylloc,l>0&&l--);break;case 2:if(b=this.productions_[w[1]][1],k.$=i[i.length-b],k._$={first_line:n[n.length-(b||1)].first_line,last_line:n[n.length-1].last_line,first_column:n[n.length-(b||1)].first_column,last_column:n[n.length-1].last_column},void 0!==(y=this.performAction.call(k,r,d,s,this.yy,w[1],i,n)))return y;b&&(t=t.slice(0,-1*b*2),i=i.slice(0,-1*b),n=n.slice(0,-1*b)),t.push(this.productions_[w[1]][0]),i.push(k.$),n.push(k._$),h=o[t[t.length-2]][t[t.length-1]],t.push(h);break;case 3:return!0}}return!0}},e=function(){var a={EOF:1,parseError:function(a,e){if(!this.yy.parseError)throw new Error(a);this.yy.parseError(a,e)},setInput:function(a){return this._input=a,this._more=this._less=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this},input:function(){var a=this._input[0];return this.yytext+=a,this.yyleng++,this.match+=a,this.matched+=a,a.match(/\n/)&&this.yylineno++,this._input=this._input.slice(1),a},unput:function(a){return this._input=a+this._input,this},more:function(){return this._more=!0,this},pastInput:function(){var a=this.matched.substr(0,this.matched.length-this.match.length);return(a.length>20?"...":"")+a.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var a=this.match;return a.length<20&&(a+=this._input.substr(0,20-a.length)),(a.substr(0,20)+(a.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var a=this.pastInput(),e=new Array(a.length+1).join("-");return a+this.upcomingInput()+"\n"+e+"^"},next:function(){if(this.done)return this.EOF;var a,e;this._input||(this.done=!0),this._more||(this.yytext="",this.match="");for(var t=this._currentRules(),i=0;i<t.length;i++)if(a=this._input.match(this.rules[t[i]]))return(e=a[0].match(/\n.*/g))&&(this.yylineno+=e.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:e?e[e.length-1].length-1:this.yylloc.last_column+a[0].length},this.yytext+=a[0],this.match+=a[0],this.matches=a,this.yyleng=this.yytext.length,this._more=!1,this._input=this._input.slice(a[0].length),this.matched+=a[0],this.performAction.call(this,this.yy,this,t[i],this.conditionStack[this.conditionStack.length-1])||void 0;if(""===this._input)return this.EOF;this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var a=this.next();return void 0!==a?a:this.lex()},begin:function(a){this.conditionStack.push(a)},popState:function(){return this.conditionStack.pop()},_currentRules:function(){return this.conditions[this.conditionStack[this.conditionStack.length-1]].rules},topState:function(){return this.conditionStack[this.conditionStack.length-2]},pushState:function(a){this.begin(a)},performAction:function(a,e,t,i){switch(t){case 0:break;case 1:return 20;case 2:return 19;case 3:return 8;case 4:return 9;case 5:return 6;case 6:return 7;case 7:return 11;case 8:return 13;case 9:return 10;case 10:return 12;case 11:return 14;case 12:return 15;case 13:return 16;case 14:return 17;case 15:return 18;case 16:return 5;case 17:return"INVALID"}},rules:[/^\s+/,/^[0-9]+(\.[0-9]+)?\b/,/^n\b/,/^\|\|/,/^&&/,/^\?/,/^:/,/^<=/,/^>=/,/^</,/^>/,/^!=/,/^==/,/^%/,/^\(/,/^\)/,/^$/,/^./],conditions:{INITIAL:{rules:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17],inclusive:!0}}};return a}();return a.lexer=e,a}(),void 0!==a&&a.exports&&(e=a.exports=u),e.Jed=u}()},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.seo=e.readability=void 0;var i=C(t(181)),n=C(t(182)),o=C(t(184)),r=C(t(185)),s=C(t(565)),d=C(t(186)),l=C(t(187)),c=C(t(189)),u=C(t(190)),p=C(t(566)),z=C(t(74)),g=C(t(191)),m=C(t(75)),w=C(t(259)),y=C(t(76)),f=C(t(77)),b=C(t(586)),h=C(t(78)),v=C(t(128)),k=C(t(199)),j=C(t(129)),_=C(t(130)),x=C(t(200)),q=C(t(587)),E=C(t(100)),A=C(t(101)),O=C(t(131)),T=C(t(132)),S=C(t(133)),M=C(t(588)),P=C(t(589));function C(a){return a&&a.__esModule?a:{default:a}}const R={FleschReadingEaseAssessment:i.default,ParagraphTooLongAssessment:n.default,PassiveVoiceAssessment:o.default,SentenceBeginningsAssessment:r.default,SentenceLengthInDescriptionAssessment:s.default,SentenceLengthInTextAssessment:d.default,SubheadingDistributionTooLongAssessment:l.default,TextPresenceAssessment:c.default,TransitionWordsAssessment:u.default,WordComplexityAssessment:p.default},D={FunctionWordsInKeyphraseAssessment:z.default,InternalLinksAssessment:g.default,IntroductionKeywordAssessment:m.default,KeyphraseLengthAssessment:y.default,KeywordDensityAssessment:f.default,KeywordStopWordsAssessment:b.default,KeyphraseDistributionAssessment:w.default,MetaDescriptionKeywordAssessment:h.default,MetaDescriptionLengthAssessment:v.default,OutboundLinksAssessment:k.default,PageTitleWidthAssessment:j.default,SingleH1Assessment:_.default,SubheadingsKeywordAssessment:x.default,TaxonomyTextLengthAssessment:q.default,TextCompetingLinksAssessment:E.default,TextImagesAssessment:A.default,TextLengthAssessment:O.default,TitleKeywordAssessment:T.default,UrlKeywordAssessment:S.default,UrlLengthAssessment:M.default,UrlStopWordsAssessment:P.default};e.readability=R,e.seo=D},function(a,e){var t=function(a,e){var t;for(t=0;t<a.length;t++)if(a[t].regex.test(e))return a[t]},i=function(a,e){var i,n,o;for(i=0;i<e.length;i++)if(n=t(a,e.substring(0,i+1)))o=n;else if(o)return{max_index:i,rule:o};return o?{max_index:e.length,rule:o}:void 0};a.exports=function(a){var e="",n=[],o=1,r=1,s=function(e,t){a({type:t,src:e,line:o,col:r});var i=e.split("\n");o+=i.length-1,r=(i.length>1?1:r)+i[i.length-1].length};return{addRule:function(a,e){n.push({regex:a,type:e})},onText:function(a){for(var t=e+a,o=i(n,t);o&&o.max_index!==t.length;)s(t.substring(0,o.max_index),o.rule.type),t=t.substring(o.max_index),o=i(n,t);e=t},end:function(){if(0!==e.length){var a=t(n,e);if(!a){var i=new Error("unable to tokenize");throw i.tokenizer2={buffer:e,line:o,col:r},i}s(e,a.type)}}}}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a,e){return(0,i.filter)(a,function(a){return(0,n.default)(e,a.sentenceLength)})};var i=t(1),n=function(a){return a&&a.__esModule?a:{default:a}}(t(183))},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=d(t(16)),o=t(7),r=d(t(29)),s=d(t(5));function d(a){return a&&a.__esModule?a:{default:a}}e.default=class extends n.default{constructor(a={}){super();const e={parameters:{goodDistributionScore:30,acceptableDistributionScore:50},scores:{good:9,okay:6,bad:1,consideration:0},urlTitle:(0,o.createAnchorOpeningTag)("https://yoa.st/33q"),urlCallToAction:(0,o.createAnchorOpeningTag)("https://yoa.st/33u")};this.identifier="keyphraseDistribution",this._config=(0,i.merge)(e,a)}getResult(a,e,t){this._keyphraseDistribution=e.getResearch("keyphraseDistribution");const i=new s.default,n=this.calculateResult(t);return i.setScore(n.score),i.setText(n.resultText),i.setHasMarks(this._keyphraseDistribution.sentencesToHighlight.length>0),i}calculateResult(a){const e=this._keyphraseDistribution.keyphraseDistributionScore;return 100===e?{score:this._config.scores.consideration,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sKeyphrase distribution%3$s: %2$sInclude your keyphrase or its synonyms in the text so that we can check keyphrase distribution%3$s."),this._config.urlTitle,this._config.urlCallToAction,"</a>")}:e>this._config.parameters.acceptableDistributionScore?{score:this._config.scores.bad,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sKeyphrase distribution%3$s: Very uneven. Large parts of your text do not contain the keyphrase or its synonyms. %2$sDistribute them more evenly%3$s."),this._config.urlTitle,this._config.urlCallToAction,"</a>")}:e>this._config.parameters.goodDistributionScore&&e<=this._config.parameters.acceptableDistributionScore?{score:this._config.scores.okay,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sKeyphrase distribution%3$s: Uneven. Some parts of your text do not contain the keyphrase or its synonyms. %2$sDistribute them more evenly%3$s."),this._config.urlTitle,this._config.urlCallToAction,"</a>")}:{score:this._config.scores.good,resultText:a.sprintf(a.dgettext("js-text-analysis","%1$sKeyphrase distribution%2$s: Good job!"),this._config.urlTitle,"</a>")}}getMarks(){return this._keyphraseDistribution.sentencesToHighlight}isApplicable(a){return a.hasText()&&a.hasKeyword()&&(0,r.default)(a.getText()).length>=15}}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=function(a){return a.replace(/&nbsp;/g," ")},n=function(a){return a.replace(/\s/g," ")},o=function(a){return a=i(a),n(a)};e.unifyNonBreakingSpace=i,e.unifyWhiteSpace=n,e.unifyAllSpaces=o,e.default={unifyNonBreakingSpace:i,unifyWhiteSpace:n,unifyAllSpaces:o}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){const a=(0,i.default)();return Object.keys(a)};var i=function(a){return a&&a.__esModule?a:{default:a}}(t(88))},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){return{singleWords:i,multipleWords:n,allWords:i.concat(n)}};const i=["aber","abschließend","abschliessend","alldieweil","allerdings","also","anderenteils","andererseits","andernteils","anfaenglich","anfänglich","anfangs","angenommen","anschliessend","anschließend","aufgrund","ausgenommen","ausserdem","außerdem","beispielsweise","bevor","beziehungsweise","bspw","bzw","d.h","da","dabei","dadurch","dafuer","dafür","dagegen","daher","dahingegen","danach","dann","darauf","darum","dass","davor","dazu","dementgegen","dementsprechend","demgegenüber","demgegenueber","demgemaess","demgemäß","demzufolge","denn","dennoch","dergestalt","derweil","desto","deshalb","desungeachtet","deswegen","doch","dort","drittens","ebenfalls","ebenso","endlich","ehe","einerseits","einesteils","entsprechend","entweder","erst","erstens","falls","ferner","folgerichtig","folglich","fürderhin","fuerderhin","genauso","hierdurch","hierzu","hingegen","immerhin","indem","indes","indessen","infolge","infolgedessen","insofern","insoweit","inzwischen","jedenfalls","jedoch","kurzum","m.a.w","mitnichten","mitunter","möglicherweise","moeglicherweise","nachdem","nebenher","nichtsdestotrotz","nichtsdestoweniger","ob","obenrein","obgleich","obschon","obwohl","obzwar","ohnehin","richtigerweise","schliesslich","schließlich","seit","seitdem","sobald","sodass","so dass","sofern","sogar","solang","solange","somit","sondern","sooft","soviel","soweit","sowie","sowohl","statt","stattdessen","trotz","trotzdem","überdies","übrigens","ueberdies","uebrigens","ungeachtet","vielmehr","vorausgesetzt","vorher","waehrend","während","währenddessen","waehrenddessen","weder","wegen","weil","weiter","weiterhin","wenn","wenngleich","wennschon","wennzwar","weshalb","widrigenfalls","wiewohl","wobei","wohingegen","z.b","zudem","zuerst","zufolge","zuletzt","zumal","zuvor","zwar","zweitens"],n=["abgesehen von","abgesehen davon","als dass","als ob","als wenn","anders ausgedrückt","anders ausgedrueckt","anders formuliert","anders gefasst","anders gefragt","anders gesagt","anders gesprochen","anstatt dass","auch wenn","auf grund","auf jeden fall","aus diesem grund","ausser dass","außer dass","ausser wenn","außer wenn","besser ausgedrückt","besser ausgedrueckt","besser formuliert","besser gesagt","besser gesprochen","bloss dass","bloß dass","darüber hinaus","das heisst","das heißt","des weiteren","dessen ungeachtet","ebenso wie","genauso wie","geschweige denn","im fall","im falle","im folgenden","im gegensatz dazu","im gegenteil","im grunde genommen","in diesem sinne","je nachdem","kurz gesagt","mit anderen worten","ohne dass","so dass","umso mehr als","umso weniger als","umso mehr, als","umso weniger, als","unbeschadet dessen","und zwar","ungeachtet dessen","unter dem strich","zum beispiel","zunächts einmal"]},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){return{filteredAuxiliaries:i,notFilteredAuxiliaries:n,all:i.concat(n)}};var i=["am","is","are","was","were","been","get","gets","got","gotten","be","she's","he's","it's","i'm","we're","they're","you're","isn't","weren't","wasn't","that's","aren't"],n=["being","getting","having","what's"]},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){return{singleWords:i,multipleWords:n,allWords:i.concat(n)}};var i=["accordingly","additionally","afterward","afterwards","albeit","also","although","altogether","another","basically","because","before","besides","but","certainly","chiefly","comparatively","concurrently","consequently","contrarily","conversely","correspondingly","despite","doubtedly","during","e.g.","earlier","emphatically","equally","especially","eventually","evidently","explicitly","finally","firstly","following","formerly","forthwith","fourthly","further","furthermore","generally","hence","henceforth","however","i.e.","identically","indeed","instead","last","lastly","later","lest","likewise","markedly","meanwhile","moreover","nevertheless","nonetheless","nor","notwithstanding","obviously","occasionally","otherwise","overall","particularly","presently","previously","rather","regardless","secondly","shortly","significantly","similarly","simultaneously","since","so","soon","specifically","still","straightaway","subsequently","surely","surprisingly","than","then","thereafter","therefore","thereupon","thirdly","though","thus","till","undeniably","undoubtedly","unless","unlike","unquestionably","until","when","whenever","whereas","while"],n=["above all","after all","after that","all in all","all of a sudden","all things considered","analogous to","although this may be true","analogous to","another key point","as a matter of fact","as a result","as an illustration","as can be seen","as has been noted","as I have noted","as I have said","as I have shown","as long as","as much as","as shown above","as soon as","as well as","at any rate","at first","at last","at least","at length","at the present time","at the same time","at this instant","at this point","at this time","balanced against","being that","by all means","by and large","by comparison","by the same token","by the time","compared to","be that as it may","coupled with","different from","due to","equally important","even if","even more","even so","even though","first thing to remember","for example","for fear that","for instance","for one thing","for that reason","for the most part","for the purpose of","for the same reason","for this purpose","for this reason","from time to time","given that","given these points","important to realize","in a word","in addition","in another case","in any case","in any event","in brief","in case","in conclusion","in contrast","in detail","in due time","in effect","in either case","in essence","in fact","in general","in light of","in like fashion","in like manner","in order that","in order to","in other words","in particular","in reality","in short","in similar fashion","in spite of","in sum","in summary","in that case","in the event that","in the final analysis","in the first place","in the fourth place","in the hope that","in the light of","in the long run","in the meantime","in the same fashion","in the same way","in the second place","in the third place","in this case","in this situation","in time","in truth","in view of","inasmuch as","most compelling evidence","most important","must be remembered","not to mention","now that","of course","on account of","on balance","on condition that","on one hand","on the condition that","on the contrary","on the negative side","on the other hand","on the positive side","on the whole","on this occasion","once","once in a while","only if","owing to","point often overlooked","prior to","provided that","seeing that","so as to","so far","so long as","so that","sooner or later","such as","summing up","take the case of","that is","that is to say","then again","this time","to be sure","to begin with","to clarify","to conclude","to demonstrate","to emphasize","to enumerate","to explain","to illustrate","to list","to point out","to put it another way","to put it differently","to repeat","to rephrase it","to say nothing of","to sum up","to summarize","to that end","to the end that","to this end","together with","under those circumstances","until now","up against","up to the present time","vis a vis","what's more","while it may be true","while this may be true","with attention to","with the result that","with this in mind","with this intention","with this purpose in mind","without a doubt","without delay","without doubt","without reservation"]},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){return{filteredAtBeginning:[].concat(v,j,x,R),filteredAtEnding:[].concat(r,D),filteredAtBeginningAndEnding:[].concat(n,q,A,l,P,u),filteredAnywhere:[].concat(i,s,d,p,F,o,h,k,_,S,C,g,O,T,y,w,b,L,E,f,B,$,I,z,c),cannotDirectlyPrecedePassiveParticiple:[].concat(n,y,o,c,p,m,_,x,q),all:[].concat(n,o,r,l,c,p,z,s,d,u,g,m,w,y,f,b,E,h,v,k,j,_,x,q,A,O,T,S,i,M,P,C,R,F,D,B,I,L,W,N)}};const i=(0,function(a){return a&&a.__esModule?a:{default:a}}(t(266)).default)().singleWords,n=["de","het","een","der","des","den"],o=["eén","één","twee","drie","vier","vijf","zes","zeven","acht","negen","tien","elf","twaalf","dertien","veertien","vijftien","zestien","zeventien","achttien","negentien","twintig","honderd","honderden","duizend","duizenden","miljoen","miljoenen","biljoen","biljoenen"],r=["eerste","tweede","derde","vierde","vijfde","zesde","zevende","achtste","negende","tiende","elfde","twaalfde","dertiende","veertiende","vijftiende","zestiende","zeventiende","achttiende","negentiende","twinstigste"],s=["ik","je","jij","hij","ze","we","wij","jullie","zij","u","ge","gij","men"],d=["mij","jou","hem","haar","hen","hun","uw"],l=["dit","dat","deze","die","zelf"],c=["mijn","mijne","jouw","jouwe","zijne","hare","ons","onze","hunne","uwe","elkaars","elkanders"],u=["alle","sommige","sommigen","weinig","weinige","weinigen","veel","vele","velen","geen","beetje","elke","elk","genoeg","meer","meest","meeste","meesten","paar","zoveel","enkele","enkelen","zoveelste","hoeveelste","laatste","laatsten","iedere","allemaal","zekere","ander","andere","gene","enig","enige","verscheidene","verschillende","voldoende","allerlei","allerhande","enerlei","enerhande","beiderlei","beiderhande","tweeërlei","tweeërhande","drieërlei","drieërhande","velerlei","velerhande","menigerlei","menigerhande","enigerlei","enigerhande","generlei","generhande"],p=["mezelf","mijzelf","jezelf","jouzelf","zichzelf","haarzelf","hemzelf","onszelf","julliezelf","henzelf","hunzelf","uzelf","zich"],z=["mekaar","elkaar","elkander","mekander"],g=["iedereen","ieder","eenieder","alleman","allen","alles","iemand","niemand","iets","niets","menigeen"],m=["ieders","aller","iedereens","eenieders"],w=["welke","welk","wat","wie","wiens","wier"],y=["hoe","waarom","waar","hoezo","hoeveel"],f=["daaraan","daarachter","daaraf","daarbij","daarbinnen","daarboven","daarbuiten","daardoorheen","daarheen","daarin","daarjegens","daarmede","daarnaar","daarnaartoe","daaromtrent","daaronder","daarop","daarover","daaroverheen","daarrond","daartegen","daartussen","daartussenuit","daaruit","daarvan","daarvandaan","eraan","erachter","erachteraan","eraf","erbij","erbinnen","erboven","erbuiten","erdoor","erdoorheen","erheen","erin","erjegens","ermede","ermee","erna","ernaar","ernaartoe","ernaast","erom","eromtrent","eronder","eronderdoor","erop","eropaf","eropuit","erover","eroverheen","errond","ertegen","ertegenaan","ertoe","ertussen","ertussenuit","eruit","ervan","ervandaan","ervandoor","ervoor","hieraan","hierachter","hieraf","hierbij","hierbinnen","hierboven","hierbuiten","hierdoor","hierdoorheen","hierheen","hierin","hierjegens","hierlangs","hiermede","hiermee","hierna","hiernaar","hiernaartoe","hiernaast","hieromheen","hieromtrent","hieronder","hierop","hierover","hieroverheen","hierrond","hiertegen","hiertoe","hiertussen","hiertussenuit","hieruit","hiervan","hiervandaan","hiervoor","vandaan","waaraan","waarachter","waaraf","waarbij","waarboven","waarbuiten","waardoorheen","waarheen","waarin","waarjegens","waarmede","waarna","waarnaar","waarnaartoe","waarnaast","waarop","waarover","waaroverheen","waarrond","waartegen","waartegenin","waartoe","waartussen","waartussenuit","waaruit","waarvan","waarvandaan","waarvoor"],b=["daar","hier","ginder","daarginds","ginds","ver","veraf","ergens","nergens","overal","dichtbij","kortbij"],h=["word","wordt","werd","werden","ben","bent","is","was","waren"],v=["worden","zijn"],k=["heb","hebt","heeft","hadden","had","kun","kan","kunt","kon","konden","mag","mocht","mochten","dien","dient","diende","dienden","moet","moest","moesten","ga","gaat","ging","gingen"],j=["hebben","kunnen","mogen","dienen","moeten","gaan"],_=["blijkt","blijk","bleek","bleken","gebleken","dunkt","dunk","dunkte","dunkten","gedunkt","heet","heette","heetten","geheten","lijkt","lijk","geleken","leek","leken","schijn","schijnt","scheen","schenen","toescheen","toeschijnt","toeschijn","toeschenen"],x=["blijken","dunken","heten","lijken","schijnen","toeschijnen"],q=["à","aan","aangaande","achter","behalve","behoudens","beneden","benevens","benoorden","benoordoosten","benoordwesten","beoosten","betreffende","bewesten","bezijden","bezuiden","bezuidoosten","bezuidwesten","bij","binnen","blijkens","boven","bovenaan","buiten","circa","conform","contra","cum","dankzij","door","gedurende","gezien","in","ingevolge","inzake","jegens","krachtens","langs","luidens","met","middels","na","naar","naast","nabij","namens","nevens","niettegenstaande","nopens","om","omstreeks","omtrent","onder","onderaan","ongeacht","onverminderd","op","over","overeenkomstig","per","plus","post","richting","rond","rondom","spijts","staande","te","tegen","tegenover","ten","ter","tijdens","tot","tussen","uit","van","vanaf","vanuit","versus","via","vis-à-vis","volgens","voor","voorbij","wegens","zijdens","zonder"],E=["af","heen","mee","toe","achterop","onderin","voorin","bovenop","buitenop","achteraan","onderop","binnenin","tevoren"],A=["en","alsmede","of","ofwel","en/of"],O=["zowel","evenmin","zomin","hetzij"],T=["vermits","dewijl","dorodien","naardien","nademaal","overmits","wijl","eer","eerdat","aleer","vooraleer","alvorens","totdat","zolang","sinds","sedert","ingeval","tenware","alhoewel","hoezeer","uitgezonderd","zoverre","zover","naargelang","naarmate","alsof"],S=["zegt","zei","vraagt","vroeg","denkt","dacht","stelt","pleit","pleitte"],M=["absoluut","zeker","ongetwijfeld","sowieso","onmiddelijk","meteen","inclusief","direct","ogenblikkelijk","terstond","natuurlijk","vanzelfsprekend","gewoonlijk","normaliter","doorgaans","werkelijk","daadwerkelijk","inderdaad","waarachtig","oprecht","bijna","meestal","misschien","waarschijnlijk","wellicht","mogelijk","vermoedelijk","allicht","aannemelijk","oorspronkelijk","aanvankelijk","initieel","eigenlijk","feitelijk","wezenlijk","juist","reeds","alvast","bijv.","vaak","dikwijls","veelal","geregeld","menigmaal","regelmatig","veelvuldig","eenvoudigweg","simpelweg","louter","kortweg","stomweg","domweg","zomaar","eventueel","mogelijkerwijs","eens","weleens","nooit","ooit","anders","momenteel","thans","incidenteel","trouwens","elders","volgend","recent","onlangs","recentelijk","laatst","zojuist","relatief","duidelijk","overduidelijk","klaarblijkelijk","nadrukkelijk","ogenschijnlijk","kennelijk","schijnbaar","alweer","continu","herhaaldelijk","nog","steeds","nu"],P=["zeer","erg","redelijk","flink","tikkeltje","bijzonder","ernstig","enigszins","zo","tamelijk","nogal","behoorlijk","zwaar","heel","hele","reuze","buitengewoon","ontzettend","vreselijk"],C=["laat","liet","lieten","kom","komt","kwam","kwamen","maakt","maak","maakte","maakten","doe","doet","deed","deden","vindt","vind","vond","vonden"],R=["laten","komen","maken","doen","vinden"],D=["nieuw","nieuwe","nieuwer","nieuwere","nieuwst","nieuwste","oud","oude","ouder","oudere","oudst","oudste","vorig","vorige","goed","goede","beter","betere","best","beste","groot","grote","groter","grotere","grootst","grootste","makkelijk","makkelijke","makkelijker","makkelijkere","makkelijkst","makkelijste","gemakkelijk","gemakkelijke","gemakkelijker","gemakkelijkere","gemakkelijkst","gemakkelijste","simpel","simpele","simpeler","simpelere","simpelst","simpelste","snel","snelle","sneller","snellere","snelst","snelste","verre","verder","verdere","verst","verste","lang","lange","langer","langere","langst","langste","hard","harde","harder","hardere","hardst","hardste","minder","mindere","minst","minste","eigen","laag","lage","lager","lagere","laagst","laagste","hoog","hoge","hoger","hogere","hoogst","hoogste","klein","kleine","kleiner","kleinere","kleinst","kleinste","kort","korte","korter","kortere","kortst","kortste","herhaaldelijke","directe","ongeveer","slecht","slechte","slechter","slechtere","slechtst","slechtste","zulke","zulk","zo'n","zulks","er","extreem","extreme","bijbehorende","bijbehorend","niet"],F=["oh","wauw","hèhè","hè","hé","au","ai","jaja","welja","jawel","ssst","heremijntijd","hemeltjelief","aha","foei","hmm","nou","nee","tja","nja","okido","ho","halt","komaan","komop","verrek","nietwaar","brr","oef","ach","och","bah","enfin","afijn","haha","hihi","hatsjie","hatsjoe","hm","tring","vroem","boem","hopla"],B=["ml","cl","dl","l","tl","el","mg","g","gr","kg","ca","theel","min","sec","uur"],$=["seconde","secondes","seconden","minuut","minuten","uur","uren","dag","dagen","week","weken","maand","maanden","jaar","jaren","vandaag","morgen","overmorgen","gisteren","eergisteren","'s","morgens","avonds","middags","nachts"],I=["ding","dingen","manier","manieren","item","items","keer","maal","procent","geval","aspect","persoon","personen","deel"],L=["wel","ja","neen","oké","oke","okee","ok","zoiets","€","euro"],W=["mevr","dhr","mr","dr","prof"],N=["jr","sr"]},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){return{singleWords:i,multipleWords:n,allWords:i.concat(n)}};const i=["aangezien","al","aldus","allereerst","als","alsook","anderzijds","bijgevolg","bijvoorbeeld","bovendien","concluderend","daardoor","daarentegen","daarmee","daarna","daarnaast","daarom","daartoe","daarvoor","dadelijk","dan","desondanks","dienovereenkomstig","dientegevolge","doch","doordat","dus","echter","eerst","evenals","eveneens","evenzeer","hierom","hoewel","immers","indien","integendeel","intussen","kortom","later","maar","mits","nadat","namelijk","net als","niettemin","noch","ofschoon","omdat","ondanks","ondertussen","ook","opdat","resumerend","samengevat","samenvattend","tegenwoordig","teneinde","tenzij","terwijl","tevens","toch","toen","uiteindelijk","vanwege","vervolgens","voorafgaand","vooralsnog","voordat","voorts","vroeger","waardoor","waarmee","waaronder","wanneer","want","zoals","zodat","zodoende","zodra"],n=["aan de andere kant","aan de ene kant","aangenomen dat","al met al","alles afwegend","alles bij elkaar","alles in aanmerking nemend","als gevolg van","anders gezegd","daar staat tegenover","daarbij komt","daaruit volgt","dat betekent","dat blijkt uit","de oorzaak daarvan is","de oorzaak hiervan is","door middel van","een voorbeeld hiervan","een voorbeeld van","gesteld dat","hetzelfde als","hieruit kunnen we afleiden","hieruit volgt","hoe het ook zij","in de derde plaats","in de eerste plaats","in de tweede plaats","in één woord","in het bijzonder","in het geval dat","in plaats van","in tegenstelling tot","in vergelijking met","maar ook","met als doel","met andere woorden","met behulp van","met de bedoeling","neem nou","net als","om kort te gaan","onder andere","op dezelfde wijze","stel dat","te danken aan","te wijten aan","ten derde","ten eerste","ten gevolge van","ten slotte","ten tweede","ter conclusie","ter illustratie","ter verduidelijking","tot nog toe","tot slot","vandaar dat","vergeleken met","voor het geval dat"]},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){return{singleWords:i,multipleWords:n,allWords:i.concat(n)}};const i=["además","adicional","así","asimismo","aún","aunque","ciertamente","como","concluyendo","conque","contrariamente","cuando","decididamente","decisivamente","después","diferentemente","efectivamente","entonces","especialmente","específicamente","eventualmente","evidentemente","finalmente","frecuentemente","generalmente","igualmente","lógicamente","luego","mas","mientras","pero","por","porque","posteriormente","primero","principalmente","pronto","próximamente","pues","raramente","realmente","seguidamente","segundo","semejantemente","si","siguiente","sino","súbitamente","supongamos","también","tampoco","tercero","verbigracia","vice-versa","ya"],n=["a causa de","a continuación","a diferencia de","a fin de cuentas","a la inversa","a la misma vez","a más de","a más de esto","a menos que","a no ser que","a pesar de","a pesar de eso","a pesar de todo","a peser de","a propósito","a saber","a todo esto","ahora bien","al contrario","al fin y al cabo","al final","al inicio","al mismo tiempo","al principio","ante todo","antes bien","antes de","antes de nada","antes que nada","aparte de","as así como","así como","así mismo","así pues","así que","así y todo","aún así","claro está que","claro que","claro que sí","como caso típico","como decíamos","como era de esperar","como es de esperar","como muestra","como resultado","como se ha notado","como sigue","comparado con","con el objeto de","con el propósito de","con que","con relación a","con tal de que","con todo","dado que","de ahí","de cierta manera","de cualquier manera","de cualquier modo","de ello resulta que","de este modo","de golpe","de hecho","de igual manera","de igual modo","de igualmanera","de la manera siguiente","de la misma forma","de la misma manera","de manera semejante","del mismo modo","de modo que","de nuevo","de otra manera","de otro modo","de pronto","de qualquier manera","de repente","de suerte que","de tal modo","de todas formas","de todas maneras","de todos modos","de veras","debido a","debido a que","del mismo modo","dentro de poco","desde entonces","después de","después de todo","ejemplo de esto","el caso es que","en aquel tiempo","en cambio","en cierto modo","en comparación con","en conclusión","en concreto","en conformidad con","en consecuencia","en consiguiente","en contraste con","en cualquier caso","en cuanto","en cuanto a","en definitiva","en efecto","en el caso de que","en este sentido","en fin","en fin de cuentas","en general","en lugar de","en otras palabras","en otro orden","en otros términos","en particular","en primer lugar","en primer término","en primera instancia","en realidad","en relación a","en relación con","en representación de","en resumen","en resumidas cuentas","en segundo lugar","en seguida","en síntesis","en suma","en todo caso","en último término","en verdad","en vez de","en virtud de","entre ellas figura","entre ellos figura","es cierto que","es decir","es evidente que","es incuestionable","es indudable","es más","está claro que","esto indica","excepto si","generalmente por ejemplo","gracias a","hasta aquí","hasta cierto punto","hasta el momento","hay que añadir","igual que","la mayor parte del tiempo","la mayoría del tiempo","lo que es peor","más tarde","mejor dicho","mientras tanto","mirándolo todo","nadie puede ignorar","no faltaría más","no obstante","o sea","otra vez","otro aspecto","par ilustrar","para concluir","para conclusión","para continuar","para empezar","para finalizar","para mencionar una cosa","para que","para resumir","para terminar","pongamos por caso","por añadidura","por cierto","por consiguiente","por ejemplo","por el consiguiente","por el contrario","por el hecho que","por eso","por esta razón","por esto","por fin","por la mayor parte","por lo general","por lo que","por lo tanto","por otro lado","por otra parte","por otro lado","por supuesto","por tanto","por último","por un lado","por una parte","primero que nada","primero que todo","pues bien","puesto que","rara vez","resulta que","sea como sea","seguidamente entre tanto","si bien","siempre que","siempre y cuando","sigue que","sin duda","sin embargo","sin ir más lejos","sobre todo","supuesto que","tal como","tales como","tan pronto como","tanto como","una vez","ya que"]},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){return{singleWords:i,multipleWords:n,allWords:i.concat(n)}};const i=["abbastanza","acciocché","acciocchè","adesso","affinché","affinchè","allora","almeno","alquanto","altrettanto","altrimenti","analogamente","anche","ancora","antecedentemente","anzi","anzitutto","apertamente","appena","assai","attualmente","benché","benchè","beninteso","bensì","brevemente","bruscamente","casomai","celermente","certamente","certo","chiaramente","ciononostante","cioé","cioè","comparabilmente","come","complessivamente","completamente","comunque","concisamente","concludendo","conformemente","congiuntamente","conseguentemente","considerando","considerato","considerevolmente","contemporaneamente","continuamente","contrariamente","controbilanciato","così","cosicché","cosicchè","dapprima","dato","davvero","definitivamente","dettagliatamente","differentemente","diversamente","dopo","dopodiché","dopodichè","durante","dunque","eccetto","eccome","effettivamente","egualmente","elencando","enfaticamente","eppure","esaurientemente","esplicitamente","espressamente","estesamente","evidentemente","finalmente","finché","finchè","fino","finora","fintanto","fintanto che","fintantoché","fintantochè","fondamentalmente","frattanto","frequentemente","generalmente","già","gradualmente","illustrando","immantinente","immediatamente","importantissimo","incontestabilmente","incredibilmente","indipendentemente","indiscutibilmente","indubbiamente","infatti","infine","innanzitutto","innegabilmente","inoltre","insomma","intanto","interamente","istantaneamente","invece","logicamente","lentamente","ma","malgrado","marcatamente","memorabile","mentre","motivatamente","naturalmente","né","nè","neanche","neppure","nonché","nonchè","nondimeno","nonostante","notevolmente","occasionalmente","oltretutto","onde","onestamente","ossia","ostinatamente","ovvero","ovviamente","parimenti","particolarmente","peraltro","perché","perchè","perciò","perlomeno","però","pertanto","pesantemente","piuttosto","poi","poiché","poichè","praticamente","precedentemente","preferibilmente","precisamente","prematuramente","presto","prima","primariamente","primo","principalmente","prontamente","proporzionalmente","pure","purché","purchè","quando","quanto","quantomeno","quindi","raramente","realmente","relativamente","riassumendo","riformulando","ripetutamente","saltuariamente","schiettamente","sebbene","secondariamente","secondo","sempre","sennò","seguente","sensibilmente","seppure","seriamente","siccome","sicuramente","significativamente","similmente","simultaneamente","singolarmente","sinteticamente","solitamente","solo","soltanto","soprattutto","sopravvalutato","sorprendentemente","sostanzialmente","sottolineando","sottovalutato","specialmente","specificamente","specificatamente","subitamente","subito","successivamente","successivo","talmente","terzo","totalmente","tranne","tuttavia","ugualmente","ulteriormente","ultimamente","veramente","verosimilmente","visto"],n=["a breve","a causa","a causa di","a condizione che","a conseguenza","a conti fatti","a differenza di","a differenza del","a differenza della","a differenza dei","a differenza degli","a differenza delle","a dire il vero","a dire la verità","a dirla tutta","a dispetto di","a lungo","a lungo termine","a maggior ragione","a meno che non","a parte","a patto che","a prescindere","a prima vista","a proposito","a qualunque costo","a quanto","a quel proposito","a quel tempo","a quell'epoca","a questo fine","a questo proposito","a questo punto","a questo riguardo","a questo scopo","a riguardo","a seguire","a seguito","a sottolineare","a tal fine","a tal proposito","a tempo debito","a tutti gli effetti","a tutti i costi","a una prima occhiata","ad eccezione di","ad esempio","ad essere maliziosi","ad essere sinceri","ad ogni buon conto","ad ogni costo","ad ogni modo","ad una prima occhiata","adesso che","al che","al contrario","al contrario di","al fine di","al fine di fare","al giorno d'oggi","al momento","al momento giusto","al momento opportuno","al più presto","al posto di","al suo posto","al termine","all'epoca","all'infuori di","all'inizio","all'opposto","all'ultimo","alla fine","alla fine della fiera","alla luce","alla luce di","alla lunga","alla moda","alla stessa maniera","allo scopo di","allo stesso modo","allo stesso tempo","anch'esso","anch'io","anche se","ancora più","ancora di più","assumendo che","bisogna chiarire che","bisogna considerare che","causato da","ciò nondimeno","ciò nonostante","col tempo","con il tempo","come a dire","come abbiamo dimostrato","come è stato notato","come è stato detto","come è stato dimostrato","come hanno detto","come ho detto","come ho dimostrato","come ho notato","come potete notare","come potete vedere","come puoi notare","come puoi vedere","come si è dimostrato","come si può vedere","come si può notare","come sopra indicato","comunque sia","con attenzione","con enfasi","con il risultato che","con l'obiettivo di","con ostinazione","con questa intenzione","con questa idea","con queste idee","con questo in testa","con questo scopo","così che","così da","d'altra parte","d'altro canto","d'altro lato","d'altronde","d'ora in avanti","d'ora in poi","da allora","da quando","da quanto","da quel momento","da quella volta","da questo momento in poi","da questo momento","da qui","da ultimo","da un certo punto di vista","da un lato","da una parte","dall'altro lato","dall'epoca","dal che","dato che","dato per assunto che","davanti a","del tutto","dell'epoca","detto questo","di certo","di colpo","di conseguenza","di fatto","di fronte","di fronte a","di lì a poco","di punto in bianco","di quando in quando","di quanto non sia","di quel tempo","di qui a","di rado","di seguito","di si","di sicuro","di solito","di tanto in tanto","di tutt'altra pasta","di quando in quando","differente da","diversamente da","diverso da","dopotutto","dovuto a","e anche","e inoltre","entro breve","fermo restando che","faccia a faccia","fin da","fin dall'inizio","fin quando","finché non","finchè non","fin dal primo momento","fin dall'inizio","fino a","fino a questo momento","fino ad oggi","fino ai giorni nostri","fino adesso","fino a un certo punto","fino adesso","fra quanto","il prima possibile","in aggiunta","in altre parole","in altri termini","in ambo i casi","in breve","in caso di","in conclusione","in conformità","in confronto","in confronto a","in conseguenza","in considerazione","in considerazione di","in definitiva","in dettaglio","importante rendersi conto","in effetti","in entrambi i casi","in fin dei conti","in generale","in genere","in linea di massima","in poche parole","il più possibile","in maggior parte","in maniera analoga","in maniera convincente","in maniera esauriente","in maniera esaustiva","in maniera esplicita","in maniera evidente","in maniera incontestabile","in maniera indiscutibile","in maniera innegabile","in maniera significativa","in maniera simile","in modo allusivo","in modo analogo","in modo che","in modo convincente","in modo da","in modo identico","in modo notevole","in modo significativo","in modo significativo","in modo simile","in ogni caso","in ogni modo","in ogni momento","in parte considerevole","in parti uguali","in particolare","in particolare per","in particolare","in più","in pratica","in precedenza","in prima battuta","in prima istanza","in primo luogo","in rapporto","in qualche modo","in qualsiasi modo","in qualsiasi momento","in qualunque modo","in qualunque momento","in quarta battuta","in quarta istanza","in quarto luogo","in quel caso","in quelle circostanze","in questa occasione","in questa situazione","in questo caso","in questo caso particolare","in questo istante","in questo momento","in rare occasioni","in realtà","in seconda battuta","in seconda istanza","in secondo luogo","in seguito","in sintesi","in sostanza","in tempo","in terza battuta","in terza istanza","in terzo luogo","in totale","in tutto","in ugual maniera","in ugual misura","in ugual modo","in ultima analisi","in ultima istanza","in un altro caso","in una parola","in verità","insieme a","insieme con","invece che","invece di","la prima cosa da considerare","la prima cosa da tenere a mente","lo stesso","mentre potrebbe essere vero","motivo per cui","motivo per il quale","ne consegue che","ne deriva che","nei dettagli","nel caso","nel caso che","nel caso in cui","nel complesso","nel corso del","nel corso di","nel frattempo","nel lungo periodo","nel mentre","nell'eventualità che","nella misura in cui","nella speranza che","nella stessa maniera","nella stessa misura","nello specifico","nello stesso modo","nello stesso momento","nello stesso stile","non appena","non per essere maliziosi","non più da","nonostante ciò","nonostante tutto","ogni qualvolta","ogni tanto","ogni volta","oltre a","oltre a ciò","ora che","passo dopo passo","per causa di","per certo","per chiarezza","per chiarire","per come","per concludere","per conto di","per contro","per cui","per davvero","per di più","per dirla in altro modo","per dirla meglio","per dirla tutta","per es.","per esempio","per essere sinceri","per far vedere","per farla breve","per finire","per l'avvenire","per l'ultima volta","per la maggior parte","per la stessa ragione","per la verità","per lo più","per mettere in luce","per metterla in altro modo","per non dire di","per non parlare di","per ora","per ovvi motivi","per paura di","per paura dei","per paura delle","per paura degli","per prima cosa","per quanto","per questa ragione","per questo motivo","per riassumere","per sottolineare","per timore","per trarre le conclusioni","per ultima","per ultime","per ultimi","per ultimo","per via di","perché si","perchè si","perfino se","piano piano","più di ogni altra cosa","più di tutto","più facilmente","più importante","più tardi","poco a poco","poco dopo","prendiamo il caso di","presto o tardi","prima che","prima di","prima di ogni cosa","prima di tutto","prima o dopo","prima o poi","questo è probabilmente vero","questo potrebbe essere vero","restando inteso che","riassumendo","quanto prima","questa volta","se confrontato con","se e solo se","se no","seduta stante","sempreché","semprechè","sempre che","senz'altro","senza alcun riguardo","senza dubbio","senz'ombra di dubbio","senza ombra di dubbio","senza riguardo per","senza tregua","senza ulteriore ritardo","sia quel che sia","solo se","sotto questa luce","sperando che","sta volta","su tutto","subito dopo","sul serio","tanto per cominciare","tanto quanto","tra breve","tra l'altro","tra poco","tra quanto","tutte le volte","tutti insieme","tutto a un tratto","tutto ad un tratto","tutto d'un tratto","tutto considerato","tutto sommato","un passo alla volta","un tempo","una volta","una volta ogni tanto","unito a","va chiarito che","va considerato che","vada come vada","vale a dire","visto che"]},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){return{singleWords:i,multipleWords:n,allWords:i.concat(n)}};const i=["ainsi","alors","aussi","car","cependant","certainement","certes","conséquemment","d'abord","d'ailleurs","d'après","davantage","désormais","deuxièmement","donc","dorénavant","effectivement","également","enfin","ensuite","entre-temps","essentiellement","excepté","finalement","globalement","jusqu'ici","là-dessus","lorsque","mais","malgré","néanmoins","notamment","partant","plutôt","pourtant","précédemment","premièrement","probablement","puis","puisque","quoique","sauf","selon","semblablement","sinon","suivant","toutefois","troisièmement"],n=["à cause de","à ce jour","à ce propos","à ce sujet","à cet égard","à cette fin","à compter de","à condition que","à défaut de","à force de","à juste titre","à la lumière de","à la suite de","à l'aide de","à l'appui de","à l'encontre de","à l'époque actuelle","à l'exception de","à l'exclusion de","à l'heure actuelle","à l'image de","à l'instar de","à l'inverse","à l'inverse de","à l'opposé","à la condition que","à mesure que","à moins que","à nouveau","à partir de","à première vue","à savoir","à seule fin que","à supposer que","à tel point que","à tout prendre","à vrai dire","afin de","afin d'attirer l'attention sur","afin que","ainsi donc","ainsi que","alors que","antérieurement","après cela","après quoi","après que","après réflexion","après tout","attendu que","au cas où","au contraire","au fond","au fur et à mesure","au lieu de","au même temps","au moment où","au moyen de","au point que","au risque de","au surplus","au total","aussi bien que","aussitôt que","autant que","autrement dit","avant que","avant tout","ayant fini","bien que","c'est à dire que","c'est ainsi que","c'est dans ce but que","c'est dire","c'est le cas de","c'est pour cela que","c'est la raison pour laquelle","c'est pourquoi","c'est qu'en effet","c'est-à-dire","ça confirme que","ça montre que","ça prouve que","cela étant","cela dit","cependant que","compte tenu","comme l'illustre","comme le souligne","comme on pouvait s'y attendre","comme quoi","comme si","commençons par examiner","comparativement à","conformément à","contrairement à","considérons par exemple","d'autant plus","d'autant que","d'autre part","d'ici là","d'où","d'un autre côté","d'un côté","d'une façon générale","dans ce cas","dans ces conditions","dans cet esprit","dans l'ensemble","dans l'état actuel des choses","dans l'éventualité où","dans l'hypothèse où","dans la mesure où","dans le but de","dans le cadre de","dans le cas où","dans les circonstances actuelles","dans les grandes lignes","dans un autre ordre d'idée","dans un délai de","de ce fait","de cette façon","de crainte que","de façon à","de façon à ce que","de façon que","de fait","de l'autre côté","de la même manière","de la même façon que","de manière que","de même","de même qu'à","de même que","de nos jours","de peur que","de prime abord","de sorte que","de surcroît","de telle manière que","de telle sorte que","de toute évidence","de toute façon","de toute manière","depuis que","dès lors que","dès maintenant","dès qua","dès que","du fait que","du moins","du moment que","du point de vue de","du reste","d'ici là","d'ores et déjà","en admettant que","en attendant que","en bref","en cas de","en cas que","en ce cas","en ce domaine","en ce moment","en ce qui a trait à","en ce qui concerne","en ce sens","en cela","en comparaison de","en conclusion","en conformité avec","en conséquence","en d'autres termes","en définitive","en dépit de","en dernier lieu","en deuxième lieu","en effet","en face de","en fait","en fin de compte","en général","en guise de conclusion","en matière de","en même temps que","en outre","en particulier","en plus","en premier lieu","en principe","en raison de","en réalité","en règle générale","en résumé","en revanche","en second lieu","en somme","en sorte que","en supposant que","en tant que","en terminant","en théorie","en tout cas","en tout premier lieu","en troisième lieu","en un mot","en vérité","en vue que","encore que","encore une fois","entre autres","et même","et puis","étant donné qu'à","étant donné que","face à","grâce à","il est à noter que","il est indéniable que","il est question de","il est vrai que","il faut dire aussi que","il faut reconnaître que","il faut souligner que","il ne faut pas oublier que","il s'ensuit que","il suffit de prendre pour exemple","jusqu'ici","il y a aussi","jusqu'à ce que","jusqu'à ce jour","jusqu'à maintenant","jusqu'à présent","jusqu'au moment où","jusqu'ici","l'aspect le plus important de","l'exemple le plus significatif","jusqu'au moment où","la preuve c'est que","loin que","mais en réalité","malgré cela","malgré tout","même si","mentionnons que","mis à part le fait que","notons que","nul doute que","ou bien","outre cela","où que","par ailleurs","par conséquent","par contre","par exception","par exemple","par la suite","par l'entremise de","par l'intermédiaire de","par rapport à","par suite","par suite de","par surcroît","parce que","pareillement","partant de ce fait","pas du tout","pendant que","plus précisément","plus tard","pour ainsi dire","pour autant que","pour ce qui est de","pour ces motifs","pour ces raisons","pour cette raison","pour commencer","pour conclure","pour le moment","pour marquer la causalité","pour l'instant","pour peu que","pour prendre un autre exemple","pour que","pour résumé","pour terminer","pour tout dire","pour toutes ces raisons","pourvu que","prenons le cas de","quand bien même que","quand même","quant à","quel que soit","qui plus est","qui que","quitte à","quoi qu'il en soit","quoi que","quoiqu'il en soit","sans délai","sans doute","sans parler de","sans préjuger","sans tarder","sauf si","selon que","si bien que","si ce n'est que","si l'on songe que","sitôt que","somme toute","sous cette réserve","sous prétexte que","sous réserve de","sous réserve que","suivant que","supposé que","sur le plan de","tandis que","tant et si bien que","tant que","tel que","tellement que","touchant à","tout à fait","tout bien pesé","tout compte fait","tout d'abord","tout d'abord examinons","tout d'abord il faut dire que","tout de même","tout en reconnaissant que","une fois de plus","vu que"]},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){return{singleWords:i,multipleWords:n,allWords:i.concat(n)}};const i=["ademais","afinal","aliás","analogamente","anteriormente","assim","certamente","conforme","conquanto","contudo","decerto","embora","enfim","enquanto","então","entretanto","eventualmente","igualmente","inegavelmente","inesperadamente","mas","outrossim","pois","porquanto","porque","portanto","posteriormente","precipuamente","primeiramente","primordialmente","principalmente","salvo","semelhantemente","similarmente","sobretudo","surpreendentemente","todavia"],n=["a fim de","a fim de que","a menos que","a princípio","a saber","acima de tudo","ainda assim","ainda mais","ainda que","além disso","antes de mais nada","antes de tudo","antes que","ao mesmo tempo","ao passo que","ao propósito","apesar de","às vezes","assim como","assim que","assim sendo","assim também","bem como","com a finalidade de","com efeito","com o fim de","com o intuito de","com o propósito de","com toda a certeza","como resultado","como se","da mesma forma","de acordo com","de conformidade com","de fato","de maneira idêntica","de tal forma que","de tal sorte que","depois que","desde que","dessa forma","dessa maneira","desse modo","do mesmo modo","é provável","em conclusão","em contrapartida","em contraste com","em outras palavras","em primeiro lugar","em