Yoast SEO - Version 9.1

Version Description

Download this release

Release Info

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

Code changes from version 9.0.3 to 9.1

Files changed (49) hide show
  1. admin/class-admin-asset-manager.php +3 -0
  2. admin/class-admin-init.php +18 -0
  3. admin/class-customizer.php +93 -120
  4. admin/class-help-center.php +1 -1
  5. admin/class-option-tabs.php +2 -0
  6. admin/class-premium-upsell-admin-block.php +20 -6
  7. admin/views/sidebar.php +1 -1
  8. admin/views/tabs/metas/paper-content/date-archives-settings.php +1 -1
  9. css/dist/{admin-global-903-rtl.min.css → admin-global-910-rtl.min.css} +0 -0
  10. css/dist/{admin-global-903.min.css → admin-global-910.min.css} +0 -0
  11. css/dist/{adminbar-903-rtl.min.css → adminbar-910-rtl.min.css} +0 -0
  12. css/dist/{adminbar-903.min.css → adminbar-910.min.css} +0 -0
  13. css/dist/{alerts-903-rtl.min.css → alerts-910-rtl.min.css} +0 -0
  14. css/dist/{alerts-903.min.css → alerts-910.min.css} +0 -0
  15. css/dist/{dashboard-903-rtl.min.css → dashboard-910-rtl.min.css} +0 -0
  16. css/dist/{dashboard-903.min.css → dashboard-910.min.css} +0 -0
  17. css/dist/{edit-page-903-rtl.min.css → edit-page-910-rtl.min.css} +0 -0
  18. css/dist/{edit-page-903.min.css → edit-page-910.min.css} +0 -0
  19. css/dist/{featured-image-903-rtl.min.css → featured-image-910-rtl.min.css} +0 -0
  20. css/dist/{featured-image-903.min.css → featured-image-910.min.css} +0 -0
  21. css/dist/{filter-explanation-903-rtl.min.css → filter-explanation-910-rtl.min.css} +0 -0
  22. css/dist/{filter-explanation-903.min.css → filter-explanation-910.min.css} +0 -0
  23. css/dist/{inside-editor-903-rtl.min.css → inside-editor-910-rtl.min.css} +0 -0
  24. css/dist/{inside-editor-903.min.css → inside-editor-910.min.css} +0 -0
  25. css/dist/{metabox-903-rtl.min.css → metabox-910-rtl.min.css} +0 -0
  26. css/dist/{metabox-903.min.css → metabox-910.min.css} +0 -0
  27. css/dist/{metabox-primary-category-903-rtl.min.css → metabox-primary-category-910-rtl.min.css} +0 -0
  28. css/dist/{metabox-primary-category-903.min.css → metabox-primary-category-910.min.css} +0 -0
  29. css/dist/{search-appearance-903-rtl.min.css → search-appearance-910-rtl.min.css} +0 -0
  30. css/dist/{search-appearance-903.min.css → search-appearance-910.min.css} +0 -0
  31. css/dist/{structured-data-blocks-903-rtl.min.css → structured-data-blocks-910-rtl.min.css} +0 -0
  32. css/dist/{structured-data-blocks-903.min.css → structured-data-blocks-910.min.css} +0 -0
  33. css/dist/{toggle-switch-903-rtl.min.css → toggle-switch-910-rtl.min.css} +0 -0
  34. css/dist/{toggle-switch-903.min.css → toggle-switch-910.min.css} +0 -0
  35. css/dist/{wpseo-dismissible-903-rtl.min.css → wpseo-dismissible-910-rtl.min.css} +0 -0
  36. css/dist/{wpseo-dismissible-903.min.css → wpseo-dismissible-910.min.css} +0 -0
  37. css/dist/{yoast-components-903-rtl.min.css → yoast-components-910-rtl.min.css} +0 -0
  38. css/dist/{yoast-components-903.min.css → yoast-components-910.min.css} +0 -0
  39. css/dist/{yoast-extensions-903-rtl.min.css → yoast-extensions-910-rtl.min.css} +0 -0
  40. css/dist/{yoast-extensions-903.min.css → yoast-extensions-910.min.css} +0 -0
  41. css/dist/{yst_plugin_tools-903-rtl.min.css → yst_plugin_tools-910-rtl.min.css} +1 -1
  42. css/dist/{yst_plugin_tools-903.min.css → yst_plugin_tools-910.min.css} +1 -1
  43. css/dist/{yst_seo_score-903-rtl.min.css → yst_seo_score-910-rtl.min.css} +0 -0
  44. css/dist/{yst_seo_score-903.min.css → yst_seo_score-910.min.css} +0 -0
  45. frontend/class-opengraph-image.php +10 -1
  46. inc/class-wpseo-admin-bar-menu.php +14 -14
  47. inc/class-wpseo-meta.php +4 -0
  48. inc/sitemaps/class-sitemap-image-parser.php +1 -1
  49. js/dist/analysis-903.min.js +0 -13
admin/class-admin-asset-manager.php CHANGED
@@ -537,6 +537,9 @@ class WPSEO_Admin_Asset_Manager {
537
  array(
538
  'name' => 'analysis',
539
  'src' => 'analysis-' . $flat_version,
 
 
 
540
  ),
541
  array(
542
  'name' => 'components',
537
  array(
538
  'name' => 'analysis',
539
  'src' => 'analysis-' . $flat_version,
540
+ 'deps' => array(
541
+ self::PREFIX . 'react-dependencies',
542
+ ),
543
  ),
544
  array(
545
  'name' => 'components',
admin/class-admin-init.php CHANGED
@@ -49,6 +49,7 @@ class WPSEO_Admin_Init {
49
  add_action( 'admin_init', array( 'WPSEO_Plugin_Conflict', 'hook_check_for_plugin_conflicts' ) );
50
  add_action( 'admin_init', array( $this, 'handle_notifications' ), 15 );
51
  add_action( 'admin_enqueue_scripts', array( $this->asset_manager, 'register_wp_assets' ) );
 
52
 
53
  $listeners = array();
54
  $listeners[] = new WPSEO_Post_Type_Archive_Notification_Handler();
@@ -706,4 +707,21 @@ class WPSEO_Admin_Init {
706
  private function has_postname_in_permalink() {
707
  return ( false !== strpos( get_option( 'permalink_structure' ), '%postname%' ) );
708
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
709
  }
49
  add_action( 'admin_init', array( 'WPSEO_Plugin_Conflict', 'hook_check_for_plugin_conflicts' ) );
50
  add_action( 'admin_init', array( $this, 'handle_notifications' ), 15 );
51
  add_action( 'admin_enqueue_scripts', array( $this->asset_manager, 'register_wp_assets' ) );
52
+ add_action( 'admin_notices', array( $this, 'permalink_settings_notice' ) );
53
 
54
  $listeners = array();
55
  $listeners[] = new WPSEO_Post_Type_Archive_Notification_Handler();
707
  private function has_postname_in_permalink() {
708
  return ( false !== strpos( get_option( 'permalink_structure' ), '%postname%' ) );
709
  }
710
+
711
+ /**
712
+ * Shows a notice on the permalink settings page.
713
+ */
714
+ public function permalink_settings_notice() {
715
+ global $pagenow;
716
+
717
+ if ( $pagenow === 'options-permalink.php' ) {
718
+ $warning = esc_html__( 'WARNING:', 'wordpress-seo' );
719
+ /* translators: %1$s and %2$s expand to <i> items to emphasize the word in the middle. */
720
+ $message = esc_html__( 'Changing your permalinks settings can seriously impact your search engine visibility. It should almost %1$s never %2$s be done on a live website.', 'wordpress-seo' );
721
+ $link = esc_html__( 'Learn about why permalinks are important for SEO.', 'wordpress-seo' );
722
+ $url = WPSEO_Shortlinker::get( 'https://yoa.st/why-permalinks/' );
723
+
724
+ echo '<div class="notice notice-warning"><p><strong>' . $warning . '</strong><br>' . sprintf( $message, '<i>', '</i>' ) . '<br><a href="' . $url . '" target="_blank">' . $link . '</a></p></div>';
725
+ }
726
+ }
727
  }
admin/class-customizer.php CHANGED
@@ -15,6 +15,37 @@ class WPSEO_Customizer {
15
  */
16
  protected $wp_customize;
17
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  /**
19
  * Construct Method.
20
  */
@@ -71,26 +102,14 @@ class WPSEO_Customizer {
71
  * Adds the breadcrumbs remove blog checkbox
72
  */
73
  private function breadcrumbs_blog_remove_setting() {
74
- $this->wp_customize->add_setting(
75
- 'wpseo_titles[breadcrumbs-display-blog-page]', array(
76
- 'default' => '',
77
- 'type' => 'option',
78
- 'transport' => 'refresh',
79
- )
80
  );
81
 
82
- $this->wp_customize->add_control(
83
- new WP_Customize_Control(
84
- $this->wp_customize, 'wpseo-breadcrumbs-display-blog-page', array(
85
- 'label' => __( 'Remove blog page from breadcrumbs', 'wordpress-seo' ),
86
- 'type' => 'checkbox',
87
- 'section' => 'wpseo_breadcrumbs_customizer_section',
88
- 'settings' => 'wpseo_titles[breadcrumbs-display-blog-page]',
89
- 'context' => '',
90
- 'active_callback' => array( $this, 'breadcrumbs_blog_remove_active_cb' ),
91
- )
92
- )
93
- );
94
  }
95
 
96
  /**
@@ -106,149 +125,103 @@ class WPSEO_Customizer {
106
  * Adds the breadcrumbs separator text field
107
  */
108
  private function breadcrumbs_separator_setting() {
109
- $this->wp_customize->add_setting(
110
- 'wpseo_titles[breadcrumbs-sep]', array(
111
- 'default' => '',
112
- 'type' => 'option',
113
- 'transport' => 'refresh',
114
- )
115
  );
 
116
 
117
- $this->wp_customize->add_control(
118
- new WP_Customize_Control(
119
- $this->wp_customize, 'wpseo-breadcrumbs-separator', array(
120
- 'label' => __( 'Breadcrumbs separator:', 'wordpress-seo' ),
121
- 'type' => 'text',
122
- 'section' => 'wpseo_breadcrumbs_customizer_section',
123
- 'settings' => 'wpseo_titles[breadcrumbs-sep]',
124
- 'context' => '',
125
- )
126
- )
127
- );
128
  }
129
 
130
  /**
131
  * Adds the breadcrumbs home anchor text field
132
  */
133
  private function breadcrumbs_home_setting() {
134
- $this->wp_customize->add_setting(
135
- 'wpseo_titles[breadcrumbs-home]', array(
136
- 'default' => '',
137
- 'type' => 'option',
138
- 'transport' => 'refresh',
139
- )
140
  );
141
 
142
- $this->wp_customize->add_control(
143
- new WP_Customize_Control(
144
- $this->wp_customize, 'wpseo-breadcrumbs-home', array(
145
- 'label' => __( 'Anchor text for the homepage:', 'wordpress-seo' ),
146
- 'type' => 'text',
147
- 'section' => 'wpseo_breadcrumbs_customizer_section',
148
- 'settings' => 'wpseo_titles[breadcrumbs-home]',
149
- 'context' => '',
150
- )
151
- )
152
- );
153
  }
154
 
155
  /**
156
  * Adds the breadcrumbs prefix text field
157
  */
158
  private function breadcrumbs_prefix_setting() {
159
- $this->wp_customize->add_setting(
160
- 'wpseo_titles[breadcrumbs-prefix]', array(
161
- 'default' => '',
162
- 'type' => 'option',
163
- 'transport' => 'refresh',
164
- )
165
  );
166
 
167
- $this->wp_customize->add_control(
168
- new WP_Customize_Control(
169
- $this->wp_customize, 'wpseo-breadcrumbs-prefix', array(
170
- 'label' => __( 'Prefix for breadcrumbs:', 'wordpress-seo' ),
171
- 'type' => 'text',
172
- 'section' => 'wpseo_breadcrumbs_customizer_section',
173
- 'settings' => 'wpseo_titles[breadcrumbs-prefix]',
174
- 'context' => '',
175
- )
176
- )
177
- );
178
  }
179
 
180
  /**
181
  * Adds the breadcrumbs archive prefix text field
182
  */
183
  private function breadcrumbs_archiveprefix_setting() {
184
- $this->wp_customize->add_setting(
185
- 'wpseo_titles[breadcrumbs-archiveprefix]', array(
186
- 'default' => '',
187
- 'type' => 'option',
188
- 'transport' => 'refresh',
189
- )
190
  );
191
 
192
- $this->wp_customize->add_control(
193
- new WP_Customize_Control(
194
- $this->wp_customize, 'wpseo-breadcrumbs-archiveprefix', array(
195
- 'label' => __( 'Prefix for archive pages:', 'wordpress-seo' ),
196
- 'type' => 'text',
197
- 'section' => 'wpseo_breadcrumbs_customizer_section',
198
- 'settings' => 'wpseo_titles[breadcrumbs-archiveprefix]',
199
- 'context' => '',
200
- )
201
- )
202
- );
203
  }
204
 
205
  /**
206
  * Adds the breadcrumbs search prefix text field
207
  */
208
  private function breadcrumbs_searchprefix_setting() {
209
- $this->wp_customize->add_setting(
210
- 'wpseo_titles[breadcrumbs-searchprefix]', array(
211
- 'default' => '',
212
- 'type' => 'option',
213
- 'transport' => 'refresh',
214
- )
215
  );
216
 
217
- $this->wp_customize->add_control(
218
- new WP_Customize_Control(
219
- $this->wp_customize, 'wpseo-breadcrumbs-searchprefix', array(
220
- 'label' => __( 'Prefix for search result pages:', 'wordpress-seo' ),
221
- 'type' => 'text',
222
- 'section' => 'wpseo_breadcrumbs_customizer_section',
223
- 'settings' => 'wpseo_titles[breadcrumbs-searchprefix]',
224
- 'context' => '',
225
- )
226
- )
227
- );
228
  }
229
 
230
  /**
231
  * Adds the breadcrumb 404 prefix text field
232
  */
233
  private function breadcrumbs_404_setting() {
234
- $this->wp_customize->add_setting(
235
- 'wpseo_titles[breadcrumbs-404crumb]', array(
236
- 'default' => '',
237
- 'type' => 'option',
238
- 'transport' => 'refresh',
239
- )
240
  );
241
 
242
- $this->wp_customize->add_control(
243
- new WP_Customize_Control(
244
- $this->wp_customize, 'wpseo-breadcrumbs-404crumb', array(
245
- 'label' => __( 'Breadcrumb for 404 pages:', 'wordpress-seo' ),
246
- 'type' => 'text',
247
- 'section' => 'wpseo_breadcrumbs_customizer_section',
248
- 'settings' => 'wpseo_titles[breadcrumbs-404crumb]',
249
- 'context' => '',
250
- )
251
- )
252
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
253
  }
254
  }
15
  */
16
  protected $wp_customize;
17
 
18
+ /**
19
+ * Template for the setting IDs used for the customizer.
20
+ *
21
+ * @var string
22
+ */
23
+ private $setting_template = 'wpseo_titles[%s]';
24
+
25
+ /**
26
+ * Default arguments for the breadcrumbs customizer settings object.
27
+ *
28
+ * @var array
29
+ */
30
+ private $default_setting_args = array(
31
+ 'default' => '',
32
+ 'type' => 'option',
33
+ 'transport' => 'refresh',
34
+ );
35
+
36
+ /**
37
+ * Default arguments for the breadcrumbs customizer control object.
38
+ *
39
+ * @var array
40
+ */
41
+ private $default_control_args = array(
42
+ 'label' => '',
43
+ 'type' => 'text',
44
+ 'section' => 'wpseo_breadcrumbs_customizer_section',
45
+ 'settings' => '',
46
+ 'context' => '',
47
+ );
48
+
49
  /**
50
  * Construct Method.
51
  */
102
  * Adds the breadcrumbs remove blog checkbox
103
  */
104
  private function breadcrumbs_blog_remove_setting() {
105
+ $index = 'breadcrumbs-display-blog-page';
106
+ $control_args = array(
107
+ 'label' => __( 'Remove blog page from breadcrumbs', 'wordpress-seo' ),
108
+ 'type' => 'checkbox',
109
+ 'active_callback' => array( $this, 'breadcrumbs_blog_remove_active_cb' ),
 
110
  );
111
 
112
+ $this->add_setting_and_control( $index, $control_args );
 
 
 
 
 
 
 
 
 
 
 
113
  }
114
 
115
  /**
125
  * Adds the breadcrumbs separator text field
126
  */
127
  private function breadcrumbs_separator_setting() {
128
+ $index = 'breadcrumbs-sep';
129
+ $control_args = array(
130
+ 'label' => __( 'Breadcrumbs separator:', 'wordpress-seo' ),
 
 
 
131
  );
132
+ $id = 'wpseo-breadcrumbs-separator';
133
 
134
+ $this->add_setting_and_control( $index, $control_args, $id );
 
 
 
 
 
 
 
 
 
 
135
  }
136
 
137
  /**
138
  * Adds the breadcrumbs home anchor text field
139
  */
140
  private function breadcrumbs_home_setting() {
141
+ $index = 'breadcrumbs-home';
142
+ $control_args = array(
143
+ 'label' => __( 'Anchor text for the homepage:', 'wordpress-seo' ),
 
 
 
144
  );
145
 
146
+ $this->add_setting_and_control( $index, $control_args );
 
 
 
 
 
 
 
 
 
 
147
  }
148
 
149
  /**
150
  * Adds the breadcrumbs prefix text field
151
  */
152
  private function breadcrumbs_prefix_setting() {
153
+ $index = 'breadcrumbs-prefix';
154
+ $control_args = array(
155
+ 'label' => __( 'Prefix for breadcrumbs:', 'wordpress-seo' ),
 
 
 
156
  );
157
 
158
+ $this->add_setting_and_control( $index, $control_args );
 
 
 
 
 
 
 
 
 
 
159
  }
160
 
161
  /**
162
  * Adds the breadcrumbs archive prefix text field
163
  */
164
  private function breadcrumbs_archiveprefix_setting() {
165
+ $index = 'breadcrumbs-archiveprefix';
166
+ $control_args = array(
167
+ 'label' => __( 'Prefix for archive pages:', 'wordpress-seo' ),
 
 
 
168
  );
169
 
170
+ $this->add_setting_and_control( $index, $control_args );
 
 
 
 
 
 
 
 
 
 
171
  }
172
 
173
  /**
174
  * Adds the breadcrumbs search prefix text field
175
  */
176
  private function breadcrumbs_searchprefix_setting() {
177
+ $index = 'breadcrumbs-searchprefix';
178
+ $control_args = array(
179
+ 'label' => __( 'Prefix for search result pages:', 'wordpress-seo' ),
 
 
 
180
  );
181
 
182
+ $this->add_setting_and_control( $index, $control_args );
 
 
 
 
 
 
 
 
 
 
183
  }
184
 
185
  /**
186
  * Adds the breadcrumb 404 prefix text field
187
  */
188
  private function breadcrumbs_404_setting() {
189
+ $index = 'breadcrumbs-404crumb';
190
+ $control_args = array(
191
+ 'label' => __( 'Breadcrumb for 404 pages:', 'wordpress-seo' ),
 
 
 
192
  );
193
 
194
+ $this->add_setting_and_control( $index, $control_args );
195
+ }
196
+
197
+ /**
198
+ * Adds the customizer setting and control.
199
+ *
200
+ * @param string $index Array key index to use for the customizer setting.
201
+ * @param array $control_args Customizer control object arguments.
202
+ * Only those different from the default need to be passed.
203
+ * @param string $id Optional. Customizer control object ID.
204
+ * Will default to 'wpseo-' . $index.
205
+ * @param array $custom_settings Optional. Customizer setting arguments.
206
+ * Only those different from the default need to be passed.
207
+ */
208
+ private function add_setting_and_control( $index, $control_args, $id = null, $custom_settings = array() ) {
209
+ $setting = sprintf( $this->setting_template, $index );
210
+ $control_args = array_merge( $this->default_control_args, $control_args );
211
+ $control_args['settings'] = $setting;
212
+
213
+ $settings_args = $this->default_setting_args;
214
+ if ( ! empty( $custom_settings ) ) {
215
+ $settings_args = array_merge( $settings_args, $custom_settings );
216
+ }
217
+
218
+ if ( ! isset( $id ) ) {
219
+ $id = 'wpseo-' . $index;
220
+ }
221
+
222
+ $this->wp_customize->add_setting( $setting, $settings_args );
223
+
224
+ $control = new WP_Customize_Control( $this->wp_customize, $id, $control_args );
225
+ $this->wp_customize->add_control( $control );
226
  }
227
  }
admin/class-help-center.php CHANGED
@@ -198,7 +198,7 @@ class WPSEO_Help_Center {
198
  private function add_contact_support_item() {
199
  /* translators: %s: expands to 'Yoast SEO Premium'. */
200
  $popup_title = sprintf( __( 'Email support is a %s feature', 'wordpress-seo' ), 'Yoast SEO Premium' );
201
- $popup_content = '<p class="yoast-measure">' . __( 'Go Premium and our experts will be there for you to answer any questions you might have about the set-up and use of the plug-in!', 'wordpress-seo' ) . '</p>';
202
  /* translators: %1$s: expands to 'Yoast SEO Premium'. */
203
  $popup_content .= '<p>' . sprintf( __( 'Other benefits of %1$s for you:', 'wordpress-seo' ), 'Yoast SEO Premium' ) . '</p>';
204
  $popup_content .= '<ul class="wpseo-premium-advantages-list">';
198
  private function add_contact_support_item() {
199
  /* translators: %s: expands to 'Yoast SEO Premium'. */
200
  $popup_title = sprintf( __( 'Email support is a %s feature', 'wordpress-seo' ), 'Yoast SEO Premium' );
201
+ $popup_content = '<p class="yoast-measure">' . __( 'Go Premium and our experts will be there for you to answer any questions you might have about the setup and use of the plugin.', 'wordpress-seo' ) . '</p>';
202
  /* translators: %1$s: expands to 'Yoast SEO Premium'. */
203
  $popup_content .= '<p>' . sprintf( __( 'Other benefits of %1$s for you:', 'wordpress-seo' ), 'Yoast SEO Premium' ) . '</p>';
204
  $popup_content .= '<ul class="wpseo-premium-advantages-list">';
admin/class-option-tabs.php CHANGED
@@ -22,6 +22,8 @@ class WPSEO_Option_Tabs {
22
  /**
23
  * WPSEO_Option_Tabs constructor.
24
  *
 
 
25
  * @param string $base Base of the tabs.
26
  * @param string $active_tab Currently active tab.
27
  */
22
  /**
23
  * WPSEO_Option_Tabs constructor.
24
  *
25
+ * @codeCoverageIgnore
26
+ *
27
  * @param string $base Base of the tabs.
28
  * @param string $active_tab Currently active tab.
29
  */
admin/class-premium-upsell-admin-block.php CHANGED
@@ -57,23 +57,37 @@ class WPSEO_Premium_Upsell_Admin_Block {
57
  $class = $this->get_html_class();
58
 
59
  /* translators: %s expands to "Yoast SEO Premium". */
60
- $dismiss_msg = sprintf( __( 'Dismiss %s upgrade motivation', 'wordpress-seo' ), 'Yoast SEO Premium' );
61
- /* translators: %s expands to "Yoast SEO Premium". */
62
- $upgrade_msg = sprintf( __( 'Find out why you should upgrade to %s &raquo;', 'wordpress-seo' ), 'Yoast SEO Premium' );
 
 
 
 
 
 
 
 
63
 
64
  echo '<div class="' . esc_attr( $class ) . '">';
65
  printf(
66
- '<a href="%1$s" style="" class="alignright %2$s" aria-label="%3$s">X</a>',
67
  esc_url( add_query_arg( array( $this->get_query_variable_name() => 1 ) ) ),
68
  esc_attr( $class . '--close' ),
69
  esc_attr( $dismiss_msg )
70
  );
71
 
72
  echo '<div>';
73
- echo '<h2 class="' . esc_attr( $class . '--header' ) . '">' . esc_html__( 'Go premium!', 'wordpress-seo' ) . '</h2>';
 
 
 
 
 
 
74
  echo '<ul class="' . esc_attr( $class . '--motivation' ) . '">' . $arguments_html . '</ul>';
75
 
76
- echo '<p><a href="' . esc_url( $url ) . '" target="_blank">' . esc_html( $upgrade_msg ) . '</a><br />';
77
  echo '</div>';
78
 
79
  echo '</div>';
57
  $class = $this->get_html_class();
58
 
59
  /* translators: %s expands to "Yoast SEO Premium". */
60
+ $dismiss_msg = sprintf( __( 'Dismiss %s upgrade notice', 'wordpress-seo' ), 'Yoast SEO Premium' );
61
+
62
+ /* translators: %s expands to Yoast SEO Premium */
63
+ $button_text = sprintf( __( 'Get %s', 'wordpress-seo' ), 'Yoast SEO Premium' );
64
+
65
+ $upgrade_button = sprintf(
66
+ '<a id="wpseo-%1$s-popup-button" class="yoast-button-upsell" href="%2$s" target="_blank" rel="noreferrer noopener">%3$s</a>',
67
+ $this->identifier,
68
+ $url,
69
+ esc_html( $button_text )
70
+ );
71
 
72
  echo '<div class="' . esc_attr( $class ) . '">';
73
  printf(
74
+ '<a href="%1$s" style="" class="alignright button %2$s" aria-label="%3$s"><span class="dashicons dashicons-no-alt"></span></a>',
75
  esc_url( add_query_arg( array( $this->get_query_variable_name() => 1 ) ) ),
76
  esc_attr( $class . '--close' ),
77
  esc_attr( $dismiss_msg )
78
  );
79
 
80
  echo '<div>';
81
+ echo '<h2 class="' . esc_attr( $class . '--header' ) . '">' .
82
+ sprintf(
83
+ /* translators: %s expands to Yoast SEO Premium */
84
+ esc_html__( 'Upgrade to %s', 'wordpress-seo' ),
85
+ 'Yoast SEO Premium'
86
+ ) .
87
+ '</h2>';
88
  echo '<ul class="' . esc_attr( $class . '--motivation' ) . '">' . $arguments_html . '</ul>';
89
 
90
+ echo '<p><a href="' . esc_url( $url ) . '" target="_blank">' . $upgrade_button . '</a><br />';
91
  echo '</div>';
92
 
93
  echo '</div>';
admin/views/sidebar.php CHANGED
@@ -111,7 +111,7 @@ $wpseo_plugin_dir_url = plugin_dir_url( WPSEO_FILE );
111
  </div>
112
  </div>
113
  <div class="yoast-sidebar_section">
114
- <strong>Remove these ads?</strong>
115
  <p>
116
  <a target="_blank" rel="noopener noreferrer" href="<?php WPSEO_Shortlinker::show( 'https://yoa.st/jy' ); ?>">
117
  <?php
111
  </div>
112
  </div>
113
  <div class="yoast-sidebar_section">
114
+ <strong><?php esc_html_e( 'Remove these ads?', 'wordpress-seo' ); ?></strong>
115
  <p>
116
  <a target="_blank" rel="noopener noreferrer" href="<?php WPSEO_Shortlinker::show( 'https://yoa.st/jy' ); ?>">
117
  <?php
admin/views/tabs/metas/paper-content/date-archives-settings.php CHANGED
@@ -26,7 +26,7 @@ $yform->toggle_switch(
26
  esc_html__( 'Help on the date archives search results setting', 'wordpress-seo' ),
27
  sprintf(
28
  /* translators: 1: expands to <code>noindex</code>; 2: link open tag; 3: link close tag. */
29
- esc_html__( 'Not showing the date archives in the search results technically means those will have a %1$s robots meta and will be excluded from XML sitemaps. %2$sMore info on the search results settings%3$s.', 'wordpress-seo' ),
30
  '<code>noindex</code>',
31
  '<a href="' . esc_url( WPSEO_Shortlinker::get( 'https://yoa.st/show-x' ) ) . '" target="_blank" rel="noopener noreferrer">',
32
  '</a>'
26
  esc_html__( 'Help on the date archives search results setting', 'wordpress-seo' ),
27
  sprintf(
28
  /* translators: 1: expands to <code>noindex</code>; 2: link open tag; 3: link close tag. */
29
+ esc_html__( 'Not showing the date archives in the search results technically means those will have a %1$s robots meta. %2$sMore info on the search results settings%3$s.', 'wordpress-seo' ),
30
  '<code>noindex</code>',
31
  '<a href="' . esc_url( WPSEO_Shortlinker::get( 'https://yoa.st/show-x' ) ) . '" target="_blank" rel="noopener noreferrer">',
32
  '</a>'
css/dist/{admin-global-903-rtl.min.css → admin-global-910-rtl.min.css} RENAMED
File without changes
css/dist/{admin-global-903.min.css → admin-global-910.min.css} RENAMED
File without changes
css/dist/{adminbar-903-rtl.min.css → adminbar-910-rtl.min.css} RENAMED
File without changes
css/dist/{adminbar-903.min.css → adminbar-910.min.css} RENAMED
File without changes
css/dist/{alerts-903-rtl.min.css → alerts-910-rtl.min.css} RENAMED
File without changes
css/dist/{alerts-903.min.css → alerts-910.min.css} RENAMED
File without changes
css/dist/{dashboard-903-rtl.min.css → dashboard-910-rtl.min.css} RENAMED
File without changes
css/dist/{dashboard-903.min.css → dashboard-910.min.css} RENAMED
File without changes
css/dist/{edit-page-903-rtl.min.css → edit-page-910-rtl.min.css} RENAMED
File without changes
css/dist/{edit-page-903.min.css → edit-page-910.min.css} RENAMED
File without changes
css/dist/{featured-image-903-rtl.min.css → featured-image-910-rtl.min.css} RENAMED
File without changes
css/dist/{featured-image-903.min.css → featured-image-910.min.css} RENAMED
File without changes
css/dist/{filter-explanation-903-rtl.min.css → filter-explanation-910-rtl.min.css} RENAMED
File without changes
css/dist/{filter-explanation-903.min.css → filter-explanation-910.min.css} RENAMED
File without changes
css/dist/{inside-editor-903-rtl.min.css → inside-editor-910-rtl.min.css} RENAMED
File without changes
css/dist/{inside-editor-903.min.css → inside-editor-910.min.css} RENAMED
File without changes
css/dist/{metabox-903-rtl.min.css → metabox-910-rtl.min.css} RENAMED
File without changes
css/dist/{metabox-903.min.css → metabox-910.min.css} RENAMED
File without changes
css/dist/{metabox-primary-category-903-rtl.min.css → metabox-primary-category-910-rtl.min.css} RENAMED
File without changes
css/dist/{metabox-primary-category-903.min.css → metabox-primary-category-910.min.css} RENAMED
File without changes
css/dist/{search-appearance-903-rtl.min.css → search-appearance-910-rtl.min.css} RENAMED
File without changes
css/dist/{search-appearance-903.min.css → search-appearance-910.min.css} RENAMED
File without changes
css/dist/{structured-data-blocks-903-rtl.min.css → structured-data-blocks-910-rtl.min.css} RENAMED
File without changes
css/dist/{structured-data-blocks-903.min.css → structured-data-blocks-910.min.css} RENAMED
File without changes
css/dist/{toggle-switch-903-rtl.min.css → toggle-switch-910-rtl.min.css} RENAMED
File without changes
css/dist/{toggle-switch-903.min.css → toggle-switch-910.min.css} RENAMED
File without changes
css/dist/{wpseo-dismissible-903-rtl.min.css → wpseo-dismissible-910-rtl.min.css} RENAMED
File without changes
css/dist/{wpseo-dismissible-903.min.css → wpseo-dismissible-910.min.css} RENAMED
File without changes
css/dist/{yoast-components-903-rtl.min.css → yoast-components-910-rtl.min.css} RENAMED
File without changes
css/dist/{yoast-components-903.min.css → yoast-components-910.min.css} RENAMED
File without changes
css/dist/{yoast-extensions-903-rtl.min.css → yoast-extensions-910-rtl.min.css} RENAMED
File without changes
css/dist/{yoast-extensions-903.min.css → yoast-extensions-910.min.css} RENAMED
File without changes
css/dist/{yst_plugin_tools-903-rtl.min.css → yst_plugin_tools-910-rtl.min.css} RENAMED
@@ -1 +1 @@
1
- .yoast-variable-desc,table.yoast_help .yoast-variable-desc{min-width:300px}.yoast-sidebar__title,.yoast-table-scrollable,.yoast-table-scrollable td,.yoast-table-scrollable th{box-sizing:border-box}.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:261px;padding:0 19px 0 0}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 .yoast-inline-label{float:none;margin:0}.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.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:1px solid #a4286a;background-color:#fff;box-shadow:inset 0 0 0 2px #a4286a}.wpseo_content_wrapper #separator input.radio:checked+label,.wpseo_content_wrapper #separator input.radio:focus+label{border-radius:10px 10px 10px 0}.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{max-width:600px;padding:8px 20px;background-color:#fff;box-shadow:0 1px 2px rgba(0,0,0,.2)}.wpseo_content_wrapper .toggleable-container-trigger{overflow:visible;width:100%;height:20px;padding:0;border:0;background:0 0;text-align:right;cursor:pointer}.wpseo_content_wrapper .toggleable-container-icon{float:left;position:relative;width:20px;height:20px}.wpseo_content_wrapper .toggleable-container-trigger .toggleable-container-icon::after{display:block;position:absolute;top:-4px;right:-4px;padding:14px;content:""}.wpseo_content_wrapper .toggleable-container-hidden,.wpseotab{display:none}.wpseo_content_wrapper .toggleable-container-trigger:focus{outline:0}.wpseo_content_wrapper .toggleable-container-trigger:focus .toggleable-container-icon::after{border-radius:100%;box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}.wpseo-gsc-reload-crawl-issues-form{position:relative;top:9px}.wp-core-ui .button.wpseo-gsc-save-profile{margin-right:200px}.wpseo_content_wrapper h3{margin:1em 0 .5em;font-size:1.15em}.wpseo_content_wrapper li,.wpseo_content_wrapper p{max-width:600px}.wpseo_content_wrapper .notice p,.wpseo_content_wrapper .yoast-blocking-files-error p,.yoast .search-box,.yoast-alert p,.yoast-container .container{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{width:100%;border-collapse:collapse}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}#wpseo-debug-info,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}.yoast-notice-blocking-files code{color:#000;line-height:2}.yoast-notice-blocking-files .button{margin:.5em 0}.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;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:url(../../images/Yoast_SEO_Icon.svg) 50% 10px no-repeat;background-size:140px 140px;box-shadow:none}#wpseo_progressbar .ui-progressbar-value,.wpseo-progressbar .ui-progressbar-value{height:25px;background:#006691}#wpseo_progressbar{height:25px;border:1px solid #006691}.wpseo-progressbar-wrapper{display:inline;width:100%}.wpseo-progressbar{display:block;width:100%;height:25px;border:1px solid #006691}.archives-titles-metas-content{padding-top:1em}.yoast-sidebar__title{width:100%;margin:5px 0;padding:10px 0;border-bottom:1px solid #a4286a;color:#a4286a;line-height:19px;text-align:right}.yoast-sidebar_section{padding:20px 0;border-bottom:1px solid #ddd}.yoast-sidebar_section a,.yoast-sidebar_section h2{color:#a4286a}.yoast-sidebar_section h2{margin-top:0}.yoast-sidebar_section ul{position:relative}.yoast-sidebar_section li{margin-right:20px;list-style:none}.yoast-sidebar_section li::before{position:absolute;right:0;font-weight:700;content:"+"}.yoast-sidebar_section div{position:relative;margin:10px 0}.yoast-sidebar_section div a{color:#0085ba}.yoast-sidebar_section div img,.yoast-sidebar_section div p{float:right}.yoast-sidebar_section div img{width:40px;height:40px}.yoast-sidebar_section div p{width:200px;margin:0 10px 0 0}.yoast-sidebar_section div .clear{clear:both}.wpseo-banner__link{display:inline-block}.wpseo-banner__image{vertical-align:top}.yoast_premium_upsell_admin_block{overflow:hidden;max-width:640px;margin-top:2em;padding:10px;border:1px solid #ccc;background-color:#fff}.yoast_premium_upsell_admin_block--close{padding:1px 4px;border:1px solid #ccc;color:#333;font-size:16px;font-weight:700;text-decoration:none}.yoast_premium_upsell_admin_block--header{margin-top:.3em;font-size:1.7em;font-weight:700}.yoast_premium_upsell_admin_block--motivation{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.yoast_premium_upsell_admin_block--motivation li{list-style:none;-ms-flex:0 0 50%;flex:0 0 50%}.yoast_premium_upsell_admin_block--argument{padding:0 20px 0 8px}.yoast_premium_upsell_admin_block--argument::before{position:relative;top:-1px;right:-16px;margin-left:-10px;font-weight:700;content:"+"}@media screen and (max-width:480px){.yoast_premium_upsell_admin_block--motivation{display:block}}.yoast-table-scrollable__container.yoast-has-scroll{overflow:hidden;position:relative}.yoast-table-scrollable__container.yoast-has-scroll:after{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);content:""}.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{display:inline-block;margin-left:10px;font-size:20px;line-height:inherit;vertical-align:text-top;content:"\21c4"}@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__spot{float:right;width:50%;border:none;text-align:center}.yoast-sidebar__spot>strong:first-child{display:block;max-width:261px;margin:0 auto;text-align:right}.yoast-sidebar__spot p,.yoast-sidebar__spot ul{max-width:261px;margin:1em auto;text-align:right}}@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}.wp-core-ui .button.wpseo-gsc-save-profile{margin-right:0}.wpseo-gsc-reload-crawl-issues-form{top:0;margin:1em 0}.wpseo-gsc-reload-crawl-issues-form .alignright{float:none}}@media screen and (max-width:600px){.wpseo-gsc-reload-crawl-issues-form{margin-bottom:0}.yoast-sidebar__spot{float:none;width:261px;margin:0 auto;border-bottom:1px solid #ddd}}@media screen and (max-width:500px){body.toplevel_page_wpseo_dashboard .wp-badge{padding-top:80px;background-color:#a4286a;background-size:100px 100px;box-shadow:0 1px 3px rgba(0,0,0,.2)}}.wpseo-checkmark-ok-icon{float:right;width:18px;height:18px;margin-left:5px;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}
1
+ .yoast-variable-desc,table.yoast_help .yoast-variable-desc{min-width:300px}.yoast-sidebar__title,.yoast-table-scrollable,.yoast-table-scrollable td,.yoast-table-scrollable th{box-sizing:border-box}.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:261px;padding:0 19px 0 0}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 .yoast-inline-label{float:none;margin:0}.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.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:1px solid #a4286a;background-color:#fff;box-shadow:inset 0 0 0 2px #a4286a}.wpseo_content_wrapper #separator input.radio:checked+label,.wpseo_content_wrapper #separator input.radio:focus+label{border-radius:10px 10px 10px 0}.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{max-width:600px;padding:8px 20px;background-color:#fff;box-shadow:0 1px 2px rgba(0,0,0,.2)}.wpseo_content_wrapper .toggleable-container-trigger{overflow:visible;width:100%;height:20px;padding:0;border:0;background:0 0;text-align:right;cursor:pointer}.wpseo_content_wrapper .toggleable-container-icon{float:left;position:relative;width:20px;height:20px}.wpseo_content_wrapper .toggleable-container-trigger .toggleable-container-icon::after{display:block;position:absolute;top:-4px;right:-4px;padding:14px;content:""}.wpseo_content_wrapper .toggleable-container-hidden,.wpseotab{display:none}.wpseo_content_wrapper .toggleable-container-trigger:focus{outline:0}.wpseo_content_wrapper .toggleable-container-trigger:focus .toggleable-container-icon::after{border-radius:100%;box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}.wpseo-gsc-reload-crawl-issues-form{position:relative;top:9px}.wp-core-ui .button.wpseo-gsc-save-profile{margin-right:200px}.wpseo_content_wrapper h3{margin:1em 0 .5em;font-size:1.15em}.wpseo_content_wrapper li,.wpseo_content_wrapper p{max-width:600px}.wpseo_content_wrapper .notice p,.wpseo_content_wrapper .yoast-blocking-files-error p,.yoast .search-box,.yoast-alert p,.yoast-container .container{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{width:100%;border-collapse:collapse}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}#wpseo-debug-info,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}.yoast-notice-blocking-files code{color:#000;line-height:2}.yoast-notice-blocking-files .button{margin:.5em 0}.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;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:url(../../images/Yoast_SEO_Icon.svg) 50% 10px no-repeat;background-size:140px 140px;box-shadow:none}#wpseo_progressbar .ui-progressbar-value,.wpseo-progressbar .ui-progressbar-value{height:25px;background:#006691}#wpseo_progressbar{height:25px;border:1px solid #006691}.wpseo-progressbar-wrapper{display:inline;width:100%}.wpseo-progressbar{display:block;width:100%;height:25px;border:1px solid #006691}.archives-titles-metas-content{padding-top:1em}.yoast-sidebar__title{width:100%;margin:5px 0;padding:10px 0;border-bottom:1px solid #a4286a;color:#a4286a;line-height:19px;text-align:right}.yoast-sidebar_section{padding:20px 0;border-bottom:1px solid #ddd}.yoast-sidebar_section a,.yoast-sidebar_section h2{color:#a4286a}.yoast-sidebar_section h2{margin-top:0}.yoast-sidebar_section ul{position:relative}.yoast-sidebar_section li{margin-right:20px;list-style:none}.yoast-sidebar_section li::before{position:absolute;right:0;font-weight:700;content:"+"}.yoast-sidebar_section div{position:relative;margin:10px 0}.yoast-sidebar_section div a{color:#0085ba}.yoast-sidebar_section div img,.yoast-sidebar_section div p{float:right}.yoast-sidebar_section div img{width:40px;height:40px}.yoast-sidebar_section div p{width:200px;margin:0 10px 0 0}.yoast-sidebar_section div .clear{clear:both}.wpseo-banner__link{display:inline-block}.wpseo-banner__image{vertical-align:top}.yoast_premium_upsell_admin_block{overflow:hidden;max-width:640px;margin-top:2em;padding:10px;border:1px solid #ccc;background-color:#fff}.wp-core-ui .yoast_premium_upsell_admin_block--close{display:-ms-flexbox;display:flex;width:24px;height:24px;padding:0;align-items:center;-ms-flex-align:center;-ms-flex-pack:center;justify-content:center}.yoast_premium_upsell_admin_block--header{margin-top:.3em;color:#a4286a;font-size:1.7em;font-weight:700}.yoast_premium_upsell_admin_block--motivation{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.yoast_premium_upsell_admin_block--motivation li{list-style:none;-ms-flex:0 0 50%;flex:0 0 50%}.yoast_premium_upsell_admin_block--argument{padding:0 20px 0 8px}.yoast_premium_upsell_admin_block--argument::before{position:relative;top:-1px;right:-16px;margin-left:-10px;font-weight:700;content:"+"}@media screen and (max-width:480px){.yoast_premium_upsell_admin_block--motivation{display:block}}.yoast-table-scrollable__container.yoast-has-scroll{overflow:hidden;position:relative}.yoast-table-scrollable__container.yoast-has-scroll:after{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);content:""}.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{display:inline-block;margin-left:10px;font-size:20px;line-height:inherit;vertical-align:text-top;content:"\21c4"}@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__spot{float:right;width:50%;border:none;text-align:center}.yoast-sidebar__spot>strong:first-child{display:block;max-width:261px;margin:0 auto;text-align:right}.yoast-sidebar__spot p,.yoast-sidebar__spot ul{max-width:261px;margin:1em auto;text-align:right}}@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}.wp-core-ui .button.wpseo-gsc-save-profile{margin-right:0}.wpseo-gsc-reload-crawl-issues-form{top:0;margin:1em 0}.wpseo-gsc-reload-crawl-issues-form .alignright{float:none}}@media screen and (max-width:600px){.wpseo-gsc-reload-crawl-issues-form{margin-bottom:0}.yoast-sidebar__spot{float:none;width:261px;margin:0 auto;border-bottom:1px solid #ddd}}@media screen and (max-width:500px){body.toplevel_page_wpseo_dashboard .wp-badge{padding-top:80px;background-color:#a4286a;background-size:100px 100px;box-shadow:0 1px 3px rgba(0,0,0,.2)}}.wpseo-checkmark-ok-icon{float:right;width:18px;height:18px;margin-left:5px;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-903.min.css → yst_plugin_tools-910.min.css} RENAMED
@@ -1 +1 @@
1
- .yoast-variable-desc,table.yoast_help .yoast-variable-desc{min-width:300px}.yoast-sidebar__title,.yoast-table-scrollable,.yoast-table-scrollable td,.yoast-table-scrollable th{box-sizing:border-box}.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:261px;padding:0 0 0 19px}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 .yoast-inline-label{float:none;margin:0}.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.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:1px solid #a4286a;background-color:#fff;box-shadow:inset 0 0 0 2px #a4286a}.wpseo_content_wrapper #separator input.radio:checked+label,.wpseo_content_wrapper #separator input.radio:focus+label{border-radius:10px 10px 0}.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{max-width:600px;padding:8px 20px;background-color:#fff;box-shadow:0 1px 2px rgba(0,0,0,.2)}.wpseo_content_wrapper .toggleable-container-trigger{overflow:visible;width:100%;height:20px;padding:0;border:0;background:0 0;text-align:left;cursor:pointer}.wpseo_content_wrapper .toggleable-container-icon{float:right;position:relative;width:20px;height:20px}.wpseo_content_wrapper .toggleable-container-trigger .toggleable-container-icon::after{display:block;position:absolute;top:-4px;left:-4px;padding:14px;content:""}.wpseo_content_wrapper .toggleable-container-hidden,.wpseotab{display:none}.wpseo_content_wrapper .toggleable-container-trigger:focus{outline:0}.wpseo_content_wrapper .toggleable-container-trigger:focus .toggleable-container-icon::after{border-radius:100%;box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}.wpseo-gsc-reload-crawl-issues-form{position:relative;top:9px}.wp-core-ui .button.wpseo-gsc-save-profile{margin-left:200px}.wpseo_content_wrapper h3{margin:1em 0 .5em;font-size:1.15em}.wpseo_content_wrapper li,.wpseo_content_wrapper p{max-width:600px}.wpseo_content_wrapper .notice p,.wpseo_content_wrapper .yoast-blocking-files-error p,.yoast .search-box,.yoast-alert p,.yoast-container .container{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{width:100%;border-collapse:collapse}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}#wpseo-debug-info,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}.yoast-notice-blocking-files code{color:#000;line-height:2}.yoast-notice-blocking-files .button{margin:.5em 0}.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;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:url(../../images/Yoast_SEO_Icon.svg) 50% 10px no-repeat;background-size:140px 140px;box-shadow:none}#wpseo_progressbar .ui-progressbar-value,.wpseo-progressbar .ui-progressbar-value{height:25px;background:#006691}#wpseo_progressbar{height:25px;border:1px solid #006691}.wpseo-progressbar-wrapper{display:inline;width:100%}.wpseo-progressbar{display:block;width:100%;height:25px;border:1px solid #006691}.archives-titles-metas-content{padding-top:1em}.yoast-sidebar__title{width:100%;margin:5px 0;padding:10px 0;border-bottom:1px solid #a4286a;color:#a4286a;line-height:19px;text-align:left}.yoast-sidebar_section{padding:20px 0;border-bottom:1px solid #ddd}.yoast-sidebar_section a,.yoast-sidebar_section h2{color:#a4286a}.yoast-sidebar_section h2{margin-top:0}.yoast-sidebar_section ul{position:relative}.yoast-sidebar_section li{margin-left:20px;list-style:none}.yoast-sidebar_section li::before{position:absolute;left:0;font-weight:700;content:"+"}.yoast-sidebar_section div{position:relative;margin:10px 0}.yoast-sidebar_section div a{color:#0085ba}.yoast-sidebar_section div img,.yoast-sidebar_section div p{float:left}.yoast-sidebar_section div img{width:40px;height:40px}.yoast-sidebar_section div p{width:200px;margin:0 0 0 10px}.yoast-sidebar_section div .clear{clear:both}.wpseo-banner__link{display:inline-block}.wpseo-banner__image{vertical-align:top}.yoast_premium_upsell_admin_block{overflow:hidden;max-width:640px;margin-top:2em;padding:10px;border:1px solid #ccc;background-color:#fff}.yoast_premium_upsell_admin_block--close{padding:1px 4px;border:1px solid #ccc;color:#333;font-size:16px;font-weight:700;text-decoration:none}.yoast_premium_upsell_admin_block--header{margin-top:.3em;font-size:1.7em;font-weight:700}.yoast_premium_upsell_admin_block--motivation{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.yoast_premium_upsell_admin_block--motivation li{list-style:none;-ms-flex:0 0 50%;flex:0 0 50%}.yoast_premium_upsell_admin_block--argument{padding:0 8px 0 20px}.yoast_premium_upsell_admin_block--argument::before{position:relative;top:-1px;left:-16px;margin-right:-10px;font-weight:700;content:"+"}@media screen and (max-width:480px){.yoast_premium_upsell_admin_block--motivation{display:block}}.yoast-table-scrollable__container.yoast-has-scroll{overflow:hidden;position:relative}.yoast-table-scrollable__container.yoast-has-scroll:after{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);content:""}.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{display:inline-block;margin-right:10px;font-size:20px;line-height:inherit;vertical-align:text-top;content:"\21c4"}@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__spot{float:left;width:50%;border:none;text-align:center}.yoast-sidebar__spot>strong:first-child{display:block;max-width:261px;margin:0 auto;text-align:left}.yoast-sidebar__spot p,.yoast-sidebar__spot ul{max-width:261px;margin:1em auto;text-align:left}}@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}.wp-core-ui .button.wpseo-gsc-save-profile{margin-left:0}.wpseo-gsc-reload-crawl-issues-form{top:0;margin:1em 0}.wpseo-gsc-reload-crawl-issues-form .alignright{float:none}}@media screen and (max-width:600px){.wpseo-gsc-reload-crawl-issues-form{margin-bottom:0}.yoast-sidebar__spot{float:none;width:261px;margin:0 auto;border-bottom:1px solid #ddd}}@media screen and (max-width:500px){body.toplevel_page_wpseo_dashboard .wp-badge{padding-top:80px;background-color:#a4286a;background-size:100px 100px;box-shadow:0 1px 3px rgba(0,0,0,.2)}}.wpseo-checkmark-ok-icon{float:left;width:18px;height:18px;margin-right:5px;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}
1
+ .yoast-variable-desc,table.yoast_help .yoast-variable-desc{min-width:300px}.yoast-sidebar__title,.yoast-table-scrollable,.yoast-table-scrollable td,.yoast-table-scrollable th{box-sizing:border-box}.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:261px;padding:0 0 0 19px}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 .yoast-inline-label{float:none;margin:0}.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.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:1px solid #a4286a;background-color:#fff;box-shadow:inset 0 0 0 2px #a4286a}.wpseo_content_wrapper #separator input.radio:checked+label,.wpseo_content_wrapper #separator input.radio:focus+label{border-radius:10px 10px 0}.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{max-width:600px;padding:8px 20px;background-color:#fff;box-shadow:0 1px 2px rgba(0,0,0,.2)}.wpseo_content_wrapper .toggleable-container-trigger{overflow:visible;width:100%;height:20px;padding:0;border:0;background:0 0;text-align:left;cursor:pointer}.wpseo_content_wrapper .toggleable-container-icon{float:right;position:relative;width:20px;height:20px}.wpseo_content_wrapper .toggleable-container-trigger .toggleable-container-icon::after{display:block;position:absolute;top:-4px;left:-4px;padding:14px;content:""}.wpseo_content_wrapper .toggleable-container-hidden,.wpseotab{display:none}.wpseo_content_wrapper .toggleable-container-trigger:focus{outline:0}.wpseo_content_wrapper .toggleable-container-trigger:focus .toggleable-container-icon::after{border-radius:100%;box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}.wpseo-gsc-reload-crawl-issues-form{position:relative;top:9px}.wp-core-ui .button.wpseo-gsc-save-profile{margin-left:200px}.wpseo_content_wrapper h3{margin:1em 0 .5em;font-size:1.15em}.wpseo_content_wrapper li,.wpseo_content_wrapper p{max-width:600px}.wpseo_content_wrapper .notice p,.wpseo_content_wrapper .yoast-blocking-files-error p,.yoast .search-box,.yoast-alert p,.yoast-container .container{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{width:100%;border-collapse:collapse}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}#wpseo-debug-info,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}.yoast-notice-blocking-files code{color:#000;line-height:2}.yoast-notice-blocking-files .button{margin:.5em 0}.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;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:url(../../images/Yoast_SEO_Icon.svg) 50% 10px no-repeat;background-size:140px 140px;box-shadow:none}#wpseo_progressbar .ui-progressbar-value,.wpseo-progressbar .ui-progressbar-value{height:25px;background:#006691}#wpseo_progressbar{height:25px;border:1px solid #006691}.wpseo-progressbar-wrapper{display:inline;width:100%}.wpseo-progressbar{display:block;width:100%;height:25px;border:1px solid #006691}.archives-titles-metas-content{padding-top:1em}.yoast-sidebar__title{width:100%;margin:5px 0;padding:10px 0;border-bottom:1px solid #a4286a;color:#a4286a;line-height:19px;text-align:left}.yoast-sidebar_section{padding:20px 0;border-bottom:1px solid #ddd}.yoast-sidebar_section a,.yoast-sidebar_section h2{color:#a4286a}.yoast-sidebar_section h2{margin-top:0}.yoast-sidebar_section ul{position:relative}.yoast-sidebar_section li{margin-left:20px;list-style:none}.yoast-sidebar_section li::before{position:absolute;left:0;font-weight:700;content:"+"}.yoast-sidebar_section div{position:relative;margin:10px 0}.yoast-sidebar_section div a{color:#0085ba}.yoast-sidebar_section div img,.yoast-sidebar_section div p{float:left}.yoast-sidebar_section div img{width:40px;height:40px}.yoast-sidebar_section div p{width:200px;margin:0 0 0 10px}.yoast-sidebar_section div .clear{clear:both}.wpseo-banner__link{display:inline-block}.wpseo-banner__image{vertical-align:top}.yoast_premium_upsell_admin_block{overflow:hidden;max-width:640px;margin-top:2em;padding:10px;border:1px solid #ccc;background-color:#fff}.wp-core-ui .yoast_premium_upsell_admin_block--close{display:-ms-flexbox;display:flex;width:24px;height:24px;padding:0;align-items:center;-ms-flex-align:center;-ms-flex-pack:center;justify-content:center}.yoast_premium_upsell_admin_block--header{margin-top:.3em;color:#a4286a;font-size:1.7em;font-weight:700}.yoast_premium_upsell_admin_block--motivation{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.yoast_premium_upsell_admin_block--motivation li{list-style:none;-ms-flex:0 0 50%;flex:0 0 50%}.yoast_premium_upsell_admin_block--argument{padding:0 8px 0 20px}.yoast_premium_upsell_admin_block--argument::before{position:relative;top:-1px;left:-16px;margin-right:-10px;font-weight:700;content:"+"}@media screen and (max-width:480px){.yoast_premium_upsell_admin_block--motivation{display:block}}.yoast-table-scrollable__container.yoast-has-scroll{overflow:hidden;position:relative}.yoast-table-scrollable__container.yoast-has-scroll:after{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);content:""}.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{display:inline-block;margin-right:10px;font-size:20px;line-height:inherit;vertical-align:text-top;content:"\21c4"}@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__spot{float:left;width:50%;border:none;text-align:center}.yoast-sidebar__spot>strong:first-child{display:block;max-width:261px;margin:0 auto;text-align:left}.yoast-sidebar__spot p,.yoast-sidebar__spot ul{max-width:261px;margin:1em auto;text-align:left}}@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}.wp-core-ui .button.wpseo-gsc-save-profile{margin-left:0}.wpseo-gsc-reload-crawl-issues-form{top:0;margin:1em 0}.wpseo-gsc-reload-crawl-issues-form .alignright{float:none}}@media screen and (max-width:600px){.wpseo-gsc-reload-crawl-issues-form{margin-bottom:0}.yoast-sidebar__spot{float:none;width:261px;margin:0 auto;border-bottom:1px solid #ddd}}@media screen and (max-width:500px){body.toplevel_page_wpseo_dashboard .wp-badge{padding-top:80px;background-color:#a4286a;background-size:100px 100px;box-shadow:0 1px 3px rgba(0,0,0,.2)}}.wpseo-checkmark-ok-icon{float:left;width:18px;height:18px;margin-right:5px;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_seo_score-903-rtl.min.css → yst_seo_score-910-rtl.min.css} RENAMED
File without changes
css/dist/{yst_seo_score-903.min.css → yst_seo_score-910.min.css} RENAMED
File without changes
frontend/class-opengraph-image.php CHANGED
@@ -602,7 +602,16 @@ class WPSEO_OpenGraph_Image {
602
 
603
  $image_extension = $this->get_extension_from_url( $url );
604
 
605
- return in_array( $image_extension, $this->valid_image_extensions, true );
 
 
 
 
 
 
 
 
 
606
  }
607
 
608
  /**
602
 
603
  $image_extension = $this->get_extension_from_url( $url );
604
 
605
+ $is_valid = in_array( $image_extension, $this->valid_image_extensions, true );
606
+
607
+ /**
608
+ * Filter: 'wpseo_opengraph_is_valid_image_url' - Allows extra validation for an image url.
609
+ *
610
+ * @api bool - Current validation result.
611
+ *
612
+ * @param string $url The image url to validate.
613
+ */
614
+ return apply_filters( 'wpseo_opengraph_is_valid_image_url', $is_valid, $url );
615
  }
616
 
617
  /**
inc/class-wpseo-admin-bar-menu.php CHANGED
@@ -195,9 +195,8 @@ class WPSEO_Admin_Bar_Menu implements WPSEO_WordPress_Integration {
195
  * @return void
196
  */
197
  protected function add_keyword_research_submenu( WP_Admin_Bar $wp_admin_bar ) {
198
- $adwords_url = 'https://adwords.google.com/keywordplanner';
199
- $trends_url = 'https://www.google.com/trends/explore';
200
- $seobook_url = 'http://tools.seobook.com/keyword-tools/seobook/';
201
 
202
  $post = $this->get_singular_post();
203
  if ( $post ) {
@@ -205,7 +204,6 @@ class WPSEO_Admin_Bar_Menu implements WPSEO_WordPress_Integration {
205
 
206
  if ( ! empty( $focus_keyword ) ) {
207
  $trends_url .= '#q=' . urlencode( $focus_keyword );
208
- $seobook_url .= '?keyword=' . urlencode( $focus_keyword );
209
  }
210
  }
211
 
@@ -225,7 +223,7 @@ class WPSEO_Admin_Bar_Menu implements WPSEO_WordPress_Integration {
225
  $wp_admin_bar->add_menu( array(
226
  'parent' => self::KEYWORD_RESEARCH_SUBMENU_IDENTIFIER,
227
  'id' => 'wpseo-adwordsexternal',
228
- 'title' => __( 'AdWords External', 'wordpress-seo' ),
229
  'href' => $adwords_url,
230
  'meta' => array( 'target' => '_blank' ),
231
  ) );
@@ -236,13 +234,6 @@ class WPSEO_Admin_Bar_Menu implements WPSEO_WordPress_Integration {
236
  'href' => $trends_url,
237
  'meta' => array( 'target' => '_blank' ),
238
  ) );
239
- $wp_admin_bar->add_menu( array(
240
- 'parent' => self::KEYWORD_RESEARCH_SUBMENU_IDENTIFIER,
241
- 'id' => 'wpseo-wordtracker',
242
- 'title' => __( 'SEO Book', 'wordpress-seo' ),
243
- 'href' => $seobook_url,
244
- 'meta' => array( 'target' => '_blank' ),
245
- ) );
246
  }
247
 
248
  /**
@@ -467,11 +458,20 @@ class WPSEO_Admin_Bar_Menu implements WPSEO_WordPress_Integration {
467
  /**
468
  * Gets the focus keyword for a given post.
469
  *
470
- * @param WP_Post $post Post object to get its focus keyword.
471
  *
472
  * @return string Focus keyword, or empty string if none available.
473
  */
474
- protected function get_post_focus_keyword( WP_Post $post ) {
 
 
 
 
 
 
 
 
 
475
  if ( apply_filters( 'wpseo_use_page_analysis', true ) !== true ) {
476
  return '';
477
  }
195
  * @return void
196
  */
197
  protected function add_keyword_research_submenu( WP_Admin_Bar $wp_admin_bar ) {
198
+ $adwords_url = 'https://yoa.st/keywordplanner';
199
+ $trends_url = 'https://yoa.st/google-trends';
 
200
 
201
  $post = $this->get_singular_post();
202
  if ( $post ) {
204
 
205
  if ( ! empty( $focus_keyword ) ) {
206
  $trends_url .= '#q=' . urlencode( $focus_keyword );
 
207
  }
208
  }
209
 
223
  $wp_admin_bar->add_menu( array(
224
  'parent' => self::KEYWORD_RESEARCH_SUBMENU_IDENTIFIER,
225
  'id' => 'wpseo-adwordsexternal',
226
+ 'title' => __( 'Google Ads', 'wordpress-seo' ),
227
  'href' => $adwords_url,
228
  'meta' => array( 'target' => '_blank' ),
229
  ) );
234
  'href' => $trends_url,
235
  'meta' => array( 'target' => '_blank' ),
236
  ) );
 
 
 
 
 
 
 
237
  }
238
 
239
  /**
458
  /**
459
  * Gets the focus keyword for a given post.
460
  *
461
+ * @param WP_POST $post Post object to get its focus keyword.
462
  *
463
  * @return string Focus keyword, or empty string if none available.
464
  */
465
+ protected function get_post_focus_keyword( $post ) {
466
+ if ( ! is_object( $post ) || ! property_exists( $post, 'ID' ) ) {
467
+ return '';
468
+ }
469
+
470
+ /**
471
+ * Filter: 'wpseo_use_page_analysis' Determines if the analysis should be enabled.
472
+ *
473
+ * @api bool Determines if the analysis should be enabled.
474
+ */
475
  if ( apply_filters( 'wpseo_use_page_analysis', true ) !== true ) {
476
  return '';
477
  }
inc/class-wpseo-meta.php CHANGED
@@ -363,6 +363,10 @@ class WPSEO_Meta {
363
  $post_type = sanitize_text_field( $_GET['post_type'] );
364
  }
365
 
 
 
 
 
366
  /* Adjust the no-index text strings based on the post type. */
367
  $post_type_object = get_post_type_object( $post_type );
368
 
363
  $post_type = sanitize_text_field( $_GET['post_type'] );
364
  }
365
 
366
+ if ( $post_type === '' ) {
367
+ return array();
368
+ }
369
+
370
  /* Adjust the no-index text strings based on the post type. */
371
  $post_type_object = get_post_type_object( $post_type );
372
 
inc/sitemaps/class-sitemap-image-parser.php CHANGED
@@ -239,7 +239,7 @@ class WPSEO_Sitemap_Image_Parser {
239
  }
240
 
241
  if ( PHP_VERSION_ID >= 50209 ) {
242
- // phpcs:ignore PHPCompatibility.PHP.NewFunctionParameters.array_unique_sort_flagsFound -- Wrapped in version check.
243
  return array_unique( $attachments, SORT_REGULAR );
244
  }
245
 
239
  }
240
 
241
  if ( PHP_VERSION_ID >= 50209 ) {
242
+ // phpcs:ignore PHPCompatibility.FunctionUse.NewFunctionParameters.array_unique_sort_flagsFound -- Wrapped in version check.
243
  return array_unique( $attachments, SORT_REGULAR );
244
  }
245
 
js/dist/analysis-903.min.js DELETED
@@ -1,13 +0,0 @@
1
- yoastWebpackJsonp([1],[,function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(531);t.d(e,"add",function(){return i.a});var n=t(532);t.d(e,"after",function(){return n.a});var o=t(382);t.d(e,"ary",function(){return o.a});var r=t(536);t.d(e,"assign",function(){return r.a});var s=t(387);t.d(e,"assignIn",function(){return s.a});var d=t(322);t.d(e,"assignInWith",function(){return d.a});var c=t(540);t.d(e,"assignWith",function(){return c.a});var l=t(541);t.d(e,"at",function(){return l.a});var u=t(394);t.d(e,"attempt",function(){return u.a});var p=t(396);t.d(e,"before",function(){return p.a});var z=t(397);t.d(e,"bind",function(){return z.a});var g=t(546);t.d(e,"bindAll",function(){return g.a});var m=t(547);t.d(e,"bindKey",function(){return m.a});var w=t(548);t.d(e,"camelCase",function(){return w.a});var y=t(398);t.d(e,"capitalize",function(){return y.a});var f=t(551);t.d(e,"castArray",function(){return f.a});var b=t(552);t.d(e,"ceil",function(){return b.a});var h=t(401);t.d(e,"chain",function(){return h.a});var v=t(554);t.d(e,"chunk",function(){return v.a});var k=t(555);t.d(e,"clamp",function(){return k.a});var j=t(556);t.d(e,"clone",function(){return j.a});var _=t(560);t.d(e,"cloneDeep",function(){return _.a});var x=t(561);t.d(e,"cloneDeepWith",function(){return x.a});var O=t(562);t.d(e,"cloneWith",function(){return O.a});var q=t(405);t.d(e,"commit",function(){return q.a});var E=t(563);t.d(e,"compact",function(){return E.a});var A=t(564);t.d(e,"concat",function(){return A.a});var T=t(565);t.d(e,"cond",function(){return T.a});var S=t(571);t.d(e,"conforms",function(){return S.a});var M=t(572);t.d(e,"conformsTo",function(){return M.a});var P=t(318);t.d(e,"constant",function(){return P.a});var C=t(573);t.d(e,"countBy",function(){return C.a});var R=t(575);t.d(e,"create",function(){return R.a});var D=t(576);t.d(e,"curry",function(){return D.a});var F=t(577);t.d(e,"curryRight",function(){return F.a});var B=t(412);t.d(e,"debounce",function(){return B.a});var I=t(399);t.d(e,"deburr",function(){return I.a});var L=t(578);t.d(e,"defaultTo",function(){return L.a});var $=t(579);t.d(e,"defaults",function(){return $.a});var W=t(580);t.d(e,"defaultsDeep",function(){return W.a});var U=t(582);t.d(e,"defer",function(){return U.a});var N=t(583);t.d(e,"delay",function(){return N.a});var K=t(584);t.d(e,"difference",function(){return K.a});var H=t(586);t.d(e,"differenceBy",function(){return H.a});var V=t(587);t.d(e,"differenceWith",function(){return V.a});var Y=t(588);t.d(e,"divide",function(){return Y.a});var G=t(589);t.d(e,"drop",function(){return G.a});var Z=t(590);t.d(e,"dropRight",function(){return Z.a});var J=t(591);t.d(e,"dropRightWhile",function(){return J.a});var Q=t(592);t.d(e,"dropWhile",function(){return Q.a});var X=t(593);t.d(e,"each",function(){return X.a});var aa=t(594);t.d(e,"eachRight",function(){return aa.a});var ea=t(596);t.d(e,"endsWith",function(){return ea.a});var ta=t(597);t.d(e,"entries",function(){return ta.a});var ia=t(598);t.d(e,"entriesIn",function(){return ia.a});var na=t(69);t.d(e,"eq",function(){return na.a});var oa=t(421);t.d(e,"escape",function(){return oa.a});var ra=t(599);t.d(e,"escapeRegExp",function(){return ra.a});var sa=t(600);t.d(e,"every",function(){return sa.a});var da=t(601);t.d(e,"extend",function(){return da.a});var ca=t(602);t.d(e,"extendWith",function(){return ca.a});var la=t(603);t.d(e,"fill",function(){return la.a});var ua=t(604);t.d(e,"filter",function(){return ua.a});var pa=t(605);t.d(e,"find",function(){return pa.a});var za=t(423);t.d(e,"findIndex",function(){return za.a});var ga=t(606);t.d(e,"findKey",function(){return ga.a});var ma=t(607);t.d(e,"findLast",function(){return ma.a});var wa=t(424);t.d(e,"findLastIndex",function(){return wa.a});var ya=t(608);t.d(e,"findLastKey",function(){return ya.a});var fa=t(609);t.d(e,"first",function(){return fa.a});var ba=t(610);t.d(e,"flatMap",function(){return ba.a});var ha=t(611);t.d(e,"flatMapDeep",function(){return ha.a});var va=t(612);t.d(e,"flatMapDepth",function(){return va.a});var ka=t(393);t.d(e,"flatten",function(){return ka.a});var ja=t(613);t.d(e,"flattenDeep",function(){return ja.a});var _a=t(614);t.d(e,"flattenDepth",function(){return _a.a});var xa=t(615);t.d(e,"flip",function(){return xa.a});var Oa=t(616);t.d(e,"floor",function(){return Oa.a});var qa=t(617);t.d(e,"flow",function(){return qa.a});var Ea=t(618);t.d(e,"flowRight",function(){return Ea.a});var Aa=t(417);t.d(e,"forEach",function(){return Aa.a});var Ta=t(418);t.d(e,"forEachRight",function(){return Ta.a});var Sa=t(619);t.d(e,"forIn",function(){return Sa.a});var Ma=t(620);t.d(e,"forInRight",function(){return Ma.a});var Pa=t(621);t.d(e,"forOwn",function(){return Pa.a});var Ca=t(622);t.d(e,"forOwnRight",function(){return Ca.a});var Ra=t(623);t.d(e,"fromPairs",function(){return Ra.a});var Da=t(624);t.d(e,"functions",function(){return Da.a});var Fa=t(625);t.d(e,"functionsIn",function(){return Fa.a});var Ba=t(323);t.d(e,"get",function(){return Ba.a});var Ia=t(626);t.d(e,"groupBy",function(){return Ia.a});var La=t(627);t.d(e,"gt",function(){return La.a});var $a=t(629);t.d(e,"gte",function(){return $a.a});var Wa=t(630);t.d(e,"has",function(){return Wa.a});var Ua=t(327);t.d(e,"hasIn",function(){return Ua.a});var Na=t(425);t.d(e,"head",function(){return Na.a});var Ka=t(43);t.d(e,"identity",function(){return Ka.a});var Ha=t(631);t.d(e,"inRange",function(){return Ha.a});var Va=t(632);t.d(e,"includes",function(){return Va.a});var Ya=t(634);t.d(e,"indexOf",function(){return Ya.a});var Ga=t(635);t.d(e,"initial",function(){return Ga.a});var Za=t(636);t.d(e,"intersection",function(){return Za.a});var Ja=t(639);t.d(e,"intersectionBy",function(){return Ja.a});var Qa=t(640);t.d(e,"intersectionWith",function(){return Qa.a});var Xa=t(641);t.d(e,"invert",function(){return Xa.a});var ae=t(642);t.d(e,"invertBy",function(){return ae.a});var ee=t(643);t.d(e,"invoke",function(){return ee.a});var te=t(644);t.d(e,"invokeMap",function(){return te.a});var ie=t(159);t.d(e,"isArguments",function(){return ie.a});var ne=t(8);t.d(e,"isArray",function(){return ne.a});var oe=t(645);t.d(e,"isArrayBuffer",function(){return oe.a});var re=t(44);t.d(e,"isArrayLike",function(){return re.a});var se=t(46);t.d(e,"isArrayLikeObject",function(){return se.a});var de=t(646);t.d(e,"isBoolean",function(){return de.a});var ce=t(146);t.d(e,"isBuffer",function(){return ce.a});var le=t(647);t.d(e,"isDate",function(){return le.a});var ue=t(648);t.d(e,"isElement",function(){return ue.a});var pe=t(649);t.d(e,"isEmpty",function(){return pe.a});var ze=t(650);t.d(e,"isEqual",function(){return ze.a});var ge=t(651);t.d(e,"isEqualWith",function(){return ge.a});var me=t(324);t.d(e,"isError",function(){return me.a});var we=t(652);t.d(e,"isFinite",function(){return we.a});var ye=t(91);t.d(e,"isFunction",function(){return ye.a});var fe=t(428);t.d(e,"isInteger",function(){return fe.a});var be=t(237);t.d(e,"isLength",function(){return be.a});var he=t(403);t.d(e,"isMap",function(){return he.a});var ve=t(653);t.d(e,"isMatch",function(){return ve.a});var ke=t(654);t.d(e,"isMatchWith",function(){return ke.a});var je=t(655);t.d(e,"isNaN",function(){return je.a});var _e=t(656);t.d(e,"isNative",function(){return _e.a});var xe=t(657);t.d(e,"isNil",function(){return xe.a});var Oe=t(658);t.d(e,"isNull",function(){return Oe.a});var qe=t(429);t.d(e,"isNumber",function(){return qe.a});var Ee=t(25);t.d(e,"isObject",function(){return Ee.a});var Ae=t(23);t.d(e,"isObjectLike",function(){return Ae.a});var Te=t(199);t.d(e,"isPlainObject",function(){return Te.a});var Se=t(330);t.d(e,"isRegExp",function(){return Se.a});var Me=t(659);t.d(e,"isSafeInteger",function(){return Me.a});var Pe=t(404);t.d(e,"isSet",function(){return Pe.a});var Ce=t(243);t.d(e,"isString",function(){return Ce.a});var Re=t(68);t.d(e,"isSymbol",function(){return Re.a});var De=t(160);t.d(e,"isTypedArray",function(){return De.a});var Fe=t(660);t.d(e,"isUndefined",function(){return Fe.a});var Be=t(661);t.d(e,"isWeakMap",function(){return Be.a});var Ie=t(662);t.d(e,"isWeakSet",function(){return Ie.a});var Le=t(663);t.d(e,"iteratee",function(){return Le.a});var $e=t(664);t.d(e,"join",function(){return $e.a});var We=t(665);t.d(e,"kebabCase",function(){return We.a});var Ue=t(666);t.d(e,"keyBy",function(){return Ue.a});var Ne=t(30);t.d(e,"keys",function(){return Ne.a});var Ke=t(53);t.d(e,"keysIn",function(){return Ke.a});var He=t(65);t.d(e,"last",function(){return He.a});var Ve=t(667);t.d(e,"lastIndexOf",function(){return Ve.a});var Ye=t(195);t.d(e,"lodash",function(){return Ye.a});var Ge=t(668);t.d(e,"lowerCase",function(){return Ge.a});var Ze=t(669);t.d(e,"lowerFirst",function(){return Ze.a});var Je=t(670);t.d(e,"lt",function(){return Je.a});var Qe=t(672);t.d(e,"lte",function(){return Qe.a});var Xe=t(242);t.d(e,"map",function(){return Xe.a});var at=t(673);t.d(e,"mapKeys",function(){return at.a});var et=t(674);t.d(e,"mapValues",function(){return et.a});var tt=t(675);t.d(e,"matches",function(){return tt.a});var it=t(676);t.d(e,"matchesProperty",function(){return it.a});var nt=t(677);t.d(e,"max",function(){return nt.a});var ot=t(678);t.d(e,"maxBy",function(){return ot.a});var rt=t(679);t.d(e,"mean",function(){return rt.a});var st=t(681);t.d(e,"meanBy",function(){return st.a});var dt=t(388);t.d(e,"memoize",function(){return dt.a});var ct=t(682);t.d(e,"merge",function(){return ct.a});var lt=t(415);t.d(e,"mergeWith",function(){return lt.a});var ut=t(683);t.d(e,"method",function(){return ut.a});var pt=t(684);t.d(e,"methodOf",function(){return pt.a});var zt=t(685);t.d(e,"min",function(){return zt.a});var gt=t(686);t.d(e,"minBy",function(){return gt.a});var mt=t(431);t.d(e,"mixin",function(){return mt.a});var wt=t(687);t.d(e,"multiply",function(){return wt.a});var yt=t(244);t.d(e,"negate",function(){return yt.a});var ft=t(432);t.d(e,"next",function(){return ft.a});var bt=t(317);t.d(e,"noop",function(){return bt.a});var ht=t(413);t.d(e,"now",function(){return ht.a});var vt=t(688);t.d(e,"nth",function(){return vt.a});var kt=t(689);t.d(e,"nthArg",function(){return kt.a});var jt=t(690);t.d(e,"omit",function(){return jt.a});var _t=t(692);t.d(e,"omitBy",function(){return _t.a});var xt=t(693);t.d(e,"once",function(){return xt.a});var Ot=t(694);t.d(e,"orderBy",function(){return Ot.a});var qt=t(695);t.d(e,"over",function(){return qt.a});var Et=t(697);t.d(e,"overArgs",function(){return Et.a});var At=t(698);t.d(e,"overEvery",function(){return At.a});var Tt=t(699);t.d(e,"overSome",function(){return Tt.a});var St=t(700);t.d(e,"pad",function(){return St.a});var Mt=t(702);t.d(e,"padEnd",function(){return Mt.a});var Pt=t(703);t.d(e,"padStart",function(){return Pt.a});var Ct=t(704);t.d(e,"parseInt",function(){return Ct.a});var Rt=t(435);t.d(e,"partial",function(){return Rt.a});var Dt=t(705);t.d(e,"partialRight",function(){return Dt.a});var Ft=t(706);t.d(e,"partition",function(){return Ft.a});var Bt=t(707);t.d(e,"pick",function(){return Bt.a});var It=t(434);t.d(e,"pickBy",function(){return It.a});var Lt=t(436);t.d(e,"plant",function(){return Lt.a});var $t=t(410);t.d(e,"property",function(){return $t.a});var Wt=t(708);t.d(e,"propertyOf",function(){return Wt.a});var Ut=t(709);t.d(e,"pull",function(){return Ut.a});var Nt=t(437);t.d(e,"pullAll",function(){return Nt.a});var Kt=t(711);t.d(e,"pullAllBy",function(){return Kt.a});var Ht=t(712);t.d(e,"pullAllWith",function(){return Ht.a});var Vt=t(713);t.d(e,"pullAt",function(){return Vt.a});var Yt=t(714);t.d(e,"random",function(){return Yt.a});var Gt=t(716);t.d(e,"range",function(){return Gt.a});var Zt=t(717);t.d(e,"rangeRight",function(){return Zt.a});var Jt=t(718);t.d(e,"rearg",function(){return Jt.a});var Qt=t(719);t.d(e,"reduce",function(){return Qt.a});var Xt=t(720);t.d(e,"reduceRight",function(){return Xt.a});var ai=t(721);t.d(e,"reject",function(){return ai.a});var ei=t(722);t.d(e,"remove",function(){return ei.a});var ti=t(723);t.d(e,"repeat",function(){return ti.a});var ii=t(724);t.d(e,"replace",function(){return ii.a});var ni=t(725);t.d(e,"rest",function(){return ni.a});var oi=t(726);t.d(e,"result",function(){return oi.a});var ri=t(438);t.d(e,"reverse",function(){return ri.a});var si=t(727);t.d(e,"round",function(){return si.a});var di=t(728);t.d(e,"sample",function(){return di.a});var ci=t(729);t.d(e,"sampleSize",function(){return ci.a});var li=t(730);t.d(e,"set",function(){return li.a});var ui=t(731);t.d(e,"setWith",function(){return ui.a});var pi=t(732);t.d(e,"shuffle",function(){return pi.a});var zi=t(733);t.d(e,"size",function(){return zi.a});var gi=t(734);t.d(e,"slice",function(){return gi.a});var mi=t(735);t.d(e,"snakeCase",function(){return mi.a});var wi=t(736);t.d(e,"some",function(){return wi.a});var yi=t(737);t.d(e,"sortBy",function(){return yi.a});var fi=t(738);t.d(e,"sortedIndex",function(){return fi.a});var bi=t(740);t.d(e,"sortedIndexBy",function(){return bi.a});var hi=t(741);t.d(e,"sortedIndexOf",function(){return hi.a});var vi=t(742);t.d(e,"sortedLastIndex",function(){return vi.a});var ki=t(743);t.d(e,"sortedLastIndexBy",function(){return ki.a});var ji=t(744);t.d(e,"sortedLastIndexOf",function(){return ji.a});var _i=t(745);t.d(e,"sortedUniq",function(){return _i.a});var xi=t(746);t.d(e,"sortedUniqBy",function(){return xi.a});var Oi=t(747);t.d(e,"split",function(){return Oi.a});var qi=t(748);t.d(e,"spread",function(){return qi.a});var Ei=t(749);t.d(e,"startCase",function(){return Ei.a});var Ai=t(750);t.d(e,"startsWith",function(){return Ai.a});var Ti=t(326);t.d(e,"stubArray",function(){return Ti.a});var Si=t(321);t.d(e,"stubFalse",function(){return Si.a});var Mi=t(751);t.d(e,"stubObject",function(){return Mi.a});var Pi=t(752);t.d(e,"stubString",function(){return Pi.a});var Ci=t(753);t.d(e,"stubTrue",function(){return Ci.a});var Ri=t(754);t.d(e,"subtract",function(){return Ri.a});var Di=t(755);t.d(e,"sum",function(){return Di.a});var Fi=t(756);t.d(e,"sumBy",function(){return Fi.a});var Bi=t(757);t.d(e,"tail",function(){return Bi.a});var Ii=t(758);t.d(e,"take",function(){return Ii.a});var Li=t(759);t.d(e,"takeRight",function(){return Li.a});var $i=t(760);t.d(e,"takeRightWhile",function(){return $i.a});var Wi=t(761);t.d(e,"takeWhile",function(){return Wi.a});var Ui=t(762);t.d(e,"tap",function(){return Ui.a});var Ni=t(763);t.d(e,"template",function(){return Ni.a});var Ki=t(441);t.d(e,"templateSettings",function(){return Ki.a});var Hi=t(764);t.d(e,"throttle",function(){return Hi.a});var Vi=t(246);t.d(e,"thru",function(){return Vi.a});var Yi=t(765);t.d(e,"times",function(){return Yi.a});var Gi=t(433);t.d(e,"toArray",function(){return Gi.a});var Zi=t(193);t.d(e,"toFinite",function(){return Zi.a});var Ji=t(10);t.d(e,"toInteger",function(){return Ji.a});var Qi=t(442);t.d(e,"toIterator",function(){return Qi.a});var Xi=t(766);t.d(e,"toJSON",function(){return Xi.a});var an=t(422);t.d(e,"toLength",function(){return an.a});var en=t(767);t.d(e,"toLower",function(){return en.a});var tn=t(102);t.d(e,"toNumber",function(){return tn.a});var nn=t(419);t.d(e,"toPairs",function(){return nn.a});var on=t(420);t.d(e,"toPairsIn",function(){return on.a});var rn=t(768);t.d(e,"toPath",function(){return rn.a});var sn=t(414);t.d(e,"toPlainObject",function(){return sn.a});var dn=t(769);t.d(e,"toSafeInteger",function(){return dn.a});var cn=t(13);t.d(e,"toString",function(){return cn.a});var ln=t(770);t.d(e,"toUpper",function(){return ln.a});var un=t(771);t.d(e,"transform",function(){return un.a});var pn=t(772);t.d(e,"trim",function(){return pn.a});var zn=t(773);t.d(e,"trimEnd",function(){return zn.a});var gn=t(774);t.d(e,"trimStart",function(){return gn.a});var mn=t(775);t.d(e,"truncate",function(){return mn.a});var wn=t(776);t.d(e,"unary",function(){return wn.a});var yn=t(777);t.d(e,"unescape",function(){return yn.a});var fn=t(778);t.d(e,"union",function(){return fn.a});var bn=t(779);t.d(e,"unionBy",function(){return bn.a});var hn=t(780);t.d(e,"unionWith",function(){return hn.a});var vn=t(781);t.d(e,"uniq",function(){return vn.a});var kn=t(782);t.d(e,"uniqBy",function(){return kn.a});var jn=t(783);t.d(e,"uniqWith",function(){return jn.a});var _n=t(784);t.d(e,"uniqueId",function(){return _n.a});var xn=t(785);t.d(e,"unset",function(){return xn.a});var On=t(332);t.d(e,"unzip",function(){return On.a});var qn=t(443);t.d(e,"unzipWith",function(){return qn.a});var En=t(786);t.d(e,"update",function(){return En.a});var An=t(787);t.d(e,"updateWith",function(){return An.a});var Tn=t(788);t.d(e,"upperCase",function(){return Tn.a});var Sn=t(325);t.d(e,"upperFirst",function(){return Sn.a});var Mn=t(1344);t.d(e,"value",function(){return Mn.a});var Pn=t(789);t.d(e,"valueOf",function(){return Pn.a});var Cn=t(168);t.d(e,"values",function(){return Cn.a});var Rn=t(790);t.d(e,"valuesIn",function(){return Rn.a});var Dn=t(791);t.d(e,"without",function(){return Dn.a});var Fn=t(400);t.d(e,"words",function(){return Fn.a});var Bn=t(792);t.d(e,"wrap",function(){return Bn.a});var In=t(793);t.d(e,"wrapperAt",function(){return In.a});var Ln=t(794);t.d(e,"wrapperChain",function(){return Ln.a}),t.d(e,"wrapperCommit",function(){return q.a}),t.d(e,"wrapperLodash",function(){return Ye.a}),t.d(e,"wrapperNext",function(){return ft.a}),t.d(e,"wrapperPlant",function(){return Lt.a});var $n=t(795);t.d(e,"wrapperReverse",function(){return $n.a}),t.d(e,"wrapperToIterator",function(){return Qi.a});var Wn=t(247);t.d(e,"wrapperValue",function(){return Wn.a});var Un=t(796);t.d(e,"xor",function(){return Un.a});var Nn=t(798);t.d(e,"xorBy",function(){return Nn.a});var Kn=t(799);t.d(e,"xorWith",function(){return Kn.a});var Hn=t(800);t.d(e,"zip",function(){return Hn.a});var Vn=t(801);t.d(e,"zipObject",function(){return Vn.a});var Yn=t(802);t.d(e,"zipObjectDeep",function(){return Yn.a});var Gn=t(803);t.d(e,"zipWith",function(){return Gn.a});var Zn=t(1345);t.d(e,"default",function(){return Zn.a})},,function(a,e){var t=Array.isArray;a.exports=t},function(a,e,t){"use strict";function i(a){return"function"==typeof a?a:null==a?r.a:"object"==typeof a?Object(s.a)(a)?Object(o.a)(a[0],a[1]):Object(n.a)(a):Object(d.a)(a)}var n=t(963),o=t(967),r=t(43),s=t(8),d=t(410);e.a=i},,function(a,e,t){var i=t(76),n="object"==typeof self&&self&&self.Object===Object&&self,o=i||n||Function("return this")();a.exports=o},,function(a,e,t){"use strict";var i=Array.isArray;e.a=i},function(a,e,t){"use strict";function i(a,e){return Object(r.a)(Object(o.a)(a,e,n.a),a+"")}var n=t(43),o=t(949),r=t(535);e.a=i},function(a,e,t){"use strict";function i(a){var e=Object(n.a)(a),t=e%1;return e===e?t?e-t:e:0}var n=t(193);e.a=i},function(a,e){function t(a){var e=typeof a;return null!=a&&("object"==e||"function"==e)}a.exports=t},,function(a,e,t){"use strict";function i(a){return null==a?"":Object(n.a)(a)}var n=t(101);e.a=i},function(a,e,t){function i(a){return null==a?void 0===a?d:s:c&&c in Object(a)?o(a):r(a)}var n=t(19),o=t(112),r=t(113),s="[object Null]",d="[object Undefined]",c=n?n.toStringTag:void 0;a.exports=i},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){function t(a){return null!=a&&"object"==typeof a}a.exports=t},function(a,e,t){function i(a,e){var t=o(a,e);return n(t)?t:void 0}var n=t(119),o=t(122);a.exports=i},,function(a,e,t){var i=t(6),n=i.Symbol;a.exports=n},function(a,e,t){var i=t(17),n=i(Object,"create");a.exports=n},function(a,e,t){function i(a,e){for(var t=a.length;t--;)if(n(a[t][0],e))return t;return-1}var n=t(31);a.exports=i},function(a,e,t){function i(a,e){var t=a.__data__;return n(e)?t["string"==typeof e?"string":"hash"]:t.map}var n=t(133);a.exports=i},function(a,e,t){"use strict";function i(a){return null!=a&&"object"==typeof a}e.a=i},function(a,e,t){function i(a){return"symbol"==typeof a||o(a)&&n(a)==r}var n=t(14),o=t(16),r="[object Symbol]";a.exports=i},function(a,e,t){"use strict";function i(a){var e=typeof a;return null!=a&&("object"==e||"function"==e)}e.a=i},function(a,e,t){function i(a){if("string"==typeof a||n(a))return a;var e=a+"";return"0"==e&&1/a==-o?"-0":e}var n=t(24),o=1/0;a.exports=i},function(a,e,t){"use strict";function i(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}e.a=i},,function(a,e,t){function i(a,e,t){var i=null==a?void 0:n(a,e);return void 0===i?t:i}var n=t(49);a.exports=i},function(a,e,t){"use strict";function i(a){return Object(r.a)(a)?Object(n.a)(a):Object(o.a)(a)}var n=t(950),o=t(539),r=t(44);e.a=i},function(a,e){function t(a,e){return a===e||a!==a&&e!==e}a.exports=t},,function(a,e,t){function i(a,e){return n(a)?a:o(a,e)?[a]:r(s(a))}var n=t(3),o=t(50),r=t(114),s=t(86);a.exports=i},function(a,e,t){function i(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])}}var n=t(127),o=t(128),r=t(129),s=t(130),d=t(131);i.prototype.clear=n,i.prototype.delete=o,i.prototype.get=r,i.prototype.has=s,i.prototype.set=d,a.exports=i},function(a,e,t){function i(a){return r(a)?n(a):o(a)}var n=t(170),o=t(179),r=t(36);a.exports=i},function(a,e,t){function i(a){return null!=a&&o(a.length)&&!n(a)}var n=t(41),o=t(89);a.exports=i},,,function(a,e,t){"use strict";var i=t(930),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";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=t(263),o=function(a){return a&&a.__esModule?a:{default:a}}(n),r=function(){return[]},s=function(a){this._hasScore=!1,this._identifier="",this._hasMarks=!1,this._marker=r,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)};s.prototype.hasScore=function(){return this._hasScore},s.prototype.getScore=function(){return this.score},s.prototype.setScore=function(a){(0,i.isNumber)(a)&&(this.score=a,this._hasScore=!0)},s.prototype.hasText=function(){return""!==this.text},s.prototype.getText=function(){return this.text},s.prototype.setText=function(a){(0,i.isUndefined)(a)&&(a=""),this.text=a},s.prototype.getMarks=function(){return this.marks},s.prototype.setMarks=function(a){(0,i.isArray)(a)&&(this.marks=a,this._hasMarks=a.length>0)},s.prototype.setIdentifier=function(a){this._identifier=a},s.prototype.getIdentifier=function(){return this._identifier},s.prototype.setMarker=function(a){this._marker=a},s.prototype.hasMarker=function(){return this._hasMarks&&this._marker!==this.emptyMarker},s.prototype.getMarker=function(){return this._marker},s.prototype.setHasMarks=function(a){this._hasMarks=a},s.prototype.hasMarks=function(){return this._hasMarks},s.prototype.serialize=function(){return{_parseClass:"AssessmentResult",identifier:this._identifier,score:this.score,text:this.text,marks:this.marks.map(function(a){return a.serialize()})}},s.parse=function(a){var e=new s({text:a.text,score:a.score,marks:a.marks.map(function(a){return o.default.parse(a)})});return e.setIdentifier(a.identifier),e},e.default=s},function(a,e,t){function i(a){if(!o(a))return!1;var e=n(a);return e==s||e==d||e==r||e==c}var n=t(14),o=t(11),r="[object AsyncFunction]",s="[object Function]",d="[object GeneratorFunction]",c="[object Proxy]";a.exports=i},function(a,e){function t(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}a.exports=t},function(a,e,t){"use strict";function i(a){return a}e.a=i},function(a,e,t){"use strict";function i(a){return null!=a&&Object(o.a)(a.length)&&!Object(n.a)(a)}var n=t(91),o=t(237);e.a=i},function(a,e,t){"use strict";function i(a,e,t,r,s){var d=-1,c=a.length;for(t||(t=o.a),s||(s=[]);++d<c;){var l=a[d];e>0&&t(l)?e>1?i(l,e-1,t,r,s):Object(n.a)(s,l):r||(s[s.length]=l)}return s}var n=t(162),o=t(1271);e.a=i},function(a,e,t){"use strict";function i(a){return Object(o.a)(a)&&Object(n.a)(a)}var n=t(44),o=t(23);e.a=i},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1654);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){function i(a,e){e=n(e,a);for(var t=0,i=e.length;null!=a&&t<i;)a=a[o(e[t++])];return t&&t==i?a:void 0}var n=t(33),o=t(26);a.exports=i},function(a,e,t){function i(a,e){if(n(a))return!1;var t=typeof a;return!("number"!=t&&"symbol"!=t&&"boolean"!=t&&null!=a&&!o(a))||(s.test(a)||!r.test(a)||null!=e&&a in Object(e))}var n=t(3),o=t(24),r=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,s=/^\w*$/;a.exports=i},function(a,e,t){function i(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])}}var n=t(116),o=t(132),r=t(134),s=t(135),d=t(136);i.prototype.clear=n,i.prototype.delete=o,i.prototype.get=r,i.prototype.has=s,i.prototype.set=d,a.exports=i},function(a,e,t){var i=t(17),n=t(6),o=i(n,"Map");a.exports=o},function(a,e,t){"use strict";function i(a){return Object(r.a)(a)?Object(n.a)(a,!0):Object(o.a)(a)}var n=t(950),o=t(1251),r=t(44);e.a=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,t){"use strict";function i(a){return null==a?void 0===a?d:s:c&&c in Object(a)?Object(o.a)(a):Object(r.a)(a)}var n=t(158),o=t(1233),r=t(1234),s="[object Null]",d="[object Undefined]",c=n.a?n.a.toStringTag:void 0;e.a=i},function(a,e,t){"use strict";function i(a,e,t){if(!Object(s.a)(t))return!1;var i=typeof e;return!!("number"==i?Object(o.a)(t)&&Object(r.a)(e,t.length):"string"==i&&e in t)&&Object(n.a)(t[e],a)}var n=t(69),o=t(44),r=t(144),s=t(25);e.a=i},function(a,e,t){"use strict";function i(a){var e=null==a?0:a.length;return e?a[e-1]:void 0}e.a=i},function(a,e,t){var i=t(275),n=t(16),o=Object.prototype,r=o.hasOwnProperty,s=o.propertyIsEnumerable,d=i(function(){return arguments}())?i:function(a){return n(a)&&r.call(a,"callee")&&!s.call(a,"callee")};a.exports=d},function(a,e,t){(function(a){var i=t(6),n=t(276),o="object"==typeof e&&e&&!e.nodeType&&e,r=o&&"object"==typeof a&&a&&!a.nodeType&&a,s=r&&r.exports===o,d=s?i.Buffer:void 0,c=d?d.isBuffer:void 0,l=c||n;a.exports=l}).call(e,t(61)(a))},function(a,e,t){"use strict";function i(a){return"symbol"==typeof a||Object(o.a)(a)&&Object(n.a)(a)==r}var n=t(63),o=t(23),r="[object Symbol]";e.a=i},function(a,e,t){"use strict";function i(a,e){return a===e||a!==a&&e!==e}e.a=i},,function(a,e){function t(a){return a}a.exports=t},,,,,function(a,e,t){(function(e){var t="object"==typeof e&&e&&e.Object===Object&&e;a.exports=t}).call(e,t(15))},function(a,e){function t(a){if(null!=a){try{return n.call(a)}catch(a){}try{return a+""}catch(a){}}return""}var i=Function.prototype,n=i.toString;a.exports=t},function(a,e){function t(a){var e=a&&a.constructor;return a===("function"==typeof e&&e.prototype||i)}var i=Object.prototype;a.exports=t},,function(a,e,t){"use strict";function i(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)}e.a=i},function(a,e,t){"use strict";function i(a,e){var t=-1,i=a.length;for(e||(e=Array(i));++t<i;)e[t]=a[t];return e}e.a=i},function(a,e,t){"use strict";function i(a){return function(e){return a(e)}}e.a=i},,function(a,e,t){(function(a,i){function n(a,t){var i={seen:[],stylize:r};return arguments.length>=3&&(i.depth=arguments[2]),arguments.length>=4&&(i.colors=arguments[3]),m(t)?i.showHidden=t:t&&e._extend(i,t),v(i.showHidden)&&(i.showHidden=!1),v(i.depth)&&(i.depth=2),v(i.colors)&&(i.colors=!1),v(i.customInspect)&&(i.customInspect=!0),i.colors&&(i.stylize=o),d(i,a,i.depth)}function o(a,e){var t=n.styles[e];return t?"["+n.colors[t][0]+"m"+a+"["+n.colors[t][1]+"m":a}function r(a,e){return a}function s(a){var e={};return a.forEach(function(a,t){e[a]=!0}),e}function d(a,t,i){if(a.customInspect&&t&&O(t.inspect)&&t.inspect!==e.inspect&&(!t.constructor||t.constructor.prototype!==t)){var n=t.inspect(i,a);return b(n)||(n=d(a,n,i)),n}var o=c(a,t);if(o)return o;var r=Object.keys(t),m=s(r);if(a.showHidden&&(r=Object.getOwnPropertyNames(t)),x(t)&&(r.indexOf("message")>=0||r.indexOf("description")>=0))return l(t);if(0===r.length){if(O(t)){var w=t.name?": "+t.name:"";return a.stylize("[Function"+w+"]","special")}if(k(t))return a.stylize(RegExp.prototype.toString.call(t),"regexp");if(_(t))return a.stylize(Date.prototype.toString.call(t),"date");if(x(t))return l(t)}var y="",f=!1,h=["{","}"];if(g(t)&&(f=!0,h=["[","]"]),O(t)){y=" [Function"+(t.name?": "+t.name:"")+"]"}if(k(t)&&(y=" "+RegExp.prototype.toString.call(t)),_(t)&&(y=" "+Date.prototype.toUTCString.call(t)),x(t)&&(y=" "+l(t)),0===r.length&&(!f||0==t.length))return h[0]+y+h[1];if(i<0)return k(t)?a.stylize(RegExp.prototype.toString.call(t),"regexp"):a.stylize("[Object]","special");a.seen.push(t);var v;return v=f?u(a,t,i,m,r):r.map(function(e){return p(a,t,i,m,e,f)}),a.seen.pop(),z(v,y,h)}function c(a,e){if(v(e))return a.stylize("undefined","undefined");if(b(e)){var t="'"+JSON.stringify(e).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return a.stylize(t,"string")}return f(e)?a.stylize(""+e,"number"):m(e)?a.stylize(""+e,"boolean"):w(e)?a.stylize("null","null"):void 0}function l(a){return"["+Error.prototype.toString.call(a)+"]"}function u(a,e,t,i,n){for(var o=[],r=0,s=e.length;r<s;++r)S(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}function p(a,e,t,i,n,o){var r,s,c;if(c=Object.getOwnPropertyDescriptor(e,n)||{value:e[n]},c.get?s=c.set?a.stylize("[Getter/Setter]","special"):a.stylize("[Getter]","special"):c.set&&(s=a.stylize("[Setter]","special")),S(i,n)||(r="["+n+"]"),s||(a.seen.indexOf(c.value)<0?(s=w(t)?d(a,c.value,null):d(a,c.value,t-1),s.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")),v(r)){if(o&&n.match(/^\d+$/))return s;r=JSON.stringify(""+n),r.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,e,t){var i=0;return a.reduce(function(a,e){return i++,e.indexOf("\n")>=0&&i++,a+e.replace(/\u001b\[\d\d?m/g,"").length+1},0)>60?t[0]+(""===e?"":e+"\n ")+" "+a.join(",\n ")+" "+t[1]:t[0]+e+" "+a.join(", ")+" "+t[1]}function g(a){return Array.isArray(a)}function m(a){return"boolean"==typeof a}function w(a){return null===a}function y(a){return null==a}function f(a){return"number"==typeof a}function b(a){return"string"==typeof a}function h(a){return"symbol"==typeof a}function v(a){return void 0===a}function k(a){return j(a)&&"[object RegExp]"===E(a)}function j(a){return"object"==typeof a&&null!==a}function _(a){return j(a)&&"[object Date]"===E(a)}function x(a){return j(a)&&("[object Error]"===E(a)||a instanceof Error)}function O(a){return"function"==typeof a}function q(a){return null===a||"boolean"==typeof a||"number"==typeof a||"string"==typeof a||"symbol"==typeof a||void 0===a}function E(a){return Object.prototype.toString.call(a)}function A(a){return a<10?"0"+a.toString(10):a.toString(10)}function T(){var a=new Date,e=[A(a.getHours()),A(a.getMinutes()),A(a.getSeconds())].join(":");return[a.getDate(),R[a.getMonth()],e].join(" ")}function S(a,e){return Object.prototype.hasOwnProperty.call(a,e)}var M=/%[sdj%]/g;e.format=function(a){if(!b(a)){for(var e=[],t=0;t<arguments.length;t++)e.push(n(arguments[t]));return e.join(" ")}for(var t=1,i=arguments,o=i.length,r=String(a).replace(M,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}}),s=i[t];t<o;s=i[++t])w(s)||!j(s)?r+=" "+s:r+=" "+n(s);return r},e.deprecate=function(t,n){function o(){if(!r){if(i.throwDeprecation)throw new Error(n);i.traceDeprecation?console.trace(n):console.error(n),r=!0}return t.apply(this,arguments)}if(v(a.process))return function(){return e.deprecate(t,n).apply(this,arguments)};if(!0===i.noDeprecation)return t;var r=!1;return o};var P,C={};e.debuglog=function(a){if(v(P)&&(P=Object({NODE_ENV:"production"}).NODE_DEBUG||""),a=a.toUpperCase(),!C[a])if(new RegExp("\\b"+a+"\\b","i").test(P)){var t=i.pid;C[a]=function(){var i=e.format.apply(e,arguments);console.error("%s %d: %s",a,t,i)}}else C[a]=function(){};return C[a]},e.inspect=n,n.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]},n.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"},e.isArray=g,e.isBoolean=m,e.isNull=w,e.isNullOrUndefined=y,e.isNumber=f,e.isString=b,e.isSymbol=h,e.isUndefined=v,e.isRegExp=k,e.isObject=j,e.isDate=_,e.isError=x,e.isFunction=O,e.isPrimitive=q,e.isBuffer=t(1661);var R=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];e.log=function(){console.log("%s - %s",T(),e.format.apply(e,arguments))},e.inherits=t(169),e._extend=function(a,e){if(!e||!j(e))return a;for(var t=Object.keys(e),i=t.length;i--;)a[t[i]]=e[t[i]];return a}}).call(e,t(15),t(445))},,function(a,e,t){function i(a){return null==a?"":n(a)}var n=t(100);a.exports=i},function(a,e){function t(a,e){return!!(e=null==e?i:e)&&("number"==typeof a||n.test(a))&&a>-1&&a%1==0&&a<e}var i=9007199254740991,n=/^(?:0|[1-9]\d*)$/;a.exports=t},function(a,e,t){var i=t(277),n=t(206),o=t(254),r=o&&o.isTypedArray,s=r?n(r):i;a.exports=s},function(a,e){function t(a){return"number"==typeof a&&a>-1&&a%1==0&&a<=i}var i=9007199254740991;a.exports=t},function(a,e,t){function i(a){var e=this.__data__=new n(a);this.size=e.size}var n=t(34),o=t(289),r=t(290),s=t(291),d=t(292),c=t(293);i.prototype.clear=o,i.prototype.delete=r,i.prototype.get=s,i.prototype.has=d,i.prototype.set=c,a.exports=i},function(a,e,t){"use strict";function i(a){if(!Object(o.a)(a))return!1;var e=Object(n.a)(a);return e==s||e==d||e==r||e==c}var n=t(63),o=t(25),r="[object AsyncFunction]",s="[object Function]",d="[object GeneratorFunction]",c="[object Proxy]";e.a=i},function(a,e,t){"use strict";function i(a,e,t){var i=-1,n=a.length;e<0&&(e=-e>n?0:n+e),t=t>n?n:t,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}e.a=i},,,,,,,,function(a,e,t){function i(a){if("string"==typeof a)return a;if(r(a))return o(a,i)+"";if(s(a))return l?l.call(a):"";var e=a+"";return"0"==e&&1/a==-d?"-0":e}var n=t(19),o=t(42),r=t(3),s=t(24),d=1/0,c=n?n.prototype:void 0,l=c?c.toString:void 0;a.exports=i},function(a,e,t){"use strict";function i(a){if("string"==typeof a)return a;if(Object(r.a)(a))return Object(o.a)(a,i)+"";if(Object(s.a)(a))return l?l.call(a):"";var e=a+"";return"0"==e&&1/a==-d?"-0":e}var n=t(158),o=t(27),r=t(8),s=t(68),d=1/0,c=n.a?n.a.prototype:void 0,l=c?c.toString:void 0;e.a=i},function(a,e,t){"use strict";function i(a){if("number"==typeof a)return a;if(Object(o.a)(a))return r;if(Object(n.a)(a)){var e="function"==typeof a.valueOf?a.valueOf():a;a=Object(n.a)(e)?e+"":e}if("string"!=typeof a)return 0===a?a:+a;a=a.replace(s,"");var t=c.test(a);return t||l.test(a)?u(a.slice(2),t?2:8):d.test(a)?r:+a}var n=t(25),o=t(68),r=NaN,s=/^\s+|\s+$/g,d=/^[-+]0x[0-9a-f]+$/i,c=/^0b[01]+$/i,l=/^0o[0-7]+$/i,u=parseInt;e.a=i},function(a,e,t){"use strict";function i(a,e,t,i){var r=!t;t||(t={});for(var s=-1,d=e.length;++s<d;){var c=e[s],l=i?i(t[c],a[c],c,t,a):void 0;void 0===l&&(l=a[c]),r?Object(o.a)(t,c,l):Object(n.a)(t,c,l)}return t}var n=t(319),o=t(145);e.a=i},function(a,e,t){"use strict";function i(a){if("string"==typeof a||Object(n.a)(a))return a;var e=a+"";return"0"==e&&1/a==-o?"-0":e}var n=t(68),o=1/0;e.a=i},function(a,e,t){"use strict";function i(a){return"function"==typeof a?a:n.a}var n=t(43);e.a=i},function(a,e,t){"use strict";function i(a,e){if(!(a instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var n=function(){function a(a,e){for(var t=0;t<e.length;t++){var i=e[t];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(a,i.key,i)}}return function(e,t,i){return t&&a(e.prototype,t),i&&a(e,i),e}}(),o=function(){function a(){i(this,a)}return n(a,[{key:"getResult",value:function(a,e,t){throw"The method getResult is not implemented"}},{key:"isApplicable",value:function(a){return!0}}]),a}();e.default=o},function(a,e,t){function i(a,e){if("function"!=typeof a||null!=e&&"function"!=typeof e)throw new TypeError(o);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(i.Cache||n),t}var n=t(51),o="Expected a function";i.Cache=n,a.exports=i},,function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a){return a=a.replace(/\s{2,}/g," "),a=a.replace(/\s\./g,"."),a=a.replace(/^\s+|\s+$/g,"")}},,,function(a,e,t){function i(a){var e=r.call(a,d),t=a[d];try{a[d]=void 0;var i=!0}catch(a){}var n=s.call(a);return i&&(e?a[d]=t:delete a[d]),n}var n=t(19),o=Object.prototype,r=o.hasOwnProperty,s=o.toString,d=n?n.toStringTag:void 0;a.exports=i},function(a,e){function t(a){return n.call(a)}var i=Object.prototype,n=i.toString;a.exports=t},function(a,e,t){var i=t(115),n=/^\./,o=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,r=/\\(\\)?/g,s=i(function(a){var e=[];return n.test(a)&&e.push(""),a.replace(o,function(a,t,i,n){e.push(i?n.replace(r,"$1"):t||a)}),e});a.exports=s},function(a,e,t){function i(a){var e=n(a,function(a){return t.size===o&&t.clear(),a}),t=e.cache;return e}var n=t(107),o=500;a.exports=i},function(a,e,t){function i(){this.size=0,this.__data__={hash:new n,map:new(r||o),string:new n}}var n=t(117),o=t(34),r=t(52);a.exports=i},function(a,e,t){function i(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])}}var n=t(118),o=t(123),r=t(124),s=t(125),d=t(126);i.prototype.clear=n,i.prototype.delete=o,i.prototype.get=r,i.prototype.has=s,i.prototype.set=d,a.exports=i},function(a,e,t){function i(){this.__data__=n?n(null):{},this.size=0}var n=t(20);a.exports=i},function(a,e,t){function i(a){return!(!r(a)||o(a))&&(n(a)?g:c).test(s(a))}var n=t(41),o=t(120),r=t(11),s=t(77),d=/[\\^$.*+?()[\]{}|]/g,c=/^\[object .+?Constructor\]$/,l=Function.prototype,u=Object.prototype,p=l.toString,z=u.hasOwnProperty,g=RegExp("^"+p.call(z).replace(d,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");a.exports=i},function(a,e,t){function i(a){return!!o&&o in a}var n=t(121),o=function(){var a=/[^.]+$/.exec(n&&n.keys&&n.keys.IE_PROTO||"");return a?"Symbol(src)_1."+a:""}();a.exports=i},function(a,e,t){var i=t(6),n=i["__core-js_shared__"];a.exports=n},function(a,e){function t(a,e){return null==a?void 0:a[e]}a.exports=t},function(a,e){function t(a){var e=this.has(a)&&delete this.__data__[a];return this.size-=e?1:0,e}a.exports=t},function(a,e,t){function i(a){var e=this.__data__;if(n){var t=e[a];return t===o?void 0:t}return s.call(e,a)?e[a]:void 0}var n=t(20),o="__lodash_hash_undefined__",r=Object.prototype,s=r.hasOwnProperty;a.exports=i},function(a,e,t){function i(a){var e=this.__data__;return n?void 0!==e[a]:r.call(e,a)}var n=t(20),o=Object.prototype,r=o.hasOwnProperty;a.exports=i},function(a,e,t){function i(a,e){var t=this.__data__;return this.size+=this.has(a)?0:1,t[a]=n&&void 0===e?o:e,this}var n=t(20),o="__lodash_hash_undefined__";a.exports=i},function(a,e){function t(){this.__data__=[],this.size=0}a.exports=t},function(a,e,t){function i(a){var e=this.__data__,t=n(e,a);return!(t<0)&&(t==e.length-1?e.pop():r.call(e,t,1),--this.size,!0)}var n=t(21),o=Array.prototype,r=o.splice;a.exports=i},function(a,e,t){function i(a){var e=this.__data__,t=n(e,a);return t<0?void 0:e[t][1]}var n=t(21);a.exports=i},function(a,e,t){function i(a){return n(this.__data__,a)>-1}var n=t(21);a.exports=i},function(a,e,t){function i(a,e){var t=this.__data__,i=n(t,a);return i<0?(++this.size,t.push([a,e])):t[i][1]=e,this}var n=t(21);a.exports=i},function(a,e,t){function i(a){var e=n(this,a).delete(a);return this.size-=e?1:0,e}var n=t(22);a.exports=i},function(a,e){function t(a){var e=typeof a;return"string"==e||"number"==e||"symbol"==e||"boolean"==e?"__proto__"!==a:null===a}a.exports=t},function(a,e,t){function i(a){return n(this,a).get(a)}var n=t(22);a.exports=i},function(a,e,t){function i(a){return n(this,a).has(a)}var n=t(22);a.exports=i},function(a,e,t){function i(a,e){var t=n(this,a),i=t.size;return t.set(a,e),this.size+=t.size==i?0:1,this}var n=t(22);a.exports=i},function(a,e,t){function i(a,e,t,r,s){return a===e||(null==a||null==e||!o(a)&&!o(e)?a!==a&&e!==e:n(a,e,t,r,i,s))}var n=t(294),o=t(16);a.exports=i},function(a,e){function t(a,e){for(var t=-1,i=e.length,n=a.length;++t<i;)a[n+t]=e[t];return a}a.exports=t},function(a,e,t){var i=t(209),n=t(186),o=Object.prototype,r=o.propertyIsEnumerable,s=Object.getOwnPropertySymbols,d=s?function(a){return null==a?[]:(a=Object(a),i(s(a),function(e){return r.call(a,e)}))}:n;a.exports=d},function(a,e,t){var i=t(300),n=t(52),o=t(301),r=t(302),s=t(224),d=t(14),c=t(77),l=c(i),u=c(n),p=c(o),z=c(r),g=c(s),m=d;(i&&"[object DataView]"!=m(new i(new ArrayBuffer(1)))||n&&"[object Map]"!=m(new n)||o&&"[object Promise]"!=m(o.resolve())||r&&"[object Set]"!=m(new r)||s&&"[object WeakMap]"!=m(new s))&&(m=function(a){var e=d(a),t="[object Object]"==e?a.constructor:void 0,i=t?c(t):"";if(i)switch(i){case l:return"[object DataView]";case u:return"[object Map]";case p:return"[object Promise]";case z:return"[object Set]";case g:return"[object WeakMap]"}return e}),a.exports=m},,function(a,e,t){"use strict";function i(a,e,t,i,k,j,_,x){var O=e&w;if(!O&&"function"!=typeof a)throw new TypeError(g);var q=i?i.length:0;if(q||(e&=~(b|h),i=k=void 0),_=void 0===_?_:v(Object(z.a)(_),0),x=void 0===x?x:Object(z.a)(x),q-=k?k.length:0,e&h){var E=i,A=k;i=k=void 0}var T=O?void 0:Object(c.a)(a),S=[a,e,t,i,k,E,A,j,_,x];if(T&&Object(l.a)(S,T),a=S[0],e=S[1],t=S[2],i=S[3],k=S[4],x=S[9]=void 0===S[9]?O?0:a.length:v(S[9]-q,0),!x&&e&(y|f)&&(e&=~(y|f)),e&&e!=m)M=e==y||e==f?Object(r.a)(a,e,x):e!=b&&e!=(m|b)||k.length?s.a.apply(void 0,S):Object(d.a)(a,e,t,i);else var M=Object(o.a)(a,e,t);var P=T?n.a:u.a;return Object(p.a)(P(M,S),a,e)}var n=t(931),o=t(1237),r=t(1238),s=t(533),d=t(1246),c=t(534),l=t(1247),u=t(944),p=t(946),z=t(10),g="Expected a function",m=1,w=2,y=8,f=16,b=32,h=64,v=Math.max;e.a=i},function(a,e,t){"use strict";function i(a){this.__wrapped__=a,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=r,this.__views__=[]}var n=t(233),o=t(384),r=4294967295;i.prototype=Object(n.a)(o.a.prototype),i.prototype.constructor=i,e.a=i},function(a,e,t){"use strict";function i(a,e){var t=typeof a;return!!(e=null==e?n:e)&&("number"==t||"symbol"!=t&&o.test(a))&&a>-1&&a%1==0&&a<e}var n=9007199254740991,o=/^(?:0|[1-9]\d*)$/;e.a=i},function(a,e,t){"use strict";function i(a,e,t){"__proto__"==e&&n.a?Object(n.a)(a,e,{configurable:!0,enumerable:!0,value:t,writable:!0}):a[e]=t}var n=t(947);e.a=i},function(a,e,t){"use strict";(function(a){var i=t(39),n=t(321),o="object"==typeof exports&&exports&&!exports.nodeType&&exports,r=o&&"object"==typeof a&&a&&!a.nodeType&&a,s=r&&r.exports===o,d=s?i.a.Buffer:void 0,c=d?d.isBuffer:void 0,l=c||n.a;e.a=l}).call(e,t(538)(a))},function(a,e,t){"use strict";function i(a){return Object(r.a)(Object(o.a)(a,void 0,n.a),a+"")}var n=t(393),o=t(949),r=t(535);e.a=i},function(a,e,t){"use strict";function i(a,e,t,P,C,R){var D,F=e&x,B=e&O,I=e&q;if(t&&(D=C?t(a,P,C,R):t(a)),void 0!==D)return D;if(!Object(k.a)(a))return a;var L=Object(b.a)(a);if(L){if(D=Object(w.a)(a),!F)return Object(l.a)(a,D)}else{var $=Object(m.a)(a),W=$==A||$==T;if(Object(h.a)(a))return Object(c.a)(a,F);if($==S||$==E||W&&!C){if(D=B||W?{}:Object(f.a)(a),!F)return B?Object(p.a)(a,Object(d.a)(D,a)):Object(u.a)(a,Object(s.a)(D,a))}else{if(!M[$])return C?a:{};D=Object(y.a)(a,$,F)}}R||(R=new n.a);var U=R.get(a);if(U)return U;if(R.set(a,D),Object(j.a)(a))return a.forEach(function(n){D.add(i(n,e,t,n,a,R))}),D;if(Object(v.a)(a))return a.forEach(function(n,o){D.set(o,i(n,e,t,o,a,R))}),D;var N=I?B?g.a:z.a:B?keysIn:_.a,K=L?void 0:N(a);return Object(o.a)(K||a,function(n,o){K&&(o=n,n=a[o]),Object(r.a)(D,o,i(n,e,t,o,a,R))}),D}var n=t(402),o=t(197),r=t(319),s=t(954),d=t(1283),c=t(955),l=t(81),u=t(1284),p=t(1285),z=t(957),g=t(558),m=t(149),w=t(1288),y=t(1289),f=t(962),b=t(8),h=t(146),v=t(403),k=t(25),j=t(404),_=t(30),x=1,O=2,q=4,E="[object Arguments]",A="[object Function]",T="[object GeneratorFunction]",S="[object Object]",M={};M[E]=M["[object Array]"]=M["[object ArrayBuffer]"]=M["[object DataView]"]=M["[object Boolean]"]=M["[object Date]"]=M["[object Float32Array]"]=M["[object Float64Array]"]=M["[object Int8Array]"]=M["[object Int16Array]"]=M["[object Int32Array]"]=M["[object Map]"]=M["[object Number]"]=M[S]=M["[object RegExp]"]=M["[object Set]"]=M["[object String]"]=M["[object Symbol]"]=M["[object Uint8Array]"]=M["[object Uint8ClampedArray]"]=M["[object Uint16Array]"]=M["[object Uint32Array]"]=!0,M["[object Error]"]=M[A]=M["[object WeakMap]"]=!1,e.a=i},function(a,e,t){"use strict";var i=t(1286),n=t(545),o=t(1287),r=t(959),s=t(933),d=t(63),c=t(936),l=Object(c.a)(i.a),u=Object(c.a)(n.a),p=Object(c.a)(o.a),z=Object(c.a)(r.a),g=Object(c.a)(s.a),m=d.a;(i.a&&"[object DataView]"!=m(new i.a(new ArrayBuffer(1)))||n.a&&"[object Map]"!=m(new n.a)||o.a&&"[object Promise]"!=m(o.a.resolve())||r.a&&"[object Set]"!=m(new r.a)||s.a&&"[object WeakMap]"!=m(new s.a))&&(m=function(a){var e=Object(d.a)(a),t="[object Object]"==e?a.constructor:void 0,i=t?Object(c.a)(t):"";if(i)switch(i){case l:return"[object DataView]";case u:return"[object Map]";case p:return"[object Promise]";case z:return"[object Set]";case g:return"[object WeakMap]"}return e}),e.a=m},,,,function(a,e,t){function i(a,e,t,i,c,l){var u=t&s,p=a.length,z=e.length;if(p!=z&&!(u&&z>p))return!1;var g=l.get(a);if(g&&l.get(e))return g==e;var m=-1,w=!0,y=t&d?new n:void 0;for(l.set(a,e),l.set(e,a);++m<p;){var f=a[m],b=e[m];if(i)var h=u?i(b,f,m,e,a,l):i(f,b,m,a,e,l);if(void 0!==h){if(h)continue;w=!1;break}if(y){if(!o(e,function(a,e){if(!r(y,e)&&(f===a||c(f,a,t,i,l)))return y.push(e)})){w=!1;break}}else if(f!==b&&!c(f,b,t,i,l)){w=!1;break}}return l.delete(a),l.delete(e),w}var n=t(222),o=t(297),r=t(223),s=1,d=2;a.exports=i},function(a,e,t){function i(a){return a===a&&!n(a)}var n=t(11);a.exports=i},function(a,e){function t(a,e){return function(t){return null!=t&&(t[a]===e&&(void 0!==e||a in Object(t)))}}a.exports=t},,,function(a,e,t){"use strict";var i=t(39),n=i.a.Symbol;e.a=n},function(a,e,t){"use strict";var i=t(1248),n=t(23),o=Object.prototype,r=o.hasOwnProperty,s=o.propertyIsEnumerable,d=Object(i.a)(function(){return arguments}())?i.a:function(a){return Object(n.a)(a)&&r.call(a,"callee")&&!s.call(a,"callee")};e.a=d},function(a,e,t){"use strict";var i=t(1249),n=t(82),o=t(238),r=o.a&&o.a.isTypedArray,s=r?Object(n.a)(r):i.a;e.a=s},function(a,e,t){"use strict";function i(a,e){return Object(n.a)(a)?a:Object(o.a)(a,e)?[a]:Object(r.a)(Object(s.a)(a))}var n=t(8),o=t(543),r=t(952),s=t(13);e.a=i},function(a,e,t){"use strict";function i(a,e){for(var t=-1,i=e.length,n=a.length;++t<i;)a[n+t]=e[t];return a}e.a=i},function(a,e,t){"use strict";function i(a,e,t){var i=a.length;return t=void 0===t?i:t,!e&&t>=i?a:Object(n.a)(a,e,t)}var n=t(92);e.a=i},function(a,e,t){"use strict";function i(a){return Object(o.a)(a)?Object(r.a)(a):Object(n.a)(a)}var n=t(1272),o=t(240),r=t(1273);e.a=i},function(a,e,t){"use strict";function i(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}e.a=i},function(a,e,t){"use strict";var i=t(167),n=t(971),o=Object(n.a)(i.a);e.a=o},function(a,e,t){"use strict";function i(a,e){return a&&Object(n.a)(a,e,o.a)}var n=t(574),o=t(30);e.a=i},function(a,e,t){"use strict";function i(a){return null==a?[]:Object(n.a)(a,Object(o.a)(a))}var n=t(633),o=t(30);e.a=i},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){function i(a,e){var t=r(a),i=!t&&o(a),l=!t&&!i&&s(a),p=!t&&!i&&!l&&c(a),z=t||i||l||p,g=z?n(a.length,String):[],m=g.length;for(var w in a)!e&&!u.call(a,w)||z&&("length"==w||l&&("offset"==w||"parent"==w)||p&&("buffer"==w||"byteLength"==w||"byteOffset"==w)||d(w,m))||g.push(w);return g}var n=t(274),o=t(66),r=t(3),s=t(67),d=t(87),c=t(88),l=Object.prototype,u=l.hasOwnProperty;a.exports=i},,,,function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a){return a.split("_")[0]}},,,,function(a,e,t){var i=t(272),n=t(279),o=n(i);a.exports=o},function(a,e,t){function i(a){if(!n(a))return o(a);var e=[];for(var t in Object(a))s.call(a,t)&&"constructor"!=t&&e.push(t);return e}var n=t(78),o=t(278),r=Object.prototype,s=r.hasOwnProperty;a.exports=i},function(a,e){function t(a,e){return function(t){return a(e(t))}}a.exports=t},function(a,e,t){var i=t(6),n=i.Uint8Array;a.exports=n},function(a,e){function t(a){var e=-1,t=Array(a.size);return a.forEach(function(a,i){t[++e]=[i,a]}),t}a.exports=t},function(a,e){function t(a){var e=-1,t=Array(a.size);return a.forEach(function(a){t[++e]=a}),t}a.exports=t},function(a,e,t){function i(a){return n(a,r,o)}var n=t(185),o=t(139),r=t(35);a.exports=i},function(a,e,t){function i(a,e,t){var i=e(a);return o(a)?i:n(i,t(a))}var n=t(138),o=t(3);a.exports=i},function(a,e){function t(){return[]}a.exports=t},,,,,,,function(a,e,t){"use strict";function i(a){if(!a)return 0===a?a:0;if((a=Object(n.a)(a))===o||a===-o){return(a<0?-1:1)*r}return a===a?a:0}var n=t(102),o=1/0,r=1.7976931348623157e308;e.a=i},function(a,e,t){"use strict";function i(a,e){var t=Object(o.a)(a,e);return Object(n.a)(t)?t:void 0}var n=t(934),o=t(1236);e.a=i},function(a,e,t){"use strict";function i(a){if(Object(d.a)(a)&&!Object(s.a)(a)&&!(a instanceof n.a)){if(a instanceof o.a)return a;if(u.call(a,"__wrapped__"))return Object(c.a)(a)}return new o.a(a)}var n=t(143),o=t(196),r=t(384),s=t(8),d=t(23),c=t(943),l=Object.prototype,u=l.hasOwnProperty;i.prototype=r.a.prototype,i.prototype.constructor=i,e.a=i},function(a,e,t){"use strict";function i(a,e){this.__wrapped__=a,this.__actions__=[],this.__chain__=!!e,this.__index__=0,this.__values__=void 0}var n=t(233),o=t(384);i.prototype=Object(n.a)(o.a.prototype),i.prototype.constructor=i,e.a=i},function(a,e,t){"use strict";function i(a,e){for(var t=-1,i=null==a?0:a.length;++t<i&&!1!==e(a[t],t,a););return a}e.a=i},function(a,e,t){"use strict";function i(a,e){for(var t=-1,i=a.length,o=0,r=[];++t<i;){var s=a[t];s!==e&&s!==n||(a[t]=n,r[o++]=t)}return r}var n="__lodash_placeholder__";e.a=i},function(a,e,t){"use strict";function i(a){if(!Object(r.a)(a)||Object(n.a)(a)!=s)return!1;var e=Object(o.a)(a);if(null===e)return!0;var t=u.call(e,"constructor")&&e.constructor;return"function"==typeof t&&t instanceof t&&l.call(t)==p}var n=t(63),o=t(395),r=t(23),s="[object Object]",d=Function.prototype,c=Object.prototype,l=d.toString,u=c.hasOwnProperty,p=l.call(Object);e.a=i},function(a,e,t){"use strict";function i(a,e,t){return a===a&&(void 0!==t&&(a=a<=t?a:t),void 0!==e&&(a=a>=e?a:e)),a}e.a=i},function(a,e,t){"use strict";function i(a,e,t){var i=-1,u=o.a,p=a.length,z=!0,g=[],m=g;if(t)z=!1,u=r.a;else if(p>=l){var w=e?null:Object(d.a)(a);if(w)return Object(c.a)(w);z=!1,u=s.a,m=new n.a}else m=e?[]:g;a:for(;++i<p;){var y=a[i],f=e?e(y):y;if(y=t||0!==y?y:0,z&&f===f){for(var b=m.length;b--;)if(m[b]===f)continue a;e&&m.push(f),g.push(y)}else u(m,f,t)||(m!==g&&m.push(f),g.push(y))}return g}var n=t(407),o=t(385),r=t(585),s=t(408),d=t(1343),c=t(409),l=200;e.a=i},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.stripBlockTagsAtStartEnd=e.stripIncompleteTags=e.stripFullTags=void 0;var i=t(109),n=function(a){return a&&a.__esModule?a:{default:a}}(i),o=t(1003),r=new RegExp("^<("+o.blockElements.join("|")+")[^>]*?>","i"),s=new RegExp("</("+o.blockElements.join("|")+")[^>]*?>$","i"),d=function(a){return a=a.replace(/^(<\/([^>]+)>)+/i,""),a=a.replace(/(<([^\/>]+)>)+$/i,"")},c=function(a){return a=a.replace(r,""),a=a.replace(s,"")},l=function(a){return a=a.replace(/(<([^>]+)>)/gi," "),a=(0,n.default)(a)};e.stripFullTags=l,e.stripIncompleteTags=d,e.stripBlockTagsAtStartEnd=c,e.default={stripFullTags:l,stripIncompleteTags:d,stripBlockTagsAtStartEnd:c}},,,,function(a,e){function t(a){return function(e){return a(e)}}a.exports=t},,function(a,e,t){function i(a){return"function"==typeof a?a:null==a?r:"object"==typeof a?s(a)?o(a[0],a[1]):n(a):d(a)}var n=t(287),o=t(304),r=t(71),s=t(3),d=t(307);a.exports=i},function(a,e){function t(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}a.exports=t},,,,function(a,e,t){"use strict";function i(a){return a&&a.__esModule?a:{default:a}}Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a){if(""===(a=(0,r.default)((0,n.stripFullTags)(a))))return[];var e=a.split(/\s/g);return e=(0,c.map)(e,function(a){return(0,d.default)(a)}),(0,c.filter)(e,function(a){return""!==a.trim()})};var n=t(202),o=t(109),r=i(o),s=t(1380),d=i(s),c=t(1)},function(a,e,t){"use strict";function i(){S=[],w=(0,b.default)(function(a){S.push(a)}),w.addRule(O,"html-start"),w.addRule(q,"html-end"),w.addRule(A,"block-start"),w.addRule(T,"block-end"),w.addRule(j,"full-stop"),w.addRule(_,"sentence-delimiter"),w.addRule(x,"sentence")}function n(a){return a!==a.toLocaleLowerCase()}function o(a){return!(0,y.isNaN)(parseInt(a,10))}function r(a){return/<br/.test(a)}function s(a){return"'"===(a=(0,v.normalize)(a))||'"'===a}function d(a){return"¿"===a||"¡"===a}function c(a){return i(),w.onText(a),w.end(),S}function l(a){return a.replace(/\s+/," ")}function u(a){var e="";return(0,y.isUndefined)(a[0])||(e+=a[0].src),(0,y.isUndefined)(a[1])||(e+=a[1].src),e=l(e)}function p(a){return n(a)||o(a)||s(a)||d(a)}function z(a){return!(0,y.isUndefined)(a)&&("html-start"===a.type||"html-end"===a.type||"block-start"===a.type)}function g(a){var e,t,i=[],n="";do{t=!1;var s=a[0],d=a[a.length-1];"html-start"===s.type&&"html-end"===d.type&&(a=a.slice(1,a.length-1),t=!0)}while(t&&a.length>1);return(0,y.forEach)(a,function(t,s){var d,c,l=a[s+1],g=a[s+2];switch(t.type){case"html-start":case"html-end":r(t.src)?(i.push(n),n=""):n+=t.src;break;case"sentence":n+=t.src;break;case"sentence-delimiter":n+=t.src,(0,y.isUndefined)(l)||"block-end"===l.type||"sentence-delimiter"===l.type||(i.push(n),n="");break;case"full-stop":if(n+=t.src,c=u([l,g]),d=c.length>=2,e=d?c[1]:"",d&&o(c[0]))break;(d&&p(e)||z(l))&&(i.push(n),n="");break;case"block-start":n+=t.src;break;case"block-end":if(n+=t.src,c=u([l,g]),d=c.length>=2,e=d?c[0]:"",d&&o(c[0]))break;(d&&p(e)||z(l))&&(i.push(n),n="")}}),""!==n&&i.push(n),i=(0,y.map)(i,function(a){return a.trim()})}function m(a){var e=c(a);return 0===e.length?[]:g(e)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a){a=(0,k.unifyNonBreakingSpace)(a);var e,t=(0,h.getBlocks)(a);return t=(0,y.flatMap)(t,function(a){return a.split(E)}),e=(0,y.flatMap)(t,M),(0,y.filter)(e,(0,y.negate)(y.isEmpty))};var w,y=t(1),f=t(1031),b=function(a){return a&&a.__esModule?a:{default:a}}(f),h=t(1003),v=t(808),k=t(1453),j=new RegExp("^[.]$"),_=new RegExp("^[?!;…]$"),x=new RegExp("^[^.?!;…<\\(\\)\\[\\]]+$"),O=/^<([^>\s\/]+)[^>]*>$/im,q=/^<\/([^>\s]+)[^>]*>$/im,E=new RegExp("\n\r|\n|\r"),A=/^\s*[[({]\s*$/,T=/^\s*[\])}]\s*$/,S=[],M=(0,y.memoize)(m)},,,,,,function(a,e,t){var i=t(273),n=i();a.exports=n},function(a,e,t){function i(a,e,t){return e===e?r(a,e,t):n(a,o,t)}var n=t(255),o=t(285),r=t(286);a.exports=i},function(a,e,t){function i(a){var e=-1,t=null==a?0:a.length;for(this.__data__=new n;++e<t;)this.add(a[e])}var n=t(51),o=t(295),r=t(296);i.prototype.add=i.prototype.push=o,i.prototype.has=r,a.exports=i},function(a,e){function t(a,e){return a.has(e)}a.exports=t},function(a,e,t){var i=t(17),n=t(6),o=i(n,"WeakMap");a.exports=o},function(a,e,t){function i(a,e,t){e=n(e,a);for(var i=-1,l=e.length,u=!1;++i<l;){var p=c(e[i]);if(!(u=null!=a&&t(a,p)))break;a=a[p]}return u||++i!=l?u:!!(l=null==a?0:a.length)&&d(l)&&s(p,l)&&(r(a)||o(a))}var n=t(33),o=t(66),r=t(3),s=t(87),d=t(89),c=t(26);a.exports=i},,,,,,,,function(a,e,t){"use strict";var i=t(25),n=Object.create,o=function(){function a(){}return function(e){if(!Object(i.a)(e))return{};if(n)return n(e);a.prototype=e;var t=new a;return a.prototype=void 0,t}}();e.a=o},function(a,e,t){"use strict";function i(a,e,t){return e===e?Object(r.a)(a,e,t):Object(n.a)(a,o.a,t)}var n=t(386),o=t(948),r=t(1244);e.a=i},function(a,e,t){"use strict";function i(a){return a.placeholder}e.a=i},function(a,e,t){"use strict";function i(a){return Object(n.a)(function(e,t){var i=-1,n=t.length,r=n>1?t[n-1]:void 0,s=n>2?t[2]:void 0;for(r=a.length>3&&"function"==typeof r?(n--,r):void 0,s&&Object(o.a)(t[0],t[1],s)&&(r=n<3?void 0:r,n=1),e=Object(e);++i<n;){var d=t[i];d&&a(e,d,i,r)}return e})}var n=t(9),o=t(64);e.a=i},function(a,e,t){"use strict";function i(a){return"number"==typeof a&&a>-1&&a%1==0&&a<=n}var n=9007199254740991;e.a=i},function(a,e,t){"use strict";(function(a){var i=t(930),n="object"==typeof exports&&exports&&!exports.nodeType&&exports,o=n&&"object"==typeof a&&a&&!a.nodeType&&a,r=o&&o.exports===n,s=r&&i.a.process,d=function(){try{var a=o&&o.require&&o.require("util").types;return a||s&&s.binding&&s.binding("util")}catch(a){}}();e.a=d}).call(e,t(538)(a))},function(a,e,t){"use strict";function i(a,e){e=Object(n.a)(e,a);for(var t=0,i=e.length;null!=a&&t<i;)a=a[Object(o.a)(e[t++])];return t&&t==i?a:void 0}var n=t(161),o=t(104);e.a=i},function(a,e,t){"use strict";function i(a){return n.test(a)}var n=RegExp("[\\u200d\\ud800-\\udfff\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff\\ufe0e\\ufe0f]");e.a=i},function(a,e,t){"use strict";function i(a){return function(e){return Object(n.a)(Object(r.a)(Object(o.a)(e).replace(s,"")),a,"")}}var n=t(549),o=t(399),r=t(400),s=RegExp("['’]","g");e.a=i},function(a,e,t){"use strict";function i(a,e){return(Object(s.a)(a)?n.a:r.a)(a,Object(o.a)(e,3))}var n=t(27),o=t(4),r=t(982),s=t(8);e.a=i},function(a,e,t){"use strict";function i(a){return"string"==typeof a||!Object(o.a)(a)&&Object(r.a)(a)&&Object(n.a)(a)==s}var n=t(63),o=t(8),r=t(23),s="[object String]";e.a=i},function(a,e,t){"use strict";function i(a){if("function"!=typeof a)throw new TypeError(n);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 n="Expected a function";e.a=i},function(a,e,t){"use strict";function i(a){return Object(o.a)(a)?Object(r.a)(a):Object(n.a)(a)}var n=t(1326),o=t(240),r=t(1327);e.a=i},function(a,e,t){"use strict";function i(a,e){return e(a)}e.a=i},function(a,e,t){"use strict";function i(){return Object(n.a)(this.__wrapped__,this.__actions__)}var n=t(998);e.a=i},,,,,,,function(a,e,t){(function(a){var i=t(76),n="object"==typeof e&&e&&!e.nodeType&&e,o=n&&"object"==typeof a&&a&&!a.nodeType&&a,r=o&&o.exports===n,s=r&&i.process,d=function(){try{return s&&s.binding&&s.binding("util")}catch(a){}}();a.exports=d}).call(e,t(61)(a))},function(a,e){function t(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}a.exports=t},function(a,e,t){function i(a){if("number"==typeof a)return a;if(o(a))return r;if(n(a)){var e="function"==typeof a.valueOf?a.valueOf():a;a=n(e)?e+"":e}if("string"!=typeof a)return 0===a?a:+a;a=a.replace(s,"");var t=c.test(a);return t||l.test(a)?u(a.slice(2),t?2:8):d.test(a)?r:+a}var n=t(11),o=t(24),r=NaN,s=/^\s+|\s+$/g,d=/^[-+]0x[0-9a-f]+$/i,c=/^0b[01]+$/i,l=/^0o[0-7]+$/i,u=parseInt;a.exports=i},function(a,e){function t(a){return function(e){return null==e?void 0:e[a]}}a.exports=t},,,,,,function(a,e,t){"use strict";function i(a){(0,o.defaults)(a,{original:"",marked:""}),this._properties=a}Object.defineProperty(e,"__esModule",{value:!0});var n=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},o=t(1);i.prototype.getOriginal=function(){return this._properties.original},i.prototype.getMarked=function(){return this._properties.marked},i.prototype.applyWithReplace=function(a){return a.split(this._properties.original).join(this._properties.marked)},i.prototype.serialize=function(){return n({_parseClass:"Mark"},this._properties)},i.parse=function(a){return new i(a)},e.default=i},,,,,,,,,function(a,e,t){function i(a,e){return a&&n(a,e,o)}var n=t(220),o=t(35);a.exports=i},function(a,e){function t(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}}a.exports=t},function(a,e){function t(a,e){for(var t=-1,i=Array(a);++t<a;)i[t]=e(t);return i}a.exports=t},function(a,e,t){function i(a){return o(a)&&n(a)==r}var n=t(14),o=t(16),r="[object Arguments]";a.exports=i},function(a,e){function t(){return!1}a.exports=t},function(a,e,t){function i(a){return r(a)&&o(a.length)&&!!s[n(a)]}var n=t(14),o=t(89),r=t(16),s={};s["[object Float32Array]"]=s["[object Float64Array]"]=s["[object Int8Array]"]=s["[object Int16Array]"]=s["[object Int32Array]"]=s["[object Uint8Array]"]=s["[object Uint8ClampedArray]"]=s["[object Uint16Array]"]=s["[object Uint32Array]"]=!0,s["[object Arguments]"]=s["[object Array]"]=s["[object ArrayBuffer]"]=s["[object Boolean]"]=s["[object DataView]"]=s["[object Date]"]=s["[object Error]"]=s["[object Function]"]=s["[object Map]"]=s["[object Number]"]=s["[object Object]"]=s["[object RegExp]"]=s["[object Set]"]=s["[object String]"]=s["[object WeakMap]"]=!1,a.exports=i},function(a,e,t){var i=t(180),n=i(Object.keys,Object);a.exports=n},function(a,e,t){function i(a,e){return function(t,i){if(null==t)return t;if(!n(t))return a(t,i);for(var o=t.length,r=e?o:-1,s=Object(t);(e?r--:++r<o)&&!1!==i(s[r],r,s););return t}}var n=t(36);a.exports=i},,,,,,function(a,e){function t(a){return a!==a}a.exports=t},function(a,e){function t(a,e,t){for(var i=t-1,n=a.length;++i<n;)if(a[i]===e)return i;return-1}a.exports=t},function(a,e,t){function i(a){var e=o(a);return 1==e.length&&e[0][2]?r(e[0][0],e[0][1]):function(t){return t===a||n(t,a,e)}}var n=t(288),o=t(303),r=t(155);a.exports=i},function(a,e,t){function i(a,e,t,i){var d=t.length,c=d,l=!i;if(null==a)return!c;for(a=Object(a);d--;){var u=t[d];if(l&&u[2]?u[1]!==a[u[0]]:!(u[0]in a))return!1}for(;++d<c;){u=t[d];var p=u[0],z=a[p],g=u[1];if(l&&u[2]){if(void 0===z&&!(p in a))return!1}else{var m=new n;if(i)var w=i(z,g,p,a,e,m);if(!(void 0===w?o(g,z,r|s,i,m):w))return!1}}return!0}var n=t(90),o=t(137),r=1,s=2;a.exports=i},function(a,e,t){function i(){this.__data__=new n,this.size=0}var n=t(34);a.exports=i},function(a,e){function t(a){var e=this.__data__,t=e.delete(a);return this.size=e.size,t}a.exports=t},function(a,e){function t(a){return this.__data__.get(a)}a.exports=t},function(a,e){function t(a){return this.__data__.has(a)}a.exports=t},function(a,e,t){function i(a,e){var t=this.__data__;if(t instanceof n){var i=t.__data__;if(!o||i.length<s-1)return i.push([a,e]),this.size=++t.size,this;t=this.__data__=new r(i)}return t.set(a,e),this.size=t.size,this}var n=t(34),o=t(52),r=t(51),s=200;a.exports=i},function(a,e,t){function i(a,e,t,i,w,f){var b=c(a),h=c(e),v=b?g:d(a),k=h?g:d(e);v=v==z?m:v,k=k==z?m:k;var j=v==m,_=k==m,x=v==k;if(x&&l(a)){if(!l(e))return!1;b=!0,j=!1}if(x&&!j)return f||(f=new n),b||u(a)?o(a,e,t,i,w,f):r(a,e,v,t,i,w,f);if(!(t&p)){var O=j&&y.call(a,"__wrapped__"),q=_&&y.call(e,"__wrapped__");if(O||q){var E=O?a.value():a,A=q?e.value():e;return f||(f=new n),w(E,A,t,i,f)}}return!!x&&(f||(f=new n),s(a,e,t,i,w,f))}var n=t(90),o=t(153),r=t(298),s=t(299),d=t(140),c=t(3),l=t(67),u=t(88),p=1,z="[object Arguments]",g="[object Array]",m="[object Object]",w=Object.prototype,y=w.hasOwnProperty;a.exports=i},function(a,e){function t(a){return this.__data__.set(a,i),this}var i="__lodash_hash_undefined__";a.exports=t},function(a,e){function t(a){return this.__data__.has(a)}a.exports=t},function(a,e){function t(a,e){for(var t=-1,i=null==a?0:a.length;++t<i;)if(e(a[t],t,a))return!0;return!1}a.exports=t},function(a,e,t){function i(a,e,t,i,n,j,x){switch(t){case k:if(a.byteLength!=e.byteLength||a.byteOffset!=e.byteOffset)return!1;a=a.buffer,e=e.buffer;case v:return!(a.byteLength!=e.byteLength||!j(new o(a),new o(e)));case p:case z:case w:return r(+a,+e);case g:return a.name==e.name&&a.message==e.message;case y:case b:return a==e+"";case m:var O=d;case f:var q=i&l;if(O||(O=c),a.size!=e.size&&!q)return!1;var E=x.get(a);if(E)return E==e;i|=u,x.set(a,e);var A=s(O(a),O(e),i,n,j,x);return x.delete(a),A;case h:if(_)return _.call(a)==_.call(e)}return!1}var n=t(19),o=t(181),r=t(31),s=t(153),d=t(182),c=t(183),l=1,u=2,p="[object Boolean]",z="[object Date]",g="[object Error]",m="[object Map]",w="[object Number]",y="[object RegExp]",f="[object Set]",b="[object String]",h="[object Symbol]",v="[object ArrayBuffer]",k="[object DataView]",j=n?n.prototype:void 0,_=j?j.valueOf:void 0;a.exports=i},function(a,e,t){function i(a,e,t,i,r,d){var c=t&o,l=n(a),u=l.length;if(u!=n(e).length&&!c)return!1;for(var p=u;p--;){var z=l[p];if(!(c?z in e:s.call(e,z)))return!1}var g=d.get(a);if(g&&d.get(e))return g==e;var m=!0;d.set(a,e),d.set(e,a);for(var w=c;++p<u;){z=l[p];var y=a[z],f=e[z];if(i)var b=c?i(f,y,z,e,a,d):i(y,f,z,a,e,d);if(!(void 0===b?y===f||r(y,f,t,i,d):b)){m=!1;break}w||(w="constructor"==z)}if(m&&!w){var h=a.constructor,v=e.constructor;h!=v&&"constructor"in a&&"constructor"in e&&!("function"==typeof h&&h instanceof h&&"function"==typeof v&&v instanceof v)&&(m=!1)}return d.delete(a),d.delete(e),m}var n=t(184),o=1,r=Object.prototype,s=r.hasOwnProperty;a.exports=i},function(a,e,t){var i=t(17),n=t(6),o=i(n,"DataView");a.exports=o},function(a,e,t){var i=t(17),n=t(6),o=i(n,"Promise");a.exports=o},function(a,e,t){var i=t(17),n=t(6),o=i(n,"Set");a.exports=o},function(a,e,t){function i(a){for(var e=o(a),t=e.length;t--;){var i=e[t],r=a[i];e[t]=[i,r,n(r)]}return e}var n=t(154),o=t(35);a.exports=i},function(a,e,t){function i(a,e){return s(a)&&d(e)?c(l(a),e):function(t){var i=o(t,a);return void 0===i&&i===e?r(t,a):n(e,i,u|p)}}var n=t(137),o=t(29),r=t(305),s=t(50),d=t(154),c=t(155),l=t(26),u=1,p=2;a.exports=i},function(a,e,t){function i(a,e){return null!=a&&o(a,e,n)}var n=t(306),o=t(225);a.exports=i},function(a,e){function t(a,e){return null!=a&&e in Object(a)}a.exports=t},function(a,e,t){function i(a){return r(a)?n(s(a)):o(a)}var n=t(257),o=t(308),r=t(50),s=t(26);a.exports=i},function(a,e,t){function i(a){return function(e){return n(e,a)}}var n=t(49);a.exports=i},,,,,,,,,function(a,e,t){"use strict";function i(){}e.a=i},function(a,e,t){"use strict";function i(a){return function(){return a}}e.a=i},function(a,e,t){"use strict";function i(a,e,t){var i=a[e];s.call(a,e)&&Object(o.a)(i,t)&&(void 0!==t||e in a)||Object(n.a)(a,e,t)}var n=t(145),o=t(69),r=Object.prototype,s=r.hasOwnProperty;e.a=i},function(a,e,t){"use strict";function i(a){var e=a&&a.constructor;return a===("function"==typeof e&&e.prototype||n)}var n=Object.prototype;e.a=i},function(a,e,t){"use strict";function i(){return!1}e.a=i},function(a,e,t){"use strict";var i=t(103),n=t(236),o=t(53),r=Object(n.a)(function(a,e,t,n){Object(i.a)(e,Object(o.a)(e),a,n)});e.a=r},function(a,e,t){"use strict";function i(a,e,t){var i=null==a?void 0:Object(n.a)(a,e);return void 0===i?t:i}var n=t(239);e.a=i},function(a,e,t){"use strict";function i(a){if(!Object(o.a)(a))return!1;var e=Object(n.a)(a);return e==d||e==s||"string"==typeof a.message&&"string"==typeof a.name&&!Object(r.a)(a)}var n=t(63),o=t(23),r=t(199),s="[object DOMException]",d="[object Error]";e.a=i},function(a,e,t){"use strict";var i=t(953),n=Object(i.a)("toUpperCase");e.a=n},function(a,e,t){"use strict";function i(){return[]}e.a=i},function(a,e,t){"use strict";function i(a,e){return null!=a&&Object(o.a)(a,e,n.a)}var n=t(1300),o=t(968);e.a=i},function(a,e,t){"use strict";function i(a,e,t,i){var u=-1,p=o.a,z=!0,g=a.length,m=[],w=e.length;if(!g)return m;t&&(e=Object(s.a)(e,Object(d.a)(t))),i?(p=r.a,z=!1):e.length>=l&&(p=c.a,z=!1,e=new n.a(e));a:for(;++u<g;){var y=a[u],f=null==t?y:t(y);if(y=i||0!==y?y:0,z&&f===f){for(var b=w;b--;)if(e[b]===f)continue a;m.push(y)}else p(e,f,i)||m.push(y)}return m}var n=t(407),o=t(385),r=t(585),s=t(27),d=t(82),c=t(408),l=200;e.a=i},function(a,e,t){"use strict";function i(a,e,t){e=Object(o.a)(e,a),a=Object(s.a)(a,e);var i=null==a?a:a[Object(d.a)(Object(r.a)(e))];return null==i?void 0:Object(n.a)(i,a,t)}var n=t(80),o=t(161),r=t(65),s=t(985),d=t(104);e.a=i},function(a,e,t){"use strict";var i=t(1319),n=t(82),o=t(238),r=o.a&&o.a.isRegExp,s=r?Object(n.a)(r):i.a;e.a=s},function(a,e,t){"use strict";function i(a,e,t,i){if(!Object(s.a)(a))return a;e=Object(o.a)(e,a);for(var c=-1,l=e.length,u=l-1,p=a;null!=p&&++c<l;){var z=Object(d.a)(e[c]),g=t;if(c!=u){var m=p[z];g=i?i(m,z,p):void 0,void 0===g&&(g=Object(s.a)(m)?m:Object(r.a)(e[c+1])?[]:{})}Object(n.a)(p,z,g),p=p[z]}return a}var n=t(319),o=t(161),r=t(144),s=t(25),d=t(104);e.a=i},function(a,e,t){"use strict";function i(a){if(!a||!a.length)return[];var e=0;return a=Object(n.a)(a,function(a){if(Object(d.a)(a))return e=c(a.length,e),!0}),Object(s.a)(e,function(e){return Object(o.a)(a,Object(r.a)(e))})}var n=t(165),o=t(27),r=t(570),s=t(537),d=t(46),c=Math.max;e.a=i},,,,,,,,function(a,e,t){"use strict";function i(a){return a&&a.__esModule?a:{default:a}}Object.defineProperty(e,"__esModule",{value:!0});var n=t(1044),o=i(n),r=t(1038),s=i(r),d=t(1831),c=i(d),l=t(40),u=i(l),p=t(1832),z=t(1),g=function(a,e){this.type="Assessor",this.setI18n(a),this._assessments=[],this._options=e||{},(0,z.isUndefined)(this._options.researcher)||(this._researcher=this._options.researcher)};g.prototype.setI18n=function(a){if((0,z.isUndefined)(a))throw new s.default("The assessor requires an i18n object.");this.i18n=a},g.prototype.getAvailableAssessments=function(){return this._assessments},g.prototype.isApplicable=function(a,e,t){return!a.hasOwnProperty("isApplicable")&&"function"!=typeof a.isApplicable||a.isApplicable(e,t)},g.prototype.hasMarker=function(a){return(0,z.isFunction)(this._options.marker)&&(a.hasOwnProperty("getMarks")||"function"==typeof a.getMarks)},g.prototype.getSpecificMarker=function(){return this._options.marker},g.prototype.getPaper=function(){return this._lastPaper},g.prototype.getMarker=function(a,e,t){var i=this._options.marker;return function(){var n=a.getMarks(e,t);n=(0,c.default)(n),i(e,n)}},g.prototype.assess=function(a){(0,z.isUndefined)(this._researcher)?this._researcher=new o.default(a):this._researcher.setPaper(a);var e=this.getAvailableAssessments();this.results=[],e=(0,z.filter)(e,function(e){return this.isApplicable(e,a,this._researcher)}.bind(this)),this.setHasMarkers(!1),this.results=(0,z.map)(e,this.executeAssessment.bind(this,a,this._researcher)),this._lastPaper=a},g.prototype.setHasMarkers=function(a){this._hasMarkers=a},g.prototype.hasMarkers=function(){return this._hasMarkers},g.prototype.executeAssessment=function(a,e,t){var i;try{i=t.getResult(a,e,this.i18n),i.setIdentifier(t.identifier),i.hasMarks()&&(i.marks=t.getMarks(a,e),i.marks=(0,c.default)(i.marks)),i.hasMarks()&&this.hasMarker(t)&&(this.setHasMarkers(!0),i.setMarker(this.getMarker(t,a,e)))}catch(a){(0,p.showTrace)(a),i=new u.default,i.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},g.prototype.getValidResults=function(){return(0,z.filter)(this.results,function(a){return this.isValidResult(a)}.bind(this))},g.prototype.isValidResult=function(a){return a.hasScore()&&a.hasText()},g.prototype.calculateOverallScore=function(){var a=this.getValidResults(),e=0;return(0,z.forEach)(a,function(a){e+=a.getScore()}),Math.round(e/(9*a.length)*100)||0},g.prototype.addAssessment=function(a,e){return e.hasOwnProperty("identifier")||(e.identifier=a),this._assessments.push(e),!0},g.prototype.removeAssessment=function(a){var e=(0,z.findIndex)(this._assessments,function(e){return e.hasOwnProperty("identifier")&&a===e.identifier});-1!==e&&this._assessments.splice(e,1)},g.prototype.getAssessment=function(a){return(0,z.find)(this._assessments,function(e){return e.hasOwnProperty("identifier")&&a===e.identifier})},g.prototype.getApplicableAssessments=function(){var a=this.getAvailableAssessments();return(0,z.filter)(a,function(a){return this.isApplicable(a,this.getPaper())}.bind(this))},e.default=g},,,,,,,,,,,,function(a,e,t){function i(a){return"string"==typeof a||!o(a)&&r(a)&&n(a)==s}var n=t(14),o=t(3),r=t(16),s="[object String]";a.exports=i},function(a,e,t){function i(a){var e=n(a),t=e%1;return e===e?t?e-t:e:0}var n=t(492);a.exports=i},function(a,e,t){function i(a){return null==a?[]:n(a,o(a))}var n=t(355),o=t(35);a.exports=i},function(a,e,t){function i(a,e){return n(e,function(e){return a[e]})}var n=t(42);a.exports=i},,,,,,,,,,,,,,,,,,,,,,,,,,function(a,e,t){"use strict";function i(a,e){return function(t,i){var r;if(void 0===t&&void 0===i)return e;if(void 0!==t&&(r=t),void 0!==i){if(void 0===r)return i;"string"==typeof t||"string"==typeof i?(t=Object(o.a)(t),i=Object(o.a)(i)):(t=Object(n.a)(t),i=Object(n.a)(i)),r=a(t,i)}return r}}var n=t(1232),o=t(101);e.a=i},function(a,e,t){"use strict";function i(a,e,t){return e=t?void 0:e,e=a&&null==e?a.length:e,Object(n.a)(a,o,void 0,void 0,void 0,void 0,e)}var n=t(142),o=128;e.a=i},function(a,e,t){"use strict";function i(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=Object(n.a)(a.prototype),i=a.apply(t,e);return Object(o.a)(i)?i:t}}var n=t(233),o=t(25);e.a=i},function(a,e,t){"use strict";function i(){}e.a=i},function(a,e,t){"use strict";function i(a,e){return!!(null==a?0:a.length)&&Object(n.a)(a,e,0)>-1}var n=t(234);e.a=i},function(a,e,t){"use strict";function i(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}e.a=i},function(a,e,t){"use strict";var i=t(103),n=t(236),o=t(53),r=Object(n.a)(function(a,e){Object(i.a)(e,Object(o.a)(e),a)});e.a=r},function(a,e,t){"use strict";function i(a,e){if("function"!=typeof a||null!=e&&"function"!=typeof e)throw new TypeError(o);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(i.Cache||n.a),t}var n=t(544),o="Expected a function";i.Cache=n.a,e.a=i},function(a,e,t){"use strict";var i=t(194),n=Object(i.a)(Object,"create");e.a=n},function(a,e,t){"use strict";function i(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])}}var n=t(1261),o=t(1262),r=t(1263),s=t(1264),d=t(1265);i.prototype.clear=n.a,i.prototype.delete=o.a,i.prototype.get=r.a,i.prototype.has=s.a,i.prototype.set=d.a,e.a=i},function(a,e,t){"use strict";function i(a,e){for(var t=a.length;t--;)if(Object(n.a)(a[t][0],e))return t;return-1}var n=t(69);e.a=i},function(a,e,t){"use strict";function i(a,e){var t=a.__data__;return Object(n.a)(e)?t["string"==typeof e?"string":"hash"]:t.map}var n=t(1267);e.a=i},function(a,e,t){"use strict";function i(a){return(null==a?0:a.length)?Object(n.a)(a,1):[]}var n=t(45);e.a=i},function(a,e,t){"use strict";var i=t(80),n=t(9),o=t(324),r=Object(n.a)(function(a,e){try{return Object(i.a)(a,void 0,e)}catch(a){return Object(o.a)(a)?a:new Error(a)}});e.a=r},function(a,e,t){"use strict";var i=t(951),n=Object(i.a)(Object.getPrototypeOf,Object);e.a=n},function(a,e,t){"use strict";function i(a,e){var t;if("function"!=typeof e)throw new TypeError(o);return a=Object(n.a)(a),function(){return--a>0&&(t=e.apply(this,arguments)),a<=1&&(e=void 0),t}}var n=t(10),o="Expected a function";e.a=i},function(a,e,t){"use strict";var i=t(9),n=t(142),o=t(235),r=t(198),s=Object(i.a)(function(a,e,t){var i=1;if(t.length){var d=Object(r.a)(t,Object(o.a)(s));i|=32}return Object(n.a)(a,i,e,t,d)});s.placeholder={},e.a=s},function(a,e,t){"use strict";function i(a){return Object(o.a)(Object(n.a)(a).toLowerCase())}var n=t(13),o=t(325);e.a=i},function(a,e,t){"use strict";function i(a){return(a=Object(o.a)(a))&&a.replace(r,n.a).replace(s,"")}var n=t(1274),o=t(13),r=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,s=RegExp("[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]","g");e.a=i},function(a,e,t){"use strict";function i(a,e,t){return a=Object(r.a)(a),e=t?void 0:e,void 0===e?Object(o.a)(a)?Object(s.a)(a):Object(n.a)(a):a.match(e)||[]}var n=t(1275),o=t(1276),r=t(13),s=t(1277);e.a=i},function(a,e,t){"use strict";function i(a){var e=Object(n.a)(a);return e.__chain__=!0,e}var n=t(195);e.a=i},function(a,e,t){"use strict";function i(a){var e=this.__data__=new n.a(a);this.size=e.size}var n=t(390),o=t(1278),r=t(1279),s=t(1280),d=t(1281),c=t(1282);i.prototype.clear=o.a,i.prototype.delete=r.a,i.prototype.get=s.a,i.prototype.has=d.a,i.prototype.set=c.a,e.a=i},function(a,e,t){"use strict";var i=t(1293),n=t(82),o=t(238),r=o.a&&o.a.isMap,s=r?Object(n.a)(r):i.a;e.a=s},function(a,e,t){"use strict";var i=t(1294),n=t(82),o=t(238),r=o.a&&o.a.isSet,s=r?Object(n.a)(r):i.a;e.a=s},function(a,e,t){"use strict";function i(){return new n.a(this.value(),this.__chain__)}var n=t(196);e.a=i},function(a,e,t){"use strict";function i(a,e,t,r,s){return a===e||(null==a||null==e||!Object(o.a)(a)&&!Object(o.a)(e)?a!==a&&e!==e:Object(n.a)(a,e,t,r,i,s))}var n=t(1295),o=t(23);e.a=i},function(a,e,t){"use strict";function i(a){var e=-1,t=null==a?0:a.length;for(this.__data__=new n.a;++e<t;)this.add(a[e])}var n=t(544),o=t(1296),r=t(1297);i.prototype.add=i.prototype.push=o.a,i.prototype.has=r.a,e.a=i},function(a,e,t){"use strict";function i(a,e){return a.has(e)}e.a=i},function(a,e,t){"use strict";function i(a){var e=-1,t=Array(a.size);return a.forEach(function(a){t[++e]=a}),t}e.a=i},function(a,e,t){"use strict";function i(a){return Object(r.a)(a)?Object(n.a)(Object(s.a)(a)):Object(o.a)(a)}var n=t(570),o=t(1301),r=t(543),s=t(104);e.a=i},function(a,e,t){"use strict";function i(a,e){return function(t,i){var d=Object(s.a)(t)?n.a:o.a,c=e?e():{};return d(t,a,Object(r.a)(i,2),c)}}var n=t(1303),o=t(1304),r=t(4),s=t(8);e.a=i},function(a,e,t){"use strict";function i(a,e,t){function i(e){var t=f,i=b;return f=b=void 0,_=e,v=a.apply(i,t)}function l(a){return _=a,k=setTimeout(z,e),x?i(a):v}function u(a){var t=a-j,i=a-_,n=e-t;return O?c(n,h-i):n}function p(a){var t=a-j,i=a-_;return void 0===j||t>=e||t<0||O&&i>=h}function z(){var a=Object(o.a)();if(p(a))return g(a);k=setTimeout(z,u(a))}function g(a){return k=void 0,q&&f?i(a):(f=b=void 0,v)}function m(){void 0!==k&&clearTimeout(k),_=0,f=j=b=k=void 0}function w(){return void 0===k?v:g(Object(o.a)())}function y(){var a=Object(o.a)(),t=p(a);if(f=arguments,b=this,j=a,t){if(void 0===k)return l(j);if(O)return k=setTimeout(z,e),i(j)}return void 0===k&&(k=setTimeout(z,e)),v}var f,b,h,v,k,j,_=0,x=!1,O=!1,q=!0;if("function"!=typeof a)throw new TypeError(s);return e=Object(r.a)(e)||0,Object(n.a)(t)&&(x=!!t.leading,O="maxWait"in t,h=O?d(Object(r.a)(t.maxWait)||0,e):h,q="trailing"in t?!!t.trailing:q),y.cancel=m,y.flush=w,y}var n=t(25),o=t(413),r=t(102),s="Expected a function",d=Math.max,c=Math.min;e.a=i},function(a,e,t){"use strict";var i=t(39),n=function(){return i.a.Date.now()};e.a=n},function(a,e,t){"use strict";function i(a){return Object(n.a)(a,Object(o.a)(a))}var n=t(103),o=t(53);e.a=i},function(a,e,t){"use strict";var i=t(581),n=t(236),o=Object(n.a)(function(a,e,t,n){Object(i.a)(a,e,t,n)});e.a=o},function(a,e,t){"use strict";function i(a,e,t,i){for(var o=a.length,r=i?o:-1;(i?r--:++r<o)&&e(a[r],r,a););return t?Object(n.a)(a,i?0:r,i?r+1:o):Object(n.a)(a,i?r+1:0,i?o:r)}var n=t(92);e.a=i},function(a,e,t){"use strict";function i(a,e){return(Object(s.a)(a)?n.a:o.a)(a,Object(r.a)(e))}var n=t(197),o=t(166),r=t(105),s=t(8);e.a=i},function(a,e,t){"use strict";function i(a,e){return(Object(s.a)(a)?n.a:o.a)(a,Object(r.a)(e))}var n=t(1307),o=t(975),r=t(105),s=t(8);e.a=i},function(a,e,t){"use strict";var i=t(977),n=t(30),o=Object(i.a)(n.a);e.a=o},function(a,e,t){"use strict";var i=t(977),n=t(53),o=Object(i.a)(n.a);e.a=o},function(a,e,t){"use strict";function i(a){return a=Object(o.a)(a),a&&s.test(a)?a.replace(r,n.a):a}var n=t(1310),o=t(13),r=/[&<>"']/g,s=RegExp(r.source);e.a=i},function(a,e,t){"use strict";function i(a){return a?Object(n.a)(Object(o.a)(a),0,r):0}var n=t(200),o=t(10),r=4294967295;e.a=i},function(a,e,t){"use strict";function i(a,e,t){var i=null==a?0:a.length;if(!i)return-1;var d=null==t?0:Object(r.a)(t);return d<0&&(d=s(i+d,0)),Object(n.a)(a,Object(o.a)(e,3),d)}var n=t(386),o=t(4),r=t(10),s=Math.max;e.a=i},function(a,e,t){"use strict";function i(a,e,t){var i=null==a?0:a.length;if(!i)return-1;var c=i-1;return void 0!==t&&(c=Object(r.a)(t),c=t<0?s(i+c,0):d(c,i-1)),Object(n.a)(a,Object(o.a)(e,3),c,!0)}var n=t(386),o=t(4),r=t(10),s=Math.max,d=Math.min;e.a=i},function(a,e,t){"use strict";function i(a){return a&&a.length?a[0]:void 0}e.a=i},function(a,e,t){"use strict";function i(a,e){return Object(n.a)(e,function(e){return Object(o.a)(a[e])})}var n=t(165),o=t(91);e.a=i},function(a,e,t){"use strict";function i(a){return function(e,t){return"string"==typeof e&&"string"==typeof t||(e=Object(n.a)(e),t=Object(n.a)(t)),a(e,t)}}var n=t(102);e.a=i},function(a,e,t){"use strict";function i(a){return"number"==typeof a&&a==Object(n.a)(a)}var n=t(10);e.a=i},function(a,e,t){"use strict";function i(a){return"number"==typeof a||Object(o.a)(a)&&Object(n.a)(a)==r}var n=t(63),o=t(23),r="[object Number]";e.a=i},function(a,e,t){"use strict";function i(a,e,t){for(var i=-1,o=a.length;++i<o;){var r=a[i],s=e(r);if(null!=s&&(void 0===d?s===s&&!Object(n.a)(s):t(s,d)))var d=s,c=r}return c}var n=t(68);e.a=i},function(a,e,t){"use strict";function i(a,e,t){var i=Object(l.a)(e),u=Object(r.a)(e,i),p=!(Object(c.a)(t)&&"chain"in t&&!t.chain),z=Object(d.a)(a);return Object(n.a)(u,function(t){var i=e[t];a[t]=i,z&&(a.prototype[t]=function(){var e=this.__chain__;if(p||e){var t=a(this.__wrapped__);return(t.__actions__=Object(s.a)(this.__actions__)).push({func:i,args:arguments,thisArg:a}),t.__chain__=e,t}return i.apply(a,Object(o.a)([this.value()],arguments))})}),a}var n=t(197),o=t(162),r=t(426),s=t(81),d=t(91),c=t(25),l=t(30);e.a=i},function(a,e,t){"use strict";function i(){void 0===this.__values__&&(this.__values__=Object(n.a)(this.value()));var a=this.__index__>=this.__values__.length;return{done:a,value:a?void 0:this.__values__[this.__index__++]}}var n=t(433);e.a=i},function(a,e,t){"use strict";function i(a){if(!a)return[];if(Object(s.a)(a))return Object(d.a)(a)?Object(p.a)(a):Object(o.a)(a);if(w&&a[w])return Object(c.a)(a[w]());var e=Object(r.a)(a);return(e==g?l.a:e==m?u.a:z.a)(a)}var n=t(158),o=t(81),r=t(149),s=t(44),d=t(243),c=t(1321),l=t(568),u=t(409),p=t(164),z=t(168),g="[object Map]",m="[object Set]",w=n.a?n.a.iterator:void 0;e.a=i},function(a,e,t){"use strict";function i(a,e){if(null==a)return{};var t=Object(n.a)(Object(s.a)(a),function(a){return[a]});return e=Object(o.a)(e),Object(r.a)(a,t,function(a,t){return e(a,t[0])})}var n=t(27),o=t(4),r=t(988),s=t(558);e.a=i},function(a,e,t){"use strict";var i=t(9),n=t(142),o=t(235),r=t(198),s=Object(i.a)(function(a,e){var t=Object(r.a)(e,Object(o.a)(s));return Object(n.a)(a,32,void 0,e,t)});s.placeholder={},e.a=s},function(a,e,t){"use strict";function i(a){for(var e,t=this;t instanceof n.a;){var i=Object(o.a)(t);i.__index__=0,i.__values__=void 0,e?r.__wrapped__=i:e=i;var r=i;t=t.__wrapped__}return r.__wrapped__=a,e}var n=t(384),o=t(943);e.a=i},function(a,e,t){"use strict";function i(a,e){return a&&a.length&&e&&e.length?Object(n.a)(a,e):a}var n=t(710);e.a=i},function(a,e,t){"use strict";function i(a){return null==a?a:o.call(a)}var n=Array.prototype,o=n.reverse;e.a=i},function(a,e,t){"use strict";function i(a,e){var t=-1,i=a.length,o=i-1;for(e=void 0===e?i:e;++t<e;){var r=Object(n.a)(t,o),s=a[r];a[r]=a[t],a[t]=s}return a.length=e,a}var n=t(715);e.a=i},function(a,e,t){"use strict";function i(a,e,t){var i=0,d=null==a?i:a.length;if("number"==typeof e&&e===e&&d<=s){for(;i<d;){var c=i+d>>>1,l=a[c];null!==l&&!Object(r.a)(l)&&(t?l<=e:l<e)?i=c+1:d=c}return d}return Object(n.a)(a,e,o.a,t)}var n=t(739),o=t(43),r=t(68),s=2147483647;e.a=i},function(a,e,t){"use strict";var i=t(421),n=t(1340),o=t(1341),r=t(997),s={escape:n.a,evaluate:o.a,interpolate:r.a,variable:"",imports:{_:{escape:i.a}}};e.a=s},function(a,e,t){"use strict";function i(){return this}e.a=i},function(a,e,t){"use strict";function i(a,e){if(!a||!a.length)return[];var t=Object(r.a)(a);return null==e?t:Object(o.a)(t,function(a){return Object(n.a)(e,void 0,a)})}var n=t(80),o=t(27),r=t(332);e.a=i},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){function t(){throw new Error("setTimeout has not been defined")}function i(){throw new Error("clearTimeout has not been defined")}function n(a){if(l===setTimeout)return setTimeout(a,0);if((l===t||!l)&&setTimeout)return l=setTimeout,setTimeout(a,0);try{return l(a,0)}catch(e){try{return l.call(null,a,0)}catch(e){return l.call(this,a,0)}}}function o(a){if(u===clearTimeout)return clearTimeout(a);if((u===i||!u)&&clearTimeout)return u=clearTimeout,clearTimeout(a);try{return u(a)}catch(e){try{return u.call(null,a)}catch(e){return u.call(this,a)}}}function r(){m&&z&&(m=!1,z.length?g=z.concat(g):w=-1,g.length&&s())}function s(){if(!m){var a=n(r);m=!0;for(var e=g.length;e;){for(z=g,g=[];++w<e;)z&&z[w].run();w=-1,e=g.length}z=null,m=!1,o(a)}}function d(a,e){this.fun=a,this.array=e}function c(){}var l,u,p=a.exports={};!function(){try{l="function"==typeof setTimeout?setTimeout:t}catch(a){l=t}try{u="function"==typeof clearTimeout?clearTimeout:i}catch(a){u=i}}();var z,g=[],m=!1,w=-1;p.nextTick=function(a){var e=new Array(arguments.length-1);if(arguments.length>1)for(var t=1;t<arguments.length;t++)e[t-1]=arguments[t];g.push(new d(a,e)),1!==g.length||m||n(s)},d.prototype.run=function(){this.fun.apply(null,this.array)},p.title="browser",p.browser=!0,p.env={},p.argv=[],p.version="",p.versions={},p.on=c,p.addListener=c,p.once=c,p.off=c,p.removeListener=c,p.removeAllListeners=c,p.emit=c,p.prependListener=c,p.prependOnceListener=c,p.listeners=function(a){return[]},p.binding=function(a){throw new Error("process.binding is not supported")},p.cwd=function(){return"/"},p.chdir=function(a){throw new Error("process.chdir is not supported")},p.umask=function(){return 0}},,,,,,,,,,,,,,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}),e.default=function(a){return(0,n.default)(a).length};var i=t(213),n=function(a){return a&&a.__esModule?a:{default:a}}(i)},function(a,e,t){"use strict";function i(a){if(Array.isArray(a)){for(var e=0,t=Array(a.length);e<a.length;e++)t[e]=a[e];return t}return Array.from(a)}Object.defineProperty(e,"__esModule",{value:!0}),e.findTopicFormsInString=e.findWordFormsInString=void 0;var n=t(1010),o=function(a){return a&&a.__esModule?a:{default:a}}(n),r=t(1),s=function(a,e,t){for(var i=a.length,n=Array(i),s=0;s<i;s++){var d=(0,o.default)(e,a[s],t).count>0;n[s]=d?1:0}var c=(0,r.sum)(n),l={countWordMatches:c,percentWordMatches:0};return i>0&&(l.percentWordMatches=Math.round(c/i*100)),l},d=function(a,e,t,n){var o=s(a.keyphraseForms,e,n);if(o.keyphraseOrSynonym="keyphrase",100===o.percentWordMatches||!1===t||(0,r.isEmpty)(a.synonymsForms))return o;for(var d=[],c=0;c<a.synonymsForms.length;c++){var l=a.synonymsForms[c];d[c]=s(l,e,n)}var u=d.map(function(a){return a.percentWordMatches}),p=u.indexOf(Math.max.apply(Math,i(u)));return o.percentWordMatches>=d[p].percentWordMatches?o:(o=d[p],o.keyphraseOrSynonym="synonym",o)};e.findWordFormsInString=s,e.findTopicFormsInString=d},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t(1),n=t(1779),o={auxiliaries:[],type:"",language:""},r=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)+".")})},s=function(a,e,t){this.setParticiple(a),this.setSentencePart(e),this._determinesSentencePartIsPassive=!1,t=t||{},(0,i.defaults)(t,o),r(t),this._attributes=t};s.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},s.prototype.getParticiple=function(){return this._participle},s.prototype.setSentencePart=function(a){if(""===a)throw Error("The sentence part should not be empty.");this._sentencePart=a},s.prototype.getSentencePart=function(){return this._sentencePart},s.prototype.getType=function(){return this._attributes.type},s.prototype.getAuxiliaries=function(){return this._attributes.auxiliaries},s.prototype.getLanguage=function(){return this._attributes.language},s.prototype.determinesSentencePartIsPassive=function(){return this._determinesSentencePartIsPassive},s.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},s.prototype.serialize=function(){return{_parseClass:"Participle",attributes:this._attributes,participle:this._participle,sentencePart:this._sentencePart,determinesSentencePartIsPassive:this._determinesSentencePartIsPassive}},s.parse=function(a){var e=new s(a.participle,a.sentencePart,a.attributes);return e.setSentencePartPassiveness(a.determinesSentencePartIsPassive),e},e.default=s},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){var e=new i(a.sentencePartText,a.auxiliaries,a.locale);return e.setPassive(a.isPassive),e},e.default=i},,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(a,e,t){function i(a){if(!a)return 0===a?a:0;if((a=n(a))===o||a===-o){return(a<0?-1:1)*r}return a===a?a:0}var n=t(256),o=1/0,r=1.7976931348623157e308;a.exports=i},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(a,e,t){"use strict";var i=t(381),n=Object(i.a)(function(a,e){return a+e},0);e.a=n},function(a,e,t){"use strict";function i(a,e){if("function"!=typeof e)throw new TypeError(o);return a=Object(n.a)(a),function(){if(--a<1)return e.apply(this,arguments)}}var n=t(10),o="Expected a function";e.a=i},function(a,e,t){"use strict";function i(a,e,t,b,h,v,k,j,_,x){function O(){for(var z=arguments.length,g=Array(z),m=z;m--;)g[m]=arguments[m];if(T)var w=Object(c.a)(O),y=Object(r.a)(g,w);if(b&&(g=Object(n.a)(g,b,h,T)),v&&(g=Object(o.a)(g,v,k,T)),z-=y,T&&z<x){var f=Object(u.a)(g,w);return Object(d.a)(a,e,i,O.placeholder,t,g,f,j,_,x-z)}var P=E?t:this,C=A?P[a]:a;return z=g.length,j?g=Object(l.a)(g,j):S&&z>1&&g.reverse(),q&&_<z&&(g.length=_),this&&this!==p.a&&this instanceof O&&(C=M||Object(s.a)(C)),C.apply(P,g)}var q=e&y,E=e&z,A=e&g,T=e&(m|w),S=e&f,M=A?void 0:Object(s.a)(a);return O}var n=t(937),o=t(938),r=t(1239),s=t(383),d=t(939),c=t(235),l=t(1245),u=t(198),p=t(39),z=1,g=2,m=8,w=16,y=128,f=512;e.a=i},function(a,e,t){"use strict";var i=t(932),n=t(317),o=i.a?function(a){return i.a.get(a)}:n.a;e.a=o},function(a,e,t){"use strict";var i=t(1242),n=t(945),o=Object(n.a)(i.a);e.a=o},function(a,e,t){"use strict";var i=t(319),n=t(103),o=t(236),r=t(44),s=t(320),d=t(30),c=Object.prototype,l=c.hasOwnProperty,u=Object(o.a)(function(a,e){if(Object(s.a)(e)||Object(r.a)(e))return void Object(n.a)(e,Object(d.a)(e),a);for(var t in e)l.call(e,t)&&Object(i.a)(a,t,e[t])});e.a=u},function(a,e,t){"use strict";function i(a,e){for(var t=-1,i=Array(a);++t<a;)i[t]=e(t);return i}e.a=i},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";function i(a){if(!Object(n.a)(a))return Object(o.a)(a);var e=[];for(var t in Object(a))s.call(a,t)&&"constructor"!=t&&e.push(t);return e}var n=t(320),o=t(1250),r=Object.prototype,s=r.hasOwnProperty;e.a=i},function(a,e,t){"use strict";var i=t(103),n=t(236),o=t(30),r=Object(n.a)(function(a,e,t,n){Object(i.a)(e,Object(o.a)(e),a,n)});e.a=r},function(a,e,t){"use strict";var i=t(542),n=t(147),o=Object(n.a)(i.a);e.a=o},function(a,e,t){"use strict";function i(a,e){for(var t=-1,i=e.length,o=Array(i),r=null==a;++t<i;)o[t]=r?void 0:Object(n.a)(a,e[t]);return o}var n=t(323);e.a=i},function(a,e,t){"use strict";function i(a,e){if(Object(n.a)(a))return!1;var t=typeof a;return!("number"!=t&&"symbol"!=t&&"boolean"!=t&&null!=a&&!Object(o.a)(a))||(s.test(a)||!r.test(a)||null!=e&&a in Object(e))}var n=t(8),o=t(68),r=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,s=/^\w*$/;e.a=i},function(a,e,t){"use strict";function i(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])}}var n=t(1254),o=t(1266),r=t(1268),s=t(1269),d=t(1270);i.prototype.clear=n.a,i.prototype.delete=o.a,i.prototype.get=r.a,i.prototype.has=s.a,i.prototype.set=d.a,e.a=i},function(a,e,t){"use strict";var i=t(194),n=t(39),o=Object(i.a)(n.a,"Map");e.a=o},function(a,e,t){"use strict";var i=t(197),n=t(145),o=t(397),r=t(147),s=t(104),d=Object(r.a)(function(a,e){return Object(i.a)(e,function(e){e=Object(s.a)(e),Object(n.a)(a,e,Object(o.a)(a[e],a))}),a});e.a=d},function(a,e,t){"use strict";var i=t(9),n=t(142),o=t(235),r=t(198),s=Object(i.a)(function(a,e,t){var i=3;if(t.length){var d=Object(r.a)(t,Object(o.a)(s));i|=32}return Object(n.a)(e,i,a,t,d)});s.placeholder={},e.a=s},function(a,e,t){"use strict";var i=t(398),n=t(241),o=Object(n.a)(function(a,e,t){return e=e.toLowerCase(),a+(t?Object(i.a)(e):e)});e.a=o},function(a,e,t){"use strict";function i(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}e.a=i},function(a,e,t){"use strict";function i(a){return function(e){return null==a?void 0:a[e]}}e.a=i},function(a,e,t){"use strict";function i(){if(!arguments.length)return[];var a=arguments[0];return Object(n.a)(a)?a:[a]}var n=t(8);e.a=i},function(a,e,t){"use strict";var i=t(553),n=Object(i.a)("ceil");e.a=n},function(a,e,t){"use strict";function i(a){var e=Math[a];return function(a,t){if(a=Object(o.a)(a),t=null==t?0:s(Object(n.a)(t),292)){var i=(Object(r.a)(a)+"e").split("e"),d=e(i[0]+"e"+(+i[1]+t));return i=(Object(r.a)(d)+"e").split("e"),+(i[0]+"e"+(+i[1]-t))}return e(a)}}var n=t(10),o=t(102),r=t(13),s=Math.min;e.a=i},function(a,e,t){"use strict";function i(a,e,t){e=(t?Object(o.a)(a,e,t):void 0===e)?1:d(Object(r.a)(e),0);var i=null==a?0:a.length;if(!i||e<1)return[];for(var c=0,l=0,u=Array(s(i/e));c<i;)u[l++]=Object(n.a)(a,c,c+=e);return u}var n=t(92),o=t(64),r=t(10),s=Math.ceil,d=Math.max;e.a=i},function(a,e,t){"use strict";function i(a,e,t){return void 0===t&&(t=e,e=void 0),void 0!==t&&(t=Object(o.a)(t),t=t===t?t:0),void 0!==e&&(e=Object(o.a)(e),e=e===e?e:0),Object(n.a)(Object(o.a)(a),e,t)}var n=t(200),o=t(102);e.a=i},function(a,e,t){"use strict";function i(a){return Object(n.a)(a,o)}var n=t(148),o=4;e.a=i},function(a,e,t){"use strict";var i=t(165),n=t(326),o=Object.prototype,r=o.propertyIsEnumerable,s=Object.getOwnPropertySymbols,d=s?function(a){return null==a?[]:(a=Object(a),Object(i.a)(s(a),function(e){return r.call(a,e)}))}:n.a;e.a=d},function(a,e,t){"use strict";function i(a){return Object(n.a)(a,r.a,o.a)}var n=t(958),o=t(956),r=t(53);e.a=i},function(a,e,t){"use strict";function i(a){var e=new a.constructor(a.byteLength);return new n.a(e).set(new n.a(a)),e}var n=t(960);e.a=i},function(a,e,t){"use strict";function i(a){return Object(n.a)(a,o|r)}var n=t(148),o=1,r=4;e.a=i},function(a,e,t){"use strict";function i(a,e){return e="function"==typeof e?e:void 0,Object(n.a)(a,o|r,e)}var n=t(148),o=1,r=4;e.a=i},function(a,e,t){"use strict";function i(a,e){return e="function"==typeof e?e:void 0,Object(n.a)(a,o,e)}var n=t(148),o=4;e.a=i},function(a,e,t){"use strict";function i(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}e.a=i},function(a,e,t){"use strict";function i(){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(n.a)(Object(s.a)(t)?Object(r.a)(t):[t],Object(o.a)(e,1))}var n=t(162),o=t(45),r=t(81),s=t(8);e.a=i},function(a,e,t){"use strict";function i(a){var e=null==a?0:a.length,t=r.a;return a=e?Object(o.a)(a,function(a){if("function"!=typeof a[1])throw new TypeError(d);return[t(a[0]),a[1]]}):[],Object(s.a)(function(t){for(var i=-1;++i<e;){var o=a[i];if(Object(n.a)(o[0],this,t))return Object(n.a)(o[1],this,t)}})}var n=t(80),o=t(27),r=t(4),s=t(9),d="Expected a function";e.a=i},function(a,e,t){"use strict";function i(a,e,t,i){var d=t.length,c=d,l=!i;if(null==a)return!c;for(a=Object(a);d--;){var u=t[d];if(l&&u[2]?u[1]!==a[u[0]]:!(u[0]in a))return!1}for(;++d<c;){u=t[d];var p=u[0],z=a[p],g=u[1];if(l&&u[2]){if(void 0===z&&!(p in a))return!1}else{var m=new n.a;if(i)var w=i(z,g,p,a,e,m);if(!(void 0===w?Object(o.a)(g,z,r|s,i,m):w))return!1}}return!0}var n=t(402),o=t(406),r=1,s=2;e.a=i},function(a,e,t){"use strict";function i(a,e){for(var t=-1,i=null==a?0:a.length;++t<i;)if(e(a[t],t,a))return!0;return!1}e.a=i},function(a,e,t){"use strict";function i(a){var e=-1,t=Array(a.size);return a.forEach(function(a,i){t[++e]=[i,a]}),t}e.a=i},function(a,e,t){"use strict";function i(a){for(var e=Object(o.a)(a),t=e.length;t--;){var i=e[t],r=a[i];e[t]=[i,r,Object(n.a)(r)]}return e}var n=t(965),o=t(30);e.a=i},function(a,e,t){"use strict";function i(a){return function(e){return null==e?void 0:e[a]}}e.a=i},function(a,e,t){"use strict";function i(a){return Object(o.a)(Object(n.a)(a,r))}var n=t(148),o=t(1302),r=1;e.a=i},function(a,e,t){"use strict";function i(a,e){return null==e||Object(n.a)(a,e,Object(o.a)(e))}var n=t(969),o=t(30);e.a=i},function(a,e,t){"use strict";var i=t(145),n=t(411),o=Object.prototype,r=o.hasOwnProperty,s=Object(n.a)(function(a,e,t){r.call(a,t)?++a[t]:Object(i.a)(a,t,1)});e.a=s},function(a,e,t){"use strict";var i=t(970),n=Object(i.a)();e.a=n},function(a,e,t){"use strict";function i(a,e){var t=Object(o.a)(a);return null==e?t:Object(n.a)(t,e)}var n=t(954),o=t(233);e.a=i},function(a,e,t){"use strict";function i(a,e,t){e=t?void 0:e;var r=Object(n.a)(a,o,void 0,void 0,void 0,void 0,void 0,e);return r.placeholder=i.placeholder,r}var n=t(142),o=8;i.placeholder={},e.a=i},function(a,e,t){"use strict";function i(a,e,t){e=t?void 0:e;var r=Object(n.a)(a,o,void 0,void 0,void 0,void 0,void 0,e);return r.placeholder=i.placeholder,r}var n=t(142),o=16;i.placeholder={},e.a=i},function(a,e,t){"use strict";function i(a,e){return null==a||a!==a?e:a}e.a=i},function(a,e,t){"use strict";var i=t(9),n=t(69),o=t(64),r=t(53),s=Object.prototype,d=s.hasOwnProperty,c=Object(i.a)(function(a,e){a=Object(a);var t=-1,i=e.length,c=i>2?e[2]:void 0;for(c&&Object(o.a)(e[0],e[1],c)&&(i=1);++t<i;)for(var l=e[t],u=Object(r.a)(l),p=-1,z=u.length;++p<z;){var g=u[p],m=a[g];(void 0===m||Object(n.a)(m,s[g])&&!d.call(a,g))&&(a[g]=l[g])}return a});e.a=c},function(a,e,t){"use strict";var i=t(80),n=t(9),o=t(1305),r=t(415),s=Object(n.a)(function(a){return a.push(void 0,o.a),Object(i.a)(r.a,void 0,a)});e.a=s},function(a,e,t){"use strict";function i(a,e,t,u,p){a!==e&&Object(r.a)(e,function(r,c){if(Object(d.a)(r))p||(p=new n.a),Object(s.a)(a,e,c,t,i,u,p);else{var z=u?u(Object(l.a)(a,c),r,c+"",a,e,p):void 0;void 0===z&&(z=r),Object(o.a)(a,c,z)}},c.a)}var n=t(402),o=t(972),r=t(574),s=t(1306),d=t(25),c=t(53),l=t(973);e.a=i},function(a,e,t){"use strict";var i=t(974),n=t(9),o=Object(n.a)(function(a,e){return Object(i.a)(a,1,e)});e.a=o},function(a,e,t){"use strict";var i=t(974),n=t(9),o=t(102),r=Object(n.a)(function(a,e,t){return Object(i.a)(a,Object(o.a)(e)||0,t)});e.a=r},function(a,e,t){"use strict";var i=t(328),n=t(45),o=t(9),r=t(46),s=Object(o.a)(function(a,e){return Object(r.a)(a)?Object(i.a)(a,Object(n.a)(e,1,r.a,!0)):[]});e.a=s},function(a,e,t){"use strict";function i(a,e,t){for(var i=-1,n=null==a?0:a.length;++i<n;)if(t(e,a[i]))return!0;return!1}e.a=i},function(a,e,t){"use strict";var i=t(328),n=t(45),o=t(4),r=t(9),s=t(46),d=t(65),c=Object(r.a)(function(a,e){var t=Object(d.a)(e);return Object(s.a)(t)&&(t=void 0),Object(s.a)(a)?Object(i.a)(a,Object(n.a)(e,1,s.a,!0),Object(o.a)(t,2)):[]});e.a=c},function(a,e,t){"use strict";var i=t(328),n=t(45),o=t(9),r=t(46),s=t(65),d=Object(o.a)(function(a,e){var t=Object(s.a)(e);return Object(r.a)(t)&&(t=void 0),Object(r.a)(a)?Object(i.a)(a,Object(n.a)(e,1,r.a,!0),void 0,t):[]});e.a=d},function(a,e,t){"use strict";var i=t(381),n=Object(i.a)(function(a,e){return a/e},1);e.a=n},function(a,e,t){"use strict";function i(a,e,t){var i=null==a?0:a.length;return i?(e=t||void 0===e?1:Object(o.a)(e),Object(n.a)(a,e<0?0:e,i)):[]}var n=t(92),o=t(10);e.a=i},function(a,e,t){"use strict";function i(a,e,t){var i=null==a?0:a.length;return i?(e=t||void 0===e?1:Object(o.a)(e),e=i-e,Object(n.a)(a,0,e<0?0:e)):[]}var n=t(92),o=t(10);e.a=i},function(a,e,t){"use strict";function i(a,e){return a&&a.length?Object(o.a)(a,Object(n.a)(e,3),!0,!0):[]}var n=t(4),o=t(416);e.a=i},function(a,e,t){"use strict";function i(a,e){return a&&a.length?Object(o.a)(a,Object(n.a)(e,3),!0):[]}var n=t(4),o=t(416);e.a=i},function(a,e,t){"use strict";var i=t(417);t.d(e,"a",function(){return i.a})},function(a,e,t){"use strict";var i=t(418);t.d(e,"a",function(){return i.a})},function(a,e,t){"use strict";function i(a,e){return a&&Object(n.a)(a,e,o.a)}var n=t(976),o=t(30);e.a=i},function(a,e,t){"use strict";function i(a,e,t){a=Object(s.a)(a),e=Object(o.a)(e);var i=a.length;t=void 0===t?i:Object(n.a)(Object(r.a)(t),0,i);var d=t;return(t-=e.length)>=0&&a.slice(t,d)==e}var n=t(200),o=t(101),r=t(10),s=t(13);e.a=i},function(a,e,t){"use strict";var i=t(419);t.d(e,"a",function(){return i.a})},function(a,e,t){"use strict";var i=t(420);t.d(e,"a",function(){return i.a})},function(a,e,t){"use strict";function i(a){return a=Object(n.a)(a),a&&r.test(a)?a.replace(o,"\\$&"):a}var n=t(13),o=/[\\^$.*+?()[\]{}|]/g,r=RegExp(o.source);e.a=i},function(a,e,t){"use strict";function i(a,e,t){var i=Object(s.a)(a)?n.a:o.a;return t&&Object(d.a)(a,e,t)&&(e=void 0),i(a,Object(r.a)(e,3))}var n=t(978),o=t(1311),r=t(4),s=t(8),d=t(64);e.a=i},function(a,e,t){"use strict";var i=t(387);t.d(e,"a",function(){return i.a})},function(a,e,t){"use strict";var i=t(322);t.d(e,"a",function(){return i.a})},function(a,e,t){"use strict";function i(a,e,t,i){var r=null==a?0:a.length;return r?(t&&"number"!=typeof t&&Object(o.a)(a,e,t)&&(t=0,i=r),Object(n.a)(a,e,t,i)):[]}var n=t(1312),o=t(64);e.a=i},function(a,e,t){"use strict";function i(a,e){return(Object(s.a)(a)?n.a:o.a)(a,Object(r.a)(e,3))}var n=t(165),o=t(979),r=t(4),s=t(8);e.a=i},function(a,e,t){"use strict";var i=t(980),n=t(423),o=Object(i.a)(n.a);e.a=o},function(a,e,t){"use strict";function i(a,e){return Object(n.a)(a,Object(r.a)(e,3),o.a)}var n=t(981),o=t(167),r=t(4);e.a=i},function(a,e,t){"use strict";var i=t(980),n=t(424),o=Object(i.a)(n.a);e.a=o},function(a,e,t){"use strict";function i(a,e){return Object(n.a)(a,Object(r.a)(e,3),o.a)}var n=t(981),o=t(595),r=t(4);e.a=i},function(a,e,t){"use strict";var i=t(425);t.d(e,"a",function(){return i.a})},function(a,e,t){"use strict";function i(a,e){return Object(n.a)(Object(o.a)(a,e),1)}var n=t(45),o=t(242);e.a=i},function(a,e,t){"use strict";function i(a,e){return Object(n.a)(Object(o.a)(a,e),r)}var n=t(45),o=t(242),r=1/0;e.a=i},function(a,e,t){"use strict";function i(a,e,t){return t=void 0===t?1:Object(r.a)(t),Object(n.a)(Object(o.a)(a,e),t)}var n=t(45),o=t(242),r=t(10);e.a=i},function(a,e,t){"use strict";function i(a){return(null==a?0:a.length)?Object(n.a)(a,o):[]}var n=t(45),o=1/0;e.a=i},function(a,e,t){"use strict";function i(a,e){return(null==a?0:a.length)?(e=void 0===e?1:Object(o.a)(e),Object(n.a)(a,e)):[]}var n=t(45),o=t(10);e.a=i},function(a,e,t){"use strict";function i(a){return Object(n.a)(a,o)}var n=t(142),o=512;e.a=i},function(a,e,t){"use strict";var i=t(553),n=Object(i.a)("floor");e.a=n},function(a,e,t){"use strict";var i=t(983),n=Object(i.a)();e.a=n},function(a,e,t){"use strict";var i=t(983),n=Object(i.a)(!0);e.a=n},function(a,e,t){"use strict";function i(a,e){return null==a?a:Object(n.a)(a,Object(o.a)(e),r.a)}var n=t(574),o=t(105),r=t(53);e.a=i},function(a,e,t){"use strict";function i(a,e){return null==a?a:Object(n.a)(a,Object(o.a)(e),r.a)}var n=t(976),o=t(105),r=t(53);e.a=i},function(a,e,t){"use strict";function i(a,e){return a&&Object(n.a)(a,Object(o.a)(e))}var n=t(167),o=t(105);e.a=i},function(a,e,t){"use strict";function i(a,e){return a&&Object(n.a)(a,Object(o.a)(e))}var n=t(595),o=t(105);e.a=i},function(a,e,t){"use strict";function i(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}e.a=i},function(a,e,t){"use strict";function i(a){return null==a?[]:Object(n.a)(a,Object(o.a)(a))}var n=t(426),o=t(30);e.a=i},function(a,e,t){"use strict";function i(a){return null==a?[]:Object(n.a)(a,Object(o.a)(a))}var n=t(426),o=t(53);e.a=i},function(a,e,t){"use strict";var i=t(145),n=t(411),o=Object.prototype,r=o.hasOwnProperty,s=Object(n.a)(function(a,e,t){r.call(a,t)?a[t].push(e):Object(i.a)(a,t,[e])});e.a=s},function(a,e,t){"use strict";var i=t(628),n=t(427),o=Object(n.a)(i.a);e.a=o},function(a,e,t){"use strict";function i(a,e){return a>e}e.a=i},function(a,e,t){"use strict";var i=t(427),n=Object(i.a)(function(a,e){return a>=e});e.a=n},function(a,e,t){"use strict";function i(a,e){return null!=a&&Object(o.a)(a,e,n.a)}var n=t(1313),o=t(968);e.a=i},function(a,e,t){"use strict";function i(a,e,t){return e=Object(o.a)(e),void 0===t?(t=e,e=0):t=Object(o.a)(t),a=Object(r.a)(a),Object(n.a)(a,e,t)}var n=t(1314),o=t(193),r=t(102);e.a=i},function(a,e,t){"use strict";function i(a,e,t,i){a=Object(o.a)(a)?a:Object(d.a)(a),t=t&&!i?Object(s.a)(t):0;var l=a.length;return t<0&&(t=c(l+t,0)),Object(r.a)(a)?t<=l&&a.indexOf(e,t)>-1:!!l&&Object(n.a)(a,e,t)>-1}var n=t(234),o=t(44),r=t(243),s=t(10),d=t(168),c=Math.max;e.a=i},function(a,e,t){"use strict";function i(a,e){return Object(n.a)(e,function(e){return a[e]})}var n=t(27);e.a=i},function(a,e,t){"use strict";function i(a,e,t){var i=null==a?0:a.length;if(!i)return-1;var s=null==t?0:Object(o.a)(t);return s<0&&(s=r(i+s,0)),Object(n.a)(a,e,s)}var n=t(234),o=t(10),r=Math.max;e.a=i},function(a,e,t){"use strict";function i(a){return(null==a?0:a.length)?Object(n.a)(a,0,-1):[]}var n=t(92);e.a=i},function(a,e,t){"use strict";var i=t(27),n=t(637),o=t(9),r=t(638),s=Object(o.a)(function(a){var e=Object(i.a)(a,r.a);return e.length&&e[0]===a[0]?Object(n.a)(e):[]});e.a=s},function(a,e,t){"use strict";function i(a,e,t){for(var i=t?r.a:o.a,u=a[0].length,p=a.length,z=p,g=Array(p),m=1/0,w=[];z--;){var y=a[z];z&&e&&(y=Object(s.a)(y,Object(d.a)(e))),m=l(y.length,m),g[z]=!t&&(e||u>=120&&y.length>=120)?new n.a(z&&y):void 0}y=a[0];var f=-1,b=g[0];a:for(;++f<u&&w.length<m;){var h=y[f],v=e?e(h):h;if(h=t||0!==h?h:0,!(b?Object(c.a)(b,v):i(w,v,t))){for(z=p;--z;){var k=g[z];if(!(k?Object(c.a)(k,v):i(a[z],v,t)))continue a}b&&b.push(v),w.push(h)}}return w}var n=t(407),o=t(385),r=t(585),s=t(27),d=t(82),c=t(408),l=Math.min;e.a=i},function(a,e,t){"use strict";function i(a){return Object(n.a)(a)?a:[]}var n=t(46);e.a=i},function(a,e,t){"use strict";var i=t(27),n=t(637),o=t(4),r=t(9),s=t(638),d=t(65),c=Object(r.a)(function(a){var e=Object(d.a)(a),t=Object(i.a)(a,s.a);return e===Object(d.a)(t)?e=void 0:t.pop(),t.length&&t[0]===a[0]?Object(n.a)(t,Object(o.a)(e,2)):[]});e.a=c},function(a,e,t){"use strict";var i=t(27),n=t(637),o=t(9),r=t(638),s=t(65),d=Object(o.a)(function(a){var e=Object(s.a)(a),t=Object(i.a)(a,r.a);return e="function"==typeof e?e:void 0,e&&t.pop(),t.length&&t[0]===a[0]?Object(n.a)(t,void 0,e):[]});e.a=d},function(a,e,t){"use strict";var i=t(318),n=t(984),o=t(43),r=Object.prototype,s=r.toString,d=Object(n.a)(function(a,e,t){null!=e&&"function"!=typeof e.toString&&(e=s.call(e)),a[e]=t},Object(i.a)(o.a));e.a=d},function(a,e,t){"use strict";var i=t(4),n=t(984),o=Object.prototype,r=o.hasOwnProperty,s=o.toString,d=Object(n.a)(function(a,e,t){null!=e&&"function"!=typeof e.toString&&(e=s.call(e)),r.call(a,e)?a[e].push(t):a[e]=[t]},i.a);e.a=d},function(a,e,t){"use strict";var i=t(329),n=t(9),o=Object(n.a)(i.a);e.a=o},function(a,e,t){"use strict";var i=t(80),n=t(166),o=t(329),r=t(9),s=t(44),d=Object(r.a)(function(a,e,t){var r=-1,d="function"==typeof e,c=Object(s.a)(a)?Array(a.length):[];return Object(n.a)(a,function(a){c[++r]=d?Object(i.a)(e,a,t):Object(o.a)(a,e,t)}),c});e.a=d},function(a,e,t){"use strict";var i=t(1316),n=t(82),o=t(238),r=o.a&&o.a.isArrayBuffer,s=r?Object(n.a)(r):i.a;e.a=s},function(a,e,t){"use strict";function i(a){return!0===a||!1===a||Object(o.a)(a)&&Object(n.a)(a)==r}var n=t(63),o=t(23),r="[object Boolean]";e.a=i},function(a,e,t){"use strict";var i=t(1317),n=t(82),o=t(238),r=o.a&&o.a.isDate,s=r?Object(n.a)(r):i.a;e.a=s},function(a,e,t){"use strict";function i(a){return Object(n.a)(a)&&1===a.nodeType&&!Object(o.a)(a)}var n=t(23),o=t(199);e.a=i},function(a,e,t){"use strict";function i(a){if(null==a)return!0;if(Object(d.a)(a)&&(Object(s.a)(a)||"string"==typeof a||"function"==typeof a.splice||Object(c.a)(a)||Object(u.a)(a)||Object(r.a)(a)))return!a.length;var e=Object(o.a)(a);if(e==p||e==z)return!a.size;if(Object(l.a)(a))return!Object(n.a)(a).length;for(var t in a)if(m.call(a,t))return!1;return!0}var n=t(539),o=t(149),r=t(159),s=t(8),d=t(44),c=t(146),l=t(320),u=t(160),p="[object Map]",z="[object Set]",g=Object.prototype,m=g.hasOwnProperty;e.a=i},function(a,e,t){"use strict";function i(a,e){return Object(n.a)(a,e)}var n=t(406);e.a=i},function(a,e,t){"use strict";function i(a,e,t){t="function"==typeof t?t:void 0;var i=t?t(a,e):void 0;return void 0===i?Object(n.a)(a,e,void 0,t):!!i}var n=t(406);e.a=i},function(a,e,t){"use strict";function i(a){return"number"==typeof a&&o(a)}var n=t(39),o=n.a.isFinite;e.a=i},function(a,e,t){"use strict";function i(a,e){return a===e||Object(n.a)(a,e,Object(o.a)(e))}var n=t(566),o=t(569);e.a=i},function(a,e,t){"use strict";function i(a,e,t){return t="function"==typeof t?t:void 0,Object(n.a)(a,e,Object(o.a)(e),t)}var n=t(566),o=t(569);e.a=i},function(a,e,t){"use strict";function i(a){return Object(n.a)(a)&&a!=+a}var n=t(429);e.a=i},function(a,e,t){"use strict";function i(a){if(Object(o.a)(a))throw new Error(r);return Object(n.a)(a)}var n=t(934),o=t(1318),r="Unsupported core-js use. Try https://npms.io/search?q=ponyfill.";e.a=i},function(a,e,t){"use strict";function i(a){return null==a}e.a=i},function(a,e,t){"use strict";function i(a){return null===a}e.a=i},function(a,e,t){"use strict";function i(a){return Object(n.a)(a)&&a>=-o&&a<=o}var n=t(428),o=9007199254740991;e.a=i},function(a,e,t){"use strict";function i(a){return void 0===a}e.a=i},function(a,e,t){"use strict";function i(a){return Object(o.a)(a)&&Object(n.a)(a)==r}var n=t(149),o=t(23),r="[object WeakMap]";e.a=i},function(a,e,t){"use strict";function i(a){return Object(o.a)(a)&&Object(n.a)(a)==r}var n=t(63),o=t(23),r="[object WeakSet]";e.a=i},function(a,e,t){"use strict";function i(a){return Object(o.a)("function"==typeof a?a:Object(n.a)(a,r))}var n=t(148),o=t(4),r=1;e.a=i},function(a,e,t){"use strict";function i(a,e){return null==a?"":o.call(a,e)}var n=Array.prototype,o=n.join;e.a=i},function(a,e,t){"use strict";var i=t(241),n=Object(i.a)(function(a,e,t){return a+(t?"-":"")+e.toLowerCase()});e.a=n},function(a,e,t){"use strict";var i=t(145),n=t(411),o=Object(n.a)(function(a,e,t){Object(i.a)(a,t,e)});e.a=o},function(a,e,t){"use strict";function i(a,e,t){var i=null==a?0:a.length;if(!i)return-1;var l=i;return void 0!==t&&(l=Object(s.a)(t),l=l<0?d(i+l,0):c(l,i-1)),e===e?Object(r.a)(a,e,l):Object(n.a)(a,o.a,l,!0)}var n=t(386),o=t(948),r=t(1320),s=t(10),d=Math.max,c=Math.min;e.a=i},function(a,e,t){"use strict";var i=t(241),n=Object(i.a)(function(a,e,t){return a+(t?" ":"")+e.toLowerCase()});e.a=n},function(a,e,t){"use strict";var i=t(953),n=Object(i.a)("toLowerCase");e.a=n},function(a,e,t){"use strict";var i=t(671),n=t(427),o=Object(n.a)(i.a);e.a=o},function(a,e,t){"use strict";function i(a,e){return a<e}e.a=i},function(a,e,t){"use strict";var i=t(427),n=Object(i.a)(function(a,e){return a<=e});e.a=n},function(a,e,t){"use strict";function i(a,e){var t={};return e=Object(r.a)(e,3),Object(o.a)(a,function(a,i,o){Object(n.a)(t,e(a,i,o),a)}),t}var n=t(145),o=t(167),r=t(4);e.a=i},function(a,e,t){"use strict";function i(a,e){var t={};return e=Object(r.a)(e,3),Object(o.a)(a,function(a,i,o){Object(n.a)(t,i,e(a,i,o))}),t}var n=t(145),o=t(167),r=t(4);e.a=i},function(a,e,t){"use strict";function i(a){return Object(o.a)(Object(n.a)(a,r))}var n=t(148),o=t(963),r=1;e.a=i},function(a,e,t){"use strict";function i(a,e){return Object(o.a)(a,Object(n.a)(e,r))}var n=t(148),o=t(967),r=1;e.a=i},function(a,e,t){"use strict";function i(a){return a&&a.length?Object(n.a)(a,r.a,o.a):void 0}var n=t(430),o=t(628),r=t(43);e.a=i},function(a,e,t){"use strict";function i(a,e){return a&&a.length?Object(n.a)(a,Object(r.a)(e,2),o.a):void 0}var n=t(430),o=t(628),r=t(4);e.a=i},function(a,e,t){"use strict";function i(a){return Object(n.a)(a,o.a)}var n=t(986),o=t(43);e.a=i},function(a,e,t){"use strict";function i(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}e.a=i},function(a,e,t){"use strict";function i(a,e){return Object(o.a)(a,Object(n.a)(e,2))}var n=t(4),o=t(986);e.a=i},function(a,e,t){"use strict";var i=t(581),n=t(236),o=Object(n.a)(function(a,e,t){Object(i.a)(a,e,t)});e.a=o},function(a,e,t){"use strict";var i=t(329),n=t(9),o=Object(n.a)(function(a,e){return function(t){return Object(i.a)(t,a,e)}});e.a=o},function(a,e,t){"use strict";var i=t(329),n=t(9),o=Object(n.a)(function(a,e){return function(t){return Object(i.a)(a,t,e)}});e.a=o},function(a,e,t){"use strict";function i(a){return a&&a.length?Object(n.a)(a,r.a,o.a):void 0}var n=t(430),o=t(671),r=t(43);e.a=i},function(a,e,t){"use strict";function i(a,e){return a&&a.length?Object(n.a)(a,Object(o.a)(e,2),r.a):void 0}var n=t(430),o=t(4),r=t(671);e.a=i},function(a,e,t){"use strict";var i=t(381),n=Object(i.a)(function(a,e){return a*e},1);e.a=n},function(a,e,t){"use strict";function i(a,e){return a&&a.length?Object(n.a)(a,Object(o.a)(e)):void 0}var n=t(987),o=t(10);e.a=i},function(a,e,t){"use strict";function i(a){return a=Object(r.a)(a),Object(o.a)(function(e){return Object(n.a)(e,a)})}var n=t(987),o=t(9),r=t(10);e.a=i},function(a,e,t){"use strict";var i=t(27),n=t(148),o=t(691),r=t(161),s=t(103),d=t(1322),c=t(147),l=t(558),u=Object(c.a)(function(a,e){var t={};if(null==a)return t;var c=!1;e=Object(i.a)(e,function(e){return e=Object(r.a)(e,a),c||(c=e.length>1),e}),Object(s.a)(a,Object(l.a)(a),t),c&&(t=Object(n.a)(t,7,d.a));for(var u=e.length;u--;)Object(o.a)(t,e[u]);return t});e.a=u},function(a,e,t){"use strict";function i(a,e){return e=Object(n.a)(e,a),null==(a=Object(r.a)(a,e))||delete a[Object(s.a)(Object(o.a)(e))]}var n=t(161),o=t(65),r=t(985),s=t(104);e.a=i},function(a,e,t){"use strict";function i(a,e){return Object(r.a)(a,Object(o.a)(Object(n.a)(e)))}var n=t(4),o=t(244),r=t(434);e.a=i},function(a,e,t){"use strict";function i(a){return Object(n.a)(2,a)}var n=t(396);e.a=i},function(a,e,t){"use strict";function i(a,e,t,i){return null==a?[]:(Object(o.a)(e)||(e=null==e?[]:[e]),t=i?void 0:t,Object(o.a)(t)||(t=null==t?[]:[t]),Object(n.a)(a,e,t))}var n=t(989),o=t(8);e.a=i},function(a,e,t){"use strict";var i=t(27),n=t(696),o=Object(n.a)(i.a);e.a=o},function(a,e,t){"use strict";function i(a){return Object(c.a)(function(e){return e=Object(o.a)(e,Object(d.a)(r.a)),Object(s.a)(function(t){var i=this;return a(e,function(a){return Object(n.a)(a,i,t)})})})}var n=t(80),o=t(27),r=t(4),s=t(9),d=t(82),c=t(147);e.a=i},function(a,e,t){"use strict";var i=t(80),n=t(27),o=t(45),r=t(4),s=t(9),d=t(82),c=t(1325),l=t(8),u=Math.min,p=Object(c.a)(function(a,e){e=1==e.length&&Object(l.a)(e[0])?Object(n.a)(e[0],Object(d.a)(r.a)):Object(n.a)(Object(o.a)(e,1),Object(d.a)(r.a));var t=e.length;return Object(s.a)(function(n){for(var o=-1,r=u(n.length,t);++o<r;)n[o]=e[o].call(this,n[o]);return Object(i.a)(a,this,n)})});e.a=p},function(a,e,t){"use strict";var i=t(978),n=t(696),o=Object(n.a)(i.a);e.a=o},function(a,e,t){"use strict";var i=t(567),n=t(696),o=Object(n.a)(i.a);e.a=o},function(a,e,t){"use strict";function i(a,e,t){a=Object(s.a)(a),e=Object(r.a)(e);var i=e?Object(o.a)(a):0;if(!e||i>=e)return a;var l=(e-i)/2;return Object(n.a)(c(l),t)+a+Object(n.a)(d(l),t)}var n=t(701),o=t(245),r=t(10),s=t(13),d=Math.ceil,c=Math.floor;e.a=i},function(a,e,t){"use strict";function i(a,e){e=void 0===e?" ":Object(o.a)(e);var t=e.length;if(t<2)return t?Object(n.a)(e,a):e;var i=Object(n.a)(e,l(a/Object(d.a)(e)));return Object(s.a)(e)?Object(r.a)(Object(c.a)(i),0,a).join(""):i.slice(0,a)}var n=t(991),o=t(101),r=t(163),s=t(240),d=t(245),c=t(164),l=Math.ceil;e.a=i},function(a,e,t){"use strict";function i(a,e,t){a=Object(s.a)(a),e=Object(r.a)(e);var i=e?Object(o.a)(a):0;return e&&i<e?a+Object(n.a)(e-i,t):a}var n=t(701),o=t(245),r=t(10),s=t(13);e.a=i},function(a,e,t){"use strict";function i(a,e,t){a=Object(s.a)(a),e=Object(r.a)(e);var i=e?Object(o.a)(a):0;return e&&i<e?Object(n.a)(e-i,t)+a:a}var n=t(701),o=t(245),r=t(10),s=t(13);e.a=i},function(a,e,t){"use strict";function i(a,e,t){return t||null==e?e=0:e&&(e=+e),s(Object(o.a)(a).replace(r,""),e||0)}var n=t(39),o=t(13),r=/^\s+/,s=n.a.parseInt;e.a=i},function(a,e,t){"use strict";var i=t(9),n=t(142),o=t(235),r=t(198),s=Object(i.a)(function(a,e){var t=Object(r.a)(e,Object(o.a)(s));return Object(n.a)(a,64,void 0,e,t)});s.placeholder={},e.a=s},function(a,e,t){"use strict";var i=t(411),n=Object(i.a)(function(a,e,t){a[t?0:1].push(e)},function(){return[[],[]]});e.a=n},function(a,e,t){"use strict";var i=t(1328),n=t(147),o=Object(n.a)(function(a,e){return null==a?{}:Object(i.a)(a,e)});e.a=o},function(a,e,t){"use strict";function i(a){return function(e){return null==a?void 0:Object(n.a)(a,e)}}var n=t(239);e.a=i},function(a,e,t){"use strict";var i=t(9),n=t(437),o=Object(i.a)(n.a);e.a=o},function(a,e,t){"use strict";function i(a,e,t,i){var c=i?r.a:o.a,u=-1,p=e.length,z=a;for(a===e&&(e=Object(d.a)(e)),t&&(z=Object(n.a)(a,Object(s.a)(t)));++u<p;)for(var g=0,m=e[u],w=t?t(m):m;(g=c(z,w,g,i))>-1;)z!==a&&l.call(z,g,1),l.call(a,g,1);return a}var n=t(27),o=t(234),r=t(1329),s=t(82),d=t(81),c=Array.prototype,l=c.splice;e.a=i},function(a,e,t){"use strict";function i(a,e,t){return a&&a.length&&e&&e.length?Object(o.a)(a,e,Object(n.a)(t,2)):a}var n=t(4),o=t(710);e.a=i},function(a,e,t){"use strict";function i(a,e,t){return a&&a.length&&e&&e.length?Object(n.a)(a,e,void 0,t):a}var n=t(710);e.a=i},function(a,e,t){"use strict";var i=t(27),n=t(542),o=t(992),r=t(990),s=t(147),d=t(144),c=Object(s.a)(function(a,e){var t=null==a?0:a.length,s=Object(n.a)(a,e);return Object(o.a)(a,Object(i.a)(e,function(a){return Object(d.a)(a,t)?+a:a}).sort(r.a)),s});e.a=c},function(a,e,t){"use strict";function i(a,e,t){if(t&&"boolean"!=typeof t&&Object(o.a)(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=Object(r.a)(a),void 0===e?(e=a,a=0):e=Object(r.a)(e)),a>e){var i=a;a=e,e=i}if(t||a%1||e%1){var l=c();return d(a+l*(e-a+s("1e-"+((l+"").length-1))),e)}return Object(n.a)(a,e)}var n=t(715),o=t(64),r=t(193),s=parseFloat,d=Math.min,c=Math.random;e.a=i},function(a,e,t){"use strict";function i(a,e){return a+n(o()*(e-a+1))}var n=Math.floor,o=Math.random;e.a=i},function(a,e,t){"use strict";var i=t(993),n=Object(i.a)();e.a=n},function(a,e,t){"use strict";var i=t(993),n=Object(i.a)(!0);e.a=n},function(a,e,t){"use strict";var i=t(142),n=t(147),o=Object(n.a)(function(a,e){return Object(i.a)(a,256,void 0,void 0,void 0,e)});e.a=o},function(a,e,t){"use strict";function i(a,e,t){var i=Object(d.a)(a)?n.a:s.a,c=arguments.length<3;return i(a,Object(r.a)(e,4),t,c,o.a)}var n=t(549),o=t(166),r=t(4),s=t(994),d=t(8);e.a=i},function(a,e,t){"use strict";function i(a,e,t){var i=Object(d.a)(a)?n.a:s.a,c=arguments.length<3;return i(a,Object(r.a)(e,4),t,c,o.a)}var n=t(1331),o=t(975),r=t(4),s=t(994),d=t(8);e.a=i},function(a,e,t){"use strict";function i(a,e){return(Object(s.a)(a)?n.a:o.a)(a,Object(d.a)(Object(r.a)(e,3)))}var n=t(165),o=t(979),r=t(4),s=t(8),d=t(244);e.a=i},function(a,e,t){"use strict";function i(a,e){var t=[];if(!a||!a.length)return t;var i=-1,r=[],s=a.length;for(e=Object(n.a)(e,3);++i<s;){var d=a[i];e(d,i,a)&&(t.push(d),r.push(i))}return Object(o.a)(a,r),t}var n=t(4),o=t(992);e.a=i},function(a,e,t){"use strict";function i(a,e,t){return e=(t?Object(o.a)(a,e,t):void 0===e)?1:Object(r.a)(e),Object(n.a)(Object(s.a)(a),e)}var n=t(991),o=t(64),r=t(10),s=t(13);e.a=i},function(a,e,t){"use strict";function i(){var a=arguments,e=Object(n.a)(a[0]);return a.length<3?e:e.replace(a[1],a[2])}var n=t(13);e.a=i},function(a,e,t){"use strict";function i(a,e){if("function"!=typeof a)throw new TypeError(r);return e=void 0===e?e:Object(o.a)(e),Object(n.a)(a,e)}var n=t(9),o=t(10),r="Expected a function";e.a=i},function(a,e,t){"use strict";function i(a,e,t){e=Object(n.a)(e,a);var i=-1,s=e.length;for(s||(s=1,a=void 0);++i<s;){var d=null==a?void 0:a[Object(r.a)(e[i])];void 0===d&&(i=s,d=t),a=Object(o.a)(d)?d.call(a):d}return a}var n=t(161),o=t(91),r=t(104);e.a=i},function(a,e,t){"use strict";var i=t(553),n=Object(i.a)("round");e.a=n},function(a,e,t){"use strict";function i(a){return(Object(r.a)(a)?n.a:o.a)(a)}var n=t(995),o=t(1332),r=t(8);e.a=i},function(a,e,t){"use strict";function i(a,e,t){return e=(t?Object(s.a)(a,e,t):void 0===e)?1:Object(d.a)(e),(Object(r.a)(a)?n.a:o.a)(a,e)}var n=t(1333),o=t(1334),r=t(8),s=t(64),d=t(10);e.a=i},function(a,e,t){"use strict";function i(a,e,t){return null==a?a:Object(n.a)(a,e,t)}var n=t(331);e.a=i},function(a,e,t){"use strict";function i(a,e,t,i){return i="function"==typeof i?i:void 0,null==a?a:Object(n.a)(a,e,t,i)}var n=t(331);e.a=i},function(a,e,t){"use strict";function i(a){return(Object(r.a)(a)?n.a:o.a)(a)}var n=t(1335),o=t(1336),r=t(8);e.a=i},function(a,e,t){"use strict";function i(a){if(null==a)return 0;if(Object(r.a)(a))return Object(s.a)(a)?Object(d.a)(a):a.length;var e=Object(o.a)(a);return e==c||e==l?a.size:Object(n.a)(a).length}var n=t(539),o=t(149),r=t(44),s=t(243),d=t(245),c="[object Map]",l="[object Set]";e.a=i},function(a,e,t){"use strict";function i(a,e,t){var i=null==a?0:a.length;return i?(t&&"number"!=typeof t&&Object(o.a)(a,e,t)?(e=0,t=i):(e=null==e?0:Object(r.a)(e),t=void 0===t?i:Object(r.a)(t)),Object(n.a)(a,e,t)):[]}var n=t(92),o=t(64),r=t(10);e.a=i},function(a,e,t){"use strict";var i=t(241),n=Object(i.a)(function(a,e,t){return a+(t?"_":"")+e.toLowerCase()});e.a=n},function(a,e,t){"use strict";function i(a,e,t){var i=Object(s.a)(a)?n.a:r.a;return t&&Object(d.a)(a,e,t)&&(e=void 0),i(a,Object(o.a)(e,3))}var n=t(567),o=t(4),r=t(1337),s=t(8),d=t(64);e.a=i},function(a,e,t){"use strict";var i=t(45),n=t(989),o=t(9),r=t(64),s=Object(o.a)(function(a,e){if(null==a)return[];var t=e.length;return t>1&&Object(r.a)(a,e[0],e[1])?e=[]:t>2&&Object(r.a)(e[0],e[1],e[2])&&(e=[e[0]]),Object(n.a)(a,Object(i.a)(e,1),[])});e.a=s},function(a,e,t){"use strict";function i(a,e){return Object(n.a)(a,e)}var n=t(440);e.a=i},function(a,e,t){"use strict";function i(a,e,t,i){e=t(e);for(var d=0,c=null==a?0:a.length,l=e!==e,u=null===e,p=Object(n.a)(e),z=void 0===e;d<c;){var g=r((d+c)/2),m=t(a[g]),w=void 0!==m,y=null===m,f=m===m,b=Object(n.a)(m);if(l)var h=i||f;else h=z?f&&(i||w):u?f&&w&&(i||!y):p?f&&w&&!y&&(i||!b):!y&&!b&&(i?m<=e:m<e);h?d=g+1:c=g}return s(c,o)}var n=t(68),o=4294967294,r=Math.floor,s=Math.min;e.a=i},function(a,e,t){"use strict";function i(a,e,t){return Object(o.a)(a,e,Object(n.a)(t,2))}var n=t(4),o=t(739);e.a=i},function(a,e,t){"use strict";function i(a,e){var t=null==a?0:a.length;if(t){var i=Object(n.a)(a,e);if(i<t&&Object(o.a)(a[i],e))return i}return-1}var n=t(440),o=t(69);e.a=i},function(a,e,t){"use strict";function i(a,e){return Object(n.a)(a,e,!0)}var n=t(440);e.a=i},function(a,e,t){"use strict";function i(a,e,t){return Object(o.a)(a,e,Object(n.a)(t,2),!0)}var n=t(4),o=t(739);e.a=i},function(a,e,t){"use strict";function i(a,e){if(null==a?0:a.length){var t=Object(n.a)(a,e,!0)-1;if(Object(o.a)(a[t],e))return t}return-1}var n=t(440),o=t(69);e.a=i},function(a,e,t){"use strict";function i(a){return a&&a.length?Object(n.a)(a):[]}var n=t(996);e.a=i},function(a,e,t){"use strict";function i(a,e){return a&&a.length?Object(o.a)(a,Object(n.a)(e,2)):[]}var n=t(4),o=t(996);e.a=i},function(a,e,t){"use strict";function i(a,e,t){return t&&"number"!=typeof t&&Object(s.a)(a,e,t)&&(e=t=void 0),(t=void 0===t?u:t>>>0)?(a=Object(l.a)(a),a&&("string"==typeof e||null!=e&&!Object(d.a)(e))&&!(e=Object(n.a)(e))&&Object(r.a)(a)?Object(o.a)(Object(c.a)(a),0,t):a.split(e,t)):[]}var n=t(101),o=t(163),r=t(240),s=t(64),d=t(330),c=t(164),l=t(13),u=4294967295;e.a=i},function(a,e,t){"use strict";function i(a,e){if("function"!=typeof a)throw new TypeError(c);return e=null==e?0:l(Object(d.a)(e),0),Object(r.a)(function(t){var i=t[e],r=Object(s.a)(t,0,e);return i&&Object(o.a)(r,i),Object(n.a)(a,this,r)})}var n=t(80),o=t(162),r=t(9),s=t(163),d=t(10),c="Expected a function",l=Math.max;e.a=i},function(a,e,t){"use strict";var i=t(241),n=t(325),o=Object(i.a)(function(a,e,t){return a+(t?" ":"")+Object(n.a)(e)});e.a=o},function(a,e,t){"use strict";function i(a,e,t){return a=Object(s.a)(a),t=null==t?0:Object(n.a)(Object(r.a)(t),0,a.length),e=Object(o.a)(e),a.slice(t,t+e.length)==e}var n=t(200),o=t(101),r=t(10),s=t(13);e.a=i},function(a,e,t){"use strict";function i(){return{}}e.a=i},function(a,e,t){"use strict";function i(){return""}e.a=i},function(a,e,t){"use strict";function i(){return!0}e.a=i},function(a,e,t){"use strict";var i=t(381),n=Object(i.a)(function(a,e){return a-e},0);e.a=n},function(a,e,t){"use strict";function i(a){return a&&a.length?Object(n.a)(a,o.a):0}var n=t(680),o=t(43);e.a=i},function(a,e,t){"use strict";function i(a,e){return a&&a.length?Object(o.a)(a,Object(n.a)(e,2)):0}var n=t(4),o=t(680);e.a=i},function(a,e,t){"use strict";function i(a){var e=null==a?0:a.length;return e?Object(n.a)(a,1,e):[]}var n=t(92);e.a=i},function(a,e,t){"use strict";function i(a,e,t){return a&&a.length?(e=t||void 0===e?1:Object(o.a)(e),Object(n.a)(a,0,e<0?0:e)):[]}var n=t(92),o=t(10);e.a=i},function(a,e,t){"use strict";function i(a,e,t){var i=null==a?0:a.length;return i?(e=t||void 0===e?1:Object(o.a)(e),e=i-e,Object(n.a)(a,e<0?0:e,i)):[]}var n=t(92),o=t(10);e.a=i},function(a,e,t){"use strict";function i(a,e){return a&&a.length?Object(o.a)(a,Object(n.a)(e,3),!1,!0):[]}var n=t(4),o=t(416);e.a=i},function(a,e,t){"use strict";function i(a,e){return a&&a.length?Object(o.a)(a,Object(n.a)(e,3)):[]}var n=t(4),o=t(416);e.a=i},function(a,e,t){"use strict";function i(a,e){return e(a),a}e.a=i},function(a,e,t){"use strict";function i(a,e,t){var i=z.a.imports._.templateSettings||z.a;t&&Object(l.a)(a,e,t)&&(e=void 0),a=Object(g.a)(a),e=Object(n.a)({},e,i,s.a);var v,k,j=Object(n.a)({},e.imports,i.imports,s.a),_=Object(u.a)(j),x=Object(r.a)(j,_),O=0,q=e.interpolate||b,E="__p += '",A=RegExp((e.escape||b).source+"|"+q.source+"|"+(q===p.a?f:b).source+"|"+(e.evaluate||b).source+"|$","g"),T="sourceURL"in e?"//# sourceURL="+e.sourceURL+"\n":"";a.replace(A,function(e,t,i,n,o,r){return i||(i=n),E+=a.slice(O,r).replace(h,d.a),t&&(v=!0,E+="' +\n__e("+t+") +\n'"),o&&(k=!0,E+="';\n"+o+";\n__p += '"),i&&(E+="' +\n((__t = ("+i+")) == null ? '' : __t) +\n'"),O=r+e.length,e}),E+="';\n";var S=e.variable;S||(E="with (obj) {\n"+E+"\n}\n"),E=(k?E.replace(m,""):E).replace(w,"$1").replace(y,"$1;"),E="function("+(S||"obj")+") {\n"+(S?"":"obj || (obj = {});\n")+"var __t, __p = ''"+(v?", __e = _.escape":"")+(k?", __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n":";\n")+E+"return __p\n}";var M=Object(o.a)(function(){return Function(_,T+"return "+E).apply(void 0,x)});if(M.source=E,Object(c.a)(M))throw M;return M}var n=t(322),o=t(394),r=t(633),s=t(1338),d=t(1339),c=t(324),l=t(64),u=t(30),p=t(997),z=t(441),g=t(13),m=/\b__p \+= '';/g,w=/\b(__p \+=) '' \+/g,y=/(__e\(.*?\)|\b__t\)) \+\n'';/g,f=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,b=/($^)/,h=/['\n\r\u2028\u2029\\]/g;e.a=i},function(a,e,t){"use strict";function i(a,e,t){var i=!0,s=!0;if("function"!=typeof a)throw new TypeError(r);return Object(o.a)(t)&&(i="leading"in t?!!t.leading:i,s="trailing"in t?!!t.trailing:s),Object(n.a)(a,e,{leading:i,maxWait:e,trailing:s})}var n=t(412),o=t(25),r="Expected a function";e.a=i},function(a,e,t){"use strict";function i(a,e){if((a=Object(r.a)(a))<1||a>s)return[];var t=d,i=c(a,d);e=Object(o.a)(e),a-=d;for(var l=Object(n.a)(i,e);++t<a;)e(t);return l}var n=t(537),o=t(105),r=t(10),s=9007199254740991,d=4294967295,c=Math.min;e.a=i},function(a,e,t){"use strict";var i=t(247);t.d(e,"a",function(){return i.a})},function(a,e,t){"use strict";function i(a){return Object(n.a)(a).toLowerCase()}var n=t(13);e.a=i},function(a,e,t){"use strict";function i(a){return Object(r.a)(a)?Object(n.a)(a,c.a):Object(s.a)(a)?[a]:Object(o.a)(Object(d.a)(Object(l.a)(a)))}var n=t(27),o=t(81),r=t(8),s=t(68),d=t(952),c=t(104),l=t(13);e.a=i},function(a,e,t){"use strict";function i(a){return a?Object(n.a)(Object(o.a)(a),-r,r):0===a?a:0}var n=t(200),o=t(10),r=9007199254740991;e.a=i},function(a,e,t){"use strict";function i(a){return Object(n.a)(a).toUpperCase()}var n=t(13);e.a=i},function(a,e,t){"use strict";function i(a,e,t){var i=Object(c.a)(a),g=i||Object(l.a)(a)||Object(z.a)(a);if(e=Object(s.a)(e,4),null==t){var m=a&&a.constructor;t=g?i?new m:[]:Object(p.a)(a)&&Object(u.a)(m)?Object(o.a)(Object(d.a)(a)):{}}return(g?n.a:r.a)(a,function(a,i,n){return e(t,a,i,n)}),t}var n=t(197),o=t(233),r=t(167),s=t(4),d=t(395),c=t(8),l=t(146),u=t(91),p=t(25),z=t(160);e.a=i},function(a,e,t){"use strict";function i(a,e,t){if((a=Object(c.a)(a))&&(t||void 0===e))return a.replace(l,"");if(!a||!(e=Object(n.a)(e)))return a;var i=Object(d.a)(a),u=Object(d.a)(e),p=Object(s.a)(i,u),z=Object(r.a)(i,u)+1;return Object(o.a)(i,p,z).join("")}var n=t(101),o=t(163),r=t(999),s=t(1e3),d=t(164),c=t(13),l=/^\s+|\s+$/g;e.a=i},function(a,e,t){"use strict";function i(a,e,t){if((a=Object(d.a)(a))&&(t||void 0===e))return a.replace(c,"");if(!a||!(e=Object(n.a)(e)))return a;var i=Object(s.a)(a),l=Object(r.a)(i,Object(s.a)(e))+1;return Object(o.a)(i,0,l).join("")}var n=t(101),o=t(163),r=t(999),s=t(164),d=t(13),c=/\s+$/;e.a=i},function(a,e,t){"use strict";function i(a,e,t){if((a=Object(d.a)(a))&&(t||void 0===e))return a.replace(c,"");if(!a||!(e=Object(n.a)(e)))return a;var i=Object(s.a)(a),l=Object(r.a)(i,Object(s.a)(e));return Object(o.a)(i,l).join("")}var n=t(101),o=t(163),r=t(1e3),s=t(164),d=t(13),c=/^\s+/;e.a=i},function(a,e,t){"use strict";function i(a,e){var t=z,i=g;if(Object(s.a)(e)){var w="separator"in e?e.separator:w;t="length"in e?Object(u.a)(e.length):t,i="omission"in e?Object(n.a)(e.omission):i}a=Object(p.a)(a);var y=a.length;if(Object(r.a)(a)){var f=Object(l.a)(a);y=f.length}if(t>=y)return a;var b=t-Object(c.a)(i);if(b<1)return i;var h=f?Object(o.a)(f,0,b).join(""):a.slice(0,b);if(void 0===w)return h+i;if(f&&(b+=h.length-b),Object(d.a)(w)){if(a.slice(b).search(w)){var v,k=h;for(w.global||(w=RegExp(w.source,Object(p.a)(m.exec(w))+"g")),w.lastIndex=0;v=w.exec(k);)var j=v.index;h=h.slice(0,void 0===j?b:j)}}else if(a.indexOf(Object(n.a)(w),b)!=b){var _=h.lastIndexOf(w);_>-1&&(h=h.slice(0,_))}return h+i}var n=t(101),o=t(163),r=t(240),s=t(25),d=t(330),c=t(245),l=t(164),u=t(10),p=t(13),z=30,g="...",m=/\w*$/;e.a=i},function(a,e,t){"use strict";function i(a){return Object(n.a)(a,1)}var n=t(382);e.a=i},function(a,e,t){"use strict";function i(a){return a=Object(n.a)(a),a&&s.test(a)?a.replace(r,o.a):a}var n=t(13),o=t(1342),r=/&(?:amp|lt|gt|quot|#39);/g,s=RegExp(r.source);e.a=i},function(a,e,t){"use strict";var i=t(45),n=t(9),o=t(201),r=t(46),s=Object(n.a)(function(a){return Object(o.a)(Object(i.a)(a,1,r.a,!0))});e.a=s},function(a,e,t){"use strict";var i=t(45),n=t(4),o=t(9),r=t(201),s=t(46),d=t(65),c=Object(o.a)(function(a){var e=Object(d.a)(a);return Object(s.a)(e)&&(e=void 0),Object(r.a)(Object(i.a)(a,1,s.a,!0),Object(n.a)(e,2))});e.a=c},function(a,e,t){"use strict";var i=t(45),n=t(9),o=t(201),r=t(46),s=t(65),d=Object(n.a)(function(a){var e=Object(s.a)(a);return e="function"==typeof e?e:void 0,Object(o.a)(Object(i.a)(a,1,r.a,!0),void 0,e)});e.a=d},function(a,e,t){"use strict";function i(a){return a&&a.length?Object(n.a)(a):[]}var n=t(201);e.a=i},function(a,e,t){"use strict";function i(a,e){return a&&a.length?Object(o.a)(a,Object(n.a)(e,2)):[]}var n=t(4),o=t(201);e.a=i},function(a,e,t){"use strict";function i(a,e){return e="function"==typeof e?e:void 0,a&&a.length?Object(n.a)(a,void 0,e):[]}var n=t(201);e.a=i},function(a,e,t){"use strict";function i(a){var e=++o;return Object(n.a)(a)+e}var n=t(13),o=0;e.a=i},function(a,e,t){"use strict";function i(a,e){return null==a||Object(n.a)(a,e)}var n=t(691);e.a=i},function(a,e,t){"use strict";function i(a,e,t){return null==a?a:Object(n.a)(a,e,Object(o.a)(t))}var n=t(1001),o=t(105);e.a=i},function(a,e,t){"use strict";function i(a,e,t,i){return i="function"==typeof i?i:void 0,null==a?a:Object(n.a)(a,e,Object(o.a)(t),i)}var n=t(1001),o=t(105);e.a=i},function(a,e,t){"use strict";var i=t(241),n=Object(i.a)(function(a,e,t){return a+(t?" ":"")+e.toUpperCase()});e.a=n},function(a,e,t){"use strict";var i=t(247);t.d(e,"a",function(){return i.a})},function(a,e,t){"use strict";function i(a){return null==a?[]:Object(n.a)(a,Object(o.a)(a))}var n=t(633),o=t(53);e.a=i},function(a,e,t){"use strict";var i=t(328),n=t(9),o=t(46),r=Object(n.a)(function(a,e){return Object(o.a)(a)?Object(i.a)(a,e):[]});e.a=r},function(a,e,t){"use strict";function i(a,e){return Object(o.a)(Object(n.a)(e),a)}var n=t(105),o=t(435);e.a=i},function(a,e,t){"use strict";var i=t(143),n=t(196),o=t(542),r=t(147),s=t(144),d=t(246),c=Object(r.a)(function(a){var e=a.length,t=e?a[0]:0,r=this.__wrapped__,c=function(e){return Object(o.a)(e,a)};return!(e>1||this.__actions__.length)&&r instanceof i.a&&Object(s.a)(t)?(r=r.slice(t,+t+(e?1:0)),r.__actions__.push({func:d.a,args:[c],thisArg:void 0}),new n.a(r,this.__chain__).thru(function(a){return e&&!a.length&&a.push(void 0),a})):this.thru(c)});e.a=c},function(a,e,t){"use strict";function i(){return Object(n.a)(this)}var n=t(401);e.a=i},function(a,e,t){"use strict";function i(){var a=this.__wrapped__;if(a instanceof n.a){var e=a;return this.__actions__.length&&(e=new n.a(this)),e=e.reverse(),e.__actions__.push({func:s.a,args:[r.a],thisArg:void 0}),new o.a(e,this.__chain__)}return this.thru(r.a)}var n=t(143),o=t(196),r=t(438),s=t(246);e.a=i},function(a,e,t){"use strict";var i=t(165),n=t(9),o=t(797),r=t(46),s=Object(n.a)(function(a){return Object(o.a)(Object(i.a)(a,r.a))});e.a=s},function(a,e,t){"use strict";function i(a,e,t){var i=a.length;if(i<2)return i?Object(r.a)(a[0]):[];for(var s=-1,d=Array(i);++s<i;)for(var c=a[s],l=-1;++l<i;)l!=s&&(d[s]=Object(n.a)(d[s]||c,a[l],e,t));return Object(r.a)(Object(o.a)(d,1),e,t)}var n=t(328),o=t(45),r=t(201);e.a=i},function(a,e,t){"use strict";var i=t(165),n=t(4),o=t(9),r=t(797),s=t(46),d=t(65),c=Object(o.a)(function(a){var e=Object(d.a)(a);return Object(s.a)(e)&&(e=void 0),Object(r.a)(Object(i.a)(a,s.a),Object(n.a)(e,2))});e.a=c},function(a,e,t){"use strict";var i=t(165),n=t(9),o=t(797),r=t(46),s=t(65),d=Object(n.a)(function(a){var e=Object(s.a)(a);return e="function"==typeof e?e:void 0,Object(o.a)(Object(i.a)(a,r.a),void 0,e)});e.a=d},function(a,e,t){"use strict";var i=t(9),n=t(332),o=Object(i.a)(n.a);e.a=o},function(a,e,t){"use strict";function i(a,e){return Object(o.a)(a||[],e||[],n.a)}var n=t(319),o=t(1002);e.a=i},function(a,e,t){"use strict";function i(a,e){return Object(o.a)(a||[],e||[],n.a)}var n=t(331),o=t(1002);e.a=i},function(a,e,t){"use strict";var i=t(9),n=t(443),o=Object(i.a)(function(a){var e=a.length,t=e>1?a[e-1]:void 0;return t="function"==typeof t?(a.pop(),t):void 0,Object(n.a)(a,t)});e.a=o},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";function i(a){return a&&a.__esModule?a:{default:a}}function n(a,e){if(!(a instanceof e))throw new TypeError("Cannot call a class as a function")}function o(a,e){if(!a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!==(void 0===e?"undefined":s(e))&&"function"!=typeof e?a:e}function r(a,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+(void 0===e?"undefined":s(e)));a.prototype=Object.create(e&&e.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(a,e):a.__proto__=e)}var s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(a){return typeof a}:function(a){return a&&"function"==typeof Symbol&&a.constructor===Symbol&&a!==Symbol.prototype?"symbol":typeof a};Object.defineProperty(e,"__esModule",{value:!0});var d=function(){function a(a,e){for(var t=0;t<e.length;t++){var i=e[t];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(a,i.key,i)}}return function(e,t,i){return t&&a(e.prototype,t),i&&a(e,i),e}}(),c=t(1),l=t(106),u=i(l),p=t(47),z=t(40),g=i(z),m=function(a){function e(){var a=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};n(this,e);var t=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this)),i={scores:{good:9,okay:6,bad:3},urlTitle:(0,p.createAnchorOpeningTag)("https://yoa.st/33e"),urlCallToAction:(0,p.createAnchorOpeningTag)("https://yoa.st/33f")};return t.identifier="introductionKeyword",t._config=(0,c.merge)(i,a),t}return r(e,a),d(e,[{key:"getResult",value:function(a,e,t){var i=new g.default;this._firstParagraphMatches=e.getResearch("firstParagraph");var n=this.calculateResult(t);return i.setScore(n.score),i.setText(n.resultText),i}},{key:"isApplicable",value:function(a){return a.hasKeyword()&&a.hasText()}},{key:"calculateResult",value:function(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>")}}}]),e}(u.default);e.default=m},function(a,e,t){"use strict";function i(a){return a&&a.__esModule?a:{default:a}}function n(a,e){if(!(a instanceof e))throw new TypeError("Cannot call a class as a function")}function o(a,e){if(!a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!==(void 0===e?"undefined":s(e))&&"function"!=typeof e?a:e}function r(a,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+(void 0===e?"undefined":s(e)));a.prototype=Object.create(e&&e.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(a,e):a.__proto__=e)}var s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(a){return typeof a}:function(a){return a&&"function"==typeof Symbol&&a.constructor===Symbol&&a!==Symbol.prototype?"symbol":typeof a};Object.defineProperty(e,"__esModule",{value:!0});var d=function(){function a(a,e){for(var t=0;t<e.length;t++){var i=e[t];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(a,i.key,i)}}return function(e,t,i){return t&&a(e.prototype,t),i&&a(e,i),e}}(),c=t(1),l=t(106),u=i(l),p=t(47),z=t(40),g=i(z),m=function(a){function e(){var a=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};n(this,e);var t=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this)),i={parameters:{recommendedMinimum:1,recommendedMaximum:4,acceptableMaximum:8},scores:{veryBad:-999,bad:3,okay:6,good:9},urlTitle:(0,p.createAnchorOpeningTag)("https://yoa.st/33i"),urlCallToAction:(0,p.createAnchorOpeningTag)("https://yoa.st/33j"),isRelatedKeyphrase:!1};return t.identifier="keyphraseLength",t._config=(0,c.merge)(i,a),t}return r(e,a),d(e,[{key:"getResult",value:function(a,e,t){this._keyphraseLength=e.getResearch("keyphraseLength");var i=new g.default,n=this.calculateResult(t);return(0,c.isUndefined)(n)||(i.setScore(n.score),i.setText(n.resultText)),i}},{key:"calculateResult",value:function(a){return this._keyphraseLength<this._config.parameters.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,c.inRange)(this._keyphraseLength,this._config.parameters.recommendedMinimum,this._config.parameters.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,c.inRange)(this._keyphraseLength,this._config.parameters.recommendedMaximum+1,this._config.parameters.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._config.parameters.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._config.parameters.recommendedMaximum,this._config.urlTitle,this._config.urlCallToAction,"</a>")}}}]),e}(u.default);e.default=m},function(a,e,t){"use strict";function i(a){return a&&a.__esModule?a:{default:a}}function n(a,e){if(!(a instanceof e))throw new TypeError("Cannot call a class as a function")}function o(a,e){if(!a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!==(void 0===e?"undefined":s(e))&&"function"!=typeof e?a:e}function r(a,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+(void 0===e?"undefined":s(e)));a.prototype=Object.create(e&&e.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(a,e):a.__proto__=e)}var s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(a){return typeof a}:function(a){return a&&"function"==typeof Symbol&&a.constructor===Symbol&&a!==Symbol.prototype?"symbol":typeof a};Object.defineProperty(e,"__esModule",{value:!0});var d=function(){function a(a,e){for(var t=0;t<e.length;t++){var i=e[t];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(a,i.key,i)}}return function(e,t,i){return t&&a(e.prototype,t),i&&a(e,i),e}}(),c=t(1),l=t(106),u=i(l),p=t(804),z=i(p),g=t(444),m=t(47),w=t(460),y=i(w),f=t(40),b=i(f),h=function(a){function e(){var a=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};n(this,e);var t=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this)),i={parameters:{noWordForms:{overMaximum:3.5,maximum:2.5,minimum:.5},multipleWordForms:{overMaximum:3.5,maximum:3,minimum:.5}},scores:{wayOverMaximum:-50,overMaximum:-10,correctDensity:9,underMinimum:4},urlTitle:(0,m.createAnchorOpeningTag)("https://yoa.st/33v"),urlCallToAction:(0,m.createAnchorOpeningTag)("https://yoa.st/33w")};return t.identifier="keywordDensity",t._config=(0,c.merge)(i,a),t}return r(e,a),d(e,[{key:"getResult",value:function(a,e,t){var i=new b.default;this._keywordCount=e.getResearch("keywordCount"),this._keywordDensity=e.getResearch("getKeywordDensity"),this._hasMorphologyData=!1!==e.getData("morphology"),this._locale=a.getLocale();var n=this.calculateResult(t);return i.setScore(n.score),i.setText(n.resultText),i.setHasMarks(this._keywordCount.count>0),i}},{key:"hasNoMatches",value:function(){return 0===this._keywordCount.count}},{key:"hasTooFewMatches",value:function(){return this.shouldUseMorphologyBoundaries()?(0,g.inRangeStartInclusive)(this._keywordDensity,0,this._config.parameters.multipleWordForms.minimum):(0,g.inRangeStartInclusive)(this._keywordDensity,0,this._config.parameters.noWordForms.minimum)}},{key:"hasGoodNumberOfMatches",value:function(){return this.shouldUseMorphologyBoundaries()?(0,g.inRangeStartEndInclusive)(this._keywordDensity,this._config.parameters.multipleWordForms.minimum,this._config.parameters.multipleWordForms.maximum):(0,g.inRangeStartEndInclusive)(this._keywordDensity,this._config.parameters.noWordForms.minimum,this._config.parameters.noWordForms.maximum)}},{key:"hasTooManyMatches",value:function(){return this.shouldUseMorphologyBoundaries()?(0,g.inRangeEndInclusive)(this._keywordDensity,this._config.parameters.multipleWordForms.maximum,this._config.parameters.multipleWordForms.overMaximum):(0,g.inRangeEndInclusive)(this._keywordDensity,this._config.parameters.noWordForms.maximum,this._config.parameters.noWordForms.overMaximum)}},{key:"shouldUseMorphologyBoundaries",value:function(){return this._hasMorphologyData&&"en_US"===this._locale}},{key:"calculateResult",value:function(a){var e=this.shouldUseMorphologyBoundaries()?this._config.parameters.multipleWordForms.maximum:this._config.parameters.noWordForms.maximum,t=e+"%",i=(0,z.default)(this._keywordDensity),n=i+"%";return this.hasNoMatches()?{score:this._config.scores.underMinimum,resultText:a.sprintf(a.dgettext("js-text-analysis","%3$sKeyphrase density%5$s: %1$s. This is too low; the keyphrase was found %2$d times. %4$sFocus on your keyphrase%5$s!"),n,this._keywordCount.count,this._config.urlTitle,this._config.urlCallToAction,"</a>")}:this.hasTooFewMatches()?{score:this._config.scores.underMinimum,resultText:a.sprintf(a.dngettext("js-text-analysis","%3$sKeyphrase density%5$s: %1$s. This is too low; the keyphrase was found %2$d time. %4$sFocus on your keyphrase%5$s!","%3$sKeyphrase density%5$s: %1$s. This is too low; the keyphrase was found %2$d times. %4$sFocus on your keyphrase%5$s!",this._keywordCount.count),n,this._keywordCount.count,this._config.urlTitle,this._config.urlCallToAction,"</a>")}:this.hasGoodNumberOfMatches()?{score:this._config.scores.correctDensity,resultText:a.sprintf(a.dngettext("js-text-analysis","%2$sKeyphrase density%3$s: %1$s. This is great!"),n,this._config.urlTitle,"</a>")}:this.hasTooManyMatches()?{score:this._config.scores.overMaximum,resultText:a.sprintf(a.dngettext("js-text-analysis","%4$sKeyphrase density%6$s: %1$s. This is over the advised %3$s maximum; the keyphrase was found %2$d time. %5$sDon't overoptimize%6$s!","%4$sKeyphrase density%6$s: %1$s. This is over the advised %3$s maximum; the keyphrase was found %2$d times. %5$sDon't overoptimize%6$s!",this._keywordCount.count),n,this._keywordCount.count,t,this._config.urlTitle,this._config.urlCallToAction,"</a>")}:{score:this._config.scores.wayOverMaximum,resultText:a.sprintf(a.dngettext("js-text-analysis","%4$sKeyphrase density%6$s: %1$s. This is way over the advised %3$s maximum; the keyphrase was found %2$d time. %5$sDon't overoptimize%6$s!","%4$sKeyphrase density%6$s: %1$s. This is way over the advised %3$s maximum; the keyphrase was found %2$d times. %5$sDon't overoptimize%6$s!",this._keywordCount.count),n,this._keywordCount.count,t,this._config.urlTitle,this._config.urlCallToAction,"</a>")}}},{key:"getMarks",value:function(){return this._keywordCount.markings}},{key:"isApplicable",value:function(a){return a.hasText()&&a.hasKeyword()&&(0,y.default)(a.getText())>=100}}]),e}(u.default);e.default=h},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";function i(a){return a&&a.__esModule?a:{default:a}}function n(a,e){if(!(a instanceof e))throw new TypeError("Cannot call a class as a function")}function o(a,e){if(!a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!==(void 0===e?"undefined":s(e))&&"function"!=typeof e?a:e}function r(a,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+(void 0===e?"undefined":s(e)));a.prototype=Object.create(e&&e.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(a,e):a.__proto__=e)}var s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(a){return typeof a}:function(a){return a&&"function"==typeof Symbol&&a.constructor===Symbol&&a!==Symbol.prototype?"symbol":typeof a};Object.defineProperty(e,"__esModule",{value:!0});var d=function(){function a(a,e){for(var t=0;t<e.length;t++){var i=e[t];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(a,i.key,i)}}return function(e,t,i){return t&&a(e.prototype,t),i&&a(e,i),e}}(),c=t(1),l=t(106),u=i(l),p=t(47),z=t(40),g=i(z),m=function(a){function e(){var a=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};n(this,e);var t=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this)),i={parameters:{recommendedMinimum:1},scores:{good:9,ok:6,bad:3},urlTitle:(0,p.createAnchorOpeningTag)("https://yoa.st/33k"),urlCallToAction:(0,p.createAnchorOpeningTag)("https://yoa.st/33l")};return t.identifier="metaDescriptionKeyword",t._config=(0,c.merge)(i,a),t}return r(e,a),d(e,[{key:"getResult",value:function(a,e,t){this._keyphraseCounts=e.getResearch("metaDescriptionKeyword");var i=new g.default,n=this.calculateResult(t);return i.setScore(n.score),i.setText(n.resultText),i}},{key:"calculateResult",value:function(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>")}}},{key:"isApplicable",value:function(a){return a.hasKeyword()&&a.hasDescription()}}]),e}(u.default);e.default=m},function(a,e,t){"use strict";function i(a){if(!(this instanceof i))return new i(a);c.call(this,a),l.call(this,a),a&&!1===a.readable&&(this.readable=!1),a&&!1===a.writable&&(this.writable=!1),this.allowHalfOpen=!0,a&&!1===a.allowHalfOpen&&(this.allowHalfOpen=!1),this.once("end",n)}function n(){this.allowHalfOpen||this._writableState.ended||r.nextTick(o,this)}function o(a){a.end()}var r=t(1042),s=Object.keys||function(a){var e=[];for(var t in a)e.push(t);return e};a.exports=i;var d=t(1008);d.inherits=t(169);var c=t(1480),l=t(1400);d.inherits(i,c);for(var u=s(l.prototype),p=0;p<u.length;p++){var z=u[p];i.prototype[z]||(i.prototype[z]=l.prototype[z])}Object.defineProperty(i.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),Object.defineProperty(i.prototype,"destroyed",{get:function(){return void 0!==this._readableState&&void 0!==this._writableState&&(this._readableState.destroyed&&this._writableState.destroyed)},set:function(a){void 0!==this._readableState&&void 0!==this._writableState&&(this._readableState.destroyed=a,this._writableState.destroyed=a)}}),i.prototype._destroy=function(a,e){this.push(null),this.end(),r.nextTick(e,a)}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a){var e,t,i,n=arguments.length>1&&void 0!==arguments[1]&&arguments[1],o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";return e='[ \\u00a0 \\n\\r\\t.,()”“〝〞〟‟„"+\\-;!¡?¿:/»«‹›'+o+"<>",t="(^|"+e+"'‘’‛`])",i=n?"($|((?="+e+"]))|((['‘’‛`])("+e+"])))":"($|("+e+"])|((['‘’‛`])("+e+"])))",t+a+i}},function(a,e,t){"use strict";function i(a){return a&&a.__esModule?a:{default:a}}Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a,e,t){var i=(0,r.default)(a),o=[];return(0,n.forEach)(i,function(i){var n="";if(0!==k(i,t).length&&(n="regular"),0!==j(i,t).length&&(n="irregular"),""!==n)switch(t){case"fr":o.push(new p.default(i,a,{auxiliaries:e,type:n,language:t}));break;case"es":o.push(new g.default(i,a,{auxiliaries:e,type:n,language:t}));break;case"it":o.push(new w.default(i,a,{auxiliaries:e,type:n,language:t}));break;case"nl":o.push(new f.default(i,a,{auxiliaries:e,type:n,language:t}));break;case"pl":o.push(new h.default(i,a,{auxiliaries:e,type:n,language:t}));break;case"en":default:o.push(new l.default(i,a,{auxiliaries:e,type:n,language:t}))}}),o};var n=t(1),o=t(213),r=i(o),s=t(1771),d=i(s),c=t(1778),l=i(c),u=t(1781),p=i(u),z=t(1783),g=i(z),m=t(1784),w=i(m),y=t(1785),f=i(y),b=t(1787),h=i(b),v=(0,d.default)(),k=v.regularParticiples,j=v.irregularParticiples},,,,,,,,,function(a,e,t){/**
2
- * @preserve jed.js https://github.com/SlexAxton/Jed
3
- */
4
- !function(t,i){function n(a){return z.PF.compile(a||"nplurals=2; plural=(n != 1);")}function o(a,e){this._key=a,this._i18n=e}var r=Array.prototype,s=Object.prototype,d=r.slice,c=s.hasOwnProperty,l=r.forEach,u={},p={forEach:function(a,e,t){var i,n,o;if(null!==a)if(l&&a.forEach===l)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)===u)return}else for(o in a)if(c.call(a,o)&&e.call(t,a[o],o,a)===u)return},extend:function(a){return this.forEach(d.call(arguments,1),function(e){for(var t in e)a[t]=e[t]}),a}},z=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=p.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+"`")};z.context_delimiter=String.fromCharCode(4),p.extend(o.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?z.sprintf:function(a){return a})(this._i18n.dcnpgettext(this._domain,this._context,this._key,this._pkey,this._val),a)}}),p.extend(z.prototype,{translate:function(a){return new o(a,this)},textdomain:function(a){if(!a)return this._textdomain;this._textdomain=a},gettext:function(a){/**
5
- * @preserve jed.js https://github.com/SlexAxton/Jed
6
- */
7
- 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,o){i=i||t,a=a||this._textdomain;var r;if(!this.options)return r=new z,r.dcnpgettext.call(r,void 0,void 0,t,i,o);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 s,d,c,l=e?e+z.context_delimiter+t:t,u=this.options.locale_data,p=u[a],g=(u.messages||this.defaults.locale_data.messages)[""],m=p[""].plural_forms||p[""]["Plural-Forms"]||p[""]["plural-forms"]||g.plural_forms||g["Plural-Forms"]||g["plural-forms"];if(void 0===o)c=0;else{if("number"!=typeof o&&(o=parseInt(o,10),isNaN(o)))throw new Error("The number that was passed in is not a number.");c=n(m)(o)}if(!p)throw new Error("No domain named `"+a+"` could be found.");return!(s=p[l])||c>s.length?(this.options.missing_key_callback&&this.options.missing_key_callback(l,a),d=[t,i],!0===this.options.debug&&console.log(d[n(m)(o)]),d[n()(o)]):(d=s[c])||(d=[t,i],d[n()(o)])}});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,c,l,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],s[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,c=s[4]?"0"==s[4]?"0":s[4].charAt(1):" ",l=s[6]-String(n).length,d=s[6]?e(c,l):"",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}(),m=function(a,e){return e.unshift(a),g.apply(null,e)};z.parse_plural=function(a,e){return a=a.replace(/n/g,e),z.parse_expression(a)},z.sprintf=function(a,e){return"[object Array]"=={}.toString.call(e)?m(a,[].slice.call(e)):g.apply(this,[].slice.call(arguments))},z.prototype.sprintf=function(){return z.sprintf.apply(this,arguments)},z.PF={},z.PF.parse=function(a){var e=z.PF.extractPluralExpr(a);return z.PF.parser.parse.call(z.PF.parser,e)},z.PF.compile=function(a){function e(a){return!0===a?1:a||0}var t=z.PF.parse(a);return function(a){return e(z.PF.interpreter(t)(a))}},z.PF.interpreter=function(a){return function(e){switch(a.type){case"GROUP":return z.PF.interpreter(a.expr)(e);case"TERNARY":return z.PF.interpreter(a.expr)(e)?z.PF.interpreter(a.truthy)(e):z.PF.interpreter(a.falsey)(e);case"OR":return z.PF.interpreter(a.left)(e)||z.PF.interpreter(a.right)(e);case"AND":return z.PF.interpreter(a.left)(e)&&z.PF.interpreter(a.right)(e);case"LT":return z.PF.interpreter(a.left)(e)<z.PF.interpreter(a.right)(e);case"GT":return z.PF.interpreter(a.left)(e)>z.PF.interpreter(a.right)(e);case"LTE":return z.PF.interpreter(a.left)(e)<=z.PF.interpreter(a.right)(e);case"GTE":return z.PF.interpreter(a.left)(e)>=z.PF.interpreter(a.right)(e);case"EQ":return z.PF.interpreter(a.left)(e)==z.PF.interpreter(a.right)(e);case"NEQ":return z.PF.interpreter(a.left)(e)!=z.PF.interpreter(a.right)(e);case"MOD":return z.PF.interpreter(a.left)(e)%z.PF.interpreter(a.right)(e);case"VAR":return e;case"NUM":return a.val;default:throw new Error("Invalid Token found.")}}},z.PF.extractPluralExpr=function(a){a=a.replace(/^\s\s*/,"").replace(/\s\s*$/,""),/;\s*$/.test(a)||(a=a.concat(";"));var e,t=/nplurals\=(\d+);/,i=/plural\=(.*);/,n=a.match(t),o={};if(!(n.length>1))throw new Error("nplurals not found in plural_forms string: "+a);if(o.nplurals=n[1],a=a.replace(t,""),!((e=a.match(i))&&e.length>1))throw new Error("`plural` expression not found: "+a);return e[1]},z.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){function e(){var a;return a=t.lexer.lex()||1,"number"!=typeof a&&(a=t.symbols_[a]||a),a}var t=this,i=[0],n=[null],o=[],r=this.table,s="",d=0,c=0,l=0,u=2;this.lexer.setInput(a),this.lexer.yy=this.yy,this.yy.lexer=this.lexer,void 0===this.lexer.yylloc&&(this.lexer.yylloc={});var p=this.lexer.yylloc;o.push(p),"function"==typeof this.yy.parseError&&(this.parseError=this.yy.parseError);for(var z,g,m,w,y,f,b,h,v,k={};;){if(m=i[i.length-1],this.defaultActions[m]?w=this.defaultActions[m]:(null==z&&(z=e()),w=r[m]&&r[m][z]),void 0===w||!w.length||!w[0]){if(!l){v=[];for(f in r[m])this.terminals_[f]&&f>2&&v.push("'"+this.terminals_[f]+"'");var j="";j=this.lexer.showPosition?"Parse error on line "+(d+1)+":\n"+this.lexer.showPosition()+"\nExpecting "+v.join(", ")+", got '"+this.terminals_[z]+"'":"Parse error on line "+(d+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:p,expected:v})}if(3==l){if(1==z)throw new Error(j||"Parsing halted.");c=this.lexer.yyleng,s=this.lexer.yytext,d=this.lexer.yylineno,p=this.lexer.yylloc,z=e()}for(;;){if(u.toString()in r[m])break;if(0==m)throw new Error(j||"Parsing halted.");!function(a){i.length=i.length-2*a,n.length=n.length-a,o.length=o.length-a}(1),m=i[i.length-1]}g=z,z=u,m=i[i.length-1],w=r[m]&&r[m][u],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:i.push(z),n.push(this.lexer.yytext),o.push(this.lexer.yylloc),i.push(w[1]),z=null,g?(z=g,g=null):(c=this.lexer.yyleng,s=this.lexer.yytext,d=this.lexer.yylineno,p=this.lexer.yylloc,l>0&&l--);break;case 2:if(b=this.productions_[w[1]][1],k.$=n[n.length-b],k._$={first_line:o[o.length-(b||1)].first_line,last_line:o[o.length-1].last_line,first_column:o[o.length-(b||1)].first_column,last_column:o[o.length-1].last_column},void 0!==(y=this.performAction.call(k,s,c,d,this.yy,w[1],n,o)))return y;b&&(i=i.slice(0,-1*b*2),n=n.slice(0,-1*b),o=o.slice(0,-1*b)),i.push(this.productions_[w[1]][0]),n.push(k.$),o.push(k._$),h=r[i[i.length-2]][i[i.length-1]],i.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;this._input||(this.done=!0);var a,e;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),e&&(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)}};return 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"}},a.rules=[/^\s+/,/^[0-9]+(\.[0-9]+)?\b/,/^n\b/,/^\|\|/,/^&&/,/^\?/,/^:/,/^<=/,/^>=/,/^</,/^>/,/^!=/,/^==/,/^%/,/^\(/,/^\)/,/^$/,/^./],a.conditions={INITIAL:{rules:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17],inclusive:!0}},a}();return a.lexer=e,a}(),void 0!==a&&a.exports&&(e=a.exports=z),e.Jed=z}()},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a,e){var t=(0,o.default)(a);return(0,i.indexOf)(e,t)>-1};var i=t(1),n=t(174),o=function(a){return a&&a.__esModule?a:{default:a}}(n)},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a){for(var e=(0,n.default)(),t=0;t<e.length;t++)a=a.replace(e[t].letters,e[t].base);return a};var i=t(1389),n=function(a){return a&&a.__esModule?a:{default:a}}(i)},function(a,e,t){function i(e,t){return delete a.exports[e],a.exports[e]=t,t}var n=t(1474),o=t(1668);a.exports={Parser:n,Tokenizer:t(1475),ElementType:t(1007),DomHandler:o,get FeedHandler(){return i("FeedHandler",t(1670))},get Stream(){return i("Stream",t(1671))},get WritableStream(){return i("WritableStream",t(1479))},get ProxyHandler(){return i("ProxyHandler",t(1686))},get DomUtils(){return i("DomUtils",t(1687))},get CollectingHandler(){return i("CollectingHandler",t(1699))},DefaultHandler:o,get RssHandler(){return i("RssHandler",this.FeedHandler)},parseDOM:function(a,e){var t=new o(e);return new n(t,e).end(a),t.dom},parseFeed:function(e,t){var i=new a.exports.FeedHandler(t);return new n(i,t).end(e),i.dom},createDomStream:function(a,e,t){var i=new o(a,e,t);return new n(i,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){function t(){this._events=this._events||{},this._maxListeners=this._maxListeners||void 0}function i(a){return"function"==typeof a}function n(a){return"number"==typeof a}function o(a){return"object"==typeof a&&null!==a}function r(a){return void 0===a}a.exports=t,t.EventEmitter=t,t.prototype._events=void 0,t.prototype._maxListeners=void 0,t.defaultMaxListeners=10,t.prototype.setMaxListeners=function(a){if(!n(a)||a<0||isNaN(a))throw TypeError("n must be a positive number");return this._maxListeners=a,this},t.prototype.emit=function(a){var e,t,n,s,d,c;if(this._events||(this._events={}),"error"===a&&(!this._events.error||o(this._events.error)&&!this._events.error.length)){if((e=arguments[1])instanceof Error)throw e;var l=new Error('Uncaught, unspecified "error" event. ('+e+")");throw l.context=e,l}if(t=this._events[a],r(t))return!1;if(i(t))switch(arguments.length){case 1:t.call(this);break;case 2:t.call(this,arguments[1]);break;case 3:t.call(this,arguments[1],arguments[2]);break;default:s=Array.prototype.slice.call(arguments,1),t.apply(this,s)}else if(o(t))for(s=Array.prototype.slice.call(arguments,1),c=t.slice(),n=c.length,d=0;d<n;d++)c[d].apply(this,s);return!0},t.prototype.addListener=function(a,e){var n;if(!i(e))throw TypeError("listener must be a function");return this._events||(this._events={}),this._events.newListener&&this.emit("newListener",a,i(e.listener)?e.listener:e),this._events[a]?o(this._events[a])?this._events[a].push(e):this._events[a]=[this._events[a],e]:this._events[a]=e,o(this._events[a])&&!this._events[a].warned&&(n=r(this._maxListeners)?t.defaultMaxListeners:this._maxListeners)&&n>0&&this._events[a].length>n&&(this._events[a].warned=!0,console.error("(node) warning: possible EventEmitter memory leak detected. %d listeners added. Use emitter.setMaxListeners() to increase limit.",this._events[a].length),"function"==typeof console.trace&&console.trace()),this},t.prototype.on=t.prototype.addListener,t.prototype.once=function(a,e){function t(){this.removeListener(a,t),n||(n=!0,e.apply(this,arguments))}if(!i(e))throw TypeError("listener must be a function");var n=!1;return t.listener=e,this.on(a,t),this},t.prototype.removeListener=function(a,e){var t,n,r,s;if(!i(e))throw TypeError("listener must be a function");if(!this._events||!this._events[a])return this;if(t=this._events[a],r=t.length,n=-1,t===e||i(t.listener)&&t.listener===e)delete this._events[a],this._events.removeListener&&this.emit("removeListener",a,e);else if(o(t)){for(s=r;s-- >0;)if(t[s]===e||t[s].listener&&t[s].listener===e){n=s;break}if(n<0)return this;1===t.length?(t.length=0,delete this._events[a]):t.splice(n,1),this._events.removeListener&&this.emit("removeListener",a,e)}return this},t.prototype.removeAllListeners=function(a){var e,t;if(!this._events)return this;if(!this._events.removeListener)return 0===arguments.length?this._events={}:this._events[a]&&delete this._events[a],this;if(0===arguments.length){for(e in this._events)"removeListener"!==e&&this.removeAllListeners(e);return this.removeAllListeners("removeListener"),this._events={},this}if(t=this._events[a],i(t))this.removeListener(a,t);else if(t)for(;t.length;)this.removeListener(a,t[t.length-1]);return delete this._events[a],this},t.prototype.listeners=function(a){return this._events&&this._events[a]?i(this._events[a])?[this._events[a]]:this._events[a].slice():[]},t.prototype.listenerCount=function(a){if(this._events){var e=this._events[a];if(i(e))return 1;if(e)return e.length}return 0},t.listenerCount=function(a,e){return a.listenerCount(e)}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a,e){var t,i=e||!1;return t="("+(0,o.map)(a,function(a){return i?a:(0,n.default)(a,!0)}).join(")|(")+")",new RegExp(t,"ig")};var i=t(811),n=function(a){return a&&a.__esModule?a:{default:a}}(i),o=t(1)},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){if((0,i.isEmpty)(this.getParticiple()))return void this.setSentencePartPassiveness(!1);this.setSentencePartPassiveness(this.isPassive())};var i=t(1)},function(a,e,t){"use strict";function i(a){return a&&a.__esModule?a:{default:a}}Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a,e,t){var i=(0,f.default)(a).map(function(a){return a.toLowerCase()}),o=i.indexOf(e.toLowerCase());if(o<1)return!1;var r=i[o-1],s=(0,n.get)(b,t,[]);return(0,n.includes)(s,r)};var n=t(1),o=t(1465),r=i(o),s=t(1391),d=i(s),c=t(1394),l=i(c),u=t(1393),p=i(u),z=t(1395),g=i(z),m=t(1392),w=i(m),y=t(213),f=i(y),b={nl:(0,r.default)().cannotDirectlyPrecedePassiveParticiple,en:(0,d.default)().cannotDirectlyPrecedePassiveParticiple,fr:(0,l.default)().cannotDirectlyPrecedePassiveParticiple,it:(0,p.default)().cannotDirectlyPrecedePassiveParticiple,pl:(0,g.default)().cannotDirectlyPrecedePassiveParticiple,es:(0,w.default)().cannotDirectlyPrecedePassiveParticiple}},function(a,e,t){"use strict";function i(a){return a&&a.__esModule?a:{default:a}}function n(a,e){if(!(a instanceof e))throw new TypeError("Cannot call a class as a function")}function o(a,e){if(!a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!==(void 0===e?"undefined":s(e))&&"function"!=typeof e?a:e}function r(a,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+(void 0===e?"undefined":s(e)));a.prototype=Object.create(e&&e.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(a,e):a.__proto__=e)}var s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(a){return typeof a}:function(a){return a&&"function"==typeof Symbol&&a.constructor===Symbol&&a!==Symbol.prototype?"symbol":typeof a};Object.defineProperty(e,"__esModule",{value:!0});var d=function(){function a(a,e){for(var t=0;t<e.length;t++){var i=e[t];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(a,i.key,i)}}return function(e,t,i){return t&&a(e.prototype,t),i&&a(e,i),e}}(),c=t(1),l=t(106),u=i(l),p=t(47),z=t(40),g=i(z),m=function(a){function e(){var a=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};n(this,e);var t=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this)),i={scores:{onlyFunctionWords:0},urlTitle:(0,p.createAnchorOpeningTag)("https://yoa.st/functionwordskeyphrase-1"),urlCallToAction:(0,p.createAnchorOpeningTag)("https://yoa.st/functionwordskeyphrase-2")};return t.identifier="functionWordsInKeyphrase",t._config=(0,c.merge)(i,a),t}return r(e,a),d(e,[{key:"getResult",value:function(a,e,t){this._functionWordsInKeyphrase=e.getResearch("functionWordsInKeyphrase"),this._keyword=(0,c.escape)(a.getKeyword());var i=new g.default;return this._functionWordsInKeyphrase&&(i.setScore(this._config.scores.onlyFunctionWords),i.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))),i}},{key:"isApplicable",value:function(a){return a.hasKeyword()}}]),e}(u.default);e.default=m},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(a,e,t){function i(a,e,t,i){a=o(a)?a:d(a),t=t&&!i?s(t):0;var l=a.length;return t<0&&(t=c(l+t,0)),r(a)?t<=l&&a.indexOf(e,t)>-1:!!l&&n(a,e,t)>-1}var n=t(221),o=t(36),r=t(352),s=t(353),d=t(354),c=Math.max;a.exports=i},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(a,e,t){function i(a,e){return(s(a)?n:o)(a,r(e,3))}var n=t(209),o=t(928),r=t(208),s=t(3);a.exports=i},function(a,e,t){function i(a,e){var t=[];return n(a,function(a,i,n){e(a,i,n)&&t.push(a)}),t}var n=t(178);a.exports=i},,function(a,e,t){"use strict";(function(a){var t="object"==typeof a&&a&&a.Object===Object&&a;e.a=t}).call(e,t(15))},function(a,e,t){"use strict";var i=t(43),n=t(932),o=n.a?function(a,e){return n.a.set(a,e),a}:i.a;e.a=o},function(a,e,t){"use strict";var i=t(933),n=i.a&&new i.a;e.a=n},function(a,e,t){"use strict";var i=t(194),n=t(39),o=Object(i.a)(n.a,"WeakMap");e.a=o},function(a,e,t){"use strict";function i(a){return!(!Object(r.a)(a)||Object(o.a)(a))&&(Object(n.a)(a)?g:c).test(Object(s.a)(a))}var n=t(91),o=t(1235),r=t(25),s=t(936),d=/[\\^$.*+?()[\]{}|]/g,c=/^\[object .+?Constructor\]$/,l=Function.prototype,u=Object.prototype,p=l.toString,z=u.hasOwnProperty,g=RegExp("^"+p.call(z).replace(d,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");e.a=i},function(a,e,t){"use strict";var i=t(39),n=i.a["__core-js_shared__"];e.a=n},function(a,e,t){"use strict";function i(a){if(null!=a){try{return o.call(a)}catch(a){}try{return a+""}catch(a){}}return""}var n=Function.prototype,o=n.toString;e.a=i},function(a,e,t){"use strict";function i(a,e,t,i){for(var o=-1,r=a.length,s=t.length,d=-1,c=e.length,l=n(r-s,0),u=Array(c+l),p=!i;++d<c;)u[d]=e[d];for(;++o<s;)(p||o<r)&&(u[t[o]]=a[o]);for(;l--;)u[d++]=a[o++];return u}var n=Math.max;e.a=i},function(a,e,t){"use strict";function i(a,e,t,i){for(var o=-1,r=a.length,s=-1,d=t.length,c=-1,l=e.length,u=n(r-d,0),p=Array(u+l),z=!i;++o<u;)p[o]=a[o];for(var g=o;++c<l;)p[g+c]=e[c];for(;++s<d;)(z||o<r)&&(p[g+t[s]]=a[o++]);return p}var n=Math.max;e.a=i},function(a,e,t){"use strict";function i(a,e,t,i,z,g,m,w,y,f){var b=e&l,h=b?m:void 0,v=b?void 0:m,k=b?g:void 0,j=b?void 0:g;e|=b?u:p,(e&=~(b?p:u))&c||(e&=~(s|d));var _=[a,e,z,k,h,j,v,w,y,f],x=t.apply(void 0,_);return Object(n.a)(a)&&Object(o.a)(x,_),x.placeholder=i,Object(r.a)(x,a,e)}var n=t(940),o=t(944),r=t(946),s=1,d=2,c=4,l=8,u=32,p=64;e.a=i},function(a,e,t){"use strict";function i(a){var e=Object(r.a)(a),t=s.a[e];if("function"!=typeof t||!(e in n.a.prototype))return!1;if(a===t)return!0;var i=Object(o.a)(t);return!!i&&a===i[0]}var n=t(143),o=t(534),r=t(941),s=t(195);e.a=i},function(a,e,t){"use strict";function i(a){for(var e=a.name+"",t=n.a[e],i=r.call(n.a,e)?t.length:0;i--;){var o=t[i],s=o.func;if(null==s||s==a)return o.name}return e}var n=t(942),o=Object.prototype,r=o.hasOwnProperty;e.a=i},function(a,e,t){"use strict";var i={};e.a=i},function(a,e,t){"use strict";function i(a){if(a instanceof n.a)return a.clone();var e=new o.a(a.__wrapped__,a.__chain__);return e.__actions__=Object(r.a)(a.__actions__),e.__index__=a.__index__,e.__values__=a.__values__,e}var n=t(143),o=t(196),r=t(81);e.a=i},function(a,e,t){"use strict";var i=t(931),n=t(945),o=Object(n.a)(i.a);e.a=o},function(a,e,t){"use strict";function i(a){var e=0,t=0;return function(){var i=r(),s=o-(i-t);if(t=i,s>0){if(++e>=n)return arguments[0]}else e=0;return a.apply(void 0,arguments)}}var n=800,o=16,r=Date.now;e.a=i},function(a,e,t){"use strict";function i(a,e,t){var i=e+"";return Object(r.a)(a,Object(o.a)(i,Object(s.a)(Object(n.a)(i),t)))}var n=t(1240),o=t(1241),r=t(535),s=t(1243);e.a=i},function(a,e,t){"use strict";var i=t(194),n=function(){try{var a=Object(i.a)(Object,"defineProperty");return a({},"",{}),a}catch(a){}}();e.a=n},function(a,e,t){"use strict";function i(a){return a!==a}e.a=i},function(a,e,t){"use strict";function i(a,e,t){return e=o(void 0===e?a.length-1:e,0),function(){for(var i=arguments,r=-1,s=o(i.length-e,0),d=Array(s);++r<s;)d[r]=i[e+r];r=-1;for(var c=Array(e+1);++r<e;)c[r]=i[r];return c[e]=t(d),Object(n.a)(a,this,c)}}var n=t(80),o=Math.max;e.a=i},function(a,e,t){"use strict";function i(a,e){var t=Object(r.a)(a),i=!t&&Object(o.a)(a),l=!t&&!i&&Object(s.a)(a),p=!t&&!i&&!l&&Object(c.a)(a),z=t||i||l||p,g=z?Object(n.a)(a.length,String):[],m=g.length;for(var w in a)!e&&!u.call(a,w)||z&&("length"==w||l&&("offset"==w||"parent"==w)||p&&("buffer"==w||"byteLength"==w||"byteOffset"==w)||Object(d.a)(w,m))||g.push(w);return g}var n=t(537),o=t(159),r=t(8),s=t(146),d=t(144),c=t(160),l=Object.prototype,u=l.hasOwnProperty;e.a=i},function(a,e,t){"use strict";function i(a,e){return function(t){return a(e(t))}}e.a=i},function(a,e,t){"use strict";var i=t(1253),n=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,o=/\\(\\)?/g,r=Object(i.a)(function(a){var e=[];return 46===a.charCodeAt(0)&&e.push(""),a.replace(n,function(a,t,i,n){e.push(i?n.replace(o,"$1"):t||a)}),e});e.a=r},function(a,e,t){"use strict";function i(a){return function(e){e=Object(s.a)(e);var t=Object(o.a)(e)?Object(r.a)(e):void 0,i=t?t[0]:e.charAt(0),d=t?Object(n.a)(t,1).join(""):e.slice(1);return i[a]()+d}}var n=t(163),o=t(240),r=t(164),s=t(13);e.a=i},function(a,e,t){"use strict";function i(a,e){return a&&Object(n.a)(e,Object(o.a)(e),a)}var n=t(103),o=t(30);e.a=i},function(a,e,t){"use strict";(function(a){function i(a,e){if(e)return a.slice();var t=a.length,i=c?c(t):new a.constructor(t);return a.copy(i),i}var n=t(39),o="object"==typeof exports&&exports&&!exports.nodeType&&exports,r=o&&"object"==typeof a&&a&&!a.nodeType&&a,s=r&&r.exports===o,d=s?n.a.Buffer:void 0,c=d?d.allocUnsafe:void 0;e.a=i}).call(e,t(538)(a))},function(a,e,t){"use strict";var i=t(162),n=t(395),o=t(557),r=t(326),s=Object.getOwnPropertySymbols,d=s?function(a){for(var e=[];a;)Object(i.a)(e,Object(o.a)(a)),a=Object(n.a)(a);return e}:r.a;e.a=d},function(a,e,t){"use strict";function i(a){return Object(n.a)(a,r.a,o.a)}var n=t(958),o=t(557),r=t(30);e.a=i},function(a,e,t){"use strict";function i(a,e,t){var i=e(a);return Object(o.a)(a)?i:Object(n.a)(i,t(a))}var n=t(162),o=t(8);e.a=i},function(a,e,t){"use strict";var i=t(194),n=t(39),o=Object(i.a)(n.a,"Set");e.a=o},function(a,e,t){"use strict";var i=t(39),n=i.a.Uint8Array;e.a=n},function(a,e,t){"use strict";function i(a,e){var t=e?Object(n.a)(a.buffer):a.buffer;return new a.constructor(t,a.byteOffset,a.length)}var n=t(559);e.a=i},function(a,e,t){"use strict";function i(a){return"function"!=typeof a.constructor||Object(r.a)(a)?{}:Object(n.a)(Object(o.a)(a))}var n=t(233),o=t(395),r=t(320);e.a=i},function(a,e,t){"use strict";function i(a){var e=Object(o.a)(a);return 1==e.length&&e[0][2]?Object(r.a)(e[0][0],e[0][1]):function(t){return t===a||Object(n.a)(t,a,e)}}var n=t(566),o=t(569),r=t(966);e.a=i},function(a,e,t){"use strict";function i(a,e,t,i,c,l){var u=t&s,p=a.length,z=e.length;if(p!=z&&!(u&&z>p))return!1;var g=l.get(a);if(g&&l.get(e))return g==e;var m=-1,w=!0,y=t&d?new n.a:void 0;for(l.set(a,e),l.set(e,a);++m<p;){var f=a[m],b=e[m];if(i)var h=u?i(b,f,m,e,a,l):i(f,b,m,a,e,l);if(void 0!==h){if(h)continue;w=!1;break}if(y){if(!Object(o.a)(e,function(a,e){if(!Object(r.a)(y,e)&&(f===a||c(f,a,t,i,l)))return y.push(e)})){w=!1;break}}else if(f!==b&&!c(f,b,t,i,l)){w=!1;break}}return l.delete(a),l.delete(e),w}var n=t(407),o=t(567),r=t(408),s=1,d=2;e.a=i},function(a,e,t){"use strict";function i(a){return a===a&&!Object(n.a)(a)}var n=t(25);e.a=i},function(a,e,t){"use strict";function i(a,e){return function(t){return null!=t&&(t[a]===e&&(void 0!==e||a in Object(t)))}}e.a=i},function(a,e,t){"use strict";function i(a,e){return Object(s.a)(a)&&Object(d.a)(e)?Object(c.a)(Object(l.a)(a),e):function(t){var i=Object(o.a)(t,a);return void 0===i&&i===e?Object(r.a)(t,a):Object(n.a)(e,i,u|p)}}var n=t(406),o=t(323),r=t(327),s=t(543),d=t(965),c=t(966),l=t(104),u=1,p=2;e.a=i},function(a,e,t){"use strict";function i(a,e,t){e=Object(n.a)(e,a);for(var i=-1,l=e.length,u=!1;++i<l;){var p=Object(c.a)(e[i]);if(!(u=null!=a&&t(a,p)))break;a=a[p]}return u||++i!=l?u:!!(l=null==a?0:a.length)&&Object(d.a)(l)&&Object(s.a)(p,l)&&(Object(r.a)(a)||Object(o.a)(a))}var n=t(161),o=t(159),r=t(8),s=t(144),d=t(237),c=t(104);e.a=i},function(a,e,t){"use strict";function i(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}e.a=i},function(a,e,t){"use strict";function i(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}}e.a=i},function(a,e,t){"use strict";function i(a,e){return function(t,i){if(null==t)return t;if(!Object(n.a)(t))return a(t,i);for(var o=t.length,r=e?o:-1,s=Object(t);(e?r--:++r<o)&&!1!==i(s[r],r,s););return t}}var n=t(44);e.a=i},function(a,e,t){"use strict";function i(a,e,t){(void 0===t||Object(o.a)(a[e],t))&&(void 0!==t||e in a)||Object(n.a)(a,e,t)}var n=t(145),o=t(69);e.a=i},function(a,e,t){"use strict";function i(a,e){if("__proto__"!=e)return a[e]}e.a=i},function(a,e,t){"use strict";function i(a,e,t){if("function"!=typeof a)throw new TypeError(n);return setTimeout(function(){a.apply(void 0,t)},e)}var n="Expected a function";e.a=i},function(a,e,t){"use strict";var i=t(595),n=t(971),o=Object(n.a)(i.a,!0);e.a=o},function(a,e,t){"use strict";var i=t(970),n=Object(i.a)(!0);e.a=n},function(a,e,t){"use strict";function i(a){return function(e){var t=Object(o.a)(e);return t==d?Object(r.a)(e):t==c?Object(s.a)(e):Object(n.a)(e,a(e))}}var n=t(1308),o=t(149),r=t(568),s=t(1309),d="[object Map]",c="[object Set]";e.a=i},function(a,e,t){"use strict";function i(a,e){for(var t=-1,i=null==a?0:a.length;++t<i;)if(!e(a[t],t,a))return!1;return!0}e.a=i},function(a,e,t){"use strict";function i(a,e){var t=[];return Object(n.a)(a,function(a,i,n){e(a,i,n)&&t.push(a)}),t}var n=t(166);e.a=i},function(a,e,t){"use strict";function i(a){return function(e,t,i){var s=Object(e);if(!Object(o.a)(e)){var d=Object(n.a)(t,3);e=Object(r.a)(e),t=function(a){return d(s[a],a,s)}}var c=a(e,t,i);return c>-1?s[d?e[c]:c]:void 0}}var n=t(4),o=t(44),r=t(30);e.a=i},function(a,e,t){"use strict";function i(a,e,t){var i;return t(a,function(a,t,n){if(e(a,t,n))return i=t,!1}),i}e.a=i},function(a,e,t){"use strict";function i(a,e){var t=-1,i=Object(o.a)(a)?Array(a.length):[];return Object(n.a)(a,function(a,n,o){i[++t]=e(a,n,o)}),i}var n=t(166),o=t(44);e.a=i},function(a,e,t){"use strict";function i(a){return Object(o.a)(function(e){var t=e.length,i=t,o=n.a.prototype.thru;for(a&&e.reverse();i--;){var m=e[i];if("function"!=typeof m)throw new TypeError(l);if(o&&!w&&"wrapper"==Object(s.a)(m))var w=new n.a([],!0)}for(i=w?i:t;++i<t;){m=e[i];var y=Object(s.a)(m),f="wrapper"==y?Object(r.a)(m):void 0;w=f&&Object(c.a)(f[0])&&f[1]==(z|u|p|g)&&!f[4].length&&1==f[9]?w[Object(s.a)(f[0])].apply(w,f[3]):1==m.length&&Object(c.a)(m)?w[y]():w.thru(m)}return function(){var a=arguments,i=a[0];if(w&&1==a.length&&Object(d.a)(i))return w.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}})}var n=t(196),o=t(147),r=t(534),s=t(941),d=t(8),c=t(940),l="Expected a function",u=8,p=32,z=128,g=256;e.a=i},function(a,e,t){"use strict";function i(a,e){return function(t,i){return Object(n.a)(t,a,e(i),{})}}var n=t(1315);e.a=i},function(a,e,t){"use strict";function i(a,e){return e.length<2?a:Object(n.a)(a,Object(o.a)(e,0,-1))}var n=t(239),o=t(92);e.a=i},function(a,e,t){"use strict";function i(a,e){var t=null==a?0:a.length;return t?Object(n.a)(a,e)/t:o}var n=t(680),o=NaN;e.a=i},function(a,e,t){"use strict";function i(a,e){var t=a.length;if(t)return e+=e<0?t:0,Object(n.a)(e,t)?a[e]:void 0}var n=t(144);e.a=i},function(a,e,t){"use strict";function i(a,e,t){for(var i=-1,s=e.length,d={};++i<s;){var c=e[i],l=Object(n.a)(a,c);t(l,c)&&Object(o.a)(d,Object(r.a)(c,a),l)}return d}var n=t(239),o=t(331),r=t(161);e.a=i},function(a,e,t){"use strict";function i(a,e,t){var i=-1;e=Object(n.a)(e.length?e:[l.a],Object(d.a)(o.a));var u=Object(r.a)(a,function(a,t,o){return{criteria:Object(n.a)(e,function(e){return e(a)}),index:++i,value:a}});return Object(s.a)(u,function(a,e){return Object(c.a)(a,e,t)})}var n=t(27),o=t(4),r=t(982),s=t(1323),d=t(82),c=t(1324),l=t(43);e.a=i},function(a,e,t){"use strict";function i(a,e){if(a!==e){var t=void 0!==a,i=null===a,o=a===a,r=Object(n.a)(a),s=void 0!==e,d=null===e,c=e===e,l=Object(n.a)(e);if(!d&&!l&&!r&&a>e||r&&s&&c&&!d&&!l||i&&s&&c||!t&&c||!o)return 1;if(!i&&!r&&!l&&a<e||l&&t&&o&&!i&&!r||d&&t&&o||!s&&o||!c)return-1}return 0}var n=t(68);e.a=i},function(a,e,t){"use strict";function i(a,e){var t="";if(!a||e<1||e>n)return t;do{e%2&&(t+=a),(e=o(e/2))&&(a+=a)}while(e);return t}var n=9007199254740991,o=Math.floor;e.a=i},function(a,e,t){"use strict";function i(a,e){for(var t=a?e.length:0,i=t-1;t--;){var r=e[t];if(t==i||r!==d){var d=r;Object(o.a)(r)?s.call(a,r,1):Object(n.a)(a,r)}}return a}var n=t(691),o=t(144),r=Array.prototype,s=r.splice;e.a=i},function(a,e,t){"use strict";function i(a){return function(e,t,i){return i&&"number"!=typeof i&&Object(o.a)(e,t,i)&&(t=i=void 0),e=Object(r.a)(e),void 0===t?(t=e,e=0):t=Object(r.a)(t),i=void 0===i?e<t?1:-1:Object(r.a)(i),Object(n.a)(e,t,i,a)}}var n=t(1330),o=t(64),r=t(193);e.a=i},function(a,e,t){"use strict";function i(a,e,t,i,n){return n(a,function(a,n,o){t=i?(i=!1,a):e(t,a,n,o)}),t}e.a=i},function(a,e,t){"use strict";function i(a){var e=a.length;return e?a[Object(n.a)(0,e-1)]:void 0}var n=t(715);e.a=i},function(a,e,t){"use strict";function i(a,e){for(var t=-1,i=a.length,o=0,r=[];++t<i;){var s=a[t],d=e?e(s):s;if(!t||!Object(n.a)(d,c)){var c=d;r[o++]=0===s?0:s}}return r}var n=t(69);e.a=i},function(a,e,t){"use strict";var i=/<%=([\s\S]+?)%>/g;e.a=i},function(a,e,t){"use strict";function i(a,e){var t=a;return t instanceof n.a&&(t=t.value()),Object(r.a)(e,function(a,e){return e.func.apply(e.thisArg,Object(o.a)([a],e.args))},t)}var n=t(143),o=t(162),r=t(549);e.a=i},function(a,e,t){"use strict";function i(a,e){for(var t=a.length;t--&&Object(n.a)(e,a[t],0)>-1;);return t}var n=t(234);e.a=i},function(a,e,t){"use strict";function i(a,e){for(var t=-1,i=a.length;++t<i&&Object(n.a)(e,a[t],0)>-1;);return t}var n=t(234);e.a=i},function(a,e,t){"use strict";function i(a,e,t,i){return Object(o.a)(a,e,t(Object(n.a)(a,e)),i)}var n=t(239),o=t(331);e.a=i},function(a,e,t){"use strict";function i(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}e.a=i},function(a,e,t){"use strict";function i(){_=[],s=(0,c.default)(function(a){_.push(a)}),s.addRule(v,"content"),s.addRule(k,"greater-than-sign-content"),s.addRule(m,"block-start"),s.addRule(w,"block-end"),s.addRule(y,"inline-start"),s.addRule(f,"inline-end"),s.addRule(b,"other-element-start"),s.addRule(h,"other-element-end")}function n(a){return z.test(a)}function o(a){return g.test(a)}function r(a){var e=[],t=0,n="",o="",r="";return a=a.replace(j,""),i(),s.onText(a),s.end(),(0,l.forEach)(_,function(a,i){var s=_[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":s&&(0!==t||"block-start"!==s.type&&"block-end"!==s.type)?o+=a.src:(o+=a.src,e.push(o),n="",o="",r="");break;case"block-start":0!==t&&(""!==o.trim()&&e.push(o),o="",r=""),t++,n=a.src;break;case"block-end":t--,r=a.src,""!==n&&""!==r?e.push(n+o+r):""!==o.trim()&&e.push(o),n="",o="",r=""}t<0&&(t=0)}),e}Object.defineProperty(e,"__esModule",{value:!0}),e.getBlocks=e.isInlineElement=e.isBlockElement=e.inlineElements=e.blockElements=void 0;var s,d=t(1031),c=function(a){return a&&a.__esModule?a:{default:a}}(d),l=t(1),u=["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"],p=["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"],z=new RegExp("^("+u.join("|")+")$","i"),g=new RegExp("^("+p.join("|")+")$","i"),m=new RegExp("^<("+u.join("|")+")[^>]*?>$","i"),w=new RegExp("^</("+u.join("|")+")[^>]*?>$","i"),y=new RegExp("^<("+p.join("|")+")[^>]*>$","i"),f=new RegExp("^</("+p.join("|")+")[^>]*>$","i"),b=/^<([^>\s\/]+)[^>]*>$/,h=/^<\/([^>\s]+)[^>]*>$/,v=/^[^<]+$/,k=/^<[^><]*$/,j=/<!--(.|[\r\n])*?-->/g,_=[],x=(0,l.memoize)(r);e.blockElements=u,e.inlineElements=p,e.isBlockElement=n,e.isInlineElement=o,e.getBlocks=x,e.default={blockElements:u,inlineElements:p,isBlockElement:n,isInlineElement:o,getBlocks:x}},function(a,e,t){"use strict";function i(a){return a&&a.__esModule?a:{default:a}}function n(a,e){if(!(a instanceof e))throw new TypeError("Cannot call a class as a function")}function o(a,e){if(!a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!==(void 0===e?"undefined":s(e))&&"function"!=typeof e?a:e}function r(a,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+(void 0===e?"undefined":s(e)));a.prototype=Object.create(e&&e.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(a,e):a.__proto__=e)}var s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(a){return typeof a}:function(a){return a&&"function"==typeof Symbol&&a.constructor===Symbol&&a!==Symbol.prototype?"symbol":typeof a};Object.defineProperty(e,"__esModule",{value:!0});var d=function(){function a(a,e){for(var t=0;t<e.length;t++){var i=e[t];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(a,i.key,i)}}return function(e,t,i){return t&&a(e.prototype,t),i&&a(e,i),e}}(),c=t(1),l=t(106),u=i(l),p=t(459),z=i(p),g=t(47),m=t(40),w=i(m),y=t(263),f=i(y),b=function(a){function e(){var a=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};n(this,e);var t=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this)),i={parameters:{recommendedMaximum:0},scores:{bad:2},urlTitle:(0,g.createAnchorOpeningTag)("https://yoa.st/34l"),urlCallToAction:(0,g.createAnchorOpeningTag)("https://yoa.st/34m")};return t.identifier="textCompetingLinks",t._config=(0,c.merge)(i,a),t}return r(e,a),d(e,[{key:"getResult",value:function(a,e,t){var i=new w.default;this.linkCount=e.getResearch("getLinkStatistics");var n=this.calculateResult(t);return(0,c.isUndefined)(n)?i:(i.setScore(n.score),i.setText(n.resultText),i.setHasMarks(!0),i.setMarker(this.getMarks()),i)}},{key:"isApplicable",value:function(a){return a.hasText()&&a.hasKeyword()}},{key:"calculateResult",value:function(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>")}}},{key:"getMarks",value:function(){return(0,c.map)(this.linkCount.keyword.matchedAnchors,function(a){return new f.default({original:a,marked:(0,z.default)(a)})})}}]),e}(u.default);e.default=b},function(a,e,t){"use strict";function i(a){return a&&a.__esModule?a:{default:a}}function n(a,e){if(!(a instanceof e))throw new TypeError("Cannot call a class as a function")}function o(a,e){if(!a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!==(void 0===e?"undefined":s(e))&&"function"!=typeof e?a:e}function r(a,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+(void 0===e?"undefined":s(e)));a.prototype=Object.create(e&&e.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(a,e):a.__proto__=e)}var s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(a){return typeof a}:function(a){return a&&"function"==typeof Symbol&&a.constructor===Symbol&&a!==Symbol.prototype?"symbol":typeof a};Object.defineProperty(e,"__esModule",{value:!0});var d=function(){function a(a,e){for(var t=0;t<e.length;t++){var i=e[t];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(a,i.key,i)}}return function(e,t,i){return t&&a(e.prototype,t),i&&a(e,i),e}}(),c=t(1),l=t(106),u=i(l),p=t(47),z=t(40),g=i(z),m=function(a){function e(){var a=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};n(this,e);var t=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this)),i={scores:{noImages:3,withAltKeyword:9,withAltNonKeyword:6,withAlt:6,noAlt:6},urlTitle:(0,p.createAnchorOpeningTag)("https://yoa.st/33c"),urlCallToAction:(0,p.createAnchorOpeningTag)("https://yoa.st/33d")};return t.identifier="textImages",t._config=(0,c.merge)(i,a),t}return r(e,a),d(e,[{key:"getResult",value:function(a,e,t){var i=new g.default,n=e.getResearch("imageCount"),o=e.getResearch("altTagCount"),r=this.calculateResult(n,o,t);return i.setScore(r.score),i.setText(r.resultText),i}},{key:"isApplicable",value:function(a){return a.hasText()}},{key:"calculateResult",value:function(a,e,t){return 0===a?{score:this._config.scores.noImages,resultText:t.sprintf(t.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>")}:e.withAltKeyword>0?{score:this._config.scores.withAltKeyword,resultText:t.sprintf(t.dgettext("js-text-analysis","%1$sImage alt attributes%2$s: Some images on this page contain alt attributes with words from your keyphrase! Good job!"),this._config.urlTitle,"</a>")}:e.withAltNonKeyword>0?{score:this._config.scores.withAltNonKeyword,resultText:t.sprintf(t.dgettext("js-text-analysis","%1$sImage alt attributes%3$s: Images on this page do not have alt attributes with words from your keyphrase. %2$sFix that%3$s!"),this._config.urlTitle,this._config.urlCallToAction,"</a>")}:e.withAlt>0?{score:this._config.scores.withAlt,resultText:t.sprintf(t.dgettext("js-text-analysis","%1$sImage alt attributes%3$s: Images on this page do not have alt attributes with words from your keyphrase. %2$sFix that%3$s!"),this._config.urlTitle,this._config.urlCallToAction,"</a>")}:e.noAlt>0?{score:this._config.scores.noAlt,resultText:t.sprintf(t.dgettext("js-text-analysis","%1$sImage alt attributes%3$s: Images on this page do not have alt attributes with words from your keyphrase. %2$sFix that%3$s!"),this._config.urlTitle,this._config.urlCallToAction,"</a>")}:null}}]),e}(u.default);e.default=m},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a,e){for(var t=(0,n.default)(e),i=0;i<t.length;i++)a=a.replace(t[i].letter,t[i].alternative);return a};var i=t(1388),n=function(a){return a&&a.__esModule?a:{default:a}}(i)},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){(function(a){function t(a){return Array.isArray?Array.isArray(a):"[object Array]"===w(a)}function i(a){return"boolean"==typeof a}function n(a){return null===a}function o(a){return null==a}function r(a){return"number"==typeof a}function s(a){return"string"==typeof a}function d(a){return"symbol"==typeof a}function c(a){return void 0===a}function l(a){return"[object RegExp]"===w(a)}function u(a){return"object"==typeof a&&null!==a}function p(a){return"[object Date]"===w(a)}function z(a){return"[object Error]"===w(a)||a instanceof Error}function g(a){return"function"==typeof a}function m(a){return null===a||"boolean"==typeof a||"number"==typeof a||"string"==typeof a||"symbol"==typeof a||void 0===a}function w(a){return Object.prototype.toString.call(a)}e.isArray=t,e.isBoolean=i,e.isNull=n,e.isNullOrUndefined=o,e.isNumber=r,e.isString=s,e.isSymbol=d,e.isUndefined=c,e.isRegExp=l,e.isObject=u,e.isDate=p,e.isError=z,e.isFunction=g,e.isPrimitive=m,e.isBuffer=a.isBuffer}).call(e,t(1399).Buffer)},function(a,e,t){"use strict";function i(a){return a&&a.__esModule?a:{default:a}}Object.defineProperty(e,"__esModule",{value:!0});var n=t(1),o=t(823),r=i(o),s=t(811),d=i(s),c=t(1403),l=i(c);e.default=(0,n.memoize)(function(a,e,t){return(0,n.isUndefined)(e)&&(e=""),((0,n.isUndefined)(t)||!0===t)&&(a=(0,r.default)(a)),a=(0,l.default)(a),a=(0,n.escapeRegExp)(a),a=(0,d.default)(a,!1,e),new RegExp(a,"ig")})},function(a,e,t){"use strict";function i(a){return a&&a.__esModule?a:{default:a}}Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a,e){var t=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"en_EN",i=0,n=[];return e=e.map(l.normalize),(0,u.uniq)(e).forEach(function(e){var o=(0,c.default)(a,e,t);i+=o.count,n=n.concat(o.matches)}),null===n&&(n=[]),n=n.map(function(a){return(0,o.default)((0,s.default)(a))}),{count:i,matches:n}};var n=t(109),o=i(n),r=t(1380),s=i(r),d=t(1491),c=i(d),l=t(808),u=t(1)},,,,,,,,,,,,,,,,,,,,,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";function i(a){return a&&a.__esModule?a:{default:a}}function n(a,e){if(!(a instanceof e))throw new TypeError("Cannot call a class as a function")}function o(a,e){if(!a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!==(void 0===e?"undefined":s(e))&&"function"!=typeof e?a:e}function r(a,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+(void 0===e?"undefined":s(e)));a.prototype=Object.create(e&&e.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(a,e):a.__proto__=e)}var s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(a){return typeof a}:function(a){return a&&"function"==typeof Symbol&&a.constructor===Symbol&&a!==Symbol.prototype?"symbol":typeof a};Object.defineProperty(e,"__esModule",{value:!0});var d=function(){function a(a,e){for(var t=0;t<e.length;t++){var i=e[t];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(a,i.key,i)}}return function(e,t,i){return t&&a(e.prototype,t),i&&a(e,i),e}}(),c=t(1),l=t(106),u=i(l),p=t(1384),z=i(p),g=t(47),m=t(40),w=i(m),y=z.default.maxMeta,f=function(a){function e(){var a=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};n(this,e);var t=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this)),i={recommendedMaximumLength:120,maximumLength:y,scores:{noMetaDescription:1,tooLong:6,tooShort:6,correctLength:9},urlTitle:(0,g.createAnchorOpeningTag)("https://yoa.st/34d"),urlCallToAction:(0,g.createAnchorOpeningTag)("https://yoa.st/34e")};return t.identifier="metaDescriptionLength",t._config=(0,c.merge)(i,a),t}return r(e,a),d(e,[{key:"getMaximumLength",value:function(){return this._config.maximumLength}},{key:"getResult",value:function(a,e,t){var i=e.getResearch("metaDescriptionLength"),n=new w.default;return n.setScore(this.calculateScore(i)),n.setText(this.translateScore(i,t)),n.max=this._config.maximumLength,n.actual=i,n}},{key:"calculateScore",value:function(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}},{key:"translateScore",value:function(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}}]),e}(u.default);e.default=f},function(a,e,t){"use strict";function i(a){return a&&a.__esModule?a:{default:a}}function n(a,e){if(!(a instanceof e))throw new TypeError("Cannot call a class as a function")}function o(a,e){if(!a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!==(void 0===e?"undefined":s(e))&&"function"!=typeof e?a:e}function r(a,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+(void 0===e?"undefined":s(e)));a.prototype=Object.create(e&&e.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(a,e):a.__proto__=e)}var s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(a){return typeof a}:function(a){return a&&"function"==typeof Symbol&&a.constructor===Symbol&&a!==Symbol.prototype?"symbol":typeof a};Object.defineProperty(e,"__esModule",{value:!0});var d=function(){function a(a,e){for(var t=0;t<e.length;t++){var i=e[t];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(a,i.key,i)}}return function(e,t,i){return t&&a(e.prototype,t),i&&a(e,i),e}}(),c=t(1),l=t(106),u=i(l),p=t(444),z=t(47),g=t(40),m=i(g),w=600,y=function(a){function e(){var a=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};n(this,e);var t=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this)),i={minLength:400,maxLength:w,scores:{noTitle:1,widthTooShort:6,widthTooLong:3,widthCorrect:9},urlTitle:(0,z.createAnchorOpeningTag)("https://yoa.st/34h"),urlCallToAction:(0,z.createAnchorOpeningTag)("https://yoa.st/34i")};return t.identifier="titleWidth",t._config=(0,c.merge)(i,a),t}return r(e,a),d(e,[{key:"getMaximumLength",value:function(){return w}},{key:"getResult",value:function(a,e,t){var i=e.getResearch("pageTitleWidth"),n=new m.default;return n.setScore(this.calculateScore(i)),n.setText(this.translateScore(i,t)),n.max=this._config.maxLength,n.actual=i,n}},{key:"calculateScore",value:function(a){return(0,p.inRangeEndInclusive)(a,1,400)?this._config.scores.widthTooShort:(0,p.inRangeEndInclusive)(a,this._config.minLength,this._config.maxLength)?this._config.scores.widthCorrect:a>this._config.maxLength?this._config.scores.widthTooLong:this._config.scores.noTitle}},{key:"translateScore",value:function(a,e){return(0,p.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,p.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 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>")}}]),e}(u.default);e.default=y},function(a,e,t){"use strict";function i(a){return a&&a.__esModule?a:{default:a}}function n(a,e){if(!(a instanceof e))throw new TypeError("Cannot call a class as a function")}function o(a,e){if(!a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!==(void 0===e?"undefined":s(e))&&"function"!=typeof e?a:e}function r(a,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+(void 0===e?"undefined":s(e)));a.prototype=Object.create(e&&e.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(a,e):a.__proto__=e)}var s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(a){return typeof a}:function(a){return a&&"function"==typeof Symbol&&a.constructor===Symbol&&a!==Symbol.prototype?"symbol":typeof a};Object.defineProperty(e,"__esModule",{value:!0});var d=function(){function a(a,e){for(var t=0;t<e.length;t++){var i=e[t];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(a,i.key,i)}}return function(e,t,i){return t&&a(e.prototype,t),i&&a(e,i),e}}(),c=t(1),l=t(106),u=i(l),p=t(47),z=t(40),g=i(z),m=function(a){function e(){var a=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};n(this,e);var t=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this)),i={parameters:{recommendedPosition:0},scores:{good:9,okay:6,bad:2},urlTitle:(0,p.createAnchorOpeningTag)("https://yoa.st/33g"),urlCallToAction:(0,p.createAnchorOpeningTag)("https://yoa.st/33h")};return t.identifier="titleKeyword",t._config=(0,c.merge)(i,a),t}return r(e,a),d(e,[{key:"getResult",value:function(a,e,t){this._keywordMatches=e.getResearch("findKeywordInPageTitle"),this._keyword=(0,c.escape)(a.getKeyword());var i=new g.default,n=this.calculateResult(t,this._keyword);return i.setScore(n.score),i.setText(n.resultText),i}},{key:"isApplicable",value:function(a){return a.hasKeyword()&&a.hasTitle()}},{key:"calculateResult",value:function(a,e){var t=this._keywordMatches.exactMatch,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)}}}]),e}(u.default);e.default=m},function(a,e,t){"use strict";function i(a){return a&&a.__esModule?a:{default:a}}function n(a,e){if(!(a instanceof e))throw new TypeError("Cannot call a class as a function")}function o(a,e){if(!a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!==(void 0===e?"undefined":s(e))&&"function"!=typeof e?a:e}function r(a,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+(void 0===e?"undefined":s(e)));a.prototype=Object.create(e&&e.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(a,e):a.__proto__=e)}var s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(a){return typeof a}:function(a){return a&&"function"==typeof Symbol&&a.constructor===Symbol&&a!==Symbol.prototype?"symbol":typeof a};Object.defineProperty(e,"__esModule",{value:!0});var d=function(){function a(a,e){for(var t=0;t<e.length;t++){var i=e[t];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(a,i.key,i)}}return function(e,t,i){return t&&a(e.prototype,t),i&&a(e,i),e}}(),c=t(1),l=t(106),u=i(l),p=t(47),z=t(40),g=i(z),m=function(a){function e(){var a=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};n(this,e);var t=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this)),i={scores:{okay:6,good:9},urlTitle:(0,p.createAnchorOpeningTag)("https://yoa.st/33o"),urlCallToAction:(0,p.createAnchorOpeningTag)("https://yoa.st/33p")};return t.identifier="urlKeyword",t._config=(0,c.merge)(i,a),t}return r(e,a),d(e,[{key:"getResult",value:function(a,e,t){this._keywordInURL=e.getResearch("keywordCountInUrl");var i=new g.default,n=this.calculateResult(t);return i.setScore(n.score),i.setText(n.resultText),i}},{key:"isApplicable",value:function(a){return a.hasKeyword()&&a.hasUrl()}},{key:"calculateResult",value:function(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>")}}}]),e}(u.default);e.default=m},function(a,e,t){"use strict";function i(a){return a&&a.__esModule?a:{default:a}}function n(a,e){if(!(a instanceof e))throw new TypeError("Cannot call a class as a function")}function o(a,e){if(!a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!==(void 0===e?"undefined":s(e))&&"function"!=typeof e?a:e}function r(a,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+(void 0===e?"undefined":s(e)));a.prototype=Object.create(e&&e.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(a,e):a.__proto__=e)}var s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(a){return typeof a}:function(a){return a&&"function"==typeof Symbol&&a.constructor===Symbol&&a!==Symbol.prototype?"symbol":typeof a};Object.defineProperty(e,"__esModule",{value:!0});var d=function(){function a(a,e){for(var t=0;t<e.length;t++){var i=e[t];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(a,i.key,i)}}return function(e,t,i){return t&&a(e.prototype,t),i&&a(e,i),e}}(),c=t(1),l=t(106),u=i(l),p=t(47),z=t(40),g=i(z),m=function(a){function e(){var a=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};n(this,e);var t=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this)),i={scores:{tooLong:6},urlTitle:(0,p.createAnchorOpeningTag)("https://yoa.st/35b"),urlCallToAction:(0,p.createAnchorOpeningTag)("https://yoa.st/35c")};return t.identifier="urlLength",t._config=(0,c.merge)(i,a),t}return r(e,a),d(e,[{key:"getResult",value:function(a,e,t){var i=e.getResearch("urlLength"),n=new g.default;return n.setScore(this.calculateScore(i)),n.setText(this.translateScore(i,t)),n}},{key:"isApplicable",value:function(a){return a.hasUrl()}},{key:"calculateScore",value:function(a){return a?this._config.scores.tooLong:null}},{key:"translateScore",value:function(a,e){return a?e.sprintf(e.dgettext("js-text-analysis","%1$sSlug too long%3$s: the slug for this page is a bit long. %2$sShorten it%3$s!"),this._config.urlTitle,this._config.urlCallToAction,"</a>"):""}}]),e}(u.default);e.default=m},function(a,e,t){"use strict";function i(a){return a&&a.__esModule?a:{default:a}}Object.defineProperty(e,"__esModule",{value:!0});var n=t(40),o=i(n),r=t(822),s=i(r),d=t(47),c=["en"],l=function(a,e){var t=(0,d.createAnchorOpeningTag)("https://yoa.st/34p"),i=(0,d.createAnchorOpeningTag)("https://yoa.st/34q");return a>0?{score:5,text:e.sprintf(e.dngettext("js-text-analysis","%1$sSlug stopwords%3$s: The slug for this page contains a stop word. %2$sRemove it%3$s!","%1$sSlug stopwords%3$s: The slug for this page contains stop words. %2$sRemove them%3$s!",a),t,i,"</a>")}:{}},u=function(a,e,t){var i=e.getResearch("stopWordsInUrl"),n=new o.default,r=l(i.length,t);return n.setScore(r.score),n.setText(r.text),n};e.default={identifier:"urlStopWords",isApplicable:function(a){return(0,s.default)(a.getLocale(),c)},getResult:u}},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});var n=t(84);(function(a){return a&&a.__esModule?a:{default:a}})(n).default.inherits(i,Error),e.default=i},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=function(a){return-1===a?"error":0===a?"feedback":a<=4?"bad":a>4&&a<=7?"ok":a>7?"good":""};e.default=i},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a){return(0,n.default)(a,"<img(?:[^>]+)?>")};var i=t(1663),n=function(a){return a&&a.__esModule?a:{default:a}}(i)},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";(function(e){function t(a,t,i,n){if("function"!=typeof a)throw new TypeError('"callback" argument must be a function');var o,r,s=arguments.length;switch(s){case 0:case 1:return e.nextTick(a);case 2:return e.nextTick(function(){a.call(null,t)});case 3:return e.nextTick(function(){a.call(null,t,i)});case 4:return e.nextTick(function(){a.call(null,t,i,n)});default:for(o=new Array(s-1),r=0;r<o.length;)o[r++]=arguments[r];return e.nextTick(function(){a.apply(null,o)})}}!e.version||0===e.version.indexOf("v0.")||0===e.version.indexOf("v1.")&&0!==e.version.indexOf("v1.8.")?a.exports={nextTick:t}:a.exports=e}).call(e,t(445))},function(a,e,t){function i(a,e){for(var t in a)e[t]=a[t]}function n(a,e,t){return r(a,e,t)}var o=t(1399),r=o.Buffer;r.from&&r.alloc&&r.allocUnsafe&&r.allocUnsafeSlow?a.exports=o:(i(o,e),e.Buffer=n),i(r,n),n.from=function(a,e,t){if("number"==typeof a)throw new TypeError("Argument must not be a number");return r(a,e,t)},n.alloc=function(a,e,t){if("number"!=typeof a)throw new TypeError("Argument must be a number");var i=r(a);return void 0!==e?"string"==typeof t?i.fill(e,t):i.fill(e):i.fill(0),i},n.allocUnsafe=function(a){if("number"!=typeof a)throw new TypeError("Argument must be a number");return r(a)},n.allocUnsafeSlow=function(a){if("number"!=typeof a)throw new TypeError("Argument must be a number");return o.SlowBuffer(a)}},function(a,e,t){"use strict";function i(a){return a&&a.__esModule?a:{default:a}}Object.defineProperty(e,"__esModule",{value:!0});var n=t(1700),o=i(n),r=t(1),s=t(1404),d=i(s),c=t(1038),l=i(c),u=t(1489),p=i(u),z=t(1701),g=i(z),m=t(1727),w=i(m),y=t(1494),f=i(y),b=t(1728),h=i(b),v=t(1729),k=i(v),j=t(1730),_=i(j),x=t(1731),O=i(x),q=t(1732),E=i(q),A=t(1734),T=i(A),S=t(1736),M=i(S),P=t(1737),C=i(P),R=t(1740),D=i(R),F=t(1498),B=i(F),I=t(1741),L=i(I),$=t(1743),W=i($),U=t(1744),N=i(U),K=t(1745),H=i(K),V=t(1746),Y=i(V),G=t(1747),Z=i(G),J=t(1748),Q=i(J),X=t(1749),aa=i(X),ea=t(1750),ta=i(ea),ia=t(1751),na=i(ia),oa=t(1752),ra=i(oa),sa=t(1754),da=i(sa),ca=t(1768),la=i(ca),ua=t(1816),pa=i(ua),za=t(1826),ga=i(za),ma=t(1827),wa=i(ma),ya=t(1828),fa=i(ya),ba=t(1507),ha=i(ba),va=t(1829),ka=t(1493),ja=t(1830),_a=i(ja),xa=va.keyphraseDistributionResearcher,Oa=ka.research,qa=function(a){this.setPaper(a),this.defaultResearches={urlLength:h.default,wordCountInText:p.default,findKeywordInPageTitle:k.default,calculateFleschReading:C.default,getLinkStatistics:g.default,getLinks:f.default,linkCount:w.default,imageCount:B.default,altTagCount:L.default,matchKeywordInSubheadings:_.default,keywordCount:E.default,getKeywordDensity:O.default,stopWordsInKeyword:T.default,stopWordsInUrl:M.default,metaDescriptionLength:D.default,keyphraseLength:W.default,keywordCountInUrl:H.default,firstParagraph:Y.default,metaDescriptionKeyword:N.default,pageTitleWidth:Z.default,wordComplexity:Q.default,getParagraphLength:aa.default,countSentencesFromText:ta.default,countSentencesFromDescription:na.default,getSubheadingTextLengths:ra.default,findTransitionWords:da.default,passiveVoice:la.default,getSentenceBeginnings:pa.default,relevantWords:ga.default,readingTime:wa.default,getTopicDensity:fa.default,topicCount:ha.default,sentences:o.default,keyphraseDistribution:xa,morphology:Oa,functionWordsInKeyphrase:_a.default},this._data={},this.customResearches={}};qa.prototype.setPaper=function(a){this.paper=a},qa.prototype.addResearch=function(a,e){if((0,r.isUndefined)(a)||(0,r.isEmpty)(a))throw new l.default("Research name cannot be empty");if(!(e instanceof Function))throw new d.default("The research requires a Function callback.");this.customResearches[a]=e},qa.prototype.hasResearch=function(a){return Object.keys(this.getAvailableResearches()).filter(function(e){return e===a}).length>0},qa.prototype.getAvailableResearches=function(){return(0,r.merge)(this.defaultResearches,this.customResearches)},qa.prototype.getResearch=function(a){if((0,r.isUndefined)(a)||(0,r.isEmpty)(a))throw new l.default("Research name cannot be empty");return!!this.hasResearch(a)&&this.getAvailableResearches()[a](this.paper,this)},qa.prototype.addResearchData=function(a,e){this._data[a]=e},qa.prototype.getData=function(a){return!!this._data.hasOwnProperty(a)&&this._data[a]},e.default=qa},function(a,e,t){"use strict";function i(a,e){if(a.map)return a.map(e);for(var t=[],i=0;i<a.length;i++)t.push(e(a[i],i));return t}var n=function(a){switch(typeof a){case"string":return a;case"boolean":return a?"true":"false";case"number":return isFinite(a)?a:"";default:return""}};a.exports=function(a,e,t,s){return e=e||"&",t=t||"=",null===a&&(a=void 0),"object"==typeof a?i(r(a),function(r){var s=encodeURIComponent(n(r))+t;return o(a[r])?i(a[r],function(a){return s+encodeURIComponent(n(a))}).join(e):s+encodeURIComponent(n(a[r]))}).join(e):s?encodeURIComponent(n(s))+t+encodeURIComponent(n(a)):""};var o=Array.isArray||function(a){return"[object Array]"===Object.prototype.toString.call(a)},r=Object.keys||function(a){var e=[];for(var t in a)Object.prototype.hasOwnProperty.call(a,t)&&e.push(t);return e}},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";function i(a){return a&&a.__esModule?a:{default:a}}Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a,e,t){var i=(0,g.default)(a).map(function(a){return a.toLowerCase()}),o=i.indexOf(e.toLowerCase());if(o<1)return!1;for(var r=(0,n.get)(m,t,[]),s=0;s<o;s++)if((0,n.includes)(r,i[s]))return!0;return!1};var n=t(1),o=t(1391),r=i(o),s=t(1394),d=i(s),c=t(1393),l=i(c),u=t(1392),p=i(u),z=t(213),g=i(z),m={en:(0,r.default)().cannotBeBetweenPassiveAuxiliaryAndParticiple,fr:(0,d.default)().cannotBeBetweenPassiveAuxiliaryAndParticiple,it:(0,l.default)().cannotBeBetweenPassiveAuxiliaryAndParticiple,es:(0,p.default)().cannotBeBetweenPassiveAuxiliaryAndParticiple}},function(a,e,t){"use strict";function i(a){return a&&a.__esModule?a:{default:a}}Object.defineProperty(e,"__esModule",{value:!0});var n=t(340),o=i(n),r=t(1372),s=i(r),d=t(1373),c=i(d),l=t(1377),u=i(l),p=t(1378),z=i(p),g=t(1382),m=i(g),w=t(1375),y=i(w),f=t(1376),b=i(f),h=t(1381),v=i(h),k=t(1508),j=i(k),_=t(1039),x=i(_),O=t(1),q=function(a){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};o.default.call(this,a,e),this.type="ContentAssessor";var t=e.hasOwnProperty("locale")?e.locale:"en_US";this._assessments=[new s.default((0,j.default)(t).fleschReading),new z.default,c.default,new u.default((0,j.default)(t).sentenceLength),m.default,y.default,v.default,b.default]};t(84).inherits(q,o.default),q.prototype.calculatePenaltyPointsFullSupport=function(a){switch(a){case"bad":return 3;case"ok":return 2;default:case"good":return 0}},q.prototype.calculatePenaltyPointsPartialSupport=function(a){switch(a){case"bad":return 4;case"ok":return 2;default:case"good":return 0}},q.prototype._allAssessmentsSupported=function(){return 8===this.getApplicableAssessments().length},q.prototype.calculatePenaltyPoints=function(){var a=this.getValidResults(),e=(0,O.map)(a,function(a){var e=(0,x.default)(a.getScore());return this._allAssessmentsSupported()?this.calculatePenaltyPointsFullSupport(e):this.calculatePenaltyPointsPartialSupport(e)}.bind(this));return(0,O.sum)(e)},q.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},q.prototype.calculateOverallScore=function(){if(0===this.getValidResults().length)return 30;var a=this.calculatePenaltyPoints();return this._ratePenaltyPoints(a)},e.default=q},function(a,e,t){"use strict";function i(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}Object.defineProperty(e,"__esModule",{value:!0});var n=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},o=t(1),r={keyword:"",synonyms:"",description:"",title:"",titleWidth:0,url:"",locale:"en_US",permalink:""},s=function(a,e){this._text=a||"",e=e||{},(0,o.defaults)(e,r),""===e.locale&&(e.locale=r.locale);var t=e.keyword.replace(/[‘’“”"'.?!:;,¿¡«»&*@#±^%|~`[\](){}⟨⟩<>\/\\–\-\u2014\u00d7\u002b\u0026\s]/g,"");(0,o.isEmpty)(t)&&(e.keyword=r.keyword),this._attributes=e};s.prototype.hasKeyword=function(){return""!==this._attributes.keyword},s.prototype.getKeyword=function(){return this._attributes.keyword},s.prototype.hasSynonyms=function(){return""!==this._attributes.synonyms},s.prototype.getSynonyms=function(){return this._attributes.synonyms},s.prototype.hasText=function(){return""!==this._text},s.prototype.getText=function(){return this._text},s.prototype.hasDescription=function(){return""!==this._attributes.description},s.prototype.getDescription=function(){return this._attributes.description},s.prototype.hasTitle=function(){return""!==this._attributes.title},s.prototype.getTitle=function(){return this._attributes.title},s.prototype.hasTitleWidth=function(){return 0!==this._attributes.titleWidth},s.prototype.getTitleWidth=function(){return this._attributes.titleWidth},s.prototype.hasUrl=function(){return""!==this._attributes.url},s.prototype.getUrl=function(){return this._attributes.url},s.prototype.hasLocale=function(){return""!==this._attributes.locale},s.prototype.getLocale=function(){return this._attributes.locale},s.prototype.hasPermalink=function(){return""!==this._attributes.permalink},s.prototype.getPermalink=function(){return this._attributes.permalink},s.prototype.serialize=function(){return n({_parseClass:"Paper",text:this._text},this._attributes)},s.prototype.equals=function(a){return this._text===a.getText()&&(0,o.isEqual)(this._attributes,a._attributes)},s.parse=function(a){var e=a.text,t=(a._parseClass,i(a,["text","_parseClass"]));return new s(e,t)},e.default=s},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(a,e,t){"use strict";function i(a){return"number"==typeof a?a:Object(n.a)(a)?o:+a}var n=t(68),o=NaN;e.a=i},function(a,e,t){"use strict";function i(a){var e=r.call(a,d),t=a[d];try{a[d]=void 0;var i=!0}catch(a){}var n=s.call(a);return i&&(e?a[d]=t:delete a[d]),n}var n=t(158),o=Object.prototype,r=o.hasOwnProperty,s=o.toString,d=n.a?n.a.toStringTag:void 0;e.a=i},function(a,e,t){"use strict";function i(a){return o.call(a)}var n=Object.prototype,o=n.toString;e.a=i},function(a,e,t){"use strict";function i(a){return!!o&&o in a}var n=t(935),o=function(){var a=/[^.]+$/.exec(n.a&&n.a.keys&&n.a.keys.IE_PROTO||"");return a?"Symbol(src)_1."+a:""}();e.a=i},function(a,e,t){"use strict";function i(a,e){return null==a?void 0:a[e]}e.a=i},function(a,e,t){"use strict";function i(a,e,t){function i(){return(this&&this!==o.a&&this instanceof i?d:a).apply(s?t:this,arguments)}var s=e&r,d=Object(n.a)(a);return i}var n=t(383),o=t(39),r=1;e.a=i},function(a,e,t){"use strict";function i(a,e,t){function i(){for(var o=arguments.length,p=Array(o),z=o,g=Object(d.a)(i);z--;)p[z]=arguments[z];var m=o<3&&p[0]!==g&&p[o-1]!==g?[]:Object(c.a)(p,g);if((o-=m.length)<t)return Object(s.a)(a,e,r.a,i.placeholder,void 0,p,m,void 0,void 0,t-o);var w=this&&this!==l.a&&this instanceof i?u:a;return Object(n.a)(w,this,p)}var u=Object(o.a)(a);return i}var n=t(80),o=t(383),r=t(533),s=t(939),d=t(235),c=t(198),l=t(39);e.a=i},function(a,e,t){"use strict";function i(a,e){for(var t=a.length,i=0;t--;)a[t]===e&&++i;return i}e.a=i},function(a,e,t){"use strict";function i(a){var e=a.match(n);return e?e[1].split(o):[]}var n=/\{\n\/\* \[wrapped with (.+)\] \*/,o=/,? & /;e.a=i},function(a,e,t){"use strict";function i(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(n,"{\n/* [wrapped with "+e+"] */\n")}var n=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/;e.a=i},function(a,e,t){"use strict";var i=t(318),n=t(947),o=t(43),r=n.a?function(a,e){return Object(n.a)(a,"toString",{configurable:!0,enumerable:!1,value:Object(i.a)(e),writable:!0})}:o.a;e.a=r},function(a,e,t){"use strict";function i(a,e){return Object(n.a)(r,function(t){var i="_."+t[0];e&t[1]&&!Object(o.a)(a,i)&&a.push(i)}),a.sort()}var n=t(197),o=t(385),r=[["ary",128],["bind",1],["bindKey",2],["curry",8],["curryRight",16],["flip",512],["partial",32],["partialRight",64],["rearg",256]];e.a=i},function(a,e,t){"use strict";function i(a,e,t){for(var i=t-1,n=a.length;++i<n;)if(a[i]===e)return i;return-1}e.a=i},function(a,e,t){"use strict";function i(a,e){for(var t=a.length,i=r(e.length,t),s=Object(n.a)(a);i--;){var d=e[i];a[i]=Object(o.a)(d,t)?s[d]:void 0}return a}var n=t(81),o=t(144),r=Math.min;e.a=i},function(a,e,t){"use strict";function i(a,e,t,i){function d(){for(var e=-1,o=arguments.length,s=-1,u=i.length,p=Array(u+o),z=this&&this!==r.a&&this instanceof d?l:a;++s<u;)p[s]=i[s];for(;o--;)p[s++]=arguments[++e];return Object(n.a)(z,c?t:this,p)}var c=e&s,l=Object(o.a)(a);return d}var n=t(80),o=t(383),r=t(39),s=1;e.a=i},function(a,e,t){"use strict";function i(a,e){var t=a[1],i=e[1],m=t|i,w=m<(d|c|p),y=i==p&&t==u||i==p&&t==z&&a[7].length<=e[8]||i==(p|z)&&e[7].length<=e[8]&&t==u;if(!w&&!y)return a;i&d&&(a[2]=e[2],m|=t&d?0:l);var f=e[3];if(f){var b=a[3];a[3]=b?Object(n.a)(b,f,e[4]):f,a[4]=b?Object(r.a)(a[3],s):e[4]}return f=e[5],f&&(b=a[5],a[5]=b?Object(o.a)(b,f,e[6]):f,a[6]=b?Object(r.a)(a[5],s):e[6]),f=e[7],f&&(a[7]=f),i&p&&(a[8]=null==a[8]?e[8]:g(a[8],e[8])),null==a[9]&&(a[9]=e[9]),a[0]=e[0],a[1]=m,a}var n=t(937),o=t(938),r=t(198),s="__lodash_placeholder__",d=1,c=2,l=4,u=8,p=128,z=256,g=Math.min;e.a=i},function(a,e,t){"use strict";function i(a){return Object(o.a)(a)&&Object(n.a)(a)==r}var n=t(63),o=t(23),r="[object Arguments]";e.a=i},function(a,e,t){"use strict";function i(a){return Object(r.a)(a)&&Object(o.a)(a.length)&&!!s[Object(n.a)(a)]}var n=t(63),o=t(237),r=t(23),s={};s["[object Float32Array]"]=s["[object Float64Array]"]=s["[object Int8Array]"]=s["[object Int16Array]"]=s["[object Int32Array]"]=s["[object Uint8Array]"]=s["[object Uint8ClampedArray]"]=s["[object Uint16Array]"]=s["[object Uint32Array]"]=!0,s["[object Arguments]"]=s["[object Array]"]=s["[object ArrayBuffer]"]=s["[object Boolean]"]=s["[object DataView]"]=s["[object Date]"]=s["[object Error]"]=s["[object Function]"]=s["[object Map]"]=s["[object Number]"]=s["[object Object]"]=s["[object RegExp]"]=s["[object Set]"]=s["[object String]"]=s["[object WeakMap]"]=!1,e.a=i},function(a,e,t){"use strict";var i=t(951),n=Object(i.a)(Object.keys,Object);e.a=n},function(a,e,t){"use strict";function i(a){if(!Object(n.a)(a))return Object(r.a)(a);var e=Object(o.a)(a),t=[];for(var i in a)("constructor"!=i||!e&&d.call(a,i))&&t.push(i);return t}var n=t(25),o=t(320),r=t(1252),s=Object.prototype,d=s.hasOwnProperty;e.a=i},function(a,e,t){"use strict";function i(a){var e=[];if(null!=a)for(var t in Object(a))e.push(t);return e}e.a=i},function(a,e,t){"use strict";function i(a){var e=Object(n.a)(a,function(a){return t.size===o&&t.clear(),a}),t=e.cache;return e}var n=t(388),o=500;e.a=i},function(a,e,t){"use strict";function i(){this.size=0,this.__data__={hash:new n.a,map:new(r.a||o.a),string:new n.a}}var n=t(1255),o=t(390),r=t(545);e.a=i},function(a,e,t){"use strict";function i(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])}}var n=t(1256),o=t(1257),r=t(1258),s=t(1259),d=t(1260);i.prototype.clear=n.a,i.prototype.delete=o.a,i.prototype.get=r.a,i.prototype.has=s.a,i.prototype.set=d.a,e.a=i},function(a,e,t){"use strict";function i(){this.__data__=n.a?Object(n.a)(null):{},this.size=0}var n=t(389);e.a=i},function(a,e,t){"use strict";function i(a){var e=this.has(a)&&delete this.__data__[a];return this.size-=e?1:0,e}e.a=i},function(a,e,t){"use strict";function i(a){var e=this.__data__;if(n.a){var t=e[a];return t===o?void 0:t}return s.call(e,a)?e[a]:void 0}var n=t(389),o="__lodash_hash_undefined__",r=Object.prototype,s=r.hasOwnProperty;e.a=i},function(a,e,t){"use strict";function i(a){var e=this.__data__;return n.a?void 0!==e[a]:r.call(e,a)}var n=t(389),o=Object.prototype,r=o.hasOwnProperty;e.a=i},function(a,e,t){"use strict";function i(a,e){var t=this.__data__;return this.size+=this.has(a)?0:1,t[a]=n.a&&void 0===e?o:e,this}var n=t(389),o="__lodash_hash_undefined__";e.a=i},function(a,e,t){"use strict";function i(){this.__data__=[],this.size=0}e.a=i},function(a,e,t){"use strict";function i(a){var e=this.__data__,t=Object(n.a)(e,a);return!(t<0)&&(t==e.length-1?e.pop():r.call(e,t,1),--this.size,!0)}var n=t(391),o=Array.prototype,r=o.splice;e.a=i},function(a,e,t){"use strict";function i(a){var e=this.__data__,t=Object(n.a)(e,a);return t<0?void 0:e[t][1]}var n=t(391);e.a=i},function(a,e,t){"use strict";function i(a){return Object(n.a)(this.__data__,a)>-1}var n=t(391);e.a=i},function(a,e,t){"use strict";function i(a,e){var t=this.__data__,i=Object(n.a)(t,a);return i<0?(++this.size,t.push([a,e])):t[i][1]=e,this}var n=t(391);e.a=i},function(a,e,t){"use strict";function i(a){var e=Object(n.a)(this,a).delete(a);return this.size-=e?1:0,e}var n=t(392);e.a=i},function(a,e,t){"use strict";function i(a){var e=typeof a;return"string"==e||"number"==e||"symbol"==e||"boolean"==e?"__proto__"!==a:null===a}e.a=i},function(a,e,t){"use strict";function i(a){return Object(n.a)(this,a).get(a)}var n=t(392);e.a=i},function(a,e,t){"use strict";function i(a){return Object(n.a)(this,a).has(a)}var n=t(392);e.a=i},function(a,e,t){"use strict";function i(a,e){var t=Object(n.a)(this,a),i=t.size;return t.set(a,e),this.size+=t.size==i?0:1,this}var n=t(392);e.a=i},function(a,e,t){"use strict";function i(a){return Object(r.a)(a)||Object(o.a)(a)||!!(s&&a&&a[s])}var n=t(158),o=t(159),r=t(8),s=n.a?n.a.isConcatSpreadable:void 0;e.a=i},function(a,e,t){"use strict";function i(a){return a.split("")}e.a=i},function(a,e,t){"use strict";function i(a){return a.match(p)||[]}var n="[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]",o="\\ud83c[\\udffb-\\udfff]",r="(?:\\ud83c[\\udde6-\\uddff]){2}",s="[\\ud800-\\udbff][\\udc00-\\udfff]",d="(?:[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]|\\ud83c[\\udffb-\\udfff])?",c="(?:\\u200d(?:"+["[^\\ud800-\\udfff]",r,s].join("|")+")[\\ufe0e\\ufe0f]?"+d+")*",l="[\\ufe0e\\ufe0f]?"+d+c,u="(?:"+["[^\\ud800-\\udfff]"+n+"?",n,r,s,"[\\ud800-\\udfff]"].join("|")+")",p=RegExp(o+"(?="+o+")|"+u+l,"g");e.a=i},function(a,e,t){"use strict";var i=t(550),n={"À":"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"},o=Object(i.a)(n);e.a=o},function(a,e,t){"use strict";function i(a){return a.match(n)||[]}var n=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g;e.a=i},function(a,e,t){"use strict";function i(a){return n.test(a)}var n=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/;e.a=i},function(a,e,t){"use strict";function i(a){return a.match(w)||[]}var n="\\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",o="["+n+"]",r="[a-z\\xdf-\\xf6\\xf8-\\xff]",s="[^\\ud800-\\udfff"+n+"\\d+\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde]",d="(?:\\ud83c[\\udde6-\\uddff]){2}",c="[\\ud800-\\udbff][\\udc00-\\udfff]",l="[A-Z\\xc0-\\xd6\\xd8-\\xde]",u="(?:"+r+"|"+s+")",p="(?:[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]|\\ud83c[\\udffb-\\udfff])?",z="(?:\\u200d(?:"+["[^\\ud800-\\udfff]",d,c].join("|")+")[\\ufe0e\\ufe0f]?"+p+")*",g="[\\ufe0e\\ufe0f]?"+p+z,m="(?:"+["[\\u2700-\\u27bf]",d,c].join("|")+")"+g,w=RegExp([l+"?"+r+"+(?:['’](?:d|ll|m|re|s|t|ve))?(?="+[o,l,"$"].join("|")+")","(?:[A-Z\\xc0-\\xd6\\xd8-\\xde]|[^\\ud800-\\udfff\\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\\d+\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde])+(?:['’](?:D|LL|M|RE|S|T|VE))?(?="+[o,l+u,"$"].join("|")+")",l+"?"+u+"+(?:['’](?:d|ll|m|re|s|t|ve))?",l+"+(?:['’](?: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_])","\\d+",m].join("|"),"g");e.a=i},function(a,e,t){"use strict";function i(){this.__data__=new n.a,this.size=0}var n=t(390);e.a=i},function(a,e,t){"use strict";function i(a){var e=this.__data__,t=e.delete(a);return this.size=e.size,t}e.a=i},function(a,e,t){"use strict";function i(a){return this.__data__.get(a)}e.a=i},function(a,e,t){"use strict";function i(a){return this.__data__.has(a)}e.a=i},function(a,e,t){"use strict";function i(a,e){var t=this.__data__;if(t instanceof n.a){var i=t.__data__;if(!o.a||i.length<s-1)return i.push([a,e]),this.size=++t.size,this;t=this.__data__=new r.a(i)}return t.set(a,e),this.size=t.size,this}var n=t(390),o=t(545),r=t(544),s=200;e.a=i},function(a,e,t){"use strict";function i(a,e){return a&&Object(n.a)(e,Object(o.a)(e),a)}var n=t(103),o=t(53);e.a=i},function(a,e,t){"use strict";function i(a,e){return Object(n.a)(a,Object(o.a)(a),e)}var n=t(103),o=t(557);e.a=i},function(a,e,t){"use strict";function i(a,e){return Object(n.a)(a,Object(o.a)(a),e)}var n=t(103),o=t(956);e.a=i},function(a,e,t){"use strict";var i=t(194),n=t(39),o=Object(i.a)(n.a,"DataView");e.a=o},function(a,e,t){"use strict";var i=t(194),n=t(39),o=Object(i.a)(n.a,"Promise");e.a=o},function(a,e,t){"use strict";function i(a){var e=a.length,t=new a.constructor(e);return e&&"string"==typeof a[0]&&o.call(a,"index")&&(t.index=a.index,t.input=a.input),t}var n=Object.prototype,o=n.hasOwnProperty;e.a=i},function(a,e,t){"use strict";function i(a,e,t){var i=a.constructor;switch(e){case y:return Object(n.a)(a);case c:case l:return new i(+a);case f:return Object(o.a)(a,t);case b:case h:case v:case k:case j:case _:case x:case O:case q:return Object(d.a)(a,t);case u:return new i;case p:case m:return new i(a);case z:return Object(r.a)(a);case g:return new i;case w:return Object(s.a)(a)}}var n=t(559),o=t(1290),r=t(1291),s=t(1292),d=t(961),c="[object Boolean]",l="[object Date]",u="[object Map]",p="[object Number]",z="[object RegExp]",g="[object Set]",m="[object String]",w="[object Symbol]",y="[object ArrayBuffer]",f="[object DataView]",b="[object Float32Array]",h="[object Float64Array]",v="[object Int8Array]",k="[object Int16Array]",j="[object Int32Array]",_="[object Uint8Array]",x="[object Uint8ClampedArray]",O="[object Uint16Array]",q="[object Uint32Array]";e.a=i},function(a,e,t){"use strict";function i(a,e){var t=e?Object(n.a)(a.buffer):a.buffer;return new a.constructor(t,a.byteOffset,a.byteLength)}var n=t(559);e.a=i},function(a,e,t){"use strict";function i(a){var e=new a.constructor(a.source,n.exec(a));return e.lastIndex=a.lastIndex,e}var n=/\w*$/;e.a=i},function(a,e,t){"use strict";function i(a){return r?Object(r.call(a)):{}}var n=t(158),o=n.a?n.a.prototype:void 0,r=o?o.valueOf:void 0;e.a=i},function(a,e,t){"use strict";function i(a){return Object(o.a)(a)&&Object(n.a)(a)==r}var n=t(149),o=t(23),r="[object Map]";e.a=i},function(a,e,t){"use strict";function i(a){return Object(o.a)(a)&&Object(n.a)(a)==r}var n=t(149),o=t(23),r="[object Set]";e.a=i},function(a,e,t){"use strict";function i(a,e,t,i,w,f){var b=Object(c.a)(a),h=Object(c.a)(e),v=b?g:Object(d.a)(a),k=h?g:Object(d.a)(e);v=v==z?m:v,k=k==z?m:k;var j=v==m,_=k==m,x=v==k;if(x&&Object(l.a)(a)){if(!Object(l.a)(e))return!1;b=!0,j=!1}if(x&&!j)return f||(f=new n.a),b||Object(u.a)(a)?Object(o.a)(a,e,t,i,w,f):Object(r.a)(a,e,v,t,i,w,f);if(!(t&p)){var O=j&&y.call(a,"__wrapped__"),q=_&&y.call(e,"__wrapped__");if(O||q){var E=O?a.value():a,A=q?e.value():e;return f||(f=new n.a),w(E,A,t,i,f)}}return!!x&&(f||(f=new n.a),Object(s.a)(a,e,t,i,w,f))}var n=t(402),o=t(964),r=t(1298),s=t(1299),d=t(149),c=t(8),l=t(146),u=t(160),p=1,z="[object Arguments]",g="[object Array]",m="[object Object]",w=Object.prototype,y=w.hasOwnProperty;e.a=i},function(a,e,t){"use strict";function i(a){return this.__data__.set(a,n),this}var n="__lodash_hash_undefined__";e.a=i},function(a,e,t){"use strict";function i(a){return this.__data__.has(a)}e.a=i},function(a,e,t){"use strict";function i(a,e,t,i,n,j,x){switch(t){case k:if(a.byteLength!=e.byteLength||a.byteOffset!=e.byteOffset)return!1;a=a.buffer,e=e.buffer;case v:return!(a.byteLength!=e.byteLength||!j(new o.a(a),new o.a(e)));case p:case z:case w:return Object(r.a)(+a,+e);case g:return a.name==e.name&&a.message==e.message;case y:case b:return a==e+"";case m:var O=d.a;case f:var q=i&l;if(O||(O=c.a),a.size!=e.size&&!q)return!1;var E=x.get(a);if(E)return E==e;i|=u,x.set(a,e);var A=Object(s.a)(O(a),O(e),i,n,j,x);return x.delete(a),A;case h:if(_)return _.call(a)==_.call(e)}return!1}var n=t(158),o=t(960),r=t(69),s=t(964),d=t(568),c=t(409),l=1,u=2,p="[object Boolean]",z="[object Date]",g="[object Error]",m="[object Map]",w="[object Number]",y="[object RegExp]",f="[object Set]",b="[object String]",h="[object Symbol]",v="[object ArrayBuffer]",k="[object DataView]",j=n.a?n.a.prototype:void 0,_=j?j.valueOf:void 0;e.a=i},function(a,e,t){"use strict";function i(a,e,t,i,r,d){var c=t&o,l=Object(n.a)(a),u=l.length;if(u!=Object(n.a)(e).length&&!c)return!1;for(var p=u;p--;){var z=l[p];if(!(c?z in e:s.call(e,z)))return!1}var g=d.get(a);if(g&&d.get(e))return g==e;var m=!0;d.set(a,e),d.set(e,a);for(var w=c;++p<u;){z=l[p];var y=a[z],f=e[z];if(i)var b=c?i(f,y,z,e,a,d):i(y,f,z,a,e,d);if(!(void 0===b?y===f||r(y,f,t,i,d):b)){m=!1;break}w||(w="constructor"==z)}if(m&&!w){var h=a.constructor,v=e.constructor;h!=v&&"constructor"in a&&"constructor"in e&&!("function"==typeof h&&h instanceof h&&"function"==typeof v&&v instanceof v)&&(m=!1)}return d.delete(a),d.delete(e),m}var n=t(957),o=1,r=Object.prototype,s=r.hasOwnProperty;e.a=i},function(a,e,t){"use strict";function i(a,e){return null!=a&&e in Object(a)}e.a=i},function(a,e,t){"use strict";function i(a){return function(e){return Object(n.a)(e,a)}}var n=t(239);e.a=i},function(a,e,t){"use strict";function i(a){var e=Object(o.a)(a);return function(t){return Object(n.a)(t,a,e)}}var n=t(969),o=t(30);e.a=i},function(a,e,t){"use strict";function i(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}e.a=i},function(a,e,t){"use strict";function i(a,e,t,i){return Object(n.a)(a,function(a,n,o){e(i,a,t(a),o)}),i}var n=t(166);e.a=i},function(a,e,t){"use strict";function i(a,e,t,r,s,d){return Object(o.a)(a)&&Object(o.a)(e)&&(d.set(e,a),Object(n.a)(a,e,void 0,i,d),d.delete(e)),a}var n=t(581),o=t(25);e.a=i},function(a,e,t){"use strict";function i(a,e,t,i,b,h,v){var k=Object(y.a)(a,t),j=Object(y.a)(e,t),_=v.get(j);if(_)return void Object(n.a)(a,t,_);var x=h?h(k,j,t+"",a,e,v):void 0,O=void 0===x;if(O){var q=Object(l.a)(j),E=!q&&Object(p.a)(j),A=!q&&!E&&Object(w.a)(j);x=j,q||E||A?Object(l.a)(k)?x=k:Object(u.a)(k)?x=Object(s.a)(k):E?(O=!1,x=Object(o.a)(j,!0)):A?(O=!1,x=Object(r.a)(j,!0)):x=[]:Object(m.a)(j)||Object(c.a)(j)?(x=k,Object(c.a)(k)?x=Object(f.a)(k):Object(g.a)(k)&&!Object(z.a)(k)||(x=Object(d.a)(j))):O=!1}O&&(v.set(j,x),b(x,j,i,h,v),v.delete(j)),Object(n.a)(a,t,x)}var n=t(972),o=t(955),r=t(961),s=t(81),d=t(962),c=t(159),l=t(8),u=t(46),p=t(146),z=t(91),g=t(25),m=t(199),w=t(160),y=t(973),f=t(414);e.a=i},function(a,e,t){"use strict";function i(a,e){for(var t=null==a?0:a.length;t--&&!1!==e(a[t],t,a););return a}e.a=i},function(a,e,t){"use strict";function i(a,e){return Object(n.a)(e,function(e){return[e,a[e]]})}var n=t(27);e.a=i},function(a,e,t){"use strict";function i(a){var e=-1,t=Array(a.size);return a.forEach(function(a){t[++e]=[a,a]}),t}e.a=i},function(a,e,t){"use strict";var i=t(550),n={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;"},o=Object(i.a)(n);e.a=o},function(a,e,t){"use strict";function i(a,e){var t=!0;return Object(n.a)(a,function(a,i,n){return t=!!e(a,i,n)}),t}var n=t(166);e.a=i},function(a,e,t){"use strict";function i(a,e,t,i){var r=a.length;for(t=Object(n.a)(t),t<0&&(t=-t>r?0:r+t),i=void 0===i||i>r?r:Object(n.a)(i),i<0&&(i+=r),i=t>i?0:Object(o.a)(i);t<i;)a[t++]=e;return a}var n=t(10),o=t(422);e.a=i},function(a,e,t){"use strict";function i(a,e){return null!=a&&o.call(a,e)}var n=Object.prototype,o=n.hasOwnProperty;e.a=i},function(a,e,t){"use strict";function i(a,e,t){return a>=o(e,t)&&a<n(e,t)}var n=Math.max,o=Math.min;e.a=i},function(a,e,t){"use strict";function i(a,e,t,i){return Object(n.a)(a,function(a,n,o){e(i,t(a),n,o)}),i}var n=t(167);e.a=i},function(a,e,t){"use strict";function i(a){return Object(o.a)(a)&&Object(n.a)(a)==r}var n=t(63),o=t(23),r="[object ArrayBuffer]";e.a=i},function(a,e,t){"use strict";function i(a){return Object(o.a)(a)&&Object(n.a)(a)==r}var n=t(63),o=t(23),r="[object Date]";e.a=i},function(a,e,t){"use strict";var i=t(935),n=t(91),o=t(321),r=i.a?n.a:o.a;e.a=r},function(a,e,t){"use strict";function i(a){return Object(o.a)(a)&&Object(n.a)(a)==r}var n=t(63),o=t(23),r="[object RegExp]";e.a=i},function(a,e,t){"use strict";function i(a,e,t){for(var i=t+1;i--;)if(a[i]===e)return i;return i}e.a=i},function(a,e,t){"use strict";function i(a){for(var e,t=[];!(e=a.next()).done;)t.push(e.value);return t}e.a=i},function(a,e,t){"use strict";function i(a){return Object(n.a)(a)?void 0:a}var n=t(199);e.a=i},function(a,e,t){"use strict";function i(a,e){var t=a.length;for(a.sort(e);t--;)a[t]=a[t].value;return a}e.a=i},function(a,e,t){"use strict";function i(a,e,t){for(var i=-1,o=a.criteria,r=e.criteria,s=o.length,d=t.length;++i<s;){var c=Object(n.a)(o[i],r[i]);if(c){if(i>=d)return c;return c*("desc"==t[i]?-1:1)}}return a.index-e.index}var n=t(990);e.a=i},function(a,e,t){"use strict";var i=t(9),n=i.a;e.a=n},function(a,e,t){"use strict";var i=t(570),n=Object(i.a)("length");e.a=n},function(a,e,t){"use strict";function i(a){for(var e=p.lastIndex=0;p.test(a);)++e;return e}var n="[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]",o="\\ud83c[\\udffb-\\udfff]",r="(?:\\ud83c[\\udde6-\\uddff]){2}",s="[\\ud800-\\udbff][\\udc00-\\udfff]",d="(?:[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]|\\ud83c[\\udffb-\\udfff])?",c="(?:\\u200d(?:"+["[^\\ud800-\\udfff]",r,s].join("|")+")[\\ufe0e\\ufe0f]?"+d+")*",l="[\\ufe0e\\ufe0f]?"+d+c,u="(?:"+["[^\\ud800-\\udfff]"+n+"?",n,r,s,"[\\ud800-\\udfff]"].join("|")+")",p=RegExp(o+"(?="+o+")|"+u+l,"g");e.a=i},function(a,e,t){"use strict";function i(a,e){return Object(n.a)(a,e,function(e,t){return Object(o.a)(a,t)})}var n=t(988),o=t(327);e.a=i},function(a,e,t){"use strict";function i(a,e,t,i){for(var n=t-1,o=a.length;++n<o;)if(i(a[n],e))return n;return-1}e.a=i},function(a,e,t){"use strict";function i(a,e,t,i){for(var r=-1,s=o(n((e-a)/(t||1)),0),d=Array(s);s--;)d[i?s:++r]=a,a+=t;return d}var n=Math.ceil,o=Math.max;e.a=i},function(a,e,t){"use strict";function i(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}e.a=i},function(a,e,t){"use strict";function i(a){return Object(n.a)(Object(o.a)(a))}var n=t(995),o=t(168);e.a=i},function(a,e,t){"use strict";function i(a,e){return Object(r.a)(Object(o.a)(a),Object(n.a)(e,0,a.length))}var n=t(200),o=t(81),r=t(439);e.a=i},function(a,e,t){"use strict";function i(a,e){var t=Object(r.a)(a);return Object(o.a)(t,Object(n.a)(e,0,t.length))}var n=t(200),o=t(439),r=t(168);e.a=i},function(a,e,t){"use strict";function i(a){return Object(o.a)(Object(n.a)(a))}var n=t(81),o=t(439);e.a=i},function(a,e,t){"use strict";function i(a){return Object(n.a)(Object(o.a)(a))}var n=t(439),o=t(168);e.a=i},function(a,e,t){"use strict";function i(a,e){var t;return Object(n.a)(a,function(a,i,n){return!(t=e(a,i,n))}),!!t}var n=t(166);e.a=i},function(a,e,t){"use strict";function i(a,e,t,i){return void 0===a||Object(n.a)(a,o[t])&&!r.call(i,t)?e:a}var n=t(69),o=Object.prototype,r=o.hasOwnProperty;e.a=i},function(a,e,t){"use strict";function i(a){return"\\"+n[a]}var n={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"};e.a=i},function(a,e,t){"use strict";var i=/<%-([\s\S]+?)%>/g;e.a=i},function(a,e,t){"use strict";var i=/<%([\s\S]+?)%>/g;e.a=i},function(a,e,t){"use strict";var i=t(550),n={"&amp;":"&","&lt;":"<","&gt;":">","&quot;":'"',"&#39;":"'"},o=Object(i.a)(n);e.a=o},function(a,e,t){"use strict";var i=t(959),n=t(317),o=t(409),r=i.a&&1/Object(o.a)(new i.a([,-0]))[1]==1/0?function(a){return new i.a(a)}:n.a;e.a=r},function(a,e,t){"use strict";var i=t(247);t.d(e,"a",function(){return i.a})},function(a,e,t){"use strict";var i=t(1346),n=t(1348),o=t(1350),r=t(1352),s=t(1354),d=t(1356),c=t(1358),l=t(1360),u=t(1362),p=t(1364),z=t(1366),g=t(143),m=t(196),w=t(158),y=t(197),f=t(162),b=t(167),h=t(426),v=t(329),k=t(4),j=t(9),_=t(533),x=t(43),O=t(8),q=t(25),E=t(30),A=t(65),T=t(1368),S=t(1369),M=t(1370),P=t(431),C=t(244),R=t(942),D=t(246),F=t(10),B=t(195),I=Array.prototype,L=Object.prototype,$=L.hasOwnProperty,W=w.a?w.a.iterator:void 0,U=Math.max,N=Math.min,K=function(a){return function(e,t,i){if(null==i){var n=Object(q.a)(t),o=n&&Object(E.a)(t),r=o&&o.length&&Object(h.a)(t,o);(r?r.length:n)||(i=t,t=e,e=this)}return a(e,t,i)}}(P.a);B.a.after=r.a.after,B.a.ary=r.a.ary,B.a.assign=l.a.assign,B.a.assignIn=l.a.assignIn,B.a.assignInWith=l.a.assignInWith,B.a.assignWith=l.a.assignWith,B.a.at=l.a.at,B.a.before=r.a.before,B.a.bind=r.a.bind,B.a.bindAll=z.a.bindAll,B.a.bindKey=r.a.bindKey,B.a.castArray=s.a.castArray,B.a.chain=u.a.chain,B.a.chunk=i.a.chunk,B.a.compact=i.a.compact,B.a.concat=i.a.concat,B.a.cond=z.a.cond,B.a.conforms=z.a.conforms,B.a.constant=z.a.constant,B.a.countBy=n.a.countBy,B.a.create=l.a.create,B.a.curry=r.a.curry,B.a.curryRight=r.a.curryRight,B.a.debounce=r.a.debounce,B.a.defaults=l.a.defaults,B.a.defaultsDeep=l.a.defaultsDeep,B.a.defer=r.a.defer,B.a.delay=r.a.delay,B.a.difference=i.a.difference,B.a.differenceBy=i.a.differenceBy,B.a.differenceWith=i.a.differenceWith,B.a.drop=i.a.drop,B.a.dropRight=i.a.dropRight,B.a.dropRightWhile=i.a.dropRightWhile,B.a.dropWhile=i.a.dropWhile,B.a.fill=i.a.fill,B.a.filter=n.a.filter,B.a.flatMap=n.a.flatMap,B.a.flatMapDeep=n.a.flatMapDeep,B.a.flatMapDepth=n.a.flatMapDepth,B.a.flatten=i.a.flatten,B.a.flattenDeep=i.a.flattenDeep,B.a.flattenDepth=i.a.flattenDepth,B.a.flip=r.a.flip,B.a.flow=z.a.flow,B.a.flowRight=z.a.flowRight,B.a.fromPairs=i.a.fromPairs,B.a.functions=l.a.functions,B.a.functionsIn=l.a.functionsIn,B.a.groupBy=n.a.groupBy,B.a.initial=i.a.initial,B.a.intersection=i.a.intersection,B.a.intersectionBy=i.a.intersectionBy,B.a.intersectionWith=i.a.intersectionWith,B.a.invert=l.a.invert,B.a.invertBy=l.a.invertBy,B.a.invokeMap=n.a.invokeMap,B.a.iteratee=z.a.iteratee,B.a.keyBy=n.a.keyBy,B.a.keys=E.a,B.a.keysIn=l.a.keysIn,B.a.map=n.a.map,B.a.mapKeys=l.a.mapKeys,B.a.mapValues=l.a.mapValues,B.a.matches=z.a.matches,B.a.matchesProperty=z.a.matchesProperty,B.a.memoize=r.a.memoize,B.a.merge=l.a.merge,B.a.mergeWith=l.a.mergeWith,B.a.method=z.a.method,B.a.methodOf=z.a.methodOf,B.a.mixin=K,B.a.negate=C.a,B.a.nthArg=z.a.nthArg,B.a.omit=l.a.omit,B.a.omitBy=l.a.omitBy,B.a.once=r.a.once,B.a.orderBy=n.a.orderBy,B.a.over=z.a.over,B.a.overArgs=r.a.overArgs,B.a.overEvery=z.a.overEvery,B.a.overSome=z.a.overSome,B.a.partial=r.a.partial,B.a.partialRight=r.a.partialRight,B.a.partition=n.a.partition,B.a.pick=l.a.pick,B.a.pickBy=l.a.pickBy,B.a.property=z.a.property,B.a.propertyOf=z.a.propertyOf,B.a.pull=i.a.pull,B.a.pullAll=i.a.pullAll,B.a.pullAllBy=i.a.pullAllBy,B.a.pullAllWith=i.a.pullAllWith,B.a.pullAt=i.a.pullAt,B.a.range=z.a.range,B.a.rangeRight=z.a.rangeRight,B.a.rearg=r.a.rearg,B.a.reject=n.a.reject,B.a.remove=i.a.remove,B.a.rest=r.a.rest,B.a.reverse=i.a.reverse,B.a.sampleSize=n.a.sampleSize,B.a.set=l.a.set,B.a.setWith=l.a.setWith,B.a.shuffle=n.a.shuffle,B.a.slice=i.a.slice,B.a.sortBy=n.a.sortBy,B.a.sortedUniq=i.a.sortedUniq,B.a.sortedUniqBy=i.a.sortedUniqBy,B.a.split=p.a.split,B.a.spread=r.a.spread,B.a.tail=i.a.tail,B.a.take=i.a.take,B.a.takeRight=i.a.takeRight,B.a.takeRightWhile=i.a.takeRightWhile,B.a.takeWhile=i.a.takeWhile,B.a.tap=u.a.tap,B.a.throttle=r.a.throttle,B.a.thru=D.a,B.a.toArray=s.a.toArray,B.a.toPairs=l.a.toPairs,B.a.toPairsIn=l.a.toPairsIn,B.a.toPath=z.a.toPath,B.a.toPlainObject=s.a.toPlainObject,B.a.transform=l.a.transform,B.a.unary=r.a.unary,B.a.union=i.a.union,B.a.unionBy=i.a.unionBy,B.a.unionWith=i.a.unionWith,B.a.uniq=i.a.uniq,B.a.uniqBy=i.a.uniqBy,B.a.uniqWith=i.a.uniqWith,B.a.unset=l.a.unset,B.a.unzip=i.a.unzip,B.a.unzipWith=i.a.unzipWith,B.a.update=l.a.update,B.a.updateWith=l.a.updateWith,B.a.values=l.a.values,B.a.valuesIn=l.a.valuesIn,B.a.without=i.a.without,B.a.words=p.a.words,B.a.wrap=r.a.wrap,B.a.xor=i.a.xor,B.a.xorBy=i.a.xorBy,B.a.xorWith=i.a.xorWith,B.a.zip=i.a.zip,B.a.zipObject=i.a.zipObject,B.a.zipObjectDeep=i.a.zipObjectDeep,B.a.zipWith=i.a.zipWith,B.a.entries=l.a.toPairs,B.a.entriesIn=l.a.toPairsIn,B.a.extend=l.a.assignIn,B.a.extendWith=l.a.assignInWith,K(B.a,B.a),B.a.add=d.a.add,B.a.attempt=z.a.attempt,B.a.camelCase=p.a.camelCase,B.a.capitalize=p.a.capitalize,B.a.ceil=d.a.ceil,B.a.clamp=c.a.clamp,B.a.clone=s.a.clone,B.a.cloneDeep=s.a.cloneDeep,B.a.cloneDeepWith=s.a.cloneDeepWith,B.a.cloneWith=s.a.cloneWith,B.a.conformsTo=s.a.conformsTo,B.a.deburr=p.a.deburr,B.a.defaultTo=z.a.defaultTo,B.a.divide=d.a.divide,B.a.endsWith=p.a.endsWith,B.a.eq=s.a.eq,B.a.escape=p.a.escape,B.a.escapeRegExp=p.a.escapeRegExp,B.a.every=n.a.every,B.a.find=n.a.find,B.a.findIndex=i.a.findIndex,B.a.findKey=l.a.findKey,B.a.findLast=n.a.findLast,B.a.findLastIndex=i.a.findLastIndex,B.a.findLastKey=l.a.findLastKey,B.a.floor=d.a.floor,B.a.forEach=n.a.forEach,B.a.forEachRight=n.a.forEachRight,B.a.forIn=l.a.forIn,B.a.forInRight=l.a.forInRight,B.a.forOwn=l.a.forOwn,B.a.forOwnRight=l.a.forOwnRight,B.a.get=l.a.get,B.a.gt=s.a.gt,B.a.gte=s.a.gte,B.a.has=l.a.has,B.a.hasIn=l.a.hasIn,B.a.head=i.a.head,B.a.identity=x.a,B.a.includes=n.a.includes,B.a.indexOf=i.a.indexOf,B.a.inRange=c.a.inRange,B.a.invoke=l.a.invoke,B.a.isArguments=s.a.isArguments,B.a.isArray=O.a,B.a.isArrayBuffer=s.a.isArrayBuffer;B.a.isArrayLike=s.a.isArrayLike,B.a.isArrayLikeObject=s.a.isArrayLikeObject,B.a.isBoolean=s.a.isBoolean,B.a.isBuffer=s.a.isBuffer,B.a.isDate=s.a.isDate,B.a.isElement=s.a.isElement,B.a.isEmpty=s.a.isEmpty,B.a.isEqual=s.a.isEqual,B.a.isEqualWith=s.a.isEqualWith,B.a.isError=s.a.isError,B.a.isFinite=s.a.isFinite,B.a.isFunction=s.a.isFunction,B.a.isInteger=s.a.isInteger,B.a.isLength=s.a.isLength,B.a.isMap=s.a.isMap,B.a.isMatch=s.a.isMatch,B.a.isMatchWith=s.a.isMatchWith,B.a.isNaN=s.a.isNaN,B.a.isNative=s.a.isNative,B.a.isNil=s.a.isNil,B.a.isNull=s.a.isNull,B.a.isNumber=s.a.isNumber,B.a.isObject=q.a,B.a.isObjectLike=s.a.isObjectLike,B.a.isPlainObject=s.a.isPlainObject,B.a.isRegExp=s.a.isRegExp,B.a.isSafeInteger=s.a.isSafeInteger,B.a.isSet=s.a.isSet,B.a.isString=s.a.isString,B.a.isSymbol=s.a.isSymbol,B.a.isTypedArray=s.a.isTypedArray,B.a.isUndefined=s.a.isUndefined,B.a.isWeakMap=s.a.isWeakMap,B.a.isWeakSet=s.a.isWeakSet,B.a.join=i.a.join,B.a.kebabCase=p.a.kebabCase,B.a.last=A.a,B.a.lastIndexOf=i.a.lastIndexOf,B.a.lowerCase=p.a.lowerCase,B.a.lowerFirst=p.a.lowerFirst,B.a.lt=s.a.lt,B.a.lte=s.a.lte,B.a.max=d.a.max,B.a.maxBy=d.a.maxBy,B.a.mean=d.a.mean,B.a.meanBy=d.a.meanBy,B.a.min=d.a.min,B.a.minBy=d.a.minBy,B.a.stubArray=z.a.stubArray,B.a.stubFalse=z.a.stubFalse,B.a.stubObject=z.a.stubObject,B.a.stubString=z.a.stubString,B.a.stubTrue=z.a.stubTrue,B.a.multiply=d.a.multiply,B.a.nth=i.a.nth,B.a.noop=z.a.noop,B.a.now=o.a.now,B.a.pad=p.a.pad,B.a.padEnd=p.a.padEnd,B.a.padStart=p.a.padStart,B.a.parseInt=p.a.parseInt,B.a.random=c.a.random,B.a.reduce=n.a.reduce,B.a.reduceRight=n.a.reduceRight,B.a.repeat=p.a.repeat,B.a.replace=p.a.replace,B.a.result=l.a.result,B.a.round=d.a.round,B.a.sample=n.a.sample,B.a.size=n.a.size,B.a.snakeCase=p.a.snakeCase,B.a.some=n.a.some,B.a.sortedIndex=i.a.sortedIndex,B.a.sortedIndexBy=i.a.sortedIndexBy,B.a.sortedIndexOf=i.a.sortedIndexOf,B.a.sortedLastIndex=i.a.sortedLastIndex,B.a.sortedLastIndexBy=i.a.sortedLastIndexBy,B.a.sortedLastIndexOf=i.a.sortedLastIndexOf,B.a.startCase=p.a.startCase,B.a.startsWith=p.a.startsWith,B.a.subtract=d.a.subtract,B.a.sum=d.a.sum,B.a.sumBy=d.a.sumBy,B.a.template=p.a.template,B.a.times=z.a.times,B.a.toFinite=s.a.toFinite,B.a.toInteger=F.a,B.a.toLength=s.a.toLength,B.a.toLower=p.a.toLower,B.a.toNumber=s.a.toNumber,B.a.toSafeInteger=s.a.toSafeInteger,B.a.toString=s.a.toString,B.a.toUpper=p.a.toUpper,B.a.trim=p.a.trim,B.a.trimEnd=p.a.trimEnd,B.a.trimStart=p.a.trimStart,B.a.truncate=p.a.truncate,B.a.unescape=p.a.unescape,B.a.uniqueId=z.a.uniqueId,B.a.upperCase=p.a.upperCase,B.a.upperFirst=p.a.upperFirst,B.a.each=n.a.forEach,B.a.eachRight=n.a.forEachRight,B.a.first=i.a.head,K(B.a,function(){var a={};return Object(b.a)(B.a,function(e,t){$.call(B.a.prototype,t)||(a[t]=e)}),a}(),{chain:!1}),B.a.VERSION="4.17.11",(B.a.templateSettings=p.a.templateSettings).imports._=B.a,Object(y.a)(["bind","bindKey","curry","curryRight","partial","partialRight"],function(a){B.a[a].placeholder=B.a}),Object(y.a)(["drop","take"],function(a,e){g.a.prototype[a]=function(t){t=void 0===t?1:U(Object(F.a)(t),0);var i=this.__filtered__&&!e?new g.a(this):this.clone();return i.__filtered__?i.__takeCount__=N(t,i.__takeCount__):i.__views__.push({size:N(t,4294967295),type:a+(i.__dir__<0?"Right":"")}),i},g.a.prototype[a+"Right"]=function(e){return this.reverse()[a](e).reverse()}}),Object(y.a)(["filter","map","takeWhile"],function(a,e){var t=e+1,i=1==t||3==t;g.a.prototype[a]=function(a){var e=this.clone();return e.__iteratees__.push({iteratee:Object(k.a)(a,3),type:t}),e.__filtered__=e.__filtered__||i,e}}),Object(y.a)(["head","last"],function(a,e){var t="take"+(e?"Right":"");g.a.prototype[a]=function(){return this[t](1).value()[0]}}),Object(y.a)(["initial","tail"],function(a,e){var t="drop"+(e?"":"Right");g.a.prototype[a]=function(){return this.__filtered__?new g.a(this):this[t](1)}}),g.a.prototype.compact=function(){return this.filter(x.a)},g.a.prototype.find=function(a){return this.filter(a).head()},g.a.prototype.findLast=function(a){return this.reverse().find(a)},g.a.prototype.invokeMap=Object(j.a)(function(a,e){return"function"==typeof a?new g.a(this):this.map(function(t){return Object(v.a)(t,a,e)})}),g.a.prototype.reject=function(a){return this.filter(Object(C.a)(Object(k.a)(a)))},g.a.prototype.slice=function(a,e){a=Object(F.a)(a);var t=this;return t.__filtered__&&(a>0||e<0)?new g.a(t):(a<0?t=t.takeRight(-a):a&&(t=t.drop(a)),void 0!==e&&(e=Object(F.a)(e),t=e<0?t.dropRight(-e):t.take(e-a)),t)},g.a.prototype.takeRightWhile=function(a){return this.reverse().takeWhile(a).reverse()},g.a.prototype.toArray=function(){return this.take(4294967295)},Object(b.a)(g.a.prototype,function(a,e){var t=/^(?:filter|find|map|reject)|While$/.test(e),i=/^(?:head|last)$/.test(e),n=B.a[i?"take"+("last"==e?"Right":""):e],o=i||/^find/.test(e);n&&(B.a.prototype[e]=function(){var e=this.__wrapped__,r=i?[1]:arguments,s=e instanceof g.a,d=r[0],c=s||Object(O.a)(e),l=function(a){var e=n.apply(B.a,Object(f.a)([a],r));return i&&u?e[0]:e};c&&t&&"function"==typeof d&&1!=d.length&&(s=c=!1);var u=this.__chain__,p=!!this.__actions__.length,z=o&&!u,w=s&&!p;if(!o&&c){e=w?e:new g.a(this);var y=a.apply(e,r);return y.__actions__.push({func:D.a,args:[l],thisArg:void 0}),new m.a(y,u)}return z&&w?a.apply(this,r):(y=this.thru(l),z?i?y.value()[0]:y.value():y)})}),Object(y.a)(["pop","push","shift","sort","splice","unshift"],function(a){var e=I[a],t=/^(?:push|sort|unshift)$/.test(a)?"tap":"thru",i=/^(?:pop|shift)$/.test(a);B.a.prototype[a]=function(){var a=arguments;if(i&&!this.__chain__){var n=this.value();return e.apply(Object(O.a)(n)?n:[],a)}return this[t](function(t){return e.apply(Object(O.a)(t)?t:[],a)})}}),Object(b.a)(g.a.prototype,function(a,e){var t=B.a[e];if(t){var i=t.name+"";(R.a[i]||(R.a[i]=[])).push({name:e,func:t})}}),R.a[Object(_.a)(void 0,2).name]=[{name:"wrapper",func:void 0}],g.a.prototype.clone=T.a,g.a.prototype.reverse=S.a,g.a.prototype.value=M.a,B.a.prototype.at=u.a.at,B.a.prototype.chain=u.a.wrapperChain,B.a.prototype.commit=u.a.commit,B.a.prototype.next=u.a.next,B.a.prototype.plant=u.a.plant,B.a.prototype.reverse=u.a.reverse,B.a.prototype.toJSON=B.a.prototype.valueOf=B.a.prototype.value=u.a.value,B.a.prototype.first=B.a.prototype.head,W&&(B.a.prototype[W]=u.a.toIterator),e.a=B.a},function(a,e,t){"use strict";var i=(t(554),t(563),t(564),t(584),t(586),t(587),t(589),t(590),t(591),t(592),t(603),t(423),t(424),t(609),t(393),t(613),t(614),t(623),t(425),t(634),t(635),t(636),t(639),t(640),t(664),t(65),t(667),t(688),t(709),t(437),t(711),t(712),t(713),t(722),t(438),t(734),t(738),t(740),t(741),t(742),t(743),t(744),t(745),t(746),t(757),t(758),t(759),t(760),t(761),t(778),t(779),t(780),t(781),t(782),t(783),t(332),t(443),t(791),t(796),t(798),t(799),t(800),t(801),t(802),t(803),t(1347));t.d(e,"a",function(){return i.a})},function(a,e,t){"use strict";var i=t(554),n=t(563),o=t(564),r=t(584),s=t(586),d=t(587),c=t(589),l=t(590),u=t(591),p=t(592),z=t(603),g=t(423),m=t(424),w=t(609),y=t(393),f=t(613),b=t(614),h=t(623),v=t(425),k=t(634),j=t(635),_=t(636),x=t(639),O=t(640),q=t(664),E=t(65),A=t(667),T=t(688),S=t(709),M=t(437),P=t(711),C=t(712),R=t(713),D=t(722),F=t(438),B=t(734),I=t(738),L=t(740),$=t(741),W=t(742),U=t(743),N=t(744),K=t(745),H=t(746),V=t(757),Y=t(758),G=t(759),Z=t(760),J=t(761),Q=t(778),X=t(779),aa=t(780),ea=t(781),ta=t(782),ia=t(783),na=t(332),oa=t(443),ra=t(791),sa=t(796),da=t(798),ca=t(799),la=t(800),ua=t(801),pa=t(802),za=t(803);e.a={chunk:i.a,compact:n.a,concat:o.a,difference:r.a,differenceBy:s.a,differenceWith:d.a,drop:c.a,dropRight:l.a,dropRightWhile:u.a,dropWhile:p.a,fill:z.a,findIndex:g.a,findLastIndex:m.a,first:w.a,flatten:y.a,flattenDeep:f.a,flattenDepth:b.a,fromPairs:h.a,head:v.a,indexOf:k.a,initial:j.a,intersection:_.a,intersectionBy:x.a,intersectionWith:O.a,join:q.a,last:E.a,lastIndexOf:A.a,nth:T.a,pull:S.a,pullAll:M.a,pullAllBy:P.a,pullAllWith:C.a,pullAt:R.a,remove:D.a,reverse:F.a,slice:B.a,sortedIndex:I.a,sortedIndexBy:L.a,sortedIndexOf:$.a,sortedLastIndex:W.a,sortedLastIndexBy:U.a,sortedLastIndexOf:N.a,sortedUniq:K.a,sortedUniqBy:H.a,tail:V.a,take:Y.a,takeRight:G.a,takeRightWhile:Z.a,takeWhile:J.a,union:Q.a,unionBy:X.a,unionWith:aa.a,uniq:ea.a,uniqBy:ta.a,uniqWith:ia.a,unzip:na.a,unzipWith:oa.a,without:ra.a,xor:sa.a,xorBy:da.a,xorWith:ca.a,zip:la.a,zipObject:ua.a,zipObjectDeep:pa.a,zipWith:za.a}},function(a,e,t){"use strict";var i=(t(573),t(593),t(594),t(600),t(604),t(605),t(607),t(610),t(611),t(612),t(417),t(418),t(626),t(632),t(644),t(666),t(242),t(694),t(706),t(719),t(720),t(721),t(728),t(729),t(732),t(733),t(736),t(737),t(1349));t.d(e,"a",function(){return i.a})},function(a,e,t){"use strict";var i=t(573),n=t(593),o=t(594),r=t(600),s=t(604),d=t(605),c=t(607),l=t(610),u=t(611),p=t(612),z=t(417),g=t(418),m=t(626),w=t(632),y=t(644),f=t(666),b=t(242),h=t(694),v=t(706),k=t(719),j=t(720),_=t(721),x=t(728),O=t(729),q=t(732),E=t(733),A=t(736),T=t(737);e.a={countBy:i.a,each:n.a,eachRight:o.a,every:r.a,filter:s.a,find:d.a,findLast:c.a,flatMap:l.a,flatMapDeep:u.a,flatMapDepth:p.a,forEach:z.a,forEachRight:g.a,groupBy:m.a,includes:w.a,invokeMap:y.a,keyBy:f.a,map:b.a,orderBy:h.a,partition:v.a,reduce:k.a,reduceRight:j.a,reject:_.a,sample:x.a,sampleSize:O.a,shuffle:q.a,size:E.a,some:A.a,sortBy:T.a}},function(a,e,t){"use strict";var i=(t(413),t(1351));t.d(e,"a",function(){return i.a})},function(a,e,t){"use strict";var i=t(413);e.a={now:i.a}},function(a,e,t){"use strict";var i=(t(532),t(382),t(396),t(397),t(547),t(576),t(577),t(412),t(582),t(583),t(615),t(388),t(244),t(693),t(697),t(435),t(705),t(718),t(725),t(748),t(764),t(776),t(792),t(1353));t.d(e,"a",function(){return i.a})},function(a,e,t){"use strict";var i=t(532),n=t(382),o=t(396),r=t(397),s=t(547),d=t(576),c=t(577),l=t(412),u=t(582),p=t(583),z=t(615),g=t(388),m=t(244),w=t(693),y=t(697),f=t(435),b=t(705),h=t(718),v=t(725),k=t(748),j=t(764),_=t(776),x=t(792);e.a={after:i.a,ary:n.a,before:o.a,bind:r.a,bindKey:s.a,curry:d.a,curryRight:c.a,debounce:l.a,defer:u.a,delay:p.a,flip:z.a,memoize:g.a,negate:m.a,once:w.a,overArgs:y.a,partial:f.a,partialRight:b.a,rearg:h.a,rest:v.a,spread:k.a,throttle:j.a,unary:_.a,wrap:x.a}},function(a,e,t){"use strict";var i=(t(551),t(556),t(560),t(561),t(562),t(572),t(69),t(627),t(629),t(159),t(8),t(645),t(44),t(46),t(646),t(146),t(647),t(648),t(649),t(650),t(651),t(324),t(652),t(91),t(428),t(237),t(403),t(653),t(654),t(655),t(656),t(657),t(658),t(429),t(25),t(23),t(199),t(330),t(659),t(404),t(243),t(68),t(160),t(660),t(661),t(662),t(670),t(672),t(433),t(193),t(10),t(422),t(102),t(414),t(769),t(13),t(1355));t.d(e,"a",function(){return i.a})},function(a,e,t){"use strict";var i=t(551),n=t(556),o=t(560),r=t(561),s=t(562),d=t(572),c=t(69),l=t(627),u=t(629),p=t(159),z=t(8),g=t(645),m=t(44),w=t(46),y=t(646),f=t(146),b=t(647),h=t(648),v=t(649),k=t(650),j=t(651),_=t(324),x=t(652),O=t(91),q=t(428),E=t(237),A=t(403),T=t(653),S=t(654),M=t(655),P=t(656),C=t(657),R=t(658),D=t(429),F=t(25),B=t(23),I=t(199),L=t(330),$=t(659),W=t(404),U=t(243),N=t(68),K=t(160),H=t(660),V=t(661),Y=t(662),G=t(670),Z=t(672),J=t(433),Q=t(193),X=t(10),aa=t(422),ea=t(102),ta=t(414),ia=t(769),na=t(13);e.a={castArray:i.a,clone:n.a,cloneDeep:o.a,cloneDeepWith:r.a,cloneWith:s.a,conformsTo:d.a,eq:c.a,gt:l.a,gte:u.a,isArguments:p.a,isArray:z.a,isArrayBuffer:g.a,isArrayLike:m.a,isArrayLikeObject:w.a,isBoolean:y.a,isBuffer:f.a,isDate:b.a,isElement:h.a,isEmpty:v.a,isEqual:k.a,isEqualWith:j.a,isError:_.a,isFinite:x.a,isFunction:O.a,isInteger:q.a,isLength:E.a,isMap:A.a,isMatch:T.a,isMatchWith:S.a,isNaN:M.a,isNative:P.a,isNil:C.a,isNull:R.a,isNumber:D.a,isObject:F.a,isObjectLike:B.a,isPlainObject:I.a,isRegExp:L.a,isSafeInteger:$.a,isSet:W.a,isString:U.a,isSymbol:N.a,isTypedArray:K.a,isUndefined:H.a,isWeakMap:V.a,isWeakSet:Y.a,lt:G.a,lte:Z.a,toArray:J.a,toFinite:Q.a,toInteger:X.a,toLength:aa.a,toNumber:ea.a,toPlainObject:ta.a,toSafeInteger:ia.a,toString:na.a}},function(a,e,t){"use strict";var i=(t(531),t(552),t(588),t(616),t(677),t(678),t(679),t(681),t(685),t(686),t(687),t(727),t(754),t(755),t(756),t(1357));t.d(e,"a",function(){return i.a})},function(a,e,t){"use strict";var i=t(531),n=t(552),o=t(588),r=t(616),s=t(677),d=t(678),c=t(679),l=t(681),u=t(685),p=t(686),z=t(687),g=t(727),m=t(754),w=t(755),y=t(756);e.a={add:i.a,ceil:n.a,divide:o.a,floor:r.a,max:s.a,maxBy:d.a,mean:c.a,meanBy:l.a,min:u.a,minBy:p.a,multiply:z.a,round:g.a,subtract:m.a,sum:w.a,sumBy:y.a}},function(a,e,t){"use strict";var i=(t(555),t(631),t(714),t(1359));t.d(e,"a",function(){return i.a})},function(a,e,t){"use strict";var i=t(555),n=t(631),o=t(714);e.a={clamp:i.a,inRange:n.a,random:o.a}},function(a,e,t){"use strict";var i=(t(536),t(387),t(322),t(540),t(541),t(575),t(579),t(580),t(597),t(598),t(601),t(602),t(606),t(608),t(619),t(620),t(621),t(622),t(624),t(625),t(323),t(630),t(327),t(641),t(642),t(643),t(30),t(53),t(673),t(674),t(682),t(415),t(690),t(692),t(707),t(434),t(726),t(730),t(731),t(419),t(420),t(771),t(785),t(786),t(787),t(168),t(790),t(1361));t.d(e,"a",function(){return i.a})},function(a,e,t){"use strict";var i=t(536),n=t(387),o=t(322),r=t(540),s=t(541),d=t(575),c=t(579),l=t(580),u=t(597),p=t(598),z=t(601),g=t(602),m=t(606),w=t(608),y=t(619),f=t(620),b=t(621),h=t(622),v=t(624),k=t(625),j=t(323),_=t(630),x=t(327),O=t(641),q=t(642),E=t(643),A=t(30),T=t(53),S=t(673),M=t(674),P=t(682),C=t(415),R=t(690),D=t(692),F=t(707),B=t(434),I=t(726),L=t(730),$=t(731),W=t(419),U=t(420),N=t(771),K=t(785),H=t(786),V=t(787),Y=t(168),G=t(790);e.a={assign:i.a,assignIn:n.a,assignInWith:o.a,assignWith:r.a,at:s.a,create:d.a,defaults:c.a,defaultsDeep:l.a,entries:u.a,entriesIn:p.a,extend:z.a,extendWith:g.a,findKey:m.a,findLastKey:w.a,forIn:y.a,forInRight:f.a,forOwn:b.a,forOwnRight:h.a,functions:v.a,functionsIn:k.a,get:j.a,has:_.a,hasIn:x.a,invert:O.a,invertBy:q.a,invoke:E.a,keys:A.a,keysIn:T.a,mapKeys:S.a,mapValues:M.a,merge:P.a,mergeWith:C.a,omit:R.a,omitBy:D.a,pick:F.a,pickBy:B.a,result:I.a,set:L.a,setWith:$.a,toPairs:W.a,toPairsIn:U.a,transform:N.a,unset:K.a,update:H.a,updateWith:V.a,values:Y.a,valuesIn:G.a}},function(a,e,t){"use strict";var i=(t(793),t(401),t(405),t(195),t(432),t(436),t(795),t(762),t(246),t(442),t(766),t(247),t(789),t(794),t(1363));t.d(e,"a",function(){return i.a})},function(a,e,t){"use strict";var i=t(793),n=t(401),o=t(405),r=t(195),s=t(432),d=t(436),c=t(795),l=t(762),u=t(246),p=t(442),z=t(766),g=t(247),m=t(789),w=t(794);e.a={at:i.a,chain:n.a,commit:o.a,lodash:r.a,next:s.a,plant:d.a,reverse:c.a,tap:l.a,thru:u.a,toIterator:p.a,toJSON:z.a,value:g.a,valueOf:m.a,wrapperChain:w.a}},function(a,e,t){"use strict";var i=(t(548),t(398),t(399),t(596),t(421),t(599),t(665),t(668),t(669),t(700),t(702),t(703),t(704),t(723),t(724),t(735),t(747),t(749),t(750),t(763),t(441),t(767),t(770),t(772),t(773),t(774),t(775),t(777),t(788),t(325),t(400),t(1365));t.d(e,"a",function(){return i.a})},function(a,e,t){"use strict";var i=t(548),n=t(398),o=t(399),r=t(596),s=t(421),d=t(599),c=t(665),l=t(668),u=t(669),p=t(700),z=t(702),g=t(703),m=t(704),w=t(723),y=t(724),f=t(735),b=t(747),h=t(749),v=t(750),k=t(763),j=t(441),_=t(767),x=t(770),O=t(772),q=t(773),E=t(774),A=t(775),T=t(777),S=t(788),M=t(325),P=t(400);e.a={camelCase:i.a,capitalize:n.a,deburr:o.a,endsWith:r.a,escape:s.a,escapeRegExp:d.a,kebabCase:c.a,lowerCase:l.a,lowerFirst:u.a,pad:p.a,padEnd:z.a,padStart:g.a,parseInt:m.a,repeat:w.a,replace:y.a,snakeCase:f.a,split:b.a,startCase:h.a,startsWith:v.a,template:k.a,templateSettings:j.a,toLower:_.a,toUpper:x.a,trim:O.a,trimEnd:q.a,trimStart:E.a,truncate:A.a,unescape:T.a,upperCase:S.a,upperFirst:M.a,words:P.a}},function(a,e,t){"use strict";var i=(t(394),t(546),t(565),t(571),t(318),t(578),t(617),t(618),t(43),t(663),t(675),t(676),t(683),t(684),t(431),t(317),t(689),t(695),t(698),t(699),t(410),t(708),t(716),t(717),t(326),t(321),t(751),t(752),t(753),t(765),t(768),t(784),t(1367));t.d(e,"a",function(){return i.a})},function(a,e,t){"use strict";var i=t(394),n=t(546),o=t(565),r=t(571),s=t(318),d=t(578),c=t(617),l=t(618),u=t(43),p=t(663),z=t(675),g=t(676),m=t(683),w=t(684),y=t(431),f=t(317),b=t(689),h=t(695),v=t(698),k=t(699),j=t(410),_=t(708),x=t(716),O=t(717),q=t(326),E=t(321),A=t(751),T=t(752),S=t(753),M=t(765),P=t(768),C=t(784);e.a={attempt:i.a,bindAll:n.a,cond:o.a,conforms:r.a,constant:s.a,defaultTo:d.a,flow:c.a,flowRight:l.a,identity:u.a,iteratee:p.a,matches:z.a,matchesProperty:g.a,method:m.a,methodOf:w.a,mixin:y.a,noop:f.a,nthArg:b.a,over:h.a,overEvery:v.a,overSome:k.a,property:j.a,propertyOf:_.a,range:x.a,rangeRight:O.a,stubArray:q.a,stubFalse:E.a,stubObject:A.a,stubString:T.a,stubTrue:S.a,times:M.a,toPath:P.a,uniqueId:C.a}},function(a,e,t){"use strict";function i(){var a=new n.a(this.__wrapped__);return a.__actions__=Object(o.a)(this.__actions__),a.__dir__=this.__dir__,a.__filtered__=this.__filtered__,a.__iteratees__=Object(o.a)(this.__iteratees__),a.__takeCount__=this.__takeCount__,a.__views__=Object(o.a)(this.__views__),a}var n=t(143),o=t(81);e.a=i},function(a,e,t){"use strict";function i(){if(this.__filtered__){var a=new n.a(this);a.__dir__=-1,a.__filtered__=!0}else a=this.clone(),a.__dir__*=-1;return a}var n=t(143);e.a=i},function(a,e,t){"use strict";function i(){var a=this.__wrapped__.value(),e=this.__dir__,t=Object(r.a)(a),i=e<0,l=t?a.length:0,u=Object(o.a)(0,l,this.__views__),p=u.start,z=u.end,g=z-p,m=i?z:p-1,w=this.__iteratees__,y=w.length,f=0,b=c(g,this.__takeCount__);if(!t||!i&&l==g&&b==g)return Object(n.a)(a,this.__actions__);var h=[];a:for(;g--&&f<b;){m+=e;for(var v=-1,k=a[m];++v<y;){var j=w[v],_=j.iteratee,x=j.type,O=_(k);if(x==d)k=O;else if(!O){if(x==s)continue a;break a}}h[f++]=k}return h}var n=t(998),o=t(1371),r=t(8),s=1,d=2,c=Math.min;e.a=i},function(a,e,t){"use strict";function i(a,e,t){for(var i=-1,r=t.length;++i<r;){var s=t[i],d=s.size;switch(s.type){case"drop":a+=d;break;case"dropRight":e-=d;break;case"take":e=o(e,a+d);break;case"takeRight":a=n(a,e-d)}}return{start:a,end:e}}var n=Math.max,o=Math.min;e.a=i},function(a,e,t){"use strict";function i(a){return a&&a.__esModule?a:{default:a}}function n(a,e){if(!(a instanceof e))throw new TypeError("Cannot call a class as a function")}function o(a,e){if(!a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!==(void 0===e?"undefined":s(e))&&"function"!=typeof e?a:e}function r(a,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+(void 0===e?"undefined":s(e)));a.prototype=Object.create(e&&e.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(a,e):a.__proto__=e)}var s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(a){return typeof a}:function(a){return a&&"function"==typeof Symbol&&a.constructor===Symbol&&a!==Symbol.prototype?"symbol":typeof a};Object.defineProperty(e,"__esModule",{value:!0});var d=function(){function a(a,e){for(var t=0;t<e.length;t++){var i=e[t];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(a,i.key,i)}}return function(e,t,i){return t&&a(e.prototype,t),i&&a(e,i),e}}(),c=t(1),l=t(106),u=i(l),p=t(822),z=i(p),g=t(47),m=t(40),w=i(m),y=["en","nl","de","it","ru","fr","es"],f=function(a){function e(a){n(this,e);var t=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this)),i={urlTitle:(0,g.createAnchorOpeningTag)("https://yoa.st/34r"),urlCallToAction:(0,g.createAnchorOpeningTag)("https://yoa.st/34s")};return t.identifier="fleschReadingEase",t._config=(0,c.merge)(i,a),t}return r(e,a),d(e,[{key:"getResult",value:function(a,e,t){if(this.fleschReadingResult=e.getResearch("calculateFleschReading"),this.isApplicable(a)){var i=new w.default(t),n=this.calculateResult(t);return i.setScore(n.score),i.setText(n.resultText),i}return null}},{key:"calculateResult",value:function(a){this.fleschReadingResult<0&&(this.fleschReadingResult=0),this.fleschReadingResult>100&&(this.fleschReadingResult=100);var e=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"),t=a.dgettext("js-text-analysis","Good job!");if(this.fleschReadingResult>this._config.borders.veryEasy){var i=a.dgettext("js-text-analysis","very easy");return{score:this._config.scores.veryEasy,resultText:a.sprintf(e,this._config.urlTitle,"</a>",this.fleschReadingResult,i,"",t,"")}}if((0,c.inRange)(this.fleschReadingResult,this._config.borders.easy,this._config.borders.veryEasy)){var n=a.dgettext("js-text-analysis","easy");return{score:this._config.scores.easy,resultText:a.sprintf(e,this._config.urlTitle,"</a>",this.fleschReadingResult,n,"",t,"")}}if((0,c.inRange)(this.fleschReadingResult,this._config.borders.fairlyEasy,this._config.borders.easy)){var o=a.dgettext("js-text-analysis","fairly easy");return{score:this._config.scores.fairlyEasy,resultText:a.sprintf(e,this._config.urlTitle,"</a>",this.fleschReadingResult,o,"",t,"")}}if((0,c.inRange)(this.fleschReadingResult,this._config.borders.okay,this._config.borders.fairlyEasy)){var r=a.dgettext("js-text-analysis","ok");return{score:this._config.scores.okay,resultText:a.sprintf(e,this._config.urlTitle,"</a>",this.fleschReadingResult,r,"",t,"")}}if((0,c.inRange)(this.fleschReadingResult,this._config.borders.fairlyDifficult,this._config.borders.okay)){var s=a.dgettext("js-text-analysis","fairly difficult"),d=a.dgettext("js-text-analysis","Try to make shorter sentences to improve readability");return{score:this._config.scores.fairlyDifficult,resultText:a.sprintf(e,this._config.urlTitle,"</a>",this.fleschReadingResult,s,this._config.urlCallToAction,d,"</a>.")}}if((0,c.inRange)(this.fleschReadingResult,this._config.borders.difficult,this._config.borders.fairlyDifficult)){var l=a.dgettext("js-text-analysis","difficult"),u=a.dgettext("js-text-analysis","Try to make shorter sentences, using less difficult words to improve readability");return{score:this._config.scores.difficult,resultText:a.sprintf(e,this._config.urlTitle,"</a>",this.fleschReadingResult,l,this._config.urlCallToAction,u,"</a>.")}}var p=a.dgettext("js-text-analysis","very difficult"),z=a.dgettext("js-text-analysis","Try to make shorter sentences, using less difficult words to improve readability");return{score:this._config.scores.veryDifficult,resultText:a.sprintf(e,this._config.urlTitle,"</a>",this.fleschReadingResult,p,this._config.urlCallToAction,z,"</a>.")}}},{key:"isApplicable",value:function(a){return(0,z.default)(a.getLocale(),y)&&a.hasText()}}]),e}(u.default);e.default=f},function(a,e,t){"use strict";function i(a){return a&&a.__esModule?a:{default:a}}Object.defineProperty(e,"__esModule",{value:!0});var n=t(1),o=t(444),r=t(1374),s=i(r),d=t(459),c=i(d),l=t(47),u=t(202),p=t(40),z=i(p),g=t(263),m=i(g),w=function(a){return(0,n.filter)(a,function(a){return(0,s.default)(150,a.wordCount)})},y=function(a,e,t){var i=void 0,n=(0,l.createAnchorOpeningTag)("https://yoa.st/35d"),r=(0,l.createAnchorOpeningTag)("https://yoa.st/35e");if(0===a.length)return{};var s=a[0].wordCount;return s<=150&&(i=9),(0,o.inRangeEndInclusive)(s,150,200)&&(i=6),s>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!"),n,"</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),n,"</a>",e.length,150,r)}},f=function(a){return a.sort(function(a,e){return e.wordCount-a.wordCount})},b=function(a,e){var t=e.getResearch("getParagraphLength"),i=w(t);return(0,n.map)(i,function(a){var e=(0,u.stripBlockTagsAtStartEnd)(a.text),t=(0,c.default)(e);return new m.default({original:e,marked:t})})},h=function(a,e,t){var i=e.getResearch("getParagraphLength");i=f(i);var n=w(i),o=y(i,n,t),r=new z.default;return r.setScore(o.score),r.setText(o.text),r.setHasMarks(o.hasMarks),r};e.default={identifier:"textParagraphTooLong",getResult:h,isApplicable:function(a){return a.hasText()},getMarks:b}},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";function i(a){return a&&a.__esModule?a:{default:a}}Object.defineProperty(e,"__esModule",{value:!0});var n=t(1),o=t(804),r=i(o),s=t(822),d=i(s),c=t(444),l=t(459),u=i(l),p=t(47),z=t(202),g=t(40),m=i(g),w=t(263),y=i(w),f=["en","de","fr","es","ru","it","nl","pl"],b=function(a,e){var t=void 0,i=0,n=(0,p.createAnchorOpeningTag)("https://yoa.st/34t"),o=(0,p.createAnchorOpeningTag)("https://yoa.st/34u"),s=void 0;return 0!==a.total&&(i=(0,r.default)(a.passives.length/a.total*100)),s=i>0,i<=10&&(t=9),(0,c.inRangeEndInclusive)(i,10,15)&&(t=6),i>15&&(t=3),t>=7?{score:t,hasMarks:s,text:e.sprintf(e.dgettext("js-text-analysis","%1$sPassive voice%2$s: You're using enough active voice. That's great!"),n,"</a>")}:{score:t,hasMarks:s,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."),n,"</a>",i+"%","10%",o)}},h=function(a,e){var t=e.getResearch("passiveVoice");return(0,n.map)(t.passives,function(a){a=(0,z.stripIncompleteTags)(a);var e=(0,u.default)(a);return new y.default({original:a,marked:e})})},v=function(a,e,t){var i=e.getResearch("passiveVoice"),n=b(i,t),o=new m.default;return o.setScore(n.score),o.setText(n.text),o.setHasMarks(n.hasMarks),o};e.default={identifier:"passiveVoice",getResult:v,isApplicable:function(a){return(0,d.default)(a.getLocale(),f)&&a.hasText()},getMarks:h}},function(a,e,t){"use strict";function i(a){return a&&a.__esModule?a:{default:a}}Object.defineProperty(e,"__esModule",{value:!0});var n=t(1),o=t(822),r=i(o),s=t(459),d=i(s),c=t(47),l=t(202),u=t(40),p=i(u),z=t(263),g=i(z),m=["en","de","es","fr","nl","it","ru","pl"],w=function(a){var e=(0,n.partition)(a,function(a){return a.count>2});if(0===e[0].length)return{total:0};var t=(0,n.sortBy)(e[0],function(a){return a.count});return{total:e[0].length,lowestCount:t[0].count}},y=function(a,e){var t=(0,c.createAnchorOpeningTag)("https://yoa.st/35f"),i=(0,c.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>")}},f=function(a,e){var t=e.getResearch("getSentenceBeginnings");t=(0,n.filter)(t,function(a){return a.count>2});var i=(0,n.map)(t,function(a){return a.sentences});return(0,n.map)((0,n.flatten)(i),function(a){a=(0,l.stripIncompleteTags)(a);var e=(0,d.default)(a);return new g.default({original:a,marked:e})})},b=function(a,e,t){var i=e.getResearch("getSentenceBeginnings"),n=w(i),o=y(n,t),r=new p.default;return r.setScore(o.score),r.setText(o.text),r.setHasMarks(o.hasMarks),r};e.default={identifier:"sentenceBeginnings",getResult:b,isApplicable:function(a){return(0,r.default)(a.getLocale(),m)&&a.hasText()},getMarks:f}},function(a,e,t){"use strict";function i(a){return a&&a.__esModule?a:{default:a}}function n(a,e){if(!(a instanceof e))throw new TypeError("Cannot call a class as a function")}function o(a,e){if(!a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!==(void 0===e?"undefined":s(e))&&"function"!=typeof e?a:e}function r(a,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+(void 0===e?"undefined":s(e)));a.prototype=Object.create(e&&e.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(a,e):a.__proto__=e)}var s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(a){return typeof a}:function(a){return a&&"function"==typeof Symbol&&a.constructor===Symbol&&a!==Symbol.prototype?"symbol":typeof a};Object.defineProperty(e,"__esModule",{value:!0});var d=function(){function a(a,e){for(var t=0;t<e.length;t++){var i=e[t];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(a,i.key,i)}}return function(e,t,i){return t&&a(e.prototype,t),i&&a(e,i),e}}(),c=t(1),l=t(106),u=i(l),p=t(1451),z=i(p),g=t(804),m=i(g),w=t(444),y=t(459),f=i(y),b=t(47),h=t(202),v=t(40),k=i(v),j=t(263),_=i(j),x=function(a){function e(){var a=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};n(this,e);var t=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this)),i={recommendedWordCount:20,slightlyTooMany:25,farTooMany:30};return t.identifier="textSentenceLength",t._config=(0,c.merge)(i,a),t}return r(e,a),d(e,[{key:"getResult",value:function(a,e,t){var i=e.getResearch("countSentencesFromText"),n=this.calculatePercentage(i),o=this.calculateScore(n),r=new k.default;return r.setScore(o),r.setText(this.translateScore(o,n,t)),r.setHasMarks(n>0),r}},{key:"isApplicable",value:function(a){return a.hasText()}},{key:"getMarks",value:function(a,e){var t=e.getResearch("countSentencesFromText"),i=this.getTooLongSentences(t);return(0,c.map)(i,function(a){var e=(0,h.stripIncompleteTags)(a.sentence);return new _.default({original:e,marked:(0,f.default)(e)})})}},{key:"translateScore",value:function(a,e,t){var i=(0,b.createAnchorOpeningTag)("https://yoa.st/34v"),n=(0,b.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)}},{key:"calculatePercentage",value:function(a){var e=0;if(0!==a.length){var t=this.countTooLongSentences(a);e=(0,m.default)(t/a.length*100)}return e}},{key:"calculateScore",value:function(a){var e=void 0;return a<=this._config.slightlyTooMany&&(e=9),(0,w.inRangeEndInclusive)(a,this._config.slightlyTooMany,this._config.farTooMany)&&(e=6),a>this._config.farTooMany&&(e=3),e}},{key:"getTooLongSentences",value:function(a){return(0,z.default)(a,this._config.recommendedWordCount)}},{key:"countTooLongSentences",value:function(a){return this.getTooLongSentences(a).length}}]),e}(u.default);e.default=x},function(a,e,t){"use strict";function i(a){return a&&a.__esModule?a:{default:a}}function n(a,e){if(!(a instanceof e))throw new TypeError("Cannot call a class as a function")}function o(a,e){if(!a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!==(void 0===e?"undefined":s(e))&&"function"!=typeof e?a:e}function r(a,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+(void 0===e?"undefined":s(e)));a.prototype=Object.create(e&&e.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(a,e):a.__proto__=e)}var s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(a){return typeof a}:function(a){return a&&"function"==typeof Symbol&&a.constructor===Symbol&&a!==Symbol.prototype?"symbol":typeof a};Object.defineProperty(e,"__esModule",{value:!0});var d=function(){function a(a,e){for(var t=0;t<e.length;t++){var i=e[t];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(a,i.key,i)}}return function(e,t,i){return t&&a(e.prototype,t),i&&a(e,i),e}}(),c=t(1),l=t(106),u=i(l),p=t(444),z=t(1374),g=i(z),m=t(459),w=i(m),y=t(47),f=t(1379),b=t(213),h=i(b),v=t(40),k=i(v),j=t(263),_=i(j),x=function(a){function e(){var a=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};n(this,e);var t=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this)),i={parameters:{recommendedMaximumWordCount:300,slightlyTooMany:300,farTooMany:350},urlTitle:(0,y.createAnchorOpeningTag)("https://yoa.st/34x"),urlCallToAction:(0,y.createAnchorOpeningTag)("https://yoa.st/34y"),scores:{goodShortTextNoSubheadings:9,goodSubheadings:9,okSubheadings:6,badSubheadings:3,badLongTextNoSubheadings:2}};return t.identifier="subheadingsTooLong",t._config=(0,c.merge)(i,a),t}return r(e,a),d(e,[{key:"getResult",value:function(a,e,t){this._subheadingTextsLength=e.getResearch("getSubheadingTextLengths"),this._subheadingTextsLength=this._subheadingTextsLength.sort(function(a,e){return e.wordCount-a.wordCount}),this._tooLongTexts=this.getTooLongSubheadingTexts(),this._tooLongTextsNumber=this.getTooLongSubheadingTexts().length;var i=new k.default;i.setIdentifier(this.identifier),this._hasSubheadings=this.hasSubheadings(a),this._textLength=(0,h.default)(a.getText()).length;var n=this.calculateResult(t);return n.resultTextPlural=n.resultTextPlural||"",i.setScore(n.score),i.setText(n.resultText),n.score>2&&n.score<7&&(i.setHasMarks(!0),i.setMarker(this.getMarks())),i}},{key:"isApplicable",value:function(a){return a.hasText()}},{key:"hasSubheadings",value:function(a){return(0,f.getSubheadings)(a.getText()).length>0}},{key:"getMarks",value:function(){return(0,c.map)(this._tooLongTexts,function(a){var e=(0,w.default)(a.text);return new _.default({original:a.text,marked:e})})}},{key:"getTooLongSubheadingTexts",value:function(){return(0,c.filter)(this._subheadingTextsLength,function(a){return(0,g.default)(this._config.parameters.recommendedMaximumWordCount,a.wordCount)}.bind(this))}},{key:"calculateResult",value:function(a){if(this._textLength>300){if(this._hasSubheadings){var 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,p.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>")}}}]),e}(u.default);e.default=x},function(a,e,t){"use strict";function i(a){for(var e,t=[],i=/<h([1-6])(?:[^>]+)?>(.*?)<\/h\1>/gi;null!==(e=i.exec(a));)t.push(e);return t}function n(a){var e=i(a);return e=(0,o.map)(e,function(a){return a[0]})}Object.defineProperty(e,"__esModule",{value:!0}),e.getSubheadingContents=e.getSubheadings=void 0;var o=t(1);e.getSubheadings=i,e.getSubheadingContents=n,e.default={getSubheadings:i,getSubheadingContents:n}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a){return a=a.replace(i,""),a=a.replace(n,"")};var i=new RegExp("^[\\–\\-\\(\\)_\\[\\]’“”\"'.?!:;,¿¡«»‹›—×+&<>]+"),n=new RegExp("[\\–\\-\\(\\)_\\[\\]’“”\"'.?!:;,¿¡«»‹›—×+&<>]+$")},function(a,e,t){"use strict";function i(a,e,t){var i=(0,o.stripFullTags)(a.getText()),r=(0,n.createAnchorOpeningTag)("https://yoa.st/35h"),d=(0,n.createAnchorOpeningTag)("https://yoa.st/35i");if(i.length<50){var c=new s.default;return c.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."),r,"</a>",d)),c.setScore(3),c}return new s.default}Object.defineProperty(e,"__esModule",{value:!0});var n=t(47),o=t(202),r=t(40),s=function(a){return a&&a.__esModule?a:{default:a}}(r);e.default={identifier:"textPresence",getResult:i}},function(a,e,t){"use strict";function i(a){return a&&a.__esModule?a:{default:a}}Object.defineProperty(e,"__esModule",{value:!0});var n=t(1),o=t(804),r=i(o),s=t(822),d=i(s),c=t(444),l=t(459),u=i(l),p=t(47),z=t(202),g=t(40),m=i(g),w=t(263),y=i(w),f=["en","de","es","fr","nl","it","pt","ru","ca","pl"],b=function(a){return 0===a.transitionWordSentences||0===a.totalSentences?0:(0,r.default)(a.transitionWordSentences/a.totalSentences*100)},h=function(a){return a<20?3:(0,c.inRangeStartInclusive)(a,20,30)?6:a>=30?9:void 0},v=function(a,e){var t=b(a),i=h(t),n=t>0,o=(0,p.createAnchorOpeningTag)("https://yoa.st/34z"),s=(0,p.createAnchorOpeningTag)("https://yoa.st/35a");return i<7&&0===t?{score:(0,r.default)(i),hasMarks:n,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."),o,"</a>",s)}:i<7?{score:(0,r.default)(i),hasMarks:n,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."),o,"</a>",t+"%",s)}:{score:(0,r.default)(i),hasMarks:n,text:e.sprintf(e.dgettext("js-text-analysis","%1$sTransition words%2$s: Well done!"),o,"</a>")}},k=function(a,e,t){var i=e.getResearch("findTransitionWords"),n=v(i,t),o=new m.default;return o.setScore(n.score),o.setText(n.text),o.setHasMarks(n.hasMarks),o},j=function(a,e){var t=e.getResearch("findTransitionWords");return(0,n.map)(t.sentenceResults,function(a){var e=a.sentence;return e=(0,z.stripIncompleteTags)(e),new y.default({original:e,marked:(0,u.default)(e)})})};e.default={identifier:"textTransitionWords",getResult:k,isApplicable:function(a){return(0,d.default)(a.getLocale(),f)&&a.hasText()},getMarks:j}},function(a,e,t){"use strict";function i(a){return a&&a.__esModule?a:{default:a}}function n(a,e){if(!(a instanceof e))throw new TypeError("Cannot call a class as a function")}function o(a,e){if(!a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!==(void 0===e?"undefined":s(e))&&"function"!=typeof e?a:e}function r(a,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+(void 0===e?"undefined":s(e)));a.prototype=Object.create(e&&e.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(a,e):a.__proto__=e)}var s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(a){return typeof a}:function(a){return a&&"function"==typeof Symbol&&a.constructor===Symbol&&a!==Symbol.prototype?"symbol":typeof a};Object.defineProperty(e,"__esModule",{value:!0});var d=function(){function a(a,e){for(var t=0;t<e.length;t++){var i=e[t];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(a,i.key,i)}}return function(e,t,i){return t&&a(e.prototype,t),i&&a(e,i),e}}(),c=t(1),l=t(106),u=i(l),p=t(47),z=t(40),g=i(z),m=function(a){function e(){var a=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};n(this,e);var t=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this)),i={parameters:{recommendedMinimum:1},scores:{allInternalFollow:9,someInternalFollow:8,noneInternalFollow:7,noInternal:3},urlTitle:(0,p.createAnchorOpeningTag)("https://yoa.st/33z"),urlCallToAction:(0,p.createAnchorOpeningTag)("https://yoa.st/34a")};return t.identifier="internalLinks",t._config=(0,c.merge)(i,a),t}return r(e,a),d(e,[{key:"getResult",value:function(a,e,t){this.linkStatistics=e.getResearch("getLinkStatistics");var i=new g.default,n=this.calculateResult(t);return i.setScore(n.score),i.setText(n.resultText),i}},{key:"isApplicable",value:function(a){return a.hasText()}},{key:"calculateResult",value:function(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>")}}}]),e}(u.default);e.default=m},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i={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};e.default=i},function(a,e,t){"use strict";function i(a){return a&&a.__esModule?a:{default:a}}function n(a,e){if(!(a instanceof e))throw new TypeError("Cannot call a class as a function")}function o(a,e){if(!a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!==(void 0===e?"undefined":s(e))&&"function"!=typeof e?a:e}function r(a,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+(void 0===e?"undefined":s(e)));a.prototype=Object.create(e&&e.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(a,e):a.__proto__=e)}var s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(a){return typeof a}:function(a){return a&&"function"==typeof Symbol&&a.constructor===Symbol&&a!==Symbol.prototype?"symbol":typeof a};Object.defineProperty(e,"__esModule",{value:!0});var d=function(){function a(a,e){for(var t=0;t<e.length;t++){var i=e[t];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(a,i.key,i)}}return function(e,t,i){return t&&a(e.prototype,t),i&&a(e,i),e}}(),c=t(1),l=t(106),u=i(l),p=t(47),z=t(40),g=i(z),m=function(a){function e(){var a=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};n(this,e);var t=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this)),i={scores:{noLinks:6,allNofollowed:7,moreNoFollowed:8,allFollowed:9},urlTitle:(0,p.createAnchorOpeningTag)("https://yoa.st/34f"),urlCallToAction:(0,p.createAnchorOpeningTag)("https://yoa.st/34g")};return t.identifier="externalLinks",t._config=(0,c.merge)(i,a),t}return r(e,a),d(e,[{key:"getResult",value:function(a,e,t){var i=e.getResearch("getLinkStatistics"),n=new g.default;return(0,c.isEmpty)(i)||(n.setScore(this.calculateScore(i)),n.setText(this.translateScore(i,t))),n}},{key:"isApplicable",value:function(a){return a.hasText()}},{key:"calculateScore",value:function(a){return 0===a.externalTotal?this._config.scores.noLinks:a.externalNofollow===a.externalTotal?this._config.scores.allNofollowed:a.externalNofollow<a.externalTotal?this._config.scores.moreNoFollowed:a.externalDofollow===a.total?this._config.scores.allFollowed:null}},{key:"translateScore",value:function(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.externalNofollow<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>"):""}}]),e}(u.default);e.default=m},function(a,e,t){"use strict";function i(a){return a&&a.__esModule?a:{default:a}}function n(a,e){if(!(a instanceof e))throw new TypeError("Cannot call a class as a function")}function o(a,e){if(!a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!==(void 0===e?"undefined":s(e))&&"function"!=typeof e?a:e}function r(a,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+(void 0===e?"undefined":s(e)));a.prototype=Object.create(e&&e.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(a,e):a.__proto__=e)}var s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(a){return typeof a}:function(a){return a&&"function"==typeof Symbol&&a.constructor===Symbol&&a!==Symbol.prototype?"symbol":typeof a},d=function(){function a(a,e){for(var t=0;t<e.length;t++){var i=e[t];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(a,i.key,i)}}return function(e,t,i){return t&&a(e.prototype,t),i&&a(e,i),e}}(),c=t(1),l=t(106),u=i(l),p=t(47),z=t(1379),g=t(40),m=i(g),w=function(a){function e(){var a=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};n(this,e);var t=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this)),i={scores:{noMatches:6,oneMatch:9,multipleMatches:9},urlTitle:(0,p.createAnchorOpeningTag)("https://yoa.st/33m"),urlCallToAction:(0,p.createAnchorOpeningTag)("https://yoa.st/33n")};return t.identifier="subheadingsKeyword",t._config=(0,c.merge)(i,a),t}return r(e,a),d(e,[{key:"getResult",value:function(a,e,t){this._subHeadings=e.getResearch("matchKeywordInSubheadings");var i=new m.default,n=this.calculateResult(t);return i.setScore(n.score),i.setText(n.resultText),i}},{key:"hasSubheadings",value:function(a){return(0,z.getSubheadings)(a.getText()).length>0}},{key:"isApplicable",value:function(a){return a.hasText()&&a.hasKeyword()&&this.hasSubheadings(a)}},{key:"calculateResult",value:function(a){return 1===this._subHeadings.matches?{score:this._config.scores.oneMatch,resultText:a.sprintf(a.dngettext("js-text-analysis","%1$sKeyphrase in subheading%2$s: Your subheading reflects the topic of your copy. Good job!"),this._config.urlTitle,"</a>")}:this._subHeadings.matches>1?{score:this._config.scores.multipleMatches,resultText:a.sprintf(a.dngettext("js-text-analysis","%1$sKeyphrase in subheading%2$s: %3$s (out of %4$s) subheadings reflect the topic of your copy. Good job!"),this._config.urlTitle,"</a>",this._subHeadings.matches,this._subHeadings.count)}:{score:this._config.scores.noMatches,resultText:a.sprintf(a.dngettext("js-text-analysis","%1$sKeyphrase in subheading%2$s: %3$sUse more keyphrases or synonyms in your subheadings%4$s!"),this._config.urlTitle,"</a>",this._config.urlCallToAction,"</a>")}}}]),e}(u.default);a.exports=w},function(a,e,t){"use strict";function i(a){return a&&a.__esModule?a:{default:a}}function n(a,e){if(!(a instanceof e))throw new TypeError("Cannot call a class as a function")}function o(a,e){if(!a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!==(void 0===e?"undefined":s(e))&&"function"!=typeof e?a:e}function r(a,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+(void 0===e?"undefined":s(e)));a.prototype=Object.create(e&&e.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(a,e):a.__proto__=e)}var s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(a){return typeof a}:function(a){return a&&"function"==typeof Symbol&&a.constructor===Symbol&&a!==Symbol.prototype?"symbol":typeof a};Object.defineProperty(e,"__esModule",{value:!0});var d=function(){function a(a,e){for(var t=0;t<e.length;t++){var i=e[t];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(a,i.key,i)}}return function(e,t,i){return t&&a(e.prototype,t),i&&a(e,i),e}}(),c=t(1),l=t(106),u=i(l),p=t(47),z=t(40),g=i(z),m=function(a){function e(){var a=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};n(this,e);var t=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this)),i={recommendedMinimum:300,slightlyBelowMinimum:250,belowMinimum:200,veryFarBelowMinimum:100,scores:{recommendedMinimum:9,slightlyBelowMinimum:6,belowMinimum:3,farBelowMinimum:-10,veryFarBelowMinimum:-20},urlTitle:(0,p.createAnchorOpeningTag)("https://yoa.st/34n"),urlCallToAction:(0,p.createAnchorOpeningTag)("https://yoa.st/34o")};return t.identifier="textLength",t._config=(0,c.merge)(i,a),t}return r(e,a),d(e,[{key:"getResult",value:function(a,e,t){var i=e.getResearch("wordCountInText"),n=new g.default;return n.setScore(this.calculateScore(i)),n.setText(t.sprintf(this.translateScore(n.getScore(),i,t),i,this._config.recommendedMinimum)),n}},{key:"calculateScore",value:function(a){return a>=this._config.recommendedMinimum?this._config.scores.recommendedMinimum:(0,c.inRange)(a,this._config.slightlyBelowMinimum,this._config.recommendedMinimum)?this._config.scores.slightlyBelowMinimum:(0,c.inRange)(a,this._config.belowMinimum,this._config.slightlyBelowMinimum)?this._config.scores.belowMinimum:(0,c.inRange)(a,this._config.veryFarBelowMinimum,this._config.belowMinimum)?this._config.scores.farBelowMinimum:(0,c.inRange)(a,0,this._config.veryFarBelowMinimum)?this._config.scores.veryFarBelowMinimum:null}},{key:"translateScore",value:function(a,e,t){return a===this._config.scores.recommendedMinimum?t.sprintf(t.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!",e),e,this._config.urlTitle,"</a>"):a===this._config.scores.slightlyBelowMinimum?t.sprintf(t.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.",e)+" "+t.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),e,this._config.urlTitle,this._config.urlCallToAction,"</a>",this._config.recommendedMinimum):a===this._config.scores.belowMinimum?t.sprintf(t.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.",e)+" "+t.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),e,this._config.urlTitle,this._config.urlCallToAction,"</a>",this._config.recommendedMinimum):a===this._config.scores.farBelowMinimum||a===this._config.scores.veryFarBelowMinimum?t.sprintf(t.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.",e)+" "+t.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),e,this._config.urlTitle,this._config.urlCallToAction,"</a>",this._config.recommendedMinimum):""}}]),e}(u.default);e.default=m},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a){if((0,o.isUndefined)(a))return[];switch((0,n.default)(a)){case"es":return r.es;case"pl":return r.pl;case"de":return r.de;case"nb":case"nn":return r.nbnn;case"sv":return r.sv;case"fi":return r.fi;case"da":return r.da;case"tr":return r.tr;case"lv":return r.lv;case"is":return r.is;case"fa":return r.fa;case"cs":return r.cs;case"ru":return r.ru;case"eo":return r.eo;case"af":return r.af;case"bal":case"ca":return r.ca;case"ast":return r.ast;case"an":return r.an;case"ay":return r.ay;case"en":return r.en;case"fr":return r.fr;case"it":return r.it;case"nl":return r.nl;case"bm":return r.bm;case"uk":return r.uk;case"br":return r.br;case"ch":return r.ch;case"csb":return r.csb;case"cy":return r.cy;case"ee":return r.ee;case"et":return r.et;case"eu":return r.eu;case"fuc":return r.fuc;case"fj":return r.fj;case"frp":return r.frp;case"fur":return r.fur;case"fy":return r.fy;case"ga":return r.ga;case"gd":return r.gd;case"gl":return r.gl;case"gn":return r.gn;case"gsw":return r.gsw;case"hat":return r.hat;case"haw":return r.haw;case"hr":return r.hr;case"ka":return r.ka;case"kal":return r.kal;case"kin":return r.kin;case"lb":return r.lb;case"li":return r.li;case"lin":return r.lin;case"lt":return r.lt;case"mg":return r.mg;case"mk":return r.mk;case"mri":return r.mri;case"mwl":return r.mwl;case"oci":return r.oci;case"orm":return r.orm;case"pt":return r.pt;case"roh":return r.roh;case"rup":return r.rup;case"ro":return r.ro;case"tlh":return r.tlh;case"sk":return r.sk;case"sl":return r.sl;case"sq":return r.sq;case"hu":return r.hu;case"srd":return r.srd;case"szl":return r.szl;case"tah":return r.tah;case"vec":return r.vec;case"wa":return r.wa;case"yor":return r.yor;default:return[]}};var i=t(174),n=function(a){return a&&a.__esModule?a:{default:a}}(i),o=t(1),r={es:[{letter:/[\u00F1]/g,alternative:"n"},{letter:/[\u00D1]/g,alternative:"N"},{letter:/[\u00E1]/g,alternative:"a"},{letter:/[\u00C1]/g,alternative:"A"},{letter:/[\u00E9]/g,alternative:"e"},{letter:/[\u00C9]/g,alternative:"E"},{letter:/[\u00ED]/g,alternative:"i"},{letter:/[\u00CD]/g,alternative:"I"},{letter:/[\u00F3]/g,alternative:"o"},{letter:/[\u00D3]/g,alternative:"O"},{letter:/[\u00FA\u00FC]/g,alternative:"u"},{letter:/[\u00DA\u00DC]/g,alternative:"U"}],pl:[{letter:/[\u0105]/g,alternative:"a"},{letter:/[\u0104]/g,alternative:"A"},{letter:/[\u0107]/g,alternative:"c"},{letter:/[\u0106]/g,alternative:"C"},{letter:/[\u0119]/g,alternative:"e"},{letter:/[\u0118]/g,alternative:"E"},{letter:/[\u0142]/g,alternative:"l"},{letter:/[\u0141]/g,alternative:"L"},{letter:/[\u0144]/g,alternative:"n"},{letter:/[\u0143]/g,alternative:"N"},{letter:/[\u00F3]/g,alternative:"o"},{letter:/[\u00D3]/g,alternative:"O"},{letter:/[\u015B]/g,alternative:"s"},{letter:/[\u015A]/g,alternative:"S"},{letter:/[\u017A\u017C]/g,alternative:"z"},{letter:/[\u0179\u017B]/g,alternative:"Z"}],de:[{letter:/[\u00E4]/g,alternative:"ae"},{letter:/[\u00C4]/g,alternative:"Ae"},{letter:/[\u00FC]/g,alternative:"ue"},{letter:/[\u00DC]/g,alternative:"Ue"},{letter:/[\u00F6]/g,alternative:"oe"},{letter:/[\u00D6]/g,alternative:"Oe"},{letter:/[\u00DF]/g,alternative:"ss"},{letter:/[\u1E9E]/g,alternative:"SS"}],nbnn:[{letter:/[\u00E6\u04D5]/g,alternative:"ae"},{letter:/[\u00C6\u04D4]/g,alternative:"Ae"},{letter:/[\u00E5]/g,alternative:"aa"},{letter:/[\u00C5]/g,alternative:"Aa"},{letter:/[\u00F8]/g,alternative:"oe"},{letter:/[\u00D8]/g,alternative:"Oe"},{letter:/[\u00E9\u00E8\u00EA]/g,alternative:"e"},{letter:/[\u00C9\u00C8\u00CA]/g,alternative:"E"},{letter:/[\u00F3\u00F2\u00F4]/g,alternative:"o"},{letter:/[\u00D3\u00D2\u00D4]/g,alternative:"O"}],sv:[{letter:/[\u00E5]/g,alternative:"aa"},{letter:/[\u00C5]/g,alternative:"Aa"},{letter:/[\u00E4]/g,alternative:"ae"},{letter:/[\u00C4]/g,alternative:"Ae"},{letter:/[\u00F6]/g,alternative:"oe"},{letter:/[\u00D6]/g,alternative:"Oe"},{letter:/[\u00E9]/g,alternative:"e"},{letter:/[\u00C9]/g,alternative:"E"},{letter:/[\u00E0]/g,alternative:"a"},{letter:/[\u00C0]/g,alternative:"A"}],fi:[{letter:/[\u00E5]/g,alternative:"aa"},{letter:/[\u00C5]/g,alternative:"Aa"},{letter:/[\u00E4]/g,alternative:"a"},{letter:/[\u00C4]/g,alternative:"A"},{letter:/[\u00F6]/g,alternative:"o"},{letter:/[\u00D6]/g,alternative:"O"},{letter:/[\u017E]/g,alternative:"zh"},{letter:/[\u017D]/g,alternative:"Zh"},{letter:/[\u0161]/g,alternative:"sh"},{letter:/[\u0160]/g,alternative:"Sh"}],da:[{letter:/[\u00E5]/g,alternative:"aa"},{letter:/[\u00C5]/g,alternative:"Aa"},{letter:/[\u00E6\u04D5]/g,alternative:"ae"},{letter:/[\u00C6\u04D4]/g,alternative:"Ae"},{letter:/[\u00C4]/g,alternative:"Ae"},{letter:/[\u00F8]/g,alternative:"oe"},{letter:/[\u00D8]/g,alternative:"Oe"},{letter:/[\u00E9]/g,alternative:"e"},{letter:/[\u00C9]/g,alternative:"E"}],tr:[{letter:/[\u00E7]/g,alternative:"c"},{letter:/[\u00C7]/g,alternative:"C"},{letter:/[\u011F]/g,alternative:"g"},{letter:/[\u011E]/g,alternative:"G"},{letter:/[\u00F6]/g,alternative:"o"},{letter:/[\u00D6]/g,alternative:"O"},{letter:/[\u015F]/g,alternative:"s"},{letter:/[\u015E]/g,alternative:"S"},{letter:/[\u00E2]/g,alternative:"a"},{letter:/[\u00C2]/g,alternative:"A"},{letter:/[\u0131\u00EE]/g,alternative:"i"},{letter:/[\u0130\u00CE]/g,alternative:"I"},{letter:/[\u00FC\u00FB]/g,alternative:"u"},{letter:/[\u00DC\u00DB]/g,alternative:"U"}],lv:[{letter:/[\u0101]/g,alternative:"a"},{letter:/[\u0100]/g,alternative:"A"},{letter:/[\u010D]/g,alternative:"c"},{letter:/[\u010C]/g,alternative:"C"},{letter:/[\u0113]/g,alternative:"e"},{letter:/[\u0112]/g,alternative:"E"},{letter:/[\u0123]/g,alternative:"g"},{letter:/[\u0122]/g,alternative:"G"},{letter:/[\u012B]/g,alternative:"i"},{letter:/[\u012A]/g,alternative:"I"},{letter:/[\u0137]/g,alternative:"k"},{letter:/[\u0136]/g,alternative:"K"},{letter:/[\u013C]/g,alternative:"l"},{letter:/[\u013B]/g,alternative:"L"},{letter:/[\u0146]/g,alternative:"n"},{letter:/[\u0145]/g,alternative:"N"},{letter:/[\u0161]/g,alternative:"s"},{letter:/[\u0160]/g,alternative:"S"},{letter:/[\u016B]/g,alternative:"u"},{letter:/[\u016A]/g,alternative:"U"},{letter:/[\u017E]/g,alternative:"z"},{letter:/[\u017D]/g,alternative:"Z"}],is:[{letter:/[\u00E1]/g,alternative:"a"},{letter:/[\u00C1]/g,alternative:"A"},{letter:/[\u00F0]/g,alternative:"d"},{letter:/[\u00D0]/g,alternative:"D"},{letter:/[\u00E9]/g,alternative:"e"},{letter:/[\u00C9]/g,alternative:"E"},{letter:/[\u00ED]/g,alternative:"i"},{letter:/[\u00CD]/g,alternative:"I"},{letter:/[\u00F3\u00F6]/g,alternative:"o"},{letter:/[\u00D3\u00D6]/g,alternative:"O"},{letter:/[\u00FA]/g,alternative:"u"},{letter:/[\u00DA]/g,alternative:"U"},{letter:/[\u00FD]/g,alternative:"y"},{letter:/[\u00DD]/g,alternative:"Y"},{letter:/[\u00FE]/g,alternative:"th"},{letter:/[\u00DE]/g,alternative:"Th"},{letter:/[\u00E6\u04D5]/g,alternative:"ae"},{letter:/[\u00C6\u04D4]/g,alternative:"Ae"}],fa:[{letter:/[\u00E1]/g,alternative:"a"},{letter:/[\u00C1]/g,alternative:"A"},{letter:/[\u00F0]/g,alternative:"d"},{letter:/[\u00D0]/g,alternative:"D"},{letter:/[\u00ED]/g,alternative:"i"},{letter:/[\u00CD]/g,alternative:"I"},{letter:/[\u00FD]/g,alternative:"y"},{letter:/[\u00DD]/g,alternative:"Y"},{letter:/[\u00FA]/g,alternative:"u"},{letter:/[\u00DA]/g,alternative:"U"},{letter:/[\u00F3\u00F8]/g,alternative:"o"},{letter:/[\u00D3\u00D8]/g,alternative:"O"},{letter:/[\u00E6\u04D5]/g,alternative:"ae"},{letter:/[\u00C6\u04D4]/g,alternative:"Ae"}],cs:[{letter:/[\u00E1]/g,alternative:"a"},{letter:/[\u00C1]/g,alternative:"A"},{letter:/[\u010D]/g,alternative:"c"},{letter:/[\u010C]/g,alternative:"C"},{letter:/[\u010F]/g,alternative:"d"},{letter:/[\u010E]/g,alternative:"D"},{letter:/[\u00ED]/g,alternative:"i"},{letter:/[\u00CD]/g,alternative:"I"},{letter:/[\u0148]/g,alternative:"n"},{letter:/[\u0147]/g,alternative:"N"},{letter:/[\u00F3]/g,alternative:"o"},{letter:/[\u00D3]/g,alternative:"O"},{letter:/[\u0159]/g,alternative:"r"},{letter:/[\u0158]/g,alternative:"R"},{letter:/[\u0161]/g,alternative:"s"},{letter:/[\u0160]/g,alternative:"S"},{letter:/[\u0165]/g,alternative:"t"},{letter:/[\u0164]/g,alternative:"T"},{letter:/[\u00FD]/g,alternative:"y"},{letter:/[\u00DD]/g,alternative:"Y"},{letter:/[\u017E]/g,alternative:"z"},{letter:/[\u017D]/g,alternative:"Z"},{letter:/[\u00E9\u011B]/g,alternative:"e"},{letter:/[\u00C9\u011A]/g,alternative:"E"},{letter:/[\u00FA\u016F]/g,alternative:"u"},{letter:/[\u00DA\u016E]/g,alternative:"U"}],ru:[{letter:/[\u0430]/g,alternative:"a"},{letter:/[\u0410]/g,alternative:"A"},{letter:/[\u0431]/g,alternative:"b"},{letter:/[\u0411]/g,alternative:"B"},{letter:/[\u0432]/g,alternative:"v"},{letter:/[\u0412]/g,alternative:"V"},{letter:/[\u0433]/g,alternative:"g"},{letter:/[\u0413]/g,alternative:"G"},{letter:/[\u0434]/g,alternative:"d"},{letter:/[\u0414]/g,alternative:"D"},{letter:/[\u0435]/g,alternative:"e"},{letter:/[\u0415]/g,alternative:"E"},{letter:/[\u0436]/g,alternative:"zh"},{letter:/[\u0416]/g,alternative:"Zh"},{letter:/[\u0437]/g,alternative:"z"},{letter:/[\u0417]/g,alternative:"Z"},{letter:/[\u0456\u0438\u0439]/g,alternative:"i"},{letter:/[\u0406\u0418\u0419]/g,alternative:"I"},{letter:/[\u043A]/g,alternative:"k"},{letter:/[\u041A]/g,alternative:"K"},{letter:/[\u043B]/g,alternative:"l"},{letter:/[\u041B]/g,alternative:"L"},{letter:/[\u043C]/g,alternative:"m"},{letter:/[\u041C]/g,alternative:"M"},{letter:/[\u043D]/g,alternative:"n"},{letter:/[\u041D]/g,alternative:"N"},{letter:/[\u0440]/g,alternative:"r"},{letter:/[\u0420]/g,alternative:"R"},{letter:/[\u043E]/g,alternative:"o"},{letter:/[\u041E]/g,alternative:"O"},{letter:/[\u043F]/g,alternative:"p"},{letter:/[\u041F]/g,alternative:"P"},{letter:/[\u0441]/g,alternative:"s"},{letter:/[\u0421]/g,alternative:"S"},{letter:/[\u0442]/g,alternative:"t"},{letter:/[\u0422]/g,alternative:"T"},{letter:/[\u0443]/g,alternative:"u"},{letter:/[\u0423]/g,alternative:"U"},{letter:/[\u0444]/g,alternative:"f"},{letter:/[\u0424]/g,alternative:"F"},{letter:/[\u0445]/g,alternative:"kh"},{letter:/[\u0425]/g,alternative:"Kh"},{letter:/[\u0446]/g,alternative:"ts"},{letter:/[\u0426]/g,alternative:"Ts"},{letter:/[\u0447]/g,alternative:"ch"},{letter:/[\u0427]/g,alternative:"Ch"},{letter:/[\u0448]/g,alternative:"sh"},{letter:/[\u0428]/g,alternative:"Sh"},{letter:/[\u0449]/g,alternative:"shch"},{letter:/[\u0429]/g,alternative:"Shch"},{letter:/[\u044A]/g,alternative:"ie"},{letter:/[\u042A]/g,alternative:"Ie"},{letter:/[\u044B]/g,alternative:"y"},{letter:/[\u042B]/g,alternative:"Y"},{letter:/[\u044C]/g,alternative:""},{letter:/[\u042C]/g,alternative:""},{letter:/[\u0451\u044D]/g,alternative:"e"},{letter:/[\u0401\u042D]/g,alternative:"E"},{letter:/[\u044E]/g,alternative:"iu"},{letter:/[\u042E]/g,alternative:"Iu"},{letter:/[\u044F]/g,alternative:"ia"},{letter:/[\u042F]/g,alternative:"Ia"}],eo:[{letter:/[\u0109]/g,alternative:"ch"},{letter:/[\u0108]/g,alternative:"Ch"},{letter:/[\u011d]/g,alternative:"gh"},{letter:/[\u011c]/g,alternative:"Gh"},{letter:/[\u0125]/g,alternative:"hx"},{letter:/[\u0124]/g,alternative:"Hx"},{letter:/[\u0135]/g,alternative:"jx"},{letter:/[\u0134]/g,alternative:"Jx"},{letter:/[\u015d]/g,alternative:"sx"},{letter:/[\u015c]/g,alternative:"Sx"},{letter:/[\u016d]/g,alternative:"ux"},{letter:/[\u016c]/g,alternative:"Ux"}],af:[{letter:/[\u00E8\u00EA\u00EB]/g,alternative:"e"},{letter:/[\u00CB\u00C8\u00CA]/g,alternative:"E"},{letter:/[\u00EE\u00EF]/g,alternative:"i"},{letter:/[\u00CE\u00CF]/g,alternative:"I"},{letter:/[\u00F4\u00F6]/g,alternative:"o"},{letter:/[\u00D4\u00D6]/g,alternative:"O"},{letter:/[\u00FB\u00FC]/g,alternative:"u"},{letter:/[\u00DB\u00DC]/g,alternative:"U"}],ca:[{letter:/[\u00E0]/g,alternative:"a"},{letter:/[\u00C0]/g,alternative:"A"},{letter:/[\u00E9|\u00E8]/g,alternative:"e"},{letter:/[\u00C9|\u00C8]/g,alternative:"E"},{letter:/[\u00ED|\u00EF]/g,alternative:"i"},{letter:/[\u00CD|\u00CF]/g,alternative:"I"},{letter:/[\u00F3|\u00F2]/g,alternative:"o"},{letter:/[\u00D3|\u00D2]/g,alternative:"O"},{letter:/[\u00FA|\u00FC]/g,alternative:"u"},{letter:/[\u00DA|\u00DC]/g,alternative:"U"},{letter:/[\u00E7]/g,alternative:"c"},{letter:/[\u00C7]/g,alternative:"C"}],ast:[{letter:/[\u00F1]/g,alternative:"n"},{letter:/[\u00D1]/g,alternative:"N"}],an:[{letter:/[\u00FC]/g,alternative:"u"},{letter:/[\u00F1]/g,alternative:"ny"},{letter:/[\u00E7]/g,alternative:"c"},{letter:/[\u00ED]/g,alternative:"i"},{letter:/[\u00F3]/g,alternative:"o"},{letter:/[\u00E1]/g,alternative:"a"},{letter:/[\u00DC]/g,alternative:"U"},{letter:/[\u00D1]/g,alternative:"Ny"},{letter:/[\u00C7]/g,alternative:"C"},{letter:/[\u00CD]/g,alternative:"I"},{letter:/[\u00D3]/g,alternative:"O"},{letter:/[\u00C1]/g,alternative:"A"}],ay:[{letter:/(([\u00EF])|([\u00ED]))/g,alternative:"i"},{letter:/(([\u00CF])|([\u00CD]))/g,alternative:"I"},{letter:/[\u00E4]/g,alternative:"a"},{letter:/[\u00C4]/g,alternative:"A"},{letter:/[\u00FC]/g,alternative:"u"},{letter:/[\u00DC]/g,alternative:"U"},{letter:/[\u0027]/g,alternative:""},{letter:/[\u00F1]/g,alternative:"n"},{letter:/[\u00D1]/g,alternative:"N"}],en:[{letter:/[\u00E6\u04D5]/g,alternative:"ae"},{letter:/[\u00C6\u04D4]/g,alternative:"Ae"},{letter:/[\u0153]/g,alternative:"oe"},{letter:/[\u0152]/g,alternative:"Oe"},{letter:/[\u00EB\u00E9]/g,alternative:"e"},{letter:/[\u00C9\u00CB]/g,alternative:"E"},{letter:/[\u00F4\u00F6]/g,alternative:"o"},{letter:/[\u00D4\u00D6]/g,alternative:"O"},{letter:/[\u00EF]/g,alternative:"i"},{letter:/[\u00CF]/g,alternative:"I"},{letter:/[\u00E7]/g,alternative:"c"},{letter:/[\u00C7]/g,alternative:"C"},{letter:/[\u00F1]/g,alternative:"n"},{letter:/[\u00D1]/g,alternative:"N"},{letter:/[\u00FC]/g,alternative:"u"},{letter:/[\u00DC]/g,alternative:"U"},{letter:/[\u00E4]/g,alternative:"a"},{letter:/[\u00C4]/g,alternative:"A"}],fr:[{letter:/[\u00E6\u04D5]/g,alternative:"ae"},{letter:/[\u00C6\u04D4]/g,alternative:"Ae"},{letter:/[\u0153]/g,alternative:"oe"},{letter:/[\u0152]/g,alternative:"Oe"},{letter:/[\u00E9\u00E8\u00EB\u00EA]/g,alternative:"e"},{letter:/[\u00C9\u00C8\u00CB\u00CA]/g,alternative:"E"},{letter:/[\u00E0\u00E2]/g,alternative:"a"},{letter:/[\u00C0\u00C2]/g,alternative:"A"},{letter:/[\u00EF\u00EE]/g,alternative:"i"},{letter:/[\u00CF\u00CE]/g,alternative:"I"},{letter:/[\u00F9\u00FB\u00FC]/g,alternative:"u"},{letter:/[\u00D9\u00DB\u00DC]/g,alternative:"U"},{letter:/[\u00F4]/g,alternative:"o"},{letter:/[\u00D4]/g,alternative:"O"},{letter:/[\u00FF]/g,alternative:"y"},{letter:/[\u0178]/g,alternative:"Y"},{letter:/[\u00E7]/g,alternative:"c"},{letter:/[\u00C7]/g,alternative:"C"},{letter:/[\u00F1]/g,alternative:"n"},{letter:/[\u00D1]/g,alternative:"N"}],it:[{letter:/[\u00E0]/g,alternative:"a"},{letter:/[\u00C0]/g,alternative:"A"},{letter:/[\u00E9\u00E8]/g,alternative:"e"},{letter:/[\u00C9\u00C8]/g,alternative:"E"},{letter:/[\u00EC\u00ED\u00EE]/g,alternative:"i"},{letter:/[\u00CC\u00CD\u00CE]/g,alternative:"I"},{letter:/[\u00F3\u00F2]/g,alternative:"o"},{letter:/[\u00D3\u00D2]/g,alternative:"O"},{letter:/[\u00F9\u00FA]/g,alternative:"u"},{letter:/[\u00D9\u00DA]/g,alternative:"U"}],nl:[{letter:/[\u00E7]/g,alternative:"c"},{letter:/[\u00C7]/g,alternative:"C"},{letter:/[\u00F1]/g,alternative:"n"},{letter:/[\u00D1]/g,alternative:"N"},{letter:/[\u00E9\u00E8\u00EA\u00EB]/g,alternative:"e"},{letter:/[\u00C9\u00C8\u00CA\u00CB]/g,alternative:"E"},{letter:/[\u00F4\u00F6]/g,alternative:"o"},{letter:/[\u00D4\u00D6]/g,alternative:"O"},{letter:/[\u00EF]/g,alternative:"i"},{letter:/[\u00CF]/g,alternative:"I"},{letter:/[\u00FC]/g,alternative:"u"},{letter:/[\u00DC]/g,alternative:"U"},{letter:/[\u00E4]/g,alternative:"a"},{letter:/[\u00C4]/g,alternative:"A"}],bm:[{letter:/[\u025B]/g,alternative:"e"},{letter:/[\u0190]/g,alternative:"E"},{letter:/[\u0272]/g,alternative:"ny"},{letter:/[\u019D]/g,alternative:"Ny"},{letter:/[\u014B]/g,alternative:"ng"},{letter:/[\u014A]/g,alternative:"Ng"},{letter:/[\u0254]/g,alternative:"o"},{letter:/[\u0186]/g,alternative:"O"}],uk:[{letter:/[\u0431]/g,alternative:"b"},{letter:/[\u0411]/g,alternative:"B"},{letter:/[\u0432]/g,alternative:"v"},{letter:/[\u0412]/g,alternative:"V"},{letter:/[\u0433]/g,alternative:"h"},{letter:/[\u0413]/g,alternative:"H"},{letter:/[\u0491]/g,alternative:"g"},{letter:/[\u0490]/g,alternative:"G"},{letter:/[\u0434]/g,alternative:"d"},{letter:/[\u0414]/g,alternative:"D"},{letter:/[\u043A]/g,alternative:"k"},{letter:/[\u041A]/g,alternative:"K"},{letter:/[\u043B]/g,alternative:"l"},{letter:/[\u041B]/g,alternative:"L"},{letter:/[\u043C]/g,alternative:"m"},{letter:/[\u041C]/g,alternative:"M"},{letter:/[\u0070]/g,alternative:"r"},{letter:/[\u0050]/g,alternative:"R"},{letter:/[\u043F]/g,alternative:"p"},{letter:/[\u041F]/g,alternative:"P"},{letter:/[\u0441]/g,alternative:"s"},{letter:/[\u0421]/g,alternative:"S"},{letter:/[\u0442]/g,alternative:"t"},{letter:/[\u0422]/g,alternative:"T"},{letter:/[\u0443]/g,alternative:"u"},{letter:/[\u0423]/g,alternative:"U"},{letter:/[\u0444]/g,alternative:"f"},{letter:/[\u0424]/g,alternative:"F"},{letter:/[\u0445]/g,alternative:"kh"},{letter:/[\u0425]/g,alternative:"Kh"},{letter:/[\u0446]/g,alternative:"ts"},{letter:/[\u0426]/g,alternative:"Ts"},{letter:/[\u0447]/g,alternative:"ch"},{letter:/[\u0427]/g,alternative:"Ch"},{letter:/[\u0448]/g,alternative:"sh"},{letter:/[\u0428]/g,alternative:"Sh"},{letter:/[\u0449]/g,alternative:"shch"},{letter:/[\u0429]/g,alternative:"Shch"},{letter:/[\u044C\u042C]/g,alternative:""},{letter:/[\u0436]/g,alternative:"zh"},{letter:/[\u0416]/g,alternative:"Zh"},{letter:/[\u0437]/g,alternative:"z"},{letter:/[\u0417]/g,alternative:"Z"},{letter:/[\u0438]/g,alternative:"y"},{letter:/[\u0418]/g,alternative:"Y"},{letter:/^[\u0454]/g,alternative:"ye"},{letter:/[\s][\u0454]/g,alternative:" ye"},{letter:/[\u0454]/g,alternative:"ie"},{letter:/^[\u0404]/g,alternative:"Ye"},{letter:/[\s][\u0404]/g,alternative:" Ye"},{letter:/[\u0404]/g,alternative:"IE"},{letter:/^[\u0457]/g,alternative:"yi"},{letter:/[\s][\u0457]/g,alternative:" yi"},{letter:/[\u0457]/g,alternative:"i"},{letter:/^[\u0407]/g,alternative:"Yi"},{letter:/[\s][\u0407]/g,alternative:" Yi"},{letter:/[\u0407]/g,alternative:"I"},{letter:/^[\u0439]/g,alternative:"y"},{letter:/[\s][\u0439]/g,alternative:" y"},{letter:/[\u0439]/g,alternative:"i"},{letter:/^[\u0419]/g,alternative:"Y"},{letter:/[\s][\u0419]/g,alternative:" Y"},{letter:/[\u0419]/g,alternative:"I"},{letter:/^[\u044E]/g,alternative:"yu"},{letter:/[\s][\u044E]/g,alternative:" yu"},{letter:/[\u044E]/g,alternative:"iu"},{letter:/^[\u042E]/g,alternative:"Yu"},{letter:/[\s][\u042E]/g,alternative:" Yu"},{letter:/[\u042E]/g,alternative:"IU"},{letter:/^[\u044F]/g,alternative:"ya"},{letter:/[\s][\u044F]/g,alternative:" ya"},{letter:/[\u044F]/g,alternative:"ia"},{letter:/^[\u042F]/g,alternative:"Ya"},{letter:/[\s][\u042F]/g,alternative:" Ya"},{letter:/[\u042F]/g,alternative:"IA"}],br:[{letter:/\u0063\u0027\u0068/g,alternative:"ch"},{letter:/\u0043\u0027\u0048/g,alternative:"CH"},{letter:/[\u00e2]/g,alternative:"a"},{letter:/[\u00c2]/g,alternative:"A"},{letter:/[\u00ea]/g,alternative:"e"},{letter:/[\u00ca]/g,alternative:"E"},{letter:/[\u00ee]/g,alternative:"i"},{letter:/[\u00ce]/g,alternative:"I"},{letter:/[\u00f4]/g,alternative:"o"},{letter:/[\u00d4]/g,alternative:"O"},{letter:/[\u00fb\u00f9\u00fc]/g,alternative:"u"},{letter:/[\u00db\u00d9\u00dc]/g,alternative:"U"},{letter:/[\u00f1]/g,alternative:"n"},{letter:/[\u00d1]/g,alternative:"N"}],ch:[{letter:/[\u0027]/g,alternative:""},{letter:/[\u00e5]/g,alternative:"a"},{letter:/[\u00c5]/g,alternative:"A"},{letter:/[\u00f1]/g,alternative:"n"},{letter:/[\u00d1]/g,alternative:"N"}],co:[{letter:/[\u00e2\u00e0]/g,alternative:"a"},{letter:/[\u00c2\u00c0]/g,alternative:"A"},{letter:/[\u00e6\u04d5]/g,alternative:"ae"},{letter:/[\u00c6\u04d4]/g,alternative:"Ae"},{letter:/[\u00e7]/g,alternative:"c"},{letter:/[\u00c7]/g,alternative:"C"},{letter:/[\u00e9\u00ea\u00e8\u00eb]/g,alternative:"e"},{letter:/[\u00c9\u00ca\u00c8\u00cb]/g,alternative:"E"},{letter:/[\u00ec\u00ee\u00ef]/g,alternative:"i"},{letter:/[\u00cc\u00ce\u00cf]/g,alternative:"I"},{letter:/[\u00f1]/g,alternative:"n"},{letter:/[\u00d1]/g,alternative:"N"},{letter:/[\u00f4\u00f2]/g,alternative:"o"},{letter:/[\u00d4\u00d2]/g,alternative:"O"},{letter:/[\u0153]/g,alternative:"oe"},{letter:/[\u0152]]/g,alternative:"Oe"},{letter:/[\u00f9\u00fc]/g,alternative:"u"},{letter:/[\u00d9\u00dc]/g,alternative:"U"},{letter:/[\u00ff]/g,alternative:"y"},{letter:/[\u0178]/g,alternative:"Y"}],csb:[{letter:/[\u0105\u00e3]/g,alternative:"a"},{letter:/[\u0104\u00c3]/g,alternative:"A"},{letter:/[\u00e9\u00eb]/g,alternative:"e"},{letter:/[\u00c9\u00cb]/g,alternative:"E"},{letter:/[\u0142]/g,alternative:"l"},{letter:/[\u0141]/g,alternative:"L"},{letter:/[\u0144]/g,alternative:"n"},{letter:/[\u0143]/g,alternative:"N"},{letter:/[\u00f2\u00f3\u00f4]/g,alternative:"o"},{letter:/[\u00d2\u00d3\u00d4]/g,alternative:"O"},{letter:/[\u00f9]/g,alternative:"u"},{letter:/[\u00d9]/g,alternative:"U"},{letter:/[\u017c]/g,alternative:"z"},{letter:/[\u017b]/g,alternative:"Z"}],cy:[{letter:/[\u00e2]/g,alternative:"a"},{letter:/[\u00c2]/g,alternative:"A"},{letter:/[\u00ea]/g,alternative:"e"},{letter:/[\u00ca]/g,alternative:"E"},{letter:/[\u00ee]/g,alternative:"i"},{letter:/[\u00ce]/g,alternative:"I"},{letter:/[\u00f4]/g,alternative:"o"},{letter:/[\u00d4]/g,alternative:"O"},{letter:/[\u00fb]/g,alternative:"u"},{letter:/[\u00db]/g,alternative:"U"},{letter:/[\u0175]/g,alternative:"w"},{letter:/[\u0174]/g,alternative:"W"},{letter:/[\u0177]/g,alternative:"y"},{letter:/[\u0176]/g,alternative:"Y"}],ee:[{letter:/[\u0256]/g,alternative:"d"},{letter:/[\u0189]/g,alternative:"D"},{letter:/[\u025b]/g,alternative:"e"},{letter:/[\u0190]/g,alternative:"E"},{letter:/[\u0192]/g,alternative:"f"},{letter:/[\u0191]/g,alternative:"F"},{letter:/[\u0263]/g,alternative:"g"},{letter:/[\u0194]/g,alternative:"G"},{letter:/[\u014b]/g,alternative:"ng"},{letter:/[\u014a]/g,alternative:"Ng"},{letter:/[\u0254]/g,alternative:"o"},{letter:/[\u0186]/g,alternative:"O"},{letter:/[\u028b]/g,alternative:"w"},{letter:/[\u01b2]/g,alternative:"W"},{letter:/\u0061\u0303/g,alternative:"a"},{letter:/[\u00e1\u00e0\u01ce\u00e2\u00e3]/g,alternative:"a"},{letter:/\u0041\u0303/g,alternative:"A"},{letter:/[\u00c1\u00c0\u01cd\u00c2\u00c3]/g,alternative:"A"},{letter:/[\u00e9\u00e8\u011b\u00ea]/g,alternative:"e"},{letter:/[\u00c9\u00c8\u011a\u00ca]/g,alternative:"E"},{letter:/[\u00f3\u00f2\u01d2\u00f4]/g,alternative:"o"},{letter:/[\u00d3\u00d2\u01d1\u00d4]/g,alternative:"O"},{letter:/[\u00fa\u00f9\u01d4\u00fb]/g,alternative:"u"},{letter:/[\u00da\u00d9\u01d3\u00db]/g,alternative:"U"},{letter:/[\u00ed\u00ec\u01d0\u00ee]/g,alternative:"i"},{letter:/[\u00cd\u00cc\u01cf\u00ce]/g,alternative:"I"}],et:[{letter:/[\u0161]/g,alternative:"sh"},{letter:/[\u0160]/g,alternative:"Sh"},{letter:/[\u017e]/g,alternative:"zh"},{letter:/[\u017d]/g,alternative:"Zh"},{letter:/[\u00f5\u00f6]/g,alternative:"o"},{letter:/[\u00d6\u00d5]/g,alternative:"O"},{letter:/[\u00e4]/g,alternative:"a"},{letter:/[\u00c4]/g,alternative:"A"},{letter:/[\u00fc]/g,alternative:"u"},{letter:/[\u00dc]/g,alternative:"U"}],eu:[{letter:/[\u00f1]/g,alternative:"n"},{letter:/[\u00d1]/g,alternative:"N"},{letter:/[\u00e7]/g,alternative:"c"},{letter:/[\u00c7]/g,alternative:"C"},{letter:/[\u00fc]/g,alternative:"u"},{letter:/[\u00dc]/g,alternative:"U"}],fuc:[{letter:/[\u0253]/g,alternative:"b"},{letter:/[\u0181]/g,alternative:"B"},{letter:/[\u0257]/g,alternative:"d"},{letter:/[\u018a]/g,alternative:"D"},{letter:/[\u014b]/g,alternative:"ng"},{letter:/[\u014a]/g,alternative:"Ng"},{letter:/[\u0272\u00f1]/g,alternative:"ny"},{letter:/[\u019d\u00d1]/g,alternative:"Ny"},{letter:/[\u01b4]/g,alternative:"y"},{letter:/[\u01b3]/g,alternative:"Y"},{letter:/[\u0260]/g,alternative:"g"},{letter:/[\u0193]/g,alternative:"G"}],fj:[{letter:/[\u0101]/g,alternative:"a"},{letter:/[\u0100]/g,alternative:"A"},{letter:/[\u0113]/g,alternative:"e"},{letter:/[\u0112]/g,alternative:"E"},{letter:/[\u012b]/g,alternative:"i"},{letter:/[\u012a]/g,alternative:"I"},{letter:/[\u016b]/g,alternative:"u"},{letter:/[\u016a]/g,alternative:"U"},{letter:/[\u014d]/g,alternative:"o"},{letter:/[\u014c]/g,alternative:"O"}],frp:[{letter:/[\u00e2]/g,alternative:"a"},{letter:/[\u00c2]/g,alternative:"A"},{letter:/[\u00ea\u00e8\u00e9]/g,alternative:"e"},{letter:/[\u00ca\u00c8\u00c9]/g,alternative:"E"},{letter:/[\u00ee]/g,alternative:"i"},{letter:/[\u00ce]/g,alternative:"I"},{letter:/[\u00fb\u00fc]/g,alternative:"u"},{letter:/[\u00db\u00dc]/g,alternative:"U"},{letter:/[\u00f4]/g,alternative:"o"},{letter:/[\u00d4]/g,alternative:"O"}],fur:[{letter:/[\u00E7]/g,alternative:"c"},{letter:/[\u00C7]/g,alternative:"C"},{letter:/[\u00e0\u00e2]/g,alternative:"a"},{letter:/[\u00c0\u00c2]/g,alternative:"A"},{letter:/[\u00e8\u00ea]/g,alternative:"e"},{letter:/[\u00c8\u00ca]/g,alternative:"E"},{letter:/[\u00ec\u00ee]/g,alternative:"i"},{letter:/[\u00cc\u00ce]/g,alternative:"I"},{letter:/[\u00f2\u00f4]/g,alternative:"o"},{letter:/[\u00d2\u00d4]/g,alternative:"O"},{letter:/[\u00f9\u00fb]/g,alternative:"u"},{letter:/[\u00d9\u00db]/g,alternative:"U"},{letter:/[\u010d]/g,alternative:"c"},{letter:/[\u010c]/g,alternative:"C"},{letter:/[\u011f]/g,alternative:"g"},{letter:/[\u011e]/g,alternative:"G"},{letter:/[\u0161]/g,alternative:"s"},{letter:/[\u0160]/g,alternative:"S"}],fy:[{letter:/[\u00e2\u0101\u00e4\u00e5]/g,alternative:"a"},{letter:/[\u00c2\u0100\u00c4\u00c5]/g,alternative:"A"},{letter:/[\u00ea\u00e9\u0113]/g,alternative:"e"},{letter:/[\u00ca\u00c9\u0112]/g,alternative:"E"},{letter:/[\u00f4\u00f6]/g,alternative:"o"},{letter:/[\u00d4\u00d6]/g,alternative:"O"},{letter:/[\u00fa\u00fb\u00fc]/g,alternative:"u"},{letter:/[\u00da\u00db\u00dc]/g,alternative:"U"},{letter:/[\u00ed]/g,alternative:"i"},{letter:/[\u00cd]/g,alternative:"I"},{letter:/[\u0111\u00f0]/g,alternative:"d"},{letter:/[\u0110\u00d0]/g,alternative:"D"}],ga:[{letter:/[\u00e1]/g,alternative:"a"},{letter:/[\u00c1]/g,alternative:"A"},{letter:/[\u00e9]/g,alternative:"e"},{letter:/[\u00c9]/g,alternative:"E"},{letter:/[\u00f3]/g,alternative:"o"},{letter:/[\u00d3]/g,alternative:"O"},{letter:/[\u00fa]/g,alternative:"u"},{letter:/[\u00da]/g,alternative:"U"},{letter:/[\u00ed]/g,alternative:"i"},{letter:/[\u00cd]/g,alternative:"I"}],gd:[{letter:/[\u00e0]/g,alternative:"a"},{letter:/[\u00c0]/g,alternative:"A"},{letter:/[\u00e8]/g,alternative:"e"},{letter:/[\u00c8]/g,alternative:"E"},{letter:/[\u00f2]/g,alternative:"o"},{letter:/[\u00d2]/g,alternative:"O"},{letter:/[\u00f9]/g,alternative:"u"},{letter:/[\u00d9]/g,alternative:"U"},{letter:/[\u00ec]/g,alternative:"i"},{letter:/[\u00cc]/g,alternative:"I"}],gl:[{letter:/[\u00e1\u00e0]/g,alternative:"a"},{letter:/[\u00c1\u00c0]/g,alternative:"A"},{letter:/[\u00e9\u00ea]/g,alternative:"e"},{letter:/[\u00c9\u00ca]/g,alternative:"E"},{letter:/[\u00ed\u00ef]/g,alternative:"i"},{letter:/[\u00cd\u00cf]/g,alternative:"I"},{letter:/[\u00f3]/g,alternative:"o"},{letter:/[\u00d3]/g,alternative:"O"},{letter:/[\u00fa\u00fc]/g,alternative:"u"},{letter:/[\u00da\u00dc]/g,alternative:"U"},{letter:/[\u00e7]/g,alternative:"c"},{letter:/[\u00c7]/g,alternative:"C"},{letter:/[\u00f1]/g,alternative:"n"},{letter:/[\u00d1]/g,alternative:"N"}],gn:[{letter:/[\u2019]/g,alternative:""},{letter:/\u0067\u0303/g,alternative:"g"},{letter:/\u0047\u0303/g,alternative:"G"},{letter:/[\u00e3]/g,alternative:"a"},{letter:/[\u00c3]/g,alternative:"A"},{letter:/[\u1ebd]/g,alternative:"e"},{letter:/[\u1ebc]/g,alternative:"E"},{letter:/[\u0129]/g,alternative:"i"},{letter:/[\u0128]/g,alternative:"I"},{letter:/[\u00f5]/g,alternative:"o"},{letter:/[\u00d5]/g,alternative:"O"},{letter:/[\u00f1]/g,alternative:"n"},{letter:/[\u00d1]/g,alternative:"N"},{letter:/[\u0169]/g,alternative:"u"},{letter:/[\u0168]/g,alternative:"U"},{letter:/[\u1ef9]/g,alternative:"y"},{letter:/[\u1ef8]/g,alternative:"Y"}],gsw:[{letter:/[\u00e4]/g,alternative:"a"},{letter:/[\u00c4]/g,alternative:"A"},{letter:/[\u00f6]/g,alternative:"o"},{letter:/[\u00d6]/g,alternative:"O"},{letter:/[\u00fc]/g,alternative:"u"},{letter:/[\u00dc]/g,alternative:"U"}],hat:[{letter:/[\u00e8]/g,alternative:"e"},{letter:/[\u00c8]/g,alternative:"E"},{letter:/[\u00f2]/g,alternative:"o"},{letter:/[\u00d2]/g,alternative:"O"}],haw:[{letter:/[\u02bb\u0027\u2019]/g,alternative:""},{letter:/[\u0101]/g,alternative:"a"},{letter:/[\u0113]/g,alternative:"e"},{letter:/[\u012b]/g,alternative:"i"},{letter:/[\u014d]/g,alternative:"o"},{letter:/[\u016b]/g,alternative:"u"},{letter:/[\u0100]/g,alternative:"A"},{letter:/[\u0112]/g,alternative:"E"},{letter:/[\u012a]/g,alternative:"I"},{letter:/[\u014c]/g,alternative:"O"},{letter:/[\u016a]/g,alternative:"U"}],hr:[{letter:/[\u010d\u0107]/g,alternative:"c"},{letter:/[\u010c\u0106]/g,alternative:"C"},{letter:/[\u0111]/g,alternative:"dj"},{letter:/[\u0110]/g,alternative:"Dj"},{letter:/[\u0161]/g,alternative:"s"},{letter:/[\u0160]/g,alternative:"S"},{letter:/[\u017e]/g,alternative:"z"},{letter:/[\u017d]/g,alternative:"Z"},{letter:/[\u01c4]/g,alternative:"DZ"},{letter:/[\u01c5]/g,alternative:"Dz"},{letter:/[\u01c6]/g,alternative:"dz"}],ka:[{letter:/[\u10d0]/g,alternative:"a"},{letter:/[\u10d1]/g,alternative:"b"},{letter:/[\u10d2]/g,alternative:"g"},{letter:/[\u10d3]/g,alternative:"d"},{letter:/[\u10d4]/g,alternative:"e"},{letter:/[\u10d5]/g,alternative:"v"},{letter:/[\u10d6]/g,alternative:"z"},{letter:/[\u10d7]/g,alternative:"t"},{letter:/[\u10d8]/g,alternative:"i"},{letter:/[\u10d9]/g,alternative:"k"},{letter:/[\u10da]/g,alternative:"l"},{letter:/[\u10db]/g,alternative:"m"},{letter:/[\u10dc]/g,alternative:"n"},{letter:/[\u10dd]/g,alternative:"o"},{letter:/[\u10de]/g,alternative:"p"},{letter:/[\u10df]/g,alternative:"zh"},{letter:/[\u10e0]/g,alternative:"r"},{letter:/[\u10e1]/g,alternative:"s"},{letter:/[\u10e2]/g,alternative:"t"},{letter:/[\u10e3]/g,alternative:"u"},{letter:/[\u10e4]/g,alternative:"p"},{letter:/[\u10e5]/g,alternative:"k"},{letter:/[\u10e6]/g,alternative:"gh"},{letter:/[\u10e7]/g,alternative:"q"},{letter:/[\u10e8]/g,alternative:"sh"},{letter:/[\u10e9]/g,alternative:"ch"},{letter:/[\u10ea]/g,alternative:"ts"},{letter:/[\u10eb]/g,alternative:"dz"},{letter:/[\u10ec]/g,alternative:"ts"},{letter:/[\u10ed]/g,alternative:"ch"},{letter:/[\u10ee]/g,alternative:"kh"},{letter:/[\u10ef]/g,alternative:"j"},{letter:/[\u10f0]/g,alternative:"h"}],kal:[{letter:/[\u00E5]/g,alternative:"aa"},{letter:/[\u00C5]/g,alternative:"Aa"},{letter:/[\u00E6\u04D5]/g,alternative:"ae"},{letter:/[\u00C6\u04D4]/g,alternative:"Ae"},{letter:/[\u00C4]/g,alternative:"Ae"},{letter:/[\u00F8]/g,alternative:"oe"},{letter:/[\u00D8]/g,alternative:"Oe"}],kin:[{letter:/[\u2019\u0027]/g,alternative:""}],lb:[{letter:/[\u00e4]/g,alternative:"a"},{letter:/[\u00c4]/g,alternative:"A"},{letter:/[\u00eb\u00e9]/g,alternative:"e"},{letter:/[\u00cb\u00c9]/g,alternative:"E"}],li:[{letter:/[\u00e1\u00e2\u00e0\u00e4]/g,alternative:"a"},{letter:/[\u00c1\u00c2\u00c0\u00c4]/g,alternative:"A"},{letter:/[\u00eb\u00e8\u00ea]/g,alternative:"e"},{letter:/[\u00cb\u00c8\u00ca]/g,alternative:"E"},{letter:/[\u00f6\u00f3]/g,alternative:"o"},{letter:/[\u00d6\u00d3]/g,alternative:"O"}],lin:[{letter:/[\u00e1\u00e2\u01ce]/g,alternative:"a"},{letter:/[\u00c1\u00c2\u01cd]/g,alternative:"A"},{letter:/\u025b\u0301/g,alternative:"e"},{letter:/\u025b\u0302/g,alternative:"e"},{letter:/\u025b\u030c/g,alternative:"e"},{letter:/[\u00e9\u00ea\u011b\u025b]/g,alternative:"e"},{letter:/\u0190\u0301/g,alternative:"E"},{letter:/\u0190\u0302/g,alternative:"E"},{letter:/\u0190\u030c/g,alternative:"E"},{letter:/[\u00c9\u00ca\u011a\u0190]/g,alternative:"E"},{letter:/[\u00ed\u00ee\u01d0]/g,alternative:"i"},{letter:/[\u00cd\u00ce\u01cf]/g,alternative:"I"},{letter:/\u0254\u0301/g,alternative:"o"},{letter:/\u0254\u0302/g,alternative:"o"},{letter:/\u0254\u030c/g,alternative:"o"},{letter:/[\u00f3\u00f4\u01d2\u0254]/g,alternative:"o"},{letter:/\u0186\u0301/g,alternative:"O"},{letter:/\u0186\u0302/g,alternative:"O"},{letter:/\u0186\u030c/g,alternative:"O"},{letter:/[\u00d3\u00d4\u01d1\u0186]/g,alternative:"O"},{letter:/[\u00fa]/g,alternative:"u"},{letter:/[\u00da]/g,alternative:"U"}],lt:[{letter:/[\u0105]/g,alternative:"a"},{letter:/[\u0104]/g,alternative:"A"},{letter:/[\u010d]/g,alternative:"c"},{letter:/[\u010c]/g,alternative:"C"},{letter:/[\u0119\u0117]/g,alternative:"e"},{letter:/[\u0118\u0116]/g,alternative:"E"},{letter:/[\u012f]/g,alternative:"i"},{letter:/[\u012e]/g,alternative:"I"},{letter:/[\u0161]/g,alternative:"s"},{letter:/[\u0160]/g,alternative:"S"},{letter:/[\u0173\u016b]/g,alternative:"u"},{letter:/[\u0172\u016a]/g,alternative:"U"},{letter:/[\u017e]/g,alternative:"z"},{letter:/[\u017d]/g,alternative:"Z"}],mg:[{letter:/[\u00f4]/g,alternative:"ao"},{letter:/[\u00d4]/g,alternative:"Ao"}],mk:[{letter:/[\u0430]/g,alternative:"a"},{letter:/[\u0410]/g,alternative:"A"},{letter:/[\u0431]/g,alternative:"b"},{letter:/[\u0411]/g,alternative:"B"},{letter:/[\u0432]/g,alternative:"v"},{letter:/[\u0412]/g,alternative:"V"},{letter:/[\u0433]/g,alternative:"g"},{letter:/[\u0413]/g,alternative:"G"},{letter:/[\u0434]/g,alternative:"d"},{letter:/[\u0414]/g,alternative:"D"},{letter:/[\u0453]/g,alternative:"gj"},{letter:/[\u0403]/g,alternative:"Gj"},{letter:/[\u0435]/g,alternative:"e"},{letter:/[\u0415]/g,alternative:"E"},{letter:/[\u0436]/g,alternative:"zh"},{letter:/[\u0416]/g,alternative:"Zh"},{letter:/[\u0437]/g,alternative:"z"},{letter:/[\u0417]/g,alternative:"Z"},{letter:/[\u0455]/g,alternative:"dz"},{letter:/[\u0405]/g,alternative:"Dz"},{letter:/[\u0438]/g,alternative:"i"},{letter:/[\u0418]/g,alternative:"I"},{letter:/[\u0458]/g,alternative:"j"},{letter:/[\u0408]/g,alternative:"J"},{letter:/[\u043A]/g,alternative:"k"},{letter:/[\u041A]/g,alternative:"K"},{letter:/[\u043B]/g,alternative:"l"},{letter:/[\u041B]/g,alternative:"L"},{letter:/[\u0459]/g,alternative:"lj"},{letter:/[\u0409]/g,alternative:"Lj"},{letter:/[\u043C]/g,alternative:"m"},{letter:/[\u041C]/g,alternative:"M"},{letter:/[\u043D]/g,alternative:"n"},{letter:/[\u041D]/g,alternative:"N"},{letter:/[\u045A]/g,alternative:"nj"},{letter:/[\u040A]/g,alternative:"Nj"},{letter:/[\u043E]/g,alternative:"o"},{letter:/[\u041E]/g,alternative:"O"},{letter:/[\u0440]/g,alternative:"r"},{letter:/[\u0420]/g,alternative:"R"},{letter:/[\u043F]/g,alternative:"p"},{letter:/[\u041F]/g,alternative:"P"},{letter:/[\u0441]/g,alternative:"s"},{letter:/[\u0421]/g,alternative:"S"},{letter:/[\u0442]/g,alternative:"t"},{letter:/[\u0422]/g,alternative:"T"},{letter:/[\u045C]/g,alternative:"kj"},{letter:/[\u040C]/g,alternative:"Kj"},{letter:/[\u0443]/g,alternative:"u"},{letter:/[\u0423]/g,alternative:"U"},{letter:/[\u0444]/g,alternative:"f"},{letter:/[\u0424]/g,alternative:"F"},{letter:/[\u0445]/g,alternative:"h"},{letter:/[\u0425]/g,alternative:"H"},{letter:/[\u0446]/g,alternative:"c"},{letter:/[\u0426]/g,alternative:"C"},{letter:/[\u0447]/g,alternative:"ch"},{letter:/[\u0427]/g,alternative:"Ch"},{letter:/[\u045F]/g,alternative:"dj"},{letter:/[\u040F]/g,alternative:"Dj"},{letter:/[\u0448]/g,alternative:"sh"},{letter:/[\u0428]/g,alternative:"Sh"}],mri:[{letter:/[\u0101]/g,alternative:"aa"},{letter:/[\u0100]/g,alternative:"Aa"},{letter:/[\u0113]/g,alternative:"ee"},{letter:/[\u0112]/g,alternative:"Ee"},{letter:/[\u012b]/g,alternative:"ii"},{letter:/[\u012a]/g,alternative:"Ii"},{letter:/[\u014d]/g,alternative:"oo"},{letter:/[\u014c]/g,alternative:"Oo"},{letter:/[\u016b]/g,alternative:"uu"},{letter:/[\u016a]/g,alternative:"Uu"}],mwl:[{letter:/[\u00e7]/g,alternative:"c"},{letter:/[\u00c7]/g,alternative:"C"},{letter:/[\u00e1]/g,alternative:"a"},{letter:/[\u00c1]/g,alternative:"A"},{letter:/[\u00e9\u00ea]/g,alternative:"e"},{letter:/[\u00c9\u00ca]/g,alternative:"E"},{letter:/[\u00ed]/g,alternative:"i"},{letter:/[\u00cd]/g,alternative:"I"},{letter:/[\u00f3\u00f4]/g,alternative:"o"},{letter:/[\u00d3\u00d4]/g,alternative:"O"},{letter:/[\u00fa\u0169]/g,alternative:"u"},{letter:/[\u00da\u0168]/g,alternative:"U"}],oci:[{letter:/[\u00e7]/g,alternative:"c"},{letter:/[\u00c7]/g,alternative:"C"},{letter:/[\u00e0\u00e1]/g,alternative:"a"},{letter:/[\u00c0\u00c1]/g,alternative:"A"},{letter:/[\u00e8\u00e9]/g,alternative:"e"},{letter:/[\u00c8\u00c9]/g,alternative:"E"},{letter:/[\u00ed\u00ef]/g,alternative:"i"},{letter:/[\u00cd\u00cf]/g,alternative:"I"},{letter:/[\u00f2\u00f3]/g,alternative:"o"},{letter:/[\u00d2\u00d3]/g,alternative:"O"},{letter:/[\u00fa\u00fc]/g,alternative:"u"},{letter:/[\u00da\u00dc]/g,alternative:"U"},{letter:/[\u00b7]/g,alternative:""}],orm:[{letter:/[\u0027]/g,alternative:""}],pt:[{letter:/[\u00e7]/g,alternative:"c"},{letter:/[\u00c7]/g,alternative:"C"},{letter:/[\u00e1\u00e2\u00e3\u00e0]/g,alternative:"a"},{letter:/[\u00c1\u00c2\u00c3\u00c0]/g,alternative:"A"},{letter:/[\u00e9\u00ea]/g,alternative:"e"},{letter:/[\u00c9\u00ca]/g,alternative:"E"},{letter:/[\u00ed]/g,alternative:"i"},{letter:/[\u00cd]/g,alternative:"I"},{letter:/[\u00f3\u00f4\u00f5]/g,alternative:"o"},{letter:/[\u00d3\u00d4\u00d5]/g,alternative:"O"},{letter:/[\u00fa]/g,alternative:"u"},{letter:/[\u00da]/g,alternative:"U"}],roh:[{letter:/[\u00e9\u00e8\u00ea]/g,alternative:"e"},{letter:/[\u00c9\u00c8\u00ca]/g,alternative:"E"},{letter:/[\u00ef]/g,alternative:"i"},{letter:/[\u00cf]/g,alternative:"I"},{letter:/[\u00f6]/g,alternative:"oe"},{letter:/[\u00d6]/g,alternative:"Oe"},{letter:/[\u00fc]/g,alternative:"ue"},{letter:/[\u00dc]/g,alternative:"Ue"},{letter:/[\u00e4]/g,alternative:"ae"},{letter:/[\u00c4]/g,alternative:"Ae"}],rup:[{letter:/[\u00e3]/g,alternative:"a"},{letter:/[\u00c3]/g,alternative:"A"}],ro:[{letter:/[\u0103\u00e2]/g,alternative:"a"},{letter:/[\u0102\u00c2]/g,alternative:"A"},{letter:/[\u00ee]/g,alternative:"i"},{letter:/[\u00ce]/g,alternative:"I"},{letter:/[\u0219\u015f]/g,alternative:"s"},{letter:/[\u0218\u015e]/g,alternative:"S"},{letter:/[\u021b\u0163]/g,alternative:"t"},{letter:/[\u021a\u0162]/g,alternative:"T"}],tlh:[{letter:/[\u2019\u0027]/g,alternative:""}],sk:[{letter:/[\u01c4]/g,alternative:"DZ"},{letter:/[\u01c5]/g,alternative:"Dz"},{letter:/[\u01c6]/g,alternative:"dz"},{letter:/[\u00e1\u00e4]/g,alternative:"a"},{letter:/[\u00c1\u00c4]/g,alternative:"A"},{letter:/[\u010d]/g,alternative:"c"},{letter:/[\u010c]/g,alternative:"C"},{letter:/[\u010f]/g,alternative:"d"},{letter:/[\u010e]/g,alternative:"D"},{letter:/[\u00e9]/g,alternative:"e"},{letter:/[\u00c9]/g,alternative:"E"},{letter:/[\u00ed]/g,alternative:"i"},{letter:/[\u00cd]/g,alternative:"I"},{letter:/[\u013e\u013a]/g,alternative:"l"},{letter:/[\u013d\u0139]/g,alternative:"L"},{letter:/[\u0148]/g,alternative:"n"},{letter:/[\u0147]/g,alternative:"N"},{letter:/[\u00f3\u00f4]/g,alternative:"o"},{letter:/[\u00d3\u00d4]/g,alternative:"O"},{letter:/[\u0155]/g,alternative:"r"},{letter:/[\u0154]/g,alternative:"R"},{letter:/[\u0161]/g,alternative:"s"},{letter:/[\u0160]/g,alternative:"S"},{letter:/[\u0165]/g,alternative:"t"},{letter:/[\u0164]/g,alternative:"T"},{letter:/[\u00fa]/g,alternative:"u"},{letter:/[\u00da]/g,alternative:"U"},{letter:/[\u00fd]/g,alternative:"y"},{letter:/[\u00dd]/g,alternative:"Y"},{letter:/[\u017e]/g,alternative:"z"},{letter:/[\u017d]/g,alternative:"Z"}],sl:[{letter:/[\u010d\u0107]/g,alternative:"c"},{letter:/[\u010c\u0106]/g,alternative:"C"},{letter:/[\u0111]/g,alternative:"d"},{letter:/[\u0110]/g,alternative:"D"},{letter:/[\u0161]/g,alternative:"s"},{letter:/[\u0160]/g,alternative:"S"},{letter:/[\u017e]/g,alternative:"z"},{letter:/[\u017d]/g,alternative:"Z"},{letter:/[\u00e0\u00e1\u0203\u0201]/g,alternative:"a"},{letter:/[\u00c0\u00c1\u0202\u0200]/g,alternative:"A"},{letter:/[\u00e8\u00e9\u0207\u0205]/g,alternative:"e"},{letter:/\u01dd\u0300/g,alternative:"e"},{letter:/\u01dd\u030f/g,alternative:"e"},{letter:/\u1eb9\u0301/g,alternative:"e"},{letter:/\u1eb9\u0311/g,alternative:"e"},{letter:/[\u00c8\u00c9\u0206\u0204]/g,alternative:"E"},{letter:/\u018e\u030f/g,alternative:"E"},{letter:/\u018e\u0300/g,alternative:"E"},{letter:/\u1eb8\u0311/g,alternative:"E"},{letter:/\u1eb8\u0301/g,alternative:"E"},{letter:/[\u00ec\u00ed\u020b\u0209]/g,alternative:"i"},{letter:/[\u00cc\u00cd\u020a\u0208]/g,alternative:"I"},{letter:/[\u00f2\u00f3\u020f\u020d]/g,alternative:"o"},{letter:/\u1ecd\u0311/g,alternative:"o"},{letter:/\u1ecd\u0301/g,alternative:"o"},{letter:/\u1ecc\u0311/g,alternative:"O"},{letter:/\u1ecc\u0301/g,alternative:"O"},{letter:/[\u00d2\u00d3\u020e\u020c]/g,alternative:"O"},{letter:/[\u00f9\u00fa\u0217\u0215]/g,alternative:"u"},{letter:/[\u00d9\u00da\u0216\u0214]/g,alternative:"U"},{letter:/[\u0155\u0213]/g,alternative:"r"},{letter:/[\u0154\u0212]/g,alternative:"R"}],sq:[{letter:/[\u00e7]/g,alternative:"c"},{letter:/[\u00c7]/g,alternative:"C"},{letter:/[\u00eb]/g,alternative:"e"},{letter:/[\u00cb]/g,alternative:"E"}],hu:[{letter:/[\u00e1]/g,alternative:"a"},{letter:/[\u00c1]/g,alternative:"A"},{letter:/[\u00e9]/g,alternative:"e"},{letter:/[\u00c9]/g,alternative:"E"},{letter:/[\u00ed]/g,alternative:"i"},{letter:/[\u00cd]/g,alternative:"I"},{letter:/[\u00f3\u00f6\u0151]/g,alternative:"o"},{letter:/[\u00d3\u00d6\u0150]/g,alternative:"O"},{letter:/[\u00fa\u00fc\u0171]/g,alternative:"u"},{letter:/[\u00da\u00dc\u0170]/g,alternative:"U"}],srd:[{letter:/[\u00e7]/g,alternative:"c"},{letter:/[\u00c7]/g,alternative:"C"},{letter:/[\u00e0\u00e1]/g,alternative:"a"},{letter:/[\u00c0\u00c1]/g,alternative:"A"},{letter:/[\u00e8\u00e9]/g,alternative:"e"},{letter:/[\u00c8\u00c9]/g,alternative:"E"},{letter:/[\u00ed\u00ef]/g,alternative:"i"},{letter:/[\u00cd\u00cf]/g,alternative:"I"},{letter:/[\u00f2\u00f3]/g,alternative:"o"},{letter:/[\u00d2\u00d3]/g,alternative:"O"},{letter:/[\u00fa\u00f9]/g,alternative:"u"},{letter:/[\u00da\u00d9]/g,alternative:"U"}],szl:[{letter:/[\u0107]/g,alternative:"c"},{letter:/[\u0106]/g,alternative:"C"},{letter:/[\u00e3]/g,alternative:"a"},{letter:/[\u00c3]/g,alternative:"A"},{letter:/[\u0142]/g,alternative:"u"},{letter:/[\u0141]/g,alternative:"U"},{letter:/[\u006e]/g,alternative:"n"},{letter:/[\u004e]/g,alternative:"N"},{letter:/[\u014f\u014d\u00f4\u00f5]/g,alternative:"o"},{letter:/[\u014e\u014c\u00d4\u00d5]/g,alternative:"O"},{letter:/[\u015b]/g,alternative:"s"},{letter:/[\u015a]/g,alternative:"S"},{letter:/[\u017a\u017c\u017e]/g,alternative:"z"},{letter:/[\u0179\u017b\u017d]/g,alternative:"Z"},{letter:/[\u016f]/g,alternative:"u"},{letter:/[\u016e]/g,alternative:"U"},{letter:/[\u010d]/g,alternative:"cz"},{letter:/[\u010c]/g,alternative:"Cz"},{letter:/[\u0159]/g,alternative:"rz"},{letter:/[\u0158]/g,alternative:"Rz"},{letter:/[\u0161]/g,alternative:"sz"},{letter:/[\u0160]/g,alternative:"Sz"}],tah:[{letter:/[\u0101\u00e2\u00e0]/g,alternative:"a"},{letter:/[\u0100\u00c2\u00c0]/g,alternative:"A"},{letter:/[\u00ef\u00ee\u00ec]/g,alternative:"i"},{letter:/[\u00cf\u00ce\u00cc]/g,alternative:"I"},{letter:/[\u0113\u00ea\u00e9]/g,alternative:"e"},{letter:/[\u0112\u00ca\u00c9]/g,alternative:"E"},{letter:/[\u016b\u00fb\u00fa]/g,alternative:"u"},{letter:/[\u016a\u00db\u00da]/g,alternative:"U"},{letter:/[\u00e7]/g,alternative:"c"},{letter:/[\u00c7]/g,alternative:"C"},{letter:/[\u00f2\u00f4\u014d]/g,alternative:"o"},{letter:/[\u00d2\u00d4\u014c]/g,alternative:"O"},{letter:/[\u2019\u0027\u2018]/g,alternative:""}],vec:[{letter:/\u0073\u002d\u0063/g,alternative:"sc"},{letter:/\u0053\u002d\u0043/g,alternative:"SC"},{letter:/\u0073\u0027\u0063/g,alternative:"sc"},{letter:/\u0053\u0027\u0043/g,alternative:"SC"},{letter:/\u0073\u2019\u0063/g,alternative:"sc"},{letter:/\u0053\u2019\u0043/g,alternative:"SC"},{letter:/\u0073\u2018\u0063/g,alternative:"sc"},{letter:/\u0053\u2018\u0043/g,alternative:"SC"},{letter:/\u0053\u002d\u0063/g,alternative:"Sc"},{letter:/\u0053\u0027\u0063/g,alternative:"Sc"},{letter:/\u0053\u2019\u0063/g,alternative:"Sc"},{letter:/\u0053\u2018\u0063/g,alternative:"Sc"},{letter:/\u0063\u2019/g,alternative:"c"},{letter:/\u0043\u2019/g,alternative:"C"},{letter:/\u0063\u2018/g,alternative:"c"},{letter:/\u0043\u2018/g,alternative:"C"},{letter:/\u0063\u0027/g,alternative:"c"},{letter:/\u0043\u0027/g,alternative:"C"},{letter:/[\u00e0\u00e1\u00e2]/g,alternative:"a"},{letter:/[\u00c0\u00c1\u00c2]/g,alternative:"A"},{letter:/[\u00e8\u00e9]/g,alternative:"e"},{letter:/[\u00c8\u00c9]/g,alternative:"E"},{letter:/[\u00f2\u00f3]/g,alternative:"o"},{letter:/[\u00d2\u00d3]/g,alternative:"O"},{letter:/[\u00f9\u00fa]/g,alternative:"u"},{letter:/[\u00d9\u00da]/g,alternative:"U"},{letter:/[\u00e7\u010d\u010b]/g,alternative:"c"},{letter:/[\u00c7\u010c\u010a]/g,alternative:"C"},{letter:/[\u0142]/g,alternative:"l"},{letter:/[\u00a3\u0141]/g,alternative:"L"},{letter:/\ud835\udeff/g,alternative:"dh"},{letter:/[\u0111\u03b4]/g,alternative:"dh"},{letter:/[\u0110\u0394]/g,alternative:"Dh"}],wa:[{letter:/[\u00e2\u00e5]/g,alternative:"a"},{letter:/[\u00c2\u00c5]/g,alternative:"A"},{letter:/[\u00e7]/g,alternative:"c"},{letter:/[\u00c7]/g,alternative:"C"},{letter:/\u0065\u030a/g,alternative:"e"},{letter:/\u0045\u030a/g,alternative:"E"},{letter:/[\u00eb\u00ea\u00e8\u00e9]/g,alternative:"e"},{letter:/[\u00c9\u00c8\u00ca\u00cb]/g,alternative:"E"},{letter:/[\u00ee]/g,alternative:"i"},{letter:/[\u00ce]/g,alternative:"I"},{letter:/[\u00f4\u00f6]/g,alternative:"o"},{letter:/[\u00d6\u00d4]/g,alternative:"O"},{letter:/[\u00fb]/g,alternative:"u"},{letter:/[\u00db]/g,alternative:"U"}],yor:[{letter:/[\u00e1\u00e0]/g,alternative:"a"},{letter:/[\u00c1\u00c0]/g,alternative:"A"},{letter:/[\u00ec\u00ed]/g,alternative:"i"},{letter:/[\u00cc\u00cd]/g,alternative:"I"},{letter:/\u1ecd\u0301/g,alternative:"o"},{letter:/\u1ecc\u0301/g,alternative:"O"},{letter:/\u1ecd\u0300/g,alternative:"o"},{letter:/\u1ecc\u0300/g,alternative:"O"},{letter:/[\u00f3\u00f2\u1ecd]/g,alternative:"o"},{letter:/[\u00d3\u00d2\u1ecc]/g,alternative:"O"},{letter:/[\u00fa\u00f9]/g,alternative:"u"},{letter:/[\u00da\u00d9]/g,alternative:"U"},{letter:/\u1eb9\u0301/g,alternative:"e"},{letter:/\u1eb8\u0301/g,alternative:"E"},{letter:/\u1eb9\u0300/g,alternative:"e"},{letter:/\u1eb8\u0300/g,alternative:"E"},{letter:/[\u00e9\u00e8\u1eb9]/g,alternative:"e"},{letter:/[\u00c9\u00c8\u1eb8]/g,alternative:"E"},{letter:/[\u1e63]/g,alternative:"s"},{letter:/[\u1e62]/g,alternative:"S"}]}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){return[{base:"a",letters:/[\u0061\u24D0\uFF41\u1E9A\u00E0\u00E1\u00E2\u1EA7\u1EA5\u1EAB\u1EA9\u00E3\u0101\u0103\u1EB1\u1EAF\u1EB5\u1EB3\u0227\u01E1\u00E4\u01DF\u1EA3\u00E5\u01FB\u01CE\u0201\u0203\u1EA1\u1EAD\u1EB7\u1E01\u0105\u2C65\u0250]/g},{base:"aa",letters:/[\uA733]/g},{base:"ae",letters:/[\u00E6\u01FD\u01E3]/g},{base:"ao",letters:/[\uA735]/g},{base:"au",letters:/[\uA737]/g},{base:"av",letters:/[\uA739\uA73B]/g},{base:"ay",letters:/[\uA73D]/g},{base:"b",letters:/[\u0062\u24D1\uFF42\u1E03\u1E05\u1E07\u0180\u0183\u0253]/g},{base:"c",letters:/[\u0063\u24D2\uFF43\u0107\u0109\u010B\u010D\u00E7\u1E09\u0188\u023C\uA73F\u2184]/g},{base:"d",letters:/[\u0064\u24D3\uFF44\u1E0B\u010F\u1E0D\u1E11\u1E13\u1E0F\u0111\u018C\u0256\u0257\uA77A]/g},{base:"dz",letters:/[\u01F3\u01C6]/g},{base:"e",letters:/[\u0065\u24D4\uFF45\u00E8\u00E9\u00EA\u1EC1\u1EBF\u1EC5\u1EC3\u1EBD\u0113\u1E15\u1E17\u0115\u0117\u00EB\u1EBB\u011B\u0205\u0207\u1EB9\u1EC7\u0229\u1E1D\u0119\u1E19\u1E1B\u0247\u025B\u01DD]/g},{base:"f",letters:/[\u0066\u24D5\uFF46\u1E1F\u0192\uA77C]/g},{base:"g",letters:/[\u0067\u24D6\uFF47\u01F5\u011D\u1E21\u011F\u0121\u01E7\u0123\u01E5\u0260\uA7A1\u1D79\uA77F]/g},{base:"h",letters:/[\u0068\u24D7\uFF48\u0125\u1E23\u1E27\u021F\u1E25\u1E29\u1E2B\u1E96\u0127\u2C68\u2C76\u0265]/g},{base:"hv",letters:/[\u0195]/g},{base:"i",letters:/[\u0069\u24D8\uFF49\u00EC\u00ED\u00EE\u0129\u012B\u012D\u00EF\u1E2F\u1EC9\u01D0\u0209\u020B\u1ECB\u012F\u1E2D\u0268\u0131]/g},{base:"j",letters:/[\u006A\u24D9\uFF4A\u0135\u01F0\u0249]/g},{base:"k",letters:/[\u006B\u24DA\uFF4B\u1E31\u01E9\u1E33\u0137\u1E35\u0199\u2C6A\uA741\uA743\uA745\uA7A3]/g},{base:"l",letters:/[\u006C\u24DB\uFF4C\u0140\u013A\u013E\u1E37\u1E39\u013C\u1E3D\u1E3B\u017F\u0142\u019A\u026B\u2C61\uA749\uA781\uA747]/g},{base:"lj",letters:/[\u01C9]/g},{base:"m",letters:/[\u006D\u24DC\uFF4D\u1E3F\u1E41\u1E43\u0271\u026F]/g},{base:"n",letters:/[\u006E\u24DD\uFF4E\u01F9\u0144\u00F1\u1E45\u0148\u1E47\u0146\u1E4B\u1E49\u019E\u0272\u0149\uA791\uA7A5]/g},{base:"nj",letters:/[\u01CC]/g},{base:"o",letters:/[\u006F\u24DE\uFF4F\u00F2\u00F3\u00F4\u1ED3\u1ED1\u1ED7\u1ED5\u00F5\u1E4D\u022D\u1E4F\u014D\u1E51\u1E53\u014F\u022F\u0231\u00F6\u022B\u1ECF\u0151\u01D2\u020D\u020F\u01A1\u1EDD\u1EDB\u1EE1\u1EDF\u1EE3\u1ECD\u1ED9\u01EB\u01ED\u00F8\u01FF\u0254\uA74B\uA74D\u0275]/g},{base:"oi",letters:/[\u01A3]/g},{base:"ou",letters:/[\u0223]/g},{base:"oo",letters:/[\uA74F]/g},{base:"p",letters:/[\u0070\u24DF\uFF50\u1E55\u1E57\u01A5\u1D7D\uA751\uA753\uA755]/g},{base:"q",letters:/[\u0071\u24E0\uFF51\u024B\uA757\uA759]/g},{base:"r",letters:/[\u0072\u24E1\uFF52\u0155\u1E59\u0159\u0211\u0213\u1E5B\u1E5D\u0157\u1E5F\u024D\u027D\uA75B\uA7A7\uA783]/g},{base:"s",letters:/[\u0073\u24E2\uFF53\u00DF\u015B\u1E65\u015D\u1E61\u0161\u1E67\u1E63\u1E69\u0219\u015F\u023F\uA7A9\uA785\u1E9B]/g},{base:"t",letters:/[\u0074\u24E3\uFF54\u1E6B\u1E97\u0165\u1E6D\u021B\u0163\u1E71\u1E6F\u0167\u01AD\u0288\u2C66\uA787]/g},{base:"tz",letters:/[\uA729]/g},{base:"u",letters:/[\u0075\u24E4\uFF55\u00F9\u00FA\u00FB\u0169\u1E79\u016B\u1E7B\u016D\u00FC\u01DC\u01D8\u01D6\u01DA\u1EE7\u016F\u0171\u01D4\u0215\u0217\u01B0\u1EEB\u1EE9\u1EEF\u1EED\u1EF1\u1EE5\u1E73\u0173\u1E77\u1E75\u0289]/g},{base:"v",letters:/[\u0076\u24E5\uFF56\u1E7D\u1E7F\u028B\uA75F\u028C]/g},{base:"vy",letters:/[\uA761]/g},{base:"w",letters:/[\u0077\u24E6\uFF57\u1E81\u1E83\u0175\u1E87\u1E85\u1E98\u1E89\u2C73]/g},{base:"x",letters:/[\u0078\u24E7\uFF58\u1E8B\u1E8D]/g},{base:"y",letters:/[\u0079\u24E8\uFF59\u1EF3\u00FD\u0177\u1EF9\u0233\u1E8F\u00FF\u1EF7\u1E99\u1EF5\u01B4\u024F\u1EFF]/g},{base:"z",letters:/[\u007A\u24E9\uFF5A\u017A\u1E91\u017C\u017E\u1E93\u1E95\u01B6\u0225\u0240\u2C6C\uA763]/g}]}},function(a,e,t){"use strict";function i(a){return a&&a.__esModule?a:{default:a}}Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){return{en:j,de:k,nl:_,fr:q,es:x,it:O,pt:E,ru:A,pl:T}};var n=t(1664),o=i(n),r=t(1391),s=i(r),d=t(1465),c=i(d),l=t(1392),u=i(l),p=t(1393),z=i(p),g=t(1394),m=i(g),w=t(1665),y=i(w),f=t(1666),b=i(f),h=t(1395),v=i(h),k=(0,o.default)(),j=(0,s.default)(),_=(0,c.default)(),x=(0,u.default)(),O=(0,z.default)(),q=(0,m.default)(),E=(0,y.default)(),A=(0,b.default)(),T=(0,v.default)()},function(a,e,t){"use strict";function i(a){return a&&a.__esModule?a:{default:a}}Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){return{filteredAtEnding:[].concat(z,T,L),filteredAtBeginningAndEnding:[].concat(u,S,P,w,B,f,y),filteredAnywhere:[].concat(l,q,g,m,b,$,p,d,E,A,D,I,h,C,R,k,j,_,O,K,M,x,W,U,N),cannotDirectlyPrecedePassiveParticiple:[].concat(u,S,w,y,z,T,f),cannotBeBetweenPassiveAuxiliaryAndParticiple:[].concat(E,A,D,I),all:[].concat(u,p,z,w,y,b,g,m,f,h,T,v,k,j,_,x,O,q,M,d,c,E,A,S,P,C,R,D,l,F,B,I,$,L,W,N,K,H,V)}};var n=t(1463),o=i(n),r=t(1464),s=i(r),d=(0,o.default)().filteredAuxiliaries,c=(0,o.default)().notFilteredAuxiliaries,l=(0,s.default)().singleWords,u=["the","an","a"],p=["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"],z=["first","second","third","fourth","fifth","sixth","seventh","eighth","ninth","tenth","eleventh","twelfth","thirteenth","fourteenth","fifteenth","sixteenth","seventeenth","eighteenth","nineteenth","twentieth"],g=["i","you","he","she","it","we","they"],m=["me","him","us","them"],w=["this","that","these","those"],y=["my","your","his","her","its","their","our","mine","yours","hers","theirs","ours"],f=["all","some","many","lot","lots","ton","tons","bit","no","every","enough","little","much","more","most","plenty","several","few","fewer","kind","kinds"],b=["myself","yourself","himself","herself","itself","oneself","ourselves","yourselves","themselves"],h=["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"],v=["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"],k=["which","what","whose"],j=["who","whom"],_=["where","how","why","whether","wherever","whyever","wheresoever","whensoever","howsoever","whysoever","whatsoever","whereso","whomso","whenso","howso","whyso","whoso","whatso"],x=["therefor","therein","hereby","hereto","wherein","therewith","herewith","wherewith","thereby"],O=["there","here","whither","thither","hither","whence","thence"],q=["always","once","twice","thrice"],E=["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"],A=["appear","appears","appeared","become","becomes","became","come","comes","came","keep","keeps","kept","remain","remains","remained","stay","stays","stayed","turn","turns","turned"],T=["doing","daring","having","appearing","becoming","coming","keeping","remaining","staying","saying","asking","stating","seeming","letting","making","setting","showing","putting","adding","going","using","trying","containing"],S=["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"],M=["back","within","forward","backward","ahead"],P=["and","or","and/or","yet"],C=["sooner","just","only"],R=["if","even"],D=["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"],F=["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"],B=["highly","very","really","extremely","absolutely","completely","totally","utterly","quite","somewhat","seriously","fairly","fully","amazingly"],I=["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"],L=["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"],W=["tbs","tbsp","spk","lb","qt","pk","bu","oz","pt","mod","doz","hr","f.g","ml","dl","cl","l","mg","g","kg","quart"],U=["seconds","minute","minutes","hour","hours","day","days","week","weeks","month","months","year","years","today","tomorrow","yesterday"],N=["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"],K=["not","yes","sure","top","bottom","ok","okay","amen","aka","etc","etcetera","sorry","please"],H=["ms","mss","mrs","mr","dr","prof"],V=["jr","sr"]},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){return{filteredAtBeginning:F,filteredAtEnding:[].concat(d,k,x,O,D),filteredAtBeginningAndEnding:[].concat(r,q,A,z,C,m,g),filteredAnywhere:[].concat(o,c,l,u,p,B,s,v,j,_,M,R,w,T,S,y,f,b,h,W,E,I,L,$),cannotDirectlyPrecedePassiveParticiple:[].concat(r,q,l,g,w,b,s,d,R,D,M,y,f,p,u,E),cannotBeBetweenPassiveAuxiliaryAndParticiple:[].concat(j,x),all:[].concat(r,s,d,z,g,c,p,u,l,m,w,y,f,b,h,E,v,k,j,_,x,O,q,A,T,S,M,o,P,C,R,D,B,F,I,$,W,U,N)}};var i=t(1467),n=function(a){return a&&a.__esModule?a:{default:a}}(i),o=(0,n.default)().singleWords,r=["el","la","los","las","un","una","unos","unas"],s=["dos","tres","cuatro","cinco","seis","siete","ocho","nueve","diez","once","doce","trece","catorce","quince","dieciseis","diecisiete","dieciocho","diecinueve","veinte","cien","centena","mil","millon","millones"],d=["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"],c=["yo","tú","él","ella","ello","nosotros","nosotras","vosotros","vosotras","ustedes","ellos","ellas"],l=["me","te","lo","se","nos","os","les"],u=["mí","ti","ud","uds","usted","sí"],p=["conmigo","contigo","consigo"],z=["este","ese","aquel","esta","esa","aquella","estos","esos","aquellos","estas","esas","aquellas","esto","eso","aquello"],g=["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"],m=["bastante","bastantes","mucho","muchas","mucha","muchos","demasiado","demasiada","demasiados","demasiadas","poco","poca","pocos","pocas","demás","otros","otras","todo","toda","todos","todas"],w=["alguien","algo","algún","alguno","alguna","algunos","algunas","nadie","nada","ningún","ninguno","ninguna","ningunos","ningunas","tanto","tantos","tanta","tantas"],y=["cuyas","cual"],f=["cuyo"],b=["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é"],h=["allí","ahí","allá","aquí","acá","adónde","delante","detrás","debajo","adelante","atrás","adentro","afuera"],v=["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"],k=["haber","deber","empezar","comenzar","seguir","tener","andar","quedar","hallar","venir","abrir","ir","acabar","llevar","alcanzar","decir","continuar","resultar","poder","querer","saber","soler","necesitar"],j=["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"],_=["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"],x=["estar"],O=["ser"],q=["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"],E=["cerca"],A=["o","y","entonces","e","u","ni","bien","ora"],T=["igual"],S=["apenas","segun","que"],M=["apunto","apunta","confieso","confiesa","confesaba","revelado","revelo","revela","revelaba","declarado","declaro","declara","declaba","señalo","señala","señalaba","declaraba","comento","comenta"],P=["básicamente","esencialmente","primeramente","siempre","nunca","ahora","quizá","acaso","inclusive","probablemente","verdaderamente","seguramente","jamás","obviamente","indiscutiblement","inmediatamente","previamente"],C=["muy","tan","completamente","suficiente","tal","tales"],R=["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"],D=["hacer","parecer"],F=["enfrente","mejor","peor","menos","claro","bueno","nuevo","nueva","nuevos","nuevas","viejo","viejos","vieja","viejas","anterior","grande","gran","grandes","mayores","fácil","fáciles","rápido","rápida","rápidos","rápidas","lejos","lejas","difícil","difíciles","propio","propios","propia","propias","largo","larga","largos","largas","bajos","baja","bajas","alto","alta","altos","altas","regular","regulares","normal","pequeño","pequeña","pequeños","pequeñas","diminuta","diminuto","diminutas","diminutos","chiquitito","chiquititos","chiquitita","chiquititas","corta","corto","cortas","cortos","principal","principales","mismo","mismos","misma","mismas","capaz","capaces","cierta","cierto","ciertas","ciertos","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","perfectamente","excelente","final","general"],B=["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"],I=["kg","mg","gr","g","km","m","l","ml","cl"],L=["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"],W=["no","euros"],U=["sra","sras","srta","sr","sres","dra","dr","profa","prof"],N=["jr","sr"]},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){return{filteredAtBeginning:F,filteredAtEnding:[].concat(d,M,k,_,O,D,B),filteredAtBeginningAndEnding:[].concat(r,q,E,p,C,g,z),filteredAnywhere:[].concat(o,c,l,u,I,s,v,j,x,S,R,m,A,T,w,y,f,h,U,b,L,$,W),cannotDirectlyPrecedePassiveParticiple:[].concat(r,q,l,z,m,s,d,R,D,S,w,y,u,f),cannotBeBetweenPassiveAuxiliaryAndParticiple:[].concat(j,_),all:[].concat(r,s,d,p,z,c,l,u,g,m,y,f,w,b,h,v,k,j,_,x,O,q,E,A,T,S,M,o,P,C,R,D,I,F,B,L,W,U,$,N)}};var i=t(1468),n=function(a){return a&&a.__esModule?a:{default:a}}(i),o=(0,n.default)().singleWords,r=["il","i","la","le","lo","gli","un","uno","una"],s=["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"],d=["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"],c=["io","tu","egli","esso","lui","ella","essa","lei","noi","voi","essi","esse","loro"],l=["mi","ti","si","ci","vi","li","me","te","se","glie","glielo","gliela","glieli","gliele","gliene","ce","ve"],u=["sé"],p=["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"],z=["mio","mia","miei","mie","tuo","tua","tuoi","tue","suo","sua","suoi","sue","nostro","nostra","nostri","nostre","vostro","vostra","vostri","vostre"],g=["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"],m=["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"],w=["che","cosa","cui","qual","quale","quali"],y=["chi","quanta","quante","quanti","quanto"],f=["com'è","com'era","com'erano","donde","d'onde","dove","dov'è","dov'era","dov'erano","dovunque"],b=["ne"],h=["accanto","altrove","attorno","dappertutto","giù","là","laggiù","lassù","lì","ovunque","qua","quaggiù","quassù","qui"],v=["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"],k=["venire","venir"],j=["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"],_=["avere","l'avere","aver","l'aver","potere","poter","volere","voler","dovere","dover","sapere","saper","solere","stare","star"],x=["è","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"],O=["essere","esser"],q=["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"],E=["e","ed","o","oppure"],A=["tale","l'uno","l'altro","tali","dall'altra"],T=["anziché","anzichè","fuorché","fuorchè","giacché","giacchè","laddove","modo","ove","qualora","quantunque","volta"],S=["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"],M=["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"],P=["eventualmente","forse","mai","probabilmente"],C=["addirittura","assolutamente","ben","estremamente","mica","nemmeno","quasi"],R=["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"],D=["fare"],F=["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"],B=["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"],I=["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"],L=["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"],W=["aspetto","aspetti","caso","casi","cose","idea","idee","istanza","maniera","oggetto","oggetti","parte","parti","persona","persone","pezzo","pezzi","punto","punti","sorta","sorte","tema","temi","volte"],U=["sì","no","non","€","euro","euros","ecc","eccetera"],N=["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(d,j,R,x,S,F),filteredAtBeginning:D,filteredAtBeginningAndEnding:[].concat(r,O,q,p,P,g,z),filteredAnywhere:[].concat(o,c,u,l,m,B,s,_,T,k,C,w,E,A,b,y,v,W,h,I,L,$),cannotDirectlyPrecedePassiveParticiple:[].concat(r,O,l,u,z,m,w,f,b,s,d,C,T,R),cannotBeBetweenPassiveAuxiliaryAndParticiple:[].concat(k,j),all:[].concat(r,s,d,p,z,m,c,u,y,g,w,f,h,v,k,j,b,_,x,O,q,E,A,T,S,o,M,P,C,R,B,D,F,I,$,W,L,U,N,l)}};var i=t(1469),n=function(a){return a&&a.__esModule?a:{default:a}}(i),o=(0,n.default)().singleWords,r=["le","la","les","un","une","des","aux","du","au","d'un","d'une","l'un","l'une"],s=["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"],d=["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"],c=["je","tu","il","elle","on","nous","vous","ils","elles","qu'il","qu'elle","qu'ils","qu'elles","qu'on","d'elle","d'elles"],l=["moi","toi","lui","soi","eux","d'eux","qu'eux"],u=["me","te"],p=["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"],z=["mon","ton","son","ma","ta","sa","mes","tes","ses","notre","votre","leur","nos","vos","leurs"],g=["beaucoup","peu","quelque","quelques","tous","tout","toute","toutes","plusieurs","plein","chaque","suffisant","suffisante","suffisantes","suffisants","faible","moins","tant","plus","divers","diverse","diverses"],m=["se"],w=["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"],y=["qui","que","lequel","laquelle","auquel","auxquels","auxquelles","duquel","desquels","desquelles","dont","où","quoi"],f=["combien","comment","pourquoi","d'où"],b=["quel","quels","quelle"],h=["y","n'y"],v=["là","ici","d'ici","voici"],k=["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"],j=["avoir","aller","venir","devoir","pouvoir","sembler","paraître","paraitre","mettre","finir","d'avoir","d'aller","n'avoir","l'avoir"],_=["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"],x=["être","d'être"],O=["à","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à"],q=["et","ni","or","ou"],E=["non","pas","seulement","sitôt","aussitôt","d'autre"],A=["afin","autant","comme","d'autant","d'ici","quand","lors","parce","si","tandis"],T=["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"],S=["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"],M=["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"],P=["assez","trop","tellement","presque","très","absolument","extrêmement","quasi","quasiment","fort"],C=["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"],R=["faire","vouloir"],D=["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"],F=["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"],B=["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"],I=["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"],L=["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"],W=["ne","oui","d'accord","amen","euro","euros","etc"],U=["mme","mmes","mlle","mlles","mm","dr","pr"],N=["jr","sr"]},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){return{filteredAtEnding:[].concat(s,B,I,R,E,q),filteredAtBeginningAndEnding:[].concat(A,S,k,j,F,m,w,y),filteredAnywhere:[].concat(o,P,r,d,c,l,u,p,z,g,f,b,h,v,_,T,M,C,D,L,$,W,U,N,K,x),cannotDirectlyPrecedePassiveParticiple:[].concat(A,z,m,r,s,C,R,D,h,f,b),cannotBeBetweenPassiveAuxiliaryAndParticiple:[].concat(x,E,w),all:[].concat(o,P,r,d,c,l,u,p,z,g,f,b,h,v,_,x,T,M,C,D,L,$,W,U,N,K,O,A,S,k,j,F,m,w,y,s,B,I,R,E,q)}};var i=t(1472),n=function(a){return a&&a.__esModule?a:{default:a}}(i),o=(0,n.default)().singleWords,r=["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"],s=["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"],d=["ja","my","on","ona","one","oni","ono","ty","wy"],c=["cię","ciebie","go","ich","ją","je","jego","mnie","nas","nią","nich","nie","niego","was"],l=["jej","niej"],u=["mi","ci","im","jemu","mu","nam","niemu","nim","tobie","wam"],p=["mną","nami","nią","nim","nimi","tobą","wami"],z=["myśmy","wyście","żeście","żeśmy"],g=["doń","nań","zeń"],m=["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"],w=["się"],y=["siebie","sobą"],f=["czyi","czyich","czyim","czyimi","czyj","czyja","czyją","czyje","czyjego","czyjej","czyjemu","kim","kogo","komu","kto"],b=["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ś"],h=["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"],v=["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"],k=["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"],j=["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"],_=["czasem","często","nigdy","rzadko","zawsze"],x=["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"],O=["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"],q=["być","zostać"],E=["chcieć","mieć","móc","musieć","potrafić","stać"],A=["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"],T=["bliska","daleka","przodu","tyłu"],S=["albo","ani","bądź","i","lub","oraz","tylko"],M=["aż","by","czy","gdyby","jak","jeśli","jeżeli","że"],P=["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"],C=["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"],R=["brać","dać","dawać","iść","robić","stanowić","uprawiać","wykonywać","wziąć","zrobić"],D=["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"],F=["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"],B=["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"],I=["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"],L=["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"],W=["dr","dyr","mgr","p","pan","pani","panie","panowie","prof"],U=["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"],N=["°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"],K=["nie","no","oto","tak","sobie","ok","okej"]},function(a,e){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,e){a.exports={amp:"&",apos:"'",gt:">",lt:"<",quot:'"'}},function(a,e,t){e=a.exports=t(1480),e.Stream=e,e.Readable=e,e.Writable=t(1400),e.Duplex=t(810),e.Transform=t(1484),e.PassThrough=t(1680)},function(a,e,t){"use strict";(function(a){function i(){return o.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function n(a,e){if(i()<e)throw new RangeError("Invalid typed array length");return o.TYPED_ARRAY_SUPPORT?(a=new Uint8Array(e),a.__proto__=o.prototype):(null===a&&(a=new o(e)),a.length=e),a}function o(a,e,t){if(!(o.TYPED_ARRAY_SUPPORT||this instanceof o))return new o(a,e,t);if("number"==typeof a){if("string"==typeof e)throw new Error("If encoding is specified then the first argument must be a string");return c(this,a)}return r(this,a,e,t)}function r(a,e,t,i){if("number"==typeof e)throw new TypeError('"value" argument must not be a number');return"undefined"!=typeof ArrayBuffer&&e instanceof ArrayBuffer?p(a,e,t,i):"string"==typeof e?l(a,e,t):z(a,e)}function s(a){if("number"!=typeof a)throw new TypeError('"size" argument must be a number');if(a<0)throw new RangeError('"size" argument must not be negative')}function d(a,e,t,i){return s(e),e<=0?n(a,e):void 0!==t?"string"==typeof i?n(a,e).fill(t,i):n(a,e).fill(t):n(a,e)}function c(a,e){if(s(e),a=n(a,e<0?0:0|g(e)),!o.TYPED_ARRAY_SUPPORT)for(var t=0;t<e;++t)a[t]=0;return a}function l(a,e,t){if("string"==typeof t&&""!==t||(t="utf8"),!o.isEncoding(t))throw new TypeError('"encoding" must be a valid string encoding');var i=0|w(e,t);a=n(a,i);var r=a.write(e,t);return r!==i&&(a=a.slice(0,r)),a}function u(a,e){var t=e.length<0?0:0|g(e.length);a=n(a,t);for(var i=0;i<t;i+=1)a[i]=255&e[i];return a}function p(a,e,t,i){if(e.byteLength,t<0||e.byteLength<t)throw new RangeError("'offset' is out of bounds");if(e.byteLength<t+(i||0))throw new RangeError("'length' is out of bounds");return e=void 0===t&&void 0===i?new Uint8Array(e):void 0===i?new Uint8Array(e,t):new Uint8Array(e,t,i),o.TYPED_ARRAY_SUPPORT?(a=e,a.__proto__=o.prototype):a=u(a,e),a}function z(a,e){if(o.isBuffer(e)){var t=0|g(e.length);return a=n(a,t),0===a.length?a:(e.copy(a,0,0,t),a)}if(e){if("undefined"!=typeof ArrayBuffer&&e.buffer instanceof ArrayBuffer||"length"in e)return"number"!=typeof e.length||G(e.length)?n(a,0):u(a,e);if("Buffer"===e.type&&Q(e.data))return u(a,e.data)}throw new TypeError("First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.")}function g(a){if(a>=i())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+i().toString(16)+" bytes");return 0|a}function m(a){return+a!=a&&(a=0),o.alloc(+a)}function w(a,e){if(o.isBuffer(a))return a.length;if("undefined"!=typeof ArrayBuffer&&"function"==typeof ArrayBuffer.isView&&(ArrayBuffer.isView(a)||a instanceof ArrayBuffer))return a.byteLength;"string"!=typeof a&&(a=""+a);var t=a.length;if(0===t)return 0;for(var i=!1;;)switch(e){case"ascii":case"latin1":case"binary":return t;case"utf8":case"utf-8":case void 0:return N(a).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*t;case"hex":return t>>>1;case"base64":return V(a).length;default:if(i)return N(a).length;e=(""+e).toLowerCase(),i=!0}}function y(a,e,t){var i=!1;if((void 0===e||e<0)&&(e=0),e>this.length)return"";if((void 0===t||t>this.length)&&(t=this.length),t<=0)return"";if(t>>>=0,e>>>=0,t<=e)return"";for(a||(a="utf8");;)switch(a){case"hex":return M(this,e,t);case"utf8":case"utf-8":return E(this,e,t);case"ascii":return T(this,e,t);case"latin1":case"binary":return S(this,e,t);case"base64":return q(this,e,t);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return P(this,e,t);default:if(i)throw new TypeError("Unknown encoding: "+a);a=(a+"").toLowerCase(),i=!0}}function f(a,e,t){var i=a[e];a[e]=a[t],a[t]=i}function b(a,e,t,i,n){if(0===a.length)return-1;if("string"==typeof t?(i=t,t=0):t>2147483647?t=2147483647:t<-2147483648&&(t=-2147483648),t=+t,isNaN(t)&&(t=n?0:a.length-1),t<0&&(t=a.length+t),t>=a.length){if(n)return-1;t=a.length-1}else if(t<0){if(!n)return-1;t=0}if("string"==typeof e&&(e=o.from(e,i)),o.isBuffer(e))return 0===e.length?-1:h(a,e,t,i,n);if("number"==typeof e)return e&=255,o.TYPED_ARRAY_SUPPORT&&"function"==typeof Uint8Array.prototype.indexOf?n?Uint8Array.prototype.indexOf.call(a,e,t):Uint8Array.prototype.lastIndexOf.call(a,e,t):h(a,[e],t,i,n);throw new TypeError("val must be string, number or Buffer")}function h(a,e,t,i,n){function o(a,e){return 1===r?a[e]:a.readUInt16BE(e*r)}var r=1,s=a.length,d=e.length;if(void 0!==i&&("ucs2"===(i=String(i).toLowerCase())||"ucs-2"===i||"utf16le"===i||"utf-16le"===i)){if(a.length<2||e.length<2)return-1;r=2,s/=2,d/=2,t/=2}var c;if(n){var l=-1;for(c=t;c<s;c++)if(o(a,c)===o(e,-1===l?0:c-l)){if(-1===l&&(l=c),c-l+1===d)return l*r}else-1!==l&&(c-=c-l),l=-1}else for(t+d>s&&(t=s-d),c=t;c>=0;c--){for(var u=!0,p=0;p<d;p++)if(o(a,c+p)!==o(e,p)){u=!1;break}if(u)return c}return-1}function v(a,e,t,i){t=Number(t)||0;var n=a.length-t;i?(i=Number(i))>n&&(i=n):i=n;var o=e.length;if(o%2!=0)throw new TypeError("Invalid hex string");i>o/2&&(i=o/2);for(var r=0;r<i;++r){var s=parseInt(e.substr(2*r,2),16);if(isNaN(s))return r;a[t+r]=s}return r}function k(a,e,t,i){return Y(N(e,a.length-t),a,t,i)}function j(a,e,t,i){return Y(K(e),a,t,i)}function _(a,e,t,i){return j(a,e,t,i)}function x(a,e,t,i){return Y(V(e),a,t,i)}function O(a,e,t,i){return Y(H(e,a.length-t),a,t,i)}function q(a,e,t){return 0===e&&t===a.length?Z.fromByteArray(a):Z.fromByteArray(a.slice(e,t))}function E(a,e,t){t=Math.min(a.length,t);for(var i=[],n=e;n<t;){var o=a[n],r=null,s=o>239?4:o>223?3:o>191?2:1;if(n+s<=t){var d,c,l,u;switch(s){case 1:o<128&&(r=o);break;case 2:d=a[n+1],128==(192&d)&&(u=(31&o)<<6|63&d)>127&&(r=u);break;case 3:d=a[n+1],c=a[n+2],128==(192&d)&&128==(192&c)&&(u=(15&o)<<12|(63&d)<<6|63&c)>2047&&(u<55296||u>57343)&&(r=u);break;case 4:d=a[n+1],c=a[n+2],l=a[n+3],128==(192&d)&&128==(192&c)&&128==(192&l)&&(u=(15&o)<<18|(63&d)<<12|(63&c)<<6|63&l)>65535&&u<1114112&&(r=u)}}null===r?(r=65533,s=1):r>65535&&(r-=65536,i.push(r>>>10&1023|55296),r=56320|1023&r),i.push(r),n+=s}return A(i)}function A(a){var e=a.length;if(e<=X)return String.fromCharCode.apply(String,a);for(var t="",i=0;i<e;)t+=String.fromCharCode.apply(String,a.slice(i,i+=X));return t}function T(a,e,t){var i="";t=Math.min(a.length,t);for(var n=e;n<t;++n)i+=String.fromCharCode(127&a[n]);return i}function S(a,e,t){var i="";t=Math.min(a.length,t);for(var n=e;n<t;++n)i+=String.fromCharCode(a[n]);return i}function M(a,e,t){var i=a.length;(!e||e<0)&&(e=0),(!t||t<0||t>i)&&(t=i);for(var n="",o=e;o<t;++o)n+=U(a[o]);return n}function P(a,e,t){for(var i=a.slice(e,t),n="",o=0;o<i.length;o+=2)n+=String.fromCharCode(i[o]+256*i[o+1]);return n}function C(a,e,t){if(a%1!=0||a<0)throw new RangeError("offset is not uint");if(a+e>t)throw new RangeError("Trying to access beyond buffer length")}function R(a,e,t,i,n,r){if(!o.isBuffer(a))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>n||e<r)throw new RangeError('"value" argument is out of bounds');if(t+i>a.length)throw new RangeError("Index out of range")}function D(a,e,t,i){e<0&&(e=65535+e+1);for(var n=0,o=Math.min(a.length-t,2);n<o;++n)a[t+n]=(e&255<<8*(i?n:1-n))>>>8*(i?n:1-n)}function F(a,e,t,i){e<0&&(e=4294967295+e+1);for(var n=0,o=Math.min(a.length-t,4);n<o;++n)a[t+n]=e>>>8*(i?n:3-n)&255}function B(a,e,t,i,n,o){if(t+i>a.length)throw new RangeError("Index out of range");if(t<0)throw new RangeError("Index out of range")}function I(a,e,t,i,n){return n||B(a,e,t,4,3.4028234663852886e38,-3.4028234663852886e38),J.write(a,e,t,i,23,4),t+4}function L(a,e,t,i,n){return n||B(a,e,t,8,1.7976931348623157e308,-1.7976931348623157e308),J.write(a,e,t,i,52,8),t+8}function $(a){if(a=W(a).replace(aa,""),a.length<2)return"";for(;a.length%4!=0;)a+="=";return a}function W(a){return a.trim?a.trim():a.replace(/^\s+|\s+$/g,"")}function U(a){return a<16?"0"+a.toString(16):a.toString(16)}function N(a,e){e=e||1/0;for(var t,i=a.length,n=null,o=[],r=0;r<i;++r){if((t=a.charCodeAt(r))>55295&&t<57344){if(!n){if(t>56319){(e-=3)>-1&&o.push(239,191,189);continue}if(r+1===i){(e-=3)>-1&&o.push(239,191,189);continue}n=t;continue}if(t<56320){(e-=3)>-1&&o.push(239,191,189),n=t;continue}t=65536+(n-55296<<10|t-56320)}else n&&(e-=3)>-1&&o.push(239,191,189);if(n=null,t<128){if((e-=1)<0)break;o.push(t)}else if(t<2048){if((e-=2)<0)break;o.push(t>>6|192,63&t|128)}else if(t<65536){if((e-=3)<0)break;o.push(t>>12|224,t>>6&63|128,63&t|128)}else{if(!(t<1114112))throw new Error("Invalid code point");if((e-=4)<0)break;o.push(t>>18|240,t>>12&63|128,t>>6&63|128,63&t|128)}}return o}function K(a){for(var e=[],t=0;t<a.length;++t)e.push(255&a.charCodeAt(t));return e}function H(a,e){for(var t,i,n,o=[],r=0;r<a.length&&!((e-=2)<0);++r)t=a.charCodeAt(r),i=t>>8,n=t%256,o.push(n),o.push(i);return o}function V(a){return Z.toByteArray($(a))}function Y(a,e,t,i){for(var n=0;n<i&&!(n+t>=e.length||n>=a.length);++n)e[n+t]=a[n];return n}function G(a){return a!==a}/*!
8
- * The buffer module from node.js, for the browser.
9
- *
10
- * @author Feross Aboukhadijeh <feross@feross.org> <http://feross.org>
11
- * @license MIT
12
- */
13
- var Z=t(1673),J=t(1674),Q=t(1481);e.Buffer=o,e.SlowBuffer=m,e.INSPECT_MAX_BYTES=50,o.TYPED_ARRAY_SUPPORT=void 0!==a.TYPED_ARRAY_SUPPORT?a.TYPED_ARRAY_SUPPORT:function(){try{var a=new Uint8Array(1);return a.__proto__={__proto__:Uint8Array.prototype,foo:function(){return 42}},42===a.foo()&&"function"==typeof a.subarray&&0===a.subarray(1,1).byteLength}catch(a){return!1}}(),e.kMaxLength=i(),o.poolSize=8192,o._augment=function(a){return a.__proto__=o.prototype,a},o.from=function(a,e,t){return r(null,a,e,t)},o.TYPED_ARRAY_SUPPORT&&(o.prototype.__proto__=Uint8Array.prototype,o.__proto__=Uint8Array,"undefined"!=typeof Symbol&&Symbol.species&&o[Symbol.species]===o&&Object.defineProperty(o,Symbol.species,{value:null,configurable:!0})),o.alloc=function(a,e,t){return d(null,a,e,t)},o.allocUnsafe=function(a){return c(null,a)},o.allocUnsafeSlow=function(a){return c(null,a)},o.isBuffer=function(a){return!(null==a||!a._isBuffer)},o.compare=function(a,e){if(!o.isBuffer(a)||!o.isBuffer(e))throw new TypeError("Arguments must be Buffers");if(a===e)return 0;for(var t=a.length,i=e.length,n=0,r=Math.min(t,i);n<r;++n)if(a[n]!==e[n]){t=a[n],i=e[n];break}return t<i?-1:i<t?1:0},o.isEncoding=function(a){switch(String(a).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},o.concat=function(a,e){if(!Q(a))throw new TypeError('"list" argument must be an Array of Buffers');if(0===a.length)return o.alloc(0);var t;if(void 0===e)for(e=0,t=0;t<a.length;++t)e+=a[t].length;var i=o.allocUnsafe(e),n=0;for(t=0;t<a.length;++t){var r=a[t];if(!o.isBuffer(r))throw new TypeError('"list" argument must be an Array of Buffers');r.copy(i,n),n+=r.length}return i},o.byteLength=w,o.prototype._isBuffer=!0,o.prototype.swap16=function(){var a=this.length;if(a%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var e=0;e<a;e+=2)f(this,e,e+1);return this},o.prototype.swap32=function(){var a=this.length;if(a%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var e=0;e<a;e+=4)f(this,e,e+3),f(this,e+1,e+2);return this},o.prototype.swap64=function(){var a=this.length;if(a%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var e=0;e<a;e+=8)f(this,e,e+7),f(this,e+1,e+6),f(this,e+2,e+5),f(this,e+3,e+4);return this},o.prototype.toString=function(){var a=0|this.length;return 0===a?"":0===arguments.length?E(this,0,a):y.apply(this,arguments)},o.prototype.equals=function(a){if(!o.isBuffer(a))throw new TypeError("Argument must be a Buffer");return this===a||0===o.compare(this,a)},o.prototype.inspect=function(){var a="",t=e.INSPECT_MAX_BYTES;return this.length>0&&(a=this.toString("hex",0,t).match(/.{2}/g).join(" "),this.length>t&&(a+=" ... ")),"<Buffer "+a+">"},o.prototype.compare=function(a,e,t,i,n){if(!o.isBuffer(a))throw new TypeError("Argument must be a Buffer");if(void 0===e&&(e=0),void 0===t&&(t=a?a.length:0),void 0===i&&(i=0),void 0===n&&(n=this.length),e<0||t>a.length||i<0||n>this.length)throw new RangeError("out of range index");if(i>=n&&e>=t)return 0;if(i>=n)return-1;if(e>=t)return 1;if(e>>>=0,t>>>=0,i>>>=0,n>>>=0,this===a)return 0;for(var r=n-i,s=t-e,d=Math.min(r,s),c=this.slice(i,n),l=a.slice(e,t),u=0;u<d;++u)if(c[u]!==l[u]){r=c[u],s=l[u];break}return r<s?-1:s<r?1:0},o.prototype.includes=function(a,e,t){return-1!==this.indexOf(a,e,t)},o.prototype.indexOf=function(a,e,t){return b(this,a,e,t,!0)},o.prototype.lastIndexOf=function(a,e,t){return b(this,a,e,t,!1)},o.prototype.write=function(a,e,t,i){if(void 0===e)i="utf8",t=this.length,e=0;else if(void 0===t&&"string"==typeof e)i=e,t=this.length,e=0;else{if(!isFinite(e))throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");e|=0,isFinite(t)?(t|=0,void 0===i&&(i="utf8")):(i=t,t=void 0)}var n=this.length-e;if((void 0===t||t>n)&&(t=n),a.length>0&&(t<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");i||(i="utf8");for(var o=!1;;)switch(i){case"hex":return v(this,a,e,t);case"utf8":case"utf-8":return k(this,a,e,t);case"ascii":return j(this,a,e,t);case"latin1":case"binary":return _(this,a,e,t);case"base64":return x(this,a,e,t);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return O(this,a,e,t);default:if(o)throw new TypeError("Unknown encoding: "+i);i=(""+i).toLowerCase(),o=!0}},o.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var X=4096;o.prototype.slice=function(a,e){var t=this.length;a=~~a,e=void 0===e?t:~~e,a<0?(a+=t)<0&&(a=0):a>t&&(a=t),e<0?(e+=t)<0&&(e=0):e>t&&(e=t),e<a&&(e=a);var i;if(o.TYPED_ARRAY_SUPPORT)i=this.subarray(a,e),i.__proto__=o.prototype;else{var n=e-a;i=new o(n,void 0);for(var r=0;r<n;++r)i[r]=this[r+a]}return i},o.prototype.readUIntLE=function(a,e,t){a|=0,e|=0,t||C(a,e,this.length);for(var i=this[a],n=1,o=0;++o<e&&(n*=256);)i+=this[a+o]*n;return i},o.prototype.readUIntBE=function(a,e,t){a|=0,e|=0,t||C(a,e,this.length);for(var i=this[a+--e],n=1;e>0&&(n*=256);)i+=this[a+--e]*n;return i},o.prototype.readUInt8=function(a,e){return e||C(a,1,this.length),this[a]},o.prototype.readUInt16LE=function(a,e){return e||C(a,2,this.length),this[a]|this[a+1]<<8},o.prototype.readUInt16BE=function(a,e){return e||C(a,2,this.length),this[a]<<8|this[a+1]},o.prototype.readUInt32LE=function(a,e){return e||C(a,4,this.length),(this[a]|this[a+1]<<8|this[a+2]<<16)+16777216*this[a+3]},o.prototype.readUInt32BE=function(a,e){return e||C(a,4,this.length),16777216*this[a]+(this[a+1]<<16|this[a+2]<<8|this[a+3])},o.prototype.readIntLE=function(a,e,t){a|=0,e|=0,t||C(a,e,this.length);for(var i=this[a],n=1,o=0;++o<e&&(n*=256);)i+=this[a+o]*n;return n*=128,i>=n&&(i-=Math.pow(2,8*e)),i},o.prototype.readIntBE=function(a,e,t){a|=0,e|=0,t||C(a,e,this.length);for(var i=e,n=1,o=this[a+--i];i>0&&(n*=256);)o+=this[a+--i]*n;return n*=128,o>=n&&(o-=Math.pow(2,8*e)),o},o.prototype.readInt8=function(a,e){return e||C(a,1,this.length),128&this[a]?-1*(255-this[a]+1):this[a]},o.prototype.readInt16LE=function(a,e){e||C(a,2,this.length);var t=this[a]|this[a+1]<<8;return 32768&t?4294901760|t:t},o.prototype.readInt16BE=function(a,e){e||C(a,2,this.length);var t=this[a+1]|this[a]<<8;return 32768&t?4294901760|t:t},o.prototype.readInt32LE=function(a,e){return e||C(a,4,this.length),this[a]|this[a+1]<<8|this[a+2]<<16|this[a+3]<<24},o.prototype.readInt32BE=function(a,e){return e||C(a,4,this.length),this[a]<<24|this[a+1]<<16|this[a+2]<<8|this[a+3]},o.prototype.readFloatLE=function(a,e){return e||C(a,4,this.length),J.read(this,a,!0,23,4)},o.prototype.readFloatBE=function(a,e){return e||C(a,4,this.length),J.read(this,a,!1,23,4)},o.prototype.readDoubleLE=function(a,e){return e||C(a,8,this.length),J.read(this,a,!0,52,8)},o.prototype.readDoubleBE=function(a,e){return e||C(a,8,this.length),J.read(this,a,!1,52,8)},o.prototype.writeUIntLE=function(a,e,t,i){if(a=+a,e|=0,t|=0,!i){R(this,a,e,t,Math.pow(2,8*t)-1,0)}var n=1,o=0;for(this[e]=255&a;++o<t&&(n*=256);)this[e+o]=a/n&255;return e+t},o.prototype.writeUIntBE=function(a,e,t,i){if(a=+a,e|=0,t|=0,!i){R(this,a,e,t,Math.pow(2,8*t)-1,0)}var n=t-1,o=1;for(this[e+n]=255&a;--n>=0&&(o*=256);)this[e+n]=a/o&255;return e+t},o.prototype.writeUInt8=function(a,e,t){return a=+a,e|=0,t||R(this,a,e,1,255,0),o.TYPED_ARRAY_SUPPORT||(a=Math.floor(a)),this[e]=255&a,e+1},o.prototype.writeUInt16LE=function(a,e,t){return a=+a,e|=0,t||R(this,a,e,2,65535,0),o.TYPED_ARRAY_SUPPORT?(this[e]=255&a,this[e+1]=a>>>8):D(this,a,e,!0),e+2},o.prototype.writeUInt16BE=function(a,e,t){return a=+a,e|=0,t||R(this,a,e,2,65535,0),o.TYPED_ARRAY_SUPPORT?(this[e]=a>>>8,this[e+1]=255&a):D(this,a,e,!1),e+2},o.prototype.writeUInt32LE=function(a,e,t){return a=+a,e|=0,t||R(this,a,e,4,4294967295,0),o.TYPED_ARRAY_SUPPORT?(this[e+3]=a>>>24,this[e+2]=a>>>16,this[e+1]=a>>>8,this[e]=255&a):F(this,a,e,!0),e+4},o.prototype.writeUInt32BE=function(a,e,t){return a=+a,e|=0,t||R(this,a,e,4,4294967295,0),o.TYPED_ARRAY_SUPPORT?(this[e]=a>>>24,this[e+1]=a>>>16,this[e+2]=a>>>8,this[e+3]=255&a):F(this,a,e,!1),e+4},o.prototype.writeIntLE=function(a,e,t,i){if(a=+a,e|=0,!i){var n=Math.pow(2,8*t-1);R(this,a,e,t,n-1,-n)}var o=0,r=1,s=0;for(this[e]=255&a;++o<t&&(r*=256);)a<0&&0===s&&0!==this[e+o-1]&&(s=1),this[e+o]=(a/r>>0)-s&255;return e+t},o.prototype.writeIntBE=function(a,e,t,i){if(a=+a,e|=0,!i){var n=Math.pow(2,8*t-1);R(this,a,e,t,n-1,-n)}var o=t-1,r=1,s=0;for(this[e+o]=255&a;--o>=0&&(r*=256);)a<0&&0===s&&0!==this[e+o+1]&&(s=1),this[e+o]=(a/r>>0)-s&255;return e+t},o.prototype.writeInt8=function(a,e,t){return a=+a,e|=0,t||R(this,a,e,1,127,-128),o.TYPED_ARRAY_SUPPORT||(a=Math.floor(a)),a<0&&(a=255+a+1),this[e]=255&a,e+1},o.prototype.writeInt16LE=function(a,e,t){return a=+a,e|=0,t||R(this,a,e,2,32767,-32768),o.TYPED_ARRAY_SUPPORT?(this[e]=255&a,this[e+1]=a>>>8):D(this,a,e,!0),e+2},o.prototype.writeInt16BE=function(a,e,t){return a=+a,e|=0,t||R(this,a,e,2,32767,-32768),o.TYPED_ARRAY_SUPPORT?(this[e]=a>>>8,this[e+1]=255&a):D(this,a,e,!1),e+2},o.prototype.writeInt32LE=function(a,e,t){return a=+a,e|=0,t||R(this,a,e,4,2147483647,-2147483648),o.TYPED_ARRAY_SUPPORT?(this[e]=255&a,this[e+1]=a>>>8,this[e+2]=a>>>16,this[e+3]=a>>>24):F(this,a,e,!0),e+4},o.prototype.writeInt32BE=function(a,e,t){return a=+a,e|=0,t||R(this,a,e,4,2147483647,-2147483648),a<0&&(a=4294967295+a+1),o.TYPED_ARRAY_SUPPORT?(this[e]=a>>>24,this[e+1]=a>>>16,this[e+2]=a>>>8,this[e+3]=255&a):F(this,a,e,!1),e+4},o.prototype.writeFloatLE=function(a,e,t){return I(this,a,e,!0,t)},o.prototype.writeFloatBE=function(a,e,t){return I(this,a,e,!1,t)},o.prototype.writeDoubleLE=function(a,e,t){return L(this,a,e,!0,t)},o.prototype.writeDoubleBE=function(a,e,t){return L(this,a,e,!1,t)},o.prototype.copy=function(a,e,t,i){if(t||(t=0),i||0===i||(i=this.length),e>=a.length&&(e=a.length),e||(e=0),i>0&&i<t&&(i=t),i===t)return 0;if(0===a.length||0===this.length)return 0;if(e<0)throw new RangeError("targetStart out of bounds");if(t<0||t>=this.length)throw new RangeError("sourceStart out of bounds");if(i<0)throw new RangeError("sourceEnd out of bounds");i>this.length&&(i=this.length),a.length-e<i-t&&(i=a.length-e+t);var n,r=i-t;if(this===a&&t<e&&e<i)for(n=r-1;n>=0;--n)a[n+e]=this[n+t];else if(r<1e3||!o.TYPED_ARRAY_SUPPORT)for(n=0;n<r;++n)a[n+e]=this[n+t];else Uint8Array.prototype.set.call(a,this.subarray(t,t+r),e);return r},o.prototype.fill=function(a,e,t,i){if("string"==typeof a){if("string"==typeof e?(i=e,e=0,t=this.length):"string"==typeof t&&(i=t,t=this.length),1===a.length){var n=a.charCodeAt(0);n<256&&(a=n)}if(void 0!==i&&"string"!=typeof i)throw new TypeError("encoding must be a string");if("string"==typeof i&&!o.isEncoding(i))throw new TypeError("Unknown encoding: "+i)}else"number"==typeof a&&(a&=255);if(e<0||this.length<e||this.length<t)throw new RangeError("Out of range index");if(t<=e)return this;e>>>=0,t=void 0===t?this.length:t>>>0,a||(a=0);var r;if("number"==typeof a)for(r=e;r<t;++r)this[r]=a;else{var s=o.isBuffer(a)?a:N(new o(a,i).toString()),d=s.length;for(r=0;r<t-e;++r)this[r+e]=s[r%d]}return this};var aa=/[^+\/0-9A-Za-z-_]/g}).call(e,t(15))},function(a,e,t){"use strict";(function(e,i,n){function o(a){var e=this;this.next=null,this.entry=null,this.finish=function(){q(e,a)}}function r(a){return C.from(a)}function s(a){return C.isBuffer(a)||a instanceof R}function d(){}function c(a,e){A=A||t(810),a=a||{};var i=e instanceof A;this.objectMode=!!a.objectMode,i&&(this.objectMode=this.objectMode||!!a.writableObjectMode);var n=a.highWaterMark,r=a.writableHighWaterMark,s=this.objectMode?16:16384;this.highWaterMark=n||0===n?n:i&&(r||0===r)?r:s,this.highWaterMark=Math.floor(this.highWaterMark),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1;var d=!1===a.decodeStrings;this.decodeStrings=!d,this.defaultEncoding=a.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(a){f(e,a)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.bufferedRequestCount=0,this.corkedRequestsFree=new o(this)}function l(a){if(A=A||t(810),!(F.call(l,this)||this instanceof A))return new l(a);this._writableState=new c(a,this),this.writable=!0,a&&("function"==typeof a.write&&(this._write=a.write),"function"==typeof a.writev&&(this._writev=a.writev),"function"==typeof a.destroy&&(this._destroy=a.destroy),"function"==typeof a.final&&(this._final=a.final)),P.call(this)}function u(a,e){var t=new Error("write after end");a.emit("error",t),E.nextTick(e,t)}function p(a,e,t,i){var n=!0,o=!1;return null===t?o=new TypeError("May not write null values to stream"):"string"==typeof t||void 0===t||e.objectMode||(o=new TypeError("Invalid non-string/buffer chunk")),o&&(a.emit("error",o),E.nextTick(i,o),n=!1),n}function z(a,e,t){return a.objectMode||!1===a.decodeStrings||"string"!=typeof e||(e=C.from(e,t)),e}function g(a,e,t,i,n,o){if(!t){var r=z(e,i,n);i!==r&&(t=!0,n="buffer",i=r)}var s=e.objectMode?1:i.length;e.length+=s;var d=e.length<e.highWaterMark;if(d||(e.needDrain=!0),e.writing||e.corked){var c=e.lastBufferedRequest;e.lastBufferedRequest={chunk:i,encoding:n,isBuf:t,callback:o,next:null},c?c.next=e.lastBufferedRequest:e.bufferedRequest=e.lastBufferedRequest,e.bufferedRequestCount+=1}else m(a,e,!1,s,i,n,o);return d}function m(a,e,t,i,n,o,r){e.writelen=i,e.writecb=r,e.writing=!0,e.sync=!0,t?a._writev(n,e.onwrite):a._write(n,o,e.onwrite),e.sync=!1}function w(a,e,t,i,n){--e.pendingcb,t?(E.nextTick(n,i),E.nextTick(x,a,e),a._writableState.errorEmitted=!0,a.emit("error",i)):(n(i),a._writableState.errorEmitted=!0,a.emit("error",i),x(a,e))}function y(a){a.writing=!1,a.writecb=null,a.length-=a.writelen,a.writelen=0}function f(a,e){var t=a._writableState,i=t.sync,n=t.writecb;if(y(t),e)w(a,t,i,e,n);else{var o=k(t);o||t.corked||t.bufferProcessing||!t.bufferedRequest||v(a,t),i?T(b,a,t,o,n):b(a,t,o,n)}}function b(a,e,t,i){t||h(a,e),e.pendingcb--,i(),x(a,e)}function h(a,e){0===e.length&&e.needDrain&&(e.needDrain=!1,a.emit("drain"))}function v(a,e){e.bufferProcessing=!0;var t=e.bufferedRequest;if(a._writev&&t&&t.next){var i=e.bufferedRequestCount,n=new Array(i),r=e.corkedRequestsFree;r.entry=t;for(var s=0,d=!0;t;)n[s]=t,t.isBuf||(d=!1),t=t.next,s+=1;n.allBuffers=d,m(a,e,!0,e.length,n,"",r.finish),e.pendingcb++,e.lastBufferedRequest=null,r.next?(e.corkedRequestsFree=r.next,r.next=null):e.corkedRequestsFree=new o(e),e.bufferedRequestCount=0}else{for(;t;){var c=t.chunk,l=t.encoding,u=t.callback;if(m(a,e,!1,e.objectMode?1:c.length,c,l,u),t=t.next,e.bufferedRequestCount--,e.writing)break}null===t&&(e.lastBufferedRequest=null)}e.bufferedRequest=t,e.bufferProcessing=!1}function k(a){return a.ending&&0===a.length&&null===a.bufferedRequest&&!a.finished&&!a.writing}function j(a,e){a._final(function(t){e.pendingcb--,t&&a.emit("error",t),e.prefinished=!0,a.emit("prefinish"),x(a,e)})}function _(a,e){e.prefinished||e.finalCalled||("function"==typeof a._final?(e.pendingcb++,e.finalCalled=!0,E.nextTick(j,a,e)):(e.prefinished=!0,a.emit("prefinish")))}function x(a,e){var t=k(e);return t&&(_(a,e),0===e.pendingcb&&(e.finished=!0,a.emit("finish"))),t}function O(a,e,t){e.ending=!0,x(a,e),t&&(e.finished?E.nextTick(t):a.once("finish",t)),e.ended=!0,a.writable=!1}function q(a,e,t){var i=a.entry;for(a.entry=null;i;){var n=i.callback;e.pendingcb--,n(t),i=i.next}e.corkedRequestsFree?e.corkedRequestsFree.next=a:e.corkedRequestsFree=a}var E=t(1042);a.exports=l;var A,T=!e.browser&&["v0.10","v0.9."].indexOf(e.version.slice(0,5))>-1?i:E.nextTick;l.WritableState=c;var S=t(1008);S.inherits=t(169);var M={deprecate:t(1679)},P=t(1482),C=t(1043).Buffer,R=n.Uint8Array||function(){},D=t(1483);S.inherits(l,P),c.prototype.getBuffer=function(){for(var a=this.bufferedRequest,e=[];a;)e.push(a),a=a.next;return e},function(){try{Object.defineProperty(c.prototype,"buffer",{get:M.deprecate(function(){return this.getBuffer()},"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch(a){}}();var F;"function"==typeof Symbol&&Symbol.hasInstance&&"function"==typeof Function.prototype[Symbol.hasInstance]?(F=Function.prototype[Symbol.hasInstance],Object.defineProperty(l,Symbol.hasInstance,{value:function(a){return!!F.call(this,a)||this===l&&(a&&a._writableState instanceof c)}})):F=function(a){return a instanceof this},l.prototype.pipe=function(){this.emit("error",new Error("Cannot pipe, not readable"))},l.prototype.write=function(a,e,t){var i=this._writableState,n=!1,o=!i.objectMode&&s(a);return o&&!C.isBuffer(a)&&(a=r(a)),"function"==typeof e&&(t=e,e=null),o?e="buffer":e||(e=i.defaultEncoding),"function"!=typeof t&&(t=d),i.ended?u(this,t):(o||p(this,i,a,t))&&(i.pendingcb++,n=g(this,i,o,a,e,t)),n},l.prototype.cork=function(){this._writableState.corked++},l.prototype.uncork=function(){var a=this._writableState;a.corked&&(a.corked--,a.writing||a.corked||a.finished||a.bufferProcessing||!a.bufferedRequest||v(this,a))},l.prototype.setDefaultEncoding=function(a){if("string"==typeof a&&(a=a.toLowerCase()),!(["hex","utf8","utf-8","ascii","binary","base64","ucs2","ucs-2","utf16le","utf-16le","raw"].indexOf((a+"").toLowerCase())>-1))throw new TypeError("Unknown encoding: "+a);return this._writableState.defaultEncoding=a,this},Object.defineProperty(l.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),l.prototype._write=function(a,e,t){t(new Error("_write() is not implemented"))},l.prototype._writev=null,l.prototype.end=function(a,e,t){var i=this._writableState;"function"==typeof a?(t=a,a=null,e=null):"function"==typeof e&&(t=e,e=null),null!==a&&void 0!==a&&this.write(a,e),i.corked&&(i.corked=1,this.uncork()),i.ending||i.finished||O(this,i,t)},Object.defineProperty(l.prototype,"destroyed",{get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(a){this._writableState&&(this._writableState.destroyed=a)}}),l.prototype.destroy=D.destroy,l.prototype._undestroy=D.undestroy,l.prototype._destroy=function(a,e){this.end(),e(a)}}).call(e,t(445),t(1678).setImmediate,t(15))},function(a,e,t){(function(a,e){!function(a,t){"use strict";function i(a){"function"!=typeof a&&(a=new Function(""+a));for(var e=new Array(arguments.length-1),t=0;t<e.length;t++)e[t]=arguments[t+1];var i={callback:a,args:e};return c[d]=i,s(d),d++}function n(a){delete c[a]}function o(a){var e=a.callback,i=a.args;switch(i.length){case 0:e();break;case 1:e(i[0]);break;case 2:e(i[0],i[1]);break;case 3:e(i[0],i[1],i[2]);break;default:e.apply(t,i)}}function r(a){if(l)setTimeout(r,0,a);else{var e=c[a];if(e){l=!0;try{o(e)}finally{n(a),l=!1}}}}if(!a.setImmediate){var s,d=1,c={},l=!1,u=a.document,p=Object.getPrototypeOf&&Object.getPrototypeOf(a);p=p&&p.setTimeout?p:a,"[object process]"==={}.toString.call(a.process)?function(){s=function(a){e.nextTick(function(){r(a)})}}():function(){if(a.postMessage&&!a.importScripts){var e=!0,t=a.onmessage;return a.onmessage=function(){e=!1},a.postMessage("","*"),a.onmessage=t,e}}()?function(){var e="setImmediate$"+Math.random()+"$",t=function(t){t.source===a&&"string"==typeof t.data&&0===t.data.indexOf(e)&&r(+t.data.slice(e.length))};a.addEventListener?a.addEventListener("message",t,!1):a.attachEvent("onmessage",t),s=function(t){a.postMessage(e+t,"*")}}():a.MessageChannel?function(){var a=new MessageChannel;a.port1.onmessage=function(a){r(a.data)},s=function(e){a.port2.postMessage(e)}}():u&&"onreadystatechange"in u.createElement("script")?function(){var a=u.documentElement;s=function(e){var t=u.createElement("script");t.onreadystatechange=function(){r(e),t.onreadystatechange=null,a.removeChild(t),t=null},a.appendChild(t)}}():function(){s=function(a){setTimeout(r,0,a)}}(),p.setImmediate=i,p.clearImmediate=n}}("undefined"==typeof self?void 0===a?this:a:self)}).call(e,t(15),t(445))},function(a,e,t){"use strict";function i(a){if(!a)return"utf8";for(var e;;)switch(a){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return a;default:if(e)return;a=(""+a).toLowerCase(),e=!0}}function n(a){var e=i(a);if("string"!=typeof e&&(f.isEncoding===b||!b(a)))throw new Error("Unknown encoding: "+a);return e||a}function o(a){this.encoding=n(a);var e;switch(this.encoding){case"utf16le":this.text=p,this.end=z,e=4;break;case"utf8":this.fillLast=c,e=4;break;case"base64":this.text=g,this.end=m,e=3;break;default:return this.write=w,void(this.end=y)}this.lastNeed=0,this.lastTotal=0,this.lastChar=f.allocUnsafe(e)}function r(a){return a<=127?0:a>>5==6?2:a>>4==14?3:a>>3==30?4:a>>6==2?-1:-2}function s(a,e,t){var i=e.length-1;if(i<t)return 0;var n=r(e[i]);return n>=0?(n>0&&(a.lastNeed=n-1),n):--i<t||-2===n?0:(n=r(e[i]))>=0?(n>0&&(a.lastNeed=n-2),n):--i<t||-2===n?0:(n=r(e[i]),n>=0?(n>0&&(2===n?n=0:a.lastNeed=n-3),n):0)}function d(a,e,t){if(128!=(192&e[0]))return a.lastNeed=0,"�";if(a.lastNeed>1&&e.length>1){if(128!=(192&e[1]))return a.lastNeed=1,"�";if(a.lastNeed>2&&e.length>2&&128!=(192&e[2]))return a.lastNeed=2,"�"}}function c(a){var e=this.lastTotal-this.lastNeed,t=d(this,a,e);return void 0!==t?t:this.lastNeed<=a.length?(a.copy(this.lastChar,e,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(a.copy(this.lastChar,e,0,a.length),void(this.lastNeed-=a.length))}function l(a,e){var t=s(this,a,e);if(!this.lastNeed)return a.toString("utf8",e);this.lastTotal=t;var i=a.length-(t-this.lastNeed);return a.copy(this.lastChar,0,i),a.toString("utf8",e,i)}function u(a){var e=a&&a.length?this.write(a):"";return this.lastNeed?e+"�":e}function p(a,e){if((a.length-e)%2==0){var t=a.toString("utf16le",e);if(t){var i=t.charCodeAt(t.length-1);if(i>=55296&&i<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=a[a.length-2],this.lastChar[1]=a[a.length-1],t.slice(0,-1)}return t}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=a[a.length-1],a.toString("utf16le",e,a.length-1)}function z(a){var e=a&&a.length?this.write(a):"";if(this.lastNeed){var t=this.lastTotal-this.lastNeed;return e+this.lastChar.toString("utf16le",0,t)}return e}function g(a,e){var t=(a.length-e)%3;return 0===t?a.toString("base64",e):(this.lastNeed=3-t,this.lastTotal=3,1===t?this.lastChar[0]=a[a.length-1]:(this.lastChar[0]=a[a.length-2],this.lastChar[1]=a[a.length-1]),a.toString("base64",e,a.length-t))}function m(a){var e=a&&a.length?this.write(a):"";return this.lastNeed?e+this.lastChar.toString("base64",0,3-this.lastNeed):e}function w(a){return a.toString(this.encoding)}function y(a){return a&&a.length?this.write(a):""}var f=t(1043).Buffer,b=f.isEncoding||function(a){switch((a=""+a)&&a.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};e.StringDecoder=o,o.prototype.write=function(a){if(0===a.length)return"";var e,t;if(this.lastNeed){if(void 0===(e=this.fillLast(a)))return"";t=this.lastNeed,this.lastNeed=0}else t=0;return t<a.length?e?e+this.text(a,t):this.text(a,t):e||""},o.prototype.end=u,o.prototype.text=l,o.prototype.fillLast=function(a){if(this.lastNeed<=a.length)return a.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);a.copy(this.lastChar,this.lastTotal-this.lastNeed,0,a.length),this.lastNeed-=a.length}},function(a,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(a){return a=(0,i.stripFullTags)(a),a=(0,o.default)(a)};var i=t(202),n=t(109),o=function(a){return a&&a.__esModule?a:{default:a}}(n)},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});var n=t(84);(function(a){return a&&a.__esModule?a:{default:a}})(n).default.inherits(i,Error),e.default=i},function(a,e,t){"use strict";function i(a){return a.split("#")[0]}function n(a){return a.split("?")[0]}function o(a){return a.replace(/\/$/,"")}function r(a){return o(a)+"/"}function s(a){var e=w.exec(a);return null===e?"":e[2]}function d(a,e){return a=n(i(a)),e=n(i(e)),r(a)===r(e)}function c(a){return a=m.default.parse(a),a.hostname}function l(a){return m.default.parse(a).protocol}function u(a,e){var t=m.default.parse(a,!1,!0);return-1===a.indexOf("//")&&0===a.indexOf("/")||0!==a.indexOf("#")&&(!t.host||t.host===e)}function p(a){return!!a&&("http:"===a||"https:"===a)}function z(a){return 0===a.indexOf("#")}Object.defineProperty(e,"__esModule",{value:!0});var g=t(1406),m=function(a){return a&&a.__esModule?a:{default:a}}(g),w=/href=(["'])([^"']+)\1/i;e.default={removeHash:i,removeQueryArgs:n,removeTrailingSlash:o,addTrailingSlash:r,getFromAnchorTag:s,areEqual:d,getHostname:c,getProtocol:l,isInternalLink:u,protocolIsHttpScheme:p,isRelativeFragmentURL:z}},function(a,e,t){"use strict";function i(){this.protocol=null,this.slashes=null,this.auth=null,this.host=null,this.port=null,this.hostname=null,this.hash=null,this.search=null,this.query=null,this.pathname=null,this.path=null,this.href=null}function n(a,e,t){if(a&&c.isObject(a)&&a instanceof i)return a;var n=new i;return n.parse(a,e,t),n}function o(a){return c.isString(a)&&(a=n(a)),a instanceof i?a.format():i.prototype.format.call(a)}function r(a,e){return n(a,!1,!0).resolve(e)}function s(a,e){return a?n(a,!1,!0).resolveObject(e):e}var d=t(1407),c=t(1408);e.parse=n,e.resolve=r,e.resolveObject=s,e.format=o,e.Url=i;var l=/^([a-z0-9.+-]+:)/i,u=/:[0-9]*$/,p=/^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/,z=["<",">",'"',"`"," ","\r","\n","\t"],g=["{","}","|","\\","^","`"].concat(z),m=["'"].concat(g),w=["%","/","?",";","#"].concat(m),y=["/","?","#"],f=/^[+a-z0-9A-Z_-]{0,63}$/,b=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,h={javascript:!0,"javascript:":!0},v={javascript:!0,"javascript:":!0},k={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0},j=t(1409);i.prototype.parse=function(a,e,t){if(!c.isString(a))throw new TypeError("Parameter 'url' must be a string, not "+typeof a);var i=a.indexOf("?"),n=-1!==i&&i<a.indexOf("#")?"?":"#",o=a.split(n),r=/\\/g;o[0]=o[0].replace(r,"/"),a=o.join(n);var s=a;if(s=s.trim(),!t&&1===a.split("#").length){var u=p.exec(s);if(u)return this.path=s,this.href=s,this.pathname=u[1],u[2]?(this.search=u[2],this.query=e?j.parse(this.search.substr(1)):this.search.substr(1)):e&&(this.search="",this.query={}),this}var z=l.exec(s);if(z){z=z[0];var g=z.toLowerCase();this.protocol=g,s=s.substr(z.length)}if(t||z||s.match(/^\/\/[^@\/]+@[^@\/]+/)){var _="//"===s.substr(0,2);!_||z&&v[z]||(s=s.substr(2),this.slashes=!0)}if(!v[z]&&(_||z&&!k[z])){for(var x=-1,O=0;O<y.length;O++){var q=s.indexOf(y[O]);-1!==q&&(-1===x||q<x)&&(x=q)}var E,A;A=-1===x?s.lastIndexOf("@"):s.lastIndexOf("@",x),-1!==A&&(E=s.slice(0,A),s=s.slice(A+1),this.auth=decodeURIComponent(E)),x=-1;for(var O=0;O<w.length;O++){var q=s.indexOf(w[O]);-1!==q&&(-1===x||q<x)&&(x=q)}-1===x&&(x=s.length),this.host=s.slice(0,x),s=s.slice(x),this.parseHost(),this.hostname=this.hostname||"";var T="["===this.hostname[0]&&"]"===this.hostname[this.hostname.length-1];if(!T)for(var S=this.hostname.split(/\./),O=0,M=S.length;O<M;O++){var P=S[O];if(P&&!P.match(f)){for(var C="",R=0,D=P.length;R<D;R++)P.charCodeAt(R)>127?C+="x":C+=P[R];if(!C.match(f)){var F=S.sli