Orbit Fox by ThemeIsle - Version 2.10.7

Version Description

Download this release

Release Info

Developer themeisle
Plugin Icon 128x128 Orbit Fox by ThemeIsle
Version 2.10.7
Comparing to
See all releases

Code changes from version 2.10.6 to 2.10.7

CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
 
 
 
 
 
 
 
 
 
1
  ##### [Version 2.10.6](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.5...v2.10.6) (2021-05-31)
2
 
3
  - [Fix] Replace Elementor deprecated functions
1
+ ##### [Version 2.10.7](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.6...v2.10.7) (2021-08-02)
2
+
3
+ [Fix] Widgets with repeater fields are generating errors
4
+ [Fix] Gutenberg Blocks compatibility with WP 5.8
5
+ [Fix] Fix Elementor deprecated functions
6
+ - Retire the Uptime Monitor module.
7
+ - Announce the retirement of the Gutenberg Blocks module and remove it if the module is not used.
8
+ - Retire the Analytics module if the user is not using it.
9
+
10
  ##### [Version 2.10.6](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.5...v2.10.6) (2021-05-31)
11
 
12
  - [Fix] Replace Elementor deprecated functions
core/app/abstract/class-orbit-fox-module-abstract.php CHANGED
@@ -305,6 +305,51 @@ abstract class Orbit_Fox_Module_Abstract {
305
  return $this->model->get_is_module_active( $this->slug, $this->active_default );
306
  }
307
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
308
  /**
309
  * Method to update an option key value pair.
310
  *
@@ -736,4 +781,39 @@ abstract class Orbit_Fox_Module_Abstract {
736
 
737
  return $luck;
738
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
739
  }
305
  return $this->model->get_is_module_active( $this->slug, $this->active_default );
306
  }
307
 
308
+ /**
309
+ * Function that retrieves the status of the module directly from the database.
310
+ * When calling this method, the model does not need to be initialized as we need for the get_is_active method.
311
+ *
312
+ * @return bool
313
+ */
314
+ protected function is_module_active() {
315
+ $data = get_option( 'obfx_data' );
316
+ if ( ! is_array( $data ) ) {
317
+ return false;
318
+ }
319
+ if ( ! array_key_exists( 'module_status', $data ) ) {
320
+ return false;
321
+ }
322
+ if ( ! array_key_exists( $this->slug, $data['module_status'] ) ) {
323
+ return false;
324
+ }
325
+ return isset( $data['module_status'][ $this->slug ]['active'] ) ? $data['module_status'][ $this->slug ]['active'] : $this->active_default;
326
+ }
327
+
328
+ /**
329
+ * Get module setting.
330
+ *
331
+ * @param string $parameter Setting to retrieve.
332
+ *
333
+ * @return false | mixed
334
+ */
335
+ protected function get_module_setting( $parameter ) {
336
+ $data = get_option( 'obfx_data' );
337
+ if ( ! is_array( $data ) ) {
338
+ return false;
339
+ }
340
+ if ( ! array_key_exists( 'module_settings', $data ) ) {
341
+ return false;
342
+ }
343
+ if ( ! array_key_exists( $this->slug, $data['module_settings'] ) ) {
344
+ return false;
345
+ }
346
+ if ( ! array_key_exists( $parameter, $data['module_settings'][ $this->slug ] ) ) {
347
+ return false;
348
+ }
349
+
350
+ return $data['module_settings'][ $this->slug ][ $parameter ];
351
+ }
352
+
353
  /**
354
  * Method to update an option key value pair.
355
  *
781
 
782
  return $luck;
783
  }
784
+
785
+ /**
786
+ * Check if it's a new user for orbit fox.
787
+ *
788
+ * @param string $option_name Parameter to be able to check for new users in different period of time.
789
+ *
790
+ * @return bool
791
+ */
792
+ protected function check_new_user( $option_name = 'obfx_new_user' ) {
793
+ $is_new_user = get_option( $option_name );
794
+ if ( $is_new_user === 'yes' ) {
795
+ return true;
796
+ }
797
+
798
+ $check_time_option = $option_name === 'obfx_new_user' ? 'module_check_time' : $option_name . '_check_time';
799
+ $install_time = get_option( 'themeisle_companion_install' );
800
+ $current_time = get_option( $check_time_option );
801
+
802
+ if ( empty( $current_time ) ) {
803
+ $current_time = time();
804
+ update_option( $check_time_option, $current_time );
805
+ }
806
+ if ( empty( $install_time ) || empty( $current_time ) ) {
807
+ update_option( $option_name, 'no' );
808
+ return false;
809
+ }
810
+
811
+ if ( ( $current_time - $install_time ) <= 60 ) {
812
+ update_option( $option_name, 'yes' );
813
+ return true;
814
+ }
815
+
816
+ update_option( $option_name, 'no' );
817
+ return false;
818
+ }
819
  }
core/app/class-orbit-fox-admin.php CHANGED
@@ -107,9 +107,9 @@ class Orbit_Fox_Admin {
107
  }
108
  if ( in_array( $screen->id, array( 'toplevel_page_obfx_companion' ), true ) ) {
109
  wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . '../assets/js/orbit-fox-admin.js', array( 'jquery' ), $this->version, false );
110
-
111
  wp_register_script( 'obfx-plugin-install', plugin_dir_url( __FILE__ ) . '../assets/js/plugin-install.js', array( 'jquery' ), $this->version, true );
112
-
113
  wp_localize_script(
114
  'obfx-plugin-install',
115
  'obfxPluginInstall',
@@ -118,11 +118,11 @@ class Orbit_Fox_Admin {
118
  'installing' => esc_html__( 'Installing ... ', 'themeisle-companion' ),
119
  )
120
  );
121
-
122
  wp_enqueue_script( 'plugin-install' );
123
  wp_enqueue_script( 'updates' );
124
  wp_enqueue_script( 'obfx-plugin-install' );
125
-
126
  }
127
  do_action( 'obfx_admin_enqueue_scripts' );
128
  }
@@ -149,6 +149,54 @@ class Orbit_Fox_Admin {
149
  add_submenu_page( 'obfx_companion', __( 'Orbit Fox General Options', 'themeisle-companion' ), __( 'General Settings', 'themeisle-companion' ), 'manage_options', 'obfx_companion' );
150
  }
151
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
152
  /**
153
  * Add the initial dashboard notice to guide the user to the OrbitFox admin page.
154
  *
@@ -272,13 +320,15 @@ class Orbit_Fox_Admin {
272
  'wpforms-lite',
273
  'translatepress-multilingual',
274
  'autoptimize',
 
275
  'wordpress-seo',
 
276
  ];
277
  shuffle( $plugins );
278
  echo sprintf( '<div class="obfx-recommended-title-wrapper"><span class="obfx-recommended-title"><span class="dashicons dashicons-megaphone"></span> &nbsp; %s</span><div class="clearfix"></div></div>', 'Orbit Fox recommends' );
279
-
280
  $install_instance = new Orbit_Fox_Plugin_Install();
281
-
282
  foreach ( $plugins as $plugin ) {
283
  $current_plugin = $install_instance->call_plugin_api( $plugin );
284
  if ( ! isset( $current_plugin->name ) ) {
@@ -288,7 +338,7 @@ class Orbit_Fox_Admin {
288
  $name = $current_plugin->name;
289
  $desc = $current_plugin->short_description;
290
  $button = $install_instance->get_button_html( $plugin );
291
-
292
  echo '<div class="tile obfx-recommended ">';
293
  echo '<div class="tile-icon">';
294
  echo '<div class="obfx-icon-recommended">';
@@ -311,7 +361,7 @@ class Orbit_Fox_Admin {
311
 
312
  }
313
 
314
-
315
 
316
  /**
317
  * This method is called via AJAX and processes the
107
  }
108
  if ( in_array( $screen->id, array( 'toplevel_page_obfx_companion' ), true ) ) {
109
  wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . '../assets/js/orbit-fox-admin.js', array( 'jquery' ), $this->version, false );
110
+
111
  wp_register_script( 'obfx-plugin-install', plugin_dir_url( __FILE__ ) . '../assets/js/plugin-install.js', array( 'jquery' ), $this->version, true );
112
+
113
  wp_localize_script(
114
  'obfx-plugin-install',
115
  'obfxPluginInstall',
118
  'installing' => esc_html__( 'Installing ... ', 'themeisle-companion' ),
119
  )
120
  );
121
+
122
  wp_enqueue_script( 'plugin-install' );
123
  wp_enqueue_script( 'updates' );
124
  wp_enqueue_script( 'obfx-plugin-install' );
125
+
126
  }
127
  do_action( 'obfx_admin_enqueue_scripts' );
128
  }
149
  add_submenu_page( 'obfx_companion', __( 'Orbit Fox General Options', 'themeisle-companion' ), __( 'General Settings', 'themeisle-companion' ), 'manage_options', 'obfx_companion' );
150
  }
151
 
152
+ /**
153
+ * Show the uptime monitor notice.
154
+ */
155
+ public function uptime_removed_notice() {
156
+
157
+ if ( ! current_user_can( 'manage_options' ) ) {
158
+ return;
159
+ }
160
+
161
+ $screen = get_current_screen();
162
+ if ( empty( $screen ) ) {
163
+ return;
164
+ }
165
+
166
+ if ( ! in_array( $screen->id, array( 'toplevel_page_obfx_companion' ), true ) ) {
167
+ return;
168
+ }
169
+
170
+ global $current_user;
171
+ $user_id = $current_user->ID;
172
+
173
+ if ( get_user_meta( $user_id, 'obfx_dismiss_uptime_notice' ) ) {
174
+ return;
175
+ }
176
+
177
+
178
+ $external_link_data = '<span class="dashicons dashicons-external" style="text-decoration: none;"></span><span class="screen-reader-text">' . esc_html__( 'opens in a new tab', 'themeisle-companion' ) . '</span>';
179
+
180
+ echo '<div class="notice notice-info" style="position:relative;">';
181
+ echo '<p>';
182
+
183
+
184
+ echo sprintf(
185
+ /*
186
+ * translators: %1$s first alternative url, %2$s second alternative url, %3$s third alternative url.
187
+ */
188
+ esc_attr__( 'We have retired the free uptime monitoring module in OrbitFox since we haven\'t been able to dedicate more time to its development and direction. Instead, we recommend using services like %1$s, %2$s, or %3$s, which provide more options/integrations and faster checks.', 'themeisle-companion' ),
189
+ '<a target="_blank" rel="external noreferrer noopener" href="https://uptimerobot.com/">uptimerobot.com' . wp_kses_post( $external_link_data ) . '</a>',
190
+ '<a target="_blank" rel="external noreferrer noopener" href="https://cronitor.io/">cronitor.io' . wp_kses_post( $external_link_data ) . '</a>',
191
+ '<a target="_blank" rel="external noreferrer noopener" href="https://updown.io/">updown.io' . wp_kses_post( $external_link_data ) . '</a>'
192
+ );
193
+
194
+ echo '</p>';
195
+ echo '</div>';
196
+
197
+ add_user_meta( $user_id, 'obfx_dismiss_uptime_notice', 'true', true );
198
+ }
199
+
200
  /**
201
  * Add the initial dashboard notice to guide the user to the OrbitFox admin page.
202
  *
320
  'wpforms-lite',
321
  'translatepress-multilingual',
322
  'autoptimize',
323
+ 'wp-cloudflare-page-cache',
324
  'wordpress-seo',
325
+ 'otter-blocks',
326
  ];
327
  shuffle( $plugins );
328
  echo sprintf( '<div class="obfx-recommended-title-wrapper"><span class="obfx-recommended-title"><span class="dashicons dashicons-megaphone"></span> &nbsp; %s</span><div class="clearfix"></div></div>', 'Orbit Fox recommends' );
329
+
330
  $install_instance = new Orbit_Fox_Plugin_Install();
331
+
332
  foreach ( $plugins as $plugin ) {
333
  $current_plugin = $install_instance->call_plugin_api( $plugin );
334
  if ( ! isset( $current_plugin->name ) ) {
338
  $name = $current_plugin->name;
339
  $desc = $current_plugin->short_description;
340
  $button = $install_instance->get_button_html( $plugin );
341
+
342
  echo '<div class="tile obfx-recommended ">';
343
  echo '<div class="tile-icon">';
344
  echo '<div class="obfx-icon-recommended">';
361
 
362
  }
363
 
364
+
365
 
366
  /**
367
  * This method is called via AJAX and processes the
core/app/class-orbit-fox-global-settings.php CHANGED
@@ -63,7 +63,6 @@ class Orbit_Fox_Global_Settings {
63
  array(
64
  'social-sharing',
65
  'gutenberg-blocks',
66
- 'uptime-monitor',
67
  'google-analytics',
68
  'companion-legacy',
69
  'elementor-widgets',
63
  array(
64
  'social-sharing',
65
  'gutenberg-blocks',
 
66
  'google-analytics',
67
  'companion-legacy',
68
  'elementor-widgets',
core/app/class-orbit-fox-plugin-install.php CHANGED
@@ -7,7 +7,7 @@
7
  * Class Orbit_Fox_Plugin_Install
8
  */
9
  class Orbit_Fox_Plugin_Install {
10
-
11
  /**
12
  * Get info from wordpress.org api.
13
  *
@@ -17,9 +17,9 @@ class Orbit_Fox_Plugin_Install {
17
  */
18
  public function call_plugin_api( $slug ) {
19
  include_once ABSPATH . 'wp-admin/includes/plugin-install.php';
20
-
21
  $call_api = get_transient( 'ti_plugin_info_' . $slug );
22
-
23
  if ( false === $call_api ) {
24
  $call_api = plugins_api(
25
  'plugin_information',
@@ -47,10 +47,10 @@ class Orbit_Fox_Plugin_Install {
47
  );
48
  set_transient( 'ti_plugin_info_' . $slug, $call_api, 1 * DAY_IN_SECONDS );
49
  }
50
-
51
  return $call_api;
52
  }
53
-
54
  /**
55
  * Get plugin icon.
56
  *
@@ -68,10 +68,10 @@ class Orbit_Fox_Plugin_Install {
68
  } else {
69
  $plugin_icon_url = $arr['default'];
70
  }
71
-
72
  return $plugin_icon_url;
73
  }
74
-
75
  /**
76
  * Check plugin state.
77
  *
@@ -80,17 +80,17 @@ class Orbit_Fox_Plugin_Install {
80
  * @return bool
81
  */
82
  public function check_plugin_state( $slug ) {
83
-
84
  $plugin_link_suffix = self::get_plugin_path( $slug );
85
-
86
  if ( file_exists( ABSPATH . 'wp-content/plugins/' . $plugin_link_suffix ) ) {
87
  return is_plugin_active( $plugin_link_suffix ) ? 'deactivate' : 'activate';
88
  }
89
-
90
  return 'install';
91
  }
92
-
93
-
94
  /**
95
  * Get plugin path based on plugin slug.
96
  *
@@ -99,24 +99,23 @@ class Orbit_Fox_Plugin_Install {
99
  * @return string
100
  */
101
  public static function get_plugin_path( $slug ) {
102
-
103
  switch ( $slug ) {
104
  case 'wpforms-lite':
105
  return $slug . '/wpforms.php';
106
- break;
107
  case 'translatepress-multilingual':
108
  return $slug . '/index.php';
109
- break;
110
  case 'feedzy-rss-feeds':
111
  return $slug . '/feedzy-rss-feed.php';
112
- break;
113
  case 'wordpress-seo':
114
  return $slug . '/wp-seo.php';
 
 
115
  default:
116
  return $slug . '/' . $slug . '.php';
117
  }
118
  }
119
-
120
  /**
121
  * Generate action button html.
122
  *
@@ -135,17 +134,17 @@ class Orbit_Fox_Plugin_Install {
135
  if ( empty( $slug ) ) {
136
  return '';
137
  }
138
-
139
  $additional = '';
140
-
141
  if ( $state === 'deactivate' ) {
142
  $additional = ' action_button active';
143
  }
144
-
145
  $button .= '<div class=" plugin-card-' . esc_attr( $slug ) . esc_attr( $additional ) . '" style="padding: 8px 0 5px;">';
146
-
147
  $plugin_link_suffix = self::get_plugin_path( $slug );
148
-
149
  $nonce = add_query_arg(
150
  array(
151
  'action' => 'activate',
@@ -160,11 +159,11 @@ class Orbit_Fox_Plugin_Install {
160
  case 'install':
161
  $button .= '<a data-redirect="' . esc_url( $redirect ) . '" data-slug="' . esc_attr( $slug ) . '" class="install-now obfx-install-plugin button button-primary" href="' . esc_url( $nonce ) . '" data-name="' . esc_attr( $slug ) . '" aria-label="Install ' . esc_attr( $slug ) . '"><span class="dashicons dashicons-download"></span>' . __( 'Install and activate', 'themeisle-companion' ) . '</a>';
162
  break;
163
-
164
  case 'activate':
165
  $button .= '<a data-redirect="' . esc_url( $redirect ) . '" data-slug="' . esc_attr( $slug ) . '" class="activate-now button button-primary" href="' . esc_url( $nonce ) . '" aria-label="Activate ' . esc_attr( $slug ) . '">' . esc_html__( 'Activate', 'themeisle-companion' ) . '</a>';
166
  break;
167
-
168
  case 'deactivate':
169
  $nonce = add_query_arg(
170
  array(
@@ -176,15 +175,15 @@ class Orbit_Fox_Plugin_Install {
176
  ),
177
  esc_url( network_admin_url( 'plugins.php' ) )
178
  );
179
-
180
  $button .= '<a data-redirect="' . esc_url( $redirect ) . '" data-slug="' . esc_attr( $slug ) . '" class="deactivate-now button button-primary" href="' . esc_url( $nonce ) . '" data-name="' . esc_attr( $slug ) . '" aria-label="Deactivate ' . esc_attr( $slug ) . '">' . esc_html__( 'Deactivate', 'themeisle-companion' ) . '</a>';
181
  break;
182
-
183
  default:
184
  break;
185
  }// End switch().
186
  $button .= '</div>';
187
-
188
  return $button;
189
  }
190
  }
7
  * Class Orbit_Fox_Plugin_Install
8
  */
9
  class Orbit_Fox_Plugin_Install {
10
+
11
  /**
12
  * Get info from wordpress.org api.
13
  *
17
  */
18
  public function call_plugin_api( $slug ) {
19
  include_once ABSPATH . 'wp-admin/includes/plugin-install.php';
20
+
21
  $call_api = get_transient( 'ti_plugin_info_' . $slug );
22
+
23
  if ( false === $call_api ) {
24
  $call_api = plugins_api(
25
  'plugin_information',
47
  );
48
  set_transient( 'ti_plugin_info_' . $slug, $call_api, 1 * DAY_IN_SECONDS );
49
  }
50
+
51
  return $call_api;
52
  }
53
+
54
  /**
55
  * Get plugin icon.
56
  *
68
  } else {
69
  $plugin_icon_url = $arr['default'];
70
  }
71
+
72
  return $plugin_icon_url;
73
  }
74
+
75
  /**
76
  * Check plugin state.
77
  *
80
  * @return bool
81
  */
82
  public function check_plugin_state( $slug ) {
83
+
84
  $plugin_link_suffix = self::get_plugin_path( $slug );
85
+
86
  if ( file_exists( ABSPATH . 'wp-content/plugins/' . $plugin_link_suffix ) ) {
87
  return is_plugin_active( $plugin_link_suffix ) ? 'deactivate' : 'activate';
88
  }
89
+
90
  return 'install';
91
  }
92
+
93
+
94
  /**
95
  * Get plugin path based on plugin slug.
96
  *
99
  * @return string
100
  */
101
  public static function get_plugin_path( $slug ) {
102
+
103
  switch ( $slug ) {
104
  case 'wpforms-lite':
105
  return $slug . '/wpforms.php';
 
106
  case 'translatepress-multilingual':
107
  return $slug . '/index.php';
 
108
  case 'feedzy-rss-feeds':
109
  return $slug . '/feedzy-rss-feed.php';
 
110
  case 'wordpress-seo':
111
  return $slug . '/wp-seo.php';
112
+ case 'wp-cloudflare-page-cache':
113
+ return $slug . '/wp-cloudflare-super-page-cache.php';
114
  default:
115
  return $slug . '/' . $slug . '.php';
116
  }
117
  }
118
+
119
  /**
120
  * Generate action button html.
121
  *
134
  if ( empty( $slug ) ) {
135
  return '';
136
  }
137
+
138
  $additional = '';
139
+
140
  if ( $state === 'deactivate' ) {
141
  $additional = ' action_button active';
142
  }
143
+
144
  $button .= '<div class=" plugin-card-' . esc_attr( $slug ) . esc_attr( $additional ) . '" style="padding: 8px 0 5px;">';
145
+
146
  $plugin_link_suffix = self::get_plugin_path( $slug );
147
+
148
  $nonce = add_query_arg(
149
  array(
150
  'action' => 'activate',
159
  case 'install':
160
  $button .= '<a data-redirect="' . esc_url( $redirect ) . '" data-slug="' . esc_attr( $slug ) . '" class="install-now obfx-install-plugin button button-primary" href="' . esc_url( $nonce ) . '" data-name="' . esc_attr( $slug ) . '" aria-label="Install ' . esc_attr( $slug ) . '"><span class="dashicons dashicons-download"></span>' . __( 'Install and activate', 'themeisle-companion' ) . '</a>';
161
  break;
162
+
163
  case 'activate':
164
  $button .= '<a data-redirect="' . esc_url( $redirect ) . '" data-slug="' . esc_attr( $slug ) . '" class="activate-now button button-primary" href="' . esc_url( $nonce ) . '" aria-label="Activate ' . esc_attr( $slug ) . '">' . esc_html__( 'Activate', 'themeisle-companion' ) . '</a>';
165
  break;
166
+
167
  case 'deactivate':
168
  $nonce = add_query_arg(
169
  array(
175
  ),
176
  esc_url( network_admin_url( 'plugins.php' ) )
177
  );
178
+
179
  $button .= '<a data-redirect="' . esc_url( $redirect ) . '" data-slug="' . esc_attr( $slug ) . '" class="deactivate-now button button-primary" href="' . esc_url( $nonce ) . '" data-name="' . esc_attr( $slug ) . '" aria-label="Deactivate ' . esc_attr( $slug ) . '">' . esc_html__( 'Deactivate', 'themeisle-companion' ) . '</a>';
180
  break;
181
+
182
  default:
183
  break;
184
  }// End switch().
185
  $button .= '</div>';
186
+
187
  return $button;
188
  }
189
  }
core/assets/css/orbit-fox-admin.css CHANGED
@@ -3109,6 +3109,10 @@ html {
3109
  font-size: 14px;
3110
  }
3111
 
 
 
 
 
3112
  .obfx-wrapper .tile.tile-centered {
3113
  -webkit-align-items: center;
3114
  align-items: center;
3109
  font-size: 14px;
3110
  }
3111
 
3112
+ .obfx-wrapper .tile .notice {
3113
+ display: inline-block;
3114
+ }
3115
+
3116
  .obfx-wrapper .tile.tile-centered {
3117
  -webkit-align-items: center;
3118
  align-items: center;
core/includes/class-orbit-fox.php CHANGED
@@ -69,7 +69,7 @@ class Orbit_Fox {
69
 
70
  $this->plugin_name = 'orbit-fox';
71
 
72
- $this->version = '2.10.6';
73
 
74
  $this->load_dependencies();
75
  $this->set_locale();
@@ -181,6 +181,7 @@ class Orbit_Fox {
181
  $this->loader->add_action( 'admin_init', $plugin_admin, 'visit_dashboard_notice_dismiss' );
182
  $this->loader->add_action( 'admin_menu', $plugin_admin, 'menu_pages' );
183
  $this->loader->add_action( 'admin_notices', $plugin_admin, 'visit_dashboard_notice' );
 
184
  $this->loader->add_action( 'obfx_recommended_plugins', $plugin_admin, 'load_recommended_plugins' );
185
  $this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'enqueue_styles' );
186
  $this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'enqueue_scripts' );
69
 
70
  $this->plugin_name = 'orbit-fox';
71
 
72
+ $this->version = '2.10.7';
73
 
74
  $this->load_dependencies();
75
  $this->set_locale();
181
  $this->loader->add_action( 'admin_init', $plugin_admin, 'visit_dashboard_notice_dismiss' );
182
  $this->loader->add_action( 'admin_menu', $plugin_admin, 'menu_pages' );
183
  $this->loader->add_action( 'admin_notices', $plugin_admin, 'visit_dashboard_notice' );
184
+ $this->loader->add_action( 'admin_notices', $plugin_admin, 'uptime_removed_notice' );
185
  $this->loader->add_action( 'obfx_recommended_plugins', $plugin_admin, 'load_recommended_plugins' );
186
  $this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'enqueue_styles' );
187
  $this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'enqueue_scripts' );
languages/themeisle-companion.pot CHANGED
@@ -2,10 +2,10 @@
2
  # This file is distributed under the GPL-2.0+.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Orbit Fox Companion 2.10.6\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://github.com/Codeinwp/themeisle-companion/issues\n"
8
- "POT-Creation-Date: 2021-05-31 15:18:07+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -51,7 +51,7 @@ msgstr ""
51
  msgid "5"
52
  msgstr ""
53
 
54
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:182
55
  msgid "50"
56
  msgstr ""
57
 
@@ -76,74 +76,88 @@ msgstr ""
76
  msgid "General Settings"
77
  msgstr ""
78
 
79
- #: core/app/class-orbit-fox-admin.php:171
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80
  #. translators: Go to url.
81
  msgid ""
82
  "You have activated Orbit Fox plugin! Go to the %s to get started with the "
83
  "extra features."
84
  msgstr ""
85
 
86
- #: core/app/class-orbit-fox-admin.php:171
87
  msgid "Dashboard Page"
88
  msgstr ""
89
 
90
- #: core/app/class-orbit-fox-admin.php:223
91
- #: core/app/class-orbit-fox-admin.php:329
92
  msgid "Could not process the request!"
93
  msgstr ""
94
 
95
- #: core/app/class-orbit-fox-admin.php:248
96
  msgid "No module found! No data was updated."
97
  msgstr ""
98
 
99
- #: core/app/class-orbit-fox-admin.php:254
100
  msgid "Something went wrong, data might not be saved!"
101
  msgstr ""
102
 
103
- #: core/app/class-orbit-fox-admin.php:258
104
  msgid "Options updated, successfully!"
105
  msgstr ""
106
 
107
- #: core/app/class-orbit-fox-admin.php:354
108
  msgid "No module found!"
109
  msgstr ""
110
 
111
- #: core/app/class-orbit-fox-admin.php:358
112
  msgid "Something went wrong, can not change module status!"
113
  msgstr ""
114
 
115
- #: core/app/class-orbit-fox-admin.php:363
116
  msgid "Module status changed!"
117
  msgstr ""
118
 
119
- #: core/app/class-orbit-fox-admin.php:481
120
  msgid "No modules found."
121
  msgstr ""
122
 
123
- #: core/app/class-orbit-fox-admin.php:482
124
  msgid "Please contact support for more help."
125
  msgstr ""
126
 
127
- #: core/app/class-orbit-fox-admin.php:489
128
  msgid "No active modules."
129
  msgstr ""
130
 
131
- #: core/app/class-orbit-fox-admin.php:490
132
  msgid "Activate a module using the toggles above."
133
  msgstr ""
134
 
135
- #: core/app/class-orbit-fox-plugin-install.php:161
136
  #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:457
137
  msgid "Install and activate"
138
  msgstr ""
139
 
140
- #: core/app/class-orbit-fox-plugin-install.php:165
141
  #: core/app/views/partials/module-tile-tpl.php:67
142
  #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:468
143
  msgid "Activate"
144
  msgstr ""
145
 
146
- #: core/app/class-orbit-fox-plugin-install.php:180
147
  msgid "Deactivate"
148
  msgstr ""
149
 
@@ -213,8 +227,8 @@ msgstr ""
213
 
214
  #: obfx_modules/beaver-widgets/inc/common-functions.php:26
215
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:836
216
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:834
217
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:505
218
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/beaver/beaver_widget_base.php:361
219
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:779
220
  msgid "Padding"
@@ -223,7 +237,7 @@ msgstr ""
223
  #: obfx_modules/beaver-widgets/inc/common-functions.php:30
224
  #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:218
225
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:384
226
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:217
227
  msgid "Top"
228
  msgstr ""
229
 
@@ -265,9 +279,9 @@ msgstr ""
265
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:650
266
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:686
267
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:732
268
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:292
269
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:213
270
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:323
271
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/contact_admin.php:147
272
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:361
273
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:836
@@ -296,9 +310,9 @@ msgstr ""
296
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:658
297
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:694
298
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:740
299
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:300
300
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:221
301
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:331
302
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/contact_admin.php:155
303
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:369
304
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:844
@@ -308,7 +322,7 @@ msgid "Right"
308
  msgstr ""
309
 
310
  #: obfx_modules/beaver-widgets/inc/common-functions.php:64
311
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:813
312
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/beaver/beaver_widget_base.php:288
313
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/beaver/beaver_widget_base.php:333
314
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/beaver/beaver_widget_base.php:375
@@ -351,8 +365,8 @@ msgstr ""
351
 
352
  #: obfx_modules/beaver-widgets/inc/common-functions.php:100
353
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1251
354
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:878
355
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:540
356
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:400
357
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:630
358
  msgid "Normal"
@@ -476,9 +490,9 @@ msgstr ""
476
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:278
477
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:415
478
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:953
479
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:111
480
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:112
481
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:345
 
482
  msgid "Title"
483
  msgstr ""
484
 
@@ -544,7 +558,7 @@ msgstr ""
544
 
545
  #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:234
546
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:233
547
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:433
548
  msgid "Grid"
549
  msgstr ""
550
 
@@ -665,8 +679,8 @@ msgstr ""
665
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:654
666
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:690
667
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:736
668
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:296
669
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:327
670
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/contact_admin.php:151
671
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:365
672
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:840
@@ -743,8 +757,8 @@ msgstr ""
743
  #: obfx_modules/beaver-widgets/modules/pricing-table/obfx-pricing-table.php:103
744
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:75
745
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:98
746
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:130
747
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:158
748
  msgid "p"
749
  msgstr ""
750
 
@@ -876,7 +890,7 @@ msgstr ""
876
  #: obfx_modules/beaver-widgets/modules/services/services.php:48
877
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:550
878
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1089
879
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:309
880
  msgid "Content"
881
  msgstr ""
882
 
@@ -894,8 +908,8 @@ msgstr ""
894
  #: obfx_modules/beaver-widgets/modules/pricing-table/obfx-pricing-table.php:97
895
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:69
896
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:92
897
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:124
898
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:152
899
  msgid "h1"
900
  msgstr ""
901
 
@@ -903,8 +917,8 @@ msgstr ""
903
  #: obfx_modules/beaver-widgets/modules/pricing-table/obfx-pricing-table.php:98
904
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:70
905
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:93
906
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:125
907
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:153
908
  msgid "h2"
909
  msgstr ""
910
 
@@ -912,8 +926,8 @@ msgstr ""
912
  #: obfx_modules/beaver-widgets/modules/pricing-table/obfx-pricing-table.php:99
913
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:71
914
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:94
915
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:126
916
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:154
917
  msgid "h3"
918
  msgstr ""
919
 
@@ -921,8 +935,8 @@ msgstr ""
921
  #: obfx_modules/beaver-widgets/modules/pricing-table/obfx-pricing-table.php:100
922
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:72
923
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:95
924
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:127
925
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:155
926
  msgid "h4"
927
  msgstr ""
928
 
@@ -930,8 +944,8 @@ msgstr ""
930
  #: obfx_modules/beaver-widgets/modules/pricing-table/obfx-pricing-table.php:101
931
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:73
932
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:96
933
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:128
934
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:156
935
  msgid "h5"
936
  msgstr ""
937
 
@@ -939,8 +953,8 @@ msgstr ""
939
  #: obfx_modules/beaver-widgets/modules/pricing-table/obfx-pricing-table.php:102
940
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:74
941
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:97
942
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:129
943
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:157
944
  msgid "h6"
945
  msgstr ""
946
 
@@ -948,8 +962,8 @@ msgstr ""
948
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:80
949
  #: obfx_modules/companion-legacy/inc/shop-isle/customizer.php:179
950
  #: obfx_modules/companion-legacy/inc/shop-isle/customizer.php:315
951
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:139
952
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:140
 
953
  msgid "Subtitle"
954
  msgstr ""
955
 
@@ -965,8 +979,8 @@ msgstr ""
965
 
966
  #: obfx_modules/beaver-widgets/modules/pricing-table/obfx-pricing-table.php:109
967
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:104
968
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:172
969
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:488
970
  msgid "Price Tag"
971
  msgstr ""
972
 
@@ -974,18 +988,18 @@ msgstr ""
974
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:108
975
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:592
976
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1146
977
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:180
978
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:181
979
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:552
 
980
  #: vendor/codeinwp/gutenberg-blocks/inc/render/class-review-block.php:74
981
  msgid "Price"
982
  msgstr ""
983
 
984
  #: obfx_modules/beaver-widgets/modules/pricing-table/obfx-pricing-table.php:122
985
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:117
986
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:191
987
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:192
988
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:518
 
989
  msgid "Currency"
990
  msgstr ""
991
 
@@ -996,29 +1010,29 @@ msgstr ""
996
 
997
  #: obfx_modules/beaver-widgets/modules/pricing-table/obfx-pricing-table.php:134
998
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:129
999
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:204
1000
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:364
1001
  msgid "Before"
1002
  msgstr ""
1003
 
1004
  #: obfx_modules/beaver-widgets/modules/pricing-table/obfx-pricing-table.php:135
1005
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:130
1006
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:205
1007
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:365
1008
  msgid "After"
1009
  msgstr ""
1010
 
1011
  #: obfx_modules/beaver-widgets/modules/pricing-table/obfx-pricing-table.php:140
1012
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:135
1013
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:214
1014
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:586
1015
  msgid "Period"
1016
  msgstr ""
1017
 
1018
  #: obfx_modules/beaver-widgets/modules/pricing-table/obfx-pricing-table.php:141
1019
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:136
1020
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:215
1021
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:216
 
1022
  msgid "/month"
1023
  msgstr ""
1024
 
@@ -1032,11 +1046,11 @@ msgstr ""
1032
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:150
1033
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:562
1034
  #: obfx_modules/companion-legacy/inc/hestia/inc/features/feature-features-section.php:115
1035
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:242
1036
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:246
1037
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:250
1038
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:268
1039
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:161
1040
  msgid "Feature"
1041
  msgstr ""
1042
 
@@ -1047,8 +1061,8 @@ msgstr ""
1047
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:605
1048
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:633
1049
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1221
1050
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:325
1051
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:795
1052
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:620
1053
  msgid "Button"
1054
  msgstr ""
@@ -1117,7 +1131,7 @@ msgstr ""
1117
 
1118
  #: obfx_modules/beaver-widgets/modules/pricing-table/obfx-pricing-table.php:266
1119
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:261
1120
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:137
1121
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/beaver/beaver_widget_base.php:516
1122
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:103
1123
  msgid "Type"
@@ -1133,8 +1147,8 @@ msgstr ""
1133
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1035
1134
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1112
1135
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1175
1136
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:371
1137
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:401
1138
  msgid "Color"
1139
  msgstr ""
1140
 
@@ -1239,8 +1253,8 @@ msgstr ""
1239
  #: obfx_modules/companion-legacy/inc/hestia/inc/features/feature-ribbon-section.php:102
1240
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-focus.php:195
1241
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-testimonial.php:220
1242
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:265
1243
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:333
1244
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/beaver/beaver_widget_base.php:51
1245
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/beaver/beaver_widget_base.php:415
1246
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/beaver/beaver_widget_base.php:450
@@ -1285,19 +1299,19 @@ msgstr ""
1285
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:580
1286
  #: obfx_modules/beaver-widgets/modules/services/obfx-services.php:244
1287
  #: obfx_modules/beaver-widgets/modules/services/services.php:239
1288
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:273
1289
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:352
1290
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:141
1291
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:166
1292
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/newsletter_admin.php:130
1293
  msgid "Icon"
1294
  msgstr ""
1295
 
1296
  #: obfx_modules/beaver-widgets/modules/services/obfx-services.php:36
1297
  #: obfx_modules/beaver-widgets/modules/services/services.php:31
1298
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:42
1299
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:91
1300
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:98
1301
  #: vendor/codeinwp/gutenberg-blocks/inc/server/class-template-library-server.php:171
1302
  #: vendor/codeinwp/gutenberg-blocks/inc/server/class-template-library-server.php:180
1303
  #: vendor/codeinwp/gutenberg-blocks/inc/server/class-template-library-server.php:189
@@ -1337,7 +1351,7 @@ msgstr ""
1337
 
1338
  #: obfx_modules/beaver-widgets/modules/services/obfx-services.php:119
1339
  #: obfx_modules/beaver-widgets/modules/services/services.php:114
1340
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:287
1341
  msgid "Size"
1342
  msgstr ""
1343
 
@@ -1355,8 +1369,8 @@ msgstr ""
1355
  #: obfx_modules/beaver-widgets/modules/services/services.php:183
1356
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:682
1357
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:728
1358
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:288
1359
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:317
1360
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/beaver/beaver_widget_base.php:617
1361
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/contact_admin.php:141
1362
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:830
@@ -1367,7 +1381,7 @@ msgstr ""
1367
 
1368
  #: obfx_modules/beaver-widgets/modules/services/obfx-services.php:254
1369
  #: obfx_modules/beaver-widgets/modules/services/services.php:249
1370
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:197
1371
  msgid "Link to"
1372
  msgstr ""
1373
 
@@ -1437,9 +1451,9 @@ msgstr ""
1437
 
1438
  #: obfx_modules/companion-legacy/inc/hestia/inc/features/feature-features-section.php:26
1439
  #: obfx_modules/companion-legacy/inc/hestia/inc/features/feature-features-section.php:37
1440
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:230
1441
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:626
1442
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:690
1443
  msgid "Features"
1444
  msgstr ""
1445
 
@@ -1491,7 +1505,7 @@ msgstr ""
1491
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-focus.php:207
1492
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:399
1493
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:454
1494
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:343
1495
  msgid "Link"
1496
  msgstr ""
1497
 
@@ -1835,8 +1849,8 @@ msgstr ""
1835
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-testimonial.php:232
1836
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:320
1837
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:889
1838
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:145
1839
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:189
1840
  msgid "Image"
1841
  msgstr ""
1842
 
@@ -1895,8 +1909,8 @@ msgid "Name"
1895
  msgstr ""
1896
 
1897
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-team.php:311
1898
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:141
1899
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:392
1900
  msgid "Description"
1901
  msgstr ""
1902
 
@@ -2073,18 +2087,11 @@ msgstr ""
2073
  msgid "Custom"
2074
  msgstr ""
2075
 
2076
- #: obfx_modules/custom-fonts/init.php:32
2077
- #. translators: %s is New tag
2078
- msgid "Custom fonts %s"
2079
  msgstr ""
2080
 
2081
- #: obfx_modules/custom-fonts/init.php:36
2082
- #: obfx_modules/header-footer-scripts/init.php:36
2083
- #. translators: %s is New tag text
2084
- msgid "NEW"
2085
- msgstr ""
2086
-
2087
- #: obfx_modules/custom-fonts/init.php:39
2088
  msgid "Upload custom fonts and use them anywhere on your site."
2089
  msgstr ""
2090
 
@@ -2096,81 +2103,98 @@ msgstr ""
2096
  msgid "A module to integrate Google Analytics into your site easily."
2097
  msgstr ""
2098
 
2099
- #: obfx_modules/google-analytics/init.php:246
2100
  msgid "Authenticate with Google"
2101
  msgstr ""
2102
 
2103
- #: obfx_modules/google-analytics/init.php:251
2104
  msgid "Select a tracking code"
2105
  msgstr ""
2106
 
2107
- #: obfx_modules/google-analytics/init.php:272
2108
- msgid "Refresh Accounts"
2109
- msgstr ""
2110
-
2111
- #: obfx_modules/google-analytics/init.php:288
2112
  msgid "Unregister Site"
2113
  msgstr ""
2114
 
2115
- #: obfx_modules/gutenberg-blocks/init.php:24
2116
- msgid "Gutenberg Blocks <sup class=\"obfx-title-new\">NEW</sup>"
2117
  msgstr ""
2118
 
2119
- #: obfx_modules/gutenberg-blocks/init.php:28
2120
  #. translators: %1$s Start anchor tag, %2$s End anchor tag
2121
  msgid "A set of awesome Gutenberg Blocks provided by %1$sOtter's%2$s plugin!"
2122
  msgstr ""
2123
 
2124
- #: obfx_modules/gutenberg-blocks/init.php:128
 
 
 
 
 
 
 
2125
  msgid "Blocks by OrbitFox and Otter"
2126
  msgstr ""
2127
 
2128
- #: obfx_modules/header-footer-scripts/init.php:32
2129
- #. translators: %s is New tag
2130
- msgid "Header Footer Scripts %s"
2131
  msgstr ""
2132
 
2133
- #: obfx_modules/header-footer-scripts/init.php:40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2134
  msgid ""
2135
  "An easy way to add scripts, such as tracking and analytics scripts, to the "
2136
  "header and footer of your website, as well as in the body of your posts and "
2137
  "pages."
2138
  msgstr ""
2139
 
2140
- #: obfx_modules/header-footer-scripts/init.php:45
2141
- #: obfx_modules/header-footer-scripts/init.php:139
2142
  msgid "Header scripts"
2143
  msgstr ""
2144
 
2145
- #: obfx_modules/header-footer-scripts/init.php:48
2146
  #. translators: %s is head tag
2147
  msgid "Output before the closing %s tag, after sitewide header scripts."
2148
  msgstr ""
2149
 
2150
- #: obfx_modules/header-footer-scripts/init.php:54
2151
- #: obfx_modules/header-footer-scripts/init.php:169
2152
  msgid "Footer scripts"
2153
  msgstr ""
2154
 
2155
- #: obfx_modules/header-footer-scripts/init.php:57
2156
  #. translators: %s is body tag
2157
  msgid "Output before the closing %s tag, after sitewide footer scripts."
2158
  msgstr ""
2159
 
2160
- #: obfx_modules/header-footer-scripts/init.php:112
2161
  msgid "Header/Footer scripts"
2162
  msgstr ""
2163
 
2164
- #: obfx_modules/header-footer-scripts/init.php:124
2165
- #: obfx_modules/header-footer-scripts/init.php:154
2166
- #: obfx_modules/header-footer-scripts/init.php:310
2167
- #: obfx_modules/header-footer-scripts/init.php:343
2168
  #. translators: %s is placeholder value
2169
  msgid "Enter your scripts here"
2170
  msgstr ""
2171
 
2172
- #: obfx_modules/header-footer-scripts/init.php:142
2173
- #: obfx_modules/header-footer-scripts/init.php:172
2174
  #. translators: %s is head tag
2175
  #. translators: %s is body tag
2176
  msgid ""
@@ -2178,7 +2202,7 @@ msgid ""
2178
  "source."
2179
  msgstr ""
2180
 
2181
- #: obfx_modules/header-footer-scripts/init.php:189
2182
  msgid "Scripts"
2183
  msgstr ""
2184
 
@@ -2366,24 +2390,6 @@ msgstr ""
2366
  msgid "Orbit Fox Template Directory"
2367
  msgstr ""
2368
 
2369
- #: obfx_modules/uptime-monitor/init.php:31
2370
- msgid "Uptime Monitor"
2371
- msgstr ""
2372
-
2373
- #: obfx_modules/uptime-monitor/init.php:32
2374
- msgid "A module to notify when you website goes down."
2375
- msgstr ""
2376
-
2377
- #: obfx_modules/uptime-monitor/init.php:33
2378
- msgid "One more step..."
2379
- msgstr ""
2380
-
2381
- #: obfx_modules/uptime-monitor/init.php:33
2382
- msgid ""
2383
- "In order to use the uptime service, we will need your e-mail address, where "
2384
- "we will send downtime alerts."
2385
- msgstr ""
2386
-
2387
  #: vendor/codeinwp/elementor-extra-widgets/class-elementor-extra-widgets.php:57
2388
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_manager.php:45
2389
  msgid "Orbit Fox Addons"
@@ -2397,16 +2403,12 @@ msgstr ""
2397
  #: vendor/codeinwp/full-width-page-templates/builders/class-none-full-width-templates.php:91
2398
  #: vendor/codeinwp/full-width-page-templates/class-full-width-templates.php:197
2399
  #: vendor/codeinwp/full-width-page-templates/class-full-width-templates.php:209
2400
- #: vendor/codeinwp/gutenberg-blocks/inc/class-base-css.php:355
2401
- #: vendor/codeinwp/gutenberg-blocks/inc/class-base-css.php:367
2402
- #: vendor/codeinwp/gutenberg-blocks/inc/class-main.php:835
2403
- #: vendor/codeinwp/gutenberg-blocks/inc/class-main.php:847
2404
  #: vendor/codeinwp/gutenberg-blocks/inc/css/class-block-frontend.php:472
2405
  #: vendor/codeinwp/gutenberg-blocks/inc/css/class-block-frontend.php:484
2406
  #: vendor/codeinwp/gutenberg-blocks/inc/css/class-css-handler.php:346
2407
  #: vendor/codeinwp/gutenberg-blocks/inc/css/class-css-handler.php:358
2408
- #: vendor/codeinwp/gutenberg-blocks/inc/plugins/class-options-settings.php:133
2409
- #: vendor/codeinwp/gutenberg-blocks/inc/plugins/class-options-settings.php:145
2410
  #: vendor/codeinwp/gutenberg-blocks/inc/server/class-plugin-card-server.php:243
2411
  #: vendor/codeinwp/gutenberg-blocks/inc/server/class-plugin-card-server.php:255
2412
  #: vendor/codeinwp/gutenberg-blocks/inc/server/class-template-library-server.php:735
@@ -2438,7 +2440,7 @@ msgstr ""
2438
 
2439
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:244
2440
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:826
2441
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:495
2442
  msgid "Items"
2443
  msgstr ""
2444
 
@@ -2447,7 +2449,7 @@ msgid "How many items?"
2447
  msgstr ""
2448
 
2449
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:255
2450
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:236
2451
  msgid "Columns"
2452
  msgstr ""
2453
 
@@ -2531,24 +2533,24 @@ msgid "Button alignment"
2531
  msgstr ""
2532
 
2533
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:662
2534
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:304
2535
  msgid "Justified"
2536
  msgstr ""
2537
 
2538
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:773
2539
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:442
2540
  msgid "Columns margin"
2541
  msgstr ""
2542
 
2543
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:795
2544
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:464
2545
  msgid "Rows margin"
2546
  msgstr ""
2547
 
2548
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:849
2549
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:901
2550
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:822
2551
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:518
2552
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:492
2553
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:600
2554
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:684
@@ -2572,8 +2574,8 @@ msgstr ""
2572
 
2573
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1264
2574
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1331
2575
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:886
2576
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:935
2577
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/beaver/beaver_widget_base.php:160
2578
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/beaver/beaver_widget_base.php:197
2579
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:301
@@ -2588,8 +2590,8 @@ msgstr ""
2588
 
2589
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1282
2590
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1352
2591
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:901
2592
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:950
2593
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/beaver/beaver_widget_base.php:208
2594
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:427
2595
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:535
@@ -2601,8 +2603,8 @@ msgid "Background Color"
2601
  msgstr ""
2602
 
2603
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1318
2604
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:927
2605
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:566
2606
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:710
2607
  msgid "Hover"
2608
  msgstr ""
@@ -2657,193 +2659,193 @@ msgstr ""
2657
  msgid "Upgrade Here!"
2658
  msgstr ""
2659
 
2660
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:34
2661
  msgid "Pricing Table"
2662
  msgstr ""
2663
 
2664
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:103
2665
  msgid "Plan Title"
2666
  msgstr ""
2667
 
2668
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:113
2669
  msgid "Pricing Plan"
2670
  msgstr ""
2671
 
2672
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:121
2673
  msgid "Title HTML tag"
2674
  msgstr ""
2675
 
2676
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:149
2677
  msgid "Subtitle HTML Tag"
2678
  msgstr ""
2679
 
2680
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:193
2681
  msgid "$"
2682
  msgstr ""
2683
 
2684
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:201
2685
  msgid "Currency Position"
2686
  msgstr ""
2687
 
2688
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:237
2689
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:267
2690
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:160
2691
- msgid "Plan Features"
2692
  msgstr ""
2693
 
2694
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:241
2695
- msgid "First"
2696
  msgstr ""
2697
 
2698
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:245
2699
- msgid "Second"
2700
  msgstr ""
2701
 
2702
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:249
2703
- msgid "Third"
 
 
2704
  msgstr ""
2705
 
2706
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:257
2707
- msgid "Accented Text"
2708
  msgstr ""
2709
 
2710
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:258
2711
- msgid "Appears before feature text"
2712
  msgstr ""
2713
 
2714
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:260
2715
- msgid "Accent"
2716
  msgstr ""
2717
 
2718
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:334
2719
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:335
2720
  msgid "Buy Now"
2721
  msgstr ""
2722
 
2723
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:344
2724
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:199
2725
  msgid "https://example.com"
2726
  msgstr ""
2727
 
2728
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:361
2729
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:209
2730
  msgid "Icon Position"
2731
  msgstr ""
2732
 
2733
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:377
2734
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:770
2735
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/newsletter_admin.php:159
2736
  msgid "Icon Spacing"
2737
  msgstr ""
2738
 
2739
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:402
2740
  #: vendor/codeinwp/gutenberg-blocks/inc/server/class-template-library-server.php:153
2741
  msgid "Header"
2742
  msgstr ""
2743
 
2744
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:410
2745
  msgid "Header Padding"
2746
  msgstr ""
2747
 
2748
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:423
2749
  msgid "Title Color"
2750
  msgstr ""
2751
 
2752
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:448
2753
  msgid "Subtitle Color"
2754
  msgstr ""
2755
 
2756
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:473
2757
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:509
2758
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:635
2759
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:803
2760
  msgid "Section Background"
2761
  msgstr ""
2762
 
2763
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:497
2764
  msgid "Price Box Padding"
2765
  msgstr ""
2766
 
2767
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:527
2768
  msgid "Currency Color"
2769
  msgstr ""
2770
 
2771
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:561
2772
  msgid "Price Color"
2773
  msgstr ""
2774
 
2775
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:595
2776
  msgid "Period Color"
2777
  msgstr ""
2778
 
2779
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:645
2780
  msgid "Features List Padding"
2781
  msgstr ""
2782
 
2783
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:656
2784
  msgid "Accented"
2785
  msgstr ""
2786
 
2787
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:666
2788
  msgid "Accented Color"
2789
  msgstr ""
2790
 
2791
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:699
2792
  msgid "Features Color"
2793
  msgstr ""
2794
 
2795
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:724
2796
  msgid "Icons"
2797
  msgstr ""
2798
 
2799
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:733
2800
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:180
2801
  msgid "Icon Color"
2802
  msgstr ""
2803
 
2804
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:750
2805
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:847
2806
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/newsletter_admin.php:139
2807
  msgid "Icon Size"
2808
  msgstr ""
2809
 
2810
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:974
2811
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:590
2812
  msgid "Transition Duration"
2813
  msgstr ""
2814
 
2815
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:102
2816
- msgid "Award-Winning​"
2817
  msgstr ""
2818
 
2819
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:103
2820
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:113
2821
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:123
2822
- msgid "Add some text here to describe your services to the page visitors.​"
2823
  msgstr ""
2824
 
2825
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:112
2826
- msgid "Professional​"
2827
  msgstr ""
2828
 
2829
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:122
2830
- msgid "Consulting​"
 
 
2831
  msgstr ""
2832
 
2833
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:154
2834
- msgid "Title & Description"
2835
  msgstr ""
2836
 
2837
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:155
2838
- msgid "Service Title"
2839
  msgstr ""
2840
 
2841
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:259
2842
  msgid "Icon / Image"
2843
  msgstr ""
2844
 
2845
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:266
2846
- #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:354
2847
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/beaver/beaver_widget_base.php:111
2848
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:276
2849
  msgid "Spacing"
@@ -3003,12 +3005,12 @@ msgstr ""
3003
  msgid "Page Builder - Full Width"
3004
  msgstr ""
3005
 
3006
- #: vendor/codeinwp/gutenberg-blocks/inc/class-main.php:93
3007
  msgid "A set of awesome Gutenberg Blocks!"
3008
  msgstr ""
3009
 
3010
- #: vendor/codeinwp/gutenberg-blocks/inc/class-main.php:706
3011
- #: vendor/codeinwp/gutenberg-blocks/inc/class-main.php:723
3012
  msgid "Skill"
3013
  msgstr ""
3014
 
@@ -3068,11 +3070,11 @@ msgstr ""
3068
  msgid "Something went wrong"
3069
  msgstr ""
3070
 
3071
- #: vendor/codeinwp/gutenberg-blocks/inc/render/class-posts-grid-block.php:216
3072
  msgid "on"
3073
  msgstr ""
3074
 
3075
- #: vendor/codeinwp/gutenberg-blocks/inc/render/class-posts-grid-block.php:225
3076
  msgid "by"
3077
  msgstr ""
3078
 
@@ -3112,24 +3114,24 @@ msgstr ""
3112
  msgid "Buy on Amazon"
3113
  msgstr ""
3114
 
3115
- #: vendor/codeinwp/gutenberg-blocks/inc/render/class-review-block.php:103
3116
  msgid "Buy on eBay"
3117
  msgstr ""
3118
 
3119
- #: vendor/codeinwp/gutenberg-blocks/inc/render/class-review-block.php:148
3120
  #. translators: Overall rating from 0 to 10.
3121
  msgid "%s out of 10"
3122
  msgstr ""
3123
 
3124
- #: vendor/codeinwp/gutenberg-blocks/inc/render/class-review-block.php:199
3125
  msgid "Pros"
3126
  msgstr ""
3127
 
3128
- #: vendor/codeinwp/gutenberg-blocks/inc/render/class-review-block.php:212
3129
  msgid "Cons"
3130
  msgstr ""
3131
 
3132
- #: vendor/codeinwp/gutenberg-blocks/inc/render/class-review-block.php:226
3133
  msgid "Buy this product"
3134
  msgstr ""
3135
 
2
  # This file is distributed under the GPL-2.0+.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Orbit Fox Companion 2.10.7\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://github.com/Codeinwp/themeisle-companion/issues\n"
8
+ "POT-Creation-Date: 2021-08-02 13:00:35+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
51
  msgid "5"
52
  msgstr ""
53
 
54
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:183
55
  msgid "50"
56
  msgstr ""
57
 
76
  msgid "General Settings"
77
  msgstr ""
78
 
79
+ #: core/app/class-orbit-fox-admin.php:178
80
+ msgid "opens in a new tab"
81
+ msgstr ""
82
+
83
+ #: core/app/class-orbit-fox-admin.php:188
84
+ #. translators: %1$s first alternative url, %2$s second alternative url, %3$s
85
+ #. third alternative url.
86
+ msgid ""
87
+ "We have retired the free uptime monitoring module in OrbitFox since we "
88
+ "haven't been able to dedicate more time to its development and direction. "
89
+ "Instead, we recommend using services like %1$s, %2$s, or %3$s, which "
90
+ "provide more options/integrations and faster checks."
91
+ msgstr ""
92
+
93
+ #: core/app/class-orbit-fox-admin.php:219
94
  #. translators: Go to url.
95
  msgid ""
96
  "You have activated Orbit Fox plugin! Go to the %s to get started with the "
97
  "extra features."
98
  msgstr ""
99
 
100
+ #: core/app/class-orbit-fox-admin.php:219
101
  msgid "Dashboard Page"
102
  msgstr ""
103
 
104
+ #: core/app/class-orbit-fox-admin.php:271
105
+ #: core/app/class-orbit-fox-admin.php:379
106
  msgid "Could not process the request!"
107
  msgstr ""
108
 
109
+ #: core/app/class-orbit-fox-admin.php:296
110
  msgid "No module found! No data was updated."
111
  msgstr ""
112
 
113
+ #: core/app/class-orbit-fox-admin.php:302
114
  msgid "Something went wrong, data might not be saved!"
115
  msgstr ""
116
 
117
+ #: core/app/class-orbit-fox-admin.php:306
118
  msgid "Options updated, successfully!"
119
  msgstr ""
120
 
121
+ #: core/app/class-orbit-fox-admin.php:404
122
  msgid "No module found!"
123
  msgstr ""
124
 
125
+ #: core/app/class-orbit-fox-admin.php:408
126
  msgid "Something went wrong, can not change module status!"
127
  msgstr ""
128
 
129
+ #: core/app/class-orbit-fox-admin.php:413
130
  msgid "Module status changed!"
131
  msgstr ""
132
 
133
+ #: core/app/class-orbit-fox-admin.php:531
134
  msgid "No modules found."
135
  msgstr ""
136
 
137
+ #: core/app/class-orbit-fox-admin.php:532
138
  msgid "Please contact support for more help."
139
  msgstr ""
140
 
141
+ #: core/app/class-orbit-fox-admin.php:539
142
  msgid "No active modules."
143
  msgstr ""
144
 
145
+ #: core/app/class-orbit-fox-admin.php:540
146
  msgid "Activate a module using the toggles above."
147
  msgstr ""
148
 
149
+ #: core/app/class-orbit-fox-plugin-install.php:160
150
  #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:457
151
  msgid "Install and activate"
152
  msgstr ""
153
 
154
+ #: core/app/class-orbit-fox-plugin-install.php:164
155
  #: core/app/views/partials/module-tile-tpl.php:67
156
  #: vendor/codeinwp/templates-directory/class-page-templates-directory.php:468
157
  msgid "Activate"
158
  msgstr ""
159
 
160
+ #: core/app/class-orbit-fox-plugin-install.php:179
161
  msgid "Deactivate"
162
  msgstr ""
163
 
227
 
228
  #: obfx_modules/beaver-widgets/inc/common-functions.php:26
229
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:836
230
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:844
231
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:527
232
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/beaver/beaver_widget_base.php:361
233
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:779
234
  msgid "Padding"
237
  #: obfx_modules/beaver-widgets/inc/common-functions.php:30
238
  #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:218
239
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:384
240
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:239
241
  msgid "Top"
242
  msgstr ""
243
 
279
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:650
280
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:686
281
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:732
282
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:302
283
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:235
284
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:345
285
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/contact_admin.php:147
286
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:361
287
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:836
310
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:658
311
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:694
312
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:740
313
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:310
314
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:243
315
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:353
316
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/contact_admin.php:155
317
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:369
318
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:844
322
  msgstr ""
323
 
324
  #: obfx_modules/beaver-widgets/inc/common-functions.php:64
325
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:823
326
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/beaver/beaver_widget_base.php:288
327
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/beaver/beaver_widget_base.php:333
328
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/beaver/beaver_widget_base.php:375
365
 
366
  #: obfx_modules/beaver-widgets/inc/common-functions.php:100
367
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1251
368
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:888
369
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:562
370
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:400
371
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:630
372
  msgid "Normal"
490
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:278
491
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:415
492
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:953
 
493
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:112
494
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:113
495
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:367
496
  msgid "Title"
497
  msgstr ""
498
 
558
 
559
  #: obfx_modules/beaver-widgets/modules/post-grid/includes/loop-settings.php:234
560
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:233
561
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:455
562
  msgid "Grid"
563
  msgstr ""
564
 
679
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:654
680
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:690
681
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:736
682
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:306
683
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:349
684
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/contact_admin.php:151
685
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:365
686
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:840
757
  #: obfx_modules/beaver-widgets/modules/pricing-table/obfx-pricing-table.php:103
758
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:75
759
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:98
760
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:131
761
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:159
762
  msgid "p"
763
  msgstr ""
764
 
890
  #: obfx_modules/beaver-widgets/modules/services/services.php:48
891
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:550
892
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1089
893
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:331
894
  msgid "Content"
895
  msgstr ""
896
 
908
  #: obfx_modules/beaver-widgets/modules/pricing-table/obfx-pricing-table.php:97
909
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:69
910
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:92
911
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:125
912
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:153
913
  msgid "h1"
914
  msgstr ""
915
 
917
  #: obfx_modules/beaver-widgets/modules/pricing-table/obfx-pricing-table.php:98
918
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:70
919
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:93
920
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:126
921
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:154
922
  msgid "h2"
923
  msgstr ""
924
 
926
  #: obfx_modules/beaver-widgets/modules/pricing-table/obfx-pricing-table.php:99
927
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:71
928
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:94
929
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:127
930
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:155
931
  msgid "h3"
932
  msgstr ""
933
 
935
  #: obfx_modules/beaver-widgets/modules/pricing-table/obfx-pricing-table.php:100
936
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:72
937
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:95
938
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:128
939
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:156
940
  msgid "h4"
941
  msgstr ""
942
 
944
  #: obfx_modules/beaver-widgets/modules/pricing-table/obfx-pricing-table.php:101
945
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:73
946
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:96
947
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:129
948
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:157
949
  msgid "h5"
950
  msgstr ""
951
 
953
  #: obfx_modules/beaver-widgets/modules/pricing-table/obfx-pricing-table.php:102
954
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:74
955
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:97
956
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:130
957
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:158
958
  msgid "h6"
959
  msgstr ""
960
 
962
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:80
963
  #: obfx_modules/companion-legacy/inc/shop-isle/customizer.php:179
964
  #: obfx_modules/companion-legacy/inc/shop-isle/customizer.php:315
 
965
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:140
966
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:141
967
  msgid "Subtitle"
968
  msgstr ""
969
 
979
 
980
  #: obfx_modules/beaver-widgets/modules/pricing-table/obfx-pricing-table.php:109
981
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:104
982
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:173
983
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:498
984
  msgid "Price Tag"
985
  msgstr ""
986
 
988
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:108
989
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:592
990
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1146
 
991
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:181
992
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:182
993
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:562
994
  #: vendor/codeinwp/gutenberg-blocks/inc/render/class-review-block.php:74
995
  msgid "Price"
996
  msgstr ""
997
 
998
  #: obfx_modules/beaver-widgets/modules/pricing-table/obfx-pricing-table.php:122
999
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:117
 
1000
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:192
1001
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:193
1002
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:528
1003
  msgid "Currency"
1004
  msgstr ""
1005
 
1010
 
1011
  #: obfx_modules/beaver-widgets/modules/pricing-table/obfx-pricing-table.php:134
1012
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:129
1013
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:205
1014
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:374
1015
  msgid "Before"
1016
  msgstr ""
1017
 
1018
  #: obfx_modules/beaver-widgets/modules/pricing-table/obfx-pricing-table.php:135
1019
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:130
1020
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:206
1021
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:375
1022
  msgid "After"
1023
  msgstr ""
1024
 
1025
  #: obfx_modules/beaver-widgets/modules/pricing-table/obfx-pricing-table.php:140
1026
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:135
1027
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:215
1028
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:596
1029
  msgid "Period"
1030
  msgstr ""
1031
 
1032
  #: obfx_modules/beaver-widgets/modules/pricing-table/obfx-pricing-table.php:141
1033
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:136
 
1034
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:216
1035
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:217
1036
  msgid "/month"
1037
  msgstr ""
1038
 
1046
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:150
1047
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:562
1048
  #: obfx_modules/companion-legacy/inc/hestia/inc/features/feature-features-section.php:115
1049
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:254
1050
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:279
1051
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:283
1052
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:287
1053
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:132
1054
  msgid "Feature"
1055
  msgstr ""
1056
 
1061
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:605
1062
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:633
1063
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1221
1064
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:335
1065
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:805
1066
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:620
1067
  msgid "Button"
1068
  msgstr ""
1131
 
1132
  #: obfx_modules/beaver-widgets/modules/pricing-table/obfx-pricing-table.php:266
1133
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:261
1134
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:100
1135
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/beaver/beaver_widget_base.php:516
1136
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:103
1137
  msgid "Type"
1147
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1035
1148
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1112
1149
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1175
1150
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:393
1151
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:423
1152
  msgid "Color"
1153
  msgstr ""
1154
 
1253
  #: obfx_modules/companion-legacy/inc/hestia/inc/features/feature-ribbon-section.php:102
1254
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-focus.php:195
1255
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-testimonial.php:220
1256
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:250
1257
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:343
1258
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/beaver/beaver_widget_base.php:51
1259
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/beaver/beaver_widget_base.php:415
1260
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/beaver/beaver_widget_base.php:450
1299
  #: obfx_modules/beaver-widgets/modules/pricing-table/pricing-table.php:580
1300
  #: obfx_modules/beaver-widgets/modules/services/obfx-services.php:244
1301
  #: obfx_modules/beaver-widgets/modules/services/services.php:239
1302
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:261
1303
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:362
1304
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:106
1305
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:139
1306
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/newsletter_admin.php:130
1307
  msgid "Icon"
1308
  msgstr ""
1309
 
1310
  #: obfx_modules/beaver-widgets/modules/services/obfx-services.php:36
1311
  #: obfx_modules/beaver-widgets/modules/services/services.php:31
1312
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:43
1313
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:92
1314
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:189
1315
  #: vendor/codeinwp/gutenberg-blocks/inc/server/class-template-library-server.php:171
1316
  #: vendor/codeinwp/gutenberg-blocks/inc/server/class-template-library-server.php:180
1317
  #: vendor/codeinwp/gutenberg-blocks/inc/server/class-template-library-server.php:189
1351
 
1352
  #: obfx_modules/beaver-widgets/modules/services/obfx-services.php:119
1353
  #: obfx_modules/beaver-widgets/modules/services/services.php:114
1354
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:309
1355
  msgid "Size"
1356
  msgstr ""
1357
 
1369
  #: obfx_modules/beaver-widgets/modules/services/services.php:183
1370
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:682
1371
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:728
1372
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:298
1373
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:339
1374
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/beaver/beaver_widget_base.php:617
1375
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/contact_admin.php:141
1376
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:830
1381
 
1382
  #: obfx_modules/beaver-widgets/modules/services/obfx-services.php:254
1383
  #: obfx_modules/beaver-widgets/modules/services/services.php:249
1384
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:179
1385
  msgid "Link to"
1386
  msgstr ""
1387
 
1451
 
1452
  #: obfx_modules/companion-legacy/inc/hestia/inc/features/feature-features-section.php:26
1453
  #: obfx_modules/companion-legacy/inc/hestia/inc/features/feature-features-section.php:37
1454
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:231
1455
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:636
1456
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:700
1457
  msgid "Features"
1458
  msgstr ""
1459
 
1505
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-focus.php:207
1506
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:399
1507
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:454
1508
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:353
1509
  msgid "Link"
1510
  msgstr ""
1511
 
1849
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-testimonial.php:232
1850
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:320
1851
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:889
1852
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:110
1853
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:168
1854
  msgid "Image"
1855
  msgstr ""
1856
 
1909
  msgstr ""
1910
 
1911
  #: obfx_modules/companion-legacy/inc/zerif-lite/widgets/widget-team.php:311
1912
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:142
1913
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:414
1914
  msgid "Description"
1915
  msgstr ""
1916
 
2087
  msgid "Custom"
2088
  msgstr ""
2089
 
2090
+ #: obfx_modules/custom-fonts/init.php:30
2091
+ msgid "Custom fonts"
 
2092
  msgstr ""
2093
 
2094
+ #: obfx_modules/custom-fonts/init.php:31
 
 
 
 
 
 
2095
  msgid "Upload custom fonts and use them anywhere on your site."
2096
  msgstr ""
2097
 
2103
  msgid "A module to integrate Google Analytics into your site easily."
2104
  msgstr ""
2105
 
2106
+ #: obfx_modules/google-analytics/init.php:259
2107
  msgid "Authenticate with Google"
2108
  msgstr ""
2109
 
2110
+ #: obfx_modules/google-analytics/init.php:264
2111
  msgid "Select a tracking code"
2112
  msgstr ""
2113
 
2114
+ #: obfx_modules/google-analytics/init.php:291
 
 
 
 
2115
  msgid "Unregister Site"
2116
  msgstr ""
2117
 
2118
+ #: obfx_modules/gutenberg-blocks/init.php:25
2119
+ msgid "Gutenberg Blocks"
2120
  msgstr ""
2121
 
2122
+ #: obfx_modules/gutenberg-blocks/init.php:30
2123
  #. translators: %1$s Start anchor tag, %2$s End anchor tag
2124
  msgid "A set of awesome Gutenberg Blocks provided by %1$sOtter's%2$s plugin!"
2125
  msgstr ""
2126
 
2127
+ #: obfx_modules/gutenberg-blocks/init.php:35
2128
+ #. translators: %s Otter plugin link
2129
+ msgid ""
2130
+ "This module will soon be removed form Orbit Fox. To keep the content you "
2131
+ "created with this module, please install %s"
2132
+ msgstr ""
2133
+
2134
+ #: obfx_modules/gutenberg-blocks/init.php:145
2135
  msgid "Blocks by OrbitFox and Otter"
2136
  msgstr ""
2137
 
2138
+ #: obfx_modules/gutenberg-blocks/init.php:176
2139
+ msgid "It seems you are using the Gutenberg Blocks module from Orbit Fox."
 
2140
  msgstr ""
2141
 
2142
+ #: obfx_modules/gutenberg-blocks/init.php:181
2143
+ #. translators: %s Otter plugin link
2144
+ msgid ""
2145
+ "This module will soon be removed. In order to keep the content you created "
2146
+ "with this module, please install %s"
2147
+ msgstr ""
2148
+
2149
+ #: obfx_modules/gutenberg-blocks/init.php:184
2150
+ msgid "Dismiss this notice."
2151
+ msgstr ""
2152
+
2153
+ #: obfx_modules/header-footer-scripts/init.php:30
2154
+ msgid "Header Footer Scripts"
2155
+ msgstr ""
2156
+
2157
+ #: obfx_modules/header-footer-scripts/init.php:32
2158
  msgid ""
2159
  "An easy way to add scripts, such as tracking and analytics scripts, to the "
2160
  "header and footer of your website, as well as in the body of your posts and "
2161
  "pages."
2162
  msgstr ""
2163
 
2164
+ #: obfx_modules/header-footer-scripts/init.php:37
2165
+ #: obfx_modules/header-footer-scripts/init.php:131
2166
  msgid "Header scripts"
2167
  msgstr ""
2168
 
2169
+ #: obfx_modules/header-footer-scripts/init.php:40
2170
  #. translators: %s is head tag
2171
  msgid "Output before the closing %s tag, after sitewide header scripts."
2172
  msgstr ""
2173
 
2174
+ #: obfx_modules/header-footer-scripts/init.php:46
2175
+ #: obfx_modules/header-footer-scripts/init.php:161
2176
  msgid "Footer scripts"
2177
  msgstr ""
2178
 
2179
+ #: obfx_modules/header-footer-scripts/init.php:49
2180
  #. translators: %s is body tag
2181
  msgid "Output before the closing %s tag, after sitewide footer scripts."
2182
  msgstr ""
2183
 
2184
+ #: obfx_modules/header-footer-scripts/init.php:104
2185
  msgid "Header/Footer scripts"
2186
  msgstr ""
2187
 
2188
+ #: obfx_modules/header-footer-scripts/init.php:116
2189
+ #: obfx_modules/header-footer-scripts/init.php:146
2190
+ #: obfx_modules/header-footer-scripts/init.php:302
2191
+ #: obfx_modules/header-footer-scripts/init.php:335
2192
  #. translators: %s is placeholder value
2193
  msgid "Enter your scripts here"
2194
  msgstr ""
2195
 
2196
+ #: obfx_modules/header-footer-scripts/init.php:134
2197
+ #: obfx_modules/header-footer-scripts/init.php:164
2198
  #. translators: %s is head tag
2199
  #. translators: %s is body tag
2200
  msgid ""
2202
  "source."
2203
  msgstr ""
2204
 
2205
+ #: obfx_modules/header-footer-scripts/init.php:181
2206
  msgid "Scripts"
2207
  msgstr ""
2208
 
2390
  msgid "Orbit Fox Template Directory"
2391
  msgstr ""
2392
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2393
  #: vendor/codeinwp/elementor-extra-widgets/class-elementor-extra-widgets.php:57
2394
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_manager.php:45
2395
  msgid "Orbit Fox Addons"
2403
  #: vendor/codeinwp/full-width-page-templates/builders/class-none-full-width-templates.php:91
2404
  #: vendor/codeinwp/full-width-page-templates/class-full-width-templates.php:197
2405
  #: vendor/codeinwp/full-width-page-templates/class-full-width-templates.php:209
 
 
 
 
2406
  #: vendor/codeinwp/gutenberg-blocks/inc/css/class-block-frontend.php:472
2407
  #: vendor/codeinwp/gutenberg-blocks/inc/css/class-block-frontend.php:484
2408
  #: vendor/codeinwp/gutenberg-blocks/inc/css/class-css-handler.php:346
2409
  #: vendor/codeinwp/gutenberg-blocks/inc/css/class-css-handler.php:358
2410
+ #: vendor/codeinwp/gutenberg-blocks/inc/plugins/class-options-settings.php:144
2411
+ #: vendor/codeinwp/gutenberg-blocks/inc/plugins/class-options-settings.php:156
2412
  #: vendor/codeinwp/gutenberg-blocks/inc/server/class-plugin-card-server.php:243
2413
  #: vendor/codeinwp/gutenberg-blocks/inc/server/class-plugin-card-server.php:255
2414
  #: vendor/codeinwp/gutenberg-blocks/inc/server/class-template-library-server.php:735
2440
 
2441
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:244
2442
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:826
2443
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:517
2444
  msgid "Items"
2445
  msgstr ""
2446
 
2449
  msgstr ""
2450
 
2451
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:255
2452
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:258
2453
  msgid "Columns"
2454
  msgstr ""
2455
 
2533
  msgstr ""
2534
 
2535
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:662
2536
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:314
2537
  msgid "Justified"
2538
  msgstr ""
2539
 
2540
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:773
2541
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:464
2542
  msgid "Columns margin"
2543
  msgstr ""
2544
 
2545
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:795
2546
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:486
2547
  msgid "Rows margin"
2548
  msgstr ""
2549
 
2550
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:849
2551
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:901
2552
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:832
2553
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:540
2554
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:492
2555
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:600
2556
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:684
2574
 
2575
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1264
2576
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1331
2577
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:896
2578
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:945
2579
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/beaver/beaver_widget_base.php:160
2580
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/beaver/beaver_widget_base.php:197
2581
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:301
2590
 
2591
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1282
2592
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1352
2593
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:911
2594
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:960
2595
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/beaver/beaver_widget_base.php:208
2596
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:427
2597
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:535
2603
  msgstr ""
2604
 
2605
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php:1318
2606
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:937
2607
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:588
2608
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:710
2609
  msgid "Hover"
2610
  msgstr ""
2659
  msgid "Upgrade Here!"
2660
  msgstr ""
2661
 
2662
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:35
2663
  msgid "Pricing Table"
2664
  msgstr ""
2665
 
2666
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:104
2667
  msgid "Plan Title"
2668
  msgstr ""
2669
 
2670
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:114
2671
  msgid "Pricing Plan"
2672
  msgstr ""
2673
 
2674
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:122
2675
  msgid "Title HTML tag"
2676
  msgstr ""
2677
 
2678
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:150
2679
  msgid "Subtitle HTML Tag"
2680
  msgstr ""
2681
 
2682
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:194
2683
  msgid "$"
2684
  msgstr ""
2685
 
2686
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:202
2687
  msgid "Currency Position"
2688
  msgstr ""
2689
 
2690
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:239
2691
+ msgid "Accented Text"
 
 
2692
  msgstr ""
2693
 
2694
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:242
2695
+ msgid "Appears before feature text"
2696
  msgstr ""
2697
 
2698
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:243
2699
+ msgid "Accent"
2700
  msgstr ""
2701
 
2702
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:253
2703
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:274
2704
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:131
2705
+ msgid "Plan Features"
2706
  msgstr ""
2707
 
2708
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:278
2709
+ msgid "First"
2710
  msgstr ""
2711
 
2712
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:282
2713
+ msgid "Second"
2714
  msgstr ""
2715
 
2716
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:286
2717
+ msgid "Third"
2718
  msgstr ""
2719
 
2720
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:344
2721
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:345
2722
  msgid "Buy Now"
2723
  msgstr ""
2724
 
2725
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:354
2726
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:182
2727
  msgid "https://example.com"
2728
  msgstr ""
2729
 
2730
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:371
2731
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:231
2732
  msgid "Icon Position"
2733
  msgstr ""
2734
 
2735
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:387
2736
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:780
2737
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/newsletter_admin.php:159
2738
  msgid "Icon Spacing"
2739
  msgstr ""
2740
 
2741
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:412
2742
  #: vendor/codeinwp/gutenberg-blocks/inc/server/class-template-library-server.php:153
2743
  msgid "Header"
2744
  msgstr ""
2745
 
2746
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:420
2747
  msgid "Header Padding"
2748
  msgstr ""
2749
 
2750
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:433
2751
  msgid "Title Color"
2752
  msgstr ""
2753
 
2754
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:458
2755
  msgid "Subtitle Color"
2756
  msgstr ""
2757
 
2758
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:483
2759
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:519
2760
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:645
2761
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:813
2762
  msgid "Section Background"
2763
  msgstr ""
2764
 
2765
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:507
2766
  msgid "Price Box Padding"
2767
  msgstr ""
2768
 
2769
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:537
2770
  msgid "Currency Color"
2771
  msgstr ""
2772
 
2773
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:571
2774
  msgid "Price Color"
2775
  msgstr ""
2776
 
2777
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:605
2778
  msgid "Period Color"
2779
  msgstr ""
2780
 
2781
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:655
2782
  msgid "Features List Padding"
2783
  msgstr ""
2784
 
2785
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:666
2786
  msgid "Accented"
2787
  msgstr ""
2788
 
2789
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:676
2790
  msgid "Accented Color"
2791
  msgstr ""
2792
 
2793
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:709
2794
  msgid "Features Color"
2795
  msgstr ""
2796
 
2797
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:734
2798
  msgid "Icons"
2799
  msgstr ""
2800
 
2801
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:743
2802
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:155
2803
  msgid "Icon Color"
2804
  msgstr ""
2805
 
2806
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:760
2807
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:857
2808
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/newsletter_admin.php:139
2809
  msgid "Icon Size"
2810
  msgstr ""
2811
 
2812
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php:984
2813
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:612
2814
  msgid "Transition Duration"
2815
  msgstr ""
2816
 
2817
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:120
2818
+ msgid "Title & Description"
2819
  msgstr ""
2820
 
 
 
2821
  #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:123
2822
+ msgid "Service Title"
2823
  msgstr ""
2824
 
2825
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:193
2826
+ msgid "Award-Winning​"
2827
  msgstr ""
2828
 
2829
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:194
2830
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:204
2831
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:214
2832
+ msgid "Add some text here to describe your services to the page visitors.​"
2833
  msgstr ""
2834
 
2835
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:203
2836
+ msgid "Professional​"
2837
  msgstr ""
2838
 
2839
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:213
2840
+ msgid "Consulting​"
2841
  msgstr ""
2842
 
2843
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:281
2844
  msgid "Icon / Image"
2845
  msgstr ""
2846
 
2847
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:288
2848
+ #: vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php:376
2849
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/beaver/beaver_widget_base.php:111
2850
  #: vendor/codeinwp/themeisle-content-forms/includes/widgets-admin/elementor/elementor_widget_base.php:276
2851
  msgid "Spacing"
3005
  msgid "Page Builder - Full Width"
3006
  msgstr ""
3007
 
3008
+ #: vendor/codeinwp/gutenberg-blocks/inc/class-main.php:100
3009
  msgid "A set of awesome Gutenberg Blocks!"
3010
  msgstr ""
3011
 
3012
+ #: vendor/codeinwp/gutenberg-blocks/inc/class-main.php:732
3013
+ #: vendor/codeinwp/gutenberg-blocks/inc/class-main.php:749
3014
  msgid "Skill"
3015
  msgstr ""
3016
 
3070
  msgid "Something went wrong"
3071
  msgstr ""
3072
 
3073
+ #: vendor/codeinwp/gutenberg-blocks/inc/render/class-posts-grid-block.php:224
3074
  msgid "on"
3075
  msgstr ""
3076
 
3077
+ #: vendor/codeinwp/gutenberg-blocks/inc/render/class-posts-grid-block.php:233
3078
  msgid "by"
3079
  msgstr ""
3080
 
3114
  msgid "Buy on Amazon"
3115
  msgstr ""
3116
 
3117
+ #: vendor/codeinwp/gutenberg-blocks/inc/render/class-review-block.php:104
3118
  msgid "Buy on eBay"
3119
  msgstr ""
3120
 
3121
+ #: vendor/codeinwp/gutenberg-blocks/inc/render/class-review-block.php:150
3122
  #. translators: Overall rating from 0 to 10.
3123
  msgid "%s out of 10"
3124
  msgstr ""
3125
 
3126
+ #: vendor/codeinwp/gutenberg-blocks/inc/render/class-review-block.php:201
3127
  msgid "Pros"
3128
  msgstr ""
3129
 
3130
+ #: vendor/codeinwp/gutenberg-blocks/inc/render/class-review-block.php:214
3131
  msgid "Cons"
3132
  msgstr ""
3133
 
3134
+ #: vendor/codeinwp/gutenberg-blocks/inc/render/class-review-block.php:228
3135
  msgid "Buy this product"
3136
  msgstr ""
3137
 
obfx_modules/beaver-widgets/init.php CHANGED
@@ -110,37 +110,6 @@ class Beaver_Widgets_OBFX_Module extends Orbit_Fox_Module_Abstract {
110
  return true;
111
  }
112
 
113
-
114
- /**
115
- * Check if it's a new user for orbit fox.
116
- *
117
- * @return bool
118
- */
119
- private function check_new_user() {
120
- $is_new_user = get_option( 'obfx_new_user' );
121
- if ( $is_new_user === 'yes' ) {
122
- return true;
123
- }
124
-
125
- $install_time = get_option( 'themeisle_companion_install' );
126
- $current_time = get_option( 'module_check_time' );
127
- if ( empty( $current_time ) ) {
128
- $current_time = time();
129
- update_option( 'module_check_time', $current_time );
130
- }
131
- if ( empty( $install_time ) || empty( $current_time ) ) {
132
- return false;
133
- }
134
-
135
- if ( ( $current_time - $install_time ) <= 60 ) {
136
- update_option( 'obfx_new_user', 'yes' );
137
- return true;
138
- }
139
-
140
- update_option( 'obfx_new_user', 'no' );
141
- return false;
142
- }
143
-
144
  /**
145
  * Require Beaver Builder modules
146
  *
110
  return true;
111
  }
112
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
113
  /**
114
  * Require Beaver Builder modules
115
  *
obfx_modules/custom-fonts/init.php CHANGED
@@ -18,7 +18,7 @@ require_once OBX_PATH . '/obfx_modules/custom-fonts/custom_fonts_public.php';
18
  * Class Custom_Fonts_OBFX_Module
19
  */
20
  class Custom_Fonts_OBFX_Module extends Orbit_Fox_Module_Abstract {
21
-
22
  /**
23
  * Menu_Icons_OBFX_Module constructor.
24
  *
@@ -27,19 +27,11 @@ class Custom_Fonts_OBFX_Module extends Orbit_Fox_Module_Abstract {
27
  */
28
  public function __construct() {
29
  parent::__construct();
30
- $this->name = sprintf(
31
- /* translators: %s is New tag */
32
- __( 'Custom fonts %s', 'themeisle-companion' ),
33
- sprintf(
34
- /* translators: %s is New tag text */
35
- '<sup class="obfx-title-new">%s</sup>',
36
- __( 'NEW', 'themeisle-companion' )
37
- )
38
- );
39
  $this->description = __( 'Upload custom fonts and use them anywhere on your site.', 'themeisle-companion' );
40
  $this->active_default = false;
41
  }
42
-
43
  /**
44
  * Determine if module should be loaded.
45
  *
@@ -49,7 +41,7 @@ class Custom_Fonts_OBFX_Module extends Orbit_Fox_Module_Abstract {
49
  public function enable_module() {
50
  return true;
51
  }
52
-
53
  /**
54
  * The loading logic for the module.
55
  *
@@ -58,7 +50,7 @@ class Custom_Fonts_OBFX_Module extends Orbit_Fox_Module_Abstract {
58
  */
59
  public function load() {
60
  }
61
-
62
  /**
63
  * Method to define hooks needed.
64
  *
@@ -66,9 +58,9 @@ class Custom_Fonts_OBFX_Module extends Orbit_Fox_Module_Abstract {
66
  * @return void
67
  */
68
  public function hooks() {
69
-
70
  $this->loader->add_action( 'admin_enqueue_scripts', $this, 'enqueue_media_scripts' );
71
-
72
  $admin_instance = new Custom_Fonts_Admin();
73
  $this->loader->add_action( 'init', $admin_instance, 'create_taxonomy' );
74
  $this->loader->add_action( 'admin_menu', $admin_instance, 'add_to_menu' );
@@ -80,34 +72,34 @@ class Custom_Fonts_OBFX_Module extends Orbit_Fox_Module_Abstract {
80
  $this->loader->add_action( 'create_obfx_custom_fonts', $admin_instance, 'save_metadata' );
81
  $this->loader->add_filter( 'upload_mimes', $admin_instance, 'add_fonts_to_allowed_mimes' );
82
  $this->loader->add_filter( 'wp_check_filetype_and_ext', $admin_instance, 'update_mime_types', 10, 3 );
83
-
84
  $public_instance = new Custom_Fonts_Public();
85
-
86
  // Load the font.
87
  $this->loader->add_action( 'wp_head', $public_instance, 'add_style' );
88
  $this->loader->add_action( 'customize_controls_print_styles', $public_instance, 'add_style' );
89
  if ( is_admin() ) {
90
  $this->loader->add_action( 'enqueue_block_assets', $public_instance, 'add_style' );
91
  }
92
-
93
  // Display the font in customizer in Neve theme
94
  $this->loader->add_filter( 'neve_react_controls_localization', $public_instance, 'add_custom_fonts' );
95
-
96
  // Set theme mods to default if font is deleted and was selected in customizer
97
  $this->loader->add_action( 'delete_term', $public_instance, 'delete_custom_fonts_fallback', 10, 5 );
98
-
99
  // Beaver Builder theme customizer, Beaver Builder page builder.
100
  $this->loader->add_filter( 'fl_theme_system_fonts', $public_instance, 'bb_custom_fonts' );
101
  $this->loader->add_filter( 'fl_builder_font_families_system', $public_instance, 'bb_custom_fonts' );
102
-
103
  // Add custom fonts in Elementor
104
  $this->loader->add_filter( 'elementor/fonts/groups', $public_instance, 'elementor_group' );
105
  $this->loader->add_filter( 'elementor/fonts/additional_fonts', $public_instance, 'add_elementor_fonts' );
106
-
107
  // Filter that returns the custom fonts list ( can be used at init hook or a hook that is called after init )
108
  $this->loader->add_filter( 'obfx_get_custom_fonts_list', $public_instance, 'get_fonts' );
109
  }
110
-
111
  /**
112
  * Method to define the options fields for the module
113
  *
@@ -117,8 +109,8 @@ class Custom_Fonts_OBFX_Module extends Orbit_Fox_Module_Abstract {
117
  public function options() {
118
  return array();
119
  }
120
-
121
-
122
  /**
123
  * Method that returns an array of scripts and styles to be loaded
124
  * for the admin part.
@@ -132,14 +124,14 @@ class Custom_Fonts_OBFX_Module extends Orbit_Fox_Module_Abstract {
132
  'js' => array( 'admin' => array( 'jquery' ) ),
133
  );
134
  }
135
-
136
  /**
137
  * Enqueue media script for the upload button.
138
  */
139
  public function enqueue_media_scripts() {
140
  wp_enqueue_media();
141
  }
142
-
143
  /**
144
  * Method that returns an array of scripts and styles to be loaded
145
  * for the front end part.
@@ -150,5 +142,5 @@ class Custom_Fonts_OBFX_Module extends Orbit_Fox_Module_Abstract {
150
  public function public_enqueue() {
151
  return array();
152
  }
153
-
154
  }
18
  * Class Custom_Fonts_OBFX_Module
19
  */
20
  class Custom_Fonts_OBFX_Module extends Orbit_Fox_Module_Abstract {
21
+
22
  /**
23
  * Menu_Icons_OBFX_Module constructor.
24
  *
27
  */
28
  public function __construct() {
29
  parent::__construct();
30
+ $this->name = __( 'Custom fonts', 'themeisle-companion' );
 
 
 
 
 
 
 
 
31
  $this->description = __( 'Upload custom fonts and use them anywhere on your site.', 'themeisle-companion' );
32
  $this->active_default = false;
33
  }
34
+
35
  /**
36
  * Determine if module should be loaded.
37
  *
41
  public function enable_module() {
42
  return true;
43
  }
44
+
45
  /**
46
  * The loading logic for the module.
47
  *
50
  */
51
  public function load() {
52
  }
53
+
54
  /**
55
  * Method to define hooks needed.
56
  *
58
  * @return void
59
  */
60
  public function hooks() {
61
+
62
  $this->loader->add_action( 'admin_enqueue_scripts', $this, 'enqueue_media_scripts' );
63
+
64
  $admin_instance = new Custom_Fonts_Admin();
65
  $this->loader->add_action( 'init', $admin_instance, 'create_taxonomy' );
66
  $this->loader->add_action( 'admin_menu', $admin_instance, 'add_to_menu' );
72
  $this->loader->add_action( 'create_obfx_custom_fonts', $admin_instance, 'save_metadata' );
73
  $this->loader->add_filter( 'upload_mimes', $admin_instance, 'add_fonts_to_allowed_mimes' );
74
  $this->loader->add_filter( 'wp_check_filetype_and_ext', $admin_instance, 'update_mime_types', 10, 3 );
75
+
76
  $public_instance = new Custom_Fonts_Public();
77
+
78
  // Load the font.
79
  $this->loader->add_action( 'wp_head', $public_instance, 'add_style' );
80
  $this->loader->add_action( 'customize_controls_print_styles', $public_instance, 'add_style' );
81
  if ( is_admin() ) {
82
  $this->loader->add_action( 'enqueue_block_assets', $public_instance, 'add_style' );
83
  }
84
+
85
  // Display the font in customizer in Neve theme
86
  $this->loader->add_filter( 'neve_react_controls_localization', $public_instance, 'add_custom_fonts' );
87
+
88
  // Set theme mods to default if font is deleted and was selected in customizer
89
  $this->loader->add_action( 'delete_term', $public_instance, 'delete_custom_fonts_fallback', 10, 5 );
90
+
91
  // Beaver Builder theme customizer, Beaver Builder page builder.
92
  $this->loader->add_filter( 'fl_theme_system_fonts', $public_instance, 'bb_custom_fonts' );
93
  $this->loader->add_filter( 'fl_builder_font_families_system', $public_instance, 'bb_custom_fonts' );
94
+
95
  // Add custom fonts in Elementor
96
  $this->loader->add_filter( 'elementor/fonts/groups', $public_instance, 'elementor_group' );
97
  $this->loader->add_filter( 'elementor/fonts/additional_fonts', $public_instance, 'add_elementor_fonts' );
98
+
99
  // Filter that returns the custom fonts list ( can be used at init hook or a hook that is called after init )
100
  $this->loader->add_filter( 'obfx_get_custom_fonts_list', $public_instance, 'get_fonts' );
101
  }
102
+
103
  /**
104
  * Method to define the options fields for the module
105
  *
109
  public function options() {
110
  return array();
111
  }
112
+
113
+
114
  /**
115
  * Method that returns an array of scripts and styles to be loaded
116
  * for the admin part.
124
  'js' => array( 'admin' => array( 'jquery' ) ),
125
  );
126
  }
127
+
128
  /**
129
  * Enqueue media script for the upload button.
130
  */
131
  public function enqueue_media_scripts() {
132
  wp_enqueue_media();
133
  }
134
+
135
  /**
136
  * Method that returns an array of scripts and styles to be loaded
137
  * for the front end part.
142
  public function public_enqueue() {
143
  return array();
144
  }
145
+
146
  }
obfx_modules/google-analytics/init.php CHANGED
@@ -40,6 +40,19 @@ class Google_Analytics_OBFX_Module extends Orbit_Fox_Module_Abstract {
40
  * @return bool
41
  */
42
  public function enable_module() {
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  return true;
44
  }
45
 
@@ -80,7 +93,6 @@ class Google_Analytics_OBFX_Module extends Orbit_Fox_Module_Abstract {
80
  */
81
  public function hooks() {
82
  $this->loader->add_action( 'rest_api_init', $this, 'register_endpoints' );
83
- $this->loader->add_action( 'current_screen', $this, 'maybe_save_obfx_token' );
84
  $this->loader->add_action( 'admin_enqueue_scripts', $this, 'enqueue_analytics_scripts' );
85
  $this->loader->add_action( 'wp_head', $this, 'output_analytics_code', 0 );
86
  }
@@ -123,7 +135,8 @@ class Google_Analytics_OBFX_Module extends Orbit_Fox_Module_Abstract {
123
  if ( empty( $obfx_token ) ) {
124
  return new WP_Error( '200', 'Your site is not registered.' );
125
  }
126
- $this->get_tracking_codes( $obfx_token, true );
 
127
  }
128
 
129
  /**
@@ -262,16 +275,6 @@ class Google_Analytics_OBFX_Module extends Orbit_Fox_Module_Abstract {
262
  }
263
 
264
  return array(
265
-
266
- array(
267
- 'id' => 'analytics_accounts_refresh',
268
- 'name' => 'analytics_accounts_refresh',
269
- 'type' => 'link',
270
- 'link-class' => 'btn btn-primary btn-sm',
271
- 'link-id' => 'refresh-analytics-accounts',
272
- 'text' => '<i class="dashicons dashicons-update"></i> ' . __( 'Refresh Accounts', 'themeisle-companion' ),
273
- 'url' => '',
274
- ),
275
  array(
276
  'id' => 'analytics_accounts_select',
277
  'name' => 'analytics_accounts_select',
@@ -354,30 +357,6 @@ class Google_Analytics_OBFX_Module extends Orbit_Fox_Module_Abstract {
354
  return substr( $pre_hash, 0, 100 );
355
  }
356
 
357
- final public function maybe_save_obfx_token() {
358
- $obfx_token = isset( $_GET['obfx_token'] ) ? sanitize_text_field( $_GET['obfx_token'] ) : '';
359
- if ( empty( $obfx_token ) ) {
360
- return '';
361
- }
362
- if ( ! is_admin() ) {
363
- return '';
364
- }
365
- $current_screen = get_current_screen();
366
- if ( ! isset( $current_screen->id ) ) {
367
- return '';
368
- }
369
- if ( $current_screen->id !== 'toplevel_page_obfx_companion' ) {
370
- return '';
371
- }
372
- if ( ! current_user_can( 'manage_options' ) ) {
373
- return '';
374
- }
375
- update_option( 'obfx_token', $obfx_token );
376
- $this->get_tracking_codes( $obfx_token );
377
- wp_safe_redirect( admin_url( 'admin.php?page=obfx_companion' ) );
378
- exit;
379
- }
380
-
381
  final public function output_analytics_code() {
382
  $ua_code = $this->get_option( 'analytics_accounts_select' ); ?>
383
  <!-- Google Analytics -->
40
  * @return bool
41
  */
42
  public function enable_module() {
43
+ if ( ! $this->is_module_active() ) {
44
+ return false;
45
+ }
46
+
47
+ $token = get_option( 'obfx_token', '' );
48
+ if ( empty( $token ) ) {
49
+ return false;
50
+ }
51
+
52
+ if ( empty( $this->get_module_setting( 'analytics_accounts_select' ) ) ) {
53
+ return false;
54
+ }
55
+
56
  return true;
57
  }
58
 
93
  */
94
  public function hooks() {
95
  $this->loader->add_action( 'rest_api_init', $this, 'register_endpoints' );
 
96
  $this->loader->add_action( 'admin_enqueue_scripts', $this, 'enqueue_analytics_scripts' );
97
  $this->loader->add_action( 'wp_head', $this, 'output_analytics_code', 0 );
98
  }
135
  if ( empty( $obfx_token ) ) {
136
  return new WP_Error( '200', 'Your site is not registered.' );
137
  }
138
+
139
+ return false;
140
  }
141
 
142
  /**
275
  }
276
 
277
  return array(
 
 
 
 
 
 
 
 
 
 
278
  array(
279
  'id' => 'analytics_accounts_select',
280
  'name' => 'analytics_accounts_select',
357
  return substr( $pre_hash, 0, 100 );
358
  }
359
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
360
  final public function output_analytics_code() {
361
  $ua_code = $this->get_option( 'analytics_accounts_select' ); ?>
362
  <!-- Google Analytics -->
obfx_modules/google-analytics/js/script.js CHANGED
@@ -16,30 +16,6 @@ var obfx_analytics = function ( $ ) {
16
 
17
  $(
18
  function () {
19
- $( '#refresh-analytics-accounts' ).on(
20
- 'click', function ( event ) {
21
- event.preventDefault();
22
- $.ajax(
23
- {
24
- url: obfxAnalyticsObj.url,
25
- beforeSend: function ( xhr ) {
26
- $( '#refresh-analytics-accounts' ).addClass( 'loading' );
27
- xhr.setRequestHeader( 'X-WP-Nonce', obfxAnalyticsObj.nonce );
28
- },
29
- data: {},
30
- type: 'POST',
31
- error: function ( error ) {
32
- console.error( error );
33
- },
34
- complete: function () {
35
- $( '#refresh-analytics-accounts' ).removeClass( 'loading' );
36
- location.reload();
37
- }
38
- }, 'json'
39
- );
40
- return false;
41
- }
42
- );
43
  $( '#unregister-analytics' ).on(
44
  'click', function ( event ) {
45
  event.preventDefault();
16
 
17
  $(
18
  function () {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  $( '#unregister-analytics' ).on(
20
  'click', function ( event ) {
21
  event.preventDefault();
obfx_modules/gutenberg-blocks/init.php CHANGED
@@ -21,12 +21,23 @@ class Gutenberg_Blocks_OBFX_Module extends Orbit_Fox_Module_Abstract {
21
  */
22
  public function __construct() {
23
  parent::__construct();
24
- $this->name = __( 'Gutenberg Blocks <sup class="obfx-title-new">NEW</sup>', 'themeisle-companion' );
 
 
25
  /*
26
  * translators: %1$s Start anchor tag, %2$s End anchor tag
27
  */
28
- $this->description = sprintf( __( 'A set of awesome Gutenberg Blocks provided by %1$sOtter\'s%2$s plugin!', 'themeisle-companion' ), '<span class="dashicons dashicons-external"></span><a target="_blank" href="https://wordpress.org/plugins/otter-blocks/">', '</a>' );
29
- $this->active_default = true;
 
 
 
 
 
 
 
 
 
30
  }
31
 
32
  /**
@@ -42,6 +53,12 @@ class Gutenberg_Blocks_OBFX_Module extends Orbit_Fox_Module_Abstract {
42
  if ( is_plugin_active( 'otter-blocks/otter-blocks.php' ) ) {
43
  return false;
44
  }
 
 
 
 
 
 
45
  if ( version_compare( $wp_version, '5.0', '>=' ) ) {
46
  return true;
47
  }
@@ -49,7 +66,6 @@ class Gutenberg_Blocks_OBFX_Module extends Orbit_Fox_Module_Abstract {
49
  return true;
50
  }
51
 
52
-
53
  return false;
54
  }
55
 
@@ -71,7 +87,8 @@ class Gutenberg_Blocks_OBFX_Module extends Orbit_Fox_Module_Abstract {
71
  public function hooks() {
72
  $this->loader->add_action( 'enqueue_block_assets', $this, 'enqueue_block_assets' );
73
  $this->loader->add_action( 'init', $this, 'load_gutenberg_blocks' );
74
-
 
75
  }
76
 
77
  /**
@@ -128,4 +145,58 @@ class Gutenberg_Blocks_OBFX_Module extends Orbit_Fox_Module_Abstract {
128
  \ThemeIsle\GutenbergBlocks\Main::instance( __( 'Blocks by OrbitFox and Otter', 'themeisle-companion' ) );
129
  }
130
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
131
  }
21
  */
22
  public function __construct() {
23
  parent::__construct();
24
+
25
+ $this->name = __( 'Gutenberg Blocks', 'themeisle-companion' );
26
+
27
  /*
28
  * translators: %1$s Start anchor tag, %2$s End anchor tag
29
  */
30
+ $this->description = sprintf( __( 'A set of awesome Gutenberg Blocks provided by %1$sOtter\'s%2$s plugin!', 'themeisle-companion' ), '<span class="dashicons dashicons-external"></span><a target="_blank" href="https://wordpress.org/plugins/otter-blocks/">', '</a>' );
31
+ $this->description .= '<p class="notice notice-warning">' .
32
+ /*
33
+ * translators: %s Otter plugin link
34
+ */
35
+ sprintf( __( 'This module will soon be removed form Orbit Fox. To keep the content you created with this module, please install %s', 'themeisle-companion' ), '<span class="dashicons dashicons-external"></span><a target="_blank" href="https://wordpress.org/plugins/otter-blocks/">Gutenberg Blocks and Template Library by Otter</a>.' )
36
+ . '</p>';
37
+
38
+ if ( $this->check_new_user( 'obfx_remove_gtb_blocks' ) === false ) {
39
+ $this->active_default = true;
40
+ }
41
  }
42
 
43
  /**
53
  if ( is_plugin_active( 'otter-blocks/otter-blocks.php' ) ) {
54
  return false;
55
  }
56
+ if ( ! $this->is_module_active() ) {
57
+ return false;
58
+ }
59
+ if ( $this->check_new_user( 'obfx_remove_gtb_blocks' ) ) {
60
+ return false;
61
+ }
62
  if ( version_compare( $wp_version, '5.0', '>=' ) ) {
63
  return true;
64
  }
66
  return true;
67
  }
68
 
 
69
  return false;
70
  }
71
 
87
  public function hooks() {
88
  $this->loader->add_action( 'enqueue_block_assets', $this, 'enqueue_block_assets' );
89
  $this->loader->add_action( 'init', $this, 'load_gutenberg_blocks' );
90
+ $this->loader->add_action( 'admin_notices', $this, 'add_otter_notice' );
91
+ $this->loader->add_action( 'admin_init', $this, 'dismiss_otter_notice' );
92
  }
93
 
94
  /**
145
  \ThemeIsle\GutenbergBlocks\Main::instance( __( 'Blocks by OrbitFox and Otter', 'themeisle-companion' ) );
146
  }
147
 
148
+ /**
149
+ * If Gutenberg Blocks module is active, we should add a notice to install Otter.
150
+ */
151
+ public function add_otter_notice() {
152
+
153
+ if ( ! current_user_can( 'manage_options' ) ) {
154
+ return;
155
+ }
156
+
157
+ $screen = get_current_screen();
158
+ if ( empty( $screen ) ) {
159
+ return;
160
+ }
161
+
162
+ if ( ! in_array( $screen->id, array( 'toplevel_page_obfx_companion' ), true ) ) {
163
+ return;
164
+ }
165
+
166
+ global $current_user;
167
+
168
+ $user_id = $current_user->ID;
169
+
170
+ if ( get_user_meta( $user_id, 'obfx_dismiss_otter_notice' ) ) {
171
+ return;
172
+ }
173
+
174
+ echo '<div class="notice notice-warning" style="position: relative;">';
175
+ echo '<p style="max-width: 90%;">';
176
+ esc_html_e( 'It seems you are using the Gutenberg Blocks module from Orbit Fox.', 'themeisle-companion' );
177
+
178
+ /*
179
+ * translators: %s Otter plugin link
180
+ */
181
+ printf( esc_html__( 'This module will soon be removed. In order to keep the content you created with this module, please install %s', 'themeisle-companion' ), '<span class="dashicons dashicons-external"></span><a target="_blank" href="https://wordpress.org/plugins/otter-blocks/">Gutenberg Blocks and Template Library by Otter</a>' );
182
+ echo '</p>';
183
+ echo '<a href="' . esc_url( add_query_arg( 'obfx_dismiss_otter_notice', '0', admin_url( 'admin.php?page=obfx_companion&show_plugins=yes' ) ) ) . '" class="notice-dismiss" style="text-decoration: none;">';
184
+ echo '<span class="screen-reader-text">' . esc_html__( 'Dismiss this notice.', 'themeisle-companion' ) . '</span>';
185
+ echo '</a>';
186
+ echo '</div>';
187
+ }
188
+
189
+ /**
190
+ * Dismiss otter notice.
191
+ */
192
+ public function dismiss_otter_notice() {
193
+ global $current_user;
194
+
195
+ $user_id = $current_user->ID;
196
+
197
+ if ( isset( $_GET['obfx_dismiss_otter_notice'] ) && '0' == $_GET['obfx_dismiss_otter_notice'] ) {
198
+ add_user_meta( $user_id, 'obfx_dismiss_otter_notice', 'true', true );
199
+ }
200
+ }
201
+
202
  }
obfx_modules/header-footer-scripts/init.php CHANGED
@@ -27,15 +27,7 @@ class Header_Footer_Scripts_OBFX_Module extends Orbit_Fox_Module_Abstract {
27
  */
28
  public function __construct() {
29
  parent::__construct();
30
- $this->name = sprintf(
31
- /* translators: %s is New tag */
32
- __( 'Header Footer Scripts %s', 'themeisle-companion' ),
33
- sprintf(
34
- /* translators: %s is New tag text */
35
- '<sup class="obfx-title-new">%s</sup>',
36
- __( 'NEW', 'themeisle-companion' )
37
- )
38
- );
39
 
40
  $this->description = __( 'An easy way to add scripts, such as tracking and analytics scripts, to the header and footer of your website, as well as in the body of your posts and pages.', 'themeisle-companion' );
41
  $this->active_default = true;
27
  */
28
  public function __construct() {
29
  parent::__construct();
30
+ $this->name = __( 'Header Footer Scripts', 'themeisle-companion' );
 
 
 
 
 
 
 
 
31
 
32
  $this->description = __( 'An easy way to add scripts, such as tracking and analytics scripts, to the header and footer of your website, as well as in the body of your posts and pages.', 'themeisle-companion' );
33
  $this->active_default = true;
obfx_modules/mystock-import/js/script.js CHANGED
@@ -1,2 +1,2 @@
1
  /*! For license information please see script.js.LICENSE.txt */
2
- (()=>{var t={9742:(t,e)=>{"use strict";e.byteLength=function(t){var e=u(t),r=e[0],o=e[1];return 3*(r+o)/4-o},e.toByteArray=function(t){var e,r,i=u(t),s=i[0],a=i[1],p=new n(function(t,e,r){return 3*(e+r)/4-r}(0,s,a)),c=0,h=a>0?s-4:s;for(r=0;r<h;r+=4)e=o[t.charCodeAt(r)]<<18|o[t.charCodeAt(r+1)]<<12|o[t.charCodeAt(r+2)]<<6|o[t.charCodeAt(r+3)],p[c++]=e>>16&255,p[c++]=e>>8&255,p[c++]=255&e;return 2===a&&(e=o[t.charCodeAt(r)]<<2|o[t.charCodeAt(r+1)]>>4,p[c++]=255&e),1===a&&(e=o[t.charCodeAt(r)]<<10|o[t.charCodeAt(r+1)]<<4|o[t.charCodeAt(r+2)]>>2,p[c++]=e>>8&255,p[c++]=255&e),p},e.fromByteArray=function(t){for(var e,o=t.length,n=o%3,i=[],s=16383,a=0,u=o-n;a<u;a+=s)i.push(p(t,a,a+s>u?u:a+s));return 1===n?(e=t[o-1],i.push(r[e>>2]+r[e<<4&63]+"==")):2===n&&(e=(t[o-2]<<8)+t[o-1],i.push(r[e>>10]+r[e>>4&63]+r[e<<2&63]+"=")),i.join("")};for(var r=[],o=[],n="undefined"!=typeof Uint8Array?Uint8Array:Array,i="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",s=0,a=i.length;s<a;++s)r[s]=i[s],o[i.charCodeAt(s)]=s;function u(t){var e=t.length;if(e%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var r=t.indexOf("=");return-1===r&&(r=e),[r,r===e?0:4-r%4]}function p(t,e,o){for(var n,i,s=[],a=e;a<o;a+=3)n=(t[a]<<16&16711680)+(t[a+1]<<8&65280)+(255&t[a+2]),s.push(r[(i=n)>>18&63]+r[i>>12&63]+r[i>>6&63]+r[63&i]);return s.join("")}o["-".charCodeAt(0)]=62,o["_".charCodeAt(0)]=63},8764:(t,e,r)=>{"use strict";const o=r(9742),n=r(645),i="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;e.Buffer=u,e.SlowBuffer=function(t){return+t!=t&&(t=0),u.alloc(+t)},e.INSPECT_MAX_BYTES=50;const s=2147483647;function a(t){if(t>s)throw new RangeError('The value "'+t+'" is invalid for option "size"');const e=new Uint8Array(t);return Object.setPrototypeOf(e,u.prototype),e}function u(t,e,r){if("number"==typeof t){if("string"==typeof e)throw new TypeError('The "string" argument must be of type string. Received type number');return h(t)}return p(t,e,r)}function p(t,e,r){if("string"==typeof t)return function(t,e){if("string"==typeof e&&""!==e||(e="utf8"),!u.isEncoding(e))throw new TypeError("Unknown encoding: "+e);const r=0|y(t,e);let o=a(r);const n=o.write(t,e);return n!==r&&(o=o.slice(0,n)),o}(t,e);if(ArrayBuffer.isView(t))return function(t){if(K(t,Uint8Array)){const e=new Uint8Array(t);return f(e.buffer,e.byteOffset,e.byteLength)}return l(t)}(t);if(null==t)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof t);if(K(t,ArrayBuffer)||t&&K(t.buffer,ArrayBuffer))return f(t,e,r);if("undefined"!=typeof SharedArrayBuffer&&(K(t,SharedArrayBuffer)||t&&K(t.buffer,SharedArrayBuffer)))return f(t,e,r);if("number"==typeof t)throw new TypeError('The "value" argument must not be of type number. Received type number');const o=t.valueOf&&t.valueOf();if(null!=o&&o!==t)return u.from(o,e,r);const n=function(t){if(u.isBuffer(t)){const e=0|d(t.length),r=a(e);return 0===r.length||t.copy(r,0,0,e),r}return void 0!==t.length?"number"!=typeof t.length||W(t.length)?a(0):l(t):"Buffer"===t.type&&Array.isArray(t.data)?l(t.data):void 0}(t);if(n)return n;if("undefined"!=typeof Symbol&&null!=Symbol.toPrimitive&&"function"==typeof t[Symbol.toPrimitive])return u.from(t[Symbol.toPrimitive]("string"),e,r);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof t)}function c(t){if("number"!=typeof t)throw new TypeError('"size" argument must be of type number');if(t<0)throw new RangeError('The value "'+t+'" is invalid for option "size"')}function h(t){return c(t),a(t<0?0:0|d(t))}function l(t){const e=t.length<0?0:0|d(t.length),r=a(e);for(let o=0;o<e;o+=1)r[o]=255&t[o];return r}function f(t,e,r){if(e<0||t.byteLength<e)throw new RangeError('"offset" is outside of buffer bounds');if(t.byteLength<e+(r||0))throw new RangeError('"length" is outside of buffer bounds');let o;return o=void 0===e&&void 0===r?new Uint8Array(t):void 0===r?new Uint8Array(t,e):new Uint8Array(t,e,r),Object.setPrototypeOf(o,u.prototype),o}function d(t){if(t>=s)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+s.toString(16)+" bytes");return 0|t}function y(t,e){if(u.isBuffer(t))return t.length;if(ArrayBuffer.isView(t)||K(t,ArrayBuffer))return t.byteLength;if("string"!=typeof t)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof t);const r=t.length,o=arguments.length>2&&!0===arguments[2];if(!o&&0===r)return 0;let n=!1;for(;;)switch(e){case"ascii":case"latin1":case"binary":return r;case"utf8":case"utf-8":return X(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*r;case"hex":return r>>>1;case"base64":return Y(t).length;default:if(n)return o?-1:X(t).length;e=(""+e).toLowerCase(),n=!0}}function g(t,e,r){let o=!1;if((void 0===e||e<0)&&(e=0),e>this.length)return"";if((void 0===r||r>this.length)&&(r=this.length),r<=0)return"";if((r>>>=0)<=(e>>>=0))return"";for(t||(t="utf8");;)switch(t){case"hex":return k(this,e,r);case"utf8":case"utf-8":return P(this,e,r);case"ascii":return D(this,e,r);case"latin1":case"binary":return C(this,e,r);case"base64":return I(this,e,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return x(this,e,r);default:if(o)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),o=!0}}function m(t,e,r){const o=t[e];t[e]=t[r],t[r]=o}function _(t,e,r,o,n){if(0===t.length)return-1;if("string"==typeof r?(o=r,r=0):r>2147483647?r=2147483647:r<-2147483648&&(r=-2147483648),W(r=+r)&&(r=n?0:t.length-1),r<0&&(r=t.length+r),r>=t.length){if(n)return-1;r=t.length-1}else if(r<0){if(!n)return-1;r=0}if("string"==typeof e&&(e=u.from(e,o)),u.isBuffer(e))return 0===e.length?-1:w(t,e,r,o,n);if("number"==typeof e)return e&=255,"function"==typeof Uint8Array.prototype.indexOf?n?Uint8Array.prototype.indexOf.call(t,e,r):Uint8Array.prototype.lastIndexOf.call(t,e,r):w(t,[e],r,o,n);throw new TypeError("val must be string, number or Buffer")}function w(t,e,r,o,n){let i,s=1,a=t.length,u=e.length;if(void 0!==o&&("ucs2"===(o=String(o).toLowerCase())||"ucs-2"===o||"utf16le"===o||"utf-16le"===o)){if(t.length<2||e.length<2)return-1;s=2,a/=2,u/=2,r/=2}function p(t,e){return 1===s?t[e]:t.readUInt16BE(e*s)}if(n){let o=-1;for(i=r;i<a;i++)if(p(t,i)===p(e,-1===o?0:i-o)){if(-1===o&&(o=i),i-o+1===u)return o*s}else-1!==o&&(i-=i-o),o=-1}else for(r+u>a&&(r=a-u),i=r;i>=0;i--){let r=!0;for(let o=0;o<u;o++)if(p(t,i+o)!==p(e,o)){r=!1;break}if(r)return i}return-1}function T(t,e,r,o){r=Number(r)||0;const n=t.length-r;o?(o=Number(o))>n&&(o=n):o=n;const i=e.length;let s;for(o>i/2&&(o=i/2),s=0;s<o;++s){const o=parseInt(e.substr(2*s,2),16);if(W(o))return s;t[r+s]=o}return s}function b(t,e,r,o){return $(X(e,t.length-r),t,r,o)}function E(t,e,r,o){return $(function(t){const e=[];for(let r=0;r<t.length;++r)e.push(255&t.charCodeAt(r));return e}(e),t,r,o)}function v(t,e,r,o){return $(Y(e),t,r,o)}function O(t,e,r,o){return $(function(t,e){let r,o,n;const i=[];for(let s=0;s<t.length&&!((e-=2)<0);++s)r=t.charCodeAt(s),o=r>>8,n=r%256,i.push(n),i.push(o);return i}(e,t.length-r),t,r,o)}function I(t,e,r){return 0===e&&r===t.length?o.fromByteArray(t):o.fromByteArray(t.slice(e,r))}function P(t,e,r){r=Math.min(t.length,r);const o=[];let n=e;for(;n<r;){const e=t[n];let i=null,s=e>239?4:e>223?3:e>191?2:1;if(n+s<=r){let r,o,a,u;switch(s){case 1:e<128&&(i=e);break;case 2:r=t[n+1],128==(192&r)&&(u=(31&e)<<6|63&r,u>127&&(i=u));break;case 3:r=t[n+1],o=t[n+2],128==(192&r)&&128==(192&o)&&(u=(15&e)<<12|(63&r)<<6|63&o,u>2047&&(u<55296||u>57343)&&(i=u));break;case 4:r=t[n+1],o=t[n+2],a=t[n+3],128==(192&r)&&128==(192&o)&&128==(192&a)&&(u=(15&e)<<18|(63&r)<<12|(63&o)<<6|63&a,u>65535&&u<1114112&&(i=u))}}null===i?(i=65533,s=1):i>65535&&(i-=65536,o.push(i>>>10&1023|55296),i=56320|1023&i),o.push(i),n+=s}return function(t){const e=t.length;if(e<=N)return String.fromCharCode.apply(String,t);let r="",o=0;for(;o<e;)r+=String.fromCharCode.apply(String,t.slice(o,o+=N));return r}(o)}e.kMaxLength=s,u.TYPED_ARRAY_SUPPORT=function(){try{const t=new Uint8Array(1),e={foo:function(){return 42}};return Object.setPrototypeOf(e,Uint8Array.prototype),Object.setPrototypeOf(t,e),42===t.foo()}catch(t){return!1}}(),u.TYPED_ARRAY_SUPPORT||"undefined"==typeof console||"function"!=typeof console.error||console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support."),Object.defineProperty(u.prototype,"parent",{enumerable:!0,get:function(){if(u.isBuffer(this))return this.buffer}}),Object.defineProperty(u.prototype,"offset",{enumerable:!0,get:function(){if(u.isBuffer(this))return this.byteOffset}}),u.poolSize=8192,u.from=function(t,e,r){return p(t,e,r)},Object.setPrototypeOf(u.prototype,Uint8Array.prototype),Object.setPrototypeOf(u,Uint8Array),u.alloc=function(t,e,r){return function(t,e,r){return c(t),t<=0?a(t):void 0!==e?"string"==typeof r?a(t).fill(e,r):a(t).fill(e):a(t)}(t,e,r)},u.allocUnsafe=function(t){return h(t)},u.allocUnsafeSlow=function(t){return h(t)},u.isBuffer=function(t){return null!=t&&!0===t._isBuffer&&t!==u.prototype},u.compare=function(t,e){if(K(t,Uint8Array)&&(t=u.from(t,t.offset,t.byteLength)),K(e,Uint8Array)&&(e=u.from(e,e.offset,e.byteLength)),!u.isBuffer(t)||!u.isBuffer(e))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(t===e)return 0;let r=t.length,o=e.length;for(let n=0,i=Math.min(r,o);n<i;++n)if(t[n]!==e[n]){r=t[n],o=e[n];break}return r<o?-1:o<r?1:0},u.isEncoding=function(t){switch(String(t).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}},u.concat=function(t,e){if(!Array.isArray(t))throw new TypeError('"list" argument must be an Array of Buffers');if(0===t.length)return u.alloc(0);let r;if(void 0===e)for(e=0,r=0;r<t.length;++r)e+=t[r].length;const o=u.allocUnsafe(e);let n=0;for(r=0;r<t.length;++r){let e=t[r];if(K(e,Uint8Array))n+e.length>o.length?(u.isBuffer(e)||(e=u.from(e)),e.copy(o,n)):Uint8Array.prototype.set.call(o,e,n);else{if(!u.isBuffer(e))throw new TypeError('"list" argument must be an Array of Buffers');e.copy(o,n)}n+=e.length}return o},u.byteLength=y,u.prototype._isBuffer=!0,u.prototype.swap16=function(){const t=this.length;if(t%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(let e=0;e<t;e+=2)m(this,e,e+1);return this},u.prototype.swap32=function(){const t=this.length;if(t%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(let e=0;e<t;e+=4)m(this,e,e+3),m(this,e+1,e+2);return this},u.prototype.swap64=function(){const t=this.length;if(t%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(let e=0;e<t;e+=8)m(this,e,e+7),m(this,e+1,e+6),m(this,e+2,e+5),m(this,e+3,e+4);return this},u.prototype.toString=function(){const t=this.length;return 0===t?"":0===arguments.length?P(this,0,t):g.apply(this,arguments)},u.prototype.toLocaleString=u.prototype.toString,u.prototype.equals=function(t){if(!u.isBuffer(t))throw new TypeError("Argument must be a Buffer");return this===t||0===u.compare(this,t)},u.prototype.inspect=function(){let t="";const r=e.INSPECT_MAX_BYTES;return t=this.toString("hex",0,r).replace(/(.{2})/g,"$1 ").trim(),this.length>r&&(t+=" ... "),"<Buffer "+t+">"},i&&(u.prototype[i]=u.prototype.inspect),u.prototype.compare=function(t,e,r,o,n){if(K(t,Uint8Array)&&(t=u.from(t,t.offset,t.byteLength)),!u.isBuffer(t))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof t);if(void 0===e&&(e=0),void 0===r&&(r=t?t.length:0),void 0===o&&(o=0),void 0===n&&(n=this.length),e<0||r>t.length||o<0||n>this.length)throw new RangeError("out of range index");if(o>=n&&e>=r)return 0;if(o>=n)return-1;if(e>=r)return 1;if(this===t)return 0;let i=(n>>>=0)-(o>>>=0),s=(r>>>=0)-(e>>>=0);const a=Math.min(i,s),p=this.slice(o,n),c=t.slice(e,r);for(let t=0;t<a;++t)if(p[t]!==c[t]){i=p[t],s=c[t];break}return i<s?-1:s<i?1:0},u.prototype.includes=function(t,e,r){return-1!==this.indexOf(t,e,r)},u.prototype.indexOf=function(t,e,r){return _(this,t,e,r,!0)},u.prototype.lastIndexOf=function(t,e,r){return _(this,t,e,r,!1)},u.prototype.write=function(t,e,r,o){if(void 0===e)o="utf8",r=this.length,e=0;else if(void 0===r&&"string"==typeof e)o=e,r=this.length,e=0;else{if(!isFinite(e))throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");e>>>=0,isFinite(r)?(r>>>=0,void 0===o&&(o="utf8")):(o=r,r=void 0)}const n=this.length-e;if((void 0===r||r>n)&&(r=n),t.length>0&&(r<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");o||(o="utf8");let i=!1;for(;;)switch(o){case"hex":return T(this,t,e,r);case"utf8":case"utf-8":return b(this,t,e,r);case"ascii":case"latin1":case"binary":return E(this,t,e,r);case"base64":return v(this,t,e,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return O(this,t,e,r);default:if(i)throw new TypeError("Unknown encoding: "+o);o=(""+o).toLowerCase(),i=!0}},u.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};const N=4096;function D(t,e,r){let o="";r=Math.min(t.length,r);for(let n=e;n<r;++n)o+=String.fromCharCode(127&t[n]);return o}function C(t,e,r){let o="";r=Math.min(t.length,r);for(let n=e;n<r;++n)o+=String.fromCharCode(t[n]);return o}function k(t,e,r){const o=t.length;(!e||e<0)&&(e=0),(!r||r<0||r>o)&&(r=o);let n="";for(let o=e;o<r;++o)n+=Q[t[o]];return n}function x(t,e,r){const o=t.slice(e,r);let n="";for(let t=0;t<o.length-1;t+=2)n+=String.fromCharCode(o[t]+256*o[t+1]);return n}function A(t,e,r){if(t%1!=0||t<0)throw new RangeError("offset is not uint");if(t+e>r)throw new RangeError("Trying to access beyond buffer length")}function S(t,e,r,o,n,i){if(!u.isBuffer(t))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>n||e<i)throw new RangeError('"value" argument is out of bounds');if(r+o>t.length)throw new RangeError("Index out of range")}function L(t,e,r,o,n){q(e,o,n,t,r,7);let i=Number(e&BigInt(4294967295));t[r++]=i,i>>=8,t[r++]=i,i>>=8,t[r++]=i,i>>=8,t[r++]=i;let s=Number(e>>BigInt(32)&BigInt(4294967295));return t[r++]=s,s>>=8,t[r++]=s,s>>=8,t[r++]=s,s>>=8,t[r++]=s,r}function R(t,e,r,o,n){q(e,o,n,t,r,7);let i=Number(e&BigInt(4294967295));t[r+7]=i,i>>=8,t[r+6]=i,i>>=8,t[r+5]=i,i>>=8,t[r+4]=i;let s=Number(e>>BigInt(32)&BigInt(4294967295));return t[r+3]=s,s>>=8,t[r+2]=s,s>>=8,t[r+1]=s,s>>=8,t[r]=s,r+8}function F(t,e,r,o,n,i){if(r+o>t.length)throw new RangeError("Index out of range");if(r<0)throw new RangeError("Index out of range")}function B(t,e,r,o,i){return e=+e,r>>>=0,i||F(t,0,r,4),n.write(t,e,r,o,23,4),r+4}function j(t,e,r,o,i){return e=+e,r>>>=0,i||F(t,0,r,8),n.write(t,e,r,o,52,8),r+8}u.prototype.slice=function(t,e){const r=this.length;(t=~~t)<0?(t+=r)<0&&(t=0):t>r&&(t=r),(e=void 0===e?r:~~e)<0?(e+=r)<0&&(e=0):e>r&&(e=r),e<t&&(e=t);const o=this.subarray(t,e);return Object.setPrototypeOf(o,u.prototype),o},u.prototype.readUintLE=u.prototype.readUIntLE=function(t,e,r){t>>>=0,e>>>=0,r||A(t,e,this.length);let o=this[t],n=1,i=0;for(;++i<e&&(n*=256);)o+=this[t+i]*n;return o},u.prototype.readUintBE=u.prototype.readUIntBE=function(t,e,r){t>>>=0,e>>>=0,r||A(t,e,this.length);let o=this[t+--e],n=1;for(;e>0&&(n*=256);)o+=this[t+--e]*n;return o},u.prototype.readUint8=u.prototype.readUInt8=function(t,e){return t>>>=0,e||A(t,1,this.length),this[t]},u.prototype.readUint16LE=u.prototype.readUInt16LE=function(t,e){return t>>>=0,e||A(t,2,this.length),this[t]|this[t+1]<<8},u.prototype.readUint16BE=u.prototype.readUInt16BE=function(t,e){return t>>>=0,e||A(t,2,this.length),this[t]<<8|this[t+1]},u.prototype.readUint32LE=u.prototype.readUInt32LE=function(t,e){return t>>>=0,e||A(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},u.prototype.readUint32BE=u.prototype.readUInt32BE=function(t,e){return t>>>=0,e||A(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},u.prototype.readBigUInt64LE=Z((function(t){V(t>>>=0,"offset");const e=this[t],r=this[t+7];void 0!==e&&void 0!==r||z(t,this.length-8);const o=e+256*this[++t]+65536*this[++t]+this[++t]*2**24,n=this[++t]+256*this[++t]+65536*this[++t]+r*2**24;return BigInt(o)+(BigInt(n)<<BigInt(32))})),u.prototype.readBigUInt64BE=Z((function(t){V(t>>>=0,"offset");const e=this[t],r=this[t+7];void 0!==e&&void 0!==r||z(t,this.length-8);const o=e*2**24+65536*this[++t]+256*this[++t]+this[++t],n=this[++t]*2**24+65536*this[++t]+256*this[++t]+r;return(BigInt(o)<<BigInt(32))+BigInt(n)})),u.prototype.readIntLE=function(t,e,r){t>>>=0,e>>>=0,r||A(t,e,this.length);let o=this[t],n=1,i=0;for(;++i<e&&(n*=256);)o+=this[t+i]*n;return n*=128,o>=n&&(o-=Math.pow(2,8*e)),o},u.prototype.readIntBE=function(t,e,r){t>>>=0,e>>>=0,r||A(t,e,this.length);let o=e,n=1,i=this[t+--o];for(;o>0&&(n*=256);)i+=this[t+--o]*n;return n*=128,i>=n&&(i-=Math.pow(2,8*e)),i},u.prototype.readInt8=function(t,e){return t>>>=0,e||A(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},u.prototype.readInt16LE=function(t,e){t>>>=0,e||A(t,2,this.length);const r=this[t]|this[t+1]<<8;return 32768&r?4294901760|r:r},u.prototype.readInt16BE=function(t,e){t>>>=0,e||A(t,2,this.length);const r=this[t+1]|this[t]<<8;return 32768&r?4294901760|r:r},u.prototype.readInt32LE=function(t,e){return t>>>=0,e||A(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},u.prototype.readInt32BE=function(t,e){return t>>>=0,e||A(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},u.prototype.readBigInt64LE=Z((function(t){V(t>>>=0,"offset");const e=this[t],r=this[t+7];void 0!==e&&void 0!==r||z(t,this.length-8);const o=this[t+4]+256*this[t+5]+65536*this[t+6]+(r<<24);return(BigInt(o)<<BigInt(32))+BigInt(e+256*this[++t]+65536*this[++t]+this[++t]*2**24)})),u.prototype.readBigInt64BE=Z((function(t){V(t>>>=0,"offset");const e=this[t],r=this[t+7];void 0!==e&&void 0!==r||z(t,this.length-8);const o=(e<<24)+65536*this[++t]+256*this[++t]+this[++t];return(BigInt(o)<<BigInt(32))+BigInt(this[++t]*2**24+65536*this[++t]+256*this[++t]+r)})),u.prototype.readFloatLE=function(t,e){return t>>>=0,e||A(t,4,this.length),n.read(this,t,!0,23,4)},u.prototype.readFloatBE=function(t,e){return t>>>=0,e||A(t,4,this.length),n.read(this,t,!1,23,4)},u.prototype.readDoubleLE=function(t,e){return t>>>=0,e||A(t,8,this.length),n.read(this,t,!0,52,8)},u.prototype.readDoubleBE=function(t,e){return t>>>=0,e||A(t,8,this.length),n.read(this,t,!1,52,8)},u.prototype.writeUintLE=u.prototype.writeUIntLE=function(t,e,r,o){t=+t,e>>>=0,r>>>=0,o||S(this,t,e,r,Math.pow(2,8*r)-1,0);let n=1,i=0;for(this[e]=255&t;++i<r&&(n*=256);)this[e+i]=t/n&255;return e+r},u.prototype.writeUintBE=u.prototype.writeUIntBE=function(t,e,r,o){t=+t,e>>>=0,r>>>=0,o||S(this,t,e,r,Math.pow(2,8*r)-1,0);let n=r-1,i=1;for(this[e+n]=255&t;--n>=0&&(i*=256);)this[e+n]=t/i&255;return e+r},u.prototype.writeUint8=u.prototype.writeUInt8=function(t,e,r){return t=+t,e>>>=0,r||S(this,t,e,1,255,0),this[e]=255&t,e+1},u.prototype.writeUint16LE=u.prototype.writeUInt16LE=function(t,e,r){return t=+t,e>>>=0,r||S(this,t,e,2,65535,0),this[e]=255&t,this[e+1]=t>>>8,e+2},u.prototype.writeUint16BE=u.prototype.writeUInt16BE=function(t,e,r){return t=+t,e>>>=0,r||S(this,t,e,2,65535,0),this[e]=t>>>8,this[e+1]=255&t,e+2},u.prototype.writeUint32LE=u.prototype.writeUInt32LE=function(t,e,r){return t=+t,e>>>=0,r||S(this,t,e,4,4294967295,0),this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t,e+4},u.prototype.writeUint32BE=u.prototype.writeUInt32BE=function(t,e,r){return t=+t,e>>>=0,r||S(this,t,e,4,4294967295,0),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},u.prototype.writeBigUInt64LE=Z((function(t,e=0){return L(this,t,e,BigInt(0),BigInt("0xffffffffffffffff"))})),u.prototype.writeBigUInt64BE=Z((function(t,e=0){return R(this,t,e,BigInt(0),BigInt("0xffffffffffffffff"))})),u.prototype.writeIntLE=function(t,e,r,o){if(t=+t,e>>>=0,!o){const o=Math.pow(2,8*r-1);S(this,t,e,r,o-1,-o)}let n=0,i=1,s=0;for(this[e]=255&t;++n<r&&(i*=256);)t<0&&0===s&&0!==this[e+n-1]&&(s=1),this[e+n]=(t/i>>0)-s&255;return e+r},u.prototype.writeIntBE=function(t,e,r,o){if(t=+t,e>>>=0,!o){const o=Math.pow(2,8*r-1);S(this,t,e,r,o-1,-o)}let n=r-1,i=1,s=0;for(this[e+n]=255&t;--n>=0&&(i*=256);)t<0&&0===s&&0!==this[e+n+1]&&(s=1),this[e+n]=(t/i>>0)-s&255;return e+r},u.prototype.writeInt8=function(t,e,r){return t=+t,e>>>=0,r||S(this,t,e,1,127,-128),t<0&&(t=255+t+1),this[e]=255&t,e+1},u.prototype.writeInt16LE=function(t,e,r){return t=+t,e>>>=0,r||S(this,t,e,2,32767,-32768),this[e]=255&t,this[e+1]=t>>>8,e+2},u.prototype.writeInt16BE=function(t,e,r){return t=+t,e>>>=0,r||S(this,t,e,2,32767,-32768),this[e]=t>>>8,this[e+1]=255&t,e+2},u.prototype.writeInt32LE=function(t,e,r){return t=+t,e>>>=0,r||S(this,t,e,4,2147483647,-2147483648),this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24,e+4},u.prototype.writeInt32BE=function(t,e,r){return t=+t,e>>>=0,r||S(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},u.prototype.writeBigInt64LE=Z((function(t,e=0){return L(this,t,e,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))})),u.prototype.writeBigInt64BE=Z((function(t,e=0){return R(this,t,e,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))})),u.prototype.writeFloatLE=function(t,e,r){return B(this,t,e,!0,r)},u.prototype.writeFloatBE=function(t,e,r){return B(this,t,e,!1,r)},u.prototype.writeDoubleLE=function(t,e,r){return j(this,t,e,!0,r)},u.prototype.writeDoubleBE=function(t,e,r){return j(this,t,e,!1,r)},u.prototype.copy=function(t,e,r,o){if(!u.isBuffer(t))throw new TypeError("argument should be a Buffer");if(r||(r=0),o||0===o||(o=this.length),e>=t.length&&(e=t.length),e||(e=0),o>0&&o<r&&(o=r),o===r)return 0;if(0===t.length||0===this.length)return 0;if(e<0)throw new RangeError("targetStart out of bounds");if(r<0||r>=this.length)throw new RangeError("Index out of range");if(o<0)throw new RangeError("sourceEnd out of bounds");o>this.length&&(o=this.length),t.length-e<o-r&&(o=t.length-e+r);const n=o-r;return this===t&&"function"==typeof Uint8Array.prototype.copyWithin?this.copyWithin(e,r,o):Uint8Array.prototype.set.call(t,this.subarray(r,o),e),n},u.prototype.fill=function(t,e,r,o){if("string"==typeof t){if("string"==typeof e?(o=e,e=0,r=this.length):"string"==typeof r&&(o=r,r=this.length),void 0!==o&&"string"!=typeof o)throw new TypeError("encoding must be a string");if("string"==typeof o&&!u.isEncoding(o))throw new TypeError("Unknown encoding: "+o);if(1===t.length){const e=t.charCodeAt(0);("utf8"===o&&e<128||"latin1"===o)&&(t=e)}}else"number"==typeof t?t&=255:"boolean"==typeof t&&(t=Number(t));if(e<0||this.length<e||this.length<r)throw new RangeError("Out of range index");if(r<=e)return this;let n;if(e>>>=0,r=void 0===r?this.length:r>>>0,t||(t=0),"number"==typeof t)for(n=e;n<r;++n)this[n]=t;else{const i=u.isBuffer(t)?t:u.from(t,o),s=i.length;if(0===s)throw new TypeError('The value "'+t+'" is invalid for argument "value"');for(n=0;n<r-e;++n)this[n+e]=i[n%s]}return this};const M={};function G(t,e,r){M[t]=class extends r{constructor(){super(),Object.defineProperty(this,"message",{value:e.apply(this,arguments),writable:!0,configurable:!0}),this.name=`${this.name} [${t}]`,this.stack,delete this.name}get code(){return t}set code(t){Object.defineProperty(this,"code",{configurable:!0,enumerable:!0,value:t,writable:!0})}toString(){return`${this.name} [${t}]: ${this.message}`}}}function U(t){let e="",r=t.length;const o="-"===t[0]?1:0;for(;r>=o+4;r-=3)e=`_${t.slice(r-3,r)}${e}`;return`${t.slice(0,r)}${e}`}function q(t,e,r,o,n,i){if(t>r||t<e){const o="bigint"==typeof e?"n":"";let n;throw n=i>3?0===e||e===BigInt(0)?`>= 0${o} and < 2${o} ** ${8*(i+1)}${o}`:`>= -(2${o} ** ${8*(i+1)-1}${o}) and < 2 ** ${8*(i+1)-1}${o}`:`>= ${e}${o} and <= ${r}${o}`,new M.ERR_OUT_OF_RANGE("value",n,t)}!function(t,e,r){V(e,"offset"),void 0!==t[e]&&void 0!==t[e+r]||z(e,t.length-(r+1))}(o,n,i)}function V(t,e){if("number"!=typeof t)throw new M.ERR_INVALID_ARG_TYPE(e,"number",t)}function z(t,e,r){if(Math.floor(t)!==t)throw V(t,r),new M.ERR_OUT_OF_RANGE(r||"offset","an integer",t);if(e<0)throw new M.ERR_BUFFER_OUT_OF_BOUNDS;throw new M.ERR_OUT_OF_RANGE(r||"offset",`>= ${r?1:0} and <= ${e}`,t)}G("ERR_BUFFER_OUT_OF_BOUNDS",(function(t){return t?`${t} is outside of buffer bounds`:"Attempt to access memory outside buffer bounds"}),RangeError),G("ERR_INVALID_ARG_TYPE",(function(t,e){return`The "${t}" argument must be of type number. Received type ${typeof e}`}),TypeError),G("ERR_OUT_OF_RANGE",(function(t,e,r){let o=`The value of "${t}" is out of range.`,n=r;return Number.isInteger(r)&&Math.abs(r)>2**32?n=U(String(r)):"bigint"==typeof r&&(n=String(r),(r>BigInt(2)**BigInt(32)||r<-(BigInt(2)**BigInt(32)))&&(n=U(n)),n+="n"),o+=` It must be ${e}. Received ${n}`,o}),RangeError);const H=/[^+/0-9A-Za-z-_]/g;function X(t,e){let r;e=e||1/0;const o=t.length;let n=null;const i=[];for(let s=0;s<o;++s){if(r=t.charCodeAt(s),r>55295&&r<57344){if(!n){if(r>56319){(e-=3)>-1&&i.push(239,191,189);continue}if(s+1===o){(e-=3)>-1&&i.push(239,191,189);continue}n=r;continue}if(r<56320){(e-=3)>-1&&i.push(239,191,189),n=r;continue}r=65536+(n-55296<<10|r-56320)}else n&&(e-=3)>-1&&i.push(239,191,189);if(n=null,r<128){if((e-=1)<0)break;i.push(r)}else if(r<2048){if((e-=2)<0)break;i.push(r>>6|192,63&r|128)}else if(r<65536){if((e-=3)<0)break;i.push(r>>12|224,r>>6&63|128,63&r|128)}else{if(!(r<1114112))throw new Error("Invalid code point");if((e-=4)<0)break;i.push(r>>18|240,r>>12&63|128,r>>6&63|128,63&r|128)}}return i}function Y(t){return o.toByteArray(function(t){if((t=(t=t.split("=")[0]).trim().replace(H,"")).length<2)return"";for(;t.length%4!=0;)t+="=";return t}(t))}function $(t,e,r,o){let n;for(n=0;n<o&&!(n+r>=e.length||n>=t.length);++n)e[n+r]=t[n];return n}function K(t,e){return t instanceof e||null!=t&&null!=t.constructor&&null!=t.constructor.name&&t.constructor.name===e.name}function W(t){return t!=t}const Q=function(){const t="0123456789abcdef",e=new Array(256);for(let r=0;r<16;++r){const o=16*r;for(let n=0;n<16;++n)e[o+n]=t[r]+t[n]}return e}();function Z(t){return"undefined"==typeof BigInt?J:t}function J(){throw new Error("BigInt not supported")}},8767:t=>{function e(t){if(t)return function(t){for(var r in e.prototype)t[r]=e.prototype[r];return t}(t)}t.exports=e,e.prototype.on=e.prototype.addEventListener=function(t,e){return this._callbacks=this._callbacks||{},(this._callbacks["$"+t]=this._callbacks["$"+t]||[]).push(e),this},e.prototype.once=function(t,e){function r(){this.off(t,r),e.apply(this,arguments)}return r.fn=e,this.on(t,r),this},e.prototype.off=e.prototype.removeListener=e.prototype.removeAllListeners=e.prototype.removeEventListener=function(t,e){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var r,o=this._callbacks["$"+t];if(!o)return this;if(1==arguments.length)return delete this._callbacks["$"+t],this;for(var n=0;n<o.length;n++)if((r=o[n])===e||r.fn===e){o.splice(n,1);break}return 0===o.length&&delete this._callbacks["$"+t],this},e.prototype.emit=function(t){this._callbacks=this._callbacks||{};for(var e=new Array(arguments.length-1),r=this._callbacks["$"+t],o=1;o<arguments.length;o++)e[o-1]=arguments[o];if(r){o=0;for(var n=(r=r.slice(0)).length;o<n;++o)r[o].apply(this,e)}return this},e.prototype.listeners=function(t){return this._callbacks=this._callbacks||{},this._callbacks["$"+t]||[]},e.prototype.hasListeners=function(t){return!!this.listeners(t).length}},624:t=>{function e(t){if(t)return function(t){for(var r in e.prototype)t[r]=e.prototype[r];return t}(t)}t.exports=e,e.prototype.on=e.prototype.addEventListener=function(t,e){return this._callbacks=this._callbacks||{},(this._callbacks[t]=this._callbacks[t]||[]).push(e),this},e.prototype.once=function(t,e){var r=this;function o(){r.off(t,o),e.apply(this,arguments)}return this._callbacks=this._callbacks||{},o.fn=e,this.on(t,o),this},e.prototype.off=e.prototype.removeListener=e.prototype.removeAllListeners=e.prototype.removeEventListener=function(t,e){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var r,o=this._callbacks[t];if(!o)return this;if(1==arguments.length)return delete this._callbacks[t],this;for(var n=0;n<o.length;n++)if((r=o[n])===e||r.fn===e){o.splice(n,1);break}return this},e.prototype.emit=function(t){this._callbacks=this._callbacks||{};var e=[].slice.call(arguments,1),r=this._callbacks[t];if(r)for(var o=0,n=(r=r.slice(0)).length;o<n;++o)r[o].apply(this,e);return this},e.prototype.listeners=function(t){return this._callbacks=this._callbacks||{},this._callbacks[t]||[]},e.prototype.hasListeners=function(t){return!!this.listeners(t).length}},7187:t=>{"use strict";var e,r="object"==typeof Reflect?Reflect:null,o=r&&"function"==typeof r.apply?r.apply:function(t,e,r){return Function.prototype.apply.call(t,e,r)};e=r&&"function"==typeof r.ownKeys?r.ownKeys:Object.getOwnPropertySymbols?function(t){return Object.getOwnPropertyNames(t).concat(Object.getOwnPropertySymbols(t))}:function(t){return Object.getOwnPropertyNames(t)};var n=Number.isNaN||function(t){return t!=t};function i(){i.init.call(this)}t.exports=i,t.exports.once=function(t,e){return new Promise((function(r,o){function n(){void 0!==i&&t.removeListener("error",i),r([].slice.call(arguments))}var i;"error"!==e&&(i=function(r){t.removeListener(e,n),o(r)},t.once("error",i)),t.once(e,n)}))},i.EventEmitter=i,i.prototype._events=void 0,i.prototype._eventsCount=0,i.prototype._maxListeners=void 0;var s=10;function a(t){if("function"!=typeof t)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof t)}function u(t){return void 0===t._maxListeners?i.defaultMaxListeners:t._maxListeners}function p(t,e,r,o){var n,i,s,p;if(a(r),void 0===(i=t._events)?(i=t._events=Object.create(null),t._eventsCount=0):(void 0!==i.newListener&&(t.emit("newListener",e,r.listener?r.listener:r),i=t._events),s=i[e]),void 0===s)s=i[e]=r,++t._eventsCount;else if("function"==typeof s?s=i[e]=o?[r,s]:[s,r]:o?s.unshift(r):s.push(r),(n=u(t))>0&&s.length>n&&!s.warned){s.warned=!0;var c=new Error("Possible EventEmitter memory leak detected. "+s.length+" "+String(e)+" listeners added. Use emitter.setMaxListeners() to increase limit");c.name="MaxListenersExceededWarning",c.emitter=t,c.type=e,c.count=s.length,p=c,console&&console.warn&&console.warn(p)}return t}function c(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function h(t,e,r){var o={fired:!1,wrapFn:void 0,target:t,type:e,listener:r},n=c.bind(o);return n.listener=r,o.wrapFn=n,n}function l(t,e,r){var o=t._events;if(void 0===o)return[];var n=o[e];return void 0===n?[]:"function"==typeof n?r?[n.listener||n]:[n]:r?function(t){for(var e=new Array(t.length),r=0;r<e.length;++r)e[r]=t[r].listener||t[r];return e}(n):d(n,n.length)}function f(t){var e=this._events;if(void 0!==e){var r=e[t];if("function"==typeof r)return 1;if(void 0!==r)return r.length}return 0}function d(t,e){for(var r=new Array(e),o=0;o<e;++o)r[o]=t[o];return r}Object.defineProperty(i,"defaultMaxListeners",{enumerable:!0,get:function(){return s},set:function(t){if("number"!=typeof t||t<0||n(t))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+t+".");s=t}}),i.init=function(){void 0!==this._events&&this._events!==Object.getPrototypeOf(this)._events||(this._events=Object.create(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0},i.prototype.setMaxListeners=function(t){if("number"!=typeof t||t<0||n(t))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+t+".");return this._maxListeners=t,this},i.prototype.getMaxListeners=function(){return u(this)},i.prototype.emit=function(t){for(var e=[],r=1;r<arguments.length;r++)e.push(arguments[r]);var n="error"===t,i=this._events;if(void 0!==i)n=n&&void 0===i.error;else if(!n)return!1;if(n){var s;if(e.length>0&&(s=e[0]),s instanceof Error)throw s;var a=new Error("Unhandled error."+(s?" ("+s.message+")":""));throw a.context=s,a}var u=i[t];if(void 0===u)return!1;if("function"==typeof u)o(u,this,e);else{var p=u.length,c=d(u,p);for(r=0;r<p;++r)o(c[r],this,e)}return!0},i.prototype.addListener=function(t,e){return p(this,t,e,!1)},i.prototype.on=i.prototype.addListener,i.prototype.prependListener=function(t,e){return p(this,t,e,!0)},i.prototype.once=function(t,e){return a(e),this.on(t,h(this,t,e)),this},i.prototype.prependOnceListener=function(t,e){return a(e),this.prependListener(t,h(this,t,e)),this},i.prototype.removeListener=function(t,e){var r,o,n,i,s;if(a(e),void 0===(o=this._events))return this;if(void 0===(r=o[t]))return this;if(r===e||r.listener===e)0==--this._eventsCount?this._events=Object.create(null):(delete o[t],o.removeListener&&this.emit("removeListener",t,r.listener||e));else if("function"!=typeof r){for(n=-1,i=r.length-1;i>=0;i--)if(r[i]===e||r[i].listener===e){s=r[i].listener,n=i;break}if(n<0)return this;0===n?r.shift():function(t,e){for(;e+1<t.length;e++)t[e]=t[e+1];t.pop()}(r,n),1===r.length&&(o[t]=r[0]),void 0!==o.removeListener&&this.emit("removeListener",t,s||e)}return this},i.prototype.off=i.prototype.removeListener,i.prototype.removeAllListeners=function(t){var e,r,o;if(void 0===(r=this._events))return this;if(void 0===r.removeListener)return 0===arguments.length?(this._events=Object.create(null),this._eventsCount=0):void 0!==r[t]&&(0==--this._eventsCount?this._events=Object.create(null):delete r[t]),this;if(0===arguments.length){var n,i=Object.keys(r);for(o=0;o<i.length;++o)"removeListener"!==(n=i[o])&&this.removeAllListeners(n);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if("function"==typeof(e=r[t]))this.removeListener(t,e);else if(void 0!==e)for(o=e.length-1;o>=0;o--)this.removeListener(t,e[o]);return this},i.prototype.listeners=function(t){return l(this,t,!0)},i.prototype.rawListeners=function(t){return l(this,t,!1)},i.listenerCount=function(t,e){return"function"==typeof t.listenerCount?t.listenerCount(e):f.call(t,e)},i.prototype.listenerCount=f,i.prototype.eventNames=function(){return this._eventsCount>0?e(this._events):[]}},5513:(t,e,r)=>{(e=t.exports=r(3112)).OAuth=r(5517),e.Feeds=r(4769),e.Upload=r(9772),e.Replace=r(9377)},2369:(t,e,r)=>{var o=r(569),n=r(7673).parse;function i(t,e){o.Request.call(this,t,e),this.params={}}i.prototype=Object.create(o.Request.prototype),i.prototype.query=function(t){return"string"==typeof t?Object.assign(this.params,n(t)):Object.assign(this.params,t),o.Request.prototype.query.call(this,t)},i.prototype.field=function(t,e){return"string"==typeof t?this.params[t]=e:Object.assign(this.params,t),o.Request.prototype.field.call(this,t,e)},i.prototype.param=function(t){switch(this.method){case"POST":return this.field.call(this,t);default:return this.query.call(this,t)}},e=t.exports=function(t,r){return"function"==typeof r?new e.Request("GET",t).end(r):1===arguments.length?new e.Request("GET",t):new e.Request(t,r)},Object.assign(e,o),e.Request=i},6329:t=>{t.exports=function(t,e){if(e)if(t=t||{},"string"==typeof e){if(!t.hasOwnProperty(e))throw new Error('Missing required argument "'+e+'"')}else if(0===e.filter((function(e){return t.hasOwnProperty(e)})).length)throw new Error('Missing required argument, you must provide one of the following: "'+e.join('", "')+'"')}},4893:t=>{function e(t){var e,r=t.body;if(r&&"fail"===r.stat)throw(e=new Error(r.message)).stat=r.stat,e.code=r.code,e;return t.status>=200&&t.status<300}t.exports=function(t){t.query({format:"json"}),t.query({nojsoncallback:1}),t.type("text/plain"),t.ok(e)}},4205:(t,e,r)=>{var o=r(5055);function n(t,e){t.text="",t.setEncoding("utf8"),t.on("data",(function(e){t.text+=e})),t.on("end",(function(){o.parseString(t.text,{mergeAttrs:!0,explicitArray:!1,explicitRoot:!1,explicitCharkey:!0,charkey:"_content"},(function(t,r){if(t)return e(new SyntaxError(t.message),r);"fail"===r.stat&&r.err&&((t=new Error(r.err.msg)).stat=r.stat,t.code=r.err.code),e(t,r)}))}))}t.exports=function(t){t.parse(n)}},4769:(t,e,r)=>{var o=r(2369),n=r(6329);function i(t){if(!(this instanceof i))return new i(t);this._args=Object.assign({format:"json",nojsoncallback:1},t)}i.prototype._=function(t,e){return o("GET","https://www.flickr.com/services/feeds/"+t+".gne").query(this._args).query(e)},i.prototype.publicPhotos=function(t){return this._("photos_public",t)},i.prototype.friendsPhotos=function(t){return n(t,"user_id"),this._("photos_friends",t)},i.prototype.favePhotos=function(t){return n(t,["id","nsid"]),this._("photos_faves",t)},i.prototype.groupDiscussions=function(t){return n(t,"id"),this._("groups_discuss",t)},i.prototype.groupPool=function(t){return n(t,"id"),this._("groups_pool",t)},i.prototype.forum=function(t){return this._("forums",t)},i.prototype.recentActivity=function(t){return n(t,"user_id"),this._("activity",t)},i.prototype.recentComments=function(t){return n(t,"user_id"),this._("photos_comments",t)},t.exports=i},5517:t=>{function e(){throw new Error("OAuth 1.0 is not supported in the browser")}e.createPlugin=e,t.exports=e},9377:(t,e,r)=>{var o=r(2369).Request,n=r(4205);function i(t,e,r,s){if(!(this instanceof i))return new i(t,e,r,s);if(o.call(this,"POST","https://up.flickr.com/services/replace"),"function"!=typeof t)throw new Error('Missing required argument "auth"');if(void 0===e)throw new Error('Missing required argument "photoID"');void 0===s&&(s={}),this.attach("photo",r),this.field("photo_id",e),this.field(s),this.use(n),this.use(t)}i.prototype=Object.create(o.prototype),t.exports=i},3112:(t,e,r)=>{var o=r(2369),n=r(6329),i=r(4893);function s(t,e){if(!(this instanceof s))return new s(t);this.activity._=this.auth._=this.auth.oauth._=this.blogs._=this.cameras._=this.collections._=this.commons._=this.contacts._=this.favorites._=this.galleries._=this.groups._=this.groups.discuss._=this.groups.discuss.replies._=this.groups.discuss.topics._=this.groups.members._=this.groups.pools._=this.interestingness._=this.machinetags._=this.panda._=this.people._=this.photos._=this.photos.comments._=this.photos.geo._=this.photos.licenses._=this.photos.notes._=this.photos.people._=this.photos.suggestions._=this.photos.transform._=this.photos.upload._=this.photosets._=this.photosets.comments._=this.places._=this.prefs._=this.profile._=this.push._=this.reflection._=this.stats._=this.tags._=this.test._=this.testimonials._=this.urls._=this._=function(t,e){var r,n;if("string"==typeof t&&(n=t,t=function(t){return t.query({api_key:n})}),"function"!=typeof t)throw new Error('Missing required argument "auth"');return r=(e=e||{}).host||"api.flickr.com",e.port&&(r+=":"+e.port),function(e,n,s){return void 0===s&&(s={}),s.extras&&(s.extras=function(t){if(!("string"==typeof t||Array.isArray(t)||t instanceof Set))throw new Error('Invalid type for argument "extras"');if("string"==typeof t&&(t=t.split(",")),Array.isArray(t)&&(t=new Set(t)),t instanceof Set)return Array.from(t).join(",")}(s.extras)),o(e,"https://"+r+"/services/rest").query({method:n}).query(s).use(i).use(t)}}(t,e)}s.prototype.activity={},s.prototype.activity.userComments=function(t){return this._("GET","flickr.activity.userComments",t)},s.prototype.activity.userPhotos=function(t){return this._("GET","flickr.activity.userPhotos",t)},s.prototype.auth={},s.prototype.auth.checkToken=function(t){return n(t,"auth_token"),this._("GET","flickr.auth.checkToken",t)},s.prototype.auth.getFrob=function(t){return this._("GET","flickr.auth.getFrob",t)},s.prototype.auth.getFullToken=function(t){return n(t,"mini_token"),this._("GET","flickr.auth.getFullToken",t)},s.prototype.auth.getToken=function(t){return n(t,"frob"),this._("GET","flickr.auth.getToken",t)},s.prototype.auth.oauth={},s.prototype.auth.oauth.checkToken=function(t){return n(t,"oauth_token"),this._("GET","flickr.auth.oauth.checkToken",t)},s.prototype.auth.oauth.getAccessToken=function(t){return this._("GET","flickr.auth.oauth.getAccessToken",t)},s.prototype.blogs={},s.prototype.blogs.getList=function(t){return this._("GET","flickr.blogs.getList",t)},s.prototype.blogs.getServices=function(t){return this._("GET","flickr.blogs.getServices",t)},s.prototype.blogs.postPhoto=function(t){return n(t,"photo_id"),n(t,"title"),n(t,"description"),this._("POST","flickr.blogs.postPhoto",t)},s.prototype.cameras={},s.prototype.cameras.getBrandModels=function(t){return n(t,"brand"),this._("GET","flickr.cameras.getBrandModels",t)},s.prototype.cameras.getBrands=function(t){return this._("GET","flickr.cameras.getBrands",t)},s.prototype.collections={},s.prototype.collections.getInfo=function(t){return n(t,"collection_id"),this._("GET","flickr.collections.getInfo",t)},s.prototype.collections.getTree=function(t){return this._("GET","flickr.collections.getTree",t)},s.prototype.commons={},s.prototype.commons.getInstitutions=function(t){return this._("GET","flickr.commons.getInstitutions",t)},s.prototype.contacts={},s.prototype.contacts.getList=function(t){return this._("GET","flickr.contacts.getList",t)},s.prototype.contacts.getListRecentlyUploaded=function(t){return this._("GET","flickr.contacts.getListRecentlyUploaded",t)},s.prototype.contacts.getPublicList=function(t){return n(t,"user_id"),this._("GET","flickr.contacts.getPublicList",t)},s.prototype.contacts.getTaggingSuggestions=function(t){return this._("GET","flickr.contacts.getTaggingSuggestions",t)},s.prototype.favorites={},s.prototype.favorites.add=function(t){return n(t,"photo_id"),this._("POST","flickr.favorites.add",t)},s.prototype.favorites.getContext=function(t){return n(t,"photo_id"),n(t,"user_id"),this._("GET","flickr.favorites.getContext",t)},s.prototype.favorites.getList=function(t){return this._("GET","flickr.favorites.getList",t)},s.prototype.favorites.getPublicList=function(t){return n(t,"user_id"),this._("GET","flickr.favorites.getPublicList",t)},s.prototype.favorites.remove=function(t){return n(t,"photo_id"),this._("POST","flickr.favorites.remove",t)},s.prototype.galleries={},s.prototype.galleries.addPhoto=function(t){return n(t,"gallery_id"),n(t,"photo_id"),this._("POST","flickr.galleries.addPhoto",t)},s.prototype.galleries.create=function(t){return n(t,"title"),n(t,"description"),this._("POST","flickr.galleries.create",t)},s.prototype.galleries.editMeta=function(t){return n(t,"gallery_id"),n(t,"title"),this._("POST","flickr.galleries.editMeta",t)},s.prototype.galleries.editPhoto=function(t){return n(t,"gallery_id"),n(t,"photo_id"),n(t,"comment"),this._("POST","flickr.galleries.editPhoto",t)},s.prototype.galleries.editPhotos=function(t){return n(t,"gallery_id"),n(t,"primary_photo_id"),n(t,"photo_ids"),this._("POST","flickr.galleries.editPhotos",t)},s.prototype.galleries.getInfo=function(t){return n(t,"gallery_id"),this._("GET","flickr.galleries.getInfo",t)},s.prototype.galleries.getList=function(t){return n(t,"user_id"),this._("GET","flickr.galleries.getList",t)},s.prototype.galleries.getListForPhoto=function(t){return n(t,"photo_id"),this._("GET","flickr.galleries.getListForPhoto",t)},s.prototype.galleries.getPhotos=function(t){return n(t,"gallery_id"),this._("GET","flickr.galleries.getPhotos",t)},s.prototype.groups={},s.prototype.groups.browse=function(t){return this._("GET","flickr.groups.browse",t)},s.prototype.groups.getInfo=function(t){return n(t,"group_id"),this._("GET","flickr.groups.getInfo",t)},s.prototype.groups.join=function(t){return n(t,"group_id"),this._("POST","flickr.groups.join",t)},s.prototype.groups.joinRequest=function(t){return n(t,"group_id"),n(t,"message"),n(t,"accept_rules"),this._("POST","flickr.groups.joinRequest",t)},s.prototype.groups.leave=function(t){return n(t,"group_id"),this._("POST","flickr.groups.leave",t)},s.prototype.groups.search=function(t){return n(t,"text"),this._("GET","flickr.groups.search",t)},s.prototype.groups.discuss={},s.prototype.groups.discuss.replies={},s.prototype.groups.discuss.replies.add=function(t){return n(t,"group_id"),n(t,"topic_id"),n(t,"message"),this._("POST","flickr.groups.discuss.replies.add",t)},s.prototype.groups.discuss.replies.delete=function(t){return n(t,"group_id"),n(t,"topic_id"),n(t,"reply_id"),this._("POST","flickr.groups.discuss.replies.delete",t)},s.prototype.groups.discuss.replies.edit=function(t){return n(t,"group_id"),n(t,"topic_id"),n(t,"reply_id"),n(t,"message"),this._("POST","flickr.groups.discuss.replies.edit",t)},s.prototype.groups.discuss.replies.getInfo=function(t){return n(t,"group_id"),n(t,"topic_id"),n(t,"reply_id"),this._("GET","flickr.groups.discuss.replies.getInfo",t)},s.prototype.groups.discuss.replies.getList=function(t){return n(t,"group_id"),n(t,"topic_id"),n(t,"per_page"),this._("GET","flickr.groups.discuss.replies.getList",t)},s.prototype.groups.discuss.topics={},s.prototype.groups.discuss.topics.add=function(t){return n(t,"group_id"),n(t,"subject"),n(t,"message"),this._("POST","flickr.groups.discuss.topics.add",t)},s.prototype.groups.discuss.topics.getInfo=function(t){return n(t,"group_id"),n(t,"topic_id"),this._("GET","flickr.groups.discuss.topics.getInfo",t)},s.prototype.groups.discuss.topics.getList=function(t){return n(t,"group_id"),this._("GET","flickr.groups.discuss.topics.getList",t)},s.prototype.groups.members={},s.prototype.groups.members.getList=function(t){return n(t,"group_id"),this._("GET","flickr.groups.members.getList",t)},s.prototype.groups.pools={},s.prototype.groups.pools.add=function(t){return n(t,"photo_id"),n(t,"group_id"),this._("POST","flickr.groups.pools.add",t)},s.prototype.groups.pools.getContext=function(t){return n(t,"photo_id"),n(t,"group_id"),this._("GET","flickr.groups.pools.getContext",t)},s.prototype.groups.pools.getGroups=function(t){return this._("GET","flickr.groups.pools.getGroups",t)},s.prototype.groups.pools.getPhotos=function(t){return n(t,"group_id"),this._("GET","flickr.groups.pools.getPhotos",t)},s.prototype.groups.pools.remove=function(t){return n(t,"photo_id"),n(t,"group_id"),this._("POST","flickr.groups.pools.remove",t)},s.prototype.interestingness={},s.prototype.interestingness.getList=function(t){return this._("GET","flickr.interestingness.getList",t)},s.prototype.machinetags={},s.prototype.machinetags.getNamespaces=function(t){return this._("GET","flickr.machinetags.getNamespaces",t)},s.prototype.machinetags.getPairs=function(t){return this._("GET","flickr.machinetags.getPairs",t)},s.prototype.machinetags.getPredicates=function(t){return this._("GET","flickr.machinetags.getPredicates",t)},s.prototype.machinetags.getRecentValues=function(t){return this._("GET","flickr.machinetags.getRecentValues",t)},s.prototype.machinetags.getValues=function(t){return n(t,"namespace"),n(t,"predicate"),this._("GET","flickr.machinetags.getValues",t)},s.prototype.panda={},s.prototype.panda.getList=function(t){return this._("GET","flickr.panda.getList",t)},s.prototype.panda.getPhotos=function(t){return n(t,"panda_name"),this._("GET","flickr.panda.getPhotos",t)},s.prototype.people={},s.prototype.people.findByEmail=function(t){return n(t,"find_email"),this._("GET","flickr.people.findByEmail",t)},s.prototype.people.findByUsername=function(t){return n(t,"username"),this._("GET","flickr.people.findByUsername",t)},s.prototype.people.getGroups=function(t){return n(t,"user_id"),this._("GET","flickr.people.getGroups",t)},s.prototype.people.getInfo=function(t){return n(t,"user_id"),this._("GET","flickr.people.getInfo",t)},s.prototype.people.getLimits=function(t){return this._("GET","flickr.people.getLimits",t)},s.prototype.people.getPhotos=function(t){return n(t,"user_id"),this._("GET","flickr.people.getPhotos",t)},s.prototype.people.getPhotosOf=function(t){return n(t,"user_id"),this._("GET","flickr.people.getPhotosOf",t)},s.prototype.people.getPublicGroups=function(t){return n(t,"user_id"),this._("GET","flickr.people.getPublicGroups",t)},s.prototype.people.getPublicPhotos=function(t){return n(t,"user_id"),this._("GET","flickr.people.getPublicPhotos",t)},s.prototype.people.getUploadStatus=function(t){return this._("GET","flickr.people.getUploadStatus",t)},s.prototype.photos={},s.prototype.photos.addTags=function(t){return n(t,"photo_id"),n(t,"tags"),this._("POST","flickr.photos.addTags",t)},s.prototype.photos.delete=function(t){return n(t,"photo_id"),this._("POST","flickr.photos.delete",t)},s.prototype.photos.getAllContexts=function(t){return n(t,"photo_id"),this._("GET","flickr.photos.getAllContexts",t)},s.prototype.photos.getContactsPhotos=function(t){return this._("GET","flickr.photos.getContactsPhotos",t)},s.prototype.photos.getContactsPublicPhotos=function(t){return n(t,"user_id"),this._("GET","flickr.photos.getContactsPublicPhotos",t)},s.prototype.photos.getContext=function(t){return n(t,"photo_id"),this._("GET","flickr.photos.getContext",t)},s.prototype.photos.getCounts=function(t){return this._("GET","flickr.photos.getCounts",t)},s.prototype.photos.getExif=function(t){return n(t,"photo_id"),this._("GET","flickr.photos.getExif",t)},s.prototype.photos.getFavorites=function(t){return n(t,"photo_id"),this._("GET","flickr.photos.getFavorites",t)},s.prototype.photos.getInfo=function(t){return n(t,"photo_id"),this._("GET","flickr.photos.getInfo",t)},s.prototype.photos.getNotInSet=function(t){return this._("GET","flickr.photos.getNotInSet",t)},s.prototype.photos.getPerms=function(t){return n(t,"photo_id"),this._("GET","flickr.photos.getPerms",t)},s.prototype.photos.getPopular=function(t){return this._("GET","flickr.photos.getPopular",t)},s.prototype.photos.getRecent=function(t){return this._("GET","flickr.photos.getRecent",t)},s.prototype.photos.getSizes=function(t){return n(t,"photo_id"),this._("GET","flickr.photos.getSizes",t)},s.prototype.photos.getUntagged=function(t){return this._("GET","flickr.photos.getUntagged",t)},s.prototype.photos.getWithGeoData=function(t){return this._("GET","flickr.photos.getWithGeoData",t)},s.prototype.photos.getWithoutGeoData=function(t){return this._("GET","flickr.photos.getWithoutGeoData",t)},s.prototype.photos.recentlyUpdated=function(t){return n(t,"min_date"),this._("GET","flickr.photos.recentlyUpdated",t)},s.prototype.photos.removeTag=function(t){return n(t,"tag_id"),this._("POST","flickr.photos.removeTag",t)},s.prototype.photos.search=function(t){return this._("GET","flickr.photos.search",t)},s.prototype.photos.setContentType=function(t){return n(t,"photo_id"),n(t,"content_type"),this._("POST","flickr.photos.setContentType",t)},s.prototype.photos.setDates=function(t){return n(t,"photo_id"),this._("POST","flickr.photos.setDates",t)},s.prototype.photos.setMeta=function(t){return n(t,"photo_id"),this._("POST","flickr.photos.setMeta",t)},s.prototype.photos.setPerms=function(t){return n(t,"photo_id"),n(t,"is_public"),n(t,"is_friend"),n(t,"is_family"),this._("POST","flickr.photos.setPerms",t)},s.prototype.photos.setSafetyLevel=function(t){return n(t,"photo_id"),this._("POST","flickr.photos.setSafetyLevel",t)},s.prototype.photos.setTags=function(t){return n(t,"photo_id"),n(t,"tags"),this._("POST","flickr.photos.setTags",t)},s.prototype.photos.comments={},s.prototype.photos.comments.addComment=function(t){return n(t,"photo_id"),n(t,"comment_text"),this._("POST","flickr.photos.comments.addComment",t)},s.prototype.photos.comments.deleteComment=function(t){return n(t,"comment_id"),this._("POST","flickr.photos.comments.deleteComment",t)},s.prototype.photos.comments.editComment=function(t){return n(t,"comment_id"),n(t,"comment_text"),this._("POST","flickr.photos.comments.editComment",t)},s.prototype.photos.comments.getList=function(t){return n(t,"photo_id"),this._("GET","flickr.photos.comments.getList",t)},s.prototype.photos.comments.getRecentForContacts=function(t){return this._("GET","flickr.photos.comments.getRecentForContacts",t)},s.prototype.photos.geo={},s.prototype.photos.geo.batchCorrectLocation=function(t){return n(t,"lat"),n(t,"lon"),n(t,"accuracy"),this._("POST","flickr.photos.geo.batchCorrectLocation",t)},s.prototype.photos.geo.correctLocation=function(t){return n(t,"photo_id"),n(t,"foursquare_id"),this._("POST","flickr.photos.geo.correctLocation",t)},s.prototype.photos.geo.getLocation=function(t){return n(t,"photo_id"),this._("GET","flickr.photos.geo.getLocation",t)},s.prototype.photos.geo.getPerms=function(t){return n(t,"photo_id"),this._("GET","flickr.photos.geo.getPerms",t)},s.prototype.photos.geo.photosForLocation=function(t){return n(t,"lat"),n(t,"lon"),this._("GET","flickr.photos.geo.photosForLocation",t)},s.prototype.photos.geo.removeLocation=function(t){return n(t,"photo_id"),this._("POST","flickr.photos.geo.removeLocation",t)},s.prototype.photos.geo.setContext=function(t){return n(t,"photo_id"),n(t,"context"),this._("POST","flickr.photos.geo.setContext",t)},s.prototype.photos.geo.setLocation=function(t){return n(t,"photo_id"),n(t,"lat"),n(t,"lon"),this._("POST","flickr.photos.geo.setLocation",t)},s.prototype.photos.geo.setPerms=function(t){return n(t,"is_public"),n(t,"is_contact"),n(t,"is_friend"),n(t,"is_family"),n(t,"photo_id"),this._("POST","flickr.photos.geo.setPerms",t)},s.prototype.photos.licenses={},s.prototype.photos.licenses.getInfo=function(t){return this._("GET","flickr.photos.licenses.getInfo",t)},s.prototype.photos.licenses.setLicense=function(t){return n(t,"photo_id"),n(t,"license_id"),this._("POST","flickr.photos.licenses.setLicense",t)},s.prototype.photos.notes={},s.prototype.photos.notes.add=function(t){return n(t,"photo_id"),n(t,"note_x"),n(t,"note_y"),n(t,"note_w"),n(t,"note_h"),n(t,"note_text"),this._("POST","flickr.photos.notes.add",t)},s.prototype.photos.notes.delete=function(t){return n(t,"note_id"),this._("POST","flickr.photos.notes.delete",t)},s.prototype.photos.notes.edit=function(t){return n(t,"note_id"),n(t,"note_x"),n(t,"note_y"),n(t,"note_w"),n(t,"note_h"),n(t,"note_text"),this._("POST","flickr.photos.notes.edit",t)},s.prototype.photos.people={},s.prototype.photos.people.add=function(t){return n(t,"photo_id"),n(t,"user_id"),this._("POST","flickr.photos.people.add",t)},s.prototype.photos.people.delete=function(t){return n(t,"photo_id"),n(t,"user_id"),this._("POST","flickr.photos.people.delete",t)},s.prototype.photos.people.deleteCoords=function(t){return n(t,"photo_id"),n(t,"user_id"),this._("POST","flickr.photos.people.deleteCoords",t)},s.prototype.photos.people.editCoords=function(t){return n(t,"photo_id"),n(t,"user_id"),n(t,"person_x"),n(t,"person_y"),n(t,"person_w"),n(t,"person_h"),this._("POST","flickr.photos.people.editCoords",t)},s.prototype.photos.people.getList=function(t){return n(t,"photo_id"),this._("GET","flickr.photos.people.getList",t)},s.prototype.photos.suggestions={},s.prototype.photos.suggestions.approveSuggestion=function(t){return n(t,"suggestion_id"),this._("POST","flickr.photos.suggestions.approveSuggestion",t)},s.prototype.photos.suggestions.getList=function(t){return this._("GET","flickr.photos.suggestions.getList",t)},s.prototype.photos.suggestions.rejectSuggestion=function(t){return n(t,"suggestion_id"),this._("POST","flickr.photos.suggestions.rejectSuggestion",t)},s.prototype.photos.suggestions.removeSuggestion=function(t){return n(t,"suggestion_id"),this._("POST","flickr.photos.suggestions.removeSuggestion",t)},s.prototype.photos.suggestions.suggestLocation=function(t){return n(t,"photo_id"),n(t,"lat"),n(t,"lon"),this._("POST","flickr.photos.suggestions.suggestLocation",t)},s.prototype.photos.transform={},s.prototype.photos.transform.rotate=function(t){return n(t,"photo_id"),n(t,"degrees"),this._("POST","flickr.photos.transform.rotate",t)},s.prototype.photos.upload={},s.prototype.photos.upload.checkTickets=function(t){return n(t,"tickets"),this._("GET","flickr.photos.upload.checkTickets",t)},s.prototype.photosets={},s.prototype.photosets.addPhoto=function(t){return n(t,"photoset_id"),n(t,"photo_id"),this._("POST","flickr.photosets.addPhoto",t)},s.prototype.photosets.create=function(t){return n(t,"title"),n(t,"primary_photo_id"),this._("POST","flickr.photosets.create",t)},s.prototype.photosets.delete=function(t){return n(t,"photoset_id"),this._("POST","flickr.photosets.delete",t)},s.prototype.photosets.editMeta=function(t){return n(t,"photoset_id"),n(t,"title"),this._("POST","flickr.photosets.editMeta",t)},s.prototype.photosets.editPhotos=function(t){return n(t,"photoset_id"),n(t,"primary_photo_id"),n(t,"photo_ids"),this._("POST","flickr.photosets.editPhotos",t)},s.prototype.photosets.getContext=function(t){return n(t,"photo_id"),n(t,"photoset_id"),this._("GET","flickr.photosets.getContext",t)},s.prototype.photosets.getInfo=function(t){return n(t,"photoset_id"),n(t,"user_id"),this._("GET","flickr.photosets.getInfo",t)},s.prototype.photosets.getList=function(t){return this._("GET","flickr.photosets.getList",t)},s.prototype.photosets.getPhotos=function(t){return n(t,"photoset_id"),n(t,"user_id"),this._("GET","flickr.photosets.getPhotos",t)},s.prototype.photosets.orderSets=function(t){return n(t,"photoset_ids"),this._("POST","flickr.photosets.orderSets",t)},s.prototype.photosets.removePhoto=function(t){return n(t,"photoset_id"),n(t,"photo_id"),this._("POST","flickr.photosets.removePhoto",t)},s.prototype.photosets.removePhotos=function(t){return n(t,"photoset_id"),n(t,"photo_ids"),this._("POST","flickr.photosets.removePhotos",t)},s.prototype.photosets.reorderPhotos=function(t){return n(t,"photoset_id"),n(t,"photo_ids"),this._("POST","flickr.photosets.reorderPhotos",t)},s.prototype.photosets.setPrimaryPhoto=function(t){return n(t,"photoset_id"),n(t,"photo_id"),this._("POST","flickr.photosets.setPrimaryPhoto",t)},s.prototype.photosets.comments={},s.prototype.photosets.comments.addComment=function(t){return n(t,"photoset_id"),n(t,"comment_text"),this._("POST","flickr.photosets.comments.addComment",t)},s.prototype.photosets.comments.deleteComment=function(t){return n(t,"comment_id"),this._("POST","flickr.photosets.comments.deleteComment",t)},s.prototype.photosets.comments.editComment=function(t){return n(t,"comment_id"),n(t,"comment_text"),this._("POST","flickr.photosets.comments.editComment",t)},s.prototype.photosets.comments.getList=function(t){return n(t,"photoset_id"),this._("GET","flickr.photosets.comments.getList",t)},s.prototype.places={},s.prototype.places.find=function(t){return n(t,"query"),this._("GET","flickr.places.find",t)},s.prototype.places.findByLatLon=function(t){return n(t,"lat"),n(t,"lon"),this._("GET","flickr.places.findByLatLon",t)},s.prototype.places.getChildrenWithPhotosPublic=function(t){return this._("GET","flickr.places.getChildrenWithPhotosPublic",t)},s.prototype.places.getInfo=function(t){return this._("GET","flickr.places.getInfo",t)},s.prototype.places.getInfoByUrl=function(t){return n(t,"url"),this._("GET","flickr.places.getInfoByUrl",t)},s.prototype.places.getPlaceTypes=function(t){return this._("GET","flickr.places.getPlaceTypes",t)},s.prototype.places.getShapeHistory=function(t){return this._("GET","flickr.places.getShapeHistory",t)},s.prototype.places.getTopPlacesList=function(t){return n(t,"place_type_id"),this._("GET","flickr.places.getTopPlacesList",t)},s.prototype.places.placesForBoundingBox=function(t){return n(t,"bbox"),this._("GET","flickr.places.placesForBoundingBox",t)},s.prototype.places.placesForContacts=function(t){return this._("GET","flickr.places.placesForContacts",t)},s.prototype.places.placesForTags=function(t){return n(t,"place_type_id"),this._("GET","flickr.places.placesForTags",t)},s.prototype.places.placesForUser=function(t){return this._("GET","flickr.places.placesForUser",t)},s.prototype.places.resolvePlaceId=function(t){return n(t,"place_id"),this._("GET","flickr.places.resolvePlaceId",t)},s.prototype.places.resolvePlaceURL=function(t){return n(t,"url"),this._("GET","flickr.places.resolvePlaceURL",t)},s.prototype.places.tagsForPlace=function(t){return this._("GET","flickr.places.tagsForPlace",t)},s.prototype.prefs={},s.prototype.prefs.getContentType=function(t){return this._("GET","flickr.prefs.getContentType",t)},s.prototype.prefs.getGeoPerms=function(t){return this._("GET","flickr.prefs.getGeoPerms",t)},s.prototype.prefs.getHidden=function(t){return this._("GET","flickr.prefs.getHidden",t)},s.prototype.prefs.getPrivacy=function(t){return this._("GET","flickr.prefs.getPrivacy",t)},s.prototype.prefs.getSafetyLevel=function(t){return this._("GET","flickr.prefs.getSafetyLevel",t)},s.prototype.profile={},s.prototype.profile.getProfile=function(t){return n(t,"user_id"),this._("GET","flickr.profile.getProfile",t)},s.prototype.push={},s.prototype.push.getSubscriptions=function(t){return this._("GET","flickr.push.getSubscriptions",t)},s.prototype.push.getTopics=function(t){return this._("GET","flickr.push.getTopics",t)},s.prototype.push.subscribe=function(t){return n(t,"topic"),n(t,"callback"),n(t,"verify"),this._("GET","flickr.push.subscribe",t)},s.prototype.push.unsubscribe=function(t){return n(t,"topic"),n(t,"callback"),n(t,"verify"),this._("GET","flickr.push.unsubscribe",t)},s.prototype.reflection={},s.prototype.reflection.getMethodInfo=function(t){return n(t,"method_name"),this._("GET","flickr.reflection.getMethodInfo",t)},s.prototype.reflection.getMethods=function(t){return this._("GET","flickr.reflection.getMethods",t)},s.prototype.stats={},s.prototype.stats.getCSVFiles=function(t){return this._("GET","flickr.stats.getCSVFiles",t)},s.prototype.stats.getCollectionDomains=function(t){return n(t,"date"),this._("GET","flickr.stats.getCollectionDomains",t)},s.prototype.stats.getCollectionReferrers=function(t){return n(t,"date"),n(t,"domain"),this._("GET","flickr.stats.getCollectionReferrers",t)},s.prototype.stats.getCollectionStats=function(t){return n(t,"date"),n(t,"collection_id"),this._("GET","flickr.stats.getCollectionStats",t)},s.prototype.stats.getPhotoDomains=function(t){return n(t,"date"),this._("GET","flickr.stats.getPhotoDomains",t)},s.prototype.stats.getPhotoReferrers=function(t){return n(t,"date"),n(t,"domain"),this._("GET","flickr.stats.getPhotoReferrers",t)},s.prototype.stats.getPhotoStats=function(t){return n(t,"date"),n(t,"photo_id"),this._("GET","flickr.stats.getPhotoStats",t)},s.prototype.stats.getPhotosetDomains=function(t){return n(t,"date"),this._("GET","flickr.stats.getPhotosetDomains",t)},s.prototype.stats.getPhotosetReferrers=function(t){return n(t,"date"),n(t,"domain"),this._("GET","flickr.stats.getPhotosetReferrers",t)},s.prototype.stats.getPhotosetStats=function(t){return n(t,"date"),n(t,"photoset_id"),this._("GET","flickr.stats.getPhotosetStats",t)},s.prototype.stats.getPhotostreamDomains=function(t){return n(t,"date"),this._("GET","flickr.stats.getPhotostreamDomains",t)},s.prototype.stats.getPhotostreamReferrers=function(t){return n(t,"date"),n(t,"domain"),this._("GET","flickr.stats.getPhotostreamReferrers",t)},s.prototype.stats.getPhotostreamStats=function(t){return n(t,"date"),this._("GET","flickr.stats.getPhotostreamStats",t)},s.prototype.stats.getPopularPhotos=function(t){return this._("GET","flickr.stats.getPopularPhotos",t)},s.prototype.stats.getTotalViews=function(t){return this._("GET","flickr.stats.getTotalViews",t)},s.prototype.tags={},s.prototype.tags.getClusterPhotos=function(t){return n(t,"tag"),n(t,"cluster_id"),this._("GET","flickr.tags.getClusterPhotos",t)},s.prototype.tags.getClusters=function(t){return n(t,"tag"),this._("GET","flickr.tags.getClusters",t)},s.prototype.tags.getHotList=function(t){return this._("GET","flickr.tags.getHotList",t)},s.prototype.tags.getListPhoto=function(t){return n(t,"photo_id"),this._("GET","flickr.tags.getListPhoto",t)},s.prototype.tags.getListUser=function(t){return this._("GET","flickr.tags.getListUser",t)},s.prototype.tags.getListUserPopular=function(t){return this._("GET","flickr.tags.getListUserPopular",t)},s.prototype.tags.getListUserRaw=function(t){return this._("GET","flickr.tags.getListUserRaw",t)},s.prototype.tags.getMostFrequentlyUsed=function(t){return this._("GET","flickr.tags.getMostFrequentlyUsed",t)},s.prototype.tags.getRelated=function(t){return n(t,"tag"),this._("GET","flickr.tags.getRelated",t)},s.prototype.test={},s.prototype.test.echo=function(t){return this._("GET","flickr.test.echo",t)},s.prototype.test.login=function(t){return this._("GET","flickr.test.login",t)},s.prototype.test.null=function(t){return this._("GET","flickr.test.null",t)},s.prototype.testimonials={},s.prototype.testimonials.addTestimonial=function(t){return n(t,"user_id"),n(t,"testimonial_text"),this._("POST","flickr.testimonials.addTestimonial",t)},s.prototype.testimonials.approveTestimonial=function(t){return n(t,"testimonial_id"),this._("POST","flickr.testimonials.approveTestimonial",t)},s.prototype.testimonials.deleteTestimonial=function(t){return n(t,"testimonial_id"),this._("POST","flickr.testimonials.deleteTestimonial",t)},s.prototype.testimonials.editTestimonial=function(t){return n(t,"user_id"),n(t,"testimonial_id"),n(t,"testimonial_text"),this._("POST","flickr.testimonials.editTestimonial",t)},s.prototype.testimonials.getAllTestimonialsAbout=function(t){return this._("GET","flickr.testimonials.getAllTestimonialsAbout",t)},s.prototype.testimonials.getAllTestimonialsAboutBy=function(t){return n(t,"user_id"),this._("GET","flickr.testimonials.getAllTestimonialsAboutBy",t)},s.prototype.testimonials.getAllTestimonialsBy=function(t){return this._("GET","flickr.testimonials.getAllTestimonialsBy",t)},s.prototype.testimonials.getPendingTestimonialsAbout=function(t){return this._("GET","flickr.testimonials.getPendingTestimonialsAbout",t)},s.prototype.testimonials.getPendingTestimonialsAboutBy=function(t){return n(t,"user_id"),this._("GET","flickr.testimonials.getPendingTestimonialsAboutBy",t)},s.prototype.testimonials.getPendingTestimonialsBy=function(t){return this._("GET","flickr.testimonials.getPendingTestimonialsBy",t)},s.prototype.testimonials.getTestimonialsAbout=function(t){return n(t,"user_id"),this._("GET","flickr.testimonials.getTestimonialsAbout",t)},s.prototype.testimonials.getTestimonialsAboutBy=function(t){return n(t,"user_id"),this._("GET","flickr.testimonials.getTestimonialsAboutBy",t)},s.prototype.testimonials.getTestimonialsBy=function(t){return n(t,"user_id"),this._("GET","flickr.testimonials.getTestimonialsBy",t)},s.prototype.urls={},s.prototype.urls.getGroup=function(t){return n(t,"group_id"),this._("GET","flickr.urls.getGroup",t)},s.prototype.urls.getUserPhotos=function(t){return this._("GET","flickr.urls.getUserPhotos",t)},s.prototype.urls.getUserProfile=function(t){return this._("GET","flickr.urls.getUserProfile",t)},s.prototype.urls.lookupGallery=function(t){return n(t,"url"),this._("GET","flickr.urls.lookupGallery",t)},s.prototype.urls.lookupGroup=function(t){return n(t,"url"),this._("GET","flickr.urls.lookupGroup",t)},s.prototype.urls.lookupUser=function(t){return n(t,"url"),this._("GET","flickr.urls.lookupUser",t)},t.exports=s},9772:(t,e,r)=>{var o=r(2369).Request,n=r(4205);function i(t,e,r){if(!(this instanceof i))return new i(t,e,r);if(o.call(this,"POST","https://up.flickr.com/services/upload"),"function"!=typeof t)throw new Error('Missing required argument "auth"');void 0===r&&(r={});let s=Buffer.isBuffer(e)?"flickr-sdk.jpg":void 0;this.attach("photo",e,s),this.field(r),this.use(n),this.use(t)}i.prototype=Object.create(o.prototype),t.exports=i},645:(t,e)=>{e.read=function(t,e,r,o,n){var i,s,a=8*n-o-1,u=(1<<a)-1,p=u>>1,c=-7,h=r?n-1:0,l=r?-1:1,f=t[e+h];for(h+=l,i=f&(1<<-c)-1,f>>=-c,c+=a;c>0;i=256*i+t[e+h],h+=l,c-=8);for(s=i&(1<<-c)-1,i>>=-c,c+=o;c>0;s=256*s+t[e+h],h+=l,c-=8);if(0===i)i=1-p;else{if(i===u)return s?NaN:1/0*(f?-1:1);s+=Math.pow(2,o),i-=p}return(f?-1:1)*s*Math.pow(2,i-o)},e.write=function(t,e,r,o,n,i){var s,a,u,p=8*i-n-1,c=(1<<p)-1,h=c>>1,l=23===n?Math.pow(2,-24)-Math.pow(2,-77):0,f=o?0:i-1,d=o?1:-1,y=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(a=isNaN(e)?1:0,s=c):(s=Math.floor(Math.log(e)/Math.LN2),e*(u=Math.pow(2,-s))<1&&(s--,u*=2),(e+=s+h>=1?l/u:l*Math.pow(2,1-h))*u>=2&&(s++,u/=2),s+h>=c?(a=0,s=c):s+h>=1?(a=(e*u-1)*Math.pow(2,n),s+=h):(a=e*Math.pow(2,h-1)*Math.pow(2,n),s=0));n>=8;t[r+f]=255&a,f+=d,a/=256,n-=8);for(s=s<<n|a,p+=n;p>0;t[r+f]=255&s,f+=d,s/=256,p-=8);t[r+f-d]|=128*y}},2587:t=>{"use strict";function e(t,e){return Object.prototype.hasOwnProperty.call(t,e)}t.exports=function(t,r,o,n){r=r||"&",o=o||"=";var i={};if("string"!=typeof t||0===t.length)return i;var s=/\+/g;t=t.split(r);var a=1e3;n&&"number"==typeof n.maxKeys&&(a=n.maxKeys);var u=t.length;a>0&&u>a&&(u=a);for(var p=0;p<u;++p){var c,h,l,f,d=t[p].replace(s,"%20"),y=d.indexOf(o);y>=0?(c=d.substr(0,y),h=d.substr(y+1)):(c=d,h=""),l=decodeURIComponent(c),f=decodeURIComponent(h),e(i,l)?Array.isArray(i[l])?i[l].push(f):i[l]=[i[l],f]:i[l]=f}return i}},2361:t=>{"use strict";var e=function(t){switch(typeof t){case"string":return t;case"boolean":return t?"true":"false";case"number":return isFinite(t)?t:"";default:return""}};t.exports=function(t,r,o,n){return r=r||"&",o=o||"=",null===t&&(t=void 0),"object"==typeof t?Object.keys(t).map((function(n){var i=encodeURIComponent(e(n))+o;return Array.isArray(t[n])?t[n].map((function(t){return i+encodeURIComponent(e(t))})).join(r):i+encodeURIComponent(e(t[n]))})).join(r):n?encodeURIComponent(e(n))+o+encodeURIComponent(e(t)):""}},7673:(t,e,r)=>{"use strict";e.parse=r(2587),r(2361)},9509:(t,e,r)=>{var o=r(8764),n=o.Buffer;function i(t,e){for(var r in t)e[r]=t[r]}function s(t,e,r){return n(t,e,r)}n.from&&n.alloc&&n.allocUnsafe&&n.allocUnsafeSlow?t.exports=o:(i(o,e),e.Buffer=s),i(n,s),s.from=function(t,e,r){if("number"==typeof t)throw new TypeError("Argument must not be a number");return n(t,e,r)},s.alloc=function(t,e,r){if("number"!=typeof t)throw new TypeError("Argument must be a number");var o=n(t);return void 0!==e?"string"==typeof r?o.fill(e,r):o.fill(e):o.fill(0),o},s.allocUnsafe=function(t){if("number"!=typeof t)throw new TypeError("Argument must be a number");return n(t)},s.allocUnsafeSlow=function(t){if("number"!=typeof t)throw new TypeError("Argument must be a number");return o.SlowBuffer(t)}},6099:(t,e,r)=>{!function(t){t.parser=function(t,e){return new n(t,e)},t.SAXParser=n,t.SAXStream=s,t.createStream=function(t,e){return new s(t,e)},t.MAX_BUFFER_LENGTH=65536;var e,o=["comment","sgmlDecl","textNode","tagName","doctype","procInstName","procInstBody","entity","attribName","attribValue","cdata","script"];function n(e,r){if(!(this instanceof n))return new n(e,r);var i=this;!function(t){for(var e=0,r=o.length;e<r;e++)t[o[e]]=""}(i),i.q=i.c="",i.bufferCheckPosition=t.MAX_BUFFER_LENGTH,i.opt=r||{},i.opt.lowercase=i.opt.lowercase||i.opt.lowercasetags,i.looseCase=i.opt.lowercase?"toLowerCase":"toUpperCase",i.tags=[],i.closed=i.closedRoot=i.sawRoot=!1,i.tag=i.error=null,i.strict=!!e,i.noscript=!(!e&&!i.opt.noscript),i.state=E.BEGIN,i.strictEntities=i.opt.strictEntities,i.ENTITIES=i.strictEntities?Object.create(t.XML_ENTITIES):Object.create(t.ENTITIES),i.attribList=[],i.opt.xmlns&&(i.ns=Object.create(p)),i.trackPosition=!1!==i.opt.position,i.trackPosition&&(i.position=i.line=i.column=0),O(i,"onready")}t.EVENTS=["text","processinginstruction","sgmldeclaration","doctype","comment","opentagstart","attribute","opentag","closetag","opencdata","cdata","closecdata","error","end","ready","script","opennamespace","closenamespace"],Object.create||(Object.create=function(t){function e(){}return e.prototype=t,new e}),Object.keys||(Object.keys=function(t){var e=[];for(var r in t)t.hasOwnProperty(r)&&e.push(r);return e}),n.prototype={end:function(){C(this)},write:function(e){var r=this;if(this.error)throw this.error;if(r.closed)return D(r,"Cannot write after close. Assign an onready handler.");if(null===e)return C(r);"object"==typeof e&&(e=e.toString());for(var n=0,i="";i=j(e,n++),r.c=i,i;)switch(r.trackPosition&&(r.position++,"\n"===i?(r.line++,r.column=0):r.column++),r.state){case E.BEGIN:if(r.state=E.BEGIN_WHITESPACE,"\ufeff"===i)continue;B(r,i);continue;case E.BEGIN_WHITESPACE:B(r,i);continue;case E.TEXT:if(r.sawRoot&&!r.closedRoot){for(var s=n-1;i&&"<"!==i&&"&"!==i;)(i=j(e,n++))&&r.trackPosition&&(r.position++,"\n"===i?(r.line++,r.column=0):r.column++);r.textNode+=e.substring(s,n-1)}"<"!==i||r.sawRoot&&r.closedRoot&&!r.strict?(d(i)||r.sawRoot&&!r.closedRoot||k(r,"Text data outside of root node."),"&"===i?r.state=E.TEXT_ENTITY:r.textNode+=i):(r.state=E.OPEN_WAKA,r.startTagPosition=r.position);continue;case E.SCRIPT:"<"===i?r.state=E.SCRIPT_ENDING:r.script+=i;continue;case E.SCRIPT_ENDING:"/"===i?r.state=E.CLOSE_TAG:(r.script+="<"+i,r.state=E.SCRIPT);continue;case E.OPEN_WAKA:if("!"===i)r.state=E.SGML_DECL,r.sgmlDecl="";else if(d(i));else if(m(c,i))r.state=E.OPEN_TAG,r.tagName=i;else if("/"===i)r.state=E.CLOSE_TAG,r.tagName="";else if("?"===i)r.state=E.PROC_INST,r.procInstName=r.procInstBody="";else{if(k(r,"Unencoded <"),r.startTagPosition+1<r.position){var a=r.position-r.startTagPosition;i=new Array(a).join(" ")+i}r.textNode+="<"+i,r.state=E.TEXT}continue;case E.SGML_DECL:"[CDATA["===(r.sgmlDecl+i).toUpperCase()?(I(r,"onopencdata"),r.state=E.CDATA,r.sgmlDecl="",r.cdata=""):r.sgmlDecl+i==="--"?(r.state=E.COMMENT,r.comment="",r.sgmlDecl=""):"DOCTYPE"===(r.sgmlDecl+i).toUpperCase()?(r.state=E.DOCTYPE,(r.doctype||r.sawRoot)&&k(r,"Inappropriately located doctype declaration"),r.doctype="",r.sgmlDecl=""):">"===i?(I(r,"onsgmldeclaration",r.sgmlDecl),r.sgmlDecl="",r.state=E.TEXT):y(i)?(r.state=E.SGML_DECL_QUOTED,r.sgmlDecl+=i):r.sgmlDecl+=i;continue;case E.SGML_DECL_QUOTED:i===r.q&&(r.state=E.SGML_DECL,r.q=""),r.sgmlDecl+=i;continue;case E.DOCTYPE:">"===i?(r.state=E.TEXT,I(r,"ondoctype",r.doctype),r.doctype=!0):(r.doctype+=i,"["===i?r.state=E.DOCTYPE_DTD:y(i)&&(r.state=E.DOCTYPE_QUOTED,r.q=i));continue;case E.DOCTYPE_QUOTED:r.doctype+=i,i===r.q&&(r.q="",r.state=E.DOCTYPE);continue;case E.DOCTYPE_DTD:r.doctype+=i,"]"===i?r.state=E.DOCTYPE:y(i)&&(r.state=E.DOCTYPE_DTD_QUOTED,r.q=i);continue;case E.DOCTYPE_DTD_QUOTED:r.doctype+=i,i===r.q&&(r.state=E.DOCTYPE_DTD,r.q="");continue;case E.COMMENT:"-"===i?r.state=E.COMMENT_ENDING:r.comment+=i;continue;case E.COMMENT_ENDING:"-"===i?(r.state=E.COMMENT_ENDED,r.comment=N(r.opt,r.comment),r.comment&&I(r,"oncomment",r.comment),r.comment=""):(r.comment+="-"+i,r.state=E.COMMENT);continue;case E.COMMENT_ENDED:">"!==i?(k(r,"Malformed comment"),r.comment+="--"+i,r.state=E.COMMENT):r.state=E.TEXT;continue;case E.CDATA:"]"===i?r.state=E.CDATA_ENDING:r.cdata+=i;continue;case E.CDATA_ENDING:"]"===i?r.state=E.CDATA_ENDING_2:(r.cdata+="]"+i,r.state=E.CDATA);continue;case E.CDATA_ENDING_2:">"===i?(r.cdata&&I(r,"oncdata",r.cdata),I(r,"onclosecdata"),r.cdata="",r.state=E.TEXT):"]"===i?r.cdata+="]":(r.cdata+="]]"+i,r.state=E.CDATA);continue;case E.PROC_INST:"?"===i?r.state=E.PROC_INST_ENDING:d(i)?r.state=E.PROC_INST_BODY:r.procInstName+=i;continue;case E.PROC_INST_BODY:if(!r.procInstBody&&d(i))continue;"?"===i?r.state=E.PROC_INST_ENDING:r.procInstBody+=i;continue;case E.PROC_INST_ENDING:">"===i?(I(r,"onprocessinginstruction",{name:r.procInstName,body:r.procInstBody}),r.procInstName=r.procInstBody="",r.state=E.TEXT):(r.procInstBody+="?"+i,r.state=E.PROC_INST_BODY);continue;case E.OPEN_TAG:m(h,i)?r.tagName+=i:(x(r),">"===i?L(r):"/"===i?r.state=E.OPEN_TAG_SLASH:(d(i)||k(r,"Invalid character in tag name"),r.state=E.ATTRIB));continue;case E.OPEN_TAG_SLASH:">"===i?(L(r,!0),R(r)):(k(r,"Forward-slash in opening tag not followed by >"),r.state=E.ATTRIB);continue;case E.ATTRIB:if(d(i))continue;">"===i?L(r):"/"===i?r.state=E.OPEN_TAG_SLASH:m(c,i)?(r.attribName=i,r.attribValue="",r.state=E.ATTRIB_NAME):k(r,"Invalid attribute name");continue;case E.ATTRIB_NAME:"="===i?r.state=E.ATTRIB_VALUE:">"===i?(k(r,"Attribute without value"),r.attribValue=r.attribName,S(r),L(r)):d(i)?r.state=E.ATTRIB_NAME_SAW_WHITE:m(h,i)?r.attribName+=i:k(r,"Invalid attribute name");continue;case E.ATTRIB_NAME_SAW_WHITE:if("="===i)r.state=E.ATTRIB_VALUE;else{if(d(i))continue;k(r,"Attribute without value"),r.tag.attributes[r.attribName]="",r.attribValue="",I(r,"onattribute",{name:r.attribName,value:""}),r.attribName="",">"===i?L(r):m(c,i)?(r.attribName=i,r.state=E.ATTRIB_NAME):(k(r,"Invalid attribute name"),r.state=E.ATTRIB)}continue;case E.ATTRIB_VALUE:if(d(i))continue;y(i)?(r.q=i,r.state=E.ATTRIB_VALUE_QUOTED):(k(r,"Unquoted attribute value"),r.state=E.ATTRIB_VALUE_UNQUOTED,r.attribValue=i);continue;case E.ATTRIB_VALUE_QUOTED:if(i!==r.q){"&"===i?r.state=E.ATTRIB_VALUE_ENTITY_Q:r.attribValue+=i;continue}S(r),r.q="",r.state=E.ATTRIB_VALUE_CLOSED;continue;case E.ATTRIB_VALUE_CLOSED:d(i)?r.state=E.ATTRIB:">"===i?L(r):"/"===i?r.state=E.OPEN_TAG_SLASH:m(c,i)?(k(r,"No whitespace between attributes"),r.attribName=i,r.attribValue="",r.state=E.ATTRIB_NAME):k(r,"Invalid attribute name");continue;case E.ATTRIB_VALUE_UNQUOTED:if(!g(i)){"&"===i?r.state=E.ATTRIB_VALUE_ENTITY_U:r.attribValue+=i;continue}S(r),">"===i?L(r):r.state=E.ATTRIB;continue;case E.CLOSE_TAG:if(r.tagName)">"===i?R(r):m(h,i)?r.tagName+=i:r.script?(r.script+="</"+r.tagName,r.tagName="",r.state=E.SCRIPT):(d(i)||k(r,"Invalid tagname in closing tag"),r.state=E.CLOSE_TAG_SAW_WHITE);else{if(d(i))continue;_(c,i)?r.script?(r.script+="</"+i,r.state=E.SCRIPT):k(r,"Invalid tagname in closing tag."):r.tagName=i}continue;case E.CLOSE_TAG_SAW_WHITE:if(d(i))continue;">"===i?R(r):k(r,"Invalid characters in closing tag");continue;case E.TEXT_ENTITY:case E.ATTRIB_VALUE_ENTITY_Q:case E.ATTRIB_VALUE_ENTITY_U:var u,p;switch(r.state){case E.TEXT_ENTITY:u=E.TEXT,p="textNode";break;case E.ATTRIB_VALUE_ENTITY_Q:u=E.ATTRIB_VALUE_QUOTED,p="attribValue";break;case E.ATTRIB_VALUE_ENTITY_U:u=E.ATTRIB_VALUE_UNQUOTED,p="attribValue"}";"===i?(r[p]+=F(r),r.entity="",r.state=u):m(r.entity.length?f:l,i)?r.entity+=i:(k(r,"Invalid character in entity name"),r[p]+="&"+r.entity+i,r.entity="",r.state=u);continue;default:throw new Error(r,"Unknown state: "+r.state)}return r.position>=r.bufferCheckPosition&&function(e){for(var r=Math.max(t.MAX_BUFFER_LENGTH,10),n=0,i=0,s=o.length;i<s;i++){var a=e[o[i]].length;if(a>r)switch(o[i]){case"textNode":P(e);break;case"cdata":I(e,"oncdata",e.cdata),e.cdata="";break;case"script":I(e,"onscript",e.script),e.script="";break;default:D(e,"Max buffer length exceeded: "+o[i])}n=Math.max(n,a)}var u=t.MAX_BUFFER_LENGTH-n;e.bufferCheckPosition=u+e.position}(r),r},resume:function(){return this.error=null,this},close:function(){return this.write(null)},flush:function(){var t;P(t=this),""!==t.cdata&&(I(t,"oncdata",t.cdata),t.cdata=""),""!==t.script&&(I(t,"onscript",t.script),t.script="")}};try{e=r(3086).Stream}catch(t){e=function(){}}var i=t.EVENTS.filter((function(t){return"error"!==t&&"end"!==t}));function s(t,r){if(!(this instanceof s))return new s(t,r);e.apply(this),this._parser=new n(t,r),this.writable=!0,this.readable=!0;var o=this;this._parser.onend=function(){o.emit("end")},this._parser.onerror=function(t){o.emit("error",t),o._parser.error=null},this._decoder=null,i.forEach((function(t){Object.defineProperty(o,"on"+t,{get:function(){return o._parser["on"+t]},set:function(e){if(!e)return o.removeAllListeners(t),o._parser["on"+t]=e,e;o.on(t,e)},enumerable:!0,configurable:!1})}))}s.prototype=Object.create(e.prototype,{constructor:{value:s}}),s.prototype.write=function(t){if("function"==typeof Buffer&&"function"==typeof Buffer.isBuffer&&Buffer.isBuffer(t)){if(!this._decoder){var e=r(2553).s;this._decoder=new e("utf8")}t=this._decoder.write(t)}return this._parser.write(t.toString()),this.emit("data",t),!0},s.prototype.end=function(t){return t&&t.length&&this.write(t),this._parser.end(),!0},s.prototype.on=function(t,r){var o=this;return o._parser["on"+t]||-1===i.indexOf(t)||(o._parser["on"+t]=function(){var e=1===arguments.length?[arguments[0]]:Array.apply(null,arguments);e.splice(0,0,t),o.emit.apply(o,e)}),e.prototype.on.call(o,t,r)};var a="http://www.w3.org/XML/1998/namespace",u="http://www.w3.org/2000/xmlns/",p={xml:a,xmlns:u},c=/[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,h=/[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/,l=/[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,f=/[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/;function d(t){return" "===t||"\n"===t||"\r"===t||"\t"===t}function y(t){return'"'===t||"'"===t}function g(t){return">"===t||d(t)}function m(t,e){return t.test(e)}function _(t,e){return!m(t,e)}var w,T,b,E=0;for(var v in t.STATE={BEGIN:E++,BEGIN_WHITESPACE:E++,TEXT:E++,TEXT_ENTITY:E++,OPEN_WAKA:E++,SGML_DECL:E++,SGML_DECL_QUOTED:E++,DOCTYPE:E++,DOCTYPE_QUOTED:E++,DOCTYPE_DTD:E++,DOCTYPE_DTD_QUOTED:E++,COMMENT_STARTING:E++,COMMENT:E++,COMMENT_ENDING:E++,COMMENT_ENDED:E++,CDATA:E++,CDATA_ENDING:E++,CDATA_ENDING_2:E++,PROC_INST:E++,PROC_INST_BODY:E++,PROC_INST_ENDING:E++,OPEN_TAG:E++,OPEN_TAG_SLASH:E++,ATTRIB:E++,ATTRIB_NAME:E++,ATTRIB_NAME_SAW_WHITE:E++,ATTRIB_VALUE:E++,ATTRIB_VALUE_QUOTED:E++,ATTRIB_VALUE_CLOSED:E++,ATTRIB_VALUE_UNQUOTED:E++,ATTRIB_VALUE_ENTITY_Q:E++,ATTRIB_VALUE_ENTITY_U:E++,CLOSE_TAG:E++,CLOSE_TAG_SAW_WHITE:E++,SCRIPT:E++,SCRIPT_ENDING:E++},t.XML_ENTITIES={amp:"&",gt:">",lt:"<",quot:'"',apos:"'"},t.ENTITIES={amp:"&",gt:">",lt:"<",quot:'"',apos:"'",AElig:198,Aacute:193,Acirc:194,Agrave:192,Aring:197,Atilde:195,Auml:196,Ccedil:199,ETH:208,Eacute:201,Ecirc:202,Egrave:200,Euml:203,Iacute:205,Icirc:206,Igrave:204,Iuml:207,Ntilde:209,Oacute:211,Ocirc:212,Ograve:210,Oslash:216,Otilde:213,Ouml:214,THORN:222,Uacute:218,Ucirc:219,Ugrave:217,Uuml:220,Yacute:221,aacute:225,acirc:226,aelig:230,agrave:224,aring:229,atilde:227,auml:228,ccedil:231,eacute:233,ecirc:234,egrave:232,eth:240,euml:235,iacute:237,icirc:238,igrave:236,iuml:239,ntilde:241,oacute:243,ocirc:244,ograve:242,oslash:248,otilde:245,ouml:246,szlig:223,thorn:254,uacute:250,ucirc:251,ugrave:249,uuml:252,yacute:253,yuml:255,copy:169,reg:174,nbsp:160,iexcl:161,cent:162,pound:163,curren:164,yen:165,brvbar:166,sect:167,uml:168,ordf:170,laquo:171,not:172,shy:173,macr:175,deg:176,plusmn:177,sup1:185,sup2:178,sup3:179,acute:180,micro:181,para:182,middot:183,cedil:184,ordm:186,raquo:187,frac14:188,frac12:189,frac34:190,iquest:191,times:215,divide:247,OElig:338,oelig:339,Scaron:352,scaron:353,Yuml:376,fnof:402,circ:710,tilde:732,Alpha:913,Beta:914,Gamma:915,Delta:916,Epsilon:917,Zeta:918,Eta:919,Theta:920,Iota:921,Kappa:922,Lambda:923,Mu:924,Nu:925,Xi:926,Omicron:927,Pi:928,Rho:929,Sigma:931,Tau:932,Upsilon:933,Phi:934,Chi:935,Psi:936,Omega:937,alpha:945,beta:946,gamma:947,delta:948,epsilon:949,zeta:950,eta:951,theta:952,iota:953,kappa:954,lambda:955,mu:956,nu:957,xi:958,omicron:959,pi:960,rho:961,sigmaf:962,sigma:963,tau:964,upsilon:965,phi:966,chi:967,psi:968,omega:969,thetasym:977,upsih:978,piv:982,ensp:8194,emsp:8195,thinsp:8201,zwnj:8204,zwj:8205,lrm:8206,rlm:8207,ndash:8211,mdash:8212,lsquo:8216,rsquo:8217,sbquo:8218,ldquo:8220,rdquo:8221,bdquo:8222,dagger:8224,Dagger:8225,bull:8226,hellip:8230,permil:8240,prime:8242,Prime:8243,lsaquo:8249,rsaquo:8250,oline:8254,frasl:8260,euro:8364,image:8465,weierp:8472,real:8476,trade:8482,alefsym:8501,larr:8592,uarr:8593,rarr:8594,darr:8595,harr:8596,crarr:8629,lArr:8656,uArr:8657,rArr:8658,dArr:8659,hArr:8660,forall:8704,part:8706,exist:8707,empty:8709,nabla:8711,isin:8712,notin:8713,ni:8715,prod:8719,sum:8721,minus:8722,lowast:8727,radic:8730,prop:8733,infin:8734,ang:8736,and:8743,or:8744,cap:8745,cup:8746,int:8747,there4:8756,sim:8764,cong:8773,asymp:8776,ne:8800,equiv:8801,le:8804,ge:8805,sub:8834,sup:8835,nsub:8836,sube:8838,supe:8839,oplus:8853,otimes:8855,perp:8869,sdot:8901,lceil:8968,rceil:8969,lfloor:8970,rfloor:8971,lang:9001,rang:9002,loz:9674,spades:9824,clubs:9827,hearts:9829,diams:9830},Object.keys(t.ENTITIES).forEach((function(e){var r=t.ENTITIES[e],o="number"==typeof r?String.fromCharCode(r):r;t.ENTITIES[e]=o})),t.STATE)t.STATE[t.STATE[v]]=v;function O(t,e,r){t[e]&&t[e](r)}function I(t,e,r){t.textNode&&P(t),O(t,e,r)}function P(t){t.textNode=N(t.opt,t.textNode),t.textNode&&O(t,"ontext",t.textNode),t.textNode=""}function N(t,e){return t.trim&&(e=e.trim()),t.normalize&&(e=e.replace(/\s+/g," ")),e}function D(t,e){return P(t),t.trackPosition&&(e+="\nLine: "+t.line+"\nColumn: "+t.column+"\nChar: "+t.c),e=new Error(e),t.error=e,O(t,"onerror",e),t}function C(t){return t.sawRoot&&!t.closedRoot&&k(t,"Unclosed root tag"),t.state!==E.BEGIN&&t.state!==E.BEGIN_WHITESPACE&&t.state!==E.TEXT&&D(t,"Unexpected end"),P(t),t.c="",t.closed=!0,O(t,"onend"),n.call(t,t.strict,t.opt),t}function k(t,e){if("object"!=typeof t||!(t instanceof n))throw new Error("bad call to strictFail");t.strict&&D(t,e)}function x(t){t.strict||(t.tagName=t.tagName[t.looseCase]());var e=t.tags[t.tags.length-1]||t,r=t.tag={name:t.tagName,attributes:{}};t.opt.xmlns&&(r.ns=e.ns),t.attribList.length=0,I(t,"onopentagstart",r)}function A(t,e){var r=t.indexOf(":")<0?["",t]:t.split(":"),o=r[0],n=r[1];return e&&"xmlns"===t&&(o="xmlns",n=""),{prefix:o,local:n}}function S(t){if(t.strict||(t.attribName=t.attribName[t.looseCase]()),-1!==t.attribList.indexOf(t.attribName)||t.tag.attributes.hasOwnProperty(t.attribName))t.attribName=t.attribValue="";else{if(t.opt.xmlns){var e=A(t.attribName,!0),r=e.prefix,o=e.local;if("xmlns"===r)if("xml"===o&&t.attribValue!==a)k(t,"xml: prefix must be bound to "+a+"\nActual: "+t.attribValue);else if("xmlns"===o&&t.attribValue!==u)k(t,"xmlns: prefix must be bound to "+u+"\nActual: "+t.attribValue);else{var n=t.tag,i=t.tags[t.tags.length-1]||t;n.ns===i.ns&&(n.ns=Object.create(i.ns)),n.ns[o]=t.attribValue}t.attribList.push([t.attribName,t.attribValue])}else t.tag.attributes[t.attribName]=t.attribValue,I(t,"onattribute",{name:t.attribName,value:t.attribValue});t.attribName=t.attribValue=""}}function L(t,e){if(t.opt.xmlns){var r=t.tag,o=A(t.tagName);r.prefix=o.prefix,r.local=o.local,r.uri=r.ns[o.prefix]||"",r.prefix&&!r.uri&&(k(t,"Unbound namespace prefix: "+JSON.stringify(t.tagName)),r.uri=o.prefix);var n=t.tags[t.tags.length-1]||t;r.ns&&n.ns!==r.ns&&Object.keys(r.ns).forEach((function(e){I(t,"onopennamespace",{prefix:e,uri:r.ns[e]})}));for(var i=0,s=t.attribList.length;i<s;i++){var a=t.attribList[i],u=a[0],p=a[1],c=A(u,!0),h=c.prefix,l=c.local,f=""===h?"":r.ns[h]||"",d={name:u,value:p,prefix:h,local:l,uri:f};h&&"xmlns"!==h&&!f&&(k(t,"Unbound namespace prefix: "+JSON.stringify(h)),d.uri=h),t.tag.attributes[u]=d,I(t,"onattribute",d)}t.attribList.length=0}t.tag.isSelfClosing=!!e,t.sawRoot=!0,t.tags.push(t.tag),I(t,"onopentag",t.tag),e||(t.noscript||"script"!==t.tagName.toLowerCase()?t.state=E.TEXT:t.state=E.SCRIPT,t.tag=null,t.tagName=""),t.attribName=t.attribValue="",t.attribList.length=0}function R(t){if(!t.tagName)return k(t,"Weird empty close tag."),t.textNode+="</>",void(t.state=E.TEXT);if(t.script){if("script"!==t.tagName)return t.script+="</"+t.tagName+">",t.tagName="",void(t.state=E.SCRIPT);I(t,"onscript",t.script),t.script=""}var e=t.tags.length,r=t.tagName;t.strict||(r=r[t.looseCase]());for(var o=r;e--&&t.tags[e].name!==o;)k(t,"Unexpected close tag");if(e<0)return k(t,"Unmatched closing tag: "+t.tagName),t.textNode+="</"+t.tagName+">",void(t.state=E.TEXT);t.tagName=r;for(var n=t.tags.length;n-- >e;){var i=t.tag=t.tags.pop();t.tagName=t.tag.name,I(t,"onclosetag",t.tagName);var s={};for(var a in i.ns)s[a]=i.ns[a];var u=t.tags[t.tags.length-1]||t;t.opt.xmlns&&i.ns!==u.ns&&Object.keys(i.ns).forEach((function(e){var r=i.ns[e];I(t,"onclosenamespace",{prefix:e,uri:r})}))}0===e&&(t.closedRoot=!0),t.tagName=t.attribValue=t.attribName="",t.attribList.length=0,t.state=E.TEXT}function F(t){var e,r=t.entity,o=r.toLowerCase(),n="";return t.ENTITIES[r]?t.ENTITIES[r]:t.ENTITIES[o]?t.ENTITIES[o]:("#"===(r=o).charAt(0)&&("x"===r.charAt(1)?(r=r.slice(2),n=(e=parseInt(r,16)).toString(16)):(r=r.slice(1),n=(e=parseInt(r,10)).toString(10))),r=r.replace(/^0+/,""),isNaN(e)||n.toLowerCase()!==r?(k(t,"Invalid character entity"),"&"+t.entity+";"):String.fromCodePoint(e))}function B(t,e){"<"===e?(t.state=E.OPEN_WAKA,t.startTagPosition=t.position):d(e)||(k(t,"Non-whitespace before first tag."),t.textNode=e,t.state=E.TEXT)}function j(t,e){var r="";return e<t.length&&(r=t.charAt(e)),r}E=t.STATE,String.fromCodePoint||(w=String.fromCharCode,T=Math.floor,b=function(){var t,e,r=16384,o=[],n=-1,i=arguments.length;if(!i)return"";for(var s="";++n<i;){var a=Number(arguments[n]);if(!isFinite(a)||a<0||a>1114111||T(a)!==a)throw RangeError("Invalid code point: "+a);a<=65535?o.push(a):(t=55296+((a-=65536)>>10),e=a%1024+56320,o.push(t,e)),(n+1===i||o.length>r)&&(s+=w.apply(null,o),o.length=0)}return s},Object.defineProperty?Object.defineProperty(String,"fromCodePoint",{value:b,configurable:!0,writable:!0}):String.fromCodePoint=b)}(e)},3086:(t,e,r)=>{var o=r(624);function n(){o.call(this)}n.prototype=new o,t.exports=n,n.Stream=n,n.prototype.pipe=function(t,e){var r=this;function o(e){t.writable&&!1===t.write(e)&&r.pause&&r.pause()}function n(){r.readable&&r.resume&&r.resume()}r.on("data",o),t.on("drain",n),t._isStdio||e&&!1===e.end||(r.on("end",s),r.on("close",a));var i=!1;function s(){i||(i=!0,t.end())}function a(){i||(i=!0,"function"==typeof t.destroy&&t.destroy())}function u(t){if(p(),!this.hasListeners("error"))throw t}function p(){r.off("data",o),t.off("drain",n),r.off("end",s),r.off("close",a),r.off("error",u),t.off("error",u),r.off("end",p),r.off("close",p),t.off("end",p),t.off("close",p)}return r.on("error",u),t.on("error",u),r.on("end",p),r.on("close",p),t.on("end",p),t.on("close",p),t.emit("pipe",r),t}},2553:(t,e,r)=>{"use strict";var o=r(9509).Buffer,n=o.isEncoding||function(t){switch((t=""+t)&&t.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}};function i(t){var e;switch(this.encoding=function(t){var e=function(t){if(!t)return"utf8";for(var e;;)switch(t){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 t;default:if(e)return;t=(""+t).toLowerCase(),e=!0}}(t);if("string"!=typeof e&&(o.isEncoding===n||!n(t)))throw new Error("Unknown encoding: "+t);return e||t}(t),this.encoding){case"utf16le":this.text=u,this.end=p,e=4;break;case"utf8":this.fillLast=a,e=4;break;case"base64":this.text=c,this.end=h,e=3;break;default:return this.write=l,void(this.end=f)}this.lastNeed=0,this.lastTotal=0,this.lastChar=o.allocUnsafe(e)}function s(t){return t<=127?0:t>>5==6?2:t>>4==14?3:t>>3==30?4:t>>6==2?-1:-2}function a(t){var e=this.lastTotal-this.lastNeed,r=function(t,e,r){if(128!=(192&e[0]))return t.lastNeed=0,"�";if(t.lastNeed>1&&e.length>1){if(128!=(192&e[1]))return t.lastNeed=1,"�";if(t.lastNeed>2&&e.length>2&&128!=(192&e[2]))return t.lastNeed=2,"�"}}(this,t);return void 0!==r?r:this.lastNeed<=t.length?(t.copy(this.lastChar,e,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(t.copy(this.lastChar,e,0,t.length),void(this.lastNeed-=t.length))}function u(t,e){if((t.length-e)%2==0){var r=t.toString("utf16le",e);if(r){var o=r.charCodeAt(r.length-1);if(o>=55296&&o<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=t[t.length-2],this.lastChar[1]=t[t.length-1],r.slice(0,-1)}return r}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=t[t.length-1],t.toString("utf16le",e,t.length-1)}function p(t){var e=t&&t.length?this.write(t):"";if(this.lastNeed){var r=this.lastTotal-this.lastNeed;return e+this.lastChar.toString("utf16le",0,r)}return e}function c(t,e){var r=(t.length-e)%3;return 0===r?t.toString("base64",e):(this.lastNeed=3-r,this.lastTotal=3,1===r?this.lastChar[0]=t[t.length-1]:(this.lastChar[0]=t[t.length-2],this.lastChar[1]=t[t.length-1]),t.toString("base64",e,t.length-r))}function h(t){var e=t&&t.length?this.write(t):"";return this.lastNeed?e+this.lastChar.toString("base64",0,3-this.lastNeed):e}function l(t){return t.toString(this.encoding)}function f(t){return t&&t.length?this.write(t):""}e.s=i,i.prototype.write=function(t){if(0===t.length)return"";var e,r;if(this.lastNeed){if(void 0===(e=this.fillLast(t)))return"";r=this.lastNeed,this.lastNeed=0}else r=0;return r<t.length?e?e+this.text(t,r):this.text(t,r):e||""},i.prototype.end=function(t){var e=t&&t.length?this.write(t):"";return this.lastNeed?e+"�":e},i.prototype.text=function(t,e){var r=function(t,e,r){var o=e.length-1;if(o<r)return 0;var n=s(e[o]);return n>=0?(n>0&&(t.lastNeed=n-1),n):--o<r||-2===n?0:(n=s(e[o]))>=0?(n>0&&(t.lastNeed=n-2),n):--o<r||-2===n?0:(n=s(e[o]))>=0?(n>0&&(2===n?n=0:t.lastNeed=n-3),n):0}(this,t,e);if(!this.lastNeed)return t.toString("utf8",e);this.lastTotal=r;var o=t.length-(r-this.lastNeed);return t.copy(this.lastChar,0,o),t.toString("utf8",e,o)},i.prototype.fillLast=function(t){if(this.lastNeed<=t.length)return t.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);t.copy(this.lastChar,this.lastTotal-this.lastNeed,0,t.length),this.lastNeed-=t.length}},7903:t=>{function e(){this._defaults=[]}["use","on","once","set","query","type","accept","auth","withCredentials","sortQuery","retry","ok","redirects","timeout","buffer","serialize","parse","ca","key","pfx","cert"].forEach((function(t){e.prototype[t]=function(){return this._defaults.push({fn:t,arguments}),this}})),e.prototype._setDefaults=function(t){this._defaults.forEach((function(e){t[e.fn].apply(t,e.arguments)}))},t.exports=e},569:function(t,e,r){var o;"undefined"!=typeof window?o=window:"undefined"!=typeof self?o=self:(console.warn("Using browser-only version of superagent in non-browser environment"),o=this);var n=r(8767),i=r(8899),s=r(4960),a=r(1097),u=r(7903);function p(){}var c=e=t.exports=function(t,r){return"function"==typeof r?new e.Request("GET",t).end(r):1==arguments.length?new e.Request("GET",t):new e.Request(t,r)};e.Request=m,c.getXHR=function(){if(!(!o.XMLHttpRequest||o.location&&"file:"==o.location.protocol&&o.ActiveXObject))return new XMLHttpRequest;try{return new ActiveXObject("Microsoft.XMLHTTP")}catch(t){}try{return new ActiveXObject("Msxml2.XMLHTTP.6.0")}catch(t){}try{return new ActiveXObject("Msxml2.XMLHTTP.3.0")}catch(t){}try{return new ActiveXObject("Msxml2.XMLHTTP")}catch(t){}throw Error("Browser-only version of superagent could not find XHR")};var h="".trim?function(t){return t.trim()}:function(t){return t.replace(/(^\s*|\s*$)/g,"")};function l(t){if(!s(t))return t;var e=[];for(var r in t)f(e,r,t[r]);return e.join("&")}function f(t,e,r){if(null!=r)if(Array.isArray(r))r.forEach((function(r){f(t,e,r)}));else if(s(r))for(var o in r)f(t,e+"["+o+"]",r[o]);else t.push(encodeURIComponent(e)+"="+encodeURIComponent(r));else null===r&&t.push(encodeURIComponent(e))}function d(t){for(var e,r,o={},n=t.split("&"),i=0,s=n.length;i<s;++i)-1==(r=(e=n[i]).indexOf("="))?o[decodeURIComponent(e)]="":o[decodeURIComponent(e.slice(0,r))]=decodeURIComponent(e.slice(r+1));return o}function y(t){return/[\/+]json($|[^-\w])/.test(t)}function g(t){this.req=t,this.xhr=this.req.xhr,this.text="HEAD"!=this.req.method&&(""===this.xhr.responseType||"text"===this.xhr.responseType)||void 0===this.xhr.responseType?this.xhr.responseText:null,this.statusText=this.req.xhr.statusText;var e=this.xhr.status;1223===e&&(e=204),this._setStatusProperties(e),this.header=this.headers=function(t){for(var e,r,o,n,i=t.split(/\r?\n/),s={},a=0,u=i.length;a<u;++a)-1!==(e=(r=i[a]).indexOf(":"))&&(o=r.slice(0,e).toLowerCase(),n=h(r.slice(e+1)),s[o]=n);return s}(this.xhr.getAllResponseHeaders()),this.header["content-type"]=this.xhr.getResponseHeader("content-type"),this._setHeaderProperties(this.header),null===this.text&&t._responseType?this.body=this.xhr.response:this.body="HEAD"!=this.req.method?this._parseBody(this.text?this.text:this.xhr.response):null}function m(t,e){var r=this;this._query=this._query||[],this.method=t,this.url=e,this.header={},this._header={},this.on("end",(function(){var t,e=null,o=null;try{o=new g(r)}catch(t){return(e=new Error("Parser is unable to parse the response")).parse=!0,e.original=t,r.xhr?(e.rawResponse=void 0===r.xhr.responseType?r.xhr.responseText:r.xhr.response,e.status=r.xhr.status?r.xhr.status:null,e.statusCode=e.status):(e.rawResponse=null,e.status=null),r.callback(e)}r.emit("response",o);try{r._isResponseOK(o)||(t=new Error(o.statusText||"Unsuccessful HTTP response"))}catch(e){t=e}t?(t.original=e,t.response=o,t.status=o.status,r.callback(t,o)):r.callback(null,o)}))}function _(t,e,r){var o=c("DELETE",t);return"function"==typeof e&&(r=e,e=null),e&&o.send(e),r&&o.end(r),o}c.serializeObject=l,c.parseString=d,c.types={html:"text/html",json:"application/json",xml:"text/xml",urlencoded:"application/x-www-form-urlencoded",form:"application/x-www-form-urlencoded","form-data":"application/x-www-form-urlencoded"},c.serialize={"application/x-www-form-urlencoded":l,"application/json":JSON.stringify},c.parse={"application/x-www-form-urlencoded":d,"application/json":JSON.parse},a(g.prototype),g.prototype._parseBody=function(t){var e=c.parse[this.type];return this.req._parser?this.req._parser(this,t):(!e&&y(this.type)&&(e=c.parse["application/json"]),e&&t&&(t.length||t instanceof Object)?e(t):null)},g.prototype.toError=function(){var t=this.req,e=t.method,r=t.url,o="cannot "+e+" "+r+" ("+this.status+")",n=new Error(o);return n.status=this.status,n.method=e,n.url=r,n},c.Response=g,n(m.prototype),i(m.prototype),m.prototype.type=function(t){return this.set("Content-Type",c.types[t]||t),this},m.prototype.accept=function(t){return this.set("Accept",c.types[t]||t),this},m.prototype.auth=function(t,e,r){1===arguments.length&&(e=""),"object"==typeof e&&null!==e&&(r=e,e=""),r||(r={type:"function"==typeof btoa?"basic":"auto"});var o=function(t){if("function"==typeof btoa)return btoa(t);throw new Error("Cannot use basic auth, btoa is not a function")};return this._auth(t,e,r,o)},m.prototype.query=function(t){return"string"!=typeof t&&(t=l(t)),t&&this._query.push(t),this},m.prototype.attach=function(t,e,r){if(e){if(this._data)throw Error("superagent can't mix .send() and .attach()");this._getFormData().append(t,e,r||e.name)}return this},m.prototype._getFormData=function(){return this._formData||(this._formData=new o.FormData),this._formData},m.prototype.callback=function(t,e){if(this._shouldRetry(t,e))return this._retry();var r=this._callback;this.clearTimeout(),t&&(this._maxRetries&&(t.retries=this._retries-1),this.emit("error",t)),r(t,e)},m.prototype.crossDomainError=function(){var t=new Error("Request has been terminated\nPossible causes: the network is offline, Origin is not allowed by Access-Control-Allow-Origin, the page is being unloaded, etc.");t.crossDomain=!0,t.status=this.status,t.method=this.method,t.url=this.url,this.callback(t)},m.prototype.buffer=m.prototype.ca=m.prototype.agent=function(){return console.warn("This is not supported in browser version of superagent"),this},m.prototype.pipe=m.prototype.write=function(){throw Error("Streaming is not supported in browser version of superagent")},m.prototype._isHost=function(t){return t&&"object"==typeof t&&!Array.isArray(t)&&"[object Object]"!==Object.prototype.toString.call(t)},m.prototype.end=function(t){return this._endCalled&&console.warn("Warning: .end() was called twice. This is not supported in superagent"),this._endCalled=!0,this._callback=t||p,this._finalizeQueryString(),this._end()},m.prototype._end=function(){var t=this,e=this.xhr=c.getXHR(),r=this._formData||this._data;this._setTimeouts(),e.onreadystatechange=function(){var r=e.readyState;if(r>=2&&t._responseTimeoutTimer&&clearTimeout(t._responseTimeoutTimer),4==r){var o;try{o=e.status}catch(t){o=0}if(!o){if(t.timedout||t._aborted)return;return t.crossDomainError()}t.emit("end")}};var o=function(e,r){r.total>0&&(r.percent=r.loaded/r.total*100),r.direction=e,t.emit("progress",r)};if(this.hasListeners("progress"))try{e.onprogress=o.bind(null,"download"),e.upload&&(e.upload.onprogress=o.bind(null,"upload"))}catch(t){}try{this.username&&this.password?e.open(this.method,this.url,!0,this.username,this.password):e.open(this.method,this.url,!0)}catch(t){return this.callback(t)}if(this._withCredentials&&(e.withCredentials=!0),!this._formData&&"GET"!=this.method&&"HEAD"!=this.method&&"string"!=typeof r&&!this._isHost(r)){var n=this._header["content-type"],i=this._serializer||c.serialize[n?n.split(";")[0]:""];!i&&y(n)&&(i=c.serialize["application/json"]),i&&(r=i(r))}for(var s in this.header)null!=this.header[s]&&this.header.hasOwnProperty(s)&&e.setRequestHeader(s,this.header[s]);return this._responseType&&(e.responseType=this._responseType),this.emit("request",this),e.send(void 0!==r?r:null),this},c.agent=function(){return new u},["GET","POST","OPTIONS","PATCH","PUT","DELETE"].forEach((function(t){u.prototype[t.toLowerCase()]=function(e,r){var o=new c.Request(t,e);return this._setDefaults(o),r&&o.end(r),o}})),u.prototype.del=u.prototype.delete,c.get=function(t,e,r){var o=c("GET",t);return"function"==typeof e&&(r=e,e=null),e&&o.query(e),r&&o.end(r),o},c.head=function(t,e,r){var o=c("HEAD",t);return"function"==typeof e&&(r=e,e=null),e&&o.query(e),r&&o.end(r),o},c.options=function(t,e,r){var o=c("OPTIONS",t);return"function"==typeof e&&(r=e,e=null),e&&o.send(e),r&&o.end(r),o},c.del=_,c.delete=_,c.patch=function(t,e,r){var o=c("PATCH",t);return"function"==typeof e&&(r=e,e=null),e&&o.send(e),r&&o.end(r),o},c.post=function(t,e,r){var o=c("POST",t);return"function"==typeof e&&(r=e,e=null),e&&o.send(e),r&&o.end(r),o},c.put=function(t,e,r){var o=c("PUT",t);return"function"==typeof e&&(r=e,e=null),e&&o.send(e),r&&o.end(r),o}},4960:t=>{"use strict";t.exports=function(t){return null!==t&&"object"==typeof t}},8899:(t,e,r)=>{"use strict";var o=r(4960);function n(t){if(t)return function(t){for(var e in n.prototype)t[e]=n.prototype[e];return t}(t)}t.exports=n,n.prototype.clearTimeout=function(){return clearTimeout(this._timer),clearTimeout(this._responseTimeoutTimer),delete this._timer,delete this._responseTimeoutTimer,this},n.prototype.parse=function(t){return this._parser=t,this},n.prototype.responseType=function(t){return this._responseType=t,this},n.prototype.serialize=function(t){return this._serializer=t,this},n.prototype.timeout=function(t){if(!t||"object"!=typeof t)return this._timeout=t,this._responseTimeout=0,this;for(var e in t)switch(e){case"deadline":this._timeout=t.deadline;break;case"response":this._responseTimeout=t.response;break;default:console.warn("Unknown timeout option",e)}return this},n.prototype.retry=function(t,e){return 0!==arguments.length&&!0!==t||(t=1),t<=0&&(t=0),this._maxRetries=t,this._retries=0,this._retryCallback=e,this};var i=["ECONNRESET","ETIMEDOUT","EADDRINFO","ESOCKETTIMEDOUT"];n.prototype._shouldRetry=function(t,e){if(!this._maxRetries||this._retries++>=this._maxRetries)return!1;if(this._retryCallback)try{var r=this._retryCallback(t,e);if(!0===r)return!0;if(!1===r)return!1}catch(t){console.error(t)}if(e&&e.status&&e.status>=500&&501!=e.status)return!0;if(t){if(t.code&&~i.indexOf(t.code))return!0;if(t.timeout&&"ECONNABORTED"==t.code)return!0;if(t.crossDomain)return!0}return!1},n.prototype._retry=function(){return this.clearTimeout(),this.req&&(this.req=null,this.req=this.request()),this._aborted=!1,this.timedout=!1,this._end()},n.prototype.then=function(t,e){if(!this._fullfilledPromise){var r=this;this._endCalled&&console.warn("Warning: superagent request was sent twice, because both .end() and .then() were called. Never call .end() if you use promises"),this._fullfilledPromise=new Promise((function(t,e){r.end((function(r,o){r?e(r):t(o)}))}))}return this._fullfilledPromise.then(t,e)},n.prototype.catch=function(t){return this.then(void 0,t)},n.prototype.use=function(t){return t(this),this},n.prototype.ok=function(t){if("function"!=typeof t)throw Error("Callback required");return this._okCallback=t,this},n.prototype._isResponseOK=function(t){return!!t&&(this._okCallback?this._okCallback(t):t.status>=200&&t.status<300)},n.prototype.get=function(t){return this._header[t.toLowerCase()]},n.prototype.getHeader=n.prototype.get,n.prototype.set=function(t,e){if(o(t)){for(var r in t)this.set(r,t[r]);return this}return this._header[t.toLowerCase()]=e,this.header[t]=e,this},n.prototype.unset=function(t){return delete this._header[t.toLowerCase()],delete this.header[t],this},n.prototype.field=function(t,e){if(null==t)throw new Error(".field(name, val) name can not be empty");if(this._data&&console.error(".field() can't be used if .send() is used. Please use only .send() or only .field() & .attach()"),o(t)){for(var r in t)this.field(r,t[r]);return this}if(Array.isArray(e)){for(var n in e)this.field(t,e[n]);return this}if(null==e)throw new Error(".field(name, val) val can not be empty");return"boolean"==typeof e&&(e=""+e),this._getFormData().append(t,e),this},n.prototype.abort=function(){return this._aborted||(this._aborted=!0,this.xhr&&this.xhr.abort(),this.req&&this.req.abort(),this.clearTimeout(),this.emit("abort")),this},n.prototype._auth=function(t,e,r,o){switch(r.type){case"basic":this.set("Authorization","Basic "+o(t+":"+e));break;case"auto":this.username=t,this.password=e;break;case"bearer":this.set("Authorization","Bearer "+t)}return this},n.prototype.withCredentials=function(t){return null==t&&(t=!0),this._withCredentials=t,this},n.prototype.redirects=function(t){return this._maxRedirects=t,this},n.prototype.maxResponseSize=function(t){if("number"!=typeof t)throw TypeError("Invalid argument");return this._maxResponseSize=t,this},n.prototype.toJSON=function(){return{method:this.method,url:this.url,data:this._data,headers:this._header}},n.prototype.send=function(t){var e=o(t),r=this._header["content-type"];if(this._formData&&console.error(".send() can't be used if .attach() or .field() is used. Please use only .send() or only .field() & .attach()"),e&&!this._data)Array.isArray(t)?this._data=[]:this._isHost(t)||(this._data={});else if(t&&this._data&&this._isHost(this._data))throw Error("Can't merge these send calls");if(e&&o(this._data))for(var n in t)this._data[n]=t[n];else"string"==typeof t?(r||this.type("form"),r=this._header["content-type"],this._data="application/x-www-form-urlencoded"==r?this._data?this._data+"&"+t:t:(this._data||"")+t):this._data=t;return!e||this._isHost(t)||r||this.type("json"),this},n.prototype.sortQuery=function(t){return this._sort=void 0===t||t,this},n.prototype._finalizeQueryString=function(){var t=this._query.join("&");if(t&&(this.url+=(this.url.indexOf("?")>=0?"&":"?")+t),this._query.length=0,this._sort){var e=this.url.indexOf("?");if(e>=0){var r=this.url.substring(e+1).split("&");"function"==typeof this._sort?r.sort(this._sort):r.sort(),this.url=this.url.substring(0,e)+"?"+r.join("&")}}},n.prototype._appendQueryString=function(){console.trace("Unsupported")},n.prototype._timeoutError=function(t,e,r){if(!this._aborted){var o=new Error(t+e+"ms exceeded");o.timeout=e,o.code="ECONNABORTED",o.errno=r,this.timedout=!0,this.abort(),this.callback(o)}},n.prototype._setTimeouts=function(){var t=this;this._timeout&&!this._timer&&(this._timer=setTimeout((function(){t._timeoutError("Timeout of ",t._timeout,"ETIME")}),this._timeout)),this._responseTimeout&&!this._responseTimeoutTimer&&(this._responseTimeoutTimer=setTimeout((function(){t._timeoutError("Response timeout of ",t._responseTimeout,"ETIMEDOUT")}),this._responseTimeout))}},1097:(t,e,r)=>{"use strict";var o=r(4506);function n(t){if(t)return function(t){for(var e in n.prototype)t[e]=n.prototype[e];return t}(t)}t.exports=n,n.prototype.get=function(t){return this.header[t.toLowerCase()]},n.prototype._setHeaderProperties=function(t){var e=t["content-type"]||"";this.type=o.type(e);var r=o.params(e);for(var n in r)this[n]=r[n];this.links={};try{t.link&&(this.links=o.parseLinks(t.link))}catch(t){}},n.prototype._setStatusProperties=function(t){var e=t/100|0;this.status=this.statusCode=t,this.statusType=e,this.info=1==e,this.ok=2==e,this.redirect=3==e,this.clientError=4==e,this.serverError=5==e,this.error=(4==e||5==e)&&this.toError(),this.created=201==t,this.accepted=202==t,this.noContent=204==t,this.badRequest=400==t,this.unauthorized=401==t,this.notAcceptable=406==t,this.forbidden=403==t,this.notFound=404==t,this.unprocessableEntity=422==t}},4506:(t,e)=>{"use strict";e.type=function(t){return t.split(/ *; */).shift()},e.params=function(t){return t.split(/ *; */).reduce((function(t,e){var r=e.split(/ *= */),o=r.shift(),n=r.shift();return o&&n&&(t[o]=n),t}),{})},e.parseLinks=function(t){return t.split(/ *, */).reduce((function(t,e){var r=e.split(/ *; */),o=r[0].slice(1,-1);return t[r[1].split(/ *= */)[1].slice(1,-1)]=o,t}),{})},e.cleanHeader=function(t,e){return delete t["content-type"],delete t["content-length"],delete t["transfer-encoding"],delete t.host,e&&(delete t.authorization,delete t.cookie),t}},5663:(t,e)=>{var r={millisecond:1,second:1e3,minute:6e4,hour:36e5,day:864e5};for(var o in r)"millisecond"===o?r.ms=r[o]:r[o.charAt(0)]=r[o],r[o+"s"]=r[o];function n(t){this.count=0;var e=function(t){var e=t.match(i);return e&&r[e[2]]?e.slice(1):null}(t);e&&(this.time=Number(e[0])*r[e[1]],this.type=e[1])}n.prototype.do=function(t){this.time&&(this.interval=setInterval((function(){e.count++,t.call(e)}),this.time));var e=this;return this},n.prototype.stop=function(){return this.interval&&(clearInterval(this.interval),delete this.interval),this};var i=/^\s*(\d+(?:\.\d+)?)\s*([a-z]+)\s*$/},306:function(t,e){(function(){"use strict";e.stripBOM=function(t){return"\ufeff"===t[0]?t.substring(1):t}}).call(this)},4096:function(t,e,r){(function(){"use strict";var t,o,n,i,s,a={}.hasOwnProperty;t=r(5532),o=r(8381).defaults,i=function(t){return"string"==typeof t&&(t.indexOf("&")>=0||t.indexOf(">")>=0||t.indexOf("<")>=0)},s=function(t){return"<![CDATA["+n(t)+"]]>"},n=function(t){return t.replace("]]>","]]]]><![CDATA[>")},e.Builder=function(){function e(t){var e,r,n;for(e in this.options={},r=o[.2])a.call(r,e)&&(n=r[e],this.options[e]=n);for(e in t)a.call(t,e)&&(n=t[e],this.options[e]=n)}return e.prototype.buildObject=function(e){var r,n,u,p,c,h;return r=this.options.attrkey,n=this.options.charkey,1===Object.keys(e).length&&this.options.rootName===o[.2].rootName?e=e[c=Object.keys(e)[0]]:c=this.options.rootName,h=this,u=function(t,e){var o,p,c,l,f,d;if("object"!=typeof e)h.options.cdata&&i(e)?t.raw(s(e)):t.txt(e);else if(Array.isArray(e)){for(l in e)if(a.call(e,l))for(f in p=e[l])c=p[f],t=u(t.ele(f),c).up()}else for(f in e)if(a.call(e,f))if(p=e[f],f===r){if("object"==typeof p)for(o in p)d=p[o],t=t.att(o,d)}else if(f===n)t=h.options.cdata&&i(p)?t.raw(s(p)):t.txt(p);else if(Array.isArray(p))for(l in p)a.call(p,l)&&(t="string"==typeof(c=p[l])?h.options.cdata&&i(c)?t.ele(f).raw(s(c)).up():t.ele(f,c).up():u(t.ele(f),c).up());else"object"==typeof p?t=u(t.ele(f),p).up():"string"==typeof p&&h.options.cdata&&i(p)?t=t.ele(f).raw(s(p)).up():(null==p&&(p=""),t=t.ele(f,p.toString()).up());return t},p=t.create(c,this.options.xmldec,this.options.doctype,{headless:this.options.headless,allowSurrogateChars:this.options.allowSurrogateChars}),u(p,e).end(this.options.renderOpts)},e}()}).call(this)},8381:function(t,e){(function(){e.defaults={.1:{explicitCharkey:!1,trim:!0,normalize:!0,normalizeTags:!1,attrkey:"@",charkey:"#",explicitArray:!1,ignoreAttrs:!1,mergeAttrs:!1,explicitRoot:!1,validator:null,xmlns:!1,explicitChildren:!1,childkey:"@@",charsAsChildren:!1,includeWhiteChars:!1,async:!1,strict:!0,attrNameProcessors:null,attrValueProcessors:null,tagNameProcessors:null,valueProcessors:null,emptyTag:""},.2:{explicitCharkey:!1,trim:!1,normalize:!1,normalizeTags:!1,attrkey:"$",charkey:"_",explicitArray:!0,ignoreAttrs:!1,mergeAttrs:!1,explicitRoot:!0,validator:null,xmlns:!1,explicitChildren:!1,preserveChildrenOrder:!1,childkey:"$$",charsAsChildren:!1,includeWhiteChars:!1,async:!1,strict:!0,attrNameProcessors:null,attrValueProcessors:null,tagNameProcessors:null,valueProcessors:null,rootName:"root",xmldec:{version:"1.0",encoding:"UTF-8",standalone:!0},doctype:null,renderOpts:{pretty:!0,indent:" ",newline:"\n"},headless:!1,chunkSize:1e4,emptyTag:"",cdata:!1}}}).call(this)},9082:function(t,e,r){(function(){"use strict";var t,o,n,i,s,a,u,p,c=function(t,e){return function(){return t.apply(e,arguments)}},h={}.hasOwnProperty;u=r(6099),n=r(7187),t=r(306),a=r(7526),p=r(5663).setImmediate,o=r(8381).defaults,i=function(t){return"object"==typeof t&&null!=t&&0===Object.keys(t).length},s=function(t,e,r){var o,n;for(o=0,n=t.length;o<n;o++)e=(0,t[o])(e,r);return e},e.Parser=function(r){function n(t){var r,n,i;if(this.parseStringPromise=c(this.parseStringPromise,this),this.parseString=c(this.parseString,this),this.reset=c(this.reset,this),this.assignOrPush=c(this.assignOrPush,this),this.processAsync=c(this.processAsync,this),!(this instanceof e.Parser))return new e.Parser(t);for(r in this.options={},n=o[.2])h.call(n,r)&&(i=n[r],this.options[r]=i);for(r in t)h.call(t,r)&&(i=t[r],this.options[r]=i);this.options.xmlns&&(this.options.xmlnskey=this.options.attrkey+"ns"),this.options.normalizeTags&&(this.options.tagNameProcessors||(this.options.tagNameProcessors=[]),this.options.tagNameProcessors.unshift(a.normalize)),this.reset()}return function(t,e){for(var r in e)h.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(n,r),n.prototype.processAsync=function(){var t,e;try{return this.remaining.length<=this.options.chunkSize?(t=this.remaining,this.remaining="",this.saxParser=this.saxParser.write(t),this.saxParser.close()):(t=this.remaining.substr(0,this.options.chunkSize),this.remaining=this.remaining.substr(this.options.chunkSize,this.remaining.length),this.saxParser=this.saxParser.write(t),p(this.processAsync))}catch(t){if(e=t,!this.saxParser.errThrown)return this.saxParser.errThrown=!0,this.emit(e)}},n.prototype.assignOrPush=function(t,e,r){return e in t?(t[e]instanceof Array||(t[e]=[t[e]]),t[e].push(r)):this.options.explicitArray?t[e]=[r]:t[e]=r},n.prototype.reset=function(){var t,e,r,o,n;return this.removeAllListeners(),this.saxParser=u.parser(this.options.strict,{trim:!1,normalize:!1,xmlns:this.options.xmlns}),this.saxParser.errThrown=!1,this.saxParser.onerror=(n=this,function(t){if(n.saxParser.resume(),!n.saxParser.errThrown)return n.saxParser.errThrown=!0,n.emit("error",t)}),this.saxParser.onend=function(t){return function(){if(!t.saxParser.ended)return t.saxParser.ended=!0,t.emit("end",t.resultObject)}}(this),this.saxParser.ended=!1,this.EXPLICIT_CHARKEY=this.options.explicitCharkey,this.resultObject=null,o=[],t=this.options.attrkey,e=this.options.charkey,this.saxParser.onopentag=function(r){return function(n){var i,a,u,p,c;if((u={})[e]="",!r.options.ignoreAttrs)for(i in c=n.attributes)h.call(c,i)&&(t in u||r.options.mergeAttrs||(u[t]={}),a=r.options.attrValueProcessors?s(r.options.attrValueProcessors,n.attributes[i],i):n.attributes[i],p=r.options.attrNameProcessors?s(r.options.attrNameProcessors,i):i,r.options.mergeAttrs?r.assignOrPush(u,p,a):u[t][p]=a);return u["#name"]=r.options.tagNameProcessors?s(r.options.tagNameProcessors,n.name):n.name,r.options.xmlns&&(u[r.options.xmlnskey]={uri:n.uri,local:n.local}),o.push(u)}}(this),this.saxParser.onclosetag=function(t){return function(){var r,n,a,u,p,c,l,f,d,y;if(c=o.pop(),p=c["#name"],t.options.explicitChildren&&t.options.preserveChildrenOrder||delete c["#name"],!0===c.cdata&&(r=c.cdata,delete c.cdata),d=o[o.length-1],c[e].match(/^\s*$/)&&!r?(n=c[e],delete c[e]):(t.options.trim&&(c[e]=c[e].trim()),t.options.normalize&&(c[e]=c[e].replace(/\s{2,}/g," ").trim()),c[e]=t.options.valueProcessors?s(t.options.valueProcessors,c[e],p):c[e],1===Object.keys(c).length&&e in c&&!t.EXPLICIT_CHARKEY&&(c=c[e])),i(c)&&(c=""!==t.options.emptyTag?t.options.emptyTag:n),null!=t.options.validator&&(y="/"+function(){var t,e,r;for(r=[],t=0,e=o.length;t<e;t++)u=o[t],r.push(u["#name"]);return r}().concat(p).join("/"),function(){var e;try{c=t.options.validator(y,d&&d[p],c)}catch(r){return e=r,t.emit("error",e)}}()),t.options.explicitChildren&&!t.options.mergeAttrs&&"object"==typeof c)if(t.options.preserveChildrenOrder){if(d){for(a in d[t.options.childkey]=d[t.options.childkey]||[],l={},c)h.call(c,a)&&(l[a]=c[a]);d[t.options.childkey].push(l),delete c["#name"],1===Object.keys(c).length&&e in c&&!t.EXPLICIT_CHARKEY&&(c=c[e])}}else u={},t.options.attrkey in c&&(u[t.options.attrkey]=c[t.options.attrkey],delete c[t.options.attrkey]),!t.options.charsAsChildren&&t.options.charkey in c&&(u[t.options.charkey]=c[t.options.charkey],delete c[t.options.charkey]),Object.getOwnPropertyNames(c).length>0&&(u[t.options.childkey]=c),c=u;return o.length>0?t.assignOrPush(d,p,c):(t.options.explicitRoot&&(f=c,(c={})[p]=f),t.resultObject=c,t.saxParser.ended=!0,t.emit("end",t.resultObject))}}(this),r=function(t){return function(r){var n,i;if(i=o[o.length-1])return i[e]+=r,t.options.explicitChildren&&t.options.preserveChildrenOrder&&t.options.charsAsChildren&&(t.options.includeWhiteChars||""!==r.replace(/\\n/g,"").trim())&&(i[t.options.childkey]=i[t.options.childkey]||[],(n={"#name":"__text__"})[e]=r,t.options.normalize&&(n[e]=n[e].replace(/\s{2,}/g," ").trim()),i[t.options.childkey].push(n)),i}}(this),this.saxParser.ontext=r,this.saxParser.oncdata=function(t){var e;if(e=r(t))return e.cdata=!0}},n.prototype.parseString=function(e,r){var o;null!=r&&"function"==typeof r&&(this.on("end",(function(t){return this.reset(),r(null,t)})),this.on("error",(function(t){return this.reset(),r(t)})));try{return""===(e=e.toString()).trim()?(this.emit("end",null),!0):(e=t.stripBOM(e),this.options.async?(this.remaining=e,p(this.processAsync),this.saxParser):this.saxParser.write(e).close())}catch(t){if(o=t,!this.saxParser.errThrown&&!this.saxParser.ended)return this.emit("error",o),this.saxParser.errThrown=!0;if(this.saxParser.ended)throw o}},n.prototype.parseStringPromise=function(t){return new Promise((e=this,function(r,o){return e.parseString(t,(function(t,e){return t?o(t):r(e)}))}));var e},n}(n),e.parseString=function(t,r,o){var n,i;return null!=o?("function"==typeof o&&(n=o),"object"==typeof r&&(i=r)):("function"==typeof r&&(n=r),i={}),new e.Parser(i).parseString(t,n)},e.parseStringPromise=function(t,r){var o;return"object"==typeof r&&(o=r),new e.Parser(o).parseStringPromise(t)}}).call(this)},7526:function(t,e){(function(){"use strict";var t;t=new RegExp(/(?!xmlns)^.*:/),e.normalize=function(t){return t.toLowerCase()},e.firstCharLowerCase=function(t){return t.charAt(0).toLowerCase()+t.slice(1)},e.stripPrefix=function(e){return e.replace(t,"")},e.parseNumbers=function(t){return isNaN(t)||(t=t%1==0?parseInt(t,10):parseFloat(t)),t},e.parseBooleans=function(t){return/^(?:true|false)$/i.test(t)&&(t="true"===t.toLowerCase()),t}}).call(this)},5055:function(t,e,r){(function(){"use strict";var t,o,n,i,s={}.hasOwnProperty;o=r(8381),t=r(4096),n=r(9082),i=r(7526),e.defaults=o.defaults,e.processors=i,e.ValidationError=function(t){function e(t){this.message=t}return function(t,e){for(var r in e)s.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(e,Error),e}(),e.Builder=t.Builder,e.Parser=n.Parser,e.parseString=n.parseString,e.parseStringPromise=n.parseStringPromise}).call(this)},7557:function(t){(function(){t.exports={Disconnected:1,Preceding:2,Following:4,Contains:8,ContainedBy:16,ImplementationSpecific:32}}).call(this)},9335:function(t){(function(){t.exports={Element:1,Attribute:2,Text:3,CData:4,EntityReference:5,EntityDeclaration:6,ProcessingInstruction:7,Comment:8,Document:9,DocType:10,DocumentFragment:11,NotationDeclaration:12,Declaration:201,Raw:202,AttributeDeclaration:203,ElementDeclaration:204,Dummy:205}}).call(this)},8369:function(t){(function(){var e,r,o,n,i,s,a,u=[].slice,p={}.hasOwnProperty;e=function(){var t,e,r,o,n,s;if(s=arguments[0],n=2<=arguments.length?u.call(arguments,1):[],i(Object.assign))Object.assign.apply(null,arguments);else for(t=0,r=n.length;t<r;t++)if(null!=(o=n[t]))for(e in o)p.call(o,e)&&(s[e]=o[e]);return s},i=function(t){return!!t&&"[object Function]"===Object.prototype.toString.call(t)},s=function(t){var e;return!!t&&("function"==(e=typeof t)||"object"===e)},o=function(t){return i(Array.isArray)?Array.isArray(t):"[object Array]"===Object.prototype.toString.call(t)},n=function(t){var e;if(o(t))return!t.length;for(e in t)if(p.call(t,e))return!1;return!0},a=function(t){var e,r;return s(t)&&(r=Object.getPrototypeOf(t))&&(e=r.constructor)&&"function"==typeof e&&e instanceof e&&Function.prototype.toString.call(e)===Function.prototype.toString.call(Object)},r=function(t){return i(t.valueOf)?t.valueOf():t},t.exports.assign=e,t.exports.isFunction=i,t.exports.isObject=s,t.exports.isArray=o,t.exports.isEmpty=n,t.exports.isPlainObject=a,t.exports.getValue=r}).call(this)},594:function(t){(function(){t.exports={None:0,OpenTag:1,InsideTag:2,CloseTag:3}}).call(this)},2750:function(t,e,r){(function(){var e;e=r(9335),r(2026),t.exports=function(){function t(t,r,o){if(this.parent=t,this.parent&&(this.options=this.parent.options,this.stringify=this.parent.stringify),null==r)throw new Error("Missing attribute name. "+this.debugInfo(r));this.name=this.stringify.name(r),this.value=this.stringify.attValue(o),this.type=e.Attribute,this.isId=!1,this.schemaTypeInfo=null}return Object.defineProperty(t.prototype,"nodeType",{get:function(){return this.type}}),Object.defineProperty(t.prototype,"ownerElement",{get:function(){return this.parent}}),Object.defineProperty(t.prototype,"textContent",{get:function(){return this.value},set:function(t){return this.value=t||""}}),Object.defineProperty(t.prototype,"namespaceURI",{get:function(){return""}}),Object.defineProperty(t.prototype,"prefix",{get:function(){return""}}),Object.defineProperty(t.prototype,"localName",{get:function(){return this.name}}),Object.defineProperty(t.prototype,"specified",{get:function(){return!0}}),t.prototype.clone=function(){return Object.create(this)},t.prototype.toString=function(t){return this.options.writer.attribute(this,this.options.writer.filterOptions(t))},t.prototype.debugInfo=function(t){return null==(t=t||this.name)?"parent: <"+this.parent.name+">":"attribute: {"+t+"}, parent: <"+this.parent.name+">"},t.prototype.isEqualNode=function(t){return t.namespaceURI===this.namespaceURI&&t.prefix===this.prefix&&t.localName===this.localName&&t.value===this.value},t}()}).call(this)},6170:function(t,e,r){(function(){var e,o,n={}.hasOwnProperty;e=r(9335),o=r(6488),t.exports=function(t){function r(t,o){if(r.__super__.constructor.call(this,t),null==o)throw new Error("Missing CDATA text. "+this.debugInfo());this.name="#cdata-section",this.type=e.CData,this.value=this.stringify.cdata(o)}return function(t,e){for(var r in e)n.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(r,t),r.prototype.clone=function(){return Object.create(this)},r.prototype.toString=function(t){return this.options.writer.cdata(this,this.options.writer.filterOptions(t))},r}(o)}).call(this)},6488:function(t,e,r){(function(){var e,o={}.hasOwnProperty;e=r(2026),t.exports=function(t){function e(t){e.__super__.constructor.call(this,t),this.value=""}return function(t,e){for(var r in e)o.call(e,r)&&(t[r]=e[r]);function n(){this.constructor=t}n.prototype=e.prototype,t.prototype=new n,t.__super__=e.prototype}(e,t),Object.defineProperty(e.prototype,"data",{get:function(){return this.value},set:function(t){return this.value=t||""}}),Object.defineProperty(e.prototype,"length",{get:function(){return this.value.length}}),Object.defineProperty(e.prototype,"textContent",{get:function(){return this.value},set:function(t){return this.value=t||""}}),e.prototype.clone=function(){return Object.create(this)},e.prototype.substringData=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},e.prototype.appendData=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},e.prototype.insertData=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},e.prototype.deleteData=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},e.prototype.replaceData=function(t,e,r){throw new Error("This DOM method is not implemented."+this.debugInfo())},e.prototype.isEqualNode=function(t){return!!e.__super__.isEqualNode.apply(this,arguments).isEqualNode(t)&&t.data===this.data},e}(e)}).call(this)},2096:function(t,e,r){(function(){var e,o,n={}.hasOwnProperty;e=r(9335),o=r(6488),t.exports=function(t){function r(t,o){if(r.__super__.constructor.call(this,t),null==o)throw new Error("Missing comment text. "+this.debugInfo());this.name="#comment",this.type=e.Comment,this.value=this.stringify.comment(o)}return function(t,e){for(var r in e)n.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(r,t),r.prototype.clone=function(){return Object.create(this)},r.prototype.toString=function(t){return this.options.writer.comment(this,this.options.writer.filterOptions(t))},r}(o)}).call(this)},383:function(t,e,r){(function(){var e,o;e=r(3933),o=r(6210),t.exports=function(){function t(){this.defaultParams={"canonical-form":!1,"cdata-sections":!1,comments:!1,"datatype-normalization":!1,"element-content-whitespace":!0,entities:!0,"error-handler":new e,infoset:!0,"validate-if-schema":!1,namespaces:!0,"namespace-declarations":!0,"normalize-characters":!1,"schema-location":"","schema-type":"","split-cdata-sections":!0,validate:!1,"well-formed":!0},this.params=Object.create(this.defaultParams)}return Object.defineProperty(t.prototype,"parameterNames",{get:function(){return new o(Object.keys(this.defaultParams))}}),t.prototype.getParameter=function(t){return this.params.hasOwnProperty(t)?this.params[t]:null},t.prototype.canSetParameter=function(t,e){return!0},t.prototype.setParameter=function(t,e){return null!=e?this.params[t]=e:delete this.params[t]},t}()}).call(this)},3933:function(t){(function(){t.exports=function(){function t(){}return t.prototype.handleError=function(t){throw new Error(t)},t}()}).call(this)},1770:function(t){(function(){t.exports=function(){function t(){}return t.prototype.hasFeature=function(t,e){return!0},t.prototype.createDocumentType=function(t,e,r){throw new Error("This DOM method is not implemented.")},t.prototype.createDocument=function(t,e,r){throw new Error("This DOM method is not implemented.")},t.prototype.createHTMLDocument=function(t){throw new Error("This DOM method is not implemented.")},t.prototype.getFeature=function(t,e){throw new Error("This DOM method is not implemented.")},t}()}).call(this)},6210:function(t){(function(){t.exports=function(){function t(t){this.arr=t||[]}return Object.defineProperty(t.prototype,"length",{get:function(){return this.arr.length}}),t.prototype.item=function(t){return this.arr[t]||null},t.prototype.contains=function(t){return-1!==this.arr.indexOf(t)},t}()}).call(this)},1179:function(t,e,r){(function(){var e,o,n={}.hasOwnProperty;o=r(2026),e=r(9335),t.exports=function(t){function r(t,o,n,i,s,a){if(r.__super__.constructor.call(this,t),null==o)throw new Error("Missing DTD element name. "+this.debugInfo());if(null==n)throw new Error("Missing DTD attribute name. "+this.debugInfo(o));if(!i)throw new Error("Missing DTD attribute type. "+this.debugInfo(o));if(!s)throw new Error("Missing DTD attribute default. "+this.debugInfo(o));if(0!==s.indexOf("#")&&(s="#"+s),!s.match(/^(#REQUIRED|#IMPLIED|#FIXED|#DEFAULT)$/))throw new Error("Invalid default value type; expected: #REQUIRED, #IMPLIED, #FIXED or #DEFAULT. "+this.debugInfo(o));if(a&&!s.match(/^(#FIXED|#DEFAULT)$/))throw new Error("Default value only applies to #FIXED or #DEFAULT. "+this.debugInfo(o));this.elementName=this.stringify.name(o),this.type=e.AttributeDeclaration,this.attributeName=this.stringify.name(n),this.attributeType=this.stringify.dtdAttType(i),a&&(this.defaultValue=this.stringify.dtdAttDefault(a)),this.defaultValueType=s}return function(t,e){for(var r in e)n.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(r,t),r.prototype.toString=function(t){return this.options.writer.dtdAttList(this,this.options.writer.filterOptions(t))},r}(o)}).call(this)},6347:function(t,e,r){(function(){var e,o,n={}.hasOwnProperty;o=r(2026),e=r(9335),t.exports=function(t){function r(t,o,n){if(r.__super__.constructor.call(this,t),null==o)throw new Error("Missing DTD element name. "+this.debugInfo());n||(n="(#PCDATA)"),Array.isArray(n)&&(n="("+n.join(",")+")"),this.name=this.stringify.name(o),this.type=e.ElementDeclaration,this.value=this.stringify.dtdElementValue(n)}return function(t,e){for(var r in e)n.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(r,t),r.prototype.toString=function(t){return this.options.writer.dtdElement(this,this.options.writer.filterOptions(t))},r}(o)}).call(this)},9078:function(t,e,r){(function(){var e,o,n,i={}.hasOwnProperty;n=r(8369).isObject,o=r(2026),e=r(9335),t.exports=function(t){function r(t,o,i,s){if(r.__super__.constructor.call(this,t),null==i)throw new Error("Missing DTD entity name. "+this.debugInfo(i));if(null==s)throw new Error("Missing DTD entity value. "+this.debugInfo(i));if(this.pe=!!o,this.name=this.stringify.name(i),this.type=e.EntityDeclaration,n(s)){if(!s.pubID&&!s.sysID)throw new Error("Public and/or system identifiers are required for an external entity. "+this.debugInfo(i));if(s.pubID&&!s.sysID)throw new Error("System identifier is required for a public external entity. "+this.debugInfo(i));if(this.internal=!1,null!=s.pubID&&(this.pubID=this.stringify.dtdPubID(s.pubID)),null!=s.sysID&&(this.sysID=this.stringify.dtdSysID(s.sysID)),null!=s.nData&&(this.nData=this.stringify.dtdNData(s.nData)),this.pe&&this.nData)throw new Error("Notation declaration is not allowed in a parameter entity. "+this.debugInfo(i))}else this.value=this.stringify.dtdEntityValue(s),this.internal=!0}return function(t,e){for(var r in e)i.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(r,t),Object.defineProperty(r.prototype,"publicId",{get:function(){return this.pubID}}),Object.defineProperty(r.prototype,"systemId",{get:function(){return this.sysID}}),Object.defineProperty(r.prototype,"notationName",{get:function(){return this.nData||null}}),Object.defineProperty(r.prototype,"inputEncoding",{get:function(){return null}}),Object.defineProperty(r.prototype,"xmlEncoding",{get:function(){return null}}),Object.defineProperty(r.prototype,"xmlVersion",{get:function(){return null}}),r.prototype.toString=function(t){return this.options.writer.dtdEntity(this,this.options.writer.filterOptions(t))},r}(o)}).call(this)},4777:function(t,e,r){(function(){var e,o,n={}.hasOwnProperty;o=r(2026),e=r(9335),t.exports=function(t){function r(t,o,n){if(r.__super__.constructor.call(this,t),null==o)throw new Error("Missing DTD notation name. "+this.debugInfo(o));if(!n.pubID&&!n.sysID)throw new Error("Public or system identifiers are required for an external entity. "+this.debugInfo(o));this.name=this.stringify.name(o),this.type=e.NotationDeclaration,null!=n.pubID&&(this.pubID=this.stringify.dtdPubID(n.pubID)),null!=n.sysID&&(this.sysID=this.stringify.dtdSysID(n.sysID))}return function(t,e){for(var r in e)n.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(r,t),Object.defineProperty(r.prototype,"publicId",{get:function(){return this.pubID}}),Object.defineProperty(r.prototype,"systemId",{get:function(){return this.sysID}}),r.prototype.toString=function(t){return this.options.writer.dtdNotation(this,this.options.writer.filterOptions(t))},r}(o)}).call(this)},9077:function(t,e,r){(function(){var e,o,n,i={}.hasOwnProperty;n=r(8369).isObject,o=r(2026),e=r(9335),t.exports=function(t){function r(t,o,i,s){var a;r.__super__.constructor.call(this,t),n(o)&&(o=(a=o).version,i=a.encoding,s=a.standalone),o||(o="1.0"),this.type=e.Declaration,this.version=this.stringify.xmlVersion(o),null!=i&&(this.encoding=this.stringify.xmlEncoding(i)),null!=s&&(this.standalone=this.stringify.xmlStandalone(s))}return function(t,e){for(var r in e)i.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(r,t),r.prototype.toString=function(t){return this.options.writer.declaration(this,this.options.writer.filterOptions(t))},r}(o)}).call(this)},6544:function(t,e,r){(function(){var e,o,n,i,s,a,u,p,c={}.hasOwnProperty;p=r(8369).isObject,u=r(2026),e=r(9335),o=r(1179),i=r(9078),n=r(6347),s=r(4777),a=r(663),t.exports=function(t){function r(t,o,n){var i,s,a,u,c,h;if(r.__super__.constructor.call(this,t),this.type=e.DocType,t.children)for(s=0,a=(u=t.children).length;s<a;s++)if((i=u[s]).type===e.Element){this.name=i.name;break}this.documentObject=t,p(o)&&(o=(c=o).pubID,n=c.sysID),null==n&&(n=(h=[o,n])[0],o=h[1]),null!=o&&(this.pubID=this.stringify.dtdPubID(o)),null!=n&&(this.sysID=this.stringify.dtdSysID(n))}return function(t,e){for(var r in e)c.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(r,t),Object.defineProperty(r.prototype,"entities",{get:function(){var t,r,o,n,i;for(n={},r=0,o=(i=this.children).length;r<o;r++)(t=i[r]).type!==e.EntityDeclaration||t.pe||(n[t.name]=t);return new a(n)}}),Object.defineProperty(r.prototype,"notations",{get:function(){var t,r,o,n,i;for(n={},r=0,o=(i=this.children).length;r<o;r++)(t=i[r]).type===e.NotationDeclaration&&(n[t.name]=t);return new a(n)}}),Object.defineProperty(r.prototype,"publicId",{get:function(){return this.pubID}}),Object.defineProperty(r.prototype,"systemId",{get:function(){return this.sysID}}),Object.defineProperty(r.prototype,"internalSubset",{get:function(){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),r.prototype.element=function(t,e){var r;return r=new n(this,t,e),this.children.push(r),this},r.prototype.attList=function(t,e,r,n,i){var s;return s=new o(this,t,e,r,n,i),this.children.push(s),this},r.prototype.entity=function(t,e){var r;return r=new i(this,!1,t,e),this.children.push(r),this},r.prototype.pEntity=function(t,e){var r;return r=new i(this,!0,t,e),this.children.push(r),this},r.prototype.notation=function(t,e){var r;return r=new s(this,t,e),this.children.push(r),this},r.prototype.toString=function(t){return this.options.writer.docType(this,this.options.writer.filterOptions(t))},r.prototype.ele=function(t,e){return this.element(t,e)},r.prototype.att=function(t,e,r,o,n){return this.attList(t,e,r,o,n)},r.prototype.ent=function(t,e){return this.entity(t,e)},r.prototype.pent=function(t,e){return this.pEntity(t,e)},r.prototype.not=function(t,e){return this.notation(t,e)},r.prototype.up=function(){return this.root()||this.documentObject},r.prototype.isEqualNode=function(t){return!!r.__super__.isEqualNode.apply(this,arguments).isEqualNode(t)&&t.name===this.name&&t.publicId===this.publicId&&t.systemId===this.systemId},r}(u)}).call(this)},6934:function(t,e,r){(function(){var e,o,n,i,s,a,u,p={}.hasOwnProperty;u=r(8369).isPlainObject,n=r(1770),o=r(383),i=r(2026),e=r(9335),a=r(5549),s=r(6434),t.exports=function(t){function r(t){r.__super__.constructor.call(this,null),this.name="#document",this.type=e.Document,this.documentURI=null,this.domConfig=new o,t||(t={}),t.writer||(t.writer=new s),this.options=t,this.stringify=new a(t)}return function(t,e){for(var r in e)p.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(r,t),Object.defineProperty(r.prototype,"implementation",{value:new n}),Object.defineProperty(r.prototype,"doctype",{get:function(){var t,r,o,n;for(r=0,o=(n=this.children).length;r<o;r++)if((t=n[r]).type===e.DocType)return t;return null}}),Object.defineProperty(r.prototype,"documentElement",{get:function(){return this.rootObject||null}}),Object.defineProperty(r.prototype,"inputEncoding",{get:function(){return null}}),Object.defineProperty(r.prototype,"strictErrorChecking",{get:function(){return!1}}),Object.defineProperty(r.prototype,"xmlEncoding",{get:function(){return 0!==this.children.length&&this.children[0].type===e.Declaration?this.children[0].encoding:null}}),Object.defineProperty(r.prototype,"xmlStandalone",{get:function(){return 0!==this.children.length&&this.children[0].type===e.Declaration&&"yes"===this.children[0].standalone}}),Object.defineProperty(r.prototype,"xmlVersion",{get:function(){return 0!==this.children.length&&this.children[0].type===e.Declaration?this.children[0].version:"1.0"}}),Object.defineProperty(r.prototype,"URL",{get:function(){return this.documentURI}}),Object.defineProperty(r.prototype,"origin",{get:function(){return null}}),Object.defineProperty(r.prototype,"compatMode",{get:function(){return null}}),Object.defineProperty(r.prototype,"characterSet",{get:function(){return null}}),Object.defineProperty(r.prototype,"contentType",{get:function(){return null}}),r.prototype.end=function(t){var e;return e={},t?u(t)&&(e=t,t=this.options.writer):t=this.options.writer,t.document(this,t.filterOptions(e))},r.prototype.toString=function(t){return this.options.writer.document(this,this.options.writer.filterOptions(t))},r.prototype.createElement=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.createDocumentFragment=function(){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.createTextNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.createComment=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.createCDATASection=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.createProcessingInstruction=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.createAttribute=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.createEntityReference=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.getElementsByTagName=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.importNode=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.createElementNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.createAttributeNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.getElementsByTagNameNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.getElementById=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.adoptNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.normalizeDocument=function(){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.renameNode=function(t,e,r){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.getElementsByClassName=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.createEvent=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.createRange=function(){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.createNodeIterator=function(t,e,r){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.createTreeWalker=function(t,e,r){throw new Error("This DOM method is not implemented."+this.debugInfo())},r}(i)}).call(this)},9227:function(t,e,r){(function(){var e,o,n,i,s,a,u,p,c,h,l,f,d,y,g,m,_,w,T,b,E,v,O,I={}.hasOwnProperty;O=r(8369),E=O.isObject,b=O.isFunction,v=O.isPlainObject,T=O.getValue,e=r(9335),f=r(6934),d=r(2161),i=r(6170),s=r(2096),g=r(9406),w=r(3595),y=r(9181),h=r(9077),l=r(6544),a=r(1179),p=r(9078),u=r(6347),c=r(4777),n=r(2750),_=r(5549),m=r(6434),o=r(594),t.exports=function(){function t(t,r,o){var n;this.name="?xml",this.type=e.Document,t||(t={}),n={},t.writer?v(t.writer)&&(n=t.writer,t.writer=new m):t.writer=new m,this.options=t,this.writer=t.writer,this.writerOptions=this.writer.filterOptions(n),this.stringify=new _(t),this.onDataCallback=r||function(){},this.onEndCallback=o||function(){},this.currentNode=null,this.currentLevel=-1,this.openTags={},this.documentStarted=!1,this.documentCompleted=!1,this.root=null}return t.prototype.createChildNode=function(t){var r,o,n,i,s,a,u,p;switch(t.type){case e.CData:this.cdata(t.value);break;case e.Comment:this.comment(t.value);break;case e.Element:for(o in n={},u=t.attribs)I.call(u,o)&&(r=u[o],n[o]=r.value);this.node(t.name,n);break;case e.Dummy:this.dummy();break;case e.Raw:this.raw(t.value);break;case e.Text:this.text(t.value);break;case e.ProcessingInstruction:this.instruction(t.target,t.value);break;default:throw new Error("This XML node type is not supported in a JS object: "+t.constructor.name)}for(s=0,a=(p=t.children).length;s<a;s++)i=p[s],this.createChildNode(i),i.type===e.Element&&this.up();return this},t.prototype.dummy=function(){return this},t.prototype.node=function(t,e,r){var o;if(null==t)throw new Error("Missing node name.");if(this.root&&-1===this.currentLevel)throw new Error("Document can only have one root node. "+this.debugInfo(t));return this.openCurrent(),t=T(t),null==e&&(e={}),e=T(e),E(e)||(r=(o=[e,r])[0],e=o[1]),this.currentNode=new d(this,t,e),this.currentNode.children=!1,this.currentLevel++,this.openTags[this.currentLevel]=this.currentNode,null!=r&&this.text(r),this},t.prototype.element=function(t,r,o){var n,i,s,a,u,p;if(this.currentNode&&this.currentNode.type===e.DocType)this.dtdElement.apply(this,arguments);else if(Array.isArray(t)||E(t)||b(t))for(a=this.options.noValidation,this.options.noValidation=!0,(p=new f(this.options).element("TEMP_ROOT")).element(t),this.options.noValidation=a,i=0,s=(u=p.children).length;i<s;i++)n=u[i],this.createChildNode(n),n.type===e.Element&&this.up();else this.node(t,r,o);return this},t.prototype.attribute=function(t,e){var r,o;if(!this.currentNode||this.currentNode.children)throw new Error("att() can only be used immediately after an ele() call in callback mode. "+this.debugInfo(t));if(null!=t&&(t=T(t)),E(t))for(r in t)I.call(t,r)&&(o=t[r],this.attribute(r,o));else b(e)&&(e=e.apply()),this.options.keepNullAttributes&&null==e?this.currentNode.attribs[t]=new n(this,t,""):null!=e&&(this.currentNode.attribs[t]=new n(this,t,e));return this},t.prototype.text=function(t){var e;return this.openCurrent(),e=new w(this,t),this.onData(this.writer.text(e,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.cdata=function(t){var e;return this.openCurrent(),e=new i(this,t),this.onData(this.writer.cdata(e,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.comment=function(t){var e;return this.openCurrent(),e=new s(this,t),this.onData(this.writer.comment(e,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.raw=function(t){var e;return this.openCurrent(),e=new g(this,t),this.onData(this.writer.raw(e,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.instruction=function(t,e){var r,o,n,i,s;if(this.openCurrent(),null!=t&&(t=T(t)),null!=e&&(e=T(e)),Array.isArray(t))for(r=0,i=t.length;r<i;r++)o=t[r],this.instruction(o);else if(E(t))for(o in t)I.call(t,o)&&(n=t[o],this.instruction(o,n));else b(e)&&(e=e.apply()),s=new y(this,t,e),this.onData(this.writer.processingInstruction(s,this.writerOptions,this.currentLevel+1),this.currentLevel+1);return this},t.prototype.declaration=function(t,e,r){var o;if(this.openCurrent(),this.documentStarted)throw new Error("declaration() must be the first node.");return o=new h(this,t,e,r),this.onData(this.writer.declaration(o,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.doctype=function(t,e,r){if(this.openCurrent(),null==t)throw new Error("Missing root node name.");if(this.root)throw new Error("dtd() must come before the root node.");return this.currentNode=new l(this,e,r),this.currentNode.rootNodeName=t,this.currentNode.children=!1,this.currentLevel++,this.openTags[this.currentLevel]=this.currentNode,this},t.prototype.dtdElement=function(t,e){var r;return this.openCurrent(),r=new u(this,t,e),this.onData(this.writer.dtdElement(r,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.attList=function(t,e,r,o,n){var i;return this.openCurrent(),i=new a(this,t,e,r,o,n),this.onData(this.writer.dtdAttList(i,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.entity=function(t,e){var r;return this.openCurrent(),r=new p(this,!1,t,e),this.onData(this.writer.dtdEntity(r,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.pEntity=function(t,e){var r;return this.openCurrent(),r=new p(this,!0,t,e),this.onData(this.writer.dtdEntity(r,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.notation=function(t,e){var r;return this.openCurrent(),r=new c(this,t,e),this.onData(this.writer.dtdNotation(r,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.up=function(){if(this.currentLevel<0)throw new Error("The document node has no parent.");return this.currentNode?(this.currentNode.children?this.closeNode(this.currentNode):this.openNode(this.currentNode),this.currentNode=null):this.closeNode(this.openTags[this.currentLevel]),delete this.openTags[this.currentLevel],this.currentLevel--,this},t.prototype.end=function(){for(;this.currentLevel>=0;)this.up();return this.onEnd()},t.prototype.openCurrent=function(){if(this.currentNode)return this.currentNode.children=!0,this.openNode(this.currentNode)},t.prototype.openNode=function(t){var r,n,i,s;if(!t.isOpen){if(this.root||0!==this.currentLevel||t.type!==e.Element||(this.root=t),n="",t.type===e.Element){for(i in this.writerOptions.state=o.OpenTag,n=this.writer.indent(t,this.writerOptions,this.currentLevel)+"<"+t.name,s=t.attribs)I.call(s,i)&&(r=s[i],n+=this.writer.attribute(r,this.writerOptions,this.currentLevel));n+=(t.children?">":"/>")+this.writer.endline(t,this.writerOptions,this.currentLevel),this.writerOptions.state=o.InsideTag}else this.writerOptions.state=o.OpenTag,n=this.writer.indent(t,this.writerOptions,this.currentLevel)+"<!DOCTYPE "+t.rootNodeName,t.pubID&&t.sysID?n+=' PUBLIC "'+t.pubID+'" "'+t.sysID+'"':t.sysID&&(n+=' SYSTEM "'+t.sysID+'"'),t.children?(n+=" [",this.writerOptions.state=o.InsideTag):(this.writerOptions.state=o.CloseTag,n+=">"),n+=this.writer.endline(t,this.writerOptions,this.currentLevel);return this.onData(n,this.currentLevel),t.isOpen=!0}},t.prototype.closeNode=function(t){var r;if(!t.isClosed)return"",this.writerOptions.state=o.CloseTag,r=t.type===e.Element?this.writer.indent(t,this.writerOptions,this.currentLevel)+"</"+t.name+">"+this.writer.endline(t,this.writerOptions,this.currentLevel):this.writer.indent(t,this.writerOptions,this.currentLevel)+"]>"+this.writer.endline(t,this.writerOptions,this.currentLevel),this.writerOptions.state=o.None,this.onData(r,this.currentLevel),t.isClosed=!0},t.prototype.onData=function(t,e){return this.documentStarted=!0,this.onDataCallback(t,e+1)},t.prototype.onEnd=function(){return this.documentCompleted=!0,this.onEndCallback()},t.prototype.debugInfo=function(t){return null==t?"":"node: <"+t+">"},t.prototype.ele=function(){return this.element.apply(this,arguments)},t.prototype.nod=function(t,e,r){return this.node(t,e,r)},t.prototype.txt=function(t){return this.text(t)},t.prototype.dat=function(t){return this.cdata(t)},t.prototype.com=function(t){return this.comment(t)},t.prototype.ins=function(t,e){return this.instruction(t,e)},t.prototype.dec=function(t,e,r){return this.declaration(t,e,r)},t.prototype.dtd=function(t,e,r){return this.doctype(t,e,r)},t.prototype.e=function(t,e,r){return this.element(t,e,r)},t.prototype.n=function(t,e,r){return this.node(t,e,r)},t.prototype.t=function(t){return this.text(t)},t.prototype.d=function(t){return this.cdata(t)},t.prototype.c=function(t){return this.comment(t)},t.prototype.r=function(t){return this.raw(t)},t.prototype.i=function(t,e){return this.instruction(t,e)},t.prototype.att=function(){return this.currentNode&&this.currentNode.type===e.DocType?this.attList.apply(this,arguments):this.attribute.apply(this,arguments)},t.prototype.a=function(){return this.currentNode&&this.currentNode.type===e.DocType?this.attList.apply(this,arguments):this.attribute.apply(this,arguments)},t.prototype.ent=function(t,e){return this.entity(t,e)},t.prototype.pent=function(t,e){return this.pEntity(t,e)},t.prototype.not=function(t,e){return this.notation(t,e)},t}()}).call(this)},8833:function(t,e,r){(function(){var e,o,n={}.hasOwnProperty;o=r(2026),e=r(9335),t.exports=function(t){function r(t){r.__super__.constructor.call(this,t),this.type=e.Dummy}return function(t,e){for(var r in e)n.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(r,t),r.prototype.clone=function(){return Object.create(this)},r.prototype.toString=function(t){return""},r}(o)}).call(this)},2161:function(t,e,r){(function(){var e,o,n,i,s,a,u,p,c={}.hasOwnProperty;p=r(8369),u=p.isObject,a=p.isFunction,s=p.getValue,i=r(2026),e=r(9335),o=r(2750),n=r(663),t.exports=function(t){function r(t,o,n){var i,s,a,u;if(r.__super__.constructor.call(this,t),null==o)throw new Error("Missing element name. "+this.debugInfo());if(this.name=this.stringify.name(o),this.type=e.Element,this.attribs={},this.schemaTypeInfo=null,null!=n&&this.attribute(n),t.type===e.Document&&(this.isRoot=!0,this.documentObject=t,t.rootObject=this,t.children))for(s=0,a=(u=t.children).length;s<a;s++)if((i=u[s]).type===e.DocType){i.name=this.name;break}}return function(t,e){for(var r in e)c.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(r,t),Object.defineProperty(r.prototype,"tagName",{get:function(){return this.name}}),Object.defineProperty(r.prototype,"namespaceURI",{get:function(){return""}}),Object.defineProperty(r.prototype,"prefix",{get:function(){return""}}),Object.defineProperty(r.prototype,"localName",{get:function(){return this.name}}),Object.defineProperty(r.prototype,"id",{get:function(){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),Object.defineProperty(r.prototype,"className",{get:function(){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),Object.defineProperty(r.prototype,"classList",{get:function(){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),Object.defineProperty(r.prototype,"attributes",{get:function(){return this.attributeMap&&this.attributeMap.nodes||(this.attributeMap=new n(this.attribs)),this.attributeMap}}),r.prototype.clone=function(){var t,e,r,o;for(e in(r=Object.create(this)).isRoot&&(r.documentObject=null),r.attribs={},o=this.attribs)c.call(o,e)&&(t=o[e],r.attribs[e]=t.clone());return r.children=[],this.children.forEach((function(t){var e;return(e=t.clone()).parent=r,r.children.push(e)})),r},r.prototype.attribute=function(t,e){var r,n;if(null!=t&&(t=s(t)),u(t))for(r in t)c.call(t,r)&&(n=t[r],this.attribute(r,n));else a(e)&&(e=e.apply()),this.options.keepNullAttributes&&null==e?this.attribs[t]=new o(this,t,""):null!=e&&(this.attribs[t]=new o(this,t,e));return this},r.prototype.removeAttribute=function(t){var e,r,o;if(null==t)throw new Error("Missing attribute name. "+this.debugInfo());if(t=s(t),Array.isArray(t))for(r=0,o=t.length;r<o;r++)e=t[r],delete this.attribs[e];else delete this.attribs[t];return this},r.prototype.toString=function(t){return this.options.writer.element(this,this.options.writer.filterOptions(t))},r.prototype.att=function(t,e){return this.attribute(t,e)},r.prototype.a=function(t,e){return this.attribute(t,e)},r.prototype.getAttribute=function(t){return this.attribs.hasOwnProperty(t)?this.attribs[t].value:null},r.prototype.setAttribute=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.getAttributeNode=function(t){return this.attribs.hasOwnProperty(t)?this.attribs[t]:null},r.prototype.setAttributeNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.removeAttributeNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.getElementsByTagName=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.getAttributeNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.setAttributeNS=function(t,e,r){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.removeAttributeNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.getAttributeNodeNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.setAttributeNodeNS=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.getElementsByTagNameNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.hasAttribute=function(t){return this.attribs.hasOwnProperty(t)},r.prototype.hasAttributeNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.setIdAttribute=function(t,e){return this.attribs.hasOwnProperty(t)?this.attribs[t].isId:e},r.prototype.setIdAttributeNS=function(t,e,r){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.setIdAttributeNode=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.getElementsByTagName=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.getElementsByTagNameNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.getElementsByClassName=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.isEqualNode=function(t){var e,o,n;if(!r.__super__.isEqualNode.apply(this,arguments).isEqualNode(t))return!1;if(t.namespaceURI!==this.namespaceURI)return!1;if(t.prefix!==this.prefix)return!1;if(t.localName!==this.localName)return!1;if(t.attribs.length!==this.attribs.length)return!1;for(e=o=0,n=this.attribs.length-1;0<=n?o<=n:o>=n;e=0<=n?++o:--o)if(!this.attribs[e].isEqualNode(t.attribs[e]))return!1;return!0},r}(i)}).call(this)},663:function(t){(function(){t.exports=function(){function t(t){this.nodes=t}return Object.defineProperty(t.prototype,"length",{get:function(){return Object.keys(this.nodes).length||0}}),t.prototype.clone=function(){return this.nodes=null},t.prototype.getNamedItem=function(t){return this.nodes[t]},t.prototype.setNamedItem=function(t){var e;return e=this.nodes[t.nodeName],this.nodes[t.nodeName]=t,e||null},t.prototype.removeNamedItem=function(t){var e;return e=this.nodes[t],delete this.nodes[t],e||null},t.prototype.item=function(t){return this.nodes[Object.keys(this.nodes)[t]]||null},t.prototype.getNamedItemNS=function(t,e){throw new Error("This DOM method is not implemented.")},t.prototype.setNamedItemNS=function(t){throw new Error("This DOM method is not implemented.")},t.prototype.removeNamedItemNS=function(t,e){throw new Error("This DOM method is not implemented.")},t}()}).call(this)},2026:function(t,e,r){(function(){var e,o,n,i,s,a,u,p,c,h,l,f,d,y,g,m,_,w={}.hasOwnProperty;_=r(8369),m=_.isObject,g=_.isFunction,y=_.isEmpty,d=_.getValue,p=null,n=null,i=null,s=null,a=null,l=null,f=null,h=null,u=null,o=null,c=null,e=null,t.exports=function(){function t(t){this.parent=t,this.parent&&(this.options=this.parent.options,this.stringify=this.parent.stringify),this.value=null,this.children=[],this.baseURI=null,p||(p=r(2161),n=r(6170),i=r(2096),s=r(9077),a=r(6544),l=r(9406),f=r(3595),h=r(9181),u=r(8833),o=r(9335),c=r(2390),r(663),e=r(7557))}return Object.defineProperty(t.prototype,"nodeName",{get:function(){return this.name}}),Object.defineProperty(t.prototype,"nodeType",{get:function(){return this.type}}),Object.defineProperty(t.prototype,"nodeValue",{get:function(){return this.value}}),Object.defineProperty(t.prototype,"parentNode",{get:function(){return this.parent}}),Object.defineProperty(t.prototype,"childNodes",{get:function(){return this.childNodeList&&this.childNodeList.nodes||(this.childNodeList=new c(this.children)),this.childNodeList}}),Object.defineProperty(t.prototype,"firstChild",{get:function(){return this.children[0]||null}}),Object.defineProperty(t.prototype,"lastChild",{get:function(){return this.children[this.children.length-1]||null}}),Object.defineProperty(t.prototype,"previousSibling",{get:function(){var t;return t=this.parent.children.indexOf(this),this.parent.children[t-1]||null}}),Object.defineProperty(t.prototype,"nextSibling",{get:function(){var t;return t=this.parent.children.indexOf(this),this.parent.children[t+1]||null}}),Object.defineProperty(t.prototype,"ownerDocument",{get:function(){return this.document()||null}}),Object.defineProperty(t.prototype,"textContent",{get:function(){var t,e,r,n,i;if(this.nodeType===o.Element||this.nodeType===o.DocumentFragment){for(i="",e=0,r=(n=this.children).length;e<r;e++)(t=n[e]).textContent&&(i+=t.textContent);return i}return null},set:function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),t.prototype.setParent=function(t){var e,r,o,n,i;for(this.parent=t,t&&(this.options=t.options,this.stringify=t.stringify),i=[],r=0,o=(n=this.children).length;r<o;r++)e=n[r],i.push(e.setParent(this));return i},t.prototype.element=function(t,e,r){var o,n,i,s,a,u,p,c,h,l,f;if(u=null,null===e&&null==r&&(e=(h=[{},null])[0],r=h[1]),null==e&&(e={}),e=d(e),m(e)||(r=(l=[e,r])[0],e=l[1]),null!=t&&(t=d(t)),Array.isArray(t))for(i=0,p=t.length;i<p;i++)n=t[i],u=this.element(n);else if(g(t))u=this.element(t.apply());else if(m(t)){for(a in t)if(w.call(t,a))if(f=t[a],g(f)&&(f=f.apply()),!this.options.ignoreDecorators&&this.stringify.convertAttKey&&0===a.indexOf(this.stringify.convertAttKey))u=this.attribute(a.substr(this.stringify.convertAttKey.length),f);else if(!this.options.separateArrayItems&&Array.isArray(f)&&y(f))u=this.dummy();else if(m(f)&&y(f))u=this.element(a);else if(this.options.keepNullNodes||null!=f)if(!this.options.separateArrayItems&&Array.isArray(f))for(s=0,c=f.length;s<c;s++)n=f[s],(o={})[a]=n,u=this.element(o);else m(f)?!this.options.ignoreDecorators&&this.stringify.convertTextKey&&0===a.indexOf(this.stringify.convertTextKey)?u=this.element(f):(u=this.element(a)).element(f):u=this.element(a,f);else u=this.dummy()}else u=this.options.keepNullNodes||null!==r?!this.options.ignoreDecorators&&this.stringify.convertTextKey&&0===t.indexOf(this.stringify.convertTextKey)?this.text(r):!this.options.ignoreDecorators&&this.stringify.convertCDataKey&&0===t.indexOf(this.stringify.convertCDataKey)?this.cdata(r):!this.options.ignoreDecorators&&this.stringify.convertCommentKey&&0===t.indexOf(this.stringify.convertCommentKey)?this.comment(r):!this.options.ignoreDecorators&&this.stringify.convertRawKey&&0===t.indexOf(this.stringify.convertRawKey)?this.raw(r):!this.options.ignoreDecorators&&this.stringify.convertPIKey&&0===t.indexOf(this.stringify.convertPIKey)?this.instruction(t.substr(this.stringify.convertPIKey.length),r):this.node(t,e,r):this.dummy();if(null==u)throw new Error("Could not create any elements with: "+t+". "+this.debugInfo());return u},t.prototype.insertBefore=function(t,e,r){var o,n,i,s,a;if(null!=t?t.type:void 0)return s=e,(i=t).setParent(this),s?(n=children.indexOf(s),a=children.splice(n),children.push(i),Array.prototype.push.apply(children,a)):children.push(i),i;if(this.isRoot)throw new Error("Cannot insert elements at root level. "+this.debugInfo(t));return n=this.parent.children.indexOf(this),a=this.parent.children.splice(n),o=this.parent.element(t,e,r),Array.prototype.push.apply(this.parent.children,a),o},t.prototype.insertAfter=function(t,e,r){var o,n,i;if(this.isRoot)throw new Error("Cannot insert elements at root level. "+this.debugInfo(t));return n=this.parent.children.indexOf(this),i=this.parent.children.splice(n+1),o=this.parent.element(t,e,r),Array.prototype.push.apply(this.parent.children,i),o},t.prototype.remove=function(){var t;if(this.isRoot)throw new Error("Cannot remove the root element. "+this.debugInfo());return t=this.parent.children.indexOf(this),[].splice.apply(this.parent.children,[t,t-t+1].concat([])),this.parent},t.prototype.node=function(t,e,r){var o,n;return null!=t&&(t=d(t)),e||(e={}),e=d(e),m(e)||(r=(n=[e,r])[0],e=n[1]),o=new p(this,t,e),null!=r&&o.text(r),this.children.push(o),o},t.prototype.text=function(t){var e;return m(t)&&this.element(t),e=new f(this,t),this.children.push(e),this},t.prototype.cdata=function(t){var e;return e=new n(this,t),this.children.push(e),this},t.prototype.comment=function(t){var e;return e=new i(this,t),this.children.push(e),this},t.prototype.commentBefore=function(t){var e,r;return e=this.parent.children.indexOf(this),r=this.parent.children.splice(e),this.parent.comment(t),Array.prototype.push.apply(this.parent.children,r),this},t.prototype.commentAfter=function(t){var e,r;return e=this.parent.children.indexOf(this),r=this.parent.children.splice(e+1),this.parent.comment(t),Array.prototype.push.apply(this.parent.children,r),this},t.prototype.raw=function(t){var e;return e=new l(this,t),this.children.push(e),this},t.prototype.dummy=function(){return new u(this)},t.prototype.instruction=function(t,e){var r,o,n,i,s;if(null!=t&&(t=d(t)),null!=e&&(e=d(e)),Array.isArray(t))for(i=0,s=t.length;i<s;i++)r=t[i],this.instruction(r);else if(m(t))for(r in t)w.call(t,r)&&(o=t[r],this.instruction(r,o));else g(e)&&(e=e.apply()),n=new h(this,t,e),this.children.push(n);return this},t.prototype.instructionBefore=function(t,e){var r,o;return r=this.parent.children.indexOf(this),o=this.parent.children.splice(r),this.parent.instruction(t,e),Array.prototype.push.apply(this.parent.children,o),this},t.prototype.instructionAfter=function(t,e){var r,o;return r=this.parent.children.indexOf(this),o=this.parent.children.splice(r+1),this.parent.instruction(t,e),Array.prototype.push.apply(this.parent.children,o),this},t.prototype.declaration=function(t,e,r){var n,i;return n=this.document(),i=new s(n,t,e,r),0===n.children.length?n.children.unshift(i):n.children[0].type===o.Declaration?n.children[0]=i:n.children.unshift(i),n.root()||n},t.prototype.dtd=function(t,e){var r,n,i,s,u,p,c,h,l;for(r=this.document(),n=new a(r,t,e),i=s=0,p=(h=r.children).length;s<p;i=++s)if(h[i].type===o.DocType)return r.children[i]=n,n;for(i=u=0,c=(l=r.children).length;u<c;i=++u)if(l[i].isRoot)return r.children.splice(i,0,n),n;return r.children.push(n),n},t.prototype.up=function(){if(this.isRoot)throw new Error("The root node has no parent. Use doc() if you need to get the document object.");return this.parent},t.prototype.root=function(){var t;for(t=this;t;){if(t.type===o.Document)return t.rootObject;if(t.isRoot)return t;t=t.parent}},t.prototype.document=function(){var t;for(t=this;t;){if(t.type===o.Document)return t;t=t.parent}},t.prototype.end=function(t){return this.document().end(t)},t.prototype.prev=function(){var t;if((t=this.parent.children.indexOf(this))<1)throw new Error("Already at the first node. "+this.debugInfo());return this.parent.children[t-1]},t.prototype.next=function(){var t;if(-1===(t=this.parent.children.indexOf(this))||t===this.parent.children.length-1)throw new Error("Already at the last node. "+this.debugInfo());return this.parent.children[t+1]},t.prototype.importDocument=function(t){var e;return(e=t.root().clone()).parent=this,e.isRoot=!1,this.children.push(e),this},t.prototype.debugInfo=function(t){var e,r;return null!=(t=t||this.name)||(null!=(e=this.parent)?e.name:void 0)?null==t?"parent: <"+this.parent.name+">":(null!=(r=this.parent)?r.name:void 0)?"node: <"+t+">, parent: <"+this.parent.name+">":"node: <"+t+">":""},t.prototype.ele=function(t,e,r){return this.element(t,e,r)},t.prototype.nod=function(t,e,r){return this.node(t,e,r)},t.prototype.txt=function(t){return this.text(t)},t.prototype.dat=function(t){return this.cdata(t)},t.prototype.com=function(t){return this.comment(t)},t.prototype.ins=function(t,e){return this.instruction(t,e)},t.prototype.doc=function(){return this.document()},t.prototype.dec=function(t,e,r){return this.declaration(t,e,r)},t.prototype.e=function(t,e,r){return this.element(t,e,r)},t.prototype.n=function(t,e,r){return this.node(t,e,r)},t.prototype.t=function(t){return this.text(t)},t.prototype.d=function(t){return this.cdata(t)},t.prototype.c=function(t){return this.comment(t)},t.prototype.r=function(t){return this.raw(t)},t.prototype.i=function(t,e){return this.instruction(t,e)},t.prototype.u=function(){return this.up()},t.prototype.importXMLBuilder=function(t){return this.importDocument(t)},t.prototype.replaceChild=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.removeChild=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.appendChild=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.hasChildNodes=function(){return 0!==this.children.length},t.prototype.cloneNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.normalize=function(){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.isSupported=function(t,e){return!0},t.prototype.hasAttributes=function(){return 0!==this.attribs.length},t.prototype.compareDocumentPosition=function(t){var r,o;return(r=this)===t?0:this.document()!==t.document()?(o=e.Disconnected|e.ImplementationSpecific,Math.random()<.5?o|=e.Preceding:o|=e.Following,o):r.isAncestor(t)?e.Contains|e.Preceding:r.isDescendant(t)?e.Contains|e.Following:r.isPreceding(t)?e.Preceding:e.Following},t.prototype.isSameNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.lookupPrefix=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.isDefaultNamespace=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.lookupNamespaceURI=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.isEqualNode=function(t){var e,r,o;if(t.nodeType!==this.nodeType)return!1;if(t.children.length!==this.children.length)return!1;for(e=r=0,o=this.children.length-1;0<=o?r<=o:r>=o;e=0<=o?++r:--r)if(!this.children[e].isEqualNode(t.children[e]))return!1;return!0},t.prototype.getFeature=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.setUserData=function(t,e,r){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.getUserData=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.contains=function(t){return!!t&&(t===this||this.isDescendant(t))},t.prototype.isDescendant=function(t){var e,r,o,n;for(r=0,o=(n=this.children).length;r<o;r++){if(t===(e=n[r]))return!0;if(e.isDescendant(t))return!0}return!1},t.prototype.isAncestor=function(t){return t.isDescendant(this)},t.prototype.isPreceding=function(t){var e,r;return e=this.treePosition(t),r=this.treePosition(this),-1!==e&&-1!==r&&e<r},t.prototype.isFollowing=function(t){var e,r;return e=this.treePosition(t),r=this.treePosition(this),-1!==e&&-1!==r&&e>r},t.prototype.treePosition=function(t){var e,r;return r=0,e=!1,this.foreachTreeNode(this.document(),(function(o){if(r++,!e&&o===t)return e=!0})),e?r:-1},t.prototype.foreachTreeNode=function(t,e){var r,o,n,i,s;for(t||(t=this.document()),o=0,n=(i=t.children).length;o<n;o++){if(s=e(r=i[o]))return s;if(s=this.foreachTreeNode(r,e))return s}},t}()}).call(this)},2390:function(t){(function(){t.exports=function(){function t(t){this.nodes=t}return Object.defineProperty(t.prototype,"length",{get:function(){return this.nodes.length||0}}),t.prototype.clone=function(){return this.nodes=null},t.prototype.item=function(t){return this.nodes[t]||null},t}()}).call(this)},9181:function(t,e,r){(function(){var e,o,n={}.hasOwnProperty;e=r(9335),o=r(6488),t.exports=function(t){function r(t,o,n){if(r.__super__.constructor.call(this,t),null==o)throw new Error("Missing instruction target. "+this.debugInfo());this.type=e.ProcessingInstruction,this.target=this.stringify.insTarget(o),this.name=this.target,n&&(this.value=this.stringify.insValue(n))}return function(t,e){for(var r in e)n.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(r,t),r.prototype.clone=function(){return Object.create(this)},r.prototype.toString=function(t){return this.options.writer.processingInstruction(this,this.options.writer.filterOptions(t))},r.prototype.isEqualNode=function(t){return!!r.__super__.isEqualNode.apply(this,arguments).isEqualNode(t)&&t.target===this.target},r}(o)}).call(this)},9406:function(t,e,r){(function(){var e,o,n={}.hasOwnProperty;e=r(9335),o=r(2026),t.exports=function(t){function r(t,o){if(r.__super__.constructor.call(this,t),null==o)throw new Error("Missing raw text. "+this.debugInfo());this.type=e.Raw,this.value=this.stringify.raw(o)}return function(t,e){for(var r in e)n.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(r,t),r.prototype.clone=function(){return Object.create(this)},r.prototype.toString=function(t){return this.options.writer.raw(this,this.options.writer.filterOptions(t))},r}(o)}).call(this)},1996:function(t,e,r){(function(){var e,o,n,i={}.hasOwnProperty;e=r(9335),n=r(751),o=r(594),t.exports=function(t){function r(t,e){this.stream=t,r.__super__.constructor.call(this,e)}return function(t,e){for(var r in e)i.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(r,t),r.prototype.endline=function(t,e,n){return t.isLastRootNode&&e.state===o.CloseTag?"":r.__super__.endline.call(this,t,e,n)},r.prototype.document=function(t,e){var r,o,n,i,s,a,u,p,c;for(o=n=0,s=(u=t.children).length;n<s;o=++n)(r=u[o]).isLastRootNode=o===t.children.length-1;for(e=this.filterOptions(e),c=[],i=0,a=(p=t.children).length;i<a;i++)r=p[i],c.push(this.writeChildNode(r,e,0));return c},r.prototype.attribute=function(t,e,o){return this.stream.write(r.__super__.attribute.call(this,t,e,o))},r.prototype.cdata=function(t,e,o){return this.stream.write(r.__super__.cdata.call(this,t,e,o))},r.prototype.comment=function(t,e,o){return this.stream.write(r.__super__.comment.call(this,t,e,o))},r.prototype.declaration=function(t,e,o){return this.stream.write(r.__super__.declaration.call(this,t,e,o))},r.prototype.docType=function(t,e,r){var n,i,s,a;if(r||(r=0),this.openNode(t,e,r),e.state=o.OpenTag,this.stream.write(this.indent(t,e,r)),this.stream.write("<!DOCTYPE "+t.root().name),t.pubID&&t.sysID?this.stream.write(' PUBLIC "'+t.pubID+'" "'+t.sysID+'"'):t.sysID&&this.stream.write(' SYSTEM "'+t.sysID+'"'),t.children.length>0){for(this.stream.write(" ["),this.stream.write(this.endline(t,e,r)),e.state=o.InsideTag,i=0,s=(a=t.children).length;i<s;i++)n=a[i],this.writeChildNode(n,e,r+1);e.state=o.CloseTag,this.stream.write("]")}return e.state=o.CloseTag,this.stream.write(e.spaceBeforeSlash+">"),this.stream.write(this.endline(t,e,r)),e.state=o.None,this.closeNode(t,e,r)},r.prototype.element=function(t,r,n){var s,a,u,p,c,h,l,f,d;for(l in n||(n=0),this.openNode(t,r,n),r.state=o.OpenTag,this.stream.write(this.indent(t,r,n)+"<"+t.name),f=t.attribs)i.call(f,l)&&(s=f[l],this.attribute(s,r,n));if(p=0===(u=t.children.length)?null:t.children[0],0===u||t.children.every((function(t){return(t.type===e.Text||t.type===e.Raw)&&""===t.value})))r.allowEmpty?(this.stream.write(">"),r.state=o.CloseTag,this.stream.write("</"+t.name+">")):(r.state=o.CloseTag,this.stream.write(r.spaceBeforeSlash+"/>"));else if(!r.pretty||1!==u||p.type!==e.Text&&p.type!==e.Raw||null==p.value){for(this.stream.write(">"+this.endline(t,r,n)),r.state=o.InsideTag,c=0,h=(d=t.children).length;c<h;c++)a=d[c],this.writeChildNode(a,r,n+1);r.state=o.CloseTag,this.stream.write(this.indent(t,r,n)+"</"+t.name+">")}else this.stream.write(">"),r.state=o.InsideTag,r.suppressPrettyCount++,this.writeChildNode(p,r,n+1),r.suppressPrettyCount--,r.state=o.CloseTag,this.stream.write("</"+t.name+">");return this.stream.write(this.endline(t,r,n)),r.state=o.None,this.closeNode(t,r,n)},r.prototype.processingInstruction=function(t,e,o){return this.stream.write(r.__super__.processingInstruction.call(this,t,e,o))},r.prototype.raw=function(t,e,o){return this.stream.write(r.__super__.raw.call(this,t,e,o))},r.prototype.text=function(t,e,o){return this.stream.write(r.__super__.text.call(this,t,e,o))},r.prototype.dtdAttList=function(t,e,o){return this.stream.write(r.__super__.dtdAttList.call(this,t,e,o))},r.prototype.dtdElement=function(t,e,o){return this.stream.write(r.__super__.dtdElement.call(this,t,e,o))},r.prototype.dtdEntity=function(t,e,o){return this.stream.write(r.__super__.dtdEntity.call(this,t,e,o))},r.prototype.dtdNotation=function(t,e,o){return this.stream.write(r.__super__.dtdNotation.call(this,t,e,o))},r}(n)}).call(this)},6434:function(t,e,r){(function(){var e,o={}.hasOwnProperty;e=r(751),t.exports=function(t){function e(t){e.__super__.constructor.call(this,t)}return function(t,e){for(var r in e)o.call(e,r)&&(t[r]=e[r]);function n(){this.constructor=t}n.prototype=e.prototype,t.prototype=new n,t.__super__=e.prototype}(e,t),e.prototype.document=function(t,e){var r,o,n,i,s;for(e=this.filterOptions(e),i="",o=0,n=(s=t.children).length;o<n;o++)r=s[o],i+=this.writeChildNode(r,e,0);return e.pretty&&i.slice(-e.newline.length)===e.newline&&(i=i.slice(0,-e.newline.length)),i},e}(e)}).call(this)},5549:function(t){(function(){var e=function(t,e){return function(){return t.apply(e,arguments)}},r={}.hasOwnProperty;t.exports=function(){function t(t){var o,n,i;for(o in this.assertLegalName=e(this.assertLegalName,this),this.assertLegalChar=e(this.assertLegalChar,this),t||(t={}),this.options=t,this.options.version||(this.options.version="1.0"),n=t.stringify||{})r.call(n,o)&&(i=n[o],this[o]=i)}return t.prototype.name=function(t){return this.options.noValidation?t:this.assertLegalName(""+t||"")},t.prototype.text=function(t){return this.options.noValidation?t:this.assertLegalChar(this.textEscape(""+t||""))},t.prototype.cdata=function(t){return this.options.noValidation?t:(t=(t=""+t||"").replace("]]>","]]]]><![CDATA[>"),this.assertLegalChar(t))},t.prototype.comment=function(t){if(this.options.noValidation)return t;if((t=""+t||"").match(/--/))throw new Error("Comment text cannot contain double-hypen: "+t);return this.assertLegalChar(t)},t.prototype.raw=function(t){return this.options.noValidation?t:""+t||""},t.prototype.attValue=function(t){return this.options.noValidation?t:this.assertLegalChar(this.attEscape(t=""+t||""))},t.prototype.insTarget=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.insValue=function(t){if(this.options.noValidation)return t;if((t=""+t||"").match(/\?>/))throw new Error("Invalid processing instruction value: "+t);return this.assertLegalChar(t)},t.prototype.xmlVersion=function(t){if(this.options.noValidation)return t;if(!(t=""+t||"").match(/1\.[0-9]+/))throw new Error("Invalid version number: "+t);return t},t.prototype.xmlEncoding=function(t){if(this.options.noValidation)return t;if(!(t=""+t||"").match(/^[A-Za-z](?:[A-Za-z0-9._-])*$/))throw new Error("Invalid encoding: "+t);return this.assertLegalChar(t)},t.prototype.xmlStandalone=function(t){return this.options.noValidation?t:t?"yes":"no"},t.prototype.dtdPubID=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdSysID=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdElementValue=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdAttType=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdAttDefault=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdEntityValue=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdNData=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.convertAttKey="@",t.prototype.convertPIKey="?",t.prototype.convertTextKey="#text",t.prototype.convertCDataKey="#cdata",t.prototype.convertCommentKey="#comment",t.prototype.convertRawKey="#raw",t.prototype.assertLegalChar=function(t){var e,r;if(this.options.noValidation)return t;if(e="","1.0"===this.options.version){if(e=/[\0-\x08\x0B\f\x0E-\x1F\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,r=t.match(e))throw new Error("Invalid character in string: "+t+" at index "+r.index)}else if("1.1"===this.options.version&&(e=/[\0\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,r=t.match(e)))throw new Error("Invalid character in string: "+t+" at index "+r.index);return t},t.prototype.assertLegalName=function(t){var e;if(this.options.noValidation)return t;if(this.assertLegalChar(t),e=/^([:A-Z_a-z\xC0-\xD6\xD8-\xF6\xF8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])([\x2D\.0-:A-Z_a-z\xB7\xC0-\xD6\xD8-\xF6\xF8-\u037D\u037F-\u1FFF\u200C\u200D\u203F\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])*$/,!t.match(e))throw new Error("Invalid character in name");return t},t.prototype.textEscape=function(t){var e;return this.options.noValidation?t:(e=this.options.noDoubleEncoding?/(?!&\S+;)&/g:/&/g,t.replace(e,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/\r/g,"&#xD;"))},t.prototype.attEscape=function(t){var e;return this.options.noValidation?t:(e=this.options.noDoubleEncoding?/(?!&\S+;)&/g:/&/g,t.replace(e,"&amp;").replace(/</g,"&lt;").replace(/"/g,"&quot;").replace(/\t/g,"&#x9;").replace(/\n/g,"&#xA;").replace(/\r/g,"&#xD;"))},t}()}).call(this)},3595:function(t,e,r){(function(){var e,o,n={}.hasOwnProperty;e=r(9335),o=r(6488),t.exports=function(t){function r(t,o){if(r.__super__.constructor.call(this,t),null==o)throw new Error("Missing element text. "+this.debugInfo());this.name="#text",this.type=e.Text,this.value=this.stringify.text(o)}return function(t,e){for(var r in e)n.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(r,t),Object.defineProperty(r.prototype,"isElementContentWhitespace",{get:function(){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),Object.defineProperty(r.prototype,"wholeText",{get:function(){var t,e,r;for(r="",e=this.previousSibling;e;)r=e.data+r,e=e.previousSibling;for(r+=this.data,t=this.nextSibling;t;)r+=t.data,t=t.nextSibling;return r}}),r.prototype.clone=function(){return Object.create(this)},r.prototype.toString=function(t){return this.options.writer.text(this,this.options.writer.filterOptions(t))},r.prototype.splitText=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.replaceWholeText=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r}(o)}).call(this)},751:function(t,e,r){(function(){var e,o,n,i={}.hasOwnProperty;n=r(8369).assign,e=r(9335),r(9077),r(6544),r(6170),r(2096),r(2161),r(9406),r(3595),r(9181),r(8833),r(1179),r(6347),r(9078),r(4777),o=r(594),t.exports=function(){function t(t){var e,r,o;for(e in t||(t={}),this.options=t,r=t.writer||{})i.call(r,e)&&(o=r[e],this["_"+e]=this[e],this[e]=o)}return t.prototype.filterOptions=function(t){var e,r,i,s,a,u,p,c;return t||(t={}),t=n({},this.options,t),(e={writer:this}).pretty=t.pretty||!1,e.allowEmpty=t.allowEmpty||!1,e.indent=null!=(r=t.indent)?r:" ",e.newline=null!=(i=t.newline)?i:"\n",e.offset=null!=(s=t.offset)?s:0,e.dontPrettyTextNodes=null!=(a=null!=(u=t.dontPrettyTextNodes)?u:t.dontprettytextnodes)?a:0,e.spaceBeforeSlash=null!=(p=null!=(c=t.spaceBeforeSlash)?c:t.spacebeforeslash)?p:"",!0===e.spaceBeforeSlash&&(e.spaceBeforeSlash=" "),e.suppressPrettyCount=0,e.user={},e.state=o.None,e},t.prototype.indent=function(t,e,r){var o;return!e.pretty||e.suppressPrettyCount?"":e.pretty&&(o=(r||0)+e.offset+1)>0?new Array(o).join(e.indent):""},t.prototype.endline=function(t,e,r){return!e.pretty||e.suppressPrettyCount?"":e.newline},t.prototype.attribute=function(t,e,r){var o;return this.openAttribute(t,e,r),o=" "+t.name+'="'+t.value+'"',this.closeAttribute(t,e,r),o},t.prototype.cdata=function(t,e,r){var n;return this.openNode(t,e,r),e.state=o.OpenTag,n=this.indent(t,e,r)+"<![CDATA[",e.state=o.InsideTag,n+=t.value,e.state=o.CloseTag,n+="]]>"+this.endline(t,e,r),e.state=o.None,this.closeNode(t,e,r),n},t.prototype.comment=function(t,e,r){var n;return this.openNode(t,e,r),e.state=o.OpenTag,n=this.indent(t,e,r)+"\x3c!-- ",e.state=o.InsideTag,n+=t.value,e.state=o.CloseTag,n+=" --\x3e"+this.endline(t,e,r),e.state=o.None,this.closeNode(t,e,r),n},t.prototype.declaration=function(t,e,r){var n;return this.openNode(t,e,r),e.state=o.OpenTag,n=this.indent(t,e,r)+"<?xml",e.state=o.InsideTag,n+=' version="'+t.version+'"',null!=t.encoding&&(n+=' encoding="'+t.encoding+'"'),null!=t.standalone&&(n+=' standalone="'+t.standalone+'"'),e.state=o.CloseTag,n+=e.spaceBeforeSlash+"?>",n+=this.endline(t,e,r),e.state=o.None,this.closeNode(t,e,r),n},t.prototype.docType=function(t,e,r){var n,i,s,a,u;if(r||(r=0),this.openNode(t,e,r),e.state=o.OpenTag,a=this.indent(t,e,r),a+="<!DOCTYPE "+t.root().name,t.pubID&&t.sysID?a+=' PUBLIC "'+t.pubID+'" "'+t.sysID+'"':t.sysID&&(a+=' SYSTEM "'+t.sysID+'"'),t.children.length>0){for(a+=" [",a+=this.endline(t,e,r),e.state=o.InsideTag,i=0,s=(u=t.children).length;i<s;i++)n=u[i],a+=this.writeChildNode(n,e,r+1);e.state=o.CloseTag,a+="]"}return e.state=o.CloseTag,a+=e.spaceBeforeSlash+">",a+=this.endline(t,e,r),e.state=o.None,this.closeNode(t,e,r),a},t.prototype.element=function(t,r,n){var s,a,u,p,c,h,l,f,d,y,g,m,_,w;for(d in n||(n=0),y=!1,g="",this.openNode(t,r,n),r.state=o.OpenTag,g+=this.indent(t,r,n)+"<"+t.name,m=t.attribs)i.call(m,d)&&(s=m[d],g+=this.attribute(s,r,n));if(p=0===(u=t.children.length)?null:t.children[0],0===u||t.children.every((function(t){return(t.type===e.Text||t.type===e.Raw)&&""===t.value})))r.allowEmpty?(g+=">",r.state=o.CloseTag,g+="</"+t.name+">"+this.endline(t,r,n)):(r.state=o.CloseTag,g+=r.spaceBeforeSlash+"/>"+this.endline(t,r,n));else if(!r.pretty||1!==u||p.type!==e.Text&&p.type!==e.Raw||null==p.value){if(r.dontPrettyTextNodes)for(c=0,l=(_=t.children).length;c<l;c++)if(((a=_[c]).type===e.Text||a.type===e.Raw)&&null!=a.value){r.suppressPrettyCount++,y=!0;break}for(g+=">"+this.endline(t,r,n),r.state=o.InsideTag,h=0,f=(w=t.children).length;h<f;h++)a=w[h],g+=this.writeChildNode(a,r,n+1);r.state=o.CloseTag,g+=this.indent(t,r,n)+"</"+t.name+">",y&&r.suppressPrettyCount--,g+=this.endline(t,r,n),r.state=o.None}else g+=">",r.state=o.InsideTag,r.suppressPrettyCount++,y=!0,g+=this.writeChildNode(p,r,n+1),r.suppressPrettyCount--,y=!1,r.state=o.CloseTag,g+="</"+t.name+">"+this.endline(t,r,n);return this.closeNode(t,r,n),g},t.prototype.writeChildNode=function(t,r,o){switch(t.type){case e.CData:return this.cdata(t,r,o);case e.Comment:return this.comment(t,r,o);case e.Element:return this.element(t,r,o);case e.Raw:return this.raw(t,r,o);case e.Text:return this.text(t,r,o);case e.ProcessingInstruction:return this.processingInstruction(t,r,o);case e.Dummy:return"";case e.Declaration:return this.declaration(t,r,o);case e.DocType:return this.docType(t,r,o);case e.AttributeDeclaration:return this.dtdAttList(t,r,o);case e.ElementDeclaration:return this.dtdElement(t,r,o);case e.EntityDeclaration:return this.dtdEntity(t,r,o);case e.NotationDeclaration:return this.dtdNotation(t,r,o);default:throw new Error("Unknown XML node type: "+t.constructor.name)}},t.prototype.processingInstruction=function(t,e,r){var n;return this.openNode(t,e,r),e.state=o.OpenTag,n=this.indent(t,e,r)+"<?",e.state=o.InsideTag,n+=t.target,t.value&&(n+=" "+t.value),e.state=o.CloseTag,n+=e.spaceBeforeSlash+"?>",n+=this.endline(t,e,r),e.state=o.None,this.closeNode(t,e,r),n},t.prototype.raw=function(t,e,r){var n;return this.openNode(t,e,r),e.state=o.OpenTag,n=this.indent(t,e,r),e.state=o.InsideTag,n+=t.value,e.state=o.CloseTag,n+=this.endline(t,e,r),e.state=o.None,this.closeNode(t,e,r),n},t.prototype.text=function(t,e,r){var n;return this.openNode(t,e,r),e.state=o.OpenTag,n=this.indent(t,e,r),e.state=o.InsideTag,n+=t.value,e.state=o.CloseTag,n+=this.endline(t,e,r),e.state=o.None,this.closeNode(t,e,r),n},t.prototype.dtdAttList=function(t,e,r){var n;return this.openNode(t,e,r),e.state=o.OpenTag,n=this.indent(t,e,r)+"<!ATTLIST",e.state=o.InsideTag,n+=" "+t.elementName+" "+t.attributeName+" "+t.attributeType,"#DEFAULT"!==t.defaultValueType&&(n+=" "+t.defaultValueType),t.defaultValue&&(n+=' "'+t.defaultValue+'"'),e.state=o.CloseTag,n+=e.spaceBeforeSlash+">"+this.endline(t,e,r),e.state=o.None,this.closeNode(t,e,r),n},t.prototype.dtdElement=function(t,e,r){var n;return this.openNode(t,e,r),e.state=o.OpenTag,n=this.indent(t,e,r)+"<!ELEMENT",e.state=o.InsideTag,n+=" "+t.name+" "+t.value,e.state=o.CloseTag,n+=e.spaceBeforeSlash+">"+this.endline(t,e,r),e.state=o.None,this.closeNode(t,e,r),n},t.prototype.dtdEntity=function(t,e,r){var n;return this.openNode(t,e,r),e.state=o.OpenTag,n=this.indent(t,e,r)+"<!ENTITY",e.state=o.InsideTag,t.pe&&(n+=" %"),n+=" "+t.name,t.value?n+=' "'+t.value+'"':(t.pubID&&t.sysID?n+=' PUBLIC "'+t.pubID+'" "'+t.sysID+'"':t.sysID&&(n+=' SYSTEM "'+t.sysID+'"'),t.nData&&(n+=" NDATA "+t.nData)),e.state=o.CloseTag,n+=e.spaceBeforeSlash+">"+this.endline(t,e,r),e.state=o.None,this.closeNode(t,e,r),n},t.prototype.dtdNotation=function(t,e,r){var n;return this.openNode(t,e,r),e.state=o.OpenTag,n=this.indent(t,e,r)+"<!NOTATION",e.state=o.InsideTag,n+=" "+t.name,t.pubID&&t.sysID?n+=' PUBLIC "'+t.pubID+'" "'+t.sysID+'"':t.pubID?n+=' PUBLIC "'+t.pubID+'"':t.sysID&&(n+=' SYSTEM "'+t.sysID+'"'),e.state=o.CloseTag,n+=e.spaceBeforeSlash+">"+this.endline(t,e,r),e.state=o.None,this.closeNode(t,e,r),n},t.prototype.openNode=function(t,e,r){},t.prototype.closeNode=function(t,e,r){},t.prototype.openAttribute=function(t,e,r){},t.prototype.closeAttribute=function(t,e,r){},t}()}).call(this)},5532:function(t,e,r){(function(){var e,o,n,i,s,a,u,p,c,h;h=r(8369),p=h.assign,c=h.isFunction,n=r(1770),i=r(6934),s=r(9227),u=r(6434),a=r(1996),e=r(9335),o=r(594),t.exports.create=function(t,e,r,o){var n,s;if(null==t)throw new Error("Root element needs a name.");return o=p({},e,r,o),s=(n=new i(o)).element(t),o.headless||(n.declaration(o),null==o.pubID&&null==o.sysID||n.dtd(o)),s},t.exports.begin=function(t,e,r){var o;return c(t)&&(e=(o=[t,e])[0],r=o[1],t={}),e?new s(t,e,r):new i(t)},t.exports.stringWriter=function(t){return new u(t)},t.exports.streamWriter=function(t,e){return new a(t,e)},t.exports.implementation=new n,t.exports.nodeType=e,t.exports.writerState=o}).call(this)}},e={};function r(o){if(e[o])return e[o].exports;var n=e[o]={exports:{}};return t[o].call(n.exports,n,n.exports,r),n.exports}r.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return r.d(e,{a:e}),e},r.d=(t,e)=>{for(var o in e)r.o(e,o)&&!r.o(t,o)&&Object.defineProperty(t,o,{enumerable:!0,get:e[o]})},r.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),(()=>{"use strict";var t=r(5513),e=r.n(t);function o(t){return(o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function n(t,e){for(var r=0;r<e.length;r++){var o=e[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function i(t,e){return(i=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function s(t,e){return!e||"object"!==o(e)&&"function"!=typeof e?function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):e}function a(t){return(a=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}var u=wp.element,p=u.Component,c=u.createRef,h=wp.i18n.__,l=wp.components.Snackbar,f=wp.data.dispatch("core/notices").createNotice,d=function(t){l&&f("info",t,{isDismissible:!0,type:"snackbar"})};const y=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&i(t,e)}(l,t);var e,r,o,u,p=(o=l,u=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=a(o);if(u){var r=a(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return s(this,t)});function l(t){var e;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,l),(e=p.call(this,t)).img=e.props.result.url_m,e.fullSize=e.props.result.url_l,e.imgTitle=e.props.result.title,e.setAsFeaturedImage=!1,e.insertIntoPost=!1,e.inProgress=!1,e.SetFeaturedImage=e.props.SetFeaturedImage,e.InsertImage=e.props.InsertImage,e.noticeRef=c(),e.imageRef=c(),e.photoContainerRef=c(),e.state={attachmentId:""},e}return e=l,(r=[{key:"uploadPhoto",value:function(t){t.preventDefault();var e=this,r=t.currentTarget,o=r.parentElement.parentElement.parentElement.parentElement.parentElement,n=this.noticeRef.current,i=this.imageRef.current;if(r.classList.contains("download")&&""!==this.state.attachmentId)return!1;if(i.classList.add("uploading"),o.classList.add("in-progress"),n.innerHTML=h("Downloading Image...","themeisle-companion"),this.inProgress=!0,""!==this.state.attachmentId)return this.doPhotoAction(r,o,this.state.attachmentId),!0;if(void 0===this.fullSize)return e.uploadError(r,o,h("Error! Empty image.","themeisle-companion")),!1;var s=new FormData;s.append("action","handle-request-"+mystock_import.slug),s.append("url",this.fullSize),s.append("security",mystock_import.nonce),wp.apiFetch({url:mystock_import.ajaxurl,method:"POST",body:s}).then((function(t){t&&!0===t.success&&t.data.attachment.id?(e.doPhotoAction(r,o,t.data.attachment.id),e.setState({attachmentId:t.data.attachment.id})):e.uploadError(r,o,t.data.msg)})).catch((function(){e.uploadError(r,o,h("There was an error. Please try again.","themeisle-companion"))}))}},{key:"doPhotoAction",value:function(t,e,r){this.uploadComplete(t,e,r),this.setAsFeaturedImage&&(this.SetFeaturedImage(r),this.setAsFeaturedImage=!1),this.insertIntoPost&&(this.InsertImage(this.fullSize,this.imgTitle),this.insertIntoPost=!1)}},{key:"uploadError",value:function(t,e,r){var o=this.imageRef.current;o.classList.remove("uploading"),o.classList.add("errors"),this.photoContainerRef.current.classList.remove("in-progress"),t.parentNode.parentNode.classList.add("disabled"),setTimeout((function(){o.classList.remove("errors"),t.parentNode.parentNode.classList.remove("disabled")}),3e3,t,e),d(r),this.inProgress=!1,console.warn(r)}},{key:"uploadComplete",value:function(t,e,r){this.setState({attachmentId:r});var o=this.imageRef.current;o.classList.remove("uploading"),o.classList.add("success"),e.classList.remove("in-progress"),e.classList.add("uploaded","done"),t.parentNode.parentNode.classList.add("disabled"),setTimeout((function(){o.classList.remove("success"),e.classList.remove("uploaded"),t.parentNode.parentNode.classList.remove("disabled")}),3e3,t,e),this.inProgress=!1,t.classList.contains("download")&&d(h("Image was added to Media Library.","themeisle-companion")),t.classList.contains("set-featured")&&d(h("Image was set as featured image.","themeisle-companion")),t.classList.contains("insert")&&d(h("Image was inserted in post content.","themeisle-companion"))}},{key:"setFeaturedImageClick",value:function(t){if(!t.currentTarget)return!1;this.setAsFeaturedImage=!0,this.uploadPhoto(t)}},{key:"insertImageIntoPost",value:function(t){if(!t.currentTarget)return!1;this.insertIntoPost=!0,this.uploadPhoto(t)}},{key:"render",value:function(){var t=this;return React.createElement("article",{className:"photo",ref:this.photoContainerRef},React.createElement("div",{className:"photo--wrap"},React.createElement("div",{className:"img-wrap"},React.createElement("a",{className:"upload",href:"#",ref:this.imageRef},React.createElement("img",{src:this.img,alt:this.imgTitle}),React.createElement("div",{className:"status"})),React.createElement("div",{ref:this.noticeRef,className:"notice-msg"}),React.createElement("div",{className:"user-controls"},React.createElement("div",{className:"photo-options"},React.createElement("a",{className:"download fade",href:"#",onClick:function(e){return t.uploadPhoto(e)},title:h("Add to Media Library","themeisle-companion")},React.createElement("span",{className:"dashicons dashicons-download"})),React.createElement("a",{className:"set-featured fade",href:"#",onClick:function(e){return t.setFeaturedImageClick(e)},title:h("Set as featured image","themeisle-companion")},React.createElement("span",{className:"dashicons dashicons-format-image"})),React.createElement("a",{className:"insert fade",href:"#",onClick:function(e){return t.insertImageIntoPost(e)},title:h("Insert into post","themeisle-companion")},React.createElement("span",{className:"dashicons dashicons-plus"})))))))}}])&&n(e.prototype,r),l}(p);function g(t){return(g="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function m(t,e){for(var r=0;r<e.length;r++){var o=e[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function _(t,e){return(_=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function w(t,e){return!e||"object"!==g(e)&&"function"!=typeof e?T(t):e}function T(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function b(t){return(b=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}var E=wp.components.Spinner,v=wp.element,O=v.Component,I=v.createRef,P=wp.i18n.__;const N=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&_(t,e)}(a,t);var r,o,n,i,s=(n=a,i=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=b(n);if(i){var r=b(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return w(this,t)});function a(t){var r;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),(r=s.call(this,t)).apiKey=mystock_import.api_key,r.userId=mystock_import.user_id,r.perPage=mystock_import.per_page,r.flickr=new(e())(r.apiKey),r.results=r.props.results?r.props.results:[],r.state={results:r.results},r.isSearch=!1,r.search_term="",r.nothingFound=!1,r.isLoading=!1,r.isDone=!1,r.page=r.props.page,r.SetFeaturedImage=r.props.SetFeaturedImage?r.props.SetFeaturedImage.bind(T(r)):"",r.InsertImage=r.props.InsertImage?r.props.InsertImage.bind(T(r)):"",r.errorRef=I(),r.searchRef=I(),r}return r=a,(o=[{key:"test",value:function(){var t=this,e=this.errorRef.current;this.flickr.test.echo(this.apiKey).then((function(r){(r.statusCode<200||r.statusCode>=400)&&t.renderTestError(e)}))}},{key:"renderTestError",value:function(t){t.classList.add("active"),t.innerHTML=P("There was an error accessing the server. Please try again later. If you still receive this error, contact the support team.","themeisle-companion")}},{key:"getPhotos",value:function(){var t=this;if(this.page=parseInt(this.page)+1,this.isLoading=!0,this.isSearch)this.doSearch(this.search_term,!0);else{var e={api_key:this.apiKey,user_id:this.userId,per_page:this.perPage,extras:"url_m, url_l",page:this.page};this.flickr.people.getPublicPhotos(e).then((function(e){var r=e.body.photos.photo;r.map((function(e){t.results.push(e)})),t.checkTotalResults(r.length),t.setState({results:t.results})})).catch((function(e){console.log(e),t.isLoading=!1}))}}},{key:"checkTotalResults",value:function(t){this.isDone=t<this.perPage}},{key:"search",value:function(t){t.preventDefault();var e=this.searchRef.current,r=e.value;r.length>2?(e.classList.add("searching"),this.search_term=r,this.nothingFound=!1,this.isSearch=!0,this.page=0,this.doSearch(this.search_term)):e.focus()}},{key:"doSearch",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=this;this.page=parseInt(this.page)+1;var o=this.searchRef.current;!0!==e&&(r.results=[],r.setState({results:[]}));var n={api_key:this.apiKey,user_id:this.userId,text:this.search_term,per_page:this.perPage,extras:"url_m, url_l",page:this.page};this.flickr.photos.search(n).then((function(t){var e=t.body.photos.photo;0===e.length&&(r.nothingFound=!0),0===e.length&&!1===r.append&&(r.nothingFound=!0),e.map((function(t){r.results.push(t)})),r.checkTotalResults(e.length),r.setState({results:r.results}),o.classList.remove("searching")})).catch((function(t){console.log(t),r.isLoading=!1}))}},{key:"resetSearch",value:function(){var t=this.searchRef.current;this.isSearch=!1,this.page=0,this.results=[],t.value="",this.getPhotos()}},{key:"componentDidMount",value:function(){this.test(),this.page=0,this.getPhotos()}},{key:"render",value:function(){var t=this,e="",r="";return this.isDone||(e=React.createElement("div",{className:"load-more-wrap"},React.createElement("button",{type:"button",className:"button",onClick:function(){return t.getPhotos()}},P("Load More Images","themeisle-companion")))),0!==this.results.length||this.nothingFound||(r=React.createElement("div",{className:"loading-wrap"},React.createElement("h3",null,P("Loading images...","themeisle-companion")),React.createElement(E,null))),React.createElement("div",{id:"photo-listing"},React.createElement("div",{className:"search-field",id:"search-bar"},React.createElement("form",{onSubmit:function(e){return t.search(e)},autoComplete:"off"},React.createElement("input",{ref:this.searchRef,type:"text",id:"photo-search",placeholder:P("Search","themeisle-companion")}),React.createElement("button",{type:"submit",id:"photo-search-submit"},React.createElement("span",{className:"dashicons dashicons-search"})),React.createElement("button",{id:"clear-search",onClick:function(e){return t.resetSearch()}},React.createElement("span",{className:"dashicons dashicons-no"})))),React.createElement("div",{ref:this.errorRef,className:"error-messaging"}),React.createElement("div",{id:"msp-photos"},r,this.state.results.map((function(e,r){return React.createElement(y,{result:e,key:e.id+r,SetFeaturedImage:t.SetFeaturedImage,InsertImage:t.InsertImage})}))),React.createElement("div",{className:!0===this.nothingFound&&this.isSearch?"no-results show":"no-results",title:this.props.title},React.createElement("h3",null,P("Sorry, nothing matched your query.","themeisle-companion")," "),React.createElement("p",null,P("Please try with another word.","themeisle-companion")," ")),e)}}])&&m(r.prototype,o),a}(O);var D=wp.data.dispatch;const C=function(t){if(null===t)return!1;D("core/editor").editPost({featured_media:t})};var k=wp.blocks.createBlock,x=wp.data.dispatch,A=(x("core/block-editor")||x("core/editor")).insertBlocks;const S=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";if(""===t)return!1;var r=k("core/image",{url:t,alt:e});A(r)};var L=wp.element.Fragment,R=wp.editPost,F=R.PluginSidebar,B=R.PluginSidebarMoreMenuItem,j=wp.i18n.__;var M=wp.plugins.registerPlugin,G=wp.components.Icon;M("mystock-images",{icon:React.createElement(G,{icon:"camera"}),render:function(){return React.createElement(L,null,React.createElement(B,{target:"mystock-sidebar"},j("MyStockPhotos","themeisle-companion")),React.createElement(F,{name:"mystock-sidebar",title:j("MyStockPhotos","themeisle-companion")},React.createElement("div",{className:"mystock-img-container"},React.createElement(N,{page:1,SetFeaturedImage:C,InsertImage:S}))))}})})()})();
1
  /*! For license information please see script.js.LICENSE.txt */
2
+ (()=>{var t={9742:(t,e)=>{"use strict";e.byteLength=function(t){var e=u(t),r=e[0],o=e[1];return 3*(r+o)/4-o},e.toByteArray=function(t){var e,r,i=u(t),s=i[0],a=i[1],p=new n(function(t,e,r){return 3*(e+r)/4-r}(0,s,a)),c=0,h=a>0?s-4:s;for(r=0;r<h;r+=4)e=o[t.charCodeAt(r)]<<18|o[t.charCodeAt(r+1)]<<12|o[t.charCodeAt(r+2)]<<6|o[t.charCodeAt(r+3)],p[c++]=e>>16&255,p[c++]=e>>8&255,p[c++]=255&e;return 2===a&&(e=o[t.charCodeAt(r)]<<2|o[t.charCodeAt(r+1)]>>4,p[c++]=255&e),1===a&&(e=o[t.charCodeAt(r)]<<10|o[t.charCodeAt(r+1)]<<4|o[t.charCodeAt(r+2)]>>2,p[c++]=e>>8&255,p[c++]=255&e),p},e.fromByteArray=function(t){for(var e,o=t.length,n=o%3,i=[],s=16383,a=0,u=o-n;a<u;a+=s)i.push(p(t,a,a+s>u?u:a+s));return 1===n?(e=t[o-1],i.push(r[e>>2]+r[e<<4&63]+"==")):2===n&&(e=(t[o-2]<<8)+t[o-1],i.push(r[e>>10]+r[e>>4&63]+r[e<<2&63]+"=")),i.join("")};for(var r=[],o=[],n="undefined"!=typeof Uint8Array?Uint8Array:Array,i="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",s=0,a=i.length;s<a;++s)r[s]=i[s],o[i.charCodeAt(s)]=s;function u(t){var e=t.length;if(e%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var r=t.indexOf("=");return-1===r&&(r=e),[r,r===e?0:4-r%4]}function p(t,e,o){for(var n,i,s=[],a=e;a<o;a+=3)n=(t[a]<<16&16711680)+(t[a+1]<<8&65280)+(255&t[a+2]),s.push(r[(i=n)>>18&63]+r[i>>12&63]+r[i>>6&63]+r[63&i]);return s.join("")}o["-".charCodeAt(0)]=62,o["_".charCodeAt(0)]=63},8764:(t,e,r)=>{"use strict";const o=r(9742),n=r(645),i="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;e.Buffer=u,e.SlowBuffer=function(t){return+t!=t&&(t=0),u.alloc(+t)},e.INSPECT_MAX_BYTES=50;const s=2147483647;function a(t){if(t>s)throw new RangeError('The value "'+t+'" is invalid for option "size"');const e=new Uint8Array(t);return Object.setPrototypeOf(e,u.prototype),e}function u(t,e,r){if("number"==typeof t){if("string"==typeof e)throw new TypeError('The "string" argument must be of type string. Received type number');return h(t)}return p(t,e,r)}function p(t,e,r){if("string"==typeof t)return function(t,e){if("string"==typeof e&&""!==e||(e="utf8"),!u.isEncoding(e))throw new TypeError("Unknown encoding: "+e);const r=0|y(t,e);let o=a(r);const n=o.write(t,e);return n!==r&&(o=o.slice(0,n)),o}(t,e);if(ArrayBuffer.isView(t))return function(t){if(K(t,Uint8Array)){const e=new Uint8Array(t);return f(e.buffer,e.byteOffset,e.byteLength)}return l(t)}(t);if(null==t)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof t);if(K(t,ArrayBuffer)||t&&K(t.buffer,ArrayBuffer))return f(t,e,r);if("undefined"!=typeof SharedArrayBuffer&&(K(t,SharedArrayBuffer)||t&&K(t.buffer,SharedArrayBuffer)))return f(t,e,r);if("number"==typeof t)throw new TypeError('The "value" argument must not be of type number. Received type number');const o=t.valueOf&&t.valueOf();if(null!=o&&o!==t)return u.from(o,e,r);const n=function(t){if(u.isBuffer(t)){const e=0|d(t.length),r=a(e);return 0===r.length||t.copy(r,0,0,e),r}return void 0!==t.length?"number"!=typeof t.length||W(t.length)?a(0):l(t):"Buffer"===t.type&&Array.isArray(t.data)?l(t.data):void 0}(t);if(n)return n;if("undefined"!=typeof Symbol&&null!=Symbol.toPrimitive&&"function"==typeof t[Symbol.toPrimitive])return u.from(t[Symbol.toPrimitive]("string"),e,r);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof t)}function c(t){if("number"!=typeof t)throw new TypeError('"size" argument must be of type number');if(t<0)throw new RangeError('The value "'+t+'" is invalid for option "size"')}function h(t){return c(t),a(t<0?0:0|d(t))}function l(t){const e=t.length<0?0:0|d(t.length),r=a(e);for(let o=0;o<e;o+=1)r[o]=255&t[o];return r}function f(t,e,r){if(e<0||t.byteLength<e)throw new RangeError('"offset" is outside of buffer bounds');if(t.byteLength<e+(r||0))throw new RangeError('"length" is outside of buffer bounds');let o;return o=void 0===e&&void 0===r?new Uint8Array(t):void 0===r?new Uint8Array(t,e):new Uint8Array(t,e,r),Object.setPrototypeOf(o,u.prototype),o}function d(t){if(t>=s)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+s.toString(16)+" bytes");return 0|t}function y(t,e){if(u.isBuffer(t))return t.length;if(ArrayBuffer.isView(t)||K(t,ArrayBuffer))return t.byteLength;if("string"!=typeof t)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof t);const r=t.length,o=arguments.length>2&&!0===arguments[2];if(!o&&0===r)return 0;let n=!1;for(;;)switch(e){case"ascii":case"latin1":case"binary":return r;case"utf8":case"utf-8":return X(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*r;case"hex":return r>>>1;case"base64":return Y(t).length;default:if(n)return o?-1:X(t).length;e=(""+e).toLowerCase(),n=!0}}function g(t,e,r){let o=!1;if((void 0===e||e<0)&&(e=0),e>this.length)return"";if((void 0===r||r>this.length)&&(r=this.length),r<=0)return"";if((r>>>=0)<=(e>>>=0))return"";for(t||(t="utf8");;)switch(t){case"hex":return k(this,e,r);case"utf8":case"utf-8":return P(this,e,r);case"ascii":return D(this,e,r);case"latin1":case"binary":return C(this,e,r);case"base64":return I(this,e,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return x(this,e,r);default:if(o)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),o=!0}}function m(t,e,r){const o=t[e];t[e]=t[r],t[r]=o}function _(t,e,r,o,n){if(0===t.length)return-1;if("string"==typeof r?(o=r,r=0):r>2147483647?r=2147483647:r<-2147483648&&(r=-2147483648),W(r=+r)&&(r=n?0:t.length-1),r<0&&(r=t.length+r),r>=t.length){if(n)return-1;r=t.length-1}else if(r<0){if(!n)return-1;r=0}if("string"==typeof e&&(e=u.from(e,o)),u.isBuffer(e))return 0===e.length?-1:w(t,e,r,o,n);if("number"==typeof e)return e&=255,"function"==typeof Uint8Array.prototype.indexOf?n?Uint8Array.prototype.indexOf.call(t,e,r):Uint8Array.prototype.lastIndexOf.call(t,e,r):w(t,[e],r,o,n);throw new TypeError("val must be string, number or Buffer")}function w(t,e,r,o,n){let i,s=1,a=t.length,u=e.length;if(void 0!==o&&("ucs2"===(o=String(o).toLowerCase())||"ucs-2"===o||"utf16le"===o||"utf-16le"===o)){if(t.length<2||e.length<2)return-1;s=2,a/=2,u/=2,r/=2}function p(t,e){return 1===s?t[e]:t.readUInt16BE(e*s)}if(n){let o=-1;for(i=r;i<a;i++)if(p(t,i)===p(e,-1===o?0:i-o)){if(-1===o&&(o=i),i-o+1===u)return o*s}else-1!==o&&(i-=i-o),o=-1}else for(r+u>a&&(r=a-u),i=r;i>=0;i--){let r=!0;for(let o=0;o<u;o++)if(p(t,i+o)!==p(e,o)){r=!1;break}if(r)return i}return-1}function T(t,e,r,o){r=Number(r)||0;const n=t.length-r;o?(o=Number(o))>n&&(o=n):o=n;const i=e.length;let s;for(o>i/2&&(o=i/2),s=0;s<o;++s){const o=parseInt(e.substr(2*s,2),16);if(W(o))return s;t[r+s]=o}return s}function b(t,e,r,o){return $(X(e,t.length-r),t,r,o)}function E(t,e,r,o){return $(function(t){const e=[];for(let r=0;r<t.length;++r)e.push(255&t.charCodeAt(r));return e}(e),t,r,o)}function v(t,e,r,o){return $(Y(e),t,r,o)}function O(t,e,r,o){return $(function(t,e){let r,o,n;const i=[];for(let s=0;s<t.length&&!((e-=2)<0);++s)r=t.charCodeAt(s),o=r>>8,n=r%256,i.push(n),i.push(o);return i}(e,t.length-r),t,r,o)}function I(t,e,r){return 0===e&&r===t.length?o.fromByteArray(t):o.fromByteArray(t.slice(e,r))}function P(t,e,r){r=Math.min(t.length,r);const o=[];let n=e;for(;n<r;){const e=t[n];let i=null,s=e>239?4:e>223?3:e>191?2:1;if(n+s<=r){let r,o,a,u;switch(s){case 1:e<128&&(i=e);break;case 2:r=t[n+1],128==(192&r)&&(u=(31&e)<<6|63&r,u>127&&(i=u));break;case 3:r=t[n+1],o=t[n+2],128==(192&r)&&128==(192&o)&&(u=(15&e)<<12|(63&r)<<6|63&o,u>2047&&(u<55296||u>57343)&&(i=u));break;case 4:r=t[n+1],o=t[n+2],a=t[n+3],128==(192&r)&&128==(192&o)&&128==(192&a)&&(u=(15&e)<<18|(63&r)<<12|(63&o)<<6|63&a,u>65535&&u<1114112&&(i=u))}}null===i?(i=65533,s=1):i>65535&&(i-=65536,o.push(i>>>10&1023|55296),i=56320|1023&i),o.push(i),n+=s}return function(t){const e=t.length;if(e<=N)return String.fromCharCode.apply(String,t);let r="",o=0;for(;o<e;)r+=String.fromCharCode.apply(String,t.slice(o,o+=N));return r}(o)}e.kMaxLength=s,u.TYPED_ARRAY_SUPPORT=function(){try{const t=new Uint8Array(1),e={foo:function(){return 42}};return Object.setPrototypeOf(e,Uint8Array.prototype),Object.setPrototypeOf(t,e),42===t.foo()}catch(t){return!1}}(),u.TYPED_ARRAY_SUPPORT||"undefined"==typeof console||"function"!=typeof console.error||console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support."),Object.defineProperty(u.prototype,"parent",{enumerable:!0,get:function(){if(u.isBuffer(this))return this.buffer}}),Object.defineProperty(u.prototype,"offset",{enumerable:!0,get:function(){if(u.isBuffer(this))return this.byteOffset}}),u.poolSize=8192,u.from=function(t,e,r){return p(t,e,r)},Object.setPrototypeOf(u.prototype,Uint8Array.prototype),Object.setPrototypeOf(u,Uint8Array),u.alloc=function(t,e,r){return function(t,e,r){return c(t),t<=0?a(t):void 0!==e?"string"==typeof r?a(t).fill(e,r):a(t).fill(e):a(t)}(t,e,r)},u.allocUnsafe=function(t){return h(t)},u.allocUnsafeSlow=function(t){return h(t)},u.isBuffer=function(t){return null!=t&&!0===t._isBuffer&&t!==u.prototype},u.compare=function(t,e){if(K(t,Uint8Array)&&(t=u.from(t,t.offset,t.byteLength)),K(e,Uint8Array)&&(e=u.from(e,e.offset,e.byteLength)),!u.isBuffer(t)||!u.isBuffer(e))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(t===e)return 0;let r=t.length,o=e.length;for(let n=0,i=Math.min(r,o);n<i;++n)if(t[n]!==e[n]){r=t[n],o=e[n];break}return r<o?-1:o<r?1:0},u.isEncoding=function(t){switch(String(t).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}},u.concat=function(t,e){if(!Array.isArray(t))throw new TypeError('"list" argument must be an Array of Buffers');if(0===t.length)return u.alloc(0);let r;if(void 0===e)for(e=0,r=0;r<t.length;++r)e+=t[r].length;const o=u.allocUnsafe(e);let n=0;for(r=0;r<t.length;++r){let e=t[r];if(K(e,Uint8Array))n+e.length>o.length?(u.isBuffer(e)||(e=u.from(e)),e.copy(o,n)):Uint8Array.prototype.set.call(o,e,n);else{if(!u.isBuffer(e))throw new TypeError('"list" argument must be an Array of Buffers');e.copy(o,n)}n+=e.length}return o},u.byteLength=y,u.prototype._isBuffer=!0,u.prototype.swap16=function(){const t=this.length;if(t%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(let e=0;e<t;e+=2)m(this,e,e+1);return this},u.prototype.swap32=function(){const t=this.length;if(t%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(let e=0;e<t;e+=4)m(this,e,e+3),m(this,e+1,e+2);return this},u.prototype.swap64=function(){const t=this.length;if(t%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(let e=0;e<t;e+=8)m(this,e,e+7),m(this,e+1,e+6),m(this,e+2,e+5),m(this,e+3,e+4);return this},u.prototype.toString=function(){const t=this.length;return 0===t?"":0===arguments.length?P(this,0,t):g.apply(this,arguments)},u.prototype.toLocaleString=u.prototype.toString,u.prototype.equals=function(t){if(!u.isBuffer(t))throw new TypeError("Argument must be a Buffer");return this===t||0===u.compare(this,t)},u.prototype.inspect=function(){let t="";const r=e.INSPECT_MAX_BYTES;return t=this.toString("hex",0,r).replace(/(.{2})/g,"$1 ").trim(),this.length>r&&(t+=" ... "),"<Buffer "+t+">"},i&&(u.prototype[i]=u.prototype.inspect),u.prototype.compare=function(t,e,r,o,n){if(K(t,Uint8Array)&&(t=u.from(t,t.offset,t.byteLength)),!u.isBuffer(t))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof t);if(void 0===e&&(e=0),void 0===r&&(r=t?t.length:0),void 0===o&&(o=0),void 0===n&&(n=this.length),e<0||r>t.length||o<0||n>this.length)throw new RangeError("out of range index");if(o>=n&&e>=r)return 0;if(o>=n)return-1;if(e>=r)return 1;if(this===t)return 0;let i=(n>>>=0)-(o>>>=0),s=(r>>>=0)-(e>>>=0);const a=Math.min(i,s),p=this.slice(o,n),c=t.slice(e,r);for(let t=0;t<a;++t)if(p[t]!==c[t]){i=p[t],s=c[t];break}return i<s?-1:s<i?1:0},u.prototype.includes=function(t,e,r){return-1!==this.indexOf(t,e,r)},u.prototype.indexOf=function(t,e,r){return _(this,t,e,r,!0)},u.prototype.lastIndexOf=function(t,e,r){return _(this,t,e,r,!1)},u.prototype.write=function(t,e,r,o){if(void 0===e)o="utf8",r=this.length,e=0;else if(void 0===r&&"string"==typeof e)o=e,r=this.length,e=0;else{if(!isFinite(e))throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");e>>>=0,isFinite(r)?(r>>>=0,void 0===o&&(o="utf8")):(o=r,r=void 0)}const n=this.length-e;if((void 0===r||r>n)&&(r=n),t.length>0&&(r<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");o||(o="utf8");let i=!1;for(;;)switch(o){case"hex":return T(this,t,e,r);case"utf8":case"utf-8":return b(this,t,e,r);case"ascii":case"latin1":case"binary":return E(this,t,e,r);case"base64":return v(this,t,e,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return O(this,t,e,r);default:if(i)throw new TypeError("Unknown encoding: "+o);o=(""+o).toLowerCase(),i=!0}},u.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};const N=4096;function D(t,e,r){let o="";r=Math.min(t.length,r);for(let n=e;n<r;++n)o+=String.fromCharCode(127&t[n]);return o}function C(t,e,r){let o="";r=Math.min(t.length,r);for(let n=e;n<r;++n)o+=String.fromCharCode(t[n]);return o}function k(t,e,r){const o=t.length;(!e||e<0)&&(e=0),(!r||r<0||r>o)&&(r=o);let n="";for(let o=e;o<r;++o)n+=Q[t[o]];return n}function x(t,e,r){const o=t.slice(e,r);let n="";for(let t=0;t<o.length-1;t+=2)n+=String.fromCharCode(o[t]+256*o[t+1]);return n}function A(t,e,r){if(t%1!=0||t<0)throw new RangeError("offset is not uint");if(t+e>r)throw new RangeError("Trying to access beyond buffer length")}function S(t,e,r,o,n,i){if(!u.isBuffer(t))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>n||e<i)throw new RangeError('"value" argument is out of bounds');if(r+o>t.length)throw new RangeError("Index out of range")}function L(t,e,r,o,n){q(e,o,n,t,r,7);let i=Number(e&BigInt(4294967295));t[r++]=i,i>>=8,t[r++]=i,i>>=8,t[r++]=i,i>>=8,t[r++]=i;let s=Number(e>>BigInt(32)&BigInt(4294967295));return t[r++]=s,s>>=8,t[r++]=s,s>>=8,t[r++]=s,s>>=8,t[r++]=s,r}function R(t,e,r,o,n){q(e,o,n,t,r,7);let i=Number(e&BigInt(4294967295));t[r+7]=i,i>>=8,t[r+6]=i,i>>=8,t[r+5]=i,i>>=8,t[r+4]=i;let s=Number(e>>BigInt(32)&BigInt(4294967295));return t[r+3]=s,s>>=8,t[r+2]=s,s>>=8,t[r+1]=s,s>>=8,t[r]=s,r+8}function B(t,e,r,o,n,i){if(r+o>t.length)throw new RangeError("Index out of range");if(r<0)throw new RangeError("Index out of range")}function F(t,e,r,o,i){return e=+e,r>>>=0,i||B(t,0,r,4),n.write(t,e,r,o,23,4),r+4}function j(t,e,r,o,i){return e=+e,r>>>=0,i||B(t,0,r,8),n.write(t,e,r,o,52,8),r+8}u.prototype.slice=function(t,e){const r=this.length;(t=~~t)<0?(t+=r)<0&&(t=0):t>r&&(t=r),(e=void 0===e?r:~~e)<0?(e+=r)<0&&(e=0):e>r&&(e=r),e<t&&(e=t);const o=this.subarray(t,e);return Object.setPrototypeOf(o,u.prototype),o},u.prototype.readUintLE=u.prototype.readUIntLE=function(t,e,r){t>>>=0,e>>>=0,r||A(t,e,this.length);let o=this[t],n=1,i=0;for(;++i<e&&(n*=256);)o+=this[t+i]*n;return o},u.prototype.readUintBE=u.prototype.readUIntBE=function(t,e,r){t>>>=0,e>>>=0,r||A(t,e,this.length);let o=this[t+--e],n=1;for(;e>0&&(n*=256);)o+=this[t+--e]*n;return o},u.prototype.readUint8=u.prototype.readUInt8=function(t,e){return t>>>=0,e||A(t,1,this.length),this[t]},u.prototype.readUint16LE=u.prototype.readUInt16LE=function(t,e){return t>>>=0,e||A(t,2,this.length),this[t]|this[t+1]<<8},u.prototype.readUint16BE=u.prototype.readUInt16BE=function(t,e){return t>>>=0,e||A(t,2,this.length),this[t]<<8|this[t+1]},u.prototype.readUint32LE=u.prototype.readUInt32LE=function(t,e){return t>>>=0,e||A(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},u.prototype.readUint32BE=u.prototype.readUInt32BE=function(t,e){return t>>>=0,e||A(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},u.prototype.readBigUInt64LE=Z((function(t){V(t>>>=0,"offset");const e=this[t],r=this[t+7];void 0!==e&&void 0!==r||z(t,this.length-8);const o=e+256*this[++t]+65536*this[++t]+this[++t]*2**24,n=this[++t]+256*this[++t]+65536*this[++t]+r*2**24;return BigInt(o)+(BigInt(n)<<BigInt(32))})),u.prototype.readBigUInt64BE=Z((function(t){V(t>>>=0,"offset");const e=this[t],r=this[t+7];void 0!==e&&void 0!==r||z(t,this.length-8);const o=e*2**24+65536*this[++t]+256*this[++t]+this[++t],n=this[++t]*2**24+65536*this[++t]+256*this[++t]+r;return(BigInt(o)<<BigInt(32))+BigInt(n)})),u.prototype.readIntLE=function(t,e,r){t>>>=0,e>>>=0,r||A(t,e,this.length);let o=this[t],n=1,i=0;for(;++i<e&&(n*=256);)o+=this[t+i]*n;return n*=128,o>=n&&(o-=Math.pow(2,8*e)),o},u.prototype.readIntBE=function(t,e,r){t>>>=0,e>>>=0,r||A(t,e,this.length);let o=e,n=1,i=this[t+--o];for(;o>0&&(n*=256);)i+=this[t+--o]*n;return n*=128,i>=n&&(i-=Math.pow(2,8*e)),i},u.prototype.readInt8=function(t,e){return t>>>=0,e||A(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},u.prototype.readInt16LE=function(t,e){t>>>=0,e||A(t,2,this.length);const r=this[t]|this[t+1]<<8;return 32768&r?4294901760|r:r},u.prototype.readInt16BE=function(t,e){t>>>=0,e||A(t,2,this.length);const r=this[t+1]|this[t]<<8;return 32768&r?4294901760|r:r},u.prototype.readInt32LE=function(t,e){return t>>>=0,e||A(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},u.prototype.readInt32BE=function(t,e){return t>>>=0,e||A(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},u.prototype.readBigInt64LE=Z((function(t){V(t>>>=0,"offset");const e=this[t],r=this[t+7];void 0!==e&&void 0!==r||z(t,this.length-8);const o=this[t+4]+256*this[t+5]+65536*this[t+6]+(r<<24);return(BigInt(o)<<BigInt(32))+BigInt(e+256*this[++t]+65536*this[++t]+this[++t]*2**24)})),u.prototype.readBigInt64BE=Z((function(t){V(t>>>=0,"offset");const e=this[t],r=this[t+7];void 0!==e&&void 0!==r||z(t,this.length-8);const o=(e<<24)+65536*this[++t]+256*this[++t]+this[++t];return(BigInt(o)<<BigInt(32))+BigInt(this[++t]*2**24+65536*this[++t]+256*this[++t]+r)})),u.prototype.readFloatLE=function(t,e){return t>>>=0,e||A(t,4,this.length),n.read(this,t,!0,23,4)},u.prototype.readFloatBE=function(t,e){return t>>>=0,e||A(t,4,this.length),n.read(this,t,!1,23,4)},u.prototype.readDoubleLE=function(t,e){return t>>>=0,e||A(t,8,this.length),n.read(this,t,!0,52,8)},u.prototype.readDoubleBE=function(t,e){return t>>>=0,e||A(t,8,this.length),n.read(this,t,!1,52,8)},u.prototype.writeUintLE=u.prototype.writeUIntLE=function(t,e,r,o){t=+t,e>>>=0,r>>>=0,o||S(this,t,e,r,Math.pow(2,8*r)-1,0);let n=1,i=0;for(this[e]=255&t;++i<r&&(n*=256);)this[e+i]=t/n&255;return e+r},u.prototype.writeUintBE=u.prototype.writeUIntBE=function(t,e,r,o){t=+t,e>>>=0,r>>>=0,o||S(this,t,e,r,Math.pow(2,8*r)-1,0);let n=r-1,i=1;for(this[e+n]=255&t;--n>=0&&(i*=256);)this[e+n]=t/i&255;return e+r},u.prototype.writeUint8=u.prototype.writeUInt8=function(t,e,r){return t=+t,e>>>=0,r||S(this,t,e,1,255,0),this[e]=255&t,e+1},u.prototype.writeUint16LE=u.prototype.writeUInt16LE=function(t,e,r){return t=+t,e>>>=0,r||S(this,t,e,2,65535,0),this[e]=255&t,this[e+1]=t>>>8,e+2},u.prototype.writeUint16BE=u.prototype.writeUInt16BE=function(t,e,r){return t=+t,e>>>=0,r||S(this,t,e,2,65535,0),this[e]=t>>>8,this[e+1]=255&t,e+2},u.prototype.writeUint32LE=u.prototype.writeUInt32LE=function(t,e,r){return t=+t,e>>>=0,r||S(this,t,e,4,4294967295,0),this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t,e+4},u.prototype.writeUint32BE=u.prototype.writeUInt32BE=function(t,e,r){return t=+t,e>>>=0,r||S(this,t,e,4,4294967295,0),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},u.prototype.writeBigUInt64LE=Z((function(t,e=0){return L(this,t,e,BigInt(0),BigInt("0xffffffffffffffff"))})),u.prototype.writeBigUInt64BE=Z((function(t,e=0){return R(this,t,e,BigInt(0),BigInt("0xffffffffffffffff"))})),u.prototype.writeIntLE=function(t,e,r,o){if(t=+t,e>>>=0,!o){const o=Math.pow(2,8*r-1);S(this,t,e,r,o-1,-o)}let n=0,i=1,s=0;for(this[e]=255&t;++n<r&&(i*=256);)t<0&&0===s&&0!==this[e+n-1]&&(s=1),this[e+n]=(t/i>>0)-s&255;return e+r},u.prototype.writeIntBE=function(t,e,r,o){if(t=+t,e>>>=0,!o){const o=Math.pow(2,8*r-1);S(this,t,e,r,o-1,-o)}let n=r-1,i=1,s=0;for(this[e+n]=255&t;--n>=0&&(i*=256);)t<0&&0===s&&0!==this[e+n+1]&&(s=1),this[e+n]=(t/i>>0)-s&255;return e+r},u.prototype.writeInt8=function(t,e,r){return t=+t,e>>>=0,r||S(this,t,e,1,127,-128),t<0&&(t=255+t+1),this[e]=255&t,e+1},u.prototype.writeInt16LE=function(t,e,r){return t=+t,e>>>=0,r||S(this,t,e,2,32767,-32768),this[e]=255&t,this[e+1]=t>>>8,e+2},u.prototype.writeInt16BE=function(t,e,r){return t=+t,e>>>=0,r||S(this,t,e,2,32767,-32768),this[e]=t>>>8,this[e+1]=255&t,e+2},u.prototype.writeInt32LE=function(t,e,r){return t=+t,e>>>=0,r||S(this,t,e,4,2147483647,-2147483648),this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24,e+4},u.prototype.writeInt32BE=function(t,e,r){return t=+t,e>>>=0,r||S(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},u.prototype.writeBigInt64LE=Z((function(t,e=0){return L(this,t,e,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))})),u.prototype.writeBigInt64BE=Z((function(t,e=0){return R(this,t,e,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))})),u.prototype.writeFloatLE=function(t,e,r){return F(this,t,e,!0,r)},u.prototype.writeFloatBE=function(t,e,r){return F(this,t,e,!1,r)},u.prototype.writeDoubleLE=function(t,e,r){return j(this,t,e,!0,r)},u.prototype.writeDoubleBE=function(t,e,r){return j(this,t,e,!1,r)},u.prototype.copy=function(t,e,r,o){if(!u.isBuffer(t))throw new TypeError("argument should be a Buffer");if(r||(r=0),o||0===o||(o=this.length),e>=t.length&&(e=t.length),e||(e=0),o>0&&o<r&&(o=r),o===r)return 0;if(0===t.length||0===this.length)return 0;if(e<0)throw new RangeError("targetStart out of bounds");if(r<0||r>=this.length)throw new RangeError("Index out of range");if(o<0)throw new RangeError("sourceEnd out of bounds");o>this.length&&(o=this.length),t.length-e<o-r&&(o=t.length-e+r);const n=o-r;return this===t&&"function"==typeof Uint8Array.prototype.copyWithin?this.copyWithin(e,r,o):Uint8Array.prototype.set.call(t,this.subarray(r,o),e),n},u.prototype.fill=function(t,e,r,o){if("string"==typeof t){if("string"==typeof e?(o=e,e=0,r=this.length):"string"==typeof r&&(o=r,r=this.length),void 0!==o&&"string"!=typeof o)throw new TypeError("encoding must be a string");if("string"==typeof o&&!u.isEncoding(o))throw new TypeError("Unknown encoding: "+o);if(1===t.length){const e=t.charCodeAt(0);("utf8"===o&&e<128||"latin1"===o)&&(t=e)}}else"number"==typeof t?t&=255:"boolean"==typeof t&&(t=Number(t));if(e<0||this.length<e||this.length<r)throw new RangeError("Out of range index");if(r<=e)return this;let n;if(e>>>=0,r=void 0===r?this.length:r>>>0,t||(t=0),"number"==typeof t)for(n=e;n<r;++n)this[n]=t;else{const i=u.isBuffer(t)?t:u.from(t,o),s=i.length;if(0===s)throw new TypeError('The value "'+t+'" is invalid for argument "value"');for(n=0;n<r-e;++n)this[n+e]=i[n%s]}return this};const M={};function G(t,e,r){M[t]=class extends r{constructor(){super(),Object.defineProperty(this,"message",{value:e.apply(this,arguments),writable:!0,configurable:!0}),this.name=`${this.name} [${t}]`,this.stack,delete this.name}get code(){return t}set code(t){Object.defineProperty(this,"code",{configurable:!0,enumerable:!0,value:t,writable:!0})}toString(){return`${this.name} [${t}]: ${this.message}`}}}function U(t){let e="",r=t.length;const o="-"===t[0]?1:0;for(;r>=o+4;r-=3)e=`_${t.slice(r-3,r)}${e}`;return`${t.slice(0,r)}${e}`}function q(t,e,r,o,n,i){if(t>r||t<e){const o="bigint"==typeof e?"n":"";let n;throw n=i>3?0===e||e===BigInt(0)?`>= 0${o} and < 2${o} ** ${8*(i+1)}${o}`:`>= -(2${o} ** ${8*(i+1)-1}${o}) and < 2 ** ${8*(i+1)-1}${o}`:`>= ${e}${o} and <= ${r}${o}`,new M.ERR_OUT_OF_RANGE("value",n,t)}!function(t,e,r){V(e,"offset"),void 0!==t[e]&&void 0!==t[e+r]||z(e,t.length-(r+1))}(o,n,i)}function V(t,e){if("number"!=typeof t)throw new M.ERR_INVALID_ARG_TYPE(e,"number",t)}function z(t,e,r){if(Math.floor(t)!==t)throw V(t,r),new M.ERR_OUT_OF_RANGE(r||"offset","an integer",t);if(e<0)throw new M.ERR_BUFFER_OUT_OF_BOUNDS;throw new M.ERR_OUT_OF_RANGE(r||"offset",`>= ${r?1:0} and <= ${e}`,t)}G("ERR_BUFFER_OUT_OF_BOUNDS",(function(t){return t?`${t} is outside of buffer bounds`:"Attempt to access memory outside buffer bounds"}),RangeError),G("ERR_INVALID_ARG_TYPE",(function(t,e){return`The "${t}" argument must be of type number. Received type ${typeof e}`}),TypeError),G("ERR_OUT_OF_RANGE",(function(t,e,r){let o=`The value of "${t}" is out of range.`,n=r;return Number.isInteger(r)&&Math.abs(r)>2**32?n=U(String(r)):"bigint"==typeof r&&(n=String(r),(r>BigInt(2)**BigInt(32)||r<-(BigInt(2)**BigInt(32)))&&(n=U(n)),n+="n"),o+=` It must be ${e}. Received ${n}`,o}),RangeError);const H=/[^+/0-9A-Za-z-_]/g;function X(t,e){let r;e=e||1/0;const o=t.length;let n=null;const i=[];for(let s=0;s<o;++s){if(r=t.charCodeAt(s),r>55295&&r<57344){if(!n){if(r>56319){(e-=3)>-1&&i.push(239,191,189);continue}if(s+1===o){(e-=3)>-1&&i.push(239,191,189);continue}n=r;continue}if(r<56320){(e-=3)>-1&&i.push(239,191,189),n=r;continue}r=65536+(n-55296<<10|r-56320)}else n&&(e-=3)>-1&&i.push(239,191,189);if(n=null,r<128){if((e-=1)<0)break;i.push(r)}else if(r<2048){if((e-=2)<0)break;i.push(r>>6|192,63&r|128)}else if(r<65536){if((e-=3)<0)break;i.push(r>>12|224,r>>6&63|128,63&r|128)}else{if(!(r<1114112))throw new Error("Invalid code point");if((e-=4)<0)break;i.push(r>>18|240,r>>12&63|128,r>>6&63|128,63&r|128)}}return i}function Y(t){return o.toByteArray(function(t){if((t=(t=t.split("=")[0]).trim().replace(H,"")).length<2)return"";for(;t.length%4!=0;)t+="=";return t}(t))}function $(t,e,r,o){let n;for(n=0;n<o&&!(n+r>=e.length||n>=t.length);++n)e[n+r]=t[n];return n}function K(t,e){return t instanceof e||null!=t&&null!=t.constructor&&null!=t.constructor.name&&t.constructor.name===e.name}function W(t){return t!=t}const Q=function(){const t="0123456789abcdef",e=new Array(256);for(let r=0;r<16;++r){const o=16*r;for(let n=0;n<16;++n)e[o+n]=t[r]+t[n]}return e}();function Z(t){return"undefined"==typeof BigInt?J:t}function J(){throw new Error("BigInt not supported")}},8767:t=>{function e(t){if(t)return function(t){for(var r in e.prototype)t[r]=e.prototype[r];return t}(t)}t.exports=e,e.prototype.on=e.prototype.addEventListener=function(t,e){return this._callbacks=this._callbacks||{},(this._callbacks["$"+t]=this._callbacks["$"+t]||[]).push(e),this},e.prototype.once=function(t,e){function r(){this.off(t,r),e.apply(this,arguments)}return r.fn=e,this.on(t,r),this},e.prototype.off=e.prototype.removeListener=e.prototype.removeAllListeners=e.prototype.removeEventListener=function(t,e){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var r,o=this._callbacks["$"+t];if(!o)return this;if(1==arguments.length)return delete this._callbacks["$"+t],this;for(var n=0;n<o.length;n++)if((r=o[n])===e||r.fn===e){o.splice(n,1);break}return 0===o.length&&delete this._callbacks["$"+t],this},e.prototype.emit=function(t){this._callbacks=this._callbacks||{};for(var e=new Array(arguments.length-1),r=this._callbacks["$"+t],o=1;o<arguments.length;o++)e[o-1]=arguments[o];if(r){o=0;for(var n=(r=r.slice(0)).length;o<n;++o)r[o].apply(this,e)}return this},e.prototype.listeners=function(t){return this._callbacks=this._callbacks||{},this._callbacks["$"+t]||[]},e.prototype.hasListeners=function(t){return!!this.listeners(t).length}},624:t=>{function e(t){if(t)return function(t){for(var r in e.prototype)t[r]=e.prototype[r];return t}(t)}t.exports=e,e.prototype.on=e.prototype.addEventListener=function(t,e){return this._callbacks=this._callbacks||{},(this._callbacks[t]=this._callbacks[t]||[]).push(e),this},e.prototype.once=function(t,e){var r=this;function o(){r.off(t,o),e.apply(this,arguments)}return this._callbacks=this._callbacks||{},o.fn=e,this.on(t,o),this},e.prototype.off=e.prototype.removeListener=e.prototype.removeAllListeners=e.prototype.removeEventListener=function(t,e){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var r,o=this._callbacks[t];if(!o)return this;if(1==arguments.length)return delete this._callbacks[t],this;for(var n=0;n<o.length;n++)if((r=o[n])===e||r.fn===e){o.splice(n,1);break}return this},e.prototype.emit=function(t){this._callbacks=this._callbacks||{};var e=[].slice.call(arguments,1),r=this._callbacks[t];if(r)for(var o=0,n=(r=r.slice(0)).length;o<n;++o)r[o].apply(this,e);return this},e.prototype.listeners=function(t){return this._callbacks=this._callbacks||{},this._callbacks[t]||[]},e.prototype.hasListeners=function(t){return!!this.listeners(t).length}},7187:t=>{"use strict";var e,r="object"==typeof Reflect?Reflect:null,o=r&&"function"==typeof r.apply?r.apply:function(t,e,r){return Function.prototype.apply.call(t,e,r)};e=r&&"function"==typeof r.ownKeys?r.ownKeys:Object.getOwnPropertySymbols?function(t){return Object.getOwnPropertyNames(t).concat(Object.getOwnPropertySymbols(t))}:function(t){return Object.getOwnPropertyNames(t)};var n=Number.isNaN||function(t){return t!=t};function i(){i.init.call(this)}t.exports=i,t.exports.once=function(t,e){return new Promise((function(r,o){function n(r){t.removeListener(e,i),o(r)}function i(){"function"==typeof t.removeListener&&t.removeListener("error",n),r([].slice.call(arguments))}y(t,e,i,{once:!0}),"error"!==e&&function(t,e,r){"function"==typeof t.on&&y(t,"error",e,{once:!0})}(t,n)}))},i.EventEmitter=i,i.prototype._events=void 0,i.prototype._eventsCount=0,i.prototype._maxListeners=void 0;var s=10;function a(t){if("function"!=typeof t)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof t)}function u(t){return void 0===t._maxListeners?i.defaultMaxListeners:t._maxListeners}function p(t,e,r,o){var n,i,s,p;if(a(r),void 0===(i=t._events)?(i=t._events=Object.create(null),t._eventsCount=0):(void 0!==i.newListener&&(t.emit("newListener",e,r.listener?r.listener:r),i=t._events),s=i[e]),void 0===s)s=i[e]=r,++t._eventsCount;else if("function"==typeof s?s=i[e]=o?[r,s]:[s,r]:o?s.unshift(r):s.push(r),(n=u(t))>0&&s.length>n&&!s.warned){s.warned=!0;var c=new Error("Possible EventEmitter memory leak detected. "+s.length+" "+String(e)+" listeners added. Use emitter.setMaxListeners() to increase limit");c.name="MaxListenersExceededWarning",c.emitter=t,c.type=e,c.count=s.length,p=c,console&&console.warn&&console.warn(p)}return t}function c(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function h(t,e,r){var o={fired:!1,wrapFn:void 0,target:t,type:e,listener:r},n=c.bind(o);return n.listener=r,o.wrapFn=n,n}function l(t,e,r){var o=t._events;if(void 0===o)return[];var n=o[e];return void 0===n?[]:"function"==typeof n?r?[n.listener||n]:[n]:r?function(t){for(var e=new Array(t.length),r=0;r<e.length;++r)e[r]=t[r].listener||t[r];return e}(n):d(n,n.length)}function f(t){var e=this._events;if(void 0!==e){var r=e[t];if("function"==typeof r)return 1;if(void 0!==r)return r.length}return 0}function d(t,e){for(var r=new Array(e),o=0;o<e;++o)r[o]=t[o];return r}function y(t,e,r,o){if("function"==typeof t.on)o.once?t.once(e,r):t.on(e,r);else{if("function"!=typeof t.addEventListener)throw new TypeError('The "emitter" argument must be of type EventEmitter. Received type '+typeof t);t.addEventListener(e,(function n(i){o.once&&t.removeEventListener(e,n),r(i)}))}}Object.defineProperty(i,"defaultMaxListeners",{enumerable:!0,get:function(){return s},set:function(t){if("number"!=typeof t||t<0||n(t))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+t+".");s=t}}),i.init=function(){void 0!==this._events&&this._events!==Object.getPrototypeOf(this)._events||(this._events=Object.create(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0},i.prototype.setMaxListeners=function(t){if("number"!=typeof t||t<0||n(t))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+t+".");return this._maxListeners=t,this},i.prototype.getMaxListeners=function(){return u(this)},i.prototype.emit=function(t){for(var e=[],r=1;r<arguments.length;r++)e.push(arguments[r]);var n="error"===t,i=this._events;if(void 0!==i)n=n&&void 0===i.error;else if(!n)return!1;if(n){var s;if(e.length>0&&(s=e[0]),s instanceof Error)throw s;var a=new Error("Unhandled error."+(s?" ("+s.message+")":""));throw a.context=s,a}var u=i[t];if(void 0===u)return!1;if("function"==typeof u)o(u,this,e);else{var p=u.length,c=d(u,p);for(r=0;r<p;++r)o(c[r],this,e)}return!0},i.prototype.addListener=function(t,e){return p(this,t,e,!1)},i.prototype.on=i.prototype.addListener,i.prototype.prependListener=function(t,e){return p(this,t,e,!0)},i.prototype.once=function(t,e){return a(e),this.on(t,h(this,t,e)),this},i.prototype.prependOnceListener=function(t,e){return a(e),this.prependListener(t,h(this,t,e)),this},i.prototype.removeListener=function(t,e){var r,o,n,i,s;if(a(e),void 0===(o=this._events))return this;if(void 0===(r=o[t]))return this;if(r===e||r.listener===e)0==--this._eventsCount?this._events=Object.create(null):(delete o[t],o.removeListener&&this.emit("removeListener",t,r.listener||e));else if("function"!=typeof r){for(n=-1,i=r.length-1;i>=0;i--)if(r[i]===e||r[i].listener===e){s=r[i].listener,n=i;break}if(n<0)return this;0===n?r.shift():function(t,e){for(;e+1<t.length;e++)t[e]=t[e+1];t.pop()}(r,n),1===r.length&&(o[t]=r[0]),void 0!==o.removeListener&&this.emit("removeListener",t,s||e)}return this},i.prototype.off=i.prototype.removeListener,i.prototype.removeAllListeners=function(t){var e,r,o;if(void 0===(r=this._events))return this;if(void 0===r.removeListener)return 0===arguments.length?(this._events=Object.create(null),this._eventsCount=0):void 0!==r[t]&&(0==--this._eventsCount?this._events=Object.create(null):delete r[t]),this;if(0===arguments.length){var n,i=Object.keys(r);for(o=0;o<i.length;++o)"removeListener"!==(n=i[o])&&this.removeAllListeners(n);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if("function"==typeof(e=r[t]))this.removeListener(t,e);else if(void 0!==e)for(o=e.length-1;o>=0;o--)this.removeListener(t,e[o]);return this},i.prototype.listeners=function(t){return l(this,t,!0)},i.prototype.rawListeners=function(t){return l(this,t,!1)},i.listenerCount=function(t,e){return"function"==typeof t.listenerCount?t.listenerCount(e):f.call(t,e)},i.prototype.listenerCount=f,i.prototype.eventNames=function(){return this._eventsCount>0?e(this._events):[]}},5513:(t,e,r)=>{(e=t.exports=r(3112)).OAuth=r(5517),e.Feeds=r(4769),e.Upload=r(9772),e.Replace=r(9377)},2369:(t,e,r)=>{var o=r(569),n=r(7673).parse;function i(t,e){o.Request.call(this,t,e),this.params={}}i.prototype=Object.create(o.Request.prototype),i.prototype.query=function(t){return"string"==typeof t?Object.assign(this.params,n(t)):Object.assign(this.params,t),o.Request.prototype.query.call(this,t)},i.prototype.field=function(t,e){return"string"==typeof t?this.params[t]=e:Object.assign(this.params,t),o.Request.prototype.field.call(this,t,e)},i.prototype.param=function(t){switch(this.method){case"POST":return this.field.call(this,t);default:return this.query.call(this,t)}},e=t.exports=function(t,r){return"function"==typeof r?new e.Request("GET",t).end(r):1===arguments.length?new e.Request("GET",t):new e.Request(t,r)},Object.assign(e,o),e.Request=i},6329:t=>{t.exports=function(t,e){if(e)if(t=t||{},"string"==typeof e){if(!t.hasOwnProperty(e))throw new Error('Missing required argument "'+e+'"')}else if(0===e.filter((function(e){return t.hasOwnProperty(e)})).length)throw new Error('Missing required argument, you must provide one of the following: "'+e.join('", "')+'"')}},4893:t=>{function e(t){var e,r=t.body;if(r&&"fail"===r.stat)throw(e=new Error(r.message)).stat=r.stat,e.code=r.code,e;return t.status>=200&&t.status<300}t.exports=function(t){t.query({format:"json"}),t.query({nojsoncallback:1}),t.type("text/plain"),t.ok(e)}},4205:(t,e,r)=>{var o=r(5055);function n(t,e){t.text="",t.setEncoding("utf8"),t.on("data",(function(e){t.text+=e})),t.on("end",(function(){o.parseString(t.text,{mergeAttrs:!0,explicitArray:!1,explicitRoot:!1,explicitCharkey:!0,charkey:"_content"},(function(t,r){if(t)return e(new SyntaxError(t.message),r);"fail"===r.stat&&r.err&&((t=new Error(r.err.msg)).stat=r.stat,t.code=r.err.code),e(t,r)}))}))}t.exports=function(t){t.parse(n)}},4769:(t,e,r)=>{var o=r(2369),n=r(6329);function i(t){if(!(this instanceof i))return new i(t);this._args=Object.assign({format:"json",nojsoncallback:1},t)}i.prototype._=function(t,e){return o("GET","https://www.flickr.com/services/feeds/"+t+".gne").query(this._args).query(e)},i.prototype.publicPhotos=function(t){return this._("photos_public",t)},i.prototype.friendsPhotos=function(t){return n(t,"user_id"),this._("photos_friends",t)},i.prototype.favePhotos=function(t){return n(t,["id","nsid"]),this._("photos_faves",t)},i.prototype.groupDiscussions=function(t){return n(t,"id"),this._("groups_discuss",t)},i.prototype.groupPool=function(t){return n(t,"id"),this._("groups_pool",t)},i.prototype.forum=function(t){return this._("forums",t)},i.prototype.recentActivity=function(t){return n(t,"user_id"),this._("activity",t)},i.prototype.recentComments=function(t){return n(t,"user_id"),this._("photos_comments",t)},t.exports=i},5517:t=>{function e(){throw new Error("OAuth 1.0 is not supported in the browser")}e.createPlugin=e,t.exports=e},9377:(t,e,r)=>{var o=r(2369).Request,n=r(4205);function i(t,e,r,s){if(!(this instanceof i))return new i(t,e,r,s);if(o.call(this,"POST","https://up.flickr.com/services/replace"),"function"!=typeof t)throw new Error('Missing required argument "auth"');if(void 0===e)throw new Error('Missing required argument "photoID"');void 0===s&&(s={}),this.attach("photo",r),this.field("photo_id",e),this.field(s),this.use(n),this.use(t)}i.prototype=Object.create(o.prototype),t.exports=i},3112:(t,e,r)=>{var o=r(2369),n=r(6329),i=r(4893);function s(t,e){if(!(this instanceof s))return new s(t);this.activity._=this.auth._=this.auth.oauth._=this.blogs._=this.cameras._=this.collections._=this.commons._=this.contacts._=this.favorites._=this.galleries._=this.groups._=this.groups.discuss._=this.groups.discuss.replies._=this.groups.discuss.topics._=this.groups.members._=this.groups.pools._=this.interestingness._=this.machinetags._=this.panda._=this.people._=this.photos._=this.photos.comments._=this.photos.geo._=this.photos.licenses._=this.photos.notes._=this.photos.people._=this.photos.suggestions._=this.photos.transform._=this.photos.upload._=this.photosets._=this.photosets.comments._=this.places._=this.prefs._=this.profile._=this.push._=this.reflection._=this.stats._=this.tags._=this.test._=this.testimonials._=this.urls._=this._=function(t,e){var r,n;if("string"==typeof t&&(n=t,t=function(t){return t.query({api_key:n})}),"function"!=typeof t)throw new Error('Missing required argument "auth"');return r=(e=e||{}).host||"api.flickr.com",e.port&&(r+=":"+e.port),function(e,n,s){return void 0===s&&(s={}),s.extras&&(s.extras=function(t){if(!("string"==typeof t||Array.isArray(t)||t instanceof Set))throw new Error('Invalid type for argument "extras"');if("string"==typeof t&&(t=t.split(",")),Array.isArray(t)&&(t=new Set(t)),t instanceof Set)return Array.from(t).join(",")}(s.extras)),o(e,"https://"+r+"/services/rest").query({method:n}).query(s).use(i).use(t)}}(t,e)}s.prototype.activity={},s.prototype.activity.userComments=function(t){return this._("GET","flickr.activity.userComments",t)},s.prototype.activity.userPhotos=function(t){return this._("GET","flickr.activity.userPhotos",t)},s.prototype.auth={},s.prototype.auth.checkToken=function(t){return n(t,"auth_token"),this._("GET","flickr.auth.checkToken",t)},s.prototype.auth.getFrob=function(t){return this._("GET","flickr.auth.getFrob",t)},s.prototype.auth.getFullToken=function(t){return n(t,"mini_token"),this._("GET","flickr.auth.getFullToken",t)},s.prototype.auth.getToken=function(t){return n(t,"frob"),this._("GET","flickr.auth.getToken",t)},s.prototype.auth.oauth={},s.prototype.auth.oauth.checkToken=function(t){return n(t,"oauth_token"),this._("GET","flickr.auth.oauth.checkToken",t)},s.prototype.auth.oauth.getAccessToken=function(t){return this._("GET","flickr.auth.oauth.getAccessToken",t)},s.prototype.blogs={},s.prototype.blogs.getList=function(t){return this._("GET","flickr.blogs.getList",t)},s.prototype.blogs.getServices=function(t){return this._("GET","flickr.blogs.getServices",t)},s.prototype.blogs.postPhoto=function(t){return n(t,"photo_id"),n(t,"title"),n(t,"description"),this._("POST","flickr.blogs.postPhoto",t)},s.prototype.cameras={},s.prototype.cameras.getBrandModels=function(t){return n(t,"brand"),this._("GET","flickr.cameras.getBrandModels",t)},s.prototype.cameras.getBrands=function(t){return this._("GET","flickr.cameras.getBrands",t)},s.prototype.collections={},s.prototype.collections.getInfo=function(t){return n(t,"collection_id"),this._("GET","flickr.collections.getInfo",t)},s.prototype.collections.getTree=function(t){return this._("GET","flickr.collections.getTree",t)},s.prototype.commons={},s.prototype.commons.getInstitutions=function(t){return this._("GET","flickr.commons.getInstitutions",t)},s.prototype.contacts={},s.prototype.contacts.getList=function(t){return this._("GET","flickr.contacts.getList",t)},s.prototype.contacts.getListRecentlyUploaded=function(t){return this._("GET","flickr.contacts.getListRecentlyUploaded",t)},s.prototype.contacts.getPublicList=function(t){return n(t,"user_id"),this._("GET","flickr.contacts.getPublicList",t)},s.prototype.contacts.getTaggingSuggestions=function(t){return this._("GET","flickr.contacts.getTaggingSuggestions",t)},s.prototype.favorites={},s.prototype.favorites.add=function(t){return n(t,"photo_id"),this._("POST","flickr.favorites.add",t)},s.prototype.favorites.getContext=function(t){return n(t,"photo_id"),n(t,"user_id"),this._("GET","flickr.favorites.getContext",t)},s.prototype.favorites.getList=function(t){return this._("GET","flickr.favorites.getList",t)},s.prototype.favorites.getPublicList=function(t){return n(t,"user_id"),this._("GET","flickr.favorites.getPublicList",t)},s.prototype.favorites.remove=function(t){return n(t,"photo_id"),this._("POST","flickr.favorites.remove",t)},s.prototype.galleries={},s.prototype.galleries.addPhoto=function(t){return n(t,"gallery_id"),n(t,"photo_id"),this._("POST","flickr.galleries.addPhoto",t)},s.prototype.galleries.create=function(t){return n(t,"title"),n(t,"description"),this._("POST","flickr.galleries.create",t)},s.prototype.galleries.editMeta=function(t){return n(t,"gallery_id"),n(t,"title"),this._("POST","flickr.galleries.editMeta",t)},s.prototype.galleries.editPhoto=function(t){return n(t,"gallery_id"),n(t,"photo_id"),n(t,"comment"),this._("POST","flickr.galleries.editPhoto",t)},s.prototype.galleries.editPhotos=function(t){return n(t,"gallery_id"),n(t,"primary_photo_id"),n(t,"photo_ids"),this._("POST","flickr.galleries.editPhotos",t)},s.prototype.galleries.getInfo=function(t){return n(t,"gallery_id"),this._("GET","flickr.galleries.getInfo",t)},s.prototype.galleries.getList=function(t){return n(t,"user_id"),this._("GET","flickr.galleries.getList",t)},s.prototype.galleries.getListForPhoto=function(t){return n(t,"photo_id"),this._("GET","flickr.galleries.getListForPhoto",t)},s.prototype.galleries.getPhotos=function(t){return n(t,"gallery_id"),this._("GET","flickr.galleries.getPhotos",t)},s.prototype.groups={},s.prototype.groups.browse=function(t){return this._("GET","flickr.groups.browse",t)},s.prototype.groups.getInfo=function(t){return n(t,"group_id"),this._("GET","flickr.groups.getInfo",t)},s.prototype.groups.join=function(t){return n(t,"group_id"),this._("POST","flickr.groups.join",t)},s.prototype.groups.joinRequest=function(t){return n(t,"group_id"),n(t,"message"),n(t,"accept_rules"),this._("POST","flickr.groups.joinRequest",t)},s.prototype.groups.leave=function(t){return n(t,"group_id"),this._("POST","flickr.groups.leave",t)},s.prototype.groups.search=function(t){return n(t,"text"),this._("GET","flickr.groups.search",t)},s.prototype.groups.discuss={},s.prototype.groups.discuss.replies={},s.prototype.groups.discuss.replies.add=function(t){return n(t,"group_id"),n(t,"topic_id"),n(t,"message"),this._("POST","flickr.groups.discuss.replies.add",t)},s.prototype.groups.discuss.replies.delete=function(t){return n(t,"group_id"),n(t,"topic_id"),n(t,"reply_id"),this._("POST","flickr.groups.discuss.replies.delete",t)},s.prototype.groups.discuss.replies.edit=function(t){return n(t,"group_id"),n(t,"topic_id"),n(t,"reply_id"),n(t,"message"),this._("POST","flickr.groups.discuss.replies.edit",t)},s.prototype.groups.discuss.replies.getInfo=function(t){return n(t,"group_id"),n(t,"topic_id"),n(t,"reply_id"),this._("GET","flickr.groups.discuss.replies.getInfo",t)},s.prototype.groups.discuss.replies.getList=function(t){return n(t,"group_id"),n(t,"topic_id"),n(t,"per_page"),this._("GET","flickr.groups.discuss.replies.getList",t)},s.prototype.groups.discuss.topics={},s.prototype.groups.discuss.topics.add=function(t){return n(t,"group_id"),n(t,"subject"),n(t,"message"),this._("POST","flickr.groups.discuss.topics.add",t)},s.prototype.groups.discuss.topics.getInfo=function(t){return n(t,"group_id"),n(t,"topic_id"),this._("GET","flickr.groups.discuss.topics.getInfo",t)},s.prototype.groups.discuss.topics.getList=function(t){return n(t,"group_id"),this._("GET","flickr.groups.discuss.topics.getList",t)},s.prototype.groups.members={},s.prototype.groups.members.getList=function(t){return n(t,"group_id"),this._("GET","flickr.groups.members.getList",t)},s.prototype.groups.pools={},s.prototype.groups.pools.add=function(t){return n(t,"photo_id"),n(t,"group_id"),this._("POST","flickr.groups.pools.add",t)},s.prototype.groups.pools.getContext=function(t){return n(t,"photo_id"),n(t,"group_id"),this._("GET","flickr.groups.pools.getContext",t)},s.prototype.groups.pools.getGroups=function(t){return this._("GET","flickr.groups.pools.getGroups",t)},s.prototype.groups.pools.getPhotos=function(t){return n(t,"group_id"),this._("GET","flickr.groups.pools.getPhotos",t)},s.prototype.groups.pools.remove=function(t){return n(t,"photo_id"),n(t,"group_id"),this._("POST","flickr.groups.pools.remove",t)},s.prototype.interestingness={},s.prototype.interestingness.getList=function(t){return this._("GET","flickr.interestingness.getList",t)},s.prototype.machinetags={},s.prototype.machinetags.getNamespaces=function(t){return this._("GET","flickr.machinetags.getNamespaces",t)},s.prototype.machinetags.getPairs=function(t){return this._("GET","flickr.machinetags.getPairs",t)},s.prototype.machinetags.getPredicates=function(t){return this._("GET","flickr.machinetags.getPredicates",t)},s.prototype.machinetags.getRecentValues=function(t){return this._("GET","flickr.machinetags.getRecentValues",t)},s.prototype.machinetags.getValues=function(t){return n(t,"namespace"),n(t,"predicate"),this._("GET","flickr.machinetags.getValues",t)},s.prototype.panda={},s.prototype.panda.getList=function(t){return this._("GET","flickr.panda.getList",t)},s.prototype.panda.getPhotos=function(t){return n(t,"panda_name"),this._("GET","flickr.panda.getPhotos",t)},s.prototype.people={},s.prototype.people.findByEmail=function(t){return n(t,"find_email"),this._("GET","flickr.people.findByEmail",t)},s.prototype.people.findByUsername=function(t){return n(t,"username"),this._("GET","flickr.people.findByUsername",t)},s.prototype.people.getGroups=function(t){return n(t,"user_id"),this._("GET","flickr.people.getGroups",t)},s.prototype.people.getInfo=function(t){return n(t,"user_id"),this._("GET","flickr.people.getInfo",t)},s.prototype.people.getLimits=function(t){return this._("GET","flickr.people.getLimits",t)},s.prototype.people.getPhotos=function(t){return n(t,"user_id"),this._("GET","flickr.people.getPhotos",t)},s.prototype.people.getPhotosOf=function(t){return n(t,"user_id"),this._("GET","flickr.people.getPhotosOf",t)},s.prototype.people.getPublicGroups=function(t){return n(t,"user_id"),this._("GET","flickr.people.getPublicGroups",t)},s.prototype.people.getPublicPhotos=function(t){return n(t,"user_id"),this._("GET","flickr.people.getPublicPhotos",t)},s.prototype.people.getUploadStatus=function(t){return this._("GET","flickr.people.getUploadStatus",t)},s.prototype.photos={},s.prototype.photos.addTags=function(t){return n(t,"photo_id"),n(t,"tags"),this._("POST","flickr.photos.addTags",t)},s.prototype.photos.delete=function(t){return n(t,"photo_id"),this._("POST","flickr.photos.delete",t)},s.prototype.photos.getAllContexts=function(t){return n(t,"photo_id"),this._("GET","flickr.photos.getAllContexts",t)},s.prototype.photos.getContactsPhotos=function(t){return this._("GET","flickr.photos.getContactsPhotos",t)},s.prototype.photos.getContactsPublicPhotos=function(t){return n(t,"user_id"),this._("GET","flickr.photos.getContactsPublicPhotos",t)},s.prototype.photos.getContext=function(t){return n(t,"photo_id"),this._("GET","flickr.photos.getContext",t)},s.prototype.photos.getCounts=function(t){return this._("GET","flickr.photos.getCounts",t)},s.prototype.photos.getExif=function(t){return n(t,"photo_id"),this._("GET","flickr.photos.getExif",t)},s.prototype.photos.getFavorites=function(t){return n(t,"photo_id"),this._("GET","flickr.photos.getFavorites",t)},s.prototype.photos.getInfo=function(t){return n(t,"photo_id"),this._("GET","flickr.photos.getInfo",t)},s.prototype.photos.getNotInSet=function(t){return this._("GET","flickr.photos.getNotInSet",t)},s.prototype.photos.getPerms=function(t){return n(t,"photo_id"),this._("GET","flickr.photos.getPerms",t)},s.prototype.photos.getPopular=function(t){return this._("GET","flickr.photos.getPopular",t)},s.prototype.photos.getRecent=function(t){return this._("GET","flickr.photos.getRecent",t)},s.prototype.photos.getSizes=function(t){return n(t,"photo_id"),this._("GET","flickr.photos.getSizes",t)},s.prototype.photos.getUntagged=function(t){return this._("GET","flickr.photos.getUntagged",t)},s.prototype.photos.getWithGeoData=function(t){return this._("GET","flickr.photos.getWithGeoData",t)},s.prototype.photos.getWithoutGeoData=function(t){return this._("GET","flickr.photos.getWithoutGeoData",t)},s.prototype.photos.recentlyUpdated=function(t){return n(t,"min_date"),this._("GET","flickr.photos.recentlyUpdated",t)},s.prototype.photos.removeTag=function(t){return n(t,"tag_id"),this._("POST","flickr.photos.removeTag",t)},s.prototype.photos.search=function(t){return this._("GET","flickr.photos.search",t)},s.prototype.photos.setContentType=function(t){return n(t,"photo_id"),n(t,"content_type"),this._("POST","flickr.photos.setContentType",t)},s.prototype.photos.setDates=function(t){return n(t,"photo_id"),this._("POST","flickr.photos.setDates",t)},s.prototype.photos.setMeta=function(t){return n(t,"photo_id"),this._("POST","flickr.photos.setMeta",t)},s.prototype.photos.setPerms=function(t){return n(t,"photo_id"),n(t,"is_public"),n(t,"is_friend"),n(t,"is_family"),this._("POST","flickr.photos.setPerms",t)},s.prototype.photos.setSafetyLevel=function(t){return n(t,"photo_id"),this._("POST","flickr.photos.setSafetyLevel",t)},s.prototype.photos.setTags=function(t){return n(t,"photo_id"),n(t,"tags"),this._("POST","flickr.photos.setTags",t)},s.prototype.photos.comments={},s.prototype.photos.comments.addComment=function(t){return n(t,"photo_id"),n(t,"comment_text"),this._("POST","flickr.photos.comments.addComment",t)},s.prototype.photos.comments.deleteComment=function(t){return n(t,"comment_id"),this._("POST","flickr.photos.comments.deleteComment",t)},s.prototype.photos.comments.editComment=function(t){return n(t,"comment_id"),n(t,"comment_text"),this._("POST","flickr.photos.comments.editComment",t)},s.prototype.photos.comments.getList=function(t){return n(t,"photo_id"),this._("GET","flickr.photos.comments.getList",t)},s.prototype.photos.comments.getRecentForContacts=function(t){return this._("GET","flickr.photos.comments.getRecentForContacts",t)},s.prototype.photos.geo={},s.prototype.photos.geo.batchCorrectLocation=function(t){return n(t,"lat"),n(t,"lon"),n(t,"accuracy"),this._("POST","flickr.photos.geo.batchCorrectLocation",t)},s.prototype.photos.geo.correctLocation=function(t){return n(t,"photo_id"),n(t,"foursquare_id"),this._("POST","flickr.photos.geo.correctLocation",t)},s.prototype.photos.geo.getLocation=function(t){return n(t,"photo_id"),this._("GET","flickr.photos.geo.getLocation",t)},s.prototype.photos.geo.getPerms=function(t){return n(t,"photo_id"),this._("GET","flickr.photos.geo.getPerms",t)},s.prototype.photos.geo.photosForLocation=function(t){return n(t,"lat"),n(t,"lon"),this._("GET","flickr.photos.geo.photosForLocation",t)},s.prototype.photos.geo.removeLocation=function(t){return n(t,"photo_id"),this._("POST","flickr.photos.geo.removeLocation",t)},s.prototype.photos.geo.setContext=function(t){return n(t,"photo_id"),n(t,"context"),this._("POST","flickr.photos.geo.setContext",t)},s.prototype.photos.geo.setLocation=function(t){return n(t,"photo_id"),n(t,"lat"),n(t,"lon"),this._("POST","flickr.photos.geo.setLocation",t)},s.prototype.photos.geo.setPerms=function(t){return n(t,"is_public"),n(t,"is_contact"),n(t,"is_friend"),n(t,"is_family"),n(t,"photo_id"),this._("POST","flickr.photos.geo.setPerms",t)},s.prototype.photos.licenses={},s.prototype.photos.licenses.getInfo=function(t){return this._("GET","flickr.photos.licenses.getInfo",t)},s.prototype.photos.licenses.setLicense=function(t){return n(t,"photo_id"),n(t,"license_id"),this._("POST","flickr.photos.licenses.setLicense",t)},s.prototype.photos.notes={},s.prototype.photos.notes.add=function(t){return n(t,"photo_id"),n(t,"note_x"),n(t,"note_y"),n(t,"note_w"),n(t,"note_h"),n(t,"note_text"),this._("POST","flickr.photos.notes.add",t)},s.prototype.photos.notes.delete=function(t){return n(t,"note_id"),this._("POST","flickr.photos.notes.delete",t)},s.prototype.photos.notes.edit=function(t){return n(t,"note_id"),n(t,"note_x"),n(t,"note_y"),n(t,"note_w"),n(t,"note_h"),n(t,"note_text"),this._("POST","flickr.photos.notes.edit",t)},s.prototype.photos.people={},s.prototype.photos.people.add=function(t){return n(t,"photo_id"),n(t,"user_id"),this._("POST","flickr.photos.people.add",t)},s.prototype.photos.people.delete=function(t){return n(t,"photo_id"),n(t,"user_id"),this._("POST","flickr.photos.people.delete",t)},s.prototype.photos.people.deleteCoords=function(t){return n(t,"photo_id"),n(t,"user_id"),this._("POST","flickr.photos.people.deleteCoords",t)},s.prototype.photos.people.editCoords=function(t){return n(t,"photo_id"),n(t,"user_id"),n(t,"person_x"),n(t,"person_y"),n(t,"person_w"),n(t,"person_h"),this._("POST","flickr.photos.people.editCoords",t)},s.prototype.photos.people.getList=function(t){return n(t,"photo_id"),this._("GET","flickr.photos.people.getList",t)},s.prototype.photos.suggestions={},s.prototype.photos.suggestions.approveSuggestion=function(t){return n(t,"suggestion_id"),this._("POST","flickr.photos.suggestions.approveSuggestion",t)},s.prototype.photos.suggestions.getList=function(t){return this._("GET","flickr.photos.suggestions.getList",t)},s.prototype.photos.suggestions.rejectSuggestion=function(t){return n(t,"suggestion_id"),this._("POST","flickr.photos.suggestions.rejectSuggestion",t)},s.prototype.photos.suggestions.removeSuggestion=function(t){return n(t,"suggestion_id"),this._("POST","flickr.photos.suggestions.removeSuggestion",t)},s.prototype.photos.suggestions.suggestLocation=function(t){return n(t,"photo_id"),n(t,"lat"),n(t,"lon"),this._("POST","flickr.photos.suggestions.suggestLocation",t)},s.prototype.photos.transform={},s.prototype.photos.transform.rotate=function(t){return n(t,"photo_id"),n(t,"degrees"),this._("POST","flickr.photos.transform.rotate",t)},s.prototype.photos.upload={},s.prototype.photos.upload.checkTickets=function(t){return n(t,"tickets"),this._("GET","flickr.photos.upload.checkTickets",t)},s.prototype.photosets={},s.prototype.photosets.addPhoto=function(t){return n(t,"photoset_id"),n(t,"photo_id"),this._("POST","flickr.photosets.addPhoto",t)},s.prototype.photosets.create=function(t){return n(t,"title"),n(t,"primary_photo_id"),this._("POST","flickr.photosets.create",t)},s.prototype.photosets.delete=function(t){return n(t,"photoset_id"),this._("POST","flickr.photosets.delete",t)},s.prototype.photosets.editMeta=function(t){return n(t,"photoset_id"),n(t,"title"),this._("POST","flickr.photosets.editMeta",t)},s.prototype.photosets.editPhotos=function(t){return n(t,"photoset_id"),n(t,"primary_photo_id"),n(t,"photo_ids"),this._("POST","flickr.photosets.editPhotos",t)},s.prototype.photosets.getContext=function(t){return n(t,"photo_id"),n(t,"photoset_id"),this._("GET","flickr.photosets.getContext",t)},s.prototype.photosets.getInfo=function(t){return n(t,"photoset_id"),n(t,"user_id"),this._("GET","flickr.photosets.getInfo",t)},s.prototype.photosets.getList=function(t){return this._("GET","flickr.photosets.getList",t)},s.prototype.photosets.getPhotos=function(t){return n(t,"photoset_id"),n(t,"user_id"),this._("GET","flickr.photosets.getPhotos",t)},s.prototype.photosets.orderSets=function(t){return n(t,"photoset_ids"),this._("POST","flickr.photosets.orderSets",t)},s.prototype.photosets.removePhoto=function(t){return n(t,"photoset_id"),n(t,"photo_id"),this._("POST","flickr.photosets.removePhoto",t)},s.prototype.photosets.removePhotos=function(t){return n(t,"photoset_id"),n(t,"photo_ids"),this._("POST","flickr.photosets.removePhotos",t)},s.prototype.photosets.reorderPhotos=function(t){return n(t,"photoset_id"),n(t,"photo_ids"),this._("POST","flickr.photosets.reorderPhotos",t)},s.prototype.photosets.setPrimaryPhoto=function(t){return n(t,"photoset_id"),n(t,"photo_id"),this._("POST","flickr.photosets.setPrimaryPhoto",t)},s.prototype.photosets.comments={},s.prototype.photosets.comments.addComment=function(t){return n(t,"photoset_id"),n(t,"comment_text"),this._("POST","flickr.photosets.comments.addComment",t)},s.prototype.photosets.comments.deleteComment=function(t){return n(t,"comment_id"),this._("POST","flickr.photosets.comments.deleteComment",t)},s.prototype.photosets.comments.editComment=function(t){return n(t,"comment_id"),n(t,"comment_text"),this._("POST","flickr.photosets.comments.editComment",t)},s.prototype.photosets.comments.getList=function(t){return n(t,"photoset_id"),this._("GET","flickr.photosets.comments.getList",t)},s.prototype.places={},s.prototype.places.find=function(t){return n(t,"query"),this._("GET","flickr.places.find",t)},s.prototype.places.findByLatLon=function(t){return n(t,"lat"),n(t,"lon"),this._("GET","flickr.places.findByLatLon",t)},s.prototype.places.getChildrenWithPhotosPublic=function(t){return this._("GET","flickr.places.getChildrenWithPhotosPublic",t)},s.prototype.places.getInfo=function(t){return this._("GET","flickr.places.getInfo",t)},s.prototype.places.getInfoByUrl=function(t){return n(t,"url"),this._("GET","flickr.places.getInfoByUrl",t)},s.prototype.places.getPlaceTypes=function(t){return this._("GET","flickr.places.getPlaceTypes",t)},s.prototype.places.getShapeHistory=function(t){return this._("GET","flickr.places.getShapeHistory",t)},s.prototype.places.getTopPlacesList=function(t){return n(t,"place_type_id"),this._("GET","flickr.places.getTopPlacesList",t)},s.prototype.places.placesForBoundingBox=function(t){return n(t,"bbox"),this._("GET","flickr.places.placesForBoundingBox",t)},s.prototype.places.placesForContacts=function(t){return this._("GET","flickr.places.placesForContacts",t)},s.prototype.places.placesForTags=function(t){return n(t,"place_type_id"),this._("GET","flickr.places.placesForTags",t)},s.prototype.places.placesForUser=function(t){return this._("GET","flickr.places.placesForUser",t)},s.prototype.places.resolvePlaceId=function(t){return n(t,"place_id"),this._("GET","flickr.places.resolvePlaceId",t)},s.prototype.places.resolvePlaceURL=function(t){return n(t,"url"),this._("GET","flickr.places.resolvePlaceURL",t)},s.prototype.places.tagsForPlace=function(t){return this._("GET","flickr.places.tagsForPlace",t)},s.prototype.prefs={},s.prototype.prefs.getContentType=function(t){return this._("GET","flickr.prefs.getContentType",t)},s.prototype.prefs.getGeoPerms=function(t){return this._("GET","flickr.prefs.getGeoPerms",t)},s.prototype.prefs.getHidden=function(t){return this._("GET","flickr.prefs.getHidden",t)},s.prototype.prefs.getPrivacy=function(t){return this._("GET","flickr.prefs.getPrivacy",t)},s.prototype.prefs.getSafetyLevel=function(t){return this._("GET","flickr.prefs.getSafetyLevel",t)},s.prototype.profile={},s.prototype.profile.getProfile=function(t){return n(t,"user_id"),this._("GET","flickr.profile.getProfile",t)},s.prototype.push={},s.prototype.push.getSubscriptions=function(t){return this._("GET","flickr.push.getSubscriptions",t)},s.prototype.push.getTopics=function(t){return this._("GET","flickr.push.getTopics",t)},s.prototype.push.subscribe=function(t){return n(t,"topic"),n(t,"callback"),n(t,"verify"),this._("GET","flickr.push.subscribe",t)},s.prototype.push.unsubscribe=function(t){return n(t,"topic"),n(t,"callback"),n(t,"verify"),this._("GET","flickr.push.unsubscribe",t)},s.prototype.reflection={},s.prototype.reflection.getMethodInfo=function(t){return n(t,"method_name"),this._("GET","flickr.reflection.getMethodInfo",t)},s.prototype.reflection.getMethods=function(t){return this._("GET","flickr.reflection.getMethods",t)},s.prototype.stats={},s.prototype.stats.getCSVFiles=function(t){return this._("GET","flickr.stats.getCSVFiles",t)},s.prototype.stats.getCollectionDomains=function(t){return n(t,"date"),this._("GET","flickr.stats.getCollectionDomains",t)},s.prototype.stats.getCollectionReferrers=function(t){return n(t,"date"),n(t,"domain"),this._("GET","flickr.stats.getCollectionReferrers",t)},s.prototype.stats.getCollectionStats=function(t){return n(t,"date"),n(t,"collection_id"),this._("GET","flickr.stats.getCollectionStats",t)},s.prototype.stats.getPhotoDomains=function(t){return n(t,"date"),this._("GET","flickr.stats.getPhotoDomains",t)},s.prototype.stats.getPhotoReferrers=function(t){return n(t,"date"),n(t,"domain"),this._("GET","flickr.stats.getPhotoReferrers",t)},s.prototype.stats.getPhotoStats=function(t){return n(t,"date"),n(t,"photo_id"),this._("GET","flickr.stats.getPhotoStats",t)},s.prototype.stats.getPhotosetDomains=function(t){return n(t,"date"),this._("GET","flickr.stats.getPhotosetDomains",t)},s.prototype.stats.getPhotosetReferrers=function(t){return n(t,"date"),n(t,"domain"),this._("GET","flickr.stats.getPhotosetReferrers",t)},s.prototype.stats.getPhotosetStats=function(t){return n(t,"date"),n(t,"photoset_id"),this._("GET","flickr.stats.getPhotosetStats",t)},s.prototype.stats.getPhotostreamDomains=function(t){return n(t,"date"),this._("GET","flickr.stats.getPhotostreamDomains",t)},s.prototype.stats.getPhotostreamReferrers=function(t){return n(t,"date"),n(t,"domain"),this._("GET","flickr.stats.getPhotostreamReferrers",t)},s.prototype.stats.getPhotostreamStats=function(t){return n(t,"date"),this._("GET","flickr.stats.getPhotostreamStats",t)},s.prototype.stats.getPopularPhotos=function(t){return this._("GET","flickr.stats.getPopularPhotos",t)},s.prototype.stats.getTotalViews=function(t){return this._("GET","flickr.stats.getTotalViews",t)},s.prototype.tags={},s.prototype.tags.getClusterPhotos=function(t){return n(t,"tag"),n(t,"cluster_id"),this._("GET","flickr.tags.getClusterPhotos",t)},s.prototype.tags.getClusters=function(t){return n(t,"tag"),this._("GET","flickr.tags.getClusters",t)},s.prototype.tags.getHotList=function(t){return this._("GET","flickr.tags.getHotList",t)},s.prototype.tags.getListPhoto=function(t){return n(t,"photo_id"),this._("GET","flickr.tags.getListPhoto",t)},s.prototype.tags.getListUser=function(t){return this._("GET","flickr.tags.getListUser",t)},s.prototype.tags.getListUserPopular=function(t){return this._("GET","flickr.tags.getListUserPopular",t)},s.prototype.tags.getListUserRaw=function(t){return this._("GET","flickr.tags.getListUserRaw",t)},s.prototype.tags.getMostFrequentlyUsed=function(t){return this._("GET","flickr.tags.getMostFrequentlyUsed",t)},s.prototype.tags.getRelated=function(t){return n(t,"tag"),this._("GET","flickr.tags.getRelated",t)},s.prototype.test={},s.prototype.test.echo=function(t){return this._("GET","flickr.test.echo",t)},s.prototype.test.login=function(t){return this._("GET","flickr.test.login",t)},s.prototype.test.null=function(t){return this._("GET","flickr.test.null",t)},s.prototype.testimonials={},s.prototype.testimonials.addTestimonial=function(t){return n(t,"user_id"),n(t,"testimonial_text"),this._("POST","flickr.testimonials.addTestimonial",t)},s.prototype.testimonials.approveTestimonial=function(t){return n(t,"testimonial_id"),this._("POST","flickr.testimonials.approveTestimonial",t)},s.prototype.testimonials.deleteTestimonial=function(t){return n(t,"testimonial_id"),this._("POST","flickr.testimonials.deleteTestimonial",t)},s.prototype.testimonials.editTestimonial=function(t){return n(t,"user_id"),n(t,"testimonial_id"),n(t,"testimonial_text"),this._("POST","flickr.testimonials.editTestimonial",t)},s.prototype.testimonials.getAllTestimonialsAbout=function(t){return this._("GET","flickr.testimonials.getAllTestimonialsAbout",t)},s.prototype.testimonials.getAllTestimonialsAboutBy=function(t){return n(t,"user_id"),this._("GET","flickr.testimonials.getAllTestimonialsAboutBy",t)},s.prototype.testimonials.getAllTestimonialsBy=function(t){return this._("GET","flickr.testimonials.getAllTestimonialsBy",t)},s.prototype.testimonials.getPendingTestimonialsAbout=function(t){return this._("GET","flickr.testimonials.getPendingTestimonialsAbout",t)},s.prototype.testimonials.getPendingTestimonialsAboutBy=function(t){return n(t,"user_id"),this._("GET","flickr.testimonials.getPendingTestimonialsAboutBy",t)},s.prototype.testimonials.getPendingTestimonialsBy=function(t){return this._("GET","flickr.testimonials.getPendingTestimonialsBy",t)},s.prototype.testimonials.getTestimonialsAbout=function(t){return n(t,"user_id"),this._("GET","flickr.testimonials.getTestimonialsAbout",t)},s.prototype.testimonials.getTestimonialsAboutBy=function(t){return n(t,"user_id"),this._("GET","flickr.testimonials.getTestimonialsAboutBy",t)},s.prototype.testimonials.getTestimonialsBy=function(t){return n(t,"user_id"),this._("GET","flickr.testimonials.getTestimonialsBy",t)},s.prototype.urls={},s.prototype.urls.getGroup=function(t){return n(t,"group_id"),this._("GET","flickr.urls.getGroup",t)},s.prototype.urls.getUserPhotos=function(t){return this._("GET","flickr.urls.getUserPhotos",t)},s.prototype.urls.getUserProfile=function(t){return this._("GET","flickr.urls.getUserProfile",t)},s.prototype.urls.lookupGallery=function(t){return n(t,"url"),this._("GET","flickr.urls.lookupGallery",t)},s.prototype.urls.lookupGroup=function(t){return n(t,"url"),this._("GET","flickr.urls.lookupGroup",t)},s.prototype.urls.lookupUser=function(t){return n(t,"url"),this._("GET","flickr.urls.lookupUser",t)},t.exports=s},9772:(t,e,r)=>{var o=r(2369).Request,n=r(4205);function i(t,e,r){if(!(this instanceof i))return new i(t,e,r);if(o.call(this,"POST","https://up.flickr.com/services/upload"),"function"!=typeof t)throw new Error('Missing required argument "auth"');void 0===r&&(r={});let s=Buffer.isBuffer(e)?"flickr-sdk.jpg":void 0;this.attach("photo",e,s),this.field(r),this.use(n),this.use(t)}i.prototype=Object.create(o.prototype),t.exports=i},645:(t,e)=>{e.read=function(t,e,r,o,n){var i,s,a=8*n-o-1,u=(1<<a)-1,p=u>>1,c=-7,h=r?n-1:0,l=r?-1:1,f=t[e+h];for(h+=l,i=f&(1<<-c)-1,f>>=-c,c+=a;c>0;i=256*i+t[e+h],h+=l,c-=8);for(s=i&(1<<-c)-1,i>>=-c,c+=o;c>0;s=256*s+t[e+h],h+=l,c-=8);if(0===i)i=1-p;else{if(i===u)return s?NaN:1/0*(f?-1:1);s+=Math.pow(2,o),i-=p}return(f?-1:1)*s*Math.pow(2,i-o)},e.write=function(t,e,r,o,n,i){var s,a,u,p=8*i-n-1,c=(1<<p)-1,h=c>>1,l=23===n?Math.pow(2,-24)-Math.pow(2,-77):0,f=o?0:i-1,d=o?1:-1,y=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(a=isNaN(e)?1:0,s=c):(s=Math.floor(Math.log(e)/Math.LN2),e*(u=Math.pow(2,-s))<1&&(s--,u*=2),(e+=s+h>=1?l/u:l*Math.pow(2,1-h))*u>=2&&(s++,u/=2),s+h>=c?(a=0,s=c):s+h>=1?(a=(e*u-1)*Math.pow(2,n),s+=h):(a=e*Math.pow(2,h-1)*Math.pow(2,n),s=0));n>=8;t[r+f]=255&a,f+=d,a/=256,n-=8);for(s=s<<n|a,p+=n;p>0;t[r+f]=255&s,f+=d,s/=256,p-=8);t[r+f-d]|=128*y}},2587:t=>{"use strict";function e(t,e){return Object.prototype.hasOwnProperty.call(t,e)}t.exports=function(t,r,o,n){r=r||"&",o=o||"=";var i={};if("string"!=typeof t||0===t.length)return i;var s=/\+/g;t=t.split(r);var a=1e3;n&&"number"==typeof n.maxKeys&&(a=n.maxKeys);var u=t.length;a>0&&u>a&&(u=a);for(var p=0;p<u;++p){var c,h,l,f,d=t[p].replace(s,"%20"),y=d.indexOf(o);y>=0?(c=d.substr(0,y),h=d.substr(y+1)):(c=d,h=""),l=decodeURIComponent(c),f=decodeURIComponent(h),e(i,l)?Array.isArray(i[l])?i[l].push(f):i[l]=[i[l],f]:i[l]=f}return i}},2361:t=>{"use strict";var e=function(t){switch(typeof t){case"string":return t;case"boolean":return t?"true":"false";case"number":return isFinite(t)?t:"";default:return""}};t.exports=function(t,r,o,n){return r=r||"&",o=o||"=",null===t&&(t=void 0),"object"==typeof t?Object.keys(t).map((function(n){var i=encodeURIComponent(e(n))+o;return Array.isArray(t[n])?t[n].map((function(t){return i+encodeURIComponent(e(t))})).join(r):i+encodeURIComponent(e(t[n]))})).filter(Boolean).join(r):n?encodeURIComponent(e(n))+o+encodeURIComponent(e(t)):""}},7673:(t,e,r)=>{"use strict";e.parse=r(2587),r(2361)},6099:(t,e,r)=>{!function(t){t.parser=function(t,e){return new n(t,e)},t.SAXParser=n,t.SAXStream=s,t.createStream=function(t,e){return new s(t,e)},t.MAX_BUFFER_LENGTH=65536;var e,o=["comment","sgmlDecl","textNode","tagName","doctype","procInstName","procInstBody","entity","attribName","attribValue","cdata","script"];function n(e,r){if(!(this instanceof n))return new n(e,r);var i=this;!function(t){for(var e=0,r=o.length;e<r;e++)t[o[e]]=""}(i),i.q=i.c="",i.bufferCheckPosition=t.MAX_BUFFER_LENGTH,i.opt=r||{},i.opt.lowercase=i.opt.lowercase||i.opt.lowercasetags,i.looseCase=i.opt.lowercase?"toLowerCase":"toUpperCase",i.tags=[],i.closed=i.closedRoot=i.sawRoot=!1,i.tag=i.error=null,i.strict=!!e,i.noscript=!(!e&&!i.opt.noscript),i.state=E.BEGIN,i.strictEntities=i.opt.strictEntities,i.ENTITIES=i.strictEntities?Object.create(t.XML_ENTITIES):Object.create(t.ENTITIES),i.attribList=[],i.opt.xmlns&&(i.ns=Object.create(p)),i.trackPosition=!1!==i.opt.position,i.trackPosition&&(i.position=i.line=i.column=0),O(i,"onready")}t.EVENTS=["text","processinginstruction","sgmldeclaration","doctype","comment","opentagstart","attribute","opentag","closetag","opencdata","cdata","closecdata","error","end","ready","script","opennamespace","closenamespace"],Object.create||(Object.create=function(t){function e(){}return e.prototype=t,new e}),Object.keys||(Object.keys=function(t){var e=[];for(var r in t)t.hasOwnProperty(r)&&e.push(r);return e}),n.prototype={end:function(){C(this)},write:function(e){var r=this;if(this.error)throw this.error;if(r.closed)return D(r,"Cannot write after close. Assign an onready handler.");if(null===e)return C(r);"object"==typeof e&&(e=e.toString());for(var n=0,i="";i=j(e,n++),r.c=i,i;)switch(r.trackPosition&&(r.position++,"\n"===i?(r.line++,r.column=0):r.column++),r.state){case E.BEGIN:if(r.state=E.BEGIN_WHITESPACE,"\ufeff"===i)continue;F(r,i);continue;case E.BEGIN_WHITESPACE:F(r,i);continue;case E.TEXT:if(r.sawRoot&&!r.closedRoot){for(var s=n-1;i&&"<"!==i&&"&"!==i;)(i=j(e,n++))&&r.trackPosition&&(r.position++,"\n"===i?(r.line++,r.column=0):r.column++);r.textNode+=e.substring(s,n-1)}"<"!==i||r.sawRoot&&r.closedRoot&&!r.strict?(d(i)||r.sawRoot&&!r.closedRoot||k(r,"Text data outside of root node."),"&"===i?r.state=E.TEXT_ENTITY:r.textNode+=i):(r.state=E.OPEN_WAKA,r.startTagPosition=r.position);continue;case E.SCRIPT:"<"===i?r.state=E.SCRIPT_ENDING:r.script+=i;continue;case E.SCRIPT_ENDING:"/"===i?r.state=E.CLOSE_TAG:(r.script+="<"+i,r.state=E.SCRIPT);continue;case E.OPEN_WAKA:if("!"===i)r.state=E.SGML_DECL,r.sgmlDecl="";else if(d(i));else if(m(c,i))r.state=E.OPEN_TAG,r.tagName=i;else if("/"===i)r.state=E.CLOSE_TAG,r.tagName="";else if("?"===i)r.state=E.PROC_INST,r.procInstName=r.procInstBody="";else{if(k(r,"Unencoded <"),r.startTagPosition+1<r.position){var a=r.position-r.startTagPosition;i=new Array(a).join(" ")+i}r.textNode+="<"+i,r.state=E.TEXT}continue;case E.SGML_DECL:"[CDATA["===(r.sgmlDecl+i).toUpperCase()?(I(r,"onopencdata"),r.state=E.CDATA,r.sgmlDecl="",r.cdata=""):r.sgmlDecl+i==="--"?(r.state=E.COMMENT,r.comment="",r.sgmlDecl=""):"DOCTYPE"===(r.sgmlDecl+i).toUpperCase()?(r.state=E.DOCTYPE,(r.doctype||r.sawRoot)&&k(r,"Inappropriately located doctype declaration"),r.doctype="",r.sgmlDecl=""):">"===i?(I(r,"onsgmldeclaration",r.sgmlDecl),r.sgmlDecl="",r.state=E.TEXT):y(i)?(r.state=E.SGML_DECL_QUOTED,r.sgmlDecl+=i):r.sgmlDecl+=i;continue;case E.SGML_DECL_QUOTED:i===r.q&&(r.state=E.SGML_DECL,r.q=""),r.sgmlDecl+=i;continue;case E.DOCTYPE:">"===i?(r.state=E.TEXT,I(r,"ondoctype",r.doctype),r.doctype=!0):(r.doctype+=i,"["===i?r.state=E.DOCTYPE_DTD:y(i)&&(r.state=E.DOCTYPE_QUOTED,r.q=i));continue;case E.DOCTYPE_QUOTED:r.doctype+=i,i===r.q&&(r.q="",r.state=E.DOCTYPE);continue;case E.DOCTYPE_DTD:r.doctype+=i,"]"===i?r.state=E.DOCTYPE:y(i)&&(r.state=E.DOCTYPE_DTD_QUOTED,r.q=i);continue;case E.DOCTYPE_DTD_QUOTED:r.doctype+=i,i===r.q&&(r.state=E.DOCTYPE_DTD,r.q="");continue;case E.COMMENT:"-"===i?r.state=E.COMMENT_ENDING:r.comment+=i;continue;case E.COMMENT_ENDING:"-"===i?(r.state=E.COMMENT_ENDED,r.comment=N(r.opt,r.comment),r.comment&&I(r,"oncomment",r.comment),r.comment=""):(r.comment+="-"+i,r.state=E.COMMENT);continue;case E.COMMENT_ENDED:">"!==i?(k(r,"Malformed comment"),r.comment+="--"+i,r.state=E.COMMENT):r.state=E.TEXT;continue;case E.CDATA:"]"===i?r.state=E.CDATA_ENDING:r.cdata+=i;continue;case E.CDATA_ENDING:"]"===i?r.state=E.CDATA_ENDING_2:(r.cdata+="]"+i,r.state=E.CDATA);continue;case E.CDATA_ENDING_2:">"===i?(r.cdata&&I(r,"oncdata",r.cdata),I(r,"onclosecdata"),r.cdata="",r.state=E.TEXT):"]"===i?r.cdata+="]":(r.cdata+="]]"+i,r.state=E.CDATA);continue;case E.PROC_INST:"?"===i?r.state=E.PROC_INST_ENDING:d(i)?r.state=E.PROC_INST_BODY:r.procInstName+=i;continue;case E.PROC_INST_BODY:if(!r.procInstBody&&d(i))continue;"?"===i?r.state=E.PROC_INST_ENDING:r.procInstBody+=i;continue;case E.PROC_INST_ENDING:">"===i?(I(r,"onprocessinginstruction",{name:r.procInstName,body:r.procInstBody}),r.procInstName=r.procInstBody="",r.state=E.TEXT):(r.procInstBody+="?"+i,r.state=E.PROC_INST_BODY);continue;case E.OPEN_TAG:m(h,i)?r.tagName+=i:(x(r),">"===i?L(r):"/"===i?r.state=E.OPEN_TAG_SLASH:(d(i)||k(r,"Invalid character in tag name"),r.state=E.ATTRIB));continue;case E.OPEN_TAG_SLASH:">"===i?(L(r,!0),R(r)):(k(r,"Forward-slash in opening tag not followed by >"),r.state=E.ATTRIB);continue;case E.ATTRIB:if(d(i))continue;">"===i?L(r):"/"===i?r.state=E.OPEN_TAG_SLASH:m(c,i)?(r.attribName=i,r.attribValue="",r.state=E.ATTRIB_NAME):k(r,"Invalid attribute name");continue;case E.ATTRIB_NAME:"="===i?r.state=E.ATTRIB_VALUE:">"===i?(k(r,"Attribute without value"),r.attribValue=r.attribName,S(r),L(r)):d(i)?r.state=E.ATTRIB_NAME_SAW_WHITE:m(h,i)?r.attribName+=i:k(r,"Invalid attribute name");continue;case E.ATTRIB_NAME_SAW_WHITE:if("="===i)r.state=E.ATTRIB_VALUE;else{if(d(i))continue;k(r,"Attribute without value"),r.tag.attributes[r.attribName]="",r.attribValue="",I(r,"onattribute",{name:r.attribName,value:""}),r.attribName="",">"===i?L(r):m(c,i)?(r.attribName=i,r.state=E.ATTRIB_NAME):(k(r,"Invalid attribute name"),r.state=E.ATTRIB)}continue;case E.ATTRIB_VALUE:if(d(i))continue;y(i)?(r.q=i,r.state=E.ATTRIB_VALUE_QUOTED):(k(r,"Unquoted attribute value"),r.state=E.ATTRIB_VALUE_UNQUOTED,r.attribValue=i);continue;case E.ATTRIB_VALUE_QUOTED:if(i!==r.q){"&"===i?r.state=E.ATTRIB_VALUE_ENTITY_Q:r.attribValue+=i;continue}S(r),r.q="",r.state=E.ATTRIB_VALUE_CLOSED;continue;case E.ATTRIB_VALUE_CLOSED:d(i)?r.state=E.ATTRIB:">"===i?L(r):"/"===i?r.state=E.OPEN_TAG_SLASH:m(c,i)?(k(r,"No whitespace between attributes"),r.attribName=i,r.attribValue="",r.state=E.ATTRIB_NAME):k(r,"Invalid attribute name");continue;case E.ATTRIB_VALUE_UNQUOTED:if(!g(i)){"&"===i?r.state=E.ATTRIB_VALUE_ENTITY_U:r.attribValue+=i;continue}S(r),">"===i?L(r):r.state=E.ATTRIB;continue;case E.CLOSE_TAG:if(r.tagName)">"===i?R(r):m(h,i)?r.tagName+=i:r.script?(r.script+="</"+r.tagName,r.tagName="",r.state=E.SCRIPT):(d(i)||k(r,"Invalid tagname in closing tag"),r.state=E.CLOSE_TAG_SAW_WHITE);else{if(d(i))continue;_(c,i)?r.script?(r.script+="</"+i,r.state=E.SCRIPT):k(r,"Invalid tagname in closing tag."):r.tagName=i}continue;case E.CLOSE_TAG_SAW_WHITE:if(d(i))continue;">"===i?R(r):k(r,"Invalid characters in closing tag");continue;case E.TEXT_ENTITY:case E.ATTRIB_VALUE_ENTITY_Q:case E.ATTRIB_VALUE_ENTITY_U:var u,p;switch(r.state){case E.TEXT_ENTITY:u=E.TEXT,p="textNode";break;case E.ATTRIB_VALUE_ENTITY_Q:u=E.ATTRIB_VALUE_QUOTED,p="attribValue";break;case E.ATTRIB_VALUE_ENTITY_U:u=E.ATTRIB_VALUE_UNQUOTED,p="attribValue"}";"===i?(r[p]+=B(r),r.entity="",r.state=u):m(r.entity.length?f:l,i)?r.entity+=i:(k(r,"Invalid character in entity name"),r[p]+="&"+r.entity+i,r.entity="",r.state=u);continue;default:throw new Error(r,"Unknown state: "+r.state)}return r.position>=r.bufferCheckPosition&&function(e){for(var r=Math.max(t.MAX_BUFFER_LENGTH,10),n=0,i=0,s=o.length;i<s;i++){var a=e[o[i]].length;if(a>r)switch(o[i]){case"textNode":P(e);break;case"cdata":I(e,"oncdata",e.cdata),e.cdata="";break;case"script":I(e,"onscript",e.script),e.script="";break;default:D(e,"Max buffer length exceeded: "+o[i])}n=Math.max(n,a)}var u=t.MAX_BUFFER_LENGTH-n;e.bufferCheckPosition=u+e.position}(r),r},resume:function(){return this.error=null,this},close:function(){return this.write(null)},flush:function(){var t;P(t=this),""!==t.cdata&&(I(t,"oncdata",t.cdata),t.cdata=""),""!==t.script&&(I(t,"onscript",t.script),t.script="")}};try{e=r(3086).Stream}catch(t){e=function(){}}var i=t.EVENTS.filter((function(t){return"error"!==t&&"end"!==t}));function s(t,r){if(!(this instanceof s))return new s(t,r);e.apply(this),this._parser=new n(t,r),this.writable=!0,this.readable=!0;var o=this;this._parser.onend=function(){o.emit("end")},this._parser.onerror=function(t){o.emit("error",t),o._parser.error=null},this._decoder=null,i.forEach((function(t){Object.defineProperty(o,"on"+t,{get:function(){return o._parser["on"+t]},set:function(e){if(!e)return o.removeAllListeners(t),o._parser["on"+t]=e,e;o.on(t,e)},enumerable:!0,configurable:!1})}))}s.prototype=Object.create(e.prototype,{constructor:{value:s}}),s.prototype.write=function(t){if("function"==typeof Buffer&&"function"==typeof Buffer.isBuffer&&Buffer.isBuffer(t)){if(!this._decoder){var e=r(2553).s;this._decoder=new e("utf8")}t=this._decoder.write(t)}return this._parser.write(t.toString()),this.emit("data",t),!0},s.prototype.end=function(t){return t&&t.length&&this.write(t),this._parser.end(),!0},s.prototype.on=function(t,r){var o=this;return o._parser["on"+t]||-1===i.indexOf(t)||(o._parser["on"+t]=function(){var e=1===arguments.length?[arguments[0]]:Array.apply(null,arguments);e.splice(0,0,t),o.emit.apply(o,e)}),e.prototype.on.call(o,t,r)};var a="http://www.w3.org/XML/1998/namespace",u="http://www.w3.org/2000/xmlns/",p={xml:a,xmlns:u},c=/[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,h=/[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/,l=/[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,f=/[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/;function d(t){return" "===t||"\n"===t||"\r"===t||"\t"===t}function y(t){return'"'===t||"'"===t}function g(t){return">"===t||d(t)}function m(t,e){return t.test(e)}function _(t,e){return!m(t,e)}var w,T,b,E=0;for(var v in t.STATE={BEGIN:E++,BEGIN_WHITESPACE:E++,TEXT:E++,TEXT_ENTITY:E++,OPEN_WAKA:E++,SGML_DECL:E++,SGML_DECL_QUOTED:E++,DOCTYPE:E++,DOCTYPE_QUOTED:E++,DOCTYPE_DTD:E++,DOCTYPE_DTD_QUOTED:E++,COMMENT_STARTING:E++,COMMENT:E++,COMMENT_ENDING:E++,COMMENT_ENDED:E++,CDATA:E++,CDATA_ENDING:E++,CDATA_ENDING_2:E++,PROC_INST:E++,PROC_INST_BODY:E++,PROC_INST_ENDING:E++,OPEN_TAG:E++,OPEN_TAG_SLASH:E++,ATTRIB:E++,ATTRIB_NAME:E++,ATTRIB_NAME_SAW_WHITE:E++,ATTRIB_VALUE:E++,ATTRIB_VALUE_QUOTED:E++,ATTRIB_VALUE_CLOSED:E++,ATTRIB_VALUE_UNQUOTED:E++,ATTRIB_VALUE_ENTITY_Q:E++,ATTRIB_VALUE_ENTITY_U:E++,CLOSE_TAG:E++,CLOSE_TAG_SAW_WHITE:E++,SCRIPT:E++,SCRIPT_ENDING:E++},t.XML_ENTITIES={amp:"&",gt:">",lt:"<",quot:'"',apos:"'"},t.ENTITIES={amp:"&",gt:">",lt:"<",quot:'"',apos:"'",AElig:198,Aacute:193,Acirc:194,Agrave:192,Aring:197,Atilde:195,Auml:196,Ccedil:199,ETH:208,Eacute:201,Ecirc:202,Egrave:200,Euml:203,Iacute:205,Icirc:206,Igrave:204,Iuml:207,Ntilde:209,Oacute:211,Ocirc:212,Ograve:210,Oslash:216,Otilde:213,Ouml:214,THORN:222,Uacute:218,Ucirc:219,Ugrave:217,Uuml:220,Yacute:221,aacute:225,acirc:226,aelig:230,agrave:224,aring:229,atilde:227,auml:228,ccedil:231,eacute:233,ecirc:234,egrave:232,eth:240,euml:235,iacute:237,icirc:238,igrave:236,iuml:239,ntilde:241,oacute:243,ocirc:244,ograve:242,oslash:248,otilde:245,ouml:246,szlig:223,thorn:254,uacute:250,ucirc:251,ugrave:249,uuml:252,yacute:253,yuml:255,copy:169,reg:174,nbsp:160,iexcl:161,cent:162,pound:163,curren:164,yen:165,brvbar:166,sect:167,uml:168,ordf:170,laquo:171,not:172,shy:173,macr:175,deg:176,plusmn:177,sup1:185,sup2:178,sup3:179,acute:180,micro:181,para:182,middot:183,cedil:184,ordm:186,raquo:187,frac14:188,frac12:189,frac34:190,iquest:191,times:215,divide:247,OElig:338,oelig:339,Scaron:352,scaron:353,Yuml:376,fnof:402,circ:710,tilde:732,Alpha:913,Beta:914,Gamma:915,Delta:916,Epsilon:917,Zeta:918,Eta:919,Theta:920,Iota:921,Kappa:922,Lambda:923,Mu:924,Nu:925,Xi:926,Omicron:927,Pi:928,Rho:929,Sigma:931,Tau:932,Upsilon:933,Phi:934,Chi:935,Psi:936,Omega:937,alpha:945,beta:946,gamma:947,delta:948,epsilon:949,zeta:950,eta:951,theta:952,iota:953,kappa:954,lambda:955,mu:956,nu:957,xi:958,omicron:959,pi:960,rho:961,sigmaf:962,sigma:963,tau:964,upsilon:965,phi:966,chi:967,psi:968,omega:969,thetasym:977,upsih:978,piv:982,ensp:8194,emsp:8195,thinsp:8201,zwnj:8204,zwj:8205,lrm:8206,rlm:8207,ndash:8211,mdash:8212,lsquo:8216,rsquo:8217,sbquo:8218,ldquo:8220,rdquo:8221,bdquo:8222,dagger:8224,Dagger:8225,bull:8226,hellip:8230,permil:8240,prime:8242,Prime:8243,lsaquo:8249,rsaquo:8250,oline:8254,frasl:8260,euro:8364,image:8465,weierp:8472,real:8476,trade:8482,alefsym:8501,larr:8592,uarr:8593,rarr:8594,darr:8595,harr:8596,crarr:8629,lArr:8656,uArr:8657,rArr:8658,dArr:8659,hArr:8660,forall:8704,part:8706,exist:8707,empty:8709,nabla:8711,isin:8712,notin:8713,ni:8715,prod:8719,sum:8721,minus:8722,lowast:8727,radic:8730,prop:8733,infin:8734,ang:8736,and:8743,or:8744,cap:8745,cup:8746,int:8747,there4:8756,sim:8764,cong:8773,asymp:8776,ne:8800,equiv:8801,le:8804,ge:8805,sub:8834,sup:8835,nsub:8836,sube:8838,supe:8839,oplus:8853,otimes:8855,perp:8869,sdot:8901,lceil:8968,rceil:8969,lfloor:8970,rfloor:8971,lang:9001,rang:9002,loz:9674,spades:9824,clubs:9827,hearts:9829,diams:9830},Object.keys(t.ENTITIES).forEach((function(e){var r=t.ENTITIES[e],o="number"==typeof r?String.fromCharCode(r):r;t.ENTITIES[e]=o})),t.STATE)t.STATE[t.STATE[v]]=v;function O(t,e,r){t[e]&&t[e](r)}function I(t,e,r){t.textNode&&P(t),O(t,e,r)}function P(t){t.textNode=N(t.opt,t.textNode),t.textNode&&O(t,"ontext",t.textNode),t.textNode=""}function N(t,e){return t.trim&&(e=e.trim()),t.normalize&&(e=e.replace(/\s+/g," ")),e}function D(t,e){return P(t),t.trackPosition&&(e+="\nLine: "+t.line+"\nColumn: "+t.column+"\nChar: "+t.c),e=new Error(e),t.error=e,O(t,"onerror",e),t}function C(t){return t.sawRoot&&!t.closedRoot&&k(t,"Unclosed root tag"),t.state!==E.BEGIN&&t.state!==E.BEGIN_WHITESPACE&&t.state!==E.TEXT&&D(t,"Unexpected end"),P(t),t.c="",t.closed=!0,O(t,"onend"),n.call(t,t.strict,t.opt),t}function k(t,e){if("object"!=typeof t||!(t instanceof n))throw new Error("bad call to strictFail");t.strict&&D(t,e)}function x(t){t.strict||(t.tagName=t.tagName[t.looseCase]());var e=t.tags[t.tags.length-1]||t,r=t.tag={name:t.tagName,attributes:{}};t.opt.xmlns&&(r.ns=e.ns),t.attribList.length=0,I(t,"onopentagstart",r)}function A(t,e){var r=t.indexOf(":")<0?["",t]:t.split(":"),o=r[0],n=r[1];return e&&"xmlns"===t&&(o="xmlns",n=""),{prefix:o,local:n}}function S(t){if(t.strict||(t.attribName=t.attribName[t.looseCase]()),-1!==t.attribList.indexOf(t.attribName)||t.tag.attributes.hasOwnProperty(t.attribName))t.attribName=t.attribValue="";else{if(t.opt.xmlns){var e=A(t.attribName,!0),r=e.prefix,o=e.local;if("xmlns"===r)if("xml"===o&&t.attribValue!==a)k(t,"xml: prefix must be bound to "+a+"\nActual: "+t.attribValue);else if("xmlns"===o&&t.attribValue!==u)k(t,"xmlns: prefix must be bound to "+u+"\nActual: "+t.attribValue);else{var n=t.tag,i=t.tags[t.tags.length-1]||t;n.ns===i.ns&&(n.ns=Object.create(i.ns)),n.ns[o]=t.attribValue}t.attribList.push([t.attribName,t.attribValue])}else t.tag.attributes[t.attribName]=t.attribValue,I(t,"onattribute",{name:t.attribName,value:t.attribValue});t.attribName=t.attribValue=""}}function L(t,e){if(t.opt.xmlns){var r=t.tag,o=A(t.tagName);r.prefix=o.prefix,r.local=o.local,r.uri=r.ns[o.prefix]||"",r.prefix&&!r.uri&&(k(t,"Unbound namespace prefix: "+JSON.stringify(t.tagName)),r.uri=o.prefix);var n=t.tags[t.tags.length-1]||t;r.ns&&n.ns!==r.ns&&Object.keys(r.ns).forEach((function(e){I(t,"onopennamespace",{prefix:e,uri:r.ns[e]})}));for(var i=0,s=t.attribList.length;i<s;i++){var a=t.attribList[i],u=a[0],p=a[1],c=A(u,!0),h=c.prefix,l=c.local,f=""===h?"":r.ns[h]||"",d={name:u,value:p,prefix:h,local:l,uri:f};h&&"xmlns"!==h&&!f&&(k(t,"Unbound namespace prefix: "+JSON.stringify(h)),d.uri=h),t.tag.attributes[u]=d,I(t,"onattribute",d)}t.attribList.length=0}t.tag.isSelfClosing=!!e,t.sawRoot=!0,t.tags.push(t.tag),I(t,"onopentag",t.tag),e||(t.noscript||"script"!==t.tagName.toLowerCase()?t.state=E.TEXT:t.state=E.SCRIPT,t.tag=null,t.tagName=""),t.attribName=t.attribValue="",t.attribList.length=0}function R(t){if(!t.tagName)return k(t,"Weird empty close tag."),t.textNode+="</>",void(t.state=E.TEXT);if(t.script){if("script"!==t.tagName)return t.script+="</"+t.tagName+">",t.tagName="",void(t.state=E.SCRIPT);I(t,"onscript",t.script),t.script=""}var e=t.tags.length,r=t.tagName;t.strict||(r=r[t.looseCase]());for(var o=r;e--&&t.tags[e].name!==o;)k(t,"Unexpected close tag");if(e<0)return k(t,"Unmatched closing tag: "+t.tagName),t.textNode+="</"+t.tagName+">",void(t.state=E.TEXT);t.tagName=r;for(var n=t.tags.length;n-- >e;){var i=t.tag=t.tags.pop();t.tagName=t.tag.name,I(t,"onclosetag",t.tagName);var s={};for(var a in i.ns)s[a]=i.ns[a];var u=t.tags[t.tags.length-1]||t;t.opt.xmlns&&i.ns!==u.ns&&Object.keys(i.ns).forEach((function(e){var r=i.ns[e];I(t,"onclosenamespace",{prefix:e,uri:r})}))}0===e&&(t.closedRoot=!0),t.tagName=t.attribValue=t.attribName="",t.attribList.length=0,t.state=E.TEXT}function B(t){var e,r=t.entity,o=r.toLowerCase(),n="";return t.ENTITIES[r]?t.ENTITIES[r]:t.ENTITIES[o]?t.ENTITIES[o]:("#"===(r=o).charAt(0)&&("x"===r.charAt(1)?(r=r.slice(2),n=(e=parseInt(r,16)).toString(16)):(r=r.slice(1),n=(e=parseInt(r,10)).toString(10))),r=r.replace(/^0+/,""),isNaN(e)||n.toLowerCase()!==r?(k(t,"Invalid character entity"),"&"+t.entity+";"):String.fromCodePoint(e))}function F(t,e){"<"===e?(t.state=E.OPEN_WAKA,t.startTagPosition=t.position):d(e)||(k(t,"Non-whitespace before first tag."),t.textNode=e,t.state=E.TEXT)}function j(t,e){var r="";return e<t.length&&(r=t.charAt(e)),r}E=t.STATE,String.fromCodePoint||(w=String.fromCharCode,T=Math.floor,b=function(){var t,e,r=16384,o=[],n=-1,i=arguments.length;if(!i)return"";for(var s="";++n<i;){var a=Number(arguments[n]);if(!isFinite(a)||a<0||a>1114111||T(a)!==a)throw RangeError("Invalid code point: "+a);a<=65535?o.push(a):(t=55296+((a-=65536)>>10),e=a%1024+56320,o.push(t,e)),(n+1===i||o.length>r)&&(s+=w.apply(null,o),o.length=0)}return s},Object.defineProperty?Object.defineProperty(String,"fromCodePoint",{value:b,configurable:!0,writable:!0}):String.fromCodePoint=b)}(e)},3086:(t,e,r)=>{var o=r(624);function n(){o.call(this)}n.prototype=new o,t.exports=n,n.Stream=n,n.prototype.pipe=function(t,e){var r=this;function o(e){t.writable&&!1===t.write(e)&&r.pause&&r.pause()}function n(){r.readable&&r.resume&&r.resume()}r.on("data",o),t.on("drain",n),t._isStdio||e&&!1===e.end||(r.on("end",s),r.on("close",a));var i=!1;function s(){i||(i=!0,t.end())}function a(){i||(i=!0,"function"==typeof t.destroy&&t.destroy())}function u(t){if(p(),!this.hasListeners("error"))throw t}function p(){r.off("data",o),t.off("drain",n),r.off("end",s),r.off("close",a),r.off("error",u),t.off("error",u),r.off("end",p),r.off("close",p),t.off("end",p),t.off("close",p)}return r.on("error",u),t.on("error",u),r.on("end",p),r.on("close",p),t.on("end",p),t.on("close",p),t.emit("pipe",r),t}},2553:(t,e,r)=>{"use strict";var o=r(396).Buffer,n=o.isEncoding||function(t){switch((t=""+t)&&t.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}};function i(t){var e;switch(this.encoding=function(t){var e=function(t){if(!t)return"utf8";for(var e;;)switch(t){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 t;default:if(e)return;t=(""+t).toLowerCase(),e=!0}}(t);if("string"!=typeof e&&(o.isEncoding===n||!n(t)))throw new Error("Unknown encoding: "+t);return e||t}(t),this.encoding){case"utf16le":this.text=u,this.end=p,e=4;break;case"utf8":this.fillLast=a,e=4;break;case"base64":this.text=c,this.end=h,e=3;break;default:return this.write=l,void(this.end=f)}this.lastNeed=0,this.lastTotal=0,this.lastChar=o.allocUnsafe(e)}function s(t){return t<=127?0:t>>5==6?2:t>>4==14?3:t>>3==30?4:t>>6==2?-1:-2}function a(t){var e=this.lastTotal-this.lastNeed,r=function(t,e,r){if(128!=(192&e[0]))return t.lastNeed=0,"�";if(t.lastNeed>1&&e.length>1){if(128!=(192&e[1]))return t.lastNeed=1,"�";if(t.lastNeed>2&&e.length>2&&128!=(192&e[2]))return t.lastNeed=2,"�"}}(this,t);return void 0!==r?r:this.lastNeed<=t.length?(t.copy(this.lastChar,e,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(t.copy(this.lastChar,e,0,t.length),void(this.lastNeed-=t.length))}function u(t,e){if((t.length-e)%2==0){var r=t.toString("utf16le",e);if(r){var o=r.charCodeAt(r.length-1);if(o>=55296&&o<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=t[t.length-2],this.lastChar[1]=t[t.length-1],r.slice(0,-1)}return r}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=t[t.length-1],t.toString("utf16le",e,t.length-1)}function p(t){var e=t&&t.length?this.write(t):"";if(this.lastNeed){var r=this.lastTotal-this.lastNeed;return e+this.lastChar.toString("utf16le",0,r)}return e}function c(t,e){var r=(t.length-e)%3;return 0===r?t.toString("base64",e):(this.lastNeed=3-r,this.lastTotal=3,1===r?this.lastChar[0]=t[t.length-1]:(this.lastChar[0]=t[t.length-2],this.lastChar[1]=t[t.length-1]),t.toString("base64",e,t.length-r))}function h(t){var e=t&&t.length?this.write(t):"";return this.lastNeed?e+this.lastChar.toString("base64",0,3-this.lastNeed):e}function l(t){return t.toString(this.encoding)}function f(t){return t&&t.length?this.write(t):""}e.s=i,i.prototype.write=function(t){if(0===t.length)return"";var e,r;if(this.lastNeed){if(void 0===(e=this.fillLast(t)))return"";r=this.lastNeed,this.lastNeed=0}else r=0;return r<t.length?e?e+this.text(t,r):this.text(t,r):e||""},i.prototype.end=function(t){var e=t&&t.length?this.write(t):"";return this.lastNeed?e+"�":e},i.prototype.text=function(t,e){var r=function(t,e,r){var o=e.length-1;if(o<r)return 0;var n=s(e[o]);return n>=0?(n>0&&(t.lastNeed=n-1),n):--o<r||-2===n?0:(n=s(e[o]))>=0?(n>0&&(t.lastNeed=n-2),n):--o<r||-2===n?0:(n=s(e[o]))>=0?(n>0&&(2===n?n=0:t.lastNeed=n-3),n):0}(this,t,e);if(!this.lastNeed)return t.toString("utf8",e);this.lastTotal=r;var o=t.length-(r-this.lastNeed);return t.copy(this.lastChar,0,o),t.toString("utf8",e,o)},i.prototype.fillLast=function(t){if(this.lastNeed<=t.length)return t.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);t.copy(this.lastChar,this.lastTotal-this.lastNeed,0,t.length),this.lastNeed-=t.length}},396:(t,e,r)=>{var o=r(8764),n=o.Buffer;function i(t,e){for(var r in t)e[r]=t[r]}function s(t,e,r){return n(t,e,r)}n.from&&n.alloc&&n.allocUnsafe&&n.allocUnsafeSlow?t.exports=o:(i(o,e),e.Buffer=s),i(n,s),s.from=function(t,e,r){if("number"==typeof t)throw new TypeError("Argument must not be a number");return n(t,e,r)},s.alloc=function(t,e,r){if("number"!=typeof t)throw new TypeError("Argument must be a number");var o=n(t);return void 0!==e?"string"==typeof r?o.fill(e,r):o.fill(e):o.fill(0),o},s.allocUnsafe=function(t){if("number"!=typeof t)throw new TypeError("Argument must be a number");return n(t)},s.allocUnsafeSlow=function(t){if("number"!=typeof t)throw new TypeError("Argument must be a number");return o.SlowBuffer(t)}},7903:t=>{function e(){this._defaults=[]}["use","on","once","set","query","type","accept","auth","withCredentials","sortQuery","retry","ok","redirects","timeout","buffer","serialize","parse","ca","key","pfx","cert"].forEach((function(t){e.prototype[t]=function(){return this._defaults.push({fn:t,arguments}),this}})),e.prototype._setDefaults=function(t){this._defaults.forEach((function(e){t[e.fn].apply(t,e.arguments)}))},t.exports=e},569:function(t,e,r){var o;"undefined"!=typeof window?o=window:"undefined"!=typeof self?o=self:(console.warn("Using browser-only version of superagent in non-browser environment"),o=this);var n=r(8767),i=r(8899),s=r(4960),a=r(1097),u=r(7903);function p(){}var c=e=t.exports=function(t,r){return"function"==typeof r?new e.Request("GET",t).end(r):1==arguments.length?new e.Request("GET",t):new e.Request(t,r)};e.Request=m,c.getXHR=function(){if(!(!o.XMLHttpRequest||o.location&&"file:"==o.location.protocol&&o.ActiveXObject))return new XMLHttpRequest;try{return new ActiveXObject("Microsoft.XMLHTTP")}catch(t){}try{return new ActiveXObject("Msxml2.XMLHTTP.6.0")}catch(t){}try{return new ActiveXObject("Msxml2.XMLHTTP.3.0")}catch(t){}try{return new ActiveXObject("Msxml2.XMLHTTP")}catch(t){}throw Error("Browser-only version of superagent could not find XHR")};var h="".trim?function(t){return t.trim()}:function(t){return t.replace(/(^\s*|\s*$)/g,"")};function l(t){if(!s(t))return t;var e=[];for(var r in t)f(e,r,t[r]);return e.join("&")}function f(t,e,r){if(null!=r)if(Array.isArray(r))r.forEach((function(r){f(t,e,r)}));else if(s(r))for(var o in r)f(t,e+"["+o+"]",r[o]);else t.push(encodeURIComponent(e)+"="+encodeURIComponent(r));else null===r&&t.push(encodeURIComponent(e))}function d(t){for(var e,r,o={},n=t.split("&"),i=0,s=n.length;i<s;++i)-1==(r=(e=n[i]).indexOf("="))?o[decodeURIComponent(e)]="":o[decodeURIComponent(e.slice(0,r))]=decodeURIComponent(e.slice(r+1));return o}function y(t){return/[\/+]json($|[^-\w])/.test(t)}function g(t){this.req=t,this.xhr=this.req.xhr,this.text="HEAD"!=this.req.method&&(""===this.xhr.responseType||"text"===this.xhr.responseType)||void 0===this.xhr.responseType?this.xhr.responseText:null,this.statusText=this.req.xhr.statusText;var e=this.xhr.status;1223===e&&(e=204),this._setStatusProperties(e),this.header=this.headers=function(t){for(var e,r,o,n,i=t.split(/\r?\n/),s={},a=0,u=i.length;a<u;++a)-1!==(e=(r=i[a]).indexOf(":"))&&(o=r.slice(0,e).toLowerCase(),n=h(r.slice(e+1)),s[o]=n);return s}(this.xhr.getAllResponseHeaders()),this.header["content-type"]=this.xhr.getResponseHeader("content-type"),this._setHeaderProperties(this.header),null===this.text&&t._responseType?this.body=this.xhr.response:this.body="HEAD"!=this.req.method?this._parseBody(this.text?this.text:this.xhr.response):null}function m(t,e){var r=this;this._query=this._query||[],this.method=t,this.url=e,this.header={},this._header={},this.on("end",(function(){var t,e=null,o=null;try{o=new g(r)}catch(t){return(e=new Error("Parser is unable to parse the response")).parse=!0,e.original=t,r.xhr?(e.rawResponse=void 0===r.xhr.responseType?r.xhr.responseText:r.xhr.response,e.status=r.xhr.status?r.xhr.status:null,e.statusCode=e.status):(e.rawResponse=null,e.status=null),r.callback(e)}r.emit("response",o);try{r._isResponseOK(o)||(t=new Error(o.statusText||"Unsuccessful HTTP response"))}catch(e){t=e}t?(t.original=e,t.response=o,t.status=o.status,r.callback(t,o)):r.callback(null,o)}))}function _(t,e,r){var o=c("DELETE",t);return"function"==typeof e&&(r=e,e=null),e&&o.send(e),r&&o.end(r),o}c.serializeObject=l,c.parseString=d,c.types={html:"text/html",json:"application/json",xml:"text/xml",urlencoded:"application/x-www-form-urlencoded",form:"application/x-www-form-urlencoded","form-data":"application/x-www-form-urlencoded"},c.serialize={"application/x-www-form-urlencoded":l,"application/json":JSON.stringify},c.parse={"application/x-www-form-urlencoded":d,"application/json":JSON.parse},a(g.prototype),g.prototype._parseBody=function(t){var e=c.parse[this.type];return this.req._parser?this.req._parser(this,t):(!e&&y(this.type)&&(e=c.parse["application/json"]),e&&t&&(t.length||t instanceof Object)?e(t):null)},g.prototype.toError=function(){var t=this.req,e=t.method,r=t.url,o="cannot "+e+" "+r+" ("+this.status+")",n=new Error(o);return n.status=this.status,n.method=e,n.url=r,n},c.Response=g,n(m.prototype),i(m.prototype),m.prototype.type=function(t){return this.set("Content-Type",c.types[t]||t),this},m.prototype.accept=function(t){return this.set("Accept",c.types[t]||t),this},m.prototype.auth=function(t,e,r){1===arguments.length&&(e=""),"object"==typeof e&&null!==e&&(r=e,e=""),r||(r={type:"function"==typeof btoa?"basic":"auto"});var o=function(t){if("function"==typeof btoa)return btoa(t);throw new Error("Cannot use basic auth, btoa is not a function")};return this._auth(t,e,r,o)},m.prototype.query=function(t){return"string"!=typeof t&&(t=l(t)),t&&this._query.push(t),this},m.prototype.attach=function(t,e,r){if(e){if(this._data)throw Error("superagent can't mix .send() and .attach()");this._getFormData().append(t,e,r||e.name)}return this},m.prototype._getFormData=function(){return this._formData||(this._formData=new o.FormData),this._formData},m.prototype.callback=function(t,e){if(this._shouldRetry(t,e))return this._retry();var r=this._callback;this.clearTimeout(),t&&(this._maxRetries&&(t.retries=this._retries-1),this.emit("error",t)),r(t,e)},m.prototype.crossDomainError=function(){var t=new Error("Request has been terminated\nPossible causes: the network is offline, Origin is not allowed by Access-Control-Allow-Origin, the page is being unloaded, etc.");t.crossDomain=!0,t.status=this.status,t.method=this.method,t.url=this.url,this.callback(t)},m.prototype.buffer=m.prototype.ca=m.prototype.agent=function(){return console.warn("This is not supported in browser version of superagent"),this},m.prototype.pipe=m.prototype.write=function(){throw Error("Streaming is not supported in browser version of superagent")},m.prototype._isHost=function(t){return t&&"object"==typeof t&&!Array.isArray(t)&&"[object Object]"!==Object.prototype.toString.call(t)},m.prototype.end=function(t){return this._endCalled&&console.warn("Warning: .end() was called twice. This is not supported in superagent"),this._endCalled=!0,this._callback=t||p,this._finalizeQueryString(),this._end()},m.prototype._end=function(){var t=this,e=this.xhr=c.getXHR(),r=this._formData||this._data;this._setTimeouts(),e.onreadystatechange=function(){var r=e.readyState;if(r>=2&&t._responseTimeoutTimer&&clearTimeout(t._responseTimeoutTimer),4==r){var o;try{o=e.status}catch(t){o=0}if(!o){if(t.timedout||t._aborted)return;return t.crossDomainError()}t.emit("end")}};var o=function(e,r){r.total>0&&(r.percent=r.loaded/r.total*100),r.direction=e,t.emit("progress",r)};if(this.hasListeners("progress"))try{e.onprogress=o.bind(null,"download"),e.upload&&(e.upload.onprogress=o.bind(null,"upload"))}catch(t){}try{this.username&&this.password?e.open(this.method,this.url,!0,this.username,this.password):e.open(this.method,this.url,!0)}catch(t){return this.callback(t)}if(this._withCredentials&&(e.withCredentials=!0),!this._formData&&"GET"!=this.method&&"HEAD"!=this.method&&"string"!=typeof r&&!this._isHost(r)){var n=this._header["content-type"],i=this._serializer||c.serialize[n?n.split(";")[0]:""];!i&&y(n)&&(i=c.serialize["application/json"]),i&&(r=i(r))}for(var s in this.header)null!=this.header[s]&&this.header.hasOwnProperty(s)&&e.setRequestHeader(s,this.header[s]);return this._responseType&&(e.responseType=this._responseType),this.emit("request",this),e.send(void 0!==r?r:null),this},c.agent=function(){return new u},["GET","POST","OPTIONS","PATCH","PUT","DELETE"].forEach((function(t){u.prototype[t.toLowerCase()]=function(e,r){var o=new c.Request(t,e);return this._setDefaults(o),r&&o.end(r),o}})),u.prototype.del=u.prototype.delete,c.get=function(t,e,r){var o=c("GET",t);return"function"==typeof e&&(r=e,e=null),e&&o.query(e),r&&o.end(r),o},c.head=function(t,e,r){var o=c("HEAD",t);return"function"==typeof e&&(r=e,e=null),e&&o.query(e),r&&o.end(r),o},c.options=function(t,e,r){var o=c("OPTIONS",t);return"function"==typeof e&&(r=e,e=null),e&&o.send(e),r&&o.end(r),o},c.del=_,c.delete=_,c.patch=function(t,e,r){var o=c("PATCH",t);return"function"==typeof e&&(r=e,e=null),e&&o.send(e),r&&o.end(r),o},c.post=function(t,e,r){var o=c("POST",t);return"function"==typeof e&&(r=e,e=null),e&&o.send(e),r&&o.end(r),o},c.put=function(t,e,r){var o=c("PUT",t);return"function"==typeof e&&(r=e,e=null),e&&o.send(e),r&&o.end(r),o}},4960:t=>{"use strict";t.exports=function(t){return null!==t&&"object"==typeof t}},8899:(t,e,r)=>{"use strict";var o=r(4960);function n(t){if(t)return function(t){for(var e in n.prototype)t[e]=n.prototype[e];return t}(t)}t.exports=n,n.prototype.clearTimeout=function(){return clearTimeout(this._timer),clearTimeout(this._responseTimeoutTimer),delete this._timer,delete this._responseTimeoutTimer,this},n.prototype.parse=function(t){return this._parser=t,this},n.prototype.responseType=function(t){return this._responseType=t,this},n.prototype.serialize=function(t){return this._serializer=t,this},n.prototype.timeout=function(t){if(!t||"object"!=typeof t)return this._timeout=t,this._responseTimeout=0,this;for(var e in t)switch(e){case"deadline":this._timeout=t.deadline;break;case"response":this._responseTimeout=t.response;break;default:console.warn("Unknown timeout option",e)}return this},n.prototype.retry=function(t,e){return 0!==arguments.length&&!0!==t||(t=1),t<=0&&(t=0),this._maxRetries=t,this._retries=0,this._retryCallback=e,this};var i=["ECONNRESET","ETIMEDOUT","EADDRINFO","ESOCKETTIMEDOUT"];n.prototype._shouldRetry=function(t,e){if(!this._maxRetries||this._retries++>=this._maxRetries)return!1;if(this._retryCallback)try{var r=this._retryCallback(t,e);if(!0===r)return!0;if(!1===r)return!1}catch(t){console.error(t)}if(e&&e.status&&e.status>=500&&501!=e.status)return!0;if(t){if(t.code&&~i.indexOf(t.code))return!0;if(t.timeout&&"ECONNABORTED"==t.code)return!0;if(t.crossDomain)return!0}return!1},n.prototype._retry=function(){return this.clearTimeout(),this.req&&(this.req=null,this.req=this.request()),this._aborted=!1,this.timedout=!1,this._end()},n.prototype.then=function(t,e){if(!this._fullfilledPromise){var r=this;this._endCalled&&console.warn("Warning: superagent request was sent twice, because both .end() and .then() were called. Never call .end() if you use promises"),this._fullfilledPromise=new Promise((function(t,e){r.end((function(r,o){r?e(r):t(o)}))}))}return this._fullfilledPromise.then(t,e)},n.prototype.catch=function(t){return this.then(void 0,t)},n.prototype.use=function(t){return t(this),this},n.prototype.ok=function(t){if("function"!=typeof t)throw Error("Callback required");return this._okCallback=t,this},n.prototype._isResponseOK=function(t){return!!t&&(this._okCallback?this._okCallback(t):t.status>=200&&t.status<300)},n.prototype.get=function(t){return this._header[t.toLowerCase()]},n.prototype.getHeader=n.prototype.get,n.prototype.set=function(t,e){if(o(t)){for(var r in t)this.set(r,t[r]);return this}return this._header[t.toLowerCase()]=e,this.header[t]=e,this},n.prototype.unset=function(t){return delete this._header[t.toLowerCase()],delete this.header[t],this},n.prototype.field=function(t,e){if(null==t)throw new Error(".field(name, val) name can not be empty");if(this._data&&console.error(".field() can't be used if .send() is used. Please use only .send() or only .field() & .attach()"),o(t)){for(var r in t)this.field(r,t[r]);return this}if(Array.isArray(e)){for(var n in e)this.field(t,e[n]);return this}if(null==e)throw new Error(".field(name, val) val can not be empty");return"boolean"==typeof e&&(e=""+e),this._getFormData().append(t,e),this},n.prototype.abort=function(){return this._aborted||(this._aborted=!0,this.xhr&&this.xhr.abort(),this.req&&this.req.abort(),this.clearTimeout(),this.emit("abort")),this},n.prototype._auth=function(t,e,r,o){switch(r.type){case"basic":this.set("Authorization","Basic "+o(t+":"+e));break;case"auto":this.username=t,this.password=e;break;case"bearer":this.set("Authorization","Bearer "+t)}return this},n.prototype.withCredentials=function(t){return null==t&&(t=!0),this._withCredentials=t,this},n.prototype.redirects=function(t){return this._maxRedirects=t,this},n.prototype.maxResponseSize=function(t){if("number"!=typeof t)throw TypeError("Invalid argument");return this._maxResponseSize=t,this},n.prototype.toJSON=function(){return{method:this.method,url:this.url,data:this._data,headers:this._header}},n.prototype.send=function(t){var e=o(t),r=this._header["content-type"];if(this._formData&&console.error(".send() can't be used if .attach() or .field() is used. Please use only .send() or only .field() & .attach()"),e&&!this._data)Array.isArray(t)?this._data=[]:this._isHost(t)||(this._data={});else if(t&&this._data&&this._isHost(this._data))throw Error("Can't merge these send calls");if(e&&o(this._data))for(var n in t)this._data[n]=t[n];else"string"==typeof t?(r||this.type("form"),r=this._header["content-type"],this._data="application/x-www-form-urlencoded"==r?this._data?this._data+"&"+t:t:(this._data||"")+t):this._data=t;return!e||this._isHost(t)||r||this.type("json"),this},n.prototype.sortQuery=function(t){return this._sort=void 0===t||t,this},n.prototype._finalizeQueryString=function(){var t=this._query.join("&");if(t&&(this.url+=(this.url.indexOf("?")>=0?"&":"?")+t),this._query.length=0,this._sort){var e=this.url.indexOf("?");if(e>=0){var r=this.url.substring(e+1).split("&");"function"==typeof this._sort?r.sort(this._sort):r.sort(),this.url=this.url.substring(0,e)+"?"+r.join("&")}}},n.prototype._appendQueryString=function(){console.trace("Unsupported")},n.prototype._timeoutError=function(t,e,r){if(!this._aborted){var o=new Error(t+e+"ms exceeded");o.timeout=e,o.code="ECONNABORTED",o.errno=r,this.timedout=!0,this.abort(),this.callback(o)}},n.prototype._setTimeouts=function(){var t=this;this._timeout&&!this._timer&&(this._timer=setTimeout((function(){t._timeoutError("Timeout of ",t._timeout,"ETIME")}),this._timeout)),this._responseTimeout&&!this._responseTimeoutTimer&&(this._responseTimeoutTimer=setTimeout((function(){t._timeoutError("Response timeout of ",t._responseTimeout,"ETIMEDOUT")}),this._responseTimeout))}},1097:(t,e,r)=>{"use strict";var o=r(4506);function n(t){if(t)return function(t){for(var e in n.prototype)t[e]=n.prototype[e];return t}(t)}t.exports=n,n.prototype.get=function(t){return this.header[t.toLowerCase()]},n.prototype._setHeaderProperties=function(t){var e=t["content-type"]||"";this.type=o.type(e);var r=o.params(e);for(var n in r)this[n]=r[n];this.links={};try{t.link&&(this.links=o.parseLinks(t.link))}catch(t){}},n.prototype._setStatusProperties=function(t){var e=t/100|0;this.status=this.statusCode=t,this.statusType=e,this.info=1==e,this.ok=2==e,this.redirect=3==e,this.clientError=4==e,this.serverError=5==e,this.error=(4==e||5==e)&&this.toError(),this.created=201==t,this.accepted=202==t,this.noContent=204==t,this.badRequest=400==t,this.unauthorized=401==t,this.notAcceptable=406==t,this.forbidden=403==t,this.notFound=404==t,this.unprocessableEntity=422==t}},4506:(t,e)=>{"use strict";e.type=function(t){return t.split(/ *; */).shift()},e.params=function(t){return t.split(/ *; */).reduce((function(t,e){var r=e.split(/ *= */),o=r.shift(),n=r.shift();return o&&n&&(t[o]=n),t}),{})},e.parseLinks=function(t){return t.split(/ *, */).reduce((function(t,e){var r=e.split(/ *; */),o=r[0].slice(1,-1);return t[r[1].split(/ *= */)[1].slice(1,-1)]=o,t}),{})},e.cleanHeader=function(t,e){return delete t["content-type"],delete t["content-length"],delete t["transfer-encoding"],delete t.host,e&&(delete t.authorization,delete t.cookie),t}},5663:(t,e)=>{var r={millisecond:1,second:1e3,minute:6e4,hour:36e5,day:864e5};for(var o in r)"millisecond"===o?r.ms=r[o]:r[o.charAt(0)]=r[o],r[o+"s"]=r[o];function n(t){this.count=0;var e=function(t){var e=t.match(i);return e&&r[e[2]]?e.slice(1):null}(t);e&&(this.time=Number(e[0])*r[e[1]],this.type=e[1])}n.prototype.do=function(t){this.time&&(this.interval=setInterval((function(){e.count++,t.call(e)}),this.time));var e=this;return this},n.prototype.stop=function(){return this.interval&&(clearInterval(this.interval),delete this.interval),this};var i=/^\s*(\d+(?:\.\d+)?)\s*([a-z]+)\s*$/},306:function(t,e){(function(){"use strict";e.stripBOM=function(t){return"\ufeff"===t[0]?t.substring(1):t}}).call(this)},4096:function(t,e,r){(function(){"use strict";var t,o,n,i,s,a={}.hasOwnProperty;t=r(5532),o=r(8381).defaults,i=function(t){return"string"==typeof t&&(t.indexOf("&")>=0||t.indexOf(">")>=0||t.indexOf("<")>=0)},s=function(t){return"<![CDATA["+n(t)+"]]>"},n=function(t){return t.replace("]]>","]]]]><![CDATA[>")},e.Builder=function(){function e(t){var e,r,n;for(e in this.options={},r=o[.2])a.call(r,e)&&(n=r[e],this.options[e]=n);for(e in t)a.call(t,e)&&(n=t[e],this.options[e]=n)}return e.prototype.buildObject=function(e){var r,n,u,p,c,h;return r=this.options.attrkey,n=this.options.charkey,1===Object.keys(e).length&&this.options.rootName===o[.2].rootName?e=e[c=Object.keys(e)[0]]:c=this.options.rootName,h=this,u=function(t,e){var o,p,c,l,f,d;if("object"!=typeof e)h.options.cdata&&i(e)?t.raw(s(e)):t.txt(e);else if(Array.isArray(e)){for(l in e)if(a.call(e,l))for(f in p=e[l])c=p[f],t=u(t.ele(f),c).up()}else for(f in e)if(a.call(e,f))if(p=e[f],f===r){if("object"==typeof p)for(o in p)d=p[o],t=t.att(o,d)}else if(f===n)t=h.options.cdata&&i(p)?t.raw(s(p)):t.txt(p);else if(Array.isArray(p))for(l in p)a.call(p,l)&&(t="string"==typeof(c=p[l])?h.options.cdata&&i(c)?t.ele(f).raw(s(c)).up():t.ele(f,c).up():u(t.ele(f),c).up());else"object"==typeof p?t=u(t.ele(f),p).up():"string"==typeof p&&h.options.cdata&&i(p)?t=t.ele(f).raw(s(p)).up():(null==p&&(p=""),t=t.ele(f,p.toString()).up());return t},p=t.create(c,this.options.xmldec,this.options.doctype,{headless:this.options.headless,allowSurrogateChars:this.options.allowSurrogateChars}),u(p,e).end(this.options.renderOpts)},e}()}).call(this)},8381:function(t,e){(function(){e.defaults={.1:{explicitCharkey:!1,trim:!0,normalize:!0,normalizeTags:!1,attrkey:"@",charkey:"#",explicitArray:!1,ignoreAttrs:!1,mergeAttrs:!1,explicitRoot:!1,validator:null,xmlns:!1,explicitChildren:!1,childkey:"@@",charsAsChildren:!1,includeWhiteChars:!1,async:!1,strict:!0,attrNameProcessors:null,attrValueProcessors:null,tagNameProcessors:null,valueProcessors:null,emptyTag:""},.2:{explicitCharkey:!1,trim:!1,normalize:!1,normalizeTags:!1,attrkey:"$",charkey:"_",explicitArray:!0,ignoreAttrs:!1,mergeAttrs:!1,explicitRoot:!0,validator:null,xmlns:!1,explicitChildren:!1,preserveChildrenOrder:!1,childkey:"$$",charsAsChildren:!1,includeWhiteChars:!1,async:!1,strict:!0,attrNameProcessors:null,attrValueProcessors:null,tagNameProcessors:null,valueProcessors:null,rootName:"root",xmldec:{version:"1.0",encoding:"UTF-8",standalone:!0},doctype:null,renderOpts:{pretty:!0,indent:" ",newline:"\n"},headless:!1,chunkSize:1e4,emptyTag:"",cdata:!1}}}).call(this)},9082:function(t,e,r){(function(){"use strict";var t,o,n,i,s,a,u,p,c=function(t,e){return function(){return t.apply(e,arguments)}},h={}.hasOwnProperty;u=r(6099),n=r(7187),t=r(306),a=r(7526),p=r(5663).setImmediate,o=r(8381).defaults,i=function(t){return"object"==typeof t&&null!=t&&0===Object.keys(t).length},s=function(t,e,r){var o,n;for(o=0,n=t.length;o<n;o++)e=(0,t[o])(e,r);return e},e.Parser=function(r){function n(t){var r,n,i;if(this.parseStringPromise=c(this.parseStringPromise,this),this.parseString=c(this.parseString,this),this.reset=c(this.reset,this),this.assignOrPush=c(this.assignOrPush,this),this.processAsync=c(this.processAsync,this),!(this instanceof e.Parser))return new e.Parser(t);for(r in this.options={},n=o[.2])h.call(n,r)&&(i=n[r],this.options[r]=i);for(r in t)h.call(t,r)&&(i=t[r],this.options[r]=i);this.options.xmlns&&(this.options.xmlnskey=this.options.attrkey+"ns"),this.options.normalizeTags&&(this.options.tagNameProcessors||(this.options.tagNameProcessors=[]),this.options.tagNameProcessors.unshift(a.normalize)),this.reset()}return function(t,e){for(var r in e)h.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(n,r),n.prototype.processAsync=function(){var t,e;try{return this.remaining.length<=this.options.chunkSize?(t=this.remaining,this.remaining="",this.saxParser=this.saxParser.write(t),this.saxParser.close()):(t=this.remaining.substr(0,this.options.chunkSize),this.remaining=this.remaining.substr(this.options.chunkSize,this.remaining.length),this.saxParser=this.saxParser.write(t),p(this.processAsync))}catch(t){if(e=t,!this.saxParser.errThrown)return this.saxParser.errThrown=!0,this.emit(e)}},n.prototype.assignOrPush=function(t,e,r){return e in t?(t[e]instanceof Array||(t[e]=[t[e]]),t[e].push(r)):this.options.explicitArray?t[e]=[r]:t[e]=r},n.prototype.reset=function(){var t,e,r,o,n;return this.removeAllListeners(),this.saxParser=u.parser(this.options.strict,{trim:!1,normalize:!1,xmlns:this.options.xmlns}),this.saxParser.errThrown=!1,this.saxParser.onerror=(n=this,function(t){if(n.saxParser.resume(),!n.saxParser.errThrown)return n.saxParser.errThrown=!0,n.emit("error",t)}),this.saxParser.onend=function(t){return function(){if(!t.saxParser.ended)return t.saxParser.ended=!0,t.emit("end",t.resultObject)}}(this),this.saxParser.ended=!1,this.EXPLICIT_CHARKEY=this.options.explicitCharkey,this.resultObject=null,o=[],t=this.options.attrkey,e=this.options.charkey,this.saxParser.onopentag=function(r){return function(n){var i,a,u,p,c;if((u={})[e]="",!r.options.ignoreAttrs)for(i in c=n.attributes)h.call(c,i)&&(t in u||r.options.mergeAttrs||(u[t]={}),a=r.options.attrValueProcessors?s(r.options.attrValueProcessors,n.attributes[i],i):n.attributes[i],p=r.options.attrNameProcessors?s(r.options.attrNameProcessors,i):i,r.options.mergeAttrs?r.assignOrPush(u,p,a):u[t][p]=a);return u["#name"]=r.options.tagNameProcessors?s(r.options.tagNameProcessors,n.name):n.name,r.options.xmlns&&(u[r.options.xmlnskey]={uri:n.uri,local:n.local}),o.push(u)}}(this),this.saxParser.onclosetag=function(t){return function(){var r,n,a,u,p,c,l,f,d,y;if(c=o.pop(),p=c["#name"],t.options.explicitChildren&&t.options.preserveChildrenOrder||delete c["#name"],!0===c.cdata&&(r=c.cdata,delete c.cdata),d=o[o.length-1],c[e].match(/^\s*$/)&&!r?(n=c[e],delete c[e]):(t.options.trim&&(c[e]=c[e].trim()),t.options.normalize&&(c[e]=c[e].replace(/\s{2,}/g," ").trim()),c[e]=t.options.valueProcessors?s(t.options.valueProcessors,c[e],p):c[e],1===Object.keys(c).length&&e in c&&!t.EXPLICIT_CHARKEY&&(c=c[e])),i(c)&&(c=""!==t.options.emptyTag?t.options.emptyTag:n),null!=t.options.validator&&(y="/"+function(){var t,e,r;for(r=[],t=0,e=o.length;t<e;t++)u=o[t],r.push(u["#name"]);return r}().concat(p).join("/"),function(){var e;try{c=t.options.validator(y,d&&d[p],c)}catch(r){return e=r,t.emit("error",e)}}()),t.options.explicitChildren&&!t.options.mergeAttrs&&"object"==typeof c)if(t.options.preserveChildrenOrder){if(d){for(a in d[t.options.childkey]=d[t.options.childkey]||[],l={},c)h.call(c,a)&&(l[a]=c[a]);d[t.options.childkey].push(l),delete c["#name"],1===Object.keys(c).length&&e in c&&!t.EXPLICIT_CHARKEY&&(c=c[e])}}else u={},t.options.attrkey in c&&(u[t.options.attrkey]=c[t.options.attrkey],delete c[t.options.attrkey]),!t.options.charsAsChildren&&t.options.charkey in c&&(u[t.options.charkey]=c[t.options.charkey],delete c[t.options.charkey]),Object.getOwnPropertyNames(c).length>0&&(u[t.options.childkey]=c),c=u;return o.length>0?t.assignOrPush(d,p,c):(t.options.explicitRoot&&(f=c,(c={})[p]=f),t.resultObject=c,t.saxParser.ended=!0,t.emit("end",t.resultObject))}}(this),r=function(t){return function(r){var n,i;if(i=o[o.length-1])return i[e]+=r,t.options.explicitChildren&&t.options.preserveChildrenOrder&&t.options.charsAsChildren&&(t.options.includeWhiteChars||""!==r.replace(/\\n/g,"").trim())&&(i[t.options.childkey]=i[t.options.childkey]||[],(n={"#name":"__text__"})[e]=r,t.options.normalize&&(n[e]=n[e].replace(/\s{2,}/g," ").trim()),i[t.options.childkey].push(n)),i}}(this),this.saxParser.ontext=r,this.saxParser.oncdata=function(t){var e;if(e=r(t))return e.cdata=!0}},n.prototype.parseString=function(e,r){var o;null!=r&&"function"==typeof r&&(this.on("end",(function(t){return this.reset(),r(null,t)})),this.on("error",(function(t){return this.reset(),r(t)})));try{return""===(e=e.toString()).trim()?(this.emit("end",null),!0):(e=t.stripBOM(e),this.options.async?(this.remaining=e,p(this.processAsync),this.saxParser):this.saxParser.write(e).close())}catch(t){if(o=t,!this.saxParser.errThrown&&!this.saxParser.ended)return this.emit("error",o),this.saxParser.errThrown=!0;if(this.saxParser.ended)throw o}},n.prototype.parseStringPromise=function(t){return new Promise((e=this,function(r,o){return e.parseString(t,(function(t,e){return t?o(t):r(e)}))}));var e},n}(n),e.parseString=function(t,r,o){var n,i;return null!=o?("function"==typeof o&&(n=o),"object"==typeof r&&(i=r)):("function"==typeof r&&(n=r),i={}),new e.Parser(i).parseString(t,n)},e.parseStringPromise=function(t,r){var o;return"object"==typeof r&&(o=r),new e.Parser(o).parseStringPromise(t)}}).call(this)},7526:function(t,e){(function(){"use strict";var t;t=new RegExp(/(?!xmlns)^.*:/),e.normalize=function(t){return t.toLowerCase()},e.firstCharLowerCase=function(t){return t.charAt(0).toLowerCase()+t.slice(1)},e.stripPrefix=function(e){return e.replace(t,"")},e.parseNumbers=function(t){return isNaN(t)||(t=t%1==0?parseInt(t,10):parseFloat(t)),t},e.parseBooleans=function(t){return/^(?:true|false)$/i.test(t)&&(t="true"===t.toLowerCase()),t}}).call(this)},5055:function(t,e,r){(function(){"use strict";var t,o,n,i,s={}.hasOwnProperty;o=r(8381),t=r(4096),n=r(9082),i=r(7526),e.defaults=o.defaults,e.processors=i,e.ValidationError=function(t){function e(t){this.message=t}return function(t,e){for(var r in e)s.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(e,Error),e}(),e.Builder=t.Builder,e.Parser=n.Parser,e.parseString=n.parseString,e.parseStringPromise=n.parseStringPromise}).call(this)},7557:function(t){(function(){t.exports={Disconnected:1,Preceding:2,Following:4,Contains:8,ContainedBy:16,ImplementationSpecific:32}}).call(this)},9335:function(t){(function(){t.exports={Element:1,Attribute:2,Text:3,CData:4,EntityReference:5,EntityDeclaration:6,ProcessingInstruction:7,Comment:8,Document:9,DocType:10,DocumentFragment:11,NotationDeclaration:12,Declaration:201,Raw:202,AttributeDeclaration:203,ElementDeclaration:204,Dummy:205}}).call(this)},8369:function(t){(function(){var e,r,o,n,i,s,a,u=[].slice,p={}.hasOwnProperty;e=function(){var t,e,r,o,n,s;if(s=arguments[0],n=2<=arguments.length?u.call(arguments,1):[],i(Object.assign))Object.assign.apply(null,arguments);else for(t=0,r=n.length;t<r;t++)if(null!=(o=n[t]))for(e in o)p.call(o,e)&&(s[e]=o[e]);return s},i=function(t){return!!t&&"[object Function]"===Object.prototype.toString.call(t)},s=function(t){var e;return!!t&&("function"==(e=typeof t)||"object"===e)},o=function(t){return i(Array.isArray)?Array.isArray(t):"[object Array]"===Object.prototype.toString.call(t)},n=function(t){var e;if(o(t))return!t.length;for(e in t)if(p.call(t,e))return!1;return!0},a=function(t){var e,r;return s(t)&&(r=Object.getPrototypeOf(t))&&(e=r.constructor)&&"function"==typeof e&&e instanceof e&&Function.prototype.toString.call(e)===Function.prototype.toString.call(Object)},r=function(t){return i(t.valueOf)?t.valueOf():t},t.exports.assign=e,t.exports.isFunction=i,t.exports.isObject=s,t.exports.isArray=o,t.exports.isEmpty=n,t.exports.isPlainObject=a,t.exports.getValue=r}).call(this)},594:function(t){(function(){t.exports={None:0,OpenTag:1,InsideTag:2,CloseTag:3}}).call(this)},2750:function(t,e,r){(function(){var e;e=r(9335),r(2026),t.exports=function(){function t(t,r,o){if(this.parent=t,this.parent&&(this.options=this.parent.options,this.stringify=this.parent.stringify),null==r)throw new Error("Missing attribute name. "+this.debugInfo(r));this.name=this.stringify.name(r),this.value=this.stringify.attValue(o),this.type=e.Attribute,this.isId=!1,this.schemaTypeInfo=null}return Object.defineProperty(t.prototype,"nodeType",{get:function(){return this.type}}),Object.defineProperty(t.prototype,"ownerElement",{get:function(){return this.parent}}),Object.defineProperty(t.prototype,"textContent",{get:function(){return this.value},set:function(t){return this.value=t||""}}),Object.defineProperty(t.prototype,"namespaceURI",{get:function(){return""}}),Object.defineProperty(t.prototype,"prefix",{get:function(){return""}}),Object.defineProperty(t.prototype,"localName",{get:function(){return this.name}}),Object.defineProperty(t.prototype,"specified",{get:function(){return!0}}),t.prototype.clone=function(){return Object.create(this)},t.prototype.toString=function(t){return this.options.writer.attribute(this,this.options.writer.filterOptions(t))},t.prototype.debugInfo=function(t){return null==(t=t||this.name)?"parent: <"+this.parent.name+">":"attribute: {"+t+"}, parent: <"+this.parent.name+">"},t.prototype.isEqualNode=function(t){return t.namespaceURI===this.namespaceURI&&t.prefix===this.prefix&&t.localName===this.localName&&t.value===this.value},t}()}).call(this)},6170:function(t,e,r){(function(){var e,o,n={}.hasOwnProperty;e=r(9335),o=r(6488),t.exports=function(t){function r(t,o){if(r.__super__.constructor.call(this,t),null==o)throw new Error("Missing CDATA text. "+this.debugInfo());this.name="#cdata-section",this.type=e.CData,this.value=this.stringify.cdata(o)}return function(t,e){for(var r in e)n.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(r,t),r.prototype.clone=function(){return Object.create(this)},r.prototype.toString=function(t){return this.options.writer.cdata(this,this.options.writer.filterOptions(t))},r}(o)}).call(this)},6488:function(t,e,r){(function(){var e,o={}.hasOwnProperty;e=r(2026),t.exports=function(t){function e(t){e.__super__.constructor.call(this,t),this.value=""}return function(t,e){for(var r in e)o.call(e,r)&&(t[r]=e[r]);function n(){this.constructor=t}n.prototype=e.prototype,t.prototype=new n,t.__super__=e.prototype}(e,t),Object.defineProperty(e.prototype,"data",{get:function(){return this.value},set:function(t){return this.value=t||""}}),Object.defineProperty(e.prototype,"length",{get:function(){return this.value.length}}),Object.defineProperty(e.prototype,"textContent",{get:function(){return this.value},set:function(t){return this.value=t||""}}),e.prototype.clone=function(){return Object.create(this)},e.prototype.substringData=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},e.prototype.appendData=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},e.prototype.insertData=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},e.prototype.deleteData=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},e.prototype.replaceData=function(t,e,r){throw new Error("This DOM method is not implemented."+this.debugInfo())},e.prototype.isEqualNode=function(t){return!!e.__super__.isEqualNode.apply(this,arguments).isEqualNode(t)&&t.data===this.data},e}(e)}).call(this)},2096:function(t,e,r){(function(){var e,o,n={}.hasOwnProperty;e=r(9335),o=r(6488),t.exports=function(t){function r(t,o){if(r.__super__.constructor.call(this,t),null==o)throw new Error("Missing comment text. "+this.debugInfo());this.name="#comment",this.type=e.Comment,this.value=this.stringify.comment(o)}return function(t,e){for(var r in e)n.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(r,t),r.prototype.clone=function(){return Object.create(this)},r.prototype.toString=function(t){return this.options.writer.comment(this,this.options.writer.filterOptions(t))},r}(o)}).call(this)},383:function(t,e,r){(function(){var e,o;e=r(3933),o=r(6210),t.exports=function(){function t(){this.defaultParams={"canonical-form":!1,"cdata-sections":!1,comments:!1,"datatype-normalization":!1,"element-content-whitespace":!0,entities:!0,"error-handler":new e,infoset:!0,"validate-if-schema":!1,namespaces:!0,"namespace-declarations":!0,"normalize-characters":!1,"schema-location":"","schema-type":"","split-cdata-sections":!0,validate:!1,"well-formed":!0},this.params=Object.create(this.defaultParams)}return Object.defineProperty(t.prototype,"parameterNames",{get:function(){return new o(Object.keys(this.defaultParams))}}),t.prototype.getParameter=function(t){return this.params.hasOwnProperty(t)?this.params[t]:null},t.prototype.canSetParameter=function(t,e){return!0},t.prototype.setParameter=function(t,e){return null!=e?this.params[t]=e:delete this.params[t]},t}()}).call(this)},3933:function(t){(function(){t.exports=function(){function t(){}return t.prototype.handleError=function(t){throw new Error(t)},t}()}).call(this)},1770:function(t){(function(){t.exports=function(){function t(){}return t.prototype.hasFeature=function(t,e){return!0},t.prototype.createDocumentType=function(t,e,r){throw new Error("This DOM method is not implemented.")},t.prototype.createDocument=function(t,e,r){throw new Error("This DOM method is not implemented.")},t.prototype.createHTMLDocument=function(t){throw new Error("This DOM method is not implemented.")},t.prototype.getFeature=function(t,e){throw new Error("This DOM method is not implemented.")},t}()}).call(this)},6210:function(t){(function(){t.exports=function(){function t(t){this.arr=t||[]}return Object.defineProperty(t.prototype,"length",{get:function(){return this.arr.length}}),t.prototype.item=function(t){return this.arr[t]||null},t.prototype.contains=function(t){return-1!==this.arr.indexOf(t)},t}()}).call(this)},1179:function(t,e,r){(function(){var e,o,n={}.hasOwnProperty;o=r(2026),e=r(9335),t.exports=function(t){function r(t,o,n,i,s,a){if(r.__super__.constructor.call(this,t),null==o)throw new Error("Missing DTD element name. "+this.debugInfo());if(null==n)throw new Error("Missing DTD attribute name. "+this.debugInfo(o));if(!i)throw new Error("Missing DTD attribute type. "+this.debugInfo(o));if(!s)throw new Error("Missing DTD attribute default. "+this.debugInfo(o));if(0!==s.indexOf("#")&&(s="#"+s),!s.match(/^(#REQUIRED|#IMPLIED|#FIXED|#DEFAULT)$/))throw new Error("Invalid default value type; expected: #REQUIRED, #IMPLIED, #FIXED or #DEFAULT. "+this.debugInfo(o));if(a&&!s.match(/^(#FIXED|#DEFAULT)$/))throw new Error("Default value only applies to #FIXED or #DEFAULT. "+this.debugInfo(o));this.elementName=this.stringify.name(o),this.type=e.AttributeDeclaration,this.attributeName=this.stringify.name(n),this.attributeType=this.stringify.dtdAttType(i),a&&(this.defaultValue=this.stringify.dtdAttDefault(a)),this.defaultValueType=s}return function(t,e){for(var r in e)n.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(r,t),r.prototype.toString=function(t){return this.options.writer.dtdAttList(this,this.options.writer.filterOptions(t))},r}(o)}).call(this)},6347:function(t,e,r){(function(){var e,o,n={}.hasOwnProperty;o=r(2026),e=r(9335),t.exports=function(t){function r(t,o,n){if(r.__super__.constructor.call(this,t),null==o)throw new Error("Missing DTD element name. "+this.debugInfo());n||(n="(#PCDATA)"),Array.isArray(n)&&(n="("+n.join(",")+")"),this.name=this.stringify.name(o),this.type=e.ElementDeclaration,this.value=this.stringify.dtdElementValue(n)}return function(t,e){for(var r in e)n.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(r,t),r.prototype.toString=function(t){return this.options.writer.dtdElement(this,this.options.writer.filterOptions(t))},r}(o)}).call(this)},9078:function(t,e,r){(function(){var e,o,n,i={}.hasOwnProperty;n=r(8369).isObject,o=r(2026),e=r(9335),t.exports=function(t){function r(t,o,i,s){if(r.__super__.constructor.call(this,t),null==i)throw new Error("Missing DTD entity name. "+this.debugInfo(i));if(null==s)throw new Error("Missing DTD entity value. "+this.debugInfo(i));if(this.pe=!!o,this.name=this.stringify.name(i),this.type=e.EntityDeclaration,n(s)){if(!s.pubID&&!s.sysID)throw new Error("Public and/or system identifiers are required for an external entity. "+this.debugInfo(i));if(s.pubID&&!s.sysID)throw new Error("System identifier is required for a public external entity. "+this.debugInfo(i));if(this.internal=!1,null!=s.pubID&&(this.pubID=this.stringify.dtdPubID(s.pubID)),null!=s.sysID&&(this.sysID=this.stringify.dtdSysID(s.sysID)),null!=s.nData&&(this.nData=this.stringify.dtdNData(s.nData)),this.pe&&this.nData)throw new Error("Notation declaration is not allowed in a parameter entity. "+this.debugInfo(i))}else this.value=this.stringify.dtdEntityValue(s),this.internal=!0}return function(t,e){for(var r in e)i.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(r,t),Object.defineProperty(r.prototype,"publicId",{get:function(){return this.pubID}}),Object.defineProperty(r.prototype,"systemId",{get:function(){return this.sysID}}),Object.defineProperty(r.prototype,"notationName",{get:function(){return this.nData||null}}),Object.defineProperty(r.prototype,"inputEncoding",{get:function(){return null}}),Object.defineProperty(r.prototype,"xmlEncoding",{get:function(){return null}}),Object.defineProperty(r.prototype,"xmlVersion",{get:function(){return null}}),r.prototype.toString=function(t){return this.options.writer.dtdEntity(this,this.options.writer.filterOptions(t))},r}(o)}).call(this)},4777:function(t,e,r){(function(){var e,o,n={}.hasOwnProperty;o=r(2026),e=r(9335),t.exports=function(t){function r(t,o,n){if(r.__super__.constructor.call(this,t),null==o)throw new Error("Missing DTD notation name. "+this.debugInfo(o));if(!n.pubID&&!n.sysID)throw new Error("Public or system identifiers are required for an external entity. "+this.debugInfo(o));this.name=this.stringify.name(o),this.type=e.NotationDeclaration,null!=n.pubID&&(this.pubID=this.stringify.dtdPubID(n.pubID)),null!=n.sysID&&(this.sysID=this.stringify.dtdSysID(n.sysID))}return function(t,e){for(var r in e)n.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(r,t),Object.defineProperty(r.prototype,"publicId",{get:function(){return this.pubID}}),Object.defineProperty(r.prototype,"systemId",{get:function(){return this.sysID}}),r.prototype.toString=function(t){return this.options.writer.dtdNotation(this,this.options.writer.filterOptions(t))},r}(o)}).call(this)},9077:function(t,e,r){(function(){var e,o,n,i={}.hasOwnProperty;n=r(8369).isObject,o=r(2026),e=r(9335),t.exports=function(t){function r(t,o,i,s){var a;r.__super__.constructor.call(this,t),n(o)&&(o=(a=o).version,i=a.encoding,s=a.standalone),o||(o="1.0"),this.type=e.Declaration,this.version=this.stringify.xmlVersion(o),null!=i&&(this.encoding=this.stringify.xmlEncoding(i)),null!=s&&(this.standalone=this.stringify.xmlStandalone(s))}return function(t,e){for(var r in e)i.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(r,t),r.prototype.toString=function(t){return this.options.writer.declaration(this,this.options.writer.filterOptions(t))},r}(o)}).call(this)},6544:function(t,e,r){(function(){var e,o,n,i,s,a,u,p,c={}.hasOwnProperty;p=r(8369).isObject,u=r(2026),e=r(9335),o=r(1179),i=r(9078),n=r(6347),s=r(4777),a=r(663),t.exports=function(t){function r(t,o,n){var i,s,a,u,c,h;if(r.__super__.constructor.call(this,t),this.type=e.DocType,t.children)for(s=0,a=(u=t.children).length;s<a;s++)if((i=u[s]).type===e.Element){this.name=i.name;break}this.documentObject=t,p(o)&&(o=(c=o).pubID,n=c.sysID),null==n&&(n=(h=[o,n])[0],o=h[1]),null!=o&&(this.pubID=this.stringify.dtdPubID(o)),null!=n&&(this.sysID=this.stringify.dtdSysID(n))}return function(t,e){for(var r in e)c.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(r,t),Object.defineProperty(r.prototype,"entities",{get:function(){var t,r,o,n,i;for(n={},r=0,o=(i=this.children).length;r<o;r++)(t=i[r]).type!==e.EntityDeclaration||t.pe||(n[t.name]=t);return new a(n)}}),Object.defineProperty(r.prototype,"notations",{get:function(){var t,r,o,n,i;for(n={},r=0,o=(i=this.children).length;r<o;r++)(t=i[r]).type===e.NotationDeclaration&&(n[t.name]=t);return new a(n)}}),Object.defineProperty(r.prototype,"publicId",{get:function(){return this.pubID}}),Object.defineProperty(r.prototype,"systemId",{get:function(){return this.sysID}}),Object.defineProperty(r.prototype,"internalSubset",{get:function(){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),r.prototype.element=function(t,e){var r;return r=new n(this,t,e),this.children.push(r),this},r.prototype.attList=function(t,e,r,n,i){var s;return s=new o(this,t,e,r,n,i),this.children.push(s),this},r.prototype.entity=function(t,e){var r;return r=new i(this,!1,t,e),this.children.push(r),this},r.prototype.pEntity=function(t,e){var r;return r=new i(this,!0,t,e),this.children.push(r),this},r.prototype.notation=function(t,e){var r;return r=new s(this,t,e),this.children.push(r),this},r.prototype.toString=function(t){return this.options.writer.docType(this,this.options.writer.filterOptions(t))},r.prototype.ele=function(t,e){return this.element(t,e)},r.prototype.att=function(t,e,r,o,n){return this.attList(t,e,r,o,n)},r.prototype.ent=function(t,e){return this.entity(t,e)},r.prototype.pent=function(t,e){return this.pEntity(t,e)},r.prototype.not=function(t,e){return this.notation(t,e)},r.prototype.up=function(){return this.root()||this.documentObject},r.prototype.isEqualNode=function(t){return!!r.__super__.isEqualNode.apply(this,arguments).isEqualNode(t)&&t.name===this.name&&t.publicId===this.publicId&&t.systemId===this.systemId},r}(u)}).call(this)},6934:function(t,e,r){(function(){var e,o,n,i,s,a,u,p={}.hasOwnProperty;u=r(8369).isPlainObject,n=r(1770),o=r(383),i=r(2026),e=r(9335),a=r(5549),s=r(6434),t.exports=function(t){function r(t){r.__super__.constructor.call(this,null),this.name="#document",this.type=e.Document,this.documentURI=null,this.domConfig=new o,t||(t={}),t.writer||(t.writer=new s),this.options=t,this.stringify=new a(t)}return function(t,e){for(var r in e)p.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(r,t),Object.defineProperty(r.prototype,"implementation",{value:new n}),Object.defineProperty(r.prototype,"doctype",{get:function(){var t,r,o,n;for(r=0,o=(n=this.children).length;r<o;r++)if((t=n[r]).type===e.DocType)return t;return null}}),Object.defineProperty(r.prototype,"documentElement",{get:function(){return this.rootObject||null}}),Object.defineProperty(r.prototype,"inputEncoding",{get:function(){return null}}),Object.defineProperty(r.prototype,"strictErrorChecking",{get:function(){return!1}}),Object.defineProperty(r.prototype,"xmlEncoding",{get:function(){return 0!==this.children.length&&this.children[0].type===e.Declaration?this.children[0].encoding:null}}),Object.defineProperty(r.prototype,"xmlStandalone",{get:function(){return 0!==this.children.length&&this.children[0].type===e.Declaration&&"yes"===this.children[0].standalone}}),Object.defineProperty(r.prototype,"xmlVersion",{get:function(){return 0!==this.children.length&&this.children[0].type===e.Declaration?this.children[0].version:"1.0"}}),Object.defineProperty(r.prototype,"URL",{get:function(){return this.documentURI}}),Object.defineProperty(r.prototype,"origin",{get:function(){return null}}),Object.defineProperty(r.prototype,"compatMode",{get:function(){return null}}),Object.defineProperty(r.prototype,"characterSet",{get:function(){return null}}),Object.defineProperty(r.prototype,"contentType",{get:function(){return null}}),r.prototype.end=function(t){var e;return e={},t?u(t)&&(e=t,t=this.options.writer):t=this.options.writer,t.document(this,t.filterOptions(e))},r.prototype.toString=function(t){return this.options.writer.document(this,this.options.writer.filterOptions(t))},r.prototype.createElement=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.createDocumentFragment=function(){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.createTextNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.createComment=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.createCDATASection=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.createProcessingInstruction=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.createAttribute=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.createEntityReference=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.getElementsByTagName=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.importNode=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.createElementNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.createAttributeNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.getElementsByTagNameNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.getElementById=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.adoptNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.normalizeDocument=function(){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.renameNode=function(t,e,r){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.getElementsByClassName=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.createEvent=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.createRange=function(){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.createNodeIterator=function(t,e,r){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.createTreeWalker=function(t,e,r){throw new Error("This DOM method is not implemented."+this.debugInfo())},r}(i)}).call(this)},9227:function(t,e,r){(function(){var e,o,n,i,s,a,u,p,c,h,l,f,d,y,g,m,_,w,T,b,E,v,O,I={}.hasOwnProperty;O=r(8369),E=O.isObject,b=O.isFunction,v=O.isPlainObject,T=O.getValue,e=r(9335),f=r(6934),d=r(2161),i=r(6170),s=r(2096),g=r(9406),w=r(3595),y=r(9181),h=r(9077),l=r(6544),a=r(1179),p=r(9078),u=r(6347),c=r(4777),n=r(2750),_=r(5549),m=r(6434),o=r(594),t.exports=function(){function t(t,r,o){var n;this.name="?xml",this.type=e.Document,t||(t={}),n={},t.writer?v(t.writer)&&(n=t.writer,t.writer=new m):t.writer=new m,this.options=t,this.writer=t.writer,this.writerOptions=this.writer.filterOptions(n),this.stringify=new _(t),this.onDataCallback=r||function(){},this.onEndCallback=o||function(){},this.currentNode=null,this.currentLevel=-1,this.openTags={},this.documentStarted=!1,this.documentCompleted=!1,this.root=null}return t.prototype.createChildNode=function(t){var r,o,n,i,s,a,u,p;switch(t.type){case e.CData:this.cdata(t.value);break;case e.Comment:this.comment(t.value);break;case e.Element:for(o in n={},u=t.attribs)I.call(u,o)&&(r=u[o],n[o]=r.value);this.node(t.name,n);break;case e.Dummy:this.dummy();break;case e.Raw:this.raw(t.value);break;case e.Text:this.text(t.value);break;case e.ProcessingInstruction:this.instruction(t.target,t.value);break;default:throw new Error("This XML node type is not supported in a JS object: "+t.constructor.name)}for(s=0,a=(p=t.children).length;s<a;s++)i=p[s],this.createChildNode(i),i.type===e.Element&&this.up();return this},t.prototype.dummy=function(){return this},t.prototype.node=function(t,e,r){var o;if(null==t)throw new Error("Missing node name.");if(this.root&&-1===this.currentLevel)throw new Error("Document can only have one root node. "+this.debugInfo(t));return this.openCurrent(),t=T(t),null==e&&(e={}),e=T(e),E(e)||(r=(o=[e,r])[0],e=o[1]),this.currentNode=new d(this,t,e),this.currentNode.children=!1,this.currentLevel++,this.openTags[this.currentLevel]=this.currentNode,null!=r&&this.text(r),this},t.prototype.element=function(t,r,o){var n,i,s,a,u,p;if(this.currentNode&&this.currentNode.type===e.DocType)this.dtdElement.apply(this,arguments);else if(Array.isArray(t)||E(t)||b(t))for(a=this.options.noValidation,this.options.noValidation=!0,(p=new f(this.options).element("TEMP_ROOT")).element(t),this.options.noValidation=a,i=0,s=(u=p.children).length;i<s;i++)n=u[i],this.createChildNode(n),n.type===e.Element&&this.up();else this.node(t,r,o);return this},t.prototype.attribute=function(t,e){var r,o;if(!this.currentNode||this.currentNode.children)throw new Error("att() can only be used immediately after an ele() call in callback mode. "+this.debugInfo(t));if(null!=t&&(t=T(t)),E(t))for(r in t)I.call(t,r)&&(o=t[r],this.attribute(r,o));else b(e)&&(e=e.apply()),this.options.keepNullAttributes&&null==e?this.currentNode.attribs[t]=new n(this,t,""):null!=e&&(this.currentNode.attribs[t]=new n(this,t,e));return this},t.prototype.text=function(t){var e;return this.openCurrent(),e=new w(this,t),this.onData(this.writer.text(e,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.cdata=function(t){var e;return this.openCurrent(),e=new i(this,t),this.onData(this.writer.cdata(e,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.comment=function(t){var e;return this.openCurrent(),e=new s(this,t),this.onData(this.writer.comment(e,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.raw=function(t){var e;return this.openCurrent(),e=new g(this,t),this.onData(this.writer.raw(e,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.instruction=function(t,e){var r,o,n,i,s;if(this.openCurrent(),null!=t&&(t=T(t)),null!=e&&(e=T(e)),Array.isArray(t))for(r=0,i=t.length;r<i;r++)o=t[r],this.instruction(o);else if(E(t))for(o in t)I.call(t,o)&&(n=t[o],this.instruction(o,n));else b(e)&&(e=e.apply()),s=new y(this,t,e),this.onData(this.writer.processingInstruction(s,this.writerOptions,this.currentLevel+1),this.currentLevel+1);return this},t.prototype.declaration=function(t,e,r){var o;if(this.openCurrent(),this.documentStarted)throw new Error("declaration() must be the first node.");return o=new h(this,t,e,r),this.onData(this.writer.declaration(o,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.doctype=function(t,e,r){if(this.openCurrent(),null==t)throw new Error("Missing root node name.");if(this.root)throw new Error("dtd() must come before the root node.");return this.currentNode=new l(this,e,r),this.currentNode.rootNodeName=t,this.currentNode.children=!1,this.currentLevel++,this.openTags[this.currentLevel]=this.currentNode,this},t.prototype.dtdElement=function(t,e){var r;return this.openCurrent(),r=new u(this,t,e),this.onData(this.writer.dtdElement(r,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.attList=function(t,e,r,o,n){var i;return this.openCurrent(),i=new a(this,t,e,r,o,n),this.onData(this.writer.dtdAttList(i,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.entity=function(t,e){var r;return this.openCurrent(),r=new p(this,!1,t,e),this.onData(this.writer.dtdEntity(r,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.pEntity=function(t,e){var r;return this.openCurrent(),r=new p(this,!0,t,e),this.onData(this.writer.dtdEntity(r,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.notation=function(t,e){var r;return this.openCurrent(),r=new c(this,t,e),this.onData(this.writer.dtdNotation(r,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.up=function(){if(this.currentLevel<0)throw new Error("The document node has no parent.");return this.currentNode?(this.currentNode.children?this.closeNode(this.currentNode):this.openNode(this.currentNode),this.currentNode=null):this.closeNode(this.openTags[this.currentLevel]),delete this.openTags[this.currentLevel],this.currentLevel--,this},t.prototype.end=function(){for(;this.currentLevel>=0;)this.up();return this.onEnd()},t.prototype.openCurrent=function(){if(this.currentNode)return this.currentNode.children=!0,this.openNode(this.currentNode)},t.prototype.openNode=function(t){var r,n,i,s;if(!t.isOpen){if(this.root||0!==this.currentLevel||t.type!==e.Element||(this.root=t),n="",t.type===e.Element){for(i in this.writerOptions.state=o.OpenTag,n=this.writer.indent(t,this.writerOptions,this.currentLevel)+"<"+t.name,s=t.attribs)I.call(s,i)&&(r=s[i],n+=this.writer.attribute(r,this.writerOptions,this.currentLevel));n+=(t.children?">":"/>")+this.writer.endline(t,this.writerOptions,this.currentLevel),this.writerOptions.state=o.InsideTag}else this.writerOptions.state=o.OpenTag,n=this.writer.indent(t,this.writerOptions,this.currentLevel)+"<!DOCTYPE "+t.rootNodeName,t.pubID&&t.sysID?n+=' PUBLIC "'+t.pubID+'" "'+t.sysID+'"':t.sysID&&(n+=' SYSTEM "'+t.sysID+'"'),t.children?(n+=" [",this.writerOptions.state=o.InsideTag):(this.writerOptions.state=o.CloseTag,n+=">"),n+=this.writer.endline(t,this.writerOptions,this.currentLevel);return this.onData(n,this.currentLevel),t.isOpen=!0}},t.prototype.closeNode=function(t){var r;if(!t.isClosed)return"",this.writerOptions.state=o.CloseTag,r=t.type===e.Element?this.writer.indent(t,this.writerOptions,this.currentLevel)+"</"+t.name+">"+this.writer.endline(t,this.writerOptions,this.currentLevel):this.writer.indent(t,this.writerOptions,this.currentLevel)+"]>"+this.writer.endline(t,this.writerOptions,this.currentLevel),this.writerOptions.state=o.None,this.onData(r,this.currentLevel),t.isClosed=!0},t.prototype.onData=function(t,e){return this.documentStarted=!0,this.onDataCallback(t,e+1)},t.prototype.onEnd=function(){return this.documentCompleted=!0,this.onEndCallback()},t.prototype.debugInfo=function(t){return null==t?"":"node: <"+t+">"},t.prototype.ele=function(){return this.element.apply(this,arguments)},t.prototype.nod=function(t,e,r){return this.node(t,e,r)},t.prototype.txt=function(t){return this.text(t)},t.prototype.dat=function(t){return this.cdata(t)},t.prototype.com=function(t){return this.comment(t)},t.prototype.ins=function(t,e){return this.instruction(t,e)},t.prototype.dec=function(t,e,r){return this.declaration(t,e,r)},t.prototype.dtd=function(t,e,r){return this.doctype(t,e,r)},t.prototype.e=function(t,e,r){return this.element(t,e,r)},t.prototype.n=function(t,e,r){return this.node(t,e,r)},t.prototype.t=function(t){return this.text(t)},t.prototype.d=function(t){return this.cdata(t)},t.prototype.c=function(t){return this.comment(t)},t.prototype.r=function(t){return this.raw(t)},t.prototype.i=function(t,e){return this.instruction(t,e)},t.prototype.att=function(){return this.currentNode&&this.currentNode.type===e.DocType?this.attList.apply(this,arguments):this.attribute.apply(this,arguments)},t.prototype.a=function(){return this.currentNode&&this.currentNode.type===e.DocType?this.attList.apply(this,arguments):this.attribute.apply(this,arguments)},t.prototype.ent=function(t,e){return this.entity(t,e)},t.prototype.pent=function(t,e){return this.pEntity(t,e)},t.prototype.not=function(t,e){return this.notation(t,e)},t}()}).call(this)},8833:function(t,e,r){(function(){var e,o,n={}.hasOwnProperty;o=r(2026),e=r(9335),t.exports=function(t){function r(t){r.__super__.constructor.call(this,t),this.type=e.Dummy}return function(t,e){for(var r in e)n.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(r,t),r.prototype.clone=function(){return Object.create(this)},r.prototype.toString=function(t){return""},r}(o)}).call(this)},2161:function(t,e,r){(function(){var e,o,n,i,s,a,u,p,c={}.hasOwnProperty;p=r(8369),u=p.isObject,a=p.isFunction,s=p.getValue,i=r(2026),e=r(9335),o=r(2750),n=r(663),t.exports=function(t){function r(t,o,n){var i,s,a,u;if(r.__super__.constructor.call(this,t),null==o)throw new Error("Missing element name. "+this.debugInfo());if(this.name=this.stringify.name(o),this.type=e.Element,this.attribs={},this.schemaTypeInfo=null,null!=n&&this.attribute(n),t.type===e.Document&&(this.isRoot=!0,this.documentObject=t,t.rootObject=this,t.children))for(s=0,a=(u=t.children).length;s<a;s++)if((i=u[s]).type===e.DocType){i.name=this.name;break}}return function(t,e){for(var r in e)c.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(r,t),Object.defineProperty(r.prototype,"tagName",{get:function(){return this.name}}),Object.defineProperty(r.prototype,"namespaceURI",{get:function(){return""}}),Object.defineProperty(r.prototype,"prefix",{get:function(){return""}}),Object.defineProperty(r.prototype,"localName",{get:function(){return this.name}}),Object.defineProperty(r.prototype,"id",{get:function(){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),Object.defineProperty(r.prototype,"className",{get:function(){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),Object.defineProperty(r.prototype,"classList",{get:function(){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),Object.defineProperty(r.prototype,"attributes",{get:function(){return this.attributeMap&&this.attributeMap.nodes||(this.attributeMap=new n(this.attribs)),this.attributeMap}}),r.prototype.clone=function(){var t,e,r,o;for(e in(r=Object.create(this)).isRoot&&(r.documentObject=null),r.attribs={},o=this.attribs)c.call(o,e)&&(t=o[e],r.attribs[e]=t.clone());return r.children=[],this.children.forEach((function(t){var e;return(e=t.clone()).parent=r,r.children.push(e)})),r},r.prototype.attribute=function(t,e){var r,n;if(null!=t&&(t=s(t)),u(t))for(r in t)c.call(t,r)&&(n=t[r],this.attribute(r,n));else a(e)&&(e=e.apply()),this.options.keepNullAttributes&&null==e?this.attribs[t]=new o(this,t,""):null!=e&&(this.attribs[t]=new o(this,t,e));return this},r.prototype.removeAttribute=function(t){var e,r,o;if(null==t)throw new Error("Missing attribute name. "+this.debugInfo());if(t=s(t),Array.isArray(t))for(r=0,o=t.length;r<o;r++)e=t[r],delete this.attribs[e];else delete this.attribs[t];return this},r.prototype.toString=function(t){return this.options.writer.element(this,this.options.writer.filterOptions(t))},r.prototype.att=function(t,e){return this.attribute(t,e)},r.prototype.a=function(t,e){return this.attribute(t,e)},r.prototype.getAttribute=function(t){return this.attribs.hasOwnProperty(t)?this.attribs[t].value:null},r.prototype.setAttribute=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.getAttributeNode=function(t){return this.attribs.hasOwnProperty(t)?this.attribs[t]:null},r.prototype.setAttributeNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.removeAttributeNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.getElementsByTagName=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.getAttributeNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.setAttributeNS=function(t,e,r){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.removeAttributeNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.getAttributeNodeNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.setAttributeNodeNS=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.getElementsByTagNameNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.hasAttribute=function(t){return this.attribs.hasOwnProperty(t)},r.prototype.hasAttributeNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.setIdAttribute=function(t,e){return this.attribs.hasOwnProperty(t)?this.attribs[t].isId:e},r.prototype.setIdAttributeNS=function(t,e,r){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.setIdAttributeNode=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.getElementsByTagName=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.getElementsByTagNameNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.getElementsByClassName=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.isEqualNode=function(t){var e,o,n;if(!r.__super__.isEqualNode.apply(this,arguments).isEqualNode(t))return!1;if(t.namespaceURI!==this.namespaceURI)return!1;if(t.prefix!==this.prefix)return!1;if(t.localName!==this.localName)return!1;if(t.attribs.length!==this.attribs.length)return!1;for(e=o=0,n=this.attribs.length-1;0<=n?o<=n:o>=n;e=0<=n?++o:--o)if(!this.attribs[e].isEqualNode(t.attribs[e]))return!1;return!0},r}(i)}).call(this)},663:function(t){(function(){t.exports=function(){function t(t){this.nodes=t}return Object.defineProperty(t.prototype,"length",{get:function(){return Object.keys(this.nodes).length||0}}),t.prototype.clone=function(){return this.nodes=null},t.prototype.getNamedItem=function(t){return this.nodes[t]},t.prototype.setNamedItem=function(t){var e;return e=this.nodes[t.nodeName],this.nodes[t.nodeName]=t,e||null},t.prototype.removeNamedItem=function(t){var e;return e=this.nodes[t],delete this.nodes[t],e||null},t.prototype.item=function(t){return this.nodes[Object.keys(this.nodes)[t]]||null},t.prototype.getNamedItemNS=function(t,e){throw new Error("This DOM method is not implemented.")},t.prototype.setNamedItemNS=function(t){throw new Error("This DOM method is not implemented.")},t.prototype.removeNamedItemNS=function(t,e){throw new Error("This DOM method is not implemented.")},t}()}).call(this)},2026:function(t,e,r){(function(){var e,o,n,i,s,a,u,p,c,h,l,f,d,y,g,m,_,w={}.hasOwnProperty;_=r(8369),m=_.isObject,g=_.isFunction,y=_.isEmpty,d=_.getValue,p=null,n=null,i=null,s=null,a=null,l=null,f=null,h=null,u=null,o=null,c=null,e=null,t.exports=function(){function t(t){this.parent=t,this.parent&&(this.options=this.parent.options,this.stringify=this.parent.stringify),this.value=null,this.children=[],this.baseURI=null,p||(p=r(2161),n=r(6170),i=r(2096),s=r(9077),a=r(6544),l=r(9406),f=r(3595),h=r(9181),u=r(8833),o=r(9335),c=r(2390),r(663),e=r(7557))}return Object.defineProperty(t.prototype,"nodeName",{get:function(){return this.name}}),Object.defineProperty(t.prototype,"nodeType",{get:function(){return this.type}}),Object.defineProperty(t.prototype,"nodeValue",{get:function(){return this.value}}),Object.defineProperty(t.prototype,"parentNode",{get:function(){return this.parent}}),Object.defineProperty(t.prototype,"childNodes",{get:function(){return this.childNodeList&&this.childNodeList.nodes||(this.childNodeList=new c(this.children)),this.childNodeList}}),Object.defineProperty(t.prototype,"firstChild",{get:function(){return this.children[0]||null}}),Object.defineProperty(t.prototype,"lastChild",{get:function(){return this.children[this.children.length-1]||null}}),Object.defineProperty(t.prototype,"previousSibling",{get:function(){var t;return t=this.parent.children.indexOf(this),this.parent.children[t-1]||null}}),Object.defineProperty(t.prototype,"nextSibling",{get:function(){var t;return t=this.parent.children.indexOf(this),this.parent.children[t+1]||null}}),Object.defineProperty(t.prototype,"ownerDocument",{get:function(){return this.document()||null}}),Object.defineProperty(t.prototype,"textContent",{get:function(){var t,e,r,n,i;if(this.nodeType===o.Element||this.nodeType===o.DocumentFragment){for(i="",e=0,r=(n=this.children).length;e<r;e++)(t=n[e]).textContent&&(i+=t.textContent);return i}return null},set:function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),t.prototype.setParent=function(t){var e,r,o,n,i;for(this.parent=t,t&&(this.options=t.options,this.stringify=t.stringify),i=[],r=0,o=(n=this.children).length;r<o;r++)e=n[r],i.push(e.setParent(this));return i},t.prototype.element=function(t,e,r){var o,n,i,s,a,u,p,c,h,l,f;if(u=null,null===e&&null==r&&(e=(h=[{},null])[0],r=h[1]),null==e&&(e={}),e=d(e),m(e)||(r=(l=[e,r])[0],e=l[1]),null!=t&&(t=d(t)),Array.isArray(t))for(i=0,p=t.length;i<p;i++)n=t[i],u=this.element(n);else if(g(t))u=this.element(t.apply());else if(m(t)){for(a in t)if(w.call(t,a))if(f=t[a],g(f)&&(f=f.apply()),!this.options.ignoreDecorators&&this.stringify.convertAttKey&&0===a.indexOf(this.stringify.convertAttKey))u=this.attribute(a.substr(this.stringify.convertAttKey.length),f);else if(!this.options.separateArrayItems&&Array.isArray(f)&&y(f))u=this.dummy();else if(m(f)&&y(f))u=this.element(a);else if(this.options.keepNullNodes||null!=f)if(!this.options.separateArrayItems&&Array.isArray(f))for(s=0,c=f.length;s<c;s++)n=f[s],(o={})[a]=n,u=this.element(o);else m(f)?!this.options.ignoreDecorators&&this.stringify.convertTextKey&&0===a.indexOf(this.stringify.convertTextKey)?u=this.element(f):(u=this.element(a)).element(f):u=this.element(a,f);else u=this.dummy()}else u=this.options.keepNullNodes||null!==r?!this.options.ignoreDecorators&&this.stringify.convertTextKey&&0===t.indexOf(this.stringify.convertTextKey)?this.text(r):!this.options.ignoreDecorators&&this.stringify.convertCDataKey&&0===t.indexOf(this.stringify.convertCDataKey)?this.cdata(r):!this.options.ignoreDecorators&&this.stringify.convertCommentKey&&0===t.indexOf(this.stringify.convertCommentKey)?this.comment(r):!this.options.ignoreDecorators&&this.stringify.convertRawKey&&0===t.indexOf(this.stringify.convertRawKey)?this.raw(r):!this.options.ignoreDecorators&&this.stringify.convertPIKey&&0===t.indexOf(this.stringify.convertPIKey)?this.instruction(t.substr(this.stringify.convertPIKey.length),r):this.node(t,e,r):this.dummy();if(null==u)throw new Error("Could not create any elements with: "+t+". "+this.debugInfo());return u},t.prototype.insertBefore=function(t,e,r){var o,n,i,s,a;if(null!=t?t.type:void 0)return s=e,(i=t).setParent(this),s?(n=children.indexOf(s),a=children.splice(n),children.push(i),Array.prototype.push.apply(children,a)):children.push(i),i;if(this.isRoot)throw new Error("Cannot insert elements at root level. "+this.debugInfo(t));return n=this.parent.children.indexOf(this),a=this.parent.children.splice(n),o=this.parent.element(t,e,r),Array.prototype.push.apply(this.parent.children,a),o},t.prototype.insertAfter=function(t,e,r){var o,n,i;if(this.isRoot)throw new Error("Cannot insert elements at root level. "+this.debugInfo(t));return n=this.parent.children.indexOf(this),i=this.parent.children.splice(n+1),o=this.parent.element(t,e,r),Array.prototype.push.apply(this.parent.children,i),o},t.prototype.remove=function(){var t;if(this.isRoot)throw new Error("Cannot remove the root element. "+this.debugInfo());return t=this.parent.children.indexOf(this),[].splice.apply(this.parent.children,[t,t-t+1].concat([])),this.parent},t.prototype.node=function(t,e,r){var o,n;return null!=t&&(t=d(t)),e||(e={}),e=d(e),m(e)||(r=(n=[e,r])[0],e=n[1]),o=new p(this,t,e),null!=r&&o.text(r),this.children.push(o),o},t.prototype.text=function(t){var e;return m(t)&&this.element(t),e=new f(this,t),this.children.push(e),this},t.prototype.cdata=function(t){var e;return e=new n(this,t),this.children.push(e),this},t.prototype.comment=function(t){var e;return e=new i(this,t),this.children.push(e),this},t.prototype.commentBefore=function(t){var e,r;return e=this.parent.children.indexOf(this),r=this.parent.children.splice(e),this.parent.comment(t),Array.prototype.push.apply(this.parent.children,r),this},t.prototype.commentAfter=function(t){var e,r;return e=this.parent.children.indexOf(this),r=this.parent.children.splice(e+1),this.parent.comment(t),Array.prototype.push.apply(this.parent.children,r),this},t.prototype.raw=function(t){var e;return e=new l(this,t),this.children.push(e),this},t.prototype.dummy=function(){return new u(this)},t.prototype.instruction=function(t,e){var r,o,n,i,s;if(null!=t&&(t=d(t)),null!=e&&(e=d(e)),Array.isArray(t))for(i=0,s=t.length;i<s;i++)r=t[i],this.instruction(r);else if(m(t))for(r in t)w.call(t,r)&&(o=t[r],this.instruction(r,o));else g(e)&&(e=e.apply()),n=new h(this,t,e),this.children.push(n);return this},t.prototype.instructionBefore=function(t,e){var r,o;return r=this.parent.children.indexOf(this),o=this.parent.children.splice(r),this.parent.instruction(t,e),Array.prototype.push.apply(this.parent.children,o),this},t.prototype.instructionAfter=function(t,e){var r,o;return r=this.parent.children.indexOf(this),o=this.parent.children.splice(r+1),this.parent.instruction(t,e),Array.prototype.push.apply(this.parent.children,o),this},t.prototype.declaration=function(t,e,r){var n,i;return n=this.document(),i=new s(n,t,e,r),0===n.children.length?n.children.unshift(i):n.children[0].type===o.Declaration?n.children[0]=i:n.children.unshift(i),n.root()||n},t.prototype.dtd=function(t,e){var r,n,i,s,u,p,c,h,l;for(r=this.document(),n=new a(r,t,e),i=s=0,p=(h=r.children).length;s<p;i=++s)if(h[i].type===o.DocType)return r.children[i]=n,n;for(i=u=0,c=(l=r.children).length;u<c;i=++u)if(l[i].isRoot)return r.children.splice(i,0,n),n;return r.children.push(n),n},t.prototype.up=function(){if(this.isRoot)throw new Error("The root node has no parent. Use doc() if you need to get the document object.");return this.parent},t.prototype.root=function(){var t;for(t=this;t;){if(t.type===o.Document)return t.rootObject;if(t.isRoot)return t;t=t.parent}},t.prototype.document=function(){var t;for(t=this;t;){if(t.type===o.Document)return t;t=t.parent}},t.prototype.end=function(t){return this.document().end(t)},t.prototype.prev=function(){var t;if((t=this.parent.children.indexOf(this))<1)throw new Error("Already at the first node. "+this.debugInfo());return this.parent.children[t-1]},t.prototype.next=function(){var t;if(-1===(t=this.parent.children.indexOf(this))||t===this.parent.children.length-1)throw new Error("Already at the last node. "+this.debugInfo());return this.parent.children[t+1]},t.prototype.importDocument=function(t){var e;return(e=t.root().clone()).parent=this,e.isRoot=!1,this.children.push(e),this},t.prototype.debugInfo=function(t){var e,r;return null!=(t=t||this.name)||(null!=(e=this.parent)?e.name:void 0)?null==t?"parent: <"+this.parent.name+">":(null!=(r=this.parent)?r.name:void 0)?"node: <"+t+">, parent: <"+this.parent.name+">":"node: <"+t+">":""},t.prototype.ele=function(t,e,r){return this.element(t,e,r)},t.prototype.nod=function(t,e,r){return this.node(t,e,r)},t.prototype.txt=function(t){return this.text(t)},t.prototype.dat=function(t){return this.cdata(t)},t.prototype.com=function(t){return this.comment(t)},t.prototype.ins=function(t,e){return this.instruction(t,e)},t.prototype.doc=function(){return this.document()},t.prototype.dec=function(t,e,r){return this.declaration(t,e,r)},t.prototype.e=function(t,e,r){return this.element(t,e,r)},t.prototype.n=function(t,e,r){return this.node(t,e,r)},t.prototype.t=function(t){return this.text(t)},t.prototype.d=function(t){return this.cdata(t)},t.prototype.c=function(t){return this.comment(t)},t.prototype.r=function(t){return this.raw(t)},t.prototype.i=function(t,e){return this.instruction(t,e)},t.prototype.u=function(){return this.up()},t.prototype.importXMLBuilder=function(t){return this.importDocument(t)},t.prototype.replaceChild=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.removeChild=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.appendChild=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.hasChildNodes=function(){return 0!==this.children.length},t.prototype.cloneNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.normalize=function(){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.isSupported=function(t,e){return!0},t.prototype.hasAttributes=function(){return 0!==this.attribs.length},t.prototype.compareDocumentPosition=function(t){var r,o;return(r=this)===t?0:this.document()!==t.document()?(o=e.Disconnected|e.ImplementationSpecific,Math.random()<.5?o|=e.Preceding:o|=e.Following,o):r.isAncestor(t)?e.Contains|e.Preceding:r.isDescendant(t)?e.Contains|e.Following:r.isPreceding(t)?e.Preceding:e.Following},t.prototype.isSameNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.lookupPrefix=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.isDefaultNamespace=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.lookupNamespaceURI=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.isEqualNode=function(t){var e,r,o;if(t.nodeType!==this.nodeType)return!1;if(t.children.length!==this.children.length)return!1;for(e=r=0,o=this.children.length-1;0<=o?r<=o:r>=o;e=0<=o?++r:--r)if(!this.children[e].isEqualNode(t.children[e]))return!1;return!0},t.prototype.getFeature=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.setUserData=function(t,e,r){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.getUserData=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.contains=function(t){return!!t&&(t===this||this.isDescendant(t))},t.prototype.isDescendant=function(t){var e,r,o,n;for(r=0,o=(n=this.children).length;r<o;r++){if(t===(e=n[r]))return!0;if(e.isDescendant(t))return!0}return!1},t.prototype.isAncestor=function(t){return t.isDescendant(this)},t.prototype.isPreceding=function(t){var e,r;return e=this.treePosition(t),r=this.treePosition(this),-1!==e&&-1!==r&&e<r},t.prototype.isFollowing=function(t){var e,r;return e=this.treePosition(t),r=this.treePosition(this),-1!==e&&-1!==r&&e>r},t.prototype.treePosition=function(t){var e,r;return r=0,e=!1,this.foreachTreeNode(this.document(),(function(o){if(r++,!e&&o===t)return e=!0})),e?r:-1},t.prototype.foreachTreeNode=function(t,e){var r,o,n,i,s;for(t||(t=this.document()),o=0,n=(i=t.children).length;o<n;o++){if(s=e(r=i[o]))return s;if(s=this.foreachTreeNode(r,e))return s}},t}()}).call(this)},2390:function(t){(function(){t.exports=function(){function t(t){this.nodes=t}return Object.defineProperty(t.prototype,"length",{get:function(){return this.nodes.length||0}}),t.prototype.clone=function(){return this.nodes=null},t.prototype.item=function(t){return this.nodes[t]||null},t}()}).call(this)},9181:function(t,e,r){(function(){var e,o,n={}.hasOwnProperty;e=r(9335),o=r(6488),t.exports=function(t){function r(t,o,n){if(r.__super__.constructor.call(this,t),null==o)throw new Error("Missing instruction target. "+this.debugInfo());this.type=e.ProcessingInstruction,this.target=this.stringify.insTarget(o),this.name=this.target,n&&(this.value=this.stringify.insValue(n))}return function(t,e){for(var r in e)n.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(r,t),r.prototype.clone=function(){return Object.create(this)},r.prototype.toString=function(t){return this.options.writer.processingInstruction(this,this.options.writer.filterOptions(t))},r.prototype.isEqualNode=function(t){return!!r.__super__.isEqualNode.apply(this,arguments).isEqualNode(t)&&t.target===this.target},r}(o)}).call(this)},9406:function(t,e,r){(function(){var e,o,n={}.hasOwnProperty;e=r(9335),o=r(2026),t.exports=function(t){function r(t,o){if(r.__super__.constructor.call(this,t),null==o)throw new Error("Missing raw text. "+this.debugInfo());this.type=e.Raw,this.value=this.stringify.raw(o)}return function(t,e){for(var r in e)n.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(r,t),r.prototype.clone=function(){return Object.create(this)},r.prototype.toString=function(t){return this.options.writer.raw(this,this.options.writer.filterOptions(t))},r}(o)}).call(this)},1996:function(t,e,r){(function(){var e,o,n,i={}.hasOwnProperty;e=r(9335),n=r(751),o=r(594),t.exports=function(t){function r(t,e){this.stream=t,r.__super__.constructor.call(this,e)}return function(t,e){for(var r in e)i.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(r,t),r.prototype.endline=function(t,e,n){return t.isLastRootNode&&e.state===o.CloseTag?"":r.__super__.endline.call(this,t,e,n)},r.prototype.document=function(t,e){var r,o,n,i,s,a,u,p,c;for(o=n=0,s=(u=t.children).length;n<s;o=++n)(r=u[o]).isLastRootNode=o===t.children.length-1;for(e=this.filterOptions(e),c=[],i=0,a=(p=t.children).length;i<a;i++)r=p[i],c.push(this.writeChildNode(r,e,0));return c},r.prototype.attribute=function(t,e,o){return this.stream.write(r.__super__.attribute.call(this,t,e,o))},r.prototype.cdata=function(t,e,o){return this.stream.write(r.__super__.cdata.call(this,t,e,o))},r.prototype.comment=function(t,e,o){return this.stream.write(r.__super__.comment.call(this,t,e,o))},r.prototype.declaration=function(t,e,o){return this.stream.write(r.__super__.declaration.call(this,t,e,o))},r.prototype.docType=function(t,e,r){var n,i,s,a;if(r||(r=0),this.openNode(t,e,r),e.state=o.OpenTag,this.stream.write(this.indent(t,e,r)),this.stream.write("<!DOCTYPE "+t.root().name),t.pubID&&t.sysID?this.stream.write(' PUBLIC "'+t.pubID+'" "'+t.sysID+'"'):t.sysID&&this.stream.write(' SYSTEM "'+t.sysID+'"'),t.children.length>0){for(this.stream.write(" ["),this.stream.write(this.endline(t,e,r)),e.state=o.InsideTag,i=0,s=(a=t.children).length;i<s;i++)n=a[i],this.writeChildNode(n,e,r+1);e.state=o.CloseTag,this.stream.write("]")}return e.state=o.CloseTag,this.stream.write(e.spaceBeforeSlash+">"),this.stream.write(this.endline(t,e,r)),e.state=o.None,this.closeNode(t,e,r)},r.prototype.element=function(t,r,n){var s,a,u,p,c,h,l,f,d;for(l in n||(n=0),this.openNode(t,r,n),r.state=o.OpenTag,this.stream.write(this.indent(t,r,n)+"<"+t.name),f=t.attribs)i.call(f,l)&&(s=f[l],this.attribute(s,r,n));if(p=0===(u=t.children.length)?null:t.children[0],0===u||t.children.every((function(t){return(t.type===e.Text||t.type===e.Raw)&&""===t.value})))r.allowEmpty?(this.stream.write(">"),r.state=o.CloseTag,this.stream.write("</"+t.name+">")):(r.state=o.CloseTag,this.stream.write(r.spaceBeforeSlash+"/>"));else if(!r.pretty||1!==u||p.type!==e.Text&&p.type!==e.Raw||null==p.value){for(this.stream.write(">"+this.endline(t,r,n)),r.state=o.InsideTag,c=0,h=(d=t.children).length;c<h;c++)a=d[c],this.writeChildNode(a,r,n+1);r.state=o.CloseTag,this.stream.write(this.indent(t,r,n)+"</"+t.name+">")}else this.stream.write(">"),r.state=o.InsideTag,r.suppressPrettyCount++,this.writeChildNode(p,r,n+1),r.suppressPrettyCount--,r.state=o.CloseTag,this.stream.write("</"+t.name+">");return this.stream.write(this.endline(t,r,n)),r.state=o.None,this.closeNode(t,r,n)},r.prototype.processingInstruction=function(t,e,o){return this.stream.write(r.__super__.processingInstruction.call(this,t,e,o))},r.prototype.raw=function(t,e,o){return this.stream.write(r.__super__.raw.call(this,t,e,o))},r.prototype.text=function(t,e,o){return this.stream.write(r.__super__.text.call(this,t,e,o))},r.prototype.dtdAttList=function(t,e,o){return this.stream.write(r.__super__.dtdAttList.call(this,t,e,o))},r.prototype.dtdElement=function(t,e,o){return this.stream.write(r.__super__.dtdElement.call(this,t,e,o))},r.prototype.dtdEntity=function(t,e,o){return this.stream.write(r.__super__.dtdEntity.call(this,t,e,o))},r.prototype.dtdNotation=function(t,e,o){return this.stream.write(r.__super__.dtdNotation.call(this,t,e,o))},r}(n)}).call(this)},6434:function(t,e,r){(function(){var e,o={}.hasOwnProperty;e=r(751),t.exports=function(t){function e(t){e.__super__.constructor.call(this,t)}return function(t,e){for(var r in e)o.call(e,r)&&(t[r]=e[r]);function n(){this.constructor=t}n.prototype=e.prototype,t.prototype=new n,t.__super__=e.prototype}(e,t),e.prototype.document=function(t,e){var r,o,n,i,s;for(e=this.filterOptions(e),i="",o=0,n=(s=t.children).length;o<n;o++)r=s[o],i+=this.writeChildNode(r,e,0);return e.pretty&&i.slice(-e.newline.length)===e.newline&&(i=i.slice(0,-e.newline.length)),i},e}(e)}).call(this)},5549:function(t){(function(){var e=function(t,e){return function(){return t.apply(e,arguments)}},r={}.hasOwnProperty;t.exports=function(){function t(t){var o,n,i;for(o in this.assertLegalName=e(this.assertLegalName,this),this.assertLegalChar=e(this.assertLegalChar,this),t||(t={}),this.options=t,this.options.version||(this.options.version="1.0"),n=t.stringify||{})r.call(n,o)&&(i=n[o],this[o]=i)}return t.prototype.name=function(t){return this.options.noValidation?t:this.assertLegalName(""+t||"")},t.prototype.text=function(t){return this.options.noValidation?t:this.assertLegalChar(this.textEscape(""+t||""))},t.prototype.cdata=function(t){return this.options.noValidation?t:(t=(t=""+t||"").replace("]]>","]]]]><![CDATA[>"),this.assertLegalChar(t))},t.prototype.comment=function(t){if(this.options.noValidation)return t;if((t=""+t||"").match(/--/))throw new Error("Comment text cannot contain double-hypen: "+t);return this.assertLegalChar(t)},t.prototype.raw=function(t){return this.options.noValidation?t:""+t||""},t.prototype.attValue=function(t){return this.options.noValidation?t:this.assertLegalChar(this.attEscape(t=""+t||""))},t.prototype.insTarget=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.insValue=function(t){if(this.options.noValidation)return t;if((t=""+t||"").match(/\?>/))throw new Error("Invalid processing instruction value: "+t);return this.assertLegalChar(t)},t.prototype.xmlVersion=function(t){if(this.options.noValidation)return t;if(!(t=""+t||"").match(/1\.[0-9]+/))throw new Error("Invalid version number: "+t);return t},t.prototype.xmlEncoding=function(t){if(this.options.noValidation)return t;if(!(t=""+t||"").match(/^[A-Za-z](?:[A-Za-z0-9._-])*$/))throw new Error("Invalid encoding: "+t);return this.assertLegalChar(t)},t.prototype.xmlStandalone=function(t){return this.options.noValidation?t:t?"yes":"no"},t.prototype.dtdPubID=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdSysID=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdElementValue=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdAttType=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdAttDefault=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdEntityValue=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdNData=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.convertAttKey="@",t.prototype.convertPIKey="?",t.prototype.convertTextKey="#text",t.prototype.convertCDataKey="#cdata",t.prototype.convertCommentKey="#comment",t.prototype.convertRawKey="#raw",t.prototype.assertLegalChar=function(t){var e,r;if(this.options.noValidation)return t;if(e="","1.0"===this.options.version){if(e=/[\0-\x08\x0B\f\x0E-\x1F\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,r=t.match(e))throw new Error("Invalid character in string: "+t+" at index "+r.index)}else if("1.1"===this.options.version&&(e=/[\0\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,r=t.match(e)))throw new Error("Invalid character in string: "+t+" at index "+r.index);return t},t.prototype.assertLegalName=function(t){var e;if(this.options.noValidation)return t;if(this.assertLegalChar(t),e=/^([:A-Z_a-z\xC0-\xD6\xD8-\xF6\xF8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])([\x2D\.0-:A-Z_a-z\xB7\xC0-\xD6\xD8-\xF6\xF8-\u037D\u037F-\u1FFF\u200C\u200D\u203F\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])*$/,!t.match(e))throw new Error("Invalid character in name");return t},t.prototype.textEscape=function(t){var e;return this.options.noValidation?t:(e=this.options.noDoubleEncoding?/(?!&\S+;)&/g:/&/g,t.replace(e,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/\r/g,"&#xD;"))},t.prototype.attEscape=function(t){var e;return this.options.noValidation?t:(e=this.options.noDoubleEncoding?/(?!&\S+;)&/g:/&/g,t.replace(e,"&amp;").replace(/</g,"&lt;").replace(/"/g,"&quot;").replace(/\t/g,"&#x9;").replace(/\n/g,"&#xA;").replace(/\r/g,"&#xD;"))},t}()}).call(this)},3595:function(t,e,r){(function(){var e,o,n={}.hasOwnProperty;e=r(9335),o=r(6488),t.exports=function(t){function r(t,o){if(r.__super__.constructor.call(this,t),null==o)throw new Error("Missing element text. "+this.debugInfo());this.name="#text",this.type=e.Text,this.value=this.stringify.text(o)}return function(t,e){for(var r in e)n.call(e,r)&&(t[r]=e[r]);function o(){this.constructor=t}o.prototype=e.prototype,t.prototype=new o,t.__super__=e.prototype}(r,t),Object.defineProperty(r.prototype,"isElementContentWhitespace",{get:function(){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),Object.defineProperty(r.prototype,"wholeText",{get:function(){var t,e,r;for(r="",e=this.previousSibling;e;)r=e.data+r,e=e.previousSibling;for(r+=this.data,t=this.nextSibling;t;)r+=t.data,t=t.nextSibling;return r}}),r.prototype.clone=function(){return Object.create(this)},r.prototype.toString=function(t){return this.options.writer.text(this,this.options.writer.filterOptions(t))},r.prototype.splitText=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r.prototype.replaceWholeText=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},r}(o)}).call(this)},751:function(t,e,r){(function(){var e,o,n,i={}.hasOwnProperty;n=r(8369).assign,e=r(9335),r(9077),r(6544),r(6170),r(2096),r(2161),r(9406),r(3595),r(9181),r(8833),r(1179),r(6347),r(9078),r(4777),o=r(594),t.exports=function(){function t(t){var e,r,o;for(e in t||(t={}),this.options=t,r=t.writer||{})i.call(r,e)&&(o=r[e],this["_"+e]=this[e],this[e]=o)}return t.prototype.filterOptions=function(t){var e,r,i,s,a,u,p,c;return t||(t={}),t=n({},this.options,t),(e={writer:this}).pretty=t.pretty||!1,e.allowEmpty=t.allowEmpty||!1,e.indent=null!=(r=t.indent)?r:" ",e.newline=null!=(i=t.newline)?i:"\n",e.offset=null!=(s=t.offset)?s:0,e.dontPrettyTextNodes=null!=(a=null!=(u=t.dontPrettyTextNodes)?u:t.dontprettytextnodes)?a:0,e.spaceBeforeSlash=null!=(p=null!=(c=t.spaceBeforeSlash)?c:t.spacebeforeslash)?p:"",!0===e.spaceBeforeSlash&&(e.spaceBeforeSlash=" "),e.suppressPrettyCount=0,e.user={},e.state=o.None,e},t.prototype.indent=function(t,e,r){var o;return!e.pretty||e.suppressPrettyCount?"":e.pretty&&(o=(r||0)+e.offset+1)>0?new Array(o).join(e.indent):""},t.prototype.endline=function(t,e,r){return!e.pretty||e.suppressPrettyCount?"":e.newline},t.prototype.attribute=function(t,e,r){var o;return this.openAttribute(t,e,r),o=" "+t.name+'="'+t.value+'"',this.closeAttribute(t,e,r),o},t.prototype.cdata=function(t,e,r){var n;return this.openNode(t,e,r),e.state=o.OpenTag,n=this.indent(t,e,r)+"<![CDATA[",e.state=o.InsideTag,n+=t.value,e.state=o.CloseTag,n+="]]>"+this.endline(t,e,r),e.state=o.None,this.closeNode(t,e,r),n},t.prototype.comment=function(t,e,r){var n;return this.openNode(t,e,r),e.state=o.OpenTag,n=this.indent(t,e,r)+"\x3c!-- ",e.state=o.InsideTag,n+=t.value,e.state=o.CloseTag,n+=" --\x3e"+this.endline(t,e,r),e.state=o.None,this.closeNode(t,e,r),n},t.prototype.declaration=function(t,e,r){var n;return this.openNode(t,e,r),e.state=o.OpenTag,n=this.indent(t,e,r)+"<?xml",e.state=o.InsideTag,n+=' version="'+t.version+'"',null!=t.encoding&&(n+=' encoding="'+t.encoding+'"'),null!=t.standalone&&(n+=' standalone="'+t.standalone+'"'),e.state=o.CloseTag,n+=e.spaceBeforeSlash+"?>",n+=this.endline(t,e,r),e.state=o.None,this.closeNode(t,e,r),n},t.prototype.docType=function(t,e,r){var n,i,s,a,u;if(r||(r=0),this.openNode(t,e,r),e.state=o.OpenTag,a=this.indent(t,e,r),a+="<!DOCTYPE "+t.root().name,t.pubID&&t.sysID?a+=' PUBLIC "'+t.pubID+'" "'+t.sysID+'"':t.sysID&&(a+=' SYSTEM "'+t.sysID+'"'),t.children.length>0){for(a+=" [",a+=this.endline(t,e,r),e.state=o.InsideTag,i=0,s=(u=t.children).length;i<s;i++)n=u[i],a+=this.writeChildNode(n,e,r+1);e.state=o.CloseTag,a+="]"}return e.state=o.CloseTag,a+=e.spaceBeforeSlash+">",a+=this.endline(t,e,r),e.state=o.None,this.closeNode(t,e,r),a},t.prototype.element=function(t,r,n){var s,a,u,p,c,h,l,f,d,y,g,m,_,w;for(d in n||(n=0),y=!1,g="",this.openNode(t,r,n),r.state=o.OpenTag,g+=this.indent(t,r,n)+"<"+t.name,m=t.attribs)i.call(m,d)&&(s=m[d],g+=this.attribute(s,r,n));if(p=0===(u=t.children.length)?null:t.children[0],0===u||t.children.every((function(t){return(t.type===e.Text||t.type===e.Raw)&&""===t.value})))r.allowEmpty?(g+=">",r.state=o.CloseTag,g+="</"+t.name+">"+this.endline(t,r,n)):(r.state=o.CloseTag,g+=r.spaceBeforeSlash+"/>"+this.endline(t,r,n));else if(!r.pretty||1!==u||p.type!==e.Text&&p.type!==e.Raw||null==p.value){if(r.dontPrettyTextNodes)for(c=0,l=(_=t.children).length;c<l;c++)if(((a=_[c]).type===e.Text||a.type===e.Raw)&&null!=a.value){r.suppressPrettyCount++,y=!0;break}for(g+=">"+this.endline(t,r,n),r.state=o.InsideTag,h=0,f=(w=t.children).length;h<f;h++)a=w[h],g+=this.writeChildNode(a,r,n+1);r.state=o.CloseTag,g+=this.indent(t,r,n)+"</"+t.name+">",y&&r.suppressPrettyCount--,g+=this.endline(t,r,n),r.state=o.None}else g+=">",r.state=o.InsideTag,r.suppressPrettyCount++,y=!0,g+=this.writeChildNode(p,r,n+1),r.suppressPrettyCount--,y=!1,r.state=o.CloseTag,g+="</"+t.name+">"+this.endline(t,r,n);return this.closeNode(t,r,n),g},t.prototype.writeChildNode=function(t,r,o){switch(t.type){case e.CData:return this.cdata(t,r,o);case e.Comment:return this.comment(t,r,o);case e.Element:return this.element(t,r,o);case e.Raw:return this.raw(t,r,o);case e.Text:return this.text(t,r,o);case e.ProcessingInstruction:return this.processingInstruction(t,r,o);case e.Dummy:return"";case e.Declaration:return this.declaration(t,r,o);case e.DocType:return this.docType(t,r,o);case e.AttributeDeclaration:return this.dtdAttList(t,r,o);case e.ElementDeclaration:return this.dtdElement(t,r,o);case e.EntityDeclaration:return this.dtdEntity(t,r,o);case e.NotationDeclaration:return this.dtdNotation(t,r,o);default:throw new Error("Unknown XML node type: "+t.constructor.name)}},t.prototype.processingInstruction=function(t,e,r){var n;return this.openNode(t,e,r),e.state=o.OpenTag,n=this.indent(t,e,r)+"<?",e.state=o.InsideTag,n+=t.target,t.value&&(n+=" "+t.value),e.state=o.CloseTag,n+=e.spaceBeforeSlash+"?>",n+=this.endline(t,e,r),e.state=o.None,this.closeNode(t,e,r),n},t.prototype.raw=function(t,e,r){var n;return this.openNode(t,e,r),e.state=o.OpenTag,n=this.indent(t,e,r),e.state=o.InsideTag,n+=t.value,e.state=o.CloseTag,n+=this.endline(t,e,r),e.state=o.None,this.closeNode(t,e,r),n},t.prototype.text=function(t,e,r){var n;return this.openNode(t,e,r),e.state=o.OpenTag,n=this.indent(t,e,r),e.state=o.InsideTag,n+=t.value,e.state=o.CloseTag,n+=this.endline(t,e,r),e.state=o.None,this.closeNode(t,e,r),n},t.prototype.dtdAttList=function(t,e,r){var n;return this.openNode(t,e,r),e.state=o.OpenTag,n=this.indent(t,e,r)+"<!ATTLIST",e.state=o.InsideTag,n+=" "+t.elementName+" "+t.attributeName+" "+t.attributeType,"#DEFAULT"!==t.defaultValueType&&(n+=" "+t.defaultValueType),t.defaultValue&&(n+=' "'+t.defaultValue+'"'),e.state=o.CloseTag,n+=e.spaceBeforeSlash+">"+this.endline(t,e,r),e.state=o.None,this.closeNode(t,e,r),n},t.prototype.dtdElement=function(t,e,r){var n;return this.openNode(t,e,r),e.state=o.OpenTag,n=this.indent(t,e,r)+"<!ELEMENT",e.state=o.InsideTag,n+=" "+t.name+" "+t.value,e.state=o.CloseTag,n+=e.spaceBeforeSlash+">"+this.endline(t,e,r),e.state=o.None,this.closeNode(t,e,r),n},t.prototype.dtdEntity=function(t,e,r){var n;return this.openNode(t,e,r),e.state=o.OpenTag,n=this.indent(t,e,r)+"<!ENTITY",e.state=o.InsideTag,t.pe&&(n+=" %"),n+=" "+t.name,t.value?n+=' "'+t.value+'"':(t.pubID&&t.sysID?n+=' PUBLIC "'+t.pubID+'" "'+t.sysID+'"':t.sysID&&(n+=' SYSTEM "'+t.sysID+'"'),t.nData&&(n+=" NDATA "+t.nData)),e.state=o.CloseTag,n+=e.spaceBeforeSlash+">"+this.endline(t,e,r),e.state=o.None,this.closeNode(t,e,r),n},t.prototype.dtdNotation=function(t,e,r){var n;return this.openNode(t,e,r),e.state=o.OpenTag,n=this.indent(t,e,r)+"<!NOTATION",e.state=o.InsideTag,n+=" "+t.name,t.pubID&&t.sysID?n+=' PUBLIC "'+t.pubID+'" "'+t.sysID+'"':t.pubID?n+=' PUBLIC "'+t.pubID+'"':t.sysID&&(n+=' SYSTEM "'+t.sysID+'"'),e.state=o.CloseTag,n+=e.spaceBeforeSlash+">"+this.endline(t,e,r),e.state=o.None,this.closeNode(t,e,r),n},t.prototype.openNode=function(t,e,r){},t.prototype.closeNode=function(t,e,r){},t.prototype.openAttribute=function(t,e,r){},t.prototype.closeAttribute=function(t,e,r){},t}()}).call(this)},5532:function(t,e,r){(function(){var e,o,n,i,s,a,u,p,c,h;h=r(8369),p=h.assign,c=h.isFunction,n=r(1770),i=r(6934),s=r(9227),u=r(6434),a=r(1996),e=r(9335),o=r(594),t.exports.create=function(t,e,r,o){var n,s;if(null==t)throw new Error("Root element needs a name.");return o=p({},e,r,o),s=(n=new i(o)).element(t),o.headless||(n.declaration(o),null==o.pubID&&null==o.sysID||n.dtd(o)),s},t.exports.begin=function(t,e,r){var o;return c(t)&&(e=(o=[t,e])[0],r=o[1],t={}),e?new s(t,e,r):new i(t)},t.exports.stringWriter=function(t){return new u(t)},t.exports.streamWriter=function(t,e){return new a(t,e)},t.exports.implementation=new n,t.exports.nodeType=e,t.exports.writerState=o}).call(this)}},e={};function r(o){var n=e[o];if(void 0!==n)return n.exports;var i=e[o]={exports:{}};return t[o].call(i.exports,i,i.exports,r),i.exports}r.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return r.d(e,{a:e}),e},r.d=(t,e)=>{for(var o in e)r.o(e,o)&&!r.o(t,o)&&Object.defineProperty(t,o,{enumerable:!0,get:e[o]})},r.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),(()=>{"use strict";var t=r(5513),e=r.n(t);function o(t){return(o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function n(t,e){for(var r=0;r<e.length;r++){var o=e[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function i(t,e){return(i=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function s(t,e){return!e||"object"!==o(e)&&"function"!=typeof e?function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):e}function a(t){return(a=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}var u=wp.element,p=u.Component,c=u.createRef,h=wp.i18n.__,l=wp.components.Snackbar,f=wp.data.dispatch("core/notices").createNotice,d=function(t){l&&f("info",t,{isDismissible:!0,type:"snackbar"})};const y=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&i(t,e)}(l,t);var e,r,o,u,p=(o=l,u=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=a(o);if(u){var r=a(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return s(this,t)});function l(t){var e;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,l),(e=p.call(this,t)).img=e.props.result.url_m,e.fullSize=e.props.result.url_l,e.imgTitle=e.props.result.title,e.setAsFeaturedImage=!1,e.insertIntoPost=!1,e.inProgress=!1,e.SetFeaturedImage=e.props.SetFeaturedImage,e.InsertImage=e.props.InsertImage,e.noticeRef=c(),e.imageRef=c(),e.photoContainerRef=c(),e.state={attachmentId:""},e}return e=l,(r=[{key:"uploadPhoto",value:function(t){t.preventDefault();var e=this,r=t.currentTarget,o=r.parentElement.parentElement.parentElement.parentElement.parentElement,n=this.noticeRef.current,i=this.imageRef.current;if(r.classList.contains("download")&&""!==this.state.attachmentId)return!1;if(i.classList.add("uploading"),o.classList.add("in-progress"),n.innerHTML=h("Downloading Image...","themeisle-companion"),this.inProgress=!0,""!==this.state.attachmentId)return this.doPhotoAction(r,o,this.state.attachmentId),!0;if(void 0===this.fullSize)return e.uploadError(r,o,h("Error! Empty image.","themeisle-companion")),!1;var s=new FormData;s.append("action","handle-request-"+mystock_import.slug),s.append("url",this.fullSize),s.append("security",mystock_import.nonce),wp.apiFetch({url:mystock_import.ajaxurl,method:"POST",body:s}).then((function(t){t&&!0===t.success&&t.data.attachment.id?(e.doPhotoAction(r,o,t.data.attachment.id),e.setState({attachmentId:t.data.attachment.id})):e.uploadError(r,o,t.data.msg)})).catch((function(){e.uploadError(r,o,h("There was an error. Please try again.","themeisle-companion"))}))}},{key:"doPhotoAction",value:function(t,e,r){this.uploadComplete(t,e,r),this.setAsFeaturedImage&&(this.SetFeaturedImage(r),this.setAsFeaturedImage=!1),this.insertIntoPost&&(this.InsertImage(this.fullSize,this.imgTitle),this.insertIntoPost=!1)}},{key:"uploadError",value:function(t,e,r){var o=this.imageRef.current;o.classList.remove("uploading"),o.classList.add("errors"),this.photoContainerRef.current.classList.remove("in-progress"),t.parentNode.parentNode.classList.add("disabled"),setTimeout((function(){o.classList.remove("errors"),t.parentNode.parentNode.classList.remove("disabled")}),3e3,t,e),d(r),this.inProgress=!1,console.warn(r)}},{key:"uploadComplete",value:function(t,e,r){this.setState({attachmentId:r});var o=this.imageRef.current;o.classList.remove("uploading"),o.classList.add("success"),e.classList.remove("in-progress"),e.classList.add("uploaded","done"),t.parentNode.parentNode.classList.add("disabled"),setTimeout((function(){o.classList.remove("success"),e.classList.remove("uploaded"),t.parentNode.parentNode.classList.remove("disabled")}),3e3,t,e),this.inProgress=!1,t.classList.contains("download")&&d(h("Image was added to Media Library.","themeisle-companion")),t.classList.contains("set-featured")&&d(h("Image was set as featured image.","themeisle-companion")),t.classList.contains("insert")&&d(h("Image was inserted in post content.","themeisle-companion"))}},{key:"setFeaturedImageClick",value:function(t){if(!t.currentTarget)return!1;this.setAsFeaturedImage=!0,this.uploadPhoto(t)}},{key:"insertImageIntoPost",value:function(t){if(!t.currentTarget)return!1;this.insertIntoPost=!0,this.uploadPhoto(t)}},{key:"render",value:function(){var t=this;return React.createElement("article",{className:"photo",ref:this.photoContainerRef},React.createElement("div",{className:"photo--wrap"},React.createElement("div",{className:"img-wrap"},React.createElement("a",{className:"upload",href:"#",ref:this.imageRef},React.createElement("img",{src:this.img,alt:this.imgTitle}),React.createElement("div",{className:"status"})),React.createElement("div",{ref:this.noticeRef,className:"notice-msg"}),React.createElement("div",{className:"user-controls"},React.createElement("div",{className:"photo-options"},React.createElement("a",{className:"download fade",href:"#",onClick:function(e){return t.uploadPhoto(e)},title:h("Add to Media Library","themeisle-companion")},React.createElement("span",{className:"dashicons dashicons-download"})),React.createElement("a",{className:"set-featured fade",href:"#",onClick:function(e){return t.setFeaturedImageClick(e)},title:h("Set as featured image","themeisle-companion")},React.createElement("span",{className:"dashicons dashicons-format-image"})),React.createElement("a",{className:"insert fade",href:"#",onClick:function(e){return t.insertImageIntoPost(e)},title:h("Insert into post","themeisle-companion")},React.createElement("span",{className:"dashicons dashicons-plus"})))))))}}])&&n(e.prototype,r),l}(p);function g(t){return(g="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function m(t,e){for(var r=0;r<e.length;r++){var o=e[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function _(t,e){return(_=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function w(t,e){return!e||"object"!==g(e)&&"function"!=typeof e?T(t):e}function T(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function b(t){return(b=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}var E=wp.components.Spinner,v=wp.element,O=v.Component,I=v.createRef,P=wp.i18n.__;const N=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&_(t,e)}(a,t);var r,o,n,i,s=(n=a,i=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=b(n);if(i){var r=b(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return w(this,t)});function a(t){var r;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),(r=s.call(this,t)).apiKey=mystock_import.api_key,r.userId=mystock_import.user_id,r.perPage=mystock_import.per_page,r.flickr=new(e())(r.apiKey),r.results=r.props.results?r.props.results:[],r.state={results:r.results},r.isSearch=!1,r.search_term="",r.nothingFound=!1,r.isLoading=!1,r.isDone=!1,r.page=r.props.page,r.SetFeaturedImage=r.props.SetFeaturedImage?r.props.SetFeaturedImage.bind(T(r)):"",r.InsertImage=r.props.InsertImage?r.props.InsertImage.bind(T(r)):"",r.errorRef=I(),r.searchRef=I(),r}return r=a,(o=[{key:"test",value:function(){var t=this,e=this.errorRef.current;this.flickr.test.echo(this.apiKey).then((function(r){(r.statusCode<200||r.statusCode>=400)&&t.renderTestError(e)}))}},{key:"renderTestError",value:function(t){t.classList.add("active"),t.innerHTML=P("There was an error accessing the server. Please try again later. If you still receive this error, contact the support team.","themeisle-companion")}},{key:"getPhotos",value:function(){var t=this;if(this.page=parseInt(this.page)+1,this.isLoading=!0,this.isSearch)this.doSearch(this.search_term,!0);else{var e={api_key:this.apiKey,user_id:this.userId,per_page:this.perPage,extras:"url_m, url_l",page:this.page};this.flickr.people.getPublicPhotos(e).then((function(e){var r=e.body.photos.photo;r.map((function(e){t.results.push(e)})),t.checkTotalResults(r.length),t.setState({results:t.results})})).catch((function(e){console.log(e),t.isLoading=!1}))}}},{key:"checkTotalResults",value:function(t){this.isDone=t<this.perPage}},{key:"search",value:function(t){t.preventDefault();var e=this.searchRef.current,r=e.value;r.length>2?(e.classList.add("searching"),this.search_term=r,this.nothingFound=!1,this.isSearch=!0,this.page=0,this.doSearch(this.search_term)):e.focus()}},{key:"doSearch",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=this;this.page=parseInt(this.page)+1;var o=this.searchRef.current;!0!==e&&(r.results=[],r.setState({results:[]}));var n={api_key:this.apiKey,user_id:this.userId,text:this.search_term,per_page:this.perPage,extras:"url_m, url_l",page:this.page};this.flickr.photos.search(n).then((function(t){var e=t.body.photos.photo;0===e.length&&(r.nothingFound=!0),0===e.length&&!1===r.append&&(r.nothingFound=!0),e.map((function(t){r.results.push(t)})),r.checkTotalResults(e.length),r.setState({results:r.results}),o.classList.remove("searching")})).catch((function(t){console.log(t),r.isLoading=!1}))}},{key:"resetSearch",value:function(){var t=this.searchRef.current;this.isSearch=!1,this.page=0,this.results=[],t.value="",this.getPhotos()}},{key:"componentDidMount",value:function(){this.test(),this.page=0,this.getPhotos()}},{key:"render",value:function(){var t=this,e="",r="";return this.isDone||(e=React.createElement("div",{className:"load-more-wrap"},React.createElement("button",{type:"button",className:"button",onClick:function(){return t.getPhotos()}},P("Load More Images","themeisle-companion")))),0!==this.results.length||this.nothingFound||(r=React.createElement("div",{className:"loading-wrap"},React.createElement("h3",null,P("Loading images...","themeisle-companion")),React.createElement(E,null))),React.createElement("div",{id:"photo-listing"},React.createElement("div",{className:"search-field",id:"search-bar"},React.createElement("form",{onSubmit:function(e){return t.search(e)},autoComplete:"off"},React.createElement("input",{ref:this.searchRef,type:"text",id:"photo-search",placeholder:P("Search","themeisle-companion")}),React.createElement("button",{type:"submit",id:"photo-search-submit"},React.createElement("span",{className:"dashicons dashicons-search"})),React.createElement("button",{id:"clear-search",onClick:function(e){return t.resetSearch()}},React.createElement("span",{className:"dashicons dashicons-no"})))),React.createElement("div",{ref:this.errorRef,className:"error-messaging"}),React.createElement("div",{id:"msp-photos"},r,this.state.results.map((function(e,r){return React.createElement(y,{result:e,key:e.id+r,SetFeaturedImage:t.SetFeaturedImage,InsertImage:t.InsertImage})}))),React.createElement("div",{className:!0===this.nothingFound&&this.isSearch?"no-results show":"no-results",title:this.props.title},React.createElement("h3",null,P("Sorry, nothing matched your query.","themeisle-companion")," "),React.createElement("p",null,P("Please try with another word.","themeisle-companion")," ")),e)}}])&&m(r.prototype,o),a}(O);var D=wp.data.dispatch;const C=function(t){if(null===t)return!1;D("core/editor").editPost({featured_media:t})};var k=wp.blocks.createBlock,x=wp.data.dispatch,A=(x("core/block-editor")||x("core/editor")).insertBlocks;const S=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";if(""===t)return!1;var r=k("core/image",{url:t,alt:e});A(r)};var L=wp.element.Fragment,R=wp.editPost,B=R.PluginSidebar,F=R.PluginSidebarMoreMenuItem,j=wp.i18n.__;var M=wp.plugins.registerPlugin,G=wp.components.Icon;M("mystock-images",{icon:React.createElement(G,{icon:"camera"}),render:function(){return React.createElement(L,null,React.createElement(F,{target:"mystock-sidebar"},j("MyStockPhotos","themeisle-companion")),React.createElement(B,{name:"mystock-sidebar",title:j("MyStockPhotos","themeisle-companion")},React.createElement("div",{className:"mystock-img-container"},React.createElement(N,{page:1,SetFeaturedImage:C,InsertImage:S}))))}})})()})();
obfx_modules/uptime-monitor/init.php DELETED
@@ -1,189 +0,0 @@
1
- <?php
2
- /**
3
- * The Mock-up to demonstrate and test module use.
4
- *
5
- * @link https://themeisle.com
6
- * @since 1.0.0
7
- *
8
- * @package Uptime_Monitor_OBFX_Module
9
- */
10
-
11
- /**
12
- * The class defines a new module to be used by Orbit Fox plugin.
13
- *
14
- * @package Uptime_Monitor_OBFX_Module
15
- * @author Themeisle <friends@themeisle.com>
16
- */
17
- class Uptime_Monitor_OBFX_Module extends Orbit_Fox_Module_Abstract {
18
- /**
19
- * @var string Uptime api endpoint.
20
- */
21
- private $monitor_url = 'https://monitor.orbitfox.com';
22
-
23
- /**
24
- * Test_OBFX_Module constructor.
25
- *
26
- * @since 1.0.0
27
- * @access public
28
- */
29
- public function __construct() {
30
- parent::__construct();
31
- $this->name = __( 'Uptime Monitor', 'themeisle-companion' );
32
- $this->description = __( 'A module to notify when you website goes down.', 'themeisle-companion' );
33
- $this->confirm_intent = '<h4>' . __( 'One more step...', 'themeisle-companion' ) . '</h4><p>' . __( 'In order to use the uptime service, we will need your e-mail address, where we will send downtime alerts.', 'themeisle-companion' ) . '</p>';
34
- }
35
-
36
- /**
37
- * Determine if module should be loaded.
38
- *
39
- * @since 1.0.0
40
- * @access public
41
- * @return bool
42
- */
43
- public function enable_module() {
44
- return true;
45
- }
46
-
47
- /**
48
- * The loading logic for the module.
49
- *
50
- * @since 1.0.0
51
- * @access public
52
- */
53
- public function load() {
54
- }
55
-
56
- /**
57
- * Method called on module activation.
58
- * Calls the API to register an url to monitor.
59
- *
60
- * @since 2.3.3
61
- * @access public
62
- */
63
- public function after_options_save() {
64
- $this->activate();
65
- }
66
-
67
- /**
68
- * Method invoked after options save.
69
- *
70
- * @since 2.3.3
71
- * @access public
72
- */
73
- public function activate() {
74
- $email = sanitize_email( $this->get_option( 'monitor_email' ) );
75
- if ( ! is_email( $email ) ) {
76
- return;
77
- }
78
-
79
- $monitor_url = $this->monitor_url . '/api/monitor/create';
80
- $url = home_url();
81
- $args = array(
82
- 'body' => array(
83
- 'url' => $url,
84
- 'email' => $email,
85
- ),
86
- );
87
- $response = wp_remote_post( $monitor_url, $args );
88
- }
89
-
90
- /**
91
- * Method invoked before options save.
92
- *
93
- * @since 2.3.3
94
- * @access public
95
- */
96
- public function before_options_save( $options ) {
97
- $this->deactivate();
98
- }
99
-
100
- /**
101
- * Method called on module deactivation.
102
- * Calls the API to unregister an url from the monitor.
103
- *
104
- * @since 2.3.3
105
- * @access public
106
- */
107
- public function deactivate() {
108
- $this->set_option( 'monitor_email', '' );
109
- $monitor_url = $this->monitor_url . '/api/monitor/remove';
110
- $url = home_url();
111
- $args = array(
112
- 'body' => array( 'url' => $url ),
113
- );
114
- $response = wp_remote_post( $monitor_url, $args );
115
- $api_response = json_decode( $response['body'] );
116
- }
117
-
118
- /**
119
- * Method to define hooks needed.
120
- *
121
- * @since 1.0.0
122
- * @access public
123
- */
124
- public function hooks() {
125
- $this->loader->add_action( $this->get_slug() . '_before_options_save', $this, 'before_options_save', 10, 1 );
126
- $this->loader->add_action( $this->get_slug() . '_after_options_save', $this, 'after_options_save' );
127
- }
128
-
129
- /**
130
- * Method that returns an array of scripts and styles to be loaded
131
- * for the front end part.
132
- *
133
- * @since 1.0.0
134
- * @access public
135
- * @return array
136
- */
137
- public function public_enqueue() {
138
- return array();
139
- }
140
-
141
- /**
142
- * Method that returns an array of scripts and styles to be loaded
143
- * for the admin part.
144
- *
145
- * @since 1.0.0
146
- * @access public
147
- * @return array|boolean
148
- */
149
- public function admin_enqueue() {
150
- $current_screen = get_current_screen();
151
-
152
- if ( ! isset( $current_screen->id ) ) {
153
- return array();
154
- }
155
- if ( $current_screen->id != 'dashboard' ) {
156
- return array();
157
- }
158
-
159
- return array(
160
- 'js' => array(
161
- 'stats' => array( 'jquery' ),
162
- ),
163
- 'css' => array(
164
- 'stats' => false,
165
- ),
166
- );
167
- }
168
-
169
- /**
170
- * Method to define the options fields for the module
171
- *
172
- * @since 1.0.0
173
- * @access public
174
- * @return array
175
- */
176
- public function options() {
177
- return array(
178
- array(
179
- 'id' => 'monitor_email',
180
- 'name' => 'monitor_email',
181
- 'title' => 'Notification email',
182
- 'description' => 'Email where we should notify you when the site goes down.',
183
- 'type' => 'email',
184
- 'default' => '',
185
- 'placeholder' => 'Add your email.',
186
- ),
187
- );
188
- }
189
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.md CHANGED
@@ -109,6 +109,18 @@ Activating the Orbit Fox plugin is just like any other plugin. If you've uploade
109
 
110
  ## Changelog ##
111
 
 
 
 
 
 
 
 
 
 
 
 
 
112
  ##### [Version 2.10.6](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.5...v2.10.6) (2021-05-31)
113
 
114
  - [Fix] Replace Elementor deprecated functions
109
 
110
  ## Changelog ##
111
 
112
+ ##### [Version 2.10.7](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.6...v2.10.7) (2021-08-02)
113
+
114
+ [Fix] Widgets with repeater fields are generating errors
115
+ [Fix] Gutenberg Blocks compatibility with WP 5.8
116
+ [Fix] Fix Elementor deprecated functions
117
+ - Retire the Uptime Monitor module.
118
+ - Announce the retirement of the Gutenberg Blocks module and remove it if the module is not used.
119
+ - Retire the Analytics module if the user is not using it.
120
+
121
+
122
+
123
+
124
  ##### [Version 2.10.6](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.5...v2.10.6) (2021-05-31)
125
 
126
  - [Fix] Replace Elementor deprecated functions
readme.txt CHANGED
@@ -109,6 +109,18 @@ Activating the Orbit Fox plugin is just like any other plugin. If you've uploade
109
 
110
  == Changelog ==
111
 
 
 
 
 
 
 
 
 
 
 
 
 
112
  ##### [Version 2.10.6](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.5...v2.10.6) (2021-05-31)
113
 
114
  - [Fix] Replace Elementor deprecated functions
109
 
110
  == Changelog ==
111
 
112
+ ##### [Version 2.10.7](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.6...v2.10.7) (2021-08-02)
113
+
114
+ [Fix] Widgets with repeater fields are generating errors
115
+ [Fix] Gutenberg Blocks compatibility with WP 5.8
116
+ [Fix] Fix Elementor deprecated functions
117
+ - Retire the Uptime Monitor module.
118
+ - Announce the retirement of the Gutenberg Blocks module and remove it if the module is not used.
119
+ - Retire the Analytics module if the user is not using it.
120
+
121
+
122
+
123
+
124
  ##### [Version 2.10.6](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.5...v2.10.6) (2021-05-31)
125
 
126
  - [Fix] Replace Elementor deprecated functions
themeisle-companion.php CHANGED
@@ -15,7 +15,7 @@
15
  * Plugin Name: Orbit Fox Companion
16
  * Plugin URI: https://orbitfox.com/
17
  * Description: This swiss-knife plugin comes with a quality template library, menu/sharing icons modules, Gutenberg blocks, and newly added Elementor/BeaverBuilder page builder widgets on each release.
18
- * Version: 2.10.6
19
  * Author: Themeisle
20
  * Author URI: https://orbitfox.com/
21
  * License: GPL-2.0+
15
  * Plugin Name: Orbit Fox Companion
16
  * Plugin URI: https://orbitfox.com/
17
  * Description: This swiss-knife plugin comes with a quality template library, menu/sharing icons modules, Gutenberg blocks, and newly added Elementor/BeaverBuilder page builder widgets on each release.
18
+ * Version: 2.10.7
19
  * Author: Themeisle
20
  * Author URI: https://orbitfox.com/
21
  * License: GPL-2.0+
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInitd61bd83c4e36dce0aa1f45cdc35e4102::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInitef226903ac6de2394b664a089017c745::getLoader();
vendor/codeinwp/elementor-extra-widgets/widgets/elementor/posts-grid.php CHANGED
@@ -156,7 +156,7 @@ class Posts_Grid extends Widget_Base {
156
  /**
157
  * Register Elementor Controls.
158
  */
159
- protected function _register_controls() {
160
  // Content.
161
  $this->grid_options_section();
162
  $this->grid_image_section();
156
  /**
157
  * Register Elementor Controls.
158
  */
159
+ protected function register_controls() {
160
  // Content.
161
  $this->grid_options_section();
162
  $this->grid_image_section();
vendor/codeinwp/elementor-extra-widgets/widgets/elementor/premium-placeholder.php CHANGED
@@ -61,7 +61,7 @@ abstract class Premium_Placeholder extends \Elementor\Widget_Base {
61
  *
62
  * Because this is just a placeholder widget, we need to output this to the Lite users.
63
  */
64
- protected function _register_controls() {
65
  $this->start_controls_section(
66
  'section_title',
67
  [
@@ -108,4 +108,4 @@ abstract class Premium_Placeholder extends \Elementor\Widget_Base {
108
  </div>
109
  <?php }
110
  }
111
- }
61
  *
62
  * Because this is just a placeholder widget, we need to output this to the Lite users.
63
  */
64
+ protected function register_controls() {
65
  $this->start_controls_section(
66
  'section_title',
67
  [
108
  </div>
109
  <?php }
110
  }
111
+ }
vendor/codeinwp/elementor-extra-widgets/widgets/elementor/pricing-table.php CHANGED
@@ -17,6 +17,7 @@ use Elementor\Plugin;
17
  use Elementor\Core\Schemes\Color;
18
  use Elementor\Core\Schemes\Typography;
19
  use Elementor\Widget_Base;
 
20
 
21
  /**
22
  * Class Pricing_Table
@@ -75,7 +76,7 @@ class Pricing_Table extends Widget_Base {
75
  /**
76
  * Register Elementor Controls
77
  */
78
- protected function _register_controls() {
79
  $this->plan_title_section();
80
 
81
  $this->plan_price_tag_section();
@@ -231,6 +232,42 @@ class Pricing_Table extends Widget_Base {
231
  ]
232
  );
233
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
234
  $this->add_control(
235
  'feature_list',
236
  [
@@ -250,34 +287,7 @@ class Pricing_Table extends Widget_Base {
250
  'text' => __( 'Feature', 'themeisle-companion' ),
251
  ],
252
  ],
253
- 'fields' => [
254
- [
255
- 'type' => Controls_Manager::TEXT,
256
- 'name' => 'accent',
257
- 'label' => __( 'Accented Text', 'themeisle-companion' ),
258
- 'description' => __( 'Appears before feature text', 'themeisle-companion' ),
259
- 'label_block' => true,
260
- 'default' => __( 'Accent', 'themeisle-companion' ),
261
- ],
262
- [
263
- 'type' => Controls_Manager::TEXT,
264
- 'name' => 'text',
265
- 'label' => __( 'Text', 'themeisle-companion' ),
266
- 'label_block' => true,
267
- 'placeholder' => __( 'Plan Features', 'themeisle-companion' ),
268
- 'default' => __( 'Feature', 'themeisle-companion' ),
269
- ],
270
- [
271
- 'type' => Controls_Manager::ICONS,
272
- 'name' => 'feature_icon_new',
273
- 'label' => __( 'Icon', 'themeisle-companion' ),
274
- 'default' => [
275
- 'value' => 'fas fa-star',
276
- 'library' => 'solid',
277
- ],
278
- 'fa4compatibility' => 'feature_icon',
279
- ],
280
- ],
281
  'title_field' => '{{ accent + " " + text }}',
282
  ]
283
  );
17
  use Elementor\Core\Schemes\Color;
18
  use Elementor\Core\Schemes\Typography;
19
  use Elementor\Widget_Base;
20
+ use Elementor\Repeater;
21
 
22
  /**
23
  * Class Pricing_Table
76
  /**
77
  * Register Elementor Controls
78
  */
79
+ protected function register_controls() {
80
  $this->plan_title_section();
81
 
82
  $this->plan_price_tag_section();
232
  ]
233
  );
234
 
235
+ $repeater = new Repeater();
236
+ $repeater->add_control(
237
+ 'accent',
238
+ [
239
+ 'label' => __( 'Accented Text', 'themeisle-companion' ),
240
+ 'type' => Controls_Manager::TEXT,
241
+ 'label_block' => true,
242
+ 'description' => __( 'Appears before feature text', 'themeisle-companion' ),
243
+ 'default' => __( 'Accent', 'themeisle-companion' ),
244
+ ]
245
+ );
246
+
247
+ $repeater->add_control(
248
+ 'text',
249
+ [
250
+ 'label' => __( 'Text', 'themeisle-companion' ),
251
+ 'type' => Controls_Manager::TEXT,
252
+ 'label_block' => true,
253
+ 'placeholder' => __( 'Plan Features', 'themeisle-companion' ),
254
+ 'default' => __( 'Feature', 'themeisle-companion' ),
255
+ ]
256
+ );
257
+
258
+ $repeater->add_control(
259
+ 'feature_icon_new',
260
+ [
261
+ 'label' => __( 'Icon', 'themeisle-companion' ),
262
+ 'type' => Controls_Manager::ICONS,
263
+ 'default' => [
264
+ 'value' => 'fas fa-star',
265
+ 'library' => 'solid',
266
+ ],
267
+ 'fa4compatibility' => 'feature_icon',
268
+ ]
269
+ );
270
+
271
  $this->add_control(
272
  'feature_list',
273
  [
287
  'text' => __( 'Feature', 'themeisle-companion' ),
288
  ],
289
  ],
290
+ 'fields' => $repeater->get_controls(),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
291
  'title_field' => '{{ accent + " " + text }}',
292
  ]
293
  );
vendor/codeinwp/elementor-extra-widgets/widgets/elementor/services.php CHANGED
@@ -16,6 +16,7 @@ use Elementor\Group_Control_Typography;
16
  use Elementor\Core\Schemes\Color;
17
  use Elementor\Core\Schemes\Typography;
18
  use Elementor\Widget_Base;
 
19
 
20
  /**
21
  * Class Services
@@ -75,7 +76,7 @@ class Services extends Widget_Base {
75
  /**
76
  * Register Elementor Controls
77
  */
78
- protected function _register_controls() {
79
  $this->services_content();
80
  $this->style_icon();
81
  $this->style_grid_options();
@@ -92,6 +93,96 @@ class Services extends Widget_Base {
92
  ]
93
  );
94
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
95
  $this->add_control(
96
  'services_list',
97
  [
@@ -129,76 +220,7 @@ class Services extends Widget_Base {
129
  'type' => 'icon',
130
  ],
131
  ],
132
- 'fields' => [
133
- [
134
- 'type' => Controls_Manager::CHOOSE,
135
- 'name' => 'type',
136
- 'label_block' => true,
137
- 'label' => __( 'Type', 'themeisle-companion' ),
138
- 'default' => 'icon',
139
- 'options' => [
140
- 'icon' => [
141
- 'title' => __( 'Icon', 'themeisle-companion' ),
142
- 'icon' => 'fa fa-diamond',
143
- ],
144
- 'image' => [
145
- 'title' => __( 'Image', 'themeisle-companion' ),
146
- 'icon' => 'fa fa-photo',
147
- ],
148
- ],
149
- ],
150
- [
151
- 'type' => Controls_Manager::TEXT,
152
- 'name' => 'title',
153
- 'label_block' => true,
154
- 'label' => __( 'Title & Description', 'themeisle-companion' ),
155
- 'default' => __( 'Service Title', 'themeisle-companion' ),
156
- ],
157
- [
158
- 'type' => Controls_Manager::TEXTAREA,
159
- 'name' => 'text',
160
- 'placeholder' => __( 'Plan Features', 'themeisle-companion' ),
161
- 'default' => __( 'Feature', 'themeisle-companion' ),
162
- ],
163
- [
164
- 'type' => Controls_Manager::ICONS,
165
- 'name' => 'icon_new',
166
- 'label' => __( 'Icon', 'themeisle-companion' ),
167
- 'default' => [
168
- 'value' => 'fas fa-gem',
169
- 'library' => 'solid',
170
- ],
171
- 'fa4compatibility' => 'icon',
172
- 'condition' => [
173
- 'type' => 'icon',
174
- ],
175
- ],
176
- [
177
- 'type' => Controls_Manager::COLOR,
178
- 'name' => 'color',
179
- 'label_block' => false,
180
- 'label' => __( 'Icon Color', 'themeisle-companion' ),
181
- 'default' => '#333333',
182
- 'condition' => [
183
- 'type' => 'icon',
184
- ],
185
- ],
186
- [
187
- 'type' => Controls_Manager::MEDIA,
188
- 'name' => 'image',
189
- 'label' => __( 'Image', 'themeisle-companion' ),
190
- 'condition' => [
191
- 'type' => 'image',
192
- ],
193
- ],
194
- [
195
- 'type' => Controls_Manager::URL,
196
- 'name' => 'link',
197
- 'label' => __( 'Link to', 'themeisle-companion' ),
198
- 'separator' => 'before',
199
- 'placeholder' => __( 'https://example.com', 'themeisle-companion' ),
200
- ],
201
- ],
202
  'title_field' => '{{title}}',
203
  ]
204
  );
16
  use Elementor\Core\Schemes\Color;
17
  use Elementor\Core\Schemes\Typography;
18
  use Elementor\Widget_Base;
19
+ use Elementor\Repeater;
20
 
21
  /**
22
  * Class Services
76
  /**
77
  * Register Elementor Controls
78
  */
79
+ protected function register_controls() {
80
  $this->services_content();
81
  $this->style_icon();
82
  $this->style_grid_options();
93
  ]
94
  );
95
 
96
+ $repeater = new Repeater();
97
+ $repeater->add_control(
98
+ 'type',
99
+ [
100
+ 'label' => __( 'Type', 'themeisle-companion' ),
101
+ 'type' => Controls_Manager::CHOOSE,
102
+ 'label_block' => true,
103
+ 'default' => 'icon',
104
+ 'options' => [
105
+ 'icon' => [
106
+ 'title' => __( 'Icon', 'themeisle-companion' ),
107
+ 'icon' => 'fa fa-diamond',
108
+ ],
109
+ 'image' => [
110
+ 'title' => __( 'Image', 'themeisle-companion' ),
111
+ 'icon' => 'fa fa-photo',
112
+ ],
113
+ ],
114
+ ]
115
+ );
116
+
117
+ $repeater->add_control(
118
+ 'title',
119
+ [
120
+ 'label' => __( 'Title & Description', 'themeisle-companion' ),
121
+ 'type' => Controls_Manager::TEXT,
122
+ 'label_block' => true,
123
+ 'default' => __( 'Service Title', 'themeisle-companion' ),
124
+ ]
125
+ );
126
+
127
+ $repeater->add_control(
128
+ 'text',
129
+ [
130
+ 'type' => Controls_Manager::TEXTAREA,
131
+ 'placeholder' => __( 'Plan Features', 'themeisle-companion' ),
132
+ 'default' => __( 'Feature', 'themeisle-companion' ),
133
+ ]
134
+ );
135
+
136
+ $repeater->add_control(
137
+ 'icon_new',
138
+ [
139
+ 'label' => __( 'Icon', 'themeisle-companion' ),
140
+ 'type' => Controls_Manager::ICONS,
141
+ 'default' => [
142
+ 'value' => 'fas fa-gem',
143
+ 'library' => 'solid',
144
+ ],
145
+ 'fa4compatibility' => 'icon',
146
+ 'condition' => [
147
+ 'type' => 'icon',
148
+ ],
149
+ ]
150
+ );
151
+
152
+ $repeater->add_control(
153
+ 'color',
154
+ [
155
+ 'label' => __( 'Icon Color', 'themeisle-companion' ),
156
+ 'type' => Controls_Manager::COLOR,
157
+ 'label_block' => false,
158
+ 'default' => '#333333',
159
+ 'condition' => [
160
+ 'type' => 'icon',
161
+ ],
162
+ ]
163
+ );
164
+
165
+ $repeater->add_control(
166
+ 'image',
167
+ [
168
+ 'label' => __( 'Image', 'themeisle-companion' ),
169
+ 'type' => Controls_Manager::MEDIA,
170
+ 'condition' => [
171
+ 'type' => 'image',
172
+ ],
173
+ ]
174
+ );
175
+
176
+ $repeater->add_control(
177
+ 'link',
178
+ [
179
+ 'label' => __( 'Link to', 'themeisle-companion' ),
180
+ 'type' => Controls_Manager::URL,
181
+ 'separator' => 'before',
182
+ 'placeholder' => __( 'https://example.com', 'themeisle-companion' ),
183
+ ]
184
+ );
185
+
186
  $this->add_control(
187
  'services_list',
188
  [
220
  'type' => 'icon',
221
  ],
222
  ],
223
+ 'fields' => $repeater->get_controls(),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
224
  'title_field' => '{{title}}',
225
  ]
226
  );
vendor/codeinwp/gutenberg-blocks/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ##### [Version 1.6.7](https://github.com/Codeinwp/gutenberg-blocks/compare/v1.6.6...v1.6.7) (2021-05-24)
2
 
3
  - Fix Product Review Block conflict with WooCommerce
1
+ ##### [Version 1.6.9](https://github.com/Codeinwp/gutenberg-blocks/compare/v1.6.8...v1.6.9) (2021-07-02)
2
+
3
+ - Fix links in Review Block
4
+ - Fix block defaults not working in Default Section
5
+ - Allow Custom sizes in Posts Block
6
+ - Add filter to Posts Block's query:
7
+ - Add Tabs Block:
8
+ - Add rel attribute to Review Block's Button
9
+
10
+ ##### [Version 1.6.8](https://github.com/Codeinwp/gutenberg-blocks/compare/v1.6.7...v1.6.8) (2021-06-11)
11
+
12
+ add translations over the files
13
+
14
  ##### [Version 1.6.7](https://github.com/Codeinwp/gutenberg-blocks/compare/v1.6.6...v1.6.7) (2021-05-24)
15
 
16
  - Fix Product Review Block conflict with WooCommerce
vendor/codeinwp/gutenberg-blocks/build/blocks.js CHANGED
@@ -1 +1 @@
1
- !function(e){function t(t){for(var l,a,c=t[0],i=t[1],s=t[2],m=0,u=[];m<c.length;m++)a=c[m],Object.prototype.hasOwnProperty.call(r,a)&&r[a]&&u.push(r[a][0]),r[a]=0;for(l in i)Object.prototype.hasOwnProperty.call(i,l)&&(e[l]=i[l]);for(p&&p(t);u.length;)u.shift()();return o.push.apply(o,s||[]),n()}function n(){for(var e,t=0;t<o.length;t++){for(var n=o[t],l=!0,c=1;c<n.length;c++){var i=n[c];0!==r[i]&&(l=!1)}l&&(o.splice(t--,1),e=a(a.s=n[0]))}return e}var l={},r={2:0},o=[];function a(t){if(l[t])return l[t].exports;var n=l[t]={i:t,l:!1,exports:{}};return e[t].call(n.exports,n,n.exports,a),n.l=!0,n.exports}a.e=function(e){var t=[],n=r[e];if(0!==n)if(n)t.push(n[2]);else{var l=new Promise((function(t,l){n=r[e]=[t,l]}));t.push(n[2]=l);var o,c=document.createElement("script");c.charset="utf-8",c.timeout=120,a.nc&&c.setAttribute("nonce",a.nc),c.src=function(e){return a.p+"chunk-"+({}[e]||e)+".js"}(e);var i=new Error;o=function(t){c.onerror=c.onload=null,clearTimeout(s);var n=r[e];if(0!==n){if(n){var l=t&&("load"===t.type?"missing":t.type),o=t&&t.target&&t.target.src;i.message="Loading chunk "+e+" failed.\n("+l+": "+o+")",i.name="ChunkLoadError",i.type=l,i.request=o,n[1](i)}r[e]=void 0}};var s=setTimeout((function(){o({type:"timeout",target:c})}),12e4);c.onerror=c.onload=o,document.head.appendChild(c)}return Promise.all(t)},a.m=e,a.c=l,a.d=function(e,t,n){a.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,t){if(1&t&&(e=a(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(a.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var l in e)a.d(n,l,function(t){return e[t]}.bind(null,l));return n},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},a.p="",a.oe=function(e){throw console.error(e),e};var c=window.tiOtterWebpackJsonp=window.tiOtterWebpackJsonp||[],i=c.push.bind(c);c.push=t,c=c.slice();for(var s=0;s<c.length;s++)t(c[s]);var p=i;o.push([51,0]),n()}([,,function(e,t){e.exports=React},function(e,t,n){"use strict";n.d(t,"p",(function(){return i})),n.d(t,"b",(function(){return s})),n.d(t,"e",(function(){return p})),n.d(t,"j",(function(){return m})),n.d(t,"i",(function(){return u})),n.d(t,"l",(function(){return d})),n.d(t,"k",(function(){return b})),n.d(t,"u",(function(){return g})),n.d(t,"m",(function(){return h})),n.d(t,"r",(function(){return w})),n.d(t,"q",(function(){return f})),n.d(t,"t",(function(){return y})),n.d(t,"s",(function(){return v})),n.d(t,"v",(function(){return k})),n.d(t,"c",(function(){return E})),n.d(t,"w",(function(){return T})),n.d(t,"n",(function(){return C})),n.d(t,"d",(function(){return x})),n.d(t,"o",(function(){return M})),n.d(t,"g",(function(){return S})),n.d(t,"a",(function(){return z})),n.d(t,"f",(function(){return O})),n.d(t,"h",(function(){return B}));var l=n(0),r=n.n(l),o=wp.components,a=o.Path,c=o.SVG,i=function(e){var t=e.className;return wp.element.createElement(c,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 29 32",width:"20",height:"20",className:r()("otter-icon",t)},wp.element.createElement(a,{d:"M19.831 7.877c0.001-0.003 0.001-0.005 0.001-0.009s-0-0.006-0.001-0.009l0 0c-0.047-0.081-0.092-0.164-0.132-0.247l-0.057-0.115c-0.277-0.498-0.381-0.99-1.033-1.064h-0.045c-0.001 0-0.002 0-0.003 0-0.486 0-0.883 0.382-0.908 0.862l-0 0.002c0.674 0.126 1.252 0.278 1.813 0.468l-0.092-0.027 0.283 0.096 0.147 0.053s0.028 0 0.028-0.011z"}),wp.element.createElement(a,{d:"M23.982 13.574c-0.008-2.41-0.14-4.778-0.39-7.112l0.026 0.299 0.070-0.019c0.459-0.139 0.787-0.558 0.787-1.053 0-0.479-0.307-0.887-0.735-1.037l-0.008-0.002h-0.026c-0.479-0.164-0.874-0.468-1.149-0.861l-0.005-0.007c-2.7-3.96-8.252-3.781-8.252-3.781s-5.55-0.179-8.25 3.781c-0.28 0.401-0.676 0.704-1.14 0.862l-0.016 0.005c-0.441 0.148-0.754 0.557-0.754 1.040 0 0.009 0 0.017 0 0.026l-0-0.001c-0 0.010-0.001 0.022-0.001 0.034 0 0.493 0.335 0.907 0.789 1.029l0.007 0.002 0.045 0.011c-0.224 2.034-0.356 4.403-0.364 6.801l-0 0.012s-9.493 13.012-1.277 17.515c4.733 2.431 6.881-0.769 6.881-0.769s1.397-1.661-1.784-3.355v-4.609c0.006-0.344 0.282-0.621 0.625-0.628h1.212v-0.59c0-0.275 0.223-0.498 0.498-0.498v0h1.665c0.274 0.001 0.496 0.224 0.496 0.498 0 0 0 0 0 0v0 0.59h2.721v-0.59c0-0.275 0.223-0.498 0.498-0.498v0h1.665c0.271 0.005 0.49 0.226 0.49 0.498 0 0 0 0 0 0v0 0.59h1.209c0 0 0 0 0 0 0.349 0 0.633 0.28 0.639 0.627v4.584c-3.193 1.703-1.784 3.355-1.784 3.355s2.148 3.193 6.879 0.769c8.222-4.503-1.269-17.515-1.269-17.515zM22.586 10.261c-0.097 1.461-0.67 2.772-1.563 3.797l0.007-0.008c-1.703 2.010-4.407 3.249-6.721 4.432v0c-2.325-1.177-5.026-2.416-6.736-4.432-0.883-1.019-1.455-2.329-1.555-3.769l-0.001-0.020c-0.126-2.22 0.583-5.929 3.044-6.74 2.416-0.788 3.947 1.288 4.494 2.227 0.152 0.258 0.429 0.428 0.745 0.428s0.593-0.17 0.743-0.424l0.002-0.004c0.551-0.932 2.080-3.008 4.494-2.22 2.474 0.805 3.174 4.513 3.046 6.734z"}),wp.element.createElement(a,{d:"M19.463 10.087h-0.028c-0.192 0.026-0.121 0.251-0.047 0.356 0.254 0.349 0.407 0.787 0.407 1.26 0 0.006-0 0.012-0 0.018v-0.001c-0.001 0.469-0.255 0.878-0.633 1.1l-0.006 0.003c-0.739 0.426-1.377-0.145-2.054-0.398-0.72-0.269-1.552-0.434-2.42-0.455l-0.009-0v-1.033c1.020-0.233 1.894-0.76 2.551-1.486l0.004-0.004c0.151-0.163 0.244-0.383 0.244-0.623 0-0.316-0.159-0.595-0.402-0.76l-0.003-0.002c-0.768-0.551-1.728-0.881-2.764-0.881-1.054 0-2.029 0.341-2.819 0.92l0.013-0.009c-0.224 0.166-0.367 0.429-0.367 0.726 0 0.226 0.083 0.433 0.221 0.591l-0.001-0.001c0.665 0.751 1.55 1.295 2.553 1.53l0.033 0.007v1.050c-0.742 0.021-1.448 0.14-2.118 0.343l0.057-0.015c-0.341 0.103-0.631 0.219-0.908 0.358l0.033-0.015c-0.519 0.26-1.037 0.436-1.58 0.121-0.371-0.213-0.617-0.607-0.617-1.058 0-0.002 0-0.004 0-0.007v0c0-0.002 0-0.004 0-0.007 0-0.47 0.153-0.905 0.411-1.257l-0.004 0.006c0.047-0.068 0.089-0.17 0.026-0.241s-0.189 0-0.27 0.030c-0.189 0.099-0.348 0.227-0.479 0.381l-0.002 0.002c-0.245 0.296-0.394 0.679-0.394 1.097 0 0.004 0 0.007 0 0.011v-0.001c0.008 0.706 0.393 1.321 0.964 1.651l0.009 0.005c0.296 0.178 0.654 0.283 1.036 0.283 0.364 0 0.706-0.095 1.001-0.263l-0.010 0.005c0.877-0.461 1.917-0.731 3.019-0.731 0.069 0 0.137 0.001 0.206 0.003l-0.010-0h0.030c1.277 0 2.382 0.266 3.266 0.775 0.27 0.159 0.594 0.253 0.94 0.253 0.001 0 0.002 0 0.003 0h-0c0.355-0.002 0.688-0.098 0.974-0.265l-0.009 0.005c0.606-0.357 1.007-1.007 1.007-1.75 0-0.001 0-0.003 0-0.004v0c0.001-0.026 0.002-0.056 0.002-0.086 0-0.625-0.34-1.171-0.846-1.462l-0.008-0.004c-0.056-0.040-0.125-0.065-0.199-0.070l-0.001-0zM13.101 8.831c-0.238 0.213-0.468 0.581-0.832 0.345-0.061-0.041-0.114-0.086-0.161-0.136l-0-0c-0.063-0.063-0.101-0.15-0.101-0.247 0-0.133 0.074-0.248 0.182-0.308l0.002-0.001c0.594-0.309 1.203-0.543 1.884-0.49-0.324 0.281-0.649 0.56-0.973 0.837z"}),wp.element.createElement(a,{d:"M15.89 13.578c-0.367 0.483-0.941 0.792-1.588 0.792s-1.221-0.309-1.585-0.787l-0.004-0.005c-0.064-0.103-0.177-0.171-0.306-0.171-0.199 0-0.36 0.161-0.36 0.36 0 0.091 0.034 0.174 0.090 0.238l-0-0c0.499 0.659 1.283 1.080 2.164 1.080s1.665-0.421 2.159-1.073l0.005-0.007c0.043-0.059 0.068-0.132 0.068-0.212 0-0.116-0.055-0.22-0.14-0.286l-0.001-0.001c-0.059-0.045-0.134-0.072-0.215-0.072-0.117 0-0.221 0.056-0.286 0.143l-0.001 0.001z"}),wp.element.createElement(a,{d:"M18.507 11.707c0 0.194-0.157 0.351-0.351 0.351s-0.351-0.157-0.351-0.351c0-0.194 0.157-0.351 0.351-0.351s0.351 0.157 0.351 0.351z"}),wp.element.createElement(a,{d:"M17.389 11.049c0 0.194-0.157 0.351-0.351 0.351s-0.351-0.157-0.351-0.351c0-0.194 0.157-0.351 0.351-0.351s0.351 0.157 0.351 0.351z"}),wp.element.createElement(a,{d:"M10.798 11.707c0 0.194-0.157 0.351-0.351 0.351s-0.351-0.157-0.351-0.351c0-0.194 0.157-0.351 0.351-0.351s0.351 0.157 0.351 0.351z"}),wp.element.createElement(a,{d:"M11.918 11.049c0 0.194-0.157 0.351-0.351 0.351s-0.351-0.157-0.351-0.351c0-0.194 0.157-0.351 0.351-0.351s0.351 0.157 0.351 0.351z"}),wp.element.createElement(a,{d:"M8.773 7.877c-0.001-0.003-0.002-0.005-0.002-0.009s0.001-0.006 0.002-0.009l-0 0c0.047-0.081 0.089-0.164 0.132-0.247 0.019-0.038 0.036-0.079 0.057-0.115 0.275-0.498 0.379-0.99 1.033-1.064h0.045c0 0 0.001 0 0.001 0 0.487 0 0.884 0.382 0.91 0.862l0 0.002c-0.678 0.124-1.261 0.277-1.827 0.468l0.092-0.027-0.275 0.096-0.1 0.036-0.045 0.017s-0.023 0-0.023-0.011z"}))},s=function(){return wp.element.createElement(c,{viewBox:"0 0 32 32",style:{padding:"1px",fill:"#000000"},xmlns:"http://www.w3.org/2000/svg"},wp.element.createElement(a,{d:"M17.348 20.657v-0.135c1.029-0.471 1.758-1.446 1.916-2.563 0.434-0.157 0.739-0.576 0.739-1.051 0-0.408-0.221-0.774-0.562-0.969 0.036-0.111 0.065-0.223 0.087-0.335 0.182-0.901-0.025-1.822-0.583-2.592-0.548-0.758-1.373-1.281-2.321-1.473-0.255-0.051-0.515-0.077-0.773-0.077-0.813 0-1.607 0.262-2.234 0.739-0.646 0.49-1.088 1.187-1.244 1.962-0.118 0.587-0.070 1.193 0.139 1.762-0.355 0.191-0.59 0.566-0.59 0.985 0 0.481 0.31 0.901 0.751 1.055 0.163 1.144 0.916 2.128 1.978 2.587v0.106c-2.207 0.5-3.729 2.151-3.729 4.079v0.515h10.153v-0.515c0-1.929-1.522-3.58-3.729-4.080zM15.853 12.492c0.189 0 0.381 0.019 0.569 0.057 0.693 0.14 1.293 0.519 1.689 1.066 0.369 0.511 0.518 1.111 0.423 1.701-0.507-0.237-1.173-0.487-1.874-0.583-1.318-0.18-1.339-0.241-1.417-0.469l-0.252-0.728-0.579 0.512c-0.062 0.054-0.528 0.464-1.066 0.91-0.015-0.198-0.002-0.396 0.037-0.593 0.219-1.086 1.257-1.873 2.469-1.873zM13.67 16.025c0.361-0.292 0.718-0.594 0.977-0.816 0.358 0.323 0.916 0.414 1.874 0.545 0.65 0.089 1.287 0.349 1.748 0.578v1.161c0 1.268-1.031 2.299-2.299 2.299s-2.299-1.031-2.299-2.299v-1.468zM15.682 20.81c0.213 0.019 0.425 0.017 0.635-0.006v0.318l-0.318 0.177-0.317-0.176v-0.313zM12.006 24.22c0.237-1.154 1.25-2.113 2.646-2.501v0.010l1.346 0.748 1.35-0.748v-0.010c1.396 0.388 2.409 1.348 2.646 2.502l-7.987-0zM21.076 27.499h-10.153c-0.307 0-0.556-0.249-0.556-0.556s0.249-0.556 0.556-0.556h10.153c0.307 0 0.556 0.249 0.556 0.556s-0.249 0.556-0.556 0.556zM28.112 3.393h-9.422v-1.689c0-0.832-0.677-1.509-1.509-1.509h-2.363c-0.832 0-1.509 0.677-1.509 1.509v1.689h-9.422c-0.832 0-1.509 0.677-1.509 1.509v25.395c0 0.832 0.677 1.509 1.509 1.509h24.225c0.832 0 1.509-0.677 1.509-1.509v-25.395c-0-0.832-0.677-1.509-1.509-1.509zM14.421 1.703c0-0.219 0.178-0.397 0.397-0.397h2.363c0.219 0 0.397 0.178 0.397 0.397v5.083c0 0.219-0.178 0.397-0.397 0.397h-2.363c-0.219 0-0.397-0.178-0.397-0.397v-5.083zM28.509 30.297c0 0.219-0.178 0.397-0.397 0.397h-24.225c-0.219 0-0.397-0.178-0.397-0.397v-25.395c0-0.219 0.178-0.397 0.397-0.397h9.422v2.282c0 0.832 0.677 1.509 1.509 1.509h2.363c0.832 0 1.509-0.677 1.509-1.509v-2.282h9.422c0.219 0 0.397 0.178 0.397 0.397v25.395z"}))},p=function(){return wp.element.createElement(c,{viewBox:"0 0 32 32",style:{padding:"1px",fill:"#000000"},xmlns:"http://www.w3.org/2000/svg"},wp.element.createElement(a,{d:"M30.457 11.777h-28.914c-0.829 0-1.503 0.674-1.503 1.503v5.606c0 0.829 0.674 1.503 1.503 1.503h28.914c0.829 0 1.503-0.674 1.503-1.503v-5.606c-0-0.829-0.674-1.503-1.503-1.503zM30.84 18.886c0 0.211-0.172 0.383-0.383 0.383h-28.914c-0.211 0-0.383-0.172-0.383-0.383v-5.606c0-0.211 0.172-0.383 0.383-0.383h28.914c0.211 0 0.383 0.172 0.383 0.383v5.606zM4.67 15.133c-0.525 0-0.95 0.425-0.95 0.95s0.425 0.95 0.95 0.95 0.95-0.425 0.95-0.95c0-0.525-0.425-0.95-0.95-0.95zM7.947 15.133c-0.525 0-0.95 0.425-0.95 0.95s0.425 0.95 0.95 0.95c0.525 0 0.95-0.425 0.95-0.95s-0.425-0.95-0.95-0.95zM11.224 15.133c-0.525 0-0.95 0.425-0.95 0.95s0.425 0.95 0.95 0.95c0.525 0 0.95-0.425 0.95-0.95s-0.425-0.95-0.95-0.95zM27.871 15.523h-11.386c-0.309 0-0.56 0.251-0.56 0.56s0.251 0.56 0.56 0.56h11.386c0.309 0 0.56-0.251 0.56-0.56s-0.251-0.56-0.56-0.56zM30.457 23.388h-28.914c-0.829 0-1.503 0.674-1.503 1.503v5.606c0 0.829 0.674 1.503 1.503 1.503h28.914c0.829 0 1.503-0.674 1.503-1.503v-5.606c-0-0.829-0.674-1.503-1.503-1.503zM30.84 30.497c0 0.211-0.172 0.383-0.383 0.383h-28.914c-0.211 0-0.383-0.172-0.383-0.383v-5.606c0-0.211 0.172-0.383 0.383-0.383h28.914c0.211 0 0.383 0.172 0.383 0.383v5.606zM4.67 26.744c-0.525 0-0.95 0.425-0.95 0.95s0.425 0.95 0.95 0.95 0.95-0.425 0.95-0.95c0-0.525-0.425-0.95-0.95-0.95zM7.947 26.744c-0.525 0-0.95 0.425-0.95 0.95s0.425 0.95 0.95 0.95c0.525 0 0.95-0.425 0.95-0.95s-0.425-0.95-0.95-0.95zM11.224 26.744c-0.525 0-0.95 0.425-0.95 0.95s0.425 0.95 0.95 0.95c0.525 0 0.95-0.425 0.95-0.95s-0.425-0.95-0.95-0.95zM27.871 27.134h-11.386c-0.309 0-0.56 0.251-0.56 0.56s0.251 0.56 0.56 0.56h11.386c0.309 0 0.56-0.251 0.56-0.56s-0.251-0.56-0.56-0.56zM30.457 0h-28.914c-0.829 0-1.503 0.674-1.503 1.503v5.606c0 0.829 0.674 1.503 1.503 1.503h28.914c0.829 0 1.503-0.674 1.503-1.503v-5.606c0-0.829-0.674-1.503-1.503-1.503zM30.84 7.109c0 0.211-0.172 0.383-0.383 0.383h-28.914c-0.211 0-0.383-0.172-0.383-0.383v-5.606c0-0.211 0.172-0.383 0.383-0.383h28.914c0.211 0 0.383 0.172 0.383 0.383v5.606zM5.62 4.306c0 0.525-0.425 0.95-0.95 0.95s-0.95-0.425-0.95-0.95c0-0.525 0.425-0.95 0.95-0.95s0.95 0.425 0.95 0.95zM7.947 3.356c-0.525 0-0.95 0.425-0.95 0.95s0.425 0.95 0.95 0.95c0.525 0 0.95-0.425 0.95-0.95s-0.425-0.95-0.95-0.95zM11.224 3.356c-0.525 0-0.95 0.425-0.95 0.95s0.425 0.95 0.95 0.95c0.525 0 0.95-0.425 0.95-0.95s-0.425-0.95-0.95-0.95zM27.871 3.746h-11.386c-0.309 0-0.56 0.251-0.56 0.56s0.251 0.56 0.56 0.56h11.386c0.309 0 0.56-0.251 0.56-0.56s-0.251-0.56-0.56-0.56z"}))},m=function(){return wp.element.createElement(c,{viewBox:"0 0 32 32",style:{padding:"1px",fill:"#000000"},xmlns:"http://www.w3.org/2000/svg"},wp.element.createElement(a,{d:"M30.584 0.099h-29.068c-0.781 0-1.417 0.635-1.417 1.416v29.068c0 0.781 0.635 1.416 1.417 1.416h29.068c0.781 0 1.416-0.635 1.416-1.416v-29.068c0-0.781-0.635-1.416-1.416-1.416zM1.515 1.219h29.068c0.163 0 0.296 0.133 0.296 0.296v3.476h-29.661v-3.476c0-0.163 0.133-0.296 0.296-0.296zM30.584 30.88h-29.068c-0.163 0-0.296-0.133-0.296-0.296v-24.472h29.661v24.472c0 0.163-0.133 0.296-0.296 0.296zM26.999 20.461h-21.062c-0.838 0-1.52 0.682-1.52 1.52v5.601c0 0.838 0.682 1.52 1.52 1.52h21.062c0.838 0 1.52-0.682 1.52-1.52v-5.601c0-0.838-0.682-1.52-1.52-1.52zM27.399 27.582c0 0.221-0.18 0.4-0.4 0.4h-21.062c-0.221 0-0.4-0.18-0.4-0.4v-5.601c0-0.221 0.179-0.4 0.4-0.4h21.062c0.221 0 0.4 0.179 0.4 0.4v5.601zM5.937 16.247h5.432c0.838 0 1.52-0.682 1.52-1.52v-5.432c0-0.838-0.682-1.52-1.52-1.52h-5.432c-0.838 0-1.52 0.682-1.52 1.52v5.432c0 0.838 0.682 1.52 1.52 1.52zM5.537 9.294c0-0.221 0.179-0.4 0.4-0.4h5.432c0.221 0 0.4 0.179 0.4 0.4v5.432c0 0.221-0.18 0.4-0.4 0.4h-5.432c-0.221 0-0.4-0.18-0.4-0.4v-5.432zM27.959 17.714h-22.982c-0.309 0-0.56 0.251-0.56 0.56s0.251 0.56 0.56 0.56h22.982c0.309 0 0.56-0.251 0.56-0.56s-0.251-0.56-0.56-0.56zM27.959 14.793h-12.696c-0.309 0-0.56 0.251-0.56 0.56s0.251 0.56 0.56 0.56h12.696c0.309 0 0.56-0.251 0.56-0.56s-0.251-0.56-0.56-0.56zM27.959 11.433h-12.696c-0.309 0-0.56 0.251-0.56 0.56s0.251 0.56 0.56 0.56h12.696c0.309 0 0.56-0.251 0.56-0.56s-0.251-0.56-0.56-0.56zM27.959 8.072h-12.696c-0.309 0-0.56 0.251-0.56 0.56s0.251 0.56 0.56 0.56h12.696c0.309 0 0.56-0.251 0.56-0.56s-0.251-0.56-0.56-0.56zM4.543 3.051c0 0.497-0.403 0.9-0.9 0.9s-0.9-0.403-0.9-0.9c0-0.497 0.403-0.9 0.9-0.9s0.9 0.403 0.9 0.9zM7.384 3.051c0 0.497-0.403 0.9-0.9 0.9s-0.9-0.403-0.9-0.9c0-0.497 0.403-0.9 0.9-0.9s0.9 0.403 0.9 0.9zM10.224 3.051c0 0.497-0.403 0.9-0.9 0.9s-0.9-0.403-0.9-0.9c0-0.497 0.403-0.9 0.9-0.9s0.9 0.403 0.9 0.9z"}))},u=function(){return wp.element.createElement(c,{viewBox:"0 0 32 32",style:{padding:"1px",fill:"#000000"},xmlns:"http://www.w3.org/2000/svg"},wp.element.createElement(a,{d:"M31.276 3.351h-14.587l-3.23-3.028c-0.103-0.097-0.239-0.15-0.38-0.15h-12.354c-0.307 0-0.556 0.249-0.556 0.556v30.697c0 0.307 0.249 0.556 0.556 0.556h30.551c0.307 0 0.556-0.249 0.556-0.556v-27.518c0-0.307-0.249-0.556-0.556-0.556zM1.281 1.286h11.578l3.23 3.028c0.103 0.097 0.239 0.15 0.38 0.15h14.25v3.013h-29.439v-6.191zM30.719 30.87h-29.439v-22.281h29.439v22.281z"}))},d=function(){return wp.element.createElement(c,{viewBox:"0 0 32 32",style:{padding:"1px",fill:"#000000"},xmlns:"http://www.w3.org/2000/svg"},wp.element.createElement(a,{d:"M30.958 13.988h-0.64c-0.572-5.298-4.029-9.744-8.764-11.73h5.439v0.555c0 0.309 0.25 0.559 0.559 0.559h2.23c0.309 0 0.559-0.25 0.559-0.559v-2.229c0-0.309-0.25-0.559-0.559-0.559h-2.23c-0.309 0-0.559 0.25-0.559 0.559v0.555h-9.319v-0.555c0-0.309-0.25-0.559-0.559-0.559h-2.23c-0.309 0-0.559 0.25-0.559 0.559v0.555h-9.319v-0.555c0-0.309-0.25-0.559-0.559-0.559h-2.229c-0.309 0-0.559 0.25-0.559 0.559v2.229c0 0.309 0.25 0.559 0.559 0.559h2.229c0.309 0 0.559-0.25 0.559-0.559v-0.555h5.439c-4.735 1.987-8.191 6.432-8.764 11.73h-0.64c-0.309 0-0.559 0.25-0.559 0.559v2.229c0 0.309 0.25 0.559 0.559 0.559h2.23c0.309 0 0.559-0.25 0.559-0.559v-2.229c0-0.309-0.25-0.559-0.559-0.559h-0.464c0.709-6.044 5.49-10.86 11.518-11.621v0.446c0 0.309 0.25 0.559 0.559 0.559h2.23c0.309 0 0.559-0.25 0.559-0.559v-0.446c6.028 0.761 10.809 5.578 11.518 11.621h-0.464c-0.309 0-0.559 0.25-0.559 0.559v2.23c0 0.309 0.25 0.559 0.559 0.559h2.23c0.309 0 0.559-0.25 0.559-0.559v-2.229c0-0.309-0.25-0.559-0.559-0.559zM29.223 2.253h-1.111v-1.111h1.111v1.111zM2.777 1.142h1.111v1.111h-1.111v-1.111zM2.712 15.608v0.609h-1.111v-0.973c0.001-0.046 0.002-0.092 0.003-0.138h1.108v0.501zM16 1.142c0.186 0 0.371 0.005 0.555 0.012v1.099h-1.111v-1.099c0.184-0.007 0.37-0.012 0.556-0.012zM30.399 15.25v0.967h-1.111v-1.111h1.107c0.002 0.048 0.003 0.096 0.004 0.144zM16.512 4.461c-0.089-0.204-0.29-0.336-0.513-0.336s-0.424 0.132-0.513 0.336l-7.287 16.694c-0.058 0.134-0.062 0.285-0.011 0.421l0.009 0.023c0.059 0.157 0.186 0.279 0.345 0.333 1.743 0.585 2.914 2.213 2.914 4.052 0 0.766-0.206 1.518-0.595 2.175-0.012 0.020-0.022 0.041-0.032 0.063-0.063 0.091-0.101 0.201-0.101 0.32v2.832c0 0.307 0.248 0.557 0.555 0.559l9.42 0.068c0.001 0 0.003 0 0.004 0 0.307 0 0.557-0.248 0.559-0.555 0.002-0.309-0.246-0.561-0.555-0.563l-8.865-0.064v-1.405h8.654c0.234 0 0.443-0.145 0.524-0.364l0.153-0.41c0.059-0.158 0.043-0.335-0.043-0.48-0.389-0.657-0.595-1.409-0.595-2.174 0-1.838 1.171-3.467 2.914-4.052 0.16-0.054 0.287-0.176 0.346-0.334l0.009-0.023c0.051-0.136 0.047-0.287-0.011-0.42l-7.287-16.694zM16 20.028c0.619 0 1.122 0.503 1.122 1.122s-0.504 1.122-1.122 1.122c-0.619 0-1.122-0.503-1.122-1.122s0.503-1.122 1.122-1.122zM19.424 25.983c0 0.802 0.179 1.591 0.52 2.31h-7.887c0.341-0.719 0.52-1.509 0.52-2.31 0-2.121-1.235-4.020-3.127-4.894l5.991-13.726v11.616c-0.966 0.249-1.682 1.128-1.682 2.17 0 1.236 1.005 2.241 2.241 2.241s2.241-1.005 2.241-2.241c0-1.043-0.716-1.921-1.682-2.17v-11.616l5.991 13.726c-1.892 0.874-3.127 2.773-3.127 4.894z"}))},b=function(){return wp.element.createElement(c,{viewBox:"0 0 32 32",style:{padding:"1px",fill:"#000000"},xmlns:"http://www.w3.org/2000/svg"},wp.element.createElement(a,{d:"M30.424 0.171h-28.847c-0.775 0-1.406 0.631-1.406 1.406v28.848c0 0.775 0.631 1.406 1.406 1.406h28.847c0.775 0 1.406-0.631 1.406-1.406v-28.848c0-0.775-0.631-1.406-1.406-1.406zM1.576 1.282h28.847c0.162 0 0.294 0.132 0.294 0.294v3.45h-29.435v-3.45c0-0.162 0.132-0.294 0.294-0.294zM30.424 30.718h-28.847c-0.162 0-0.294-0.132-0.294-0.294v-24.286h29.435v24.286c0 0.162-0.132 0.294-0.294 0.294zM3.688 3.994c0.493 0 0.893-0.4 0.893-0.893s-0.4-0.893-0.893-0.893-0.893 0.4-0.893 0.893c0 0.493 0.4 0.893 0.893 0.893zM6.507 3.994c0.493 0 0.893-0.4 0.893-0.893s-0.4-0.893-0.893-0.893-0.893 0.4-0.893 0.893c0 0.493 0.4 0.893 0.893 0.893zM9.326 3.994c0.493 0 0.893-0.4 0.893-0.893s-0.4-0.893-0.893-0.893-0.893 0.4-0.893 0.893c0 0.493 0.4 0.893 0.893 0.893zM20.662 19.394l3.855-3.758c0.152-0.148 0.206-0.369 0.141-0.57s-0.239-0.348-0.449-0.378l-5.328-0.774-2.383-4.828c-0.094-0.19-0.287-0.31-0.498-0.31s-0.405 0.12-0.498 0.31l-2.383 4.828-5.328 0.774c-0.209 0.030-0.383 0.177-0.449 0.378s-0.011 0.422 0.141 0.57l3.855 3.758-0.91 5.307c-0.036 0.209 0.050 0.419 0.221 0.544s0.398 0.141 0.585 0.042l4.766-2.506 4.766 2.506c0.081 0.043 0.17 0.064 0.259 0.064 0.115 0 0.23-0.036 0.327-0.106 0.171-0.124 0.257-0.335 0.221-0.544l-0.91-5.307zM16.259 21.661c-0.162-0.085-0.355-0.085-0.517 0l-4.027 2.117 0.769-4.485c0.031-0.18-0.029-0.364-0.16-0.492l-3.258-3.176 4.503-0.654c0.181-0.026 0.338-0.14 0.418-0.304l2.014-4.080 2.014 4.080c0.081 0.164 0.238 0.278 0.419 0.304l4.503 0.654-3.258 3.176c-0.131 0.128-0.191 0.312-0.16 0.492l0.769 4.485-4.027-2.117zM16 25.179c-0.307 0-0.556 0.249-0.556 0.556v1.887c0 0.307 0.249 0.556 0.556 0.556s0.556-0.249 0.556-0.556v-1.887c0-0.307-0.249-0.556-0.556-0.556zM25.319 20.446l-1.794-0.583c-0.293-0.095-0.606 0.065-0.7 0.357s0.065 0.606 0.357 0.7l1.794 0.583c0.057 0.019 0.115 0.027 0.172 0.027 0.234 0 0.452-0.149 0.529-0.384 0.095-0.292-0.065-0.606-0.357-0.7zM20.218 12.197c0.099 0.072 0.213 0.106 0.326 0.106 0.172 0 0.341-0.079 0.45-0.229l1.109-1.526c0.18-0.248 0.125-0.596-0.123-0.776s-0.596-0.125-0.776 0.123l-1.109 1.526c-0.18 0.248-0.125 0.596 0.123 0.776zM11.006 12.075c0.109 0.15 0.278 0.229 0.45 0.229 0.113 0 0.228-0.034 0.326-0.106 0.248-0.18 0.303-0.528 0.123-0.776l-1.109-1.526c-0.18-0.248-0.528-0.303-0.776-0.123s-0.303 0.528-0.123 0.776l1.109 1.526zM8.475 19.863l-1.794 0.583c-0.292 0.095-0.452 0.408-0.357 0.7 0.076 0.235 0.294 0.384 0.529 0.384 0.057 0 0.115-0.009 0.172-0.027l1.794-0.583c0.292-0.095 0.452-0.408 0.357-0.7s-0.408-0.452-0.7-0.357z"}))},g=function(){return wp.element.createElement(c,{viewBox:"0 0 32 32",style:{padding:"1px",fill:"#000000"},xmlns:"http://www.w3.org/2000/svg"},wp.element.createElement(a,{d:"M6.348 13.197c-0.308 0-0.557 0.249-0.557 0.557s0.249 0.557 0.557 0.557c0.495 0 1.655 0.598 1.655 1.759 0 0.308 0.249 0.557 0.557 0.557s0.557-0.249 0.557-0.557c0-1.886-1.803-2.873-2.769-2.873zM25.842 3.161c0.495 0 1.655 0.598 1.655 1.759 0 0.308 0.249 0.557 0.557 0.557s0.557-0.249 0.557-0.557c0-1.886-1.802-2.873-2.769-2.873-0.308 0-0.557 0.249-0.557 0.557s0.249 0.557 0.557 0.557zM25.742 22.433c-0.826 0-1.641 0.22-2.359 0.636-0.567 0.328-1.040 0.758-1.41 1.252l-11.344-6.569c0.069-0.174 0.13-0.353 0.179-0.537 0.276-1.036 0.194-2.11-0.226-3.079l11.319-6.555c0.878 1.235 2.316 1.986 3.848 1.986 0.825 0 1.641-0.22 2.359-0.636 1.090-0.631 1.869-1.649 2.194-2.866s0.155-2.488-0.476-3.578c-0.841-1.452-2.406-2.353-4.085-2.353-0.826 0-1.641 0.22-2.359 0.636-2.051 1.188-2.872 3.694-2.015 5.833l-11.344 6.569c-0.884-1.176-2.285-1.888-3.776-1.888-0.825 0-1.641 0.22-2.359 0.636-2.25 1.303-3.021 4.194-1.718 6.444 0.841 1.452 2.406 2.353 4.085 2.353 0.826 0 1.641-0.22 2.359-0.636 0.595-0.345 1.097-0.805 1.483-1.35l11.319 6.554c-0.567 1.323-0.526 2.888 0.249 4.227 0.841 1.452 2.406 2.353 4.085 2.353 0.825 0 1.641-0.22 2.359-0.636 1.090-0.631 1.869-1.649 2.194-2.866s0.155-2.488-0.476-3.578c-0.841-1.452-2.406-2.353-4.085-2.353zM23.941 1.734c0.549-0.318 1.171-0.486 1.801-0.486 1.283 0 2.479 0.689 3.121 1.798 0.482 0.833 0.611 1.803 0.363 2.733s-0.843 1.707-1.675 2.189c-0.549 0.318-1.171 0.486-1.801 0.486-1.283 0-2.479-0.689-3.121-1.798-0.995-1.719-0.407-3.927 1.312-4.922zM8.056 19.117c-0.549 0.318-1.171 0.486-1.801 0.486-1.283 0-2.479-0.689-3.121-1.797-0.995-1.719-0.407-3.927 1.312-4.922 0.549-0.318 1.171-0.486 1.801-0.486 1.283 0 2.479 0.689 3.121 1.798 0.482 0.833 0.611 1.803 0.363 2.733s-0.843 1.707-1.675 2.189zM29.226 28.077c-0.248 0.93-0.843 1.707-1.675 2.189-0.549 0.318-1.171 0.486-1.801 0.486-1.283 0-2.479-0.689-3.121-1.797-0.995-1.719-0.407-3.927 1.312-4.922 0.549-0.318 1.171-0.486 1.801-0.486 1.283 0 2.479 0.689 3.121 1.798 0.482 0.832 0.611 1.803 0.363 2.733zM25.842 24.346c-0.308 0-0.557 0.249-0.557 0.557s0.249 0.557 0.557 0.557c0.495 0 1.655 0.598 1.655 1.759 0 0.308 0.249 0.557 0.557 0.557s0.557-0.249 0.557-0.557c0-1.886-1.802-2.873-2.769-2.873z"}))},h=function(){return wp.element.createElement(c,{viewBox:"0 0 32 32",style:{padding:"1px",fill:"#000000"},xmlns:"http://www.w3.org/2000/svg"},wp.element.createElement(a,{d:"M16 27.667l7.849-7.849c0.146-0.139 0.464-0.469 0.478-0.483l0.006-0.007c1.972-2.116 3.059-4.874 3.059-7.766 0-6.282-5.11-11.392-11.392-11.392s-11.392 5.11-11.392 11.392c0 2.893 1.086 5.651 3.058 7.766l8.334 8.339zM16 1.265c5.677 0 10.297 4.619 10.297 10.297 0 2.613-0.981 5.104-2.761 7.016-0.092 0.096-0.343 0.353-0.446 0.451l-7.089 7.089-7.539-7.543c-1.779-1.911-2.758-4.401-2.758-7.012 0-5.678 4.619-10.297 10.297-10.297zM17.755 4.005c1.966 0 5.792 2.149 5.792 6.090 0 0.303 0.245 0.548 0.548 0.548s0.548-0.245 0.548-0.548c0-2.051-0.906-3.953-2.552-5.354-1.306-1.112-3.008-1.831-4.335-1.831-0.302 0-0.548 0.245-0.548 0.548s0.245 0.548 0.548 0.548zM22.875 24.197c-0.427-0.174-0.886-0.33-1.371-0.467l-0.897 0.897c2.645 0.631 4.275 1.756 4.275 2.802 0 1.564-3.648 3.306-8.882 3.306s-8.882-1.742-8.882-3.306c0-1.045 1.631-2.171 4.275-2.802l-0.897-0.897c-0.485 0.137-0.944 0.293-1.371 0.467-2.001 0.818-3.102 1.966-3.102 3.232s1.102 2.415 3.102 3.232c1.845 0.754 4.287 1.169 6.875 1.169s5.030-0.415 6.875-1.169c2.001-0.818 3.102-1.966 3.102-3.232s-1.102-2.415-3.102-3.232zM16.032 16.804c-3.043 0-5.519-2.476-5.519-5.519s2.476-5.519 5.519-5.519c3.043 0 5.519 2.476 5.519 5.519s-2.476 5.519-5.519 5.519zM16.032 6.862c-2.439 0-4.423 1.984-4.423 4.423s1.984 4.423 4.423 4.423c2.439 0 4.423-1.984 4.423-4.423s-1.984-4.423-4.423-4.423z"}))},w=function(){return wp.element.createElement(c,{viewBox:"0 0 32 32",style:{padding:"1px",fill:"#000000"},xmlns:"http://www.w3.org/2000/svg"},wp.element.createElement(a,{d:"M4.285 5.775c0.004 0 0.009 0.001 0.013 0.001h8.279c0.307 0 0.556-0.249 0.556-0.556s-0.249-0.556-0.556-0.556h-8.279c-0.307 0-0.556 0.249-0.556 0.556 0 0.302 0.242 0.548 0.542 0.555zM3.743 8.005c0 0.307 0.249 0.556 0.556 0.556h13.679c0.307 0 0.556-0.249 0.556-0.556s-0.249-0.556-0.556-0.556h-13.679c-0.307 0-0.556 0.249-0.556 0.556zM17.977 10.236h-13.679c-0.145 0-0.276 0.056-0.375 0.147-0.11 0.102-0.18 0.247-0.18 0.409 0 0.307 0.249 0.556 0.556 0.556h13.679c0.307 0 0.556-0.249 0.556-0.556 0-0.162-0.070-0.307-0.18-0.409-0.099-0.091-0.23-0.147-0.375-0.147zM17.977 13.022h-13.679c-0.307 0-0.556 0.249-0.556 0.556s0.249 0.556 0.556 0.556h13.679c0.307 0 0.556-0.249 0.556-0.556s-0.249-0.556-0.556-0.556zM17.977 15.807h-13.679c-0.145 0-0.276 0.056-0.375 0.147-0.11 0.102-0.18 0.247-0.18 0.409 0 0.307 0.249 0.556 0.556 0.556h13.679c0.307 0 0.556-0.249 0.556-0.556 0-0.162-0.070-0.307-0.18-0.409-0.099-0.091-0.23-0.147-0.375-0.147zM17.977 18.593h-13.679c-0.307 0-0.556 0.249-0.556 0.555s0.249 0.556 0.556 0.556h13.679c0.307 0 0.556-0.249 0.556-0.556s-0.249-0.555-0.556-0.555zM17.977 21.379h-13.679c-0.307 0-0.556 0.249-0.556 0.556s0.249 0.556 0.556 0.556h13.679c0.307 0 0.556-0.249 0.556-0.556s-0.249-0.556-0.556-0.556zM17.977 24.165h-13.679c-0.145 0-0.276 0.056-0.375 0.147-0.11 0.102-0.18 0.247-0.18 0.409 0 0.307 0.249 0.556 0.556 0.556h13.679c0.307 0 0.556-0.249 0.556-0.556 0-0.162-0.070-0.307-0.18-0.409-0.099-0.091-0.23-0.147-0.375-0.147zM21.93 4.466l-4.277-3.87c-0.094-0.085-0.212-0.132-0.334-0.139h-15.831c-0.812 0-1.473 0.664-1.473 1.481v28.153c0 0.817 0.661 1.481 1.473 1.481h19.174c0.812 0 1.473-0.664 1.473-1.481v-25.222c-0.008-0.163-0.086-0.308-0.205-0.403zM17.833 2.238l2.331 2.109h-2.331v-2.109zM21.043 30.091c0 0.215-0.171 0.39-0.381 0.39h-19.174c-0.21 0-0.382-0.175-0.382-0.39v-28.153c0-0.215 0.171-0.39 0.382-0.39h15.251v3.348c0 0.303 0.245 0.549 0.547 0.549h3.758v24.647zM31.975 3.213c-0.125-1.57-1.442-2.809-3.044-2.809-0 0-0 0-0 0-0.816 0-1.583 0.318-2.16 0.895-0.519 0.519-0.827 1.191-0.884 1.915h-0.010v0.242c0 0.001-0 0.002-0 0.003s0 0.001 0 0.001l-0 24.342h0.003c0.010 0.096 0.045 0.191 0.108 0.273l2.509 3.305c0.103 0.136 0.264 0.216 0.435 0.216s0.331-0.080 0.435-0.216l2.508-3.305c0.063-0.083 0.098-0.177 0.108-0.274h0.003v-24.589h-0.011zM27.543 2.070c0.371-0.371 0.864-0.575 1.388-0.575h0c0.893 0 1.649 0.6 1.886 1.417h-3.772c0.091-0.315 0.26-0.604 0.498-0.842zM28.362 26.711l-1.394 0 0-22.406h3.926v22.406h-1.442l0-18.071-1.090 0 0 18.071zM28.931 30.148l-1.781-2.346 3.562-0-1.781 2.346z"}))},f=function(){return wp.element.createElement(c,{viewBox:"0 0 32 32",style:{padding:"1px",fill:"#000000"},xmlns:"http://www.w3.org/2000/svg"},wp.element.createElement(a,{d:"M31.908 1.543c0-0.815-0.677-1.478-1.51-1.478h-28.731c-0.815 0-1.478 0.677-1.478 1.51v14.441c0 0.022 0.002 0.044 0.004 0.065-0.003 0.021-0.004 0.043-0.004 0.065v14.357c0 0.815 0.677 1.478 1.51 1.478h28.731c0.815 0 1.478-0.677 1.478-1.51v-14.441c0-0.022-0.002-0.044-0.004-0.065 0.003-0.021 0.004-0.043 0.004-0.065v-14.357zM30.792 1.543v13.799h-4.324c0.587-0.66 0.932-1.525 0.932-2.453 0-0.737-0.218-1.423-0.592-2-0.648-1.066-1.82-1.78-3.156-1.78-2.034 0-3.689 1.655-3.689 3.689 0 0.745 0.223 1.449 0.615 2.039 0.111 0.178 0.236 0.347 0.376 0.504h-4.372v-6.025c0-0.184-0.090-0.347-0.228-0.449-0.101-0.103-0.242-0.167-0.398-0.167h-0.173c-0.24 0-0.453 0.153-0.529 0.38-0.352 1.049-1.332 1.754-2.439 1.754-0.419 0-0.815-0.101-1.166-0.28-0.776-0.444-1.301-1.279-1.301-2.235 0-1.419 1.154-2.574 2.574-2.574 0.408 0 0.799 0.096 1.147 0.27 0.546 0.305 0.976 0.804 1.185 1.426 0.052 0.155 0.169 0.275 0.314 0.335 0.092 0.065 0.204 0.103 0.322 0.103h0.133c0.308 0 0.558-0.25 0.558-0.558v-6.142h13.816c0.217 0 0.394 0.162 0.394 0.362zM1.305 1.575c0-0.217 0.162-0.394 0.362-0.394h13.732v4.404c-0.239-0.216-0.505-0.401-0.793-0.549-0.536-0.297-1.148-0.464-1.791-0.464-2.034 0-3.689 1.655-3.689 3.689 0 1.423 0.81 2.659 1.992 3.274 0.534 0.301 1.149 0.473 1.804 0.473 0.939 0 1.813-0.354 2.476-0.955v4.404h-6.016c-0.308 0-0.558 0.25-0.558 0.558v0.173c0 0.127 0.043 0.245 0.117 0.34 0.065 0.129 0.178 0.231 0.321 0.279 0.562 0.189 1.023 0.558 1.332 1.030 0.232 0.39 0.364 0.842 0.364 1.318 0 1.419-1.154 2.574-2.574 2.574-0.894 0-1.682-0.458-2.144-1.151-0.236-0.389-0.372-0.844-0.372-1.331-0-1.107 0.705-2.087 1.754-2.44 0.227-0.076 0.38-0.289 0.38-0.529v-0.133c0-0.106-0.030-0.204-0.081-0.288-0.068-0.231-0.282-0.4-0.535-0.4h-6.084v-13.883zM1.305 30.505v-13.799h4.324c-0.587 0.66-0.932 1.525-0.932 2.453 0 0.737 0.218 1.424 0.592 2 0.647 1.066 1.82 1.78 3.156 1.78 2.034 0 3.689-1.655 3.689-3.689-0-0.745-0.223-1.449-0.615-2.040-0.111-0.178-0.236-0.347-0.376-0.504h4.372v6.025c0 0.184 0.090 0.347 0.228 0.449 0.101 0.103 0.242 0.167 0.398 0.167h0.173c0.24 0 0.453-0.153 0.529-0.38 0.352-1.049 1.332-1.754 2.439-1.754 0.419 0 0.815 0.101 1.165 0.28 0.776 0.444 1.301 1.279 1.301 2.236 0 1.419-1.154 2.574-2.574 2.574-0.408 0-0.799-0.096-1.147-0.27-0.546-0.305-0.976-0.804-1.185-1.426-0.052-0.155-0.169-0.275-0.314-0.336-0.092-0.065-0.204-0.103-0.322-0.103h-0.133c-0.308 0-0.558 0.25-0.558 0.558v6.142h-13.816c-0.217-0-0.394-0.163-0.394-0.362zM30.792 30.472c0 0.217-0.162 0.394-0.362 0.394h-13.732v-4.404c0.239 0.216 0.505 0.401 0.792 0.548 0.536 0.297 1.148 0.464 1.791 0.464 2.034 0 3.689-1.655 3.689-3.689 0-1.423-0.81-2.659-1.993-3.274-0.534-0.301-1.149-0.473-1.804-0.473-0.939 0-1.813 0.354-2.476 0.955v-4.404h6.016c0.308 0 0.558-0.25 0.558-0.558v-0.173c0-0.126-0.044-0.245-0.117-0.34-0.064-0.129-0.178-0.231-0.321-0.279-0.562-0.189-1.023-0.558-1.332-1.030-0.232-0.389-0.363-0.842-0.363-1.318 0-1.419 1.154-2.574 2.574-2.574 0.894 0 1.682 0.458 2.144 1.151 0.236 0.389 0.372 0.844 0.372 1.331 0 1.107-0.705 2.087-1.754 2.439-0.227 0.076-0.38 0.289-0.38 0.529v0.133c0 0.106 0.030 0.204 0.081 0.289 0.068 0.231 0.282 0.4 0.535 0.4h6.084v13.883z"}))},y=function(){return wp.element.createElement(c,{viewBox:"0 0 32 32",style:{padding:"1px",fill:"#000000"},xmlns:"http://www.w3.org/2000/svg"},wp.element.createElement(a,{d:"M15.517 23.581c-0.036 0.002-0.069-0.003-0.102-0.009-0.108-0.019-0.211-0.070-0.294-0.153l-9.153-9.153c-0.104-0.104-0.162-0.245-0.162-0.392s0.058-0.288 0.163-0.392l2.13-2.129c0.217-0.217 0.568-0.217 0.784 0l6.633 6.633 12.94-12.94c0.217-0.217 0.568-0.217 0.785 0l2.13 2.13c0.104 0.104 0.163 0.245 0.163 0.392s-0.058 0.288-0.162 0.392l-15.46 15.46c-0.104 0.104-0.245 0.163-0.392 0.163zM7.145 13.873l8.37 8.37 14.678-14.678-1.345-1.345-12.94 12.94c-0.217 0.217-0.568 0.217-0.785 0l-6.633-6.633-1.345 1.345zM30.087 11.781c0.401 1.337 0.618 2.753 0.618 4.219 0 8.108-6.596 14.704-14.705 14.704s-14.704-6.596-14.704-14.704c0-8.108 6.596-14.705 14.704-14.705 3.79 0 7.25 1.442 9.86 3.805l0.785-0.785c-2.812-2.564-6.549-4.129-10.645-4.129-8.72 0-15.814 7.094-15.814 15.814s7.094 15.814 15.814 15.814c8.72 0 15.814-7.094 15.814-15.814 0-1.784-0.297-3.501-0.845-5.102l-0.883 0.883z"}))},v=function(){return wp.element.createElement(c,{viewBox:"0 0 32 32",style:{padding:"1px",fill:"#000000"},xmlns:"http://www.w3.org/2000/svg"},wp.element.createElement(a,{d:"M17.425 25.368h-3.22v-2.107c-1.234-0.109-2.518-0.463-3.389-0.944l-0.373-0.206 0.93-3.628 0.622 0.341c0.602 0.33 1.835 0.883 3.323 0.883 0.769 0 1.545-0.244 1.545-0.789 0-0.365-0.235-0.783-1.938-1.358-1.985-0.668-4.264-1.78-4.264-4.477 0-2.098 1.387-3.709 3.652-4.289v-2.162h3.22v1.931c1.366 0.11 2.263 0.465 2.838 0.736l0.416 0.196-0.937 3.53-0.621-0.298c-0.539-0.259-1.442-0.692-2.853-0.692-0.488 0-1.307 0.088-1.307 0.681 0 0.448 1.192 0.94 2.231 1.319 2.781 0.973 3.971 2.344 3.971 4.58 0 1.114-0.391 2.124-1.13 2.922-0.668 0.721-1.601 1.236-2.716 1.503v2.328zM15.307 24.266h1.016v-2.139l0.457-0.079c2.090-0.36 3.389-1.676 3.389-3.433 0-1.446-0.551-2.601-3.24-3.542-1.624-0.592-2.962-1.176-2.962-2.357 0-0.862 0.633-1.783 2.409-1.783 1.213 0 2.119 0.278 2.746 0.536l0.36-1.354c-0.565-0.222-1.372-0.445-2.517-0.479l-0.535-0.016v-1.886h-1.016v1.959l-0.45 0.084c-2.005 0.375-3.202 1.61-3.202 3.305 0 1.577 1.051 2.604 3.514 3.432 1.396 0.472 2.688 1.089 2.688 2.402 0 1.149-1.039 1.891-2.647 1.891-1.312 0-2.447-0.366-3.222-0.708l-0.369 1.437c0.709 0.309 1.808 0.617 3.045 0.654l0.535 0.016v2.058zM15.901 30.607c-8.054 0-14.607-6.552-14.607-14.606s6.552-14.607 14.607-14.607c8.054 0 14.607 6.552 14.607 14.607 0 2.567-0.667 4.981-1.834 7.079l1.095 0.293c1.174-2.2 1.841-4.71 1.841-7.373 0-8.662-7.047-15.709-15.709-15.709s-15.709 7.047-15.709 15.709 7.047 15.709 15.709 15.709c2.752 0 5.34-0.712 7.592-1.96l-0.294-1.099c-2.148 1.244-4.641 1.957-7.297 1.957zM29.539 31.709c-0.141 0-0.282-0.054-0.39-0.161l-2.673-2.673-0.86 1.786c-0.1 0.208-0.32 0.331-0.548 0.31s-0.421-0.184-0.481-0.406l-1.977-7.377c-0.051-0.19 0.004-0.393 0.143-0.532s0.342-0.194 0.532-0.143l7.377 1.977c0.222 0.060 0.385 0.252 0.406 0.481s-0.102 0.448-0.31 0.548l-1.787 0.86 2.673 2.672c0.103 0.103 0.161 0.244 0.161 0.39s-0.058 0.286-0.161 0.39l-1.717 1.717c-0.108 0.107-0.249 0.161-0.39 0.161zM26.318 27.385c0.145 0 0.285 0.057 0.39 0.161l2.832 2.832 0.938-0.938-2.832-2.832c-0.126-0.126-0.184-0.306-0.154-0.482s0.143-0.327 0.304-0.404l1.148-0.552-5.020-1.345 1.345 5.020 0.552-1.148c0.077-0.161 0.228-0.274 0.404-0.304 0.031-0.005 0.062-0.008 0.092-0.008zM20.272 5.201c1.977 0 5.826 2.162 5.826 6.126 0 0.304 0.247 0.551 0.551 0.551s0.551-0.247 0.551-0.551c0-2.063-0.912-3.976-2.568-5.387-1.314-1.119-3.025-1.842-4.361-1.842-0.304 0-0.551 0.247-0.551 0.551s0.247 0.551 0.551 0.551z"}))},k=function(){return wp.element.createElement(c,{viewBox:"0 0 32 32",style:{padding:"1px",fill:"#000000"},xmlns:"http://www.w3.org/2000/svg"},wp.element.createElement(a,{d:"M31.438 1.423h-30.877c-0.31 0-0.562 0.251-0.562 0.562v22.175c0 0.31 0.251 0.562 0.562 0.562h3.103v5.294c0 0.201 0.107 0.386 0.281 0.486 0.087 0.050 0.184 0.075 0.281 0.075s0.194-0.025 0.281-0.075l10.012-5.78h16.919c0.31 0 0.562-0.251 0.562-0.562v-22.175c0-0.31-0.251-0.562-0.562-0.562zM30.877 23.598h-16.508c-0.099 0-0.195 0.026-0.281 0.075l-9.3 5.369v-4.883c0-0.31-0.251-0.562-0.562-0.562h-3.103v-21.052h29.753v21.052zM4.386 7.532h22.894c0.31 0 0.562-0.251 0.562-0.562s-0.251-0.562-0.562-0.562h-22.894c-0.31 0-0.562 0.251-0.562 0.562s0.251 0.562 0.562 0.562zM4.386 11.865h22.894c0.31 0 0.562-0.251 0.562-0.562s-0.251-0.562-0.562-0.562h-22.894c-0.31 0-0.562 0.251-0.562 0.562s0.251 0.562 0.562 0.562zM4.386 16.198h22.894c0.31 0 0.562-0.251 0.562-0.562s-0.251-0.562-0.562-0.562h-22.894c-0.31 0-0.562 0.251-0.562 0.562s0.251 0.562 0.562 0.562zM4.386 20.53h22.894c0.31 0 0.562-0.251 0.562-0.562s-0.251-0.562-0.562-0.562h-22.894c-0.31 0-0.562 0.252-0.562 0.562s0.251 0.562 0.562 0.562z"}))},E=function(){return wp.element.createElement(c,{viewBox:"0 0 512 512",xmlns:"http://www.w3.org/2000/svg"},wp.element.createElement(a,{d:"M0 448V64h18v384H0zm26.857-.273V64H36v383.727h-9.143zm27.143 0V64h8.857v383.727H54zm44.857 0V64h8.857v383.727h-8.857zm36 0V64h17.714v383.727h-17.714zm44.857 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm35.715 0V64h18v383.727h-18zm44.857 0V64h18v383.727h-18zm35.999 0V64h18.001v383.727h-18.001zm36.001 0V64h18.001v383.727h-18.001zm26.857 0V64h18v383.727h-18zm45.143 0V64h26.857v383.727h-26.857zm35.714 0V64h9.143v383.727H476zm18 .273V64h18v384h-18z"}))},T=function(){return wp.element.createElement(c,{className:"wp-block-themeisle-icon-buttom-group-custom-icon",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},wp.element.createElement(a,{d:"M17.294,17.287l-14.588,0l0,-14.574l14.588,0c0,4.858 0,9.716 0,14.574Zm-13.738,-0.85l12.888,0l0,-12.874l-12.888,0c0,4.291 0,8.583 0,12.874Z"}),wp.element.createElement("rect",{x:"4.489",y:"4.744",width:"11.022",height:"2.512"}))},C=function(){return wp.element.createElement(c,{className:"wp-block-themeisle-icon-buttom-group-custom-icon",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},wp.element.createElement(a,{d:"M17.294,17.287l-14.588,0l0,-14.574l14.588,0c0,4.858 0,9.716 0,14.574Zm-13.738,-0.85l12.888,0l0,-12.874l-12.888,0c0,4.291 0,8.583 0,12.874Z"}),wp.element.createElement("rect",{y:"8.744",width:"11.022",x:"4.489",height:"2.512"}))},x=function(){return wp.element.createElement(c,{className:"wp-block-themeisle-icon-buttom-group-custom-icon",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},wp.element.createElement(a,{d:"M17.294,17.287l-14.588,0l0,-14.574l14.588,0c0,4.858 0,9.716 0,14.574Zm-13.738,-0.85l12.888,0l0,-12.874l-12.888,0c0,4.291 0,8.583 0,12.874Z"}),wp.element.createElement("rect",{x:"4.489",y:"12.802",width:"11.022",height:"2.512"}))},M=wp.element.createElement(c,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"20",height:"20"},wp.element.createElement(a,{d:"M5 5H3v2h2V5zm3 8h11v-2H8v2zm9-8H6v2h11V5zM7 11H5v2h2v-2zm0 8h2v-2H7v2zm3-2v2h11v-2H10z"})),S=wp.element.createElement(c,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},wp.element.createElement(a,{d:"M9 18.6L3.5 13l1-1L9 16.4l9.5-9.9 1 1z"})),z=function(e){var t=e.className;return wp.element.createElement(c,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",className:t},wp.element.createElement(a,{d:"M11.776 4.454a.25.25 0 01.448 0l2.069 4.192a.25.25 0 00.188.137l4.626.672a.25.25 0 01.139.426l-3.348 3.263a.25.25 0 00-.072.222l.79 4.607a.25.25 0 01-.362.263l-4.138-2.175a.25.25 0 00-.232 0l-4.138 2.175a.25.25 0 01-.363-.263l.79-4.607a.25.25 0 00-.071-.222L4.754 9.881a.25.25 0 01.139-.426l4.626-.672a.25.25 0 00.188-.137l2.069-4.192z"}))},O=wp.element.createElement(c,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},wp.element.createElement(a,{d:"M18.3 5.6L9.9 16.9l-4.6-3.4-.9 2.4 5.8 4.3 9.3-12.6z"})),B=wp.element.createElement(c,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},wp.element.createElement(a,{d:"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z"}))},,function(e,t,n){"use strict";t.a={"themeisle-blocks/advanced-heading":{tag:"h2",headingColor:"#000000",textTransform:"none",paddingType:"linked",paddingTypeTablet:"linked",paddingTypeMobile:"linked",padding:0,paddingTop:0,paddingRight:0,paddingBottom:0,paddingLeft:0,marginType:"unlinked",marginTypeTablet:"unlinked",marginTypeMobile:"unlinked",margin:0,marginTop:0,marginBottom:25},"themeisle-blocks/button-group":{spacing:20,collapse:"collapse-none"},"themeisle-blocks/button":{},"themeisle-blocks/font-awesome-icons":{fontSize:16,padding:5,margin:5},"themeisle-blocks/advanced-columns":{columnsGap:"default",paddingType:"linked",paddingTypeTablet:"linked",paddingTypeMobile:"linked",padding:20,paddingTop:20,paddingRight:20,paddingBottom:20,paddingLeft:20,marginType:"unlinked",marginTypeTablet:"unlinked",marginTypeMobile:"unlinked",margin:20,marginTop:20,marginBottom:20,horizontalAlign:"unset",columnsHeight:"auto",verticalAlign:"unset",hide:!1,hideTablet:!1,hideMobile:!1,columnsHTMLTag:"div"},"themeisle-blocks/advanced-column":{paddingType:"linked",paddingTypeTablet:"linked",paddingTypeMobile:"linked",padding:20,paddingTop:20,paddingRight:20,paddingBottom:20,paddingLeft:20,marginType:"unlinked",marginTypeTablet:"unlinked",marginTypeMobile:"unlinked",margin:20,marginTop:20,marginRight:0,marginBottom:20,marginLeft:0,columnsHTMLTag:"div"}}},,function(e,t,n){"use strict";var l=n(0),r=n.n(l),o=(n(56),wp.components.ColorIndicator);t.a=function(e){var t=e.label,n=e.colorValue,l=e.className,a=e.children;return wp.element.createElement("div",{className:r()("components-base-control","wp-block-themeisle-blocks-color-base-control",l)},wp.element.createElement("div",{className:"components-base-control__field"},t&&wp.element.createElement("span",{className:"components-base-control__label"},t,n&&wp.element.createElement(o,{colorValue:n})),a))}},function(e,t,n){"use strict";var l=n(0),r=n.n(l),o=(n(58),n(3)),a=wp.i18n.__,c=wp.components,i=c.Button,s=c.Dropdown,p=c.Icon,m=wp.compose,u=m.useInstanceId,d=m.useViewportMatch,b=wp.data,g=b.useSelect,h=b.useDispatch;t.a=function e(t){var n=t.label,l=t.className,c=t.children,m=u(e),b=d("large",">="),w=d("large","<="),f=d("small",">="),y=d("small","<="),v=!(b||w||f||y),k=g((function(e){var t=e("themeisle-gutenberg/data").getView,n=e("core/edit-post").__experimentalGetPreviewDeviceType;return n&&!v?n():t()})),E=h("themeisle-gutenberg/data").updateView,T=h("core/edit-post").__experimentalSetPreviewDeviceType,C=T&&!v?T:E,x="inspector-responsive-control-".concat(m);return wp.element.createElement("div",{id:x,className:r()("wp-block-themeisle-blocks-responsive-control",l)},wp.element.createElement("div",{className:"components-base-control__field"},wp.element.createElement("div",{className:"components-base-control__title"},wp.element.createElement("label",{className:"components-base-control__label"},n),wp.element.createElement("div",{className:"floating-controls"},wp.element.createElement(s,{position:"top left",renderToggle:function(e){var t=e.isOpen,n=e.onToggle;return wp.element.createElement(i,{icon:"Mobile"===k?"smartphone":k.toLowerCase(),label:a("Responsiveness Settings"),showTooltip:!0,className:"is-button",onClick:n,"aria-expanded":t})},renderContent:function(){return wp.element.createElement("div",{className:"wp-block-themeisle-blocks-responsive-control-settings"},wp.element.createElement("div",{className:"wp-block-themeisle-blocks-responsive-control-settings-title"},a("View")),wp.element.createElement(i,{className:r()("wp-block-themeisle-blocks-responsive-control-settings-item",{"is-selected":"Desktop"===k}),onClick:function(){return C("Desktop")}},"Desktop"===k&&wp.element.createElement(p,{icon:o.g}),wp.element.createElement("span",{className:"popover-title"},a("Desktop"))),wp.element.createElement(i,{className:r()("wp-block-themeisle-blocks-responsive-control-settings-item",{"is-selected":"Tablet"===k}),onClick:function(){return C("Tablet")}},"Tablet"===k&&wp.element.createElement(p,{icon:o.g}),wp.element.createElement("span",{className:"popover-title"},a("Tablet"))),wp.element.createElement(i,{className:r()("wp-block-themeisle-blocks-responsive-control-settings-item",{"is-selected":"Mobile"===k}),onClick:function(){return C("Mobile")}},"Mobile"===k&&wp.element.createElement(p,{icon:o.g}),wp.element.createElement("span",{className:"popover-title"},a("Mobile"))))}}))),c))}},function(e,t,n){"use strict";var l=n(0),r=n.n(l),o=(n(59),wp.element),a=o.Fragment,c=o.useRef,i=function(e){var t=e.id,n=e.index,l=e.option,r=e.min,o=e.max,i=e.onChange,s=c(null);return wp.element.createElement("div",{className:"wp-block-themeisle-blocks-sizing-control-item"},n.disabled?wp.element.createElement("input",{type:"number",disabled:n.disabled,className:"wp-block-themeisle-blocks-sizing-control-item-input",id:"wp-block-themeisle-blocks-sizing-control-item-input-".concat(l)}):wp.element.createElement(a,null,wp.element.createElement("input",{type:"number",className:"wp-block-themeisle-blocks-sizing-control-item-input",id:"wp-block-themeisle-blocks-sizing-control-item-input-".concat(l,"-").concat(t),value:void 0!==n.value?n.value:"",min:r,max:o,ref:s,onChange:function(e){return i(n.type,parseInt(e.target.value))}})),n.label&&wp.element.createElement("label",{className:"wp-block-themeisle-blocks-sizing-control-item-label",htmlFor:"wp-block-themeisle-blocks-sizing-control-item-input-".concat(l,"-").concat(t)},n.label))},s=wp.i18n.__,p=wp.components.Button,m=wp.compose.useInstanceId;t.a=function e(t){var n=t.label,l=t.type,o=t.min,a=t.max,c=t.changeType,u=t.options,d=t.onChange,b=m(e),g="inspector-sizing-control-".concat(b);return u&&1>u.length?s("Please specify more options."):wp.element.createElement("div",{id:g,className:"wp-block-themeisle-blocks-sizing-control"},wp.element.createElement("div",{className:"components-base-control__field"},n&&wp.element.createElement("label",{className:"components-base-control__label",htmlFor:g},n),wp.element.createElement("div",{className:r()("wp-block-themeisle-blocks-sizing-control-wrapper",{linking:l})},u.map((function(e,t){return wp.element.createElement(i,{id:b,index:e,option:t,min:o,max:a,onChange:d})})),l&&wp.element.createElement("div",{className:r()("wp-block-themeisle-blocks-sizing-control-item","toggle-linking",{"is-linked":"linked"===l})},wp.element.createElement(p,{icon:"linked"===l?"admin-links":"editor-unlink",label:s("linked"===l?"Unlink Values":"Link Values"),showTooltip:!0,className:"wp-block-themeisle-blocks-sizing-control-item-input",onClick:function(){return c("linked"===l?"unlinked":"linked")}})))))}},,function(e,t,n){"use strict";function l(e,t,n,l,r,o,a){try{var c=e[o](a),i=c.value}catch(e){return void n(e)}c.done?t(i):Promise.resolve(i).then(l,r)}function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}n.d(t,"f",(function(){return a})),n.d(t,"b",(function(){return c})),n.d(t,"e",(function(){return i})),n.d(t,"d",(function(){return s})),n.d(t,"c",(function(){return p})),n.d(t,"a",(function(){return m}));var o=lodash.without,a=function(e){var t=document.createElement("div");return t.innerHTML=e,void 0!==t.innerText?t.innerText:t.textContent},c=function(e){var t=(e=new Date(e)).getDate(),n=e.getMonth(),l=e.getFullYear();return t+" "+["January","February","March","April","May","June","July","August","September","October","November","December"][n]+", "+l},i=function(e,t,n){var l=[],o=r(e),a=r(t);if(0===n)throw TypeError("Step cannot be zero.");if(void 0===o||void 0===a)throw TypeError("Must pass start and end arguments.");if(o!==a)throw TypeError("Start and end arguments must be of same type.");if(void 0===r(n)&&(n=1),t<e&&(n=-n),"number"===o)for(;0<n?t>=e:t<=e;)l.push(e),e+=n;else{if("string"!==o)throw TypeError("Only string and number types are supported");if(1!=e.length||1!=t.length)throw TypeError("Only strings with one character are supported.");for(e=e.charCodeAt(0),t=t.charCodeAt(0);0<n?t>=e:t<=e;)l.push(String.fromCharCode(e)),e+=n}return l},s=function(e){return e},p=function(){var e,t=(e=regeneratorRuntime.mark((function e(){var t,n;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,(new wp.api.collections.Types).fetch();case 2:if(!(t=e.sent)){e.next=6;break}return n=Object.keys(t).filter((function(e){var n;return null===(n=t[e])||void 0===n?void 0:n.slug})).map((function(e){return t[e].slug})),e.abrupt("return",o(n,"attachment","wp_block"));case 6:return e.abrupt("return",void 0);case 7:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function c(e){l(a,r,o,c,i,"next",e)}function i(e){l(a,r,o,c,i,"throw",e)}c(void 0)}))});return function(){return t.apply(this,arguments)}}(),m=function(e){if("string"==typeof e||e instanceof String)return e[0].toUpperCase()+e.slice(1);throw"The parameter must be a string."}},,,function(e,t,n){"use strict";function l(){return(l=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var l in n)Object.prototype.hasOwnProperty.call(n,l)&&(e[l]=n[l])}return e}).apply(this,arguments)}var r=wp.primitives,o=r.Circle,a=r.Path,c=r.Polygon,i=r.Rect,s=r.SVG;t.a={iconsList:["balance","battery","bookmark","briefcase","calculator","calendar","camera","chart","chartGear","check","checklist","clock","cloudDatabase","cloudDownload","cloudNetwork","compass","creditCard","database","design","diamond","disk","download","drop","favorite","fileDownload","filter","flag","folder","folders","gear","gears","gift","globe","graduation","graph","group","heart","hourglass","house","id","idea","key","lamp","link","location","lock","man","mail","medal","megaphone","message","messages","microphone","mobile","mouse","music","notification","offer","page","paperclip","pen","phone","picture","piggybank","plane","play","pointer","power","presentation","price","puzzle","refresh","repair","responsive","science","search","security","securityAlt","servers","settings","share","shield","shoppingCart","sign","siteMap","statistics","tag","telescope","trophy","university","usb","usbDrive","user","vault","wallet","warning","webpage","wifi","world","write"],icons:{balance:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1786.11,816.827c-0.656-2.722-1.644-5.309-2.966-7.695c0-0.009-0.004-0.017-0.004-0.017L1544.37,376.403 c-0.035-0.065-0.069-0.13-0.104-0.196l-0.052-0.091c-0.083-0.152-0.183-0.283-0.266-0.43c-0.073-0.122-0.152-0.244-0.222-0.365 c-0.252-0.426-0.504-0.861-0.782-1.283c-0.101-0.157-0.2-0.317-0.309-0.469c-0.191-0.283-0.404-0.544-0.604-0.813 c-0.287-0.4-0.578-0.8-0.892-1.187c-0.104-0.126-0.204-0.257-0.313-0.383c-0.257-0.313-0.535-0.604-0.805-0.9 c-0.296-0.331-0.587-0.657-0.896-0.974c-0.108-0.108-0.218-0.217-0.33-0.326c-0.331-0.326-0.679-0.635-1.022-0.943 c-0.282-0.256-0.556-0.517-0.848-0.761c-0.13-0.104-0.256-0.208-0.383-0.313c-0.404-0.326-0.821-0.626-1.234-0.93 c-0.261-0.188-0.504-0.387-0.773-0.57c-0.148-0.104-0.305-0.205-0.461-0.309c-0.435-0.283-0.883-0.543-1.331-0.804 c-0.112-0.069-0.226-0.144-0.339-0.209c-0.147-0.083-0.278-0.183-0.422-0.261c-0.013-0.009-0.03-0.013-0.043-0.021 c-0.17-0.092-0.344-0.179-0.514-0.266c-0.387-0.204-0.791-0.387-1.187-0.574c-0.526-0.248-1.052-0.496-1.591-0.717 c-0.356-0.148-0.727-0.27-1.092-0.4c-0.582-0.213-1.161-0.421-1.761-0.6c-0.392-0.117-0.791-0.204-1.183-0.305 c-0.47-0.121-0.931-0.265-1.408-0.36c-0.109-0.026-0.222-0.035-0.335-0.052c-0.426-0.087-0.861-0.139-1.291-0.2 c-0.487-0.078-0.975-0.174-1.461-0.222c0,0-0.03,0-0.044-0.004c-0.052,0-0.104,0-0.156-0.009c-0.521-0.048-1.052-0.061-1.583-0.087 c-0.443-0.018-0.882-0.057-1.321-0.057l-0.087-0.004h-0.087c-0.087,0-0.17,0-0.252,0H931.164V227.699 c46.116-13.509,79.902-56.168,79.902-106.597c0-61.246-49.829-111.075-111.075-111.075c-61.246,0-111.074,49.829-111.074,111.075 c0,50.433,33.794,93.097,79.919,106.605v132.3H283.351c0,0-0.061,0-0.091,0h-0.188h-0.043c-0.644,0-1.287,0.052-1.931,0.091 c-0.305,0.018-0.613,0.022-0.917,0.048c-0.757,0.07-1.509,0.191-2.257,0.313c-0.235,0.043-0.465,0.065-0.695,0.108 c-0.718,0.139-1.426,0.322-2.14,0.509c-0.27,0.074-0.548,0.13-0.817,0.209c-0.7,0.208-1.382,0.452-2.061,0.704 c-0.261,0.1-0.53,0.183-0.787,0.287c-0.635,0.261-1.248,0.548-1.865,0.843c-0.304,0.148-0.617,0.287-0.917,0.443 c-0.196,0.1-0.392,0.196-0.583,0.3c-0.013,0.009-0.031,0.013-0.043,0.021c-0.144,0.078-0.274,0.178-0.422,0.261 c-0.174,0.1-0.339,0.209-0.509,0.309c-0.369,0.222-0.743,0.435-1.1,0.67c-0.174,0.113-0.353,0.226-0.522,0.343 c-0.3,0.205-0.574,0.426-0.861,0.639c-0.37,0.274-0.743,0.535-1.1,0.826c-0.144,0.117-0.287,0.23-0.431,0.348 c-0.313,0.266-0.609,0.543-0.913,0.822c-0.313,0.278-0.626,0.556-0.926,0.852c-0.122,0.117-0.239,0.235-0.361,0.356 c-0.326,0.331-0.63,0.679-0.939,1.022c-0.248,0.274-0.504,0.543-0.739,0.831c-0.113,0.13-0.227,0.27-0.335,0.404 c-0.322,0.399-0.622,0.813-0.917,1.222c-0.191,0.256-0.387,0.5-0.565,0.765c-0.113,0.157-0.218,0.322-0.322,0.483 c-0.278,0.422-0.53,0.856-0.782,1.283c-0.078,0.13-0.156,0.256-0.235,0.387c-0.078,0.144-0.174,0.266-0.252,0.409l-0.052,0.091 c-0.035,0.065-0.069,0.131-0.104,0.196L16.864,809.11c-0.004,0.004-0.008,0.013-0.008,0.021c-1.322,2.387-2.309,4.974-2.965,7.695 c-0.587,2.418-0.9,4.861-0.905,7.296c0,0.013,0,0.026,0,0.039c0,148.932,121.162,270.094,270.092,270.094 c148.925,0,270.086-121.162,270.086-270.094c0-0.013-0.004-0.026-0.004-0.039c0-2.435-0.313-4.878-0.9-7.296 c-0.657-2.722-1.648-5.309-2.965-7.695c-0.004-0.009-0.004-0.017-0.004-0.017L335.862,422.336h532.974v933.441 c0,3.356,0.548,6.582,1.53,9.617c-116.218,12.348-208.584,96.527-226.327,205.889H434.676c-17.212,0-31.165,13.947-31.165,31.164 v156.36c0,17.208,13.952,31.164,31.165,31.164h930.643c17.213,0,31.164-13.956,31.164-31.164v-156.36 c0-17.217-13.951-31.164-31.164-31.164h-209.362c-17.747-109.361-110.109-193.533-226.323-205.889 c0.982-3.035,1.53-6.261,1.53-9.617V422.336h532.974L1250.715,809.11c0,0-0.005,0.013-0.009,0.021 c-1.317,2.387-2.309,4.974-2.965,7.695c-0.587,2.418-0.9,4.861-0.9,7.296c0,0.013-0.004,0.026-0.004,0.039 c0,148.932,121.161,270.094,270.086,270.094c148.931,0,270.092-121.162,270.092-270.094c0-0.013,0-0.026,0-0.039 C1787.01,821.688,1786.697,819.245,1786.11,816.827z M283.072,455.679l186.133,337.319H96.939L283.072,455.679z M283.077,1031.927 c-103.975,0-190.355-76.763-205.433-176.601h410.86C473.427,955.164,387.047,1031.927,283.077,1031.927z M851.245,121.103 c0-26.877,21.869-48.746,48.746-48.746c26.878,0,48.746,21.869,48.746,48.746c0,26.882-21.868,48.755-48.746,48.755 C873.114,169.857,851.245,147.984,851.245,121.103z M1334.155,1727.643H465.84v-94.031h206.333h455.65h206.332V1727.643z M1092.567,1571.283H707.428c18.704-83.589,97.532-145.187,192.567-145.187S1073.859,1487.694,1092.567,1571.283z M1703.061,792.998 h-372.266l186.133-337.319L1703.061,792.998z M1516.923,1031.927c-103.97,0-190.35-76.763-205.428-176.601h410.86 C1707.278,955.164,1620.898,1031.927,1516.923,1031.927z"}))},battery:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M955.577,469.95c0.991-11.551-4.471-23.208-15.062-29.614c-5.422-3.281-11.499-4.721-17.316-4.527 c-11.915,0.347-22.164,7.318-27.2,17.36L616.275,915.595c-5.874,9.714-6.063,21.831-0.487,31.72s16.044,16.004,27.394,16.004 h172.294v399.955c0,14.18,9.498,26.612,23.186,30.342c2.742,0.746,5.519,1.105,8.261,1.105c10.941,0,21.356-5.729,27.104-15.504 l309.898-526.839c5.721-9.722,5.796-21.765,0.193-31.557c-5.598-9.792-16.018-15.833-27.297-15.833H955.577V469.95z M1101.838,867.882l-223.467,379.902V931.871c0-17.373-14.079-31.449-31.447-31.449H698.957l193.726-320.252v256.265 c0,17.369,14.079,31.447,31.448,31.447H1101.838z"}),wp.element.createElement(a,{d:"M1507.236,278.071h-346.672V33.419c0-17.369-14.078-31.447-31.447-31.447H670.883 c-17.369,0-31.447,14.079-31.447,31.447v244.652H292.764c-17.369,0-31.447,14.079-31.447,31.447v1457.061 c0,17.374,14.078,31.448,31.447,31.448h1214.473c17.369,0,31.447-14.074,31.447-31.448V309.519 C1538.684,292.15,1524.605,278.071,1507.236,278.071z M702.33,64.867h395.34v213.205H702.33V64.867z M1475.789,1735.132H324.211 v-182.095h1151.578V1735.132z M1475.789,1490.143H324.211V340.966h346.672h458.234h346.672V1490.143z"}))},bookmark:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1711.665,9.238H88.343c-43.62,0-79.105,35.478-79.105,79.089v1623.338 c0,43.611,35.486,79.099,79.105,79.099h1623.322c43.611,0,79.099-35.487,79.099-79.099V88.327 C1790.764,44.715,1755.276,9.238,1711.665,9.238z M1209.058,73.28h220.448v608.01l-85.529-109.984 c-5.927-7.619-15.038-12.079-24.69-12.079s-18.765,4.456-24.69,12.079l-85.538,109.988V73.28z M71.796,1711.665V88.327 c0-9.112,7.423-16.53,16.547-16.53h245.4v1656.407h-245.4C79.219,1728.203,71.796,1720.785,71.796,1711.665z M504.532,1728.203 h-108.23V71.796h108.23V1728.203z M1728.203,1711.665c0,9.12-7.418,16.538-16.538,16.538H567.09V71.796h579.409v700.058 c0,17.277,13.999,31.28,31.279,31.28h0.479c9.662,0,18.773-4.459,24.7-12.079l116.328-149.594l116.319,149.594 c5.926,7.62,15.039,12.079,24.69,12.079h0.489c17.271,0,31.278-14.003,31.278-31.28V71.796h219.602 c9.12,0,16.538,7.418,16.538,16.53V1711.665z"}))},briefcase:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1709.277,268.688h-515.642c1.962-7.174,3.1-14.691,3.1-22.48v-74.93c0-47.103-38.321-85.424-85.424-85.424 H688.688c-47.103,0-85.423,38.321-85.423,85.424v74.93c0,7.789,1.137,15.306,3.1,22.48H90.723 c-47.103,0-85.424,38.321-85.424,85.424v659.412c0,47.103,38.321,85.424,85.424,85.424h43.563c-1.962,7.179-3.1,14.691-3.1,22.48 v507.295c0,47.103,38.321,85.424,85.424,85.424H1583.39c47.103,0,85.424-38.321,85.424-85.424v-507.295 c0-7.789-1.137-15.302-3.1-22.48h43.563c47.103,0,85.424-38.321,85.424-85.424V354.111 C1794.701,307.009,1756.38,268.688,1709.277,268.688z M1433.147,1036.004v62.943v54.413c0,12.395-10.085,22.479-22.479,22.479 h-47.959c-12.395,0-22.48-10.085-22.48-22.479v-54.413v-62.943v-92.919c0-12.395,10.086-22.479,22.48-22.479h47.959 c12.395,0,22.479,10.085,22.479,22.479V1036.004z M666.209,246.208v-74.93c0-12.395,10.085-22.48,22.479-22.48h422.623 c12.395,0,22.479,10.085,22.479,22.48v74.93c0,12.395-10.085,22.48-22.479,22.48H688.688 C676.294,268.688,666.209,258.602,666.209,246.208z M688.688,331.631h422.623h243.902v526.408 c-43.599,3.815-77.929,40.473-77.929,85.046v92.919H522.71v-92.919c0-44.573-34.33-81.23-77.933-85.046V331.631H688.688z M459.767,1098.947v54.413c0,12.395-10.085,22.479-22.479,22.479h-47.959c-12.395,0-22.48-10.085-22.48-22.479v-54.413v-62.943 v-92.919c0-12.395,10.085-22.479,22.48-22.479h47.959c12.395,0,22.479,10.085,22.479,22.479v92.919V1098.947z M90.723,1036.004 c-12.395,0-22.479-10.086-22.479-22.48V354.111c0-12.395,10.085-22.48,22.479-22.48h291.111v526.408 c-43.599,3.815-77.929,40.473-77.929,85.046v92.919H216.61H90.723z M1605.87,1121.428v507.295c0,12.395-10.086,22.48-22.48,22.48 H216.61c-12.395,0-22.48-10.086-22.48-22.48v-507.295c0-12.396,10.085-22.48,22.48-22.48h87.294v54.413 c0,47.103,38.321,85.424,85.424,85.424h47.959c47.102,0,85.423-38.321,85.423-85.424v-54.413h754.575v54.413 c0,47.103,38.321,85.424,85.424,85.424h47.959c47.103,0,85.423-38.321,85.423-85.424v-54.413h87.299 C1595.784,1098.947,1605.87,1109.032,1605.87,1121.428z M1731.757,1013.523c0,12.395-10.085,22.48-22.479,22.48H1583.39h-87.299 v-92.919c0-44.573-34.33-81.23-77.933-85.046V331.631h291.119c12.395,0,22.479,10.085,22.479,22.48V1013.523z"}))},calculator:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1717.649,2.667H82.359C38.418,2.667,2.67,38.411,2.67,82.343v1635.298c0,43.942,35.748,79.69,79.689,79.69 h1635.29c43.933,0,79.681-35.748,79.681-79.69V82.343C1797.33,38.411,1761.582,2.667,1717.649,2.667z M1734.311,1717.642 c0,9.188-7.474,16.671-16.661,16.671H82.359c-9.196,0-16.669-7.483-16.669-16.671V82.343c0-9.183,7.473-16.656,16.669-16.656 h1635.29c9.188,0,16.661,7.473,16.661,16.656V1717.642z"}),wp.element.createElement(a,{d:"M1537.75,136.396H250.345c-47.159,0-85.527,38.368-85.527,85.527v249.08 c0,47.159,38.368,85.527,85.527,85.527H1537.75c47.16,0,85.527-38.368,85.527-85.527v-249.08 C1623.277,174.763,1584.91,136.396,1537.75,136.396z M1560.258,471.002c0,12.41-10.102,22.507-22.508,22.507H250.345 c-12.414,0-22.507-10.098-22.507-22.507v-249.08c0-12.41,10.093-22.507,22.507-22.507H1537.75 c12.406,0,22.508,10.097,22.508,22.507V471.002z"}),wp.element.createElement(a,{d:"M1537.75,616.548H250.345c-47.159,0-85.527,38.368-85.527,85.527v879.276 c0,47.16,38.368,85.526,85.527,85.526H1537.75c47.16,0,85.527-38.366,85.527-85.526V702.076 C1623.277,654.916,1584.91,616.548,1537.75,616.548z M1560.258,702.076v408.13h-634.7V679.568h612.192 C1550.156,679.568,1560.258,689.666,1560.258,702.076z M250.345,679.568h612.193v430.638h-634.7v-408.13 C227.838,689.666,237.931,679.568,250.345,679.568z M227.838,1581.352v-408.126h634.7v430.633H250.345 C237.931,1603.858,227.838,1593.766,227.838,1581.352z M1537.75,1603.858H925.558v-430.633h634.7v408.126 C1560.258,1593.766,1550.156,1603.858,1537.75,1603.858z"}),wp.element.createElement(a,{d:"M416.941,932.025H514.1v97.154c0,17.403,14.111,31.511,31.51,31.511c17.408,0,31.51-14.107,31.51-31.511 v-97.154h97.158c17.408,0,31.51-14.105,31.51-31.509s-14.102-31.51-31.51-31.51H577.12v-97.159 c0-17.403-14.103-31.509-31.51-31.509c-17.399,0-31.51,14.106-31.51,31.509v97.159h-97.159c-17.398,0-31.51,14.106-31.51,31.51 S399.542,932.025,416.941,932.025z"}),wp.element.createElement(a,{d:"M589.586,1382.164l68.7-68.7c12.309-12.304,12.309-32.258,0-44.561c-12.3-12.305-32.257-12.305-44.561,0 l-68.704,68.703l-68.7-68.703c-12.304-12.305-32.257-12.305-44.562,0c-12.304,12.303-12.304,32.257,0,44.561l68.7,68.7 l-68.7,68.698c-12.304,12.304-12.304,32.258,0,44.562c6.15,6.154,14.217,9.228,22.283,9.228c8.062,0,16.125-3.077,22.278-9.228 l68.7-68.699l68.704,68.704c6.149,6.153,14.216,9.231,22.283,9.231c8.062,0,16.124-3.078,22.278-9.231 c12.309-12.304,12.309-32.257,0-44.562L589.586,1382.164z"}),wp.element.createElement(a,{d:"M1115.83,932.025h257.338c17.407,0,31.51-14.105,31.51-31.509s-14.103-31.51-31.51-31.51H1115.83 c-17.398,0-31.509,14.106-31.509,31.51S1098.432,932.025,1115.83,932.025z"}),wp.element.createElement(a,{d:"M1373.168,1309.763H1115.83c-17.398,0-31.509,14.11-31.509,31.511c0,17.407,14.11,31.51,31.509,31.51 h257.338c17.407,0,31.51-14.103,31.51-31.51C1404.678,1323.873,1390.575,1309.763,1373.168,1309.763z"}),wp.element.createElement(a,{d:"M1373.168,1399.791H1115.83c-17.398,0-31.509,14.111-31.509,31.51c0,17.408,14.11,31.51,31.509,31.51 h257.338c17.407,0,31.51-14.102,31.51-31.51C1404.678,1413.902,1390.575,1399.791,1373.168,1399.791z"}))},calendar:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1704.994,208.972h-323.283V92.869c0-46.782-38.061-84.844-84.844-84.844H1164.02 c-46.783,0-84.844,38.062-84.844,84.844v116.103H720.82V92.869c0-46.782-38.061-84.844-84.844-84.844H503.129 c-46.782,0-84.844,38.062-84.844,84.844v116.103H95.006c-46.935,0-85.123,38.061-85.123,84.844v265.97v1147.346 c0,46.783,38.188,84.844,85.123,84.844h1609.988c46.932,0,85.123-38.061,85.123-84.844V559.785v-265.97 C1790.117,247.032,1751.926,208.972,1704.994,208.972z M1141.692,271.488v-62.516V92.869c0-12.311,10.013-22.327,22.327-22.327 h132.848c12.307,0,22.327,10.017,22.327,22.327v116.103v62.516v107.171c0,12.311-10.021,22.327-22.327,22.327H1164.02 c-12.314,0-22.327-10.017-22.327-22.327V271.488z M480.802,271.488v-62.516V92.869c0-12.311,10.017-22.327,22.327-22.327h132.848 c12.311,0,22.327,10.017,22.327,22.327v116.103v62.516v107.171c0,12.311-10.017,22.327-22.327,22.327H503.129 c-12.311,0-22.327-10.017-22.327-22.327V271.488z M1727.601,1707.131c0,12.307-10.144,22.328-22.606,22.328H95.006 c-12.463,0-22.606-10.021-22.606-22.328V591.043h1655.201V1707.131z M1727.601,528.526H72.4V293.815 c0-12.311,10.143-22.328,22.606-22.328h323.279v107.171c0,46.782,38.062,84.844,84.844,84.844h132.848 c46.783,0,84.844-38.062,84.844-84.844V271.488h358.355v107.171c0,46.782,38.061,84.844,84.844,84.844h132.848 c46.783,0,84.844-38.062,84.844-84.844V271.488h323.283c12.463,0,22.606,10.017,22.606,22.328V528.526z"}),wp.element.createElement(a,{d:"M378.358,914.669h125.835c35.139,0,63.729-28.592,63.729-63.731V725.101 c0-35.142-28.589-63.731-63.729-63.731H378.358c-35.144,0-63.733,28.589-63.733,63.731v125.837 C314.625,886.077,343.214,914.669,378.358,914.669z M377.142,725.101c0-0.669,0.545-1.215,1.216-1.215h125.835 c0.667,0,1.212,0.545,1.212,1.215v125.837c0,0.669-0.545,1.212-1.212,1.212H378.358c-0.671,0-1.216-0.543-1.216-1.212V725.101z"}),wp.element.createElement(a,{d:"M837.079,914.669h125.838c35.14,0,63.729-28.592,63.729-63.731V725.101 c0-35.142-28.589-63.731-63.729-63.731H837.079c-35.144,0-63.733,28.589-63.733,63.731v125.837 C773.346,886.077,801.936,914.669,837.079,914.669z M835.863,725.101c0-0.669,0.545-1.215,1.216-1.215h125.838 c0.671,0,1.212,0.545,1.212,1.215v125.837c0,0.669-0.541,1.212-1.212,1.212H837.079c-0.671,0-1.216-0.543-1.216-1.212V725.101z"}),wp.element.createElement(a,{d:"M1295.803,914.669h125.836c35.147,0,63.736-28.592,63.736-63.731V725.101 c0-35.142-28.589-63.731-63.736-63.731h-125.836c-35.139,0-63.729,28.589-63.729,63.731v125.837 C1232.074,886.077,1260.664,914.669,1295.803,914.669z M1294.591,725.101c0-0.669,0.54-1.215,1.212-1.215h125.836 c0.672,0,1.221,0.545,1.221,1.215v125.837c0,0.669-0.549,1.212-1.221,1.212h-125.836c-0.654,0-1.212-0.556-1.212-1.212V725.101z"}),wp.element.createElement(a,{d:"M378.358,1278.83h125.835c35.139,0,63.729-28.589,63.729-63.729v-125.835 c0-35.147-28.589-63.737-63.729-63.737H378.358c-35.144,0-63.733,28.59-63.733,63.737v125.835 C314.625,1250.241,343.214,1278.83,378.358,1278.83z M377.142,1089.267c0-0.676,0.545-1.221,1.216-1.221h125.835 c0.667,0,1.212,0.545,1.212,1.221v125.835c0,0.668-0.545,1.213-1.212,1.213H378.358c-0.659,0-1.216-0.559-1.216-1.213V1089.267z"}),wp.element.createElement(a,{d:"M837.079,1278.83h125.838c35.14,0,63.729-28.589,63.729-63.729v-125.835 c0-35.147-28.589-63.737-63.729-63.737H837.079c-35.144,0-63.733,28.59-63.733,63.737v125.835 C773.346,1250.241,801.936,1278.83,837.079,1278.83z M835.863,1089.267c0-0.676,0.545-1.221,1.216-1.221h125.838 c0.671,0,1.212,0.545,1.212,1.221v125.835c0,0.654-0.558,1.213-1.212,1.213H837.079c-0.658,0-1.216-0.559-1.216-1.213V1089.267z"}),wp.element.createElement(a,{d:"M1295.803,1278.83h125.836c35.147,0,63.736-28.589,63.736-63.729v-125.835 c0-35.147-28.589-63.737-63.736-63.737h-125.836c-35.139,0-63.729,28.59-63.729,63.737v125.835 C1232.074,1250.241,1260.664,1278.83,1295.803,1278.83z M1294.591,1089.267c0-0.676,0.54-1.221,1.212-1.221h125.836 c0.672,0,1.221,0.545,1.221,1.221v125.835c0,0.654-0.559,1.213-1.221,1.213h-125.836c-0.654,0-1.212-0.559-1.212-1.213V1089.267z"}),wp.element.createElement(a,{d:"M378.358,1642.984h125.835c35.139,0,63.729-28.59,63.729-63.729V1453.42 c0-35.14-28.589-63.729-63.729-63.729H378.358c-35.144,0-63.733,28.589-63.733,63.729v125.835 C314.625,1614.395,343.214,1642.984,378.358,1642.984z M377.142,1453.42c0-0.672,0.545-1.213,1.216-1.213h125.835 c0.667,0,1.212,0.541,1.212,1.213v125.835c0,0.672-0.545,1.212-1.212,1.212H378.358c-0.671,0-1.216-0.54-1.216-1.212V1453.42z"}),wp.element.createElement(a,{d:"M837.079,1642.984h125.838c35.14,0,63.729-28.59,63.729-63.729V1453.42 c0-35.14-28.589-63.729-63.729-63.729H837.079c-35.144,0-63.733,28.589-63.733,63.729v125.835 C773.346,1614.395,801.936,1642.984,837.079,1642.984z M835.863,1453.42c0-0.672,0.545-1.213,1.216-1.213h125.838 c0.671,0,1.212,0.541,1.212,1.213v125.835c0,0.672-0.541,1.212-1.212,1.212H837.079c-0.671,0-1.216-0.54-1.216-1.212V1453.42z"}),wp.element.createElement(a,{d:"M1295.803,1642.984h125.836c35.147,0,63.736-28.59,63.736-63.729V1453.42 c0-35.14-28.589-63.729-63.736-63.729h-125.836c-35.139,0-63.729,28.589-63.729,63.729v125.835 C1232.074,1614.395,1260.664,1642.984,1295.803,1642.984z M1294.591,1453.42c0-0.672,0.54-1.213,1.212-1.213h125.836 c0.672,0,1.221,0.541,1.221,1.213v125.835c0,0.672-0.549,1.212-1.221,1.212h-125.836c-0.654,0-1.212-0.553-1.212-1.212V1453.42z"}))},camera:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M899.996,588.254c-228.728,0-414.809,186.082-414.809,414.812c0,228.723,186.082,414.813,414.809,414.813 c228.727,0,414.809-186.09,414.809-414.813C1314.805,774.335,1128.723,588.254,899.996,588.254z M899.996,1354.688 c-193.883,0-351.618-157.739-351.618-351.622c0-193.886,157.735-351.621,351.618-351.621s351.618,157.735,351.618,351.621 C1251.613,1196.948,1093.879,1354.688,899.996,1354.688z"}),wp.element.createElement(a,{d:"M1713.521,420.761h-433.009V303.547c0-47.278-38.459-85.741-85.732-85.741H605.221 c-47.279,0-85.742,38.463-85.742,85.741v117.214H86.476c-47.552,0-86.24,44.263-86.24,98.669v964.099 c0,54.402,38.688,98.666,86.24,98.666h1627.045c47.556,0,86.243-44.264,86.243-98.666V519.43 C1799.764,465.024,1761.076,420.761,1713.521,420.761z M1736.573,1483.528c0,20.902-12.148,35.475-23.053,35.475H86.476 c-10.901,0-23.049-14.572-23.049-35.475V519.43c0-20.906,12.148-35.479,23.049-35.479h464.6c17.451,0,31.596-14.145,31.596-31.595 V303.547c0-12.435,10.116-22.55,22.55-22.55h589.558c12.43,0,22.541,10.116,22.541,22.55v148.809 c0,17.451,14.145,31.595,31.596,31.595h464.604c10.904,0,23.053,14.572,23.053,35.479V1483.528z"}),wp.element.createElement(a,{d:"M1384.245,602.086c-29.898,0-54.141,24.239-54.141,54.142c0,29.898,24.242,54.146,54.141,54.146 c29.903,0,54.146-24.247,54.146-54.146C1438.392,626.325,1414.148,602.086,1384.245,602.086z"}),wp.element.createElement(a,{d:"M939.926,714.252c-17.45,0-31.595,14.145-31.595,31.596s14.145,31.596,31.595,31.596 c27.104,0,74.89,15.854,115.768,50.672c31.79,27.073,69.684,74.207,69.684,144.985c0,17.455,14.146,31.596,31.596,31.596 c17.451,0,31.596-14.141,31.596-31.596C1188.568,803.154,1026.699,714.252,939.926,714.252z"}))},chart:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1649.831,2.343H625.737c-43.374,0-78.663,35.48-78.663,79.103v180.65H150.17 c-43.387,0-78.679,35.485-78.679,79.107V1480.77v20.814v216.974c0,43.618,35.292,79.099,78.679,79.099h1024.09 c43.378,0,78.661-35.48,78.661-79.099v-51.118h396.927c43.379,0,78.662-35.476,78.662-79.099v-475.002V556.448V81.445 C1728.51,37.823,1693.217,2.343,1649.831,2.343z M1194.633,1718.558c0,11.475-9.135,20.811-20.373,20.811H150.17 c-11.243,0-20.39-9.336-20.39-20.811v-216.974v-20.814V341.203c0-11.475,9.147-20.818,20.39-20.818h396.905h58.293h359.341 v178.798c0,16.185,13.083,29.303,29.226,29.303h200.698v952.285v20.814v107.566v58.289V1718.558z M1023.178,469.88V357.213 l124.501,112.667H1023.178z M1670.218,1113.339v475.002c0,11.476-9.13,20.81-20.37,20.81h-396.927v-107.566v-20.814V500.795 v-3.021c-0.409-8.706-4.577-16.433-10.952-21.529l-47.336-42.826l-124.906-113.035l-56.201-50.853 c-5.027-4.544-11.347-7.042-17.837-7.436h-3.316H605.368V81.445c0-11.475,9.13-20.81,20.369-20.81h1024.094 c11.239,0,20.387,9.335,20.387,20.81v475.002V1113.339z"}),wp.element.createElement(a,{d:"M442.169,1578.664H260.621c-16.099,0-29.144-13.05-29.144-29.145V602.111 c0-16.1,13.045-29.149,29.144-29.149h181.549c16.096,0,29.144,13.049,29.144,29.149v947.408 C471.313,1565.614,458.265,1578.664,442.169,1578.664z M289.765,1520.374h123.26V631.255h-123.26V1520.374z"}),wp.element.createElement(a,{d:"M747.355,1578.664H565.801c-16.099,0-29.148-13.05-29.148-29.145v-526.985 c0-16.095,13.049-29.144,29.148-29.144h181.554c16.095,0,29.144,13.049,29.144,29.144v526.985 C776.499,1565.614,763.45,1578.664,747.355,1578.664z M594.946,1520.374H718.21v-468.696H594.946V1520.374z"}),wp.element.createElement(a,{d:"M1052.535,1578.664H870.991c-16.1,0-29.148-13.05-29.148-29.145V808.278 c0-16.1,13.049-29.145,29.148-29.145h181.544c16.1,0,29.148,13.044,29.148,29.145v741.242 C1081.684,1565.614,1068.635,1578.664,1052.535,1578.664z M900.135,1520.374h123.256V837.426H900.135V1520.374z"}))},chartGear:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1769.23,755.728l-192.154-30.952c-16.273-63.095-41.242-123.328-74.449-179.583l114.021-157.817 c9.064-12.537,7.685-29.796-3.253-40.737l-160.029-160.029c-10.945-10.937-28.204-12.317-40.741-3.257l-157.813,114.025 c-56.25-33.202-116.483-58.171-179.582-74.445L1044.273,30.77c-2.462-15.271-15.641-26.499-31.114-26.499h-226.32 c-15.465,0-28.644,11.227-31.105,26.499l-30.956,192.159c-63.09,16.273-123.323,41.243-179.583,74.449l-157.82-114.03 c-12.537-9.051-29.8-7.68-40.737,3.262L186.609,346.643c-10.937,10.937-12.317,28.196-3.257,40.733l114.026,157.813 c-33.189,56.232-58.167,116.479-74.445,179.586L30.77,755.728c-15.271,2.462-26.499,15.641-26.499,31.11v226.324 c0,15.47,11.227,28.648,26.499,31.11l192.163,30.956c16.278,63.104,41.252,123.35,74.445,179.582l-114.026,157.813 c-9.06,12.537-7.68,29.796,3.257,40.732l160.029,160.033c10.941,10.946,28.195,12.313,40.737,3.263l157.82-114.03 c56.25,33.197,116.483,58.171,179.583,74.444l30.956,192.163c2.461,15.271,15.641,26.499,31.105,26.499h226.32 c15.474,0,28.652-11.228,31.114-26.499l30.956-192.167c63.099-16.274,123.341-41.247,179.573-74.44l157.822,114.03 c12.546,9.055,29.805,7.68,40.741-3.258l160.029-160.029c10.938-10.941,12.317-28.199,3.253-40.736l-114.021-157.818 c33.189-56.232,58.167-116.479,74.44-179.582l192.163-30.956c15.271-2.462,26.499-15.641,26.499-31.11V786.837 C1795.729,771.368,1784.502,758.189,1769.23,755.728z M1732.71,986.32l-186.353,30.02c-12.704,2.048-22.894,11.618-25.725,24.178 c-15.931,70.629-43.669,137.557-82.459,198.919c-6.884,10.885-6.444,24.855,1.091,35.291l110.583,153.053l-122.065,122.07 l-153.066-110.588c-10.444-7.544-24.415-7.97-35.29-1.095c-61.358,38.794-128.282,66.532-198.906,82.449 c-12.555,2.831-22.13,13.021-24.178,25.729l-30.024,186.361H813.681l-30.015-186.356c-2.048-12.709-11.623-22.895-24.186-25.726 c-70.607-15.922-137.531-43.664-198.916-82.458c-10.893-6.88-24.854-6.444-35.29,1.095l-153.051,110.588l-122.07-122.075 l110.584-153.048c7.539-10.436,7.974-24.406,1.095-35.291c-38.79-61.362-66.532-128.29-82.463-198.919 c-2.831-12.56-13.016-22.13-25.725-24.178L67.291,986.32V813.679l186.352-30.015c12.709-2.048,22.895-11.619,25.725-24.177 c15.931-70.634,43.673-137.562,82.463-198.925c6.879-10.884,6.444-24.854-1.095-35.29L250.152,372.223l122.07-122.074 l153.051,110.588c10.436,7.539,24.415,7.975,35.29,1.095c61.394-38.803,128.317-66.545,198.916-82.459 c12.563-2.831,22.138-13.021,24.186-25.729l30.015-186.352h172.637l30.024,186.356c2.048,12.708,11.623,22.898,24.178,25.729 c70.624,15.917,137.548,43.656,198.915,82.454c10.875,6.875,24.846,6.449,35.29-1.095l153.058-110.584l122.065,122.07 l-110.583,153.053c-7.535,10.436-7.975,24.406-1.091,35.291c38.799,61.385,66.546,128.308,82.459,198.915 c2.831,12.56,13.021,22.134,25.725,24.182l186.353,30.015V986.32z"}),wp.element.createElement(a,{d:"M899.999,415.369c-267.219,0-484.624,217.4-484.624,484.624s217.405,484.628,484.624,484.628 c267.229,0,484.633-217.404,484.633-484.628S1167.228,415.369,899.999,415.369z M1174.867,580.563L900.008,855.427L625.14,580.567 C699,516.919,795.086,478.389,899.999,478.389C1004.921,478.389,1101.007,516.924,1174.867,580.563z M478.396,899.993 c0-104.918,38.534-201,102.179-274.859l287.924,287.915v407.379C650.68,1304.259,478.396,1121.868,478.396,899.993z M931.518,1320.428V913.049l287.915-287.92c63.645,73.86,102.18,169.942,102.18,274.864 C1321.612,1121.868,1149.336,1304.25,931.518,1320.428z"}))},check:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M872.831,1326.446c-1.999,0.113-3.853-0.183-5.733-0.53c-6.064-1.076-11.863-3.945-16.53-8.611 l-514.859-514.86c-5.852-5.855-9.138-13.792-9.138-22.068c0-8.275,3.287-16.212,9.142-22.067L455.5,638.535 c12.189-12.185,31.954-12.185,44.126,0l373.109,373.1l727.884-727.89c12.189-12.185,31.949-12.185,44.131,0l119.788,119.784 c5.855,5.851,9.142,13.792,9.142,22.067s-3.286,16.212-9.137,22.063l-869.649,869.645 C889.043,1323.155,881.106,1326.446,872.831,1326.446z M401.905,780.377l470.825,470.83l825.614-825.61l-75.657-75.653 l-727.885,727.889c-12.19,12.186-31.95,12.186-44.13,0L477.563,704.729L401.905,780.377z"}),wp.element.createElement(a,{d:"M1692.376,662.67c22.568,75.209,34.758,154.872,34.758,237.334c0,456.08-371.054,827.129-827.138,827.129 c-456.08,0-827.129-371.05-827.129-827.129c0-456.084,371.049-827.138,827.129-827.138c213.186,0,407.787,81.086,554.605,214.022 l44.161-44.165C1340.604,98.513,1130.391,10.456,899.996,10.456c-490.494,0-889.54,399.051-889.54,889.548 s399.046,889.54,889.54,889.54c490.498,0,889.548-399.042,889.548-889.54c0-100.372-16.734-196.909-47.517-286.985 L1692.376,662.67z"}))},checklist:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1506.693,279.092h-150.36v-85.277c0-17.353-14.065-31.418-31.419-31.418h-227.317 C1078.205,70.574,996.5,2.304,900.003,2.304c-96.499,0-178.202,68.27-197.595,160.092H475.091 c-17.353,0-31.419,14.065-31.419,31.418v85.277H293.307c-17.353,0-31.419,14.066-31.419,31.419v1455.764 c0,17.353,14.066,31.419,31.419,31.419h1213.386c17.354,0,31.42-14.066,31.42-31.419V310.511 C1538.113,293.158,1524.047,279.092,1506.693,279.092z M506.511,225.234h223.28c16.617,0,30.354-12.935,31.362-29.517 c4.436-73.219,65.424-130.574,138.85-130.574c73.425,0,134.413,57.355,138.849,130.574c1.009,16.582,14.746,29.517,31.363,29.517 h223.28v53.858v62.838v74.81H506.511v-74.81v-62.838V225.234z M1475.274,1734.855H324.728V341.93h118.944v106.229 c0,17.354,14.066,31.419,31.419,31.419h849.823c17.354,0,31.419-14.066,31.419-31.419V341.93h118.941V1734.855z"}),wp.element.createElement(a,{d:"M663.633,684.019L534.366,813.291l-57.803-57.806c-12.272-12.265-32.164-12.265-44.437,0 c-12.269,12.272-12.269,32.164,0,44.437l80.021,80.022c6.136,6.132,14.176,9.201,22.219,9.201c8.043,0,16.083-3.069,22.219-9.201 l151.486-151.486c12.269-12.273,12.269-32.165,0-44.438C695.799,671.755,675.907,671.755,663.633,684.019z"}),wp.element.createElement(a,{d:"M824.996,750.563c-17.354,0-31.419,14.066-31.419,31.419c0,17.354,14.066,31.419,31.419,31.419h520.665 c17.354,0,31.419-14.066,31.419-31.419c0-17.353-14.065-31.419-31.419-31.419H824.996z"}),wp.element.createElement(a,{d:"M663.633,1039.925l-129.267,129.272l-57.803-57.807c-12.272-12.265-32.164-12.265-44.437,0 c-12.269,12.272-12.269,32.164,0,44.438l80.021,80.021c6.136,6.133,14.176,9.2,22.219,9.2c8.043,0,16.083-3.067,22.219-9.2 l151.486-151.486c12.269-12.272,12.269-32.163,0-44.438C695.799,1027.66,675.907,1027.66,663.633,1039.925z"}),wp.element.createElement(a,{d:"M1345.661,1106.467H824.996c-17.354,0-31.419,14.066-31.419,31.42s14.066,31.42,31.419,31.42h520.665 c17.354,0,31.419-14.066,31.419-31.42S1363.015,1106.467,1345.661,1106.467z"}),wp.element.createElement(a,{d:"M663.633,1395.83l-129.267,129.272l-57.803-57.808c-12.272-12.264-32.164-12.264-44.437,0 c-12.269,12.274-12.269,32.166,0,44.439l80.021,80.021c6.136,6.132,14.176,9.199,22.219,9.199c8.043,0,16.083-3.067,22.219-9.199 l151.486-151.486c12.269-12.274,12.269-32.166,0-44.438C695.799,1383.566,675.907,1383.566,663.633,1395.83z"}),wp.element.createElement(a,{d:"M1345.661,1462.373H824.996c-17.354,0-31.419,14.066-31.419,31.42s14.066,31.418,31.419,31.418h520.665 c17.354,0,31.419-14.064,31.419-31.418S1363.015,1462.373,1345.661,1462.373z"}))},clock:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M899.998,1797.179c-494.704,0-897.173-402.472-897.173-897.173c0-494.708,402.469-897.184,897.173-897.184 c494.708,0,897.179,402.476,897.179,897.184C1797.177,1394.707,1394.705,1797.179,899.998,1797.179z M899.998,65.818 c-459.966,0-834.176,374.215-834.176,834.188c0,459.964,374.21,834.176,834.176,834.176c459.97,0,834.183-374.212,834.183-834.176 C1734.181,440.033,1359.968,65.818,899.998,65.818z"}),wp.element.createElement(a,{d:"M899.998,1641.189c-408.689,0-741.183-332.492-741.183-741.184c0-408.695,332.494-741.194,741.183-741.194 c408.693,0,741.19,332.499,741.19,741.194C1641.188,1308.697,1308.69,1641.189,899.998,1641.189z M899.998,221.808 c-373.955,0-678.187,304.239-678.187,678.198c0,373.954,304.232,678.186,678.187,678.186 c373.957,0,678.193-304.231,678.193-678.186C1578.19,526.047,1273.954,221.808,899.998,221.808z"}),wp.element.createElement(a,{d:"M1408.631,842.445H973.452v-435.18c0-37.471-30.486-67.963-67.952-67.963h-7.172 c-37.457,0-67.953,30.493-67.953,67.963v503.141v7.154v0.008c0,37.476,30.496,67.963,67.953,67.963h7.172l0.052-0.009h503.079 c37.466,0,67.955-30.479,67.955-67.962v-7.154C1476.586,872.939,1446.097,842.445,1408.631,842.445z M880.452,407.265 c0-9.859,8.015-17.883,17.876-17.883h7.172c9.843,0,17.875,8.024,17.875,17.883v435.18h-25.047 c-6.178,0-12.164,0.909-17.876,2.469V407.265z M1426.508,917.56c0,9.852-8.034,17.884-17.877,17.884H970.975h-65.448h-7.199 c-9.861,0-17.876-8.032-17.876-17.884v-7.154c0-9.861,8.015-17.879,17.876-17.879h25.047h50.077h435.179 c9.843,0,17.877,8.018,17.877,17.879V917.56z"}))},cloudDatabase:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1590.159,376.445c-14.401-99.645-62.88-191.214-137.876-259.647 c-80.549-73.5-185.007-113.977-294.123-113.977c-137.095,0-264.828,63.774-347.255,171.996 c-44.933-22.768-94.688-34.687-145.53-34.687c-138.358,0-259.688,87.511-304.327,216.061c-11.252-1.184-22.574-1.776-33.883-1.776 c-177.686,0-322.247,144.557-322.247,322.246c0,177.686,144.561,322.243,322.247,322.243c5.378,0,10.923-0.146,16.538-0.435 c0.86,0.07,1.728,0.104,2.605,0.104h106.91v196.466c0,39.389,25.645,95.509,147.825,139.187 c73.803,26.387,168.201,42.477,269.688,46.315v141.735c-51.562,11.959-92.227,52.629-104.186,104.204H350.779 c-17.367,0-31.445,14.077-31.445,31.444s14.078,31.443,31.445,31.443h415.767c14.301,61.688,69.662,107.81,135.63,107.81 c65.968,0,121.328-46.122,135.63-107.81h415.767c17.368,0,31.445-14.076,31.445-31.443s-14.077-31.444-31.445-31.444h-415.767 c-11.958-51.575-52.624-92.245-104.185-104.204v-140.959c113.528-1.386,220.136-17.955,301.623-47.092 c122.181-43.678,147.825-99.798,147.825-139.187V998.574h75.536c5.01,0.22,9.672,0.33,14.238,0.33c4.717,0,9.551-0.114,14.78-0.355 c0.06,0,0.126-0.006,0.191-0.009c172.299-7.896,307.267-149.286,307.267-321.879 C1795.082,542.664,1713.555,424.476,1590.159,376.445z M971.688,1626.481c4.36,9.603,6.852,20.228,6.852,31.444 s-2.491,21.842-6.852,31.443c-12.016,26.449-38.621,44.922-69.513,44.922s-57.497-18.473-69.512-44.922 c-4.36-9.602-6.852-20.227-6.852-31.443s2.492-21.842,6.852-31.444c12.015-26.448,38.621-44.921,69.512-44.921 S959.673,1600.033,971.688,1626.481z M1320.182,1195.04c0,50.364-156.617,123.526-402.037,123.526 c-245.422,0-402.038-73.162-402.038-123.526v-82.546c21.092,14.357,48.755,28.387,84.937,41.324 c85.187,30.457,197.798,47.227,317.102,47.227c119.301,0,231.913-16.77,317.1-47.227c36.182-12.938,63.846-26.967,84.938-41.324 V1195.04z M1320.182,1014.631c0,50.363-156.617,123.526-402.037,123.526c-245.422,0-402.038-73.163-402.038-123.526v-16.057v-60.331 c21.092,14.358,48.755,28.388,84.937,41.324c19.872,7.105,41.288,13.432,63.88,19.007c74.259,18.328,161.748,28.221,253.222,28.221 c91.472,0,178.962-9.893,253.221-28.221c22.591-5.575,44.007-11.901,63.879-19.007c36.182-12.937,63.846-26.966,84.938-41.324 v60.331V1014.631z M516.106,840.379c0-50.368,156.616-123.535,402.038-123.535c245.42,0,402.037,73.167,402.037,123.535 c0,30.523-57.608,69.398-157.564,95.307c-64.976,16.84-147.795,28.221-244.473,28.221c-96.681,0-179.498-11.381-244.475-28.221 C573.713,909.777,516.106,870.903,516.106,840.379z M1485.101,935.713c-0.062,0-0.123,0.004-0.185,0.009 c-8.662,0.395-15.533,0.395-24.152,0c-0.483-0.026-0.966-0.035-1.449-0.035h-76.245V832.141c0-4.027-0.785-7.861-2.163-11.396 c-8.242-37.038-42.625-82.721-145.662-119.561c-85.182-30.453-197.799-47.228-317.1-47.228 c-119.303,0-231.919,16.775-317.102,47.228c-122.18,43.684-147.825,99.803-147.825,139.196v95.307H350.726 c-2.124-0.304-4.281-0.387-6.462-0.245c-5.847,0.381-11.599,0.573-17.1,0.573c-143.012,0-259.357-116.345-259.357-259.354 c0-143.007,116.345-259.357,259.357-259.357c16.828,0,33.699,1.636,50.141,4.856c16.477,3.225,32.471-6.983,36.542-23.202 c28.975-115.367,132.41-195.938,251.527-195.938c48.983,0,96.697,13.734,137.985,39.722c14.458,9.103,33.542,4.992,42.973-9.26 C915.831,128.427,1032.4,65.71,1158.16,65.71c193.254,0,353.107,144.842,371.834,336.911c1.22,12.511,9.771,23.092,21.742,26.909 c107.936,34.432,180.457,133.743,180.457,247.131C1732.193,815.52,1623.674,929.277,1485.101,935.713z"}))},cloudDownload:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1591.313,488.215c-13.949-100.311-62.488-192.562-137.895-261.369 c-80.375-73.338-184.605-113.727-293.484-113.727c-137.905,0-266.314,64.672-348.487,174.261 c-45.448-23.62-96.001-36.004-147.688-36.004c-138.682,0-260.158,88.388-303.7,217.866c-12.225-1.405-24.546-2.112-36.837-2.112 c-176.729,0-320.505,143.778-320.505,320.505c0,176.725,143.776,320.501,320.505,320.501c5.427,0,11.038-0.147,16.728-0.44 c0.839,0.077,1.689,0.115,2.547,0.115h33.405c4.649-18.876,10.265-37.37,16.843-55.408h-46.121 c-1.937-0.293-3.911-0.378-5.905-0.255c-5.995,0.387-11.881,0.58-17.497,0.58c-146.172,0-265.097-118.917-265.097-265.093 c0-146.174,118.924-265.097,265.097-265.097c17.184,0,34.429,1.67,51.257,4.961c14.471,2.837,28.601-6.149,32.188-20.44 c29.617-117.917,135.335-200.274,257.093-200.274c50.078,0,98.846,14.039,141.04,40.602c12.746,8.02,29.559,4.396,37.865-8.159 c70.713-106.887,189.317-170.699,317.27-170.699c196.637,0,359.281,147.372,378.332,342.804c1.07,11.019,8.607,20.341,19.15,23.706 c110.33,35.196,184.459,136.707,184.459,252.598c0,141.925-110.92,258.198-252.551,264.788c-0.07,0.004-0.139,0.004-0.209,0.008 c-8.727,0.398-15.997,0.398-24.674,0c-0.426-0.02-0.85-0.027-1.279-0.027h-55.902c6.578,18.038,12.193,36.532,16.84,55.408h38.433 c4.962,0.217,9.632,0.325,14.246,0.325c4.754,0,9.569-0.112,14.722-0.349c0.059,0,0.119-0.008,0.182-0.008 c171.364-7.854,305.602-148.479,305.602-320.145C1797.283,653.584,1715.246,535.448,1591.313,488.215z"}),wp.element.createElement(a,{d:"M900,786.832c-248.142,0-450.02,201.877-450.02,450.021c0,248.146,201.878,450.027,450.02,450.027 s450.023-201.882,450.023-450.027C1350.023,988.709,1148.142,786.832,900,786.832z M900,1631.473 c-217.589,0-394.611-177.029-394.611-394.619c0-217.589,177.022-394.613,394.611-394.613 c217.593,0,394.615,177.024,394.615,394.613C1294.615,1454.443,1117.593,1631.473,900,1631.473z"}),wp.element.createElement(a,{d:"M1055.823,1255.545L927.704,1383.66V963.679c0-15.297-12.402-27.704-27.704-27.704 c-15.301,0-27.704,12.407-27.704,27.704v419.981l-128.119-128.115c-10.822-10.822-28.361-10.818-39.183,0 c-10.818,10.821-10.818,28.361,0,39.179l171.418,171.407c5.411,5.41,12.5,8.115,19.588,8.115c0.688,0,1.372-0.046,2.056-0.1 c0.646,0.047,1.287,0.1,1.944,0.1s1.299-0.053,1.944-0.1c0.684,0.054,1.368,0.1,2.056,0.1c7.089,0,14.181-2.705,19.588-8.115 l171.418-171.407c10.818-10.817,10.818-28.357,0-39.179C1084.192,1244.727,1066.646,1244.727,1055.823,1255.545z"}))},cloudNetwork:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1635.687,1278.4c-47.769,0-88.294,31.611-101.762,75.016h-145.789v-349.629h73.367 c4.988,0.22,9.674,0.326,14.307,0.326c4.782,0,9.635-0.115,14.817-0.348c0.079-0.005,0.158-0.01,0.237-0.01 c173.133-7.938,308.756-150.018,308.756-323.454c0-134.669-81.956-253.44-205.979-301.697 c-14.456-100.161-63.179-192.209-138.563-260.994c-80.945-73.862-185.92-114.539-295.579-114.539 c-137.799,0-266.188,64.115-349.019,172.916c-45.162-22.9-95.19-34.891-146.321-34.891c-139.064,0-261.005,87.974-305.833,217.184 c-11.335-1.191-22.746-1.793-34.13-1.793C145.642,356.487,0.38,501.749,0.38,680.302c0,178.549,145.262,323.812,323.815,323.812 c5.393,0,10.958-0.146,16.592-0.436c0.875,0.074,1.758,0.109,2.65,0.109h72.515v349.629h-145.79 c-13.467-43.404-53.993-75.016-101.761-75.016c-58.735,0-106.521,47.787-106.521,106.521c0,58.735,47.786,106.521,106.521,106.521 c47.769,0,88.294-31.611,101.761-75.016h177.295c17.401,0,31.506-14.104,31.506-31.506v-381.135h194.534v586.93 c-43.404,13.463-75.016,53.988-75.016,101.762c0,58.735,47.787,106.521,106.521,106.521s106.521-47.786,106.521-106.521 c0-47.773-31.611-88.299-75.016-101.762v-586.93h331.067v586.93c-43.403,13.463-75.016,53.988-75.016,101.762 c0,58.735,47.787,106.521,106.521,106.521c58.735,0,106.522-47.786,106.522-106.521c0-47.773-31.612-88.299-75.016-101.762v-586.93 h194.534v381.135c0,17.401,14.104,31.506,31.506,31.506h177.295c13.468,43.404,53.993,75.016,101.762,75.016 c58.735,0,106.521-47.786,106.521-106.521C1742.208,1326.188,1694.422,1278.4,1635.687,1278.4z M168.401,1428.432 c-23.99,0-43.51-19.52-43.51-43.51s19.52-43.51,43.51-43.51c23.99,0,43.51,19.52,43.51,43.51S192.391,1428.432,168.401,1428.432z M705.004,1735.988c-23.99,0-43.51-19.52-43.51-43.51s19.52-43.51,43.51-43.51s43.51,19.52,43.51,43.51 S728.994,1735.988,705.004,1735.988z M1099.083,1735.988c-23.989,0-43.509-19.52-43.509-43.51s19.52-43.51,43.509-43.51 c23.99,0,43.51,19.52,43.51,43.51S1123.073,1735.988,1099.083,1735.988z M341.398,940.525c-5.886,0.382-11.674,0.575-17.204,0.575 c-143.807,0-260.803-116.996-260.803-260.799c0-143.807,116.996-260.803,260.803-260.803c16.909,0,33.875,1.644,50.428,4.883 c16.469,3.2,32.53-7.002,36.608-23.247c29.133-116.007,133.14-197.026,252.927-197.026c49.272,0,97.252,13.81,138.753,39.941 c14.479,9.116,33.615,5.006,43.062-9.279c69.877-105.629,187.079-168.687,313.525-168.687c194.314,0,355.039,145.629,373.86,338.749 c1.222,12.531,9.784,23.133,21.783,26.961c108.539,34.626,181.467,134.493,181.467,248.509c0,139.628-109.119,254.017-248.452,260.5 c-0.065,0-0.127,0.005-0.193,0.009c-8.602,0.387-15.744,0.387-24.311,0c-0.479-0.021-0.963-0.035-1.441-0.035H347.895 C345.763,940.468,343.587,940.385,341.398,940.525z M1635.687,1428.432c-23.99,0-43.51-19.52-43.51-43.51s19.52-43.51,43.51-43.51 s43.51,19.52,43.51,43.51S1659.677,1428.432,1635.687,1428.432z"}))},compass:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1378.086,379.348L767.847,755.444c-0.07,0.044-0.132,0.097-0.202,0.141 c-0.521,0.324-1.011,0.701-1.516,1.055c-0.456,0.329-0.933,0.64-1.375,0.991c-0.459,0.368-0.885,0.779-1.328,1.173 c-0.438,0.39-0.889,0.762-1.3,1.179c-0.408,0.403-0.78,0.849-1.166,1.283c-0.394,0.447-0.811,0.876-1.182,1.345 c-0.351,0.438-0.662,0.912-0.991,1.376c-0.359,0.5-0.727,0.99-1.055,1.511c-0.044,0.07-0.096,0.131-0.141,0.202l-376.101,610.235 c-7.635,12.384-5.761,28.392,4.525,38.676c6.058,6.059,14.102,9.2,22.214,9.2c5.668,0,11.371-1.528,16.466-4.67l610.24-376.093 c0.071-0.043,0.131-0.095,0.202-0.14c0.521-0.328,1.012-0.696,1.516-1.056c0.455-0.329,0.932-0.64,1.376-0.99 c0.464-0.372,0.893-0.788,1.339-1.183c0.43-0.386,0.878-0.758,1.288-1.166c0.413-0.41,0.784-0.862,1.174-1.3 c0.396-0.442,0.807-0.867,1.175-1.327c0.35-0.441,0.66-0.92,0.99-1.375c0.359-0.505,0.726-0.994,1.055-1.517 c0.044-0.071,0.097-0.131,0.141-0.201l376.101-610.24c7.635-12.385,5.761-28.391-4.526-38.681 C1406.481,373.587,1390.466,371.713,1378.086,379.348z M504.352,1296.283l285.853-463.813l177.963,177.961L504.352,1296.283z M1012.574,966.025l-177.96-177.964l463.813-285.849L1012.574,966.025z"}),wp.element.createElement(a,{d:"M1796.481,899.244L1796.481,899.244C1796.478,405.69,1394.943,4.158,901.394,4.154h-0.002l0,0 c-0.002,0-0.004,0-0.004,0c-493.55,0-895.082,401.533-895.086,895.09l0,0l0,0v0.004c0,493.552,401.533,895.086,895.086,895.086 c0,0,0.002,0,0.004,0l0,0h0.002c493.555-0.004,895.088-401.538,895.088-895.086V899.244L1796.481,899.244z M964.073,1729.182 c-1.247-33.586-28.789-60.447-62.682-60.447s-61.436,26.861-62.681,60.447c-409.067-30.599-736.657-358.192-767.26-767.256 c33.588-1.244,60.45-28.789,60.45-62.682s-26.862-61.433-60.447-62.681C102.058,427.497,429.646,99.907,838.711,69.304 c1.245,33.588,28.788,60.45,62.681,60.45s61.435-26.862,62.682-60.448c409.063,30.604,736.653,358.195,767.256,767.257 c-33.586,1.249-60.446,28.789-60.446,62.681s26.86,61.438,60.446,62.682C1700.727,1370.989,1373.136,1698.575,964.073,1729.182z"}))},creditCard:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M197.667,1268.735h536.292c17.423,0,31.546-14.119,31.546-31.546c0-17.421-14.123-31.547-31.546-31.547 H197.667c-17.423,0-31.546,14.126-31.546,31.547C166.121,1254.616,180.243,1268.735,197.667,1268.735z"}),wp.element.createElement(a,{d:"M905.211,1423.088H197.667c-17.423,0-31.546,14.127-31.546,31.546c0,17.428,14.123,31.547,31.546,31.547 h707.544c17.425,0,31.547-14.119,31.547-31.547C936.758,1437.215,922.636,1423.088,905.211,1423.088z"}),wp.element.createElement(a,{d:"M197.667,1051.29h1381.288c17.425,0,31.547-14.129,31.547-31.547c0-17.428-14.122-31.547-31.547-31.547 H197.667c-17.423,0-31.546,14.119-31.546,31.547C166.121,1037.161,180.243,1051.29,197.667,1051.29z"}),wp.element.createElement(a,{d:"M1418.561,1141.168c-41.674,0-80.367,12.946-112.333,34.979c-31.964-22.032-70.658-34.979-112.331-34.979 c-109.409,0-198.422,89.015-198.422,198.423c0,109.411,89.013,198.417,198.422,198.417c41.673,0,80.367-12.939,112.331-34.979 c31.966,22.04,70.659,34.979,112.333,34.979c109.409,0,198.419-89.006,198.419-198.417 C1616.979,1230.183,1527.97,1141.168,1418.561,1141.168z M1306.228,1414.962c-14.511-21.556-22.995-47.485-22.995-75.371 c0-27.884,8.484-53.825,22.995-75.38c14.51,21.555,22.995,47.496,22.995,75.38 C1329.223,1367.477,1320.737,1393.406,1306.228,1414.962z M1058.568,1339.591c0-74.622,60.707-135.33,135.328-135.33 c23.75,0,46.087,6.17,65.513,16.97c-24.654,33.061-39.27,74.033-39.27,118.36c0,44.319,14.615,85.292,39.27,118.354 c-19.426,10.8-41.763,16.97-65.513,16.97C1119.275,1474.914,1058.568,1414.207,1058.568,1339.591z M1418.561,1474.914 c-23.753,0-46.09-6.17-65.515-16.97c24.655-33.062,39.271-74.034,39.271-118.354c0-44.327-14.615-85.3-39.271-118.36 c19.425-10.8,41.762-16.97,65.515-16.97c74.618,0,135.326,60.708,135.326,135.33 C1553.887,1414.207,1493.179,1474.914,1418.561,1474.914z"}),wp.element.createElement(a,{d:"M1765.979,668.543h-74.491l-237.127-647.23c-5.99-16.356-24.096-24.773-40.471-18.768L44.973,504.073 c-16.358,5.994-24.76,24.113-18.766,40.474l45.428,123.997H34.02c-17.424,0-31.547,14.123-31.547,31.546v1067.756 c0,17.429,14.123,31.547,31.547,31.547h1731.96c17.425,0,31.548-14.118,31.548-31.547V700.09 C1797.527,682.667,1783.404,668.543,1765.979,668.543z M1624.293,668.543H658.115l851.84-312.087L1624.293,668.543z M1405.972,72.641l34.923,95.313L131.221,647.777l-34.923-95.315L1405.972,72.641z M1462.596,227.196l25.653,70.019 L474.711,668.543H257.947L1462.596,227.196z M1734.434,1736.3H65.566V731.637h29.188h67.186H302.5h183.404h1161.509h67.189h19.831 v54.12v155.445V1736.3z"}))},database:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1801.93,296.528c0-190.31-461.223-292.996-895.183-292.996c-433.958,0-895.176,102.686-895.176,292.996 v0.005l0,0v1210.046c0,190.315,461.218,293.004,895.176,293.004c433.96,0,895.183-102.688,895.183-293.004V296.533l0,0V296.528z M1738.992,1202.3c0,53.213-86.213,111.09-230.624,154.815c-160.26,48.529-373.921,75.252-601.621,75.252 c-227.701,0-441.355-26.723-601.614-75.252C160.723,1313.39,74.508,1255.513,74.508,1202.3v-190.62 c140.622,117.191,494.659,179.347,832.239,179.347c337.587,0,691.62-62.155,832.245-179.347V1202.3z M1738.992,898.022 c0,53.214-86.213,111.088-230.624,154.816c-160.26,48.528-373.921,75.251-601.621,75.251c-227.701,0-441.355-26.723-601.614-75.251 C160.723,1009.11,74.508,951.236,74.508,898.022V707.396C215.13,824.587,569.167,886.743,906.747,886.743 c337.587,0,691.62-62.156,832.245-179.347V898.022z M1738.992,593.739c0,53.214-86.213,111.089-230.624,154.815 c-160.26,48.529-373.921,75.252-601.621,75.252c-227.701,0-441.355-26.723-601.614-75.252 C160.723,704.828,74.508,646.953,74.508,593.739V410.186C215.13,527.377,569.167,589.533,906.747,589.533 c337.587,0,691.62-62.156,832.245-179.348V593.739z M305.133,141.718C465.392,93.193,679.046,66.47,906.747,66.47 c227.7,0,441.361,26.723,601.621,75.248c144.411,43.731,230.624,101.602,230.624,154.811c0,53.213-86.213,111.085-230.624,154.815 c-160.26,48.529-373.921,75.251-601.621,75.251c-227.701,0-441.355-26.723-601.614-75.251 c-144.41-43.73-230.625-101.603-230.625-154.815C74.508,243.32,160.723,185.449,305.133,141.718z M1508.368,1661.394 c-160.26,48.529-373.921,75.253-601.621,75.253c-227.701,0-441.355-26.724-601.614-75.253 c-144.41-43.725-230.625-101.601-230.625-154.814v-190.622c140.622,117.192,494.659,179.348,832.239,179.348 c337.587,0,691.62-62.155,832.245-179.348v190.622C1738.992,1559.793,1652.779,1617.669,1508.368,1661.394z"}))},design:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1541.606,1540.146l0.009-0.008c35.598-35.594,35.598-93.52,0-129.121 c-17.24-17.236-40.178-26.745-64.569-26.745c-24.378,0-47.314,9.509-64.564,26.763c-35.588,35.584-35.588,93.51,0.009,129.104 C1448.096,1575.73,1506.014,1575.73,1541.606,1540.146z M1440.885,1511.743c-9.656-9.655-14.975-22.498-14.975-36.165 c0-13.659,5.318-26.511,14.975-36.167c9.665-9.655,22.512-14.979,36.175-14.979c13.659,0,26.497,5.323,36.161,14.979 c19.938,19.945,19.938,52.387-0.008,72.332C1493.271,1531.689,1460.831,1531.681,1440.885,1511.743z"}),wp.element.createElement(a,{d:"M1700.934,402.736c0.021-0.026,0.047-0.043,0.068-0.065c0.044-0.043,0.083-0.091,0.127-0.134l5.504-5.505 l-0.138-0.139c81.836-87.814,80.038-225.814-5.507-311.356c-42.353-42.357-98.664-65.685-158.565-65.685 c-57.228,0-111.154,21.339-152.792,60.18l-0.134-0.134l-5.511,5.507c-0.043,0.046-0.09,0.085-0.134,0.131 c-0.021,0.021-0.039,0.045-0.061,0.069L66.371,1403.02l0.513,0.513c-7.364,4.749-12.699,12.548-13.98,21.907L9.578,1741.903 c-1.319,9.647,1.95,19.347,8.831,26.232c5.875,5.87,13.807,9.108,22.004,9.108c1.402,0,2.813-0.095,4.224-0.286l316.451-43.338 c9.365-1.276,17.163-6.617,21.912-13.98l0.512,0.513L1700.934,402.736z M1542.423,82.094c43.272,0,83.954,16.852,114.551,47.452 c55.643,55.638,62.276,142.02,19.897,204.983L1451.973,109.64C1478.482,91.724,1509.717,82.094,1542.423,82.094z M1389.497,167.919l229.113,229.112L383.512,1632.129l-86.195-86.19l991.423-991.409l-59.351-59.342l-991.41,991.418 l-83.585-83.586L1389.497,167.919z M76.804,1709.731l35.68-260.604l224.915,224.916L76.804,1709.731z"}),wp.element.createElement(a,{d:"M506.941,804.479l56.789-56.789l-454.446-454.45l185.432-185.437l87.924,87.932l-63.792,63.783 l50.362,50.359l63.792-63.779l51.262,51.258l-63.792,63.788l50.363,50.354l63.797-63.779l51.257,51.267l-94.375,94.353 l50.376,50.363l94.362-94.362l62.502,62.498l-63.792,63.801l50.363,50.354l63.792-63.792l0.043,0.047l56.789-56.789 L323.106,22.622c-15.682-15.686-41.102-15.686-56.784,0L24.102,264.845c-15.687,15.683-15.687,41.107,0,56.789L506.941,804.479z"}),wp.element.createElement(a,{d:"M1778.944,1478.287c-0.726-0.729-1.478-1.424-2.241-2.085l-505.282-505.273l-151.159,151.159l50.259,50.26 l94.371-94.37l428.79,428.782l-185.441,185.432l-479.045-479.041l-56.789,56.798l507.437,507.427 c15.682,15.69,41.102,15.69,56.788,0l242.234-242.213c0.021-0.034,0.048-0.052,0.079-0.086 C1794.63,1519.402,1794.63,1493.969,1778.944,1478.287z"}))},diamond:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1787.623,836.804l-450.621-450.623c-0.181-0.18-0.375-0.33-0.559-0.501 c-0.568-0.542-1.137-1.079-1.744-1.581c-0.396-0.321-0.811-0.603-1.215-0.906c-0.422-0.313-0.832-0.639-1.272-0.934 c-0.448-0.299-0.915-0.563-1.378-0.836c-0.422-0.255-0.841-0.52-1.276-0.757c-0.453-0.237-0.916-0.444-1.378-0.66 c-0.476-0.229-0.942-0.463-1.43-0.665c-0.433-0.181-0.873-0.321-1.313-0.48c-0.532-0.194-1.061-0.396-1.611-0.563 c-0.418-0.128-0.845-0.22-1.269-0.326c-0.571-0.149-1.14-0.308-1.725-0.423c-0.462-0.092-0.934-0.141-1.396-0.211 c-0.555-0.084-1.101-0.185-1.66-0.238c-0.762-0.08-1.523-0.097-2.279-0.119c-0.273-0.005-0.537-0.04-0.811-0.04H485.319 c-0.36,0-0.713,0.044-1.069,0.053c-0.669,0.022-1.343,0.035-2.008,0.102c-0.607,0.062-1.197,0.167-1.792,0.26 c-0.422,0.066-0.841,0.11-1.259,0.193c-0.625,0.124-1.232,0.291-1.845,0.449c-0.383,0.097-0.771,0.18-1.149,0.294 c-0.59,0.181-1.162,0.396-1.734,0.608c-0.396,0.146-0.792,0.269-1.184,0.432c-0.537,0.224-1.056,0.479-1.58,0.735 c-0.409,0.194-0.819,0.374-1.224,0.585c-0.507,0.273-0.991,0.577-1.479,0.876c-0.392,0.237-0.792,0.458-1.17,0.713 c-0.542,0.361-1.053,0.757-1.568,1.149c-0.308,0.233-0.625,0.444-0.924,0.691c-0.814,0.669-1.594,1.369-2.337,2.113L12.375,836.804 c-0.189,0.189-0.353,0.401-0.537,0.595c-0.528,0.555-1.053,1.109-1.541,1.704c-0.348,0.422-0.651,0.867-0.973,1.298 c-0.291,0.396-0.595,0.775-0.867,1.18c-0.326,0.488-0.612,0.995-0.907,1.497c-0.225,0.383-0.471,0.757-0.683,1.153 c-0.264,0.502-0.493,1.017-0.735,1.527c-0.198,0.423-0.409,0.841-0.59,1.272c-0.031,0.07-0.07,0.141-0.101,0.211 c-0.167,0.427-0.295,0.863-0.449,1.294c-0.167,0.467-0.348,0.929-0.493,1.409c-0.154,0.51-0.269,1.026-0.396,1.541 c-0.119,0.484-0.255,0.96-0.356,1.453c-0.119,0.604-0.189,1.211-0.277,1.813c-0.053,0.414-0.137,0.823-0.176,1.242 c-0.106,1.039-0.158,2.082-0.158,3.125c0,1.043,0.052,2.086,0.158,3.125c0.04,0.422,0.124,0.828,0.18,1.246 c0.084,0.604,0.155,1.21,0.273,1.81c0.101,0.493,0.237,0.968,0.356,1.457c0.128,0.516,0.243,1.026,0.396,1.537 c0.145,0.48,0.325,0.942,0.493,1.414c0.181,0.501,0.343,1.007,0.55,1.5c0.181,0.432,0.392,0.85,0.59,1.272 c0.242,0.515,0.471,1.025,0.735,1.527c0.211,0.396,0.458,0.77,0.683,1.153c0.295,0.502,0.581,1.008,0.907,1.497 c0.272,0.405,0.577,0.784,0.867,1.18c0.321,0.431,0.625,0.876,0.973,1.298c0.488,0.594,1.013,1.149,1.541,1.703 c0.184,0.194,0.348,0.405,0.537,0.595l865.315,865.315c6.163,6.158,14.241,9.239,22.314,9.239c8.074,0,16.151-3.081,22.314-9.239 l865.306-865.315C1799.945,869.106,1799.945,849.13,1787.623,836.804z M498.394,440.05H732.87L468.645,827.564H110.866 L498.394,440.05z M990.748,440.05l264.234,387.514H545.025L809.25,440.05H990.748z M1301.613,440.05l387.515,387.514h-357.766 L1067.128,440.05H1301.613z M1263.76,890.672L900.003,1622.35L536.247,890.672H1263.76z M465.766,890.672l350.88,705.775 L110.87,890.672H465.766z M1334.242,890.672h354.886l-705.767,705.775L1334.242,890.672z"}),wp.element.createElement(a,{d:"M900.003,284.427c17.427,0,31.554-14.126,31.554-31.554V75.567c0-17.428-14.127-31.554-31.554-31.554 c-17.428,0-31.554,14.126-31.554,31.554v177.307C868.449,270.301,882.576,284.427,900.003,284.427z"}),wp.element.createElement(a,{d:"M1142.004,268.245c4.979,2.884,10.414,4.253,15.781,4.253c10.89,0,21.486-5.644,27.336-15.747 l88.861-153.434c8.732-15.077,3.586-34.384-11.494-43.119c-15.082-8.733-34.386-3.587-43.118,11.495l-88.86,153.434 C1121.775,240.205,1126.922,259.512,1142.004,268.245z"}),wp.element.createElement(a,{d:"M1441.811,306.825c8.074,0,16.151-3.082,22.314-9.24l125.37-125.371c12.322-12.326,12.322-32.302,0-44.628 c-12.325-12.317-32.302-12.317-44.628,0l-125.371,125.371c-12.321,12.326-12.321,32.302,0,44.628 C1425.659,303.744,1433.737,306.825,1441.811,306.825z"}),wp.element.createElement(a,{d:"M614.877,256.751c5.85,10.103,16.446,15.747,27.337,15.747c5.366,0,10.807-1.369,15.781-4.253 c15.081-8.733,20.228-28.041,11.494-43.118l-88.86-153.434c-8.729-15.082-28.046-20.224-43.118-11.495 c-15.082,8.734-20.228,28.042-11.494,43.119L614.877,256.751z"}),wp.element.createElement(a,{d:"M335.882,297.585c6.163,6.158,14.241,9.24,22.314,9.24s16.152-3.082,22.314-9.24 c12.322-12.326,12.322-32.302,0-44.628L255.139,127.586c-12.326-12.317-32.302-12.317-44.627,0 c-12.322,12.326-12.322,32.302,0,44.628L335.882,297.585z"}))},disk:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1216.338,1202.973H583.656c-17.222,0-31.189,13.963-31.189,31.188s13.967,31.188,31.189,31.188h632.682 c17.229,0,31.188-13.963,31.188-31.188S1233.567,1202.973,1216.338,1202.973z"}),wp.element.createElement(a,{d:"M1216.338,1378.226H583.656c-17.222,0-31.189,13.962-31.189,31.188s13.967,31.188,31.189,31.188h632.682 c17.229,0,31.188-13.962,31.188-31.188S1233.567,1378.226,1216.338,1378.226z"}),wp.element.createElement(a,{d:"M1216.338,1553.479H583.656c-17.222,0-31.189,13.963-31.189,31.188c0,17.227,13.967,31.189,31.189,31.189 h632.682c17.229,0,31.188-13.963,31.188-31.189C1247.526,1567.441,1233.567,1553.479,1216.338,1553.479z"}),wp.element.createElement(a,{d:"M1776.765,382.264L1411.048,16.547c-5.848-5.848-13.784-9.133-22.051-9.133h-88.005H499.001H98.754 C52.076,7.414,14.1,45.39,14.1,92.068v1615.864c0,46.679,37.977,84.655,84.655,84.655h400.247h801.991h400.256 c46.678,0,84.654-37.977,84.654-84.655V404.319C1785.902,396.048,1782.613,388.116,1776.765,382.264z M1300.992,69.791 c12.287,0,22.277,9.994,22.277,22.277v408.423c0,12.283-9.99,22.277-22.277,22.277H499.001c-12.278,0-22.277-9.994-22.277-22.277 V92.068c0-12.283,9.999-22.277,22.277-22.277H1300.992z M499.001,1730.211c-12.278,0-22.277-9.995-22.277-22.278v-651.991 c0-12.283,9.999-22.277,22.277-22.277h801.991c12.287,0,22.277,9.994,22.277,22.277v651.991c0,12.283-9.99,22.278-22.277,22.278 H499.001z M1723.525,1707.933c0,12.283-9.999,22.278-22.277,22.278h-318.673c1.944-7.11,3.071-14.56,3.071-22.278v-651.991 c0-46.679-37.976-84.655-84.654-84.655H499.001c-46.678,0-84.654,37.977-84.654,84.655v651.991c0,7.719,1.131,15.168,3.076,22.278 H98.754c-12.288,0-22.278-9.995-22.278-22.278V92.068c0-12.283,9.99-22.277,22.278-22.277h318.668 c-1.945,7.109-3.076,14.559-3.076,22.277v408.423c0,46.678,37.977,84.654,84.654,84.654h801.991 c46.679,0,84.654-37.976,84.654-84.654V92.068c0-4.765-0.487-9.407-1.249-13.958l339.128,339.127V1707.933z"}),wp.element.createElement(a,{d:"M1006.746,458.164h209.592c17.229,0,31.188-13.963,31.188-31.188V164.096 c0-17.226-13.959-31.188-31.188-31.188h-209.592c-17.23,0-31.188,13.962-31.188,31.188v262.879 C975.558,444.201,989.516,458.164,1006.746,458.164z M1037.935,195.285h147.215v200.502h-147.215V195.285z"}))},download:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M899.996,1.402C404.51,1.402,1.403,404.513,1.403,900.003c0,495.485,403.107,898.595,898.592,898.595 c495.489,0,898.6-403.109,898.6-898.595C1798.596,404.513,1395.484,1.402,899.996,1.402z M899.996,1735.555 c-460.721,0-835.546-374.826-835.546-835.552c0-460.726,374.825-835.556,835.546-835.556c460.724,0,835.555,374.83,835.555,835.556 C1735.551,1360.729,1360.72,1735.555,899.996,1735.555z"}),wp.element.createElement(a,{d:"M1178.01,942.664h-151.185V603.598c0-17.411-14.112-31.522-31.522-31.522H797.969 c-17.411,0-31.522,14.111-31.522,31.522v339.066H615.253c-11.896,0-22.781,6.698-28.141,17.319 c-5.361,10.624-4.283,23.36,2.779,32.929l281.383,381.16c5.946,8.056,15.356,12.805,25.362,12.805 c10.005,0,19.417-4.749,25.361-12.805l281.375-381.16c7.062-9.568,8.14-22.305,2.779-32.929 C1200.79,949.362,1189.906,942.664,1178.01,942.664z M896.636,1302.273L677.705,1005.71h120.264 c17.41,0,31.523-14.106,31.523-31.522V635.12H963.78v339.067c0,17.416,14.112,31.522,31.522,31.522h120.256L896.636,1302.273z"}),wp.element.createElement(a,{d:"M794.556,529.751h204.15c17.411,0,31.522-14.113,31.522-31.523s-14.111-31.522-31.522-31.522h-204.15 c-17.411,0-31.523,14.112-31.523,31.522S777.145,529.751,794.556,529.751z"}))},drop:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1588.221,739.806c-29.326-65.133-67.881-125.781-114.598-180.253c-0.521-0.609-1.066-1.197-1.636-1.767 L926.638,12.428c-5.896-5.894-13.888-9.204-22.221-9.204s-16.325,3.31-22.221,9.204L336.869,557.764 c-0.57,0.57-1.114,1.157-1.635,1.767c-46.734,54.489-85.298,115.146-114.616,180.275c-43.635,96.911-65.76,200.335-65.76,307.411 c0,413.309,336.251,749.56,749.56,749.56c413.308,0,749.56-336.251,749.56-749.56 C1653.977,940.141,1631.852,836.716,1588.221,739.806z M904.417,1733.932c-378.655,0-686.715-308.06-686.715-686.715 c0-98.12,20.262-192.865,60.219-281.608c26.697-59.303,61.767-114.563,104.244-164.266L904.417,79.084l522.274,522.28 c42.46,49.685,77.525,104.941,104.227,164.244c39.957,88.739,60.214,183.488,60.214,281.608 C1591.132,1425.872,1283.072,1733.932,904.417,1733.932z"}),wp.element.createElement(a,{d:"M1400.234,1103.192c-17.354,0-31.422,14.067-31.422,31.423c0,133.133-145.486,392.252-412.182,392.252 c-17.354,0-31.422,14.068-31.422,31.423c0,17.355,14.067,31.423,31.422,31.423c135.527,0,261.212-59.93,353.896-168.75 c73.584-86.398,121.13-198.797,121.13-286.348C1431.657,1117.26,1417.59,1103.192,1400.234,1103.192z"}))},favorite:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1711.338,9.595H88.67c-43.603,0-79.074,35.468-79.074,79.061v1622.683 c0,43.594,35.472,79.065,79.074,79.065h1622.667c43.594,0,79.066-35.472,79.066-79.065V88.656 C1790.404,45.063,1754.932,9.595,1711.338,9.595z M88.67,72.128h1622.667c9.117,0,16.532,7.416,16.532,16.528v194.047H72.13V88.656 C72.13,79.544,79.545,72.128,88.67,72.128z M1711.338,1727.871H88.67c-9.125,0-16.541-7.415-16.541-16.532V345.236h1655.74 v1366.103C1727.87,1720.456,1720.455,1727.871,1711.338,1727.871z"}),wp.element.createElement(a,{d:"M207.43,224.637c27.751,0,50.25-22.5,50.25-50.25c0-27.756-22.499-50.25-50.25-50.25 s-50.25,22.495-50.25,50.25C157.18,202.137,179.679,224.637,207.43,224.637z"}),wp.element.createElement(a,{d:"M365.997,224.637c27.751,0,50.25-22.5,50.25-50.25c0-27.756-22.499-50.25-50.25-50.25 s-50.25,22.495-50.25,50.25C315.747,202.137,338.246,224.637,365.997,224.637z"}),wp.element.createElement(a,{d:"M524.563,224.637c27.751,0,50.25-22.5,50.25-50.25c0-27.756-22.5-50.25-50.25-50.25 s-50.25,22.495-50.25,50.25C474.313,202.137,496.813,224.637,524.563,224.637z"}),wp.element.createElement(a,{d:"M1162.234,1090.907l216.864-211.397c8.523-8.307,11.59-20.732,7.913-32.052 c-3.678-11.319-13.461-19.568-25.238-21.28l-299.703-43.55L928.039,511.056c-5.27-10.672-16.14-17.429-28.039-17.429 c-11.901,0-22.77,6.757-28.037,17.429L737.922,782.628l-299.704,43.55c-11.777,1.712-21.561,9.96-25.239,21.28 c-3.679,11.319-0.61,23.745,7.911,32.052l216.867,211.397l-51.192,298.5c-2.011,11.733,2.812,23.585,12.44,30.582 c9.629,6.996,22.399,7.917,32.926,2.381L900,1281.431l268.066,140.939c4.575,2.404,9.57,3.59,14.547,3.59 c6.482,0,12.938-2.015,18.381-5.971c9.632-6.997,14.451-18.853,12.441-30.582L1162.234,1090.907z M914.552,1218.43 c-9.108-4.789-19.993-4.789-29.101,0l-226.542,119.108l43.262-252.258c1.738-10.146-1.623-20.492-8.992-27.677L509.905,878.952 l253.276-36.805c10.184-1.48,18.986-7.875,23.54-17.103L900,595.541l113.268,229.504c4.555,9.228,13.361,15.623,23.542,17.103 l253.278,36.805l-183.273,178.651c-7.371,7.185-10.734,17.535-8.994,27.677l43.271,252.254L914.552,1218.43z"}),wp.element.createElement(a,{d:"M900,1416.294c-17.269,0-31.267,13.998-31.267,31.267v106.119c0,17.269,13.998,31.267,31.267,31.267 c17.27,0,31.267-13.998,31.267-31.267v-106.119C931.267,1430.292,917.27,1416.294,900,1416.294z"}),wp.element.createElement(a,{d:"M1424.206,1150.112l-100.923-32.802c-16.453-5.344-34.072,3.651-39.402,20.069 c-5.339,16.423,3.646,34.063,20.07,39.402l100.923,32.802c3.214,1.043,6.469,1.54,9.671,1.54c13.182,0,25.438-8.401,29.73-21.609 C1449.615,1173.092,1440.629,1155.452,1424.206,1150.112z"}),wp.element.createElement(a,{d:"M1137.244,686.108c5.549,4.033,11.979,5.974,18.352,5.974c9.67,0,19.201-4.469,25.32-12.89l62.381-85.853 c10.15-13.969,7.054-33.524-6.918-43.674c-13.967-10.15-33.518-7.053-43.672,6.916l-62.381,85.853 C1120.176,656.403,1123.272,675.958,1137.244,686.108z"}),wp.element.createElement(a,{d:"M619.075,679.19c6.117,8.421,15.65,12.892,25.321,12.892c6.37,0,12.802-1.941,18.351-5.974 c13.972-10.148,17.068-29.703,6.918-43.672l-62.372-85.853c-10.148-13.965-29.703-17.071-43.672-6.918 c-13.972,10.148-17.068,29.703-6.918,43.672L619.075,679.19z"}),wp.element.createElement(a,{d:"M476.73,1117.311l-100.933,32.793c-16.423,5.335-25.41,22.975-20.073,39.397 c4.292,13.213,16.549,21.614,29.729,21.614c3.202,0,6.458-0.497,9.669-1.54l100.932-32.793 c16.423-5.335,25.411-22.975,20.074-39.397S493.153,1111.976,476.73,1117.311z"}))},fileDownload:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M637.655,1373.291c-17.354,0-31.421-14.067-31.421-31.422V834.407c0-17.355,14.067-31.422,31.421-31.422 c17.355,0,31.422,14.067,31.422,31.422v507.462C669.077,1359.224,655.01,1373.291,637.655,1373.291z"}),wp.element.createElement(a,{d:"M633.451,1373.291c-8.041,0-16.081-3.069-22.218-9.2l-180.151-180.139 c-12.27-12.27-12.272-32.167,0-44.437c12.27-12.273,32.162-12.27,44.436-0.005l180.151,180.139 c12.27,12.27,12.272,32.167,0,44.437C649.535,1370.222,641.493,1373.291,633.451,1373.291z"}),wp.element.createElement(a,{d:"M641.859,1373.291c-8.042,0-16.083-3.069-22.218-9.205c-12.272-12.27-12.27-32.167,0-44.437 l180.151-180.139c12.274-12.265,32.171-12.265,44.436,0.005c12.272,12.27,12.27,32.167,0,44.437l-180.151,180.139 C657.942,1370.222,649.898,1373.291,641.859,1373.291z"}),wp.element.createElement(a,{d:"M1649.069,3.258H626.017c-43.336,0-78.584,35.445-78.584,79.022v180.463H150.931 c-43.34,0-78.597,35.454-78.597,79.026v1138.41v20.796v216.749c0,43.576,35.257,79.018,78.597,79.018h1023.053 c43.33,0,78.58-35.441,78.58-79.018v-51.06h396.518c43.332,0,78.584-35.446,78.584-79.022v-474.521V556.8V82.28 C1727.666,38.704,1692.404,3.258,1649.069,3.258z M1194.333,1717.725c0,11.463-9.123,20.786-20.349,20.786H150.931 c-11.226,0-20.371-9.323-20.371-20.786v-216.749v-20.796V341.77c0-11.458,9.145-20.795,20.371-20.795h396.502h58.231h358.975 v178.622c0,16.166,13.072,29.264,29.199,29.264h200.495v951.32v20.796v107.458v58.231V1717.725z M1023.049,470.322V357.77 l124.375,112.552H1023.049z M1669.436,1113.122v474.521c0,11.463-9.123,20.791-20.354,20.791h-396.518v-107.458v-20.796V501.2 v-3.011c-0.418-8.702-4.578-16.421-10.941-21.51l-47.29-42.784l-124.778-112.92l-56.146-50.796 c-5.023-4.542-11.335-7.041-17.814-7.435h-3.313H605.664V82.28c0-11.467,9.127-20.791,20.353-20.791h1023.052 c11.228,0,20.366,9.324,20.366,20.791V556.8V1113.122z"}))},filter:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1763.83,1.676H36.17c-17.395,0-31.494,14.1-31.494,31.494v394.424c0,0.563,0.058,1.111,0.084,1.665 c0.022,0.417,0.026,0.839,0.062,1.252c0.123,1.327,0.334,2.619,0.615,3.889c0.07,0.334,0.167,0.655,0.25,0.984 c0.285,1.112,0.619,2.193,1.014,3.252c0.106,0.268,0.194,0.544,0.299,0.813c0.515,1.256,1.107,2.469,1.766,3.633 c0.159,0.286,0.339,0.558,0.51,0.84c0.62,1.019,1.292,2.003,2.021,2.943c0.149,0.198,0.286,0.4,0.439,0.589 c0.87,1.072,1.828,2.065,2.83,3.014c0.114,0.115,0.211,0.246,0.334,0.356l708.13,647.886v668.12 c0,11.546,6.327,22.165,16.468,27.676c4.701,2.553,9.868,3.816,15.026,3.816c5.984,0,11.959-1.703,17.162-5.082l290.939-188.963 c8.946-5.809,14.342-15.747,14.342-26.411v-485.171l693.233-634.253c14.341-2.944,25.123-15.637,25.123-30.848V33.17 C1795.324,15.775,1781.229,1.676,1763.83,1.676z M1732.337,64.664v331.428H67.664V64.664H1732.337z M1024.217,1055.591 c-6.52,5.962-10.238,14.394-10.238,23.233v481.942l-227.96,148.054v-623.981c0-8.839-3.708-17.271-10.229-23.233L117.247,459.088 h1558.938L1024.217,1055.591z"}))},flag:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1099.021,1358.872c-24.524-10.022-50.942-18.95-78.808-26.835l-51.576,51.575 c152,36.272,245.715,100.936,245.715,161.021c0,89.873-209.631,190.014-510.447,190.014 c-300.812,0-510.448-100.141-510.448-190.014c0-60.081,93.715-124.748,245.711-161.021l-51.575-51.575 c-27.863,7.885-54.28,16.813-78.796,26.835c-114.981,46.993-178.304,112.964-178.304,185.761s63.323,138.769,178.304,185.762 c106.048,43.344,246.366,67.214,395.107,67.214c148.746,0,289.068-23.87,395.116-67.214 c114.977-46.993,178.294-112.965,178.294-185.762S1213.997,1405.865,1099.021,1358.872z"}),wp.element.createElement(a,{d:"M1646.857,537.94L735.386,271.5v-66.372c41.896-13.364,72.331-52.65,72.331-98.919 c0-57.245-46.572-103.816-103.813-103.816S600.092,48.964,600.092,106.208c0,46.269,30.437,85.555,72.332,98.919v1359.694 c0,17.389,14.094,31.482,31.481,31.482c17.388,0,31.481-14.094,31.481-31.482V864.814l911.472-266.441 c13.422-3.922,22.648-16.232,22.648-30.216C1669.506,554.173,1660.279,541.862,1646.857,537.94z M703.904,65.354 c22.526,0,40.85,18.328,40.85,40.854s-18.323,40.849-40.85,40.849s-40.849-18.323-40.849-40.849S681.378,65.354,703.904,65.354z M735.39,799.217V337.098l790.431,231.06L735.39,799.217z"}))},folder:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1759.255,188.518H938.75L757.06,18.2c-5.796-5.437-13.448-8.461-21.396-8.461H40.745 c-17.28,0-31.287,14.006-31.287,31.286v410.815v1315.872c0,17.284,14.006,31.287,31.287,31.287h1718.51 c17.28,0,31.287-14.003,31.287-31.287V451.841V219.804C1790.542,202.524,1776.535,188.518,1759.255,188.518z M72.031,72.312h651.264 l181.689,170.32c5.797,5.434,13.448,8.459,21.396,8.459h801.588v169.464H72.031V72.312z M1727.969,1736.427H72.031V483.127h1655.938 V1736.427z"}))},folders:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M404.006,1798.767H88.317c-46.674,0-84.646-37.972-84.646-84.646V85.879 c0-46.674,37.972-84.646,84.646-84.646h315.688c46.669,0,84.637,37.972,84.637,84.646v1628.242 C488.643,1760.795,450.675,1798.767,404.006,1798.767z M88.317,64.304c-11.896,0-21.575,9.679-21.575,21.575v1628.242 c0,11.896,9.679,21.574,21.575,21.574h315.688c11.892,0,21.566-9.678,21.566-21.574V85.879c0-11.896-9.674-21.575-21.566-21.575 H88.317z"}),wp.element.createElement(a,{d:"M246.157,1623.078c-69.556,0-126.142-56.586-126.142-126.141c0-69.557,56.586-126.143,126.142-126.143 s126.142,56.586,126.142,126.143C372.299,1566.492,315.713,1623.078,246.157,1623.078z M246.157,1433.866 c-34.778,0-63.07,28.293-63.07,63.071c0,34.777,28.292,63.07,63.07,63.07s63.071-28.293,63.071-63.07 C309.228,1462.159,280.935,1433.866,246.157,1433.866z"}),wp.element.createElement(a,{d:"M335.149,726.573H157.165c-17.418,0-31.535-14.118-31.535-31.535c0-17.418,14.117-31.536,31.535-31.536 h177.984c17.418,0,31.536,14.118,31.536,31.536C366.685,712.455,352.567,726.573,335.149,726.573z"}),wp.element.createElement(a,{d:"M335.149,591.422H157.165c-17.418,0-31.535-14.118-31.535-31.536s14.117-31.536,31.535-31.536h177.984 c17.418,0,31.536,14.118,31.536,31.536S352.567,591.422,335.149,591.422z"}),wp.element.createElement(a,{d:"M335.149,456.27H157.165c-17.418,0-31.535-14.118-31.535-31.536c0-17.417,14.117-31.535,31.535-31.535 h177.984c17.418,0,31.536,14.118,31.536,31.535C366.685,442.152,352.567,456.27,335.149,456.27z"}),wp.element.createElement(a,{d:"M335.149,321.119H157.165c-17.418,0-31.535-14.118-31.535-31.536c0-17.417,14.117-31.535,31.535-31.535 h177.984c17.418,0,31.536,14.118,31.536,31.535C366.685,307.001,352.567,321.119,335.149,321.119z"}),wp.element.createElement(a,{d:"M1057.852,1798.767h-315.69c-46.674,0-84.646-37.972-84.646-84.646V85.879 c0-46.674,37.972-84.646,84.646-84.646h315.69c46.67,0,84.637,37.972,84.637,84.646v1628.242 C1142.488,1760.795,1104.521,1798.767,1057.852,1798.767z M742.162,64.304c-11.896,0-21.575,9.679-21.575,21.575v1628.242 c0,11.896,9.679,21.574,21.575,21.574h315.69c11.893,0,21.566-9.678,21.566-21.574V85.879c0-11.896-9.674-21.575-21.566-21.575 H742.162z"}),wp.element.createElement(a,{d:"M899.997,1623.078c-69.556,0-126.142-56.586-126.142-126.141c0-69.557,56.586-126.143,126.142-126.143 c69.558,0,126.144,56.586,126.144,126.143C1026.141,1566.492,969.555,1623.078,899.997,1623.078z M899.997,1433.866 c-34.778,0-63.071,28.293-63.071,63.071c0,34.777,28.293,63.07,63.071,63.07c34.78,0,63.073-28.293,63.073-63.07 C963.07,1462.159,934.777,1433.866,899.997,1433.866z"}),wp.element.createElement(a,{d:"M988.992,726.573H811.005c-17.418,0-31.536-14.118-31.536-31.535c0-17.418,14.118-31.536,31.536-31.536 h177.987c17.416,0,31.535,14.118,31.535,31.536C1020.527,712.455,1006.408,726.573,988.992,726.573z"}),wp.element.createElement(a,{d:"M988.992,591.422H811.005c-17.418,0-31.536-14.118-31.536-31.536s14.118-31.536,31.536-31.536h177.987 c17.416,0,31.535,14.118,31.535,31.536S1006.408,591.422,988.992,591.422z"}),wp.element.createElement(a,{d:"M988.992,456.27H811.005c-17.418,0-31.536-14.118-31.536-31.536c0-17.417,14.118-31.535,31.536-31.535 h177.987c17.416,0,31.535,14.118,31.535,31.535C1020.527,442.152,1006.408,456.27,988.992,456.27z"}),wp.element.createElement(a,{d:"M988.992,321.119H811.005c-17.418,0-31.536-14.118-31.536-31.536c0-17.417,14.118-31.535,31.536-31.535 h177.987c17.416,0,31.535,14.118,31.535,31.535C1020.527,307.001,1006.408,321.119,988.992,321.119z"}),wp.element.createElement(a,{d:"M1711.691,1798.767h-315.688c-46.674,0-84.646-37.972-84.646-84.646V85.879 c0-46.674,37.973-84.646,84.646-84.646h315.688c46.67,0,84.637,37.972,84.637,84.646v1628.242 C1796.328,1760.795,1758.361,1798.767,1711.691,1798.767z M1396.004,64.304c-11.896,0-21.575,9.679-21.575,21.575v1628.242 c0,11.896,9.679,21.574,21.575,21.574h315.688c11.892,0,21.566-9.678,21.566-21.574V85.879c0-11.896-9.675-21.575-21.566-21.575 H1396.004z"}),wp.element.createElement(a,{d:"M1553.839,1623.078c-69.556,0-126.142-56.586-126.142-126.141c0-69.557,56.586-126.143,126.142-126.143 s126.142,56.586,126.142,126.143C1679.98,1566.492,1623.395,1623.078,1553.839,1623.078z M1553.839,1433.866 c-34.778,0-63.071,28.293-63.071,63.071c0,34.777,28.293,63.07,63.071,63.07s63.07-28.293,63.07-63.07 C1616.909,1462.159,1588.617,1433.866,1553.839,1433.866z"}),wp.element.createElement(a,{d:"M1642.831,726.573h-177.985c-17.417,0-31.535-14.118-31.535-31.535c0-17.418,14.118-31.536,31.535-31.536 h177.985c17.417,0,31.535,14.118,31.535,31.536C1674.366,712.455,1660.248,726.573,1642.831,726.573z"}),wp.element.createElement(a,{d:"M1642.831,591.422h-177.985c-17.417,0-31.535-14.118-31.535-31.536s14.118-31.536,31.535-31.536h177.985 c17.417,0,31.535,14.118,31.535,31.536S1660.248,591.422,1642.831,591.422z"}),wp.element.createElement(a,{d:"M1642.831,456.27h-177.985c-17.417,0-31.535-14.118-31.535-31.536c0-17.417,14.118-31.535,31.535-31.535 h177.985c17.417,0,31.535,14.118,31.535,31.535C1674.366,442.152,1660.248,456.27,1642.831,456.27z"}),wp.element.createElement(a,{d:"M1642.831,321.119h-177.985c-17.417,0-31.535-14.118-31.535-31.536c0-17.417,14.118-31.535,31.535-31.535 h177.985c17.417,0,31.535,14.118,31.535,31.535C1674.366,307.001,1660.248,321.119,1642.831,321.119z"}))},gear:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1203.175,843.2c-17.272,0-31.273-14-31.273-31.273c0-116.959-117.688-177.271-167.899-177.271 c-17.272,0-31.273-14.001-31.273-31.273s14.001-31.272,31.273-31.272c80.425,0,230.445,82.364,230.445,239.817 C1234.447,829.2,1220.447,843.2,1203.175,843.2z"}),wp.element.createElement(a,{d:"M1012.309,1788.987H787.691c-15.351,0-28.433-11.143-30.876-26.299l-30.721-190.718 c-62.62-16.151-122.402-40.937-178.231-73.885L391.23,1611.258c-12.442,8.983-29.575,7.622-40.428-3.237l-158.825-158.829 c-10.855-10.854-12.227-27.983-3.235-40.427l113.17-156.626c-32.943-55.81-57.731-115.603-73.889-178.231l-190.716-30.723 c-15.156-2.443-26.299-15.523-26.299-30.876V787.688c0-15.353,11.143-28.433,26.299-30.876l190.716-30.717 c16.157-62.633,40.945-122.426,73.887-178.237L188.742,391.235c-8.992-12.443-7.62-29.571,3.235-40.429l158.825-158.834 c10.856-10.854,27.989-12.225,40.428-3.235l156.631,113.17c55.823-32.951,115.604-57.731,178.233-73.885l30.721-190.711 c2.443-15.157,15.525-26.299,30.876-26.299h224.617c15.353,0,28.433,11.143,30.876,26.299l30.723,190.713 c62.629,16.151,122.418,40.938,178.231,73.889l156.631-113.172c12.438-8.994,29.563-7.62,40.431,3.235l158.825,158.829 c10.854,10.855,12.225,27.985,3.232,40.429L1498.09,547.861c32.957,55.832,57.738,115.611,73.89,178.233l190.713,30.717 c15.156,2.443,26.3,15.523,26.3,30.876v224.621c0,15.353-11.144,28.433-26.3,30.876l-190.718,30.723 c-16.155,62.629-40.94,122.422-73.885,178.231l113.168,156.631c8.992,12.442,7.622,29.571-3.232,40.431L1449.2,1608.025 c-10.855,10.859-27.988,12.22-40.431,3.232l-156.64-113.172c-55.81,32.943-115.598,57.729-178.223,73.88l-30.723,190.723 C1040.741,1777.845,1027.661,1788.987,1012.309,1788.987z M814.331,1726.441h171.338l29.794-184.958 c2.033-12.613,11.535-22.727,24-25.536c70.089-15.798,136.509-43.327,197.41-81.83c10.789-6.827,24.659-6.404,35.025,1.087 l151.91,109.756l121.151-121.151l-109.752-151.901c-7.482-10.357-7.914-24.223-1.086-35.025 c38.498-60.901,66.031-127.325,81.843-197.423c2.81-12.465,12.918-21.963,25.531-23.996l184.95-29.794V814.327l-184.95-29.79 c-12.613-2.033-22.727-11.535-25.536-24c-15.793-70.076-43.327-136.498-81.838-197.419c-6.828-10.8-6.396-24.667,1.086-35.025 l109.752-151.897L1423.809,255.04l-151.901,109.756c-10.362,7.482-24.231,7.912-35.029,1.084 c-60.901-38.504-127.321-66.041-197.415-81.838c-12.465-2.81-21.967-12.918-24-25.533l-29.794-184.95h-171.34l-29.792,184.945 c-2.033,12.615-11.533,22.724-23.998,25.534c-70.089,15.802-136.511,43.336-197.421,81.836 c-10.805,6.828-24.667,6.394-35.025-1.086L376.192,255.036L255.04,376.196l109.752,151.893 c7.484,10.357,7.914,24.225,1.086,35.025c-38.495,60.898-66.031,127.323-81.84,197.428 c-2.813,12.462-12.921,21.962-25.534,23.995l-184.95,29.79v171.342l184.95,29.794c12.613,2.033,22.722,11.531,25.534,23.996 c15.806,70.098,43.342,136.521,81.84,197.423c6.828,10.803,6.398,24.668-1.086,35.025L255.04,1423.804l121.152,121.156 l151.901-109.756c10.353-7.486,24.223-7.919,35.023-1.087c60.923,38.503,127.345,66.036,197.423,81.839 c12.464,2.81,21.964,12.918,23.998,25.531L814.331,1726.441z"}),wp.element.createElement(a,{d:"M900,1380.974c-265.211,0-480.978-215.769-480.978-480.982c0-265.211,215.767-480.978,480.978-480.978 c265.218,0,480.987,215.767,480.987,480.978C1380.987,1165.205,1165.218,1380.974,900,1380.974z M900,481.56 c-230.725,0-418.432,187.707-418.432,418.432c0,230.726,187.708,418.437,418.432,418.437 c230.729,0,418.441-187.711,418.441-418.437C1318.441,669.267,1130.729,481.56,900,481.56z"}))},gears:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1094.819,1135.051l-108.863-17.528c-9.449-34.07-22.999-66.744-40.445-97.562l64.601-89.408 c8.963-12.402,7.593-29.477-3.227-40.295l-97.074-97.083c-10.828-10.832-27.9-12.188-40.297-3.227l-89.409,64.601 c-30.817-17.446-63.496-30.991-97.557-40.44L665.01,705.239c-2.435-15.106-15.472-26.212-30.774-26.212H496.934 c-15.302,0-28.339,11.105-30.774,26.212l-17.535,108.864c-34.057,9.449-66.731,22.995-97.555,40.445l-89.409-64.601 c-12.399-8.958-29.474-7.597-40.295,3.222l-97.083,97.083c-10.819,10.823-12.187,27.897-3.225,40.3l64.599,89.408 c-17.448,30.826-30.994,63.5-40.443,97.562l-108.866,17.528c-15.106,2.436-26.214,15.472-26.214,30.774v137.306 c0,15.303,11.106,28.339,26.212,30.774l108.868,17.533c9.454,34.062,22.997,66.735,40.443,97.557l-64.599,89.409 c-8.962,12.401-7.595,29.474,3.225,40.297l97.083,97.083c10.819,10.819,27.892,12.181,40.295,3.223l89.409-64.605 c30.822,17.446,63.496,30.992,97.555,40.445l17.535,108.867c2.433,15.107,15.472,26.213,30.774,26.213h137.302 c15.302,0,28.339-11.105,30.774-26.213l17.537-108.871c34.062-9.449,66.736-22.995,97.549-40.437l89.417,64.601 c12.402,8.962,29.478,7.601,40.297-3.223l97.083-97.079c10.819-10.823,12.185-27.895,3.222-40.297l-64.604-89.413 c17.446-30.813,30.991-63.487,40.445-97.557l108.868-17.533c15.105-2.436,26.212-15.472,26.212-30.774v-137.306 C1121.036,1150.522,1109.926,1137.486,1094.819,1135.051z M1058.697,1276.58l-102.915,16.576 c-12.571,2.026-22.647,11.492-25.447,23.916c-9.362,41.506-25.665,80.833-48.459,116.882c-6.806,10.767-6.375,24.591,1.083,34.914 l61.078,84.529l-59.535,59.53l-84.534-61.074c-10.323-7.457-24.147-7.888-34.909-1.083 c-36.058,22.795-75.376,39.093-116.878,48.446c-12.419,2.805-21.89,12.88-23.917,25.451l-16.576,102.92h-84.204l-16.576-102.915 c-2.026-12.571-11.495-22.646-23.916-25.447c-41.495-9.357-80.822-25.66-116.889-48.455c-10.765-6.805-24.588-6.374-34.907,1.083 l-84.525,61.074l-59.535-59.535l61.069-84.524c7.458-10.323,7.889-24.143,1.085-34.909 c-22.796-36.066-39.097-75.394-48.454-116.887c-2.803-12.424-12.878-21.89-25.45-23.916L72.474,1276.58v-84.204l102.912-16.571 c12.574-2.026,22.651-11.497,25.452-23.921c9.351-41.488,25.653-80.812,48.454-116.887c6.804-10.767,6.373-24.586-1.085-34.909 l-61.069-84.525l59.535-59.536l84.525,61.076c10.321,7.458,24.147,7.888,34.909,1.083c36.073-22.806,75.398-39.108,116.882-48.457 c12.424-2.801,21.895-12.88,23.921-25.452l16.576-102.911h84.204l16.576,102.915c2.027,12.571,11.498,22.651,23.917,25.451 c41.502,9.354,80.82,25.656,116.878,48.453c10.767,6.805,24.59,6.375,34.913-1.083l84.53-61.076l59.53,59.536l-61.073,84.53 c-7.458,10.323-7.889,24.146-1.083,34.913c22.799,36.054,39.101,75.376,48.459,116.878c2.8,12.424,12.876,21.895,25.447,23.921 l102.915,16.571V1276.58z"}),wp.element.createElement(a,{d:"M565.583,928.422c-168.759,0-306.052,137.293-306.052,306.052s137.293,306.053,306.052,306.053 c168.763,0,306.061-137.294,306.061-306.053S734.346,928.422,565.583,928.422z M565.583,1478.187 c-134.384,0-243.713-109.328-243.713-243.713s109.329-243.713,243.713-243.713c134.389,0,243.722,109.328,243.722,243.713 S699.972,1478.187,565.583,1478.187z"}),wp.element.createElement(a,{d:"M1767.072,581.748l-74.516-50.033c4.279-27.761,5.383-55.804,3.291-83.786l78.155-44.071 c13.328-7.519,19.229-23.595,13.929-37.949l-40.059-108.459c-5.301-14.359-20.233-22.725-35.248-19.79l-88.043,17.302 c-16.598-22.621-35.662-43.215-56.956-61.531l24.099-86.456c4.105-14.741-3.088-30.278-16.984-36.679l-105.002-48.368 c-13.902-6.418-30.392-1.774-38.919,10.932l-50.038,74.52c-27.703-4.253-55.785-5.375-83.777-3.288l-44.075-78.154 c-7.522-13.332-23.595-19.233-37.953-13.928l-108.459,40.058c-14.358,5.301-22.738,20.237-19.786,35.253l17.308,88.03 c-22.625,16.598-43.224,35.666-61.54,56.964l-86.446-24.104c-14.741-4.092-30.282,3.092-36.684,16.985l-48.372,105.002 c-6.401,13.897-1.766,30.387,10.932,38.918l74.511,50.038c-4.274,27.765-5.379,55.808-3.283,83.781l-78.15,44.072 c-13.328,7.519-19.229,23.599-13.928,37.949l40.058,108.463c5.301,14.354,20.256,22.76,35.253,19.786l88.03-17.303 c16.585,22.612,35.648,43.206,56.961,61.535l-24.104,86.451c-4.105,14.737,3.087,30.283,16.984,36.684l105.006,48.366 c13.902,6.404,30.387,1.77,38.919-10.938l50.042-74.512c27.695,4.257,55.781,5.375,83.777,3.288l44.076,78.161 c5.656,10.036,16.176,15.863,27.151,15.863c3.601,0,7.253-0.626,10.792-1.936l108.469-40.06 c14.357-5.301,22.738-20.238,19.785-35.253l-17.307-88.039c22.611-16.589,43.206-35.657,61.535-56.96l86.451,24.104 c14.74,4.092,30.282-3.088,36.684-16.985l48.363-105.006C1784.404,606.769,1779.777,590.28,1767.072,581.748z M1684.125,675.479 l-80.555-22.459c-12.275-3.409-25.378,0.97-33.118,11.08c-21.507,28.091-47.402,52.06-76.968,71.245 c-10.688,6.932-16.08,19.664-13.619,32.161l16.124,82.021l-58.651,21.664l-41.059-72.815c-5.574-9.884-16.002-15.859-27.143-15.859 c-1.361,0-2.735,0.087-4.113,0.27c-34.727,4.623-70.428,3.214-104.798-4.109c-12.445-2.656-25.269,2.535-32.37,13.111 l-46.624,69.418l-56.772-26.147l22.455-80.555c3.418-12.267-0.966-25.382-11.08-33.122c-28.092-21.503-52.06-47.398-71.245-76.963 c-6.927-10.685-19.655-16.072-32.161-13.619l-82.012,16.119l-21.664-58.651l72.811-41.058 c11.093-6.257,17.264-18.629,15.585-31.252c-4.636-34.957-3.253-70.214,4.113-104.793c2.653-12.458-2.539-25.273-13.106-32.374 l-69.427-46.62l26.155-56.777l80.551,22.459c12.264,3.405,25.383-0.97,33.123-11.084c21.48-28.073,47.38-52.042,76.971-71.245 c10.685-6.931,16.076-19.664,13.615-32.161l-16.123-82.012l58.651-21.664l41.058,72.81c6.254,11.093,18.615,17.272,31.257,15.589 c34.727-4.609,70.419-3.209,104.798,4.113c12.44,2.648,25.264-2.539,32.369-13.11l46.62-69.432l56.773,26.151l-22.456,80.563 c-3.418,12.271,0.971,25.387,11.084,33.123c28.065,21.481,52.034,47.372,71.232,76.958c6.936,10.685,19.668,16.059,32.156,13.62 l82.029-16.12l21.664,58.647l-72.818,41.058c-11.094,6.258-17.264,18.629-15.585,31.252c4.64,34.97,3.257,70.228-4.114,104.793 c-2.66,12.458,2.531,25.277,13.106,32.378l69.432,46.62L1684.125,675.479z"}),wp.element.createElement(a,{d:"M1324.474,212.717c-31.026,0-61.63,5.492-90.97,16.329c-135.858,50.172-205.564,201.52-155.392,337.383 c37.927,102.701,136.95,171.707,246.409,171.716c0.009,0,0.009,0,0.018,0c31.014,0,61.617-5.492,90.952-16.329 c135.854-50.172,205.568-201.52,155.396-337.375C1532.951,281.727,1433.928,212.717,1324.474,212.717z M1393.896,663.338 c-22.402,8.275-45.736,12.467-69.357,12.467c0,0-0.009,0-0.014,0c-83.477-0.004-159.005-52.638-187.936-130.971 c-38.266-103.619,14.898-219.048,118.514-257.311c22.398-8.275,45.736-12.467,69.37-12.467 c83.478,0,159.001,52.638,187.936,130.979C1550.672,509.646,1497.503,625.071,1393.896,663.338z"}))},gift:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1767.367,358.009h-276.059c0.318-51.483-6-101.019-19.174-146.457 c-30.153-104.006-92.074-174.999-174.359-199.906c-82.275-24.902-173.179-0.171-255.948,69.653 c-59.842,50.483-110.403,120.564-146.689,202.113c-36.296-81.549-86.849-151.63-146.699-202.113 c-82.77-69.825-173.664-94.547-255.949-69.653c-82.276,24.907-144.199,95.899-174.353,199.906 c-13.174,45.438-19.492,94.974-19.179,146.457H32.633c-17.443,0-31.582,14.139-31.582,31.582v342.886 c0,17.443,14.139,31.582,31.582,31.582h103.769v1002.154c0,17.439,14.138,31.582,31.581,31.582h593.286h277.465h593.284 c17.438,0,31.581-14.143,31.581-31.582V764.059h103.769c17.438,0,31.581-14.139,31.581-31.582V389.591 C1798.948,372.148,1784.805,358.009,1767.367,358.009z M1082.556,129.576c65.877-55.563,135.808-75.976,196.927-57.471 c61.109,18.496,107.988,74.267,131.983,157.036c11.543,39.794,17.059,83.374,16.751,128.869h-389.483H933.538 C966.159,264.106,1018.466,183.646,1082.556,129.576z M378.802,229.141c23.993-82.77,70.872-138.54,131.991-157.036 c61.119-18.518,131.049,1.912,196.927,57.471c64.088,54.07,116.387,134.53,149.017,228.434h-95.468H362.055 C361.742,312.514,367.263,268.935,378.802,229.141z M64.215,700.896V421.172h238.4h63.538h363.535v279.723H167.983H64.215z M199.565,764.059h530.122v970.573H199.565V764.059z M792.851,1734.632V764.059v-63.163V421.172h214.301v279.723v63.163v970.573 H792.851z M1600.436,1734.632h-530.12V764.059h530.12V1734.632z M1735.786,700.896h-103.769h-561.702V421.172h353.795h63.551 h248.125V700.896z"}))},globe:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1583.266,1262.444c-155.105,155.105-361.327,240.526-580.678,240.526 c-219.35,0-425.572-85.421-580.677-240.526c-155.107-155.104-240.528-361.33-240.533-580.682 c0-219.354,85.42-425.578,240.528-580.685c12.336-12.333,12.336-32.328,0.004-44.663c-12.333-12.33-32.328-12.334-44.661,0 c-167.044,167.036-259.035,389.124-259.035,625.35c0.004,236.219,91.995,458.312,259.03,625.348 c164.65,164.647,378.605,250.606,594.774,258.019v168.973H656.207c-17.443,0-31.581,14.134-31.581,31.582 c0,17.439,14.138,31.582,31.581,31.582h694.789c17.446,0,31.582-14.143,31.582-31.582c0-17.448-14.136-31.582-31.582-31.582 h-315.814V1565.06c215.475-7.878,428.613-93.819,592.751-257.947c12.327-12.337,12.327-32.331,0-44.668 C1615.596,1250.118,1595.601,1250.118,1583.266,1262.444z"}),wp.element.createElement(a,{d:"M389.367,972.961c77.779,163.801,214.692,287.502,385.518,348.33 c73.614,26.205,150.222,39.503,227.686,39.503c0.018,0,0,0,0.018,0c286.303,0,543.235-181.269,639.417-451.066 c0.044-0.106,0.079-0.211,0.114-0.317c60.801-170.812,51.453-355.075-26.32-518.855c-77.783-163.798-214.698-287.5-385.524-348.318 c-73.613-26.214-150.214-39.504-227.669-39.504c-286.417,0-543.43,181.375-639.542,451.326 C302.245,624.884,311.585,809.167,389.367,972.961z M446.42,945.868c-14.949-31.48-27.083-63.803-36.441-96.662 c0.838-0.817,1.635-1.688,2.393-2.615c43.204-53.021,175.521-186.786,267.388-169.374c40.816,7.734,75.588,0.683,103.345-20.987 c59.436-46.395,65.115-144.487,68.508-203.097c0.304-5.273,0.585-10.158,0.89-14.563c1.921-27.88-5.944-61.956-13.553-94.909 c-5.899-25.545-18.174-78.703-10.19-88.554c0,0,0.326-0.213,1.207-0.476c31.467-9.322,74.722-45.061,128.569-106.224 c34.64-39.342,53.788-64.954,64.274-82.143c42.879,1.416,85.402,7.333,127.145,17.683 c-48.473,39.591-108.728,101.778-99.846,161.004c5.912,39.446,38.252,67.783,96.119,84.221 c193.551,54.985,221.572,85.758,248.914,183.415c21.281,75.993,90.735,136.785,153.167,136.776c3.895,0,7.772-0.235,11.605-0.72 c13.498-1.711,35.934-7.961,55.487-29.354c7.947,77.48,0.951,156.189-21.123,232.574c-28.98-13.875-71.842-27.887-117.522-20.267 c-65.101,10.863-98.348-100.23-114.825-195.311c-18.506-106.747-79.05-109.385-104.218-105.567 c-63.232,9.585-128.625,93.667-120.642,155.116c7.473,57.486-37.309,155.165-77.844,191.843c-5.7,5.159-31.643-5.928-48.816-13.266 c-40.667-17.375-108.723-46.45-157.769,17.456c-48.292,62.918-179.892,224.911-229.164,285.42 C548.817,1109.103,488.206,1033.868,446.42,945.868z M1002.57,1297.631c-70.23,0-139.705-12.063-206.502-35.846 c-42.724-15.211-83.096-34.781-120.66-58.238c51.531-63.312,179.518-220.92,227.339-283.219 c16.684-21.741,33.549-18.894,82.852,2.167c35.775,15.28,80.301,34.305,116.007,2.019 c54.984-49.751,108.622-165.878,98.102-246.822c-3.261-25.092,36.524-79.834,67.479-84.524 c20.444-3.06,29.521,36.665,32.508,53.903c15.183,87.606,37.001,150.184,66.705,191.308 c40.305,55.805,87.915,60.994,120.739,55.521c33.184-5.524,66.211,7.53,86.408,18.168 C1480.105,1143.715,1253.828,1297.64,1002.57,1297.631z M1558.742,417.648c12.513,26.35,23.034,53.29,31.635,80.635 c-1.869,52.173-16.073,84.869-38.403,87.697c-30.663,3.879-81.065-37.067-96.003-90.422 c-36.04-128.711-87.977-169.047-292.481-227.144c-30.522-8.673-49.081-20.633-50.913-32.815 c-4.67-31.031,58.112-91.087,111.345-128.366C1371.941,164.149,1490.461,273.863,1558.742,417.648z M422.567,475.245 C502.993,249.357,707.646,91.966,942.826,68.929c-38.164,47.875-100.911,116.285-130.8,125.143 c-67.802,20.089-48.624,103.151-34.622,163.8c6.569,28.444,13.359,57.86,12.086,76.354c-0.318,4.613-0.617,9.732-0.935,15.257 c-2.595,44.788-7.419,128.156-44.314,156.956c-12.984,10.14-30.233,12.986-52.708,8.721 c-63.978-12.114-139.323,17.366-224.004,87.655c-30.065,24.959-55.778,50.538-74.142,70.084 C378.453,673.931,388.05,572.199,422.567,475.245z"}),wp.element.createElement(a,{d:"M1035.578,629.173L1035.578,629.173c11.941,0,23.121-3.231,33.23-9.603 c37.053-23.346,52.023-62.746,65.241-97.506c9.993-26.279,19.422-51.1,36.604-67.192c16.565-15.509,22.1-35.773,14.821-54.208 c-8.874-22.458-33.776-35.337-68.31-35.337c-59.857,0-137.49,36.837-212.991,101.066c-11.635,9.902-14.518,26.715-6.838,39.926 C914.091,535.139,973.579,629.169,1035.578,629.173z M1109.791,428.827c-16.354,22.318-26.013,47.727-34.78,70.793 c-11.059,29.075-20.61,54.201-39.679,66.386c-13.183-0.397-43.514-31.319-69.031-68.74 C1038.116,441.573,1088.202,430.667,1109.791,428.827z"}))},graduation:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1782.237,564.721L917.14,6.075c-10.442-6.742-23.85-6.738-34.283,0L17.763,564.721 c-9.009,5.818-14.453,15.813-14.453,26.541s5.443,20.723,14.453,26.541L316.79,810.904c-0.313,1.79-0.506,3.619-0.506,5.499 v365.474c0,70.584,64.633,134.248,181.99,179.271c107.807,41.356,250.473,64.136,401.725,64.136s293.923-22.779,401.729-64.136 c117.357-45.023,181.99-108.688,181.99-179.271V816.403c0-1.88-0.193-3.708-0.51-5.499l105.36-68.036v585.294 c-32.948,12.732-56.419,44.662-56.419,82.047c0,36.23,22.017,67.401,53.364,80.881l-61.275,269.287 c-2.134,9.371,0.114,19.205,6.108,26.72c5.994,7.511,15.084,11.883,24.696,11.883h130.237c0.021,0,0.052,0,0.088,0 c17.449,0,31.594-14.14,31.594-31.594c0-3.271-0.494-6.427-1.42-9.397l-60.732-266.898c31.348-13.479,53.362-44.65,53.362-80.881 c0-37.385-23.469-69.314-56.417-82.047v-626.1l130.483-84.26c9.01-5.818,14.453-15.813,14.453-26.541 S1791.247,570.539,1782.237,564.721z M1620.16,1435.033c-13.689,0-24.823-11.134-24.823-24.824 c0-13.685,11.134-24.824,24.823-24.824s24.824,11.14,24.824,24.824C1644.984,1423.899,1633.85,1435.033,1620.16,1435.033z M1594.631,1735.791l25.529-112.182l25.529,112.182H1594.631z M1420.529,1181.877c0,85.244-213.773,180.219-520.531,180.219 c-306.753,0-520.527-94.975-520.527-180.219V851.38l503.386,325.071c5.218,3.372,11.178,5.056,17.141,5.056 c5.959,0,11.923-1.684,17.142-5.056l503.39-325.071V1181.877z M899.998,1112.302L93.142,591.261L899.998,70.223l806.86,521.039 L899.998,1112.302z"}),wp.element.createElement(a,{d:"M787.935,591.261c0,61.795,50.273,112.068,112.063,112.068c61.795,0,112.068-50.273,112.068-112.068 c0-61.792-50.273-112.063-112.068-112.063C838.208,479.198,787.935,529.469,787.935,591.261z M948.878,591.261 c0,26.953-21.927,48.88-48.88,48.88c-26.952,0-48.876-21.927-48.876-48.88c0-26.95,21.924-48.876,48.876-48.876 C926.951,542.385,948.878,564.311,948.878,591.261z"}))},graph:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1548.188,307.531c-14.104-15.124-28.736-29.756-43.855-43.868l-43.869,43.868L932.02,835.979V88.261V26.19 c-10.297-0.357-20.635-0.6-31.018-0.6c-10.381,0-20.714,0.242-31.012,0.6C396.155,42.598,15.733,433.107,15.733,910.865 c0,488.131,397.129,885.256,885.269,885.256c242.229,0,462.014-97.82,622.015-256c1.378-0.988,2.715-2.063,3.95-3.302 c1.234-1.234,2.316-2.567,3.301-3.945c158.176-160.005,256-379.796,256-622.009 C1786.268,677.924,1695.784,465.752,1548.188,307.531z M869.99,88.261v791.578H78.412C94.39,450.525,440.663,104.252,869.99,88.261 z M901.002,1734.087c-443.551,0-806.223-352.599-822.59-792.214h809.74l572.312,572.308 C1313.488,1650.555,1116.829,1734.087,901.002,1734.087z M1504.332,1470.321L944.871,910.865l559.451-559.47 c136.383,146.966,219.916,343.634,219.916,559.47C1724.238,1126.688,1640.705,1323.346,1504.332,1470.321z"}),wp.element.createElement(a,{d:"M1047.338,573.287c3.467,1.437,7.1,2.134,10.705,2.134c7.282,0,14.439-2.845,19.798-8.194l363.142-363.146 c5.248-5.251,8.195-12.368,8.195-19.789c0-7.421-2.947-14.538-8.199-19.79C1338.694,62.222,1202.705,5.887,1058.047,5.878 c-7.421,0-14.537,2.948-19.785,8.195c-5.251,5.251-8.199,12.369-8.199,19.793v513.566 C1030.063,558.754,1036.88,568.958,1047.338,573.287z M1086.035,62.638c109.898,6.214,212.929,48.893,295.021,122.212 l-295.021,295.02V62.638z"}))},group:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement("line",{fill:"none",stroke:"currentcolor","stroke-width":"10","stroke-linecap":"round","stroke-linejoin":"round","stroke-miterlimit":"10",x1:"904.328",y1:"1132.364",x2:"904.328",y2:"895.221"}),wp.element.createElement("line",{fill:"none",stroke:"currentcolor","stroke-width":"10","stroke-linecap":"round","stroke-linejoin":"round","stroke-miterlimit":"10",x1:"1122.56",y1:"1262.028",x2:"915.405",y2:"1146.604"}),wp.element.createElement("line",{fill:"none",stroke:"currentcolor","stroke-width":"10","stroke-linecap":"round","stroke-linejoin":"round","stroke-miterlimit":"10",x1:"686.239",y1:"1262.028",x2:"893.394",y2:"1146.604"}),wp.element.createElement(a,{d:"M974.697,512.844v-7.453c57.008-26.082,97.412-80.138,106.207-142.043 c24.032-8.717,40.98-31.933,40.98-58.221c0-22.63-12.225-42.889-31.146-53.695c1.969-6.164,3.585-12.379,4.831-18.586 c10.066-49.925-1.4-100.947-32.293-143.668c-30.385-42.033-76.063-71.018-128.615-81.617c-14.133-2.85-28.541-4.294-42.824-4.294 c-45.073,0-89.049,14.537-123.827,40.929c-35.818,27.174-60.31,65.782-68.967,108.718c-6.563,32.551-3.881,66.134,7.72,97.641 c-19.665,10.569-32.688,31.348-32.688,54.58c0,26.629,17.197,49.926,41.586,58.449c9.035,63.375,50.755,117.946,109.634,143.38 v5.885C703.003,540.551,618.678,632.024,618.678,738.92v28.549h106.436v-0.051h11.82v0.051h444.389V738.92 C1181.322,632.02,1096.998,540.551,974.697,512.844z M891.838,60.37c10.487,0,21.104,1.066,31.545,3.164 c38.423,7.75,71.671,28.738,93.623,59.098c20.469,28.305,28.713,61.591,23.443,94.254c-28.099-13.11-65.026-26.972-103.875-32.293 c-73.02-9.985-74.189-13.376-78.543-25.997l-13.939-40.344l-32.07,28.373c-3.413,3.005-29.25,25.717-59.067,50.42 c-0.821-10.957-0.134-21.943,2.067-32.853C767.147,104.033,824.688,60.37,891.838,60.37z M770.86,256.186 c20.026-16.2,39.808-32.93,54.121-45.206c19.836,17.894,50.771,22.927,103.848,30.187c36.003,4.926,71.31,19.343,96.846,32.006 v64.342c0,70.252-57.15,127.411-127.402,127.411c-70.257,0-127.412-57.159-127.412-127.411V256.186z M882.394,521.32 c11.808,1.04,23.542,0.916,35.208-0.313v17.627l-17.653,9.783l-17.554-9.753V521.32z M678.691,710.336 c13.105-63.942,69.255-117.096,146.604-138.622v0.551l74.606,41.448l74.796-41.427v-0.572 c77.361,21.526,133.515,74.692,146.611,138.647l-384.611-0.047v0.021H678.691z"}),wp.element.createElement(a,{d:"M376.487,1542.108v-7.458c57.009-26.082,97.414-80.139,106.208-142.039 c24.032-8.717,40.98-31.932,40.98-58.221c0-22.635-12.225-42.885-31.146-53.699c1.969-6.164,3.584-12.379,4.835-18.586 c10.062-49.921-1.406-100.942-32.293-143.668c-30.39-42.029-76.063-71.013-128.615-81.608c-14.128-2.854-28.541-4.298-42.829-4.298 c-45.072,0-89.049,14.537-123.827,40.929c-35.818,27.174-60.314,65.782-68.971,108.718c-6.559,32.551-3.877,66.139,7.724,97.641 c-19.665,10.57-32.689,31.349-32.689,54.576c0,26.633,17.198,49.93,41.583,58.449c9.035,63.375,50.755,117.947,109.638,143.385 v5.88c-122.292,27.707-206.617,119.176-206.617,226.067v28.558h106.436v-0.12h11.816v0.12h444.393v-28.558 C583.113,1661.284,498.788,1569.815,376.487,1542.108z M293.628,1089.631c10.488,0,21.105,1.065,31.545,3.172 c38.423,7.745,71.675,28.729,93.622,59.094c20.478,28.309,28.718,61.604,23.443,94.254c-28.103-13.11-65.034-26.977-103.874-32.294 c-73.02-9.985-74.189-13.38-78.548-25.996l-13.935-40.345l-32.092,28.391c-5.541,4.879-30.295,26.59-59.042,50.402 c-0.825-10.956-0.138-21.938,2.063-32.852C168.938,1133.297,226.476,1089.631,293.628,1089.631z M172.651,1285.445 c20.013-16.188,39.799-32.926,54.121-45.205c19.833,17.894,50.772,22.932,103.848,30.191c36.012,4.922,71.31,19.338,96.846,32.006 v64.342c0,70.252-57.155,127.406-127.403,127.406c-70.256,0-127.412-57.154-127.412-127.406V1285.445z M284.185,1550.584 c11.816,1.041,23.529,0.916,35.208-0.317v17.632l-17.657,9.778l-17.55-9.753V1550.584z M116.373,1739.6v0.025H80.474 c13.093-63.959,69.255-117.121,146.612-138.646v0.55l74.606,41.444l74.795-41.427v-0.567 c77.362,21.525,133.52,74.688,146.612,138.646l-384.611-0.051v0.025H116.373z"}),wp.element.createElement(a,{d:"M1572.91,1542.108v-7.458c57.009-26.082,97.414-80.139,106.207-142.039 c24.033-8.717,40.98-31.932,40.98-58.221c0-22.631-12.224-42.889-31.141-53.699c1.965-6.164,3.58-12.375,4.826-18.586 c10.067-49.921-1.4-100.942-32.293-143.668c-30.381-42.029-76.059-71.013-128.61-81.608c-14.129-2.854-28.537-4.298-42.833-4.298 c-45.068,0-89.045,14.537-123.822,40.929c-35.818,27.174-60.311,65.782-68.967,108.718c-6.564,32.551-3.882,66.13,7.719,97.641 c-19.664,10.57-32.688,31.349-32.688,54.576c0,26.633,17.198,49.93,41.587,58.449c9.035,63.379,50.754,117.951,109.633,143.385 v5.88c-122.296,27.707-206.621,119.176-206.621,226.067v28.558h106.436v-0.052h11.825v0.052h444.384v-28.558 C1779.531,1661.284,1695.207,1569.815,1572.91,1542.108z M1490.047,1089.631c10.488,0,21.104,1.065,31.55,3.172 c38.423,7.745,71.671,28.729,93.622,59.094c20.478,28.309,28.722,61.611,23.447,94.254c-28.103-13.11-65.033-26.977-103.883-32.294 c-73.016-9.985-74.185-13.38-78.539-26.001l-13.939-40.34l-32.151,28.442c-5.562,4.9-30.381,26.658-58.986,50.351 c-0.821-10.956-0.134-21.943,2.067-32.852C1365.36,1133.297,1422.894,1089.631,1490.047,1089.631z M1369.074,1285.445 c20.073-16.238,39.828-32.951,54.12-45.205c19.833,17.894,50.769,22.932,103.849,30.191c36.002,4.922,71.309,19.338,96.846,32.006 v64.342c0,70.252-57.15,127.406-127.403,127.406c-70.257,0-127.411-57.154-127.411-127.406V1285.445z M1480.607,1550.584 c11.803,1.041,23.533,0.912,35.203-0.317v17.632l-17.652,9.778l-17.551-9.753V1550.584z M1276.9,1739.6 c13.109-63.946,69.255-117.1,146.607-138.621v0.55l74.607,41.444l74.795-41.427v-0.567c77.37,21.521,133.52,74.688,146.612,138.646 l-384.616-0.051v0.025H1276.9z"}))},heart:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1598.646,483.59c0-159.066-151.555-242.271-232.804-242.271c-17.445,0-31.592,14.14-31.592,31.594 c0,17.444,14.146,31.592,31.592,31.592c50.731,0,169.618,60.929,169.618,179.084c0,17.444,14.147,31.593,31.593,31.593 C1584.508,515.183,1598.646,501.034,1598.646,483.59z"}),wp.element.createElement(a,{d:"M1245.167,67.346c-8.005,0-15.974,0.176-23.897,0.515c-124.318-6.434-239.696,39.191-324.708,117.896 C802.382,111.649,683.698,67.346,554.832,67.346C249.563,67.346,1.211,315.7,1.211,620.971 c0,169.59,76.672,321.587,197.146,423.214l679.305,679.309c5.924,5.923,13.963,9.246,22.337,9.246 c8.384,0,16.413-3.323,22.347-9.246l679.218-679.238c120.519-101.636,197.227-253.659,197.227-423.285 C1798.79,315.7,1550.438,67.346,1245.167,67.346z M899.999,1656.474l-505.608-505.617L241.498,997.96l-60.105-60.101 c-0.744-0.749-1.52-1.445-2.323-2.098c-71.524-85.24-114.673-195.066-114.673-314.791c0-270.426,220.008-490.44,490.435-490.44 c111.765,0,214.891,37.604,297.452,100.783c0.309,0.229,0.599,0.476,0.908,0.714c-56.627,69.7-92.777,157.083-98.507,253.368 c-1.04,17.418,12.235,32.377,29.654,33.409c0.643,0.044,1.278,0.062,1.913,0.062c16.581,0,30.508-12.94,31.505-29.715 c5.059-85.082,37.825-162.045,88.959-222.683c13.021-12.438,26.683-24.197,40.999-35.154 c76.84-58.798,171.504-95.406,274.348-100.202c1.604,0.048,3.183-0.013,4.733-0.194c6.101-0.229,12.218-0.387,18.371-0.387 c270.434,0,490.438,220.014,490.438,490.44c0,119.707-43.133,229.515-114.648,314.755c-0.811,0.671-1.596,1.375-2.354,2.133 l-60.153,60.146l-152.843,152.852L899.999,1656.474z"}))},hourglass:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1291.915,534.357v-332.82h205.125c17.342,0,31.397-14.056,31.397-31.396V33.361 c0-17.34-14.056-31.396-31.397-31.396H302.959c-17.34,0-31.396,14.055-31.396,31.396v136.779c0,17.341,14.056,31.396,31.396,31.396 h205.126v332.82c0,163.429,98.684,304.023,239.057,364.271c-140.373,60.465-239.057,201.569-239.057,365.587v334.248H302.959 c-17.34,0-31.396,14.056-31.396,31.396v136.779c0,17.34,14.056,31.396,31.396,31.396H1497.04c17.342,0,31.397-14.056,31.397-31.396 v-136.779c0-17.34-14.056-31.396-31.397-31.396h-205.125v-334.248c0-164.019-98.686-305.122-239.057-365.587 C1193.229,838.381,1291.915,697.787,1291.915,534.357z M334.355,64.758h1131.289v73.987H1260.52H539.48H334.355V64.758z M1229.124,201.537v301.424H570.876V201.537H1229.124z M624.024,1591.386L900,1365.789l275.973,225.597H624.024z M1465.645,1735.243H334.355v-73.987H539.48h721.039h205.125V1735.243z M1229.124,1264.216v289.515l-309.252-252.802 c-11.559-9.447-28.183-9.447-39.742,0L570.876,1553.73v-289.515c0-184.304,147.644-334.248,329.124-334.248 C1081.477,929.968,1229.124,1079.912,1229.124,1264.216z M900,867.177c-171.004,0-311.915-132.581-327.617-301.424h655.234 C1211.914,734.596,1071.004,867.177,900,867.177z"}),wp.element.createElement(a,{d:"M900,1172.91c17.34,0,31.396-14.056,31.396-31.397v-105.4c0-17.34-14.056-31.396-31.396-31.396 c-17.34,0-31.396,14.056-31.396,31.396v105.4C868.604,1158.854,882.66,1172.91,900,1172.91z"}))},house:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1783.877,760.195L1448.221,519.4c0.936-5.06,1.49-10.252,1.49-15.58V88.032 c0-47.163-38.371-85.533-85.533-85.533h-124.246c-47.162,0-85.533,38.37-85.533,85.533v220.587L918.581,139.452 c-4.537-3.26-9.654-5.051-14.847-5.618c-1.234-0.156-2.483-0.246-3.732-0.255c-1.249,0.009-2.497,0.099-3.732,0.255 c-5.188,0.567-10.309,2.358-14.846,5.618l-865.3,620.743c-14.143,10.142-17.383,29.829-7.236,43.971 c6.155,8.581,15.822,13.149,25.63,13.149c6.361,0,12.78-1.921,18.341-5.913L900.002,203.69l254.396,182.496l63.024,45.211 l132.331,94.932l64.783,46.473l332.604,238.601c5.562,3.991,11.979,5.913,18.341,5.913c9.809,0,19.476-4.568,25.631-13.149 C1801.26,790.027,1798.02,770.337,1783.877,760.195z M1217.423,353.834V88.032c0-12.411,10.099-22.509,22.509-22.509h124.246 c12.41,0,22.509,10.098,22.509,22.509v387.226L1217.423,353.834z"}),wp.element.createElement(a,{d:"M1534.746,800.935c-17.404,0-31.512,14.107-31.512,31.512v894.17c0,1.895-6.37,7.86-17.418,7.86h-353.228 v-548.772c0-17.404-14.107-31.512-31.513-31.512H698.928c-17.404,0-31.512,14.107-31.512,31.512v548.772H314.188 c-11.048,0-17.418-5.966-17.418-7.86v-894.17c0-17.405-14.107-31.512-31.512-31.512c-17.404,0-31.512,14.107-31.512,31.512v894.17 c0,1.169,0.136,2.303,0.197,3.459c2.071,37.474,37.214,67.426,80.245,67.426h384.74c17.405,0,31.512-14.108,31.512-31.513v-548.771 h339.125v548.771c0,17.404,14.107,31.513,31.512,31.513h384.74c43.031,0,78.174-29.952,80.244-67.426 c0.063-1.156,0.198-2.29,0.198-3.459v-894.17C1566.259,815.042,1552.151,800.935,1534.746,800.935z"}),wp.element.createElement(a,{d:"M1073.253,782.176c0-95.411-77.624-173.04-173.04-173.04s-173.04,77.628-173.04,173.04 c0,95.416,77.624,173.04,173.04,173.04S1073.253,877.592,1073.253,782.176z M790.198,782.176 c0-60.663,49.352-110.016,110.016-110.016s110.015,49.353,110.015,110.016c0,60.664-49.352,110.016-110.015,110.016 S790.198,842.84,790.198,782.176z"}))},id:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M975.824,1161.939v-7.569c57.861-26.47,98.873-81.339,107.801-144.171 c24.396-8.848,41.596-32.416,41.596-59.1c0-22.972-12.408-43.534-31.613-54.503c1.998-6.256,3.639-12.565,4.903-18.865 c10.218-50.672-1.423-102.46-32.774-145.828c-30.846-42.665-77.207-72.085-130.549-82.844 c-14.346-2.889-28.971-4.354-43.473-4.354c-45.75,0-90.384,14.751-125.688,41.54c-36.353,27.583-61.213,66.775-70,110.353 c-6.666,33.045-3.944,67.129,7.836,99.109c-19.965,10.732-33.185,31.823-33.185,55.4c0,27.033,17.461,50.681,42.216,59.328 c9.171,64.328,51.518,119.72,111.282,145.535v5.973c-124.135,28.12-209.728,120.969-209.728,229.471v28.979h108.036v-0.052h11.998 v0.052h451.071v-28.979C1185.553,1282.908,1099.959,1190.063,975.824,1161.939z M891.715,702.663 c10.646,0,21.422,1.082,32.024,3.211c38.996,7.871,72.748,29.171,95.025,59.991c20.776,28.726,29.145,62.513,23.796,95.671 c-28.517-13.312-66.004-27.382-105.436-32.783c-74.119-10.131-75.306-13.578-79.721-26.388l-14.153-40.951l-32.548,28.804 c-3.464,3.045-29.694,26.1-59.956,51.178c-0.838-11.125-0.14-22.277,2.094-33.351 C765.153,746.982,823.557,702.663,891.715,702.663z M768.923,901.422c20.323-16.443,40.401-33.424,54.93-45.885 c20.139,18.163,51.536,23.272,105.41,30.641c36.544,5,72.382,19.633,98.306,32.487v65.31c0,71.313-58.01,129.322-129.318,129.322 c-71.317,0-129.327-58.01-129.327-129.322V901.422z M882.134,1170.543c11.98,1.057,23.892,0.93,35.732-0.318v17.893l-17.914,9.931 l-17.818-9.899V1170.543z M675.364,1362.4c13.307-64.903,70.296-118.855,148.812-140.705v0.559l75.724,42.072l75.925-42.051v-0.58 c78.524,21.85,135.522,75.814,148.813,140.731l-390.391-0.048v0.021H675.364z"}),wp.element.createElement(a,{d:"M1185.553,1546.793H614.448c-17.273,0-31.274-14-31.274-31.273s14.001-31.273,31.274-31.273h571.104 c17.272,0,31.273,14,31.273,31.273S1202.825,1546.793,1185.553,1546.793z"}),wp.element.createElement(a,{d:"M1581.322,190.83h-529.979V95.817c0-46.806-38.08-84.886-84.886-84.886H833.543 c-46.806,0-84.886,38.08-84.886,84.886v95.012H218.679c-46.807,0-84.886,38.08-84.886,84.886v1428.468 c0,46.805,38.08,84.885,84.886,84.885h1362.644c46.805,0,84.885-38.08,84.885-84.885V275.716 C1666.207,228.909,1628.127,190.83,1581.322,190.83z M811.205,95.817c0-12.317,10.021-22.339,22.338-22.339h132.914 c12.316,0,22.338,10.022,22.338,22.339v95.012v62.547v128.372c0,12.316-10.021,22.338-22.338,22.338H833.543 c-12.316,0-22.338-10.021-22.338-22.338V253.377V190.83V95.817z M1603.66,1704.184c0,12.316-10.021,22.338-22.338,22.338H218.679 c-12.317,0-22.339-10.021-22.339-22.338V275.716c0-12.317,10.022-22.339,22.339-22.339h529.979v128.372 c0,46.806,38.08,84.886,84.886,84.886h132.914c46.806,0,84.886-38.08,84.886-84.886V253.377h529.979 c12.316,0,22.338,10.022,22.338,22.339V1704.184z"}))},idea:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M900.114,54.882c-329.509,0-597.583,268.077-597.583,597.59c0,219.592,118.159,418.518,309.714,523.794 v152.835h-0.127v122.121h-0.172v185.238h172.682c3.58,60.518,53.924,108.656,115.315,108.656 c61.39,0,111.736-48.139,115.31-108.656h172.571v-122.122h0.177v-185.237h-0.019v-152.835 c191.557-105.276,309.715-304.203,309.715-523.794C1497.697,322.959,1229.623,54.882,900.114,54.882z M675.235,1392.218h449.649 v59.005H675.235V1392.218z M899.943,1682.002c-29.441,0-48.627-22.507-51.876-45.541h103.788 C948.464,1662.119,926.504,1682.002,899.943,1682.002z M1124.708,1573.344H675.063v-59.005h449.645V1573.344z M1142.116,1129.132 l-17.25,8.778v189.457H931.559V861l187.201-187.21c12.323-12.323,12.323-32.302-0.005-44.63 c-12.318-12.318-32.302-12.323-44.629,0.004L900,803.299L725.875,629.165c-12.323-12.323-32.307-12.328-44.63-0.004 c-12.328,12.328-12.328,32.307-0.005,44.63L868.441,861v466.367H675.362V1137.91l-17.249-8.778 c-180.4-91.778-292.465-274.427-292.465-476.66c0-294.71,239.761-534.471,534.466-534.471 c294.706,0,534.466,239.761,534.466,534.471C1434.58,854.705,1322.516,1037.354,1142.116,1129.132z"}),wp.element.createElement(a,{d:"M1066.667,246.225c-17.43,0-31.558,14.128-31.558,31.559s14.128,31.558,31.558,31.558 c49.641,0,165.99,59.634,165.99,175.279c0,17.431,14.128,31.559,31.558,31.559c17.431,0,31.559-14.128,31.559-31.559 C1295.773,328.101,1146.624,246.225,1066.667,246.225z"}),wp.element.createElement(a,{d:"M209.331,712.881c0-17.43-14.128-31.558-31.558-31.558H34.686c-17.43,0-31.558,14.128-31.558,31.558 s14.128,31.558,31.558,31.558h143.087C195.203,744.439,209.331,730.312,209.331,712.881z"}),wp.element.createElement(a,{d:"M220.157,300.096c6.164,6.163,14.239,9.245,22.317,9.245c8.075,0,16.153-3.082,22.313-9.241 c12.328-12.328,12.328-32.307,0.004-44.629L163.623,154.297c-12.318-12.319-32.303-12.323-44.63-0.004 c-12.327,12.327-12.327,32.307-0.004,44.63L220.157,300.096z"}),wp.element.createElement(a,{d:"M220.17,1125.662l-101.178,101.174c-12.327,12.327-12.327,32.307-0.004,44.634 c6.164,6.164,14.238,9.246,22.317,9.246c8.074,0,16.153-3.082,22.312-9.246l101.179-101.173 c12.327-12.327,12.327-32.307,0.004-44.625C252.478,1113.344,232.493,1113.344,220.17,1125.662z"}),wp.element.createElement(a,{d:"M1765.314,681.323h-143.083c-17.43,0-31.559,14.128-31.559,31.558s14.129,31.558,31.559,31.558h143.083 c17.43,0,31.558-14.128,31.558-31.558S1782.744,681.323,1765.314,681.323z"}),wp.element.createElement(a,{d:"M1557.521,309.341c8.074,0,16.153-3.082,22.316-9.241l101.174-101.173 c12.322-12.327,12.322-32.307,0-44.634c-12.328-12.319-32.307-12.319-44.635,0l-101.173,101.173 c-12.323,12.328-12.323,32.307,0,44.634C1541.368,306.259,1549.447,309.341,1557.521,309.341z"}),wp.element.createElement(a,{d:"M1579.829,1125.662c-12.318-12.318-32.302-12.318-44.63,0.01c-12.323,12.318-12.323,32.298,0.005,44.625 l101.178,101.173c6.159,6.164,14.238,9.246,22.312,9.246c8.075,0,16.154-3.082,22.318-9.246 c12.322-12.327,12.322-32.307-0.005-44.634L1579.829,1125.662z"}))},key:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M246.051,1796.104c-2.663,0-5.348-0.336-7.992-1.025l-166.817-43.505 c-11.095-2.895-19.762-11.557-22.656-22.654L5.044,1562.08c-2.839-10.881,0.3-22.446,8.251-30.397l101.307-101.312 c0.476-0.544,0.968-1.069,1.481-1.587l668.3-668.298c-43.625-93.255-59.486-199.569-44.681-301.964 c16.48-114,68.356-217.425,150.023-299.096C990.027,59.131,1123.381,3.896,1265.223,3.896 c141.839,0,275.184,55.23,375.479,155.521c207.043,207.047,207.043,543.934,0,750.977 c-100.277,100.277-233.622,155.512-375.456,155.517c-77.911,0.005-155.419-17.284-225.608-50.161l-198.6,198.589 c-5.219,5.22-12.101,8.454-19.45,9.14l-96.017,8.972l-8.967,96.021c-0.686,7.35-3.92,14.23-9.14,19.454l-0.805,0.805 c-5.224,5.219-12.104,8.454-19.454,9.14l-96.02,8.967l-8.965,96.018c-0.689,7.371-3.938,14.27-9.184,19.498l-1.237,1.233 c-5.215,5.197-12.081,8.414-19.413,9.1l-95.584,8.927l-8.925,95.58c-0.688,7.354-3.92,14.235-9.144,19.459l-67.392,67.384 c-0.521,0.521-1.057,1.021-1.604,1.498l-101.283,101.289C262.438,1792.842,254.346,1796.104,246.051,1796.104z M105.198,1694.951 l131.287,34.242l90.004-90.012c0.518-0.517,1.05-1.017,1.598-1.494l57.77-57.762l10.304-110.354 c1.417-15.167,13.429-27.18,28.596-28.598l96.718-9.034l9.069-97.144c1.416-15.168,13.429-27.18,28.596-28.599l96.753-9.038 l9.038-96.755c1.419-15.163,13.427-27.176,28.594-28.594l110.792-10.351l206.612-206.602c9.797-9.802,24.846-12.091,37.114-5.652 c66.53,34.905,141.635,53.353,217.198,53.348c124.917-0.005,242.346-48.646,330.656-136.959 c182.347-182.343,182.347-479.03,0-661.377c-88.318-88.323-205.758-136.964-330.674-136.964 c-124.92,0-242.363,48.645-330.699,136.977C788.967,349.79,755.365,569.959,850.918,752.09 c6.444,12.277,4.154,27.312-5.648,37.119l-682.855,682.847c-0.473,0.543-0.966,1.073-1.479,1.586l-90.005,90.003L105.198,1694.951 z"}),wp.element.createElement(a,{d:"M1273.541,713.839c-48.809,0-94.691-19.008-129.203-53.524c-71.242-71.242-71.246-187.168-0.01-258.411 c34.512-34.512,80.395-53.52,129.203-53.52s94.701,19.008,129.217,53.52c34.516,34.516,53.523,80.403,53.523,129.208 c0,48.809-19.008,94.696-53.523,129.208C1368.236,694.831,1322.35,713.839,1273.541,713.839z M1273.531,411.742 c-31.881,0-61.854,12.414-84.398,34.958c-46.541,46.541-46.537,122.273,0.01,168.814c22.543,22.548,52.516,34.967,84.398,34.967 c31.887,0,61.863-12.418,84.407-34.967c22.548-22.543,34.966-52.517,34.966-84.403c0-31.882-12.418-61.859-34.966-84.403 C1335.4,424.161,1305.418,411.742,1273.531,411.742z"}))},lamp:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1304.016,1574.496h-210.088c-18.638-114.862-119.3-202.092-243.578-207.916L407.561,923.791 c13.76-18.541,21.918-41.481,21.918-66.292c0-23.781-7.513-45.826-20.252-63.945l371.323-371.323 c-14.206,116.245,24.754,235.776,110.417,321.43c6.104,6.104,14.108,9.158,22.11,9.158c8.001,0,16.007-3.054,22.114-9.162 l126.512-126.511c0.018,0.022,0.035,0.043,0.052,0.061c36.198,36.202,84.324,56.136,135.521,56.136 c51.192,0,99.318-19.934,135.521-56.131c36.198-36.202,56.131-84.328,56.131-135.52c0-51.193-19.938-99.323-56.14-135.521 c-0.018-0.018-0.039-0.035-0.057-0.053l105.893-105.893c12.212-12.216,12.212-32.014,0-44.229 c-73.124-73.12-170.353-113.393-273.775-113.393c-49.339,0-98.874,9.603-144.561,27.904L947.67,37.89 c-19.244-19.24-44.831-29.837-72.042-29.837c-27.21,0-52.798,10.597-72.046,29.841l-70.729,70.733 c-39.714,39.723-39.714,104.353,0,144.08l64.381,64.381l-437.196,437.2c-12.979-5.305-27.158-8.25-42.018-8.25 c-61.458,0-111.459,50.002-111.459,111.46c0,61.463,50.001,111.464,111.459,111.464c13.769,0,26.958-2.525,39.143-7.115 l412.673,412.678c-98.581,24.637-173.751,102.289-189.601,199.971H370.146c-17.272,0-31.272,14-31.272,31.272v156.907 c0,17.271,14,31.271,31.272,31.271h933.87c17.272,0,31.272-14,31.272-31.271v-156.907 C1335.288,1588.496,1321.288,1574.496,1304.016,1574.496z M1288.567,390.4c24.384,24.384,37.816,56.803,37.816,91.291 c0,34.487-13.429,66.907-37.816,91.291c-24.384,24.388-56.803,37.816-91.291,37.816c-34.487,0-66.907-13.429-91.29-37.812 c-0.022-0.022-0.044-0.039-0.065-0.057l182.59-182.59C1288.532,390.357,1288.55,390.383,1288.567,390.4z M777.082,208.482 c-15.335-15.34-15.335-40.295,0-55.634l70.725-70.729c7.43-7.43,17.312-11.521,27.821-11.521s20.392,4.092,27.817,11.521 l86.758,86.754c0.301,0.322,0.598,0.637,0.877,0.92c9.323,9.319,23.488,11.797,35.43,6.183 c42.864-20.169,90.701-30.827,138.339-30.827c76.204,0,148.398,26.076,206.393,74.005L914.146,676.248 c-78.975-95.98-96.844-230.711-43.204-344.701c5.615-11.932,3.141-26.103-6.182-35.43c-0.284-0.284-0.598-0.581-0.917-0.877 L777.082,208.482z M269.104,857.499c0-26.971,21.944-48.915,48.915-48.915s48.915,21.944,48.915,48.915 c0,26.975-21.944,48.92-48.915,48.92S269.104,884.474,269.104,857.499z M837.079,1428.811c95.366,0,174.466,61.813,193.24,145.686 H643.844C662.612,1490.623,741.713,1428.811,837.079,1428.811z M1272.743,1731.402H401.418v-94.361h207.048h457.23h207.047 V1731.402z"}),wp.element.createElement(a,{d:"M1425.366,673.413c-12.207-12.207-32.01-12.211-44.226,0.004c-12.211,12.211-12.211,32.014,0.004,44.225 l56.703,56.699c6.104,6.104,14.109,9.157,22.11,9.157c8.002,0,16.007-3.054,22.115-9.162c12.211-12.211,12.211-32.014-0.005-44.225 L1425.366,673.413z"}),wp.element.createElement(a,{d:"M1233.095,744.966c-17.268,0-31.272,14-31.272,31.268l-0.009,80.196c0,17.272,13.996,31.277,31.269,31.277 h0.004c17.268,0,31.272-14,31.272-31.268l0.009-80.196c0-17.272-13.996-31.277-31.268-31.277H1233.095z"}),wp.element.createElement(a,{d:"M1564.171,494.09l-80.191-0.009h-0.004c-17.269,0-31.272,14-31.272,31.269 c0,17.271,13.995,31.276,31.268,31.276l80.192,0.009c0.004,0,0.004,0,0.004,0c17.268,0,31.272-14,31.272-31.268 C1595.439,508.095,1581.443,494.09,1564.171,494.09z"}))},link:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1710.11,89.813c-56.914-56.918-132.584-88.264-213.075-88.264c-80.486,0-156.16,31.34-213.083,88.255 L946.48,427.263c-109.931,109.943-116.968,284.393-21.16,402.64l-95.495,95.494c-53.483-43.448-119.697-67.089-189.552-67.089 c-80.49,0-156.17,31.343-213.083,88.262L89.734,1284.028c-117.487,117.483-117.487,308.662-0.005,426.163 c56.918,56.915,132.599,88.26,213.088,88.26c0.004,0-0.004,0,0.004,0c80.488,0,156.173-31.354,213.091-88.271l337.437-337.453 c56.922-56.912,88.276-132.588,88.276-213.081c0-69.864-23.651-136.072-67.104-189.552l95.489-95.496 c53.493,43.444,119.707,67.086,189.57,67.086c80.49,0,156.175-31.351,213.093-88.268l337.436-337.446 c56.923-56.918,88.269-132.588,88.272-213.083C1798.383,222.393,1767.033,146.718,1710.11,89.813z M878.416,1159.646 c0,63.606-24.776,123.409-69.764,168.387l-337.44,337.454c-44.978,44.979-104.782,69.753-168.394,69.753 c-63.612,0-123.414-24.771-168.391-69.745c-92.841-92.853-92.837-243.93,0-336.77l337.456-337.454 c44.982-44.983,104.785-69.754,168.391-69.754c52.942,0,103.214,17.214,144.53,48.908l-229.112,229.114 c-12.341,12.342-12.341,32.35,0,44.696c6.173,6.169,14.259,9.255,22.351,9.255s16.177-3.086,22.35-9.259L829.5,1015.116 C861.197,1056.43,878.416,1106.699,878.416,1159.646z M1665.414,471.271l-337.44,337.449 c-44.978,44.983-104.78,69.754-168.392,69.754c-52.945,0-103.224-17.213-144.542-48.902l239.749-239.755 c12.342-12.342,12.342-32.35-0.004-44.697c-12.338-12.336-32.35-12.34-44.696,0.005l-239.72,239.729 c-71.336-93.294-64.44-227.634,20.808-312.895L1328.648,134.5c44.982-44.969,104.781-69.74,168.387-69.74 c63.604,0,123.4,24.771,168.379,69.75c44.983,44.974,69.759,104.771,69.759,168.379 C1735.173,366.495,1710.397,426.296,1665.414,471.271z"}))},location:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M899.993,1556.267l441.512-441.511c8.202-7.819,26.127-26.384,26.893-27.184l0.36-0.383 c110.946-118.997,172.046-274.141,172.046-436.851c0-353.342-287.463-640.805-640.803-640.805 c-353.342,0-640.805,287.463-640.805,640.805c0,162.714,61.1,317.857,172.038,436.851L899.993,1556.267z M900.001,71.159 c319.355,0,579.179,259.818,579.179,579.18c0,146.968-55.159,287.114-155.315,394.639c-5.202,5.387-19.292,19.873-25.095,25.383 L900.006,1469.1l-424.049-424.315C375.902,937.286,320.82,797.229,320.82,650.339C320.82,330.977,580.634,71.159,900.001,71.159z"}),wp.element.createElement(a,{d:"M998.745,225.279c110.577,0,325.781,120.91,325.781,342.553c0,17.018,13.789,30.812,30.812,30.812 c17.014,0,30.812-13.794,30.812-30.812c0-115.37-50.989-222.331-143.563-301.184c-73.464-62.566-169.175-102.994-243.842-102.994 c-17.014,0-30.812,13.794-30.812,30.813S981.731,225.279,998.745,225.279z"}),wp.element.createElement(a,{d:"M1286.716,1361.056c-24.003-9.809-49.854-18.548-77.134-26.264l-50.474,50.478 c148.765,35.502,240.488,98.79,240.488,157.599c0,87.962-205.171,185.974-499.596,185.974 c-294.417,0-499.597-98.012-499.597-185.974c0-58.805,91.723-122.097,240.488-157.599l-50.478-50.478 c-27.271,7.716-53.126,16.455-77.121,26.264c-112.537,45.995-174.513,110.563-174.513,181.813s61.977,135.817,174.513,181.813 c103.793,42.422,241.128,65.785,386.708,65.785c145.582,0,282.921-23.363,386.715-65.785 c112.536-45.995,174.504-110.563,174.504-181.813S1399.252,1407.051,1286.716,1361.056z"}),wp.element.createElement(a,{d:"M901.771,945.221c-171.172,0-310.434-139.256-310.434-310.425S730.599,324.37,901.771,324.37 c171.172,0,310.434,139.256,310.434,310.425S1072.943,945.221,901.771,945.221z M901.771,385.995 c-137.193,0-248.809,111.612-248.809,248.801s111.616,248.801,248.809,248.801c137.192,0,248.809-111.612,248.809-248.801 S1038.964,385.995,901.771,385.995z"}))},lock:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M900,868.536c-113.664,0-206.139,92.473-206.139,206.145c0,72.752,38.923,140.217,100.683,177.107v167.979 h210.914v-167.979c61.764-36.891,100.689-104.355,100.689-177.107C1106.146,961.009,1013.669,868.536,900,868.536z M960.627,1204.401l-18.129,8.493v143.914h-84.996v-143.914l-18.129-8.493c-50.148-23.487-82.554-74.403-82.554-129.721 c0-78.952,64.232-143.185,143.181-143.185c78.952,0,143.189,64.232,143.189,143.185 C1043.189,1129.998,1010.782,1180.914,960.627,1204.401z"}),wp.element.createElement(a,{d:"M1306.793,621.365V406.939c-1.094-107.793-43.891-208.955-120.511-284.855 C1109.604,46.13,1007.934,4.301,899.996,4.301c-107.933,0-209.604,41.83-286.273,117.788 c-76.617,75.896-119.413,177.057-120.507,285.166v112.333h62.958V407.571c1.898-187.646,156.137-340.313,343.822-340.313 c187.696,0,341.942,152.667,343.839,339.996v214.11H888.52H192.564v474.124c1.906,187.453,76.336,363.382,209.578,495.369 C535.485,1722.948,712.296,1795.7,900.004,1795.7c187.708,0,364.519-72.752,497.863-204.843 c133.242-131.987,207.668-307.916,209.568-495.693V621.365H1306.793z M1544.477,1094.848 c-3.561,351.735-292.671,637.894-644.472,637.894c-351.796,0-640.912-286.158-644.482-637.577v-410.84h237.693h813.578h237.684 V1094.848z"}))},man:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M886.355,871.67h53.495c10.102,0,18.296-8.19,18.296-18.292c0-10.102-8.194-18.297-18.296-18.297h-35.2 v-85.604c0-10.104-8.188-18.294-18.294-18.294c-10.102,0-18.29,8.19-18.29,18.294v103.901 C868.065,863.479,876.253,871.67,886.355,871.67z"}),wp.element.createElement(a,{d:"M1023.146,976.574c8.168-5.93,9.996-17.364,4.066-25.551c-5.922-8.177-17.373-10.006-25.551-4.066 c-101.739,73.761-199.976,3.223-204.197,0.113c-8.101-6-19.54-4.328-25.57,3.771c-6.033,8.099-4.352,19.56,3.747,25.603 c0.814,0.602,55.267,40.208,128.108,40.208C940.389,1016.651,981.693,1006.637,1023.146,976.574z"}),wp.element.createElement(a,{d:"M722.023,669.317c-21.604,0-39.12,24.242-39.12,54.165c0,29.916,17.517,54.171,39.12,54.171 c21.606,0,39.121-24.256,39.121-54.171C761.145,693.56,743.629,669.317,722.023,669.317z"}),wp.element.createElement(a,{d:"M787.496,653.241c8.102,5.977,19.524,4.298,25.547-3.792c6.03-8.101,4.352-19.559-3.751-25.594 c-29.785-22.174-104.559-50.742-174.351-0.139c-8.179,5.93-10.004,17.371-4.074,25.546c3.577,4.936,9.162,7.559,14.827,7.559 c3.721,0,7.478-1.13,10.72-3.485C721.58,606.091,784.808,651.267,787.496,653.241z"}),wp.element.createElement(a,{d:"M1056.352,669.317c-21.615,0-39.127,24.242-39.127,54.165c0,29.916,17.512,54.171,39.127,54.171 c21.597,0,39.118-24.256,39.118-54.171C1095.47,693.56,1077.948,669.317,1056.352,669.317z"}),wp.element.createElement(a,{d:"M990.863,653.241c2.665-1.942,65.915-47.15,131.09,0.094c3.248,2.355,7.001,3.485,10.719,3.485 c5.67,0,11.252-2.623,14.831-7.559c5.931-8.175,4.11-19.616-4.075-25.546c-69.808-50.607-144.57-22.039-174.353,0.139 c-8.082,6.016-9.745,17.411-3.763,25.516C971.295,657.476,982.738,659.191,990.863,653.241z"}),wp.element.createElement(a,{d:"M1044.421,1241.034v-73.482c144.013-55.917,249.028-190.594,261.882-350.876 c54.584-8.121,96.594-55.29,96.594-112.094c0-52.986-36.558-97.585-85.777-109.929c9.814-23.683,17.381-48.378,22.441-73.552 c22.416-111.207-3.248-225.034-72.289-320.511c-68.475-94.707-171.558-160.041-290.254-183.967 c-32.013-6.448-64.617-9.723-96.897-9.723c-101.613,0-200.664,32.694-278.898,92.055 c-79.953,60.67-134.599,146.725-153.866,242.316c-15.827,78.522-7.48,159.771,24.14,234.966l7.215,17.158 c-52.042,10.239-91.424,56.193-91.424,111.192c0,57.297,42.746,104.765,98.016,112.271 c13.167,163.313,122.008,300.019,270.279,353.863v70.313c-293.228,54.776-503.231,269.911-503.231,520.054v32.013h184.187v-64.025 H317.726c13.115-155.446,121.035-292.501,281.221-370.137l163.441,370.137H604.229v-188.913v-1.533 c0-16.833-14.332-30.479-32.015-30.479c-17.681,0-32.013,13.646-32.013,30.479v1.533v188.913v19.855v12.157v32.013h1007.448 v-32.013C1547.649,1510.945,1337.645,1295.811,1044.421,1241.034z M930.688,1458.755l-21.867,237.567h-26.049l-21.862-237.567 l34.886-28.459L930.688,1458.755z M797.781,1471.487l20.835,226.429l-84.098-190.454L797.781,1471.487z M993.72,1472.462l61.543,35 l-81.808,185.281L993.72,1472.462z M1081.258,1448.584l-121.021-68.823l84.185-46.617v-26.892 c30.759,6.287,60.437,14.517,88.879,24.479L1081.258,1448.584z M1338.872,704.582c0,20.803-12.967,38.599-31.229,45.833v-81.098 v-10.562C1325.905,665.991,1338.872,683.786,1338.872,704.582z M510.122,353.917C543.173,189.945,698.781,70.929,880.12,70.929 c28.048,0,56.385,2.843,84.252,8.462c102.856,20.733,192.005,77.098,251.014,158.712c58.452,80.838,80.267,176.85,61.413,270.353 c-2.422,12.005-5.504,23.879-9.232,35.546c-74.684-38.646-176.441-81.161-283.574-95.821 c-187.071-25.595-203.602-35.866-221.686-88.241l-15.614-45.238L710.842,346.4c-1.075,0.954-97.289,85.933-194.556,164.338 C501.821,459.388,499.642,405.905,510.122,353.917z M451.313,704.587c0-21.33,13.638-39.487,32.631-46.347v11.077v81.614 C464.951,744.071,451.313,725.916,451.313,704.587z M547.972,783.466V669.317V636.07v-68.66 c67.086-53.777,134.851-111.775,173.301-145.113c36.729,56.681,103.2,68.686,254.046,89.32 c104.311,14.275,205.434,59.292,268.301,92.136v32.317v33.247v114.148c0,191.785-156.039,347.824-347.824,347.824 C704.004,1131.29,547.972,975.251,547.972,783.466z M895.795,1195.314c28.988,0,57.282-3.03,84.592-8.752v44.335v37.194v27.318 l-80.547,44.613l-80.231-44.588v-27.344v-37.194v-42.681C844.309,1192.858,869.77,1195.314,895.795,1195.314z M755.582,1306.252 v26.857l78.91,43.838l-125.97,71.637l-50.614-114.622C689.021,1322.563,721.623,1313.192,755.582,1306.252z M1249.584,1729.075 v-190.446c0-16.833-14.334-30.479-32.012-30.479c-17.688,0-32.014,13.646-32.014,30.479v190.446h-158.163l165.243-374.213 c164.844,76.87,276.295,216.041,289.637,374.213H1249.584z"}))},mail:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M531.087,344.727c0.247,0,0.492,0.033,0.739,0.033h453.558c16.819,0,30.444-13.625,30.444-30.436 c0-16.815-13.625-30.435-30.444-30.435H638.226H531.826c-16.811,0-30.44,13.62-30.44,30.435 C501.386,330.885,514.624,344.331,531.087,344.727z"}),wp.element.createElement(a,{d:"M531.826,497.389h749.422c16.814,0,30.443-13.629,30.443-30.439c0-16.814-13.629-30.439-30.443-30.439 H531.826c-16.811,0-30.44,13.625-30.44,30.439C501.386,483.76,515.016,497.389,531.826,497.389z"}),wp.element.createElement(a,{d:"M531.826,650.009h749.422c16.814,0,30.443-13.633,30.443-30.444c0-8.872-3.822-16.827-9.877-22.389 c-5.424-4.982-12.625-8.046-20.566-8.046H531.826c-7.938,0-15.143,3.064-20.567,8.046c-6.054,5.562-9.873,13.517-9.873,22.389 C501.386,636.376,515.016,650.009,531.826,650.009z"}),wp.element.createElement(a,{d:"M1311.691,772.194c0-16.806-13.629-30.436-30.443-30.436H531.826c-16.811,0-30.44,13.629-30.44,30.436 c0,16.815,13.629,30.444,30.44,30.444h749.422C1298.063,802.638,1311.691,789.009,1311.691,772.194z"}),wp.element.createElement(a,{d:"M1772.088,533.511c-2.481-3.422-5.691-6.4-9.603-8.622l-246.454-139.961v-82.389v-9.853 c-1.264-7.738-5.432-14.501-11.406-19.066l-49.465-42.835l-131.073-113.508l-61.889-53.596c-5.286-4.582-11.866-7.021-18.591-7.275 h-2.197H937.55h-66.904H383.746c-47.809,0-86.705,38.895-86.705,86.696V382.15L61.554,515.893 c-31.678,11.565-54.396,41.913-54.396,77.54v1067.543c0,45.554,37.064,82.618,82.622,82.618h1625.598 c45.558,0,82.623-37.064,82.623-82.618V593.433C1798,569.839,1788.002,548.583,1772.088,533.511z M1614.426,510.814l92.579,52.583 l-11.661,8.301l-179.313,127.664V571.698v-60.883v-55.873L1614.426,510.814z M1405.5,267.454h-132.895V152.361L1405.5,267.454z M357.922,571.698v-60.883v-93.226v-70.01V143.102c0-14.239,11.585-25.825,25.824-25.825h379.699H886.73h34.734h123.285h167.617 v180.296c0,16.631,13.483,30.11,30.119,30.11h212.674v22.668v70.015v90.448v60.883V742.7l-397.298,282.87l-50.781,36.148 l-18.591,13.241l-81.088,57.728l-81.093-57.728l-18.611-13.25l-50.782-36.155L357.922,741.483V571.698z M193.76,510.814 l103.281-58.649v58.649v60.883V698.14L119.448,571.698l-14.597-10.395L193.76,510.814z M68.036,1648.984V609.822l229.005,163.047 l60.88,43.344L710.7,1067.38l-8.372,7.58l-67.267,60.871L68.036,1648.984z M121.495,1682.723l604.294-546.892l35.693-32.304 l45.37,32.304l82.897,59.028c5.283,3.76,11.462,5.637,17.653,5.637c6.187,0,12.369-1.877,17.652-5.637l82.889-59.028l45.354-32.286 l35.686,32.286l604.311,546.892H121.495z M1737.119,1640.271l-557.41-504.439l-67.267-60.871l-8.359-7.563l351.077-249.962 l60.871-43.348l221.088-157.407V1640.271z"}))},medal:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1170.537,1120.229l-178.391-25.926l-79.759-161.635c-5.272-10.681-16.147-17.441-28.059-17.441 c-11.906,0-22.783,6.761-28.056,17.441l-79.776,161.63l-178.386,25.931c-11.785,1.711-21.574,9.964-25.253,21.29 c-3.68,11.326-0.611,23.761,7.917,32.071l129.084,125.823l-30.474,177.653c-2.013,11.736,2.811,23.6,12.447,30.601 c9.633,6.991,22.404,7.926,32.944,2.383l159.553-83.88l159.547,83.88c4.573,2.404,9.575,3.592,14.552,3.592 c6.494,0,12.945-2.017,18.393-5.975c9.637-7.001,14.464-18.864,12.447-30.601l-30.465-177.657l129.07-125.819 c8.529-8.314,11.593-20.745,7.918-32.071C1192.107,1130.192,1182.321,1121.939,1170.537,1120.229z M1003.346,1266.085 c-7.376,7.188-10.736,17.541-9,27.693l22.539,131.389l-117.999-62.035c-4.557-2.396-9.555-3.592-14.557-3.592 c-5.001,0-9.999,1.196-14.556,3.592l-118.002,62.035l22.539-131.389c1.741-10.152-1.624-20.505-9-27.693l-95.467-93.054 l131.929-19.178c10.188-1.479,19-7.879,23.556-17.109l59-119.543l58.995,119.538c4.547,9.235,13.355,15.635,23.551,17.114 l131.934,19.178L1003.346,1266.085z"}),wp.element.createElement(a,{d:"M1784.612,23.339c-5.569-9.776-15.948-15.813-27.191-15.813h-462.282c-11.183,0-21.51,5.966-27.096,15.652 L913.897,637.144c-9.349-0.476-18.752-0.711-28.211-0.733L531.961,23.178c-5.587-9.686-15.918-15.652-27.1-15.652H42.58 c-11.247,0-21.626,6.037-27.191,15.813c-5.561,9.772-5.451,21.779,0.292,31.451l451.452,759.959 c-99.576,103.891-160.847,244.763-160.847,399.686c0,318.734,259.309,578.041,578.039,578.041 c318.728,0,578.03-259.307,578.03-578.041c0-144.814-53.537-277.354-141.842-378.884L1784.315,54.79 C1790.06,45.118,1790.173,33.111,1784.612,23.339z M97.553,70.097h389.239l329.004,570.376 c-114.047,13.535-218.012,60.385-301.861,130.55L97.553,70.097z M1399.784,1214.435c0,284.232-231.237,515.47-515.459,515.47 c-284.229,0-515.468-231.237-515.468-515.47c0-131.891,49.815-252.35,131.586-343.609c14.351-16.018,29.67-31.146,45.89-45.261 c82.522-71.82,188.032-117.836,303.869-125.443c9.267-0.607,18.598-0.969,27.991-1.078c2.042-0.026,4.081-0.079,6.132-0.079 c12.871,0,25.627,0.489,38.267,1.423c8.59,0.629,17.127,1.48,25.594,2.532c113.699,14.115,216.014,65.408,294.402,141.287 c15.678,15.176,30.387,31.329,44.048,48.369C1357.395,980.84,1399.784,1092.771,1399.784,1214.435z M1275.322,789.106 c-80.282-73.867-181.454-125.339-293.529-144.451l331.414-574.558h389.236L1275.322,789.106z"}))},megaphone:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1768.976,390.693c-18.385-88.021-44.455-175.106-78.13-260.807c-1.895-4.813-3.701-9.645-5.645-14.455 c-19.858-47.839-63.561-81.251-106.271-81.251c-7.987,0-15.769,1.196-22.961,3.491c-84.593,26.491-168.938,58.602-250.511,89.656 c-178.601,68.001-363.281,138.31-555.392,150.404c-22.021,1.429-41.681,8.643-57.019,19.748 c-12.912-10.34-29.055-16.564-46.604-16.564H254.01c-42.107,0-76.362,35.469-76.362,79.066v139.127 c-5.021-1.016-10.208-1.565-15.523-1.565H86.355c-43.307,0-78.543,35.469-78.543,79.066v261.549 c0,43.593,35.236,79.062,78.543,79.062h75.769c5.315,0,10.502-0.55,15.523-1.564v139.136c0,43.598,34.255,79.066,76.362,79.066 h93.205l328.811,570.19c21.968,38.102,62.958,61.771,106.974,61.771c21.528,0,42.811-5.707,61.552-16.513 c58.922-33.991,79.22-109.585,45.246-168.521l-257.742-446.929h14.389c17.559,0,33.701-6.229,46.618-16.578 c15.343,11.104,35.02,18.323,57.067,19.761c192.032,12.085,376.704,82.395,555.292,150.386 c81.585,31.064,165.944,63.183,250.4,89.631c7.346,2.339,15.118,3.525,23.098,3.525c42.709,0,86.412-33.407,106.401-81.532 c1.908-4.726,3.688-9.479,5.549-14.213c33.644-85.572,59.696-172.592,78.076-260.577c15.141-95.359,23.243-203.902,23.243-316.88 C1792.188,594.476,1784.094,486.008,1768.976,390.693z M162.125,854.196H86.355c-8.555,0-15.519-7.192-15.519-16.038V576.609 c0-8.845,6.964-16.042,15.519-16.042h75.769c8.559,0,15.523,7.197,15.523,16.042v261.549 C177.647,847.004,170.684,854.196,162.125,854.196z M835.2,1612.268c16.622,28.83,6.687,65.815-22.135,82.442 c-9.175,5.289-19.572,8.085-30.065,8.085c-21.555,0-41.624-11.58-52.377-30.229l-310.654-538.709h139.334L835.2,1612.268z M646.443,1070.833h-50.737h-72.753H383.624h-72.753H254.01c-7.231,0-13.338-7.346-13.338-16.042V838.158V576.609V359.981 c0-8.845,5.983-16.042,13.338-16.042h392.434c7.364,0,13.352,7.196,13.352,16.042v694.81 C659.795,1063.637,653.807,1070.833,646.443,1070.833z M1327.845,1228.53c-182.979-69.667-372.188-141.704-573.689-154.387 c-18.842-1.227-31.336-11.659-31.336-18.033v-1.319v-694.81v-1.332c0-6.366,12.489-16.802,31.266-18.02 c201.585-12.692,390.807-84.729,573.795-154.4c56.083-21.348,113.498-43.162,171.141-63.231 c-20.847,33.525-39.302,79.743-55.251,138.547c-15.141,55.823-27.055,120.202-35.504,190.01 c-2.563,21.146-4.81,42.771-6.714,64.844c-5.271,61.033-8.04,125.244-8.04,190.981c0,65.746,2.77,129.957,8.04,190.994 c1.904,22.074,4.155,43.699,6.714,64.844c8.449,69.804,20.363,134.177,35.504,190.005c15.949,58.809,34.409,105.03,55.26,138.556 C1441.404,1271.719,1383.958,1249.896,1327.845,1228.53z M1456.536,707.379c0-64.154,2.699-126.677,7.816-185.956 c58.347,23.528,101.1,97.956,101.1,185.96c0,87.999-42.753,162.432-101.096,185.96 C1459.235,834.065,1456.536,771.538,1456.536,707.379z M1706.329,1017.023c-6.938,43.153-15.364,83.374-25.217,119.704 c-15.338,56.563-31.648,94.238-46.371,118.593c-17.805,29.455-33.288,39.399-41.888,39.399c-15.707,0-54.363-33.021-88.258-157.992 c-14.253-52.561-25.521-113.272-33.579-179.265c90.097-26.386,157.46-128.458,157.46-250.079s-67.368-223.688-157.46-250.075 c8.059-65.997,19.326-126.708,33.579-179.269c33.895-124.976,72.555-157.992,88.258-157.992c8.595,0,24.074,9.936,41.87,39.373 c14.728,24.351,31.046,62.035,46.389,118.619c9.883,36.453,18.337,76.828,25.287,120.148 C1750.309,603.387,1750.282,811.917,1706.329,1017.023z"}))},message:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1768.407,80.034H31.592C14.144,80.034,0,94.178,0,111.627v1247.362c0,17.453,14.144,31.593,31.592,31.593 h174.524v297.79c0,11.292,6.021,21.72,15.796,27.36c4.888,2.821,10.339,4.232,15.796,4.232c5.452,0,10.908-1.411,15.796-4.232 l563.182-325.15h951.721c17.449,0,31.593-14.14,31.593-31.593V111.627C1800,94.178,1785.856,80.034,1768.407,80.034z M1736.815,1327.396H808.22c-5.544,0-10.992,1.464-15.796,4.231l-523.123,302.03v-274.669c0-17.444-14.144-31.593-31.592-31.593 H63.185V143.219h1673.631V1327.396z"}),wp.element.createElement(a,{d:"M246.713,423.688h1287.764c17.448,0,31.592-14.144,31.592-31.593c0-17.449-14.144-31.592-31.592-31.592 H246.713c-17.449,0-31.592,14.143-31.592,31.592C215.121,409.545,229.264,423.688,246.713,423.688z"}),wp.element.createElement(a,{d:"M246.713,667.4h1287.764c17.448,0,31.592-14.143,31.592-31.592s-14.144-31.592-31.592-31.592H246.713 c-17.449,0-31.592,14.143-31.592,31.592S229.264,667.4,246.713,667.4z"}),wp.element.createElement(a,{d:"M246.713,911.109h1287.764c17.448,0,31.592-14.142,31.592-31.59c0-17.449-14.144-31.593-31.592-31.593 H246.713c-17.449,0-31.592,14.144-31.592,31.593C215.121,896.968,229.264,911.109,246.713,911.109z"}),wp.element.createElement(a,{d:"M246.713,1154.82h1287.764c17.448,0,31.592-14.139,31.592-31.592c0-17.444-14.144-31.592-31.592-31.592 H246.713c-17.449,0-31.592,14.147-31.592,31.592C215.121,1140.682,229.264,1154.82,246.713,1154.82z"}))},messages:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M251.485,1662c-5.408,0-10.816-1.398-15.663-4.195c-9.693-5.598-15.663-15.938-15.663-27.13v-201.559 H86.872c-44.37,0-80.467-36.097-80.467-80.463V380.479c0-44.367,36.098-80.462,80.467-80.462h1467.337 c44.375,0,80.473,36.095,80.473,80.462v968.174c0,44.366-36.098,80.463-80.473,80.463H663.253l-396.105,228.688 C262.302,1660.602,256.894,1662,251.485,1662z M86.872,362.667c-9.824,0-17.817,7.991-17.817,17.813v968.174 c0,9.824,7.993,17.813,17.817,17.813h164.614c17.301,0,31.325,14.023,31.325,31.324v178.629l356.388-205.758 c4.761-2.749,10.163-4.195,15.662-4.195h899.349c9.829,0,17.822-7.989,17.822-17.813V380.479c0-9.822-7.993-17.813-17.822-17.813 H86.872z"}),wp.element.createElement(a,{d:"M952.785,607.586H253.36c-17.302,0-31.325-14.023-31.325-31.325c0-17.301,14.023-31.325,31.325-31.325 h699.425c17.301,0,31.324,14.024,31.324,31.325C984.109,593.563,970.086,607.586,952.785,607.586z"}),wp.element.createElement(a,{d:"M1387.721,794.601H253.36c-17.302,0-31.325-14.024-31.325-31.325c0-17.302,14.023-31.325,31.325-31.325 h1134.36c17.302,0,31.326,14.023,31.326,31.325C1419.047,780.577,1405.022,794.601,1387.721,794.601z"}),wp.element.createElement(a,{d:"M1387.721,981.611H253.36c-17.302,0-31.325-14.023-31.325-31.324c0-17.302,14.023-31.325,31.325-31.325 h1134.36c17.302,0,31.326,14.023,31.326,31.325C1419.047,967.588,1405.022,981.611,1387.721,981.611z"}),wp.element.createElement(a,{d:"M1387.721,1168.627H253.36c-17.302,0-31.325-14.024-31.325-31.325c0-17.302,14.023-31.325,31.325-31.325 h1134.36c17.302,0,31.326,14.023,31.326,31.325C1419.047,1154.603,1405.022,1168.627,1387.721,1168.627z"}),wp.element.createElement(a,{d:"M1712.124,145H244.786c-44.37,0-80.467,36.097-80.467,80.467v85.476h62.65v-85.476 c0-9.824,7.993-17.816,17.817-17.816h1467.338c9.828,0,17.821,7.993,17.821,17.816v968.17c0,9.824-7.993,17.813-17.821,17.813 h-108.769v62.65h108.769c44.374,0,80.472-36.098,80.472-80.463v-968.17C1792.596,181.097,1756.498,145,1712.124,145z"}))},microphone:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M899.997,1430.906c196.13,0,355.689-159.568,355.689-355.707l0.005-725.97c0-2.024-0.197-4.004-0.57-5.922 C1245.143,154.168,1090.046,6.706,900.006,6.706c-190.005,0-345.088,147.425-355.124,336.513c-0.377,1.945-0.574,3.956-0.574,6.01 v725.97C544.308,1271.338,703.868,1430.906,899.997,1430.906z M607.108,896.711h117.567c17.343,0,31.4-14.058,31.4-31.4 s-14.058-31.4-31.4-31.4H607.108V681.478h117.567c17.343,0,31.4-14.058,31.4-31.4s-14.058-31.4-31.4-31.4H607.108V466.24h117.567 c17.343,0,31.4-14.058,31.4-31.4c0-17.343-14.058-31.4-31.4-31.4H607.108v-49.663c0.158-1.082,0.259-2.178,0.302-3.29 C612.3,228.398,690.59,126.857,798.984,87.303v125.965c0,17.343,14.058,31.4,31.4,31.4s31.4-14.058,31.4-31.4V72.036 c12.516-1.616,25.259-2.53,38.221-2.53c11.552,0,22.924,0.738,34.125,2.026v141.735c0,17.343,14.058,31.4,31.4,31.4 s31.4-14.058,31.4-31.4V85.822c110.51,38.464,190.711,141.043,195.656,264.665c0.044,1.1,0.145,2.19,0.303,3.259v49.694H1075.31 c-17.343,0-31.4,14.057-31.4,31.4c0,17.343,14.058,31.4,31.4,31.4h117.581v152.437H1075.31c-17.343,0-31.4,14.058-31.4,31.4 s14.058,31.4,31.4,31.4h117.581l-0.005,152.433H1075.31c-17.343,0-31.4,14.058-31.4,31.4s14.058,31.4,31.4,31.4h117.576v178.488 c0,161.51-131.388,292.906-292.889,292.906c-161.5,0-292.889-131.396-292.889-292.906V896.711z"}),wp.element.createElement(a,{d:"M1509.412,676.055h-144.367c-17.343,0-31.4,14.057-31.4,31.4v368.188 c0,237.368-191.71,430.769-428.426,433.576c-1.699-0.285-3.438-0.469-5.217-0.469c-1.778,0-3.518,0.184-5.217,0.469 c-236.716-2.808-428.43-196.208-428.43-433.576V707.455c0-17.343-14.058-31.4-31.4-31.4H290.586c-17.343,0-31.4,14.057-31.4,31.4 c0,17.343,14.057,31.4,31.4,31.4h112.968v336.788c0,263.191,205.881,479.161,465.048,495.422v159.429H622.835 c-17.343,0-31.4,14.058-31.4,31.4s14.058,31.4,31.4,31.4h554.333c17.343,0,31.4-14.058,31.4-31.4s-14.058-31.4-31.4-31.4H931.402 v-159.429c259.166-16.261,465.043-232.23,465.043-495.422V738.855h112.967c17.344,0,31.4-14.057,31.4-31.4 C1540.813,690.112,1526.756,676.055,1509.412,676.055z"}))},mobile:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1346.861,3.943h-893.72c-45.89,0-83.232,37.339-83.232,83.229v1625.653 c0,45.891,37.342,83.23,83.232,83.23h893.72c45.891,0,83.229-37.34,83.229-83.23V87.173 C1430.091,41.283,1392.752,3.943,1346.861,3.943z M453.141,66.61h893.72c11.34,0,20.563,9.223,20.563,20.563v172.719H432.578 V87.173C432.578,75.833,441.801,66.61,453.141,66.61z M1367.424,291.234v1169.788H432.578V291.234H1367.424z M1346.861,1733.39 h-893.72c-11.34,0-20.563-9.224-20.563-20.563v-220.47h934.846v220.47C1367.424,1724.166,1358.201,1733.39,1346.861,1733.39z"}),wp.element.createElement(a,{d:"M949.946,143.519h-43.739h-12.412h-43.74c-8.655,0-15.667,7.012-15.667,15.667 c0,8.646,7.012,15.667,15.667,15.667h43.74h12.412h43.739c8.655,0,15.667-7.021,15.667-15.667 C965.613,150.531,958.602,143.519,949.946,143.519z"}),wp.element.createElement(a,{d:"M900.002,1538.701c-39.779,0-72.144,32.355-72.144,72.135c0,39.778,32.365,72.145,72.144,72.145 c39.777,0,72.142-32.366,72.142-72.145C972.144,1571.057,939.779,1538.701,900.002,1538.701z M900.002,1651.646 c-22.503,0-40.81-18.307-40.81-40.811c0-22.495,18.307-40.802,40.81-40.802c22.501,0,40.809,18.307,40.809,40.802 C940.811,1633.34,922.503,1651.646,900.002,1651.646z"}))},mouse:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M951.669,1792.279c-143.699,0-278.138-75.66-378.553-213.039 c-98.267-134.439-152.384-312.672-152.384-501.869c0-189.193,54.117-367.426,152.384-501.865 c100.415-137.379,234.854-213.04,378.553-213.04c143.701,0,278.14,75.66,378.56,213.04 c98.262,134.438,152.381,312.669,152.381,501.865c0,189.197-54.119,367.43-152.381,501.869 C1229.809,1716.619,1095.37,1792.279,951.669,1792.279z M951.669,424.84c-258.368,0-468.563,292.723-468.563,652.531 c0,359.808,210.196,652.535,468.563,652.535c258.37,0,468.568-292.728,468.568-652.535 C1420.237,717.563,1210.039,424.84,951.669,424.84z"}),wp.element.createElement(a,{d:"M965.035,953.709h-26.731c-46.675,0-84.648-37.973-84.648-84.648v-166.33 c0-46.675,37.974-84.648,84.648-84.648h26.731c46.675,0,84.647,37.974,84.647,84.648v166.33 C1049.683,915.736,1011.71,953.709,965.035,953.709z M938.304,680.455c-12.282,0-22.276,9.994-22.276,22.276v166.33 c0,12.282,9.994,22.276,22.276,22.276h26.731c12.281,0,22.275-9.994,22.275-22.276v-166.33c0-12.282-9.994-22.276-22.275-22.276 H938.304z"}),wp.element.createElement(a,{d:"M951.669,424.84c-17.225,0-31.187-13.962-31.187-31.187c0-54.452-13.369-73.996-23.424-83.959 c-33.636-33.329-117.371-32.567-244.13-31.399c-25.544,0.235-51.957,0.477-80.594,0.477c-85.779,0-151.948-24.597-196.665-73.106 C310.528,135,317.424,40.372,317.748,36.377c1.401-17.166,16.48-29.949,33.616-28.552c17.129,1.396,29.892,16.38,28.561,33.499 c-0.092,1.349-4.468,72.523,42.009,122.504c32.437,34.882,83.041,52.57,150.401,52.57c28.352,0,54.617-0.242,80.019-0.474 c147.482-1.349,236.497-2.169,288.608,49.464c28.58,28.321,41.894,69.079,41.894,128.265 C982.855,410.878,968.894,424.84,951.669,424.84z"}))},music:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1674.102,313.758V35.517c0-0.531-0.053-1.05-0.08-1.573c0.212-3.68-0.184-7.458-1.348-11.182 c-5.178-16.602-22.839-25.852-39.428-20.683L569.624,333.772c-1.089,0.334-2.151,0.72-3.184,1.16 c-0.084,0.035-0.154,0.079-0.238,0.114c-0.856,0.378-1.691,0.782-2.507,1.226c-0.439,0.242-0.853,0.518-1.279,0.777 c-0.435,0.263-0.878,0.519-1.295,0.804c-0.527,0.356-1.023,0.751-1.529,1.138c-0.294,0.229-0.602,0.443-0.892,0.685 c-0.496,0.413-0.958,0.857-1.428,1.301c-0.272,0.254-0.553,0.496-0.816,0.76c-0.409,0.417-0.786,0.855-1.173,1.291 c-0.294,0.329-0.598,0.655-0.879,0.998c-0.302,0.377-0.583,0.773-0.869,1.164c-0.32,0.435-0.655,0.866-0.953,1.313 c-0.215,0.325-0.404,0.663-0.606,0.992c-0.329,0.544-0.663,1.085-0.962,1.647c-0.149,0.281-0.277,0.575-0.417,0.861 c-0.308,0.623-0.615,1.251-0.878,1.893c-0.124,0.299-0.22,0.602-0.329,0.901c-0.242,0.641-0.488,1.282-0.69,1.945 c-0.136,0.448-0.232,0.909-0.351,1.366c-0.132,0.519-0.281,1.028-0.386,1.555c-0.184,0.905-0.316,1.823-0.417,2.75 c-0.013,0.088-0.03,0.171-0.039,0.263c-0.114,1.125-0.171,2.258-0.163,3.4v281.451c0,0.119,0,0.242,0,0.365v748.525 c-44.338-48.791-108.277-79.475-179.244-79.475c-133.55,0-242.2,108.656-242.2,242.209c0,133.554,108.65,242.203,242.2,242.203 c133.553,0,242.208-108.649,242.208-242.203V668.854l1000.829-312.107v709.3c-44.338-48.791-108.273-79.465-179.24-79.465 c-133.553,0-242.203,108.646-242.203,242.199c0,133.557,108.65,242.213,242.203,242.213c133.555,0,242.205-108.656,242.205-242.213 V314.122C1674.102,313.999,1674.102,313.88,1674.102,313.758z M368.1,1736.388c-98.83,0-179.235-80.405-179.235-179.239 c0-98.835,80.405-179.244,179.235-179.244c98.833,0,179.244,80.409,179.244,179.244 C547.344,1655.982,466.934,1736.388,368.1,1736.388z M1431.896,1408.029c-98.832,0-179.239-80.41-179.239-179.248 c0-98.835,80.407-179.239,179.239-179.239c98.834,0,179.24,80.404,179.24,179.239 C1611.137,1327.619,1530.73,1408.029,1431.896,1408.029z M610.308,602.899v-215.86L1611.137,74.931v215.861L610.308,602.899z"}))},notification:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M942.432,362.391c28.336,0,78.253,16.538,120.884,52.848c33.173,28.25,72.71,77.44,72.71,151.333 c0,17.307,14.031,31.336,31.336,31.336c17.312,0,31.336-14.029,31.336-31.336c0-175.203-166.831-266.854-256.266-266.854 c-17.304,0-31.336,14.028-31.336,31.336C911.096,348.362,925.128,362.391,942.432,362.391z"}),wp.element.createElement(a,{d:"M1555.292,1240.33c-11.603-18.885-24.035-39.138-36.538-60.862c-1.408-5.24-4.108-9.945-7.79-13.722 c-49.513-88.479-97.741-200.637-97.741-344.862c0-339.747-187.438-622.592-438.45-681.168 c7.458-12.796,11.813-27.633,11.813-43.511c0-47.816-38.768-86.576-86.583-86.576c-47.813,0-86.581,38.759-86.581,86.576 c0,15.878,4.35,30.715,11.813,43.511c-251.011,58.576-438.455,341.421-438.455,681.168c0,188.204-82.117,321.858-142.074,419.446 c-47.275,76.945-81.431,132.54-53.413,182.688c34.706,62.133,150.24,84.154,527.356,89.08 c-11.577,25.247-18.085,53.287-18.085,82.834c0,109.974,89.466,199.439,199.438,199.439c109.971,0,199.432-89.466,199.432-199.439 c0-29.547-6.505-57.587-18.09-82.834c377.126-4.926,492.65-26.947,527.361-89.08 C1636.728,1372.87,1602.566,1317.275,1555.292,1240.33z M900.002,1731.698c-75.415,0-136.767-61.352-136.767-136.767 c0-30.793,10.234-59.236,27.477-82.121c34.47,0.25,70.82,0.385,109.26,0.424c0.021,0,0.039,0,0.061,0 c38.438-0.039,74.783-0.174,109.26-0.424c17.231,22.885,27.471,51.328,27.471,82.121 C1036.763,1670.347,975.412,1731.698,900.002,1731.698z M1553.997,1392.455c-5.909,10.575-33.067,30.156-148.601,42.466 c-80.962,8.635-194.844,13.343-368.712,14.981c-41.952,0.395-87.355,0.612-136.683,0.66c-49.33-0.048-94.734-0.266-136.688-0.66 c-173.864-1.639-287.75-6.347-368.713-14.981c-115.524-12.31-142.686-31.891-148.596-42.466 c-10.098-18.081,20.114-67.255,52.102-119.314c10.208-16.613,21.303-34.704,32.686-54.227h131.308 c17.307,0,31.335-14.029,31.335-31.336c0-17.309-14.029-31.337-31.335-31.337H365.03c44.478-87.962,84.421-199.001,84.421-335.357 c0-165.03,47.721-321.097,134.371-439.463c84.238-115.071,196.471-182.333,316.179-189.546 c119.712,7.213,231.939,74.476,316.182,189.546c86.646,118.366,134.367,274.434,134.367,439.463 c0,136.356,39.939,247.396,84.424,335.357H598.516c-17.308,0-31.336,14.028-31.336,31.337c0,17.307,14.028,31.336,31.336,31.336 h870.699c11.375,19.522,22.479,37.609,32.683,54.221C1533.88,1325.2,1564.098,1374.374,1553.997,1392.455z"}))},offer:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1799.344,899.996c0-88.462-95.547-165.006-276.3-221.355c-16.881-5.265-34.349-10.276-52.301-15.054 c9.318-16.072,18.118-31.96,26.339-47.619c87.966-167.659,101.403-289.341,38.854-351.9c-25.566-25.557-61.558-38.52-106.981-38.52 c-75.811,0-177.951,37.532-292.485,103.924c-4.795-18.03-9.827-35.569-15.106-52.516C1065.015,96.198,988.466,0.657,900.001,0.657 c-88.462,0-165.011,95.541-221.36,276.299c-5.283,16.946-10.315,34.485-15.11,52.516 c-114.534-66.392-216.675-103.924-292.49-103.924c-45.424,0-81.41,12.958-106.972,38.52c-62.554,62.554-49.121,184.241,38.85,351.9 c8.216,15.659,17.021,31.547,26.334,47.619c-17.951,4.778-35.416,9.789-52.296,15.054C96.204,734.99,0.658,811.534,0.658,899.996 c0,88.469,95.546,165.01,276.299,221.366c16.88,5.262,34.345,10.268,52.296,15.055c-9.313,16.071-18.118,31.959-26.334,47.618 c-87.971,167.659-101.404,289.342-38.85,351.892c25.562,25.565,61.552,38.528,106.972,38.528 c75.815,0,177.957-37.536,292.49-103.924c4.799,18.022,9.827,35.561,15.11,52.512c56.349,180.753,132.893,276.3,221.36,276.3 c88.464,0,165.013-95.547,221.362-276.3c5.279-16.951,10.312-34.481,15.106-52.512c114.534,66.388,216.666,103.915,292.485,103.915 c45.424,0,81.415-12.963,106.973-38.52c62.558-62.55,49.12-184.232-38.846-351.892c-8.221-15.659-17.021-31.547-26.339-47.618 c17.952-4.787,35.42-9.793,52.301-15.055C1703.797,1065.006,1799.344,988.465,1799.344,899.996z M1481.194,1068.176 c-14.5,4.198-29.396,8.229-44.659,12.076c-9.125,2.301-18.355,4.549-27.736,6.718c-12.313,2.854-24.854,5.587-37.589,8.212 c7.123,10.83,14.043,21.605,20.719,32.303c5.12,8.194,10.073,16.345,14.912,24.45c8.046,13.455,15.686,26.77,22.949,39.935 c3.952,7.175,7.825,14.325,11.549,21.411c70.717,134.796,89.442,238.764,50.078,278.128c-13.322,13.331-34.34,20.085-62.462,20.085 c-60.529,0-143.164-29.456-237.269-81.607c-13.052-7.229-26.313-14.896-39.769-22.976c-8.071-4.848-16.213-9.854-24.415-14.991 c-10.662-6.692-21.438-13.622-32.302-20.806c-2.635,12.769-5.376,25.346-8.23,37.685c-2.15,9.301-4.382,18.444-6.666,27.499 c-3.864,15.343-7.912,30.317-12.128,44.896c-2.267,7.808-4.559,15.536-6.921,23.107 c-45.301,145.325-105.584,232.088-161.254,232.088c-55.673,0-115.957-86.763-161.256-232.088c-2.362-7.571-4.655-15.3-6.917-23.107 c-4.22-14.579-8.269-29.554-12.137-44.905c-2.279-9.046-4.506-18.189-6.661-27.49c-2.854-12.339-5.595-24.916-8.229-37.685 c-10.869,7.175-21.641,14.113-32.311,20.806c-8.199,5.137-16.336,10.144-24.407,14.991c-13.455,8.08-26.721,15.747-39.767,22.976 c-94.105,52.151-176.745,81.617-237.274,81.617c-28.118,0-49.13-6.764-62.453-20.087c-39.368-39.363-20.648-143.34,50.078-278.136 c3.715-7.086,7.593-14.236,11.549-21.411c7.254-13.165,14.904-26.479,22.94-39.935c4.843-8.105,9.797-16.256,14.912-24.45 c6.675-10.697,13.596-21.473,20.723-32.303c-12.735-2.625-25.276-5.357-37.59-8.212c-9.384-2.169-18.61-4.417-27.735-6.718 c-15.269-3.847-30.16-7.878-44.659-12.076c-7.808-2.267-15.537-4.559-23.111-6.921C150.37,1015.954,63.611,955.671,63.611,899.996 c0-55.673,86.758-115.952,232.084-161.257c7.575-2.362,15.304-4.655,23.111-6.916c14.504-4.203,29.39-8.225,44.659-12.076 c9.121-2.297,18.351-4.545,27.735-6.719c12.313-2.851,24.855-5.582,37.585-8.212c-7.127-10.833-14.043-21.601-20.719-32.297 c-5.115-8.199-10.069-16.345-14.917-24.451c-8.036-13.455-15.682-26.77-22.94-39.935c-3.952-7.18-7.834-14.329-11.549-21.412 c-70.722-134.795-89.446-238.772-50.074-278.144c13.323-13.323,34.335-20.077,62.453-20.077c60.529,0,143.165,29.457,237.27,81.612 c13.046,7.228,26.313,14.899,39.771,22.979c8.071,4.848,16.205,9.845,24.407,14.992c10.666,6.692,21.438,13.622,32.311,20.806 c2.635-12.769,5.375-25.346,8.229-37.694c2.155-9.297,4.382-18.443,6.661-27.485c3.869-15.352,7.913-30.326,12.137-44.905 c2.262-7.808,4.555-15.541,6.917-23.111C784.045,150.369,844.329,63.61,900.001,63.61c55.67,0,115.954,86.758,161.254,232.084 c2.362,7.57,4.654,15.308,6.921,23.115c4.225,14.579,8.264,29.545,12.138,44.897c2.274,9.046,4.506,18.197,6.656,27.493 c2.854,12.344,5.596,24.921,8.23,37.686c10.873-7.179,21.64-14.109,32.311-20.801c8.203-5.146,16.335-10.144,24.406-14.992 c13.455-8.08,26.727-15.751,39.769-22.979c94.104-52.151,176.739-81.612,237.269-81.612c28.122,0,49.14,6.758,62.462,20.086 c39.364,39.363,20.639,143.34-50.078,278.135c-3.724,7.079-7.597,14.228-11.549,21.408c-7.264,13.165-14.903,26.483-22.949,39.938 c-4.839,8.106-9.792,16.248-14.912,24.451c-6.676,10.693-13.587,21.465-20.719,32.297c12.735,2.63,25.276,5.362,37.589,8.212 c9.381,2.173,18.611,4.421,27.736,6.719c15.264,3.851,30.159,7.877,44.659,12.076c7.808,2.261,15.536,4.554,23.107,6.916 c145.325,45.305,232.088,105.584,232.088,161.257c0,55.675-86.763,115.958-232.088,161.259 C1496.73,1063.617,1489.002,1065.909,1481.194,1068.176z"}),wp.element.createElement(a,{d:"M704.532,852.061c82.828,0,150.217-67.388,150.217-150.217c0-82.828-67.389-150.217-150.221-150.217 c-82.828,0-150.217,67.384-150.217,150.212C554.311,784.672,621.7,852.061,704.532,852.061z M704.528,614.58 c48.12,0,87.268,39.148,87.268,87.264s-39.148,87.264-87.264,87.264c-48.12,0-87.268-39.148-87.268-87.268 C617.264,653.725,656.413,614.58,704.528,614.58z"}),wp.element.createElement(a,{d:"M1101.972,949.058c-82.837,0-150.226,67.389-150.226,150.227c0,82.828,67.389,150.207,150.226,150.207 c82.829,0,150.208-67.379,150.208-150.207C1252.18,1016.446,1184.801,949.058,1101.972,949.058z M1101.972,1186.538 c-48.119,0-87.271-39.144-87.271-87.254c0-48.129,39.152-87.273,87.271-87.273c48.11,0,87.255,39.145,87.255,87.273 C1189.227,1147.395,1150.082,1186.538,1101.972,1186.538z"}),wp.element.createElement(a,{d:"M1198.448,561.357l-634.397,634.403c-12.291,12.295-12.291,32.223,0,44.519 c6.147,6.138,14.206,9.212,22.26,9.212c8.053,0,16.111-3.074,22.259-9.212l634.397-634.402c12.287-12.295,12.287-32.224,0-44.52 C1230.672,549.071,1210.744,549.071,1198.448,561.357z"}))},page:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1720.335,5.563H85.245c-43.937,0-79.679,35.739-79.679,79.667v1635.1c0,43.928,35.743,79.67,79.679,79.67 h1635.09c43.927,0,79.665-35.742,79.665-79.67V85.23C1800,41.302,1764.262,5.563,1720.335,5.563z M85.245,68.575h1635.09 c9.182,0,16.653,7.473,16.653,16.655v195.532H68.578V85.23C68.578,76.048,76.055,68.575,85.245,68.575z M1720.335,1736.988H85.245 c-9.19,0-16.667-7.472-16.667-16.658V343.774h1668.41V1720.33C1736.988,1729.517,1729.517,1736.988,1720.335,1736.988z"}),wp.element.createElement(a,{d:"M1518.679,1150.928H333.948c-47.154,0-85.517,38.363-85.517,85.517v315.061 c0,47.152,38.363,85.516,85.517,85.516h1184.73c47.154,0,85.518-38.363,85.518-85.516v-315.061 C1604.196,1189.291,1565.833,1150.928,1518.679,1150.928z M1541.184,1551.505c0,12.403-10.096,22.504-22.505,22.504H333.948 c-12.409,0-22.504-10.101-22.504-22.504v-315.061c0-12.412,10.096-22.505,22.504-22.505h1184.73 c12.409,0,22.505,10.093,22.505,22.505V1551.505z"}),wp.element.createElement(a,{d:"M333.948,913.886h305.565c47.153,0,85.517-38.365,85.517-85.519V522.802 c0-47.154-38.363-85.516-85.517-85.516H333.948c-47.154,0-85.517,38.362-85.517,85.516v305.565 C248.432,875.521,286.794,913.886,333.948,913.886z M311.444,522.802c0-12.408,10.096-22.504,22.504-22.504h305.565 c12.408,0,22.505,10.096,22.505,22.504v305.565c0,12.408-10.097,22.505-22.505,22.505H333.948 c-12.409,0-22.504-10.097-22.504-22.505V522.802z"}),wp.element.createElement(a,{d:"M1572.689,996.396H279.938c-17.401,0-31.506,14.108-31.506,31.505c0,17.406,14.105,31.507,31.506,31.507 h1292.751c17.401,0,31.507-14.101,31.507-31.507C1604.196,1010.505,1590.091,996.396,1572.689,996.396z"}),wp.element.createElement(a,{d:"M1572.689,832.116H858.558c-17.402,0-31.507,14.105-31.507,31.507c0,17.401,14.105,31.505,31.507,31.505 h714.132c17.401,0,31.507-14.104,31.507-31.505C1604.196,846.222,1590.091,832.116,1572.689,832.116z"}),wp.element.createElement(a,{d:"M1572.689,643.081H858.558c-17.402,0-31.507,14.105-31.507,31.506c0,17.401,14.105,31.505,31.507,31.505 h714.132c17.401,0,31.507-14.104,31.507-31.505C1604.196,657.186,1590.091,643.081,1572.689,643.081z"}),wp.element.createElement(a,{d:"M1572.689,454.044H858.558c-17.402,0-31.507,14.105-31.507,31.507c0,17.401,14.105,31.505,31.507,31.505 h714.132c17.401,0,31.507-14.104,31.507-31.505C1604.196,468.15,1590.091,454.044,1572.689,454.044z"}),wp.element.createElement(o,{cx:"204.913",cy:"171.616",r:"50.635"}),wp.element.createElement(o,{cx:"364.694",cy:"171.616",r:"50.635"}),wp.element.createElement(o,{cx:"524.474",cy:"171.616",r:"50.635"}))},paperclip:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M716.321,1752.834c-8.333,0-16.325-3.314-22.221-9.206l-466.26-466.276 c-12.274-12.271-12.274-32.169,0-44.439l952.941-952.92c5.892-5.895,13.884-9.204,22.217-9.204h314.732 c17.355,0,31.422,14.067,31.422,31.423V646.08c0,8.333-3.308,16.328-9.201,22.219L811.41,1396.841 c-12.274,12.271-32.168,12.271-44.443,0c-12.27-12.271-12.27-32.168,0-44.438l719.34-719.338v-299.43h-270.294L294.496,1255.13 l421.825,421.837L1731.096,662.206V110.013h-646.917c-47.596,45.638-273.575,262.253-499.232,477.519 C70.333,1078.448,59.475,1083.884,51.54,1087.847c-15.519,7.76-34.396,1.474-42.159-14.046 c-7.272-14.545-2.205-32.045,11.24-40.575c38.95-30.131,635.69-599.891,1029.176-977.313c5.853-5.611,13.646-8.746,21.752-8.746 h690.97c17.352,0,31.424,14.068,31.424,31.424v596.634c0,8.33-3.314,16.325-9.206,22.217L738.539,1743.628 C732.646,1749.52,724.655,1752.834,716.321,1752.834z"}))},pen:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1741.402,786.797h-35.999c-32.197-298.013-226.637-548.089-492.951-659.834h305.92v31.245 c0,17.376,14.079,31.46,31.461,31.46h125.409c17.381,0,31.459-14.084,31.459-31.46V32.798c0-17.375-14.078-31.46-31.459-31.46 h-125.409c-17.382,0-31.461,14.084-31.461,31.46v31.245H994.163V32.798c0-17.375-14.079-31.46-31.46-31.46H837.287 c-17.376,0-31.46,14.084-31.46,31.46v31.245H281.618V32.798c0-17.375-14.084-31.46-31.46-31.46H124.751 c-17.375,0-31.459,14.084-31.459,31.46v125.41c0,17.376,14.084,31.46,31.459,31.46h125.406c17.375,0,31.46-14.084,31.46-31.46 v-31.245H587.55C321.228,238.708,126.792,488.785,94.596,786.797H58.597c-17.376,0-31.46,14.084-31.46,31.46v125.409 c0,17.375,14.083,31.459,31.46,31.459h125.418c17.376,0,31.46-14.084,31.46-31.459V818.257c0-17.375-14.083-31.46-31.46-31.46 h-26.088c39.887-339.954,308.838-610.875,647.899-653.703v25.114c0,17.376,14.084,31.46,31.46,31.46h125.417 c17.381,0,31.46-14.084,31.46-31.46v-25.116c339.064,42.821,608.012,313.747,647.908,653.706h-26.08 c-17.38,0-31.46,14.084-31.46,31.46v125.409c0,17.375,14.08,31.459,31.46,31.459h125.411c17.38,0,31.46-14.084,31.46-31.459 V818.257C1772.862,800.882,1758.782,786.797,1741.402,786.797z M1643.782,126.748h-62.49V95.503V64.258h62.49V126.748z M156.212,64.258h62.485v62.49h-62.485V64.258z M152.556,877.923v34.282H90.057V877.98v-20.505 c0.052-2.589,0.119-5.174,0.193-7.758h62.306V877.923z M900.005,64.258c10.461,0,20.871,0.266,31.237,0.661v61.829h-62.496V64.918 C879.122,64.524,889.533,64.258,900.005,64.258z M1709.941,857.82v20.132v34.253h-62.489V877.98v-28.263h62.287 C1709.828,852.415,1709.889,855.116,1709.941,857.82z"}),wp.element.createElement(a,{d:"M928.829,250.905c-5.003-11.464-16.327-18.875-28.833-18.875c-12.509,0-23.828,7.411-28.831,18.875 l-409.868,939.046c-3.283,7.523-3.497,16.025-0.601,23.701l0.487,1.291c3.335,8.838,10.468,15.707,19.421,18.713 c98.036,32.9,163.906,124.49,163.906,227.906c0,43.082-11.574,85.383-33.466,122.33c-0.68,1.145-1.259,2.33-1.782,3.541 c-3.559,5.096-5.662,11.285-5.662,17.973v159.314c0,17.285,13.948,31.338,31.231,31.463l529.877,3.816c0.079,0,0.159,0,0.238,0 c17.266,0,31.328-13.939,31.45-31.23c0.122-17.377-13.859-31.566-31.23-31.689l-498.646-3.59v-79.055h486.778 c13.14,0,24.902-8.168,29.484-20.479l8.585-23.059c3.318-8.91,2.432-18.84-2.423-27.02c-21.884-36.934-33.452-79.23-33.452-122.316 c0-103.416,65.86-195.006,163.901-227.906c8.979-3.018,16.125-9.924,19.452-18.801l0.482-1.291 c2.861-7.654,2.634-16.121-0.632-23.613L928.829,250.905z M899.996,1126.566c34.811,0,63.138,28.318,63.138,63.123 c0,34.809-28.327,63.125-63.138,63.125c-34.809,0-63.126-28.316-63.126-63.125C836.87,1154.885,865.187,1126.566,899.996,1126.566z M1092.571,1461.563c0,45.088,10.052,89.504,29.241,129.953H678.187c19.198-40.457,29.244-84.869,29.244-129.953 c0-119.287-69.455-226.105-175.883-275.271l336.988-772.079v653.407c-54.331,14.008-94.586,63.43-94.586,122.07 c0,69.504,56.543,126.045,126.047,126.045c69.51,0,126.058-56.541,126.058-126.045c0-58.646-40.265-108.063-94.601-122.07V414.214 l336.994,772.077C1162.023,1235.467,1092.571,1342.275,1092.571,1461.563z"}))},phone:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1767.747,1435.832c-8.327-8.648-16.937-17.587-27.429-25.664 c-103.501-79.709-216.736-152.819-346.173-223.501c-20.847-11.386-37.313-20.372-55.837-20.372 c-24.734,0-41.76,15.473-63.32,35.063c-23.946,21.767-47.108,43.659-69.258,65.44c-12.17,11.963-24.041,23.89-35.543,35.738 c-2.982,3.074-6.067,5.62-9.285,7.808c-11.248,7.644-24.399,10.098-42.976,8.472c-48.55-4.284-97.64-18.685-150.077-44.016 c-90.392-43.678-173.444-109.723-253.898-201.906C614.263,958.662,545.58,840.776,503.974,712.499l-3.809-11.659 c-5.327-16.218-11.359-34.603-10.182-38.525c0.732-2.462,4.585-7.013,10.156-12.735c6.298-6.481,14.801-14.471,23.58-22.712 l3.199-2.999c6.12-5.753,12.417-11.45,18.768-17.112c14.514-12.941,29.429-25.659,44.021-38.067 c15.198-12.918,30.911-26.278,46.175-39.916c36.324-32.467,44.016-51.174,17.996-97.932 c-50.232-90.262-107.172-192.566-167.25-292.054c-17.626-29.176-39.149-55.296-59.957-80.559 c-8.996-10.923-18.302-22.216-26.94-33.365c-5.914-7.636-15.033-12.104-24.695-12.104h-10.034c-7.396,0-14.548,2.624-20.193,7.401 c-98.015,83.013-177.31,183.569-253.999,280.813L76.278,319.39c-14.47,18.318-27.646,37.487-40.386,56.02 c-5.758,8.373-11.515,16.75-17.382,25.036c-3.74,5.278-5.749,11.589-5.749,18.058v26.748c0,2.158,0.223,4.307,0.667,6.417 c2.262,10.778,4.376,21.596,6.495,32.414c4.698,24.042,9.563,48.903,16.065,73.441c34.742,131.062,92.31,257.189,175.989,385.601 c178.238,273.49,402.429,500.615,666.353,675.062c121.573,80.354,239.724,131.476,361.202,156.279 c17.064,3.487,34.209,6.167,50.79,8.757c7.509,1.172,15.019,2.349,22.516,3.596c1.695,0.284,3.413,0.423,5.13,0.423h63.53 c5.287,0,10.491-1.342,15.12-3.901c127.227-70.352,238.143-158.521,329.863-235.488c13.378-11.224,25.184-23.466,36.6-35.303 c4.938-5.117,9.877-10.238,14.915-15.237c5.914-5.867,9.244-13.852,9.244-22.187v-6.685c0-8.421-3.399-16.489-9.432-22.369 C1774.39,1442.736,1771.068,1439.283,1767.747,1435.832z M366.832,83.813c3.892,4.772,7.78,9.493,11.611,14.148 c20.28,24.612,39.431,47.866,54.7,73.132c59.503,98.534,116.155,200.328,166.135,290.131c2.549,4.585,4.494,8.242,5.818,10.961 c-3.278,3.226-7.911,7.361-10.857,9.994c-14.684,13.128-30.1,26.23-45.006,38.904c-15.778,13.416-31.944,27.176-47.81,41.407 l-300.029-300.03C252.538,199.507,306.375,137.786,366.832,83.813z M1373.382,1724.754h-52.847 c-6.854-1.123-13.708-2.196-20.568-3.268c-16.603-2.594-32.289-5.047-47.932-8.242c-113.5-23.176-224.475-71.322-339.252-147.188 c-256.744-169.703-474.92-390.765-648.46-657.046C184.335,786.255,129.4,666.046,96.384,541.518 c-5.971-22.547-10.426-45.32-15.141-69.432c-1.961-10.028-3.927-20.058-5.998-30.06v-13.647c4.071-5.84,8.103-11.707,12.138-17.574 c12.719-18.506,24.74-35.988,37.928-52.682l14.563-18.455c7.375-9.353,14.784-18.741,22.224-28.134l293.867,293.866 c-13.333,13.698-21.64,24.939-25.846,39.004c-6.791,22.7-0.214,42.731,10.674,75.917l3.748,11.454 c44.257,136.467,116.984,261.484,222.334,382.201c86.104,98.661,175.663,169.671,273.792,217.084 c59.367,28.683,115.554,45.036,171.779,49.997c5.417,0.478,10.709,0.718,15.725,0.718c0.005,0,0.005,0,0.005,0 c30.471,0,55.886-8.813,77.315-26.844l291.775,291.773C1457.921,1674.061,1416.589,1700.514,1373.382,1724.754z M1686.313,1499.989 c-41.934,35.194-87.985,72.757-137.669,109.723l-298.73-298.731c21.453-21.078,43.89-42.285,67.095-63.382 c6.604-6.001,17.274-15.694,22.111-18.533c5.235,1.604,17.492,8.299,25.084,12.44c126.542,69.104,237.096,140.467,337.992,218.171 c4.476,3.443,8.878,7.602,13.372,12.126C1705.725,1481.992,1696.311,1491.6,1686.313,1499.989z"}),wp.element.createElement(a,{d:"M1659.155,901.129c-66.448,0-120.505-54.059-120.505-120.505c0-258.807-210.553-469.359-469.359-469.359 c-66.447,0-120.505-54.059-120.505-120.505c0-66.446,54.058-120.505,120.505-120.505c391.698,0,710.369,318.671,710.369,710.37 C1779.66,847.07,1725.6,901.129,1659.155,901.129z M1069.291,132.739c-31.992,0-58.021,26.028-58.021,58.021 c0,31.992,26.029,58.021,58.021,58.021c293.259,0,531.843,238.582,531.843,531.843c0,31.992,26.029,58.021,58.021,58.021 c31.991,0,58.021-26.029,58.021-58.021C1717.176,423.379,1426.534,132.739,1069.291,132.739z"}),wp.element.createElement(a,{d:"M1348.582,982.494c-50.059,0-90.779-40.722-90.779-90.78c0-166.88-135.77-302.649-302.649-302.649 c-50.058,0-90.78-40.722-90.78-90.78c0-50.058,40.723-90.78,90.78-90.78c266.991,0,484.208,217.217,484.208,484.208 C1439.361,941.772,1398.64,982.494,1348.582,982.494z M955.153,469.99c-15.604,0-28.296,12.692-28.296,28.296 c0,15.604,12.692,28.295,28.296,28.295c201.334,0,365.133,163.799,365.133,365.133c0,15.604,12.692,28.295,28.296,28.295 s28.295-12.691,28.295-28.295C1376.877,659.173,1187.695,469.99,955.153,469.99z"}))},picture:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1715.855,4.642H84.157c-43.845,0-79.514,35.665-79.514,79.501v1631.71 c0,43.836,35.669,79.505,79.514,79.505h1631.698c43.837,0,79.502-35.669,79.502-79.505V84.143 C1795.357,40.307,1759.692,4.642,1715.855,4.642z M1715.855,1732.477H84.157c-9.172,0-16.633-7.457-16.633-16.624v-197.206 l588.122-588.126l571.393,571.401c6.141,6.136,14.186,9.207,22.234,9.207c8.044,0,16.093-3.071,22.233-9.207 c12.276-12.281,12.276-32.187,0-44.468L677.878,863.827c-6.139-6.141-14.185-9.209-22.231-9.207 c-8.047-0.002-16.093,3.068-22.231,9.207L67.524,1429.715V84.143c0-9.163,7.461-16.619,16.633-16.619h1631.698 c9.164,0,16.62,7.456,16.62,16.619v1332.726l-553.04-553.041c-2.303-2.303-4.873-4.171-7.611-5.612 c-11.859-6.237-26.879-4.364-36.857,5.612l-123.512,123.521c-12.277,12.277-12.277,32.182,0.004,44.464 c6.137,6.136,14.186,9.206,22.229,9.206s16.093-3.07,22.233-9.211l101.279-101.283l571.393,571.397 c1.219,1.215,2.531,2.28,3.882,3.255v210.676C1732.476,1725.02,1725.02,1732.477,1715.855,1732.477z"}),wp.element.createElement(a,{d:"M1088.885,560.165c0-97.651-79.443-177.1-177.095-177.1c-97.651,0-177.095,79.448-177.095,177.1 S814.139,737.26,911.79,737.26C1009.441,737.26,1088.885,657.816,1088.885,560.165z M911.79,674.379 c-62.978,0-114.213-51.236-114.213-114.214c0-62.982,51.236-114.218,114.213-114.218s114.214,51.235,114.214,114.218 C1026.004,623.143,974.768,674.379,911.79,674.379z"}))},piggybank:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M389.053,664.285c-30.154,0-54.591,24.439-54.591,54.586c0,22.606,13.733,41.997,33.317,50.29 c6.537,2.769,13.729,4.301,21.273,4.301c28.696,0,52.168-22.153,54.368-50.288c0.113-1.425,0.218-2.85,0.218-4.303 C443.64,688.724,419.202,664.285,389.053,664.285z"}),wp.element.createElement(a,{d:"M1784.638,612.476c-7.589-15.52-26.335-21.937-41.845-14.348c-15.513,7.593-21.94,26.326-14.344,41.844 c5.115,10.46,5.857,22.281,2.078,33.292c-3.775,11.01-11.617,19.892-22.081,25.013c-10.456,5.121-22.281,5.86-33.286,2.081 c-11.01-3.774-19.891-11.614-25.005-22.074c-1.384-2.824-3.138-5.337-5.171-7.528c-39.746-78.838-100.686-151.008-180.6-212.297 c-80.136-61.461-174.367-108.034-276.989-137.967c5.118-17.283,7.911-35.554,7.911-54.476c0-105.95-86.197-192.145-192.145-192.145 c-105.948,0-192.146,86.195-192.146,192.145c0,6.688,0.349,13.297,1.021,19.812c-32.27,3.014-64.099,7.53-95.344,13.521 c-116.002-90.762-248.975-143.138-369.332-143.138c-90.116,0-166.958,29.208-222.22,84.469c-12.214,12.217-12.214,32.021,0,44.235 l197.403,197.402c-70.858,60.392-124.577,129.99-159.247,205.276H35.549c-17.276,0-31.279,14.003-31.279,31.279v352.745 c0,17.276,14.003,31.279,31.279,31.279h127.749c39.331,85.403,103.151,163.506,188.72,229.133 c37.952,29.106,79.076,54.861,122.74,77.112v202.767c0,17.276,14.003,31.279,31.279,31.279h235.338 c17.276,0,31.279-14.003,31.279-31.279v-111.687c44.34,5.9,89.653,8.911,135.547,8.911c45.895,0,91.207-3.011,135.548-8.911 v111.687c0,17.276,14.003,31.279,31.279,31.279h235.338c17.276,0,31.279-14.003,31.279-31.279v-202.767 c43.664-22.251,84.788-48.006,122.739-77.112c151.375-116.094,234.74-271.212,234.74-436.782c0-44.354-6.039-87.947-17.708-130.25 c2.653,0.201,5.312,0.33,7.964,0.33c15.949,0,31.816-3.642,46.562-10.859c25.472-12.46,44.563-34.094,53.762-60.912 C1798.902,666.741,1797.105,637.945,1784.638,612.476z M873.575,266.017c0-71.454,58.134-129.586,129.587-129.586 c71.451,0,129.586,58.132,129.586,129.586c0,13.571-2.107,26.656-5.996,38.96c-6.916,21.897-19.506,41.294-36.031,56.472 c-23.08,21.192-53.832,34.155-87.559,34.155c-42.203,0-79.748-20.29-103.426-51.615c-13.375-17.701-22.294-38.933-25.144-62.024 C873.946,276.734,873.575,271.419,873.575,266.017z M1341.646,1338.048c-20.082,11.293-40.972,21.806-62.559,31.515v68.351v142.717 h-172.779v-90.814v-63.973c-20.497,4.39-41.372,8.09-62.559,11.118c-43.935,6.284-89.235,9.613-135.548,9.613 s-91.612-3.329-135.547-9.613c-21.186-3.028-42.063-6.729-62.559-11.118v63.973v90.814H537.316v-142.717v-68.351 c-21.587-9.709-42.477-20.222-62.559-31.515c-106.363-59.81-190.492-141.028-241.242-235.15 c-10.932-20.282-20.313-41.163-28.033-62.559h-66.154h-72.5V750.152h72.504h66.15c7.72-21.396,17.102-42.276,28.037-62.559 c32.078-59.496,77.479-113.835,133.431-160.87c15.902-13.369,32.641-26.152,50.183-38.292l-44.895-44.893L193.19,264.489 c40.884-30.012,93.538-45.719,154.172-45.719c92.887,0,195.104,35.962,289.278,99.542c21.792,14.714,43.158,30.901,63.876,48.477 c25.38-5.725,51.318-10.458,77.763-14.077c16.73-2.289,33.671-4.128,50.776-5.536c9.146,19.545,21.487,37.297,36.354,52.601 c-128.032,12.585-251.226,54.305-331.545,114.819c-13.798,10.395-16.556,30.007-6.162,43.806 c10.398,13.8,30.01,16.554,43.804,6.159c74.38-56.035,224.926-110.519,393.223-105.976 c130.494,3.53,313.018,43.535,441.491,214.062c6.148,8.163,15.518,12.461,25.004,12.461c6.555,0,13.166-2.053,18.8-6.299 c13.798-10.395,16.556-30.008,6.161-43.804c-82.227-109.14-197.932-183.846-334.365-218.031 c14.287-11.252,26.934-24.472,37.542-39.267c278.243,77.612,477.204,280.315,477.204,517.541 C1636.566,1076.444,1520.473,1237.489,1341.646,1338.048z"}))},plane:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M386.031,992.783c-36.026-8.398-72.354-12.654-107.972-12.654c-140.65,0-250.633,66.393-273.68,165.215 c-1.902,8.152-0.486,16.732,3.936,23.842c4.422,7.112,11.486,12.173,19.642,14.076l297.505,69.352 c2.37,0.551,4.774,0.824,7.168,0.824c5.844,0,11.627-1.626,16.673-4.762c7.111-4.422,12.174-11.486,14.074-19.644l46.233-198.335 C413.567,1013.718,403.01,996.743,386.031,992.783z M309.05,1183.953l-231.384-53.941c30.558-52.924,106.292-86.74,200.393-86.74 c20.648,0,41.61,1.66,62.629,4.959L309.05,1183.953z"}),wp.element.createElement(a,{d:"M769.296,1390.383l-198.337,46.234c-8.152,1.902-15.22,6.963-19.642,14.076 c-4.422,7.108-5.838,15.684-3.938,23.841l69.361,297.505c1.903,8.152,6.965,15.218,14.077,19.64 c5.045,3.136,10.826,4.761,16.67,4.761c2.396,0,4.801-0.272,7.17-0.823c63.591-14.834,114.127-64.375,142.315-139.501 c26.523-70.695,30.157-156.691,10.236-242.15C803.25,1396.986,786.289,1386.428,769.296,1390.383z M669.966,1722.238 l-53.923-231.293l135.68-31.629C769.719,1575.854,735.418,1683.973,669.966,1722.238z"}),wp.element.createElement(a,{d:"M1749.964,50.705l-0.669-0.67C1717.513,19.196,1674.71,3.56,1622.073,3.56 c-141.686,0-344.219,115.18-542.012,300.716c-155.688-31.738-309.056-47.237-468.317-47.237 c-143.357,0-276.743,12.425-388.313,24.576c-13.887,1.516-25.129,11.972-27.64,25.713c-2.509,13.742,4.31,27.501,16.765,33.822 l575.578,292.233C677.958,774.113,589.367,902.18,528.54,1009.066c-96.224,169.086-117.785,276.479-65.928,328.311 c18.338,18.348,43.994,27.654,76.256,27.654c147.394,0,431.964-200.379,627.669-353.3l292.295,575.701 c5.453,10.733,16.42,17.278,28.145,17.278c1.876,0,3.779-0.167,5.682-0.516c13.742-2.506,24.198-13.75,25.713-27.637 c25.651-235.5,46.965-514.956-22.718-856.867c178.449-190.738,293.079-387.342,300.407-527.416 C1799.153,133.046,1783.649,85.412,1749.964,50.705z M825.871,581.728l-488.63-248.087c84.415-7.585,177.287-13.46,274.503-13.46 c140.48,0,276.26,12.367,413.262,37.684c-43.568,43.996-86.608,91.237-128.396,141.263c-13.574,16.305-26.884,32.478-39.965,48.533 L825.871,581.728z M1466.412,1462.885l-248.149-488.758l34.531-31.193c17.613-14.331,33.772-27.65,48.113-39.586 c49.902-41.688,97.145-84.785,141.197-128.521C1491.223,1040.145,1484.836,1261.03,1466.412,1462.885z M1733.003,188.981 c-6.84,130.833-127.706,327.336-309.389,514.582l-211.918,191.412c-309.505,252.092-564.693,406.916-672.828,406.916 c-14.9,0-25.53-3.08-31.608-9.162c-7.184-7.18-37.279-53.1,76.157-252.43c71.101-124.937,181.572-280.174,321.064-451.4 L1098.498,374.1c192.72-186.977,392.936-307.397,523.575-307.397c35.442,0,63.336,9.526,82.909,28.315 C1725.705,116.604,1735.13,148.214,1733.003,188.981z"}))},play:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1407.629,872.813L693.082,460.273c-9.711-5.604-21.674-5.604-31.385,0 c-9.712,5.609-15.693,15.968-15.693,27.182v631.583c0,17.33,14.051,31.385,31.385,31.385s31.385-14.055,31.385-31.385V541.814 l620.392,358.18l-555.918,320.967c-15.014,8.669-20.154,27.864-11.489,42.874c5.815,10.07,16.363,15.692,27.213,15.692 c5.324,0,10.719-1.357,15.662-4.203l602.995-348.148c9.711-5.609,15.692-15.969,15.692-27.182 C1423.321,888.781,1417.34,878.421,1407.629,872.813z"}),wp.element.createElement(a,{d:"M899.993,5.324c-493.322,0-894.67,401.352-894.67,894.679c0,493.322,401.348,894.674,894.67,894.674 c493.331,0,894.683-401.352,894.683-894.674C1794.676,406.676,1393.324,5.324,899.993,5.324z M899.993,1731.906 c-458.71,0-831.899-373.188-831.899-831.903S441.283,68.095,899.993,68.095c458.719,0,831.912,373.193,831.912,831.908 S1358.712,1731.906,899.993,1731.906z"}))},pointer:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M3.589,44.981l722.935,1734.396c4.938,11.834,16.494,19.473,29.212,19.473c0.534,0,1.064-0.017,1.603-0.044 c13.345-0.671,24.826-9.645,28.703-22.431l230.227-760.125l760.101-230.213c12.784-3.871,21.767-15.354,22.437-28.699 c0.672-13.342-7.101-25.669-19.434-30.809L44.989,3.585C33.14-1.343,19.496,1.349,10.425,10.421 C1.355,19.491-1.342,33.14,3.589,44.981z M91.616,91.606L1673.59,751.021L981.705,960.576 c-10.126,3.063-18.048,10.994-21.116,21.115l-209.565,691.907L91.616,91.606z"}),wp.element.createElement(a,{d:"M699.044,1270.004c-3.979,1.66-8.108,2.447-12.166,2.447c-12.396,0-24.165-7.33-29.229-19.483 L425.565,696.183c-6.721-16.138,0.905-34.669,17.041-41.397c16.14-6.723,34.669,0.905,41.395,17.039l232.085,556.785 C722.806,1244.746,715.18,1263.283,699.044,1270.004z"}))},power:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M899.996,6.911C405.643,6.911,3.458,409.103,3.458,903.462C3.458,1397.811,405.643,1800,899.996,1800 c494.357,0,896.546-402.189,896.546-896.538C1796.542,409.103,1394.353,6.911,899.996,6.911z M899.996,1737.1 c-459.667,0-833.637-373.97-833.637-833.638c0-459.679,373.969-833.649,833.637-833.649c459.672,0,833.644,373.971,833.644,833.649 C1733.64,1363.13,1359.668,1737.1,899.996,1737.1z"}),wp.element.createElement(a,{d:"M1073.088,393.764v66.982c176.77,69.347,302.257,241.646,302.257,442.716 c0,262.101-213.239,475.332-475.349,475.332c-262.101,0-475.336-213.231-475.336-475.332 c0-201.075,125.491-373.374,302.261-442.725v-66.973c-212.139,72.23-365.162,273.421-365.162,509.698 c0,296.781,241.452,538.234,538.238,538.234c296.79,0,538.251-241.453,538.251-538.234 C1438.247,667.194,1285.223,466.002,1073.088,393.764z"}),wp.element.createElement(a,{d:"M900.004,880.287c17.371,0,31.45-14.084,31.45-31.451V286.086c0-17.371-14.079-31.451-31.45-31.451 c-17.37,0-31.45,14.08-31.45,31.451v562.749C868.554,866.202,882.634,880.287,900.004,880.287z"}))},presentation:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1766.471,171.322c17.431,0,31.56-14.128,31.56-31.559V31.56c0-17.431-14.129-31.56-31.56-31.56H33.529 C16.099,0,1.97,14.128,1.97,31.56v108.203c0,17.431,14.129,31.559,31.56,31.559h109.048v924.236H33.529 c-17.431,0-31.56,14.128-31.56,31.559v108.204c0,17.431,14.129,31.559,31.56,31.559h786.238l-497.67,478.822 c-12.561,12.081-12.944,32.062-0.858,44.622c6.195,6.438,14.463,9.678,22.745,9.678c7.872,0,15.758-2.928,21.878-8.819 l472.548-454.654v431.914c0,17.431,14.129,31.56,31.56,31.56s31.559-14.129,31.559-31.56v-431.914l472.549,454.654 c6.124,5.892,14.005,8.819,21.877,8.819c8.281,0,16.551-3.24,22.745-9.678c12.085-12.561,11.702-32.541-0.858-44.622 l-497.671-478.822h846.302c17.431,0,31.56-14.128,31.56-31.559v-108.204c0-17.431-14.129-31.559-31.56-31.559h-109.049V171.322 H1766.471z M65.088,63.118h1669.824v45.085h-109.049H174.137H65.088V63.118z M1734.912,1203.761H65.088v-45.085h109.049h1451.727 h109.049V1203.761z M1594.304,1095.558H205.696V171.322h1388.607V1095.558z"}),wp.element.createElement(a,{d:"M502.242,852.752c8.075,0,16.154-3.082,22.313-9.242l171.52-171.511l197.717,197.717 c6.164,6.159,14.243,9.241,22.317,9.241c8.075,0,16.154-3.082,22.318-9.241l269.904-269.905l0.005,181.012 c0,17.431,14.128,31.56,31.56,31.56c17.43,0,31.559-14.129,31.559-31.56l-0.009-260.289c0-8.73-3.544-16.634-9.276-22.344 c-5.711-5.728-13.613-9.277-22.344-9.277l-260.285-0.009c-17.426,0-31.56,14.129-31.56,31.56s14.129,31.559,31.56,31.559 l187.299,0.009l-250.73,250.731L718.394,605.046c-12.328-12.319-32.308-12.319-44.636,0c-0.014,0.013-0.026,0.031-0.04,0.044 L479.929,798.875c-12.328,12.328-12.328,32.308-0.004,44.631C486.088,849.67,494.163,852.752,502.242,852.752z"}))},price:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M980.141,1426.945H799.02v-118.506c-69.393-6.158-141.632-26.024-190.641-53.104l-20.991-11.607 l52.338-204.102l35.001,19.166c33.877,18.551,103.21,49.678,186.896,49.678c43.264,0,86.914-13.717,86.914-44.368 c0-20.55-13.207-44.022-108.99-76.386C727.884,950.146,599.67,887.562,599.67,735.901c0-118.03,78.008-208.647,205.43-241.258 V373.055h181.121v108.638c76.854,6.214,127.293,26.167,159.665,41.397l23.395,11.01l-52.706,198.537l-34.932-16.757 c-30.332-14.56-81.1-38.932-160.461-38.932c-27.462,0-73.538,4.973-73.538,38.288c0,25.207,67.061,52.896,125.491,74.206 c156.457,54.756,223.372,131.853,223.372,257.641c0,62.643-21.977,119.475-63.568,164.353 c-37.588,40.571-90.052,69.527-152.798,84.567V1426.945z M861.015,1364.95h57.132v-120.313l25.729-4.437 c117.589-20.272,190.636-94.271,190.636-193.118c0-81.316-30.988-146.326-182.237-199.261 c-91.338-33.311-166.625-66.172-166.625-132.585c0-48.481,35.607-100.283,135.533-100.283 c68.248,0,119.197,15.615,154.484,30.171l20.221-76.148c-31.758-12.463-77.164-25.047-141.589-26.967l-30.071-0.899v-106.06 h-57.132v110.22L841.792,550c-112.789,21.082-180.128,90.579-180.128,185.901c0,88.71,59.123,146.45,197.689,193.064 c78.537,26.534,151.178,61.268,151.178,135.137c0,64.615-58.448,106.362-148.908,106.362 c-73.782,0-137.615-20.566-181.23-39.836l-20.731,80.85c39.862,17.4,101.68,34.715,171.28,36.791l30.072,0.9V1364.95z"}),wp.element.createElement(a,{d:"M1394.443,1646.797l13.552-28.16c-5.872,4.203-11.797,8.346-17.772,12.41L1394.443,1646.797z"}),wp.element.createElement(a,{d:"M894.438,1721.617c-453.04,0-821.616-368.576-821.616-821.614c0-453.044,368.576-821.62,821.616-821.62 c453.043,0,821.627,368.576,821.627,821.62c0,144.397-37.492,280.184-103.18,398.222l61.597,16.502 c66.06-123.746,103.577-264.929,103.577-414.724c0-487.224-396.391-883.615-883.621-883.615 c-487.224,0-883.61,396.391-883.61,883.615c0,487.227,396.386,883.608,883.61,883.608 c154.789,0,300.383-40.053,427.035-110.271l-16.563-61.813C1184.061,1681.513,1043.848,1721.617,894.438,1721.617z"}),wp.element.createElement(a,{d:"M1661.595,1783.611c-7.931,0-15.862-3.027-21.916-9.072l-150.333-150.333l-48.355,100.489 c-5.621,11.686-17.973,18.647-30.824,17.428c-12.904-1.211-23.697-10.326-27.053-22.842l-111.181-414.95 c-2.862-10.698,0.199-22.114,8.026-29.942c7.836-7.836,19.243-10.889,29.941-8.025l414.943,111.188 c12.514,3.355,21.63,14.149,22.841,27.054c1.202,12.903-5.743,25.202-17.427,30.824l-100.49,48.363l150.332,150.324 c5.813,5.813,9.073,13.699,9.073,21.916c0,8.225-3.261,16.104-9.073,21.925l-96.58,96.581 C1677.465,1780.584,1669.525,1783.611,1661.595,1783.611z M1480.368,1540.391c8.147,0,16.052,3.217,21.916,9.081 l159.311,159.311l52.749-52.749l-159.311-159.302c-7.101-7.108-10.326-17.211-8.641-27.122 c1.688-9.903,8.061-18.37,17.116-22.729l64.563-31.076l-282.357-75.659l75.651,282.356l31.066-64.555 c4.358-9.055,12.835-15.43,22.737-17.115C1476.9,1540.537,1478.639,1540.391,1480.368,1540.391z"}),wp.element.createElement(a,{d:"M1140.299,292.544c111.231,0,327.736,121.636,327.736,344.61c0,17.12,13.873,30.997,30.997,30.997 c17.116,0,30.997-13.877,30.997-30.997c0-116.063-51.296-223.666-144.435-302.993c-73.896-62.941-170.182-103.612-245.296-103.612 c-17.116,0-30.998,13.877-30.998,30.998S1123.183,292.544,1140.299,292.544z"}))},puzzle:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1794.799,86.801c0-45.832-38.102-83.119-84.936-83.119H901.35h-3.8H93.755 c-45.832,0-83.119,38.102-83.119,84.94v812.311c0,1.243,0.092,2.47,0.231,3.678c-0.14,1.208-0.231,2.424-0.231,3.677v807.594 c0,45.832,38.101,83.119,84.936,83.119h808.513h3.8h803.795c45.831,0,83.119-38.102,83.119-84.94V901.747 c0-1.243-0.093-2.469-0.232-3.677c0.14-1.208,0.232-2.428,0.232-3.675V86.801z M1732.043,86.801v776.217h-243.219 c33.027-37.121,52.45-85.802,52.45-137.973c0-41.45-12.262-80.067-33.282-112.504c-36.425-59.971-102.365-100.121-177.514-100.121 c-114.426,0-207.517,93.091-207.517,207.517c0.005,41.893,12.554,81.503,34.587,114.715c6.236,10.024,13.272,19.537,21.129,28.366 H932.727V524.099c0-10.37-5.047-19.532-12.799-25.249c-5.691-5.796-13.609-9.398-22.378-9.398h-9.739 c-13.483,0-25.455,8.61-29.745,21.393c-19.808,59.008-74.951,98.65-137.22,98.65c-23.59,0-45.862-5.708-65.561-15.764 c-43.652-24.956-73.156-71.948-73.156-125.733c0-79.827,64.939-144.771,144.763-144.771c22.955,0,44.921,5.427,64.527,15.189 c30.695,17.146,54.906,45.228,66.646,80.208c2.933,8.746,9.508,15.457,17.659,18.871c5.182,3.673,11.468,5.787,18.131,5.787h7.494 c17.33,0,31.377-14.042,31.377-31.377V66.437h777.137C1722.093,66.437,1732.043,75.573,1732.043,86.801z M73.392,88.622 c0-12.23,9.136-22.185,20.364-22.185h772.417v247.737c-13.447-12.178-28.418-22.575-44.58-30.861 c-30.126-16.726-64.584-26.107-100.747-26.107c-114.426,0-207.517,93.095-207.517,207.525c0,80.024,45.557,149.56,112.072,184.172 c30.029,16.915,64.641,26.61,101.491,26.61c52.805,0,101.994-19.926,139.281-53.694v247.732h-338.39 c-17.33,0-31.377,14.048-31.377,31.38v9.735c0,7.117,2.447,13.771,6.588,19.139c3.633,7.257,10.016,13.019,18.07,15.715 c31.597,10.61,57.555,31.412,74.938,57.948c13.067,21.914,20.447,47.364,20.447,74.163c0,79.827-64.939,144.762-144.762,144.762 c-50.271,0-94.618-25.766-120.581-64.769c-13.273-21.861-20.92-47.495-20.92-74.881c-0.004-62.264,39.646-117.412,98.659-137.224 c12.782-4.29,21.392-16.258,21.392-29.74v-7.494c0-5.953-1.685-11.489-4.557-16.229c-3.83-13.005-15.842-22.505-30.086-22.505 H73.392V88.622z M73.392,1715.881V939.665h243.219c-33.028,37.12-52.45,85.797-52.45,137.968c0,41.454,12.266,80.072,33.286,112.51 c36.42,59.97,102.362,100.119,177.51,100.119c114.426,0,207.517-93.09,207.517-207.517c-0.005-41.892-12.56-81.508-34.587-114.724 c-6.238-10.024-13.272-19.532-21.125-28.356h245.946v338.919c0,10.374,5.051,19.54,12.804,25.248 c5.69,5.796,13.609,9.395,22.373,9.395h9.74c13.482,0,25.455-8.606,29.744-21.388c19.809-59.008,74.951-98.65,137.22-98.65 c23.577,0,45.836,5.699,65.53,15.741c43.67,24.951,73.187,71.956,73.187,125.756c0,79.817-64.938,144.762-144.762,144.762 c-22.96,0-44.931-5.42-64.536-15.19c-30.69-17.142-54.894-45.228-66.639-80.203c-2.938-8.746-9.512-15.461-17.671-18.876 c-5.18-3.668-11.461-5.778-18.118-5.778h-7.495c-17.33,0-31.377,14.044-31.377,31.378v345.468H95.572 C83.341,1736.245,73.392,1727.104,73.392,1715.881z M1732.043,1714.06c0,12.231-9.135,22.186-20.363,22.186H939.263v-247.737 c13.443,12.17,28.414,22.57,44.571,30.852c30.125,16.731,64.589,26.117,100.755,26.117c114.427,0,207.518-93.1,207.518-207.526 c0-80.037-45.569-149.586-112.098-184.185c-30.024-16.906-64.624-26.598-101.465-26.598c-52.805,0-101.999,19.926-139.281,53.693 V933.124h338.39c17.33,0,31.377-14.043,31.377-31.377v-9.738c0-7.113-2.447-13.767-6.593-19.133 c-3.628-7.258-10.015-13.019-18.065-15.72c-31.597-10.607-57.559-31.408-74.938-57.949c-13.066-21.909-20.446-47.364-20.446-74.163 c0-79.823,64.938-144.762,144.762-144.762c50.266,0,94.618,25.761,120.581,64.764c13.268,21.861,20.919,47.5,20.919,74.889 c0.005,62.265-39.646,117.408-98.658,137.22c-12.782,4.29-21.393,16.262-21.393,29.745v7.494c0,5.952,1.686,11.484,4.557,16.23 c3.83,13,15.838,22.499,30.087,22.499h342.201V1714.06z"}))},refresh:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M147.558,1234.803c-42.809-95.198-67.328-198.696-71.438-306.137 c-8.405-219.555,69.194-429.247,218.505-590.444C443.93,177.034,647.075,83.629,866.635,75.225 c211.431-8.08,413.71,63.609,572.343,202.278l-197.662,7.562c-17.369,0.667-30.911,15.281-30.248,32.652 c0.649,16.967,14.604,30.272,31.43,30.272c0.41,0,0.817,0,1.226-0.018l272.117-10.417c0.328,0.018,0.65,0.053,0.982,0.053 c0.408,0,0.817-0.009,1.227-0.026c17.37-0.659,30.911-15.281,30.25-32.653l-10.448-273.207 c-0.664-17.372-15.474-30.875-32.655-30.25c-17.371,0.666-30.914,15.286-30.25,32.657l7.561,197.786 C1311.412,81.416,1092.766,3.566,864.228,12.322C627.864,21.37,409.175,121.919,248.439,295.444 C87.704,468.98,4.167,694.718,13.213,931.072c4.426,115.696,30.878,227.107,76.989,329.604c0.922,3.539,2.406,6.85,4.399,9.802 c0.009,0.016,0.018,0.034,0.027,0.052l0.008-0.009c5.748,8.44,15.431,13.99,26.408,13.99c17.631,0,31.911-14.289,31.911-31.914 c0-6.587-1.999-12.7-5.416-17.784L147.558,1234.803z"}),wp.element.createElement(a,{d:"M1709.859,539.519c-0.75-2.45-1.817-4.76-3.104-6.921c-0.113-0.245-0.22-0.491-0.334-0.737l-0.083,0.053 c-5.651-8.958-15.605-14.93-26.982-14.93c-17.619,0-31.92,14.288-31.92,31.914c0,7.008,2.289,13.472,6.121,18.733 c129.647,291.647,82.579,645.552-147.685,894.139c-149.311,161.198-352.457,254.597-572.01,263.001 c-211.414,8.079-413.702-63.61-572.335-202.271l197.656-7.572c17.372-0.667,30.914-15.279,30.25-32.65 c-0.668-17.372-15.352-30.817-32.656-30.256l-272.366,10.426c-0.654-0.019-1.304-0.054-1.967-0.036 c-17.371,0.668-30.913,15.289-30.25,32.661l10.459,273.204c0.65,16.967,14.604,30.272,31.432,30.272 c0.408,0,0.816-0.009,1.225-0.018c17.371-0.667,30.913-15.289,30.25-32.66l-7.574-197.802 c162.422,142.869,367.644,220.274,583.58,220.274c11.531,0,23.119-0.228,34.702-0.667 c236.359-9.046,455.05-109.594,615.789-283.128C1800.597,1236.227,1850.813,853.956,1709.859,539.519z"}))},repair:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M803.722,820.892l-247.878-247.87l71.705-71.702l247.875,247.871l40.808-40.802L655.949,448.104 l74.925-74.921c0.596-0.596,1.147-1.216,1.682-1.86c0.592-0.499,1.175-1.006,1.735-1.562l135.512-135.512 c11.126-11.12,11.292-29.106,0.366-40.43l-1.538-1.606c-1.284-1.349-2.572-2.693-3.893-4.018 C796.995,120.454,709.056,80.01,629.497,80.01c-53.655,0-99.814,17.796-133.483,51.468c-0.733,0.73-1.409,1.503-2.053,2.3 c-0.443,0.388-0.89,0.765-1.309,1.183L185.294,442.324c-11.267,11.271-11.267,29.539,0,40.81l45.403,45.399l-37.493,37.493 l-45.403-45.408c-5.414-5.41-12.752-8.453-20.405-8.453c-7.652,0-14.99,3.043-20.404,8.453L12.869,614.75 c-11.268,11.271-11.268,29.538,0,40.802l197.415,197.416c5.414,5.41,12.752,8.454,20.404,8.454c7.653,0,14.995-3.043,20.405-8.454 l94.115-94.13c11.268-11.264,11.268-29.531,0-40.802l-45.395-45.399l37.493-37.493l45.395,45.399 c5.636,5.636,13.019,8.446,20.405,8.446c7.383,0,14.77-2.818,20.401-8.446l79.124-79.124l260.285,260.285L803.722,820.892z M629.497,137.719c58.812,0,124.33,28.287,178.733,76.497l-94.34,94.334L559.981,154.64 C579.485,143.503,603.046,137.719,629.497,137.719z M230.688,791.756L74.079,635.15l53.317-53.321l156.602,156.605 L230.688,791.756z M261.089,629.749l-24.999-24.999l35.408-35.408l24.998,24.998L261.089,629.749z M403.106,619.331 L246.505,462.725L513.058,196.17l156.609,156.612L403.106,619.331z"}),wp.element.createElement(a,{d:"M1763.996,1556.146l-593.695-593.688l-40.803,40.801l573.296,573.296l-71.701,71.709l-573.303-573.303 l-40.803,40.81l593.704,593.705c5.41,5.408,12.752,8.452,20.401,8.452c7.657,0,14.999-3.044,20.409-8.452l112.502-112.521 C1775.268,1585.686,1775.268,1567.418,1763.996,1556.146z"}),wp.element.createElement(a,{d:"M1780.444,264.271c-3.269-9.372-11.135-16.4-20.812-18.614c-9.67-2.206-19.806,0.708-26.825,7.729 l-116.585,116.576l-109.307-109.315l116.585-116.57c7.02-7.021,9.942-17.156,7.729-26.833c-2.214-9.679-9.243-17.541-18.614-20.814 c-29.071-10.149-59.48-15.298-90.379-15.298c-73.062,0-141.743,28.449-193.397,80.104c-51.671,51.66-80.123,120.344-80.123,193.406 c0,35.343,6.723,69.648,19.442,101.514l-736.242,736.236c-31.861-12.721-66.158-19.435-101.497-19.435 c-73.058,0-141.744,28.452-193.407,80.115c-73.802,73.801-99.243,185.193-64.809,283.775c3.272,9.372,11.134,16.4,20.812,18.614 c9.673,2.206,19.809-0.7,26.833-7.72l116.581-116.586l109.315,109.299l-116.585,116.586c-7.021,7.02-9.938,17.155-7.729,26.833 c2.214,9.677,9.242,17.534,18.613,20.812c29.064,10.152,59.468,15.296,90.372,15.304c0.008,0,0.008,0,0.016,0 c73.042,0,141.728-28.46,193.39-80.122c79.559-79.566,99.726-196.352,60.563-294.822l736.347-736.333 c31.865,12.728,66.162,19.443,101.506,19.443c0.008,0,0,0,0.008,0c73.046,0,141.736-28.444,193.391-80.106 C1789.438,474.246,1814.878,362.854,1780.444,264.271z M583.011,1599.065c-40.762,40.763-94.948,63.216-152.58,63.216 c0,0-0.012,0-0.016,0c-7.915-0.008-15.792-0.436-23.602-1.28l100.137-100.138c5.414-5.417,8.454-12.752,8.454-20.408 c0-7.648-3.04-14.99-8.454-20.4L356.83,1369.946c-11.263-11.264-29.535-11.264-40.806,0l-100.072,100.072 c-6.835-64.134,15.333-129.603,61.871-176.146c40.762-40.762,94.952-63.207,152.597-63.207c57.64,0,111.83,22.445,152.588,63.215 C667.146,1378.013,667.146,1514.926,583.011,1599.065z M659.282,1288.535l-70.945-70.951l702.501-702.488l70.953,70.944 L659.282,1288.535z M1674.832,507.246c-40.761,40.753-94.951,63.199-152.596,63.199S1410.394,548,1369.632,507.238 c-40.753-40.762-63.207-94.953-63.207-152.597s22.454-111.834,63.216-152.598c40.753-40.758,94.951-63.204,152.596-63.204 c7.922,0,15.796,0.429,23.605,1.28l-100.137,100.127c-5.411,5.41-8.453,12.752-8.453,20.4c0,7.657,3.042,14.991,8.453,20.401 l150.108,150.117c11.271,11.271,29.547,11.271,40.81,0.008l100.072-100.073C1743.531,395.234,1721.367,460.704,1674.832,507.246z"}))},responsive:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1748.663,978.006h-39.578h-49.802H1448.09c-23.352,0-42.35,18.998-42.35,42.354v40.533v49.801v193.7 v49.801v212.886c0,23.355,18.998,42.354,42.35,42.354h300.573c23.354,0,42.354-18.998,42.354-42.354v-546.721 C1791.017,997.004,1772.018,978.006,1748.663,978.006z M1741.215,1559.633h-285.674v-205.438v-49.801v-193.7v-49.801v-33.086 h203.742h49.802h32.13V1559.633z"}),wp.element.createElement(a,{d:"M1598.133,1479.07c-13.263,0-24.011,10.755-24.011,24.011c0,13.267,10.748,24.012,24.011,24.012 c13.257,0,24.012-10.745,24.012-24.012C1622.145,1489.825,1611.39,1479.07,1598.133,1479.07z"}),wp.element.createElement(a,{d:"M1639.063,1060.893c-1.765-0.963-3.763-1.561-5.916-1.561H1563.6c-2.154,0-4.151,0.598-5.916,1.561 c-3.873,2.111-6.534,6.17-6.534,10.891c0,6.875,5.575,12.45,12.45,12.45h69.547c6.875,0,12.45-5.575,12.45-12.45 C1645.597,1067.063,1642.936,1063.004,1639.063,1060.893z"}),wp.element.createElement(a,{d:"M58.785,261.847c0-11.842,8.07-21.479,17.991-21.479h1540.741c9.925,0,17.998,9.636,17.998,21.479v674.657 h8.007h41.794V261.847c0-39.303-30.413-71.28-67.799-71.28H76.776c-37.382,0-67.792,31.977-67.792,71.28v1021.067 c0,39.304,30.41,71.28,67.792,71.28h614.065v205.285H453.896c-13.753,0-24.901,11.147-24.901,24.9s11.148,24.901,24.901,24.901 h261.846h262.823h261.847c13.752,0,24.9-11.148,24.9-24.901s-11.148-24.9-24.9-24.9h-236.946v-205.285h353.185v-48.397v-1.403 H76.776c-9.921,0-17.991-9.634-17.991-21.479v-172.221H1356.65v-24.06v-25.741H58.785V261.847z M953.664,1559.479H740.644 v-205.285h213.021V1559.479z"}),wp.element.createElement(a,{d:"M808.262,1205.613c0,21.476,17.415,38.887,38.886,38.887c21.472,0,38.894-17.411,38.894-38.887 c0-21.475-17.421-38.89-38.894-38.89C825.677,1166.724,808.262,1184.139,808.262,1205.613z"}),wp.element.createElement(a,{d:"M273.199,457.516h625.589c13.753,0,24.9-11.148,24.9-24.901s-11.147-24.9-24.9-24.9H273.199 c-13.753,0-24.9,11.147-24.9,24.9S259.446,457.516,273.199,457.516z"}),wp.element.createElement(a,{d:"M1421.102,556.41H273.199c-13.753,0-24.9,11.147-24.9,24.9c0,13.753,11.147,24.901,24.9,24.901h1147.902 c13.753,0,24.9-11.147,24.9-24.901C1446.002,567.558,1434.854,556.41,1421.102,556.41z"}),wp.element.createElement(a,{d:"M1421.102,705.102H273.199c-13.753,0-24.9,11.148-24.9,24.901s11.147,24.9,24.9,24.9h1147.902 c13.753,0,24.9-11.147,24.9-24.9S1434.854,705.102,1421.102,705.102z"}),wp.element.createElement(a,{d:"M1421.102,853.798H273.199c-13.753,0-24.9,11.147-24.9,24.9s11.147,24.901,24.9,24.901h1147.902 c13.753,0,24.9-11.148,24.9-24.901S1434.854,853.798,1421.102,853.798z"}))},science:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M890.431,974.791c69.867,0,126.714-56.838,126.714-126.704c0-69.867-56.847-126.705-126.714-126.705 c-69.867,0-126.7,56.838-126.7,126.705C763.73,917.953,820.564,974.791,890.431,974.791z M890.431,782.932 c35.933,0,65.163,29.226,65.163,65.155c0,35.928-29.23,65.159-65.163,65.159c-35.928,0-65.154-29.231-65.154-65.159 C825.276,812.158,854.503,782.932,890.431,782.932z"}),wp.element.createElement(a,{d:"M1393.528,849.313c107.104-90.789,190.083-183.293,228.049-264.898c-9.547,1.934-19.43,2.959-29.544,2.959 c-13.436,0-26.451-1.824-38.848-5.184c-20.757,36.129-52.147,77.005-93.216,120.522c-33.35,35.331-71.835,71.25-114.557,107.113 c-53.068-42.077-111.368-83.756-173.604-124.039c-4.372-67.951-11.445-134.917-21.162-198.771 c112.563-39.035,214.152-61.298,293.431-62.93c2.182-22.314,9.32-43.18,20.294-61.515c-3.63-0.083-7.229-0.192-10.965-0.192 c-84.31,0-192.959,22.611-313.084,63.409C1095.904,186.437,1011.979,4.434,892.464,4.434 c-119.523,0-203.453,182.002-247.859,421.353c-120.133-40.798-228.778-63.409-313.088-63.409c-0.375,0-0.724,0.018-1.1,0.018 c11.079,18.457,18.265,39.497,20.425,61.986c77.738,3.207,175.549,25.221,283.43,62.633 c-9.717,63.854-16.791,130.823-21.167,198.779c-62.231,40.283-120.526,81.954-173.594,124.03 c-42.723-35.859-81.208-71.783-114.557-107.113c-40.27-42.661-71.242-82.8-92.002-118.405c-9.727,2.007-19.793,3.067-30.104,3.067 c-14.146,0-27.821-2.034-40.789-5.738c37.355,82.281,121.011,175.863,229.337,267.678 c-41.208,35.039-78.546,70.143-111.206,104.753c-122.351,129.632-165.36,236.671-124.393,309.549 c27.241,48.456,86.356,73.026,175.706,73.026c84.314,0,192.959-22.607,313.097-63.414 c24.544,132.286,61.167,247.014,109.194,323.216c9.032-20.979,22.769-39.462,39.855-54.159 c-18.356-33.799-35.767-76.254-51.313-126.133c-15.473-49.611-28.637-104.691-39.362-163.867 c61.358-23.117,125.033-50.542,189.49-81.762c64.452,31.22,128.123,58.645,189.481,81.757 c-10.729,59.177-23.894,114.261-39.362,163.872c-15.909,51.043-33.772,94.35-52.609,128.533 c16.847,15.207,30.182,34.227,38.69,55.668c49.245-76.158,86.688-192.578,111.659-327.129 c120.13,40.811,228.783,63.418,313.102,63.418c89.336,0,148.461-24.574,175.697-73.031 c40.972-72.873-2.038-179.912-124.388-309.544C1472.069,919.455,1434.731,884.351,1393.528,849.313z M1296.368,849.505 c-37.753,29.492-78.184,58.771-120.802,87.491c1-29.188,1.519-58.396,1.519-87.482c0-29.096-0.519-58.313-1.519-87.5 C1218.185,790.729,1258.615,820.013,1296.368,849.505z M669.376,849.514c0-43.538,1.091-86.514,3.186-128.655 c35.701-22.472,72.638-44.477,110.582-65.809c36.478-20.508,73.009-39.851,109.321-58.016 c36.308,18.165,72.838,37.508,109.312,58.016c37.953,21.329,74.881,43.337,110.582,65.805c2.099,42.137,3.181,85.117,3.181,128.66 c0,43.529-1.082,86.504-3.181,128.638c-35.706,22.472-72.638,44.48-110.591,65.817c-36.474,20.5-73,39.848-109.303,58.008 c-36.308-18.16-72.843-37.508-109.312-58.012c-37.953-21.338-74.885-43.346-110.591-65.818 C670.467,936.018,669.376,893.043,669.376,849.514z M1107.445,645.493c-24.697-14.966-49.878-29.688-75.514-44.097 c-23.257-13.072-46.558-25.683-69.832-37.853c44.146-20.364,87.635-38.786,129.942-55.07 C1098.47,552.443,1103.618,598.281,1107.445,645.493z M742.337,282.868C784.679,147.061,840.793,65.98,892.464,65.98 c51.663,0,107.781,81.081,150.119,216.888c15.469,49.617,28.633,104.696,39.358,163.864 c-61.354,23.113-125.029,50.537-189.477,81.762c-64.457-31.225-128.127-58.649-189.49-81.762 C713.708,387.563,726.864,332.484,742.337,282.868z M692.873,508.469c42.308,16.284,85.802,34.711,129.947,55.075 c-23.274,12.17-46.571,24.78-69.828,37.853c-25.635,14.408-50.825,29.13-75.522,44.097 C681.301,598.281,686.45,552.443,692.873,508.469z M609.357,762.019c-1.004,29.187-1.527,58.399-1.527,87.495 c0,29.086,0.523,58.295,1.523,87.478c-42.618-28.716-83.04-57.999-120.796-87.482C526.313,820.017,566.735,790.734,609.357,762.019 z M331.504,1275.095c-63.618,0-106.965-14.792-122.062-41.64c-25.312-45.035,17.864-133.687,115.508-237.147 c33.415-35.418,72.005-71.416,114.841-107.362c53.796,42.586,112.301,84.358,173.302,123.996 c4.372,68.047,11.445,135.112,21.18,199.063C517.268,1252.575,412.053,1275.095,331.504,1275.095z M692.873,1190.541 c-6.427-44.002-11.581-89.874-15.412-137.125c24.955,15.172,50.17,29.941,75.535,44.197c23.252,13.072,46.553,25.683,69.832,37.852 C778.68,1155.83,735.181,1174.261,692.873,1190.541z M962.1,1135.465c23.274-12.169,46.575-24.779,69.823-37.844 c25.36-14.26,50.577-29.029,75.535-44.201c-3.831,47.247-8.979,93.119-15.416,137.116 C1049.734,1174.261,1006.245,1155.83,962.1,1135.465z M1575.478,1233.455c-15.097,26.848-58.443,41.64-122.053,41.64 c-80.558,0-185.769-22.52-302.777-63.091c9.73-63.95,16.813-131.012,21.18-199.063c61.001-39.634,119.51-81.404,173.311-123.996 c42.827,35.946,81.417,71.944,114.841,107.362C1557.614,1099.769,1600.795,1188.42,1575.478,1233.455z"}),wp.element.createElement(a,{d:"M323.685,429.749c0-70.146-57.069-127.211-127.215-127.211c-70.142,0-127.207,57.064-127.207,127.211 c0,70.142,57.065,127.211,127.207,127.211C266.616,556.96,323.685,499.891,323.685,429.749z M131.817,429.749 c0-35.649,29.003-64.657,64.653-64.657c35.653,0,64.661,29.008,64.661,64.657c0,35.649-29.008,64.657-64.661,64.657 C160.82,494.406,131.817,465.398,131.817,429.749z"}),wp.element.createElement(a,{d:"M1603.526,302.538c-70.146,0-127.211,57.064-127.211,127.211c0,70.142,57.064,127.211,127.211,127.211 c70.146,0,127.211-57.069,127.211-127.211C1730.737,359.603,1673.672,302.538,1603.526,302.538z M1603.526,494.406 c-35.653,0-64.657-29.008-64.657-64.657c0-35.649,29.004-64.657,64.657-64.657s64.656,29.008,64.656,64.657 C1668.183,465.398,1639.18,494.406,1603.526,494.406z"}),wp.element.createElement(a,{d:"M892.983,1541.145c-70.142,0-127.206,57.064-127.206,127.211s57.064,127.211,127.206,127.211 c70.15,0,127.22-57.064,127.22-127.211S963.134,1541.145,892.983,1541.145z M892.983,1733.013 c-35.649,0-64.652-29.003-64.652-64.657c0-35.652,29.003-64.656,64.652-64.656c35.658,0,64.666,29.004,64.666,64.656 C957.649,1704.01,928.642,1733.013,892.983,1733.013z"}))},search:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1715.514,1630.048l-368.416-368.402c-17.967-17.977-41.866-27.874-67.281-27.874 c-13.782,0-27.071,3.003-39.257,8.527l-94.596-94.594c133.584-119.751,217.789-293.534,217.789-486.634 c0-360.375-293.193-653.561-653.572-653.561c-360.38,0-653.568,293.186-653.568,653.561c0,360.382,293.188,653.57,653.568,653.57 c146.069,0,281.087-48.174,390.033-129.453l96.854,96.862c-8.041,14.144-12.399,30.159-12.399,46.869 c0,25.42,9.897,49.314,27.868,67.283l368.407,368.423c17.972,17.968,41.862,27.865,67.283,27.865 c25.42,0,49.318-9.902,67.29-27.874c17.972-17.971,27.869-41.867,27.869-67.287 C1743.387,1671.914,1733.489,1648.02,1715.514,1630.048z M118.546,661.071c0-326.224,265.405-591.627,591.634-591.627 c326.229,0,591.638,265.403,591.638,591.627c0,326.231-265.408,591.636-591.638,591.636 C383.952,1252.707,118.546,987.302,118.546,661.071z M1671.72,1720.823c-6.272,6.277-14.62,9.733-23.492,9.733 c-8.879,0-17.222-3.456-23.489-9.726l-368.407-368.424c-6.272-6.272-9.728-14.614-9.728-23.488c0-8.873,3.455-17.215,9.732-23.488 c6.269-6.273,14.605-9.726,23.48-9.726c8.869,0,17.211,3.452,23.488,9.733l368.415,368.406c6.276,6.273,9.733,14.615,9.733,23.484 C1681.453,1706.203,1677.996,1714.547,1671.72,1720.823z"}),wp.element.createElement(a,{d:"M733.941,187.121c145.201,0,427.813,158.624,427.813,449.396c0,17.104,13.863,30.967,30.968,30.967 c17.104,0,30.968-13.863,30.968-30.967c0-145.848-64.515-281.118-181.66-380.892c-93.039-79.241-213.969-130.439-308.088-130.439 c-17.104,0-30.967,13.864-30.967,30.967C702.974,173.257,716.838,187.121,733.941,187.121z"}))},security:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1096.233,698.227c0-108.2-88.028-196.229-196.229-196.229c-108.205,0-196.234,88.029-196.234,196.229 v74.779H571.518v226.107c1.825,179.273,149.183,325.127,328.487,325.127s326.658-145.854,328.478-325.445V773.006h-132.249V698.227 z M1165.753,835.734v162.74c-1.47,145.039-120.684,263.037-265.749,263.037s-264.283-117.998-265.758-262.717V835.734H1165.753z M766.5,773.006v-74.779c0-73.611,59.889-133.5,133.504-133.5c73.611,0,133.5,59.889,133.5,133.5v74.779H766.5z"}),wp.element.createElement(a,{d:"M1668.854,759.284c-58.126-318.375-309.768-570.017-628.138-628.141 C1031.553,61.639,971.966,7.808,900,7.808S768.442,61.642,759.28,131.146C440.91,189.271,189.268,440.914,131.146,759.284 c-69.507,9.162-123.34,68.754-123.34,140.72c0,71.968,53.833,131.551,123.34,140.713 c58.121,318.371,309.763,570.008,628.134,628.135c9.162,69.502,68.754,123.34,140.72,123.34s131.553-53.834,140.716-123.34 c318.37-58.122,570.017-309.764,628.138-628.13c69.507-9.163,123.34-68.75,123.34-140.718 C1792.193,828.038,1738.36,768.446,1668.854,759.284z M900,70.537c33.898,0,62.808,21.432,74.109,51.424 c3.27,8.672,5.142,18.025,5.142,27.827c0,12.525-3.001,24.335-8.195,34.876c-12.93,26.241-39.88,44.382-71.056,44.382 c-31.181,0-58.13-18.141-71.06-44.382c-5.198-10.541-8.196-22.351-8.196-34.876c0-9.801,1.873-19.154,5.142-27.827 C837.188,91.969,866.098,70.537,900,70.537z M121.962,974.115c-29.995-11.306-51.427-40.211-51.427-74.111 c0-33.902,21.432-62.812,51.427-74.114c8.672-3.269,18.027-5.142,27.829-5.142c12.523,0,24.333,2.998,34.874,8.196 c26.236,12.93,44.377,39.879,44.377,71.06c0,31.179-18.141,58.123-44.377,71.058c-10.541,5.19-22.351,8.191-34.874,8.191 C139.989,979.253,130.634,977.381,121.962,974.115z M900,1729.462c-33.902,0-62.812-21.432-74.114-51.427 c-3.269-8.672-5.142-18.027-5.142-27.828c0-12.523,2.998-24.334,8.196-34.875c12.93-26.24,39.879-44.377,71.06-44.377 c31.176,0,58.126,18.137,71.056,44.377c5.194,10.541,8.195,22.352,8.195,34.875c0,9.801-1.872,19.156-5.142,27.828 C962.808,1708.03,933.898,1729.462,900,1729.462z M1034.927,1606.087c-18.605-56.747-72.04-97.86-134.927-97.86 s-116.326,41.113-134.931,97.86c-288.367-54.993-516.166-282.788-571.159-571.159c56.748-18.604,97.861-72.039,97.861-134.924 c0-62.887-41.113-116.326-97.861-134.931c54.993-288.371,282.792-516.17,571.159-571.163 c18.605,56.752,72.044,97.865,134.931,97.865s116.321-41.113,134.927-97.865c288.371,54.993,516.17,282.792,571.163,571.163 c-56.752,18.605-97.865,72.044-97.865,134.931c0,62.885,41.113,116.319,97.865,134.924 C1551.097,1323.299,1323.298,1551.094,1034.927,1606.087z M1678.038,974.115c-8.673,3.266-18.023,5.138-27.824,5.138 c-12.528,0-24.338-3.001-34.879-8.191c-26.24-12.935-44.382-39.879-44.382-71.058c0-31.176,18.142-58.126,44.382-71.06 c10.541-5.198,22.351-8.196,34.879-8.196c9.801,0,19.151,1.873,27.824,5.142c29.995,11.298,51.427,40.212,51.427,74.114 C1729.465,933.904,1708.033,962.818,1678.038,974.115z"}))},securityAlt:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1590.487,1148.496V645.409C1648.671,631.251,1692,578.732,1692,516.255 c0-73.311-59.631-132.951-132.941-132.951c-38.059,0-72.407,16.104-96.673,41.83l-437.927-252.835 c3.481-11.86,5.375-24.388,5.375-37.357C1029.834,61.64,970.203,2,896.895,2c-73.302,0-132.941,59.64-132.941,132.942 c0,12.969,1.903,25.497,5.384,37.357L331.416,425.129c-24.255-25.725-58.609-41.825-96.667-41.825 c-73.311,0-132.95,59.64-132.95,132.951c0,62.472,43.333,114.991,101.512,129.154v503.093 c-58.179,14.161-101.512,66.68-101.512,129.156c0,73.302,59.639,132.942,132.95,132.942c36.406,0,69.431-14.72,93.467-38.51 l441.122,254.681c-3.481,11.86-5.384,24.388-5.384,37.356c0,73.304,59.64,132.942,132.941,132.942 c73.309,0,132.939-59.639,132.939-132.942c0-12.969-1.894-25.496-5.375-37.356l441.128-254.69 c24.036,23.796,57.062,38.52,93.472,38.52c73.311,0,132.941-59.641,132.941-132.942 C1692,1215.178,1648.671,1162.653,1590.487,1148.496z M1489.476,1285.709c-0.299-2.645-0.5-5.323-0.5-8.051 c0-27.333,15.766-51.006,38.645-62.555c9.473-4.78,20.126-7.533,31.438-7.533c11.304,0,21.958,2.753,31.42,7.529 c22.896,11.545,38.664,35.216,38.664,62.559c0,38.646-31.438,70.084-70.084,70.084c-12.742,0-24.659-3.473-34.963-9.439 C1505.347,1327.45,1492.061,1308.205,1489.476,1285.709z M1519.764,458.255c11.216-7.625,24.738-12.093,39.295-12.093 c38.646,0,70.084,31.442,70.084,70.093c0,27.338-15.768,51.006-38.655,62.555c-9.462,4.775-20.116,7.528-31.429,7.528 c-11.304,0-21.959-2.753-31.43-7.533c-22.888-11.545-38.653-35.213-38.653-62.551c0-1.048,0.113-2.066,0.156-3.1 C1490.141,490.351,1502.006,470.331,1519.764,458.255z M826.811,134.942c0-38.646,31.438-70.084,70.083-70.084 c38.645,0,70.082,31.438,70.082,70.084c0,1.368-0.123,2.701-0.201,4.051c-1.308,22.747-13.443,42.614-31.396,54.457 c-11.057,7.296-24.272,11.576-38.485,11.576c-14.206,0-27.421-4.28-38.479-11.576c-17.95-11.843-30.087-31.71-31.394-54.457 C826.942,137.643,826.811,136.31,826.811,134.942z M164.656,516.255c0-38.651,31.442-70.093,70.092-70.093 c14.553,0,28.08,4.463,39.295,12.088c17.758,12.071,29.627,32.096,30.631,54.9c0.048,1.035,0.158,2.056,0.158,3.104 c0,27.342-15.772,51.01-38.664,62.559c-9.466,4.771-20.116,7.524-31.42,7.524c-11.312,0-21.971-2.753-31.438-7.533 C180.422,567.257,164.656,543.589,164.656,516.255z M269.707,1338.311c-10.304,5.965-22.221,9.432-34.958,9.432 c-38.65,0-70.092-31.438-70.092-70.084c0-27.337,15.767-51.006,38.654-62.555c9.467-4.78,20.126-7.533,31.438-7.533 c11.304,0,21.954,2.753,31.42,7.523c22.892,11.551,38.664,35.222,38.664,62.564c0,2.731-0.198,5.41-0.5,8.059 C301.741,1308.215,288.46,1327.46,269.707,1338.311z M966.977,1664.128c0,38.646-31.438,70.084-70.082,70.084 c-38.646,0-70.083-31.438-70.083-70.084c0-1.368,0.131-2.704,0.21-4.051c1.307-22.743,13.444-42.615,31.394-54.462 c11.058-7.295,24.273-11.575,38.479-11.575c14.213,0,27.429,4.28,38.485,11.575c17.952,11.847,30.088,31.719,31.396,54.462 C966.854,1661.424,966.977,1662.76,966.977,1664.128z M992.959,1572.372c-24.22-25.349-58.314-41.19-96.064-41.19 c-37.743,0-71.837,15.842-96.059,41.19l-439.614-253.809c4.183-12.892,6.467-26.633,6.467-40.905 c0-62.48-43.337-115.005-101.521-129.162V645.413c58.185-14.158,101.521-66.681,101.521-129.158c0-12.663-1.819-24.905-5.143-36.52 l438.289-253.042c24.221,25.352,58.315,41.189,96.059,41.189c37.75,0,71.845-15.837,96.064-41.189l438.297,253.046 c-3.314,11.61-5.139,23.853-5.139,36.515c0,62.472,43.337,114.991,101.512,129.154l-0.009,503.093 c-58.174,14.161-101.503,66.68-101.503,129.156c0,14.269,2.289,28.004,6.471,40.897L992.959,1572.372z"}),wp.element.createElement(a,{d:"M1264.597,747.992L916.255,475.829c-11.365-8.884-27.332-8.884-38.696,0L529.218,747.992 c-7.63,5.954-12.084,15.092-12.084,24.764c0,233.561,100.426,372.219,184.671,447.416 c91.516,81.682,182.901,107.541,186.742,108.604c2.736,0.753,5.55,1.131,8.357,1.131c2.815,0,5.628-0.378,8.355-1.131 c3.849-1.063,95.225-26.922,186.74-108.604c84.247-75.197,184.673-213.855,184.673-447.416 C1276.672,763.083,1272.216,753.946,1264.597,747.992z M1052.223,1171.406c-65.664,59.303-132.381,86.044-155.372,94.063 c-22.677-7.841-87.754-33.792-153.19-92.195c-105.319-94.003-160.293-223.577-163.521-385.308l316.763-247.491l316.761,247.491 C1210.464,948.58,1156.191,1077.519,1052.223,1171.406z"}))},servers:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1713.195,662.483H86.805c-46.621,0-84.549,37.929-84.549,84.55v315.328 c0,46.615,37.928,84.54,84.549,84.54h1626.391c46.625,0,84.55-37.925,84.55-84.54V747.033 C1797.745,700.412,1759.82,662.483,1713.195,662.483z M1734.746,1062.361c0,11.882-9.668,21.541-21.551,21.541H86.805 c-11.883,0-21.55-9.659-21.55-21.541V747.033c0-11.883,9.667-21.55,21.55-21.55h1626.391c11.883,0,21.551,9.667,21.551,21.55 V1062.361z"}),wp.element.createElement(a,{d:"M262.693,851.239c-29.518,0-53.45,23.933-53.45,53.448c0,29.521,23.932,53.445,53.45,53.445 s53.45-23.924,53.45-53.445C316.144,875.172,292.211,851.239,262.693,851.239z"}),wp.element.createElement(a,{d:"M447.018,851.239c-29.522,0-53.455,23.933-53.455,53.448c0,29.521,23.932,53.445,53.455,53.445 c29.513,0,53.445-23.924,53.445-53.445C500.463,875.172,476.53,851.239,447.018,851.239z"}),wp.element.createElement(a,{d:"M631.339,851.239c-29.522,0-53.454,23.933-53.454,53.448c0,29.521,23.932,53.445,53.454,53.445 c29.513,0,53.445-23.924,53.445-53.445C684.784,875.172,660.852,851.239,631.339,851.239z"}),wp.element.createElement(a,{d:"M1567.738,873.181H927.254c-17.394,0-31.5,14.102-31.5,31.497c0,17.402,14.106,31.5,31.5,31.5h640.484 c17.394,0,31.5-14.098,31.5-31.5C1599.238,887.283,1585.132,873.181,1567.738,873.181z"}),wp.element.createElement(a,{d:"M1713.195,1315.578H86.805c-46.621,0-84.549,37.934-84.549,84.551v315.329 c0,46.616,37.928,84.54,84.549,84.54h1626.391c46.625,0,84.55-37.924,84.55-84.54v-315.329 C1797.745,1353.512,1759.82,1315.578,1713.195,1315.578z M1734.746,1715.458c0,11.882-9.668,21.542-21.551,21.542H86.805 c-11.883,0-21.55-9.66-21.55-21.542v-315.329c0-11.883,9.667-21.551,21.55-21.551h1626.391c11.883,0,21.551,9.668,21.551,21.551 V1715.458z"}),wp.element.createElement(a,{d:"M262.693,1504.339c-29.518,0-53.45,23.933-53.45,53.445c0,29.522,23.932,53.446,53.45,53.446 s53.45-23.924,53.45-53.446C316.144,1528.271,292.211,1504.339,262.693,1504.339z"}),wp.element.createElement(a,{d:"M447.018,1504.339c-29.522,0-53.455,23.933-53.455,53.445c0,29.522,23.932,53.446,53.455,53.446 c29.513,0,53.445-23.924,53.445-53.446C500.463,1528.271,476.53,1504.339,447.018,1504.339z"}),wp.element.createElement(a,{d:"M631.339,1504.339c-29.522,0-53.454,23.933-53.454,53.445c0,29.522,23.932,53.446,53.454,53.446 c29.513,0,53.445-23.924,53.445-53.446C684.784,1528.271,660.852,1504.339,631.339,1504.339z"}),wp.element.createElement(a,{d:"M1567.738,1526.275H927.254c-17.394,0-31.5,14.107-31.5,31.5c0,17.402,14.106,31.5,31.5,31.5h640.484 c17.394,0,31.5-14.098,31.5-31.5C1599.238,1540.383,1585.132,1526.275,1567.738,1526.275z"}),wp.element.createElement(a,{d:"M1713.195,0H86.805C40.184,0,2.255,37.929,2.255,84.55v315.329c0,46.617,37.928,84.541,84.549,84.541 h1626.391c46.625,0,84.55-37.924,84.55-84.541V84.55C1797.745,37.929,1759.82,0,1713.195,0z M1734.746,399.879 c0,11.878-9.668,21.542-21.551,21.542H86.805c-11.883,0-21.55-9.664-21.55-21.542V84.55c0-11.883,9.667-21.551,21.55-21.551 h1626.391c11.883,0,21.551,9.668,21.551,21.551V399.879z"}),wp.element.createElement(o,{cx:"262.693",cy:"242.204",r:"53.448"}),wp.element.createElement(a,{d:"M447.018,188.756c-29.522,0-53.455,23.932-53.455,53.45c0,29.518,23.932,53.446,53.455,53.446 c29.513,0,53.445-23.928,53.445-53.446C500.463,212.688,476.53,188.756,447.018,188.756z"}),wp.element.createElement(a,{d:"M631.339,188.756c-29.522,0-53.454,23.932-53.454,53.45c0,29.518,23.932,53.446,53.454,53.446 c29.513,0,53.445-23.928,53.445-53.446C684.784,212.688,660.852,188.756,631.339,188.756z"}),wp.element.createElement(a,{d:"M1567.738,210.697H927.254c-17.394,0-31.5,14.102-31.5,31.5s14.106,31.5,31.5,31.5h640.484c17.394,0,31.5-14.102,31.5-31.5S1585.132,210.697,1567.738,210.697z"}))},settings:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1468.436,32.467v188.211c-98.748,15.249-174.595,100.822-174.595,203.777s75.847,188.521,174.595,203.777 v1139.302c0,17.453,14.146,31.608,31.607,31.608c17.454,0,31.609-14.155,31.609-31.608V628.232 c98.748-15.257,174.59-100.822,174.59-203.777s-75.842-188.529-174.59-203.777V32.467c0-17.454-14.155-31.608-31.609-31.608 C1482.581,0.858,1468.436,15.013,1468.436,32.467z M1643.029,424.455c0,67.979-47.703,124.986-111.377,139.423 c-10.179,2.302-20.744,3.563-31.609,3.563s-21.43-1.261-31.607-3.563c-63.684-14.438-111.378-71.444-111.378-139.423 c0-67.988,47.694-124.995,111.378-139.424c10.178-2.311,20.742-3.563,31.607-3.563s21.431,1.252,31.609,3.563 C1595.326,299.46,1643.029,356.467,1643.029,424.455z"}),wp.element.createElement(a,{d:"M331.574,1767.534V628.232c98.758-15.257,174.603-100.822,174.603-203.777s-75.845-188.529-174.603-203.777 V32.467c0-17.454-14.146-31.608-31.608-31.608c-17.454,0-31.608,14.155-31.608,31.608v188.211 C169.609,235.926,93.763,321.5,93.763,424.455s75.846,188.521,174.594,203.777v1139.302c0,17.453,14.155,31.608,31.608,31.608 C317.428,1799.143,331.574,1784.987,331.574,1767.534z M156.98,424.455c0-67.988,47.703-124.995,111.377-139.424 c10.178-2.311,20.752-3.563,31.608-3.563c10.865,0,21.431,1.252,31.608,3.563c63.684,14.429,111.387,71.436,111.387,139.424 c0,67.979-47.703,124.986-111.387,139.423c-10.178,2.302-20.743,3.563-31.608,3.563c-10.856,0-21.431-1.261-31.608-3.563 C204.683,549.441,156.98,492.434,156.98,424.455z"}),wp.element.createElement(a,{d:"M931.617,1767.534V1419.51c98.748-15.257,174.594-100.822,174.594-203.777s-75.846-188.529-174.594-203.777 V32.467c0-17.454-14.154-31.608-31.608-31.608c-17.462,0-31.608,14.155-31.608,31.608v979.488 c-98.757,15.248-174.603,100.822-174.603,203.777s75.846,188.521,174.603,203.777v348.024c0,17.453,14.146,31.608,31.608,31.608 C917.463,1799.143,931.617,1784.987,931.617,1767.534z M757.015,1215.732c0-67.986,47.703-124.995,111.386-139.424 c10.177-2.309,20.743-3.563,31.608-3.563c10.865,0,21.431,1.254,31.608,3.563c63.676,14.429,111.378,71.438,111.378,139.424 c0,67.979-47.702,124.986-111.378,139.424c-10.178,2.303-20.743,3.563-31.608,3.563c-10.865,0-21.431-1.26-31.608-3.563 C804.717,1340.719,757.015,1283.711,757.015,1215.732z"}))},share:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M357.063,742.307c-17.305,0-31.331,14.026-31.331,31.331s14.026,31.331,31.331,31.331 c27.835,0,93.081,33.661,93.081,98.938c0,17.305,14.026,31.331,31.331,31.331s31.332-14.026,31.332-31.331 C512.807,797.809,411.417,742.307,357.063,742.307z"}),wp.element.createElement(a,{d:"M1453.625,177.815c27.835,0,93.08,33.661,93.08,98.938c0,17.305,14.027,31.331,31.332,31.331 s31.331-14.026,31.331-31.331c0-106.097-101.39-161.6-155.743-161.6c-17.305,0-31.33,14.026-31.33,31.331 S1436.32,177.815,1453.625,177.815z"}),wp.element.createElement(a,{d:"M1447.975,1261.85c-46.434,0-92.324,12.361-132.713,35.751c-31.903,18.476-58.501,42.634-79.293,70.451 L597.875,998.547c3.899-9.809,7.317-19.871,10.075-30.226c15.53-58.261,10.889-118.681-12.702-173.188l636.708-368.71 c49.41,69.459,130.26,111.727,216.465,111.727c46.433,0,92.319-12.361,132.707-35.75c61.316-35.505,105.136-92.766,123.385-161.232 c18.248-68.463,8.742-139.933-26.764-201.249C1630.467,58.27,1542.422,7.544,1447.979,7.544c-46.434,0-92.324,12.361-132.712,35.75 c-115.368,66.811-161.543,207.81-113.322,328.1L563.833,740.916c-49.707-66.172-128.52-106.219-212.417-106.219 c-46.428,0-92.324,12.361-132.711,35.75C92.13,743.749,48.787,906.358,122.084,1032.934 c47.281,81.649,135.326,132.37,229.77,132.37c46.438,0,92.324-12.36,132.712-35.75c33.473-19.381,61.679-45.284,83.407-75.915 l636.673,368.684c-31.921,74.42-29.608,162.465,13.996,237.764c47.28,81.65,135.325,132.371,229.774,132.371 c46.432,0,92.318-12.361,132.707-35.75c61.316-35.506,105.135-92.766,123.384-161.232c18.249-68.463,8.742-139.934-26.763-201.249 C1630.463,1312.575,1542.418,1261.85,1447.975,1261.85z M1346.668,97.521c30.859-17.868,65.893-27.314,101.311-27.314 c72.164,0,139.426,38.745,175.543,101.114c27.117,46.831,34.378,101.42,20.438,153.71c-13.935,52.29-47.403,96.026-94.233,123.144 c-30.855,17.869-65.889,27.314-101.307,27.314c-72.165,0-139.43-38.744-175.547-101.109 C1216.893,277.706,1249.994,153.504,1346.668,97.521z M453.164,1075.327c-30.859,17.868-65.888,27.314-101.311,27.314 c-72.165,0-139.426-38.745-175.543-101.11c-55.979-96.672-22.873-220.874,73.795-276.857 c30.859-17.869,65.888-27.314,101.311-27.314c72.165,0,139.426,38.744,175.543,101.114c27.117,46.831,34.377,101.42,20.438,153.71 C533.464,1004.474,499.995,1048.209,453.164,1075.327z M1643.955,1579.336c-13.934,52.291-47.402,96.027-94.233,123.145 c-30.854,17.868-65.888,27.314-101.306,27.314c-72.166,0-139.431-38.744-175.548-101.109 c-55.979-96.674-22.878-220.875,73.795-276.859c30.859-17.867,65.893-27.313,101.312-27.313 c72.164,0,139.425,38.744,175.543,101.114C1650.635,1472.457,1657.895,1527.047,1643.955,1579.336z"}),wp.element.createElement(a,{d:"M1453.621,1369.459c-17.305,0-31.331,14.027-31.331,31.332s14.026,31.331,31.331,31.331 c27.834,0,93.08,33.661,93.08,98.937c0,17.305,14.027,31.332,31.332,31.332s31.33-14.027,31.33-31.332 C1609.363,1424.963,1507.975,1369.459,1453.621,1369.459z"}))},shield:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M900,1793.016c-2.796,0-5.594-0.375-8.315-1.125c-7.969-2.199-197.36-55.807-388.728-226.607 c-112.377-100.305-201.914-220.375-266.128-356.88c-79.987-170.042-120.543-365.937-120.543-582.248 c0-9.624,4.431-18.711,12.016-24.637L880.752,13.613c11.308-8.837,27.187-8.837,38.496,0l752.451,587.905 c7.584,5.925,12.016,15.013,12.016,24.637c0,216.312-40.559,412.206-120.546,582.248 c-64.212,136.505-153.751,256.575-266.123,356.88c-191.37,170.801-380.764,224.408-388.732,226.607 C905.592,1792.641,902.796,1793.016,900,1793.016z M178.88,641.351c3.271,367.343,125.555,661.791,363.594,875.387 C701.154,1659.123,862.076,1716.81,900,1729.049c37.924-12.239,198.846-69.926,357.525-212.311 c238.039-213.597,360.325-508.044,363.592-875.387L900,77.925L178.88,641.351z"}),wp.element.createElement(a,{d:"M900,1593.533c-2.798,0-5.594-0.375-8.315-1.125c-6.189-1.71-153.319-43.35-301.636-175.734 c-87.095-77.732-156.485-170.791-206.251-276.582c-61.928-131.65-93.328-283.236-93.328-450.545 c0-9.624,4.432-18.711,12.017-24.637L880.752,213.1c11.308-8.834,27.187-8.839,38.496,0l578.266,451.81 c7.585,5.925,12.017,15.013,12.017,24.637c0,167.309-31.399,318.895-93.329,450.545 c-49.762,105.791-119.155,198.85-206.248,276.582c-148.316,132.385-295.446,174.024-301.64,175.734 C905.596,1593.158,902.798,1593.533,900,1593.533z M353.087,704.725c3.256,278.249,96.237,501.402,276.493,663.417 c118.248,106.279,238.227,150.755,270.42,161.38c32.193-10.625,152.172-55.101,270.42-161.38 c180.256-162.016,273.236-385.169,276.495-663.417L900,277.412L353.087,704.725z"}))},shoppingCart:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1478.793,1242.979c0.031,0.006,0.061,0.006,0.094,0h3.281c13.289,0,25.162-8.314,29.709-20.8 l283.908-780.039c3.529-9.694,2.104-20.5-3.811-28.951c-5.919-8.447-15.582-13.479-25.899-13.479H1194.88H883.583H334.239 L263.73,208.149c-0.066-0.181-0.155-0.349-0.225-0.53c-0.238-0.609-0.494-1.204-0.768-1.791c-0.181-0.397-0.366-0.79-0.564-1.177 c-0.255-0.499-0.524-0.984-0.807-1.465c-0.261-0.45-0.525-0.896-0.807-1.332c-0.251-0.384-0.516-0.758-0.781-1.129 c-0.348-0.484-0.697-0.965-1.067-1.424c-0.247-0.309-0.507-0.609-0.763-0.904c-0.415-0.476-0.833-0.948-1.27-1.398 c-0.274-0.278-0.561-0.542-0.843-0.812c-0.446-0.423-0.887-0.838-1.354-1.235c-0.335-0.282-0.688-0.551-1.032-0.821 c-0.437-0.334-0.874-0.675-1.323-0.987c-0.423-0.296-0.86-0.569-1.297-0.842c-0.401-0.251-0.803-0.503-1.212-0.736 c-0.508-0.287-1.028-0.547-1.549-0.807c-0.375-0.186-0.745-0.375-1.129-0.543c-0.555-0.247-1.121-0.468-1.693-0.688 c-0.384-0.145-0.768-0.291-1.156-0.423c-0.555-0.186-1.111-0.344-1.675-0.499c-0.451-0.124-0.9-0.242-1.35-0.348 c-0.507-0.115-1.015-0.208-1.53-0.3c-0.542-0.093-1.089-0.181-1.641-0.248c-0.441-0.052-0.882-0.097-1.328-0.128 c-0.635-0.052-1.271-0.083-1.905-0.097c-0.203-0.004-0.397-0.031-0.601-0.031H33.923c-17.461,0-31.615,14.153-31.615,31.615 c0,17.461,14.154,31.615,31.615,31.615h178.083L300.272,490.5l255.975,703.281c-0.123,0.308-0.273,0.604-0.393,0.921 l-86.934,236.188c-0.542,1.473-0.93,2.965-1.243,4.46c-1.821,3.996-2.862,8.42-2.862,13.095c0,17.461,14.154,31.616,31.615,31.616 h123.754c11.622,74.937,76.572,132.486,154.716,132.486c78.143,0,143.094-57.55,154.716-132.486h217.104 c11.621,74.937,76.574,132.486,154.717,132.486c78.144,0,143.093-57.55,154.716-132.486h87.688 c17.463,0,31.615-14.155,31.615-31.616c0-17.462-14.152-31.615-31.615-31.615h-90.789 c-17.421-67.456-78.792-117.429-151.614-117.429c-72.824,0-134.194,49.973-151.616,117.429H926.521 c-17.432-67.456-78.8-117.429-151.62-117.429c-72.819,0-134.189,49.973-151.62,117.429h-81.803l63.989-173.85H1478.793z M1216.813,1416.829c14.844-31.941,47.146-54.197,84.624-54.197c37.477,0,69.78,22.256,84.622,54.197 c5.539,11.921,8.72,25.153,8.72,39.145c0,8.341-1.205,16.386-3.264,24.087c-10.665,39.81-46.952,69.256-90.078,69.256 c-43.128,0-79.414-29.446-90.077-69.256c-2.061-7.701-3.265-15.746-3.265-24.087 C1208.096,1441.982,1211.274,1428.75,1216.813,1416.829z M690.278,1416.829c14.838-31.941,47.146-54.197,84.623-54.197 c37.477,0,69.785,22.256,84.622,54.197c5.541,11.921,8.72,25.153,8.72,39.145c0,8.341-1.203,16.386-3.267,24.087 c-10.661,39.81-46.947,69.256-90.075,69.256c-43.126,0-79.414-29.446-90.074-69.256c-2.064-7.701-3.268-15.746-3.268-24.087 C681.559,1441.982,684.739,1428.75,690.278,1416.829z M644.822,1179.748h-26.389l-20.453-56.187l-49.751-136.69h255.596v192.877 H644.822z M1553.244,923.641h-289.426V723.412h362.303L1553.244,923.641z M1200.588,923.641H867.055V723.412h333.533V923.641z M803.825,923.641H525.214l-72.876-200.229h351.487V923.641z M867.055,1179.748V986.871h333.533v192.877H867.055z M1480.479,1123.562l-20.449,56.187h-26.389h-169.822V986.871h266.412L1480.479,1123.562z M1649.132,660.181h-385.313V462.942 h457.104L1649.132,660.181z M905.72,462.942h267.024h27.844v197.239H867.055V462.942H905.72z M357.535,462.942h446.29v197.239 H429.327l-69.625-191.293c-0.005-0.004-0.005-0.004-0.005-0.004l-0.04-0.11L357.535,462.942z"}))},sign:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1712.873,820.293l-198.091-185.002c-5.813-5.427-13.466-8.446-21.414-8.446h-269.041 c-1.497-0.219-3.028-0.333-4.585-0.333H925.895V557.06h459.658c17.326,0,31.37-14.039,31.37-31.37V155.012 c0-17.326-14.044-31.37-31.37-31.37H925.895V34.977c0-17.33-14.044-31.369-31.37-31.369s-31.37,14.04-31.37,31.369v88.666H580.263 c-1.541,0-3.055,0.114-4.534,0.333H306.631c-7.948,0-15.602,3.019-21.414,8.446L87.126,317.427 c-6.351,5.931-9.957,14.232-9.957,22.924s3.606,16.994,9.957,22.923L285.218,548.29c5.812,5.427,13.466,8.442,21.414,8.442h269.063 c1.492,0.214,3.015,0.328,4.569,0.328h282.892v69.453H414.452c-17.327,0-31.37,14.043-31.37,31.369v370.687 c0,17.326,14.043,31.37,31.37,31.37h448.703v311.637c-115.444,13.001-207.037,96.86-224.778,205.702H429.169 c-17.326,0-31.37,14.043-31.37,31.368v156.378c0,17.325,14.043,31.368,31.37,31.368h930.711c17.326,0,31.369-14.043,31.369-31.368 v-156.378c0-17.325-14.043-31.368-31.369-31.368h-209.207c-17.742-108.842-109.339-192.701-224.779-205.702v-311.637h293.848 c1.539,0,3.054-0.113,4.533-0.333h269.093c7.948,0,15.602-3.02,21.414-8.445l198.091-185.016c6.351-5.93,9.957-14.232,9.957-22.923 C1722.83,834.529,1719.224,826.228,1712.873,820.293z M584.832,494.32c-1.492-0.219-3.015-0.328-4.569-0.328h-261.26L154.5,340.351 l164.502-153.636h261.26c1.541,0,3.055-0.114,4.534-0.333h278.358h62.739h428.289V494.32H925.895h-62.739H584.832z M1328.512,1733.653H460.54v-93.638h206.144h455.684h206.145V1733.653z M1086.853,1577.277h-384.66 c18.788-83.375,97.479-144.788,192.332-144.788C989.365,1432.489,1068.061,1493.911,1086.853,1577.277z M1480.997,996.866h-261.255 c-1.56,0-3.091,0.114-4.588,0.332h-289.26h-62.739H445.822V689.252h417.333h62.739h289.26c1.497,0.219,3.028,0.333,4.588,0.333 h261.255L1645.5,843.221L1480.997,996.866z"}))},siteMap:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1765.051,0H34.949C17.561,0,3.466,14.095,3.466,31.484v476.753c0,17.389,14.095,31.483,31.483,31.483 h1730.102c17.389,0,31.484-14.095,31.484-31.483V31.484C1796.535,14.095,1782.439,0,1765.051,0z M1733.567,476.753H66.433V62.968 h1667.134V476.753z"}),wp.element.createElement(a,{d:"M511.707,1260.279H34.954c-17.389,0-31.484,14.1-31.484,31.484v476.753 c0,17.394,14.095,31.483,31.484,31.483h476.753c17.389,0,31.483-14.09,31.483-31.483v-476.753 C543.19,1274.379,529.096,1260.279,511.707,1260.279z M480.223,1737.033H66.438v-413.786h413.786V1737.033z"}),wp.element.createElement(a,{d:"M1138.377,1260.279H661.624c-17.389,0-31.484,14.1-31.484,31.484v476.753 c0,17.394,14.095,31.483,31.484,31.483h476.753c17.389,0,31.483-14.09,31.483-31.483v-476.753 C1169.86,1274.379,1155.766,1260.279,1138.377,1260.279z M1106.893,1737.033H693.107v-413.786h413.785V1737.033z"}),wp.element.createElement(a,{d:"M1765.051,1260.279h-476.753c-17.39,0-31.483,14.1-31.483,31.484v476.753 c0,17.394,14.094,31.483,31.483,31.483h476.753c17.389,0,31.484-14.09,31.484-31.483v-476.753 C1796.535,1274.379,1782.439,1260.279,1765.051,1260.279z M1733.567,1737.033h-413.786v-413.786h413.786V1737.033z"}),wp.element.createElement(a,{d:"M900,593.693c-17.389,0-31.483,14.095-31.483,31.484v324.763H273.33c-17.389,0-31.483,14.1-31.483,31.484 v193.4c0,17.393,14.095,31.482,31.483,31.482c17.389,0,31.484-14.09,31.484-31.482v-161.917h563.703v161.917 c0,17.393,14.095,31.482,31.483,31.482s31.484-14.09,31.484-31.482v-161.917h563.706v161.917c0,17.393,14.095,31.482,31.483,31.482 s31.484-14.09,31.484-31.482v-193.4c0-17.385-14.096-31.484-31.484-31.484H931.484V625.177 C931.484,607.788,917.389,593.693,900,593.693z"}))},statistics:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M152.728,528.008c-63.267,0-114.738-51.469-114.738-114.733c0-63.265,51.472-114.734,114.738-114.734 c63.262,0,114.729,51.469,114.729,114.734C267.457,476.539,215.99,528.008,152.728,528.008z M152.728,360.752 c-28.962,0-52.526,23.562-52.526,52.522s23.563,52.521,52.526,52.521c28.958,0,52.517-23.562,52.517-52.521 S181.686,360.752,152.728,360.752z"}),wp.element.createElement(a,{d:"M1124.017,703.674c-63.267,0-114.738-51.465-114.738-114.725c0-63.267,51.472-114.738,114.738-114.738 c63.262,0,114.729,51.472,114.729,114.738C1238.745,652.209,1187.278,703.674,1124.017,703.674z M1124.017,536.423 c-28.963,0-52.526,23.563-52.526,52.526c0,28.956,23.563,52.513,52.526,52.513c28.957,0,52.517-23.558,52.517-52.513 C1176.533,559.986,1152.974,536.423,1124.017,536.423z"}),wp.element.createElement(a,{d:"M638.373,391.099c-103.739,0-188.138-84.396-188.138-188.133S534.634,14.833,638.373,14.833 c103.733,0,188.125,84.396,188.125,188.133S742.106,391.099,638.373,391.099z M638.373,77.045 c-69.435,0-125.926,56.488-125.926,125.921c0,69.433,56.491,125.921,125.926,125.921c69.429,0,125.913-56.488,125.913-125.921 C764.286,133.533,707.802,77.045,638.373,77.045z"}),wp.element.createElement(a,{d:"M1609.674,391.099c-103.737,0-188.137-84.396-188.137-188.133s84.399-188.133,188.137-188.133 c103.733,0,188.129,84.396,188.129,188.133S1713.407,391.099,1609.674,391.099z M1609.674,77.045 c-69.437,0-125.925,56.488-125.925,125.921c0,69.433,56.488,125.921,125.925,125.921c69.429,0,125.917-56.488,125.917-125.921 C1735.591,133.533,1679.103,77.045,1609.674,77.045z"}),wp.element.createElement(i,{x:"332.296",y:"178.864",transform:"matrix(0.4637 0.886 -0.886 0.4637 480.4105 -149.1437)",width:"62.214",height:"286.801"}),wp.element.createElement(i,{x:"721.561",y:"398.765",transform:"matrix(0.767 0.6417 -0.6417 0.767 488.2679 -484.7798)",width:"380.063",height:"62.211"}),wp.element.createElement(c,{points:"1216.137,584.88 1176.993,536.524 1473.117,296.842 1512.26,345.197"}),wp.element.createElement(a,{d:"M223.333,1785.167H82.119c-44.068,0-79.922-36.348-79.922-81.023V761.958 c0-44.678,35.854-81.024,79.922-81.024h141.214c44.068,0,79.921,36.346,79.921,81.024v942.185 C303.254,1748.819,267.401,1785.167,223.333,1785.167z M82.119,743.146c-9.767,0-17.71,8.438-17.71,18.812v942.185 c0,10.371,7.943,18.812,17.71,18.812h141.214c9.766,0,17.709-8.44,17.709-18.812V761.958c0-10.374-7.944-18.812-17.709-18.812 H82.119z"}),wp.element.createElement(a,{d:"M708.974,1785.167H567.755c-44.066,0-79.917-38.839-79.917-86.578V651.512 c0-47.74,35.852-86.579,79.917-86.579h141.218c44.066,0,79.917,38.839,79.917,86.579v1047.077 C788.891,1746.328,753.04,1785.167,708.974,1785.167z M567.755,627.146c-9.597,0-17.706,11.159-17.706,24.367v1047.077 c0,13.209,8.108,24.366,17.706,24.366h141.218c9.597,0,17.705-11.157,17.705-24.366V651.512c0-13.208-8.108-24.367-17.705-24.367 H567.755z"}),wp.element.createElement(a,{d:"M1194.621,1785.167h-141.21c-44.072,0-79.926-31.604-79.926-70.452V972.037 c0-38.848,35.854-70.453,79.926-70.453h141.21c44.072,0,79.926,31.605,79.926,70.453v742.678 C1274.547,1753.563,1238.693,1785.167,1194.621,1785.167z M1053.411,963.796c-11.43,0-17.714,6.188-17.714,8.241v742.678 c0,2.053,6.284,8.24,17.714,8.24h141.21c11.431,0,17.714-6.188,17.714-8.24V972.037c0-2.053-6.283-8.241-17.714-8.241H1053.411z"}),wp.element.createElement(a,{d:"M1680.271,1785.167h-141.219c-44.067,0-79.917-38.839-79.917-86.578V651.512 c0-47.74,35.85-86.579,79.917-86.579h141.219c44.072,0,79.926,38.839,79.926,86.579v1047.077 C1760.196,1746.328,1724.343,1785.167,1680.271,1785.167z M1539.052,627.146c-9.599,0-17.705,11.159-17.705,24.367v1047.077 c0,13.209,8.106,24.366,17.705,24.366h141.219c9.604,0,17.714-11.157,17.714-24.366V651.512c0-13.208-8.11-24.367-17.714-24.367 H1539.052z"}))},tag:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M709.54,1791.754c-8.041,0-16.079-3.068-22.216-9.2L17.443,1112.676 c-5.893-5.895-9.202-13.885-9.202-22.217s3.309-16.323,9.202-22.214l784.741-784.743c1.773-1.772,3.706-3.289,5.751-4.549 l261.497-261.504c7.938-7.94,19.514-11.034,30.349-8.133l527.374,141.313c10.844,2.903,19.313,11.372,22.219,22.213 l141.314,527.374c2.906,10.844-0.197,22.411-8.131,30.348l-261.53,261.529c-1.271,2.06-2.788,3.983-4.522,5.724l-784.748,784.736 C725.622,1788.686,717.579,1791.754,709.54,1791.754z M84.09,1090.459l625.45,625.445l757.407-757.398 c1.268-2.061,2.784-3.98,4.52-5.721l253.83-253.825l-131.928-492.333l-492.33-131.92L847.216,328.534 c-1.773,1.773-3.706,3.292-5.753,4.552L84.09,1090.459z"}),wp.element.createElement(a,{d:"M792.92,1469.969c-8.041,0-16.082-3.068-22.216-9.2l-431.477-431.476c-12.27-12.273-12.27-32.164,0-44.437 c12.269-12.264,32.164-12.264,44.432,0l431.477,431.477c12.271,12.272,12.271,32.163,0,44.436 C809.001,1466.9,800.961,1469.969,792.92,1469.969z"}),wp.element.createElement(a,{d:"M939.701,1323.197c-8.039,0-16.082-3.068-22.218-9.201L486.005,882.514 c-12.271-12.269-12.271-32.163,0-44.432c12.268-12.269,32.163-12.269,44.431,0l431.483,431.479 c12.269,12.273,12.269,32.163,0,44.436C955.782,1320.129,947.739,1323.197,939.701,1323.197z"}),wp.element.createElement(a,{d:"M1086.482,1176.416c-8.039,0-16.082-3.068-22.214-9.201L632.781,735.737 c-12.271-12.268-12.271-32.161,0-44.431c12.269-12.269,32.163-12.269,44.432,0l431.482,431.474 c12.273,12.273,12.273,32.164,0.005,44.436C1102.563,1173.348,1094.521,1176.416,1086.482,1176.416z"}),wp.element.createElement(a,{d:"M1243.656,776.548c-0.01,0-0.014,0-0.018,0c-58.822-0.004-114.115-22.908-155.697-64.493 c-41.586-41.586-64.492-96.882-64.492-155.698c0.004-58.814,22.906-114.109,64.492-155.698 c41.592-41.589,96.885-64.491,155.701-64.491c58.813,0,114.109,22.902,155.696,64.491c85.852,85.855,85.852,225.547,0.005,311.396 C1357.748,753.644,1302.459,776.548,1243.656,776.548z M1243.643,399.003c-42.034,0-81.548,16.367-111.266,46.086 c-29.721,29.72-46.092,69.235-46.092,111.267s16.371,81.548,46.088,111.267c29.717,29.717,69.23,46.086,111.27,46.088 c0,0,0.009,0,0.014,0c42.02,0.002,81.529-16.367,111.256-46.088c61.35-61.35,61.35-161.18-0.005-222.534 C1325.189,415.37,1285.672,399.003,1243.643,399.003z"}))},telescope:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1052.813,485.532L609.43,348.438c-16.666-5.157-34.337,4.185-39.486,20.838 c-5.153,16.658,4.176,34.338,20.838,39.486l443.382,137.095c3.101,0.96,6.245,1.418,9.329,1.418 c13.486,0,25.969-8.704,30.152-22.256C1078.799,508.361,1069.47,490.682,1052.813,485.532z"}),wp.element.createElement(a,{d:"M1776.781,656.89l-125.688-38.605c-8.016-2.458-16.648-1.634-24.058,2.286 c-7.399,3.92-12.932,10.619-15.39,18.622l-12.685,41.283L1491.73,647.72l14.939-49.04c5.082-16.671-4.308-34.307-20.975-39.398 l-236.936-72.379l8.219-26.951c5.074-16.671-4.308-34.307-20.983-39.398L378.425,158.56l2.409-7.904 c5.078-16.671-4.308-34.304-20.979-39.396L189.63,59.251c-8.003-2.444-16.658-1.612-24.062,2.326 c-7.391,3.936-12.919,10.65-15.363,18.664L2.293,565.571c-5.078,16.671,4.308,34.307,20.979,39.398l170.239,52.008 c3.017,0.921,6.123,1.379,9.223,1.379c5.127,0,10.227-1.251,14.839-3.704c7.395-3.938,12.918-10.65,15.363-18.662l2.396-7.866 l622.02,190.019c-23.154,21.181-37.707,51.621-37.707,85.404c0,44.838,25.644,83.77,63.02,102.999l-498.98,685.429 c-10.263,14.096-7.153,33.845,6.944,44.107c5.611,4.078,12.112,6.043,18.556,6.043c9.751,0,19.371-4.502,25.551-12.984 l469.098-644.389v625.802c0,17.441,14.131,31.571,31.573,31.571c17.433,0,31.563-14.13,31.563-31.571v-625.802l469.097,644.389 c6.185,8.482,15.795,12.984,25.556,12.984c6.439,0,12.939-1.965,18.551-6.043c14.095-10.263,17.205-30.012,6.941-44.107 l-498.977-685.429c37.376-19.229,63.02-58.161,63.02-102.999c0-9.364-1.146-18.464-3.251-27.194l44.943,13.733 c3.021,0.925,6.122,1.378,9.224,1.378c5.127,0,10.227-1.251,14.843-3.704c7.391-3.938,12.914-10.65,15.362-18.662l8.201-26.902 l236.893,72.361c3.021,0.925,6.123,1.379,9.223,1.379c5.127,0,10.228-1.251,14.844-3.704c7.391-3.938,12.914-10.65,15.363-18.662 l14.931-48.991l106.81,32.633l-13.963,45.441c-2.457,8.007-1.639,16.657,2.291,24.058c3.92,7.395,10.615,12.936,18.622,15.394 l125.687,38.601c3.084,0.951,6.202,1.401,9.276,1.401c13.505,0,25.995-8.729,30.171-22.313l87.06-283.452 C1802.803,679.67,1793.447,662.008,1776.781,656.89z M181.741,587.36L71.893,553.802l129.505-424.934l109.835,33.558 L181.741,587.36z M935.405,956.158c-29.017,0-52.618-23.6-52.618-52.611c0-29.013,23.602-52.616,52.618-52.616 c29.009,0,52.607,23.604,52.607,52.616C988.013,932.559,964.414,956.158,935.405,956.158z M272.061,573.323l106.294-348.767 l809.024,247.163l-106.29,348.749L272.061,573.323z M1365.603,844.94l-204.968-62.61l71.467-234.496l204.969,62.615l-24.207,79.426 l-32.33,106.069c-0.018,0.035-0.018,0.07-0.025,0.106L1365.603,844.94z M1473.318,708.119l105.479,32.219l-23.177,76.07 l-105.487-32.232L1473.318,708.119z M1659.533,931.074l-65.319-20.063l68.517-223.097l65.328,20.063L1659.533,931.074z"}))},trophy:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1680.014,241.388c-5.876-5.976-13.907-9.342-22.291-9.342h-265.229v-45.949 c1.754-3.904,2.748-8.221,2.748-12.777s-0.994-8.873-2.748-12.777V39.669c0-17.271-13.998-31.269-31.269-31.269H435.739 c-17.271,0-31.269,13.998-31.269,31.269v192.377H142.277c-8.384,0-16.415,3.366-22.291,9.342 c-5.88,5.977-9.112,14.064-8.973,22.446c2.543,153.317,35.5,297.176,92.802,405.076c59.797,112.598,140.534,175.43,227.77,177.55 c51.846,154.953,178.085,274.968,335.409,319.092v235.304c-64.348,36.395-110.3,98.631-122.317,172.335H436.145 c-17.27,0-31.269,13.994-31.269,31.269v155.872c0,17.266,13.999,31.269,31.269,31.269h927.711c17.27,0,31.269-14.003,31.269-31.269 v-155.872c0-17.274-13.999-31.269-31.269-31.269h-208.533c-12.018-73.704-57.97-135.94-122.317-172.335v-234.902 c158.275-43.941,284.886-164.749,336.9-319.526c86.665-2.796,166.826-65.56,226.278-177.517 c57.303-107.9,90.26-251.759,92.803-405.076C1689.126,255.452,1685.894,247.364,1680.014,241.388z M404.876,780.025 c-53.494-13.72-104.375-62.389-145.83-140.445c-48.844-91.976-78.495-213.492-84.514-344.997h229.938v420.416 c0,1.625,0.166,3.209,0.405,4.768V780.025z M1332.587,1635.728v93.335H467.413v-93.335h205.479h454.215H1332.587z M1091.708,1573.19H708.292c18.728-83.109,97.165-144.329,191.708-144.329S1072.98,1490.081,1091.708,1573.19z M829.532,1375.485 v-196.677c23.286,3.368,47.082,5.112,71.266,5.112c23.648,0,46.899-1.71,69.669-4.929v196.493 c-22.392-5.934-46.009-9.161-70.468-9.161S851.924,1369.552,829.532,1375.485z M1332.587,707.252 c-9.506,229.967-199.529,414.132-431.789,414.132c-229.411,0-418.955-179.262-431.518-408.099c-0.17-3.104-0.863-6.049-1.867-8.838 V263.314c0-1.636-0.161-3.23-0.405-4.798V70.938h862.948v71.113H705.099c-17.27,0-31.269,13.999-31.269,31.269 c0,17.271,13.999,31.269,31.269,31.269h624.857v431.585c0,1.182,0.065,2.362,0.201,3.536c1.212,10.64,1.993,21.318,2.43,31.934 V707.252z M1540.954,639.58c-41.455,78.056-92.336,126.726-145.83,140.445v-71.698c0.244-6.354,0.405-12.729,0.405-19.142 c0-6.214-0.166-12.476-0.405-18.753v-375.85h230.344C1619.448,426.088,1589.798,547.604,1540.954,639.58z"}),wp.element.createElement(a,{d:"M1123.914,493.53l-135.348-19.667l-60.525-122.645c-5.27-10.675-16.141-17.432-28.041-17.432 s-22.771,6.757-28.041,17.432l-60.526,122.645L676.086,493.53c-11.778,1.712-21.563,9.961-25.24,21.281 c-3.677,11.32-0.61,23.746,7.913,32.054l97.933,95.463l-23.12,134.8c-2.011,11.729,2.81,23.586,12.441,30.581 c9.623,6.991,22.392,7.924,32.926,2.38L900,746.447l121.062,63.643c4.571,2.405,9.566,3.592,14.543,3.592 c6.487,0,12.938-2.013,18.383-5.972c9.632-6.995,14.452-18.852,12.441-30.581l-23.12-134.8l97.933-95.463 c8.523-8.308,11.59-20.734,7.913-32.054C1145.477,503.491,1135.692,495.242,1123.914,493.53z M987.886,609.021 c-7.372,7.185-10.735,17.534-8.994,27.677l15.188,88.558l-79.532-41.81c-4.554-2.395-9.549-3.592-14.548-3.592 s-9.994,1.197-14.548,3.592l-79.533,41.81l15.189-88.558c1.741-10.143-1.622-20.492-8.995-27.677l-64.334-62.714l88.916-12.921 c10.186-1.481,18.988-7.876,23.543-17.106L900,435.711l39.762,80.568c4.555,9.23,13.357,15.625,23.543,17.106l88.916,12.921 L987.886,609.021z"}))},university:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1764.199,1597.184h-323.761V853.397h154.119c17.438,0,31.572-14.134,31.572-31.572V712.784h141.549 c0.04,0,0.058,0,0.089,0c17.438,0,31.571-14.134,31.571-31.571c0-11.04-5.664-20.757-14.244-26.399L918.838,8.395 c-11.205-8.355-26.562-8.355-37.767,0L13.352,655.908C2.451,664.046-2.016,678.25,2.271,691.16 c4.285,12.91,16.362,21.624,29.964,21.624h141.549v109.042c0,17.438,14.135,31.572,31.572,31.572h154.115v743.786H35.719 c-17.438,0-31.572,14.13-31.572,31.572v137.545c0,17.434,14.134,31.572,31.572,31.572h1728.48 c17.438,0,31.572-14.139,31.572-31.572v-137.545C1795.771,1611.313,1781.637,1597.184,1764.199,1597.184z M899.953,73.094 l772.627,576.547H127.333L899.953,73.094z M1302.901,1596.117V867.153h74.394v728.964H1302.901z M1239.758,1597.184H1000.3 V853.397h239.458V1597.184z M862.753,867.153h74.403v728.964h-74.403V867.153z M236.927,715.852h1326.059v74.402H236.927V715.852z M497.016,867.153v728.964h-74.402V867.153H497.016z M560.16,853.397h239.449v743.786H560.16V853.397z M1732.628,1734.729H67.29 v-74.401h1665.338V1734.729z"}),wp.element.createElement(a,{d:"M899.998,568.438c-83.726,0-151.843-68.116-151.843-151.845s68.117-151.845,151.843-151.845 c83.733,0,151.849,68.116,151.849,151.845S983.73,568.438,899.998,568.438z M899.998,327.893 c-48.908,0-88.699,39.791-88.699,88.701s39.791,88.701,88.699,88.701c48.915,0,88.706-39.791,88.706-88.701 S948.912,327.893,899.998,327.893z"}))},usb:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1389.648,533.77h-210.622c-17.325,0-31.369,14.044-31.369,31.37v210.622 c0,17.325,14.044,31.37,31.369,31.37h73.015v150.124c0,1.183,0.078,2.459,0.209,3.638c0.084,0.703,7.558,70.689-28.16,110.688 c-17.31,19.387-42.328,28.806-76.489,28.806c-11.198,0-22.188-0.105-32.945-0.211c-80.702-0.787-156.951-1.514-209.037,48.604 V323.104l158.333,86.537c0.021,0.01,0.045,0.022,0.067,0.035l0.231,0.127c0.516,0.279,1.049,0.481,1.574,0.735 c0.635,0.302,1.257,0.63,1.904,0.889c0.941,0.372,1.891,0.661,2.845,0.936c0.297,0.083,0.581,0.206,0.88,0.28 c2.587,0.669,5.208,1.006,7.816,1.006c0.014,0,0.03,0,0.044,0c0.004,0,0.009,0,0.013,0c3.681,0,7.387-0.709,10.958-2.048 c0.358-0.136,0.735-0.228,1.093-0.376c0.277-0.114,0.534-0.281,0.812-0.402c1.023-0.46,2.043-0.946,3.015-1.519 c0.018-0.009,0.034-0.018,0.053-0.027c1.042-0.613,2.017-1.291,2.958-2c0.323-0.241,0.625-0.508,0.937-0.766 c0.7-0.573,1.375-1.168,2.017-1.79c0.284-0.28,0.565-0.551,0.837-0.84c0.857-0.901,1.673-1.829,2.407-2.814 c0.017-0.022,0.034-0.044,0.052-0.065c0.797-1.068,1.492-2.188,2.135-3.34c0.07-0.118,0.16-0.223,0.225-0.346 c0.126-0.228,0.219-0.463,0.337-0.696c0.267-0.521,0.525-1.042,0.762-1.576c0.2-0.459,0.394-0.918,0.573-1.382 c0.18-0.46,0.35-0.924,0.507-1.392c0.181-0.534,0.346-1.072,0.494-1.61c0.118-0.416,0.224-0.836,0.32-1.26 c0.136-0.574,0.259-1.152,0.359-1.729c0.074-0.42,0.136-0.84,0.192-1.265c0.074-0.564,0.139-1.134,0.184-1.698 c0.035-0.473,0.057-0.941,0.069-1.414c0.018-0.513,0.03-1.02,0.021-1.527c-0.008-0.542-0.039-1.084-0.073-1.627 c-0.031-0.438-0.066-0.875-0.114-1.309c-0.065-0.6-0.153-1.195-0.254-1.794c-0.065-0.386-0.135-0.771-0.214-1.156 c-0.126-0.604-0.277-1.204-0.438-1.803c-0.104-0.394-0.219-0.783-0.337-1.168c-0.175-0.556-0.367-1.107-0.573-1.654 c-0.165-0.446-0.345-0.888-0.534-1.326c-0.2-0.468-0.411-0.936-0.638-1.4c-0.25-0.512-0.518-1.016-0.798-1.514 c-0.127-0.232-0.231-0.473-0.366-0.705L901.254,19.416c-0.013-0.018-0.025-0.035-0.034-0.057c-1.059-1.78-2.293-3.475-3.711-5.037 c-2.144-2.372-4.608-4.354-7.278-5.929c-0.009-0.004-0.014-0.015-0.022-0.019c-0.1-0.057-0.206-0.1-0.306-0.161 c-0.774-0.442-1.562-0.867-2.368-1.243c-0.481-0.228-0.971-0.408-1.457-0.608c-0.438-0.175-0.872-0.373-1.317-0.53 c-0.644-0.228-1.295-0.411-1.948-0.6c-0.306-0.087-0.613-0.188-0.924-0.267c-0.687-0.176-1.377-0.302-2.069-0.43 c-0.306-0.057-0.608-0.122-0.91-0.17c-0.652-0.096-1.304-0.153-1.961-0.21c-0.367-0.035-0.735-0.075-1.111-0.097 c-0.569-0.026-1.138-0.021-1.708-0.018c-0.462,0-0.927-0.009-1.391,0.013c-0.477,0.026-0.954,0.08-1.427,0.123 c-0.551,0.053-1.103,0.101-1.654,0.18c-0.402,0.061-0.805,0.148-1.212,0.224c-0.595,0.114-1.19,0.223-1.781,0.372 c-0.407,0.101-0.801,0.232-1.204,0.346c-0.564,0.167-1.129,0.324-1.689,0.521c-0.521,0.184-1.024,0.407-1.532,0.617 c-0.42,0.175-0.844,0.333-1.256,0.525c-0.836,0.389-1.645,0.822-2.446,1.282c-0.083,0.048-0.166,0.083-0.249,0.131 c-0.009,0.004-0.013,0.009-0.018,0.015c-2.67,1.575-5.133,3.557-7.273,5.929c-1.418,1.562-2.661,3.257-3.72,5.042 c-0.009,0.022-0.022,0.04-0.035,0.057L642.195,366.311c-0.136,0.232-0.241,0.473-0.368,0.705c-0.28,0.498-0.547,1.002-0.796,1.514 c-0.228,0.464-0.438,0.932-0.64,1.4c-0.188,0.438-0.367,0.88-0.534,1.326c-0.206,0.547-0.398,1.099-0.573,1.654 c-0.119,0.386-0.232,0.774-0.337,1.168c-0.162,0.6-0.31,1.199-0.437,1.803c-0.079,0.385-0.149,0.774-0.214,1.16 c-0.102,0.595-0.188,1.19-0.254,1.785c-0.048,0.438-0.083,0.875-0.114,1.317c-0.035,0.543-0.065,1.081-0.075,1.624 c-0.009,0.508,0.005,1.015,0.022,1.527c0.014,0.473,0.035,0.941,0.07,1.414c0.044,0.564,0.11,1.133,0.184,1.698 c0.057,0.424,0.119,0.844,0.193,1.265c0.101,0.577,0.223,1.155,0.359,1.729c0.097,0.424,0.201,0.844,0.32,1.26 c0.148,0.538,0.315,1.076,0.495,1.61c0.157,0.468,0.328,0.932,0.507,1.392c0.179,0.463,0.372,0.923,0.573,1.382 c0.236,0.534,0.495,1.055,0.762,1.576c0.118,0.232,0.209,0.468,0.336,0.696c0.066,0.123,0.154,0.228,0.224,0.346 c0.644,1.147,1.34,2.272,2.132,3.335c0.026,0.035,0.057,0.066,0.079,0.096c0.731,0.972,1.531,1.896,2.381,2.783 c0.275,0.293,0.56,0.569,0.849,0.85c0.634,0.617,1.3,1.208,1.991,1.772c0.323,0.263,0.63,0.538,0.962,0.783 c0.937,0.709,1.912,1.382,2.949,1.995c0.018,0.009,0.031,0.018,0.048,0.027c0.972,0.569,1.991,1.054,3.015,1.519 c0.276,0.122,0.538,0.289,0.814,0.402c0.307,0.127,0.63,0.206,0.937,0.319c3.62,1.383,7.379,2.105,11.116,2.105c0,0,0.009,0,0.014,0 c0.013,0,0.03,0,0.043,0c2.604,0,5.229-0.337,7.812-1.006c0.315-0.079,0.613-0.206,0.923-0.293c0.941-0.275,1.877-0.555,2.806-0.923 c0.648-0.259,1.269-0.586,1.899-0.889c0.525-0.25,1.063-0.456,1.58-0.735l0.232-0.127c0.021-0.013,0.043-0.025,0.065-0.035 l158.334-86.537v909.841c-5.212-4.901-10.743-9.404-16.647-13.475c-48.773-33.641-113.368-33.615-181.427-33.589h-5.891 c-24.678,0-43.281-7.29-56.879-22.283c-29.588-32.639-30.55-96.035-28.433-117.639c0.109-1.064,0.167-2.137,0.167-3.21V885.151 c57.732-14.416,100.637-66.698,100.637-128.838c0-73.225-59.575-132.799-132.799-132.799c-73.224,0-132.798,59.575-132.798,132.799 c0,62.704,43.692,115.354,102.222,129.206v155.821c-1.217,14.548-6.74,107.597,44.323,164.174 c25.815,28.603,60.66,43.105,103.561,43.105h5.913c60.655-0.034,113.11-0.043,145.783,22.495 c22.091,15.237,51.456,49.521,51.456,170.867c0,2.417,0.298,4.752,0.814,7.013v36.479 c-71.505,14.574-125.477,77.941-125.477,153.688c0,86.483,70.362,156.846,156.846,156.846c86.485,0,156.847-70.362,156.847-156.846 c0-75.747-53.973-139.114-125.477-153.688v-119.191c0-86.992,13.938-143.084,42.62-171.48c33.522-33.195,91.893-32.613,165.8-31.895 c10.958,0.112,22.153,0.219,33.563,0.219c52.507,0,94.086-16.849,123.582-50.092c50.612-57.03,45.009-142.509,43.597-157.389 V807.131h74.869c17.326,0,31.37-14.044,31.37-31.37V565.14C1421.019,547.814,1406.975,533.77,1389.648,533.77z M451.546,756.313 c0-38.63,31.43-70.06,70.06-70.06c38.63,0,70.061,31.43,70.061,70.06c0,38.634-31.43,70.06-70.061,70.06 C482.977,826.374,451.546,794.947,451.546,756.313z M874.248,97.029l119.998,203.012l-104.952-57.36 c-0.097-0.052-0.197-0.092-0.298-0.141c-0.521-0.28-1.055-0.521-1.588-0.77c-0.429-0.197-0.853-0.411-1.291-0.586 c-0.407-0.171-0.832-0.307-1.248-0.456c-0.568-0.206-1.137-0.419-1.715-0.591c-0.245-0.074-0.499-0.127-0.749-0.193 c-0.744-0.201-1.488-0.397-2.236-0.542c-0.109-0.017-0.219-0.026-0.327-0.048c-0.884-0.161-1.773-0.296-2.657-0.38 c-0.14-0.009-0.28-0.009-0.415-0.018c-0.859-0.07-1.712-0.122-2.569-0.118c-0.381,0-0.766,0.039-1.146,0.052 c-0.613,0.022-1.226,0.035-1.829,0.092c-0.552,0.053-1.094,0.153-1.646,0.236c-0.446,0.066-0.897,0.114-1.339,0.202 c-0.529,0.105-1.049,0.25-1.579,0.381c-0.468,0.118-0.937,0.218-1.396,0.354c-0.434,0.131-0.857,0.298-1.287,0.447 c-0.56,0.192-1.119,0.38-1.671,0.608c-0.333,0.136-0.656,0.301-0.989,0.45c-0.634,0.285-1.265,0.578-1.882,0.91 c-0.074,0.04-0.158,0.07-0.232,0.11l-104.952,57.36L874.248,97.029z M968.356,1639.161c0,51.893-42.219,94.106-94.108,94.106 s-94.108-42.214-94.108-94.106c0-51.891,42.218-94.108,94.108-94.108S968.356,1587.271,968.356,1639.161z M1358.279,744.392 h-147.885V596.509h147.885V744.392z"}))},usbDrive:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1563.436,1321.387c-17.391,0-31.487,14.098-31.487,31.488c0,27.012-15.801,74.633-50.5,115.373 c-26.98,31.68-73.952,69.445-144.492,69.445c-17.392,0-31.487,14.096-31.487,31.482c0,17.396,14.096,31.488,31.487,31.488 c169.369,0,257.968-161.313,257.968-247.789C1594.924,1335.484,1580.827,1321.387,1563.436,1321.387z"}),wp.element.createElement(a,{d:"M1656.3,972.827L831.573,148.096c-5.909-5.906-13.917-9.223-22.267-9.223s-16.359,3.316-22.268,9.223 l-96.25,96.253L457.952,11.523c-12.292-12.3-32.23-12.295-44.53,0L11.634,413.309c-12.3,12.3-12.3,32.234-0.004,44.534 L244.466,690.68l-96.255,96.255c-12.296,12.295-12.296,32.23,0,44.53l824.723,824.725c91.26,91.247,212.603,141.5,341.676,141.51 c0,0,0.026,0,0.04,0c129.043,0,250.377-50.263,341.65-141.527C1844.689,1467.777,1844.689,1161.23,1656.3,972.827z M435.688,78.318 L645.48,288.097L288.214,645.368L78.427,435.576L435.688,78.318z M1611.77,1611.646c-79.382,79.369-184.889,123.086-297.12,123.077 c-0.005,0-0.026,0-0.026,0c-112.263-0.009-217.795-43.718-297.16-123.069L215.008,809.197l594.298-594.307l802.46,802.467 C1775.604,1181.204,1775.604,1447.803,1611.77,1611.646z"}),wp.element.createElement(a,{d:"M332.216,511.8c8.056,0,16.117-3.075,22.267-9.225c12.295-12.295,12.295-32.23-0.004-44.53l-75.952-75.947 c-12.291-12.291-32.229-12.295-44.53,0.004c-12.295,12.295-12.295,32.23,0.004,44.53l75.952,75.947 C316.099,508.725,324.16,511.8,332.216,511.8z"}),wp.element.createElement(a,{d:"M458.153,354.371c6.15,6.146,14.211,9.221,22.268,9.221c8.056,0,16.117-3.075,22.267-9.221 c12.295-12.3,12.295-32.234,0-44.534l-75.943-75.943c-12.3-12.291-32.234-12.291-44.534,0c-12.296,12.3-12.296,32.234,0,44.534 L458.153,354.371z"}))},user:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M899.996,13.388c-488.883,0-886.611,397.732-886.611,886.615c0,297.415,147.216,561.092,372.596,722.011 c14.883,10.622,30.131,20.758,45.673,30.469c101.1,63.151,215.747,106.507,338.525,124.601 c42.384,6.248,85.723,9.529,129.816,9.529c44.084,0,87.423-3.281,129.808-9.529c122.778-18.094,237.434-61.449,338.525-124.592 c15.542-9.711,30.799-19.855,45.682-30.478c225.389-160.919,372.604-424.596,372.604-722.011 C1786.615,411.12,1388.879,13.388,899.996,13.388z M899.996,1724.407c-163.127,0-315.337-47.626-443.461-129.704 c58.621-107.8,176.409-191.24,323.694-221.345v22.277l119.594,66.448l119.932-66.431v-22.295 c147.285,30.104,265.074,113.545,323.694,221.345C1215.324,1676.781,1063.118,1724.407,899.996,1724.407z M554.979,912.854 c-15.75-5.685-27.058-20.743-27.058-38.429c0-17.69,11.308-32.751,27.058-38.44v9.194V912.854z M1238.035,845.179v-8.769 c15.144,6.001,25.896,20.758,25.896,38.001c0,17.261-10.752,32.021-25.896,38.017V845.179z M1212.461,711.77 c-2.014,9.963-4.564,19.813-7.654,29.489c-61.936-32.053-146.322-67.303-235.16-79.466 c-155.131-21.218-168.833-29.74-183.829-73.174l-12.957-37.516l-29.723,26.291c-0.894,0.789-80.681,71.251-161.344,136.272 c-11.984-42.575-13.798-86.934-5.103-130.046c27.397-135.974,156.441-234.666,306.824-234.666c23.249,0,46.749,2.365,69.859,7.017 c85.297,17.195,159.218,63.936,208.153,131.617C1210.005,554.617,1228.081,634.235,1212.461,711.77z M608.063,845.179V817.6 v-56.933c55.635-44.597,111.831-92.696,143.719-120.336c30.452,47.001,85.592,56.964,210.67,74.073 c86.504,11.833,170.369,49.166,222.49,76.398V817.6v27.579v94.646c0,159.053-129.399,288.436-288.436,288.436 c-159.044,0-288.444-129.383-288.444-288.436V845.179z M833.33,1310.867V1275.4c20.489,3.853,41.586,5.962,63.177,5.962 c24.048,0,47.505-2.534,70.154-7.281v36.786v30.843v22.649l-66.796,36.995l-66.535-36.969v-22.676V1310.867z M1387.403,1564.451 c-68.34-121.537-201.975-214.22-367.649-245.175v-61.016c119.42-46.385,206.444-158.038,217.075-290.979 c45.291-6.708,80.194-45.742,80.194-92.871c0-43.972-30.399-80.88-71.265-91.081c8.175-19.678,14.536-40.158,18.745-61.06 c18.588-92.227-2.699-186.615-59.94-265.794c-56.781-78.533-142.27-132.711-240.705-152.558 c-26.547-5.354-53.57-8.062-80.343-8.062c-84.273,0-166.412,27.106-231.29,76.333c-66.301,50.303-111.619,121.676-127.595,200.942 c-13.13,65.121-6.196,132.494,20.021,194.854l5.997,14.245c-43.156,8.487-75.838,46.576-75.838,92.192 c0,47.533,35.52,86.844,81.383,93.041c10.909,135.439,101.083,248.828,224.035,293.486v58.325 c-165.679,30.955-299.3,123.638-367.641,245.175C208.383,1414.259,75.59,1172.364,75.59,900.003 c0-454.583,369.827-824.41,824.406-824.41s824.415,369.828,824.415,824.41C1724.41,1172.364,1591.608,1414.259,1387.403,1564.451z"}))},vault:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1762.581,1.514H37.419c-17.352,0-31.407,14.06-31.407,31.407v1557.842 c0,17.342,14.056,31.406,31.407,31.406h217.792v144.909c0,17.342,14.065,31.407,31.407,31.407h245.651 c17.352,0,31.407-14.065,31.407-31.407v-144.909h672.647v144.909c0,17.342,14.057,31.407,31.408,31.407h245.649 c17.343,0,31.408-14.065,31.408-31.407v-144.909h217.792c17.342,0,31.407-14.064,31.407-31.406V32.92 C1793.988,15.574,1779.923,1.514,1762.581,1.514z M500.862,1735.671H318.026v-109.927h182.835V1735.671z M1481.974,1735.671 h-182.835v-109.927h182.835V1735.671z M215.154,199.597h1369.691v1230.754H215.154V199.597z M152.339,1027.651H68.826V596.919 h83.513V1027.651z M1731.173,1559.354H68.826v-468.894h83.513v371.298c0,17.342,14.057,31.408,31.408,31.408h1432.506 c17.343,0,31.406-14.066,31.406-31.408V168.19c0-17.347-14.063-31.407-31.406-31.407H183.747c-17.351,0-31.408,14.06-31.408,31.407 v365.915H68.826V64.328h1662.347V1559.354z"}),wp.element.createElement(a,{d:"M1202.266,514.826c-0.763-0.964-1.569-1.906-2.458-2.796c-0.89-0.89-1.832-1.696-2.796-2.456 C1120.456,434.335,1015.561,387.842,900,387.842c-115.556,0-220.443,46.484-296.999,121.712c-0.973,0.767-1.924,1.578-2.818,2.473 c-0.898,0.898-1.708,1.847-2.475,2.82C522.48,591.403,476,696.286,476,811.839c0,115.539,46.471,220.417,121.686,296.968 c0.771,0.982,1.586,1.941,2.493,2.845c0.907,0.902,1.862,1.718,2.844,2.488c76.551,75.219,181.429,121.695,296.977,121.695 c115.557,0,220.447-46.489,297.003-121.721c0.964-0.763,1.911-1.57,2.805-2.463c0.893-0.896,1.704-1.841,2.467-2.81 C1277.511,1032.287,1324,927.396,1324,811.839C1324,696.274,1277.502,591.381,1202.266,514.826z M1196.258,843.247h63.473 c-6.582,76.025-36.775,145.377-83.251,200.659l-44.789-44.788c-12.265-12.265-32.152-12.265-44.416,0 c-12.265,12.265-12.265,32.152,0,44.415l44.784,44.79c-55.278,46.471-124.63,76.66-200.651,83.251v-63.481 c0-17.342-14.065-31.402-31.407-31.402c-17.352,0-31.408,14.061-31.408,31.402v63.481c-76.029-6.591-145.381-36.78-200.66-83.256 l44.784-44.785c12.264-12.263,12.264-32.146,0-44.415c-12.26-12.256-32.148-12.265-44.417,0l-44.784,44.784 c-46.476-55.278-76.666-124.63-83.255-200.655h63.48c17.342,0,31.408-14.062,31.408-31.408s-14.065-31.407-31.408-31.407h-63.48 c6.589-76.025,36.779-145.375,83.255-200.655l44.784,44.789c6.134,6.132,14.17,9.199,22.206,9.199 c8.036,0,16.081-3.067,22.21-9.199c12.264-12.264,12.264-32.15,0-44.417l-44.784-44.789c55.278-46.476,124.63-76.667,200.66-83.253 v63.476c0,17.347,14.056,31.408,31.408,31.408c17.342,0,31.407-14.061,31.407-31.408v-63.476 c76.025,6.585,145.373,36.777,200.656,83.253l-44.789,44.789c-12.265,12.266-12.265,32.152,0,44.417 c6.129,6.132,14.17,9.199,22.211,9.199c8.035,0,16.071-3.067,22.205-9.199l44.789-44.789 c46.476,55.28,76.669,124.628,83.251,200.655h-63.473c-17.351,0-31.407,14.061-31.407,31.407S1178.907,843.247,1196.258,843.247z"}),wp.element.createElement(a,{d:"M900,654.805c-86.589,0-157.037,70.445-157.037,157.034c0,86.59,70.448,157.037,157.037,157.037 c86.59,0,157.036-70.447,157.036-157.037C1057.036,725.25,986.59,654.805,900,654.805z M900,906.062 c-51.958,0-94.222-42.267-94.222-94.223c0-51.953,42.265-94.22,94.222-94.22c51.952,0,94.223,42.267,94.223,94.22 C994.223,863.794,951.952,906.062,900,906.062z"}))},wallet:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1763.594,924.166h-129.15V592.01c0-1.524-0.149-3.01-0.229-4.512V331.714 c0-17.393-14.098-31.491-31.491-31.491h-333.9L980.156,11.552c-5.909-5.904-13.918-9.222-22.27-9.222s-16.361,3.317-22.27,9.222 L717.95,229.219L615.625,126.89c-12.301-12.297-32.238-12.297-44.539,0L397.55,300.425c-1.146-0.127-2.311-0.202-3.492-0.202 H36.406c-17.393,0-31.491,14.098-31.491,31.491v335.157c0,1.028,0.057,2.043,0.154,3.044v1042.279 c0,47.131,38.345,85.476,85.476,85.476h1458.422c47.132,0,85.477-38.345,85.477-85.476v-332.152h129.15 c17.394,0,31.491-14.099,31.491-31.492V955.657C1795.085,938.264,1780.987,924.166,1763.594,924.166z M1571.232,363.206v146.372 c-7.112-1.925-14.555-3.045-22.266-3.045h-73.838l-143.327-143.327H1571.232z M957.887,78.356l428.172,428.177h-95.581 L910.096,126.147L957.887,78.356z M865.557,170.687l335.843,335.847H995.27l-232.78-232.78L865.557,170.687z M593.355,193.694 l80.06,80.059l44.535,44.535l188.244,188.245h-85.836L550.438,236.612L593.355,193.694z M731.279,506.533H280.517l225.381-225.381 L731.279,506.533z M191.442,506.533H90.545c-7.851,0-15.42,1.151-22.647,3.141V363.206H334.77L191.442,506.533z M1571.461,1712.195 c0,12.402-10.092,22.493-22.494,22.493H90.545c-12.402,0-22.493-10.091-22.493-22.493V592.01c0-12.402,10.091-22.494,22.493-22.494 h1458.422c11.63,0,21.114,8.905,22.266,20.231v77.125c0,1.235,0.093,2.452,0.229,3.651v253.644h-286.233 c-125.684,0-227.938,102.25-227.938,227.934c0,125.688,102.255,227.943,227.938,227.943h286.233V1712.195z M1732.103,1317.061 h-97.659h-62.982h-286.233c-90.954,0-164.955-74.002-164.955-164.961c0-90.955,74.001-164.951,164.955-164.951h286.233h62.982 h97.659V1317.061z"}),wp.element.createElement(a,{d:"M1286.726,1044.13c-59.533,0-107.97,48.437-107.97,107.97c0,59.534,48.437,107.971,107.97,107.971 c59.534,0,107.971-48.437,107.971-107.971C1394.696,1092.566,1346.26,1044.13,1286.726,1044.13z M1286.726,1197.088 c-24.805,0-44.987-20.184-44.987-44.988s20.183-44.987,44.987-44.987s44.988,20.183,44.988,44.987 S1311.53,1197.088,1286.726,1197.088z"}))},warning:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M770.8,796.605v265.968c0,71.216,57.939,129.154,129.154,129.154c71.209,0,129.148-57.938,129.157-129.154 l-0.009-265.964c0-71.215-57.93-129.154-129.148-129.154C828.739,667.456,770.8,725.39,770.8,796.605z M966.08,796.609 l0.009,265.96c-0.009,36.469-29.672,66.138-66.135,66.138c-36.464,0-66.133-29.669-66.133-66.134V796.605 c0-36.465,29.668-66.129,66.133-66.129C936.417,730.476,966.08,760.145,966.08,796.609z"}),wp.element.createElement(a,{d:"M899.954,1231.867c-71.566,0-129.787,58.221-129.787,129.787c0,71.572,58.221,129.796,129.787,129.796 c71.569,0,129.791-58.224,129.791-129.796C1029.744,1290.088,971.522,1231.867,899.954,1231.867z M899.954,1428.43 c-36.816,0-66.766-29.954-66.766-66.775c0-36.816,29.95-66.767,66.766-66.767c36.814,0,66.768,29.95,66.768,66.767 C966.722,1398.476,936.768,1428.43,899.954,1428.43z"}),wp.element.createElement(a,{d:"M1790.452,1630.839L927.246,135.725c-5.635-9.75-16.037-15.755-27.292-15.755 c-11.258,0-21.659,6.004-27.29,15.755L8.344,1632.76c-5.627,9.751-5.627,21.761,0,31.511c5.631,9.75,16.032,15.755,27.29,15.755 h1728.644c0.037,0.004,0.063,0.004,0.089,0c17.4,0,31.511-14.106,31.511-31.51 C1795.877,1641.964,1793.882,1635.881,1790.452,1630.839z M90.21,1617.004L899.954,214.5l809.745,1402.503H90.21z"}))},webpage:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1718.199,2.029H81.579c-43.977,0-79.754,35.772-79.754,79.741v1636.633 c0,43.973,35.777,79.749,79.754,79.749h1636.62c43.969,0,79.745-35.776,79.745-79.749V81.77 C1797.944,37.801,1762.168,2.029,1718.199,2.029z M1734.873,1718.402c0,9.195-7.479,16.679-16.674,16.679H81.579 c-9.204,0-16.683-7.483-16.683-16.679V340.556h1669.977V1718.402z M1734.873,277.485H64.896V81.77c0-9.19,7.479-16.67,16.683-16.67 h1636.62c9.194,0,16.674,7.479,16.674,16.67V277.485z"}),wp.element.createElement(o,{cx:"201.36",cy:"168.237",r:"50.682"}),wp.element.createElement(o,{cx:"361.29",cy:"168.237",r:"50.682"}),wp.element.createElement(o,{cx:"521.221",cy:"168.237",r:"50.682"}),wp.element.createElement(a,{d:"M691.019,1349.104c4.712,2.503,9.771,3.687,14.76,3.687c11.293,0,22.218-6.085,27.884-16.753 l362.28-682.476c8.166-15.385,2.314-34.475-13.066-42.64c-15.385-8.166-34.474-2.31-42.639,13.067l-362.291,682.476 C669.782,1321.85,675.634,1340.939,691.019,1349.104z"}),wp.element.createElement(a,{d:"M281.378,967.035c0.018,0.29,0.062,0.576,0.083,0.871c0.181,2.38,0.647,4.765,1.395,7.114 c0.105,0.325,0.184,0.659,0.299,0.984c0.136,0.388,0.317,0.771,0.471,1.153c0.233,0.599,0.466,1.193,0.739,1.773 c0.021,0.048,0.04,0.102,0.066,0.153c0.057,0.124,0.141,0.229,0.202,0.353c0.537,1.091,1.144,2.143,1.804,3.162 c0.176,0.282,0.352,0.561,0.542,0.832c0.743,1.078,1.544,2.12,2.424,3.103c0.163,0.18,0.338,0.339,0.501,0.514 c0.739,0.788,1.526,1.541,2.354,2.254c0.303,0.259,0.603,0.515,0.911,0.765c0.858,0.688,1.75,1.333,2.692,1.936 c0.176,0.115,0.344,0.247,0.524,0.356c0.928,0.567,1.888,1.091,2.891,1.57l315.32,150.776c4.391,2.098,9.019,3.092,13.581,3.092 c11.769,0,23.058-6.616,28.469-17.941c7.515-15.71,0.871-34.54-14.844-42.055L385.988,965.481l255.813-122.323 c15.715-7.514,22.359-26.344,14.844-42.055c-7.51-15.714-26.344-22.367-42.05-14.848L299.592,936.882 c-0.009,0.004-0.018,0.004-0.022,0.008l-0.295,0.141c-0.264,0.128-0.501,0.282-0.761,0.414c-0.633,0.321-1.263,0.646-1.874,1.016 c-0.356,0.212-0.69,0.449-1.038,0.678c-0.515,0.335-1.034,0.674-1.536,1.042c-0.37,0.274-0.712,0.573-1.074,0.859 c-0.44,0.36-0.879,0.712-1.307,1.1c-0.356,0.325-0.695,0.673-1.033,1.012c-0.388,0.383-0.774,0.761-1.145,1.166 c-0.343,0.383-0.66,0.779-0.981,1.175c-0.33,0.396-0.66,0.787-0.968,1.205c-0.334,0.453-0.638,0.919-0.946,1.391 c-0.255,0.392-0.528,0.774-0.77,1.179c-0.331,0.55-0.621,1.117-0.911,1.681c-0.167,0.317-0.352,0.607-0.501,0.928 c-0.026,0.054-0.044,0.103-0.066,0.154c-0.273,0.581-0.506,1.175-0.739,1.769c-0.154,0.388-0.335,0.77-0.471,1.157 c-0.115,0.325-0.194,0.66-0.299,0.99c-0.748,2.345-1.214,4.729-1.395,7.109c-0.022,0.291-0.066,0.581-0.083,0.872 c-0.027,0.518-0.005,1.037-0.005,1.556C281.373,965.997,281.351,966.512,281.378,967.035z"}),wp.element.createElement(a,{d:"M1117.246,1129.855c5.411,11.325,16.705,17.941,28.474,17.941c4.558,0,9.19-0.994,13.576-3.092 l315.321-150.776c1.003-0.479,1.967-1.003,2.89-1.57c0.181-0.109,0.349-0.241,0.523-0.356c0.942-0.603,1.839-1.248,2.692-1.936 c0.313-0.25,0.612-0.506,0.916-0.765c0.826-0.713,1.61-1.466,2.35-2.254c0.166-0.175,0.343-0.334,0.501-0.514 c0.88-0.982,1.681-2.024,2.429-3.103c0.184-0.271,0.361-0.55,0.54-0.832c0.661-1.02,1.268-2.071,1.805-3.162 c0.063-0.124,0.145-0.229,0.202-0.353c0.022-0.052,0.039-0.105,0.065-0.153c0.274-0.58,0.503-1.175,0.74-1.773 c0.153-0.383,0.334-0.766,0.47-1.153c0.115-0.325,0.193-0.659,0.301-0.984c0.746-2.35,1.209-4.734,1.393-7.114 c0.022-0.295,0.066-0.581,0.081-0.871c0.026-0.523,0.008-1.038,0.008-1.554c0-0.519,0.019-1.038-0.008-1.556 c-0.015-0.291-0.059-0.581-0.081-0.872c-0.184-2.381-0.646-4.765-1.393-7.109c-0.107-0.33-0.186-0.665-0.301-0.99 c-0.136-0.388-0.316-0.77-0.47-1.157c-0.237-0.594-0.466-1.188-0.74-1.769c-0.026-0.052-0.043-0.101-0.065-0.154 c-0.154-0.32-0.34-0.616-0.506-0.928c-0.291-0.567-0.58-1.131-0.906-1.681c-0.246-0.408-0.52-0.802-0.783-1.197 c-0.304-0.457-0.599-0.923-0.933-1.368c-0.316-0.427-0.655-0.831-0.994-1.236c-0.308-0.383-0.616-0.77-0.95-1.135 c-0.383-0.427-0.787-0.822-1.192-1.224c-0.321-0.319-0.638-0.646-0.973-0.954c-0.458-0.413-0.938-0.796-1.417-1.183 c-0.315-0.256-0.624-0.523-0.954-0.767c-0.559-0.418-1.14-0.795-1.72-1.174c-0.281-0.181-0.555-0.375-0.841-0.546 c-0.712-0.431-1.447-0.818-2.195-1.192c-0.167-0.079-0.316-0.18-0.483-0.26l-0.186-0.088c-0.062-0.03-0.132-0.065-0.197-0.097 l-314.938-150.59c-15.696-7.51-34.536-0.863-42.05,14.848c-7.515,15.711-0.867,34.541,14.844,42.055l255.817,122.323 l-255.817,122.319C1116.379,1095.315,1109.731,1114.146,1117.246,1129.855z"}))},wifi:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M294.904,16.65C141.476,16.65,16.65,141.476,16.65,294.904c0,153.429,124.825,278.25,278.254,278.25 c513.876,0,931.945,418.065,931.945,931.941c0,153.429,124.825,278.254,278.25,278.254s278.25-124.825,278.25-278.254 C1783.35,684.362,1115.638,16.65,294.904,16.65z M1505.1,1721.313c-119.222,0-216.214-96.996-216.214-216.218 c0-548.079-445.898-993.978-993.981-993.978c-119.226,0-216.218-96.992-216.218-216.214c0-119.221,96.992-216.218,216.218-216.218 c786.522,0,1426.409,639.883,1426.409,1426.409C1721.313,1624.317,1624.321,1721.313,1505.1,1721.313z"}),wp.element.createElement(a,{d:"M197.376,778.602c-98.892,0-179.345,80.458-179.345,179.35s80.454,179.35,179.345,179.35 c255.57,0,463.497,207.923,463.497,463.493c0,98.892,80.453,179.345,179.35,179.345c98.892,0,179.345-80.453,179.345-179.345 C1019.567,1147.436,650.734,778.602,197.376,778.602z M840.223,1718.103c-64.685,0-117.313-52.624-117.313-117.309 c0-289.778-235.751-525.529-525.533-525.529c-64.685,0-117.309-52.629-117.309-117.313s52.625-117.313,117.309-117.313 c419.151,0,760.155,341.004,760.155,760.156C957.531,1665.479,904.907,1718.103,840.223,1718.103z"}),wp.element.createElement(a,{d:"M251.519,1319.255c-127.067,0-230.442,103.375-230.442,230.442c0,127.066,103.375,230.441,230.442,230.441 s230.442-103.375,230.442-230.441C481.961,1422.63,378.586,1319.255,251.519,1319.255z M251.519,1718.103 c-92.86,0-168.406-75.546-168.406-168.405c0-92.86,75.546-168.406,168.406-168.406s168.406,75.546,168.406,168.406 C419.925,1642.557,344.379,1718.103,251.519,1718.103z"}))},world:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M1627.938,384.003c-12.13-17.064-24.856-33.673-38.118-49.817 C1425.985,134.806,1177.596,7.414,900.004,7.414c-277.596,0-525.985,127.392-689.825,326.772 c-13.27,16.144-25.988,32.752-38.122,49.817C68.421,529.789,7.417,707.905,7.417,899.997c0,193.195,61.719,372.25,166.447,518.491 c12.194,17.021,24.947,33.613,38.277,49.705c163.849,198.021,411.368,324.393,687.863,324.393 c276.49,0,524.014-126.371,687.858-324.393c13.326-16.092,26.084-32.684,38.273-49.705 c104.725-146.241,166.447-325.296,166.447-518.491C1792.583,707.905,1731.583,529.789,1627.938,384.003z M1538.661,370.69 c-14.208,9.139-29.117,18.046-44.792,26.668c-46.543,25.601-97.693,47.778-152.398,66.383 c-21.347-67.829-47.821-130.984-79.089-187.832c-39.409-71.671-84.575-129.96-133.772-173.723 C1291.124,148.828,1433.377,243.88,1538.661,370.69z M1359.744,643.08c9.006,0,17.533,2.022,25.231,5.559 c20.911,9.604,35.502,30.696,35.502,55.178c0,18.967-8.748,35.919-22.413,47.063c-10.46,8.528-23.799,13.666-38.32,13.666 c-8.459,0-16.51-1.739-23.833-4.88c-21.673-9.285-36.909-30.816-36.909-55.85c0-19.525,9.303-36.883,23.661-48.001 C1332.934,647.865,1345.777,643.08,1359.744,643.08z M931.363,72.248c102.999,13.842,200.043,95.649,276.063,233.884 c29.271,53.217,54.09,112.439,74.167,176.138c-107.509,30.102-226.449,47.123-350.23,49.584V72.248z M931.363,594.58 c129.529-2.487,254.326-20.361,367.476-52.055c4.083,15.843,7.878,31.935,11.402,48.234 c-43.492,19.112-73.951,62.588-73.951,113.059c0,61.521,45.234,112.655,104.19,121.932c0.706,14.87,1.205,29.835,1.484,44.86 h-322.077c-10.74-43.845-44.964-78.56-88.524-90.014V594.58z M1297.884,1261.146c-112.896-31.539-237.361-49.31-366.521-51.788 V1019.4c42.252-11.102,75.702-44.095,87.482-86.072h323.038C1339.443,1048.607,1324.384,1159.661,1297.884,1261.146z M1310.731,1488.752c-0.004,33.493-27.249,60.738-60.733,60.738c-0.727,0-1.424-0.086-2.143-0.112 c-23.153-0.817-43.01-14.612-52.536-34.354c-3.847-7.96-6.063-16.849-6.063-26.272c0-29.946,21.797-54.825,50.338-59.782 c3.386-0.594,6.85-0.955,10.399-0.955c19.568,0,36.952,9.337,48.07,23.751C1305.973,1462.032,1310.731,1474.829,1310.731,1488.752 z M868.646,72.248v459.606c-123.79-2.461-242.727-19.483-350.244-49.576c4.759-15.094,9.785-29.938,15.068-44.499 c2.539,0.155,5.086,0.258,7.659,0.258c68.069,0,123.454-55.385,123.454-123.454c0-29.806-10.619-57.171-28.261-78.525 C704.307,140.283,784.484,83.556,868.646,72.248z M501.166,542.525c113.145,31.703,237.95,49.568,367.48,52.055v186.016 c-43.57,11.454-77.785,46.168-88.533,90.014H458.035C460.187,755.304,474.953,644.173,501.166,542.525z M480.392,314.583 c0-33.493,27.245-60.738,60.738-60.738c2.96,0,5.843,0.284,8.691,0.693c22.891,3.304,41.659,19.362,48.854,40.76 c2.039,6.066,3.192,12.538,3.192,19.285c0,26.965-17.676,49.86-42.046,57.76c-5.895,1.919-12.168,2.978-18.691,2.978 c-16.876,0-32.15-6.928-43.166-18.071C487.113,346.268,480.392,331.2,480.392,314.583z M671.399,102.187 c-30.326,26.969-59.12,59.446-85.96,97.199c-13.769-5.314-28.699-8.257-44.31-8.257c-68.069,0-123.455,55.381-123.455,123.455 c0,43.311,22.443,81.459,56.28,103.498c-5.396,14.965-10.55,30.188-15.421,45.661c-54.705-18.605-105.856-40.782-152.403-66.383 c-15.671-8.623-30.584-17.529-44.792-26.668C366.619,243.88,508.876,148.828,671.399,102.187z M223.002,420.56 c16.746,10.946,34.353,21.548,52.906,31.754c50.506,27.778,106.003,51.753,165.312,71.727 c-28.002,107.586-43.716,225.008-45.91,346.569H70.676C76.528,703.387,132.076,548.574,223.002,420.56z M464.894,1048.917 c16.385,10.886,27.219,29.491,27.219,50.609c0,15.489-5.877,29.603-15.464,40.342c-11.127,12.479-27.271,20.387-45.256,20.387 h-0.009c-5.267,0-10.353-0.749-15.24-2.014c-26.126-6.79-45.497-30.507-45.497-58.715c0-22.719,12.547-42.537,31.065-52.95 c8.778-4.939,18.889-7.796,29.672-7.796C443.767,1038.78,455.281,1042.532,464.894,1048.917z M70.797,933.328h324.599 c0.318,15.946,0.878,31.832,1.661,47.631c-51.418,14.905-89.127,62.391-89.127,118.567c0,67.122,53.879,121.879,120.666,123.368 c4.156,19.164,8.683,38.07,13.579,56.676c-59.67,20.042-115.485,44.129-166.258,72.054c-17.848,9.811-34.818,19.999-50.987,30.498 C133.582,1254.58,77.423,1100.223,70.797,933.328z M263.491,1431.844c13.562-8.648,27.761-17.081,42.64-25.266 c46.874-25.781,98.412-48.087,153.539-66.77c21.152,66.478,47.227,128.437,77.949,184.278 c39.421,71.675,84.583,129.977,133.79,173.744C509.986,1651.499,368.555,1557.381,263.491,1431.844z M868.646,1727.753 c-103.008-13.847-200.052-95.65-276.073-233.88c-28.717-52.21-53.139-110.211-73.009-172.532 c107.207-29.912,225.739-46.805,349.082-49.267V1727.753z M868.646,1209.357c-129.168,2.479-253.638,20.249-366.534,51.788 c-4.518-17.322-8.7-34.93-12.547-52.777c38.811-20.834,65.264-61.813,65.264-108.842c0-58.312-40.635-107.276-95.065-120.133 c-0.783-15.267-1.316-30.636-1.652-46.065h323.042c11.789,41.978,45.239,74.971,87.492,86.072V1209.357z M868.646,951.916 c-7.745-4.698-14.38-11.041-19.362-18.588c-6.316-9.578-10.017-21.015-10.017-33.331c0-10.654,2.78-20.67,7.625-29.388 c5.154-9.285,12.693-17.039,21.754-22.529c9.165-5.559,19.878-8.82,31.358-8.82s22.185,3.261,31.359,8.82 c9.061,5.49,16.6,13.244,21.754,22.529c4.846,8.717,7.625,18.734,7.625,29.388c0,12.316-3.709,23.753-10.025,33.331 c-4.975,7.547-11.609,13.89-19.354,18.588c-9.174,5.559-19.879,8.82-31.359,8.82S877.811,957.475,868.646,951.916z M931.363,1727.753v-455.679c123.342,2.462,241.87,19.354,349.077,49.267c-4.858,15.224-9.961,30.223-15.356,44.921 c-4.953-0.619-9.982-0.964-15.099-0.964c-68.065,0-123.445,55.385-123.445,123.454c0,31.746,12.052,60.729,31.818,82.63 C1091.523,1662.669,1013.33,1716.737,931.363,1727.753z M1128.592,1697.831c28.923-25.73,56.435-56.503,82.217-92.035 c12.319,4.13,25.49,6.411,39.189,6.411c68.062,0,123.446-55.386,123.45-123.455c-0.004-40.635-19.745-76.734-50.14-99.247 c5.998-16.247,11.656-32.838,17.018-49.696c55.135,18.683,106.673,40.988,153.543,66.77c14.879,8.185,29.082,16.617,42.645,25.274 C1431.445,1557.39,1290.019,1651.499,1128.592,1697.831z M1575.07,1382.122c-16.169-10.499-33.14-20.688-50.979-30.498 c-50.772-27.925-106.592-52.012-166.267-72.054c28.286-107.405,44.301-224.724,46.783-346.242h324.6 c0.435-11.049,0.658-22.168,0.658-33.331c0,0.009,0,0.009,0,0.009c0,11.154-0.224,22.264-0.658,33.322l0,0 C1722.577,1100.223,1666.418,1254.58,1575.07,1382.122z M1729.324,870.609L1729.324,870.609H1404.69 c-0.31-17.143-0.886-34.207-1.733-51.168c46.817-17.564,80.237-62.751,80.237-115.624c0-63.844-48.72-116.527-110.93-122.826 c-4.122-19.259-8.613-38.251-13.48-56.951c59.31-19.973,114.802-43.948,165.304-71.727c18.558-10.206,36.164-20.816,52.915-31.754 C1667.924,548.574,1723.477,703.379,1729.324,870.609h20.52l0,0H1729.324z"}))},write:function(e){return wp.element.createElement(s,l({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 1800"},e),wp.element.createElement(a,{d:"M241.023,324.818c0.252,0,0.505,0.035,0.758,0.035h465.68c17.266,0,31.256-13.99,31.256-31.252 c0-17.262-13.99-31.247-31.256-31.247H351.021h-109.24c-17.258,0-31.252,13.985-31.252,31.247 C210.529,310.605,224.121,324.412,241.023,324.818z"}),wp.element.createElement(a,{d:"M210.529,450.306c0,17.257,13.994,31.252,31.252,31.252h769.451c17.262,0,31.256-13.995,31.256-31.252 c0-17.266-13.994-31.252-31.256-31.252H241.781C224.523,419.054,210.529,433.04,210.529,450.306z"}),wp.element.createElement(a,{d:"M1011.232,575.751H241.781c-8.149,0-15.549,3.147-21.116,8.261c-6.213,5.712-10.136,13.879-10.136,22.987 c0,17.262,13.994,31.26,31.252,31.26h769.451c17.262,0,31.256-13.999,31.256-31.26c0-9.108-3.923-17.275-10.141-22.987 C1026.781,578.898,1019.386,575.751,1011.232,575.751z"}),wp.element.createElement(a,{d:"M1011.232,732.461H241.781c-17.258,0-31.252,13.99-31.252,31.247c0,17.262,13.994,31.257,31.252,31.257 h769.451c17.262,0,31.256-13.995,31.256-31.257C1042.488,746.451,1028.494,732.461,1011.232,732.461z"}),wp.element.createElement(a,{d:"M1011.232,889.157H241.781c-8.149,0-15.549,3.147-21.116,8.261c-6.213,5.713-10.136,13.879-10.136,22.987 c0,17.257,13.994,31.261,31.252,31.261h769.451c17.262,0,31.256-14.004,31.256-31.261c0-9.108-3.923-17.274-10.141-22.987 C1026.781,892.305,1019.386,889.157,1011.232,889.157z"}),wp.element.createElement(a,{d:"M1011.232,1045.867H241.781c-17.258,0-31.252,13.99-31.252,31.243c0,17.271,13.994,31.265,31.252,31.265 h769.451c17.262,0,31.256-13.994,31.256-31.265C1042.488,1059.857,1028.494,1045.867,1011.232,1045.867z"}),wp.element.createElement(a,{d:"M1011.232,1202.576H241.781c-17.258,0-31.252,13.995-31.252,31.252c0,17.258,13.994,31.252,31.252,31.252 h769.451c17.262,0,31.256-13.994,31.256-31.252C1042.488,1216.571,1028.494,1202.576,1011.232,1202.576z"}),wp.element.createElement(a,{d:"M1011.232,1359.273H241.781c-8.149,0-15.549,3.151-21.116,8.265c-6.213,5.713-10.136,13.875-10.136,22.987 c0,17.258,13.994,31.261,31.252,31.261h769.451c17.262,0,31.256-14.003,31.256-31.261c0-9.112-3.923-17.274-10.141-22.987 C1026.781,1362.425,1019.386,1359.273,1011.232,1359.273z"}),wp.element.createElement(a,{d:"M1233.542,251.228l-49.851-45.109L1052.136,87.076l-59.185-53.554c-5.293-4.792-11.947-7.421-18.786-7.836 h-3.49H83.676c-45.688,0-82.858,37.375-82.858,83.316v1583.612c0,45.94,37.17,83.316,82.858,83.316h1078.562 c45.68,0,82.845-37.376,82.845-83.316V277.08v-3.182C1244.646,264.73,1240.261,256.589,1233.542,251.228z M1003.117,125.864 l131.119,118.657h-131.119V125.864z M1183.691,1692.613c0,12.094-9.622,21.926-21.454,21.926H83.676 c-11.836,0-21.467-9.832-21.467-21.926V109.001c0-12.089,9.631-21.925,21.467-21.925h857.857V275.38 c0,17.052,13.785,30.862,30.786,30.862h211.372V1692.613z"}),wp.element.createElement(a,{d:"M1798.578,180.737c-7.049-88.305-81.114-158.02-171.205-158.02c-0.004,0-0.004,0-0.004,0 c-45.889,0-89.033,17.874-121.479,50.32c-29.18,29.175-46.519,67.005-49.73,107.699h-0.586v13.609c0,0.06-0.005,0.115-0.005,0.175 c0,0.026,0.005,0.056,0.005,0.082l-0.005,1369.26h0.197c0.557,5.404,2.522,10.731,6.047,15.373l141.135,185.91 c5.803,7.648,14.851,12.136,24.447,12.136c9.601-0.004,18.646-4.496,24.447-12.14l141.093-185.897 c3.528-4.65,5.494-9.982,6.051-15.391h0.197V180.737H1798.578z M1549.299,116.448c20.854-20.855,48.578-32.339,78.07-32.339h0.004 c50.24,0,92.746,33.723,106.076,79.718h-212.19C1526.358,146.098,1535.896,129.852,1549.299,116.448z M1595.372,1502.468 l-78.413,0.005l0.005-1260.345h220.828v1260.336h-81.103l0.009-1016.486l-61.335,0.004L1595.372,1502.468z M1627.382,1695.821 l-100.171-131.963l200.338-0.004L1627.382,1695.821z"}))}}}},function(e,t,n){"use strict";var l=n(0),r=n.n(l),o=n(135),a=n(136);n(72);function c(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);t&&(l=l.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,l)}return n}function i(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function s(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=e&&("undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"]);if(null==n)return;var l,r,o=[],a=!0,c=!1;try{for(n=n.call(e);!(a=(l=n.next()).done)&&(o.push(l.value),!t||o.length!==t);a=!0);}catch(e){c=!0,r=e}finally{try{a||null==n.return||n.return()}finally{if(c)throw r}}return o}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return p(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return p(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function p(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,l=new Array(t);n<t;n++)l[n]=e[n];return l}var m=wp.i18n.__,u=wp.components,d=u.Button,b=u.Dropdown,g=wp.compose.useInstanceId,h=wp.element,w=h.Fragment,f=h.useEffect,y=h.useState;t.a=function e(t){var n=t.label,l=t.attributes,p=t.setAttributes,u=t.resetValues,h=t.onClick,v=t.children;f((function(){for(var e in u){if(u[e]!==l[e])return C(!0);C(!1)}}),[l]);var k=g(e),E=s(y(!1),2),T=E[0],C=E[1],x="inspector-control-panel-control-".concat(k);return wp.element.createElement("div",{className:"wp-block-themeisle-blocks-control-panel-control"},wp.element.createElement("div",{className:"components-base-control__field"},wp.element.createElement("div",{className:"components-base-control__title"},wp.element.createElement("label",{className:"components-base-control__label",for:x},n),wp.element.createElement("div",{className:"floating-controls"},wp.element.createElement(b,{position:"top left",headerTitle:n,expandOnMobile:!0,renderToggle:function(e){var t=e.isOpen,l=e.onToggle;return wp.element.createElement(w,null,T&&wp.element.createElement(d,{icon:wp.element.createElement(o.a,{icon:a.a}),label:m("Reset to default"),shotTooltip:!0,isTertiary:!0,onClick:function(){return p(function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?c(Object(n),!0).forEach((function(t){i(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):c(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({},u))}}),wp.element.createElement(d,{id:x,icon:"admin-settings",label:n,shotTooltip:!0,onClick:function(){l(),h&&h()},"aria-expanded":t,className:r()({"is-active":T})}))},renderContent:function(){return wp.element.createElement("div",{className:"wp-block-themeisle-popover-settings"},v)}})))))}},,function(e,t,n){"use strict";var l=n(0),r=n.n(l);n(57);function o(e){return function(e){if(Array.isArray(e))return i(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||c(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function a(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=e&&("undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"]);if(null==n)return;var l,r,o=[],a=!0,c=!1;try{for(n=n.call(e);!(a=(l=n.next()).done)&&(o.push(l.value),!t||o.length!==t);a=!0);}catch(e){c=!0,r=e}finally{try{a||null==n.return||n.return()}finally{if(c)throw r}}return o}(e,t)||c(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function c(e,t){if(e){if("string"==typeof e)return i(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?i(e,t):void 0}}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,l=new Array(t);n<t;n++)l[n]=e[n];return l}var s=lodash,p=s.startCase,m=s.toLower,u=wp.i18n.__,d=wp.compose.useInstanceId,b=wp.components,g=b.Button,h=b.BaseControl,w=b.Dropdown,f=b.MenuGroup,y=b.MenuItem,v=b.SelectControl,k=b.TextControl,E=wp.element,T=E.useEffect,C=E.useState;t.a=function e(t){var n=t.label,l=t.value,c=t.valueVariant,i=t.valueStyle,s=t.valueTransform,b=t.isSelect,E=void 0!==b&&b,x=t.onChangeFontFamily,M=t.onChangeFontVariant,S=t.onChangeFontStyle,z=t.onChangeTextTransform,O=d(e);T((function(){fetch("https://www.googleapis.com/webfonts/v1/webfonts?key=AIzaSyClGdkPJ1BvgLOol5JAkQY4Mv2lkLYu00k").then((function(e){return e.json()})).then((function(e){H(e.items),l&&e.items.find((function(e){if(l===e.family){var t=e.variants.filter((function(e){return!1===e.includes("italic")})).map((function(e){return{label:p(m(e)),value:e}}));return A(t)}}))}))}),[]);var B=a(C(null),2),L=B[0],H=B[1],P=a(C(null),2),_=P[0],A=P[1],V=a(C(""),2),j=V[0],N=V[1],R="inspector-google-fonts-control-".concat(O);return wp.element.createElement("div",{className:"wp-block-themeisle-blocks-google-fonts-control"},wp.element.createElement(h,{label:n,id:R},null!==L?E?wp.element.createElement(v,{value:l||"",id:R,options:[{label:u("Default"),value:""}].concat(o(L.map((function(e){return{label:e.family,value:e.family}})))),onChange:function(e){var t=[];if(""===e)return t=[{label:u("Regular"),value:"regular"},{label:u("Italic"),value:"italic"}],x(void 0),void A(t);x(e),t=L.find((function(t){return e===t.family})).variants.filter((function(e){return!1===e.includes("italic")})).map((function(e){return{label:p(m(e)),value:e}})),A(t)}}):wp.element.createElement(w,{contentClassName:"wp-block-themeisle-blocks-google-fonts-popover",position:"bottom center",renderToggle:function(e){var t=e.isOpen,n=e.onToggle;return wp.element.createElement(g,{isLarge:!0,className:"wp-block-themeisle-blocks-google-fonts-button",id:R,onClick:n,"aria-expanded":t},l||u("Select Font Family"))},renderContent:function(e){var t=e.onToggle;return wp.element.createElement(f,{label:u("Google Fonts")},wp.element.createElement(k,{value:j,onChange:function(e){return N(e)}}),wp.element.createElement("div",{className:"components-popover__items"},wp.element.createElement(y,{onClick:function(){t(),x(void 0),A([]),N("")}},u("Default")),L.map((function(e){if(!j||e.family.toLowerCase().includes(j.toLowerCase()))return wp.element.createElement(y,{className:r()({"is-selected":e.family===l}),onClick:function(){t(),x(e.family);var n=e.variants.filter((function(e){return!1===e.includes("italic")})).map((function(e){return{label:p(m(e)),value:e}}));A(n),N("")}},e.family)}))))}}):u("Loading…")),_&&wp.element.createElement(v,{label:u("Font Width"),value:c||"regular",options:_,onChange:M}),wp.element.createElement(v,{label:u("Font Style"),value:i,options:[{label:u("Regular"),value:"normal"},{label:u("Italic"),value:"italic"}],onChange:S}),wp.element.createElement(v,{label:u("Font Transform"),value:s,options:[{label:u("Default"),value:"none"},{label:u("Uppercase"),value:"uppercase"},{label:u("Lowercase"),value:"lowercase"},{label:u("Capitalize"),value:"capitalize"}],onChange:z}))}},function(e,t,n){"use strict";n.d(t,"b",(function(){return d})),n.d(t,"a",(function(){return b}));var l=n(0),r=n.n(l),o=(n(79),wp.components),a=o.BaseControl,c=o.Button,i=o.Dropdown,s=o.Toolbar,p=wp.compose.useInstanceId,m=wp.blockEditor.BlockControls,u=wp.element.Fragment,d=function e(t){var n=t.label,l=t.value,o=t.options,i=t.onChange,s=p(e),m="inspector-style-switcher-control-".concat(s);return wp.element.createElement(a,{id:m,label:n},wp.element.createElement("div",{className:"wp-block-themeisle-blocks-style-switcher"},o.map((function(e){return wp.element.createElement(c,{className:r()("wp-block-themeisle-blocks-style-switcher-item",{"is-active":e.value===l}),tabIndex:"0",onClick:function(){return function(e){return i(e)}(e.value)}},wp.element.createElement("div",{className:"wp-block-themeisle-blocks-style-switcher-item-preview"},wp.element.createElement("img",{src:e.image})),wp.element.createElement("div",{className:"wp-block-themeisle-blocks-style-switcher-item-label"},e.label))}))))},b=function(e){var t=e.label,n=e.value,l=e.options,o=e.onChange;return wp.element.createElement(m,null,wp.element.createElement(s,null,wp.element.createElement(i,{contentClassName:"wp-themesiel-blocks-block-styles-popover-content",position:"bottom center",renderToggle:function(e){var n=e.isOpen,l=e.onToggle;return wp.element.createElement(c,{className:"components-dropdown-menu__toggle",icon:"admin-appearance",onClick:l,"aria-haspopup":"true","aria-expanded":n,label:t,showTooltip:!0},wp.element.createElement("span",{className:"components-dropdown-menu__indicator"}))},renderContent:function(){return wp.element.createElement(u,null,wp.element.createElement("div",{className:"wp-block-themeisle-blocks-style-switcher"},l.map((function(e){return wp.element.createElement(c,{className:r()("wp-block-themeisle-blocks-style-switcher-item",{"is-active":e.value===n}),tabIndex:"0",onClick:function(){return function(e){return o(e)}(e.value)}},wp.element.createElement("div",{className:"wp-block-themeisle-blocks-style-switcher-item-preview"},wp.element.createElement("img",{src:e.image})),wp.element.createElement("div",{className:"wp-block-themeisle-blocks-style-switcher-item-label"},e.label))}))))}})))}},,,function(e,t,n){"use strict";n.r(t);var l=n(0),r=n.n(l);n(91),t.default=function(e){var t=e.type,n=e.front,l=e.style,o=e.fill,a=e.invert,c=e.width,i=e.height;return"none"!==l&&wp.element.createElement("div",{className:r()("wp-block-themeisle-blocks-advanced-columns-separators",t),style:!n&&c?{transform:"".concat(c?"scaleX( ".concat(c/100," )"):"")}:{}},"bigTriangle"===l&&!1===a&&wp.element.createElement("svg",{id:"bigTriangle",fill:o,viewBox:"0 0 100 100",width:"100%",height:i?"".concat(i,"px"):"100",preserveAspectRatio:"none",xmlns:"http://www.w3.org/2000/svg",className:r()({rotate:"bottom"===t})},wp.element.createElement("path",{d:"M0 0 L50 100 L100 0 Z"})),"bigTriangle"===l&&!0===a&&wp.element.createElement("svg",{id:"bigTriangle",fill:o,viewBox:"0 0 100 100",width:"100%",height:i?"".concat(i,"px"):"100",preserveAspectRatio:"none",xmlns:"http://www.w3.org/2000/svg",className:r()({rotate:"top"===t})},wp.element.createElement("path",{d:"M100, 0l-50, 100l-50, -100l0, 100l100, 0l0, -100Z"})),"rightCurve"===l&&!1===a&&wp.element.createElement("svg",{id:"rightCurve",fill:o,viewBox:"0 0 100 100",width:"100%",height:i?"".concat(i,"px"):"100",preserveAspectRatio:"none",xmlns:"http://www.w3.org/2000/svg",className:r()({rotate:"top"===t})},wp.element.createElement("path",{d:"M0 100 C 20 0 50 0 100 100 Z"})),"rightCurve"===l&&!0===a&&wp.element.createElement("svg",{id:"rightCurve",fill:o,viewBox:"0 0 100 100",width:"100%",height:i?"".concat(i,"px"):"100",preserveAspectRatio:"none",xmlns:"http://www.w3.org/2000/svg",className:r()({rotate:"top"===t})},wp.element.createElement("path",{d:"M0 100 C 50 0 70 0 100 100 Z"})),"curve"===l&&wp.element.createElement("svg",{id:"curve",fill:o,viewBox:"0 0 100 100",width:"100%",height:i?"".concat(i,"px"):"100",preserveAspectRatio:"none",xmlns:"http://www.w3.org/2000/svg",className:r()({rotate:"top"===t})},wp.element.createElement("path",{d:"M0 100 C40 0 60 0 100 100 Z"})),"slant"===l&&!1===a&&wp.element.createElement("svg",{id:"slant",fill:o,viewBox:"0 0 100 100",width:"100%",height:i?"".concat(i,"px"):"100",preserveAspectRatio:"none",xmlns:"http://www.w3.org/2000/svg",className:r()({rotate:"bottom"===t})},wp.element.createElement("path",{d:"M0 0 L100 100 L100 0 Z"})),"slant"===l&&!0===a&&wp.element.createElement("svg",{id:"slant",fill:o,viewBox:"0 0 100 100",width:"100%",height:i?"".concat(i,"px"):"100",preserveAspectRatio:"none",xmlns:"http://www.w3.org/2000/svg",className:r()({rotate:"bottom"===t})},wp.element.createElement("path",{d:"M0 0 L0 100 L100 0 Z"})),"cloud"===l&&wp.element.createElement("svg",{id:"cloud",fill:o,viewBox:"0 0 100 100",width:"100%",height:i?"".concat(i,"px"):"100",preserveAspectRatio:"none",xmlns:"http://www.w3.org/2000/svg",className:r()({rotate:"top"===t})},wp.element.createElement("path",{d:"M-5 100 Q 10 -100 15 100 Z M10 100 Q 20 -20 30 100 M25 100 Q 35 -70 45 100 M40 100 Q 50 -100 60 100 M55 100 Q 65 -20 75 100 M70 100 Q 75 -45 90 100 M85 100 Q 90 -50 95 100 M90 100 Q 95 -25 105 100 Z"})))}},,function(e,t,n){"use strict";n.r(t);n(89);var l=n(3),r=wp.i18n.__,o=wp.components,a=o.Button,c=o.ButtonGroup,i=o.Icon,s=wp.compose.useInstanceId;t.default=function e(t){var n=t.label,o=t.backgroundType,p=t.changeBackgroundType,m=s(e),u="inspector-background-control-".concat(m);return wp.element.createElement("div",{id:u,className:"components-base-control wp-block-themeisle-blocks-advanced-columns-background-control"},wp.element.createElement("div",{className:"components-base-control__field"},wp.element.createElement("div",{className:"components-base-control__title"},wp.element.createElement("label",{className:"components-base-control__label"},n),wp.element.createElement(c,{className:"linking-controls"},wp.element.createElement(a,{icon:"admin-customizer",label:r("Color"),showTootlip:!0,isPrimary:"color"===o,onClick:function(){return p("color")}}),wp.element.createElement(a,{icon:"format-image",label:r("Image"),showTootlip:!0,isPrimary:"image"===o,onClick:function(){return p("image")}}),wp.element.createElement(a,{icon:function(){return wp.element.createElement(i,{icon:l.c})},label:r("Gradient"),showTootlip:!0,isPrimary:"gradient"===o,onClick:function(){return p("gradient")}})))))}},function(e,t){e.exports=ReactDOM},function(e,t,n){"use strict";t.a={1:{equal:["100"]},2:{equal:["50","50"],oneTwo:["33.34","66.66"],twoOne:["66.66","33.34"]},3:{equal:["33.33","33.33","33.33"],oneOneTwo:["25","25","50"],twoOneOne:["50","25","25"],oneTwoOne:["25","50","25"],oneThreeOne:["20","60","20"]},4:{equal:["25","25","25","25"]},5:{equal:["20","20","20","20","20"]},6:{equal:["16.66","16.66","16.66","16.66","16.66","16.66"]}}},,,function(e,t,n){"use strict";var l=n(0),r=n.n(l);n(73);function o(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=e&&("undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"]);if(null==n)return;var l,r,o=[],a=!0,c=!1;try{for(n=n.call(e);!(a=(l=n.next()).done)&&(o.push(l.value),!t||o.length!==t);a=!0);}catch(e){c=!0,r=e}finally{try{a||null==n.return||n.return()}finally{if(c)throw r}}return o}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return a(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return a(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function a(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,l=new Array(t);n<t;n++)l[n]=e[n];return l}var c=wp.i18n.__,i=wp.blockEditor.InspectorAdvancedControls,s=wp.compose.useInstanceId,p=wp.components,m=p.BaseControl,u=p.Button,d=p.Notice,b=wp.element,g=b.useEffect,h=b.useState;t.a=function e(t){var n=t.value,l=t.onChange,a=s(e);g((function(){return v(n)}),[n]);var p=o(h(!1),2),b=p[0],w=p[1],f=o(h(null),2),y=f[0],v=f[1],k=void 0!==window.themeisleGutenberg.blockIDs&&n!==y&&window.themeisleGutenberg.blockIDs.includes(y);return wp.element.createElement(i,null,wp.element.createElement(m,{label:c("HTML Anchor"),help:c("Anchors lets you link directly to a section on a page."),id:"wp-block-themeisle-blocks-html-anchor-control-".concat(a)},wp.element.createElement("div",{className:"wp-block-themeisle-blocks-html-anchor-control"},wp.element.createElement("input",{type:"text",className:"wp-block-themeisle-blocks-html-anchor-control-input",readonly:!b&&"readonly",value:b?y:n,onChange:function(e){return v(e.target.value)},onClick:function(e){return e.target.select()}}),wp.element.createElement(u,{icon:b?"yes":"edit",label:c(b?"Save":"Edit"),showTooltip:!0,disabled:!!k,className:r()("wp-block-themeisle-blocks-html-anchor-control-button",{"is-saved":!b}),onClick:function(){if(b&&n!==y){var e=window.themeisleGutenberg.blockIDs.findIndex((function(e){return e===n}));window.themeisleGutenberg.blockIDs[e]=y,l(y)}w(!b)}}))),k&&wp.element.createElement(d,{status:"warning",isDismissible:!1,className:"wp-block-themeisle-blocks-anchor-control-notice"},c("This ID has already been used in this page. Please consider using a different ID to avoid conflict.")))}},function(e,t,n){"use strict";var l=n(137),r=n(138);n(74);function o(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function a(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=e&&("undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"]);if(null==n)return;var l,r,o=[],a=!0,c=!1;try{for(n=n.call(e);!(a=(l=n.next()).done)&&(o.push(l.value),!t||o.length!==t);a=!0);}catch(e){c=!0,r=e}finally{try{a||null==n.return||n.return()}finally{if(c)throw r}}return o}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return c(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return c(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function c(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,l=new Array(t);n<t;n++)l[n]=e[n];return l}var i=wp.i18n.__,s=wp.blockEditor.__experimentalLinkControl,p=wp.components,m=p.KeyboardShortcuts,u=p.Popover,d=p.ToolbarButton,b=p.ToolbarGroup,g=wp.element,h=g.Fragment,w=g.useState,f=wp.keycodes,y=f.displayShortcut,v=f.rawShortcut;t.a=function(e){var t,n=e.isSelected,c=e.url,p=e.setAttributes,g=e.opensInNewTab,f=a(w(!1),2),k=f[0],E=f[1],T=!!c,C=T&&n,x=function(){return E(!0),!1},M=function(){p({link:void 0,newTab:void 0}),E(!1)},S=k&&wp.element.createElement(u,{position:"bottom right",onClose:function(){return E(!1)}},wp.element.createElement(s,{className:"wp-block-navigation-link__inline-link-input",value:{url:c,opensInNewTab:g},onChange:function(e){var t=e.url,n=void 0===t?"":t,l=e.opensInNewTab;p({link:n}),g!==l&&p({newTab:l})}}));return wp.element.createElement(h,null,wp.element.createElement(b,null,!T&&wp.element.createElement(d,{name:"link",icon:l.a,title:i("Link"),shortcut:y.primary("k"),onClick:x,className:"wp-block-themeisle-toolbar-icon"}),C&&wp.element.createElement(d,{name:"link",icon:r.a,title:i("Unlink"),shortcut:y.primaryShift("k"),onClick:M,isActive:!0,className:"wp-block-themeisle-toolbar-icon"})),n&&wp.element.createElement(m,{bindGlobal:!0,shortcuts:(t={},o(t,v.primary("k"),x),o(t,v.primaryShift("k"),M),t)}),S)}},,function(e,t,n){"use strict";n(63);var l=n(26),r=n.n(l),o=n(0),a=n.n(o),c=n(19),i=n(135),s=n(140),p=wp.components.Button,m=Object(c.b)((function(e){var t=e.value,n=e.selected,l=e.dragging,r=e.sorting,o=e.selectedItemsCount,c=e.onClick,i=l&&1<o;return wp.element.createElement(p,{className:a()("wp-block-themeisle-blocks-images-grid-component__image",{"is-selected":n,"is-sorting":n&&r}),onClick:function(){return c(t)},style:{backgroundImage:"url( ' ".concat(t.url," ' )")}},i&&wp.element.createElement("div",{className:"wp-block-themeisle-blocks-images-grid-component__image__count"},o))})),u=wp.i18n.__,d=wp.components.Button,b=Object(c.a)((function(e){var t=e.items,n=e.className,l=e.onItemSelect,r=e.selectedItems,o=e.isSorting,a=e.sortingItemKey,c=e.open;return wp.element.createElement("div",{className:n,tabIndex:"0"},t.map((function(e,t){var n=r.includes(e),c=a===e;return wp.element.createElement(m,{key:"image-".concat(e.id),index:t,value:e,selected:n,dragging:c,sorting:o,selectedItemsCount:r.length,onClick:l})})),wp.element.createElement(d,{label:u("Add Images"),icon:wp.element.createElement(i.a,{icon:s.a}),isPrimary:!0,onClick:c}))}));function g(e){return function(e){if(Array.isArray(e))return f(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||w(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function h(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=e&&("undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"]);if(null==n)return;var l,r,o=[],a=!0,c=!1;try{for(n=n.call(e);!(a=(l=n.next()).done)&&(o.push(l.value),!t||o.length!==t);a=!0);}catch(e){c=!0,r=e}finally{try{a||null==n.return||n.return()}finally{if(c)throw r}}return o}(e,t)||w(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function w(e,t){if(e){if("string"==typeof e)return f(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?f(e,t):void 0}}function f(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,l=new Array(t);n<t;n++)l[n]=e[n];return l}var y=wp.element.useState,v=function(e){var t=e.attributes,n=e.onSelectImages,l=e.open,o=h(y([]),2),c=o[0],i=o[1],s=h(y(!1),2),p=s[0],m=s[1],u=h(y(null),2),d=u[0],w=u[1];return wp.element.createElement(b,{className:a()("wp-block-themeisle-blocks-images-grid-component",{"is-single":1===t.images.length}),open:l,items:t.images,onItemSelect:function(e){var t;t=c.includes(e)?c.filter((function(t){return t!==e})):[].concat(g(c),[e]),i(t)},selectedItems:c,isSorting:p,sortingItemKey:d,shouldCancelStart:function(e){if(!e.target.sortableInfo)return!1;var n=t.images[e.target.sortableInfo.index];return!!c.length&&!c.includes(n)},updateBeforeSortStart:function(e){var n=e.index;return new Promise((function(e){m(!0),w(t.images[n]),e()}))},onSortEnd:function(e){var l=e.oldIndex,o=e.newIndex,a=r()(t.images,l,o);c.length&&(a=[].concat(g(a.slice(0,o).filter((function(e){return!c.includes(e)}))),g(c),g(a.slice(o,a.length).filter((function(e){return!c.includes(e)}))))),m(!1),w(null),i([]),n(a)},distance:3,axis:"xy"})},k=lodash.debounce,E=wp.blockEditor,T=E.MediaUpload,C=E.MediaUploadCheck;t.a=function(e){var t=e.attributes,n=e.onSelectImages,l=k(n,250);return wp.element.createElement(C,null,wp.element.createElement(T,{onSelect:l,allowedTypes:["image"],multiple:!0,addToGallery:!0,gallery:!0,value:t.images.map((function(e){return e.id})),render:function(e){var l=e.open;return wp.element.createElement(v,{attributes:t,open:l,onSelectImages:n})}}))}},,function(e,t,n){"use strict";n.r(t);var l=n(0),r=n.n(l),o=(n(90),n(8)),a=wp.i18n.__,c=wp.components,i=c.Button,s=c.Path,p=c.Rect,m=c.SVG,u=c.Tooltip,d=wp.data.useSelect,b=wp.element.Fragment;t.default=function(e){var t,n=e.label,l=e.onClick,c=e.layout,g=e.layoutTablet,h=e.layoutMobile,w=e.columns,f=d((function(e){var t=e("themeisle-gutenberg/data").getView,n=e("core/edit-post").__experimentalGetPreviewDeviceType;return n?n():t()}),[]);return"Desktop"===f?t=c:"Tablet"===f?t=g:"Mobile"===f&&(t=h),wp.element.createElement(o.a,{label:n,className:"wp-block-themeisle-blocks-advanced-columns-layout-control"},1===w&&wp.element.createElement(u,{text:a("Single Row")},wp.element.createElement(i,{className:r()("wp-block-themeisle-blocks-advanced-column-layout",{selected:"equal"===t}),onClick:function(){return l("equal")}},wp.element.createElement(m,{viewBox:"0 0 48 48",xmlns:"http://www.w3.org/1999/xlink"},wp.element.createElement(s,{d:"M41.8,13.2V34.8H6.2V13.2H41.8M42,11H6a2,2,0,0,0-2,2V35a2,2,0,0,0,2,2H42a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2Z"}))))||2===w&&wp.element.createElement(b,null,wp.element.createElement(u,{text:a("Equal")},wp.element.createElement(i,{className:r()("wp-block-themeisle-blocks-advanced-column-layout",{selected:"equal"===t}),onClick:function(){return l("equal")}},wp.element.createElement(m,{viewBox:"0 0 48 48",xmlns:"http://www.w3.org/1999/xlink"},wp.element.createElement(s,{d:"M41.8,13.2V34.8H6.2V13.2H41.8M42,11H6a2,2,0,0,0-2,2V35a2,2,0,0,0,2,2H42a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2Z"}),wp.element.createElement(p,{x:"22.9",y:"13",width:"2.2",height:"22"})))),wp.element.createElement(u,{text:a("1:2")},wp.element.createElement(i,{className:r()("wp-block-themeisle-blocks-advanced-column-layout",{selected:"oneTwo"===t}),onClick:function(){return l("oneTwo")}},wp.element.createElement(m,{viewBox:"0 0 48 48",xmlns:"http://www.w3.org/1999/xlink"},wp.element.createElement(s,{d:"M41.8,13.2V34.8H6.2V13.2H41.8M42,11H6a2,2,0,0,0-2,2V35a2,2,0,0,0,2,2H42a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2Z"}),wp.element.createElement(p,{x:"16.9",y:"13",width:"2.2",height:"22"})))),wp.element.createElement(u,{text:a("2:1")},wp.element.createElement(i,{className:r()("wp-block-themeisle-blocks-advanced-column-layout",{selected:"twoOne"===t}),onClick:function(){return l("twoOne")}},wp.element.createElement(m,{viewBox:"0 0 48 48",xmlns:"http://www.w3.org/1999/xlink"},wp.element.createElement(s,{d:"M41.8,13.2V34.8H6.2V13.2H41.8M42,11H6a2,2,0,0,0-2,2V35a2,2,0,0,0,2,2H42a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2Z"}),wp.element.createElement(p,{x:"28.9",y:"13",width:"2.2",height:"22"})))),("Mobile"==f||"Tablet"==f)&&wp.element.createElement(u,{text:a("Collapsed Rows")},wp.element.createElement(i,{className:r()("wp-block-themeisle-blocks-advanced-column-layout",{selected:"collapsedRows"===t}),onClick:function(){return l("collapsedRows")}},wp.element.createElement(m,{viewBox:"0 0 48 48",xmlns:"http://www.w3.org/1999/xlink"},wp.element.createElement(s,{d:"M41.8,13.2V34.8H6.2V13.2H41.8M42,11H6a2,2,0,0,0-2,2V35a2,2,0,0,0,2,2H42a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2Z"}),wp.element.createElement(p,{x:"6",y:"22.9",width:"36",height:"2.2"})))))||3===w&&wp.element.createElement(b,null,wp.element.createElement(u,{text:a("Equal")},wp.element.createElement(i,{className:r()("wp-block-themeisle-blocks-advanced-column-layout",{selected:"equal"===t}),onClick:function(){return l("equal")}},wp.element.createElement(m,{viewBox:"0 0 48 48",xmlns:"http://www.w3.org/1999/xlink"},wp.element.createElement(s,{d:"M41.8,13.2V34.8H6.2V13.2H41.8M42,11H6a2,2,0,0,0-2,2V35a2,2,0,0,0,2,2H42a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2Z"}),wp.element.createElement(p,{x:"28.9",y:"13",width:"2.2",height:"22"}),wp.element.createElement(p,{x:"16.9",y:"13",width:"2.2",height:"22"})))),wp.element.createElement(u,{text:a("1:1:2")},wp.element.createElement(i,{className:r()("wp-block-themeisle-blocks-advanced-column-layout",{selected:"oneOneTwo"===t}),onClick:function(){return l("oneOneTwo")}},wp.element.createElement(m,{viewBox:"0 0 48 48",xmlns:"http://www.w3.org/1999/xlink"},wp.element.createElement(s,{d:"M41.8,13.2V34.8H6.2V13.2H41.8M42,11H6a2,2,0,0,0-2,2V35a2,2,0,0,0,2,2H42a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2Z"}),wp.element.createElement(p,{x:"22.9",y:"13",width:"2.2",height:"22"}),wp.element.createElement(p,{x:"12.9",y:"13",width:"2.2",height:"22"})))),wp.element.createElement(u,{text:a("2:1:1")},wp.element.createElement(i,{className:r()("wp-block-themeisle-blocks-advanced-column-layout",{selected:"twoOneOne"===t}),onClick:function(){return l("twoOneOne")}},wp.element.createElement(m,{viewBox:"0 0 48 48",xmlns:"http://www.w3.org/1999/xlink"},wp.element.createElement(s,{d:"M41.8,13.2V34.8H6.2V13.2H41.8M42,11H6a2,2,0,0,0-2,2V35a2,2,0,0,0,2,2H42a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2Z"}),wp.element.createElement(p,{x:"22.9",y:"13",width:"2.2",height:"22"}),wp.element.createElement(p,{x:"32.9",y:"13",width:"2.2",height:"22"})))),wp.element.createElement(u,{text:a("1:2:1")},wp.element.createElement(i,{className:r()("wp-block-themeisle-blocks-advanced-column-layout",{selected:"oneTwoOne"===t}),onClick:function(){return l("oneTwoOne")}},wp.element.createElement(m,{viewBox:"0 0 48 48",xmlns:"http://www.w3.org/1999/xlink"},wp.element.createElement(s,{d:"M41.8,13.2V34.8H6.2V13.2H41.8M42,11H6a2,2,0,0,0-2,2V35a2,2,0,0,0,2,2H42a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2Z"}),wp.element.createElement(p,{x:"13.9",y:"13",width:"2.2",height:"22"}),wp.element.createElement(p,{x:"31.9",y:"13",width:"2.2",height:"22"})))),wp.element.createElement(u,{text:a("1:3:1")},wp.element.createElement(i,{className:r()("wp-block-themeisle-blocks-advanced-column-layout",{selected:"oneThreeOne"===t}),onClick:function(){return l("oneThreeOne")}},wp.element.createElement(m,{viewBox:"0 0 48 48",xmlns:"http://www.w3.org/1999/xlink"},wp.element.createElement(s,{d:"M41.8,13.2V34.8H6.2V13.2H41.8M42,11H6a2,2,0,0,0-2,2V35a2,2,0,0,0,2,2H42a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2Z"}),wp.element.createElement(p,{x:"11.9",y:"13",width:"2.2",height:"22"}),wp.element.createElement(p,{x:"33.9",y:"13",width:"2.2",height:"22"})))),("Mobile"==f||"Tablet"==f)&&wp.element.createElement(u,{text:a("Collapsed Rows")},wp.element.createElement(i,{className:r()("wp-block-themeisle-blocks-advanced-column-layout",{selected:"collapsedRows"===t}),onClick:function(){return l("collapsedRows")}},wp.element.createElement(m,{viewBox:"0 0 48 48",xmlns:"http://www.w3.org/1999/xlink"},wp.element.createElement(s,{d:"M41.8,13.2V34.8H6.2V13.2H41.8M42,11H6a2,2,0,0,0-2,2V35a2,2,0,0,0,2,2H42a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2Z"}),wp.element.createElement(p,{x:"6",y:"22.9",width:"36",height:"2.2"})))))||4===w&&wp.element.createElement(b,null,wp.element.createElement(u,{text:a("Equal")},wp.element.createElement(i,{className:r()("wp-block-themeisle-blocks-advanced-column-layout",{selected:"equal"===t}),onClick:function(){return l("equal")}},wp.element.createElement(m,{viewBox:"0 0 48 48",xmlns:"http://www.w3.org/1999/xlink"},wp.element.createElement(s,{d:"M41.8,13.2V34.8H6.2V13.2H41.8M42,11H6a2,2,0,0,0-2,2V35a2,2,0,0,0,2,2H42a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2Z"}),wp.element.createElement(p,{x:"13.9",y:"13",width:"2.2",height:"22"}),wp.element.createElement(p,{x:"32.9",y:"13",width:"2.2",height:"22"}),wp.element.createElement(p,{x:"22.9",y:"13",width:"2.2",height:"22"})))),("Mobile"==f||"Tablet"==f)&&wp.element.createElement(b,null,wp.element.createElement(u,{text:a("Two Column Grid")},wp.element.createElement(i,{className:r()("wp-block-themeisle-blocks-advanced-column-layout",{selected:"twoColumnGrid"===t}),onClick:function(){return l("twoColumnGrid")}},wp.element.createElement(m,{viewBox:"0 0 48 48",xmlns:"http://www.w3.org/1999/xlink"},wp.element.createElement(s,{d:"M41.8,13.2V34.8H6.2V13.2H41.8M42,11H6a2,2,0,0,0-2,2V35a2,2,0,0,0,2,2H42a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2Z"}),wp.element.createElement(p,{x:"4",y:"22.9",width:"40",height:"2.2"}),wp.element.createElement(p,{x:"22.9",y:"13",width:"2.2",height:"22"})))),wp.element.createElement(u,{text:a("Collapsed Rows")},wp.element.createElement(i,{className:r()("wp-block-themeisle-blocks-advanced-column-layout",{selected:"collapsedRows"===t}),onClick:function(){return l("collapsedRows")}},wp.element.createElement(m,{viewBox:"0 0 48 48",xmlns:"http://www.w3.org/1999/xlink"},wp.element.createElement(s,{d:"M41.8,13.2V34.8H6.2V13.2H41.8M42,11H6a2,2,0,0,0-2,2V35a2,2,0,0,0,2,2H42a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2Z"}),wp.element.createElement(p,{x:"6",y:"22.9",width:"36",height:"2.2"}))))))||5===w&&wp.element.createElement(b,null,wp.element.createElement(u,{text:a("Equal")},wp.element.createElement(i,{className:r()("wp-block-themeisle-blocks-advanced-column-layout",{selected:"equal"===t}),onClick:function(){return l("equal")}},wp.element.createElement(m,{viewBox:"0 0 48 48",xmlns:"http://www.w3.org/1999/xlink"},wp.element.createElement(s,{d:"M41.8,13.2V34.8H6.2V13.2H41.8M42,11H6a2,2,0,0,0-2,2V35a2,2,0,0,0,2,2H42a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2Z"}),wp.element.createElement(p,{x:"10.9",y:"13",width:"2.2",height:"22"}),wp.element.createElement(p,{x:"34.9",y:"13",width:"2.2",height:"22"}),wp.element.createElement(p,{x:"26.9",y:"13",width:"2.2",height:"22"}),wp.element.createElement(p,{x:"18.9",y:"13",width:"2.2",height:"22"})))),("Mobile"==f||"Tablet"==f)&&wp.element.createElement(u,{text:a("Collapsed Rows")},wp.element.createElement(i,{className:r()("wp-block-themeisle-blocks-advanced-column-layout",{selected:"collapsedRows"===t}),onClick:function(){return l("collapsedRows")}},wp.element.createElement(m,{viewBox:"0 0 48 48",xmlns:"http://www.w3.org/1999/xlink"},wp.element.createElement(s,{d:"M41.8,13.2V34.8H6.2V13.2H41.8M42,11H6a2,2,0,0,0-2,2V35a2,2,0,0,0,2,2H42a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2Z"}),wp.element.createElement(p,{x:"6",y:"22.9",width:"36",height:"2.2"})))))||6===w&&wp.element.createElement(b,null,wp.element.createElement(u,{text:a("Equal")},wp.element.createElement(i,{className:r()("wp-block-themeisle-blocks-advanced-column-layout",{selected:"equal"===t}),onClick:function(){return l("equal")}},wp.element.createElement(m,{viewBox:"0 0 48 48",xmlns:"http://www.w3.org/1999/xlink"},wp.element.createElement(s,{d:"M41.8,13.2V34.8H6.2V13.2H41.8M42,11H6a2,2,0,0,0-2,2V35a2,2,0,0,0,2,2H42a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2Z"}),wp.element.createElement(p,{x:"10.4",y:"13",width:"2.2",height:"22"}),wp.element.createElement(p,{x:"35.9",y:"13",width:"2.2",height:"22"}),wp.element.createElement(p,{x:"29.4",y:"13",width:"2.2",height:"22"}),wp.element.createElement(p,{x:"16.4",y:"13",width:"2.2",height:"22"}),wp.element.createElement(p,{x:"22.9",y:"13",width:"2.2",height:"22"})))),("Mobile"==f||"Tablet"==f)&&wp.element.createElement(b,null,wp.element.createElement(u,{text:a("Two Column Grid")},wp.element.createElement(i,{className:r()("wp-block-themeisle-blocks-advanced-column-layout",{selected:"twoColumnGrid"===t}),onClick:function(){return l("twoColumnGrid")}},wp.element.createElement(m,{viewBox:"0 0 48 48",xmlns:"http://www.w3.org/1999/xlink"},wp.element.createElement(s,{d:"M41.8,13.2V34.8H6.2V13.2H41.8M42,11H6a2,2,0,0,0-2,2V35a2,2,0,0,0,2,2H42a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2Z"}),wp.element.createElement(p,{x:"4",y:"18.9",width:"40",height:"2.2"}),wp.element.createElement(p,{x:"22.9",y:"13",width:"2.2",height:"22"}),wp.element.createElement(p,{x:"4",y:"26.9",width:"40",height:"2.2"})))),wp.element.createElement(u,{text:a("Three Column Grid")},wp.element.createElement(i,{className:r()("wp-block-themeisle-blocks-advanced-column-layout",{selected:"threeColumnGrid"===t}),onClick:function(){return l("threeColumnGrid")}},wp.element.createElement(m,{viewBox:"0 0 48 48",xmlns:"http://www.w3.org/1999/xlink"},wp.element.createElement(s,{d:"M41.8,13.2V34.8H6.2V13.2H41.8M42,11H6a2,2,0,0,0-2,2V35a2,2,0,0,0,2,2H42a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2Z"}),wp.element.createElement(p,{x:"4",y:"22.9",width:"40",height:"2.2"}),wp.element.createElement(p,{x:"28.9",y:"13",width:"2.2",height:"22"}),wp.element.createElement(p,{x:"16.9",y:"13",width:"2.2",height:"22"})))),wp.element.createElement(u,{text:a("Collapsed Rows")},wp.element.createElement(i,{className:r()("wp-block-themeisle-blocks-advanced-column-layout",{selected:"collapsedRows"===t}),onClick:function(){return l("collapsedRows")}},wp.element.createElement(m,{viewBox:"0 0 48 48",xmlns:"http://www.w3.org/1999/xlink"},wp.element.createElement(s,{d:"M41.8,13.2V34.8H6.2V13.2H41.8M42,11H6a2,2,0,0,0-2,2V35a2,2,0,0,0,2,2H42a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2Z"}),wp.element.createElement(p,{x:"6",y:"22.9",width:"36",height:"2.2"})))))))}},function(e,t,n){"use strict";n.r(t);n(92);var l=n(3),r=n(0),o=n.n(r);n(93);function a(e){return function(e){if(Array.isArray(e))return c(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return c(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return c(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function c(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,l=new Array(t);n<t;n++)l[n]=e[n];return l}var i=lodash,s=i.startCase,p=i.toLower,m=wp.i18n.__,u=wp.components,d=u.Button,b=u.Dashicon,g=u.Icon,h=u.TextControl,w=u.Tooltip,f=u.SelectControl,y=function(e){var t,n=e.preview,r=e.tab,c=e.blocksCategories,i=e.templateCategories,u=e.selectedCategory,y=e.selectedTemplate,v=e.search,k=e.setPreview,E=e.changeTab,T=e.close,C=e.importTemplate,x=e.selectCategory,M=e.changeSearch,S=(t=("block"===r?c:i).map((function(e){return{label:s(p(e)),value:e}})),[{label:m("All Categories"),value:"all"}].concat(a(t)));return wp.element.createElement("div",{className:"library-modal-control-panel"},wp.element.createElement("div",{className:"library-modal-header"},wp.element.createElement("div",{className:"library-modal-header-logo"},n?wp.element.createElement(d,{className:"library-modal-header-tabs-button back-to-library","aria-label":m("Back to Library"),onClick:function(){return k(!1)}},wp.element.createElement(b,{icon:"arrow-left-alt"})," ",m("Back to Library")):wp.element.createElement("div",{className:"library-modal-header-tabs-button"},wp.element.createElement(g,{icon:l.p}))),!n&&wp.element.createElement("div",{className:"library-modal-header-tabs"},wp.element.createElement(d,{className:o()("library-modal-header-tabs-button",{"is-selected":"block"===r}),onClick:function(){return E("block")}},wp.element.createElement(b,{icon:"screenoptions"}),m("Blocks")),wp.element.createElement(d,{className:o()("library-modal-header-tabs-button",{"is-selected":"template"===r}),onClick:function(){return E("template")}},wp.element.createElement(b,{icon:"editor-table"}),m("Templates"))),wp.element.createElement("div",{className:"library-modal-header-actions"},n&&wp.element.createElement(d,{className:"library-modal-header-tabs-button insert-button",onClick:function(){return C(y.template_url)},tabindex:"0"},wp.element.createElement(b,{icon:"arrow-down-alt",size:16}),m("Insert")),wp.element.createElement(w,{text:m("Close")},wp.element.createElement(d,{className:"library-modal-header-tabs-button","aria-label":m("Close settings"),onClick:T},wp.element.createElement(b,{icon:"no-alt"}))))),!n&&wp.element.createElement("div",{className:"library-modal-actions"},wp.element.createElement(f,{className:"library-modal-category-control",value:"all"===u?"all":u,onChange:x,options:S}),wp.element.createElement(h,{type:"text",value:v||"",placeholder:m("Search"),className:"library-modal-search-control",onChange:M})))},v=wp.components.Notice,k=wp.data,E=k.useDispatch,T=k.useSelect,C=function(){var e=T((function(e){return e("core/notices").getNotices("themeisle-blocks/notices/template-library")})),t=E("core/notices").removeNotice;return wp.element.createElement("div",{className:"library-modal-error"},e.map((function(e){return wp.element.createElement(v,{status:e.status,isDismissible:e.isDismissible,onRemove:function(){return t(e.id,"themeisle-blocks/notices/template-library")},actions:e.actions},e.content)})))},x=n(30),M=n.n(x),S=wp.i18n.__,z=wp.components.Button,O=function(e){var t=e.template,n=e.importPreview,l=e.importTemplate;return wp.element.createElement("div",{"aria-label":t.title||S("Untitled Gutenberg Template"),className:"library-modal-content__item",tabindex:"0"},wp.element.createElement("div",{className:"library-modal-content__preview"},wp.element.createElement(M.a,null,wp.element.createElement("img",{src:t.screenshot_url||"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/default.jpg"}))),wp.element.createElement("div",{className:"library-modal-content__footer"},wp.element.createElement("div",{className:"library-modal-content__footer_meta"},wp.element.createElement("h4",{className:"library-modal-content__footer_meta_area"},t.title&&t.title+(t.author&&S(" by ")+t.author),!t.title&&t.author&&S("Author: ")+t.author)),wp.element.createElement("div",{className:"library-modal-content__footer_actions"},wp.element.createElement(z,{isSecondary:!0,isLarge:!0,className:"library-modal-overlay__actions",onClick:function(){return n(t)},tabindex:"0"},S("Preview")),wp.element.createElement(z,{isPrimary:!0,isLarge:!0,className:"library-modal-overlay__actions",onClick:function(){return l(t.template_url)},tabindex:"0"},S("Insert")))))},B=wp.i18n.__,L=wp.blockEditor.BlockPreview,H=wp.components.Spinner,P=wp.compose.useViewportMatch,_=function(e){var t=e.preview,n=e.isLoading,l=e.data,r=e.tab,o=e.selectedTemplateContent,a=e.selectedCategory,c=e.search,i=e.importPreview,s=e.importTemplate,p=P("large",">="),m=P("large","<="),u=P("small",">="),d=P("small","<="),b=1400;return!p&&!m&&u&&!d?b=960:!(p||m||u||d)&&(b=600),t?wp.element.createElement("div",{className:"library-modal-preview"},wp.element.createElement(L,{blocks:o,viewportWidth:b})):n?wp.element.createElement("div",{className:"library-modal-loader"},wp.element.createElement(H,null)):wp.element.createElement("div",{className:"library-modal-content"},l.map((function(e){if(e.template_url&&("all"===a||e.categories&&e.categories.includes(a))&&(!c||e.keywords&&e.keywords.some((function(e){return e.toLowerCase().includes(c.toLowerCase())})))&&r===e.type)return wp.element.createElement(O,{template:e,importPreview:i,importTemplate:s})})),wp.element.createElement("div",{"aria-label":B("Coming Soon"),className:"library-modal-content__item"},wp.element.createElement("div",{className:"library-modal-content__preview"},wp.element.createElement(M.a,null,wp.element.createElement("img",{src:"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/coming-soon.jpg"})))))};function A(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=e&&("undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"]);if(null==n)return;var l,r,o=[],a=!0,c=!1;try{for(n=n.call(e);!(a=(l=n.next()).done)&&(o.push(l.value),!t||o.length!==t);a=!0);}catch(e){c=!0,r=e}finally{try{a||null==n.return||n.return()}finally{if(c)throw r}}return o}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return V(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return V(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function V(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,l=new Array(t);n<t;n++)l[n]=e[n];return l}function j(e,t,n,l,r,o,a){try{var c=e[o](a),i=c.value}catch(e){return void n(e)}c.done?t(i):Promise.resolve(i).then(l,r)}function N(e){return function(){var t=this,n=arguments;return new Promise((function(l,r){var o=e.apply(t,n);function a(e){j(o,l,r,a,c,"next",e)}function c(e){j(o,l,r,a,c,"throw",e)}a(void 0)}))}}var R=wp.i18n.__,I=wp.apiFetch,D=wp.blocks.parse,G=wp.components.Modal,F=wp.data,W=F.useSelect,U=F.useDispatch,q=wp.element,Z=q.useEffect,$=q.useState,Q=function(e){var t=e.clientId,n=e.close,l=W((function(e){return e("core/block-editor").getBlock(t)})),r=U("core/block-editor").replaceBlocks,a=U("core/notices").createNotice;Z((function(){(function(){var e=N(regeneratorRuntime.mark((function e(){var t,n,l;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return Boolean(window.themeisleGutenberg.isCompatible)||a("warning",R("You are using an older version of Otter. Use the latest version of Otter to have maximum compatibility with Template Library."),{context:"themeisle-blocks/notices/template-library",id:"compatibility-warning",isDismissible:!1,actions:[{label:R("Update Now"),url:window.themeisleGutenberg.updatePath}]}),e.prev=1,e.next=4,I({path:"themeisle-gutenberg-blocks/v1/fetch_templates"});case 4:t=e.sent,n=[],l=[],t.map((function(e){e.categories&&e.template_url&&("block"===e.type&&e.categories.map((function(e){n.push(e)})),"template"===e.type&&e.categories.map((function(e){l.push(e)})))})),n=n.filter((function(e,t,n){return n.indexOf(e)===t})).sort(),l=l.filter((function(e,t,n){return n.indexOf(e)===t})).sort(),E(n),M(l),O(t),e.next=18;break;case 15:e.prev=15,e.t0=e.catch(1),a("error",R("There seems to be an error. Please try again."),{context:"themeisle-blocks/notices/template-library",isDismissible:!0});case 18:u(!1);case 19:case"end":return e.stop()}}),e,null,[[1,15]])})));return function(){return e.apply(this,arguments)}})()()}),[]);var c=A($("block"),2),i=c[0],s=c[1],p=A($(!0),2),m=p[0],u=p[1],d=A($("all"),2),b=d[0],g=d[1],h=A($(""),2),w=h[0],f=h[1],v=A($([]),2),k=v[0],E=v[1],T=A($([]),2),x=T[0],M=T[1],S=A($([]),2),z=S[0],O=S[1],B=A($(!1),2),L=B[0],H=B[1],P=A($(null),2),V=P[0],j=P[1],F=A($(null),2),q=F[0],Q=F[1],K=function(){var e=N(regeneratorRuntime.mark((function e(){var t,n,l=arguments;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return t=l.length>0&&void 0!==l[0]?l[0]:null,u(!0),e.prev=2,e.next=5,I({path:"themeisle-gutenberg-blocks/v1/import_template?url=".concat(t.template_url,"&preview=true")});case 5:(n=e.sent).__file&&n.content&&"wp_export"===n.__file&&(n=D(n.content)),j(t),Q(n),H(!0),e.next=15;break;case 12:e.prev=12,e.t0=e.catch(2),e.t0.message&&a("error",e.t0.message,{context:"themeisle-blocks/notices/template-library",isDismissible:!0});case 15:u(!1);case 16:case"end":return e.stop()}}),e,null,[[2,12]])})));return function(){return e.apply(this,arguments)}}(),J=function(){var e=N(regeneratorRuntime.mark((function e(t){var n,o;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return H(!1),u(!0),e.prev=2,e.next=5,I({path:"themeisle-gutenberg-blocks/v1/import_template?url=".concat(t)});case 5:(n=e.sent).__file&&n.content&&"wp_export"===n.__file&&(n=D(n.content)),t.includes("https://raw.githubusercontent.com/Codeinwp/")&&window.themeisleGutenberg.dataLogging.templates&&Boolean(window.themeisleGutenberg.canTrack)&&((o=window.themeisleGutenberg.dataLogging.templates.find((function(e){return e.url===t})))?o.instances=o.instances+1:window.themeisleGutenberg.dataLogging.templates.push({url:t,instances:1})),c=n,r(l.clientId,c),e.next=15;break;case 11:e.prev=11,e.t0=e.catch(2),e.t0.message&&a("error",e.t0.message,{context:"themeisle-blocks/notices/template-library",isDismissible:!0}),u(!1);case 15:case"end":return e.stop()}var c}),e,null,[[2,11]])})));return function(t){return e.apply(this,arguments)}}();return wp.element.createElement(G,{className:o()("wp-block-themeisle-library-modal",{"is-preview":L}),onRequestClose:n,isDismissable:!1,shouldCloseOnClickOutside:!1},wp.element.createElement(y,{preview:L,tab:i,changeTab:function(e){s(e),g("all"),f("")},blocksCategories:k,templateCategories:x,selectedTemplate:V,selectedCategory:b,search:w,setPreview:H,close:n,importTemplate:J,selectCategory:function(e){return g(e)},changeSearch:function(e){return f(e)}}),wp.element.createElement(C,null),wp.element.createElement(_,{preview:L,isLoading:m,data:z,tab:i,selectedTemplateContent:q,selectedCategory:b,search:w,importPreview:K,importTemplate:J}))};function K(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=e&&("undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"]);if(null==n)return;var l,r,o=[],a=!0,c=!1;try{for(n=n.call(e);!(a=(l=n.next()).done)&&(o.push(l.value),!t||o.length!==t);a=!0);}catch(e){c=!0,r=e}finally{try{a||null==n.return||n.return()}finally{if(c)throw r}}return o}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return J(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return J(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function J(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,l=new Array(t);n<t;n++)l[n]=e[n];return l}var Y=wp.i18n.__,X=wp.components,ee=X.Button,te=X.Dashicon,ne=X.Icon,le=X.Path,re=X.Placeholder,oe=X.Rect,ae=X.SVG,ce=X.Tooltip,ie=wp.element.useState;t.default=function(e){var t=e.clientId,n=e.setupColumns,r=K(ie(!1),2),o=r[0],a=r[1];return wp.element.createElement(re,{label:Y("Select Layout"),instructions:Y("Select a layout to start with, or make one yourself."),icon:wp.element.createElement(ne,{icon:l.j}),isColumnLayout:!0,className:"wp-block-themeisle-onboarding-component"},wp.element.createElement("div",{className:"wp-block-themeisle-layout-picker"},wp.element.createElement(ce,{text:Y("Equal")},wp.element.createElement(ee,{isLarge:!0,className:"wp-block-themeisle-blocks-advanced-column-layout",onClick:function(){return n(2,"equal")}},wp.element.createElement(ae,{viewBox:"0 0 48 48",xmlns:"http://www.w3.org/1999/xlink"},wp.element.createElement(le,{d:"M41.8,13.2V34.8H6.2V13.2H41.8M42,11H6a2,2,0,0,0-2,2V35a2,2,0,0,0,2,2H42a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2Z"}),wp.element.createElement(oe,{x:"22.9",y:"13",width:"2.2",height:"22"})))),wp.element.createElement(ce,{text:Y("1:2")},wp.element.createElement(ee,{isLarge:!0,className:"wp-block-themeisle-blocks-advanced-column-layout",onClick:function(){return n(2,"oneTwo")}},wp.element.createElement(ae,{viewBox:"0 0 48 48",xmlns:"http://www.w3.org/1999/xlink"},wp.element.createElement(le,{d:"M41.8,13.2V34.8H6.2V13.2H41.8M42,11H6a2,2,0,0,0-2,2V35a2,2,0,0,0,2,2H42a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2Z"}),wp.element.createElement(oe,{x:"16.9",y:"13",width:"2.2",height:"22"})))),wp.element.createElement(ce,{text:Y("2:1")},wp.element.createElement(ee,{isLarge:!0,className:"wp-block-themeisle-blocks-advanced-column-layout",onClick:function(){return n(2,"twoOne")}},wp.element.createElement(ae,{viewBox:"0 0 48 48",xmlns:"http://www.w3.org/1999/xlink"},wp.element.createElement(le,{d:"M41.8,13.2V34.8H6.2V13.2H41.8M42,11H6a2,2,0,0,0-2,2V35a2,2,0,0,0,2,2H42a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2Z"}),wp.element.createElement(oe,{x:"28.9",y:"13",width:"2.2",height:"22"})))),wp.element.createElement(ce,{text:Y("Equal")},wp.element.createElement(ee,{isLarge:!0,className:"wp-block-themeisle-blocks-advanced-column-layout",onClick:function(){return n(3,"equal")}},wp.element.createElement(ae,{viewBox:"0 0 48 48",xmlns:"http://www.w3.org/1999/xlink"},wp.element.createElement(le,{d:"M41.8,13.2V34.8H6.2V13.2H41.8M42,11H6a2,2,0,0,0-2,2V35a2,2,0,0,0,2,2H42a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2Z"}),wp.element.createElement(oe,{x:"28.9",y:"13",width:"2.2",height:"22"}),wp.element.createElement(oe,{x:"16.9",y:"13",width:"2.2",height:"22"})))),wp.element.createElement(ce,{text:Y("1:1:2")},wp.element.createElement(ee,{isLarge:!0,className:"wp-block-themeisle-blocks-advanced-column-layout",onClick:function(){return n(3,"oneOneTwo")}},wp.element.createElement(ae,{viewBox:"0 0 48 48",xmlns:"http://www.w3.org/1999/xlink"},wp.element.createElement(le,{d:"M41.8,13.2V34.8H6.2V13.2H41.8M42,11H6a2,2,0,0,0-2,2V35a2,2,0,0,0,2,2H42a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2Z"}),wp.element.createElement(oe,{x:"22.9",y:"13",width:"2.2",height:"22"}),wp.element.createElement(oe,{x:"12.9",y:"13",width:"2.2",height:"22"})))),wp.element.createElement(ce,{text:Y("2:1:1")},wp.element.createElement(ee,{isLarge:!0,className:"wp-block-themeisle-blocks-advanced-column-layout",onClick:function(){return n(3,"twoOneOne")}},wp.element.createElement(ae,{viewBox:"0 0 48 48",xmlns:"http://www.w3.org/1999/xlink"},wp.element.createElement(le,{d:"M41.8,13.2V34.8H6.2V13.2H41.8M42,11H6a2,2,0,0,0-2,2V35a2,2,0,0,0,2,2H42a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2Z"}),wp.element.createElement(oe,{x:"22.9",y:"13",width:"2.2",height:"22"}),wp.element.createElement(oe,{x:"32.9",y:"13",width:"2.2",height:"22"})))),wp.element.createElement(ce,{text:Y("Equal")},wp.element.createElement(ee,{isLarge:!0,className:"wp-block-themeisle-blocks-advanced-column-layout",onClick:function(){return n(4,"equal")}},wp.element.createElement(ae,{viewBox:"0 0 48 48",xmlns:"http://www.w3.org/1999/xlink"},wp.element.createElement(le,{d:"M41.8,13.2V34.8H6.2V13.2H41.8M42,11H6a2,2,0,0,0-2,2V35a2,2,0,0,0,2,2H42a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2Z"}),wp.element.createElement(oe,{x:"13.9",y:"13",width:"2.2",height:"22"}),wp.element.createElement(oe,{x:"32.9",y:"13",width:"2.2",height:"22"}),wp.element.createElement(oe,{x:"22.9",y:"13",width:"2.2",height:"22"}))))),wp.element.createElement(ce,{text:Y("Open Template Library")},wp.element.createElement(ee,{isPrimary:!0,isLarge:!0,className:"wp-block-themeisle-template-library",onClick:function(){return a(!0)}},wp.element.createElement(te,{icon:"category"}),Y("Template Library")),o&&wp.element.createElement(Q,{clientId:t,close:function(){return a(!1)}})),wp.element.createElement("div",{className:"wp-block-themeisle-layout-skipper"},wp.element.createElement(ee,{isLink:!0,onClick:function(){return n(1,"equal")}},Y("Skip"))))}},function(e,t,n){"use strict";n.r(t);var l=n(0),r=n.n(l),o=n(11),a=wp.components,c=a.Placeholder,i=a.Spinner,s=wp.element.Fragment,p=wp.data.useSelect,m=function(e){var t=e.id,n=e.link,l=e.alt,r=e.size,o=p((function(e){var n=e("core").getMedia(t);return{featuredImage:n?0<Object.keys(n.media_details.sizes).length&&n.media_details.sizes[r]?n.media_details.sizes[r].source_url:n.source_url:null,altText:n&&n.alt_text?n.alt_text:l}}),[r]),a=o.featuredImage,m=o.altText;return null===a?wp.element.createElement(s,null):wp.element.createElement("div",{className:"wp-block-themeisle-blocks-posts-grid-post-image"},wp.element.createElement("a",{href:n},a?wp.element.createElement("img",{src:a,size:r,alt:m,"data-id":t}):wp.element.createElement(c,null,wp.element.createElement(i,null))))},u=wp.i18n,d=u.__,b=u.sprintf,g=function(e){var t=e.className,n=e.attributes,l=e.posts,a=e.categoriesList,c=e.authors,i=n.titleTag||"h5";return wp.element.createElement("div",{className:r()(t,"is-grid","wp-block-themeisle-blocks-posts-grid-columns-".concat(n.columns),{"has-shadow":n.imageBoxShadow})},l.filter((function(e){return e})).map((function(e){var t,l,r,s;return a&&0<(null===(t=e.categories)||void 0===t?void 0:t.length)&&(r=a.find((function(t){return t.id===e.categories[0]}))),c&&e.author&&(s=c.find((function(t){return t.id===e.author}))),wp.element.createElement("div",{key:e.link,className:"wp-block-themeisle-blocks-posts-grid-post-blog wp-block-themeisle-blocks-posts-grid-post-plain"},wp.element.createElement("div",{className:"wp-block-themeisle-blocks-posts-grid-post"},void 0!==e.featured_media&&0!==e.featured_media&&n.displayFeaturedImage&&wp.element.createElement(m,{id:e.featured_media,link:e.link,alt:null===(l=e.title)||void 0===l?void 0:l.rendered,size:n.imageSize}),wp.element.createElement("div",{className:"wp-block-themeisle-blocks-posts-grid-post-body"},n.template.map((function(t){if("category"===t&&void 0!==r&&n.displayCategory&&a)return wp.element.createElement("span",{class:"wp-block-themeisle-blocks-posts-grid-post-category"},r.name);var l,p;if("title"===t&&n.displayTitle)return wp.element.createElement(i,{className:"wp-block-themeisle-blocks-posts-grid-post-title"},wp.element.createElement("a",{href:e.link},Object(o.f)(null===(l=e.title)||void 0===l?void 0:l.rendered)));if("meta"===t&&n.displayMeta&&(n.displayDate||n.displayAuthor))return wp.element.createElement("p",{className:"wp-block-themeisle-blocks-posts-grid-post-meta"},n.displayDate&&b(d("on %s"),Object(o.b)(e.date)),n.displayAuthor&&void 0!==s&&c&&b(d(" by %s"),s.name));if("description"===t&&(0<n.excerptLength&&n.displayDescription))return wp.element.createElement("p",{className:"wp-block-themeisle-blocks-posts-grid-post-description"},(null===(p=e.excerpt)||void 0===p?void 0:p.rendered)&&Object(o.f)(e.excerpt.rendered).substring(0,n.excerptLength)+"…")})))))})))},h=wp.i18n,w=h.__,f=h.sprintf,y=function(e){var t=e.className,n=e.attributes,l=e.posts,a=e.categoriesList,c=e.authors,i=n.titleTag||"h5";return console.log(l),wp.element.createElement("div",{className:r()(t,"is-list",{"has-shadow":n.imageBoxShadow})},l.filter((function(e){return e})).map((function(e){var t,l,s,p;return a&&0<(null==e||null===(t=e.categories)||void 0===t?void 0:t.length)&&(s=a.find((function(t){return t.id===e.categories[0]}))),c&&e.author&&(p=c.find((function(t){return t.id===e.author}))),wp.element.createElement("div",{key:e.link,className:"wp-block-themeisle-blocks-posts-grid-post-blog wp-block-themeisle-blocks-posts-grid-post-plain"},wp.element.createElement("div",{className:"wp-block-themeisle-blocks-posts-grid-post"},0!==e.featured_media&&n.displayFeaturedImage&&wp.element.createElement(m,{id:e.featured_media,link:e.link,alt:null===(l=e.title)||void 0===l?void 0:l.rendered,size:n.imageSize}),wp.element.createElement("div",{className:r()("wp-block-themeisle-blocks-posts-grid-post-body",{"is-full":!n.displayFeaturedImage})},n.template.map((function(t){if("category"===t&&void 0!==s&&n.displayCategory&&a)return wp.element.createElement("span",{class:"wp-block-themeisle-blocks-posts-grid-post-category"},s.name);var l,r;if("title"===t&&n.displayTitle)return wp.element.createElement(i,{className:"wp-block-themeisle-blocks-posts-grid-post-title"},wp.element.createElement("a",{href:e.link},Object(o.f)(null===(l=e.title)||void 0===l?void 0:l.rendered)));if("meta"===t&&n.displayMeta&&(n.displayDate||n.displayAuthor))return wp.element.createElement("p",{className:"wp-block-themeisle-blocks-posts-grid-post-meta"},n.displayDate&&f(w("on %s"),Object(o.b)(e.date)),n.displayAuthor&&void 0!==p&&c&&f(w(" by %s"),p.name));if("description"===t&&(0<n.excerptLength&&n.displayDescription))return wp.element.createElement("p",{className:"wp-block-themeisle-blocks-posts-grid-post-description"},(null===(r=e.excerpt)||void 0===r?void 0:r.rendered)&&Object(o.f)(e.excerpt.rendered).substring(0,n.excerptLength)+"…")})))))})))};t.default=function(e){var t=e.className,n=e.attributes,l=e.posts,r=e.categoriesList,o=e.authors;return"grid"===n.style?wp.element.createElement(g,{className:t,attributes:n,posts:l,categoriesList:r,authors:o}):"list"===n.style?wp.element.createElement(y,{className:t,attributes:n,posts:l,categoriesList:r,authors:o}):void 0}},,,,,function(e,t,n){"use strict";n.r(t);var l=n(3),r={id:{type:"string"},columns:{type:"number"},layout:{type:"string"},layoutTablet:{type:"string",default:"equal"},layoutMobile:{type:"string",default:"equal"},columnsGap:{type:"string",default:"default"},paddingType:{type:"string",default:"linked"},paddingTypeTablet:{type:"string",default:"linked"},paddingTypeMobile:{type:"string",default:"linked"},padding:{type:"number",default:20},paddingTablet:{type:"number"},paddingMobile:{type:"number"},paddingTop:{type:"number",default:20},paddingTopTablet:{type:"number"},paddingTopMobile:{type:"number"},paddingRight:{type:"number",default:20},paddingRightTablet:{type:"number"},paddingRightMobile:{type:"number"},paddingBottom:{type:"number",default:20},paddingBottomTablet:{type:"number"},paddingBottomMobile:{type:"number"},paddingLeft:{type:"number",default:20},paddingLeftTablet:{type:"number"},paddingLeftMobile:{type:"number"},marginType:{type:"string",default:"unlinked"},marginTypeTablet:{type:"string",default:"unlinked"},marginTypeMobile:{type:"string",default:"unlinked"},margin:{type:"number",default:20},marginTablet:{type:"number"},marginMobile:{type:"number"},marginTop:{type:"number",default:20},marginTopTablet:{type:"number"},marginTopMobile:{type:"number"},marginBottom:{type:"number",default:20},marginBottomTablet:{type:"number"},marginBottomMobile:{type:"number"},columnsWidth:{type:"number"},horizontalAlign:{type:"string",default:"unset"},columnsHeight:{type:"string",default:"auto"},columnsHeightCustom:{type:"number"},columnsHeightCustomTablet:{type:"number"},columnsHeightCustomMobile:{type:"number"},verticalAlign:{type:"string",default:"unset"},backgroundType:{type:"string",default:"color"},backgroundColor:{type:"string"},backgroundImageID:{type:"number"},backgroundImageURL:{type:"string"},backgroundAttachment:{type:"string",default:"scroll"},backgroundPosition:{type:"string",default:"top left"},backgroundRepeat:{type:"string",default:"repeat"},backgroundSize:{type:"string",default:"auto"},backgroundGradient:{type:"string",default:"linear-gradient(90deg,rgba(54,209,220,1) 0%,rgba(91,134,229,1) 100%)"},backgroundOverlayOpacity:{type:"number",default:50},backgroundOverlayType:{type:"string",default:"color"},backgroundOverlayColor:{type:"string"},backgroundOverlayImageID:{type:"number"},backgroundOverlayImageURL:{type:"string"},backgroundOverlayAttachment:{type:"string",default:"scroll"},backgroundOverlayPosition:{type:"string",default:"top left"},backgroundOverlayRepeat:{type:"string",default:"repeat"},backgroundOverlaySize:{type:"string",default:"auto"},backgroundOverlayGradient:{type:"string",default:"linear-gradient(90deg,rgba(54,209,220,1) 0%,rgba(91,134,229,1) 100%)"},backgroundOverlayFilterBlur:{type:"number",default:0},backgroundOverlayFilterBrightness:{type:"number",default:10},backgroundOverlayFilterContrast:{type:"number",default:10},backgroundOverlayFilterGrayscale:{type:"number",default:0},backgroundOverlayFilterHue:{type:"number",default:0},backgroundOverlayFilterSaturate:{type:"number",default:10},backgroundOverlayBlend:{type:"string",default:"normal"},borderType:{type:"string",default:"linked"},border:{type:"number",default:0},borderTop:{type:"number",default:0},borderRight:{type:"number",default:0},borderBottom:{type:"number",default:0},borderLeft:{type:"number",default:0},borderColor:{type:"string",default:"#000000"},borderRadiusType:{type:"string",default:"linked"},borderRadius:{type:"number",default:0},borderRadiusTop:{type:"number",default:0},borderRadiusRight:{type:"number",default:0},borderRadiusBottom:{type:"number",default:0},borderRadiusLeft:{type:"number",default:0},boxShadow:{type:"boolean",default:!1},boxShadowColor:{type:"string",default:"#000000"},boxShadowColorOpacity:{type:"number",default:50},boxShadowBlur:{type:"number",default:5},boxShadowSpread:{type:"number",default:0},boxShadowHorizontal:{type:"number",default:0},boxShadowVertical:{type:"number",default:0},dividerTopType:{type:"string",default:"none"},dividerTopColor:{type:"string",default:"#000000"},dividerTopWidth:{type:"number",default:100},dividerTopWidthTablet:{type:"number",default:100},dividerTopWidthMobile:{type:"number",default:100},dividerTopHeight:{type:"number",default:100},dividerTopHeightTablet:{type:"number",default:100},dividerTopHeightMobile:{type:"number",default:100},dividerTopInvert:{type:"boolean",default:!1},dividerBottomType:{type:"string",default:"none"},dividerBottomColor:{type:"string",default:"#000000"},dividerBottomWidth:{type:"number",default:100},dividerBottomWidthTablet:{type:"number",default:100},dividerBottomWidthMobile:{type:"number",default:100},dividerBottomHeight:{type:"number",default:100},dividerBottomHeightTablet:{type:"number",default:100},dividerBottomHeightMobile:{type:"number",default:100},dividerBottomInvert:{type:"boolean",default:!1},hide:{type:"boolean",default:!1},hideTablet:{type:"boolean",default:!1},hideMobile:{type:"boolean",default:!1},reverseColumnsTablet:{type:"boolean",default:!1},reverseColumnsMobile:{type:"boolean",default:!1},columnsHTMLTag:{type:"string",default:"div"}},o=n(0),a=n.n(o),c=n(10),i=n.n(c);function s(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);t&&(l=l.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,l)}return n}function p(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?s(Object(n),!0).forEach((function(t){m(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):s(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function m(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var u=lodash.omit,d=wp.blockEditor.InnerBlocks,b=wp.components,g=b.SVG,h=b.Path,w={align:{type:"string"},id:{type:"string"},columns:{type:"number"},layout:{type:"string"},layoutTablet:{type:"string",default:"equal"},layoutMobile:{type:"string",default:"equal"},columnsGap:{type:"string",default:"default"},paddingType:{type:"string",default:"linked"},paddingTypeTablet:{type:"string",default:"linked"},paddingTypeMobile:{type:"string",default:"linked"},padding:{type:"number",default:20},paddingTablet:{type:"number",default:20},paddingMobile:{type:"number",default:20},paddingTop:{type:"number",default:20},paddingTopTablet:{type:"number",default:20},paddingTopMobile:{type:"number",default:20},paddingRight:{type:"number",default:20},paddingRightTablet:{type:"number",default:20},paddingRightMobile:{type:"number",default:20},paddingBottom:{type:"number",default:20},paddingBottomTablet:{type:"number",default:20},paddingBottomMobile:{type:"number",default:20},paddingLeft:{type:"number",default:20},paddingLeftTablet:{type:"number",default:20},paddingLeftMobile:{type:"number",default:20},marginType:{type:"string",default:"unlinked"},marginTypeTablet:{type:"string",default:"unlinked"},marginTypeMobile:{type:"string",default:"unlinked"},margin:{type:"number",default:20},marginTablet:{type:"number",default:20},marginMobile:{type:"number",default:20},marginTop:{type:"number",default:20},marginTopTablet:{type:"number",default:20},marginTopMobile:{type:"number",default:20},marginBottom:{type:"number",default:20},marginBottomTablet:{type:"number",default:20},marginBottomMobile:{type:"number",default:20},columnsWidth:{type:"number"},columnsHeight:{type:"string",default:"auto"},columnsHeightCustom:{type:"number"},columnsHeightCustomTablet:{type:"number"},columnsHeightCustomMobile:{type:"number"},horizontalAlign:{type:"string",default:"unset"},verticalAlign:{type:"string",default:"unset"},backgroundType:{type:"string",default:"color"},backgroundColor:{type:"string"},backgroundImageID:{type:"number"},backgroundImageURL:{type:"string"},backgroundAttachment:{type:"string",default:"scroll"},backgroundPosition:{type:"string",default:"top left"},backgroundRepeat:{type:"string",default:"repeat"},backgroundSize:{type:"string",default:"auto"},backgroundGradientFirstColor:{type:"string",default:"#36d1dc"},backgroundGradientFirstLocation:{type:"number",default:0},backgroundGradientSecondColor:{type:"string",default:"#5b86e5"},backgroundGradientSecondLocation:{type:"number",default:100},backgroundGradientType:{type:"string",default:"linear"},backgroundGradientAngle:{type:"number",default:90},backgroundGradientPosition:{type:"string",default:"center center"},backgroundOverlayOpacity:{type:"number",default:50},backgroundOverlayType:{type:"string",default:"color"},backgroundOverlayColor:{type:"string"},backgroundOverlayImageID:{type:"number"},backgroundOverlayImageURL:{type:"string"},backgroundOverlayAttachment:{type:"string",default:"scroll"},backgroundOverlayPosition:{type:"string",default:"top left"},backgroundOverlayRepeat:{type:"string",default:"repeat"},backgroundOverlaySize:{type:"string",default:"auto"},backgroundOverlayGradientFirstColor:{type:"string",default:"#36d1dc"},backgroundOverlayGradientFirstLocation:{type:"number",default:0},backgroundOverlayGradientSecondColor:{type:"string",default:"#5b86e5"},backgroundOverlayGradientSecondLocation:{type:"number",default:100},backgroundOverlayGradientType:{type:"string",default:"linear"},backgroundOverlayGradientAngle:{type:"number",default:90},backgroundOverlayGradientPosition:{type:"string",default:"center center"},backgroundOverlayFilterBlur:{type:"number",default:0},backgroundOverlayFilterBrightness:{type:"number",default:10},backgroundOverlayFilterContrast:{type:"number",default:10},backgroundOverlayFilterGrayscale:{type:"number",default:0},backgroundOverlayFilterHue:{type:"number",default:0},backgroundOverlayFilterSaturate:{type:"number",default:10},backgroundOverlayBlend:{type:"string",default:"normal"},borderType:{type:"string",default:"linked"},border:{type:"number",default:0},borderTop:{type:"number",default:0},borderRight:{type:"number",default:0},borderBottom:{type:"number",default:0},borderLeft:{type:"number",default:0},borderColor:{type:"string",default:"#000000"},borderRadiusType:{type:"string",default:"linked"},borderRadius:{type:"number",default:0},borderRadiusTop:{type:"number",default:0},borderRadiusRight:{type:"number",default:0},borderRadiusBottom:{type:"number",default:0},borderRadiusLeft:{type:"number",default:0},boxShadow:{type:"boolean",default:!1},boxShadowColor:{type:"string",default:"#000000"},boxShadowColorOpacity:{type:"number",default:50},boxShadowBlur:{type:"number",default:5},boxShadowSpread:{type:"number",default:0},boxShadowHorizontal:{type:"number",default:0},boxShadowVertical:{type:"number",default:0},dividerTopType:{type:"string",default:"none"},dividerTopColor:{type:"string",default:"#000000"},dividerTopWidth:{type:"number",default:100},dividerTopWidthTablet:{type:"number",default:100},dividerTopWidthMobile:{type:"number",default:100},dividerTopHeight:{type:"number",default:100},dividerTopHeightTablet:{type:"number",default:100},dividerTopHeightMobile:{type:"number",default:100},dividerTopInvert:{type:"boolean",default:!1},dividerBottomType:{type:"string",default:"none"},dividerBottomColor:{type:"string",default:"#000000"},dividerBottomWidth:{type:"number",default:100},dividerBottomWidthTablet:{type:"number",default:100},dividerBottomWidthMobile:{type:"number",default:100},dividerBottomHeight:{type:"number",default:100},dividerBottomHeightTablet:{type:"number",default:100},dividerBottomHeightMobile:{type:"number",default:100},dividerBottomInvert:{type:"boolean",default:!1},hide:{type:"boolean",default:!1},hideTablet:{type:"boolean",default:!1},hideMobile:{type:"boolean",default:!1},columnsHTMLTag:{type:"string",default:"div"}},f=function(e){var t=e.type,n=e.front,l=e.style,r=e.fill,o=e.invert,c=e.width,i=e.height;return"none"!==l&&wp.element.createElement("div",{className:a()("wp-block-themeisle-blocks-advanced-columns-separators",t),style:!n&&c?{transform:"".concat(c?"scaleX( ".concat(c/100," )"):"")}:{}},"bigTriangle"===l&&!1===o&&wp.element.createElement(g,{id:"bigTriangle",fill:r,viewBox:"0 0 100 100",width:"100%",height:i?"".concat(i,"px"):"100",preserveAspectRatio:"none",xmlns:"http://www.w3.org/2000/svg",style:"bottom"===t?{transform:"".concat("bottom"===t?"rotate(180deg)":"")}:{}},wp.element.createElement(h,{d:"M0 0 L50 100 L100 0 Z"})),"bigTriangle"===l&&!0===o&&wp.element.createElement(g,{id:"bigTriangle",fill:r,viewBox:"0 0 100 100",width:"100%",height:i?"".concat(i,"px"):"100",preserveAspectRatio:"none",xmlns:"http://www.w3.org/2000/svg",style:"top"===t?{transform:"".concat("top"===t?"rotate(180deg)":"")}:{}},wp.element.createElement(h,{d:"M100, 0l-50, 100l-50, -100l0, 100l100, 0l0, -100Z"})),"rightCurve"===l&&!1===o&&wp.element.createElement(g,{id:"rightCurve",fill:r,viewBox:"0 0 100 100",width:"100%",height:i?"".concat(i,"px"):"100",preserveAspectRatio:"none",xmlns:"http://www.w3.org/2000/svg",style:"top"===t?{transform:"".concat("top"===t?"rotate(180deg)":"")}:{}},wp.element.createElement(h,{d:"M0 100 C 20 0 50 0 100 100 Z"})),"rightCurve"===l&&!0===o&&wp.element.createElement(g,{id:"rightCurve",fill:r,viewBox:"0 0 100 100",width:"100%",height:i?"".concat(i,"px"):"100",preserveAspectRatio:"none",xmlns:"http://www.w3.org/2000/svg",style:"top"===t?{transform:"".concat("top"===t?"rotate(180deg)":"")}:{}},wp.element.createElement(h,{d:"M0 100 C 50 0 70 0 100 100 Z"})),"curve"===l&&wp.element.createElement(g,{id:"curve",fill:r,viewBox:"0 0 100 100",width:"100%",height:i?"".concat(i,"px"):"100",preserveAspectRatio:"none",xmlns:"http://www.w3.org/2000/svg",style:"top"===t?{transform:"".concat("top"===t?"rotate(180deg)":"")}:{}},wp.element.createElement(h,{d:"M0 100 C40 0 60 0 100 100 Z"})),"slant"===l&&!1===o&&wp.element.createElement(g,{id:"slant",fill:r,viewBox:"0 0 100 100",width:"100%",height:i?"".concat(i,"px"):"100",preserveAspectRatio:"none",xmlns:"http://www.w3.org/2000/svg",style:"bottom"===t?{transform:"".concat("bottom"===t?"rotate(180deg)":"")}:{}},wp.element.createElement(h,{d:"M0 0 L100 100 L100 0 Z"})),"slant"===l&&!0===o&&wp.element.createElement(g,{id:"slant",fill:r,viewBox:"0 0 100 100",width:"100%",height:i?"".concat(i,"px"):"100",preserveAspectRatio:"none",xmlns:"http://www.w3.org/2000/svg",style:"bottom"===t?{transform:"".concat("bottom"===t?"rotate(180deg)":"")}:{}},wp.element.createElement(h,{d:"M0 0 L0 100 L100 0 Z"})),"cloud"===l&&wp.element.createElement(g,{id:"cloud",fill:r,viewBox:"0 0 100 100",width:"100%",height:i?"".concat(i,"px"):"100",preserveAspectRatio:"none",xmlns:"http://www.w3.org/2000/svg",style:"top"===t?{transform:"".concat("top"===t?"rotate(180deg)":"")}:{}},wp.element.createElement(h,{d:"M-5 100 Q 10 -100 15 100 Z M10 100 Q 20 -20 30 100 M25 100 Q 35 -70 45 100 M40 100 Q 50 -100 60 100 M55 100 Q 65 -20 75 100 M70 100 Q 75 -45 90 100 M85 100 Q 90 -50 95 100 M90 100 Q 95 -25 105 100 Z"})))},y=function(e){var t=e.type,n=e.front,l=e.style,r=e.fill,o=e.invert,c=e.width,i=e.height;return"none"!==l&&wp.element.createElement("div",{className:a()("wp-block-themeisle-blocks-advanced-columns-separators",t),style:!n&&c?{transform:"".concat(c?"scaleX( ".concat(c/100," )"):"")}:{}},"bigTriangle"===l&&!1===o&&wp.element.createElement(g,{id:"bigTriangle",fill:r,viewBox:"0 0 100 100",width:"100%",height:i?"".concat(i,"px"):"100",preserveAspectRatio:"none",xmlns:"http://www.w3.org/2000/svg",className:a()({rotate:"bottom"===t})},wp.element.createElement(h,{d:"M0 0 L50 100 L100 0 Z"})),"bigTriangle"===l&&!0===o&&wp.element.createElement(g,{id:"bigTriangle",fill:r,viewBox:"0 0 100 100",width:"100%",height:i?"".concat(i,"px"):"100",preserveAspectRatio:"none",xmlns:"http://www.w3.org/2000/svg",className:a()({rotate:"top"===t})},wp.element.createElement(h,{d:"M100, 0l-50, 100l-50, -100l0, 100l100, 0l0, -100Z"})),"rightCurve"===l&&!1===o&&wp.element.createElement(g,{id:"rightCurve",fill:r,viewBox:"0 0 100 100",width:"100%",height:i?"".concat(i,"px"):"100",preserveAspectRatio:"none",xmlns:"http://www.w3.org/2000/svg",className:a()({rotate:"top"===t})},wp.element.createElement(h,{d:"M0 100 C 20 0 50 0 100 100 Z"})),"rightCurve"===l&&!0===o&&wp.element.createElement(g,{id:"rightCurve",fill:r,viewBox:"0 0 100 100",width:"100%",height:i?"".concat(i,"px"):"100",preserveAspectRatio:"none",xmlns:"http://www.w3.org/2000/svg",className:a()({rotate:"top"===t})},wp.element.createElement(h,{d:"M0 100 C 50 0 70 0 100 100 Z"})),"curve"===l&&wp.element.createElement(g,{id:"curve",fill:r,viewBox:"0 0 100 100",width:"100%",height:i?"".concat(i,"px"):"100",preserveAspectRatio:"none",xmlns:"http://www.w3.org/2000/svg",className:a()({rotate:"top"===t})},wp.element.createElement(h,{d:"M0 100 C40 0 60 0 100 100 Z"})),"slant"===l&&!1===o&&wp.element.createElement(g,{id:"slant",fill:r,viewBox:"0 0 100 100",width:"100%",height:i?"".concat(i,"px"):"100",preserveAspectRatio:"none",xmlns:"http://www.w3.org/2000/svg",className:a()({rotate:"bottom"===t})},wp.element.createElement(h,{d:"M0 0 L100 100 L100 0 Z"})),"slant"===l&&!0===o&&wp.element.createElement(g,{id:"slant",fill:r,viewBox:"0 0 100 100",width:"100%",height:i?"".concat(i,"px"):"100",preserveAspectRatio:"none",xmlns:"http://www.w3.org/2000/svg",className:a()({rotate:"bottom"===t})},wp.element.createElement(h,{d:"M0 0 L0 100 L100 0 Z"})),"cloud"===l&&wp.element.createElement(g,{id:"cloud",fill:r,viewBox:"0 0 100 100",width:"100%",height:i?"".concat(i,"px"):"100",preserveAspectRatio:"none",xmlns:"http://www.w3.org/2000/svg",className:a()({rotate:"top"===t})},wp.element.createElement(h,{d:"M-5 100 Q 10 -100 15 100 Z M10 100 Q 20 -20 30 100 M25 100 Q 35 -70 45 100 M40 100 Q 50 -100 60 100 M55 100 Q 65 -20 75 100 M70 100 Q 75 -45 90 100 M85 100 Q 90 -50 95 100 M90 100 Q 95 -25 105 100 Z"})))},v=[{attributes:w,supports:{align:["wide","full"],html:!1},save:function(e){var t,n,l,r,o,c,s=e.attributes,m=e.className,u=s.columnsHTMLTag;("color"===s.backgroundType&&(t={background:s.backgroundColor}),"image"===s.backgroundType&&(t={backgroundImage:"url( '".concat(s.backgroundImageURL,"' )"),backgroundAttachment:s.backgroundAttachment,backgroundPosition:s.backgroundPosition,backgroundRepeat:s.backgroundRepeat,backgroundSize:s.backgroundSize}),"gradient"===s.backgroundType)&&(c="linear"===s.backgroundGradientType?"".concat(s.backgroundGradientAngle,"deg"):"at ".concat(s.backgroundGradientPosition),t={background:"".concat(s.backgroundGradientType,"-gradient( ").concat(c,", ").concat(s.backgroundGradientFirstColor||"rgba( 0, 0, 0, 0 )"," ").concat(s.backgroundGradientFirstLocation,"%, ").concat(s.backgroundGradientSecondColor||"rgba( 0, 0, 0, 0 )"," ").concat(s.backgroundGradientSecondLocation,"% )")});"linked"===s.borderType&&(l={borderWidth:"".concat(s.border,"px"),borderStyle:"solid",borderColor:s.borderColor}),"unlinked"===s.borderType&&(l={borderTopWidth:"".concat(s.borderTop,"px"),borderRightWidth:"".concat(s.borderRight,"px"),borderBottomWidth:"".concat(s.borderBottom,"px"),borderLeftWidth:"".concat(s.borderLeft,"px"),borderStyle:"solid",borderColor:s.borderColor}),"linked"===s.borderRadiusType&&(r={borderRadius:"".concat(s.borderRadius,"px")}),"unlinked"===s.borderRadiusType&&(r={borderTopLeftRadius:"".concat(s.borderRadiusTop,"px"),borderTopRightRadius:"".concat(s.borderRadiusRight,"px"),borderBottomRightRadius:"".concat(s.borderRadiusBottom,"px"),borderBottomLeftRadius:"".concat(s.borderRadiusLeft,"px")}),!0===s.boxShadow&&(o={boxShadow:"".concat(s.boxShadowHorizontal,"px ").concat(s.boxShadowVertical,"px ").concat(s.boxShadowBlur,"px ").concat(s.boxShadowSpread,"px ").concat(i()(s.boxShadowColor?s.boxShadowColor:"#000000",s.boxShadowColorOpacity))});var b,g=p(p(p(p(p({},t),l),r),o),{},{justifyContent:s.horizontalAlign});("color"===s.backgroundOverlayType&&(n={background:s.backgroundOverlayColor,opacity:s.backgroundOverlayOpacity/100}),"image"===s.backgroundOverlayType&&(n={backgroundImage:"url( '".concat(s.backgroundOverlayImageURL,"' )"),backgroundAttachment:s.backgroundOverlayAttachment,backgroundPosition:s.backgroundOverlayPosition,backgroundRepeat:s.backgroundOverlayRepeat,backgroundSize:s.backgroundOverlaySize,opacity:s.backgroundOverlayOpacity/100}),"gradient"===s.backgroundOverlayType)&&(b="linear"===s.backgroundOverlayGradientType?"".concat(s.backgroundOverlayGradientAngle,"deg"):"at ".concat(s.backgroundOverlayGradientPosition),n={background:"".concat(s.backgroundOverlayGradientType,"-gradient( ").concat(b,", ").concat(s.backgroundOverlayGradientFirstColor||"rgba( 0, 0, 0, 0 )"," ").concat(s.backgroundOverlayGradientFirstLocation,"%, ").concat(s.backgroundOverlayGradientSecondColor||"rgba( 0, 0, 0, 0 )"," ").concat(s.backgroundOverlayGradientSecondLocation,"% )"),opacity:s.backgroundOverlayOpacity/100});var h=p(p({},n),{},{mixBlendMode:s.backgroundOverlayBlend,filter:"blur( ".concat(s.backgroundOverlayFilterBlur/10,"px ) brightness( ").concat(s.backgroundOverlayFilterBrightness/10," ) contrast( ").concat(s.backgroundOverlayFilterContrast/10," ) grayscale( ").concat(s.backgroundOverlayFilterGrayscale/100," ) hue-rotate( ").concat(s.backgroundOverlayFilterHue,"deg ) saturate( ").concat(s.backgroundOverlayFilterSaturate/10," )")}),w={};s.columnsWidth&&(w={maxWidth:s.columnsWidth+"px"});var y=s.hide?"":"has-desktop-".concat(s.layout,"-layout"),v=s.hideTablet?"":"has-tablet-".concat(s.layoutTablet,"-layout"),k=s.hideMobile?"":"has-mobile-".concat(s.layoutMobile,"-layout"),E=a()(m,"has-".concat(s.columns,"-columns"),y,v,k,{"hide-in-desktop":s.hide},{"hide-in-tablet":s.hideTablet},{"hide-in-mobile":s.hideMobile},"has-".concat(s.lcolumnsGap,"-gap"),"has-vertical-".concat(s.verticalAlign));return wp.element.createElement(u,{className:E,id:s.id,style:g},wp.element.createElement("div",{className:"wp-themeisle-block-overlay",style:h}),wp.element.createElement(f,{type:"top",front:!0,style:s.dividerTopType,fill:s.dividerTopColor,invert:s.dividerTopInvert}),wp.element.createElement("div",{className:"innerblocks-wrap",style:w},wp.element.createElement(d.Content,null)),wp.element.createElement(f,{type:"bottom",front:!0,style:s.dividerBottomType,fill:s.dividerBottomColor,invert:s.dividerBottomInvert}))}},{attributes:w,supports:{align:["wide","full"],html:!1},save:function(e){var t,n,l,r,o,c,s=e.attributes,m=e.className,u=s.columnsHTMLTag;("color"===s.backgroundType&&(t={background:s.backgroundColor}),"image"===s.backgroundType&&(t={backgroundImage:"url( '".concat(s.backgroundImageURL,"' )"),backgroundAttachment:s.backgroundAttachment,backgroundPosition:s.backgroundPosition,backgroundRepeat:s.backgroundRepeat,backgroundSize:s.backgroundSize}),"gradient"===s.backgroundType)&&(c="linear"===s.backgroundGradientType?"".concat(s.backgroundGradientAngle,"deg"):"at ".concat(s.backgroundGradientPosition),t={background:"".concat(s.backgroundGradientType,"-gradient( ").concat(c,", ").concat(s.backgroundGradientFirstColor||"rgba( 0, 0, 0, 0 )"," ").concat(s.backgroundGradientFirstLocation,"%, ").concat(s.backgroundGradientSecondColor||"rgba( 0, 0, 0, 0 )"," ").concat(s.backgroundGradientSecondLocation,"% )")});"linked"===s.borderType&&(l={borderWidth:"".concat(s.border,"px"),borderStyle:"solid",borderColor:s.borderColor}),"unlinked"===s.borderType&&(l={borderTopWidth:"".concat(s.borderTop,"px"),borderRightWidth:"".concat(s.borderRight,"px"),borderBottomWidth:"".concat(s.borderBottom,"px"),borderLeftWidth:"".concat(s.borderLeft,"px"),borderStyle:"solid",borderColor:s.borderColor}),"linked"===s.borderRadiusType&&(r={borderRadius:"".concat(s.borderRadius,"px")}),"unlinked"===s.borderRadiusType&&(r={borderTopLeftRadius:"".concat(s.borderRadiusTop,"px"),borderTopRightRadius:"".concat(s.borderRadiusRight,"px"),borderBottomRightRadius:"".concat(s.borderRadiusBottom,"px"),borderBottomLeftRadius:"".concat(s.borderRadiusLeft,"px")}),!0===s.boxShadow&&(o={boxShadow:"".concat(s.boxShadowHorizontal,"px ").concat(s.boxShadowVertical,"px ").concat(s.boxShadowBlur,"px ").concat(s.boxShadowSpread,"px ").concat(i()(s.boxShadowColor?s.boxShadowColor:"#000000",s.boxShadowColorOpacity))});var b,g=p(p(p(p(p({},t),l),r),o),{},{justifyContent:s.horizontalAlign});("color"===s.backgroundOverlayType&&(n={background:s.backgroundOverlayColor,opacity:s.backgroundOverlayOpacity/100}),"image"===s.backgroundOverlayType&&(n={backgroundImage:"url( '".concat(s.backgroundOverlayImageURL,"' )"),backgroundAttachment:s.backgroundOverlayAttachment,backgroundPosition:s.backgroundOverlayPosition,backgroundRepeat:s.backgroundOverlayRepeat,backgroundSize:s.backgroundOverlaySize,opacity:s.backgroundOverlayOpacity/100}),"gradient"===s.backgroundOverlayType)&&(b="linear"===s.backgroundOverlayGradientType?"".concat(s.backgroundOverlayGradientAngle,"deg"):"at ".concat(s.backgroundOverlayGradientPosition),n={background:"".concat(s.backgroundOverlayGradientType,"-gradient( ").concat(b,", ").concat(s.backgroundOverlayGradientFirstColor||"rgba( 0, 0, 0, 0 )"," ").concat(s.backgroundOverlayGradientFirstLocation,"%, ").concat(s.backgroundOverlayGradientSecondColor||"rgba( 0, 0, 0, 0 )"," ").concat(s.backgroundOverlayGradientSecondLocation,"% )"),opacity:s.backgroundOverlayOpacity/100});var h=p(p({},n),{},{mixBlendMode:s.backgroundOverlayBlend}),w={};s.columnsWidth&&(w={maxWidth:s.columnsWidth+"px"});var y=s.hide?"":"has-desktop-".concat(s.layout,"-layout"),v=s.hideTablet?"":"has-tablet-".concat(s.layoutTablet,"-layout"),k=s.hideMobile?"":"has-mobile-".concat(s.layoutMobile,"-layout"),E=a()(m,"has-".concat(s.columns,"-columns"),y,v,k,{"hide-in-desktop":s.hide},{"hide-in-tablet":s.hideTablet},{"hide-in-mobile":s.hideMobile},"has-".concat(s.columnsGap,"-gap"),"has-vertical-".concat(s.verticalAlign));return wp.element.createElement(u,{className:E,id:s.id,style:g},wp.element.createElement("div",{className:"wp-themeisle-block-overlay",style:h}),wp.element.createElement(f,{type:"top",front:!0,style:s.dividerTopType,fill:s.dividerTopColor,invert:s.dividerTopInvert}),wp.element.createElement("div",{className:"innerblocks-wrap",style:w},wp.element.createElement(d.Content,null)),wp.element.createElement(f,{type:"bottom",front:!0,style:s.dividerBottomType,fill:s.dividerBottomColor,invert:s.dividerBottomInvert}))}},{attributes:p(p({},w),{},{paddingTablet:{type:"number"},paddingMobile:{type:"number"},paddingTopTablet:{type:"number"},paddingTopMobile:{type:"number"},paddingRightTablet:{type:"number"},paddingRightMobile:{type:"number"},paddingBottomTablet:{type:"number"},paddingBottomMobile:{type:"number"},paddingLeftTablet:{type:"number"},paddingLeftMobile:{type:"number"},marginTablet:{type:"number"},marginMobile:{type:"number"},marginTopTablet:{type:"number"},marginTopMobile:{type:"number"},marginBottomTablet:{type:"number"},marginBottomMobile:{type:"number"},reverseColumnsTablet:{type:"boolean",default:!1},reverseColumnsMobile:{type:"boolean",default:!1}}),supports:{align:["wide","full"],html:!1},save:function(e){var t=e.attributes,n=e.className,l=t.columnsHTMLTag,r=t.hide?"":"has-desktop-".concat(t.layout,"-layout"),o=t.hideTablet?"":"has-tablet-".concat(t.layoutTablet,"-layout"),c=t.hideMobile?"":"has-mobile-".concat(t.layoutMobile,"-layout"),i=a()(n,"has-".concat(t.columns,"-columns"),r,o,c,{"hide-in-desktop":t.hide},{"hide-in-tablet":t.hideTablet},{"hide-in-mobile":t.hideMobile},{"has-reverse-columns-tablet":t.reverseColumnsTablet&&!t.hideTablet&&"collapsedRows"===t.layoutTablet},{"has-reverse-columns-mobile":t.reverseColumnsMobile&&!t.hideMobile&&"collapsedRows"===t.layoutMobile},"has-".concat(t.columnsGap,"-gap"),"has-vertical-".concat(t.verticalAlign));return wp.element.createElement(l,{className:i,id:t.id},wp.element.createElement("div",{className:"wp-block-themeisle-blocks-advanced-columns-overlay"}),wp.element.createElement(y,{type:"top",front:!0,style:t.dividerTopType,fill:t.dividerTopColor,invert:t.dividerTopInvert}),wp.element.createElement("div",{className:"innerblocks-wrap"},wp.element.createElement(d.Content,null)),wp.element.createElement(y,{type:"bottom",front:!0,style:t.dividerBottomType,fill:t.dividerBottomColor,invert:t.dividerBottomInvert}))}},{attributes:p(p({},w),{},{paddingTablet:{type:"number"},paddingMobile:{type:"number"},paddingTopTablet:{type:"number"},paddingTopMobile:{type:"number"},paddingRightTablet:{type:"number"},paddingRightMobile:{type:"number"},paddingBottomTablet:{type:"number"},paddingBottomMobile:{type:"number"},paddingLeftTablet:{type:"number"},paddingLeftMobile:{type:"number"},marginTablet:{type:"number"},marginMobile:{type:"number"},marginTopTablet:{type:"number"},marginTopMobile:{type:"number"},marginBottomTablet:{type:"number"},marginBottomMobile:{type:"number"},reverseColumnsTablet:{type:"boolean",default:!1},reverseColumnsMobile:{type:"boolean",default:!1}}),supports:{align:["wide","full"],html:!1},migrate:function(e){var t="",n="";if("gradient"===e.backgroundType){var l="";"linear"===e.backgroundGradientType&&(l="".concat(e.backgroundGradientAngle,"deg, ")),t="".concat(e.backgroundGradientType,"-gradient(").concat(l).concat(i()(e.backgroundGradientFirstColor)||"rgba( 0, 0, 0, 0 )"," ").concat(e.backgroundGradientFirstLocation,"%, ").concat(i()(e.backgroundGradientSecondColor)||"rgba( 0, 0, 0, 0 )"," ").concat(e.backgroundGradientSecondLocation,"%)")}if("gradient"===e.backgroundOverlayType){var r="";"linear"===e.backgroundOverlayGradientType&&(r="".concat(e.backgroundOverlayGradientAngle,"deg, ")),n="".concat(e.backgroundOverlayGradientType,"-gradient(").concat(r).concat(i()(e.backgroundOverlayGradientFirstColor)||"rgba( 0, 0, 0, 0 )"," ").concat(e.backgroundOverlayGradientFirstLocation,"%, ").concat(i()(e.backgroundOverlayGradientSecondColor)||"rgba( 0, 0, 0, 0 )"," ").concat(e.backgroundOverlayGradientSecondLocation,"%)")}var o=p(p({},u(e,["backgroundGradientFirstColor","backgroundGradientFirstLocation","backgroundGradientSecondColor","backgroundGradientSecondLocation","backgroundGradientType","backgroundGradientAngle","backgroundGradientPosition","backgroundOverlayGradientFirstColor","backgroundOverlayGradientFirstLocation","backgroundOverlayGradientSecondColor","backgroundOverlayGradientSecondLocation","backgroundOverlayGradientType","backgroundOverlayGradientAngle","backgroundOverlayGradientPosition"])),{},{backgroundGradient:t,backgroundOverlayGradient:n});return p({},o)},isEligible:function(e){return"gradient"===e.backgroundType&&void 0!==e.backgroundGradientFirstColor||"gradient"===e.backgroundOverlayType&&void 0!==e.backgroundOverlayGradientFirstColor},save:function(e){var t=e.attributes,n=e.className,l=t.columnsHTMLTag,r=t.hide?"":"has-desktop-".concat(t.layout,"-layout"),o=t.hideTablet?"":"has-tablet-".concat(t.layoutTablet,"-layout"),c=t.hideMobile?"":"has-mobile-".concat(t.layoutMobile,"-layout"),i=a()(n,"has-".concat(t.columns,"-columns"),r,o,c,{"hide-in-desktop":t.hide},{"hide-in-tablet":t.hideTablet},{"hide-in-mobile":t.hideMobile},{"has-reverse-columns-tablet":t.reverseColumnsTablet&&!t.hideTablet&&"collapsedRows"===t.layoutTablet},{"has-reverse-columns-mobile":t.reverseColumnsMobile&&!t.hideMobile&&"collapsedRows"===t.layoutMobile},"has-".concat(t.columnsGap,"-gap"),"has-vertical-".concat(t.verticalAlign));return wp.element.createElement(l,{className:i,id:t.id},wp.element.createElement("div",{className:"wp-block-themeisle-blocks-advanced-columns-overlay"}),wp.element.createElement(y,{type:"top",front:!0,style:t.dividerTopType,fill:t.dividerTopColor,invert:t.dividerTopInvert}),wp.element.createElement("div",{className:"innerblocks-wrap"},wp.element.createElement(d.Content,null)),wp.element.createElement(y,{type:"bottom",front:!0,style:t.dividerBottomType,fill:t.dividerBottomColor,invert:t.dividerBottomInvert}))}}],k=n(5),E=n(25),T=wp.blockEditor,C=T.BlockControls,x=T.BlockVerticalAlignmentToolbar,M=function(e){var t=e.attributes,n=e.setAttributes,l=function(){return"flex-start"===t.verticalAlign?"top":"flex-end"===t.verticalAlign?"bottom":t.verticalAlign};return l=l(),wp.element.createElement(C,null,wp.element.createElement(x,{onChange:function(e){if(t.verticalAlign===e)return n({verticalAlign:"unset"});"top"===e?e="flex-start":"bottom"===e&&(e="flex-end"),n({verticalAlign:e})},value:l}))},S=n(7),z=n(33),O=n(9),B=n(8),L=n(23),H=n(15),P=n(28);function _(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function A(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=e&&("undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"]);if(null==n)return;var l,r,o=[],a=!0,c=!1;try{for(n=n.call(e);!(a=(l=n.next()).done)&&(o.push(l.value),!t||o.length!==t);a=!0);}catch(e){c=!0,r=e}finally{try{a||null==n.return||n.return()}finally{if(c)throw r}}return o}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return V(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return V(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function V(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,l=new Array(t);n<t;n++)l[n]=e[n];return l}var j=wp.i18n.__,N=wp.blockEditor,R=N.__experimentalColorGradientControl,I=N.ColorPalette,D=N.InspectorControls,G=N.MediaPlaceholder,F=wp.components,W=F.BaseControl,U=F.Button,q=F.ButtonGroup,Z=F.Dashicon,$=F.PanelBody,Q=F.ToggleControl,K=F.RangeControl,J=F.SelectControl,Y=wp.data.useSelect,X=wp.element,ee=X.Fragment,te=X.useState,ne=X.useEffect,le=function(e){var t=e.attributes,n=e.setAttributes,l=e.updateColumnsWidth,r=e.dividerViewType,o=e.setDividerViewType,c=Y((function(e){var t=e("themeisle-gutenberg/data").getView,n=e("core/edit-post").__experimentalGetPreviewDeviceType;return n?n():t()}),[]),i=A(te("layout"),2),s=i[0],p=i[1],m=A(te(!1),2),u=m[0],d=m[1];ne((function(){u&&(6>=t.columns?l(t.columns,"equal"):6<t.columns?l(6,"equal"):1>=t.columns&&l(1,"equal"),d(!1))}),[t.columns]);var b=function(){var e;return"Desktop"===c&&(e=t.paddingType),"Tablet"===c&&(e=t.paddingTypeTablet),"Mobile"===c&&(e=t.paddingTypeMobile),e};b=b();var g={top:"paddingTop",right:"paddingRight",bottom:"paddingBottom",left:"paddingLeft"},h={top:"paddingTopTablet",right:"paddingRightTablet",bottom:"paddingBottomTablet",left:"paddingLeftTablet"},w={top:"paddingTopMobile",right:"paddingRightMobile",bottom:"paddingBottomMobile",left:"paddingLeftMobile"},f=function(e){var n;return"top"==e&&("Desktop"===c&&(n="linked"===t.paddingType?t.padding:t.paddingTop),"Tablet"===c&&(n="linked"===t.paddingTypeTablet?t.paddingTablet:t.paddingTopTablet),"Mobile"===c&&(n="linked"===t.paddingTypeMobile?t.paddingMobile:t.paddingTopMobile)),"right"==e&&("Desktop"===c&&(n="linked"===t.paddingType?t.padding:t.paddingRight),"Tablet"===c&&(n="linked"===t.paddingTypeTablet?t.paddingTablet:t.paddingRightTablet),"Mobile"===c&&(n="linked"===t.paddingTypeMobile?t.paddingMobile:t.paddingRightMobile)),"bottom"==e&&("Desktop"===c&&(n="linked"===t.paddingType?t.padding:t.paddingBottom),"Tablet"===c&&(n="linked"===t.paddingTypeTablet?t.paddingTablet:t.paddingBottomTablet),"Mobile"===c&&(n="linked"===t.paddingTypeMobile?t.paddingMobile:t.paddingBottomMobile)),"left"==e&&("Desktop"===c&&(n="linked"===t.paddingType?t.padding:t.paddingLeft),"Tablet"===c&&(n="linked"===t.paddingTypeTablet?t.paddingTablet:t.paddingLeftTablet),"Mobile"===c&&(n="linked"===t.paddingTypeMobile?t.paddingMobile:t.paddingLeftMobile)),n},y=function(){var e;return"Desktop"===c&&(e=t.marginType),"Tablet"===c&&(e=t.marginTypeTablet),"Mobile"===c&&(e=t.marginTypeMobile),e};y=y();var v={top:"marginTop",bottom:"marginBottom"},k={top:"marginTopTablet",bottom:"marginBottomTablet"},E={top:"marginTopMobile",bottom:"marginBottomMobile"},T=function(e){var n;return"top"==e&&("Desktop"===c&&(n="linked"===t.marginType?t.margin:t.marginTop),"Tablet"===c&&(n="linked"===t.marginTypeTablet?t.marginTablet:t.marginTopTablet),"Mobile"===c&&(n="linked"===t.marginTypeMobile?t.marginMobile:t.marginTopMobile)),"bottom"==e&&("Desktop"===c&&(n="linked"===t.marginType?t.margin:t.marginBottom),"Tablet"===c&&(n="linked"===t.marginTypeTablet?t.marginTablet:t.marginBottomTablet),"Mobile"===c&&(n="linked"===t.marginTypeMobile?t.marginMobile:t.marginBottomMobile)),n},C=function(e){if(t.horizontalAlign===e)return n({horizontalAlign:"unset"});n({horizontalAlign:e})},x=function(){var e;return"Desktop"===c&&(e=t.columnsHeightCustom),"Tablet"===c&&(e=t.columnsHeightCustomTablet),"Mobile"===c&&(e=t.columnsHeightCustomMobile),e};x=x();var M=function(){n({backgroundImageID:"",backgroundImageURL:""})},V=function(){n({backgroundOverlayImageID:"",backgroundOverlayImageURL:""})},N={top:"borderTop",right:"borderRight",bottom:"borderBottom",left:"borderLeft"},F=function(e){var n;return"top"==e&&(n="linked"===t.borderType?t.border:t.borderTop),"right"==e&&(n="linked"===t.borderType?t.border:t.borderRight),"bottom"==e&&(n="linked"===t.borderType?t.border:t.borderBottom),"left"==e&&(n="linked"===t.borderType?t.border:t.borderLeft),n},X={top:"borderRadiusTop",right:"borderRadiusRight",bottom:"borderRadiusBottom",left:"borderRadiusLeft"},le=function(e){var n;return"top"==e&&(n="linked"===t.borderRadiusType?t.borderRadius:t.borderRadiusTop),"right"==e&&(n="linked"===t.borderRadiusType?t.borderRadius:t.borderRadiusRight),"bottom"==e&&(n="linked"===t.borderRadiusType?t.borderRadius:t.borderRadiusBottom),"left"==e&&(n="linked"===t.borderRadiusType?t.borderRadius:t.borderRadiusLeft),n},re=function(){var e;return"top"==r&&(e=t.dividerTopType),"bottom"==r&&(e=t.dividerBottomType),e};re=re();var oe=function(){var e;return"top"==r&&(e=t.dividerTopColor),"bottom"==r&&(e=t.dividerBottomColor),e};oe=oe();var ae=function(){var e;return"top"==r&&("Desktop"==c&&(e=t.dividerTopWidth),"Tablet"==c&&(e=t.dividerTopWidthTablet),"Mobile"==c&&(e=t.dividerTopWidthMobile)),"bottom"==r&&("Desktop"==c&&(e=t.dividerBottomWidth),"Tablet"==c&&(e=t.dividerBottomWidthTablet),"Mobile"==c&&(e=t.dividerBottomWidthMobile)),e};ae=ae();var ce=function(){var e;return"top"==r&&("Desktop"==c&&(e=t.dividerTopHeight),"Tablet"==c&&(e=t.dividerTopHeightTablet),"Mobile"==c&&(e=t.dividerTopHeightMobile)),"bottom"==r&&("Desktop"==c&&(e=t.dividerBottomHeight),"Tablet"==c&&(e=t.dividerBottomHeightTablet),"Mobile"==c&&(e=t.dividerBottomHeightMobile)),e};ce=ce();var ie=function(){var e;return"top"==r&&(e=t.dividerTopInvert),"bottom"==r&&(e=t.dividerBottomInvert),e};ie=ie();var se=function(e,t){"Desktop"===t&&n({hide:e}),"Tablet"===t&&n({hideTablet:e}),"Mobile"===t&&n({hideMobile:e})},pe=function(e,t){"Tablet"===t&&n({reverseColumnsTablet:e}),"Mobile"===t&&n({reverseColumnsMobile:e})};return wp.element.createElement(ee,null,wp.element.createElement(D,null,wp.element.createElement($,{className:"wp-block-themeisle-blocks-advanced-columns-header-panel"},wp.element.createElement(U,{className:a()("header-tab",{"is-selected":"layout"===s}),onClick:function(){return p("layout")}},wp.element.createElement("span",null,wp.element.createElement(Z,{icon:"editor-table"}),j("Layout"))),wp.element.createElement(U,{className:a()("header-tab",{"is-selected":"style"===s}),onClick:function(){return p("style")}},wp.element.createElement("span",null,wp.element.createElement(Z,{icon:"admin-customizer"}),j("Style"))),wp.element.createElement(U,{className:a()("header-tab",{"is-selected":"advanced"===s}),onClick:function(){return p("advanced")}},wp.element.createElement("span",null,wp.element.createElement(Z,{icon:"admin-generic"}),j("Advanced")))),"layout"===s&&wp.element.createElement(ee,null,wp.element.createElement($,{title:j("Columns & Layout")},wp.element.createElement(K,{label:j("Columns"),value:t.columns,onChange:function(e){6>=e&&n({columns:e,layout:"equal",layoutTablet:"equal",layoutMobile:"collapsedRows"}),6<e&&n({columns:6,layout:"equal",layoutTablet:"equal",layoutMobile:"collapsedRows"}),1>=e&&n({columns:1,layout:"equal",layoutTablet:"equal",layoutMobile:"equal"}),d(!0)},min:1,max:6}),wp.element.createElement(z.default,{label:j("Layout"),columns:t.columns,layout:t.layout,layoutTablet:t.layoutTablet,layoutMobile:t.layoutMobile,onClick:function(e){"Desktop"===c&&(n({layout:e}),l(t.columns,e)),"Tablet"===c&&n({layoutTablet:e}),"Mobile"===c&&n({layoutMobile:e})}}),wp.element.createElement(J,{label:j("Columns Gap"),value:t.columnsGap,options:[{label:j("Default (10px)"),value:"default"},{label:j("No Gap"),value:"nogap"},{label:j("Narrow (5px)"),value:"narrow"},{label:j("Extended (15px)"),value:"extended"},{label:j("Wide (20px)"),value:"wide"},{label:j("Wider (30px)"),value:"wider"}],onChange:function(e){n({columnsGap:e})}})),wp.element.createElement($,{title:j("Spacing"),initialOpen:!1},wp.element.createElement(B.a,{label:"Padding"},wp.element.createElement(O.a,{type:b,min:0,max:500,changeType:function(e){"Desktop"===c&&n({paddingType:e}),"Tablet"===c&&n({paddingTypeTablet:e}),"Mobile"===c&&n({paddingTypeMobile:e})},onChange:function(e,l){"Desktop"===c&&("linked"===t.paddingType?n({padding:l}):n(_({},g[e],l))),"Tablet"===c&&("linked"===t.paddingTypeTablet?n({paddingTablet:l}):n(_({},h[e],l))),"Mobile"===c&&("linked"===t.paddingTypeMobile?n({paddingMobile:l}):n(_({},w[e],l)))},options:[{label:j("Top"),type:"top",value:f("top")},{label:j("Right"),type:"right",value:f("right")},{label:j("Bottom"),type:"bottom",value:f("bottom")},{label:j("Left"),type:"left",value:f("left")}]})),wp.element.createElement(B.a,{label:"Margin"},wp.element.createElement(O.a,{type:y,min:-500,max:500,changeType:function(e){"Desktop"===c&&n({marginType:e}),"Tablet"===c&&n({marginTypeTablet:e}),"Mobile"===c&&n({marginTypeMobile:e})},onChange:function(e,l){"Desktop"===c&&("linked"===t.marginType?n({margin:l}):n(_({},v[e],l))),"Tablet"===c&&("linked"===t.marginTypeTablet?n({marginTablet:l}):n(_({},k[e],l))),"Mobile"===c&&("linked"===t.marginTypeMobile?n({marginMobile:l}):n(_({},E[e],l)))},options:[{label:j("Top"),type:"top",value:T("top")},{label:j("Right"),disabled:!0},{label:j("Bottom"),type:"bottom",value:T("bottom")},{label:j("Left"),disabled:!0}]}))),wp.element.createElement($,{title:j("Section Structure"),initialOpen:!1},wp.element.createElement(K,{label:j("Maximum Content Width"),value:t.columnsWidth||"",onChange:function(e){(0<=e&&1200>=e||void 0===e)&&n({columnsWidth:e})},min:0,max:1200}),t.columnsWidth&&wp.element.createElement(W,{label:"Horizontal Align"},wp.element.createElement(q,{className:"wp-block-themeisle-icon-buttom-group"},wp.element.createElement(U,{icon:"editor-alignleft",label:j("Left"),showTooltip:!0,isLarge:!0,isPrimary:"flex-start"===t.horizontalAlign,onClick:function(){return C("flex-start")}}),wp.element.createElement(U,{icon:"editor-aligncenter",label:j("Center"),showTooltip:!0,isLarge:!0,isPrimary:"center"===t.horizontalAlign,onClick:function(){return C("center")}}),wp.element.createElement(U,{icon:"editor-alignright",label:j("Right"),showTooltip:!0,isLarge:!0,isPrimary:"flex-end"===t.horizontalAlign,onClick:function(){return C("flex-end")}}))),wp.element.createElement(J,{label:j("Minimum Height"),value:t.columnsHeight,options:[{label:j("Default"),value:"auto"},{label:j("Fit to Screen"),value:"100vh"},{label:j("Custom"),value:"custom"}],onChange:function(e){n({columnsHeight:e})}}),"custom"===t.columnsHeight&&wp.element.createElement(B.a,{label:"Custom Height"},wp.element.createElement(K,{value:x||"",onChange:function(e){"Desktop"===c&&n({columnsHeightCustom:e}),"Tablet"===c&&n({columnsHeightCustomTablet:e}),"Mobile"===c&&n({columnsHeightCustomMobile:e})},min:0,max:1e3}))))||"style"===s&&wp.element.createElement(ee,null,wp.element.createElement($,{title:j("Background Settings"),className:"wp-block-themeisle-image-container"},wp.element.createElement(L.default,{label:j("Background Type"),backgroundType:t.backgroundType,changeBackgroundType:function(e){n({backgroundType:e})}}),"color"===t.backgroundType&&wp.element.createElement(S.a,{label:j("Background Color"),colorValue:t.backgroundColor},wp.element.createElement(I,{label:"Background Color",value:t.backgroundColor,onChange:function(e){n({backgroundColor:e})}}))||"image"===t.backgroundType&&(t.backgroundImageURL?wp.element.createElement(ee,null,wp.element.createElement("div",{className:"wp-block-themeisle-image-container-body"},wp.element.createElement("div",{className:"wp-block-themeisle-image-container-area"},wp.element.createElement("div",{className:"wp-block-themeisle-image-container-holder",style:{backgroundImage:"url('".concat(t.backgroundImageURL,"')")}}),wp.element.createElement("div",{className:"wp-block-themeisle-image-container-delete",onClick:M},wp.element.createElement(Z,{icon:"trash"}),wp.element.createElement("span",null,j("Remove Image"))))),wp.element.createElement(U,{isSecondary:!0,className:"wp-block-themeisle-image-container-delete-button",onClick:M},j("Change or Remove Image")),wp.element.createElement(H.a,{label:"Background Settings"},wp.element.createElement(J,{label:j("Background Attachment"),value:t.backgroundAttachment,options:[{label:j("Scroll"),value:"scroll"},{label:j("Fixed"),value:"fixed"},{label:j("Local"),value:"local"}],onChange:function(e){n({backgroundAttachment:e})}}),wp.element.createElement(J,{label:j("Background Position"),value:t.backgroundPosition,options:[{label:j("Default"),value:"top left"},{label:j("Top Left"),value:"top left"},{label:j("Top Center"),value:"top center"},{label:j("Top Right"),value:"top right"},{label:j("Center Left"),value:"center left"},{label:j("Center Center"),value:"center center"},{label:j("Center Right"),value:"center right"},{label:j("Bottom Left"),value:"bottom left"},{label:j("Bottom Center"),value:"bottom center"},{label:j("Bottom Right"),value:"bottom right"}],onChange:function(e){n({backgroundPosition:e})}}),wp.element.createElement(J,{label:j("Background Repeat"),value:t.backgroundRepeat,options:[{label:j("Repeat"),value:"repeat"},{label:j("No-repeat"),value:"no-repeat"}],onChange:function(e){n({backgroundRepeat:e})}}),wp.element.createElement(J,{label:j("Background Size"),value:t.backgroundSize,options:[{label:j("Auto"),value:"auto"},{label:j("Cover"),value:"cover"},{label:j("Contain"),value:"contain"}],onChange:function(e){n({backgroundSize:e})}}))):wp.element.createElement(G,{icon:"format-image",labels:{title:j("Background Image"),name:j("an image")},value:t.backgroundImageID,onSelect:function(e){n({backgroundImageID:e.id,backgroundImageURL:e.url})},accept:"image/*",allowedTypes:["image"]}))||"gradient"===t.backgroundType&&wp.element.createElement(R,{label:"Background Gradient",gradientValue:t.backgroundGradient,disableCustomColors:!0,onGradientChange:function(e){n({backgroundGradient:e})},clearable:!1})),wp.element.createElement($,{title:j("Background Overlay"),className:"wp-block-themeisle-image-container",initialOpen:!1},wp.element.createElement(L.default,{label:j("Overlay Type"),backgroundType:t.backgroundOverlayType,changeBackgroundType:function(e){n({backgroundOverlayType:e})}}),wp.element.createElement(K,{label:j("Overlay Opacity"),value:t.backgroundOverlayOpacity,onChange:function(e){n({backgroundOverlayOpacity:e})},min:0,max:100}),"color"===t.backgroundOverlayType&&wp.element.createElement(S.a,{label:j("Overlay Color"),colorValue:t.backgroundOverlayColor},wp.element.createElement(I,{label:"Overlay Color",value:t.backgroundOverlayColor,onChange:function(e){n({backgroundOverlayColor:e})}}))||"image"===t.backgroundOverlayType&&(t.backgroundOverlayImageURL?wp.element.createElement(ee,null,wp.element.createElement("div",{className:"wp-block-themeisle-image-container-body"},wp.element.createElement("div",{className:"wp-block-themeisle-image-container-area"},wp.element.createElement("div",{className:"wp-block-themeisle-image-container-holder",style:{backgroundImage:"url('".concat(t.backgroundOverlayImageURL,"')")}}),wp.element.createElement("div",{className:"wp-block-themeisle-image-container-delete",onClick:V},wp.element.createElement(Z,{icon:"trash"}),wp.element.createElement("span",null,j("Remove Image"))))),wp.element.createElement(U,{isSecondary:!0,className:"wp-block-themeisle-image-container-delete-button",onClick:V},j("Change or Remove Image")),wp.element.createElement(H.a,{label:"Background Settings"},wp.element.createElement(J,{label:j("Background Attachment"),value:t.backgroundOverlayAttachment,options:[{label:j("Scroll"),value:"scroll"},{label:j("Fixed"),value:"fixed"},{label:j("Local"),value:"local"}],onChange:function(e){n({backgroundOverlayAttachment:e})}}),wp.element.createElement(J,{label:j("Background Position"),value:t.backgroundOverlayPosition,options:[{label:j("Default"),value:"top left"},{label:j("Top Left"),value:"top left"},{label:j("Top Center"),value:"top center"},{label:j("Top Right"),value:"top right"},{label:j("Center Left"),value:"center left"},{label:j("Center Center"),value:"center center"},{label:j("Center Right"),value:"center right"},{label:j("Bottom Left"),value:"bottom left"},{label:j("Bottom Center"),value:"bottom center"},{label:j("Bottom Right"),value:"bottom right"}],onChange:function(e){n({backgroundOverlayPosition:e})}}),wp.element.createElement(J,{label:j("Background Repeat"),value:t.backgroundOverlayRepeat,options:[{label:j("Repeat"),value:"repeat"},{label:j("No-repeat"),value:"no-repeat"}],onChange:function(e){n({backgroundOverlayRepeat:e})}}),wp.element.createElement(J,{label:j("Background Size"),value:t.backgroundOverlaySize,options:[{label:j("Auto"),value:"auto"},{label:j("Cover"),value:"cover"},{label:j("Contain"),value:"contain"}],onChange:function(e){n({backgroundOverlaySize:e})}}))):wp.element.createElement(G,{icon:"format-image",labels:{title:j("Background Image"),name:j("an image")},value:t.backgroundOverlayImageID,onSelect:function(e){n({backgroundOverlayImageID:e.id,backgroundOverlayImageURL:e.url})},accept:"image/*",allowedTypes:["image"]}))||"gradient"===t.backgroundOverlayType&&wp.element.createElement(R,{label:"Background Gradient",gradientValue:t.backgroundOverlayGradient,disableCustomColors:!0,onGradientChange:function(e){n({backgroundOverlayGradient:e})},clearable:!1}),wp.element.createElement(H.a,{label:"CSS Filters"},wp.element.createElement(K,{label:j("Blur"),value:t.backgroundOverlayFilterBlur,onChange:function(e){n({backgroundOverlayFilterBlur:e})},min:0,max:100}),wp.element.createElement(K,{label:j("Brightness"),value:t.backgroundOverlayFilterBrightness,onChange:function(e){n({backgroundOverlayFilterBrightness:e})},min:0,max:100}),wp.element.createElement(K,{label:j("Contrast"),value:t.backgroundOverlayFilterContrast,onChange:function(e){n({backgroundOverlayFilterContrast:e})},min:0,max:100}),wp.element.createElement(K,{label:j("Grayscale"),value:t.backgroundOverlayFilterGrayscale,onChange:function(e){n({backgroundOverlayFilterGrayscale:e})},min:0,max:100}),wp.element.createElement(K,{label:j("Hue"),value:t.backgroundOverlayFilterHue,onChange:function(e){n({backgroundOverlayFilterHue:e})},min:0,max:360}),wp.element.createElement(K,{label:j("Saturation"),value:t.backgroundOverlayFilterSaturate,onChange:function(e){n({backgroundOverlayFilterSaturate:e})},min:0,max:100})),wp.element.createElement(J,{label:j("Blend Mode"),value:t.backgroundOverlayBlend,options:[{label:j("Normal"),value:"normal"},{label:j("Multiply"),value:"multiply"},{label:j("Screen"),value:"screen"},{label:j("Overlay"),value:"overlay"},{label:j("Darken"),value:"darken"},{label:j("Lighten"),value:"lighten"},{label:j("Color Dodge"),value:"color-dodge"},{label:j("Color Burn"),value:"color-burn"},{label:j("Hard Light"),value:"hard-light"},{label:j("Soft Light"),value:"soft-light"},{label:j("Difference"),value:"difference"},{label:j("Exclusion"),value:"exclusion"},{label:j("Hue"),value:"hue"},{label:j("Saturation"),value:"saturation"},{label:j("Color"),value:"color"},{label:j("Luminosity"),value:"luminosity"}],onChange:function(e){n({backgroundOverlayBlend:e})}})),wp.element.createElement($,{title:j("Border"),className:"wp-block-themeisle-border-container",initialOpen:!1},wp.element.createElement(O.a,{label:j("Border Width"),type:t.borderType,min:0,max:500,changeType:function(e){n({borderType:e})},onChange:function(e,l){"linked"===t.borderType?n({border:l}):n(_({},N[e],l))},options:[{label:j("Top"),type:"top",value:F("top")},{label:j("Right"),type:"right",value:F("right")},{label:j("Bottom"),type:"bottom",value:F("bottom")},{label:j("Left"),type:"left",value:F("left")}]}),wp.element.createElement(S.a,{label:j("Border Color"),colorValue:t.borderColor},wp.element.createElement(I,{label:"Border Color",value:t.borderColor,onChange:function(e){n({borderColor:e})}})),wp.element.createElement(O.a,{label:j("Border Radius"),type:t.borderRadiusType,min:0,max:500,changeType:function(e){n({borderRadiusType:e})},onChange:function(e,l){"linked"===t.borderRadiusType?n({borderRadius:l}):n(_({},X[e],l))},options:[{label:j("Top"),type:"top",value:le("top")},{label:j("Right"),type:"right",value:le("right")},{label:j("Bottom"),type:"bottom",value:le("bottom")},{label:j("Left"),type:"left",value:le("left")}]}),wp.element.createElement(Q,{label:"Box Shadow",checked:t.boxShadow,onChange:function(){n({boxShadow:!t.boxShadow})}}),t.boxShadow&&wp.element.createElement(ee,null,wp.element.createElement(S.a,{label:j("Shadow Color"),colorValue:t.boxShadowColor},wp.element.createElement(I,{label:"Shadow Color",value:t.boxShadowColor,onChange:function(e){n({boxShadowColor:e})}})),wp.element.createElement(H.a,{label:"Border Shadow"},wp.element.createElement(K,{label:j("Opacity"),value:t.boxShadowColorOpacity,onChange:function(e){n({boxShadowColorOpacity:e})},min:0,max:100}),wp.element.createElement(K,{label:j("Blur"),value:t.boxShadowBlur,onChange:function(e){n({boxShadowBlur:e})},min:0,max:100}),wp.element.createElement(K,{label:j("Spread"),value:t.boxShadowSpread,onChange:function(e){n({boxShadowSpread:e})},min:-100,max:100}),wp.element.createElement(K,{label:j("Horizontal"),value:t.boxShadowHorizontal,onChange:function(e){n({boxShadowHorizontal:e})},min:-100,max:100}),wp.element.createElement(K,{label:j("Vertical"),value:t.boxShadowVertical,onChange:function(e){n({boxShadowVertical:e})},min:-100,max:100})))),wp.element.createElement($,{title:j("Shape Divider"),initialOpen:!1,className:"wp-block-themeisle-shape-divider"},wp.element.createElement(q,null,wp.element.createElement(U,{isSmall:!0,isSecondary:"top"!==r,isPrimary:"top"===r,onClick:function(){return o("top")}},j("Top")),wp.element.createElement(U,{isSmall:!0,isSecondary:"bottom"!==r,isPrimary:"bottom"===r,onClick:function(){return o("bottom")}},j("Bottom"))),wp.element.createElement(J,{label:j("Type"),value:re,options:[{label:j("None"),value:"none"},{label:j("Triangle"),value:"bigTriangle"},{label:j("Right Curve"),value:"rightCurve"},{label:j("Curve"),value:"curve"},{label:j("Slant"),value:"slant"},{label:j("Cloud"),value:"cloud"}],onChange:function(e){"top"==r&&n({dividerTopType:e}),"bottom"==r&&n({dividerBottomType:e})}}),"none"!==re&&wp.element.createElement(ee,null,wp.element.createElement(S.a,{label:j("Color"),colorValue:oe},wp.element.createElement(I,{label:j("Color"),value:oe,onChange:function(e){"top"==r&&n({dividerTopColor:e}),"bottom"==r&&n({dividerBottomColor:e})}})),wp.element.createElement(B.a,{label:"Width"},wp.element.createElement(K,{value:ae,onChange:function(e){"top"==r&&("Desktop"==c&&n({dividerTopWidth:e}),"Tablet"==c&&n({dividerTopWidthTablet:e}),"Mobile"==c&&n({dividerTopWidthMobile:e})),"bottom"==r&&("Desktop"==c&&n({dividerBottomWidth:e}),"Tablet"==c&&n({dividerBottomWidthTablet:e}),"Mobile"==c&&n({dividerBottomWidthMobile:e}))},min:0,max:500})),wp.element.createElement(B.a,{label:"Height"},wp.element.createElement(K,{value:ce,onChange:function(e){"top"==r&&("Desktop"==c&&n({dividerTopHeight:e}),"Tablet"==c&&n({dividerTopHeightTablet:e}),"Mobile"==c&&n({dividerTopHeightMobile:e})),"bottom"==r&&("Desktop"==c&&n({dividerBottomHeight:e}),"Tablet"==c&&n({dividerBottomHeightTablet:e}),"Mobile"==c&&n({dividerBottomHeightMobile:e}))},min:0,max:500})),"curve"!==re&&"cloud"!==re&&wp.element.createElement(Q,{label:"Invert Shape Divider",checked:ie,onChange:function(){"top"==r&&n({dividerTopInvert:!t.dividerTopInvert}),"bottom"==r&&n({dividerBottomInvert:!t.dividerBottomInvert})}}))))||"advanced"===s&&wp.element.createElement(ee,null,wp.element.createElement($,{title:j("Responsive")},wp.element.createElement(Q,{label:"Hide this section in Desktop devices?",checked:t.hide,onChange:function(e){return se(e,"Desktop")}}),wp.element.createElement(Q,{label:"Hide this section in Tablet devices?",checked:t.hideTablet,onChange:function(e){return se(e,"Tablet")}}),wp.element.createElement(Q,{label:"Hide this section in Mobile devices?",checked:t.hideMobile,onChange:function(e){return se(e,"Mobile")}}),wp.element.createElement("hr",null),!t.hideTablet&&"collapsedRows"===t.layoutTablet&&wp.element.createElement(Q,{label:"Reverse Columns in Tablet devices?",checked:t.reverseColumnsTablet,onChange:function(e){return pe(e,"Tablet")}}),!t.hideMobile&&"collapsedRows"===t.layoutMobile&&wp.element.createElement(Q,{label:"Reverse Columns in Mobile devices?",checked:t.reverseColumnsMobile,onChange:function(e){return pe(e,"Mobile")}})),wp.element.createElement($,{title:j("Section Settings"),initialOpen:!1},wp.element.createElement(J,{label:j("HTML Tag"),value:t.columnsHTMLTag,options:[{label:j("Default (div)"),value:"div"},{label:"section",value:"section"},{label:"header",value:"header"},{label:"footer",value:"footer"},{label:"article",value:"article"},{label:"main",value:"main"}],onChange:function(e){n({columnsHTMLTag:e})}})))),wp.element.createElement(P.a,{value:t.id,onChange:function(e){n({id:e})}}))};function re(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=e&&("undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"]);if(null==n)return;var l,r,o=[],a=!0,c=!1;try{for(n=n.call(e);!(a=(l=n.next()).done)&&(o.push(l.value),!t||o.length!==t);a=!0);}catch(e){c=!0,r=e}finally{try{a||null==n.return||n.return()}finally{if(c)throw r}}return o}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return oe(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return oe(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function oe(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,l=new Array(t);n<t;n++)l[n]=e[n];return l}var ae=wp.i18n.__,ce=wp.blockEditor,ie=ce.__experimentalBlockNavigationList,se=ce.__experimentalBlockNavigationTree,pe=ce.BlockControls,me=wp.components,ue=me.Button,de=me.Modal,be=me.Toolbar,ge=wp.data,he=ge.useSelect,we=ge.useDispatch,fe=wp.element,ye=fe.Fragment,ve=fe.useState,ke=function(e){var t=e.clientId,n=he((function(e){var n=e("core/block-editor"),l=n.getSelectedBlockClientId;return{block:(0,n.getBlock)(t),selectedBlockClientId:l()}}),[]),r=n.block,o=n.selectedBlockClientId,a=we("core/block-editor").selectBlock,c=re(ve(!1),2),i=c[0],s=c[1],p=ie||se;return wp.element.createElement(ye,null,wp.element.createElement(pe,null,wp.element.createElement(be,null,wp.element.createElement(ue,{className:"components-toolbar__control",label:ae("Open block navigator"),showTooltip:!0,onClick:function(){return s(!0)},icon:l.o}))),i&&wp.element.createElement(de,{title:ae("Block Navigator"),closeLabel:ae("Close"),onRequestClose:function(){return s(!1)}},wp.element.createElement(p,{blocks:[r],selectedBlockClientId:o,selectBlock:a,showNestedBlocks:!0})))},Ee=n(21),Te=n(34);function Ce(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=e&&("undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"]);if(null==n)return;var l,r,o=[],a=!0,c=!1;try{for(n=n.call(e);!(a=(l=n.next()).done)&&(o.push(l.value),!t||o.length!==t);a=!0);}catch(e){c=!0,r=e}finally{try{a||null==n.return||n.return()}finally{if(c)throw r}}return o}(e,t)||Me(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function xe(e){return function(e){if(Array.isArray(e))return Se(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||Me(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Me(e,t){if(e){if("string"==typeof e)return Se(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Se(e,t):void 0}}function Se(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,l=new Array(t);n<t;n++)l[n]=e[n];return l}function ze(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);t&&(l=l.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,l)}return n}function Oe(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ze(Object(n),!0).forEach((function(t){Be(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ze(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Be(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Le=lodash,He=Le.isEqual,Pe=Le.times,_e=wp.compose.useViewportMatch,Ae=wp.data,Ve=Ae.useDispatch,je=Ae.useSelect,Ne=wp.blockEditor.InnerBlocks,Re=wp.element,Ie=Re.Fragment,De=Re.useEffect,Ge=Re.useState,Fe=[],We=function(e){var t=e.attributes,n=e.setAttributes,l=e.className,o=e.clientId,c=e.name,s=Ve("core/block-editor").updateBlockAttributes,p=je((function(e){var t=e("core/block-editor").getBlock,n=e("core/edit-post").__experimentalGetPreviewDeviceType;return{sectionBlock:t(o),isViewportAvailable:!!n,isPreviewDesktop:!!n&&"Desktop"===n(),isPreviewTablet:!!n&&"Tablet"===n(),isPreviewMobile:!!n&&"Mobile"===n()}}),[]),m=p.sectionBlock,u=p.isViewportAvailable,d=p.isPreviewDesktop,b=p.isPreviewTablet,g=p.isPreviewMobile,h=_e("large",">="),w=_e("large","<="),f=_e("small",">="),y=_e("small","<=");De((function(){v()}),[]);var v=function(){var e=window.themeisleGutenberg.blockIDs?window.themeisleGutenberg.blockIDs:[];if(void 0===t.id){var l,a="wp-block-themeisle-blocks-advanced-columns-".concat(o.substr(0,8));void 0!==(window.themeisleGutenberg.globalDefaults?window.themeisleGutenberg.globalDefaults:void 0)&&(He(k.a[c],window.themeisleGutenberg.globalDefaults[c])||(l=Oe({},window.themeisleGutenberg.globalDefaults[c]),Object.keys(l).map((function(e){if(t[e]!==l[e]&&void 0!==r[e].default&&t[e]!==r[e].default)return delete l[e]})))),n(Oe(Oe({},l),{},{id:a})),Fe.push(a),e.push(a)}else if(Fe.includes(t.id)){var i="wp-block-themeisle-blocks-advanced-columns-".concat(o.substr(0,8));n({id:i}),Fe.push(i),e.push(i)}else Fe.push(t.id),e.push(t.id);window.themeisleGutenberg.blockIDs=xe(e)},T=Ce(Ge("top"),2),C=T[0],x=T[1],S=h&&!w&&f&&!y,z=!h&&!w&&f&&!y,O=!(h||w||f||y);u&&!O&&(S=d,z=b,O=g);var B,L,H,P,_,A,V=t.columnsHTMLTag;S&&(B={paddingTop:"linked"===t.paddingType?"".concat(t.padding,"px"):"".concat(t.paddingTop,"px"),paddingRight:"linked"===t.paddingType?"".concat(t.padding,"px"):"".concat(t.paddingRight,"px"),paddingBottom:"linked"===t.paddingType?"".concat(t.padding,"px"):"".concat(t.paddingBottom,"px"),paddingLeft:"linked"===t.paddingType?"".concat(t.padding,"px"):"".concat(t.paddingLeft,"px"),marginTop:"linked"===t.marginType?"".concat(t.margin,"px"):"".concat(t.marginTop,"px"),marginBottom:"linked"===t.marginType?"".concat(t.margin,"px"):"".concat(t.marginBottom,"px"),minHeight:"custom"===t.columnsHeight?"".concat(t.columnsHeightCustom,"px"):t.columnsHeight}),z&&(B={paddingTop:"linked"===t.paddingTypeTablet?"".concat(t.paddingTablet,"px"):"".concat(t.paddingTopTablet,"px"),paddingRight:"linked"===t.paddingTypeTablet?"".concat(t.paddingTablet,"px"):"".concat(t.paddingRightTablet,"px"),paddingBottom:"linked"===t.paddingTypeTablet?"".concat(t.paddingTablet,"px"):"".concat(t.paddingBottomTablet,"px"),paddingLeft:"linked"===t.paddingTypeTablet?"".concat(t.paddingTablet,"px"):"".concat(t.paddingLeftTablet,"px"),marginTop:"linked"===t.marginTypeTablet?"".concat(t.marginTablet,"px"):"".concat(t.marginTopTablet,"px"),marginBottom:"linked"===t.marginTypeTablet?"".concat(t.marginTablet,"px"):"".concat(t.marginBottomTablet,"px"),minHeight:"custom"===t.columnsHeight?"".concat(t.columnsHeightCustomTablet,"px"):t.columnsHeight}),O&&(B={paddingTop:"linked"===t.paddingTypeMobile?"".concat(t.paddingMobile,"px"):"".concat(t.paddingTopMobile,"px"),paddingRight:"linked"===t.paddingTypeMobile?"".concat(t.paddingMobile,"px"):"".concat(t.paddingRightMobile,"px"),paddingBottom:"linked"===t.paddingTypeMobile?"".concat(t.paddingMobile,"px"):"".concat(t.paddingBottomMobile,"px"),paddingLeft:"linked"===t.paddingTypeMobile?"".concat(t.paddingMobile,"px"):"".concat(t.paddingLeftMobile,"px"),marginTop:"linked"===t.marginTypeMobile?"".concat(t.marginMobile,"px"):"".concat(t.marginTopMobile,"px"),marginBottom:"linked"===t.marginTypeMobile?"".concat(t.marginMobile,"px"):"".concat(t.marginBottomMobile,"px"),minHeight:"custom"===t.columnsHeight?"".concat(t.columnsHeightCustomMobile,"px"):t.columnsHeight}),"color"===t.backgroundType&&(L={background:t.backgroundColor}),"image"===t.backgroundType&&(L={backgroundImage:"url( '".concat(t.backgroundImageURL,"' )"),backgroundAttachment:t.backgroundAttachment,backgroundPosition:t.backgroundPosition,backgroundRepeat:t.backgroundRepeat,backgroundSize:t.backgroundSize}),"gradient"===t.backgroundType&&(L={background:t.backgroundGradient}),"linked"===t.borderType&&(P={borderWidth:"".concat(t.border,"px"),borderStyle:"solid",borderColor:t.borderColor}),"unlinked"===t.borderType&&(P={borderTopWidth:"".concat(t.borderTop,"px"),borderRightWidth:"".concat(t.borderRight,"px"),borderBottomWidth:"".concat(t.borderBottom,"px"),borderLeftWidth:"".concat(t.borderLeft,"px"),borderStyle:"solid",borderColor:t.borderColor}),"linked"===t.borderRadiusType&&(_={borderRadius:"".concat(t.borderRadius,"px")}),"unlinked"===t.borderRadiusType&&(_={borderTopLeftRadius:"".concat(t.borderRadiusTop,"px"),borderTopRightRadius:"".concat(t.borderRadiusRight,"px"),borderBottomRightRadius:"".concat(t.borderRadiusBottom,"px"),borderBottomLeftRadius:"".concat(t.borderRadiusLeft,"px")}),!0===t.boxShadow&&(A={boxShadow:"".concat(t.boxShadowHorizontal,"px ").concat(t.boxShadowVertical,"px ").concat(t.boxShadowBlur,"px ").concat(t.boxShadowSpread,"px ").concat(i()(t.boxShadowColor?t.boxShadowColor:"#000000",t.boxShadowColorOpacity))});var j=Oe(Oe(Oe(Oe(Oe({},B),L),P),_),A);"color"===t.backgroundOverlayType&&(H={background:t.backgroundOverlayColor,opacity:t.backgroundOverlayOpacity/100}),"image"===t.backgroundOverlayType&&(H={backgroundImage:"url( '".concat(t.backgroundOverlayImageURL,"' )"),backgroundAttachment:t.backgroundOverlayAttachment,backgroundPosition:t.backgroundOverlayPosition,backgroundRepeat:t.backgroundOverlayRepeat,backgroundSize:t.backgroundOverlaySize,opacity:t.backgroundOverlayOpacity/100}),"gradient"===t.backgroundOverlayType&&(H={background:t.backgroundOverlayGradient,opacity:t.backgroundOverlayOpacity/100});var N=Oe(Oe(Oe({},H),_),{},{mixBlendMode:t.backgroundOverlayBlend,filter:"blur( ".concat(t.backgroundOverlayFilterBlur/10,"px ) brightness( ").concat(t.backgroundOverlayFilterBrightness/10," ) contrast( ").concat(t.backgroundOverlayFilterContrast/10," ) grayscale( ").concat(t.backgroundOverlayFilterGrayscale/100," ) hue-rotate( ").concat(t.backgroundOverlayFilterHue,"deg ) saturate( ").concat(t.backgroundOverlayFilterSaturate/10," )")}),R={};t.columnsWidth&&(R={maxWidth:t.columnsWidth+"px"});var I=a()(l,"has-".concat(t.columns,"-columns"),"has-desktop-".concat(t.layout,"-layout"),"has-tablet-".concat(t.layoutTablet,"-layout"),"has-mobile-".concat(t.layoutMobile,"-layout"),"has-".concat(t.columnsGap,"-gap"),"has-vertical-".concat(t.verticalAlign),"has-horizontal-".concat(t.horizontalAlign),{"has-reverse-columns-tablet":t.reverseColumnsTablet&&!t.hideTablet&&"collapsedRows"===t.layoutTablet},{"has-reverse-columns-mobile":t.reverseColumnsMobile&&!t.hideMobile&&"collapsedRows"===t.layoutMobile},{"has-viewport-desktop":S},{"has-viewport-tablet":z},{"has-viewport-mobile":O}),D=function(){var e;return S&&(e=t.dividerTopWidth),z&&(e=t.dividerTopWidthTablet),O&&(e=t.dividerTopWidthMobile),e};D=D();var G=function(){var e;return S&&(e=t.dividerBottomWidth),z&&(e=t.dividerBottomWidthTablet),O&&(e=t.dividerBottomWidthMobile),e};G=G();var F=function(){var e;return S&&(e=t.dividerTopHeight),z&&(e=t.dividerTopHeightTablet),O&&(e=t.dividerTopHeightMobile),e};F=F();var W=function(){var e;return S&&(e=t.dividerBottomHeight),z&&(e=t.dividerBottomHeightTablet),O&&(e=t.dividerBottomHeightMobile),e};W=W();var U;return t.columns?wp.element.createElement(Ie,null,wp.element.createElement(ke,{clientId:o}),wp.element.createElement(M,{attributes:t,setAttributes:n}),wp.element.createElement(le,{attributes:t,setAttributes:n,updateColumnsWidth:function(e,t){m.innerBlocks.map((function(n,l){s(n.clientId,{columnWidth:E.a[e][t][l]})}))},dividerViewType:C,setDividerViewType:x}),wp.element.createElement(V,{className:I,id:t.id,style:j},wp.element.createElement("div",{className:"wp-block-themeisle-blocks-advanced-columns-overlay",style:N}),wp.element.createElement(Ee.default,{type:"top",style:t.dividerTopType,fill:t.dividerTopColor,invert:t.dividerTopInvert,width:D,height:F}),wp.element.createElement("div",{className:"innerblocks-wrap",style:R},wp.element.createElement(Ne,{allowedBlocks:["themeisle-blocks/advanced-column"],template:(U=t.columns,Pe(U,(function(e){return["themeisle-blocks/advanced-column",{columnWidth:E.a[U][t.layout][e]}]}))),templateLock:"all"})),wp.element.createElement(Ee.default,{type:"bottom",style:t.dividerBottomType,fill:t.dividerBottomColor,invert:t.dividerBottomInvert,width:G,height:W}))):wp.element.createElement(Te.default,{clientId:o,setupColumns:function(e,t){n(1>=e?{columns:e,layout:t,layoutTablet:"equal",layoutMobile:"equal"}:{columns:e,layout:t,layoutTablet:"equal",layoutMobile:"collapsedRows"})}})},Ue=wp.blockEditor.InnerBlocks,qe=function(e){var t=e.attributes,n=e.className,l=t.columnsHTMLTag,r=t.hide?"":"has-desktop-".concat(t.layout,"-layout"),o=t.hideTablet?"":"has-tablet-".concat(t.layoutTablet,"-layout"),c=t.hideMobile?"":"has-mobile-".concat(t.layoutMobile,"-layout"),i=a()(n,"has-".concat(t.columns,"-columns"),r,o,c,{"hide-in-desktop":t.hide},{"hide-in-tablet":t.hideTablet},{"hide-in-mobile":t.hideMobile},{"has-reverse-columns-tablet":t.reverseColumnsTablet&&!t.hideTablet&&"collapsedRows"===t.layoutTablet},{"has-reverse-columns-mobile":t.reverseColumnsMobile&&!t.hideMobile&&"collapsedRows"===t.layoutMobile},"has-".concat(t.columnsGap,"-gap"),"has-vertical-".concat(t.verticalAlign));return wp.element.createElement(l,{className:i,id:t.id},wp.element.createElement("div",{className:"wp-block-themeisle-blocks-advanced-columns-overlay"}),wp.element.createElement(Ee.default,{type:"top",front:!0,style:t.dividerTopType,fill:t.dividerTopColor,invert:t.dividerTopInvert}),wp.element.createElement("div",{className:"innerblocks-wrap"},wp.element.createElement(Ue.Content,null)),wp.element.createElement(Ee.default,{type:"bottom",front:!0,style:t.dividerBottomType,fill:t.dividerBottomColor,invert:t.dividerBottomInvert}))},Ze=wp.i18n.__;(0,wp.blocks.registerBlockType)("themeisle-blocks/advanced-columns",{title:Ze("Section"),description:Ze("Add a Section block that displays content in multiple columns, then add whatever content blocks you’d like."),icon:l.j,category:"themeisle-blocks",keywords:["advanced columns","layout","grid"],attributes:r,supports:{align:["wide","full"],html:!1},deprecated:v,edit:We,save:qe})},function(e,t,n){"use strict";n.r(t);var l=n(3),r={id:{type:"string"},align:{type:"string"},spacing:{type:"number",default:20},paddingTopBottom:{type:"number"},paddingLeftRight:{type:"number"},collapse:{type:"string",default:"collapse-none"},fontSize:{type:"number"},fontFamily:{type:"string"},fontVariant:{type:"string"},textTransform:{type:"string"},fontStyle:{type:"string"},lineHeight:{type:"number"}},o=n(0),a=n.n(o);function c(e){return function(e){if(Array.isArray(e))return i(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return i(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return i(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,l=new Array(t);n<t;n++)l[n]=e[n];return l}function s(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);t&&(l=l.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,l)}return n}function p(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?s(Object(n),!0).forEach((function(t){m(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):s(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function m(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var u=lodash,d=u.omit,b=u.pick,g=u.times,h=wp.blocks.createBlock,w=wp.editor.RichText,f=wp.element.Fragment,y={id:{type:"string"},buttons:{type:"number",default:2},align:{type:"string"},spacing:{type:"number",default:20},collapse:{type:"string",default:"collapse-none"},fontSize:{type:"number",default:18},fontFamily:{type:"string"},fontVariant:{type:"string"},textTransform:{type:"string"},fontStyle:{type:"string",default:"normal"},lineHeight:{type:"number"},data:{type:"array",default:[{text:"",link:"",newTab:!1,color:"#ffffff",background:"#32373c",border:"",hoverColor:"",hoverBackground:"",hoverBorder:"",borderSize:0,borderRadius:0,boxShadow:!1,boxShadowColor:"",boxShadowColorOpacity:50,boxShadowBlur:5,boxShadowSpread:1,boxShadowHorizontal:0,boxShadowVertical:0,hoverBoxShadowColor:"",hoverBoxShadowColorOpacity:50,hoverBoxShadowBlur:5,hoverBoxShadowSpread:1,hoverBoxShadowHorizontal:0,hoverBoxShadowVertical:0,iconType:"none",prefix:"",icon:"",paddingTopBottom:12,paddingLeftRight:24},{text:"",link:"",newTab:!1,color:"#ffffff",background:"#32373c",border:"",hoverColor:"",hoverBackground:"",hoverBorder:"",borderSize:0,borderRadius:0,boxShadow:!1,boxShadowColor:"",boxShadowColorOpacity:50,boxShadowBlur:5,boxShadowSpread:1,boxShadowHorizontal:0,boxShadowVertical:0,hoverBoxShadowColor:"",hoverBoxShadowColorOpacity:50,hoverBoxShadowBlur:5,hoverBoxShadowSpread:1,hoverBoxShadowHorizontal:0,hoverBoxShadowVertical:0,iconType:"none",prefix:"",icon:"",paddingTopBottom:12,paddingLeftRight:24}]}},v=[{attributes:y,save:function(e){var t=e.attributes,n=e.className,l="collapse-none"!==t.collapse?t.collapse:"",r={fontSize:"".concat(t.fontSize,"px"),fontFamily:t.fontFamily,fontWeight:t.fontVariant,fontStyle:t.fontStyle,textTransform:t.textTransform,lineHeight:t.lineHeight&&"".concat(t.lineHeight,"px")};return wp.element.createElement("div",{id:t.id,className:a()(n,l),style:{justifyContent:t.align,alignItems:t.align?t.align:"flex-start"}},g(t.buttons,(function(e){return function(e){var n=p(p({},r),{},{borderWidth:"".concat(t.data[e].borderSize,"px"),borderRadius:"".concat(t.data[e].borderRadius,"px"),padding:"".concat(t.data[e].paddingTopBottom,"px ").concat(t.data[e].paddingLeftRight,"px")});return wp.element.createElement(f,null,wp.element.createElement("a",{href:t.data[e].link,target:t.data[e].newTab?"_blank":"_self",className:a()("wp-block-themeisle-blocks-button","wp-block-themeisle-blocks-button-".concat(e)),style:n},("left"===t.data[e].iconType||"only"===t.data[e].iconType)&&wp.element.createElement("i",{className:a()(t.data[e].prefix,"fa-fw","fa-".concat(t.data[e].icon),{"margin-right":"left"===t.data[e].iconType})}),"only"!==t.data[e].iconType&&wp.element.createElement(w.Content,{tagName:"span",value:t.data[e].text}),"right"===t.data[e].iconType&&wp.element.createElement("i",{className:"".concat(t.data[e].prefix," fa-fw fa-").concat(t.data[e].icon," margin-left")})))}(e)})))}},{attributes:y,save:function(e){var t=e.attributes,n=e.className,l="collapse-none"!==t.collapse?t.collapse:"",r={fontSize:"".concat(t.fontSize,"px"),fontFamily:t.fontFamily,fontWeight:t.fontVariant,fontStyle:t.fontStyle,textTransform:t.textTransform,lineHeight:t.lineHeight&&"".concat(t.lineHeight,"px")};return wp.element.createElement("div",{id:t.id,className:a()(n,l),style:{justifyContent:t.align,alignItems:t.align?t.align:"flex-start"}},g(t.buttons,(function(e){return function(e){var n=p(p({},r),{},{borderWidth:"".concat(t.data[e].borderSize,"px"),borderRadius:"".concat(t.data[e].borderRadius,"px"),padding:"".concat(t.data[e].paddingTopBottom,"px ").concat(t.data[e].paddingLeftRight,"px")});return wp.element.createElement(f,null,wp.element.createElement("a",{href:t.data[e].link,target:t.data[e].newTab?"_blank":"_self",className:a()("wp-block-themeisle-blocks-button","wp-block-themeisle-blocks-button-".concat(e)),style:n,rel:"noopener noreferrer"},("left"===t.data[e].iconType||"only"===t.data[e].iconType)&&wp.element.createElement("i",{className:a()(t.data[e].prefix,"fa-fw","fa-".concat(t.data[e].icon),{"margin-right":"left"===t.data[e].iconType})}),"only"!==t.data[e].iconType&&wp.element.createElement(w.Content,{tagName:"span",value:t.data[e].text}),"right"===t.data[e].iconType&&wp.element.createElement("i",{className:"".concat(t.data[e].prefix," fa-fw fa-").concat(t.data[e].icon," margin-left")})))}(e)})))}},{attributes:p(p({},y),{},{fontSize:{type:"number"},fontStyle:{type:"string"},data:{type:"array",default:[{text:"",link:"",newTab:!1,color:"",background:"",border:"",hoverColor:"",hoverBackground:"",hoverBorder:"",borderSize:"",borderRadius:"",boxShadow:!1,boxShadowColor:"",boxShadowColorOpacity:50,boxShadowBlur:5,boxShadowSpread:1,boxShadowHorizontal:0,boxShadowVertical:0,hoverBoxShadowColor:"",hoverBoxShadowColorOpacity:50,hoverBoxShadowBlur:5,hoverBoxShadowSpread:1,hoverBoxShadowHorizontal:0,hoverBoxShadowVertical:0,iconType:"none",prefix:"",icon:"",paddingTopBottom:"",paddingLeftRight:""},{text:"",link:"",newTab:!1,color:"",background:"",border:"",hoverColor:"",hoverBackground:"",hoverBorder:"",borderSize:"",borderRadius:"",boxShadow:!1,boxShadowColor:"",boxShadowColorOpacity:50,boxShadowBlur:5,boxShadowSpread:1,boxShadowHorizontal:0,boxShadowVertical:0,hoverBoxShadowColor:"",hoverBoxShadowColorOpacity:50,hoverBoxShadowBlur:5,hoverBoxShadowSpread:1,hoverBoxShadowHorizontal:0,hoverBoxShadowVertical:0,iconType:"none",prefix:"",icon:"",paddingTopBottom:"",paddingLeftRight:""}]}}),migrate:function(e,t){var n,l,r;return"flex-start"===e.align&&(n="left"),"center"===e.align&&(n="center"),"flex-end"===e.align&&(n="right"),e.data&&(l=b(e.data[0],["paddingLeftRight","paddingTopBottom"]),1<=Object.keys(l).length&&(l=b(l,Object.keys(l).filter((function(e){return""!==l[e]})))),r=e.data.filter((function(t,n){return n<e.buttons})).map((function(e){var t=d(e,["paddingLeftRight","paddingTopBottom"]);return h("themeisle-blocks/button",p({},t))}))),[p(p({},d(e,["buttons","data"])),{},{align:n},l),[].concat(c(r),c(t))]},save:function(e){var t=e.attributes,n=e.className,l="collapse-none"!==t.collapse?t.collapse:"";return wp.element.createElement("div",{id:t.id,className:a()(n,l,"wp-block-button")},g(t.buttons,(function(e){return function(e){return wp.element.createElement("a",{href:t.data[e].link,target:t.data[e].newTab?"_blank":"_self",className:a()("wp-block-themeisle-blocks-button","wp-block-themeisle-blocks-button-".concat(e),"wp-block-button__link"),rel:"noopener noreferrer"},("left"===t.data[e].iconType||"only"===t.data[e].iconType)&&wp.element.createElement("i",{className:a()(t.data[e].prefix,"fa-fw","fa-".concat(t.data[e].icon),{"margin-right":"left"===t.data[e].iconType})}),"only"!==t.data[e].iconType&&wp.element.createElement(w.Content,{tagName:"span",value:t.data[e].text}),"right"===t.data[e].iconType&&wp.element.createElement("i",{className:"".concat(t.data[e].prefix," fa-fw fa-").concat(t.data[e].icon," margin-left")}))}(e)})))}}],k=n(27),E=n.n(k),T=n(144),C=n(145),x=n(146),M=wp.i18n.__,S=wp.blockEditor,z=S.AlignmentToolbar,O=S.BlockControls,B=function(e){var t=e.attributes,n=e.setAttributes;return wp.element.createElement(O,null,wp.element.createElement(z,{value:t.align,onChange:function(e){return n({align:e})},alignmentControls:[{icon:T.a,title:M("Align left"),align:"left"},{icon:C.a,title:M("Align center"),align:"center"},{icon:x.a,title:M("Align right"),align:"right"}]}))},L=n(17),H=n(9),P=wp.i18n.__,_=wp.blockEditor.InspectorControls,A=wp.components,V=A.PanelBody,j=A.RangeControl,N=A.SelectControl,R=function(e){var t=e.attributes,n=e.setAttributes;return wp.element.createElement(_,null,wp.element.createElement(V,{title:P("Spacing")},wp.element.createElement(H.a,{label:P("Padding"),min:0,max:100,onChange:function(e,t){"top"!==e&&"bottom"!==e||n({paddingTopBottom:t}),"right"!==e&&"left"!==e||n({paddingLeftRight:t})},options:[{label:P("Top"),type:"top",value:t.paddingTopBottom},{label:P("Right"),type:"right",value:t.paddingLeftRight},{label:P("Bottom"),type:"bottom",value:t.paddingTopBottom},{label:P("Left"),type:"left",value:t.paddingLeftRight}]}),wp.element.createElement(j,{label:P("Spacing"),value:t.spacing,onChange:function(e){return n({spacing:e})},min:0,max:50}),wp.element.createElement(N,{label:P("Collapse On"),value:t.collapse,options:[{label:P("None"),value:"collapse-none"},{label:P("Desktop"),value:"collapse-desktop"},{label:P("Tablet"),value:"collapse-tablet"},{label:P("Mobile"),value:"collapse-mobile"}],onChange:function(e){return n({collapse:e})}})),wp.element.createElement(V,{title:P("Typography Settings"),initialOpen:!1},wp.element.createElement(j,{label:P("Font Size"),value:t.fontSize,onChange:function(e){return n({fontSize:e})},min:0,max:50}),wp.element.createElement(L.a,{label:P("Font Family"),value:t.fontFamily,onChangeFontFamily:function(e){n(e?{fontFamily:e,fontVariant:"normal",fontStyle:"normal"}:{fontFamily:void 0,fontVariant:void 0,fontStyle:void 0})},valueVariant:t.fontVariant,onChangeFontVariant:function(e){return n({fontVariant:e})},valueStyle:t.fontStyle,onChangeFontStyle:function(e){return n({fontStyle:e})},valueTransform:t.textTransform,onChangeTextTransform:function(e){return n({textTransform:e})}}),wp.element.createElement(j,{label:P("Line Height"),value:t.lineHeight,onChange:function(e){return n({lineHeight:e})},min:0,max:200})))},I=n(5);function D(e){return function(e){if(Array.isArray(e))return G(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return G(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return G(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function G(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,l=new Array(t);n<t;n++)l[n]=e[n];return l}function F(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);t&&(l=l.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,l)}return n}function W(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?F(Object(n),!0).forEach((function(t){U(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):F(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function U(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var q=lodash.isEqual,Z=wp.blockEditor.InnerBlocks,$=wp.compose.useViewportMatch,Q=wp.data.useSelect,K=wp.element,J=K.Fragment,Y=K.useEffect,X=[],ee=function(e){var t,n=e.attributes,l=e.setAttributes,o=e.className,c=e.name,i=e.clientId,s=Q((function(e){var t=e("core/edit-post").__experimentalGetPreviewDeviceType;return{isViewportAvailable:!!t,isPreviewDesktop:!!t&&"Desktop"===t(),isPreviewTablet:!!t&&"Tablet"===t(),isPreviewMobile:!!t&&"Mobile"===t()}}),[]),p=s.isViewportAvailable,m=s.isPreviewDesktop,u=s.isPreviewTablet,d=s.isPreviewMobile,b=$("large",">="),g=$("large","<="),h=$("small",">="),w=$("small","<=");Y((function(){f()}),[]);var f=function(){var e=window.themeisleGutenberg.blockIDs?window.themeisleGutenberg.blockIDs:[];if(void 0===n.id){var t,o="wp-block-themeisle-blocks-button-group-".concat(i.substr(0,8));void 0!==(window.themeisleGutenberg.globalDefaults?window.themeisleGutenberg.globalDefaults:void 0)&&(q(I.a[c],window.themeisleGutenberg.globalDefaults[c])||(t=W({},window.themeisleGutenberg.globalDefaults[c]),Object.keys(t).map((function(e){if(n[e]!==t[e]&&void 0!==r[e].default&&n[e]!==r[e].default)return delete t[e]})))),l(W(W({},t),{},{id:o})),X.push(o),e.push(o)}else if(X.includes(n.id)){var a="wp-block-themeisle-blocks-button-group-".concat(i.substr(0,8));l({id:a}),X.push(a)}else X.push(n.id),e.push(n.id);window.themeisleGutenberg.blockIDs=D(e)},y=b&&!g&&h&&!w,v=!b&&!g&&h&&!w,k=!(b||g||h||w);return p&&!k&&(y=m,v=u,k=d),wp.element.createElement(J,null,n.fontFamily&&wp.element.createElement(E.a,{fonts:[{font:n.fontFamily,weights:n.fontVariant&&["".concat(n.fontVariant+("italic"===n.fontStyle?":i":""))]}]}),wp.element.createElement(B,{attributes:n,setAttributes:l}),wp.element.createElement(R,{attributes:n,setAttributes:l}),wp.element.createElement("div",{id:n.id,className:a()(o,"wp-block-buttons",(t={},U(t,"align-".concat(n.align),n.align),U(t,"collapse","collapse-desktop"===n.collapse&&(y||v||k)||"collapse-tablet"===n.collapse&&(v||k)||"collapse-mobile"===n.collapse&&k),t))},wp.element.createElement(Z,{allowedBlocks:["themeisle-blocks/button"],__experimentalMoverDirection:"horizontal",orientation:"horizontal",template:[["themeisle-blocks/button"]],renderAppender:Z.DefaultAppender})))};var te=wp.blockEditor.InnerBlocks,ne=function(e){var t,n,l,r=e.attributes,o=e.className,c="collapse-none"!==r.collapse?r.collapse:"";return wp.element.createElement("div",{id:r.id,className:a()(o,c,"wp-block-buttons",(t={},n="align-".concat(r.align),l=r.align,n in t?Object.defineProperty(t,n,{value:l,enumerable:!0,configurable:!0,writable:!0}):t[n]=l,t))},wp.element.createElement(te.Content,null))},le=wp.i18n.__;(0,wp.blocks.registerBlockType)("themeisle-blocks/button-group",{title:le("Button Group"),description:le("Prompt visitors to take action with a button group."),icon:l.e,category:"themeisle-blocks",keywords:[le("button"),le("buttons"),le("button group")],attributes:r,deprecated:v,edit:ee,save:ne})},function(e,t,n){"use strict";n.r(t);var l=n(3),r={id:{type:"string"},text:{type:"string",source:"html",selector:"span"},link:{type:"string",source:"attribute",selector:"a",attribute:"href"},newTab:{type:"boolean",default:!1},color:{type:"string"},background:{type:"string"},backgroundGradient:{type:"string"},border:{type:"string"},hoverColor:{type:"string"},hoverBackground:{type:"string"},hoverBackgroundGradient:{type:"string"},hoverBorder:{type:"string"},borderSize:{type:"number"},borderRadius:{type:"number"},boxShadow:{type:"boolean",default:!1},boxShadowColor:{type:"string"},boxShadowColorOpacity:{type:"number",default:50},boxShadowBlur:{type:"number",default:5},boxShadowSpread:{type:"number",default:1},boxShadowHorizontal:{type:"number",default:0},boxShadowVertical:{type:"number",default:0},hoverBoxShadowColor:{type:"string"},hoverBoxShadowColorOpacity:{type:"number",default:50},hoverBoxShadowBlur:{type:"number",default:5},hoverBoxShadowSpread:{type:"number",default:1},hoverBoxShadowHorizontal:{type:"number",default:0},hoverBoxShadowVertical:{type:"number",default:0},iconType:{type:"string",default:"none"},library:{type:"string",default:"fontawesome"},prefix:{type:"string"},icon:{type:"string"}},o=n(1),a=n(0),c=n.n(a),i=n(10),s=n.n(i),p=n(29),m=wp.blockEditor.BlockControls,u=function(e){var t=e.attributes,n=e.setAttributes,l=e.isSelected;return wp.element.createElement(m,null,wp.element.createElement(p.a,{isSelected:l,setAttributes:n,url:t.link,opensInNewTab:t.newTab}))},d=n(15);function b(e){return(b="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function g(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=e&&("undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"]);if(null==n)return;var l,r,o=[],a=!0,c=!1;try{for(n=n.call(e);!(a=(l=n.next()).done)&&(o.push(l.value),!t||o.length!==t);a=!0);}catch(e){c=!0,r=e}finally{try{a||null==n.return||n.return()}finally{if(c)throw r}}return o}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return h(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return h(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,l=new Array(t);n<t;n++)l[n]=e[n];return l}var w=wp.i18n.__,f=wp.blockEditor,y=f.__experimentalColorGradientControl,v=f.InspectorControls,k=wp.components,E=k.Button,T=k.ButtonGroup,C=k.PanelBody,x=k.RangeControl,M=k.Placeholder,S=k.SelectControl,z=k.Spinner,O=wp.element,B=O.Fragment,L=O.lazy,H=O.Suspense,P=O.useState,_=L((function(){return Promise.all([n.e(0),n.e(1)]).then(n.bind(null,155))})),A=function(e){var t=e.attributes,n=e.setAttributes,l=g(P(!1),2),r=l[0],o=l[1],a=function(){return wp.element.createElement(T,null,wp.element.createElement(E,{isSmall:!0,isSecondary:r,isPrimary:!r,onClick:function(){return o(!1)}},w("Normal")),wp.element.createElement(E,{isSmall:!0,isSecondary:!r,isPrimary:r,onClick:function(){return o(!0)}},w("Hover")))};return wp.element.createElement(v,null,wp.element.createElement(C,{title:w("Color")},wp.element.createElement(a,null),r?wp.element.createElement(B,{key:"with-hover"},wp.element.createElement(y,{label:"Hover Color",colorValue:t.hoverColor,onColorChange:function(e){return n({hoverColor:e})}}),wp.element.createElement(y,{label:"Hover Background",colorValue:t.hoverBackground,gradientValue:t.hoverBackgroundGradient,onColorChange:function(e){return n({hoverBackground:e})},onGradientChange:function(e){return n({hoverBackgroundGradient:e})}})):wp.element.createElement(B,{key:"without-hover"},wp.element.createElement(y,{label:"Color",colorValue:t.color,onColorChange:function(e){return n({color:e})}}),wp.element.createElement(y,{label:"Background",colorValue:t.background,gradientValue:t.backgroundGradient,onColorChange:function(e){return n({background:e})},onGradientChange:function(e){return n({backgroundGradient:e})}}))),wp.element.createElement(C,{title:w("Border & Box Shadow"),initialOpen:!1},wp.element.createElement(a,null),r?wp.element.createElement(y,{label:"Hover Border",colorValue:t.hoverBorder,onColorChange:function(e){return n({hoverBorder:e})}}):wp.element.createElement(y,{label:"Border",colorValue:t.border,onColorChange:function(e){return n({border:e})}}),wp.element.createElement(x,{label:w("Border Width"),value:t.borderSize,onChange:function(e){return n({borderSize:e})},min:0,max:10}),wp.element.createElement(x,{label:w("Border Radius"),value:t.borderRadius,onChange:function(e){return n({borderRadius:e})},min:0,max:100}),wp.element.createElement(d.a,{label:"Box Shadow",attributes:t,setAttributes:n,resetValues:{boxShadow:!1,boxShadowColor:void 0,boxShadowColorOpacity:50,boxShadowBlur:5,boxShadowSpread:1,boxShadowHorizontal:0,boxShadowVertical:0,hoverBoxShadowColor:void 0,hoverBoxShadowColorOpacity:50,hoverBoxShadowBlur:5,hoverBoxShadowSpread:1,hoverBoxShadowHorizontal:0,hoverBoxShadowVertical:0},onClick:function(){return n({boxShadow:!0})}},wp.element.createElement(a,null),r?wp.element.createElement(B,{key:"with-hover"},wp.element.createElement(y,{label:"Shadow Color on Hover",colorValue:t.hoverBoxShadowColor,onColorChange:function(e){return n({hoverBoxShadowColor:e})}}),wp.element.createElement(x,{label:w("Opacity"),value:t.hoverBoxShadowColorOpacity,onChange:function(e){return n({hoverBoxShadowColorOpacity:e})},min:0,max:100}),wp.element.createElement(x,{label:w("Blur"),value:t.hoverBoxShadowBlur,onChange:function(e){return n({hoverBoxShadowBlur:e})},min:0,max:100}),wp.element.createElement(x,{label:w("Spread"),value:t.hoverBoxShadowSpread,onChange:function(e){return n({hoverBoxShadowSpread:e})},min:-100,max:100}),wp.element.createElement(x,{label:w("Horizontal"),value:t.hoverBoxShadowHorizontal,onChange:function(e){return n({hoverBoxShadowHorizontal:e})},min:-100,max:100}),wp.element.createElement(x,{label:w("Vertical"),value:t.hoverBoxShadowVertical,onChange:function(e){return n({hoverBoxShadowVertical:e})},min:-100,max:100})):wp.element.createElement(B,{key:"without-hover"},wp.element.createElement(y,{label:"Shadow Color",colorValue:t.boxShadowColor,onColorChange:function(e){return n({boxShadowColor:e})}}),wp.element.createElement(x,{label:w("Opacity"),value:t.boxShadowColorOpacity,onChange:function(e){return n({boxShadowColorOpacity:e})},min:0,max:100}),wp.element.createElement(x,{label:w("Blur"),value:t.boxShadowBlur,onChange:function(e){return n({boxShadowBlur:e})},min:0,max:100}),wp.element.createElement(x,{label:w("Spread"),value:t.boxShadowSpread,onChange:function(e){return n({boxShadowSpread:e})},min:-100,max:100}),wp.element.createElement(x,{label:w("Horizontal"),value:t.boxShadowHorizontal,onChange:function(e){return n({boxShadowHorizontal:e})},min:-100,max:100}),wp.element.createElement(x,{label:w("Vertical"),value:t.boxShadowVertical,onChange:function(e){return n({boxShadowVertical:e})},min:-100,max:100})))),wp.element.createElement(C,{title:w("Icon Settings"),initialOpen:!1},wp.element.createElement(S,{label:w("Icon Position"),value:t.iconType,options:[{label:w("No Icon"),value:"none"},{label:w("Left"),value:"left"},{label:w("Right"),value:"right"},{label:w("Icon Only"),value:"only"}],onChange:function(e){return n({iconType:e})}}),"none"!==t.iconType&&wp.element.createElement(H,{fallback:wp.element.createElement(M,null,wp.element.createElement(z,null))},wp.element.createElement(_,{label:w("Icon Picker"),library:t.library,prefix:t.prefix,icon:t.icon,changeLibrary:function(e){n({library:e,icon:void 0,prefix:"fab"})},onChange:function(e){"object"===b(e)?n({icon:e.name,prefix:e.prefix}):n({icon:e})}}))))},V=n(5),j=n(14);function N(e){return function(e){if(Array.isArray(e))return R(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return R(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return R(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function R(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,l=new Array(t);n<t;n++)l[n]=e[n];return l}function I(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);t&&(l=l.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,l)}return n}function D(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?I(Object(n),!0).forEach((function(t){G(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):I(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function G(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var F=wp.i18n.__,W=lodash.isEqual,U=wp.blockEditor.RichText,q=wp.data.useSelect,Z=wp.element,$=Z.Fragment,Q=Z.useEffect,K=[],J=function(e){var t=e.attributes,n=e.setAttributes,l=e.className,a=e.isSelected,i=e.name,p=e.clientId,m=q((function(e){var t=e("core/block-editor"),n=(0,t.getBlock)((0,t.getBlockRootClientId)(p));return{hasParent:!!n,parentAttributes:n?n.attributes:{},isLastChild:!n||p===n.innerBlocks[n.innerBlocks.length-1].clientId}}),[]),d=m.hasParent,b=m.parentAttributes,g=m.isLastChild;Q((function(){h()}),[]);var h=function(){var e=window.themeisleGutenberg.blockIDs?window.themeisleGutenberg.blockIDs:[];if(void 0===t.id){var l,o="wp-block-themeisle-blocks-button-".concat(p.substr(0,8));void 0!==(window.themeisleGutenberg.globalDefaults?window.themeisleGutenberg.globalDefaults:void 0)&&(W(V.a[i],window.themeisleGutenberg.globalDefaults[i])||(l=D({},window.themeisleGutenberg.globalDefaults[i]),Object.keys(l).map((function(e){if(t[e]!==l[e]&&void 0!==r[e].default&&t[e]!==r[e].default)return delete l[e]})))),n(D(D({},l),{},{id:o})),K.push(o),e.push(o)}else if(K.includes(t.id)){var a="wp-block-themeisle-blocks-button-".concat(p.substr(0,8));n({id:a}),K.push(a)}else K.push(t.id),e.push(t.id);window.themeisleGutenberg.blockIDs=N(e)},w={},f={},y={};t.boxShadow&&(w={boxShadow:"".concat(t.boxShadowHorizontal,"px ").concat(t.boxShadowVertical,"px ").concat(t.boxShadowBlur,"px ").concat(t.boxShadowSpread,"px ").concat(s()(t.boxShadowColor?t.boxShadowColor:"#000000",t.boxShadowColorOpacity))}),d&&(y={marginRight:!g&&"".concat(b.spacing,"px")},f={paddingTop:"".concat(b.paddingTopBottom,"px"),paddingBottom:"".concat(b.paddingTopBottom,"px"),paddingLeft:"".concat(b.paddingLeftRight,"px"),paddingRight:"".concat(b.paddingLeftRight,"px"),fontSize:b.fontSize&&"".concat(b.fontSize,"px"),fontFamily:b.fontFamily,fontWeight:b.fontVariant,fontStyle:b.fontStyle,textTransform:b.textTransform,lineHeight:b.lineHeight&&"".concat(b.lineHeight,"px")});var v=D(D({color:t.color,background:t.background||t.backgroundGradient,border:"".concat(t.borderSize,"px solid ").concat(t.border),borderRadius:t.borderRadius},w),f),k=Object(o.a)("&:hover{color:",t.hoverColor,"!important;background:",t.hoverBackground||t.hoverBackgroundGradient,"!important;border-color:",t.hoverBorder,"!important;",t.boxShadow&&"box-shadow: ".concat(t.hoverBoxShadowHorizontal,"px ").concat(t.hoverBoxShadowVertical,"px ").concat(t.hoverBoxShadowBlur,"px ").concat(t.hoverBoxShadowSpread,"px ").concat(s()(t.hoverBoxShadowColor?t.hoverBoxShadowColor:"#000000",t.hoverBoxShadowColorOpacity)," !important;"),";}&:hover svg{fill:",t.hoverColor,"!important;}",""),E={fill:t.color,width:b.fontSize&&"".concat(b.fontSize,"px")},T=j.a.icons[t.icon];return Object(o.b)($,null,Object(o.b)(u,{attributes:t,setAttributes:n,isSelected:a}),Object(o.b)(A,{attributes:t,setAttributes:n}),Object(o.b)("div",{id:t.id,className:c()(l,"wp-block-button"),style:y},"none"!==t.iconType?Object(o.b)("div",{className:"wp-block-button__link",style:v,css:k},("left"===t.iconType||"only"===t.iconType)&&("themeisle-icons"===t.library&&t.icon?Object(o.b)(T,{className:c()({"margin-right":"left"===t.iconType}),style:E}):Object(o.b)("i",{className:c()(t.prefix,"fa-fw","fa-".concat(t.icon),{"margin-right":"left"===t.iconType})})),"only"!==t.iconType&&Object(o.b)(U,{placeholder:F("Add text…"),value:t.text,onChange:function(e){return n({text:e})},tagName:"div",withoutInteractiveFormatting:!0}),"right"===t.iconType&&("themeisle-icons"===t.library&&t.icon?Object(o.b)(T,{className:"margin-left",style:E}):Object(o.b)("i",{className:"".concat(t.prefix," fa-fw fa-").concat(t.icon," margin-left")}))):Object(o.b)(U,{placeholder:F("Add text…"),value:t.text,onChange:function(e){return n({text:e})},tagName:"div",withoutInteractiveFormatting:!0,className:"wp-block-button__link",style:v,css:k})))},Y=wp.blockEditor.RichText,X=function(e){var t=e.attributes,n=e.className,l=j.a.icons[t.icon];return wp.element.createElement("div",{id:t.id,className:c()(n,"wp-block-button")},wp.element.createElement("a",{href:t.link,target:t.newTab?"_blank":"_self",rel:"noopener noreferrer",className:"wp-block-button__link"},("left"===t.iconType||"only"===t.iconType)&&("themeisle-icons"===t.library&&t.icon?wp.element.createElement(l,{className:c()({"margin-right":"left"===t.iconType})}):wp.element.createElement("i",{className:c()(t.prefix,"fa-fw","fa-".concat(t.icon),{"margin-right":"left"===t.iconType})})),"only"!==t.iconType&&wp.element.createElement(Y.Content,{tagName:"span",value:t.text}),"right"===t.iconType&&("themeisle-icons"===t.library&&t.icon?wp.element.createElement(l,{className:"margin-left"}):wp.element.createElement("i",{className:"".concat(t.prefix," fa-fw fa-").concat(t.icon," margin-left")}))))},ee=wp.i18n.__;(0,wp.blocks.registerBlockType)("themeisle-blocks/button",{title:ee("Button"),description:ee("Prompt visitors to take action with a button group."),parent:["themeisle-blocks/button-group"],icon:l.e,category:"themeisle-blocks",keywords:[ee("button"),ee("buttons"),ee("button group")],attributes:r,supports:{reusable:!1},styles:[{name:"fill",label:ee("Fill"),isDefault:!0},{name:"outline",label:ee("Outline")}],edit:J,save:X})},function(e,t,n){"use strict";n.r(t);var l=n(3),r={id:{type:"string"},paddingType:{type:"string",default:"linked"},paddingTypeTablet:{type:"string",default:"linked"},paddingTypeMobile:{type:"string",default:"linked"},padding:{type:"number",default:20},paddingTablet:{type:"number"},paddingMobile:{type:"number"},paddingTop:{type:"number",default:20},paddingTopTablet:{type:"number"},paddingTopMobile:{type:"number"},paddingRight:{type:"number",default:20},paddingRightTablet:{type:"number"},paddingRightMobile:{type:"number"},paddingBottom:{type:"number",default:20},paddingBottomTablet:{type:"number"},paddingBottomMobile:{type:"number"},paddingLeft:{type:"number",default:20},paddingLeftTablet:{type:"number"},paddingLeftMobile:{type:"number"},marginType:{type:"string",default:"unlinked"},marginTypeTablet:{type:"string",default:"unlinked"},marginTypeMobile:{type:"string",default:"unlinked"},margin:{type:"number",default:20},marginTablet:{type:"number"},marginMobile:{type:"number"},marginTop:{type:"number",default:20},marginTopTablet:{type:"number"},marginTopMobile:{type:"number"},marginRight:{type:"number",default:0},marginRightTablet:{type:"number"},marginRightMobile:{type:"number"},marginBottom:{type:"number",default:20},marginBottomTablet:{type:"number"},marginBottomMobile:{type:"number"},marginLeft:{type:"number",default:0},marginLeftTablet:{type:"number"},marginLeftMobile:{type:"number"},backgroundType:{type:"string",default:"color"},backgroundColor:{type:"string"},backgroundImageID:{type:"number"},backgroundImageURL:{type:"string"},backgroundAttachment:{type:"string",default:"scroll"},backgroundPosition:{type:"string",default:"top left"},backgroundRepeat:{type:"string",default:"repeat"},backgroundSize:{type:"string",default:"auto"},backgroundGradient:{type:"string",default:"linear-gradient(90deg,rgba(54,209,220,1) 0%,rgba(91,134,229,1) 100%)"},borderType:{type:"string",default:"linked"},border:{type:"number",default:0},borderTop:{type:"number",default:0},borderRight:{type:"number",default:0},borderBottom:{type:"number",default:0},borderLeft:{type:"number",default:0},borderColor:{type:"string",default:"#000000"},borderRadiusType:{type:"string",default:"linked"},borderRadius:{type:"number",default:0},borderRadiusTop:{type:"number",default:0},borderRadiusRight:{type:"number",default:0},borderRadiusBottom:{type:"number",default:0},borderRadiusLeft:{type:"number",default:0},boxShadow:{type:"boolean",default:!1},boxShadowColor:{type:"string",default:"#000000"},boxShadowColorOpacity:{type:"number",default:50},boxShadowBlur:{type:"number",default:5},boxShadowSpread:{type:"number",default:0},boxShadowHorizontal:{type:"number",default:0},boxShadowVertical:{type:"number",default:0},columnsHTMLTag:{type:"string",default:"div"},columnWidth:{type:"string"}},o=n(10),a=n.n(o);function c(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);t&&(l=l.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,l)}return n}function i(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?c(Object(n),!0).forEach((function(t){s(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):c(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function s(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var p=lodash.omit,m=wp.blockEditor.InnerBlocks,u={id:{type:"string"},paddingType:{type:"string",default:"linked"},paddingTypeTablet:{type:"string",default:"linked"},paddingTypeMobile:{type:"string",default:"linked"},padding:{type:"number",default:20},paddingTablet:{type:"number",default:20},paddingMobile:{type:"number",default:20},paddingTop:{type:"number",default:20},paddingTopTablet:{type:"number",default:20},paddingTopMobile:{type:"number",default:20},paddingRight:{type:"number",default:20},paddingRightTablet:{type:"number",default:20},paddingRightMobile:{type:"number",default:20},paddingBottom:{type:"number",default:20},paddingBottomTablet:{type:"number",default:20},paddingBottomMobile:{type:"number",default:20},paddingLeft:{type:"number",default:20},paddingLeftTablet:{type:"number",default:20},paddingLeftMobile:{type:"number",default:20},marginType:{type:"string",default:"unlinked"},marginTypeTablet:{type:"string",default:"unlinked"},marginTypeMobile:{type:"string",default:"unlinked"},margin:{type:"number",default:20},marginTablet:{type:"number",default:20},marginMobile:{type:"number",default:20},marginTop:{type:"number",default:20},marginTopTablet:{type:"number",default:20},marginTopMobile:{type:"number",default:20},marginRight:{type:"number",default:0},marginRightTablet:{type:"number",default:0},marginRightMobile:{type:"number",default:0},marginBottom:{type:"number",default:20},marginBottomTablet:{type:"number",default:20},marginBottomMobile:{type:"number",default:20},marginLeft:{type:"number",default:0},marginLeftTablet:{type:"number",default:0},marginLeftMobile:{type:"number",default:0},backgroundType:{type:"string",default:"color"},backgroundColor:{type:"string"},backgroundImageID:{type:"number"},backgroundImageURL:{type:"string"},backgroundAttachment:{type:"string",default:"scroll"},backgroundPosition:{type:"string",default:"top left"},backgroundRepeat:{type:"string",default:"repeat"},backgroundSize:{type:"string",default:"auto"},backgroundGradientFirstColor:{type:"string",default:"#36d1dc"},backgroundGradientFirstLocation:{type:"number",default:0},backgroundGradientSecondColor:{type:"string",default:"#5b86e5"},backgroundGradientSecondLocation:{type:"number",default:100},backgroundGradientType:{type:"string",default:"linear"},backgroundGradientAngle:{type:"number",default:90},backgroundGradientPosition:{type:"string",default:"center center"},borderType:{type:"string",default:"linked"},border:{type:"number",default:0},borderTop:{type:"number",default:0},borderRight:{type:"number",default:0},borderBottom:{type:"number",default:0},borderLeft:{type:"number",default:0},borderColor:{type:"string",default:"#000000"},borderRadiusType:{type:"string",default:"linked"},borderRadius:{type:"number",default:0},borderRadiusTop:{type:"number",default:0},borderRadiusRight:{type:"number",default:0},borderRadiusBottom:{type:"number",default:0},borderRadiusLeft:{type:"number",default:0},boxShadow:{type:"boolean",default:!1},boxShadowColor:{type:"string",default:"#000000"},boxShadowColorOpacity:{type:"number",default:50},boxShadowBlur:{type:"number",default:5},boxShadowSpread:{type:"number",default:0},boxShadowHorizontal:{type:"number",default:0},boxShadowVertical:{type:"number",default:0},columnsHTMLTag:{type:"string",default:"div"},columnWidth:{type:"string"}},d=[{attributes:u,supports:{inserter:!1,reusable:!1,html:!1},save:function(e){var t,n,l,r,o,c=e.attributes,s=e.className,p=c.columnsHTMLTag;("color"===c.backgroundType&&(t={background:c.backgroundColor}),"image"===c.backgroundType&&(t={backgroundImage:"url( '".concat(c.backgroundImageURL,"' )"),backgroundAttachment:c.backgroundAttachment,backgroundPosition:c.backgroundPosition,backgroundRepeat:c.backgroundRepeat,backgroundSize:c.backgroundSize}),"gradient"===c.backgroundType)&&(o="linear"===c.backgroundGradientType?"".concat(c.backgroundGradientAngle,"deg"):"at ".concat(c.backgroundGradientPosition),t={background:"".concat(c.backgroundGradientType,"-gradient( ").concat(o,", ").concat(c.backgroundGradientFirstColor||"rgba( 0, 0, 0, 0 )"," ").concat(c.backgroundGradientFirstLocation,"%, ").concat(c.backgroundGradientSecondColor||"rgba( 0, 0, 0, 0 )"," ").concat(c.backgroundGradientSecondLocation,"% )")});"linked"===c.borderType&&(n={borderWidth:"".concat(c.border,"px"),borderStyle:"solid",borderColor:c.borderColor}),"unlinked"===c.borderType&&(n={borderTopWidth:"".concat(c.borderTop,"px"),borderRightWidth:"".concat(c.borderRight,"px"),borderBottomWidth:"".concat(c.borderBottom,"px"),borderLeftWidth:"".concat(c.borderLeft,"px"),borderStyle:"solid",borderColor:c.borderColor}),"linked"===c.borderRadiusType&&(l={borderRadius:"".concat(c.borderRadius,"px")}),"unlinked"===c.borderRadiusType&&(l={borderTopLeftRadius:"".concat(c.borderRadiusTop,"px"),borderTopRightRadius:"".concat(c.borderRadiusRight,"px"),borderBottomRightRadius:"".concat(c.borderRadiusBottom,"px"),borderBottomLeftRadius:"".concat(c.borderRadiusLeft,"px")}),!0===c.boxShadow&&(r={boxShadow:"".concat(c.boxShadowHorizontal,"px ").concat(c.boxShadowVertical,"px ").concat(c.boxShadowBlur,"px ").concat(c.boxShadowSpread,"px ").concat(a()(c.boxShadowColor?c.boxShadowColor:"#000000",c.boxShadowColorOpacity))});var u=i(i(i(i({},t),n),l),r);return wp.element.createElement(p,{className:s,id:c.id,style:u},wp.element.createElement(m.Content,null))}},{attributes:i(i({},u),{},{paddingTablet:{type:"number"},paddingMobile:{type:"number"},paddingTopTablet:{type:"number"},paddingTopMobile:{type:"number"},paddingRightTablet:{type:"number"},paddingRightMobile:{type:"number"},paddingBottomTablet:{type:"number"},paddingBottomMobile:{type:"number"},paddingLeftTablet:{type:"number"},paddingLeftMobile:{type:"number"},marginTablet:{type:"number"},marginMobile:{type:"number"},marginTopTablet:{type:"number"},marginTopMobile:{type:"number"},marginRightTablet:{type:"number"},marginRightMobile:{type:"number"},marginBottomTablet:{type:"number"},marginBottomMobile:{type:"number"},marginLeftTablet:{type:"number"},marginLeftMobile:{type:"number"}}),supports:{inserter:!1,reusable:!1,html:!1},migrate:function(e){var t="";if("gradient"===e.backgroundType){var n="";"linear"===e.backgroundGradientType&&(n="".concat(e.backgroundGradientAngle,"deg, ")),t="".concat(e.backgroundGradientType,"-gradient(").concat(n).concat(a()(e.backgroundGradientFirstColor)||"rgba( 0, 0, 0, 0 )"," ").concat(e.backgroundGradientFirstLocation,"%, ").concat(a()(e.backgroundGradientSecondColor)||"rgba( 0, 0, 0, 0 )"," ").concat(e.backgroundGradientSecondLocation,"%)")}var l=i(i({},p(e,["backgroundGradientFirstColor","backgroundGradientFirstLocation","backgroundGradientSecondColor","backgroundGradientSecondLocation","backgroundGradientType","backgroundGradientAngle","backgroundGradientPosition"])),{},{backgroundGradient:t});return i({},l)},isEligible:function(e){return"gradient"===e.backgroundType&&void 0!==e.backgroundGradientFirstColor},save:function(e){var t=e.attributes,n=e.className,l=t.columnsHTMLTag;return wp.element.createElement(l,{className:n,id:t.id},wp.element.createElement(m.Content,null))}}],b=n(5),g=n(25),h=n(0),w=n.n(h),f=n(7),y=n(9),v=n(8),k=n(23),E=n(15);function T(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function C(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=e&&("undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"]);if(null==n)return;var l,r,o=[],a=!0,c=!1;try{for(n=n.call(e);!(a=(l=n.next()).done)&&(o.push(l.value),!t||o.length!==t);a=!0);}catch(e){c=!0,r=e}finally{try{a||null==n.return||n.return()}finally{if(c)throw r}}return o}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return x(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return x(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function x(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,l=new Array(t);n<t;n++)l[n]=e[n];return l}var M=wp.i18n.__,S=wp.blockEditor,z=S.__experimentalColorGradientControl,O=S.ColorPalette,B=S.InspectorControls,L=S.MediaPlaceholder,H=wp.components,P=H.Button,_=H.Dashicon,A=H.PanelBody,V=H.ToggleControl,j=H.RangeControl,N=H.SelectControl,R=wp.data.useSelect,I=wp.element,D=I.Fragment,G=I.useEffect,F=I.useRef,W=I.useState,U=function(e){var t=e.attributes,n=e.setAttributes,l=e.isSelected,r=e.clientId,o=e.adjacentBlock,a=e.parentBlock,c=e.updateBlockAttributes,i=e.adjacentBlockClientId,s=R((function(e){var t=e("themeisle-gutenberg/data").getView,n=e("core/edit-post").__experimentalGetPreviewDeviceType;return n?n():t()}),[]);G((function(){if(1<a.innerBlocks.length&&!i){var e=a.innerBlocks.findIndex((function(e){return e.clientId===r})),t=a.innerBlocks[e-1];b.current=t.clientId,g.current=t.attributes.columnWidth}}),[]),G((function(){if(1<a.innerBlocks.length)if(i)g.current=o.attributes.columnWidth,b.current=i,d.current=t.columnWidth;else{var e=a.innerBlocks.findIndex((function(e){return e.clientId===r})),n=a.innerBlocks[e-1];g.current=n.attributes.columnWidth,b.current=n.clientId,d.current=t.columnWidth}}),[l,t.columnWidth,a.innerBlocks.length]);var p=C(W("layout"),2),m=p[0],u=p[1],d=F(t.columnWidth),b=F(i&&i),g=F(o&&o.attributes.columnWidth),h=function(){var e;return"Desktop"===s&&(e=t.paddingType),"Tablet"===s&&(e=t.paddingTypeTablet),"Mobile"===s&&(e=t.paddingTypeMobile),e};h=h();var x={top:"paddingTop",right:"paddingRight",bottom:"paddingBottom",left:"paddingLeft"},S={top:"paddingTopTablet",right:"paddingRightTablet",bottom:"paddingBottomTablet",left:"paddingLeftTablet"},H={top:"paddingTopMobile",right:"paddingRightMobile",bottom:"paddingBottomMobile",left:"paddingLeftMobile"},I=function(e){var n;return"top"==e&&("Desktop"===s&&(n="linked"===t.paddingType?t.padding:t.paddingTop),"Tablet"===s&&(n="linked"===t.paddingTypeTablet?t.paddingTablet:t.paddingTopTablet),"Mobile"===s&&(n="linked"===t.paddingTypeMobile?t.paddingMobile:t.paddingTopMobile)),"right"==e&&("Desktop"===s&&(n="linked"===t.paddingType?t.padding:t.paddingRight),"Tablet"===s&&(n="linked"===t.paddingTypeTablet?t.paddingTablet:t.paddingRightTablet),"Mobile"===s&&(n="linked"===t.paddingTypeMobile?t.paddingMobile:t.paddingRightMobile)),"bottom"==e&&("Desktop"===s&&(n="linked"===t.paddingType?t.padding:t.paddingBottom),"Tablet"===s&&(n="linked"===t.paddingTypeTablet?t.paddingTablet:t.paddingBottomTablet),"Mobile"===s&&(n="linked"===t.paddingTypeMobile?t.paddingMobile:t.paddingBottomMobile)),"left"==e&&("Desktop"===s&&(n="linked"===t.paddingType?t.padding:t.paddingLeft),"Tablet"===s&&(n="linked"===t.paddingTypeTablet?t.paddingTablet:t.paddingLeftTablet),"Mobile"===s&&(n="linked"===t.paddingTypeMobile?t.paddingMobile:t.paddingLeftMobile)),n},U=function(){var e;return"Desktop"===s&&(e=t.marginType),"Tablet"===s&&(e=t.marginTypeTablet),"Mobile"===s&&(e=t.marginTypeMobile),e};U=U();var q={top:"marginTop",right:"marginRight",bottom:"marginBottom",left:"marginLeft"},Z={top:"marginTopTablet",right:"marginRightTablet",bottom:"marginBottomTablet",left:"marginLeftTablet"},$={top:"marginTopMobile",right:"marginRightMobile",bottom:"marginBottomMobile",left:"marginLeftMobile"},Q=function(e){var n;return"top"==e&&("Desktop"===s&&(n="linked"===t.marginType?t.margin:t.marginTop),"Tablet"===s&&(n="linked"===t.marginTypeTablet?t.marginTablet:t.marginTopTablet),"Mobile"===s&&(n="linked"===t.marginTypeMobile?t.marginMobile:t.marginTopMobile)),"right"==e&&("Desktop"===s&&(n="linked"===t.marginType?t.margin:t.marginRight),"Tablet"===s&&(n="linked"===t.marginTypeTablet?t.marginTablet:t.marginRightTablet),"Mobile"===s&&(n="linked"===t.marginTypeMobile?t.marginMobile:t.marginRightMobile)),"bottom"==e&&("Desktop"===s&&(n="linked"===t.marginType?t.margin:t.marginBottom),"Tablet"===s&&(n="linked"===t.marginTypeTablet?t.marginTablet:t.marginBottomTablet),"Mobile"===s&&(n="linked"===t.marginTypeMobile?t.marginMobile:t.marginBottomMobile)),"left"==e&&("Desktop"===s&&(n="linked"===t.marginType?t.margin:t.marginLeft),"Tablet"===s&&(n="linked"===t.marginTypeTablet?t.marginTablet:t.marginLeftTablet),"Mobile"===s&&(n="linked"===t.marginTypeMobile?t.marginMobile:t.marginLeftMobile)),n},K=function(){n({backgroundImageID:"",backgroundImageURL:""})},J={top:"borderTop",right:"borderRight",bottom:"borderBottom",left:"borderLeft"},Y=function(e){var n;return"top"==e&&(n="linked"===t.borderType?t.border:t.borderTop),"right"==e&&(n="linked"===t.borderType?t.border:t.borderRight),"bottom"==e&&(n="linked"===t.borderType?t.border:t.borderBottom),"left"==e&&(n="linked"===t.borderType?t.border:t.borderLeft),n},X={top:"borderRadiusTop",right:"borderRadiusRight",bottom:"borderRadiusBottom",left:"borderRadiusLeft"},ee=function(e){var n;return"top"==e&&(n="linked"===t.borderRadiusType?t.borderRadius:t.borderRadiusTop),"right"==e&&(n="linked"===t.borderRadiusType?t.borderRadius:t.borderRadiusRight),"bottom"==e&&(n="linked"===t.borderRadiusType?t.borderRadius:t.borderRadiusBottom),"left"==e&&(n="linked"===t.borderRadiusType?t.borderRadius:t.borderRadiusLeft),n};return wp.element.createElement(B,null,wp.element.createElement(A,{className:"wp-block-themeisle-blocks-advanced-columns-header-panel"},wp.element.createElement(P,{className:w()("header-tab",{"is-selected":"layout"===m}),onClick:function(){return u("layout")}},wp.element.createElement("span",null,wp.element.createElement(_,{icon:"editor-table"}),M("Layout"))),wp.element.createElement(P,{className:w()("header-tab",{"is-selected":"style"===m}),onClick:function(){return u("style")}},wp.element.createElement("span",null,wp.element.createElement(_,{icon:"admin-customizer"}),M("Style"))),wp.element.createElement(P,{className:w()("header-tab",{"is-selected":"advanced"===m}),onClick:function(){return u("advanced")}},wp.element.createElement("span",null,wp.element.createElement(_,{icon:"admin-generic"}),M("Advanced")))),"layout"===m&&wp.element.createElement(D,null,wp.element.createElement(A,{title:M("Spacing")},1<a.innerBlocks.length&&wp.element.createElement(j,{label:M("Column Width"),value:Number(t.columnWidth),onChange:function(e){var t=e||10,l=Number(d.current)-t+Number(g.current);d.current=t,g.current=l,n({columnWidth:t.toFixed(2)}),c(b.current,{columnWidth:l.toFixed(2)})},min:10,max:Number(t.columnWidth)+Number(g.current)-10}),wp.element.createElement(v.a,{label:"Padding"},wp.element.createElement(y.a,{type:h,min:0,max:500,changeType:function(e){"Desktop"===s&&n({paddingType:e}),"Tablet"===s&&n({paddingTypeTablet:e}),"Mobile"===s&&n({paddingTypeMobile:e})},onChange:function(e,l){"Desktop"===s&&("linked"===t.paddingType?n({padding:l}):n(T({},x[e],l))),"Tablet"===s&&("linked"===t.paddingTypeTablet?n({paddingTablet:l}):n(T({},S[e],l))),"Mobile"===s&&("linked"===t.paddingTypeMobile?n({paddingMobile:l}):n(T({},H[e],l)))},options:[{label:M("Top"),type:"top",value:I("top")},{label:M("Right"),type:"right",value:I("right")},{label:M("Bottom"),type:"bottom",value:I("bottom")},{label:M("Left"),type:"left",value:I("left")}]})),wp.element.createElement(v.a,{label:"Margin"},wp.element.createElement(y.a,{type:U,min:-500,max:500,changeType:function(e){"Desktop"===s&&n({marginType:e}),"Tablet"===s&&n({marginTypeTablet:e}),"Mobile"===s&&n({marginTypeMobile:e})},onChange:function(e,l){"Desktop"===s&&("linked"===t.marginType?n({margin:l}):n(T({},q[e],l))),"Tablet"===s&&("linked"===t.marginTypeTablet?n({marginTablet:l}):n(T({},Z[e],l))),"Mobile"===s&&("linked"===t.marginTypeMobile?n({marginMobile:l}):n(T({},$[e],l)))},options:[{label:M("Top"),type:"top",value:Q("top")},{label:M("Right"),type:"right",value:Q("right")},{label:M("Bottom"),type:"bottom",value:Q("bottom")},{label:M("Left"),type:"left",value:Q("left")}]}))))||"style"===m&&wp.element.createElement(D,null,wp.element.createElement(A,{title:M("Background Settings"),className:"wp-block-themeisle-image-container"},wp.element.createElement(k.default,{label:M("Background Type"),backgroundType:t.backgroundType,changeBackgroundType:function(e){n({backgroundType:e})}}),"color"===t.backgroundType&&wp.element.createElement(f.a,{label:M("Background Color"),colorValue:t.headingColor},wp.element.createElement(O,{label:"Background Color",value:t.backgroundColor,onChange:function(e){n({backgroundColor:e})}}))||"image"===t.backgroundType&&(t.backgroundImageURL?wp.element.createElement(D,null,wp.element.createElement("div",{className:"wp-block-themeisle-image-container-body"},wp.element.createElement("div",{className:"wp-block-themeisle-image-container-area"},wp.element.createElement("div",{className:"wp-block-themeisle-image-container-holder",style:{backgroundImage:"url('".concat(t.backgroundImageURL,"')")}}),wp.element.createElement("div",{className:"wp-block-themeisle-image-container-delete",onClick:K},wp.element.createElement(_,{icon:"trash"}),wp.element.createElement("span",null,M("Remove Image"))))),wp.element.createElement(P,{isSecondary:!0,className:"wp-block-themeisle-image-container-delete-button",onClick:K},M("Change or Remove Image")),wp.element.createElement(E.a,{label:"Background Settings"},wp.element.createElement(N,{label:M("Background Attachment"),value:t.backgroundAttachment,options:[{label:M("Scroll"),value:"scroll"},{label:M("Fixed"),value:"fixed"},{label:M("Local"),value:"local"}],onChange:function(e){n({backgroundAttachment:e})}}),wp.element.createElement(N,{label:M("Background Position"),value:t.backgroundPosition,options:[{label:M("Default"),value:"top left"},{label:M("Top Left"),value:"top left"},{label:M("Top Center"),value:"top center"},{label:M("Top Right"),value:"top right"},{label:M("Center Left"),value:"center left"},{label:M("Center Center"),value:"center center"},{label:M("Center Right"),value:"center right"},{label:M("Bottom Left"),value:"bottom left"},{label:M("Bottom Center"),value:"bottom center"},{label:M("Bottom Right"),value:"bottom right"}],onChange:function(e){n({backgroundPosition:e})}}),wp.element.createElement(N,{label:M("Background Repeat"),value:t.backgroundRepeat,options:[{label:M("Repeat"),value:"repeat"},{label:M("No-repeat"),value:"no-repeat"}],onChange:function(e){n({backgroundRepeat:e})}}),wp.element.createElement(N,{label:M("Background Size"),value:t.backgroundSize,options:[{label:M("Auto"),value:"auto"},{label:M("Cover"),value:"cover"},{label:M("Contain"),value:"contain"}],onChange:function(e){n({backgroundSize:e})}}))):wp.element.createElement(L,{icon:"format-image",labels:{title:M("Background Image"),name:M("an image")},value:t.backgroundImageID,onSelect:function(e){n({backgroundImageID:e.id,backgroundImageURL:e.url})},accept:"image/*",allowedTypes:["image"]}))||"gradient"===t.backgroundType&&wp.element.createElement(z,{label:"Background Gradient",gradientValue:t.backgroundGradient,disableCustomColors:!0,onGradientChange:function(e){n({backgroundGradient:e})},clearable:!1})),wp.element.createElement(A,{title:M("Border"),className:"wp-block-themeisle-border-container",initialOpen:!1},wp.element.createElement(y.a,{label:M("Border Width"),type:t.borderType,min:0,max:500,changeType:function(e){n({borderType:e})},onChange:function(e,l){"linked"===t.borderType?n({border:l}):n(T({},J[e],l))},options:[{label:M("Top"),type:"top",value:Y("top")},{label:M("Right"),type:"right",value:Y("right")},{label:M("Bottom"),type:"bottom",value:Y("bottom")},{label:M("Left"),type:"left",value:Y("left")}]}),wp.element.createElement(f.a,{label:M("Border Color"),colorValue:t.borderColor},wp.element.createElement(O,{label:"Border Color",value:t.borderColor,onChange:function(e){n({borderColor:e})}})),wp.element.createElement(y.a,{label:M("Border Radius"),type:t.borderRadiusType,min:0,max:500,changeType:function(e){n({borderRadiusType:e})},onChange:function(e,l){"linked"===t.borderRadiusType?n({borderRadius:l}):n(T({},X[e],l))},options:[{label:M("Top"),type:"top",value:ee("top")},{label:M("Right"),type:"right",value:ee("right")},{label:M("Bottom"),type:"bottom",value:ee("bottom")},{label:M("Left"),type:"left",value:ee("left")}]}),wp.element.createElement(V,{label:"Box Shadow",checked:t.boxShadow,onChange:function(){n({boxShadow:!t.boxShadow})}}),t.boxShadow&&wp.element.createElement(D,null,wp.element.createElement(f.a,{label:M("Shadow Color"),colorValue:t.boxShadowColor},wp.element.createElement(O,{label:"Shadow Color",value:t.boxShadowColor,onChange:function(e){n({boxShadowColor:e})}})),wp.element.createElement(E.a,{label:"Shadow Properties"},wp.element.createElement(j,{label:M("Opacity"),value:t.boxShadowColorOpacity,onChange:function(e){n({boxShadowColorOpacity:e})},min:0,max:100}),wp.element.createElement(j,{label:M("Blur"),value:t.boxShadowBlur,onChange:function(e){n({boxShadowBlur:e})},min:0,max:100}),wp.element.createElement(j,{label:M("Spread"),value:t.boxShadowSpread,onChange:function(e){n({boxShadowSpread:e})},min:-100,max:100}),wp.element.createElement(j,{label:M("Horizontal"),value:t.boxShadowHorizontal,onChange:function(e){n({boxShadowHorizontal:e})},min:-100,max:100}),wp.element.createElement(j,{label:M("Vertical"),value:t.boxShadowVertical,onChange:function(e){n({boxShadowVertical:e})},min:-100,max:100})))))||"advanced"===m&&wp.element.createElement(A,{title:M("Section Settings")},wp.element.createElement(N,{label:M("HTML Tag"),value:t.columnsHTMLTag,options:[{label:M("Default (div)"),value:"div"},{label:"section",value:"section"},{label:"header",value:"header"},{label:"footer",value:"footer"},{label:"article",value:"article"},{label:"main",value:"main"}],onChange:function(e){n({columnsHTMLTag:e})}})))};function q(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=e&&("undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"]);if(null==n)return;var l,r,o=[],a=!0,c=!1;try{for(n=n.call(e);!(a=(l=n.next()).done)&&(o.push(l.value),!t||o.length!==t);a=!0);}catch(e){c=!0,r=e}finally{try{a||null==n.return||n.return()}finally{if(c)throw r}}return o}(e,t)||$(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Z(e){return function(e){if(Array.isArray(e))return Q(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||$(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function $(e,t){if(e){if("string"==typeof e)return Q(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Q(e,t):void 0}}function Q(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,l=new Array(t);n<t;n++)l[n]=e[n];return l}function K(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);t&&(l=l.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,l)}return n}function J(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?K(Object(n),!0).forEach((function(t){Y(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):K(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Y(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var X=lodash.isEqual,ee=wp.components.ResizableBox,te=wp.compose.useViewportMatch,ne=wp.data,le=ne.useDispatch,re=ne.useSelect,oe=wp.blockEditor.InnerBlocks,ae=wp.element,ce=ae.Fragment,ie=ae.useEffect,se=ae.useState,pe=[],me=function(e){var t=e.attributes,n=e.setAttributes,l=e.className,o=e.isSelected,c=e.clientId,i=e.name,s=e.toggleSelection,p=le("core/block-editor").updateBlockAttributes,m=re((function(e){var t=e("core/block-editor"),n=t.getAdjacentBlockClientId,l=t.getBlock,r=t.getBlockRootClientId,o=e("core/edit-post").__experimentalGetPreviewDeviceType,a=l(c),i=n(c),s=l(i),p=r(c);return{adjacentBlockClientId:i,adjacentBlock:s,parentClientId:p,parentBlock:l(p),hasInnerBlocks:!(!a||!a.innerBlocks.length),isViewportAvailable:!!o,isPreviewDesktop:!!o&&"Desktop"===o(),isPreviewTablet:!!o&&"Tablet"===o(),isPreviewMobile:!!o&&"Mobile"===o()}}),[]),u=m.adjacentBlockClientId,d=m.adjacentBlock,h=m.parentClientId,w=m.parentBlock,f=m.hasInnerBlocks,y=m.isViewportAvailable,v=m.isPreviewDesktop,k=m.isPreviewTablet,E=m.isPreviewMobile,T=te("large",">="),C=te("large","<="),x=te("small",">="),M=te("small","<=");ie((function(){S()}),[]),ie((function(){G()}),[t.columnWidth]);var S=function(){var e=window.themeisleGutenberg.blockIDs?window.themeisleGutenberg.blockIDs:[];if(void 0===t.id){var l,o="wp-block-themeisle-blocks-advanced-column-".concat(c.substr(0,8));void 0!==(window.themeisleGutenberg.globalDefaults?window.themeisleGutenberg.globalDefaults:void 0)&&(X(b.a[i],window.themeisleGutenberg.globalDefaults[i])||(l=J({},window.themeisleGutenberg.globalDefaults[i]),Object.keys(l).map((function(e){if(t[e]!==l[e]&&void 0!==r[e].default&&t[e]!==r[e].default)return delete l[e]})))),n(J(J({},l),{},{id:o})),pe.push(o),e.push(o)}else if(pe.includes(t.id)){var a="wp-block-themeisle-blocks-advanced-column-".concat(c.substr(0,8));n({id:a}),pe.push(a)}else pe.push(t.id),e.push(t.id);window.themeisleGutenberg.blockIDs=Z(e)},z=q(se(0),2),O=z[0],B=z[1],L=q(se(0),2),H=L[0],P=L[1],_=T&&!C&&x&&!M,A=!T&&!C&&x&&!M,V=!(T||C||x||M);y&&!V&&(_=v,A=k,V=E),void 0===t.columnWidth&&w.innerBlocks.map((function(e,t){if(c===e.clientId){var n=w.attributes.columns,l=w.attributes.layout;p(c,{columnWidth:g.a[n][l][t]})}}));var j,N,R,I,D,G=function(){var e=document.getElementById("block-".concat(c));null!==e&&(e.style.flexBasis=_?"".concat(t.columnWidth,"%"):"")},F=t.columnsHTMLTag;_&&(j={paddingTop:"linked"===t.paddingType?"".concat(t.padding,"px"):"".concat(t.paddingTop,"px"),paddingRight:"linked"===t.paddingType?"".concat(t.padding,"px"):"".concat(t.paddingRight,"px"),paddingBottom:"linked"===t.paddingType?"".concat(t.padding,"px"):"".concat(t.paddingBottom,"px"),paddingLeft:"linked"===t.paddingType?"".concat(t.padding,"px"):"".concat(t.paddingLeft,"px"),marginTop:"linked"===t.marginType?"".concat(t.margin,"px"):"".concat(t.marginTop,"px"),marginRight:"linked"===t.marginType?"".concat(t.margin,"px"):"".concat(t.marginRight,"px"),marginBottom:"linked"===t.marginType?"".concat(t.margin,"px"):"".concat(t.marginBottom,"px"),marginLeft:"linked"===t.marginType?"".concat(t.margin,"px"):"".concat(t.marginLeft,"px")}),A&&(j={paddingTop:"linked"===t.paddingTypeTablet?"".concat(t.paddingTablet,"px"):"".concat(t.paddingTopTablet,"px"),paddingRight:"linked"===t.paddingTypeTablet?"".concat(t.paddingTablet,"px"):"".concat(t.paddingRightTablet,"px"),paddingBottom:"linked"===t.paddingTypeTablet?"".concat(t.paddingTablet,"px"):"".concat(t.paddingBottomTablet,"px"),paddingLeft:"linked"===t.paddingTypeTablet?"".concat(t.paddingTablet,"px"):"".concat(t.paddingLeftTablet,"px"),marginTop:"linked"===t.marginTypeTablet?"".concat(t.marginTablet,"px"):"".concat(t.marginTopTablet,"px"),marginRight:"linked"===t.marginTypeTablet?"".concat(t.marginTablet,"px"):"".concat(t.marginRightTablet,"px"),marginBottom:"linked"===t.marginTypeTablet?"".concat(t.marginTablet,"px"):"".concat(t.marginBottomTablet,"px"),marginLeft:"linked"===t.marginTypeTablet?"".concat(t.marginTablet,"px"):"".concat(t.marginLeftTablet,"px")}),V&&(j={paddingTop:"linked"===t.paddingTypeMobile?"".concat(t.paddingMobile,"px"):"".concat(t.paddingTopMobile,"px"),paddingRight:"linked"===t.paddingTypeMobile?"".concat(t.paddingMobile,"px"):"".concat(t.paddingRightMobile,"px"),paddingBottom:"linked"===t.paddingTypeMobile?"".concat(t.paddingMobile,"px"):"".concat(t.paddingBottomMobile,"px"),paddingLeft:"linked"===t.paddingTypeMobile?"".concat(t.paddingMobile,"px"):"".concat(t.paddingLeftMobile,"px"),marginTop:"linked"===t.marginTypeMobile?"".concat(t.marginMobile,"px"):"".concat(t.marginTopMobile,"px"),marginRight:"linked"===t.marginTypeMobile?"".concat(t.marginMobile,"px"):"".concat(t.marginRightMobile,"px"),marginBottom:"linked"===t.marginTypeMobile?"".concat(t.marginMobile,"px"):"".concat(t.marginBottomMobile,"px"),marginLeft:"linked"===t.marginTypeMobile?"".concat(t.marginMobile,"px"):"".concat(t.marginLeftMobile,"px")}),"color"===t.backgroundType&&(N={background:t.backgroundColor}),"image"===t.backgroundType&&(N={backgroundImage:"url( '".concat(t.backgroundImageURL,"' )"),backgroundAttachment:t.backgroundAttachment,backgroundPosition:t.backgroundPosition,backgroundRepeat:t.backgroundRepeat,backgroundSize:t.backgroundSize}),"gradient"===t.backgroundType&&(N={background:t.backgroundGradient}),"linked"===t.borderType&&(R={borderWidth:"".concat(t.border,"px"),borderStyle:"solid",borderColor:t.borderColor}),"unlinked"===t.borderType&&(R={borderTopWidth:"".concat(t.borderTop,"px"),borderRightWidth:"".concat(t.borderRight,"px"),borderBottomWidth:"".concat(t.borderBottom,"px"),borderLeftWidth:"".concat(t.borderLeft,"px"),borderStyle:"solid",borderColor:t.borderColor}),"linked"===t.borderRadiusType&&(I={borderRadius:"".concat(t.borderRadius,"px")}),"unlinked"===t.borderRadiusType&&(I={borderTopLeftRadius:"".concat(t.borderRadiusTop,"px"),borderTopRightRadius:"".concat(t.borderRadiusRight,"px"),borderBottomRightRadius:"".concat(t.borderRadiusBottom,"px"),borderBottomLeftRadius:"".concat(t.borderRadiusLeft,"px")}),!0===t.boxShadow&&(D={boxShadow:"".concat(t.boxShadowHorizontal,"px ").concat(t.boxShadowVertical,"px ").concat(t.boxShadowBlur,"px ").concat(t.boxShadowSpread,"px ").concat(a()(t.boxShadowColor?t.boxShadowColor:"#000000",t.boxShadowColorOpacity))});var W=J(J(J(J(J({},j),N),R),I),D);return wp.element.createElement(ce,null,wp.element.createElement(U,{attributes:t,setAttributes:n,isSelected:o,clientId:c,adjacentBlock:d,parentBlock:w,updateBlockAttributes:p,adjacentBlockClientId:u}),wp.element.createElement(ee,{className:"block-library-spacer__resize-container wp-themeisle-block-advanced-column-resize-container",enable:{right:!!u},handleWrapperClass:"wp-themeisle-block-advanced-column-resize-container-handle",onResizeStart:function(){var e=document.querySelector("#block-".concat(c," .wp-themeisle-block-advanced-column-resize-container-handle .components-resizable-box__handle")),n=document.createElement("div"),l=document.createElement("div");n.setAttribute("class","resizable-tooltip resizable-tooltip-left"),n.innerHTML="".concat(parseFloat(t.columnWidth).toFixed(0),"%"),e.appendChild(n),l.setAttribute("class","resizable-tooltip resizable-tooltip-right"),l.innerHTML="".concat(parseFloat(d.attributes.columnWidth).toFixed(0),"%"),e.appendChild(l),B(t.columnWidth),P(d.attributes.columnWidth),s(!1)},onResize:function(e,t,l,r){var o=document.getElementById("block-".concat(h)).getBoundingClientRect().width,a=r.width/o*100,c=parseFloat(O)+a,i=H-a,s=document.querySelector(".resizable-tooltip-left"),m=document.querySelector(".resizable-tooltip-right");10<=c&&10<=i&&(s.innerHTML="".concat(c.toFixed(0),"%"),m.innerHTML="".concat(i.toFixed(0),"%"),n({columnWidth:c.toFixed(2)}),p(u,{columnWidth:i.toFixed(2)}))},onResizeStop:function(){var e=document.querySelector(".resizable-tooltip-left"),t=document.querySelector(".resizable-tooltip-right");e.parentNode.removeChild(e),t.parentNode.removeChild(t),s(!0)}},wp.element.createElement(F,{className:l,id:t.id,style:W},wp.element.createElement(oe,{templateLock:!1,renderAppender:!f&&oe.ButtonBlockAppender}))))},ue=wp.blockEditor.InnerBlocks,de=function(e){var t=e.attributes,n=e.className,l=t.columnsHTMLTag;return wp.element.createElement(l,{className:n,id:t.id},wp.element.createElement(ue.Content,null))},be=wp.i18n.__;(0,wp.blocks.registerBlockType)("themeisle-blocks/advanced-column",{title:be("Section Column"),description:be("A single column within a Section block."),parent:["themeisle-blocks/advanced-columns"],icon:l.i,category:"themeisle-blocks",attributes:r,deprecated:d,supports:{inserter:!1,reusable:!1,html:!1},edit:me,save:de})},function(e,t,n){"use strict";n.r(t);var l=n(3),r={id:{type:"string"},gap:{type:"string"},titleColor:{type:"string"},titleBackground:{type:"string"},contentBackground:{type:"string"},borderColor:{type:"string"},spacing:{type:"number",default:20}},o=n(0),a=n.n(o),c=n(1),i=wp.i18n.__,s=wp.blockEditor,p=s.ContrastChecker,m=s.InspectorControls,u=s.PanelColorSettings,d=wp.components,b=d.PanelBody,g=d.SelectControl,h=function(e){var t=e.attributes,n=e.setAttributes;return wp.element.createElement(m,null,wp.element.createElement(b,{title:i("Settings")},wp.element.createElement(g,{label:i("Gap"),value:t.gap,options:[{label:i("No Gap"),value:""},{label:i("Narrow (5px)"),value:"narrow"},{label:i("Wide (10px)"),value:"wide"},{label:i("Wider (20px)"),value:"wider"}],onChange:function(e){return n({gap:e})}})),wp.element.createElement(u,{title:i("Color"),initialOpen:!1,colorSettings:[{value:t.titleColor,onChange:function(e){return n({titleColor:e})},label:i("Title")},{value:t.titleBackground,onChange:function(e){return n({titleBackground:e})},label:i("Title Background")},{value:t.contentBackground,onChange:function(e){return n({contentBackground:e})},label:i("Content Background")},{value:t.borderColor,onChange:function(e){return n({borderColor:e})},label:i("Border Color")}]},wp.element.createElement(p,{textColor:t.titleColor,backgroundColor:t.titleBackground})))},w=n(5);function f(e){return function(e){if(Array.isArray(e))return y(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return y(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return y(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function y(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,l=new Array(t);n<t;n++)l[n]=e[n];return l}function v(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);t&&(l=l.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,l)}return n}function k(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?v(Object(n),!0).forEach((function(t){E(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):v(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function E(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var T=lodash.isEqual,C=wp.blockEditor.InnerBlocks,x=wp.element,M=x.Fragment,S=x.useEffect,z=[],O=function(e){var t=e.attributes,n=e.setAttributes,l=e.className,o=e.name,i=e.clientId,s=e.isSelected;S((function(){p()}),[]);var p=function(){var e=window.themeisleGutenberg.blockIDs?window.themeisleGutenberg.blockIDs:[];if(void 0===t.id){var l,a="wp-block-themeisle-blocks-accordion-".concat(i.substr(0,8));void 0!==(window.themeisleGutenberg.globalDefaults?window.themeisleGutenberg.globalDefaults:void 0)&&(T(w.a[o],window.themeisleGutenberg.globalDefaults[o])||(l=k({},window.themeisleGutenberg.globalDefaults[o]),Object.keys(l).map((function(e){if(t[e]!==l[e]&&void 0!==r[e].default&&t[e]!==r[e].default)return delete l[e]})))),n(k(k({},l),{},{id:a})),z.push(a),e.push(a)}else if(z.includes(t.id)){var c="wp-block-themeisle-blocks-accordion-".concat(i.substr(0,8));n({id:c}),z.push(c)}else z.push(t.id),e.push(t.id);window.themeisleGutenberg.blockIDs=f(e)},m=Object(c.a)("&.wp-block-themeisle-blocks-accordion .wp-block-themeisle-blocks-accordion-item .wp-block-themeisle-blocks-accordion-item__title{color:",t.titleColor,";background:",t.titleBackground,";border-color:",t.borderColor,";}&.wp-block-themeisle-blocks-accordion .wp-block-themeisle-blocks-accordion-item .wp-block-themeisle-blocks-accordion-item__title svg{fill:",t.titleColor,";}&.wp-block-themeisle-blocks-accordion .wp-block-themeisle-blocks-accordion-item .wp-block-themeisle-blocks-accordion-item__content{background:",t.contentBackground,";border-color:",t.borderColor,";}","");return Object(c.b)(M,null,Object(c.b)(h,{attributes:t,setAttributes:n}),Object(c.b)("div",{id:t.id,className:a()(l,E({},"is-".concat(t.gap,"-gap"),t.gap)),css:m},Object(c.b)(C,{allowedBlocks:["themeisle-blocks/accordion-item"],template:[["themeisle-blocks/accordion-item"]],renderAppender:s?C.ButtonBlockAppender:""})))};var B=wp.blockEditor.InnerBlocks,L=function(e){var t,n,l,r=e.attributes,o=e.className;return wp.element.createElement("div",{id:r.id,className:a()(o,(t={},n="is-".concat(r.gap,"-gap"),l=r.gap,n in t?Object.defineProperty(t,n,{value:l,enumerable:!0,configurable:!0,writable:!0}):t[n]=l,t))},wp.element.createElement(B.Content,null))},H=wp.i18n.__;(0,wp.blocks.registerBlockType)("themeisle-blocks/accordion",{title:H("Accordion"),description:H("Vertically collapsing accordions perfect for displaying your FAQs."),icon:l.e,category:"themeisle-blocks",keywords:["accordions","collapse","faq"],attributes:r,supports:{html:!1},edit:O,save:L})},function(e,t,n){"use strict";n.r(t);var l=n(3),r={title:{type:"string"},initialOpen:{type:"boolean",default:!1}},o=n(141),a=n(142),c=wp.i18n.__,i=wp.blockEditor.InspectorControls,s=wp.components,p=s.PanelBody,m=s.ToggleControl,u=function(e){var t=e.attributes,n=e.setAttributes;return wp.element.createElement(i,null,wp.element.createElement(p,{title:c("Settings")},wp.element.createElement(m,{label:"Initially Open",checked:t.initialOpen,onChange:function(e){return n({initialOpen:e})}})))};function d(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=e&&("undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"]);if(null==n)return;var l,r,o=[],a=!0,c=!1;try{for(n=n.call(e);!(a=(l=n.next()).done)&&(o.push(l.value),!t||o.length!==t);a=!0);}catch(e){c=!0,r=e}finally{try{a||null==n.return||n.return()}finally{if(c)throw r}}return o}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return b(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return b(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function b(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,l=new Array(t);n<t;n++)l[n]=e[n];return l}var g=wp.i18n.__,h=wp.blockEditor,w=h.InnerBlocks,f=h.RichText,y=wp.components.Icon,v=wp.element,k=v.Fragment,E=v.useState,T=function(e){var t=e.attributes,n=e.className,l=e.setAttributes,r=d(E(!0),2),c=r[0],i=r[1];return wp.element.createElement(k,null,wp.element.createElement(u,{attributes:t,setAttributes:l}),wp.element.createElement("div",{className:n},wp.element.createElement("div",{className:"wp-block-themeisle-blocks-accordion-item__title",onClick:function(e){"string"==typeof e.target.className&&e.target.className.includes("block-editor-rich-text__editable")?i(!0):i(!c)}},wp.element.createElement(f,{placeholder:g("Add text…"),value:t.title,onChange:function(e){c||i(!0),l({title:e})},tagName:"span"}),wp.element.createElement(y,{icon:c?o.a:a.a,size:24})),c&&wp.element.createElement("div",{className:"wp-block-themeisle-blocks-accordion-item__content"},wp.element.createElement(w,{template:[["core/paragraph"]]}))))},C=wp.blockEditor,x=C.InnerBlocks,M=C.RichText,S=function(e){var t=e.attributes,n=e.className;return wp.element.createElement("details",{className:n,open:!!t.initialOpen},wp.element.createElement("summary",{className:"wp-block-themeisle-blocks-accordion-item__title"},wp.element.createElement(M.Content,{tagName:"div",value:t.title})),wp.element.createElement("div",{className:"wp-block-themeisle-blocks-accordion-item__content"},wp.element.createElement(x.Content,null)))},z=wp.i18n.__;(0,wp.blocks.registerBlockType)("themeisle-blocks/accordion-item",{title:z("Accordion Item"),description:z("Vertically collapsing accordions perfect for displaying your FAQs."),parent:["themeisle-blocks/accordion"],icon:l.e,category:"themeisle-blocks",keywords:["accordions","collapse","faq"],attributes:r,supports:{reusable:!1},edit:T,save:S})},function(e,t,n){"use strict";n.r(t);var l=n(3),r=wp.i18n.__,o=wp.blockEditor.InnerBlocks,a=[["themeisle-blocks/advanced-heading",{content:r("Basic"),align:"center",tag:"h3",fontSize:24}],["themeisle-blocks/advanced-heading",{content:r("$9.99"),align:"center",tag:"h4",fontSize:36,fontFamily:"Roboto Slab",fontVariant:"normal"}],["themeisle-blocks/advanced-heading",{content:r("Per Month"),align:"center",tag:"p",fontSize:12,marginBottom:0}],["themeisle-blocks/advanced-heading",{content:r("First Feature"),align:"center",tag:"p",fontSize:12,marginBottom:0}],["themeisle-blocks/advanced-heading",{content:r("Second Feature"),align:"center",tag:"p",fontSize:12,marginBottom:0}],["themeisle-blocks/advanced-heading",{content:r("Last Feature"),align:"center",tag:"p",fontSize:12,marginBottom:0}],["themeisle-blocks/button-group",{align:"center",buttons:1,data:[{text:r("Buy Now"),newTab:!1,color:"#ffffff",background:"#32373c",hoverColor:"#ffffff",hoverBackground:"#444a50",borderSize:0,borderRadius:3,boxShadow:!1,boxShadowColorOpacity:50,boxShadowBlur:5,boxShadowSpread:1,boxShadowHorizontal:0,boxShadowVertical:0,hoverBoxShadowColorOpacity:50,hoverBoxShadowBlur:5,hoverBoxShadowSpread:1,hoverBoxShadowHorizontal:0,hoverBoxShadowVertical:0,iconType:"none",paddingTopBottom:12,paddingLeftRight:24}]}]],c=function(e){var t=e.className;return wp.element.createElement("div",{className:t},wp.element.createElement(o,{template:a}))},i=wp.blockEditor.InnerBlocks,s=function(e){var t=e.className;return wp.element.createElement("div",{className:t},wp.element.createElement(i.Content,null))},p=wp.i18n.__;(0,wp.blocks.registerBlockType)("themeisle-blocks/pricing",{title:p("Pricing"),description:p("Pricing tables are a critical part in showcasing your services, prices and overall offerings."),icon:l.s,category:"themeisle-blocks",keywords:["pricing","table","money"],edit:c,save:s})},function(e,t,n){"use strict";n.r(t);var l=n(3),r=wp.i18n.__,o=wp.blockEditor.InnerBlocks,a=[["themeisle-blocks/font-awesome-icons",{fontSize:62,prefix:"fab",icon:"angellist"}],["themeisle-blocks/advanced-heading",{content:r("Basic"),align:"center",tag:"h4",marginBottom:20}],["themeisle-blocks/advanced-heading",{content:r("Lorem ipsum dolor sit amet elit do, consectetur adipiscing, sed eiusmod tempor incididunt ut labore et dolore magna aliqua."),align:"center",color:"#999999",tag:"p",fontSize:14,marginBottom:20}],["themeisle-blocks/button-group",{align:"center",buttons:1,data:[{text:r("Know More"),newTab:!1,color:"#ffffff",background:"#32373c",hoverColor:"#ffffff",hoverBackground:"#444a50",borderSize:0,borderRadius:3,boxShadow:!1,boxShadowColorOpacity:50,boxShadowBlur:5,boxShadowSpread:1,boxShadowHorizontal:0,boxShadowVertical:0,hoverBoxShadowColorOpacity:50,hoverBoxShadowBlur:5,hoverBoxShadowSpread:1,hoverBoxShadowHorizontal:0,hoverBoxShadowVertical:0,iconType:"none",paddingTopBottom:12,paddingLeftRight:24}]}]],c=function(e){var t=e.className;return wp.element.createElement("div",{className:t},wp.element.createElement(o,{template:a}))},i=wp.blockEditor.InnerBlocks,s=function(e){var t=e.className;return wp.element.createElement("div",{className:t},wp.element.createElement(i.Content,null))},p=wp.i18n.__;(0,wp.blocks.registerBlockType)("themeisle-blocks/service",{title:p("Service"),description:p("Use this Service block to showcase services your website offers."),icon:l.t,category:"themeisle-blocks",keywords:["services","icon","features"],edit:c,save:s})},function(e,t,n){"use strict";n.r(t);var l=n(3),r=wp.i18n.__,o=wp.blockEditor.InnerBlocks,a=[["core/image",{align:"center"}],["themeisle-blocks/advanced-heading",{content:r("John Doe"),align:"center",fontSize:24,tag:"h3",marginTop:25,marginBottom:10,marginTopTablet:25,marginTopMobile:25}],["themeisle-blocks/advanced-heading",{content:r("Jedi Master"),align:"center",fontSize:14,tag:"h4",marginTop:10,marginBottom:10}],["themeisle-blocks/advanced-heading",{content:r('"What is the point of being alive if you don’t at least try to do something remarkable?"'),align:"center",color:"#999999",tag:"p",fontSize:14,marginTop:10,marginBottom:20}]],c=function(e){var t=e.className;return wp.element.createElement("div",{className:t},wp.element.createElement(o,{template:a}))},i=wp.blockEditor.InnerBlocks,s=function(e){var t=e.className;return wp.element.createElement("div",{className:t},wp.element.createElement(i.Content,null))},p=wp.i18n.__;(0,wp.blocks.registerBlockType)("themeisle-blocks/testimonials",{title:p("Testimonials"),description:p("Display kudos from customers and clients and display them on your website."),icon:l.v,category:"themeisle-blocks",keywords:["testimonials","quotes","business"],edit:c,save:s})},,,function(e,t,n){n(52),n(116),n(130),n(44),n(131),n(45),n(118),n(42),n(41),n(132),n(120),n(121),n(115),n(126),n(128),n(119),n(123),n(127),n(35),n(122),n(124),n(129),n(43),n(40),n(23),n(33),n(34),n(21),n(133),n(125),n(117),n(103),n(46),n(47),e.exports=n(48)},function(e,t,n){"use strict";n.r(t);n(53);n.p=window.themeisleGutenberg.packagePath},,,,,,,,function(e,t){function n(e,t,n,l,r,o,a){try{var c=e[o](a),i=c.value}catch(e){return void n(e)}c.done?t(i):Promise.resolve(i).then(l,r)}function l(e){return function(){var t=this,l=arguments;return new Promise((function(r,o){var a=e.apply(t,l);function c(e){n(a,r,o,c,i,"next",e)}function i(e){n(a,r,o,c,i,"throw",e)}c(void 0)}))}}var r=lodash.debounce,o=wp.apiFetch,a=wp.data,c=a.select,i=a.subscribe,s=r(l(regeneratorRuntime.mark((function e(){var t,n,l;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return t=c("core/editor"),n=t.getCurrentPostId,l=n(),e.next=4,o({path:"themeisle-gutenberg-blocks/v1/save_post_meta/".concat(l),method:"POST"});case 4:case"end":return e.stop()}}),e)}))),1e3),p={};i((function(){var e,t=c("core/editor"),n=t.isCurrentPostPublished,l=t.isSavingPost,r=t.isPublishingPost,a=t.isAutosavingPost,i=t.__experimentalIsSavingReusableBlock,m=c("core/block-editor").getSettings().__experimentalReusableBlocks,u=c("core").isSavingEntityRecord;e=i?function(e){return i(e)}:function(e){return u("postType","wp_block",e)};var d=a(),b=r(),g=l(),h=m||[],w=n();h.map((function(t){if(t){var n=e(t.id);n&&!t.isTemporary&&(p[t.id]={id:t.id,isSaving:!0}),n||t.isTemporary||!p[t.id]||t.id===p[t.id].id&&!n&&p[t.id].isSaving&&(p[t.id].isSaving=!1,o({path:"themeisle-gutenberg-blocks/v1/save_block_meta/".concat(t.id),method:"POST"}))}})),(b||w&&g)&&!d&&s()}))},function(e,t){var n=wp.data.registerStore,l={viewType:"Desktop"};n("themeisle-gutenberg/data",{reducer:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:l,t=arguments.length>1?arguments[1]:void 0;return"UPDATE_VIEW"===t.type?{viewType:t.viewType}:e},selectors:{getView:function(e){return e.viewType}},actions:{updateView:function(e){return{type:"UPDATE_VIEW",viewType:e}}}})},function(e,t){function n(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);t&&(l=l.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,l)}return n}function l(e){for(var t=1;t<arguments.length;t++){var l=null!=arguments[t]?arguments[t]:{};t%2?n(Object(l),!0).forEach((function(t){r(e,t,l[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(l)):n(Object(l)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(l,t))}))}return e}function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function o(e,t,n,l,r,o,a){try{var c=e[o](a),i=c.value}catch(e){return void n(e)}c.done?t(i):Promise.resolve(i).then(l,r)}function a(e){return function(){var t=this,n=arguments;return new Promise((function(l,r){var a=e.apply(t,n);function c(e){o(a,l,r,c,i,"next",e)}function i(e){o(a,l,r,c,i,"throw",e)}c(void 0)}))}}function c(e){return function(e){if(Array.isArray(e))return i(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return i(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return i(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,l=new Array(t);n<t;n++)l[n]=e[n];return l}var s=lodash.debounce,p=wp.data,m=p.select,u=p.subscribe;window.themeisleGutenberg.dataLogging={};var d=!1,b=!1,g=[],h=[],w=function(e){return-1<g.indexOf(e.name)},f=function e(t){if(t.innerBlocks){var n,l=t.innerBlocks.filter(w);(n=h).push.apply(n,c(l)),l.forEach(e)}};wp.api.loadPromise.then((function(){(new wp.api.models.Settings).fetch().then((function(e){e.otter_blocks_logger_data&&Boolean(window.themeisleGutenberg.canTrack)&&(window.themeisleGutenberg.dataLogging=e.otter_blocks_logger_data)}))}));var y=s(a(regeneratorRuntime.mark((function e(){var t,n,r,o,a,i,s,p,u;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return t=m("core/editor"),n=t.getEditorBlocks,r=(r=n()).filter(w),o=function e(t){if(t.innerBlocks){var n,l=t.innerBlocks.filter(w);(n=r).push.apply(n,c(l)),l.forEach(e)}},a=l({},window.themeisleGutenberg.dataLogging),0<r.length&&a.blocks&&(r.forEach(o),r=r.map((function(e){return e.name})),i=[],r.forEach((function(e){var t=i.find((function(t){return t.name===e}));t?t.instances=t.instances+1:i.push({name:e,instances:1})})),s=[].concat(i),p=c(h),s.map((function(e){var t=p.find((function(t){return t.name===e.name}));return t&&e.instances>=t.instances?(e.instances=e.instances-t.instances,e):e})),0===a.blocks.length?a.blocks=c(s):(a.blocks.map((function(e){var t=s.find((function(t){return t.name===e.name})),n=s.findIndex((function(t){return t.name===e.name}));return t?(e.instances=e.instances+t.instances,s.splice(n,1),e):e})),0<s.length&&(a.blocks=[].concat(c(a.blocks),c(s))))),u=new wp.api.models.Settings({otter_blocks_logger_data:a}),e.next=9,u.save();case 9:case"end":return e.stop()}}),e)}))),1e3);u((function(){var e=m("core/blocks").getBlockTypes,t=m("core/editor"),n=t.__unstableIsEditorReady,l=t.getEditorBlocks,r=t.isAutosavingPost,o=t.isCurrentPostPublished,a=t.isEditedPostNew,c=t.isPublishingPost,i=t.isSavingPost,s=r(),p=c(),u=i(),v=o(),k=e();if(g=k.filter((function(e){return"themeisle-blocks"===e.category})).map((function(e){return e.name})),(p||v&&u)&&!s&&Boolean(window.themeisleGutenberg.canTrack)&&(b=!0,y()),!d&&n()&&!a()&&!b&&Boolean(window.themeisleGutenberg.canTrack)){d=n(),(h=(h=l()).filter(w)).forEach(f),h=h.map((function(e){return e.name}));var E=[];h.forEach((function(e){var t=E.find((function(t){return t.name===e}));t?t.instances=t.instances+1:E.push({name:e,instances:1})})),h=E}}))},,,,,,,,,,,,,,,,,,,,,,,function(e,t){function n(e){return function(e){if(Array.isArray(e))return l(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return l(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return l(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function l(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,l=new Array(t);n<t;n++)l[n]=e[n];return l}var r,o,a,c;(0,wp.data.registerGenericStore)("otter-store",(r=function(){},o={posts:{slugs:[],usedSlugs:[]}},a={getPostsSlugs:function(){return o.posts.slugs},getPostsUsedSlugs:function(){return o.posts.usedSlugs}},c={setPostsSlugs:function(e){o.posts.slugs=e,r()},setPostsUsedSlugs:function(e){var t;(t=o.posts.usedSlugs).push.apply(t,n(e)),r()},setOnlyOneSlug:function(e){o.posts.usedSlugs=[e],r()},removePostsUsedSlugs:function(e){o.posts.usedSlugs=o.posts.usedSlugs.filter((function(t){return!e.includes(t)})),r()}},{getSelectors:function(){return a},getActions:function(){return c},subscribe:function(e){r=e}}))},,,,,,,,,,,,,,,,,,function(e,t,n){"use strict";n.r(t);n(46),n(47),n(48)},,,,,,,,,,,,function(e,t,n){"use strict";n.r(t);n(78);var l=n(3),r={id:{type:"string"},style:{type:"string",default:"standard"},location:{type:"string",default:"La Sagrada Familia, Barcelona, Spain"},latitude:{type:"string"},longitude:{type:"string"},type:{type:"string",default:"roadmap"},zoom:{type:"number",default:15},height:{type:"number",default:400},draggable:{type:"boolean",default:!0},mapTypeControl:{type:"boolean",default:!0},zoomControl:{type:"boolean",default:!0},fullscreenControl:{type:"boolean",default:!0},streetViewControl:{type:"boolean",default:!0},markers:{type:"array",default:[]}},o=n(0),a=n.n(o),c=n(153),i=wp.i18n.__,s=wp.components,p=s.Button,m=s.ExternalLink,u=s.Placeholder,d=s.Spinner,b=s.TextControl,g=function(e){var t=e.className,n=e.api,l=e.isAPILoaded,r=e.isAPISaved,o=e.isSaving,a=e.changeAPI,c=e.saveAPIKey;return l?r?void 0:wp.element.createElement(u,{icon:"admin-site",label:i("Google Maps"),instructions:i("A Google Maps API key is required, please enter one below."),className:t},wp.element.createElement("div",{className:"components-placeholder__actions"},wp.element.createElement(b,{type:"text",placeholder:i("Google Maps API Key"),value:n,className:"components-placeholder__input",onChange:a}),wp.element.createElement(p,{isLarge:!0,isPrimary:!0,type:"submit",onClick:c,isBusy:o,disabled:""===n},i("Save"))),wp.element.createElement("div",{className:"components-placeholder__learn-more"},i("You need to activate Maps and Places API.")," ",wp.element.createElement(m,{href:"https://developers.google.com/maps/documentation/javascript/get-api-key"},i("Need an API key? Get one here.")))):wp.element.createElement(u,null,wp.element.createElement(d,null),i("Loading…"))},h=n(18);function w(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);t&&(l=l.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,l)}return n}function f(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?w(Object(n),!0).forEach((function(t){y(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):w(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function y(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var v=wp.i18n.__,k=wp.components.BaseControl,E=wp.compose.useInstanceId,T=wp.element,C=T.useEffect,x=T.useRef,M=function e(t){var n=t.value,l=t.onChange,r=E(e);C((function(){wp.oldEditor.initialize(a.current.id,{tinymce:f({},{classic_block_editor:!0,plugins:"lists,media,paste,tabfocus,wordpress,wpautoresize,wpeditimage,wpgallery,wplink,wpdialogs,wptextpattern,wpview",toolbar1:"formatselect,bold,italic,bullist,numlist,alignleft,aligncenter,alignright,link,unlink,spellchecker,wp_add_media"})});var e=window.tinymce.get(a.current.id);return e.on("change",(function(){return l(e.getContent())})),function(){return wp.oldEditor.remove(a.current.id)}}),[]);var o="inspector-textarea-control-".concat(r),a=x(null);return wp.element.createElement(k,{id:o,label:v("Description")},wp.element.createElement("textarea",{id:o,className:"components-textarea-control__input",rows:4,value:n,onChange:function(e){return l(e.target.value)},ref:a}))},S=wp.i18n.__,z=wp.components,O=z.BaseControl,B=z.Button,L=z.ExternalLink,H=z.SelectControl,P=z.TextControl,_=wp.element.useRef,A=function(e){var t=e.marker,n=e.isOpen,l=e.isPlaceAPIAvailable,r=e.openMarker,o=e.removeMarker,c=e.changeMarkerProp,i=_(null);return wp.element.createElement("div",{className:"wp-block-themeisle-blocks-google-map-marker"},wp.element.createElement("div",{className:"wp-block-themeisle-blocks-google-map-marker-title-area"},wp.element.createElement(B,{className:"wp-block-themeisle-blocks-google-map-marker-title",onClick:function(){return r(t.id)}},t.title||S("Custom Marker")),wp.element.createElement(B,{icon:"no-alt",label:S("Remove Marker"),showTooltip:!0,className:"wp-block-themeisle-blocks-google-map-marker-remove",onClick:function(){return o(t.id)}})),wp.element.createElement("div",{className:a()("wp-block-themeisle-blocks-google-map-marker-control-area",{opened:t.id===n})},wp.element.createElement(O,{label:S("Location"),id:"themeisle-location-search-".concat(t.id)},wp.element.createElement("input",{type:"text",id:"themeisle-location-search-".concat(t.id),placeholder:S("Enter a location…"),value:t.location,className:"wp-block-themeisle-blocks-google-map-search",ref:i,onFocus:function(){var e=document.getElementsByClassName("pac-container");Object.keys(e).forEach((function(t){return e[t].remove()}));var n=new google.maps.places.SearchBox(i.current);n.addListener("places_changed",(function(){var e=n.getPlaces();e&&0<e.length&&e.forEach((function(e){var n=e.formatted_address||e.name,l=e.geometry.location.lat(),r=e.geometry.location.lng();c(t.id,"location",n),c(t.id,"latitude",l),c(t.id,"longitude",r)}))}))},onChange:function(e){return c(t.id,"location",e.target.value)},disabled:!l}),!l&&wp.element.createElement("p",null,S("To enable locations earch, please ensure Places API is activated in the Google Developers Console.")+" ",wp.element.createElement(L,{href:"https://developers.google.com/places/web-service/intro"},S("More info.")))),wp.element.createElement(P,{label:S("Latitude"),type:"text",value:t.latitude,onChange:function(e){return c(t.id,"latitude",e)}}),wp.element.createElement(P,{label:S("Longitude"),type:"text",value:t.longitude,onChange:function(e){return c(t.id,"longitude",e)}}),wp.element.createElement(H,{label:S("Map Icon"),value:t.icon||"https://maps.google.com/mapfiles/ms/icons/red-dot.png",options:[{label:S("Red"),value:"https://maps.google.com/mapfiles/ms/icons/red-dot.png"},{label:S("Blue"),value:"https://maps.google.com/mapfiles/ms/icons/blue-dot.png"},{label:S("Yellow"),value:"https://maps.google.com/mapfiles/ms/icons/yellow-dot.png"},{label:S("Green"),value:"https://maps.google.com/mapfiles/ms/icons/green-dot.png"},{label:S("Orange"),value:"https://maps.google.com/mapfiles/ms/icons/orange-dot.png"}],onChange:function(e){return c(t.id,"icon",e)}}),wp.element.createElement(P,{label:S("Title"),type:"text",value:t.title,onChange:function(e){return c(t.id,"title",e)}}),wp.element.createElement(M,{label:S("Description"),type:"text",value:t.description,onChange:function(e){return c(t.id,"description",e)}})))};function V(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=e&&("undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"]);if(null==n)return;var l,r,o=[],a=!0,c=!1;try{for(n=n.call(e);!(a=(l=n.next()).done)&&(o.push(l.value),!t||o.length!==t);a=!0);}catch(e){c=!0,r=e}finally{try{a||null==n.return||n.return()}finally{if(c)throw r}}return o}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return j(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return j(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function j(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,l=new Array(t);n<t;n++)l[n]=e[n];return l}var N=wp.i18n.__,R=wp.components.Button,I=wp.element,D=I.Fragment,G=I.useEffect,F=I.useState,W=function(e){var t=e.initialOpen,n=e.markers,l=e.isPlaceAPIAvailable,r=e.addMarker,o=e.removeMarker,a=e.changeMarkerProp;G((function(){!1!==t&&s(t)}),[t]);var c=V(F(null),2),i=c[0],s=c[1],p=function(e){i===e&&(e=null),s(e)};return wp.element.createElement(D,null,wp.element.createElement("div",{className:"wp-block-themeisle-blocks-google-map-marker-group"},n.map((function(e){return wp.element.createElement(A,{key:e.id,marker:e,isOpen:i,isPlaceAPIAvailable:l,openMarker:p,removeMarker:o,changeMarkerProp:a})}))),wp.element.createElement(R,{isSecondary:!0,isLarge:!0,className:"wp-block-themeisle-blocks-google-map-marker-add",onClick:r},N("Add Marker")))},U=wp.i18n.__,q=wp.components,Z=q.BaseControl,$=q.Button,Q=q.ExternalLink,K=q.PanelBody,J=q.RangeControl,Y=q.SelectControl,X=q.TextControl,ee=q.ToggleControl,te=wp.blockEditor.InspectorControls,ne=wp.element.useRef,le=function(e){var t=e.attributes,n=e.setAttributes,l=e.map,r=e.changeStyle,o=e.isPlaceAPIAvailable,a=e.isMarkerOpen,c=e.setMarkerOpen,i=e.removeMarker,s=e.changeMarkerProp,p=e.addMarkerManual,m=e.api,u=e.isSaving,d=e.changeAPI,b=e.saveAPIKey,g=ne(null);return wp.element.createElement(te,null,wp.element.createElement(K,{title:U("Styles"),initialOpen:!1},wp.element.createElement(h.b,{value:t.style,options:[{label:U("Standard"),value:"standard",image:window.themeisleGutenberg.assetsPath+"/icons/map-standard.png"},{label:U("Silver"),value:"silver",image:window.themeisleGutenberg.assetsPath+"/icons/map-silver.png"},{label:U("Retro"),value:"retro",image:window.themeisleGutenberg.assetsPath+"/icons/map-retro.png"},{label:U("Dark"),value:"dark",image:window.themeisleGutenberg.assetsPath+"/icons/map-dark.png"},{label:U("Night"),value:"night",image:window.themeisleGutenberg.assetsPath+"/icons/map-night.png"},{label:U("Aubergine"),value:"aubergine",image:window.themeisleGutenberg.assetsPath+"/icons/map-aubergine.png"}],onChange:r})),wp.element.createElement(K,{title:U("Location")},wp.element.createElement(Z,{label:U("Location"),id:"wp-block-themeisle-blocks-google-map-search"},wp.element.createElement("input",{type:"text",id:"wp-block-themeisle-blocks-google-map-search",placeholder:U("Enter a location…"),value:t.location,className:"wp-block-themeisle-blocks-google-map-search",ref:g,onFocus:function(){var e=document.getElementsByClassName("pac-container");Object.keys(e).forEach((function(t){return e[t].remove()}));var t=new google.maps.places.SearchBox(g.current);t.addListener("places_changed",(function(){var e=t.getPlaces();e&&0<e.length&&e.forEach((function(e){var t=e.geometry.location.lat(),r=e.geometry.location.lng(),o=new google.maps.LatLng(t,r);l.setCenter(o),n({location:e.formatted_address||e.name,latitude:t.toString(),longitude:r.toString()})}))}))},onChange:function(e){n({location:e.target.value})},disabled:!o}),!o&&wp.element.createElement("p",null,U("To enable locations earch, please ensure Places API is activated in the Google Developers Console.")+" ",wp.element.createElement(Q,{href:"https://developers.google.com/places/web-service/intro"},U("More info.")))),wp.element.createElement(X,{label:U("Latitude"),type:"text",placeholder:U("Enter latitude…"),value:t.latitude,onChange:function(e){n({latitude:e.toString()});var r=Number(e),o=t.longitude,a=new google.maps.LatLng(r,o);l.setCenter(a)}}),wp.element.createElement(X,{label:U("Longitude"),type:"text",placeholder:U("Enter longitude"),value:t.longitude,onChange:function(e){n({longitude:e.toString()});var r=t.latitude,o=Number(e),a=new google.maps.LatLng(r,o);l.setCenter(a)}})),wp.element.createElement(K,{title:U("Positioning & Zooming"),initialOpen:!1},wp.element.createElement(Y,{label:U("Map Type"),value:t.type,options:[{label:U("Road Map"),value:"roadmap"},{label:U("Satellite View"),value:"satellite"},{label:U("Hybrid"),value:"hybrid"},{label:U("Terrain"),value:"terrain"}],onChange:function(e){n({type:e}),l.setMapTypeId(google.maps.MapTypeId[e.toUpperCase()])}}),wp.element.createElement(J,{label:U("Map Zoom Level"),value:t.zoom,onChange:function(e){n({zoom:e}),l.setZoom(e)},min:0,max:20}),wp.element.createElement(J,{label:U("Map Height"),value:t.height,onChange:function(e){n({height:e})},min:100,max:1400})),wp.element.createElement(K,{title:U("Controls"),initialOpen:!1},wp.element.createElement(Z,null,U("The following changes will not affect block preview during the editing process. You can click outside the block to see the changes take effect.")),wp.element.createElement(ee,{label:"Draggable Map",checked:t.draggable,onChange:function(){n({draggable:!t.draggable})}}),wp.element.createElement(ee,{label:"Map Type Control",checked:t.mapTypeControl,onChange:function(){n({mapTypeControl:!t.mapTypeControl})}}),wp.element.createElement(ee,{label:"Zoom Control",checked:t.zoomControl,onChange:function(){n({zoomControl:!t.zoomControl})}}),wp.element.createElement(ee,{label:"Full Screen Control",checked:t.fullscreenControl,onChange:function(){n({fullscreenControl:!t.fullscreenControl})}}),wp.element.createElement(ee,{label:"Streen View Control",checked:t.streetViewControl,onChange:function(){n({streetViewControl:!t.streetViewControl})}})),wp.element.createElement(K,{title:U("Markers"),initialOpen:!1,opened:!1!==a||void 0,onToggle:function(){!1!==a&&c(!0)}},wp.element.createElement(W,{markers:t.markers,removeMarker:i,changeMarkerProp:s,addMarker:p,isPlaceAPIAvailable:o,initialOpen:a})),wp.element.createElement(K,{title:U("Global Settings"),initialOpen:!1},wp.element.createElement(X,{label:U("Google Maps API Key"),type:"text",placeholder:U("Google Maps API Key"),value:m,className:"components-placeholder__input",onChange:d,help:U("Changing the API key effects all Google Map Embed blocks. You will have to refresh the page after changing your API keys.")}),wp.element.createElement($,{isLarge:!0,isSecondary:!0,type:"submit",onClick:b,isBusy:u},U("Save API Key"))))};function re(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=e&&("undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"]);if(null==n)return;var l,r,o=[],a=!0,c=!1;try{for(n=n.call(e);!(a=(l=n.next()).done)&&(o.push(l.value),!t||o.length!==t);a=!0);}catch(e){c=!0,r=e}finally{try{a||null==n.return||n.return()}finally{if(c)throw r}}return o}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return oe(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return oe(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function oe(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,l=new Array(t);n<t;n++)l[n]=e[n];return l}var ae=wp.i18n.__,ce=wp.components,ie=ce.BaseControl,se=ce.Button,pe=ce.ButtonGroup,me=ce.Modal,ue=ce.SelectControl,de=ce.TextControl,be=wp.element,ge=be.useEffect,he=be.useRef,we=be.useState,fe=be.Fragment,ye=function(e){var t=e.marker,n=e.isAdvanced,l=e.isPlaceAPIAvailable,r=e.addMarker,o=e.close;ge((function(){s(t.id),u(t.location),g(t.title),f(t.icon),k(t.description),C(t.latitude),z(t.longitude)}),[t]);var a=he(null),c=re(we(t.id),2),i=c[0],s=c[1],p=re(we(t.location),2),m=p[0],u=p[1],d=re(we(t.title),2),b=d[0],g=d[1],h=re(we(t.icon),2),w=h[0],f=h[1],y=re(we(t.description),2),v=y[0],k=y[1],E=re(we(t.latitude),2),T=E[0],C=E[1],x=re(we(t.longitude),2),S=x[0],z=x[1];return wp.element.createElement(me,{title:ae("Add Marker"),onRequestClose:o,shouldCloseOnClickOutside:!1},n&&wp.element.createElement(fe,null,wp.element.createElement(ie,{label:ae("Location"),id:"themeisle-location-search-".concat(t.id)},wp.element.createElement("input",{type:"text",id:"themeisle-location-search-".concat(i),placeholder:ae("Enter a location…"),value:m,className:"wp-block-themeisle-blocks-google-map-search",ref:a,onFocus:function(){var e=document.getElementsByClassName("pac-container");Object.keys(e).forEach((function(t){return e[t].remove()}));var t=new google.maps.places.SearchBox(a.current);t.addListener("places_changed",(function(){var e=t.getPlaces();e&&0<e.length&&e.forEach((function(e){var t=e.formatted_address||e.name,n=e.geometry.location.lat(),l=e.geometry.location.lng();u(t),C(n),z(l)}))}))},onChange:function(e){return u(e.target.value)},disabled:!l})),wp.element.createElement(de,{label:ae("Latitude"),type:"text",value:T,onChange:C}),wp.element.createElement(de,{label:ae("Longitude"),type:"text",value:S,onChange:z})),wp.element.createElement(de,{label:ae("Title"),type:"text",value:b,onChange:g}),wp.element.createElement(M,{label:ae("Description"),type:"text",value:v,onChange:k}),wp.element.createElement(ue,{label:ae("Map Icon"),value:w||"https://maps.google.com/mapfiles/ms/icons/red-dot.png",options:[{label:ae("Red"),value:"https://maps.google.com/mapfiles/ms/icons/red-dot.png"},{label:ae("Blue"),value:"https://maps.google.com/mapfiles/ms/icons/blue-dot.png"},{label:ae("Yellow"),value:"https://maps.google.com/mapfiles/ms/icons/yellow-dot.png"},{label:ae("Green"),value:"https://maps.google.com/mapfiles/ms/icons/green-dot.png"},{label:ae("Orange"),value:"https://maps.google.com/mapfiles/ms/icons/orange-dot.png"}],onChange:f}),wp.element.createElement(pe,null,wp.element.createElement(se,{isLarge:!0,isPrimary:!0,onClick:function(){return r(m,b,w,v,T,S)}},ae("Add")),wp.element.createElement(se,{isLarge:!0,isSecondary:!0,onClick:o},ae("Cancel"))))},ve=wp.i18n.__,ke=wp.components.Button,Ee=wp.element,Te=Ee.Fragment,Ce=Ee.useEffect,xe=function(e){var t=e.attributes,n=e.className,l=e.initMap,r=e.displayMap,o=e.isMapLoaded,c=e.selectMarker,i=e.isSelectingMarker;return Ce((function(){r&&l()}),[r]),wp.element.createElement(Te,null,wp.element.createElement("div",{id:t.id,className:a()(n,{"is-selecting-marker":i}),style:{height:t.height+"px"}}),o&&wp.element.createElement(ke,{className:"wp-block-themeisle-blocks-google-map-marker-button",title:ve("Add Button"),onClick:c},wp.element.createElement("span",{className:"dashicons dashicons-sticky"})))},Me={standard:[],silver:[{elementType:"geometry",stylers:[{color:"#f5f5f5"}]},{elementType:"labels.icon",stylers:[{visibility:"off"}]},{elementType:"labels.text.fill",stylers:[{color:"#616161"}]},{elementType:"labels.text.stroke",stylers:[{color:"#f5f5f5"}]},{featureType:"administrative.land_parcel",elementType:"labels.text.fill",stylers:[{color:"#bdbdbd"}]},{featureType:"poi",elementType:"geometry",stylers:[{color:"#eeeeee"}]},{featureType:"poi",elementType:"labels.text.fill",stylers:[{color:"#757575"}]},{featureType:"poi.park",elementType:"geometry",stylers:[{color:"#e5e5e5"}]},{featureType:"poi.park",elementType:"labels.text.fill",stylers:[{color:"#9e9e9e"}]},{featureType:"road",elementType:"geometry",stylers:[{color:"#ffffff"}]},{featureType:"road.arterial",elementType:"labels.text.fill",stylers:[{color:"#757575"}]},{featureType:"road.highway",elementType:"geometry",stylers:[{color:"#dadada"}]},{featureType:"road.highway",elementType:"labels.text.fill",stylers:[{color:"#616161"}]},{featureType:"road.local",elementType:"labels.text.fill",stylers:[{color:"#9e9e9e"}]},{featureType:"transit.line",elementType:"geometry",stylers:[{color:"#e5e5e5"}]},{featureType:"transit.station",elementType:"geometry",stylers:[{color:"#eeeeee"}]},{featureType:"water",elementType:"geometry",stylers:[{color:"#c9c9c9"}]},{featureType:"water",elementType:"labels.text.fill",stylers:[{color:"#9e9e9e"}]}],retro:[{elementType:"geometry",stylers:[{color:"#ebe3cd"}]},{elementType:"labels.text.fill",stylers:[{color:"#523735"}]},{elementType:"labels.text.stroke",stylers:[{color:"#f5f1e6"}]},{featureType:"administrative",elementType:"geometry.stroke",stylers:[{color:"#c9b2a6"}]},{featureType:"administrative.land_parcel",elementType:"geometry.stroke",stylers:[{color:"#dcd2be"}]},{featureType:"administrative.land_parcel",elementType:"labels.text.fill",stylers:[{color:"#ae9e90"}]},{featureType:"landscape.natural",elementType:"geometry",stylers:[{color:"#dfd2ae"}]},{featureType:"poi",elementType:"geometry",stylers:[{color:"#dfd2ae"}]},{featureType:"poi",elementType:"labels.text.fill",stylers:[{color:"#93817c"}]},{featureType:"poi.park",elementType:"geometry.fill",stylers:[{color:"#a5b076"}]},{featureType:"poi.park",elementType:"labels.text.fill",stylers:[{color:"#447530"}]},{featureType:"road",elementType:"geometry",stylers:[{color:"#f5f1e6"}]},{featureType:"road.arterial",elementType:"geometry",stylers:[{color:"#fdfcf8"}]},{featureType:"road.highway",elementType:"geometry",stylers:[{color:"#f8c967"}]},{featureType:"road.highway",elementType:"geometry.stroke",stylers:[{color:"#e9bc62"}]},{featureType:"road.highway.controlled_access",elementType:"geometry",stylers:[{color:"#e98d58"}]},{featureType:"road.highway.controlled_access",elementType:"geometry.stroke",stylers:[{color:"#db8555"}]},{featureType:"road.local",elementType:"labels.text.fill",stylers:[{color:"#806b63"}]},{featureType:"transit.line",elementType:"geometry",stylers:[{color:"#dfd2ae"}]},{featureType:"transit.line",elementType:"labels.text.fill",stylers:[{color:"#8f7d77"}]},{featureType:"transit.line",elementType:"labels.text.stroke",stylers:[{color:"#ebe3cd"}]},{featureType:"transit.station",elementType:"geometry",stylers:[{color:"#dfd2ae"}]},{featureType:"water",elementType:"geometry.fill",stylers:[{color:"#b9d3c2"}]},{featureType:"water",elementType:"labels.text.fill",stylers:[{color:"#92998d"}]}],dark:[{elementType:"geometry",stylers:[{color:"#212121"}]},{elementType:"labels.icon",stylers:[{visibility:"off"}]},{elementType:"labels.text.fill",stylers:[{color:"#757575"}]},{elementType:"labels.text.stroke",stylers:[{color:"#212121"}]},{featureType:"administrative",elementType:"geometry",stylers:[{color:"#757575"}]},{featureType:"administrative.country",elementType:"labels.text.fill",stylers:[{color:"#9e9e9e"}]},{featureType:"administrative.land_parcel",stylers:[{visibility:"off"}]},{featureType:"administrative.locality",elementType:"labels.text.fill",stylers:[{color:"#bdbdbd"}]},{featureType:"poi",elementType:"labels.text.fill",stylers:[{color:"#757575"}]},{featureType:"poi.park",elementType:"geometry",stylers:[{color:"#181818"}]},{featureType:"poi.park",elementType:"labels.text.fill",stylers:[{color:"#616161"}]},{featureType:"poi.park",elementType:"labels.text.stroke",stylers:[{color:"#1b1b1b"}]},{featureType:"road",elementType:"geometry.fill",stylers:[{color:"#2c2c2c"}]},{featureType:"road",elementType:"labels.text.fill",stylers:[{color:"#8a8a8a"}]},{featureType:"road.arterial",elementType:"geometry",stylers:[{color:"#373737"}]},{featureType:"road.highway",elementType:"geometry",stylers:[{color:"#3c3c3c"}]},{featureType:"road.highway.controlled_access",elementType:"geometry",stylers:[{color:"#4e4e4e"}]},{featureType:"road.local",elementType:"labels.text.fill",stylers:[{color:"#616161"}]},{featureType:"transit",elementType:"labels.text.fill",stylers:[{color:"#757575"}]},{featureType:"water",elementType:"geometry",stylers:[{color:"#000000"}]},{featureType:"water",elementType:"labels.text.fill",stylers:[{color:"#3d3d3d"}]}],night:[{elementType:"geometry",stylers:[{color:"#242f3e"}]},{elementType:"labels.text.fill",stylers:[{color:"#746855"}]},{elementType:"labels.text.stroke",stylers:[{color:"#242f3e"}]},{featureType:"administrative.locality",elementType:"labels.text.fill",stylers:[{color:"#d59563"}]},{featureType:"poi",elementType:"labels.text.fill",stylers:[{color:"#d59563"}]},{featureType:"poi.park",elementType:"geometry",stylers:[{color:"#263c3f"}]},{featureType:"poi.park",elementType:"labels.text.fill",stylers:[{color:"#6b9a76"}]},{featureType:"road",elementType:"geometry",stylers:[{color:"#38414e"}]},{featureType:"road",elementType:"geometry.stroke",stylers:[{color:"#212a37"}]},{featureType:"road",elementType:"labels.text.fill",stylers:[{color:"#9ca5b3"}]},{featureType:"road.highway",elementType:"geometry",stylers:[{color:"#746855"}]},{featureType:"road.highway",elementType:"geometry.stroke",stylers:[{color:"#1f2835"}]},{featureType:"road.highway",elementType:"labels.text.fill",stylers:[{color:"#f3d19c"}]},{featureType:"transit",elementType:"geometry",stylers:[{color:"#2f3948"}]},{featureType:"transit.station",elementType:"labels.text.fill",stylers:[{color:"#d59563"}]},{featureType:"water",elementType:"geometry",stylers:[{color:"#17263c"}]},{featureType:"water",elementType:"labels.text.fill",stylers:[{color:"#515c6d"}]},{featureType:"water",elementType:"labels.text.stroke",stylers:[{color:"#17263c"}]}],aubergine:[{elementType:"geometry",stylers:[{color:"#1d2c4d"}]},{elementType:"labels.text.fill",stylers:[{color:"#8ec3b9"}]},{elementType:"labels.text.stroke",stylers:[{color:"#1a3646"}]},{featureType:"administrative.country",elementType:"geometry.stroke",stylers:[{color:"#4b6878"}]},{featureType:"administrative.land_parcel",elementType:"labels.text.fill",stylers:[{color:"#64779e"}]},{featureType:"administrative.province",elementType:"geometry.stroke",stylers:[{color:"#4b6878"}]},{featureType:"landscape.man_made",elementType:"geometry.stroke",stylers:[{color:"#334e87"}]},{featureType:"landscape.natural",elementType:"geometry",stylers:[{color:"#023e58"}]},{featureType:"poi",elementType:"geometry",stylers:[{color:"#283d6a"}]},{featureType:"poi",elementType:"labels.text.fill",stylers:[{color:"#6f9ba5"}]},{featureType:"poi",elementType:"labels.text.stroke",stylers:[{color:"#1d2c4d"}]},{featureType:"poi.park",elementType:"geometry.fill",stylers:[{color:"#023e58"}]},{featureType:"poi.park",elementType:"labels.text.fill",stylers:[{color:"#3C7680"}]},{featureType:"road",elementType:"geometry",stylers:[{color:"#304a7d"}]},{featureType:"road",elementType:"labels.text.fill",stylers:[{color:"#98a5be"}]},{featureType:"road",elementType:"labels.text.stroke",stylers:[{color:"#1d2c4d"}]},{featureType:"road.highway",elementType:"geometry",stylers:[{color:"#2c6675"}]},{featureType:"road.highway",elementType:"geometry.stroke",stylers:[{color:"#255763"}]},{featureType:"road.highway",elementType:"labels.text.fill",stylers:[{color:"#b0d5ce"}]},{featureType:"road.highway",elementType:"labels.text.stroke",stylers:[{color:"#023e58"}]},{featureType:"transit",elementType:"labels.text.fill",stylers:[{color:"#98a5be"}]},{featureType:"transit",elementType:"labels.text.stroke",stylers:[{color:"#1d2c4d"}]},{featureType:"transit.line",elementType:"geometry.fill",stylers:[{color:"#283d6a"}]},{featureType:"transit.station",elementType:"geometry",stylers:[{color:"#3a4762"}]},{featureType:"water",elementType:"geometry",stylers:[{color:"#0e1626"}]},{featureType:"water",elementType:"labels.text.fill",stylers:[{color:"#4e6d70"}]}]};function Se(e,t,n,l,r,o,a){try{var c=e[o](a),i=c.value}catch(e){return void n(e)}c.done?t(i):Promise.resolve(i).then(l,r)}function ze(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=e&&("undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"]);if(null==n)return;var l,r,o=[],a=!0,c=!1;try{for(n=n.call(e);!(a=(l=n.next()).done)&&(o.push(l.value),!t||o.length!==t);a=!0);}catch(e){c=!0,r=e}finally{try{a||null==n.return||n.return()}finally{if(c)throw r}}return o}(e,t)||Be(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Oe(e){return function(e){if(Array.isArray(e))return Le(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||Be(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Be(e,t){if(e){if("string"==typeof e)return Le(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Le(e,t):void 0}}function Le(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,l=new Array(t);n<t;n++)l[n]=e[n];return l}var He=wp.i18n.__,Pe=wp.components.ResizableBox,_e=wp.element,Ae=_e.Fragment,Ve=_e.useEffect,je=_e.useRef,Ne=_e.useState,Re=[],Ie=function(e){var t=e.attributes,n=e.setAttributes,l=e.className,r=e.clientId,o=e.isSelected,i=e.toggleSelection;Ve((function(){X(),window.isMapLoaded=window.isMapLoaded||!1,window["removeMarker_".concat(r.substr(0,8))]=oe,m.current=document.createElement("script"),m.current.type="text/javascript",m.current.async=!0,m.current.defer=!0,m.current.id="themeisle-google-map-api-loading"}),[]),Ve((function(){!1!==C&&void 0!==window.google&&u.current.setOptions({mapTypeControl:!!o||t.mapTypeControl,zoomControl:!!o||t.zoomControl,fullscreenControl:!!o||t.fullscreenControl,streetViewControl:!!o||t.streetViewControl})}),[o]),Ve((function(){b.current=Oe(t.markers)}),[t.markers]);var s=je([]),p=je(null),m=je(null),u=je(null),d=je(null),b=je(Oe(t.markers)),w=ze(Ne(""),2),f=w[0],y=w[1],v=ze(Ne(!1),2),k=v[0],E=v[1],T=ze(Ne(!1),2),C=T[0],x=T[1],M=ze(Ne(!1),2),S=M[0],z=M[1],O=ze(Ne(!1),2),B=O[0],L=O[1],H=ze(Ne(!0),2),P=H[0],_=H[1],A=ze(Ne(!1),2),V=A[0],j=A[1],N=ze(Ne(!1),2),R=N[0],I=N[1],D=ze(Ne(!1),2),G=D[0],F=D[1],W=ze(Ne(!1),2),U=W[0],q=W[1],Z=ze(Ne(!1),2),$=Z[0],Q=Z[1],K=ze(Ne({}),2),J=K[0],Y=K[1],X=function(){var e,l=(e=regeneratorRuntime.mark((function e(){var l,o;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(void 0!==t.id){e.next=7;break}return l="wp-block-themeisle-blocks-google-map-".concat(r.substr(0,8)),e.next=4,n({id:l});case 4:Re.push(l),e.next=15;break;case 7:if(!Re.includes(t.id)){e.next=14;break}return o="wp-block-themeisle-blocks-google-map-".concat(r.substr(0,8)),e.next=11,n({id:o});case 11:Re.push(o),e.next=15;break;case 14:Re.push(t.id);case 15:return e.next=17,wp.api.loadPromise.then((function(){p.current=new wp.api.models.Settings}));case 17:!1===Boolean(window.themeisleGutenberg.mapsAPI)?k||p.current.fetch().then((function(e){y(e.themeisle_google_map_block_api_key),E(!0),""!==e.themeisle_google_map_block_api_key&&(x(!0),ee(e.themeisle_google_map_block_api_key))})):k||(y(window.themeisleGutenberg.mapsAPI),E(!0),x(!0),ee(window.themeisleGutenberg.mapsAPI));case 18:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(l,r){var o=e.apply(t,n);function a(e){Se(o,l,r,a,c,"next",e)}function c(e){Se(o,l,r,a,c,"throw",e)}a(void 0)}))});return function(){return l.apply(this,arguments)}}(),ee=function(e){window.isMapLoaded||(window.isMapLoaded=!0,m.current.onload=function(){document.getElementById("themeisle-google-map-api-loading").id="themeisle-google-map-api",j(!0)},m.current.src="https://maps.googleapis.com/maps/api/js?key=".concat(e,"&libraries=places&cache=").concat(Math.random()),document.head.appendChild(m.current)),document.getElementById("themeisle-google-map-api")&&j(!0)},te=function(e,t,n,l){var o='<div class="wp-block-themeisle-blocks-map-overview"><h6 class="wp-block-themeisle-blocks-map-overview-title">'.concat(n,'</h6><div class="wp-block-themeisle-blocks-map-overview-content">').concat(l?"<p>".concat(l,"</p>"):"",'<a class="wp-block-themeisle-blocks-map-overview-delete" onclick="removeMarker_').concat(r.substr(0,8),"( '").concat(t,"' )\">").concat(He("Delete Marker"),"</a></div></div>"),a=new google.maps.InfoWindow({content:o});e.addListener("click",(function(){d.current=a,a.open(u.current,e)})),google.maps.event.addListener(a,"domready",(function(){I(t)})),google.maps.event.addListener(a,"closeclick",(function(){I(!1)}))},ne=function(e){e.forEach((function(e){var t=e.latitude,n=e.longitude,l=new google.maps.LatLng(t,n),r=new google.maps.Marker({position:l,map:u.current,title:e.title,draggable:!0,icon:e.icon||"https://maps.google.com/mapfiles/ms/icons/red-dot.png"});google.maps.event.addListener(r,"dragend",(function(t){var n=t.latLng.lat(),l=t.latLng.lng();re(e.id,"latitude",n),re(e.id,"longitude",l)})),s.current.push(r),google.maps.event.addListener(r,"click",(function(){d.current&&d.current.close()})),te(r,e.id,e.title,e.description)}))},re=function(e,t,l){var r=Oe(b.current);r.map((function(n){if(n.id===e)return n[t]=l.toString()})),ae(),ne(r),n({markers:r})},oe=function(e){var t=Oe(b.current);t=t.filter((function(t){return t.id!==e})),n({markers:t}),ae(),I(!1),0<t.length&&ne(t)},ae=function(){for(var e=0;e<s.current.length;e++)s.current[e].setMap(null);s.current=[]},ce=function(){!1===Boolean(window.themeisleGutenberg.mapsAPI)&&(L(!0),new wp.api.models.Settings({themeisle_google_map_block_api_key:f}).save().then((function(e){var t=!1;""!==e.themeisle_google_map_block_api_key&&(t=!0),L(!1),x(t),""!==e.themeisle_google_map_block_api_key&&(window.isMapLoaded=!1,ee(e.themeisle_google_map_block_api_key))})))},ie=function(e){n({style:e}),u.current.setOptions({styles:Me[e]})};return k&&C?wp.element.createElement(Ae,null,wp.element.createElement(h.a,{label:He("Block Styles"),value:t.style,options:[{label:He("Standard"),value:"standard",image:window.themeisleGutenberg.assetsPath+"/icons/map-standard.png"},{label:He("Silver"),value:"silver",image:window.themeisleGutenberg.assetsPath+"/icons/map-silver.png"},{label:He("Retro"),value:"retro",image:window.themeisleGutenberg.assetsPath+"/icons/map-retro.png"},{label:He("Dark"),value:"dark",image:window.themeisleGutenberg.assetsPath+"/icons/map-dark.png"},{label:He("Night"),value:"night",image:window.themeisleGutenberg.assetsPath+"/icons/map-night.png"},{label:He("Aubergine"),value:"aubergine",image:window.themeisleGutenberg.assetsPath+"/icons/map-aubergine.png"}],onChange:ie}),wp.element.createElement(le,{attributes:t,setAttributes:n,map:u.current,changeStyle:ie,isPlaceAPIAvailable:P,isMarkerOpen:R,setMarkerOpen:I,removeMarker:oe,changeMarkerProp:re,addMarkerManual:function(){var e=Object(c.a)(),t=He("Custom Marker"),n=u.current.getCenter(),l=n.lat(),r=n.lng();q(!0),Q(!0),Y({id:e,location:"",title:t,icon:"https://maps.google.com/mapfiles/ms/icons/red-dot.png",description:"",latitude:l,longitude:r})},api:f,isSaving:B,changeAPI:y,saveAPIKey:ce}),U&&wp.element.createElement(ye,{marker:J,isAdvanced:$,isPlaceAPIAvailable:P,close:function(){return q(!1)},addMarker:function(e,l,r,o,a,i){var p=new google.maps.LatLng(a,i),m=Object(c.a)(),b=new google.maps.Marker({position:p,map:u.current,title:l,draggable:!0,icon:r});google.maps.event.addListener(b,"dragend",(function(e){var t=e.latLng.lat(),n=e.latLng.lng();re(m,"latitude",t),re(m,"longitude",n)})),s.current.push(b);var g=Oe(t.markers),h={id:m,location:e,title:l,icon:r,description:o,latitude:a,longitude:i};g.push(h),n({markers:g}),google.maps.event.addListener(b,"click",(function(){d.current&&d.current.close()})),te(b,h.id,l,o),q(!1),F(!1)}}),wp.element.createElement(Pe,{size:{height:t.height},enable:{top:!1,right:!1,bottom:!0,left:!1},minHeight:100,maxHeight:1400,onResizeStart:function(){i(!1)},onResizeStop:function(e,l,r,o){n({height:parseInt(t.height+o.height,10)}),i(!0)},className:a()("wp-block-themeisle-blocks-google-map-resizer",{"is-focused":o})},wp.element.createElement(xe,{attributes:t,className:l,initMap:function(){if(u.current=new google.maps.Map(document.getElementById(t.id),{center:{lat:Number(t.latitude)||41.4036299,lng:Number(t.longitude)||2.1743558000000576},gestureHandling:"cooperative",zoom:t.zoom,mapTypeId:t.type,styles:Me[t.style]}),t.location&&void 0===t.latitude&&void 0===t.longitude){var e={query:t.location,fields:["name","geometry"]};new google.maps.places.PlacesService(u.current).findPlaceFromQuery(e,(function(e,t){t===google.maps.places.PlacesServiceStatus.OK&&0<e.length&&u.current.setCenter(e[0].geometry.location)}))}google.maps.event.addListenerOnce(u.current,"idle",(function(){z(!0)})),u.current.addListener("zoom_changed",(function(){var e=u.current.getZoom();n({zoom:e})})),u.current.addListener("maptypeid_changed",(function(){var e=u.current.getMapTypeId();n({type:e})})),u.current.addListener("bounds_changed",(function(){var e=u.current.getCenter(),t=e.lat(),l=e.lng();n({latitude:t.toString(),longitude:l.toString()})})),0<t.markers.length&&ne(t.markers);var l={query:t.location,fields:["name","geometry"]};new google.maps.places.PlacesService(u.current).findPlaceFromQuery(l,(function(e,t){"REQUEST_DENIED"===t&&_(!1)}))},displayMap:V,isMapLoaded:S,selectMarker:function(){F(!G),G?google.maps.event.clearListeners(u.current,"click"):u.current.addListener("click",(function(e){google.maps.event.clearListeners(u.current,"click");var t=Object(c.a)(),n=He("Custom Marker"),l=e.latLng.lat(),r=e.latLng.lng();q(!0),Q(!1),Y({id:t,location:"",title:n,icon:"https://maps.google.com/mapfiles/ms/icons/red-dot.png",description:"",latitude:l,longitude:r})}))},isSelectingMarker:G}))):wp.element.createElement(g,{className:l,api:f,isAPILoaded:k,isAPISaved:C,changeAPI:y,saveAPIKey:ce})};function De(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);t&&(l=l.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,l)}return n}function Ge(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Fe=wp.blocks.createBlock,We=lodash.omit,Ue={to:[{type:"block",blocks:["themeisle-blocks/leaflet-map"],transform:function(e){var t=We(e,["style","mapTypeControl","fullscreenControl","streetViewControl"]);return Fe("themeisle-blocks/leaflet-map",function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?De(Object(n),!0).forEach((function(t){Ge(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):De(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({},t))}}]},qe=wp.i18n.__;(0,wp.blocks.registerBlockType)("themeisle-blocks/google-map",{title:qe("Google Maps"),description:qe("Display Google Maps on your website with Google Map block."),icon:l.m,category:"themeisle-blocks",keywords:["map","google","orbitfox"],attributes:r,supports:{align:["wide","full"],html:!1},transforms:Ue,edit:Ie,save:function(){return null}})},function(e,t,n){"use strict";n.r(t);n(54);var l=n(3);n(55);function r(e,t,n,l,r,o,a){try{var c=e[o](a),i=c.value}catch(e){return void n(e)}c.done?t(i):Promise.resolve(i).then(l,r)}function o(e){return function(){var t=this,n=arguments;return new Promise((function(l,o){var a=e.apply(t,n);function c(e){r(a,l,o,c,i,"next",e)}function i(e){r(a,l,o,c,i,"throw",e)}c(void 0)}))}}function a(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=e&&("undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"]);if(null==n)return;var l,r,o=[],a=!0,c=!1;try{for(n=n.call(e);!(a=(l=n.next()).done)&&(o.push(l.value),!t||o.length!==t);a=!0);}catch(e){c=!0,r=e}finally{try{a||null==n.return||n.return()}finally{if(c)throw r}}return o}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return c(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return c(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function c(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,l=new Array(t);n<t;n++)l[n]=e[n];return l}var i=wp.i18n.__,s=wp.blocks.getBlockType,p=wp.components,m=p.Button,u=p.Icon,d=p.Modal,b=wp.element,g=b.Fragment,h=b.useState,w=function(e){var t=e.blockName,n=e.saveConfig,l=e.resetConfig,r=e.children,c=s(t),p=a(h(!1),2),b=p[0],w=p[1],f=a(h(!1),2),y=f[0],v=f[1];return c?wp.element.createElement(g,null,wp.element.createElement(m,{className:"wp-block-themeisle-blocks-options-global-defaults-list-item block-editor-block-types-list__item",onClick:function(){return w(!0)}},wp.element.createElement("div",{className:"wp-block-themeisle-blocks-options-global-defaults-list-item-icon"},wp.element.createElement(u,{icon:c.icon.src})),wp.element.createElement("div",{className:"wp-block-themeisle-blocks-options-global-defaults-list-item-title"},c.title)),b&&wp.element.createElement(d,{title:c.title,onRequestClose:function(){return w(!1)},shouldCloseOnClickOutside:!1,overlayClassName:"wp-block-themeisle-blocks-options-global-defaults-modal"},r,wp.element.createElement("div",{className:"wp-block-themeisle-blocks-options-global-defaults-actions"},wp.element.createElement(m,{isLink:!0,isDestructive:!0,onClick:function(){return l(t)}},i("Reset")),wp.element.createElement("div",{className:"wp-block-themeisle-blocks-options-global-defaults-actions-primary"},wp.element.createElement(m,{isSecondary:!0,isLarge:!0,onClick:function(){return w(!1)}},i("Close")),wp.element.createElement(m,{isPrimary:!0,isLarge:!0,isBusy:y,onClick:o(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return v(!0),e.next=3,n();case 3:v(!1);case 4:case"end":return e.stop()}}),e)})))},i("Save")))))):null},f=n(7),y=n(17),v=n(8),k=n(9);function E(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var T=wp.i18n.__,C=wp.blockEditor.ColorPalette,x=wp.components,M=x.PanelBody,S=x.RangeControl,z=x.SelectControl,O=wp.data.useSelect,B=wp.element.Fragment,L=function(e){var t=e.blockName,n=e.defaults,l=e.changeConfig,r=O((function(e){var t=e("themeisle-gutenberg/data").getView,n=e("core/edit-post").__experimentalGetPreviewDeviceType;return n?n():t()}),[]),o=function(){var e;return"Desktop"===r&&(e=n.fontSize),"Tablet"===r&&(e=n.fontSizeTablet),"Mobile"===r&&(e=n.fontSizeMobile),e};o=o();var a=function(){var e;return"Desktop"===r&&(e=n.paddingType),"Tablet"===r&&(e=n.paddingTypeTablet),"Mobile"===r&&(e=n.paddingTypeMobile),e};a=a();var c={top:"paddingTop",right:"paddingRight",bottom:"paddingBottom",left:"paddingLeft"},i={top:"paddingTopTablet",right:"paddingRightTablet",bottom:"paddingBottomTablet",left:"paddingLeftTablet"},s={top:"paddingTopMobile",right:"paddingRightMobile",bottom:"paddingBottomMobile",left:"paddingLeftMobile"},p=function(e){var t;return"top"==e&&("Desktop"===r&&(t="linked"===n.paddingType?n.padding:n.paddingTop),"Tablet"===r&&(t="linked"===n.paddingTypeTablet?n.paddingTablet:n.paddingTopTablet),"Mobile"===r&&(t="linked"===n.paddingTypeMobile?n.paddingMobile:n.paddingTopMobile)),"right"==e&&("Desktop"===r&&(t="linked"===n.paddingType?n.padding:n.paddingRight),"Tablet"===r&&(t="linked"===n.paddingTypeTablet?n.paddingTablet:n.paddingRightTablet),"Mobile"===r&&(t="linked"===n.paddingTypeMobile?n.paddingMobile:n.paddingRightMobile)),"bottom"==e&&("Desktop"===r&&(t="linked"===n.paddingType?n.padding:n.paddingBottom),"Tablet"===r&&(t="linked"===n.paddingTypeTablet?n.paddingTablet:n.paddingBottomTablet),"Mobile"===r&&(t="linked"===n.paddingTypeMobile?n.paddingMobile:n.paddingBottomMobile)),"left"==e&&("Desktop"===r&&(t="linked"===n.paddingType?n.padding:n.paddingLeft),"Tablet"===r&&(t="linked"===n.paddingTypeTablet?n.paddingTablet:n.paddingLeftTablet),"Mobile"===r&&(t="linked"===n.paddingTypeMobile?n.paddingMobile:n.paddingLeftMobile)),t},m=function(){var e;return"Desktop"===r&&(e=n.marginType),"Tablet"===r&&(e=n.marginTypeTablet),"Mobile"===r&&(e=n.marginTypeMobile),e};m=m();var u={top:"marginTop",bottom:"marginBottom"},d={top:"marginTopTablet",bottom:"marginBottomTablet"},b={top:"marginTopMobile",bottom:"marginBottomMobile"},g=function(e){var t;return"top"==e&&("Desktop"===r&&(t="linked"===n.marginType?n.margin:n.marginTop),"Tablet"===r&&(t="linked"===n.marginTypeTablet?n.marginTablet:n.marginTopTablet),"Mobile"===r&&(t="linked"===n.marginTypeMobile?n.marginMobile:n.marginTopMobile)),"bottom"==e&&("Desktop"===r&&(t="linked"===n.marginType?n.margin:n.marginBottom),"Tablet"===r&&(t="linked"===n.marginTypeTablet?n.marginTablet:n.marginBottomTablet),"Mobile"===r&&(t="linked"===n.marginTypeMobile?n.marginMobile:n.marginBottomMobile)),t};return wp.element.createElement(B,null,wp.element.createElement(M,{title:T("General Settings")},wp.element.createElement(z,{label:T("HTML Tag"),value:n.tag,options:[{label:T("Heading 1"),value:"h1"},{label:T("Heading 2"),value:"h2"},{label:T("Heading 3"),value:"h3"},{label:T("Heading 4"),value:"h4"},{label:T("Heading 5"),value:"h5"},{label:T("Heading 6"),value:"h6"},{label:T("Division"),value:"div"},{label:T("Paragraph"),value:"p"},{label:T("Span"),value:"span"}],onChange:function(e){return l(t,{tag:e})}}),wp.element.createElement(f.a,{label:"Heading Color",colorValue:n.headingColor},wp.element.createElement(C,{value:n.headingColor,onChange:function(e){return l(t,{headingColor:e})}})),wp.element.createElement("hr",null),wp.element.createElement(v.a,{label:"Font Size"},wp.element.createElement(S,{value:o||"",onChange:function(e){"Desktop"===r&&l(t,{fontSize:e}),"Tablet"===r&&l(t,{fontSizeTablet:e}),"Mobile"===r&&l(t,{fontSizeMobile:e})},min:1,max:500}))),wp.element.createElement(M,{title:T("Typography Settings"),initialOpen:!1},wp.element.createElement(y.a,{label:T("Font Family"),value:n.fontFamily,onChangeFontFamily:function(e){l(t,e?{fontFamily:e,fontVariant:"normal",fontStyle:"normal"}:{fontFamily:e,fontVariant:e})},valueVariant:n.fontVariant,onChangeFontVariant:function(e){return l(t,{fontVariant:e})},valueStyle:n.fontStyle,onChangeFontStyle:function(e){return l(t,{fontStyle:e})},valueTransform:n.textTransform,onChangeTextTransform:function(e){return l(t,{textTransform:e})}}),wp.element.createElement("hr",null),wp.element.createElement(S,{label:T("Line Height"),value:n.lineHeight||"",onChange:function(e){return l(t,{lineHeight:e})},min:0,max:200}),wp.element.createElement("hr",null),wp.element.createElement(S,{label:T("Letter Spacing"),value:n.letterSpacing||"",onChange:function(e){return l(t,{letterSpacing:e})},min:-50,max:100})),wp.element.createElement(M,{title:T("Spacing"),initialOpen:!1},wp.element.createElement(v.a,{label:"Padding"},wp.element.createElement(k.a,{type:a,min:0,max:500,changeType:function(e){"Desktop"===r&&l(t,{paddingType:e}),"Tablet"===r&&l(t,{paddingTypeTablet:e}),"Mobile"===r&&l(t,{paddingTypeMobile:e})},onChange:function(e,o){"Desktop"===r&&("linked"===n.paddingType?l(t,{padding:o}):l(t,E({},c[e],o))),"Tablet"===r&&("linked"===n.paddingTypeTablet?l(t,{paddingTablet:o}):l(t,E({},i[e],o))),"Mobile"===r&&("linked"===n.paddingTypeMobile?l(t,{paddingMobile:o}):l(t,E({},s[e],o)))},options:[{label:T("Top"),type:"top",value:p("top")},{label:T("Right"),type:"right",value:p("right")},{label:T("Bottom"),type:"bottom",value:p("bottom")},{label:T("Left"),type:"left",value:p("left")}]})),wp.element.createElement("hr",null),wp.element.createElement(v.a,{label:"Margin"},wp.element.createElement(k.a,{type:m,min:-500,max:500,changeType:function(e){"Desktop"===r&&l(t,{marginType:e}),"Tablet"===r&&l(t,{marginTypeTablet:e}),"Mobile"===r&&l(t,{marginTypeMobile:e})},onChange:function(e,o){"Desktop"===r&&("linked"===n.marginType?l(t,{margin:o}):l(t,E({},u[e],o))),"Tablet"===r&&("linked"===n.marginTypeTablet?l(t,{marginTablet:o}):l(t,E({},d[e],o))),"Mobile"===r&&("linked"===n.marginTypeMobile?l(t,{marginMobile:o}):l(t,E({},b[e],o)))},options:[{label:T("Top"),type:"top",value:g("top")},{label:T("Right"),disabled:!0},{label:T("Bottom"),type:"bottom",value:g("bottom")},{label:T("Left"),disabled:!0}]}))))};var H=wp.i18n.__,P=wp.components,_=P.PanelBody,A=P.RangeControl,V=P.SelectControl,j=wp.element.Fragment,N=function(e){var t=e.blockName,n=e.defaults,l=e.changeConfig;return wp.element.createElement(j,null,wp.element.createElement(_,{title:H("Spacing")},wp.element.createElement(k.a,{label:H("Button Padding"),min:0,max:100,onChange:function(e,n){return l(t,function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}({},e,n))},options:[{label:H("Top"),type:"paddingTopBottom",value:n.paddingTopBottom},{label:H("Right"),type:"paddingLeftRight",value:n.paddingLeftRight},{label:H("Bottom"),type:"paddingTopBottom",value:n.paddingTopBottom},{label:H("Left"),type:"paddingLeftRight",value:n.paddingLeftRight}]}),wp.element.createElement("hr",null),wp.element.createElement(A,{label:H("Group Spacing"),value:n.spacing,onChange:function(e){return l(t,{spacing:e})},min:0,max:50}),wp.element.createElement("hr",null),wp.element.createElement(V,{label:H("Collapse On"),value:n.collapse,options:[{label:H("None"),value:"collapse-none"},{label:H("Desktop"),value:"collapse-desktop"},{label:H("Tablet"),value:"collapse-tablet"},{label:H("Mobile"),value:"collapse-mobile"}],onChange:function(e){return l(t,{collapse:e})}})),wp.element.createElement(_,{title:H("Typography Settings"),initialOpen:!1},wp.element.createElement(A,{label:H("Font Size"),value:n.fontSize||"",onChange:function(e){return l(t,{fontSize:e})},min:0,max:50}),wp.element.createElement("hr",null),wp.element.createElement(y.a,{label:H("Font Family"),value:n.fontFamily,onChangeFontFamily:function(e){l(t,e?{fontFamily:e,fontVariant:"normal",fontStyle:"normal"}:{fontFamily:e,fontVariant:e})},valueVariant:n.fontVariant,onChangeFontVariant:function(e){return l(t,{fontVariant:e})},valueStyle:n.fontStyle,onChangeFontStyle:function(e){return l(t,{fontStyle:e})},valueTransform:n.textTransform,onChangeTextTransform:function(e){return l(t,{textTransform:e})}}),wp.element.createElement("hr",null),wp.element.createElement(A,{label:H("Line Height"),value:n.lineHeight||"",onChange:function(e){return l(t,{lineHeight:e})},min:0,max:200})))};function R(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=e&&("undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"]);if(null==n)return;var l,r,o=[],a=!0,c=!1;try{for(n=n.call(e);!(a=(l=n.next()).done)&&(o.push(l.value),!t||o.length!==t);a=!0);}catch(e){c=!0,r=e}finally{try{a||null==n.return||n.return()}finally{if(c)throw r}}return o}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return I(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return I(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function I(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,l=new Array(t);n<t;n++)l[n]=e[n];return l}var D=wp.i18n.__,G=wp.blockEditor.__experimentalColorGradientControl,F=wp.components,W=F.Button,U=F.ButtonGroup,q=F.PanelBody,Z=F.RangeControl,$=wp.element,Q=$.Fragment,K=$.useState,J=function(e){var t=e.blockName,n=e.defaults,l=e.changeConfig,r=R(K(!1),2),o=r[0],a=r[1],c=function(){return wp.element.createElement(U,null,wp.element.createElement(W,{isSmall:!0,isSecondary:o,isPrimary:!o,onClick:function(){return a(!1)}},D("Normal")),wp.element.createElement(W,{isSmall:!0,isSecondary:!o,isPrimary:o,onClick:function(){return a(!0)}},D("Hover")))};return wp.element.createElement(Q,null,wp.element.createElement(q,{title:D("Color")},wp.element.createElement(c,null),o?wp.element.createElement(Q,{key:"with-hover"},wp.element.createElement(G,{label:"Hover Color",colorValue:n.hoverColor,onColorChange:function(e){return l(t,{hoverColor:e})}}),wp.element.createElement(G,{label:"Hover Background",colorValue:n.hoverBackground,onColorChange:function(e){return l(t,{hoverBackground:e})}})):wp.element.createElement(Q,{key:"without-hover"},wp.element.createElement(G,{label:"Color",colorValue:n.color,onColorChange:function(e){return l(t,{color:e})}}),wp.element.createElement(G,{label:"Background",colorValue:n.background,onColorChange:function(e){return l(t,{background:e})}}))),wp.element.createElement(q,{title:D("Border & Box Shadow"),initialOpen:!1},wp.element.createElement(c,null),o?wp.element.createElement(G,{label:"Hover Border",colorValue:n.hoverBorder,onColorChange:function(e){return l(t,{hoverBorder:e})}}):wp.element.createElement(G,{label:"Border",colorValue:n.border,onColorChange:function(e){return l(t,{border:e})}}),wp.element.createElement(Z,{label:D("Border Width"),value:n.borderSize,onChange:function(e){return l(t,{borderSize:e})},min:0,max:10}),wp.element.createElement(Z,{label:D("Border Radius"),value:n.borderRadius,onChange:function(e){return l(t,{borderRadius:e})},min:0,max:100})))};function Y(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=e&&("undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"]);if(null==n)return;var l,r,o=[],a=!0,c=!1;try{for(n=n.call(e);!(a=(l=n.next()).done)&&(o.push(l.value),!t||o.length!==t);a=!0);}catch(e){c=!0,r=e}finally{try{a||null==n.return||n.return()}finally{if(c)throw r}}return o}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return X(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return X(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function X(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,l=new Array(t);n<t;n++)l[n]=e[n];return l}var ee=wp.i18n.__,te=wp.components,ne=te.Button,le=te.ButtonGroup,re=te.PanelBody,oe=te.RangeControl,ae=wp.blockEditor,ce=ae.ColorPalette,ie=ae.ContrastChecker,se=wp.element,pe=se.Fragment,me=se.useState,ue=function(e){var t=e.blockName,n=e.defaults,l=e.changeConfig,r=Y(me(!1),2),o=r[0],a=r[1];return wp.element.createElement(pe,null,wp.element.createElement(re,{title:ee("Sizing")},wp.element.createElement(oe,{label:ee("Icon Size"),value:n.fontSize||"",initialPosition:16,onChange:function(e){return l(t,{fontSize:e})},min:12,max:140}),wp.element.createElement("hr",null),wp.element.createElement(oe,{label:ee("Padding"),value:n.padding||"",initialPosition:5,onChange:function(e){return l(t,{padding:e})},min:0,max:100}),wp.element.createElement("hr",null),wp.element.createElement(oe,{label:ee("Margin"),value:n.margin||"",initialPosition:5,onChange:function(e){return l(t,{margin:e})},min:0,max:100})),wp.element.createElement(re,{title:ee("Color"),initialOpen:!1},wp.element.createElement(le,null,wp.element.createElement(ne,{isSmall:!0,isSecondary:o,isPrimary:!o,onClick:function(){return a(!1)}},ee("Normal")),wp.element.createElement(ne,{isSmall:!0,isSecondary:!o,isPrimary:o,onClick:function(){return a(!0)}},ee("Hover"))),o?wp.element.createElement(pe,null,wp.element.createElement(f.a,{label:"Hover Background",colorValue:n.backgroundColorHover},wp.element.createElement(ce,{label:"Hover Background",value:n.backgroundColorHover,onChange:function(e){return l(t,{backgroundColorHover:e})}})),wp.element.createElement(f.a,{label:"Hover Icon",colorValue:n.textColorHover},wp.element.createElement(ce,{label:"Hover Icon",value:n.textColorHover,onChange:function(e){return l(t,{textColorHover:e})}})),wp.element.createElement(ie,{textColor:n.textColorHover,backgroundColor:n.backgroundColorHover})):wp.element.createElement(pe,null,wp.element.createElement(f.a,{label:"Background",colorValue:n.backgroundColor},wp.element.createElement(ce,{label:"Background",value:n.backgroundColor,onChange:function(e){return l(t,{backgroundColor:e})}})),wp.element.createElement(f.a,{label:"Icon",colorValue:n.textColor},wp.element.createElement(ce,{label:"Icon",value:n.textColor,onChange:function(e){return l(t,{textColor:e})}})),wp.element.createElement(ie,{textColor:n.textColor,backgroundColor:n.backgroundColor}))))};function de(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var be=wp.i18n.__,ge=wp.components,he=ge.BaseControl,we=ge.Button,fe=ge.ButtonGroup,ye=ge.Icon,ve=ge.PanelBody,ke=ge.RangeControl,Ee=ge.SelectControl,Te=ge.ToggleControl,Ce=wp.data.useSelect,xe=wp.element.Fragment,Me=function(e){var t=e.blockName,n=e.defaults,r=e.changeConfig,o=Ce((function(e){var t=e("themeisle-gutenberg/data").getView,n=e("core/edit-post").__experimentalGetPreviewDeviceType;return n?n():t()}),[]),a=function(){var e;return"Desktop"===o&&(e=n.paddingType),"Tablet"===o&&(e=n.paddingTypeTablet),"Mobile"===o&&(e=n.paddingTypeMobile),e};a=a();var c={top:"paddingTop",right:"paddingRight",bottom:"paddingBottom",left:"paddingLeft"},i={top:"paddingTopTablet",right:"paddingRightTablet",bottom:"paddingBottomTablet",left:"paddingLeftTablet"},s={top:"paddingTopMobile",right:"paddingRightMobile",bottom:"paddingBottomMobile",left:"paddingLeftMobile"},p=function(e){var t;return"top"==e&&("Desktop"===o&&(t="linked"===n.paddingType?n.padding:n.paddingTop),"Tablet"===o&&(t="linked"===n.paddingTypeTablet?n.paddingTablet:n.paddingTopTablet),"Mobile"===o&&(t="linked"===n.paddingTypeMobile?n.paddingMobile:n.paddingTopMobile)),"right"==e&&("Desktop"===o&&(t="linked"===n.paddingType?n.padding:n.paddingRight),"Tablet"===o&&(t="linked"===n.paddingTypeTablet?n.paddingTablet:n.paddingRightTablet),"Mobile"===o&&(t="linked"===n.paddingTypeMobile?n.paddingMobile:n.paddingRightMobile)),"bottom"==e&&("Desktop"===o&&(t="linked"===n.paddingType?n.padding:n.paddingBottom),"Tablet"===o&&(t="linked"===n.paddingTypeTablet?n.paddingTablet:n.paddingBottomTablet),"Mobile"===o&&(t="linked"===n.paddingTypeMobile?n.paddingMobile:n.paddingBottomMobile)),"left"==e&&("Desktop"===o&&(t="linked"===n.paddingType?n.padding:n.paddingLeft),"Tablet"===o&&(t="linked"===n.paddingTypeTablet?n.paddingTablet:n.paddingLeftTablet),"Mobile"===o&&(t="linked"===n.paddingTypeMobile?n.paddingMobile:n.paddingLeftMobile)),t},m=function(){var e;return"Desktop"===o&&(e=n.marginType),"Tablet"===o&&(e=n.marginTypeTablet),"Mobile"===o&&(e=n.marginTypeMobile),e};m=m();var u={top:"marginTop",bottom:"marginBottom"},d={top:"marginTopTablet",bottom:"marginBottomTablet"},b={top:"marginTopMobile",bottom:"marginBottomMobile"},g=function(e){var t;return"top"==e&&("Desktop"===o&&(t="linked"===n.marginType?n.margin:n.marginTop),"Tablet"===o&&(t="linked"===n.marginTypeTablet?n.marginTablet:n.marginTopTablet),"Mobile"===o&&(t="linked"===n.marginTypeMobile?n.marginMobile:n.marginTopMobile)),"bottom"==e&&("Desktop"===o&&(t="linked"===n.marginType?n.margin:n.marginBottom),"Tablet"===o&&(t="linked"===n.marginTypeTablet?n.marginTablet:n.marginBottomTablet),"Mobile"===o&&(t="linked"===n.marginTypeMobile?n.marginMobile:n.marginBottomMobile)),t},h=function(e){if(n.horizontalAlign===e)return r(t,{horizontalAlign:"unset"});r(t,{horizontalAlign:e})},w=function(){var e;return"Desktop"===o&&(e=n.columnsHeightCustom),"Tablet"===o&&(e=n.columnsHeightCustomTablet),"Mobile"===o&&(e=n.columnsHeightCustomMobile),e};w=w();var f=function(e){if(n.verticalAlign===e)return r(t,{verticalAlign:"unset"});r(t,{verticalAlign:e})};return wp.element.createElement(xe,null,wp.element.createElement(ve,{title:be("Sizing")},wp.element.createElement(Ee,{label:be("Columns Gap"),value:n.columnsGap,options:[{label:be("Default (10px)"),value:"default"},{label:be("No Gap"),value:"nogap"},{label:be("Narrow (5px)"),value:"narrow"},{label:be("Extended (15px)"),value:"extended"},{label:be("Wide (20px)"),value:"wide"},{label:be("Wider (30px)"),value:"wider"}],onChange:function(e){return r(t,{columnsGap:e})}}),wp.element.createElement(v.a,{label:"Padding"},wp.element.createElement(k.a,{type:a,min:0,max:500,changeType:function(e){"Desktop"===o&&r(t,{paddingType:e}),"Tablet"===o&&r(t,{paddingTypeTablet:e}),"Mobile"===o&&r(t,{paddingTypeMobile:e})},onChange:function(e,l){"Desktop"===o&&("linked"===n.paddingType?r(t,{padding:l}):r(t,de({},c[e],l))),"Tablet"===o&&("linked"===n.paddingTypeTablet?r(t,{paddingTablet:l}):r(t,de({},i[e],l))),"Mobile"===o&&("linked"===n.paddingTypeMobile?r(t,{paddingMobile:l}):r(t,de({},s[e],l)))},options:[{label:be("Top"),type:"top",value:p("top")},{label:be("Right"),type:"right",value:p("right")},{label:be("Bottom"),type:"bottom",value:p("bottom")},{label:be("Left"),type:"left",value:p("left")}]})),wp.element.createElement("hr",null),wp.element.createElement(v.a,{label:"Margin"},wp.element.createElement(k.a,{type:m,min:-500,max:500,changeType:function(e){"Desktop"===o&&r(t,{marginType:e}),"Tablet"===o&&r(t,{marginTypeTablet:e}),"Mobile"===o&&r(t,{marginTypeMobile:e})},onChange:function(e,l){"Desktop"===o&&("linked"===n.marginType?r(t,{margin:l}):r(t,de({},u[e],l))),"Tablet"===o&&("linked"===n.marginTypeTablet?r(t,{marginTablet:l}):r(t,de({},d[e],l))),"Mobile"===o&&("linked"===n.marginTypeMobile?r(t,{marginMobile:l}):r(t,de({},b[e],l)))},options:[{label:be("Top"),type:"top",value:g("top")},{label:be("Right"),disabled:!0},{label:be("Bottom"),type:"bottom",value:g("bottom")},{label:be("Left"),disabled:!0}]}))),wp.element.createElement(ve,{title:be("Section Structure"),initialOpen:!1},wp.element.createElement(Ee,{label:be("HTML Tag"),value:n.columnsHTMLTag,options:[{label:be("Default (div)"),value:"div"},{label:"section",value:"section"},{label:"header",value:"header"},{label:"footer",value:"footer"},{label:"article",value:"article"},{label:"main",value:"main"}],onChange:function(e){return r(t,{columnsHTMLTag:e})}}),wp.element.createElement("hr",null),wp.element.createElement(ke,{label:be("Maximum Content Width"),value:n.columnsWidth||